-- MariaDB dump 10.19  Distrib 10.5.22-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: drfiel5_drfields
-- ------------------------------------------------------
-- Server version	10.5.22-MariaDB-log

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wp_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) NOT NULL,
  `status` varchar(20) NOT NULL,
  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) DEFAULT NULL,
  `schedule` longtext DEFAULT NULL,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `extended_args` varchar(8000) DEFAULT NULL,
  `priority` tinyint(3) unsigned NOT NULL DEFAULT 10,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id` (`claim_id`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=4286 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_actions`
--

LOCK TABLES `wp_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_actions` VALUES (4284,'wp_mail_smtp_admin_notifications_update','complete','2023-09-20 22:49:57','2023-09-20 22:49:57','[132]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1695250197;s:18:\"\0*\0first_timestamp\";i:1695250197;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1695250197;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2023-09-20 22:49:58','2023-09-20 22:49:58',0,NULL,10),(4285,'wp_mail_smtp_admin_notifications_update','pending','2023-09-21 22:49:58','2023-09-21 22:49:58','[132]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1695336598;s:18:\"\0*\0first_timestamp\";i:1695250197;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1695336598;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10);
/*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wp_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=769847 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_claims`
--

LOCK TABLES `wp_actionscheduler_claims` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_claims` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_actionscheduler_claims` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wp_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_groups`
--

LOCK TABLES `wp_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wp_mail_smtp'),(3,'rocket-preload');
/*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text NOT NULL,
  `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=1640 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_logs`
--

LOCK TABLES `wp_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_logs` VALUES (1636,4284,'action created','2023-09-20 22:48:57','2023-09-20 22:48:57'),(1637,4284,'action started via WP Cron','2023-09-20 22:49:58','2023-09-20 22:49:58'),(1638,4284,'action complete via WP Cron','2023-09-20 22:49:58','2023-09-20 22:49:58'),(1639,4285,'action created','2023-09-20 22:49:58','2023-09-20 22:49:58');
/*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=94 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (4,9,'zelma','70460@gmail.com','https://bit.ly/3UKFVxa','109.227.97.155','2022-12-21 23:37:17','2022-12-21 23:37:17','Waiting patiently for you to come home and fuck me! https://bit.ly/3UKFVxa',0,'spam','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(5,414,'cheat slot','UNDERSKINTH29@GMAIL.COM','https://onlineprofit.biz/','202.178.118.110','2023-01-08 15:23:42','2023-01-08 15:23:42','Great information shared.. really enjoyed reading this post thank you author for sharing this post .. appreciated',0,'0','','comment',0,0),(6,414,'bambu slot','aliyatiriduan@ymail.com','https://bambu4d.com/','202.178.118.110','2023-01-10 03:06:34','2023-01-10 03:06:34','Awesome! Its genuinely remarkable post, I have got much clear idea regarding from this post',0,'0','','comment',0,0),(7,7,'zelma','71350@gmail.com','https://tinyurl.com/db5cn8xt','109.227.97.113','2023-01-10 11:08:48','2023-01-10 11:08:48','Waiting patiently for you to come home and fuck me! https://tinyurl.com/db5cn8xt',0,'spam','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(8,414,'indo xx1','kansyef@ymail.com','https://nontonia.com/','202.178.118.110','2023-01-10 22:15:30','2023-01-10 22:15:30','This is my first time pay a quick visit at here and i am really happy to read everthing at one place',0,'0','','comment',0,0),(9,414,'bambutogel','sudomo_arifin@hotmail.com','https://onlineprofit.biz/bambu4d.html','202.178.118.110','2023-01-11 04:32:22','2023-01-11 04:32:22','I truly appreciate your technique of writing a blog. I added it to my bookmark site list and will',0,'0','','comment',0,0),(10,414,'bocoran rtp slot hari ini','bobbiezzz94@yahoo.co.id','https://rtpbambu4d.live/','202.178.118.110','2023-01-12 17:47:15','2023-01-12 17:47:15','Hi there to all, for the reason that I am genuinely keen of reading this website’s post to be updated on a regular basis. It carries pleasant stuff.',0,'0','','comment',0,0),(11,414,'data keluaran','paramitaseptiani@gmail.com','https://www.bitz.so/datakeluaran.html','202.178.118.110','2023-01-12 17:52:35','2023-01-12 17:52:35','I am truly thankful to the owner of this web site who has shared this fantastic piece of writing at at this place.',0,'0','','comment',0,0),(12,414,'bambu4d','reedgriffin@gmail.com','https://onlineprofit.biz/bambu4d.html','202.178.118.110','2023-01-12 19:01:52','2023-01-12 19:01:52','Good post! We will be linking to this particularly great post on our site. Keep up the great writing',0,'0','','comment',0,0),(13,414,'bambu4d slot','alain-rizzo@eden-invest.fr','https://www.loginbambu4d.xyz/','202.178.118.110','2023-01-12 23:23:55','2023-01-12 23:23:55','I am truly thankful to the owner of this web site who has shared this fantastic piece of writing at at this place.',0,'0','','comment',0,0),(14,414,'prediksi hk jitu','jobssuccesss@gmail.com','http://development.todb.ca.gov/','202.178.118.110','2023-01-14 17:36:48','2023-01-14 17:36:48','I very delighted to find this internet site on bing, just what I was searching for as well saved to fav',0,'0','','comment',0,0),(15,414,'download film','jaylincarpenter@gmail.com','https://nontonia.com/','202.178.118.110','2023-01-15 16:38:36','2023-01-15 16:38:36','I just like the helpful information you provide in your articles',0,'0','','comment',0,0),(16,414,'rtp slot','tariqazim@hotmail.com','http://rtpslotgacor.todb.ca.gov/','202.178.118.110','2023-01-19 22:12:22','2023-01-19 22:12:22','This is my first time pay a quick visit at here and i am really happy to read everthing at one place',0,'0','','comment',0,0),(17,414,'rtp slot pragmatic','jatimacid@gmail.com','http://situsslotgacor.gsm.cornell.edu/','202.178.118.110','2023-01-20 13:15:09','2023-01-20 13:15:09','I like the efforts you have put in this, regards for all the great content.',0,'0','','comment',0,0),(18,414,'situs slot online','vvvoorshovenjeugd@hotmail.be','https://fti.gunadarma.ac.id/slot-gacor/','202.178.118.110','2023-01-20 15:43:11','2023-01-20 15:43:11','Great information shared.. really enjoyed reading this post thank you author for sharing this post .. appreciated',0,'0','','comment',0,0),(19,414,'Link Situs Slot Gacor 2023','OVIN.SYAIFUL89@GMAIL.COM','https://dlh.balangankab.go.id/public/situs-slot/','202.178.118.110','2023-01-24 17:43:40','2023-01-24 17:43:40','I very delighted to find this internet site on bing, just what I was searching for as well saved to fav',0,'0','','comment',0,0),(20,414,'bambu4d login','homenails.sg@gmail.com','https://bambu4d.com/','202.178.118.110','2023-01-28 22:34:07','2023-01-28 22:34:07','I just like the helpful information you provide in your articles',0,'0','','comment',0,0),(21,414,'Jajantogel','dadangyulians@hotmail.com','https://www.phyteney.co/','202.178.118.110','2023-01-30 02:02:53','2023-01-30 02:02:53','I think the content you share is interesting, but for me there is still something missing, because the things discussed above are not important to talk about today.',0,'0','','comment',0,0),(22,414,'situs slot online','azhar.ghazal@gmail.com','https://oyabungtoto.com/','202.178.118.110','2023-02-04 17:11:36','2023-02-04 17:11:36','This is really interesting, You’re a very skilled blogger. I’ve joined your feed and look forward to seeking more of your magnificent post. Also, I’ve shared your site in my social networks!',0,'0','','comment',0,0),(23,414,'info slot gacor hari ini','rotibakar1927@gmail.com','https://dlh.balangankab.go.id/public/situs-slot/','202.178.118.110','2023-02-05 23:21:47','2023-02-05 23:21:47','Very well presented. Every quote was awesome and thanks for sharing the content. Keep sharing and keep motivating others.',0,'0','','comment',0,0),(24,414,'bambu 4d','customerservice.us@hm.com','https://cmarketing.biz/','202.178.118.110','2023-02-07 00:05:48','2023-02-07 00:05:48','Very well presented. Every quote was awesome and thanks for sharing the content. Keep sharing and keep motivating others.',0,'0','','comment',0,0),(25,414,'lk21 xxi','help@ksmconsulting.com','https://nontonia.com/','202.178.118.110','2023-02-09 22:37:34','2023-02-09 22:37:34','This is my first time pay a quick visit at here and i am really happy to read everthing at one place',0,'0','','comment',0,0),(26,414,'bambu4d','2e7af194-c041-4239-924c-ea542cba3f5a@nokia.com','https://bambu4d.com/','202.178.118.110','2023-02-11 04:18:23','2023-02-11 04:18:23','I very delighted to find this internet site on bing, just what I was searching for as well saved to fav',0,'0','','comment',0,0),(27,414,'bo togel','arfianherbowo@gmail.com','https://cp.feevale.br/bambutogel/','202.178.118.110','2023-02-11 12:38:15','2023-02-11 12:38:15','Nice post. I learn something totally new and challenging on websites',0,'0','','comment',0,0),(28,414,'rtp slot bambu4d','epd@tribconstitucional.pt','https://rtpbambu4d.live/','202.178.118.110','2023-02-17 12:53:47','2023-02-17 12:53:47','This is my first time pay a quick visit at here and i am really happy to read everthing at one place',0,'0','','comment',0,0),(29,414,'bambu togel','domainreg@webdomain.com.hk','https://bambutogel.xyz/','202.178.118.110','2023-02-18 23:44:04','2023-02-18 23:44:04','Pretty! This has been a really wonderful post. Many thanks for providing these details.',0,'0','','comment',0,0),(30,414,'rtp bambu4d','lbee185@aol.com','https://rtpbambu4d.xyz/','202.178.118.110','2023-02-22 01:32:34','2023-02-22 01:32:34','Hi there to all, for the reason that I am genuinely keen of reading this website’s post to be updated on a regular basis. It carries pleasant stuff.',0,'0','','comment',0,0),(31,9,'brigitte','7123@gmail.com','https://is.gd/dBsd60','37.139.179.19','2023-02-22 17:35:44','2023-02-22 17:35:44','Which hole you eating first? https://is.gd/dBsd60',0,'spam','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(32,9,'edith','88927@gmail.com','https://is.gd/dBsd60','91.244.13.58','2023-02-28 11:07:30','2023-02-28 11:07:30','Would you like me to wrap my boobs around your big hard cock? https://is.gd/dBsd60',0,'spam','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(33,9,'jeanine','42799@gmail.com','https://is.gd/dBsd60','91.244.13.58','2023-03-03 05:15:57','2023-03-03 05:15:57','So desperate to have you fill me up https://is.gd/dBsd60',0,'spam','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(34,414,'slot dana','domainreg@webdomain.com.hk','https://bambuslot.xyz/','202.178.118.110','2023-03-05 21:08:15','2023-03-05 21:08:15','I am truly thankful to the owner of this web site who has shared this fantastic piece of writing at at this place.',0,'0','','comment',0,0),(35,7,'aurora','49226@gmail.com','https://snip.ly/6327oi','91.244.13.58','2023-03-08 17:36:32','2023-03-08 17:36:32','I want to be your baby girl https://snip.ly/6327oi',0,'spam','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(36,414,'aplikasi prediksi sydney','michelle35@gmail.com','https://play-store.live/prediksi-togel.html','202.178.118.110','2023-03-11 14:03:51','2023-03-11 14:03:51','This is my first time pay a quick visit at here and i am really happy to read everthing at one place',0,'0','','comment',0,0),(37,414,'bambu4d login','djporter@juno.com','https://www.loginbambu4d.xyz/','202.178.118.110','2023-03-23 16:16:02','2023-03-23 16:16:02','Pretty! This has been a really wonderful post. Many thanks for providing these details.',0,'0','','comment',0,0),(38,414,'demo slot pg soft','jaddajz@hotmail.com','https://bigchurch.xyz/pgsoft.html','202.178.118.110','2023-03-23 16:21:30','2023-03-23 16:21:30','This is my first time pay a quick visit at here and i am really happy to read everthing at one place',0,'0','','comment',0,0),(39,414,'slot demo','voilesplus@hotmail.com','https://bigchurch.xyz/','202.178.118.110','2023-03-23 17:29:15','2023-03-23 17:29:15','Nice post. I learn something totally new and challenging on websites',0,'0','','comment',0,0),(40,414,'bambubet','hawkeyefan2003@aol.com','https://bambubet.xyz/','202.178.118.110','2023-03-25 00:34:36','2023-03-25 00:34:36','I appreciate you sharing this blog post. Thanks Again. Cool.',0,'0','','comment',0,0),(41,414,'bandar4d','dielz@live.com','https://bandar4d.xyz/','202.178.118.110','2023-03-25 03:09:05','2023-03-25 03:09:05','That\'s good, but I still don\'t understand the purpose of this page posting, no or what and where do they get material like this.',0,'0','','comment',0,0),(42,7,'estela','78253@gmail.com','http://prephe.ro/Bdsn','92.43.80.160','2023-03-27 13:22:57','2023-03-27 13:22:57','Need some help jerking of? http://prephe.ro/Bdsn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(43,414,'Bambu4d','pcroce@yahoo.com','https://likepodarky.news/','202.178.118.110','2023-03-28 21:36:10','2023-03-28 21:36:10','I am truly thankful to the owner of this web site who has shared this fantastic piece of writing at at this place.',0,'0','','comment',0,0),(44,414,'syair macau','privacyofficer@futurenet.com','https://aao.cdmx.gob.mx/prediksimacau/','202.178.118.110','2023-03-31 06:30:27','2023-03-31 06:30:27','This was beautiful Admin. Thank you for your reflections.',0,'0','','comment',0,0),(45,9,'deanna','84340@gmail.com','http://prephe.ro/Bdsn','91.244.12.175','2023-04-06 04:38:48','2023-04-06 04:38:48','When we fuck, you’re not allowed to pull out http://prephe.ro/Bdsn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(46,414,'Slot Online','aj.glover@qut.edu.au','https://samurai4d.site/','202.178.118.110','2023-04-06 21:07:32','2023-04-06 21:07:32','I very delighted to find this internet site on bing, just what I was searching for as well saved to fav',0,'0','','comment',0,0),(47,7,'meagan','48781@gmail.com','http://prephe.ro/Bdsn','91.244.12.175','2023-04-08 20:41:40','2023-04-08 20:41:40','Anybody looking for a smoke buddy? http://prephe.ro/Bdsn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(48,414,'Slot Gacor','studionoot.atelier@gmail.com','https://samurai4d.site/','202.178.118.110','2023-04-11 05:22:50','2023-04-11 05:22:50','naturally like your web site however you need to take a look at the spelling on several of your posts. A number of them are rife with spelling problems and I find it very bothersome to tell the truth on the other hand I will surely come again again.',0,'0','','comment',0,0),(49,414,'togel taiwan','abuzerceylann@gmail.com','https://bigchurch.xyz/datataiwan/','202.178.118.110','2023-04-11 22:09:30','2023-04-11 22:09:30','This was beautiful Admin. Thank you for your reflections.',0,'0','','comment',0,0),(50,414,'prediksi sdy','TAUFIKKAYLA@GMAIL.COM','https://bigchurch.xyz/prediksisdy/','202.178.118.110','2023-04-11 23:18:22','2023-04-11 23:18:22','Cool that really helps, thank you.',0,'0','','comment',0,0),(51,414,'Slot Online','emiliomarziani@libero.it','https://chooljang.shop/','202.178.118.110','2023-04-15 17:22:18','2023-04-15 17:22:18','I very delighted to find this internet site on bing, just what I was searching for as well saved to fav',0,'0','','comment',0,0),(52,414,'Bambu4d','info@soundtrap.com','https://dhlcouriers.net/','202.178.118.110','2023-04-16 18:01:30','2023-04-16 18:01:30','You’re so awesome! I don’t believe I have read a single thing like that before. So great to find someone with some original thoughts on this topic. Really.. thank you for starting this up. This website is something that is needed on the internet, someone with a little originality!',0,'0','','comment',0,0),(53,414,'Bambu4d','dont-track-me-google@robwu.nl','https://zynogroup.in/','202.178.118.110','2023-04-19 07:10:16','2023-04-19 07:10:16','For the reason that the admin of this site is working, no uncertainty very quickly it will be renowned, due to its quality contents.',0,'0','','comment',0,0),(54,414,'Bambu4d','popsugar@wrightsmedia.com','https://chooljang.shop/','202.178.118.110','2023-04-20 02:19:11','2023-04-20 02:19:11','I appreciate you sharing this blog post. Thanks Again. Cool.',0,'0','','comment',0,0),(55,414,'Slot Demo','rajaoui-gomez@hotmail.fr','https://newsreport.tech/','202.178.118.110','2023-04-20 18:40:31','2023-04-20 18:40:31','I truly appreciate your technique of writing a blog. I added it to my bookmark site list and will',0,'0','','comment',0,0),(56,9,'kathy','14923@gmail.com','http://prephe.ro/Vlqn','91.244.12.175','2023-04-21 13:03:18','2023-04-21 13:03:18','Have me from behind! http://prephe.ro/Vlqn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(57,414,'Bambu4d','kensirkenny3@aol.com','https://thetravelleisure.xyz/','202.178.118.110','2023-04-22 22:12:42','2023-04-22 22:12:42','Hi there to all, for the reason that I am genuinely keen of reading this website’s post to be updated on a regular basis. It carries pleasant stuff.',0,'0','','comment',0,0),(58,414,'Slot Online','toloc77958@toracw.com','https://bloorg.net/','202.178.118.110','2023-04-26 14:11:56','2023-04-26 14:11:56','I really like reading through a post that can make men and women think. Also, thank you for allowing me to comment!',0,'0','','comment',0,0),(59,414,'Bambu4d RTP','DHANANKPRATAMA@GMAIL.COM','https://bahalkani.com/','202.178.118.110','2023-04-27 20:55:47','2023-04-27 20:55:47','Hi there to all, for the reason that I am genuinely keen of reading this website’s post to be updated on a regular basis. It carries pleasant stuff.',0,'0','','comment',0,0),(60,414,'Bambu4d','info@snowapple.nl','https://filmdizizle.xyz/','202.178.118.110','2023-04-30 04:26:38','2023-04-30 04:26:38','very informative articles or reviews at this time.',0,'0','','comment',0,0),(61,414,'Bambu4d','support@coursehero.com','https://bambu4d.com/','202.178.118.110','2023-05-03 01:01:09','2023-05-03 01:01:09','Dead indited articles, Really enjoyed looking through.',0,'0','','comment',0,0),(62,414,'Bambu4d','gunda.linden@gmail.com','https://sprintbusiness.xyz/','202.178.118.110','2023-05-03 13:00:17','2023-05-03 13:00:17','Pretty! This has been a really wonderful post. Many thanks for providing these details.',0,'0','','comment',0,0),(63,414,'Togel Online','jmallett@mainstreetloans.com','https://bfsinews.in/','202.178.118.110','2023-05-03 16:04:00','2023-05-03 16:04:00','I truly appreciate your technique of writing a blog. I added it to my bookmark site list and will',0,'0','','comment',0,0),(64,414,'backlink seo','christine.gelly@eraimmo.fr','https://rodionow.info/','202.178.118.110','2023-05-03 18:02:50','2023-05-03 18:02:50','https://www.google.fi/url?sa=j&amp;url=https://bambu4d.com',0,'0','','comment',0,0),(65,414,'Bambu4d','gilles.yeswecannette@gmail.com','https://bloorg.net/','202.178.118.110','2023-05-06 06:49:25','2023-05-06 06:49:25','I really like reading through a post that can make men and women think. Also, thank you for allowing me to comment!',0,'0','','comment',0,0),(66,414,'Bambu4d','jason.ayers@concentric.net','https://trycooking.xyz/','202.178.118.110','2023-05-07 08:06:43','2023-05-07 08:06:43','For the reason that the admin of this site is working, no uncertainty very quickly it will be renowned, due to its quality contents.',0,'0','','comment',0,0),(67,414,'Bambu 4d','SIBUKUKU@GMAIL.COM','https://thebreastguide.com/','202.178.118.110','2023-05-17 15:33:00','2023-05-17 15:33:00','Great wordpress blog here.. It’s hard to find quality writing like yours these days. I really appreciate people like you! take care',0,'0','','comment',0,0),(68,414,'keluaran taiwan','gestionnaire@netcourrier.com','http://sigroup.dothome.co.kr/datataiwan/','202.178.118.110','2023-05-17 21:02:27','2023-05-17 21:02:27','Some truly quality articles on this website , saved to favorites.',0,'0','','comment',0,0),(69,9,'sheryl','91842@gmail.com','http://prephe.ro/Phqn','45.158.49.95','2023-05-17 22:32:47','2023-05-17 22:32:47','I wanna be eaten out, any takers? http://prephe.ro/Phqn',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','comment',0,0),(70,414,'Bambu4d Alternatif','security.db@db.com','https://thebreastguide.com/','202.178.118.110','2023-05-21 23:09:55','2023-05-21 23:09:55','I’m often to blogging and i really appreciate your content. The article has actually peaks my interest. I’m going to bookmark your web site and maintain checking for brand spanking new information.',0,'0','','comment',0,0),(71,414,'pengeluaran taiwan','test@trymsys.net','http://sigroup.dothome.co.kr/datataiwan/','202.178.118.110','2023-05-22 03:53:47','2023-05-22 03:53:47','I’m often to blogging and i really appreciate your content. The article has actually peaks my interest. I’m going to bookmark your web site and maintain checking for brand spanking new information.',0,'0','','comment',0,0),(72,414,'Bambu4d Daftar','NUGI.1993@GMAIL.COM','https://castration.site/','103.88.155.62','2023-06-23 00:56:47','2023-06-23 00:56:47','Some truly quality articles on this website , saved to favorites.',0,'0','','comment',0,0),(73,414,'Bambu 4d','kvsjx9zwu3s+fgezaknfr6zki9991ae5rh9q@mail.gmail.com','https://extractlabsboulder.com/','103.88.155.62','2023-06-23 15:36:44','2023-06-23 15:36:44','Dead indited articles, Really enjoyed looking through.',0,'0','','comment',0,0),(74,414,'Bambu4d Daftar','cri657@yahoo.co.id','https://extractlabsboulder.com/','103.88.155.62','2023-06-26 03:07:06','2023-06-26 03:07:06','This is my first time pay a quick visit at here and i am really happy to read everthing at one place',0,'0','','comment',0,0),(75,414,'Bambu4d','nehama@tarbut-batyam.co.il','https://www.youtube.com/watch?v=9foJ3_wbcXI','103.88.155.62','2023-06-27 04:45:33','2023-06-27 04:45:33','Don\'t forget to watch videos on the YouTube channel <a Title=\"BAMBU4D - SITUS TERBAIK DAN TERPERCAYA\" href=\"https://www.youtube.com/watch?v=9foJ3_wbcXI\" rel=\"nofollow ugc\">Bambu4d</a>',0,'0','','comment',0,0),(76,414,'Bambu4d Demo','adildarugar@gmail.com','https://bambu4d.com/','103.88.155.62','2023-06-27 13:18:13','2023-06-27 13:18:13','Very well presented. Every quote was awesome and thanks for sharing the content. Keep sharing and keep motivating others.',0,'0','','comment',0,0),(77,414,'Bambu4d','miriammitchell@gmail.com','https://junenco.com/','103.88.155.62','2023-06-28 01:50:15','2023-06-28 01:50:15','Good post! We will be linking to this particularly great post on our site. Keep up the great writing',0,'0','','comment',0,0),(78,414,'Bambu4d Slot','lillyvincent@gmail.com','https://castration.site/','103.88.155.62','2023-07-02 11:39:45','2023-07-02 11:39:45','Very well presented. Every quote was awesome and thanks for sharing the content. Keep sharing and keep motivating others.',0,'0','','comment',0,0),(79,414,'Demo PG Soft','info@pakbj.com','https://rtpbambu.live/demo-pgsoft.html','103.88.155.62','2023-07-11 09:16:40','2023-07-11 09:16:40','This is really interesting, You’re a very skilled blogger. I’ve joined your feed and look forward to seeking more of your magnificent post. Also, I’ve shared your site in my social networks!',0,'0','','comment',0,0),(80,414,'Nontonia','william@yahoo.com','https://nontonia.info/','103.88.155.62','2023-07-11 09:17:08','2023-07-11 09:17:08','I have not checked in here for some time since I thought it was getting boring, but the last few posts are great quality so I guess I’ll add you back to my daily bloglist. You deserve it my friend 🙂',0,'0','','comment',0,0),(81,414,'Demo Habanero','sales@microtechwll.com','https://rtpbambu.live/demo-habanero.html','103.88.155.62','2023-07-11 16:38:54','2023-07-11 16:38:54','Cool that really helps, thank you.',0,'0','','comment',0,0),(82,414,'OctagonLottery','community@fundly.com','https://octagonlottery.com/','103.88.155.62','2023-07-29 23:46:17','2023-07-29 23:46:17','I appreciate you sharing this blog post. Thanks Again. Cool.',0,'0','','comment',0,0),(83,414,'Bambu4d','hyosub.shin@ajc.com','https://effectgalaxy.biz/','103.88.155.62','2023-08-01 23:31:01','2023-08-01 23:31:01','That\'s good, but I still don\'t understand the purpose of this page posting, no or what and where do they get material like this.',0,'0','','comment',0,0),(84,414,'Bambu4d Demo','ARIEF.MAGNIFICO@GMAIL.COM','https://sarnakhak.com/','103.88.155.62','2023-08-06 04:04:16','2023-08-06 04:04:16','I very delighted to find this internet site on bing, just what I was searching for as well saved to fav',0,'0','','comment',0,0),(85,414,'Bambu 4d','20230208111330.439504-2-gregkh@linuxfoundation.org','https://stillschool.xyz/','103.88.155.62','2023-08-08 23:55:02','2023-08-08 23:55:02','naturally like your web site however you need to take a look at the spelling on several of your posts. A number of them are rife with spelling problems and I find it very bothersome to tell the truth on the other hand I will surely come again again.',0,'0','','comment',0,0),(86,414,'Demo Slot Pragmatic','missgisellecollins@gmail.com','https://slotdemo.rest/','103.88.155.62','2023-08-24 01:26:08','2023-08-24 01:26:08','Awesome! Its genuinely remarkable post, I have got much clear idea regarding from this post',0,'0','','comment',0,0),(87,414,'Prediksi HK','parepprague@mofa.gov.pk','https://whoismyag.org/','103.88.155.62','2023-09-07 18:06:10','2023-09-07 18:06:10','You have noted very interesting points! ps decent web site. “Formal education will make you a living self-education will make you a fortune.” by Jim Rohn.',0,'0','','comment',0,0),(88,414,'Aplikasi Bambu4d','6dff1daf-c482-4a11-9680-97e673e802e6@mail.outlook.com','https://playstore.cam/','103.88.155.62','2023-09-08 23:09:07','2023-09-08 23:09:07','This is my first time pay a quick visit at here and i am really happy to read everthing at one place',0,'0','','comment',0,0),(89,414,'Bambu4d Login','cabanier@adobe.com','https://bambu4d99.com/','103.88.155.62','2023-09-11 12:19:14','2023-09-11 12:19:14','Hi! I’m at work surfing around your blog from my new iphone 4! Just wanted to say I love reading your blog and look forward to all your posts! Keep up the fantastic work!',0,'0','','comment',0,0),(90,414,'RTP Slot Nolimit City','takeshifur@gmail.com','https://bambu4drtp.rest/nolimit.html','103.88.155.62','2023-09-12 10:16:21','2023-09-12 10:16:21','Great information shared.. really enjoyed reading this post thank you author for sharing this post .. appreciated',0,'0','','comment',0,0),(91,414,'slot gmw','ofertas@solarmora.com','https://bambu4drtp.rest/gmw.html','103.88.155.62','2023-09-18 00:59:17','2023-09-18 00:59:17','Keep working ,terrific job!',0,'0','','comment',0,0),(92,414,'Slot Online','bryar2@percikanilmu.com','https://dishut.kalteng.go.id/files/slot-online/','103.88.155.62','2023-09-20 14:45:42','2023-09-20 14:45:42','Cool that really helps, thank you.',0,'0','','comment',0,0),(93,414,'Prediksi Japan','bradlane62@gmail.com','https://whoismyag.org/','103.88.155.62','2023-09-21 15:16:17','2023-09-21 15:16:17','Very well presented. Every quote was awesome and thanks for sharing the content. Keep sharing and keep motivating others.',0,'0','','comment',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_crp_portfolios`
--

DROP TABLE IF EXISTS `wp_crp_portfolios`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_crp_portfolios` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `corder` text DEFAULT NULL,
  `options` text DEFAULT NULL,
  `extoptions` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_crp_portfolios`
--

LOCK TABLES `wp_crp_portfolios` WRITE;
/*!40000 ALTER TABLE `wp_crp_portfolios` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_crp_portfolios` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_crp_projects`
--

DROP TABLE IF EXISTS `wp_crp_projects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_crp_projects` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pid` int(11) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `url` text DEFAULT NULL,
  `cover` text DEFAULT NULL,
  `pics` text DEFAULT NULL,
  `categories` text DEFAULT NULL,
  `cdate` datetime DEFAULT NULL,
  `details` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_crp_projects`
--

LOCK TABLES `wp_crp_projects` WRITE;
/*!40000 ALTER TABLE `wp_crp_projects` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_crp_projects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_e_portfolio`
--

DROP TABLE IF EXISTS `wp_e_portfolio`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_portfolio` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `media_type` varchar(10) NOT NULL,
  `image_name` varchar(500) NOT NULL,
  `title` varchar(500) NOT NULL,
  `murl` varchar(2000) DEFAULT NULL,
  `mtag` varchar(5000) DEFAULT NULL,
  `open_link_in` tinyint(1) NOT NULL DEFAULT 0,
  `vtype` varchar(50) DEFAULT NULL,
  `vid` varchar(300) DEFAULT NULL,
  `videourl` varchar(1000) DEFAULT NULL,
  `embed_url` varchar(300) DEFAULT NULL,
  `HdnMediaSelection` varchar(300) NOT NULL,
  `createdon` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_e_portfolio`
--

LOCK TABLES `wp_e_portfolio` WRITE;
/*!40000 ALTER TABLE `wp_e_portfolio` DISABLE KEYS */;
INSERT INTO `wp_e_portfolio` VALUES (1,'video','Hp4lUuSalOE_big.jpg','Prolotherapy with Dr. Fields testimonial (Wilbure low back)','https://www.youtube.com/watch?v=Hp4lUuSalOE','',1,'youtube','Hp4lUuSalOE','https://www.youtube.com/watch?v=Hp4lUuSalOE','//www.youtube.com/embed/Hp4lUuSalOE','http://img.youtube.com/vi/Hp4lUuSalOE/0.jpg','2019-06-12 05:53:00'),(2,'video','jBiDs3CZb60_big.jpg','','https://www.youtube.com/watch?v=jBiDs3CZb60','',1,'youtube','jBiDs3CZb60','https://www.youtube.com/watch?v=jBiDs3CZb60','//www.youtube.com/embed/jBiDs3CZb60','https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg','2019-06-12 06:20:00');
/*!40000 ALTER TABLE `wp_e_portfolio` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_draft_submissions`
--

DROP TABLE IF EXISTS `wp_gf_draft_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_draft_submissions` (
  `uuid` char(32) NOT NULL,
  `email` varchar(255) DEFAULT NULL,
  `form_id` mediumint(8) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` varchar(39) NOT NULL,
  `source_url` longtext NOT NULL,
  `submission` longtext NOT NULL,
  PRIMARY KEY (`uuid`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_draft_submissions`
--

LOCK TABLES `wp_gf_draft_submissions` WRITE;
/*!40000 ALTER TABLE `wp_gf_draft_submissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_gf_draft_submissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_entry`
--

DROP TABLE IF EXISTS `wp_gf_entry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_entry` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL,
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `date_updated` datetime DEFAULT NULL,
  `is_starred` tinyint(1) NOT NULL DEFAULT 0,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `ip` varchar(39) NOT NULL,
  `source_url` varchar(200) NOT NULL DEFAULT '',
  `user_agent` varchar(250) NOT NULL DEFAULT '',
  `currency` varchar(5) DEFAULT NULL,
  `payment_status` varchar(15) DEFAULT NULL,
  `payment_date` datetime DEFAULT NULL,
  `payment_amount` decimal(19,2) DEFAULT NULL,
  `payment_method` varchar(30) DEFAULT NULL,
  `transaction_id` varchar(50) DEFAULT NULL,
  `is_fulfilled` tinyint(1) DEFAULT NULL,
  `created_by` bigint(20) unsigned DEFAULT NULL,
  `transaction_type` tinyint(1) DEFAULT NULL,
  `status` varchar(20) NOT NULL DEFAULT 'active',
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `form_id_status` (`form_id`,`status`)
) ENGINE=MyISAM AUTO_INCREMENT=1287 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_entry`
--

LOCK TABLES `wp_gf_entry` WRITE;
/*!40000 ALTER TABLE `wp_gf_entry` DISABLE KEYS */;
INSERT INTO `wp_gf_entry` VALUES (1,1,NULL,'2020-04-26 02:32:50','2020-04-26 02:32:50',0,1,'51.75.56.36','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(2,1,NULL,'2020-04-26 07:00:27','2020-04-26 07:00:27',0,0,'104.227.97.122','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(3,1,NULL,'2020-04-27 13:48:38','2020-04-27 13:48:38',0,0,'209.99.133.164','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(4,1,NULL,'2020-04-28 06:19:36','2020-04-28 06:19:36',0,0,'45.94.235.109','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(5,1,NULL,'2020-04-29 18:26:53','2020-04-29 18:26:53',0,1,'97.73.244.29','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(6,1,NULL,'2020-05-01 23:51:25','2020-05-01 23:51:25',0,1,'66.214.38.161','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(7,1,NULL,'2020-05-05 03:33:57','2020-05-05 03:33:57',0,1,'172.58.29.230','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 Instagram 139.1.0.39.120 (iPhone9,4; iOS 13_3_1; en_US; en; scale=2.61; 1080x1920; 211471232)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(8,1,NULL,'2020-05-08 01:27:16','2020-05-08 01:27:16',0,0,'72.194.10.9','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(9,1,NULL,'2020-05-20 02:32:38','2020-05-20 02:32:38',0,0,'107.77.230.227','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(10,1,NULL,'2020-05-21 23:26:12','2020-05-21 23:26:12',0,0,'12.133.92.42','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(11,1,NULL,'2020-05-22 15:29:56','2020-05-22 15:29:56',0,0,'107.77.202.72','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/81.0.4044.124 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(12,1,NULL,'2020-05-24 22:39:08','2020-05-24 22:39:08',0,0,'24.77.12.84','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; SM-A530W) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(13,1,NULL,'2020-05-24 23:02:25','2020-05-24 23:02:25',0,0,'158.69.241.134','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(14,1,NULL,'2020-05-27 02:38:25','2020-05-27 02:38:25',0,0,'47.138.28.65','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(15,1,NULL,'2020-05-30 01:36:47','2020-05-30 01:36:47',0,0,'172.58.30.132','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; SAMSUNG SM-G955U) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/11.1 Chrome/75.0.3770.143 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(16,1,NULL,'2020-06-03 05:13:33','2020-06-03 05:13:33',0,0,'193.37.252.15','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(17,1,NULL,'2020-06-03 17:31:10','2020-06-03 17:31:10',0,0,'23.89.247.106','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(18,1,NULL,'2020-06-06 15:39:09','2020-06-06 15:39:09',0,0,'24.204.40.194','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(19,1,NULL,'2020-06-09 00:56:46','2020-06-09 00:56:46',0,0,'24.176.235.125','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(20,1,NULL,'2020-06-09 03:47:37','2020-06-09 03:47:37',0,0,'24.176.235.125','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(21,1,NULL,'2020-06-16 21:15:58','2020-06-16 21:15:58',0,0,'24.199.25.122','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:77.0) Gecko/20100101 Firefox/77.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(22,1,NULL,'2020-06-17 16:21:22','2020-06-17 16:21:22',0,0,'174.193.194.27','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(23,1,NULL,'2020-06-17 20:59:14','2020-06-17 20:59:14',0,0,'174.193.194.27','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(24,1,NULL,'2020-06-22 04:15:12','2020-06-22 04:15:12',0,0,'37.120.217.4','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(25,1,NULL,'2020-06-23 06:01:27','2020-06-23 06:01:27',0,0,'47.11.175.34','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(26,1,NULL,'2020-06-24 01:29:48','2020-06-24 01:29:48',0,0,'47.148.85.199','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(27,1,NULL,'2020-06-24 03:15:17','2020-06-24 03:15:17',0,0,'47.148.85.199','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(28,1,NULL,'2020-06-25 01:26:54','2020-06-25 01:26:54',0,0,'46.166.143.102','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(29,1,NULL,'2020-06-27 18:04:07','2020-06-27 18:04:07',0,0,'104.1.54.32','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(30,1,NULL,'2020-06-29 16:23:47','2020-06-29 16:23:47',0,0,'134.202.64.35','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(31,1,NULL,'2020-07-03 15:15:42','2020-07-03 15:15:42',0,0,'66.146.40.42','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36 Edg/83.0.478.58','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(32,1,NULL,'2020-07-04 08:38:45','2020-07-04 08:38:45',0,0,'104.227.121.235','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(33,1,NULL,'2020-07-08 14:22:23','2020-07-08 14:22:23',0,0,'172.58.16.18','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; moto g(7) power) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.83 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(34,1,NULL,'2020-07-08 16:02:42','2020-07-08 16:02:42',0,0,'45.120.50.163','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(35,1,NULL,'2020-07-10 01:03:33','2020-07-10 01:03:33',0,0,'71.84.53.108','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(36,1,NULL,'2020-07-10 17:39:08','2020-07-10 17:39:08',0,0,'107.184.235.156','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(37,1,NULL,'2020-07-11 19:04:30','2020-07-11 19:04:30',0,0,'185.210.217.4','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 Kinza/4.9.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(38,1,NULL,'2020-07-12 15:12:05','2020-07-12 15:12:05',0,0,'38.132.115.98','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(39,1,NULL,'2020-07-13 16:38:49','2020-07-13 16:38:49',0,0,'74.82.136.84','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(40,1,NULL,'2020-07-13 16:49:38','2020-07-13 16:49:38',0,0,'174.85.54.204','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(41,1,NULL,'2020-07-13 21:23:13','2020-07-13 21:23:13',0,0,'76.87.142.54','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(42,1,NULL,'2020-07-13 21:32:59','2020-07-13 21:32:59',0,0,'172.241.142.204','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(43,1,NULL,'2020-07-14 22:58:20','2020-07-14 22:58:20',0,0,'99.17.223.213','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(44,1,NULL,'2020-07-14 23:02:01','2020-07-14 23:02:01',0,0,'23.242.121.30','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 8.0.0; LG-H872) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(45,1,NULL,'2020-07-15 15:25:51','2020-07-15 15:25:51',0,0,'98.238.166.85','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(46,1,NULL,'2020-07-16 03:21:06','2020-07-16 03:21:06',0,0,'196.196.224.178','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(47,1,NULL,'2020-07-16 16:39:00','2020-07-16 16:39:00',0,0,'68.231.217.52','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(48,1,NULL,'2020-07-16 17:50:14','2020-07-16 17:50:14',0,0,'166.137.163.40','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(49,1,NULL,'2020-07-23 13:08:57','2020-07-23 13:08:57',0,0,'115.124.44.246','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(50,1,NULL,'2020-07-25 16:56:28','2020-07-25 16:56:28',0,0,'76.95.230.143','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(51,1,NULL,'2020-07-26 23:33:27','2020-07-26 23:33:27',0,0,'104.32.10.249','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(52,1,NULL,'2020-07-27 22:39:14','2020-07-27 22:39:14',0,0,'78.159.113.195','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(53,1,NULL,'2020-07-29 17:53:52','2020-07-29 17:53:52',0,0,'24.205.180.140','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 8.1.0; Elite Go) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(54,1,NULL,'2020-07-30 20:30:34','2020-07-30 20:30:34',0,0,'68.164.90.35','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(55,1,NULL,'2020-07-31 15:07:45','2020-07-31 15:07:45',0,0,'185.153.180.246','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 8.1.0; LML212VL Build/OPM1.171019.019; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/70.0.3538.110 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(56,1,NULL,'2020-07-31 19:57:12','2020-07-31 19:57:12',0,0,'47.180.247.127','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(57,1,NULL,'2020-07-31 20:38:11','2020-07-31 20:38:11',0,0,'172.58.36.167','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; SM-A102U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(58,1,NULL,'2020-07-31 23:44:13','2020-07-31 23:44:13',0,0,'72.199.26.245','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(59,1,NULL,'2020-08-04 21:42:51','2020-08-04 21:42:51',0,0,'205.157.154.23','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(60,1,NULL,'2020-08-05 01:30:07','2020-08-05 01:30:07',0,0,'185.232.21.126','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(61,1,NULL,'2020-08-05 16:51:09','2020-08-05 16:51:09',0,0,'172.58.36.164','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 8.0.0; moto e5 plus Build/OCPS27.91-150-11-12; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/84.0.4147.111 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(62,1,NULL,'2020-08-05 17:23:09','2020-08-05 17:23:09',0,0,'185.153.180.246','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; SM-S767VL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.111 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(63,1,NULL,'2020-08-05 17:29:26','2020-08-05 17:29:26',0,0,'185.153.180.246','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; SM-S767VL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.111 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(64,1,NULL,'2020-08-05 23:48:13','2020-08-05 23:48:13',0,0,'97.94.183.230','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; SM-G955U1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.111 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(65,1,NULL,'2020-08-06 17:10:52','2020-08-06 17:10:52',0,0,'47.51.46.166','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 8.1.0; A502DL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.111 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(66,1,NULL,'2020-08-08 18:54:24','2020-08-08 18:54:24',0,0,'99.234.82.107','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(119,1,NULL,'2020-09-18 03:35:53','2020-09-18 03:35:53',0,0,'68.109.197.38','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/85.0.4183.109 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(68,1,NULL,'2020-08-09 18:34:51','2020-08-09 18:34:51',0,0,'99.234.82.107','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(69,1,NULL,'2020-08-10 01:18:29','2020-08-10 01:18:29',0,0,'45.49.230.13','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(70,1,NULL,'2020-08-12 22:36:50','2020-08-12 22:36:50',0,0,'108.194.234.46','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(71,1,NULL,'2020-08-13 21:44:07','2020-08-13 21:44:07',0,0,'108.194.234.46','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(72,1,NULL,'2020-08-14 16:08:32','2020-08-14 16:08:32',0,0,'174.243.160.243','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(118,1,NULL,'2020-09-17 21:31:22','2020-09-17 21:31:22',0,0,'70.93.164.151','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(75,1,NULL,'2020-08-16 05:54:01','2020-08-16 05:54:01',0,0,'89.187.168.182','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(76,1,NULL,'2020-08-18 18:11:29','2020-08-18 18:11:29',0,0,'172.58.21.98','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; cp3705A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.116 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(77,1,NULL,'2020-08-18 20:30:05','2020-08-18 20:30:05',0,0,'67.182.90.196','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(78,1,NULL,'2020-08-20 23:02:53','2020-08-20 23:02:53',0,0,'162.195.214.156','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(79,1,NULL,'2020-08-21 18:12:42','2020-08-21 18:12:42',0,0,'98.184.206.80','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(80,1,NULL,'2020-08-22 20:42:49','2020-08-22 20:42:49',0,0,'76.95.234.210','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/28.0 Mobile/15E148 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(81,1,NULL,'2020-08-23 21:28:49','2020-08-23 21:28:49',0,0,'162.231.144.167','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(82,1,NULL,'2020-08-24 00:12:54','2020-08-24 00:12:54',0,0,'162.231.144.167','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(83,1,NULL,'2020-08-24 00:24:24','2020-08-24 00:24:24',0,0,'162.231.144.167','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(84,1,NULL,'2020-08-24 18:07:48','2020-08-24 18:07:48',0,0,'153.48.247.250','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(85,1,NULL,'2020-08-25 17:58:46','2020-08-25 17:58:46',0,0,'174.195.132.108','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(86,1,NULL,'2020-08-25 20:19:14','2020-08-25 20:19:14',0,0,'107.216.225.170','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; LM-X320) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(87,1,NULL,'2020-08-25 21:07:11','2020-08-25 21:07:11',0,0,'67.218.119.159','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 Edg/84.0.522.58','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(88,1,NULL,'2020-08-26 00:03:21','2020-08-26 00:03:21',0,0,'68.8.191.152','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36 Edg/84.0.522.63','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(89,1,NULL,'2020-08-26 12:44:55','2020-08-26 12:44:55',0,0,'181.215.204.237','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(90,1,NULL,'2020-08-26 19:52:57','2020-08-26 19:52:57',0,0,'172.14.12.14','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(91,1,NULL,'2020-08-27 15:09:25','2020-08-27 15:09:25',0,0,'69.62.194.173','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(92,1,NULL,'2020-08-27 21:51:23','2020-08-27 21:51:23',0,0,'107.184.226.64','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(93,1,NULL,'2020-08-28 20:17:23','2020-08-28 20:17:23',0,0,'172.14.12.14','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(94,1,NULL,'2020-08-28 21:02:16','2020-08-28 21:02:16',0,0,'71.84.27.202','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(95,1,NULL,'2020-08-31 18:43:48','2020-08-31 18:43:48',0,0,'172.58.21.42','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; 5032W) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.111 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(96,1,NULL,'2020-08-31 21:32:01','2020-08-31 21:32:01',0,0,'172.58.27.192','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 7.0; SM-J327T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.136 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(97,1,NULL,'2020-09-01 16:05:12','2020-09-01 16:05:12',0,0,'68.91.157.117','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(98,1,NULL,'2020-09-02 14:58:46','2020-09-02 14:58:46',0,0,'172.14.12.14','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(99,1,NULL,'2020-09-02 19:12:15','2020-09-02 19:12:15',0,0,'207.244.252.113','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(100,1,NULL,'2020-09-02 21:39:38','2020-09-02 21:39:38',0,0,'99.17.219.21','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(101,1,NULL,'2020-09-03 03:36:16','2020-09-03 03:36:16',0,0,'108.185.111.32','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(102,1,NULL,'2020-09-03 21:30:00','2020-09-03 21:30:00',0,0,'172.14.12.14','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(117,1,NULL,'2020-09-16 22:28:11','2020-09-16 22:28:11',0,0,'172.56.38.216','https://www.drfields.com/contact/?campaignid=403253976&adgroupid=1278732374629345&creative&matchtype=b&network=s&device=m&keyword=remedies+for+shoulder+pain','Mozilla/5.0 (Linux; Android 10; LM-K500 Build/QKQ1.200216.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/80.0.3987.99 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(104,1,NULL,'2020-09-05 02:12:31','2020-09-05 02:12:31',0,0,'190.187.253.29','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(105,1,NULL,'2020-09-08 18:10:05','2020-09-08 18:10:05',0,0,'172.58.33.53','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 8.1.0; SM-J260T1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.81 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(106,1,NULL,'2020-09-09 20:02:34','2020-09-09 20:02:34',0,0,'67.49.37.33','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(107,1,NULL,'2020-09-09 22:18:30','2020-09-09 22:18:30',0,0,'97.97.102.128','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(108,1,NULL,'2020-09-09 23:53:06','2020-09-09 23:53:06',0,0,'75.12.20.65','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(109,1,NULL,'2020-09-09 23:56:09','2020-09-09 23:56:09',0,0,'97.97.102.128','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(110,1,NULL,'2020-09-10 10:19:28','2020-09-10 10:19:28',0,0,'89.187.168.140','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(111,1,NULL,'2020-09-10 15:41:51','2020-09-10 15:41:51',0,0,'207.244.252.113','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(112,1,NULL,'2020-09-10 16:37:20','2020-09-10 16:37:20',0,0,'84.17.51.50','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(113,1,NULL,'2020-09-11 19:37:42','2020-09-11 19:37:42',0,0,'76.168.27.167','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(114,1,NULL,'2020-09-11 23:00:04','2020-09-11 23:00:04',0,0,'84.17.60.215','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(115,1,NULL,'2020-09-13 06:03:30','2020-09-13 06:03:30',0,0,'45.120.49.23','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(116,1,NULL,'2020-09-13 23:24:53','2020-09-13 23:24:53',0,0,'192.99.62.49','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(120,1,NULL,'2020-09-18 06:15:37','2020-09-18 06:15:37',0,0,'174.193.144.114','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(121,1,NULL,'2020-09-19 02:55:41','2020-09-19 02:55:41',0,0,'73.70.39.242','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(122,1,NULL,'2020-09-23 14:48:48','2020-09-23 14:48:48',0,0,'66.18.185.141','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(123,1,NULL,'2020-09-26 18:13:52','2020-09-26 18:13:52',0,0,'99.67.157.80','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(124,1,NULL,'2020-09-26 21:30:57','2020-09-26 21:30:57',0,0,'76.90.72.190','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(125,1,NULL,'2020-09-28 18:30:58','2020-09-28 18:30:58',0,0,'104.129.198.150','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(126,1,NULL,'2020-09-28 18:33:51','2020-09-28 18:33:51',0,0,'104.174.113.150','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(127,1,NULL,'2020-09-30 14:50:08','2020-09-30 14:50:08',0,0,'76.89.131.233','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/85.0.4183.109 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(128,1,NULL,'2020-09-30 14:52:03','2020-09-30 14:52:03',0,0,'76.89.131.233','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/85.0.4183.109 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(129,1,NULL,'2020-10-06 21:48:53','2020-10-06 21:48:53',0,0,'76.91.168.79','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(130,1,NULL,'2020-10-11 10:39:10','2020-10-11 10:39:10',0,0,'172.248.35.105','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(131,1,NULL,'2020-10-11 18:23:26','2020-10-11 18:23:26',0,0,'47.151.131.187','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(132,1,NULL,'2020-10-12 23:17:15','2020-10-12 23:17:15',0,0,'172.58.30.248','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; LGL322DL Build/PKQ1.190414.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/85.0.4183.127 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(133,1,NULL,'2020-10-13 14:16:23','2020-10-13 14:16:23',0,0,'71.226.129.55','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(134,1,NULL,'2020-10-13 21:31:35','2020-10-13 21:31:35',0,0,'67.166.133.138','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(135,1,NULL,'2020-10-15 22:57:09','2020-10-15 22:57:09',0,0,'47.154.25.120','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(136,1,NULL,'2020-10-16 05:50:57','2020-10-16 05:50:57',0,0,'76.88.0.139','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(137,1,NULL,'2020-10-16 17:02:30','2020-10-16 17:02:30',0,0,'172.58.17.21','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18363','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(138,1,NULL,'2020-10-19 20:14:14','2020-10-19 20:14:14',0,0,'47.152.210.148','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(139,1,NULL,'2020-10-19 22:12:49','2020-10-19 22:12:49',0,0,'172.58.19.1','https://www.drfields.com/contact/?campaignid=403253979&adgroupid=1282030909510692&creative&matchtype=b&network=o&device=m&keyword=%2Bosteoarthritis+%2Bknee+%2Btreatment','Mozilla/5.0 (Linux; Android 7.0; SM-J727T1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.127 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(140,1,NULL,'2020-10-20 19:25:19','2020-10-20 19:25:19',0,0,'172.89.116.69','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(141,1,NULL,'2020-10-20 22:59:39','2020-10-20 22:59:39',0,0,'73.90.121.33','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(142,1,NULL,'2020-10-21 00:08:47','2020-10-21 00:08:47',0,0,'23.126.185.124','https://www.drfields.com/contact/','Mozilla/5.0 (X11; CrOS armv7l 12105.100.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.144 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(143,1,NULL,'2020-10-22 17:34:40','2020-10-22 17:34:40',0,0,'172.58.31.186','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; LM-K500) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(144,1,NULL,'2020-10-22 18:24:46','2020-10-22 18:24:46',0,0,'76.87.83.77','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; moto g(7) play) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.127 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(145,1,NULL,'2020-10-22 23:44:56','2020-10-22 23:44:56',0,0,'172.91.121.162','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(146,1,NULL,'2020-10-26 18:19:04','2020-10-26 18:19:04',0,0,'172.91.106.249','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(147,1,NULL,'2020-10-26 22:56:58','2020-10-26 22:56:58',0,0,'162.197.230.122','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(148,1,NULL,'2020-10-27 00:37:29','2020-10-27 00:37:29',0,0,'72.194.35.63','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(149,1,NULL,'2020-10-27 02:12:36','2020-10-27 02:12:36',0,0,'93.170.123.46','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(150,1,NULL,'2020-10-28 01:36:26','2020-10-28 01:36:26',0,0,'47.232.151.59','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/86.0.4240.93 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(151,1,NULL,'2020-11-07 00:20:43','2020-11-07 00:20:43',0,0,'76.230.243.230','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(152,1,NULL,'2020-11-07 05:44:33','2020-11-07 05:44:33',0,0,'174.45.50.138','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(153,1,NULL,'2020-11-12 08:08:37','2020-11-12 08:08:37',0,0,'191.101.66.95','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Trident/7.0; rv:11.0) like Gecko','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(154,1,NULL,'2020-11-13 18:35:42','2020-11-13 18:35:42',0,0,'67.161.75.148','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(155,1,NULL,'2020-11-14 22:57:01','2020-11-14 22:57:01',0,0,'137.159.103.243','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(156,1,NULL,'2020-11-16 15:25:47','2020-11-16 15:25:47',0,0,'104.190.166.135','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(157,1,NULL,'2020-11-20 19:26:40','2020-11-20 19:26:40',0,0,'68.116.92.248','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; 5032W Build/PPR1.180610.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/87.0.4280.66 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(158,1,NULL,'2020-11-23 18:55:22','2020-11-23 18:55:22',0,0,'67.188.250.233','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_0_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(159,1,NULL,'2020-11-24 00:39:02','2020-11-24 00:39:02',0,0,'162.229.189.141','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(160,1,NULL,'2020-11-24 18:22:17','2020-11-24 18:22:17',0,0,'67.45.113.34','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; SM-T387V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(161,1,NULL,'2020-11-24 22:14:12','2020-11-24 22:14:12',0,0,'24.24.148.79','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(162,1,NULL,'2020-11-26 13:20:24','2020-11-26 13:20:24',0,0,'173.196.144.188','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(163,1,NULL,'2020-11-26 18:19:56','2020-11-26 18:19:56',0,0,'174.195.199.240','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(164,1,NULL,'2020-11-28 02:54:49','2020-11-28 02:54:49',0,0,'76.90.235.48','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(165,1,NULL,'2020-12-02 17:46:29','2020-12-02 17:46:29',0,0,'23.241.202.252','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(166,1,NULL,'2020-12-03 16:31:51','2020-12-03 16:31:51',0,0,'104.7.198.113','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 8.1.0; A503DL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(167,1,NULL,'2020-12-11 06:14:46','2020-12-11 06:14:46',0,0,'162.211.151.66','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(168,1,NULL,'2020-12-11 17:31:07','2020-12-11 17:31:07',0,0,'149.142.243.94','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(169,1,NULL,'2020-12-14 10:37:26','2020-12-14 10:37:26',0,0,'112.201.76.198','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(170,1,NULL,'2020-12-14 21:43:54','2020-12-14 21:43:54',0,0,'98.153.81.58','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(171,1,NULL,'2020-12-16 11:48:59','2020-12-16 11:48:59',0,0,'107.77.229.170','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_0_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(172,1,NULL,'2020-12-19 16:41:33','2020-12-19 16:41:33',0,0,'47.155.212.35','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(173,1,NULL,'2020-12-20 01:53:39','2020-12-20 01:53:39',0,0,'23.240.220.116','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(174,1,NULL,'2020-12-21 13:26:16','2020-12-21 13:26:16',0,0,'178.159.37.125','https://www.drfields.com/Contact/','Mozilla/5.0 (Windows NT 7.1; Win64; rv:32.1) Gecko/20100101 Firefox/32.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(175,1,NULL,'2020-12-21 17:58:32','2020-12-21 17:58:32',0,0,'76.176.39.147','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(176,1,NULL,'2020-12-23 18:32:36','2020-12-23 18:32:36',0,0,'73.223.14.180','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [FBAN/FBIOS;FBDV/iPhone9,2;FBMD/iPhone;FBSN/iOS;FBSV/14.2;FBSS/3;FBID/phone;FBLC/en_US;FBOP/5]','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(177,1,NULL,'2020-12-23 20:37:23','2020-12-23 20:37:23',0,0,'174.193.205.144','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(178,1,NULL,'2020-12-26 21:29:03','2020-12-26 21:29:03',0,0,'76.95.246.89','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(179,1,NULL,'2020-12-28 23:57:10','2020-12-28 23:57:10',0,0,'108.184.71.117','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 Edg/87.0.664.66','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(180,1,NULL,'2020-12-29 05:14:15','2020-12-29 05:14:15',0,0,'104.51.108.40','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(181,1,NULL,'2020-12-29 15:38:41','2020-12-29 15:38:41',0,0,'104.1.49.190','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(182,1,NULL,'2020-12-29 23:39:06','2020-12-29 23:39:06',0,0,'72.197.128.146','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(183,1,NULL,'2020-12-30 23:34:08','2020-12-30 23:34:08',0,0,'111.88.11.92','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(184,1,NULL,'2020-12-31 11:26:32','2020-12-31 11:26:32',0,0,'23.123.167.3','https://www.drfields.com/contact/','Mozilla/5.0 (iPad; CPU OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(185,1,NULL,'2020-12-31 17:25:27','2020-12-31 17:25:27',0,0,'172.56.39.137','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; LM-K500) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.99 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(186,1,NULL,'2021-01-01 21:15:47','2021-01-01 21:15:47',0,0,'73.158.49.127','https://www.drfields.com/contact/','Mozilla/5.0 (iPad; CPU OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/137.2.345735309 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(187,1,NULL,'2021-01-05 00:20:38','2021-01-05 00:20:38',0,0,'172.56.17.128','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 8.1.0; REVVL 2 PLUS) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(188,1,NULL,'2021-01-05 12:07:39','2021-01-05 12:07:39',0,0,'27.56.162.57','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(189,1,NULL,'2021-01-07 21:46:30','2021-01-07 21:46:30',0,0,'107.77.228.136','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; SM-G970U Build/QP1A.190711.020; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/87.0.4280.101 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(190,1,NULL,'2021-01-07 21:47:21','2021-01-07 21:47:21',0,0,'107.77.228.136','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; SM-G970U Build/QP1A.190711.020; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/87.0.4280.101 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(191,1,NULL,'2021-01-08 17:32:26','2021-01-08 17:32:26',0,0,'23.241.181.168','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(192,1,NULL,'2021-01-08 18:25:49','2021-01-08 18:25:49',0,0,'47.144.218.144','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(193,1,NULL,'2021-01-12 11:11:03','2021-01-12 11:11:03',0,0,'202.78.236.84','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(194,1,NULL,'2021-01-13 22:57:55','2021-01-13 22:57:55',0,0,'98.150.81.16','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(195,1,NULL,'2021-01-15 04:32:23','2021-01-15 04:32:23',0,0,'172.10.161.209','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(196,1,NULL,'2021-01-15 17:51:27','2021-01-15 17:51:27',0,0,'172.251.164.163','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(197,1,NULL,'2021-01-15 18:31:05','2021-01-15 18:31:05',0,0,'108.65.1.77','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; SM-G965U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(198,1,NULL,'2021-01-17 06:52:47','2021-01-17 06:52:47',0,0,'36.35.151.150','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(199,1,NULL,'2021-01-18 04:18:29','2021-01-18 04:18:29',0,0,'47.45.64.51','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(200,1,NULL,'2021-01-18 10:21:26','2021-01-18 10:21:26',0,0,'68.235.242.102','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(201,1,NULL,'2021-01-18 14:25:12','2021-01-18 14:25:12',0,0,'198.46.170.81','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(202,1,NULL,'2021-01-19 20:04:17','2021-01-19 20:04:17',0,0,'174.222.146.68','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 8.1.0; SM-J327V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(203,1,NULL,'2021-01-21 20:22:23','2021-01-21 20:22:23',0,0,'76.169.76.45','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; MAGWJS; rv:11.0) like Gecko','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(204,1,NULL,'2021-01-21 22:00:42','2021-01-21 22:00:42',0,0,'174.85.85.232','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; A508DL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(205,1,NULL,'2021-01-21 23:42:38','2021-01-21 23:42:38',0,0,'174.251.162.98','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; LGL322DL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.92 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(206,1,NULL,'2021-01-22 23:47:13','2021-01-22 23:47:13',0,0,'172.56.17.237','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; U693CL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.92 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(207,1,NULL,'2021-01-26 17:27:47','2021-01-26 17:27:47',0,0,'107.126.92.4','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(208,1,NULL,'2021-01-27 06:07:02','2021-01-27 06:07:02',0,0,'172.58.16.37','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; LM-Q730) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.99 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(209,1,NULL,'2021-01-27 06:08:21','2021-01-27 06:08:21',0,0,'172.58.16.37','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; LM-Q730) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.99 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(210,1,NULL,'2021-01-27 06:08:58','2021-01-27 06:08:58',0,0,'172.58.16.37','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; LM-Q730) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.99 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(211,1,NULL,'2021-01-27 21:51:23','2021-01-27 21:51:23',0,0,'172.250.200.43','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(212,1,NULL,'2021-01-28 05:16:15','2021-01-28 05:16:15',0,0,'172.58.16.45','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; LM-Q730) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.99 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(213,1,NULL,'2021-01-28 05:58:35','2021-01-28 05:58:35',0,0,'172.58.16.63','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; LM-Q730) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.99 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(214,1,NULL,'2021-01-30 02:29:23','2021-01-30 02:29:23',0,0,'104.35.150.70','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(215,1,NULL,'2021-02-05 02:46:45','2021-02-05 02:46:45',0,0,'72.134.242.52','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(216,1,NULL,'2021-02-06 04:05:30','2021-02-06 04:05:30',0,0,'172.113.247.175','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/87.0.4280.77 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(217,1,NULL,'2021-02-08 18:32:09','2021-02-08 18:32:09',0,0,'76.175.63.32','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(218,1,NULL,'2021-02-08 20:43:49','2021-02-08 20:43:49',0,0,'104.144.240.131','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:48.0) Gecko/20100101 Firefox/48.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(219,1,NULL,'2021-02-08 20:52:08','2021-02-08 20:52:08',0,0,'104.144.186.232','https://www.drfields.com/contact/','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.2; Win64; x64; Trident/5.0)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(220,1,NULL,'2021-02-08 21:44:28','2021-02-08 21:44:28',0,0,'104.144.182.56','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(221,1,NULL,'2021-02-08 22:00:17','2021-02-08 22:00:17',0,0,'75.69.75.128','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(222,1,NULL,'2021-02-08 22:25:54','2021-02-08 22:25:54',0,0,'192.241.105.30','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:46.0) Gecko/20100101 Firefox/46.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(223,1,NULL,'2021-02-08 23:30:48','2021-02-08 23:30:48',0,0,'104.144.163.92','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(224,1,NULL,'2021-02-08 23:48:51','2021-02-08 23:48:51',0,0,'104.144.217.254','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2763.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(225,1,NULL,'2021-02-09 00:49:20','2021-02-09 00:49:20',0,0,'208.144.235.252','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(226,1,NULL,'2021-02-09 10:42:11','2021-02-09 10:42:11',0,0,'122.161.96.198','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(227,1,NULL,'2021-02-09 18:10:12','2021-02-09 18:10:12',0,0,'108.185.75.40','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(228,1,NULL,'2021-02-09 19:44:14','2021-02-09 19:44:14',0,0,'73.116.87.178','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; LGL322DL Build/PKQ1.190414.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/88.0.4324.152 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(229,1,NULL,'2021-02-10 05:55:26','2021-02-10 05:55:26',0,0,'104.144.176.149','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2853.94 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(230,1,NULL,'2021-02-10 07:38:05','2021-02-10 07:38:05',0,0,'104.144.36.101','https://www.drfields.com/contact/','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 5.1; Win64; x64; Trident/4.0)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(231,1,NULL,'2021-02-10 09:27:17','2021-02-10 09:27:17',0,0,'104.144.182.56','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2670.57 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(232,1,NULL,'2021-02-10 12:16:46','2021-02-10 12:16:46',0,0,'202.78.236.241','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(233,1,NULL,'2021-02-10 21:48:05','2021-02-10 21:48:05',0,0,'198.46.170.101','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(234,1,NULL,'2021-02-10 23:20:07','2021-02-10 23:20:07',0,0,'172.114.137.238','https://www.drfields.com/contact/','Mozilla/5.0 (iPad; CPU OS 12_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(235,1,NULL,'2021-02-11 08:15:59','2021-02-11 08:15:59',0,0,'202.78.236.189','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(236,1,NULL,'2021-02-11 22:47:38','2021-02-11 22:47:38',0,0,'75.82.146.14','http://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(237,1,NULL,'2021-02-13 10:07:00','2021-02-13 10:07:00',0,0,'185.195.223.217','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2962.71 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(238,1,NULL,'2021-02-14 05:24:13','2021-02-14 05:24:13',0,0,'186.179.15.7','https://www.drfields.com/contact/','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 10.0; WOW64; Trident/6.0)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(239,1,NULL,'2021-02-14 06:47:28','2021-02-14 06:47:28',0,0,'196.19.190.159','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2679.16 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(240,1,NULL,'2021-02-14 15:04:53','2021-02-14 15:04:53',0,0,'104.144.95.103','https://www.drfields.com/contact/','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/4.0)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(241,1,NULL,'2021-02-14 15:54:01','2021-02-14 15:54:01',0,0,'104.144.61.149','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64; rv:49.0) Gecko/20100101 Firefox/49.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(242,1,NULL,'2021-02-14 20:43:36','2021-02-14 20:43:36',0,0,'192.241.97.165','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:50.0) Gecko/20100101 Firefox/50.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(243,1,NULL,'2021-02-14 20:50:07','2021-02-14 20:50:07',0,0,'104.144.182.56','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(244,1,NULL,'2021-02-15 19:40:09','2021-02-15 19:40:09',0,0,'24.7.5.156','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(245,1,NULL,'2021-02-15 23:22:02','2021-02-15 23:22:02',0,0,'192.210.188.164','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(246,1,NULL,'2021-02-15 23:28:40','2021-02-15 23:28:40',0,0,'107.77.165.62','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; LM-X320 Build/QKQ1.200308.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/87.0.4280.101 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(247,1,NULL,'2021-02-15 23:35:14','2021-02-15 23:35:14',0,0,'104.223.127.151','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(248,1,NULL,'2021-02-17 05:41:23','2021-02-17 05:41:23',0,0,'76.94.43.137','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; SM-G981V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(249,1,NULL,'2021-02-17 07:08:18','2021-02-17 07:08:18',0,0,'47.33.116.28','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; SM-N976U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.152 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(250,1,NULL,'2021-02-17 19:13:23','2021-02-17 19:13:23',0,0,'99.28.216.122','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; SM-G960U Build/QP1A.190711.020; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/88.0.4324.152 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(251,1,NULL,'2021-02-18 14:41:08','2021-02-18 14:41:08',0,0,'192.210.176.13','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(252,1,NULL,'2021-02-18 16:23:54','2021-02-18 16:23:54',0,0,'107.184.99.172','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; SAMSUNG SM-A516V) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/13.2 Chrome/83.0.4103.106 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(253,1,NULL,'2021-02-21 16:27:44','2021-02-21 16:27:44',0,0,'23.243.16.54','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(254,1,NULL,'2021-02-24 20:41:46','2021-02-24 20:41:46',0,0,'172.250.133.135','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(255,1,NULL,'2021-02-25 17:58:20','2021-02-25 17:58:20',0,0,'104.172.23.20','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(256,1,NULL,'2021-02-25 22:10:27','2021-02-25 22:10:27',0,0,'23.90.29.10','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(257,1,NULL,'2021-03-01 16:17:06','2021-03-01 16:17:06',0,0,'184.88.5.20','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(258,1,NULL,'2021-03-01 18:50:38','2021-03-01 18:50:38',0,0,'73.12.143.77','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 Edg/88.0.705.81','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(259,1,NULL,'2021-03-01 22:32:32','2021-03-01 22:32:32',0,0,'198.46.201.167','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(260,1,NULL,'2021-03-04 20:06:29','2021-03-04 20:06:29',0,0,'69.152.132.173','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(261,1,NULL,'2021-03-05 06:31:26','2021-03-05 06:31:26',0,0,'75.113.67.248','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 Edg/88.0.705.81','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(262,1,NULL,'2021-03-10 00:16:59','2021-03-10 00:16:59',0,0,'71.95.221.149','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(263,1,NULL,'2021-03-10 02:23:01','2021-03-10 02:23:01',0,0,'66.159.50.90','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(264,1,NULL,'2021-03-11 00:27:47','2021-03-11 00:27:47',0,0,'73.235.91.136','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; SM-N970U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.86 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(265,1,NULL,'2021-03-11 14:36:03','2021-03-11 14:36:03',0,0,'191.101.200.232','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(266,1,NULL,'2021-03-12 18:32:07','2021-03-12 18:32:07',0,0,'107.77.213.58','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(267,1,NULL,'2021-03-12 19:34:31','2021-03-12 19:34:31',0,0,'24.23.17.2','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(268,1,NULL,'2021-03-13 00:39:44','2021-03-13 00:39:44',0,0,'172.58.35.106','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; moto g stylus) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.152 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(269,1,NULL,'2021-03-14 03:47:36','2021-03-14 03:47:36',0,0,'158.69.241.134','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/87.0.4280.66 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(270,1,NULL,'2021-03-15 14:55:25','2021-03-15 14:55:25',0,0,'111.88.127.5','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(271,1,NULL,'2021-03-16 14:53:07','2021-03-16 14:53:07',0,0,'172.91.80.51','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(272,1,NULL,'2021-03-16 17:45:50','2021-03-16 17:45:50',0,0,'172.58.21.106','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; SM-N950U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.86 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(273,1,NULL,'2021-03-16 19:23:26','2021-03-16 19:23:26',0,0,'45.133.193.3','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(274,1,NULL,'2021-03-17 04:08:13','2021-03-17 04:08:13',0,0,'47.41.220.133','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/87.0.4280.77 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(275,1,NULL,'2021-03-17 18:52:31','2021-03-17 18:52:31',0,0,'69.181.38.83','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(276,1,NULL,'2021-03-18 15:51:01','2021-03-18 15:51:01',0,0,'45.48.125.48','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(277,1,NULL,'2021-03-18 16:42:12','2021-03-18 16:42:12',0,0,'172.56.31.247','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; moto g(7) power) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.181 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(278,1,NULL,'2021-03-18 17:19:37','2021-03-18 17:19:37',0,0,'122.161.243.207','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1; rv:52.0) Gecko/20100101 Firefox/52.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(279,1,NULL,'2021-03-18 21:00:45','2021-03-18 21:00:45',0,0,'162.237.74.144','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:86.0) Gecko/20100101 Firefox/86.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(280,1,NULL,'2021-03-19 21:54:30','2021-03-19 21:54:30',0,0,'5.62.19.32','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(281,1,NULL,'2021-03-22 19:24:18','2021-03-22 19:24:18',0,0,'99.112.64.18','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; KFONWI) AppleWebKit/537.36 (KHTML, like Gecko) Silk/88.4.16 like Chrome/88.0.4324.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(282,1,NULL,'2021-03-23 18:14:47','2021-03-23 18:14:47',0,0,'71.193.61.247','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(283,1,NULL,'2021-03-23 20:44:01','2021-03-23 20:44:01',0,0,'67.171.125.34','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(284,1,NULL,'2021-03-23 21:01:32','2021-03-23 21:01:32',0,0,'172.56.17.77','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; SAMSUNG SM-N960U) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/13.2 Chrome/83.0.4103.106 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(285,1,NULL,'2021-03-28 02:39:11','2021-03-28 02:39:11',0,0,'76.89.137.242','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; SAMSUNG SM-G981V) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/13.2 Chrome/83.0.4103.106 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(286,1,NULL,'2021-03-29 03:32:33','2021-03-29 03:32:33',0,0,'47.145.194.21','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(287,1,NULL,'2021-03-29 05:08:38','2021-03-29 05:08:38',0,0,'76.170.38.162','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(288,1,NULL,'2021-03-29 17:43:29','2021-03-29 17:43:29',0,0,'172.58.31.49','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; LM-Q730 Build/QKQ1.200216.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/89.0.4389.90 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(289,1,NULL,'2021-03-29 18:50:54','2021-03-29 18:50:54',0,0,'24.25.221.199','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(290,1,NULL,'2021-03-29 19:43:42','2021-03-29 19:43:42',0,0,'94.155.33.80','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(291,1,NULL,'2021-03-30 21:09:38','2021-03-30 21:09:38',0,0,'62.113.115.12','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4089.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(292,1,NULL,'2021-03-31 04:43:34','2021-03-31 04:43:34',0,0,'72.49.243.211','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:56.0) Gecko/20100101 Firefox/56.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(293,1,NULL,'2021-03-31 11:41:26','2021-03-31 11:41:26',0,0,'62.113.115.12','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(294,1,NULL,'2021-04-03 13:19:20','2021-04-03 13:19:20',0,0,'185.164.59.158','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(295,1,NULL,'2021-04-05 21:33:04','2021-04-05 21:33:04',0,0,'75.82.6.29','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(296,1,NULL,'2021-04-06 15:23:34','2021-04-06 15:23:34',0,0,'162.225.173.19','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(297,1,NULL,'2021-04-06 18:47:24','2021-04-06 18:47:24',0,0,'172.56.39.81','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; SM-A215U Build/QP1A.190711.020; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/80.0.3987.99 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(298,1,NULL,'2021-04-07 22:42:23','2021-04-07 22:42:23',0,0,'157.145.220.3','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(299,1,NULL,'2021-04-08 01:25:09','2021-04-08 01:25:09',0,0,'76.170.111.120','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.4 Mobile/15E148 DuckDuckGo/7 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(300,1,NULL,'2021-04-08 23:43:00','2021-04-08 23:43:00',0,0,'174.193.1.169','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(301,1,NULL,'2021-04-12 23:06:34','2021-04-12 23:06:34',0,0,'76.86.22.193','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; SM-A215U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(302,1,NULL,'2021-04-12 23:09:49','2021-04-12 23:09:49',0,0,'76.86.22.193','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; SM-A215U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(303,1,NULL,'2021-04-13 18:39:42','2021-04-13 18:39:42',0,0,'172.113.243.218','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(304,1,NULL,'2021-04-14 17:07:39','2021-04-14 17:07:39',0,0,'172.251.133.73','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 Edg/89.0.774.76','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(305,1,NULL,'2021-04-15 19:11:42','2021-04-15 19:11:42',0,0,'174.193.153.157','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 Edg/89.0.774.75','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(306,1,NULL,'2021-04-16 19:37:50','2021-04-16 19:37:50',0,0,'98.152.239.122','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(307,1,NULL,'2021-04-17 00:36:09','2021-04-17 00:36:09',0,0,'23.240.43.9','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(308,1,NULL,'2021-04-17 02:34:38','2021-04-17 02:34:38',0,0,'172.56.17.106','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(309,1,NULL,'2021-04-17 02:37:32','2021-04-17 02:37:32',0,0,'172.56.17.106','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(310,1,NULL,'2021-04-17 10:22:58','2021-04-17 10:22:58',0,0,'196.242.10.118','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(311,1,NULL,'2021-04-20 16:49:34','2021-04-20 16:49:34',0,0,'204.76.211.20','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36 Edg/89.0.774.48','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(312,1,NULL,'2021-04-20 19:03:19','2021-04-20 19:03:19',0,0,'68.231.210.71','https://www.drfields.com/contact/?campaignid=403253977&adgroupid=1289727490929467&creative&matchtype=b&network=o&device=c&keyword=%2Bprolotherapy+%2Bknee','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36 Edg/89.0.774.77','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(313,1,NULL,'2021-04-22 01:35:44','2021-04-22 01:35:44',0,0,'47.149.147.217','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; Pixel 3 XL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.82 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(314,1,NULL,'2021-04-24 13:41:51','2021-04-24 13:41:51',0,0,'98.148.5.129','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(315,1,NULL,'2021-04-27 00:02:00','2021-04-27 00:02:00',0,0,'108.218.253.115','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; LM-K500) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(316,1,NULL,'2021-04-27 17:02:31','2021-04-27 17:02:31',0,0,'172.58.27.202','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 7.1.1; N9517) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(317,1,NULL,'2021-04-27 19:17:50','2021-04-27 19:17:50',0,0,'24.43.131.154','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(318,1,NULL,'2021-04-29 00:27:39','2021-04-29 00:27:39',0,0,'76.217.148.45','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; Pixel 4a) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.82 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(319,1,NULL,'2021-04-29 22:13:33','2021-04-29 22:13:33',0,0,'174.193.160.111','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(320,1,NULL,'2021-05-06 14:06:44','2021-05-06 14:06:44',0,0,'98.153.93.130','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 7.0; P00I) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.91 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(321,1,NULL,'2021-05-06 19:14:25','2021-05-06 19:14:25',0,0,'174.193.216.17','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(322,1,NULL,'2021-05-06 21:24:06','2021-05-06 21:24:06',0,0,'24.6.34.155','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(323,1,NULL,'2021-05-07 17:35:57','2021-05-07 17:35:57',0,0,'172.58.27.130','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(324,1,NULL,'2021-05-08 20:31:31','2021-05-08 20:31:31',0,0,'103.221.232.186','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(325,1,NULL,'2021-05-10 16:24:46','2021-05-10 16:24:46',0,0,'74.213.250.194','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 Edg/90.0.818.56','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(326,1,NULL,'2021-05-10 18:45:49','2021-05-10 18:45:49',0,0,'24.24.170.171','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(327,1,NULL,'2021-05-11 15:53:45','2021-05-11 15:53:45',0,0,'172.126.208.249','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(328,1,NULL,'2021-05-11 18:44:22','2021-05-11 18:44:22',0,0,'12.130.161.6','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 Edg/90.0.818.56','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(329,1,NULL,'2021-05-11 21:00:47','2021-05-11 21:00:47',0,0,'45.51.203.150','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(330,1,NULL,'2021-05-12 17:37:40','2021-05-12 17:37:40',0,0,'174.85.90.208','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/90.0.4430.91 Mobile DuckDuckGo/5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(331,1,NULL,'2021-05-12 21:47:37','2021-05-12 21:47:37',0,0,'47.39.82.145','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.2 Mobile/15E148 DuckDuckGo/7 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(332,1,NULL,'2021-05-13 00:52:26','2021-05-13 00:52:26',0,0,'108.185.162.130','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:88.0) Gecko/20100101 Firefox/88.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(333,1,NULL,'2021-05-13 16:58:44','2021-05-13 16:58:44',0,0,'172.114.180.121','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(334,1,NULL,'2021-05-13 19:50:30','2021-05-13 19:50:30',0,0,'76.248.22.166','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; SM-A102U Build/PPR1.180610.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/90.0.4430.210 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(335,1,NULL,'2021-05-14 17:36:42','2021-05-14 17:36:42',0,0,'76.82.15.10','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(336,1,NULL,'2021-05-14 22:02:57','2021-05-14 22:02:57',0,0,'172.115.219.168','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/87.0.4280.163 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(337,1,NULL,'2021-05-17 19:07:57','2021-05-17 19:07:57',0,0,'108.233.121.156','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(338,1,NULL,'2021-05-18 17:43:11','2021-05-18 17:43:11',0,0,'75.128.52.141','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 Edg/90.0.818.62','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(339,1,NULL,'2021-05-18 18:14:11','2021-05-18 18:14:11',0,0,'108.244.156.25','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 5.1.1; SM-T900) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(340,1,NULL,'2021-05-20 18:47:08','2021-05-20 18:47:08',0,0,'47.6.151.250','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 Edg/90.0.818.62','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(341,1,NULL,'2021-05-21 09:17:00','2021-05-21 09:17:00',0,0,'117.214.11.237','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(342,1,NULL,'2021-05-21 21:49:40','2021-05-21 21:49:40',0,0,'73.192.207.143','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(343,1,NULL,'2021-05-23 01:26:42','2021-05-23 01:26:42',0,0,'174.195.143.230','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; SM-N970U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(344,1,NULL,'2021-05-27 16:13:10','2021-05-27 16:13:10',0,0,'68.189.64.16','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.3 Mobile/15E148 DuckDuckGo/7 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(345,1,NULL,'2021-05-27 21:18:54','2021-05-27 21:18:54',0,0,'203.11.65.215','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(346,1,NULL,'2021-05-28 15:26:13','2021-05-28 15:26:13',0,0,'76.125.61.124','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 ADG/11.0.3270 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(347,1,NULL,'2021-05-31 06:35:10','2021-05-31 06:35:10',0,0,'72.195.219.245','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36 Edg/91.0.864.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(348,1,NULL,'2021-06-01 18:22:49','2021-06-01 18:22:49',0,0,'199.27.175.35','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(349,1,NULL,'2021-06-01 21:30:29','2021-06-01 21:30:29',0,0,'172.88.14.226','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(350,1,NULL,'2021-06-02 19:32:34','2021-06-02 19:32:34',0,0,'76.80.124.46','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(351,1,NULL,'2021-06-03 22:02:24','2021-06-03 22:02:24',0,0,'76.254.101.100','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(352,1,NULL,'2021-06-04 00:55:58','2021-06-04 00:55:58',0,0,'172.118.115.49','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; SM-N975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(353,1,NULL,'2021-06-04 03:22:50','2021-06-04 03:22:50',0,0,'75.84.67.176','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(354,1,NULL,'2021-06-04 14:19:58','2021-06-04 14:19:58',0,0,'207.244.89.166','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(355,1,NULL,'2021-06-08 20:21:09','2021-06-08 20:21:09',0,0,'172.56.16.62','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(356,1,NULL,'2021-06-08 22:05:27','2021-06-08 22:05:27',0,0,'172.58.38.179','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; LM-Q730 Build/QKQ1.200216.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/86.0.4240.185 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(357,1,NULL,'2021-06-09 18:17:38','2021-06-09 18:17:38',0,0,'47.157.185.82','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(358,1,NULL,'2021-06-10 22:43:12','2021-06-10 22:43:12',0,0,'120.29.76.193','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(359,1,NULL,'2021-06-11 01:46:55','2021-06-11 01:46:55',0,0,'172.58.76.154','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(360,1,NULL,'2021-06-11 23:00:05','2021-06-11 23:00:05',0,0,'68.5.29.62','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; SM-G955U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(361,1,NULL,'2021-06-12 23:22:06','2021-06-12 23:22:06',0,0,'104.140.83.17','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(362,1,NULL,'2021-06-14 03:25:00','2021-06-14 03:25:00',0,0,'75.85.173.125','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(363,1,NULL,'2021-06-14 15:05:59','2021-06-14 15:05:59',0,0,'114.142.166.156','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(364,1,NULL,'2021-06-15 00:56:46','2021-06-15 00:56:46',0,0,'120.29.78.207','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(365,1,NULL,'2021-06-15 13:42:22','2021-06-15 13:42:22',0,0,'191.102.153.205','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(366,1,NULL,'2021-06-15 17:03:33','2021-06-15 17:03:33',0,0,'45.49.114.139','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 Edg/91.0.864.48','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(367,1,NULL,'2021-06-16 20:34:01','2021-06-16 20:34:01',0,0,'107.203.255.110','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 Edg/91.0.864.48','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(368,1,NULL,'2021-06-18 20:05:50','2021-06-18 20:05:50',0,0,'162.227.205.64','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(369,1,NULL,'2021-06-18 22:30:09','2021-06-18 22:30:09',0,0,'174.195.133.70','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(370,1,NULL,'2021-06-22 00:02:38','2021-06-22 00:02:38',0,0,'99.99.63.202','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(371,1,NULL,'2021-06-23 18:48:49','2021-06-23 18:48:49',0,0,'76.174.164.38','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(372,1,NULL,'2021-06-24 03:42:16','2021-06-24 03:42:16',0,0,'103.221.234.39','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(373,1,NULL,'2021-06-24 19:31:33','2021-06-24 19:31:33',0,0,'67.181.68.39','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; motorola one 5G ace Build/QZKS30.Q4-40-55-6; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/90.0.4430.210 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(374,1,NULL,'2021-06-25 20:51:21','2021-06-25 20:51:21',0,0,'47.152.200.12','https://www.drfields.com/contact/','Mozilla/5.0 (X11; CrOS x86_64 13904.41.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.81 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(375,1,NULL,'2021-06-25 22:53:45','2021-06-25 22:53:45',0,0,'73.158.34.201','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(376,1,NULL,'2021-06-25 23:12:51','2021-06-25 23:12:51',0,0,'73.158.34.201','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(377,1,NULL,'2021-06-28 14:49:29','2021-06-28 14:49:29',0,0,'72.134.127.179','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/91.0.4472.80 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(378,1,NULL,'2021-06-28 23:50:41','2021-06-28 23:50:41',0,0,'47.51.42.178','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 Edg/91.0.864.59','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(379,1,NULL,'2021-06-28 23:58:53','2021-06-28 23:58:53',0,0,'47.51.42.178','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 Edg/91.0.864.59','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(380,1,NULL,'2021-07-01 04:30:13','2021-07-01 04:30:13',0,0,'96.233.157.250','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1; rv:45.0) Gecko/20100101 Firefox/45.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(381,1,NULL,'2021-07-01 05:18:11','2021-07-01 05:18:11',0,0,'134.122.78.72','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:46.0) Gecko/20100101 Firefox/46.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(382,1,NULL,'2021-07-03 19:00:00','2021-07-03 19:00:00',0,0,'47.152.37.13','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(383,1,NULL,'2021-07-06 09:09:14','2021-07-06 09:09:14',0,0,'158.69.241.227','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/89.0.4389.90 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(384,1,NULL,'2021-07-06 17:45:38','2021-07-06 17:45:38',0,0,'108.214.85.66','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(385,1,NULL,'2021-07-06 19:24:11','2021-07-06 19:24:11',0,0,'104.34.204.114','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(386,1,NULL,'2021-07-07 01:08:27','2021-07-07 01:08:27',0,0,'172.250.19.125','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(387,1,NULL,'2021-07-07 15:35:21','2021-07-07 15:35:21',0,0,'67.45.113.75','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; SM-G996U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.120 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(388,1,NULL,'2021-07-07 17:22:10','2021-07-07 17:22:10',0,0,'47.32.175.149','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(389,1,NULL,'2021-07-07 18:40:47','2021-07-07 18:40:47',0,0,'69.126.85.137','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(390,1,NULL,'2021-07-09 13:43:59','2021-07-09 13:43:59',0,0,'69.249.149.33','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(391,1,NULL,'2021-07-11 05:57:41','2021-07-11 05:57:41',0,0,'72.205.113.207','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(392,1,NULL,'2021-07-11 22:29:06','2021-07-11 22:29:06',0,0,'72.134.44.128','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 Edg/91.0.864.67','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(393,1,NULL,'2021-07-13 16:58:49','2021-07-13 16:58:49',0,0,'47.149.202.86','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(394,1,NULL,'2021-07-13 19:20:25','2021-07-13 19:20:25',0,0,'73.162.55.45','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(395,1,NULL,'2021-07-15 06:27:26','2021-07-15 06:27:26',0,0,'149.34.22.223','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:53.0) Gecko/20100101 Firefox/53.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(396,1,NULL,'2021-07-16 02:04:00','2021-07-16 02:04:00',0,0,'107.77.231.168','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; SM-G975F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(397,1,NULL,'2021-07-19 10:43:55','2021-07-19 10:43:55',0,0,'96.44.140.50','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(398,1,NULL,'2021-07-20 14:21:29','2021-07-20 14:21:29',0,0,'47.229.219.189','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(399,1,NULL,'2021-07-20 16:43:29','2021-07-20 16:43:29',0,0,'69.75.8.226','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; moto g stylus) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.185 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(400,1,NULL,'2021-07-22 16:47:09','2021-07-22 16:47:09',0,0,'76.175.49.199','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/169.0.385036250 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(401,1,NULL,'2021-07-23 19:50:26','2021-07-23 19:50:26',0,0,'47.232.196.173','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(402,1,NULL,'2021-07-23 20:26:49','2021-07-23 20:26:49',0,0,'47.232.196.173','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(403,1,NULL,'2021-07-26 19:01:52','2021-07-26 19:01:52',0,0,'108.185.131.103','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 Edg/92.0.902.55','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(404,1,NULL,'2021-07-27 17:59:39','2021-07-27 17:59:39',0,0,'67.49.117.176','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 8.1.0; RCT6A03W13E) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.115 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(405,1,NULL,'2021-07-28 20:39:09','2021-07-28 20:39:09',0,0,'75.86.122.163','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(406,1,NULL,'2021-07-29 13:41:59','2021-07-29 13:41:59',0,0,'136.52.13.251','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.0; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.3','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(407,1,NULL,'2021-07-29 20:03:39','2021-07-29 20:03:39',0,0,'73.12.161.152','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(408,1,NULL,'2021-07-29 21:24:30','2021-07-29 21:24:30',0,0,'172.90.229.171','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(409,1,NULL,'2021-07-30 22:53:00','2021-07-30 22:53:00',0,0,'67.52.163.242','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 Edg/92.0.902.55','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(410,1,NULL,'2021-07-31 00:23:03','2021-07-31 00:23:03',0,0,'99.106.172.39','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; KFMAWI) AppleWebKit/537.36 (KHTML, like Gecko) Silk/91.4.3 like Chrome/91.0.4472.164 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(411,1,NULL,'2021-08-01 17:26:14','2021-08-01 17:26:14',0,0,'76.94.114.204','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(412,1,NULL,'2021-08-02 07:52:24','2021-08-02 07:52:24',0,0,'124.107.37.254','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(413,1,NULL,'2021-08-02 20:42:25','2021-08-02 20:42:25',0,0,'73.41.130.105','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(414,1,NULL,'2021-08-02 20:43:06','2021-08-02 20:43:06',0,0,'73.41.130.105','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(415,1,NULL,'2021-08-02 21:37:05','2021-08-02 21:37:05',0,0,'208.157.188.100','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; SM-A102U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.115 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(416,1,NULL,'2021-08-04 18:47:58','2021-08-04 18:47:58',0,0,'172.250.192.58','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 Edg/92.0.902.62','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(417,1,NULL,'2021-08-04 21:36:11','2021-08-04 21:36:11',0,0,'23.243.158.3','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(418,1,NULL,'2021-08-05 00:05:55','2021-08-05 00:05:55',0,0,'174.193.163.47','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/92.0.4515.90 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(419,1,NULL,'2021-08-06 02:18:02','2021-08-06 02:18:02',0,0,'47.150.17.217','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(420,1,NULL,'2021-08-06 06:00:06','2021-08-06 06:00:06',0,0,'103.95.123.30','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(421,1,NULL,'2021-08-06 07:17:03','2021-08-06 07:17:03',0,0,'76.219.215.47','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:49.0) Gecko/20100101 Firefox/49.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(422,1,NULL,'2021-08-06 20:40:05','2021-08-06 20:40:05',0,0,'98.234.10.34','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(423,1,NULL,'2021-08-10 17:22:36','2021-08-10 17:22:36',0,0,'99.71.218.96','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(424,1,NULL,'2021-08-11 16:26:18','2021-08-11 16:26:18',0,0,'23.240.117.248','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; U307AS Build/P00610; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/92.0.4515.131 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(425,1,NULL,'2021-08-12 00:24:38','2021-08-12 00:24:38',0,0,'12.9.33.202','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(426,1,NULL,'2021-08-12 00:42:16','2021-08-12 00:42:16',0,0,'104.172.21.98','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(427,1,NULL,'2021-08-12 17:54:50','2021-08-12 17:54:50',0,0,'108.185.131.103','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 Edg/92.0.902.67','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(428,1,NULL,'2021-08-13 07:20:15','2021-08-13 07:20:15',0,0,'107.174.232.203','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(429,1,NULL,'2021-08-17 21:17:11','2021-08-17 21:17:11',0,0,'99.112.193.145','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(430,1,NULL,'2021-08-18 08:18:17','2021-08-18 08:18:17',0,0,'97.88.255.42','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.7.0a2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(431,1,NULL,'2021-08-20 19:59:26','2021-08-20 19:59:26',0,0,'166.216.158.132','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(432,1,NULL,'2021-08-20 22:23:25','2021-08-20 22:23:25',0,0,'47.181.164.180','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(433,1,NULL,'2021-08-22 19:44:38','2021-08-22 19:44:38',0,0,'96.41.77.134','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(434,1,NULL,'2021-08-27 12:55:23','2021-08-27 12:55:23',0,0,'146.113.240.180','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(435,1,NULL,'2021-08-30 10:14:35','2021-08-30 10:14:35',0,0,'223.29.193.86','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(436,1,NULL,'2021-09-02 07:43:47','2021-09-02 07:43:47',0,0,'137.59.242.64','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(437,1,NULL,'2021-09-03 13:43:08','2021-09-03 13:43:08',0,0,'99.5.244.155','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(438,1,NULL,'2021-09-04 05:51:07','2021-09-04 05:51:07',0,0,'142.129.203.80','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; SM-A015T1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.62 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(439,1,NULL,'2021-09-08 01:25:38','2021-09-08 01:25:38',0,0,'68.226.200.241','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.2; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(440,1,NULL,'2021-09-08 11:22:51','2021-09-08 11:22:51',0,0,'136.158.8.165','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(441,1,NULL,'2021-09-08 20:23:13','2021-09-08 20:23:13',0,0,'47.154.202.80','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(442,1,NULL,'2021-09-09 17:11:17','2021-09-09 17:11:17',0,0,'24.7.64.71','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(443,1,NULL,'2021-09-09 18:19:08','2021-09-09 18:19:08',0,0,'104.172.40.242','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(444,1,NULL,'2021-09-16 20:36:32','2021-09-16 20:36:32',0,0,'187.202.189.26','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(445,1,NULL,'2021-09-16 23:54:09','2021-09-16 23:54:09',0,0,'97.94.105.213','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(446,1,NULL,'2021-09-18 19:48:14','2021-09-18 19:48:14',0,0,'46.161.11.11','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4098.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(447,1,NULL,'2021-09-19 16:31:11','2021-09-19 16:31:11',0,0,'46.161.11.11','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36 Edg/83.0.478.18','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(448,1,NULL,'2021-09-19 21:07:51','2021-09-19 21:07:51',0,0,'74.101.95.219','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(449,1,NULL,'2021-09-21 04:35:31','2021-09-21 04:35:31',0,0,'196.18.229.71','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(450,1,NULL,'2021-09-21 11:07:37','2021-09-21 11:07:37',0,0,'49.37.35.183','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(451,1,NULL,'2021-09-21 23:02:23','2021-09-21 23:02:23',0,0,'75.142.62.158','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(452,1,NULL,'2021-09-22 01:21:15','2021-09-22 01:21:15',0,0,'107.194.225.41','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(453,1,NULL,'2021-09-27 07:59:10','2021-09-27 07:59:10',0,0,'1.55.54.152','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(454,1,NULL,'2021-09-28 00:07:07','2021-09-28 00:07:07',0,0,'172.250.67.41','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(455,1,NULL,'2021-10-01 04:15:40','2021-10-01 04:15:40',0,0,'76.68.14.136','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(456,1,NULL,'2021-10-01 20:12:54','2021-10-01 20:12:54',0,0,'46.161.11.10','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(457,1,NULL,'2021-10-01 23:07:49','2021-10-01 23:07:49',0,0,'174.193.133.193','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; SM-N950U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(458,1,NULL,'2021-10-03 13:16:58','2021-10-03 13:16:58',0,0,'104.58.174.126','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; SM-G975U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(459,1,NULL,'2021-10-04 07:59:25','2021-10-04 07:59:25',0,0,'46.161.11.10','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(460,1,NULL,'2021-10-04 23:22:56','2021-10-04 23:22:56',0,0,'64.145.76.206','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_0_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.0 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(461,1,NULL,'2021-10-05 00:11:44','2021-10-05 00:11:44',0,0,'172.91.182.73','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:90.0) Gecko/20100101 Firefox/90.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(462,1,NULL,'2021-10-05 22:11:21','2021-10-05 22:11:21',0,0,'185.85.163.242','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(463,1,NULL,'2021-10-07 03:05:44','2021-10-07 03:05:44',0,0,'46.161.11.10','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36 OPR/69.0.3686.7 (Edition beta)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(464,1,NULL,'2021-10-07 16:17:50','2021-10-07 16:17:50',0,0,'93.190.111.173','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(465,1,NULL,'2021-10-08 06:55:08','2021-10-08 06:55:08',0,0,'104.35.82.30','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(466,1,NULL,'2021-10-09 21:55:11','2021-10-09 21:55:11',0,0,'172.58.16.220','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; SM-G981U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.110 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(467,1,NULL,'2021-10-10 19:49:16','2021-10-10 19:49:16',0,0,'47.232.200.100','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(468,1,NULL,'2021-10-11 19:53:26','2021-10-11 19:53:26',0,0,'209.122.13.67','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko/20100101 Firefox/54.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(469,1,NULL,'2021-10-12 03:03:41','2021-10-12 03:03:41',0,0,'137.25.142.78','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.0 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(470,1,NULL,'2021-10-13 00:58:40','2021-10-13 00:58:40',0,0,'172.250.228.226','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(471,1,NULL,'2021-10-13 08:07:07','2021-10-13 08:07:07',0,0,'91.193.4.24','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(472,1,NULL,'2021-10-15 07:28:00','2021-10-15 07:28:00',0,0,'167.114.156.50','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/89.0.4389.90 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(473,1,NULL,'2021-10-15 11:54:43','2021-10-15 11:54:43',0,0,'47.41.238.170','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(474,1,NULL,'2021-10-16 19:55:37','2021-10-16 19:55:37',0,0,'131.100.2.52','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(475,1,NULL,'2021-10-17 19:02:47','2021-10-17 19:02:47',0,0,'91.199.42.202','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(476,1,NULL,'2021-10-18 21:16:13','2021-10-18 21:16:13',0,0,'156.72.30.1','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(477,1,NULL,'2021-10-19 17:05:39','2021-10-19 17:05:39',0,0,'76.91.228.190','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(478,1,NULL,'2021-10-19 20:12:41','2021-10-19 20:12:41',0,0,'76.175.0.237','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(479,1,NULL,'2021-10-22 14:50:54','2021-10-22 14:50:54',0,0,'209.122.13.67','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(480,1,NULL,'2021-10-22 20:06:56','2021-10-22 20:06:56',0,0,'68.189.12.173','https://www.drfields.com/contact/?mc_cid=3d40e15192&mc_eid=514d08352e','Mozilla/5.0 (iPhone; CPU iPhone OS 14_8 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(481,1,NULL,'2021-10-25 13:41:04','2021-10-25 13:41:04',0,0,'50.234.249.150','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.7.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(482,1,NULL,'2021-10-27 22:53:50','2021-10-27 22:53:50',0,0,'168.161.213.155','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(483,1,NULL,'2021-10-28 16:06:21','2021-10-28 16:06:21',0,0,'104.172.169.128','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; SM-A115U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(484,1,NULL,'2021-10-29 15:24:23','2021-10-29 15:24:23',0,0,'180.178.152.179','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(485,1,NULL,'2021-10-31 01:35:10','2021-10-31 01:35:10',0,0,'104.174.77.179','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/95.0.4638.50 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(486,1,NULL,'2021-11-01 07:05:07','2021-11-01 07:05:07',0,0,'91.79.6.163','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(487,1,NULL,'2021-11-01 09:16:55','2021-11-01 09:16:55',0,0,'111.88.217.197','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(488,1,NULL,'2021-11-01 22:57:16','2021-11-01 22:57:16',0,0,'47.146.163.39','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(489,1,NULL,'2021-11-02 00:44:32','2021-11-02 00:44:32',0,0,'72.134.89.140','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(490,1,NULL,'2021-11-03 18:25:17','2021-11-03 18:25:17',0,0,'71.92.67.178','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(491,1,NULL,'2021-11-04 11:05:31','2021-11-04 11:05:31',0,0,'158.255.148.40','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(492,1,NULL,'2021-11-04 19:31:07','2021-11-04 19:31:07',0,0,'76.178.68.240','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 7.1.1; Lenovo TB-8504F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(493,1,NULL,'2021-11-06 20:45:09','2021-11-06 20:45:09',0,0,'158.255.154.44','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(494,1,NULL,'2021-11-06 20:45:39','2021-11-06 20:45:39',0,0,'158.255.154.44','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36 OPR/69.0.3686.7 (Edition beta)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(495,1,NULL,'2021-11-08 03:26:04','2021-11-08 03:26:04',0,0,'23.242.26.60','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(496,1,NULL,'2021-11-08 18:29:08','2021-11-08 18:29:08',0,0,'24.228.255.78','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/184.2.407130758 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(497,1,NULL,'2021-11-08 18:34:09','2021-11-08 18:34:09',0,0,'72.238.129.242','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(498,1,NULL,'2021-11-10 00:36:41','2021-11-10 00:36:41',0,0,'91.76.226.97','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4096.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(499,1,NULL,'2021-11-10 16:07:10','2021-11-10 16:07:10',0,0,'76.91.7.223','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(500,1,NULL,'2021-11-11 13:04:32','2021-11-11 13:04:32',0,0,'197.250.97.95','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; SM-A805F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.74 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(501,1,NULL,'2021-11-14 05:07:31','2021-11-14 05:07:31',0,0,'185.85.163.242','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(502,1,NULL,'2021-11-14 07:41:34','2021-11-14 07:41:34',0,0,'188.126.94.244','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(503,1,NULL,'2021-11-14 15:55:43','2021-11-14 15:55:43',0,0,'104.174.99.176','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(504,1,NULL,'2021-11-14 18:47:44','2021-11-14 18:47:44',0,0,'185.85.163.242','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(505,1,NULL,'2021-11-15 17:27:17','2021-11-15 17:27:17',0,0,'50.236.34.202','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(506,1,NULL,'2021-11-16 16:25:34','2021-11-16 16:25:34',0,0,'54.215.252.173','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 Edg/95.0.1020.53','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(507,1,NULL,'2021-11-16 20:11:33','2021-11-16 20:11:33',0,0,'170.83.176.57','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(508,1,NULL,'2021-11-16 23:00:30','2021-11-16 23:00:30',0,0,'172.89.110.198','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(509,1,NULL,'2021-11-17 09:39:24','2021-11-17 09:39:24',0,0,'111.88.60.160','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(510,1,NULL,'2021-11-17 20:25:52','2021-11-17 20:25:52',0,0,'138.229.248.60','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(511,1,NULL,'2021-11-17 21:56:38','2021-11-17 21:56:38',0,0,'209.218.211.66','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(512,1,NULL,'2021-11-19 18:05:54','2021-11-19 18:05:54',0,0,'50.3.192.33','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(513,1,NULL,'2021-11-20 01:06:24','2021-11-20 01:06:24',0,0,'70.231.90.61','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(514,1,NULL,'2021-11-22 23:55:03','2021-11-22 23:55:03',0,0,'172.58.28.43','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(515,1,NULL,'2021-11-23 07:14:54','2021-11-23 07:14:54',0,0,'185.85.163.242','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(516,1,NULL,'2021-11-23 20:29:39','2021-11-23 20:29:39',0,0,'107.77.227.221','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; SM-A025A Build/RP1A.200720.012; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/96.0.4664.45 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(517,1,NULL,'2021-11-24 13:21:12','2021-11-24 13:21:12',0,0,'76.87.19.97','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:54.0) Gecko/20100101 Firefox/54.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(518,1,NULL,'2021-11-26 20:20:28','2021-11-26 20:20:28',0,0,'5.62.63.221','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(519,1,NULL,'2021-11-27 00:23:36','2021-11-27 00:23:36',0,0,'185.189.114.126','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(520,1,NULL,'2021-11-30 03:39:41','2021-11-30 03:39:41',0,0,'103.13.107.195','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(521,1,NULL,'2021-11-30 15:48:52','2021-11-30 15:48:52',0,0,'76.184.40.58','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; GM1915) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(522,1,NULL,'2021-11-30 20:03:55','2021-11-30 20:03:55',0,0,'172.58.32.104','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; SM-A516U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(523,1,NULL,'2021-12-01 06:37:04','2021-12-01 06:37:04',0,0,'71.15.196.93','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(524,1,NULL,'2021-12-01 18:54:06','2021-12-01 18:54:06',0,0,'75.106.132.164','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; U; Android 11; SM-G781U Build/RP1A.200720.012; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/96.0.4664.45 Mobile Safari/537.36 OPR/9.0.2254.57848','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(525,1,NULL,'2021-12-01 20:33:09','2021-12-01 20:33:09',0,0,'107.216.140.161','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(526,1,NULL,'2021-12-04 23:45:28','2021-12-04 23:45:28',0,0,'201.212.75.49','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.20 Safari/537.36 OPR/83.0.4253.0 (Edition developer)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(527,1,NULL,'2021-12-06 08:40:24','2021-12-06 08:40:24',0,0,'107.185.68.96','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; SM-N960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(528,1,NULL,'2021-12-06 18:15:34','2021-12-06 18:15:34',0,0,'69.152.133.168','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(529,1,NULL,'2021-12-07 03:42:59','2021-12-07 03:42:59',0,0,'45.50.172.20','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.0 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(530,1,NULL,'2021-12-07 04:10:44','2021-12-07 04:10:44',0,0,'76.94.209.203','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(531,1,NULL,'2021-12-11 19:14:22','2021-12-11 19:14:22',0,0,'47.146.25.107','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/96.0.4664.92 Mobile DuckDuckGo/5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(532,1,NULL,'2021-12-12 13:52:06','2021-12-12 13:52:06',0,0,'136.158.44.191','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(533,1,NULL,'2021-12-14 02:45:43','2021-12-14 02:45:43',0,0,'136.52.13.251','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(534,1,NULL,'2021-12-14 17:44:39','2021-12-14 17:44:39',0,0,'104.173.114.167','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.55 Safari/537.36 Edg/96.0.1054.43','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(535,1,NULL,'2021-12-21 20:52:34','2021-12-21 20:52:34',0,0,'172.119.40.78','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(536,1,NULL,'2021-12-23 23:48:36','2021-12-23 23:48:36',0,0,'108.88.103.8','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(537,1,NULL,'2021-12-24 22:12:03','2021-12-24 22:12:03',0,0,'75.140.148.73','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(538,1,NULL,'2021-12-26 22:00:42','2021-12-26 22:00:42',0,0,'172.91.182.73','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(539,1,NULL,'2021-12-27 09:22:11','2021-12-27 09:22:11',0,0,'104.34.139.73','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/190.0.415307624 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(540,1,NULL,'2021-12-29 05:06:13','2021-12-29 05:06:13',0,0,'174.193.131.152','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; moto z3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.181 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(541,1,NULL,'2021-12-31 01:57:42','2021-12-31 01:57:42',0,0,'174.195.134.5','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(542,1,NULL,'2022-01-01 18:19:41','2022-01-01 18:19:41',0,0,'46.161.11.10','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(543,1,NULL,'2022-01-02 16:15:50','2022-01-02 16:15:50',0,0,'72.132.168.194','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(544,1,NULL,'2022-01-03 07:03:15','2022-01-03 07:03:15',0,0,'174.76.22.45','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 12; SM-G998U1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.104 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(545,1,NULL,'2022-01-03 18:01:03','2022-01-03 18:01:03',0,0,'47.146.9.3','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(546,1,NULL,'2022-01-03 21:52:58','2022-01-03 21:52:58',0,0,'76.90.160.184','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(547,1,NULL,'2022-01-04 22:11:17','2022-01-04 22:11:17',0,0,'172.89.146.221','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36 Edg/96.0.1054.62','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(548,1,NULL,'2022-01-04 22:40:10','2022-01-04 22:40:10',0,0,'68.5.245.32','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(549,1,NULL,'2022-01-05 16:53:16','2022-01-05 16:53:16',0,0,'172.56.21.80','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; SM-J737T1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.96 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(550,1,NULL,'2022-01-06 17:23:27','2022-01-06 17:23:27',0,0,'186.179.6.162','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(551,1,NULL,'2022-01-06 18:04:49','2022-01-06 18:04:49',0,0,'89.46.114.35','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(552,1,NULL,'2022-01-07 08:43:39','2022-01-07 08:43:39',0,0,'172.251.172.189','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(553,1,NULL,'2022-01-08 05:15:22','2022-01-08 05:15:22',0,0,'107.184.87.7','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(554,1,NULL,'2022-01-08 22:02:35','2022-01-08 22:02:35',0,0,'167.114.211.168','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/89.0.4389.90 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(555,1,NULL,'2022-01-10 22:31:25','2022-01-10 22:31:25',0,0,'76.80.124.170','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(556,1,NULL,'2022-01-11 17:51:12','2022-01-11 17:51:12',0,0,'107.77.165.50','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; moto g play (2021) Build/QZAS30.Q4-39-39-1-13; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/96.0.4664.45 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(557,1,NULL,'2022-01-11 18:08:12','2022-01-11 18:08:12',0,0,'107.77.165.50','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; moto g play (2021) Build/QZAS30.Q4-39-39-1-13; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/96.0.4664.45 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(558,1,NULL,'2022-01-14 03:41:17','2022-01-14 03:41:17',0,0,'137.25.41.55','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(559,1,NULL,'2022-01-14 03:46:51','2022-01-14 03:46:51',0,0,'137.25.41.55','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(560,1,NULL,'2022-01-14 07:15:47','2022-01-14 07:15:47',0,0,'46.161.11.10','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(561,1,NULL,'2022-01-14 23:51:34','2022-01-14 23:51:34',0,0,'66.214.56.73','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(562,1,NULL,'2022-01-15 03:18:50','2022-01-15 03:18:50',0,0,'158.140.32.229','https://www.drfields.com/contact/?mc_cid=f3168d462a&mc_eid=c200c1259a','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36 Edg/97.0.1072.55','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(563,1,NULL,'2022-01-17 19:14:05','2022-01-17 19:14:05',0,0,'144.168.227.204','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(564,1,NULL,'2022-01-18 18:35:41','2022-01-18 18:35:41',0,0,'75.144.241.217','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36 Edg/97.0.1072.62','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(565,1,NULL,'2022-01-19 21:30:31','2022-01-19 21:30:31',0,0,'47.149.107.118','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(566,1,NULL,'2022-01-24 21:47:25','2022-01-24 21:47:25',0,0,'107.77.230.63','https://www.drfields.com/contact/?campaignid=403253976&adgroupid=1278732374629345&creative&matchtype=b&network=s&device=m&keyword=remedies+for+shoulder+pain','Mozilla/5.0 (iPhone; CPU iPhone OS 15_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(567,1,NULL,'2022-01-25 15:24:25','2022-01-25 15:24:25',0,0,'80.253.235.32','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.42','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(568,1,NULL,'2022-01-25 19:52:59','2022-01-25 19:52:59',0,0,'67.180.0.109','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(569,1,NULL,'2022-01-25 22:32:26','2022-01-25 22:32:26',0,0,'80.253.235.32','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(570,1,NULL,'2022-01-25 23:15:41','2022-01-25 23:15:41',0,0,'47.156.220.239','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.1 Mobile/15E148 Safari/605.1.15 BingSapphire/1.0.391223001','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(571,1,NULL,'2022-01-26 20:19:44','2022-01-26 20:19:44',0,0,'99.45.30.63','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 12; SAMSUNG SM-F711U1) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/16.0 Chrome/92.0.4515.166 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(572,1,NULL,'2022-01-26 21:46:01','2022-01-26 21:46:01',0,0,'69.75.54.2','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(573,1,NULL,'2022-01-27 08:08:49','2022-01-27 08:08:49',0,0,'107.172.139.203','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(574,1,NULL,'2022-02-01 19:25:36','2022-02-01 19:25:36',0,0,'24.43.179.86','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(575,1,NULL,'2022-02-01 22:29:17','2022-02-01 22:29:17',0,0,'47.157.89.220','https://www.drfields.com/contact/?mc_cid=ba35871971&mc_eid=178bf624ec','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(576,1,NULL,'2022-02-01 23:47:17','2022-02-01 23:47:17',0,0,'70.187.150.4','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(577,1,NULL,'2022-02-02 00:35:17','2022-02-02 00:35:17',0,0,'50.236.34.202','https://www.drfields.com/contact/?mc_cid=ba35871971&mc_eid=9ec3b38e3d','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(578,1,NULL,'2022-02-02 20:57:35','2022-02-02 20:57:35',0,0,'76.95.226.44','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(579,1,NULL,'2022-02-03 21:19:21','2022-02-03 21:19:21',0,0,'108.238.130.206','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(580,1,NULL,'2022-02-04 00:51:10','2022-02-04 00:51:10',0,0,'65.141.140.90','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(581,1,NULL,'2022-02-07 04:11:49','2022-02-07 04:11:49',0,0,'47.144.179.229','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(582,1,NULL,'2022-02-07 23:46:09','2022-02-07 23:46:09',0,0,'172.58.31.226','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_0_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.0 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(583,1,NULL,'2022-02-08 21:09:42','2022-02-08 21:09:42',0,0,'152.133.8.1','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.131 Safari/537.36 Edg/96.0.1054.72','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(584,1,NULL,'2022-02-09 17:20:52','2022-02-09 17:20:52',0,0,'71.83.186.15','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(585,1,NULL,'2022-02-09 18:10:51','2022-02-09 18:10:51',0,0,'177.215.70.113','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36 Edg/98.0.1108.43','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(586,1,NULL,'2022-02-09 19:35:19','2022-02-09 19:35:19',0,0,'165.231.212.253','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(587,1,NULL,'2022-02-09 22:21:31','2022-02-09 22:21:31',0,0,'71.83.186.15','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(588,1,NULL,'2022-02-10 14:50:34','2022-02-10 14:50:34',0,0,'174.251.163.135','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; SM-S767VL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.98 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(589,1,NULL,'2022-02-10 15:32:39','2022-02-10 15:32:39',0,0,'174.251.163.135','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; SM-S767VL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.98 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(590,1,NULL,'2022-02-11 16:28:17','2022-02-11 16:28:17',0,0,'72.168.144.152','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36 Edg/98.0.1108.43','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(591,1,NULL,'2022-02-14 23:55:06','2022-02-14 23:55:06',0,0,'172.112.189.209','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(592,1,NULL,'2022-02-15 16:45:44','2022-02-15 16:45:44',0,0,'76.170.69.74','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(593,1,NULL,'2022-02-15 19:38:56','2022-02-15 19:38:56',0,0,'54.177.226.147','https://www.drfields.com/contact/?campaignid=403253979&adgroupid=1282030909510692&creative&matchtype=p&network=o&device=c&keyword=arthritis+knee+treatment','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(594,1,NULL,'2022-02-15 23:15:00','2022-02-15 23:15:00',0,0,'76.178.44.35','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(595,1,NULL,'2022-02-16 16:43:43','2022-02-16 16:43:43',0,0,'216.227.48.147','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(596,1,NULL,'2022-02-16 17:03:53','2022-02-16 17:03:53',0,0,'141.239.109.214','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(597,1,NULL,'2022-02-17 00:18:43','2022-02-17 00:18:43',0,0,'99.67.159.45','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:97.0) Gecko/20100101 Firefox/97.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(598,1,NULL,'2022-02-17 06:36:45','2022-02-17 06:36:45',0,0,'72.134.32.114','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(599,1,NULL,'2022-02-18 16:22:20','2022-02-18 16:22:20',0,0,'212.237.135.34','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(600,1,NULL,'2022-02-18 21:42:05','2022-02-18 21:42:05',0,0,'104.60.90.250','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/199.0.427504638 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(601,1,NULL,'2022-02-19 16:56:26','2022-02-19 16:56:26',0,0,'47.151.198.165','https://www.drfields.com/contact/?mc_cid=338acbb24f&mc_eid=a50e39d33b','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(602,1,NULL,'2022-02-20 16:27:10','2022-02-20 16:27:10',0,0,'68.4.120.84','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(603,1,NULL,'2022-02-22 21:21:31','2022-02-22 21:21:31',0,0,'72.219.104.51','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(604,1,NULL,'2022-02-24 14:00:21','2022-02-24 14:00:21',0,0,'80.253.235.32','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(605,1,NULL,'2022-02-27 01:37:26','2022-02-27 01:37:26',0,0,'103.237.136.194','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(606,1,NULL,'2022-02-28 20:30:37','2022-02-28 20:30:37',0,0,'138.199.36.188','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(607,1,NULL,'2022-02-28 21:22:10','2022-02-28 21:22:10',0,0,'196.242.47.50','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(608,1,NULL,'2022-03-01 18:31:10','2022-03-01 18:31:10',0,0,'138.199.36.208','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(609,1,NULL,'2022-03-01 21:41:05','2022-03-01 21:41:05',0,0,'76.166.217.83','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36 Edg/98.0.1108.62','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(610,1,NULL,'2022-03-02 02:14:31','2022-03-02 02:14:31',0,0,'45.49.137.250','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(611,1,NULL,'2022-03-02 16:02:48','2022-03-02 16:02:48',0,0,'138.199.36.209','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.14 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(612,1,NULL,'2022-03-02 19:32:46','2022-03-02 19:32:46',0,0,'174.193.204.45','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; LM-V600) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.101 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(613,1,NULL,'2022-03-03 02:07:33','2022-03-03 02:07:33',0,0,'144.76.25.174','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(614,1,NULL,'2022-03-03 07:21:20','2022-03-03 07:21:20',0,0,'5.253.204.20','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36/iYA9HebN-7','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(615,1,NULL,'2022-03-07 01:05:27','2022-03-07 01:05:27',0,0,'23.241.40.109','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/201.0.429950705 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(616,1,NULL,'2022-03-07 03:08:01','2022-03-07 03:08:01',0,0,'138.199.36.151','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(617,1,NULL,'2022-03-07 21:58:47','2022-03-07 21:58:47',0,0,'74.62.29.5','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36 Edg/98.0.1108.62','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(618,1,NULL,'2022-03-07 22:18:31','2022-03-07 22:18:31',0,0,'207.62.99.80','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36 Edg/99.0.1150.30','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(619,1,NULL,'2022-03-07 22:55:43','2022-03-07 22:55:43',0,0,'84.17.52.14','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(620,1,NULL,'2022-03-08 19:01:35','2022-03-08 19:01:35',0,0,'47.137.11.133','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(621,1,NULL,'2022-03-09 06:05:41','2022-03-09 06:05:41',0,0,'73.70.181.20','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 12; SM-G970U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.58 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(622,1,NULL,'2022-03-09 18:11:30','2022-03-09 18:11:30',0,0,'96.40.114.253','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(623,1,NULL,'2022-03-10 15:11:00','2022-03-10 15:11:00',0,0,'203.63.233.230','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(624,1,NULL,'2022-03-10 17:11:26','2022-03-10 17:11:26',0,0,'172.116.9.87','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(625,1,NULL,'2022-03-11 01:19:21','2022-03-11 01:19:21',0,0,'194.190.90.22','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(626,1,NULL,'2022-03-11 05:30:57','2022-03-11 05:30:57',0,0,'76.80.153.171','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(627,1,NULL,'2022-03-11 15:56:09','2022-03-11 15:56:09',0,0,'172.58.16.174','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(628,1,NULL,'2022-03-11 19:21:03','2022-03-11 19:21:03',0,0,'107.77.229.169','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; SM-A115A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(629,1,NULL,'2022-03-12 10:19:11','2022-03-12 10:19:11',0,0,'172.117.48.230','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(630,1,NULL,'2022-03-12 22:19:12','2022-03-12 22:19:12',0,0,'72.194.78.209','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:97.0) Gecko/20100101 Firefox/97.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(631,1,NULL,'2022-03-12 22:22:41','2022-03-12 22:22:41',0,0,'72.194.78.209','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:97.0) Gecko/20100101 Firefox/97.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(632,1,NULL,'2022-03-13 08:04:36','2022-03-13 08:04:36',0,0,'196.196.160.101','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(633,1,NULL,'2022-03-13 14:53:04','2022-03-13 14:53:04',0,0,'84.17.47.119','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36 Edg/83.0.478.18','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(634,1,NULL,'2022-03-13 19:13:59','2022-03-13 19:13:59',0,0,'84.247.48.12','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4099.2 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(635,1,NULL,'2022-03-16 14:20:21','2022-03-16 14:20:21',0,0,'70.189.14.79','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 12; SM-G998U Build/SP1A.210812.016; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/99.0.4844.58 Mobile Safari/537.36 [FB_IAB/Orca-Android;FBAV/351.1.0.12.114;]','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(636,1,NULL,'2022-03-16 16:35:33','2022-03-16 16:35:33',0,0,'122.161.49.208','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(637,1,NULL,'2022-03-17 01:03:34','2022-03-17 01:03:34',0,0,'84.17.48.83','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(638,1,NULL,'2022-03-17 16:39:30','2022-03-17 16:39:30',0,0,'76.87.16.10','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36 Edg/99.0.1150.39','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(639,1,NULL,'2022-03-18 04:35:50','2022-03-18 04:35:50',0,0,'49.49.219.48','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(640,1,NULL,'2022-03-18 16:56:25','2022-03-18 16:56:25',0,0,'98.164.192.110','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(641,1,NULL,'2022-03-18 20:42:40','2022-03-18 20:42:40',0,0,'172.250.61.202','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(642,1,NULL,'2022-03-20 17:07:35','2022-03-20 17:07:35',0,0,'45.49.238.165','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36 Edg/99.0.1150.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(643,1,NULL,'2022-03-21 05:31:53','2022-03-21 05:31:53',0,0,'84.17.49.97','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(644,1,NULL,'2022-03-21 13:06:52','2022-03-21 13:06:52',0,0,'49.146.178.58','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(645,1,NULL,'2022-03-21 16:18:08','2022-03-21 16:18:08',0,0,'75.82.144.10','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(646,1,NULL,'2022-03-21 23:46:06','2022-03-21 23:46:06',0,0,'172.225.215.144','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(647,1,NULL,'2022-03-23 11:52:35','2022-03-23 11:52:35',0,0,'168.90.199.51','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(648,1,NULL,'2022-03-25 16:34:22','2022-03-25 16:34:22',0,0,'98.45.83.118','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; SM-A025U Build/RP1A.200720.012; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/99.0.4844.73 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(649,1,NULL,'2022-03-25 17:49:39','2022-03-25 17:49:39',0,0,'98.149.109.181','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36 Edg/99.0.1150.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(650,1,NULL,'2022-03-25 18:03:23','2022-03-25 18:03:23',0,0,'5.253.204.12','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4100.3 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(651,1,NULL,'2022-03-26 02:28:15','2022-03-26 02:28:15',0,0,'67.161.40.204','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_8_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(652,1,NULL,'2022-03-29 01:45:59','2022-03-29 01:45:59',0,0,'75.84.99.166','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/204.1.436325769 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(653,1,NULL,'2022-03-30 07:29:51','2022-03-30 07:29:51',0,0,'71.76.0.80','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(654,1,NULL,'2022-03-31 21:57:39','2022-03-31 21:57:39',0,0,'107.77.231.65','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; EA211002) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.73 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(655,1,NULL,'2022-04-01 15:46:01','2022-04-01 15:46:01',0,0,'121.218.9.51','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:56.0; Waterfox) Gecko/20100101 Firefox/56.2.3','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(656,1,NULL,'2022-04-01 23:19:14','2022-04-01 23:19:14',0,0,'75.82.144.10','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(657,1,NULL,'2022-04-04 00:14:32','2022-04-04 00:14:32',0,0,'76.80.189.194','https://www.drfields.com/contact/','Mozilla/5.0 (iPad; CPU OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(658,1,NULL,'2022-04-04 18:46:20','2022-04-04 18:46:20',0,0,'104.172.40.242','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(659,1,NULL,'2022-04-05 23:58:38','2022-04-05 23:58:38',0,0,'172.58.17.231','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(660,1,NULL,'2022-04-06 20:33:12','2022-04-06 20:33:12',0,0,'172.58.28.185','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; moto g stylus 5G Build/RRES31.Q3-60-47-2-2-1; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/99.0.4844.88 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(661,1,NULL,'2022-04-06 22:53:10','2022-04-06 22:53:10',0,0,'213.159.38.90','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(662,1,NULL,'2022-04-07 00:51:20','2022-04-07 00:51:20',0,0,'75.82.144.10','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:99.0) Gecko/20100101 Firefox/99.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(663,1,NULL,'2022-04-07 06:16:35','2022-04-07 06:16:35',0,0,'24.20.12.222','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(664,1,NULL,'2022-04-08 07:02:55','2022-04-08 07:02:55',0,0,'74.62.196.45','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(665,1,NULL,'2022-04-08 18:22:29','2022-04-08 18:22:29',0,0,'104.34.75.12','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(666,1,NULL,'2022-04-11 14:47:26','2022-04-11 14:47:26',0,0,'196.240.51.198','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(667,1,NULL,'2022-04-11 14:49:40','2022-04-11 14:49:40',0,0,'12.21.112.227','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(668,1,NULL,'2022-04-11 20:51:11','2022-04-11 20:51:11',0,0,'174.243.213.225','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_8 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/206.1.438432329 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(669,1,NULL,'2022-04-11 22:07:58','2022-04-11 22:07:58',0,0,'68.4.246.27','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(670,1,NULL,'2022-04-12 01:52:56','2022-04-12 01:52:56',0,0,'187.226.104.26','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(671,1,NULL,'2022-04-13 19:43:54','2022-04-13 19:43:54',0,0,'67.164.1.69','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.88 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(672,1,NULL,'2022-04-13 22:11:13','2022-04-13 22:11:13',0,0,'98.191.151.210','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(673,1,NULL,'2022-04-14 17:48:21','2022-04-14 17:48:21',0,0,'174.193.197.48','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(674,1,NULL,'2022-04-14 19:27:11','2022-04-14 19:27:11',0,0,'107.77.165.18','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; Nokia C5 Endi) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.79 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(675,1,NULL,'2022-04-14 20:25:42','2022-04-14 20:25:42',0,0,'54.176.111.134','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.39','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(676,1,NULL,'2022-04-15 17:13:31','2022-04-15 17:13:31',0,0,'194.190.179.79','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(677,1,NULL,'2022-04-16 09:10:39','2022-04-16 09:10:39',0,0,'98.147.184.135','https://www.drfields.com/contact/','Mozilla/5.0 (iPad; CPU OS 15_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/207.0.439213960 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(678,1,NULL,'2022-04-16 15:27:35','2022-04-16 15:27:35',0,0,'162.253.68.197','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(679,1,NULL,'2022-04-19 23:36:23','2022-04-19 23:36:23',0,0,'100.12.184.241','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:99.0) Gecko/20100101 Firefox/99.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(680,1,NULL,'2022-04-20 00:04:48','2022-04-20 00:04:48',0,0,'47.144.189.84','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(681,1,NULL,'2022-04-20 00:38:56','2022-04-20 00:38:56',0,0,'31.184.218.105','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.86 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(682,1,NULL,'2022-04-20 18:38:52','2022-04-20 18:38:52',0,0,'172.124.156.110','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.88 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(683,1,NULL,'2022-04-21 08:07:34','2022-04-21 08:07:34',0,0,'191.101.31.83','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.86 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(684,1,NULL,'2022-04-21 21:09:44','2022-04-21 21:09:44',0,0,'104.173.68.91','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(685,1,NULL,'2022-04-21 23:51:41','2022-04-21 23:51:41',0,0,'76.171.3.251','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(686,1,NULL,'2022-04-23 04:36:19','2022-04-23 04:36:19',0,0,'37.45.24.0','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(687,1,NULL,'2022-04-23 15:36:33','2022-04-23 15:36:33',0,0,'45.51.103.192','https://www.drfields.com/contact/','Mozilla/5.0 (iPad; CPU OS 15_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/100.0.4896.85 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(688,1,NULL,'2022-04-24 22:33:41','2022-04-24 22:33:41',0,0,'193.9.114.179','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(689,1,NULL,'2022-04-25 03:40:29','2022-04-25 03:40:29',0,0,'172.250.5.156','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(690,1,NULL,'2022-04-25 18:48:49','2022-04-25 18:48:49',0,0,'109.107.186.235','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(691,1,NULL,'2022-04-25 23:37:33','2022-04-25 23:37:33',0,0,'88.147.152.221','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(692,1,NULL,'2022-04-27 15:44:29','2022-04-27 15:44:29',0,0,'194.110.13.158','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(693,1,NULL,'2022-04-28 01:55:48','2022-04-28 01:55:48',0,0,'178.159.37.25','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(694,1,NULL,'2022-04-28 18:45:36','2022-04-28 18:45:36',0,0,'68.7.197.112','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(695,1,NULL,'2022-04-29 08:45:03','2022-04-29 08:45:03',0,0,'154.13.1.218','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4400.8 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(696,1,NULL,'2022-04-29 16:32:30','2022-04-29 16:32:30',0,0,'155.190.3.5','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(697,1,NULL,'2022-04-29 23:41:13','2022-04-29 23:41:13',0,0,'213.139.193.232','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(698,1,NULL,'2022-05-01 10:50:51','2022-05-01 10:50:51',0,0,'194.87.31.2','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(699,1,NULL,'2022-05-01 19:07:36','2022-05-01 19:07:36',0,0,'73.162.97.106','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(700,1,NULL,'2022-05-03 01:57:35','2022-05-03 01:57:35',0,0,'156.146.55.233','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(701,1,NULL,'2022-05-05 16:29:39','2022-05-05 16:29:39',0,0,'173.198.122.244','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/210.0.444145502 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(702,1,NULL,'2022-05-06 16:17:24','2022-05-06 16:17:24',0,0,'108.87.59.53','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36 Edg/101.0.1210.32','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(703,1,NULL,'2022-05-07 14:50:17','2022-05-07 14:50:17',0,0,'84.17.48.229','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(704,1,NULL,'2022-05-07 22:21:51','2022-05-07 22:21:51',0,0,'185.85.163.242','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(705,1,NULL,'2022-05-08 03:48:42','2022-05-08 03:48:42',0,0,'185.85.163.242','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(706,1,NULL,'2022-05-08 21:44:02','2022-05-08 21:44:02',0,0,'12.129.159.194','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/98.0.4758.85 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(707,1,NULL,'2022-05-09 17:54:11','2022-05-09 17:54:11',0,0,'174.195.197.105','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(708,1,NULL,'2022-05-12 15:04:16','2022-05-12 15:04:16',0,0,'71.93.179.192','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(709,1,NULL,'2022-05-12 21:40:50','2022-05-12 21:40:50',0,0,'73.241.34.195','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(710,1,NULL,'2022-05-14 02:35:59','2022-05-14 02:35:59',0,0,'138.199.63.75','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(711,1,NULL,'2022-05-14 20:22:30','2022-05-14 20:22:30',0,0,'172.249.227.224','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; SM-G965U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.61 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(712,1,NULL,'2022-05-16 19:46:08','2022-05-16 19:46:08',0,0,'137.25.55.34','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(713,1,NULL,'2022-05-17 09:21:17','2022-05-17 09:21:17',0,0,'111.88.49.217','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(714,1,NULL,'2022-05-17 12:05:10','2022-05-17 12:05:10',0,0,'154.28.188.48','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(715,1,NULL,'2022-05-17 16:20:24','2022-05-17 16:20:24',0,0,'49.144.204.204','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(716,1,NULL,'2022-05-18 07:42:15','2022-05-18 07:42:15',0,0,'194.190.179.87','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(717,1,NULL,'2022-05-18 15:33:57','2022-05-18 15:33:57',0,0,'191.101.31.108','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(718,1,NULL,'2022-05-19 19:56:06','2022-05-19 19:56:06',0,0,'76.175.73.51','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/101.0.4951.58 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(719,1,NULL,'2022-05-19 21:14:19','2022-05-19 21:14:19',0,0,'216.151.180.160','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(720,1,NULL,'2022-05-20 14:34:14','2022-05-20 14:34:14',0,0,'172.56.16.35','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_8_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(721,1,NULL,'2022-05-20 17:24:31','2022-05-20 17:24:31',0,0,'76.169.210.91','https://www.drfields.com/contact/','Mozilla/5.0 (X11; CrOS x86_64 14588.98.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.59 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(722,1,NULL,'2022-05-20 20:25:02','2022-05-20 20:25:02',0,0,'172.58.16.220','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(723,1,NULL,'2022-05-21 03:56:45','2022-05-21 03:56:45',0,0,'45.95.39.55','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(724,1,NULL,'2022-05-22 15:55:05','2022-05-22 15:55:05',0,0,'76.218.77.5','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(725,1,NULL,'2022-05-22 16:24:12','2022-05-22 16:24:12',0,0,'37.19.223.8','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.86 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(726,1,NULL,'2022-05-23 18:57:02','2022-05-23 18:57:02',0,0,'174.193.204.144','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(727,1,NULL,'2022-05-24 13:12:40','2022-05-24 13:12:40',0,0,'193.36.224.86','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 12) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(728,1,NULL,'2022-05-24 15:01:21','2022-05-24 15:01:21',0,0,'49.144.200.119','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(729,1,NULL,'2022-05-25 07:03:37','2022-05-25 07:03:37',0,0,'154.30.177.51','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:54.0) Gecko/20100101 Firefox/54.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(730,1,NULL,'2022-05-25 18:33:35','2022-05-25 18:33:35',0,0,'204.156.181.45','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(731,1,NULL,'2022-05-26 05:28:28','2022-05-26 05:28:28',0,0,'76.174.90.217','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(732,1,NULL,'2022-05-27 11:37:23','2022-05-27 11:37:23',0,0,'172.58.229.123','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(733,1,NULL,'2022-05-30 07:06:12','2022-05-30 07:06:12',0,0,'103.193.197.126','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(734,1,NULL,'2022-05-30 13:32:55','2022-05-30 13:32:55',0,0,'167.114.173.203','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(735,1,NULL,'2022-05-31 18:23:02','2022-05-31 18:23:02',0,0,'165.231.84.252','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; TCO_20180619181606; rv:11.0) like Gecko,gzip(gfe)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(736,1,NULL,'2022-06-01 20:38:51','2022-06-01 20:38:51',0,0,'185.174.159.43','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(737,1,NULL,'2022-06-02 20:10:05','2022-06-02 20:10:05',0,0,'107.77.228.203','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_8_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(738,1,NULL,'2022-06-03 19:54:40','2022-06-03 19:54:40',0,0,'5.255.97.133','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(739,1,NULL,'2022-06-04 19:46:47','2022-06-04 19:46:47',0,0,'69.162.16.18','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(740,1,NULL,'2022-06-05 17:13:30','2022-06-05 17:13:30',0,0,'104.35.166.164','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(741,1,NULL,'2022-06-05 19:31:16','2022-06-05 19:31:16',0,0,'104.168.66.29','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.86 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(742,1,NULL,'2022-06-05 23:36:21','2022-06-05 23:36:21',0,0,'185.156.75.215','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(743,1,NULL,'2022-06-08 01:41:18','2022-06-08 01:41:18',0,0,'84.17.49.2','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(744,1,NULL,'2022-06-08 08:06:20','2022-06-08 08:06:20',0,0,'45.252.189.65','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3343.4 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(745,1,NULL,'2022-06-08 08:45:23','2022-06-08 08:45:23',0,0,'185.122.170.175','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3343.4 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(746,1,NULL,'2022-06-08 16:39:36','2022-06-08 16:39:36',0,0,'107.172.241.125','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3343.4 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(747,1,NULL,'2022-06-08 17:32:24','2022-06-08 17:32:24',0,0,'70.93.224.97','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(748,1,NULL,'2022-06-09 00:23:59','2022-06-09 00:23:59',0,0,'108.184.231.80','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(749,1,NULL,'2022-06-09 17:59:06','2022-06-09 17:59:06',0,0,'49.144.200.119','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(750,1,NULL,'2022-06-09 19:23:05','2022-06-09 19:23:05',0,0,'191.101.217.223','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(751,1,NULL,'2022-06-11 09:58:42','2022-06-11 09:58:42',0,0,'156.146.59.27','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(752,1,NULL,'2022-06-11 12:50:50','2022-06-11 12:50:50',0,0,'86.106.74.247','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(753,1,NULL,'2022-06-11 18:11:26','2022-06-11 18:11:26',0,0,'174.198.196.209','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/100.1 Mobile/15E148 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(754,1,NULL,'2022-06-13 17:10:56','2022-06-13 17:10:56',0,0,'198.46.210.61','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(755,1,NULL,'2022-06-13 17:18:58','2022-06-13 17:18:58',0,0,'23.93.21.161','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.115 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(756,1,NULL,'2022-06-14 14:44:59','2022-06-14 14:44:59',0,0,'185.158.106.64','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(757,1,NULL,'2022-06-14 19:30:08','2022-06-14 19:30:08',0,0,'38.145.80.71','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; rv:49.0) Gecko/20100101 Firefox/49.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(758,1,NULL,'2022-06-16 15:15:43','2022-06-16 15:15:43',0,0,'49.144.200.119','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(759,1,NULL,'2022-06-16 17:40:16','2022-06-16 17:40:16',0,0,'102.129.143.14','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(760,1,NULL,'2022-06-16 19:01:16','2022-06-16 19:01:16',0,0,'194.36.97.215','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36,gzip(gfe)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(761,1,NULL,'2022-06-17 12:48:05','2022-06-17 12:48:05',0,0,'191.96.168.119','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(762,1,NULL,'2022-06-17 13:14:58','2022-06-17 13:14:58',0,0,'209.127.96.86','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.39','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(763,1,NULL,'2022-06-17 15:46:57','2022-06-17 15:46:57',0,0,'45.34.14.136','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.18 Safari/537.36 OPR/55.0.2962.0 (Edition developer)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(764,1,NULL,'2022-06-17 23:17:30','2022-06-17 23:17:30',0,0,'185.82.126.31','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.39','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(765,1,NULL,'2022-06-18 10:58:56','2022-06-18 10:58:56',0,0,'107.175.58.74','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(766,1,NULL,'2022-06-18 11:22:46','2022-06-18 11:22:46',0,0,'192.187.126.170','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(767,1,NULL,'2022-06-18 12:05:15','2022-06-18 12:05:15',0,0,'185.230.143.111','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4427.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(768,1,NULL,'2022-06-20 07:24:05','2022-06-20 07:24:05',0,0,'87.101.94.119','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(769,1,NULL,'2022-06-20 20:49:57','2022-06-20 20:49:57',0,0,'76.50.13.114','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.124 Safari/537.36 Edg/102.0.1245.44','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(770,1,NULL,'2022-06-20 22:46:20','2022-06-20 22:46:20',0,0,'194.36.96.167','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(771,1,NULL,'2022-06-21 12:09:24','2022-06-21 12:09:24',0,0,'172.245.103.169','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(772,1,NULL,'2022-06-21 16:06:24','2022-06-21 16:06:24',0,0,'185.189.115.19','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(773,1,NULL,'2022-06-21 16:30:04','2022-06-21 16:30:04',0,0,'75.83.35.117','https://www.drfields.com/contact/?mc_cid=df43c3ab31&mc_eid=50970229fd','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(774,1,NULL,'2022-06-21 21:19:02','2022-06-21 21:19:02',0,0,'174.195.194.246','https://www.drfields.com/contact/?mc_cid=df43c3ab31&mc_eid=50127839e5','Mozilla/5.0 (Linux; Android 12; SM-G981V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(775,1,NULL,'2022-06-22 23:11:38','2022-06-22 23:11:38',0,0,'172.58.23.185','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; moto g pure Build/RRHS31.Q3-46-110-7; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/102.0.5005.125 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(776,1,NULL,'2022-06-24 15:41:12','2022-06-24 15:41:12',0,0,'173.24.150.246','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(777,1,NULL,'2022-06-24 18:48:23','2022-06-24 18:48:23',0,0,'172.58.28.136','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; U307AS Build/P00610; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/102.0.5005.125 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(778,1,NULL,'2022-06-24 19:54:20','2022-06-24 19:54:20',0,0,'138.199.63.70','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(779,1,NULL,'2022-06-24 21:10:20','2022-06-24 21:10:20',0,0,'172.113.203.57','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 12; SAMSUNG SM-A716U1) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/17.0 Chrome/96.0.4664.104 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(780,1,NULL,'2022-06-25 10:37:08','2022-06-25 10:37:08',0,0,'212.55.111.61','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(781,1,NULL,'2022-06-25 10:42:14','2022-06-25 10:42:14',0,0,'154.16.167.93','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(782,1,NULL,'2022-06-25 11:48:39','2022-06-25 11:48:39',0,0,'185.159.158.51','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(783,1,NULL,'2022-06-25 23:02:24','2022-06-25 23:02:24',0,0,'47.146.81.116','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/102.0.5005.87 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(784,1,NULL,'2022-06-26 17:19:44','2022-06-26 17:19:44',0,0,'84.17.48.169','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(785,1,NULL,'2022-06-27 16:55:35','2022-06-27 16:55:35',0,0,'99.2.222.178','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(786,1,NULL,'2022-06-29 06:42:24','2022-06-29 06:42:24',0,0,'104.174.116.212','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(787,1,NULL,'2022-06-29 21:31:19','2022-06-29 21:31:19',0,0,'172.112.244.200','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(788,1,NULL,'2022-06-30 22:21:38','2022-06-30 22:21:38',0,0,'162.252.89.2','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 Edg/91.0.864.70','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(789,1,NULL,'2022-06-30 22:37:59','2022-06-30 22:37:59',0,0,'76.82.168.0','https://www.drfields.com/contact/','Mozilla/5.0 (X11; CrOS x86_64 14388.61.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.107 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(790,1,NULL,'2022-07-01 11:44:09','2022-07-01 11:44:09',0,0,'174.199.36.160','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(791,1,NULL,'2022-07-01 12:06:32','2022-07-01 12:06:32',0,0,'192.3.215.182','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36 Core/1.47.516.400 QQBrowser/9.4.8186.400','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(792,1,NULL,'2022-07-02 00:19:52','2022-07-02 00:19:52',0,0,'174.195.194.134','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(793,1,NULL,'2022-07-04 20:00:58','2022-07-04 20:00:58',0,0,'198.23.238.89','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.3084.400 QQBrowser/9.6.11346.400','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(794,1,NULL,'2022-07-06 03:24:47','2022-07-06 03:24:47',0,0,'75.63.29.81','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(795,1,NULL,'2022-07-08 10:47:33','2022-07-08 10:47:33',0,0,'103.102.116.127','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(796,1,NULL,'2022-07-09 17:12:16','2022-07-09 17:12:16',0,0,'200.68.173.158','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 11; 2109119DG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(797,1,NULL,'2022-07-14 06:46:46','2022-07-14 06:46:46',0,0,'196.247.212.173','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 UBrowser/7.0.185.1002 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(798,1,NULL,'2022-07-14 12:28:22','2022-07-14 12:28:22',0,0,'37.115.145.159','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(799,1,NULL,'2022-07-15 06:52:53','2022-07-15 06:52:53',0,0,'152.32.99.102','https://www.drfields.com/contact/','Mozilla/5.0 (X11; CrOS x86_64 14816.99.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(800,1,NULL,'2022-07-15 13:34:21','2022-07-15 13:34:21',0,0,'72.221.232.142','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(801,1,NULL,'2022-07-15 18:25:14','2022-07-15 18:25:14',0,0,'195.181.161.22','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(802,1,NULL,'2022-07-15 20:33:05','2022-07-15 20:33:05',0,0,'47.180.98.119','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(803,1,NULL,'2022-07-15 23:12:54','2022-07-15 23:12:54',0,0,'49.144.198.197','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(804,1,NULL,'2022-07-18 01:08:33','2022-07-18 01:08:33',0,0,'174.193.192.191','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 12; SM-G970U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(805,1,NULL,'2022-07-18 03:05:29','2022-07-18 03:05:29',0,0,'172.113.215.145','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(806,1,NULL,'2022-07-19 18:18:32','2022-07-19 18:18:32',0,0,'137.119.64.157','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(807,1,NULL,'2022-07-19 20:06:55','2022-07-19 20:06:55',0,0,'76.91.221.74','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(808,1,NULL,'2022-07-19 23:52:29','2022-07-19 23:52:29',0,0,'104.10.238.95','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(809,1,NULL,'2022-07-20 04:06:48','2022-07-20 04:06:48',0,0,'209.91.236.102','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(810,1,NULL,'2022-07-20 04:26:40','2022-07-20 04:26:40',0,0,'108.87.59.232','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(811,1,NULL,'2022-07-20 07:13:23','2022-07-20 07:13:23',0,0,'142.129.93.53','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; SM-G950U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(812,1,NULL,'2022-07-20 16:11:53','2022-07-20 16:11:53',0,0,'173.198.97.234','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(813,1,NULL,'2022-07-20 16:13:27','2022-07-20 16:13:27',0,0,'173.198.97.234','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(814,1,NULL,'2022-07-21 01:42:17','2022-07-21 01:42:17',0,0,'107.77.230.8','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(815,1,NULL,'2022-07-21 12:06:25','2022-07-21 12:06:25',0,0,'84.17.60.186','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 Kinza/4.9.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(816,1,NULL,'2022-07-22 06:16:29','2022-07-22 06:16:29',0,0,'5.62.16.17','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36 Maxthon/5.2.1.5000','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(817,1,NULL,'2022-07-22 16:44:02','2022-07-22 16:44:02',0,0,'49.144.201.156','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(818,1,NULL,'2022-07-22 20:23:03','2022-07-22 20:23:03',0,0,'196.242.84.189','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36 Maxthon/5.2.1.6000','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(819,1,NULL,'2022-07-22 22:55:22','2022-07-22 22:55:22',0,0,'104.173.199.184','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(820,1,NULL,'2022-07-29 02:49:25','2022-07-29 02:49:25',0,0,'174.248.204.171','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/101.0.4951.44 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(821,1,NULL,'2022-07-30 07:41:05','2022-07-30 07:41:05',0,0,'103.193.197.126','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(822,1,NULL,'2022-07-30 15:10:01','2022-07-30 15:10:01',0,0,'68.101.248.161','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(823,1,NULL,'2022-07-31 00:29:38','2022-07-31 00:29:38',0,0,'181.215.16.229','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.26 Safari/537.36 Core/1.63.5408.400 QQBrowser/10.1.1408.400','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(824,1,NULL,'2022-08-01 22:51:34','2022-08-01 22:51:34',0,0,'130.76.186.16','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(825,1,NULL,'2022-08-02 20:21:09','2022-08-02 20:21:09',0,0,'107.77.206.217','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(826,1,NULL,'2022-08-07 13:28:31','2022-08-07 13:28:31',0,0,'172.58.77.155','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(827,1,NULL,'2022-08-07 15:12:39','2022-08-07 15:12:39',0,0,'45.252.189.235','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(828,1,NULL,'2022-08-08 19:19:27','2022-08-08 19:19:27',0,0,'68.225.10.13','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(829,1,NULL,'2022-08-09 21:11:25','2022-08-09 21:11:25',0,0,'107.184.225.192','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(830,1,NULL,'2022-08-11 08:38:47','2022-08-11 08:38:47',0,0,'185.255.96.99','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(831,1,NULL,'2022-08-11 10:29:19','2022-08-11 10:29:19',0,0,'46.46.116.200','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(832,1,NULL,'2022-08-14 05:46:17','2022-08-14 05:46:17',0,0,'68.4.108.36','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(833,1,NULL,'2022-08-15 16:25:43','2022-08-15 16:25:43',0,0,'47.150.238.224','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(834,1,NULL,'2022-08-15 21:51:08','2022-08-15 21:51:08',0,0,'49.145.33.236','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(835,1,NULL,'2022-08-16 03:03:50','2022-08-16 03:03:50',0,0,'172.112.204.0','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 12; SM-G973U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(836,1,NULL,'2022-08-17 18:45:01','2022-08-17 18:45:01',0,0,'45.128.38.148','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(837,1,NULL,'2022-08-18 02:55:59','2022-08-18 02:55:59',0,0,'162.237.74.144','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(838,1,NULL,'2022-08-19 14:28:32','2022-08-19 14:28:32',0,0,'85.208.115.224','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3416.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(839,1,NULL,'2022-08-19 14:44:40','2022-08-19 14:44:40',0,0,'104.28.85.136','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(840,1,NULL,'2022-08-19 14:55:10','2022-08-19 14:55:10',0,0,'37.140.223.176','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:103.0) Gecko/20100101 Firefox/103.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(841,1,NULL,'2022-08-19 17:15:45','2022-08-19 17:15:45',0,0,'181.215.16.250','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3416.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(842,1,NULL,'2022-08-19 20:24:56','2022-08-19 20:24:56',0,0,'154.12.141.122','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(843,1,NULL,'2022-08-20 16:29:32','2022-08-20 16:29:32',0,0,'196.196.255.253','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3423.2 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(844,1,NULL,'2022-08-21 01:15:09','2022-08-21 01:15:09',0,0,'23.94.32.30','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3423.2 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(845,1,NULL,'2022-08-22 15:52:37','2022-08-22 15:52:37',0,0,'49.148.247.141','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(846,1,NULL,'2022-08-23 09:17:27','2022-08-23 09:17:27',0,0,'107.150.70.95','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64; APCPMS=^N201302070257035267484A37ACF0A41BE63F_2702^; Trident/7.0; rv:11.0) like Gecko,gzip(gfe)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(847,1,NULL,'2022-08-23 18:19:59','2022-08-23 18:19:59',0,0,'185.220.100.252','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(848,1,NULL,'2022-08-24 09:13:10','2022-08-24 09:13:10',0,0,'101.251.197.46','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(849,1,NULL,'2022-08-24 20:30:28','2022-08-24 20:30:28',0,0,'47.181.121.228','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(850,1,NULL,'2022-08-25 08:03:14','2022-08-25 08:03:14',0,0,'109.70.100.92','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(851,1,NULL,'2022-08-25 11:27:20','2022-08-25 11:27:20',0,0,'209.107.176.179','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 12; Pixel 3a XL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(852,1,NULL,'2022-08-26 12:35:12','2022-08-26 12:35:12',0,0,'85.208.115.5','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0;Macintosh; Intel Mac OS X 10_13_3) Gecko/20100101 Firefox/43.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(853,1,NULL,'2022-08-28 17:18:32','2022-08-28 17:18:32',0,0,'76.114.25.49','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(854,1,NULL,'2022-08-28 19:19:34','2022-08-28 19:19:34',0,0,'47.39.112.35','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(855,1,NULL,'2022-09-09 04:48:23','2022-09-09 04:48:23',0,0,'76.178.100.93','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(856,1,NULL,'2022-09-11 23:47:17','2022-09-11 23:47:17',0,0,'176.124.207.132','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(857,1,NULL,'2022-09-13 02:57:18','2022-09-13 02:57:18',0,0,'23.243.38.41','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 12; SM-S901U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(858,1,NULL,'2022-09-13 20:31:38','2022-09-13 20:31:38',0,0,'46.46.116.200','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(859,1,NULL,'2022-09-13 20:45:19','2022-09-13 20:45:19',0,0,'172.56.31.166','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(860,1,NULL,'2022-09-14 19:50:02','2022-09-14 19:50:02',0,0,'174.193.196.88','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/227.1.470269224 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(861,1,NULL,'2022-09-19 18:29:06','2022-09-19 18:29:06',0,0,'193.38.235.158','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(862,1,NULL,'2022-09-20 04:39:05','2022-09-20 04:39:05',0,0,'5.44.174.110','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(863,1,NULL,'2022-09-20 14:12:30','2022-09-20 14:12:30',0,0,'89.22.232.186','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(864,1,NULL,'2022-09-21 03:18:16','2022-09-21 03:18:16',0,0,'185.197.74.6','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(865,1,NULL,'2022-09-21 03:36:32','2022-09-21 03:36:32',0,0,'185.197.74.6','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(866,1,NULL,'2022-09-21 03:52:00','2022-09-21 03:52:00',0,0,'89.22.234.115','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(867,1,NULL,'2022-09-21 04:17:42','2022-09-21 04:17:42',0,0,'185.197.74.6','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.86 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(868,1,NULL,'2022-09-21 04:37:00','2022-09-21 04:37:00',0,0,'89.22.234.115','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(869,1,NULL,'2022-09-21 05:19:20','2022-09-21 05:19:20',0,0,'185.197.74.6','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(870,1,NULL,'2022-09-21 05:35:50','2022-09-21 05:35:50',0,0,'185.197.74.6','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4400.8 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(871,1,NULL,'2022-09-21 05:55:44','2022-09-21 05:55:44',0,0,'185.197.74.6','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(872,1,NULL,'2022-09-21 06:00:36','2022-09-21 06:00:36',0,0,'89.22.234.115','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(873,1,NULL,'2022-09-21 06:11:30','2022-09-21 06:11:30',0,0,'89.22.234.115','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(874,1,NULL,'2022-09-21 19:23:56','2022-09-21 19:23:56',0,0,'104.173.195.14','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(875,1,NULL,'2022-09-22 21:07:56','2022-09-22 21:07:56',0,0,'156.99.55.125','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(876,1,NULL,'2022-09-23 17:00:55','2022-09-23 17:00:55',0,0,'76.94.200.35','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(877,1,NULL,'2022-09-25 20:34:16','2022-09-25 20:34:16',0,0,'119.95.242.11','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(878,1,NULL,'2022-09-26 21:11:00','2022-09-26 21:11:00',0,0,'163.116.157.65','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.50','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(879,1,NULL,'2022-09-29 14:33:42','2022-09-29 14:33:42',0,0,'207.228.78.204','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(880,1,NULL,'2022-09-30 15:57:13','2022-09-30 15:57:13',0,0,'191.102.156.156','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(881,1,NULL,'2022-10-02 21:11:27','2022-10-02 21:11:27',0,0,'165.231.98.126','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(882,1,NULL,'2022-10-05 07:54:28','2022-10-05 07:54:28',0,0,'188.234.25.205','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(883,1,NULL,'2022-10-05 15:10:20','2022-10-05 15:10:20',0,0,'45.169.70.9','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(884,1,NULL,'2022-10-08 18:19:02','2022-10-08 18:19:02',0,0,'181.177.96.15','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(885,1,NULL,'2022-10-10 06:41:47','2022-10-10 06:41:47',0,0,'39.35.154.8','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(886,1,NULL,'2022-10-11 17:18:13','2022-10-11 17:18:13',0,0,'99.146.185.197','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 Instagram 255.1.0.18.105 (iPhone10,2; iOS 15_6_1; en_US; en-US; scale=2.88; 1080x1920; 405816327)','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(887,1,NULL,'2022-10-13 09:10:07','2022-10-13 09:10:07',0,0,'176.124.214.186','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4427.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(888,1,NULL,'2022-10-16 17:09:37','2022-10-16 17:09:37',0,0,'176.124.214.186','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(889,1,NULL,'2022-10-17 09:59:01','2022-10-17 09:59:01',0,0,'193.35.48.118','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(890,1,NULL,'2022-10-18 19:10:18','2022-10-18 19:10:18',0,0,'24.206.66.13','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.34','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(891,1,NULL,'2022-10-19 00:02:17','2022-10-19 00:02:17',0,0,'69.172.153.246','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(892,1,NULL,'2022-10-20 22:55:51','2022-10-20 22:55:51',0,0,'59.103.214.222','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(893,1,NULL,'2022-10-21 07:41:52','2022-10-21 07:41:52',0,0,'178.175.128.42','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(894,1,NULL,'2022-10-21 18:39:01','2022-10-21 18:39:01',0,0,'138.199.36.192','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(895,1,NULL,'2022-10-23 12:26:53','2022-10-23 12:26:53',0,0,'107.152.140.117','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(896,1,NULL,'2022-10-26 03:20:01','2022-10-26 03:20:01',0,0,'72.109.112.91','https://www.drfields.com/contact/','Mozilla/5.0 (iPad; CPU OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/106.0.5249.92 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(897,1,NULL,'2022-10-26 09:03:52','2022-10-26 09:03:52',0,0,'196.242.10.116','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(898,1,NULL,'2022-10-27 16:42:09','2022-10-27 16:42:09',0,0,'50.236.34.202','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(899,1,NULL,'2022-10-28 09:36:16','2022-10-28 09:36:16',0,0,'84.239.49.133','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(900,1,NULL,'2022-10-30 03:29:19','2022-10-30 03:29:19',0,0,'87.249.132.11','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(901,1,NULL,'2022-10-31 14:56:06','2022-10-31 14:56:06',0,0,'194.36.98.32','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(902,1,NULL,'2022-10-31 21:08:08','2022-10-31 21:08:08',0,0,'104.32.86.187','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(903,1,NULL,'2022-11-02 21:28:13','2022-11-02 21:28:13',0,0,'200.59.181.11','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(904,1,NULL,'2022-11-04 04:09:28','2022-11-04 04:09:28',0,0,'46.246.122.115','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(905,1,NULL,'2022-11-04 07:28:12','2022-11-04 07:28:12',0,0,'176.124.214.186','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(906,1,NULL,'2022-11-07 05:40:36','2022-11-07 05:40:36',0,0,'178.176.76.57','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(907,1,NULL,'2022-11-08 10:54:08','2022-11-08 10:54:08',0,0,'185.174.159.245','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4089.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(908,1,NULL,'2022-11-08 22:14:35','2022-11-08 22:14:35',0,0,'191.101.209.116','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(909,1,NULL,'2022-11-09 07:47:37','2022-11-09 07:47:37',0,0,'76.176.161.217','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(910,1,NULL,'2022-11-09 22:40:53','2022-11-09 22:40:53',0,0,'162.229.189.141','https://www.drfields.com/contact/?mc_cid=feb734bf30&mc_eid=9b32ed485f','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.3 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(911,1,NULL,'2022-11-10 02:13:22','2022-11-10 02:13:22',0,0,'85.208.115.246','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(912,1,NULL,'2022-11-11 21:17:17','2022-11-11 21:17:17',0,0,'194.36.97.196','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(913,1,NULL,'2022-11-12 17:32:37','2022-11-12 17:32:37',0,0,'5.188.159.17','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(914,1,NULL,'2022-11-12 23:51:07','2022-11-12 23:51:07',0,0,'107.171.230.76','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(915,1,NULL,'2022-11-14 12:57:50','2022-11-14 12:57:50',0,0,'178.176.77.210','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(916,1,NULL,'2022-11-18 21:31:51','2022-11-18 21:31:51',0,0,'173.44.166.102','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(917,1,NULL,'2022-11-19 04:32:17','2022-11-19 04:32:17',0,0,'216.139.2.226','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(918,1,NULL,'2022-11-19 20:12:04','2022-11-19 20:12:04',0,0,'66.115.142.168','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(919,1,NULL,'2022-11-19 22:12:24','2022-11-19 22:12:24',0,0,'103.221.235.36','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(920,1,NULL,'2022-11-19 22:15:29','2022-11-19 22:15:29',0,0,'196.196.222.150','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(921,1,NULL,'2022-11-20 03:46:29','2022-11-20 03:46:29',0,0,'194.36.96.26','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(922,1,NULL,'2022-11-20 21:23:46','2022-11-20 21:23:46',0,0,'104.28.57.220','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(923,1,NULL,'2022-11-21 12:33:48','2022-11-21 12:33:48',0,0,'178.176.73.77','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(924,1,NULL,'2022-11-21 22:19:18','2022-11-21 22:19:18',0,0,'195.80.150.136','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(925,1,NULL,'2022-11-22 21:06:18','2022-11-22 21:06:18',0,0,'82.162.185.103','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(926,1,NULL,'2022-11-23 00:36:25','2022-11-23 00:36:25',0,0,'142.54.173.139','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(927,1,NULL,'2022-11-24 11:12:59','2022-11-24 11:12:59',0,0,'103.102.116.242','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(928,1,NULL,'2022-11-25 05:31:58','2022-11-25 05:31:58',0,0,'202.78.236.211','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(929,1,NULL,'2022-11-25 07:17:49','2022-11-25 07:17:49',0,0,'84.247.50.182','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(930,1,NULL,'2022-11-26 04:04:21','2022-11-26 04:04:21',0,0,'156.146.55.182','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(931,1,NULL,'2022-11-26 09:11:42','2022-11-26 09:11:42',0,0,'184.170.240.230','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(932,1,NULL,'2022-11-28 08:00:23','2022-11-28 08:00:23',0,0,'202.78.236.96','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(933,1,NULL,'2022-11-28 16:56:48','2022-11-28 16:56:48',0,0,'45.125.245.141','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(934,1,NULL,'2022-11-28 16:59:44','2022-11-28 16:59:44',0,0,'5.157.8.48','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(935,1,NULL,'2022-11-28 23:40:23','2022-11-28 23:40:23',0,0,'75.83.182.1','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(936,1,NULL,'2022-11-29 02:46:30','2022-11-29 02:46:30',0,0,'196.196.164.46','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(937,1,NULL,'2022-11-29 21:05:09','2022-11-29 21:05:09',0,0,'196.16.74.80','https://www.drfields.com/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(938,1,NULL,'2022-11-29 22:56:15','2022-11-29 22:56:15',0,0,'196.196.246.250','https://www.drfields.com/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(939,1,NULL,'2022-11-30 19:35:04','2022-11-30 19:35:04',0,0,'50.38.170.4','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edg/107.0.1418.62','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(940,1,NULL,'2022-12-02 23:14:30','2022-12-02 23:14:30',0,0,'172.91.183.151','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(941,1,NULL,'2022-12-03 17:07:20','2022-12-03 17:07:20',0,0,'68.186.49.185','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(942,1,NULL,'2022-12-04 19:30:05','2022-12-04 19:30:05',0,0,'154.9.47.15','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(943,1,NULL,'2022-12-04 22:58:20','2022-12-04 22:58:20',0,0,'24.86.166.224','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(944,1,NULL,'2022-12-06 03:59:43','2022-12-06 03:59:43',0,0,'188.126.79.7','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(945,1,NULL,'2022-12-06 23:40:40','2022-12-06 23:40:40',0,0,'38.95.224.253','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(946,1,NULL,'2022-12-07 15:14:56','2022-12-07 15:14:56',0,0,'143.244.44.130','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(947,1,NULL,'2022-12-07 18:36:50','2022-12-07 18:36:50',0,0,'68.186.55.158','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(948,1,NULL,'2022-12-08 13:38:43','2022-12-08 13:38:43',0,0,'102.165.52.199','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(949,1,NULL,'2022-12-09 04:00:31','2022-12-09 04:00:31',0,0,'79.137.71.24','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(950,1,NULL,'2022-12-09 16:36:18','2022-12-09 16:36:18',0,0,'173.208.184.60','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(951,1,NULL,'2022-12-09 18:15:50','2022-12-09 18:15:50',0,0,'98.97.180.141','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:107.0) Gecko/20100101 Firefox/107.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(952,1,NULL,'2022-12-10 00:45:59','2022-12-10 00:45:59',0,0,'37.204.161.9','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(953,1,NULL,'2022-12-11 04:10:12','2022-12-11 04:10:12',0,0,'88.147.153.152','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(954,1,NULL,'2022-12-11 06:44:50','2022-12-11 06:44:50',0,0,'79.137.71.24','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(955,1,NULL,'2022-12-11 21:52:50','2022-12-11 21:52:50',0,0,'196.240.143.208','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(956,1,NULL,'2022-12-12 08:09:26','2022-12-12 08:09:26',0,0,'196.245.187.78','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(957,1,NULL,'2022-12-12 16:53:37','2022-12-12 16:53:37',0,0,'165.231.95.32','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(958,1,NULL,'2022-12-13 23:40:33','2022-12-13 23:40:33',0,0,'196.240.143.208','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(959,1,NULL,'2022-12-13 23:46:25','2022-12-13 23:46:25',0,0,'45.95.39.9','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(960,1,NULL,'2022-12-14 03:21:02','2022-12-14 03:21:02',0,0,'196.247.205.8','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(961,1,NULL,'2022-12-14 03:36:13','2022-12-14 03:36:13',0,0,'172.56.233.108','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/108.0.5359.52 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(962,1,NULL,'2022-12-14 04:34:12','2022-12-14 04:34:12',0,0,'45.50.161.158','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(963,1,NULL,'2022-12-14 11:27:50','2022-12-14 11:27:50',0,0,'103.165.169.55','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(964,1,NULL,'2022-12-14 12:49:18','2022-12-14 12:49:18',0,0,'170.83.178.156','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(965,1,NULL,'2022-12-14 16:31:51','2022-12-14 16:31:51',0,0,'84.247.48.8','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(966,1,NULL,'2022-12-14 17:13:59','2022-12-14 17:13:59',0,0,'196.245.249.229','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(967,1,NULL,'2022-12-15 01:07:58','2022-12-15 01:07:58',0,0,'188.234.19.36','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(968,1,NULL,'2022-12-16 23:50:41','2022-12-16 23:50:41',0,0,'149.34.244.152','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(969,1,NULL,'2022-12-18 11:44:31','2022-12-18 11:44:31',0,0,'202.14.6.143','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(970,1,NULL,'2022-12-18 17:38:09','2022-12-18 17:38:09',0,0,'67.255.91.24','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(971,1,NULL,'2022-12-19 01:38:25','2022-12-19 01:38:25',0,0,'174.193.200.244','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(972,1,NULL,'2022-12-19 03:38:15','2022-12-19 03:38:15',0,0,'45.155.201.17','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(973,1,NULL,'2022-12-19 04:20:07','2022-12-19 04:20:07',0,0,'104.34.14.5','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(974,1,NULL,'2022-12-20 04:05:55','2022-12-20 04:05:55',0,0,'175.176.29.97','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(975,1,NULL,'2022-12-20 06:06:42','2022-12-20 06:06:42',0,0,'172.118.139.32','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(976,1,NULL,'2022-12-21 10:15:28','2022-12-21 10:15:28',0,0,'194.36.98.213','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(977,1,NULL,'2022-12-21 11:50:23','2022-12-21 11:50:23',0,0,'37.19.223.213','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(978,1,NULL,'2022-12-22 07:56:12','2022-12-22 07:56:12',0,0,'178.168.193.251','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(979,1,NULL,'2022-12-22 09:21:07','2022-12-22 09:21:07',0,0,'50.3.183.177','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(980,1,NULL,'2022-12-22 17:23:38','2022-12-22 17:23:38',0,0,'223.29.254.153','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(981,1,NULL,'2022-12-23 08:21:46','2022-12-23 08:21:46',0,0,'102.165.55.14','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(982,1,NULL,'2022-12-23 09:28:51','2022-12-23 09:28:51',0,0,'191.102.182.197','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(983,1,NULL,'2022-12-25 05:01:12','2022-12-25 05:01:12',0,0,'191.102.182.113','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(984,1,NULL,'2022-12-25 07:44:44','2022-12-25 07:44:44',0,0,'149.34.242.228','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(985,1,NULL,'2022-12-26 03:35:35','2022-12-26 03:35:35',0,0,'191.96.181.45','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(986,1,NULL,'2022-12-26 18:30:46','2022-12-26 18:30:46',0,0,'103.221.234.55','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(987,1,NULL,'2022-12-27 04:40:17','2022-12-27 04:40:17',0,0,'182.187.82.158','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(988,1,NULL,'2022-12-27 11:53:24','2022-12-27 11:53:24',0,0,'95.189.74.239','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(989,1,NULL,'2022-12-28 13:27:31','2022-12-28 13:27:31',0,0,'182.189.233.23','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(990,1,NULL,'2022-12-28 21:09:48','2022-12-28 21:09:48',0,0,'188.234.19.36','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(991,1,NULL,'2022-12-30 17:42:15','2022-12-30 17:42:15',0,0,'194.36.96.5','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(992,1,NULL,'2022-12-30 18:46:50','2022-12-30 18:46:50',0,0,'191.96.181.95','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(993,1,NULL,'2022-12-31 15:58:17','2022-12-31 15:58:17',0,0,'160.20.10.46','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(994,1,NULL,'2023-01-02 11:54:33','2023-01-02 11:54:33',0,0,'161.123.55.190','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4427.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(995,1,NULL,'2023-01-02 16:12:30','2023-01-02 16:12:30',0,0,'77.222.108.189','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(996,1,NULL,'2023-01-03 00:06:48','2023-01-03 00:06:48',0,0,'160.20.10.84','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(997,1,NULL,'2023-01-03 23:07:08','2023-01-03 23:07:08',0,0,'49.145.41.52','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(998,1,NULL,'2023-01-04 02:36:46','2023-01-04 02:36:46',0,0,'77.222.107.211','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(999,1,NULL,'2023-01-04 18:58:38','2023-01-04 18:58:38',0,0,'136.226.64.90','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1000,1,NULL,'2023-01-04 19:56:19','2023-01-04 19:56:19',0,0,'160.20.10.84','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1001,1,NULL,'2023-01-05 14:09:47','2023-01-05 14:09:47',0,0,'37.19.217.250','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1002,1,NULL,'2023-01-05 17:23:48','2023-01-05 17:23:48',0,0,'49.148.243.170','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1003,1,NULL,'2023-01-05 23:40:20','2023-01-05 23:40:20',0,0,'174.193.193.175','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1004,1,NULL,'2023-01-06 00:15:29','2023-01-06 00:15:29',0,0,'102.165.55.201','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1005,1,NULL,'2023-01-06 13:50:07','2023-01-06 13:50:07',0,0,'103.247.151.166','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1006,1,NULL,'2023-01-06 14:27:09','2023-01-06 14:27:09',0,0,'124.106.144.2','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1007,1,NULL,'2023-01-07 06:12:20','2023-01-07 06:12:20',0,0,'71.84.212.90','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 13; SM-F721U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1008,1,NULL,'2023-01-07 20:10:30','2023-01-07 20:10:30',0,0,'76.95.208.73','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:108.0) Gecko/20100101 Firefox/108.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1009,1,NULL,'2023-01-08 06:28:26','2023-01-08 06:28:26',0,0,'185.183.92.6','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1010,1,NULL,'2023-01-08 17:54:25','2023-01-08 17:54:25',0,0,'45.125.245.18','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1011,1,NULL,'2023-01-09 10:34:56','2023-01-09 10:34:56',0,0,'50.3.82.60','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1012,1,NULL,'2023-01-09 10:42:39','2023-01-09 10:42:39',0,0,'181.214.173.186','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1013,1,NULL,'2023-01-09 18:34:45','2023-01-09 18:34:45',0,0,'79.137.71.24','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1014,1,NULL,'2023-01-10 19:15:09','2023-01-10 19:15:09',0,0,'49.145.41.52','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1015,1,NULL,'2023-01-12 19:46:27','2023-01-12 19:46:27',0,0,'49.145.43.42','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1016,1,NULL,'2023-01-12 22:17:32','2023-01-12 22:17:32',0,0,'107.77.231.232','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1017,1,NULL,'2023-01-13 09:09:05','2023-01-13 09:09:05',0,0,'104.200.151.153','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1018,1,NULL,'2023-01-13 10:07:18','2023-01-13 10:07:18',0,0,'185.122.170.30','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1019,1,NULL,'2023-01-13 15:56:22','2023-01-13 15:56:22',0,0,'174.236.198.149','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 13; SM-N986U1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1020,1,NULL,'2023-01-13 23:42:06','2023-01-13 23:42:06',0,0,'191.96.180.31','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1021,1,NULL,'2023-01-14 00:32:58','2023-01-14 00:32:58',0,0,'72.134.190.199','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1022,1,NULL,'2023-01-14 05:12:56','2023-01-14 05:12:56',0,0,'212.124.19.156','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1023,1,NULL,'2023-01-14 21:48:57','2023-01-14 21:48:57',0,0,'194.36.98.44','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1024,1,NULL,'2023-01-16 12:08:20','2023-01-16 12:08:20',0,0,'103.225.201.204','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1025,1,NULL,'2023-01-16 12:11:19','2023-01-16 12:11:19',0,0,'196.196.224.51','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1026,1,NULL,'2023-01-16 20:40:49','2023-01-16 20:40:49',0,0,'23.90.43.185','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1027,1,NULL,'2023-01-17 08:22:44','2023-01-17 08:22:44',0,0,'37.139.53.90','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1028,1,NULL,'2023-01-17 19:47:02','2023-01-17 19:47:02',0,0,'196.240.237.105','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1029,1,NULL,'2023-01-18 04:03:42','2023-01-18 04:03:42',0,0,'47.153.160.129','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1030,1,NULL,'2023-01-18 15:40:41','2023-01-18 15:40:41',0,0,'191.102.182.84','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1031,1,NULL,'2023-01-19 14:48:53','2023-01-19 14:48:53',0,0,'5.62.58.253','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1032,1,NULL,'2023-01-19 15:10:31','2023-01-19 15:10:31',0,0,'194.36.96.87','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1033,1,NULL,'2023-01-19 15:18:12','2023-01-19 15:18:12',0,0,'109.197.199.22','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1034,1,NULL,'2023-01-19 21:09:38','2023-01-19 21:09:38',0,0,'173.166.248.22','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1035,1,NULL,'2023-01-20 06:18:01','2023-01-20 06:18:01',0,0,'160.20.11.220','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1036,1,NULL,'2023-01-20 14:22:59','2023-01-20 14:22:59',0,0,'23.90.31.60','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1037,1,NULL,'2023-01-21 19:57:52','2023-01-21 19:57:52',0,0,'191.102.182.12','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1038,1,NULL,'2023-01-21 20:07:56','2023-01-21 20:07:56',0,0,'185.174.159.245','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1039,1,NULL,'2023-01-22 19:54:21','2023-01-22 19:54:21',0,0,'23.90.31.22','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1040,1,NULL,'2023-01-23 09:10:04','2023-01-23 09:10:04',0,0,'185.122.170.38','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1041,1,NULL,'2023-01-23 17:05:09','2023-01-23 17:05:09',0,0,'75.83.220.91','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 12; SM-G970U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1042,1,NULL,'2023-01-23 17:18:43','2023-01-23 17:18:43',0,0,'172.91.131.49','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1043,1,NULL,'2023-01-24 03:38:38','2023-01-24 03:38:38',0,0,'37.214.22.243','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1044,1,NULL,'2023-01-25 03:35:14','2023-01-25 03:35:14',0,0,'37.214.22.243','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1045,1,NULL,'2023-01-26 16:08:16','2023-01-26 16:08:16',0,0,'181.214.218.61','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1046,1,NULL,'2023-01-27 02:37:03','2023-01-27 02:37:03',0,0,'84.17.49.47','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1047,1,NULL,'2023-01-27 22:43:01','2023-01-27 22:43:01',0,0,'99.10.77.79','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1048,1,NULL,'2023-01-29 02:07:27','2023-01-29 02:07:27',0,0,'37.19.223.117','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1049,1,NULL,'2023-01-29 07:50:30','2023-01-29 07:50:30',0,0,'23.90.43.185','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1050,1,NULL,'2023-01-29 07:57:13','2023-01-29 07:57:13',0,0,'23.90.30.136','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1051,1,NULL,'2023-01-31 12:03:25','2023-01-31 12:03:25',0,0,'23.90.30.172','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1052,1,NULL,'2023-01-31 13:15:01','2023-01-31 13:15:01',0,0,'196.196.31.151','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1053,1,NULL,'2023-01-31 17:03:22','2023-01-31 17:03:22',0,0,'98.171.186.229','https://www.drfields.com/contact/?mc_cid=c6d47ea07b&mc_eid=bb46de5aac','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/109.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1054,1,NULL,'2023-01-31 21:11:44','2023-01-31 21:11:44',0,0,'32.141.171.234','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1055,1,NULL,'2023-01-31 22:14:08','2023-01-31 22:14:08',0,0,'73.12.227.27','https://www.drfields.com/contact/?mc_cid=c6d47ea07b&mc_eid=76a8ef53b4','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1056,1,NULL,'2023-02-01 23:53:38','2023-02-01 23:53:38',0,0,'76.90.231.166','https://www.drfields.com/contact/?mc_cid=c6d47ea07b&mc_eid=88fe563a15','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/109.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1057,1,NULL,'2023-02-02 05:34:21','2023-02-02 05:34:21',0,0,'162.231.195.179','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 Edg/109.0.1518.61','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1058,1,NULL,'2023-02-02 15:51:28','2023-02-02 15:51:28',0,0,'196.240.250.185','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1059,1,NULL,'2023-02-02 16:32:16','2023-02-02 16:32:16',0,0,'50.204.186.55','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1060,1,NULL,'2023-02-02 17:41:08','2023-02-02 17:41:08',0,0,'196.16.74.127','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1061,1,NULL,'2023-02-03 05:56:28','2023-02-03 05:56:28',0,0,'71.48.32.78','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/249.0.504450501 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1062,1,NULL,'2023-02-03 05:57:50','2023-02-03 05:57:50',0,0,'71.48.32.78','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/249.0.504450501 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1063,1,NULL,'2023-02-03 07:28:38','2023-02-03 07:28:38',0,0,'84.247.48.11','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1064,1,NULL,'2023-02-03 07:53:43','2023-02-03 07:53:43',0,0,'23.90.31.182','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1065,1,NULL,'2023-02-04 08:36:50','2023-02-04 08:36:50',0,0,'196.196.147.126','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1066,1,NULL,'2023-02-06 23:50:32','2023-02-06 23:50:32',0,0,'107.77.231.82','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1067,1,NULL,'2023-02-07 04:36:13','2023-02-07 04:36:13',0,0,'72.109.85.119','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1068,1,NULL,'2023-02-07 07:48:04','2023-02-07 07:48:04',0,0,'138.122.192.172','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1069,1,NULL,'2023-02-07 07:52:39','2023-02-07 07:52:39',0,0,'196.240.250.60','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1070,1,NULL,'2023-02-07 23:13:12','2023-02-07 23:13:12',0,0,'172.91.116.105','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1071,1,NULL,'2023-02-08 06:09:01','2023-02-08 06:09:01',0,0,'23.90.31.22','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1072,1,NULL,'2023-02-08 22:58:51','2023-02-08 22:58:51',0,0,'45.48.47.153','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1073,1,NULL,'2023-02-09 15:01:36','2023-02-09 15:01:36',0,0,'196.199.119.60','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1074,1,NULL,'2023-02-09 21:45:50','2023-02-09 21:45:50',0,0,'47.151.144.134','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1075,1,NULL,'2023-02-10 15:08:40','2023-02-10 15:08:40',0,0,'75.82.114.160','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1076,1,NULL,'2023-02-11 10:11:36','2023-02-11 10:11:36',0,0,'103.193.197.130','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1077,1,NULL,'2023-02-11 17:38:12','2023-02-11 17:38:12',0,0,'196.242.46.245','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1078,1,NULL,'2023-02-14 20:12:47','2023-02-14 20:12:47',0,0,'67.201.33.10','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1079,1,NULL,'2023-02-17 09:49:39','2023-02-17 09:49:39',0,0,'45.152.199.58','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1080,1,NULL,'2023-02-17 10:30:16','2023-02-17 10:30:16',0,0,'196.199.122.142','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1081,1,NULL,'2023-02-17 10:47:23','2023-02-17 10:47:23',0,0,'161.123.150.117','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1082,1,NULL,'2023-02-18 07:41:56','2023-02-18 07:41:56',0,0,'24.108.106.119','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1083,1,NULL,'2023-02-18 08:30:49','2023-02-18 08:30:49',0,0,'103.221.234.161','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1084,1,NULL,'2023-02-19 11:49:53','2023-02-19 11:49:53',0,0,'176.124.210.117','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1085,1,NULL,'2023-02-20 01:55:50','2023-02-20 01:55:50',0,0,'216.139.22.213','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1086,1,NULL,'2023-02-20 15:35:31','2023-02-20 15:35:31',0,0,'137.25.53.83','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1087,1,NULL,'2023-02-21 04:44:12','2023-02-21 04:44:12',0,0,'196.247.224.222','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1088,1,NULL,'2023-02-21 23:02:12','2023-02-21 23:02:12',0,0,'23.231.32.138','https://www.drfields.com/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1089,1,NULL,'2023-02-21 23:39:29','2023-02-21 23:39:29',0,0,'196.242.195.179','https://www.drfields.com/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1090,1,NULL,'2023-02-22 00:02:26','2023-02-22 00:02:26',0,0,'196.242.115.3','https://www.drfields.com/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1091,1,NULL,'2023-02-25 01:47:19','2023-02-25 01:47:19',0,0,'45.252.189.102','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1092,1,NULL,'2023-02-28 11:41:11','2023-02-28 11:41:11',0,0,'196.242.114.186','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1093,1,NULL,'2023-03-03 12:14:28','2023-03-03 12:14:28',0,0,'70.127.98.143','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1094,1,NULL,'2023-03-03 14:21:55','2023-03-03 14:21:55',0,0,'31.43.37.213','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1095,1,NULL,'2023-03-05 23:48:49','2023-03-05 23:48:49',0,0,'45.152.199.228','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1096,1,NULL,'2023-03-06 08:50:09','2023-03-06 08:50:09',0,0,'103.193.197.130','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1097,1,NULL,'2023-03-06 08:52:08','2023-03-06 08:52:08',0,0,'103.193.197.130','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1098,1,NULL,'2023-03-06 17:14:12','2023-03-06 17:14:12',0,0,'185.174.159.41','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1099,1,NULL,'2023-03-06 18:38:37','2023-03-06 18:38:37',0,0,'65.200.54.234','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1100,1,NULL,'2023-03-06 22:13:06','2023-03-06 22:13:06',0,0,'185.174.159.41','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1101,1,NULL,'2023-03-07 21:11:16','2023-03-07 21:11:16',0,0,'194.107.200.226','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1102,1,NULL,'2023-03-08 17:13:47','2023-03-08 17:13:47',0,0,'199.66.103.111','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1103,1,NULL,'2023-03-09 16:19:46','2023-03-09 16:19:46',0,0,'47.151.142.109','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/110.1 Mobile/15E148 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1104,1,NULL,'2023-03-13 14:04:25','2023-03-13 14:04:25',0,0,'67.49.34.112','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1105,1,NULL,'2023-03-15 05:28:37','2023-03-15 05:28:37',0,0,'72.134.241.49','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/111.0.5563.72 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1106,1,NULL,'2023-03-17 15:36:47','2023-03-17 15:36:47',0,0,'181.214.218.99','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1107,1,NULL,'2023-03-17 22:12:56','2023-03-17 22:12:56',0,0,'134.249.61.142','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1108,1,NULL,'2023-03-18 03:12:02','2023-03-18 03:12:02',0,0,'172.226.212.126','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1109,1,NULL,'2023-03-18 07:02:45','2023-03-18 07:02:45',0,0,'65.123.255.139','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1110,1,NULL,'2023-03-18 07:04:37','2023-03-18 07:04:37',0,0,'65.123.255.139','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1111,1,NULL,'2023-03-19 23:20:12','2023-03-19 23:20:12',0,0,'64.183.88.107','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1112,1,NULL,'2023-03-20 21:02:03','2023-03-20 21:02:03',0,0,'134.249.61.142','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4427.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1113,1,NULL,'2023-03-21 05:16:59','2023-03-21 05:16:59',0,0,'45.89.173.198','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1114,1,NULL,'2023-03-21 17:45:13','2023-03-21 17:45:13',0,0,'35.149.45.0','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1115,1,NULL,'2023-03-22 07:52:31','2023-03-22 07:52:31',0,0,'37.19.223.247','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1116,1,NULL,'2023-03-24 18:05:35','2023-03-24 18:05:35',0,0,'134.249.61.142','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1117,1,NULL,'2023-03-27 19:44:42','2023-03-27 19:44:42',0,0,'45.91.21.35','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1118,1,NULL,'2023-03-27 23:35:18','2023-03-27 23:35:18',0,0,'174.243.129.27','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/256.2.518341946 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1119,1,NULL,'2023-03-28 03:02:49','2023-03-28 03:02:49',0,0,'76.169.167.179','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1120,1,NULL,'2023-03-28 04:51:32','2023-03-28 04:51:32',0,0,'94.25.173.10','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1121,1,NULL,'2023-03-29 21:53:31','2023-03-29 21:53:31',0,0,'151.106.12.243','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1122,1,NULL,'2023-03-31 03:57:00','2023-03-31 03:57:00',0,0,'174.193.128.162','https://www.drfields.com/contact/','Mozilla/5.0 (Android 13; Mobile; rv:109.0) Gecko/111.0 Firefox/111.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1123,1,NULL,'2023-04-02 15:10:04','2023-04-02 15:10:04',0,0,'45.252.189.3','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1124,1,NULL,'2023-04-03 03:12:19','2023-04-03 03:12:19',0,0,'45.94.228.122','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1125,1,NULL,'2023-04-03 14:06:37','2023-04-03 14:06:37',0,0,'76.206.201.113','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 15_7_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.4 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1126,1,NULL,'2023-04-03 18:31:23','2023-04-03 18:31:23',0,0,'172.112.190.88','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1127,1,NULL,'2023-04-04 11:10:15','2023-04-04 11:10:15',0,0,'103.193.197.130','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1128,1,NULL,'2023-04-04 18:12:47','2023-04-04 18:12:47',0,0,'204.26.35.16','https://www.drfields.com/contact/','Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1129,1,NULL,'2023-04-05 10:16:57','2023-04-05 10:16:57',0,0,'119.157.89.146','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1130,1,NULL,'2023-04-05 15:07:37','2023-04-05 15:07:37',0,0,'24.108.106.119','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1131,1,NULL,'2023-04-06 02:54:05','2023-04-06 02:54:05',0,0,'198.72.201.173','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1132,1,NULL,'2023-04-06 16:03:52','2023-04-06 16:03:52',0,0,'98.97.60.86','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1133,1,NULL,'2023-04-06 20:34:08','2023-04-06 20:34:08',0,0,'191.102.156.180','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1134,1,NULL,'2023-04-06 22:15:38','2023-04-06 22:15:38',0,0,'103.247.151.95','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1135,1,NULL,'2023-04-07 13:53:11','2023-04-07 13:53:11',0,0,'138.199.36.211','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1136,1,NULL,'2023-04-08 00:22:33','2023-04-08 00:22:33',0,0,'172.119.62.130','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1137,1,NULL,'2023-04-09 04:53:50','2023-04-09 04:53:50',0,0,'181.215.16.36','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1138,1,NULL,'2023-04-09 07:01:29','2023-04-09 07:01:29',0,0,'98.148.252.184','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 12; moto g stylus 5G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1139,1,NULL,'2023-04-09 07:02:08','2023-04-09 07:02:08',0,0,'98.148.252.184','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 12; moto g stylus 5G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1140,1,NULL,'2023-04-09 08:34:47','2023-04-09 08:34:47',0,0,'154.202.111.38','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1141,1,NULL,'2023-04-09 18:01:37','2023-04-09 18:01:37',0,0,'64.98.212.142','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1142,1,NULL,'2023-04-10 12:56:38','2023-04-10 12:56:38',0,0,'172.113.113.137','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 13; SAMSUNG SM-S901U1) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/20.0 Chrome/106.0.5249.126 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1143,1,NULL,'2023-04-10 16:41:36','2023-04-10 16:41:36',0,0,'206.111.49.197','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1144,1,NULL,'2023-04-12 14:57:51','2023-04-12 14:57:51',0,0,'216.139.41.177','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1145,1,NULL,'2023-04-13 00:45:12','2023-04-13 00:45:12',0,0,'47.229.246.200','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1146,1,NULL,'2023-04-13 18:55:06','2023-04-13 18:55:06',0,0,'156.146.55.162','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1147,1,NULL,'2023-04-14 09:21:04','2023-04-14 09:21:04',0,0,'103.193.197.126','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1148,1,NULL,'2023-04-15 00:39:04','2023-04-15 00:39:04',0,0,'108.89.96.166','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1149,1,NULL,'2023-04-17 19:50:25','2023-04-17 19:50:25',0,0,'205.220.129.31','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1150,1,NULL,'2023-04-19 23:19:47','2023-04-19 23:19:47',0,0,'54.240.198.35','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1151,1,NULL,'2023-04-20 01:05:06','2023-04-20 01:05:06',0,0,'175.176.55.20','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1152,1,NULL,'2023-04-20 01:47:01','2023-04-20 01:47:01',0,0,'138.199.60.178','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1153,1,NULL,'2023-04-21 18:50:20','2023-04-21 18:50:20',0,0,'98.148.7.80','https://www.drfields.com/contact/','Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1154,1,NULL,'2023-04-22 01:14:16','2023-04-22 01:14:16',0,0,'37.224.123.19','https://www.drfields.com/contact/','Mozilla/5.0 (iPad; CPU OS 16_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/112.0.5615.46 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1155,1,NULL,'2023-04-22 14:48:55','2023-04-22 14:48:55',0,0,'174.208.103.31','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_0_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1156,1,NULL,'2023-04-23 13:55:51','2023-04-23 13:55:51',0,0,'76.91.174.233','https://www.drfields.com/contact/','Mozilla/5.0 (X11; CrOS x86_64 14816.131.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1157,1,NULL,'2023-04-26 10:32:57','2023-04-26 10:32:57',0,0,'5.165.52.99','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5042.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1158,1,NULL,'2023-04-27 02:49:49','2023-04-27 02:49:49',0,0,'46.246.3.215','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1159,1,NULL,'2023-04-27 02:51:10','2023-04-27 02:51:10',0,0,'46.246.3.215','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1160,1,NULL,'2023-04-29 06:01:17','2023-04-29 06:01:17',0,0,'76.82.106.202','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1161,1,NULL,'2023-04-29 06:03:59','2023-04-29 06:03:59',0,0,'76.32.110.128','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/112.0.5615.167 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1162,1,NULL,'2023-04-29 20:13:09','2023-04-29 20:13:09',0,0,'104.28.198.243','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1163,1,NULL,'2023-04-30 16:39:41','2023-04-30 16:39:41',0,0,'172.89.191.54','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1164,1,NULL,'2023-05-03 21:05:11','2023-05-03 21:05:11',0,0,'172.250.253.97','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1165,1,NULL,'2023-05-03 21:09:18','2023-05-03 21:09:18',0,0,'172.250.253.97','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1166,1,NULL,'2023-05-04 01:29:36','2023-05-04 01:29:36',0,0,'96.77.222.157','https://www.drfields.com/contact/?mc_cid=eb3bedf41e&mc_eid=f63c550e7c','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/112.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1167,1,NULL,'2023-05-04 18:05:06','2023-05-04 18:05:06',0,0,'49.147.81.209','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1168,1,NULL,'2023-05-05 18:47:16','2023-05-05 18:47:16',0,0,'63.192.100.140','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1169,1,NULL,'2023-05-10 11:43:30','2023-05-10 11:43:30',0,0,'149.18.24.89','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1170,1,NULL,'2023-05-10 23:14:40','2023-05-10 23:14:40',0,0,'194.36.96.16','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1171,1,NULL,'2023-05-10 23:45:58','2023-05-10 23:45:58',0,0,'36.255.188.207','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1172,1,NULL,'2023-05-13 20:49:55','2023-05-13 20:49:55',0,0,'193.188.21.238','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1173,1,NULL,'2023-05-13 22:50:54','2023-05-13 22:50:54',0,0,'172.124.156.110','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1174,1,NULL,'2023-05-16 04:02:26','2023-05-16 04:02:26',0,0,'66.225.124.175','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1175,1,NULL,'2023-05-16 22:12:42','2023-05-16 22:12:42',0,0,'172.124.159.42','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1176,1,NULL,'2023-05-17 01:01:14','2023-05-17 01:01:14',0,0,'196.242.131.228','https://www.drfields.com/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1177,1,NULL,'2023-05-17 19:01:19','2023-05-17 19:01:19',0,0,'196.242.195.168','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1178,1,NULL,'2023-05-18 21:31:15','2023-05-18 21:31:15',0,0,'71.136.239.187','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1179,1,NULL,'2023-05-22 02:07:24','2023-05-22 02:07:24',0,0,'168.194.170.2','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1180,1,NULL,'2023-05-22 11:18:24','2023-05-22 11:18:24',0,0,'103.193.197.126','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1181,1,NULL,'2023-05-22 21:43:38','2023-05-22 21:43:38',0,0,'151.200.30.165','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1182,1,NULL,'2023-05-23 03:21:12','2023-05-23 03:21:12',0,0,'146.233.255.213','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36 Edg/113.0.1774.50','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1183,1,NULL,'2023-05-23 18:23:56','2023-05-23 18:23:56',0,0,'49.147.89.52','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1184,1,NULL,'2023-05-23 19:14:01','2023-05-23 19:14:01',0,0,'107.185.141.142','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1185,1,NULL,'2023-05-25 04:53:51','2023-05-25 04:53:51',0,0,'196.245.163.129','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1186,1,NULL,'2023-05-25 05:58:55','2023-05-25 05:58:55',0,0,'196.242.131.7','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1187,1,NULL,'2023-05-25 15:25:07','2023-05-25 15:25:07',0,0,'49.36.98.163','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/113.0.5672.121 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1188,1,NULL,'2023-05-26 02:07:59','2023-05-26 02:07:59',0,0,'172.58.208.153','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1189,1,NULL,'2023-05-29 05:16:43','2023-05-29 05:16:43',0,0,'108.185.113.191','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/113.0.5672.121 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1190,1,NULL,'2023-05-29 23:54:26','2023-05-29 23:54:26',0,0,'47.154.16.98','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/113.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1191,1,NULL,'2023-05-31 16:36:57','2023-05-31 16:36:57',0,0,'172.124.159.42','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1192,1,NULL,'2023-06-01 21:54:17','2023-06-01 21:54:17',0,0,'76.88.118.93','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1193,1,NULL,'2023-06-02 22:10:24','2023-06-02 22:10:24',0,0,'76.167.37.252','https://www.drfields.com/contact/','Mozilla/5.0 (iPad; CPU OS 12_5_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1194,1,NULL,'2023-06-03 03:18:58','2023-06-03 03:18:58',0,0,'72.134.82.116','https://www.drfields.com/contact/','Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1195,1,NULL,'2023-06-03 18:57:24','2023-06-03 18:57:24',0,0,'23.81.55.237','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1196,1,NULL,'2023-06-03 19:45:05','2023-06-03 19:45:05',0,0,'196.242.195.168','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 YaBrowser/22.7.0 Yowser/2.5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1197,1,NULL,'2023-06-04 14:18:50','2023-06-04 14:18:50',0,0,'49.12.208.171','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1198,1,NULL,'2023-06-05 04:56:53','2023-06-05 04:56:53',0,0,'196.240.254.40','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1199,1,NULL,'2023-06-05 13:52:28','2023-06-05 13:52:28',0,0,'47.155.28.11','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1200,1,NULL,'2023-06-05 16:26:46','2023-06-05 16:26:46',0,0,'196.242.195.63','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1201,1,NULL,'2023-06-06 06:43:25','2023-06-06 06:43:25',0,0,'196.240.51.68','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1202,1,NULL,'2023-06-06 21:21:22','2023-06-06 21:21:22',0,0,'172.56.233.230','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1203,1,NULL,'2023-06-07 02:55:15','2023-06-07 02:55:15',0,0,'104.34.138.210','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/20D67 [FBAN/FBIOS;FBDV/iPhone15,3;FBMD/iPhone;FBSN/iOS;FBSV/16.3.1;FBSS/3;FBID/phone;FBLC/en_US;FBOP/5]','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1204,1,NULL,'2023-06-10 23:49:06','2023-06-10 23:49:06',0,0,'3.14.247.46','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/114.0.5735.106 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1205,1,NULL,'2023-06-12 13:10:53','2023-06-12 13:10:53',0,0,'119.152.234.79','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1206,1,NULL,'2023-06-13 17:37:34','2023-06-13 17:37:34',0,0,'108.71.248.97','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1207,1,NULL,'2023-06-14 02:55:27','2023-06-14 02:55:27',0,0,'194.36.98.83','https://www.drfields.com/contact/','Mozilla/5.0 (Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1208,1,NULL,'2023-06-14 12:05:31','2023-06-14 12:05:31',0,0,'196.19.249.222','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1209,1,NULL,'2023-06-15 01:25:14','2023-06-15 01:25:14',0,0,'174.54.78.65','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1210,1,NULL,'2023-06-15 09:16:37','2023-06-15 09:16:37',0,0,'103.215.249.228','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1211,1,NULL,'2023-06-16 22:45:50','2023-06-16 22:45:50',0,0,'174.54.78.65','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1212,1,NULL,'2023-06-17 09:13:05','2023-06-17 09:13:05',0,0,'65.109.101.89','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1213,1,NULL,'2023-06-20 16:48:27','2023-06-20 16:48:27',0,0,'162.197.95.57','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1214,1,NULL,'2023-06-20 23:35:49','2023-06-20 23:35:49',0,0,'45.9.74.81','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1215,1,NULL,'2023-06-22 01:01:59','2023-06-22 01:01:59',0,0,'146.70.202.3','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1216,1,NULL,'2023-06-23 17:24:47','2023-06-23 17:24:47',0,0,'38.153.112.162','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edg/103.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1217,1,NULL,'2023-06-23 22:18:57','2023-06-23 22:18:57',0,0,'174.195.197.53','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 13) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/113.0.5672.162 Mobile DuckDuckGo/5 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1218,1,NULL,'2023-06-23 22:24:58','2023-06-23 22:24:58',0,0,'172.56.241.46','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/114.0.5735.124 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1219,1,NULL,'2023-06-24 15:41:21','2023-06-24 15:41:21',0,0,'172.116.57.65','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1220,1,NULL,'2023-06-26 01:44:45','2023-06-26 01:44:45',0,0,'107.77.228.126','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1221,1,NULL,'2023-06-27 08:03:03','2023-06-27 08:03:03',0,0,'104.28.230.243','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1222,1,NULL,'2023-06-28 19:49:35','2023-06-28 19:49:35',0,0,'172.250.31.99','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.58','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1223,1,NULL,'2023-06-29 17:06:57','2023-06-29 17:06:57',0,0,'216.238.184.214','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1224,1,NULL,'2023-06-29 22:18:28','2023-06-29 22:18:28',0,0,'172.56.241.254','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 9; SM-N950U Build/PPR1.180610.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/114.0.5735.196 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/420.0.0.32.61;]','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1225,1,NULL,'2023-06-30 12:11:41','2023-06-30 12:11:41',0,0,'102.165.54.40','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1226,1,NULL,'2023-07-01 20:12:04','2023-07-01 20:12:04',0,0,'172.249.75.95','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1227,1,NULL,'2023-07-03 04:49:15','2023-07-03 04:49:15',0,0,'146.196.33.138','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1228,1,NULL,'2023-07-03 06:58:28','2023-07-03 06:58:28',0,0,'102.165.54.3','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1229,1,NULL,'2023-07-03 09:06:03','2023-07-03 09:06:03',0,0,'89.187.164.247','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1230,1,NULL,'2023-07-05 23:56:57','2023-07-05 23:56:57',0,0,'75.7.3.186','https://www.drfields.com/contact/?mc_cid=d36500c545&mc_eid=4189518ff7','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1231,1,NULL,'2023-07-06 20:59:12','2023-07-06 20:59:12',0,0,'216.238.184.214','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1232,1,NULL,'2023-07-07 15:37:49','2023-07-07 15:37:49',0,0,'97.86.153.30','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5 Mobile/15E148 DuckDuckGo/7 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1233,1,NULL,'2023-07-09 22:59:20','2023-07-09 22:59:20',0,0,'191.96.168.27','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1234,1,NULL,'2023-07-15 08:05:09','2023-07-15 08:05:09',0,0,'172.58.208.183','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1235,1,NULL,'2023-07-15 19:52:46','2023-07-15 19:52:46',0,0,'47.6.90.63','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1236,1,NULL,'2023-07-22 14:19:05','2023-07-22 14:19:05',0,0,'23.114.221.78','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1237,1,NULL,'2023-07-23 06:12:44','2023-07-23 06:12:44',0,0,'182.190.199.81','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1238,1,NULL,'2023-07-23 10:46:51','2023-07-23 10:46:51',0,0,'196.242.4.191','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1239,1,NULL,'2023-07-23 21:59:43','2023-07-23 21:59:43',0,0,'75.83.83.23','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1240,1,NULL,'2023-07-26 21:05:57','2023-07-26 21:05:57',0,0,'185.122.170.18','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Xbox; Xbox One) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Edge/44.18363.8131','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1241,1,NULL,'2023-07-27 00:58:05','2023-07-27 00:58:05',0,0,'23.242.160.221','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5.2 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1242,1,NULL,'2023-07-27 23:57:05','2023-07-27 23:57:05',0,0,'196.199.55.109','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1243,1,NULL,'2023-07-30 14:26:50','2023-07-30 14:26:50',0,0,'86.106.74.250','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1244,1,NULL,'2023-08-03 17:44:52','2023-08-03 17:44:52',0,0,'170.144.243.193','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.188','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1245,1,NULL,'2023-08-04 10:29:21','2023-08-04 10:29:21',0,0,'103.73.92.235','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1246,1,NULL,'2023-08-04 15:33:24','2023-08-04 15:33:24',0,0,'185.179.214.38','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1247,1,NULL,'2023-08-07 17:22:14','2023-08-07 17:22:14',0,0,'204.2.36.30','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1248,1,NULL,'2023-08-09 06:25:26','2023-08-09 06:25:26',0,0,'194.60.86.238','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5.2 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1249,1,NULL,'2023-08-09 21:59:12','2023-08-09 21:59:12',0,0,'96.8.122.41','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 12.5; rv:102.0) Gecko/20100101 Firefox/102.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1250,1,NULL,'2023-08-10 22:23:30','2023-08-10 22:23:30',0,0,'172.56.233.92','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1251,1,NULL,'2023-08-11 13:50:12','2023-08-11 13:50:12',0,0,'193.43.118.15','https://www.drfields.com/contact/','Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1252,1,NULL,'2023-08-12 10:30:35','2023-08-12 10:30:35',0,0,'37.139.53.94','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1253,1,NULL,'2023-08-16 03:36:49','2023-08-16 03:36:49',0,0,'89.187.180.2','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1254,1,NULL,'2023-08-17 21:52:45','2023-08-17 21:52:45',0,0,'91.108.29.2','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5042.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1255,1,NULL,'2023-08-19 04:25:50','2023-08-19 04:25:50',0,0,'178.175.128.39','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.66 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1256,1,NULL,'2023-08-22 09:41:31','2023-08-22 09:41:31',0,0,'191.101.109.51','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1257,1,NULL,'2023-08-22 18:47:23','2023-08-22 18:47:23',0,0,'108.201.156.103','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5.1 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1258,1,NULL,'2023-08-23 11:39:04','2023-08-23 11:39:04',0,0,'178.176.75.48','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5042.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1259,1,NULL,'2023-08-23 20:53:26','2023-08-23 20:53:26',0,0,'2.59.183.6','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1260,1,NULL,'2023-08-27 03:51:19','2023-08-27 03:51:19',0,0,'172.249.236.25','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1261,1,NULL,'2023-08-29 21:04:24','2023-08-29 21:04:24',0,0,'111.92.135.137','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1262,1,NULL,'2023-08-30 00:32:27','2023-08-30 00:32:27',0,0,'76.176.164.195','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1263,1,NULL,'2023-08-30 18:58:52','2023-08-30 18:58:52',0,0,'45.50.177.104','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1264,1,NULL,'2023-08-31 00:38:42','2023-08-31 00:38:42',0,0,'172.117.61.194','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.62','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1265,1,NULL,'2023-08-31 05:24:07','2023-08-31 05:24:07',0,0,'140.99.189.116','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1266,1,NULL,'2023-08-31 13:37:16','2023-08-31 13:37:16',0,0,'47.152.244.16','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1267,1,NULL,'2023-08-31 19:39:14','2023-08-31 19:39:14',0,0,'192.109.110.173','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1268,1,NULL,'2023-09-01 06:42:43','2023-09-01 06:42:43',0,0,'185.179.214.53','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1269,1,NULL,'2023-09-01 15:31:24','2023-09-01 15:31:24',0,0,'76.167.138.177','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1270,1,NULL,'2023-09-01 16:10:16','2023-09-01 16:10:16',0,0,'5.42.65.39','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1271,1,NULL,'2023-09-01 21:44:26','2023-09-01 21:44:26',0,0,'111.88.95.127','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1272,1,NULL,'2023-09-03 20:17:01','2023-09-03 20:17:01',0,0,'179.61.156.224','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1273,1,NULL,'2023-09-04 02:57:49','2023-09-04 02:57:49',0,0,'36.255.190.245','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1274,1,NULL,'2023-09-05 19:18:41','2023-09-05 19:18:41',0,0,'193.43.118.198','https://www.drfields.com/contact/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1275,1,NULL,'2023-09-06 05:55:02','2023-09-06 05:55:02',0,0,'37.139.53.94','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1276,1,NULL,'2023-09-06 16:24:07','2023-09-06 16:24:07',0,0,'104.174.218.237','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1277,1,NULL,'2023-09-06 16:59:48','2023-09-06 16:59:48',0,0,'24.24.133.43','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1278,1,NULL,'2023-09-11 23:14:02','2023-09-11 23:14:02',0,0,'168.161.212.254','https://www.drfields.com/contact/','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Mobile Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1279,1,NULL,'2023-09-12 17:44:56','2023-09-12 17:44:56',0,0,'178.175.129.40','http://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1280,1,NULL,'2023-09-12 19:37:32','2023-09-12 19:37:32',0,0,'77.35.101.137','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1281,1,NULL,'2023-09-15 00:34:49','2023-09-15 00:34:49',0,0,'191.96.106.246','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1282,1,NULL,'2023-09-15 18:12:05','2023-09-15 18:12:05',0,0,'66.215.32.122','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Safari/605.1.15','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1283,1,NULL,'2023-09-18 23:49:09','2023-09-18 23:49:09',0,0,'172.58.208.27','https://www.drfields.com/contact/','Mozilla/5.0 (iPhone; CPU iPhone OS 16_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1284,1,NULL,'2023-09-20 20:20:44','2023-09-20 20:20:44',0,0,'172.251.169.201','https://www.drfields.com/contact/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1285,1,NULL,'2023-09-20 21:13:00','2023-09-20 21:13:00',0,0,'23.242.92.25','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/117.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active'),(1286,1,NULL,'2023-09-21 18:02:20','2023-09-21 18:02:20',0,0,'173.231.218.25','https://www.drfields.com/contact/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/117.0','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'active');
/*!40000 ALTER TABLE `wp_gf_entry` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_entry_meta`
--

DROP TABLE IF EXISTS `wp_gf_entry_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_entry_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `entry_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  `item_index` varchar(60) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `entry_id` (`entry_id`),
  KEY `meta_value` (`meta_value`(191))
) ENGINE=MyISAM AUTO_INCREMENT=9105 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_entry_meta`
--

LOCK TABLES `wp_gf_entry_meta` WRITE;
/*!40000 ALTER TABLE `wp_gf_entry_meta` DISABLE KEYS */;
INSERT INTO `wp_gf_entry_meta` VALUES (1,1,1,'6.3','Jerrylycle',''),(2,1,1,'2','no-replyIcosecoerics@gmail.com',''),(3,1,1,'3','(516) 172-5322',''),(10,1,1,'5','Hеllо!  drfields.com \r\n \r\nDid yоu knоw thаt it is pоssiblе tо sеnd businеss prоpоsаl   lеgаl? \r\nWе suggеst а nеw mеthоd оf sеnding lеttеr thrоugh fееdbасk fоrms. Suсh fоrms аrе lосаtеd оn mаny sitеs. \r\nWhеn suсh mеssаgеs аrе sеnt, nо pеrsоnаl dаtа is usеd, аnd mеssаgеs аrе sеnt tо fоrms spесifiсаlly dеsignеd tо rесеivе mеssаgеs аnd аppеаls. \r\nаlsо, mеssаgеs sеnt thrоugh соntасt Fоrms dо nоt gеt intо spаm bесаusе suсh mеssаgеs аrе соnsidеrеd impоrtаnt. \r\nWе оffеr yоu tо tеst оur sеrviсе fоr frее. Wе will sеnd up tо 50,000 mеssаgеs fоr yоu. \r\nThе соst оf sеnding оnе milliоn mеssаgеs is 49 USD. \r\n \r\nThis оffеr is сrеаtеd аutоmаtiсаlly. Plеаsе usе thе соntасt dеtаils bеlоw tо соntасt us. \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nWhatsApp - +375259112693',''),(11,1,1,'11','Not yet, and I want to avoid the need for one in the future',''),(12,1,1,'13','Friend/family who was/is a patient',''),(13,1,1,'4','Anytime',''),(14,1,2,'6.3','Lauren Gale',''),(15,1,2,'2','lauren@quickfundingnow.xyz',''),(16,1,2,'3','(545) 236-1566',''),(23,1,2,'5','IMPORTANT UPDATE\r\n\r\nMany Americans now qualify for emergency loans up to $5,000.\r\n\r\nTo find out if you qualify, visit: \r\nhttps://quickfundingnow.xyz/r1/?=drfields.com\r\n\r\nThese loans are unrelated to any stimulus or unemployment compensation you may already be receiving from the government.\r\n\r\nDue to the COVID-19 outbreak, lenders are expecting a surge in applications. We recommend submitting your loan request as promptly as possible.\r\n\r\nRegards,\r\nLauren Gale\r\nNational Loan Advisor\r\nQuick Funding Now\r\n\r\n\r\n\r\n\r\n30025 Alicia Parkway Unit#20-93	\r\nLaguna Niguel, CA 92677\r\n\r\n\r\n\r\n\r\n\r\n \r\nDon’t want Quick Funding Now marketing:\r\nhttps://quickfundingnow.xyz/out.php/?site=drfields.com',''),(24,1,2,'11','Yes, and I want to avoid it if possible',''),(25,1,2,'13','Referred by my doctor/provider',''),(26,1,2,'4','9am – 11am',''),(27,1,3,'6.3','Merissa Thomas',''),(28,1,3,'2','merissa.thomas@bestkeywordtraffic.top',''),(29,1,3,'3','(213) 558-4100',''),(36,1,3,'5','Hi - Just making sure you saw my email.\r\n\r\nDue to COVID-19, many businesses are now relying on us to increase their website traffic during these uncertain times. \r\n\r\nCould this help your business too? \r\nhttps:/bestkeywordtraffic.top/up?=drfields.com\r\n\r\nTap the link to see how we can help.\r\n\r\nBe well!\r\nMerissa\r\nTargeted Visitor Specialist\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n30025 Alicia Pkwy FL#20-91, Laguna Niguel, CA 92677\r\n\r\nIf you want to stop these non transactional messages you can do so here:  https://bestkeywordtraffic.top/unsubscribe.php?site=drfields.com',''),(37,1,3,'11','Yes, and I want to avoid it if possible',''),(38,1,3,'13','Google/Internet',''),(39,1,3,'4','11am – 1pm',''),(40,1,4,'6.3','Kelly Bloom',''),(41,1,4,'2','kelly@facemasksdirect.xyz',''),(42,1,4,'3','(326) 421-2566',''),(49,1,4,'5','Hi,\r\nDo your employees have face masks?\r\nWe find local moms and seamstresses that are making reusable masks for local businesses and the community. \r\nJust tell us how many you might need and we will match you with someone that can make the life saving masks you need.\r\nGo here:\r\nhttps://facemasksdirect.xyz/best-grade/?=drfields.com\r\n \r\nProceeds from every order help support local hospitals and food bank distribution!\r\n\r\nThank you for your support!\r\nKelly Bloom\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n964 E Badillo Street Unit 2055\r\nCovina, CA 91724\r\n\r\n\r\n\r\nDon’t need masks?  Avoid future messages here:\r\nhttps://facemasksdirect.xyz/out.php?site=drfields.com',''),(50,1,4,'11','Yes, and I want to avoid it if possible',''),(51,1,4,'13','Facebook',''),(52,1,4,'4','11am – 1pm',''),(53,1,5,'6.3','Victoria J. Sebanz',''),(54,1,5,'2','sanddancer99@gmail.com',''),(55,1,5,'3','(323) 945-5494',''),(62,1,5,'5','1. I had a series of injuries in 2002-3 (affecting head, neck and back) which stopped my dance life. I have since recouped as best as possible but lately I have had moments where my nerves in legs twang and I feel like I can\'t walk. I am going to the chiropractor this week, but I am wondering if there has been degeneration along the neck and spine. (Also a doctor stabbed me in the neck with a syringe of steroids...without permission in 2004, and I collapsed to the floor, and I wonder if this could be part of that. ) regardless, I am getting my alignment checked to see if there is a pinched nerve, but I would like to optimize my back for the rest of my life.  The only other injury was a dislocated patella and I rehabbed it but want to make sure my knees are going to last. My grandmother had hers replaced.',''),(63,1,5,'11','Not yet, and I want to avoid the need for one in the future',''),(64,1,5,'13','Google/Internet',''),(65,1,5,'4','9am – 11am',''),(66,1,6,'6.3','David Voytko',''),(67,1,6,'2','david@voytkomechanical.com',''),(68,1,6,'3','(818) 926-6035',''),(710,1,66,'5','I am an 18-year-old student from Canada who has been suffering from Post Concussion Syndrome for 7 months and am worried it could hinder me from pursuing my degree in medicine which commences in February 2021. For the first 4 months, I was completely clueless as to what the problem was and was dismissed by many doctors and neurologists who said it was all in my head or I was suffering from anxiety/depression. I was lost until, during my daily research on the internet, I watched Dr. Kevin Pecca’s video, who had suffered from identical symptoms and had found relief in upper cervical chiropractic. I decided to give it a try and felt a drastic improvement, however, when I decided to get back to the gym after 3 months of treatment, quite a few of my symptoms rushed back. I then came across neck instability/ weakness in the ligaments as a potential cause of the misalignments that I had to get treated twice every week and how PRP injections can provide relief from the condition.\r\nI needed some guidance as to what course of action I should take in order to be healthy before the start of medical school. If you could please provide some guidance, I will be indebted to you for the rest of my life. \r\nThank you for taking the time to read and may God bless.',''),(709,1,66,'3','(647) 447-3029',''),(74,1,6,'5','Rupture disk in my lower back.  10 year old injury.  Havent been very active since.',''),(75,1,6,'11','Yes, and I want to avoid it if possible',''),(76,1,6,'13','Referred by my doctor/provider',''),(77,1,6,'4','1pm – 3pm',''),(78,1,7,'6.3','Andy',''),(79,1,7,'2','Andre0299@hotmail.com',''),(80,1,7,'3','(818) 288-4469',''),(708,1,66,'2','Ravshaan29@gmail.com',''),(707,1,66,'6.3','Ravshaan Singh Mangat',''),(706,1,65,'4','Anytime',''),(86,1,7,'5','Knee pain on both. I haveNt done proloTheraphy in over 5 years it’s time to go back. I’m feeling pain on both knees and it enticing me trouble at work and doing sports again.',''),(87,1,7,'11','Not yet, and I want to avoid the need for one in the future',''),(88,1,7,'13','Google/Internet',''),(89,1,7,'4','11am – 1pm',''),(90,1,8,'6.3','pan hu',''),(91,1,8,'2','dixingtech@gmail.com',''),(92,1,8,'3','(217) 418-6754',''),(705,1,65,'13','Google/Internet',''),(704,1,65,'11','Not yet, and I want to avoid the need for one in the future',''),(98,1,8,'5','Greetings!\r\nHello, hope you and your business are doing well during this pandemic. \r\nMy name is Pan Hu, my company is a Medical PPE wholesaler in Los Angeles. We have millions of inventories in stock, mainly KN95. It\'s 5 layered, FDA & CE certified, 50 pieces per box, and all perfectly individually wrapped per piece. I\'ll attach some photos and certificates under this email.\r\nAlso, we have disposable 3 ply masks, N95, gloves (vinyl or nitrile), hand sanitizer, thermometer, protection clothes, etc, available. All great quality at a low price!KN95 is around $2.5 per piece right now, always negotiable with bigger quantities! You can pick up at our La Verne warehouse, or get delivered to your location if you\'re around the LA area. Also available for shipping with your own cost.\r\nIf you\'re interested in more information, please contact me at 217-418-6754 or dixingtech@gmail.com. Products are selling out fast, please reply asap.\r\nThank you, stay healthy and safe!\r\nYours,Pan',''),(99,1,8,'11','Not yet, and I want to avoid the need for one in the future',''),(100,1,8,'13','Google/Internet',''),(101,1,8,'4','11am – 1pm',''),(102,1,9,'6.3','Andrew Chan',''),(103,1,9,'2','acklprop@gmail.com',''),(104,1,9,'3','(626) 705-5277',''),(703,1,65,'5','In pain. On both my knees. More on my left side.wantnto avoid surgery...',''),(702,1,65,'3','(424) 406-7488',''),(701,1,65,'2','johnny06241965@gmail.com',''),(111,1,9,'5','Partially torn rotator cuff and labrum tear. An MRI was done in the past week with my current orthopaedic.',''),(112,1,9,'11','Yes, and I want to avoid it if possible',''),(113,1,9,'13','Friend/family who was/is a patient',''),(114,1,9,'4','Anytime',''),(115,1,10,'6.3','Mac Schlicher',''),(116,1,10,'2','mcschlic7@gmail.com',''),(117,1,10,'3','(310) 740-2486',''),(700,1,65,'6.3','John perez',''),(699,1,64,'4','Anytime',''),(698,1,64,'13','Another healthcare website',''),(697,1,64,'11','Yes, and I want to avoid it if possible',''),(124,1,10,'5','Greetings!\r\n\r\nI have 2 issues\r\n - 0.5cm osteochondral defect in left knee causing discomfort\r\n - SLAP tear in left shoulder\r\n\r\nThe surgeries have been requested but also denied and I\'m looking into alternatives.\r\n\r\nThanks!\r\nMac',''),(125,1,10,'11','Yes, and I want to avoid it if possible',''),(126,1,10,'13','Google/Internet',''),(127,1,10,'4','Anytime',''),(128,1,11,'6.3','Dayna E Wade',''),(129,1,11,'2','daynawade23@gmail.com',''),(130,1,11,'3','(202) 341-2491',''),(137,1,11,'5','Patella issues (ongoing)',''),(138,1,11,'11','Not yet, and I want to avoid the need for one in the future',''),(139,1,11,'13','Google/Internet',''),(140,1,11,'4','Anytime',''),(141,1,12,'6.3','Laura Hummelle',''),(142,1,12,'2','laurah1010@gmail.com',''),(143,1,12,'3','(204) 218-4181',''),(696,1,64,'5','Having back pain worse now then before I had surgery my left side has trouble moving I cant bend to use the bathroom I cant sleep cause the pain and now I cant stand more the 10 mins with out looking to set down it\'s worse now',''),(695,1,64,'3','(424) 335-1236',''),(148,1,12,'5','I\'m looking for someone that can treat cervical instability at C1, C2 using Prolotherapy and PRP. I\'m specifically looking for someone who does this in Canada.',''),(149,1,12,'11','Not yet, and I want to avoid the need for one in the future',''),(150,1,12,'13','Google/Internet',''),(151,1,12,'4','Anytime',''),(152,1,13,'6.3','Kerri',''),(153,1,13,'2','Wright6554@gmail.com',''),(154,1,13,'3','(603) 647-4300',''),(694,1,64,'2','Lisamunoz6@aol.com',''),(693,1,64,'6.3','Lisa Hernandez',''),(692,1,63,'4','9am – 11am',''),(691,1,63,'13','I am a current patient/was a patient previously',''),(161,1,13,'5','It looks like this link is broken on your site: http://www.drfields.com/contact-us\r\n\r\nI thought you would like to know :).  Silly mistakes can ruin your site\'s credibility.  I\'ve used a tool called linkSniff.com in the past to keep mistakes off of my website.\r\n\r\n-Kerri',''),(162,1,13,'11','Yes, and I want to avoid it if possible',''),(163,1,13,'13','Another healthcare website',''),(164,1,13,'4','3pm – 5pm',''),(165,1,14,'6.3','faith goldman',''),(166,1,14,'2','faithnamdlog@aol.com',''),(167,1,14,'3','(310) 316-5290',''),(690,1,63,'11','Not yet, and I want to avoid the need for one in the future',''),(173,1,14,'5','Dear Dr. Fields, I am a friend of Bonnie from Senior Moments and she forwarded your story about your Dad. In the story I don\'t believe you said his first name. My late husband Robert Goldman was born and raised in Shanghai 1940-1958. Long story. I would like to know where in Shanghai your Dad lived. I have a nickname in the Shanghai world SHANGHAILANDER BY OSMOSIS. I have done 20 years of research, interviews, presentations, and publications. Would like to know more about your Dad.',''),(174,1,14,'11','Not yet, and I want to avoid the need for one in the future',''),(175,1,14,'13','Another healthcare website',''),(176,1,14,'4','Anytime',''),(177,1,15,'6.3','Margaret Kenedy',''),(178,1,15,'2','maggie.kenedy@gmail.com',''),(179,1,15,'3','(310) 428-6001',''),(689,1,63,'5','Always attacked by people even though i show no bias toward them, and only have love and compassion for others.',''),(688,1,63,'3','(530) 526-4154',''),(687,1,63,'2','angelsfinge@yahoo.com',''),(185,1,15,'5','Osteoarthritis in my neck. I have been in pain since I got rear ended on June 29, 2019. I have had chiropractic treatment, physical therapy, joined a gym and had a trainer giving me exercises to strengthen muscles. My chiropractor Alan Nunez referred me to Dr. Fields.',''),(186,1,15,'11','Not yet, and I want to avoid the need for one in the future',''),(187,1,15,'13','Referred by my doctor/provider',''),(188,1,15,'4','11am – 1pm',''),(189,1,16,'6.3','Judy Baker',''),(190,1,16,'2','judith@seniorcaregiveralliance.org',''),(191,1,16,'3','(310) 879-5985',''),(686,1,63,'6.3','God',''),(193,1,16,'5','Hi there,\r\n\r\nMy name is Judy from SeniorCareGiverAlliance.  I write a lot about issues affecting older adults.  Due to the current crisis, I’ve been particularly focused on health and finances.  Older adults are and will continue to face increased hardships during the Coronavirus pandemic.  But there are things they can do.  I’ve found your page http://www.drfields.com/recommended-sites  helpful so I thought I’d share some additional resources for you.\r\n\r\nHome Improvement Assistance for Seniors\r\nhttps://eldercare.acl.gov/Public/Resources/Factsheets/Home_Modifications.aspx\r\n\r\nCoronavirus Resources for Older Adults and Caregivers\r\nhttps://www.johnahartford.org/dissemination-center/view/coronavirus-disease-covid-19-resources-for-older-adults-family-caregivers-and-health-care-providers\r\n\r\nHandling Debt for Older Adults\r\nhttps://www.annuityfreedom.net/financial-literacy/seniors-debt/\r\n\r\nThank you,\r\n\r\nJudy Baker',''),(194,1,16,'11','Not yet, and I want to avoid the need for one in the future',''),(195,1,16,'13','Google/Internet',''),(196,1,16,'4','Anytime',''),(197,1,17,'6.3','Eric Jones',''),(198,1,17,'2','eric@talkwithwebvisitor.com',''),(199,1,17,'3','(416) 385-3200',''),(685,1,62,'4','9am – 11am',''),(684,1,62,'13','I am a current patient/was a patient previously',''),(206,1,17,'5','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found drfields.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://www.talkwithwebvisitor.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitor.com/unsubscribe.aspx?d=drfields.com',''),(207,1,17,'11','Yes, and I want to avoid it if possible',''),(208,1,17,'13','Another healthcare website',''),(209,1,17,'4','3pm – 5pm',''),(210,1,18,'6.3','MARILYN D WILLIS',''),(211,1,18,'2','TRIMBLEMARILYN@YAHOO.COM',''),(212,1,18,'3','(909) 279-4676',''),(683,1,62,'11','Not yet, and I want to avoid the need for one in the future',''),(682,1,62,'5','Constantly being attacked by people i show no bias toward, and show compassion for people.',''),(218,1,18,'5','Can someone send me some information concerning the\r\n\r\nDangers of Anti-Inflammatory Medicines by Peter A. Fields MD',''),(219,1,18,'11','Not yet, and I want to avoid the need for one in the future',''),(220,1,18,'13','Google/Internet',''),(221,1,18,'4','Anytime',''),(222,1,19,'6.3','Aimee Elam',''),(223,1,19,'2','Massagemom217@gmail.com',''),(224,1,19,'3','(408) 722-6509',''),(681,1,62,'3','(530) 526-4154',''),(680,1,62,'2','angelsfinge@yahoo.com',''),(679,1,62,'6.3','God',''),(678,1,61,'4','Anytime',''),(230,1,19,'5','My 15 yeas old son has a back problem. The MRI showed that he has bone Marrow adema in the lower lumbar. L5. Can PRP help with this?',''),(231,1,19,'11','Not yet, and I want to avoid the need for one in the future',''),(232,1,19,'13','Referred by my doctor/provider',''),(233,1,19,'4','Anytime',''),(234,1,20,'6.3','Aimee Elam',''),(235,1,20,'2','Massagemom217@gmail.com',''),(236,1,20,'3','(408) 722-6509',''),(677,1,61,'13','Google/Internet',''),(676,1,61,'11','Yes, and I want to avoid it if possible',''),(242,1,20,'5','My 15 yeas old son has a back problem. The MRI showed that he has bone Marrow adema in the lower lumbar. L5. Can PRP help with this?',''),(243,1,20,'11','Not yet, and I want to avoid the need for one in the future',''),(244,1,20,'13','Referred by my doctor/provider',''),(245,1,20,'4','Anytime',''),(246,1,21,'6.3','Charlene Migliorini',''),(247,1,21,'2','charbabe311@gmail.com',''),(248,1,21,'3','(310) 938-9958',''),(675,1,61,'5','I\'m waiting for back surgery appointment with my doctor. I\'ve had many procedure done already. It\'s very painful to live this way.',''),(674,1,61,'3','(916) 856-2884',''),(254,1,21,'5','I had an MRI and have a confirmed tear in my right rotator cuff... I would like to avoid surgery.',''),(255,1,21,'11','Yes, and I want to avoid it if possible',''),(256,1,21,'13','Friend/family who was/is a patient',''),(257,1,21,'4','Anytime',''),(258,1,22,'6.3','Rana Parker',''),(259,1,22,'2','ranamparker@yahoo.com',''),(260,1,22,'3','(310) 721-6899',''),(673,1,61,'2','cgino10@gmail.com',''),(262,1,22,'5','Partial tear shoulder infraspinatus. It’s been one year and it’s seems to be worse, not better.',''),(263,1,22,'11','Not yet, and I want to avoid the need for one in the future',''),(264,1,22,'13','Friend/family who was/is a patient',''),(265,1,22,'4','Anytime',''),(266,1,23,'6.3','Rana Parker',''),(267,1,23,'2','ranamparker@yahoo.com',''),(268,1,23,'3','(310) 721-6899',''),(270,1,23,'5','Partial tear shoulder infraspinatus. It’s been one year and it’s seems to be worse, not better.',''),(271,1,23,'11','Not yet, and I want to avoid the need for one in the future',''),(272,1,23,'13','Friend/family who was/is a patient',''),(273,1,23,'4','Anytime',''),(274,1,24,'6.3','Joshuamen',''),(275,1,24,'2','no-replyIcosecoerics@gmail.com',''),(276,1,24,'3','(807) 543-4611',''),(672,1,61,'6.3','Eugene Caruso',''),(671,1,60,'4','Anytime',''),(670,1,60,'13','Another healthcare website',''),(283,1,24,'5','Hi!  drfields.com \r\n \r\nDid yоu knоw thаt it is pоssiblе tо sеnd rеquеst fully lеgit? \r\nWе mаkе аvаilаblе а nеw lеgаl mеthоd оf sеnding businеss оffеr thrоugh соntасt fоrms. Suсh fоrms аrе lосаtеd оn mаny sitеs. \r\nWhеn suсh lеttеrs аrе sеnt, nо pеrsоnаl dаtа is usеd, аnd mеssаgеs аrе sеnt tо fоrms spесifiсаlly dеsignеd tо rесеivе mеssаgеs аnd аppеаls. \r\nаlsо, mеssаgеs sеnt thrоugh соntасt Fоrms dо nоt gеt intо spаm bесаusе suсh mеssаgеs аrе соnsidеrеd impоrtаnt. \r\nWе оffеr yоu tо tеst оur sеrviсе fоr frее. Wе will sеnd up tо 50,000 mеssаgеs fоr yоu. \r\nThе соst оf sеnding оnе milliоn mеssаgеs is 49 USD. \r\n \r\nThis lеttеr is сrеаtеd аutоmаtiсаlly. Plеаsе usе thе соntасt dеtаils bеlоw tо соntасt us. \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nWhatsApp - +375259112693',''),(284,1,24,'11','Not yet, and I want to avoid the need for one in the future',''),(285,1,24,'13','I am a current patient/was a patient previously',''),(286,1,24,'4','Anytime',''),(287,1,25,'6.3','Kevin Reeves',''),(288,1,25,'2','reeveskeviny@gmail.com',''),(289,1,25,'3','(801) 696-2134',''),(669,1,60,'11','Not yet, and I want to avoid the need for one in the future',''),(296,1,25,'5','Hello,\r\n \r\nHow are you? Hope you are fine.\r\n \r\nI have been checking your website quite often. It has seen that the main keywords are still not in top 10 rank. You know things of working; I mean the procedure of working has changed a lot.\r\n \r\nSo I would like to have opportunity to work for you and this time we will bring the keywords to the top 10 spot with guaranteed period.\r\n \r\nThere is no wondering that it is possible now cause, I have found out that there are few things need to be done for better performances (Some we Discuss, in this email). Let me tell you some of them -\r\n \r\n1. Title Tag Optimization\r\n2. Meta Tag Optimization (Description, keyword and etc)\r\n3. Heading Tags Optimization\r\n4. Targeted keywords are not placed into tags\r\n5. Alt / Image tags Optimization\r\n6. Google Publisher is missing\r\n7. Custom 404 Page is missing\r\n8. The Products are not following structured markup data\r\n9. Website Speed Development (Both Mobile and Desktop)\r\n10.Off –Page SEO work\r\n\r\nWe will also work on those area ..\r\n\r\n1. 5XX status code Check\r\n2. 4XX status code check\r\n3. Title Tags\r\n \r\nTitle Tags Optimization,\r\nTitle Tags Length\r\nKeyword Optimization\r\n\r\n4. duplicate title tags\r\n5. duplicate content issues\r\n6. Internal broken links\r\n7. Crawl Errors (Webmaster Tool)\r\n8. DNS resolution issues (Hosting)\r\n9. incorrect URL formats\r\n10. Internal broken images\r\n11. duplicate meta descriptions\r\n12. Robots\r\n13. XML Sitemap Format Error\r\n14. XML Sitemap Optimization (incorrect pages - Redirection)\r\n15. WWW resolve issue\r\n16. viewport tag (Responsive)\r\n17.  HTML size optimization\r\n18. Cannonical Tags\r\n19. Https Redirection  for all pages\r\n20. broken canonical link\r\n21. multiple canonical URLs\r\n22. broken internal JavaScript and CSS files\r\n23. External Broken Links\r\n24. External Broken Images\r\n25. H Tag Optimization\r\n26. duplicate H1 and title tags\r\n27. too many on-page links\r\n28. don\'t have alt attributes\r\n29. low word count\r\n30. Nofollow Internal  Links\r\n31. Sitemap.xml not indicated in robots.txt\r\n32. Images are formatted as page link\r\n33. Pages should have more than 1 internal links\r\n34. orphaned pages\r\n35. Schema Mark up\r\n \r\nLots are pending……………..\r\n\r\n\r\nYou can see these are the things that need to be done properly to make the keywords others to get into the top 10 spot in Google Search & your sales Increase.\r\n\r\nPlease give us a chance to fix these errors and we will give you rank on these keywords.\r\n \r\nPlease let me know if you encounter any problems or if there is anything you need. If this email has reached you by mistake or if you do not wish to take advantage of this advertising opportunity, please accept my apology for any inconvenience caused and rest assured that you will not be contacted again.\r\n \r\nMany thanks for your time and consideration,\r\n \r\nLooking forward\r\n \r\nRegards\r\nKevin Reeves\r\n\r\nIf you did not wish to receive this, please reply with \"unsubscribe\" in the subject line.\r\n \r\nDisclaimer: This is an advertisement and a promotional mail strictly on the guidelines of CAN-SPAM Act of 2003. We have clearly mentioned the source mail-id of this mail and the subject lines and they are in no way misleading in any form. We have found your mail address through our own efforts on the web search and not through any illegal way. If you find this mail unsolicited, please reply with \"unsubscribe\" in the subject line and we will take care that you do not receive any further promotional mail.',''),(297,1,25,'11','Not yet, and I want to avoid the need for one in the future',''),(298,1,25,'13','Google/Internet',''),(299,1,25,'4','9am – 11am',''),(300,1,26,'6.3','Marie',''),(301,1,26,'2','rxr2090@gmail.com',''),(302,1,26,'3','(562) 841-3656',''),(304,1,26,'5','Prolotherapy for my knees. \r\nCost \r\nAvailability',''),(305,1,26,'11','Not yet, and I want to avoid the need for one in the future',''),(306,1,26,'4','Anytime',''),(307,1,27,'6.3','Marie',''),(308,1,27,'2','rxr2090@gmail.com',''),(309,1,27,'3','(562) 841-3656',''),(311,1,27,'5','Prolotherapy for my knees. \r\nCost \r\nAvailability',''),(312,1,27,'11','Not yet, and I want to avoid the need for one in the future',''),(313,1,27,'4','Anytime',''),(314,1,28,'6.3','Писменно сообщаем Вам об одобрении выдать Вам некую сумму. Рекомендуется сейчас же пройти шаги зайдя на основную страницу сервиса в течение 5 часов.Не упустите момент . В случае просрочки Ваш доступ в систему будет заблокирован!Переход на страницу: https://tinyurl.com/Nivanack NMVVdrfields.comRKKF',''),(315,1,28,'2','yevdokiya.pchelovodova@mail.ru',''),(316,1,28,'3','(853) 665-6151',''),(323,1,28,'5','Сообщаем Вам об одобрении выдать Вам некую сумму. Рекомендуем Обязательно оформить детали перейдя на главную страницу платежного сервиса в течение 30 минут.Не пропустите момент! . В случае просрочки Ваш доступ в систему будет заблокирован!Зайти в систему: https://tinyurl.com/Nivanack NMVVdrfields.comRKKF',''),(324,1,28,'11','Not yet, and I want to avoid the need for one in the future',''),(325,1,28,'13','Friend/family who was/is a patient',''),(326,1,28,'4','Anytime',''),(327,1,29,'6.3','Pedro Uranga',''),(328,1,29,'2','pcuranga@gmail.com',''),(329,1,29,'3','(310) 729-5884',''),(668,1,60,'5','Dear \r\n \r\nMy name is Dalibor Harald, Thank you for your time, my company offers project financing/Joint Ventures Partnership and lending services, do you have any projects that require funding/ Joint Ventures Partnership at the moment? We are ready to work with you on a more transparent approach. \r\n \r\nBest regards, \r\n \r\nDalibor Harald \r\nPrincipal Partner \r\nE-mail: daliborharald01@gmail.com',''),(667,1,60,'3','(781) 723-4734',''),(666,1,60,'2','daliborharald02@gmail.com',''),(335,1,29,'5','I received prolo from dr Field about a decade ago for lower back pain I have been expediting recurring episodes in the last couple of years and I want to see if I should get get treated again.',''),(336,1,29,'11','Not yet, and I want to avoid the need for one in the future',''),(337,1,29,'13','I am a current patient/was a patient previously',''),(338,1,29,'4','Anytime',''),(339,1,30,'6.3','Eric Jones',''),(340,1,30,'2','eric@talkwithwebvisitor.com',''),(341,1,30,'3','(416) 385-3200',''),(665,1,60,'6.3','Dalibor Harald',''),(664,1,59,'4','Anytime',''),(663,1,59,'13','Friend/family who was/is a patient',''),(662,1,59,'11','Yes, and I want to avoid it if possible',''),(348,1,30,'5','Cool website!\r\n\r\nMy name’s Eric, and I just found your site - drfields.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across drfields.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n  \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitor.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitor.com/unsubscribe.aspx?d=drfields.com',''),(349,1,30,'11','Yes, and I want to avoid it if possible',''),(350,1,30,'13','Friend/family who was/is a patient',''),(351,1,30,'4','1pm – 3pm',''),(352,1,31,'6.3','Dolores Reimer',''),(353,1,31,'2','roloreimer@californiadesigns.net',''),(354,1,31,'3','(909) 224-8898',''),(360,1,31,'5','I have a permanent pain in my left knee and below',''),(361,1,31,'11','Not yet, and I want to avoid the need for one in the future',''),(362,1,31,'13','Google/Internet',''),(363,1,31,'4','Anytime',''),(364,1,32,'6.3','Eric Jones',''),(365,1,32,'2','eric@talkwithwebvisitor.com',''),(366,1,32,'3','(416) 385-3200',''),(373,1,32,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you’ve done with drfields.com definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number.  It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out drfields.com.\r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://www.talkwithwebvisitor.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitor.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitor.com/unsubscribe.aspx?d=drfields.com',''),(374,1,32,'11','Yes, and I want to avoid it if possible',''),(375,1,32,'13','Friend/family who was/is a patient',''),(376,1,32,'4','11am – 1pm',''),(377,1,33,'6.3','Mike',''),(378,1,33,'2','ablemanmike26@gmail.com',''),(379,1,33,'3','(562) 313-7318',''),(381,1,33,'11','Not yet, and I want to avoid the need for one in the future',''),(382,1,33,'4','Anytime',''),(383,1,34,'6.3','Merissa Thomas',''),(384,1,34,'2','merissa.thomas@bestkeywordtraffic.top',''),(385,1,34,'3','(213) 558-4100',''),(661,1,59,'5','3 1/2 years ago i slipped 2 discs. I’ve done physical therapy, acupuncture, massage therapy, chiropractor, neurosoma therapy and injections nothing has helped. I’ve seen a back surgeon but wanted a second opinion but my general doctor up and left to another state so couldn’t get another referral till i found a new DR. \r\nA friend of my mom recommended you i do not know if you do sciatica or back issues but I’m more then willing to try anything at the moment to get rid of the pain I’ve had every day for the past 3 1/2 years.',''),(660,1,59,'3','(559) 393-6997',''),(392,1,34,'5','Hi - Just making sure you saw my email.\r\n\r\nDue to COVID-19, many businesses are now relying on us to increase their website traffic during these uncertain times. \r\n\r\nCould this help your business too? \r\nhttps:/bestkeywordtraffic.top/up?=drfields.com\r\n\r\nTap the link to see how we can help.\r\n\r\nBe well!\r\nMerissa\r\nTargeted Visitor Specialist\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n30025 Alicia Pkwy FL#20-91, Laguna Niguel, CA 92677\r\n\r\nIf you want to stop these non transactional messages you can do so here:  https://bestkeywordtraffic.top/unsubscribe.php?site=drfields.com',''),(393,1,34,'11','Yes, and I want to avoid it if possible',''),(394,1,34,'13','Another healthcare website',''),(395,1,34,'4','3pm – 5pm',''),(396,1,35,'6.3','Timothy Miller',''),(397,1,35,'2','Tjsmiller17@gmail.com',''),(398,1,35,'3','(818) 614-4978',''),(659,1,59,'2','Davidnicholas6@icloud.com',''),(658,1,59,'6.3','David nicholas',''),(657,1,58,'4','9am – 11am',''),(403,1,35,'5','Shoulder issues',''),(404,1,35,'11','Not yet, and I want to avoid the need for one in the future',''),(405,1,35,'13','Referred by my doctor/provider',''),(406,1,35,'4','Anytime',''),(407,1,36,'6.3','Michael DeMayi',''),(408,1,36,'2','mjdemayo@hotmail.com',''),(409,1,36,'3','(818) 224-9960',''),(656,1,58,'13','Google/Internet',''),(655,1,58,'11','Not yet, and I want to avoid the need for one in the future',''),(416,1,36,'5','Severe inflamation elbow lasting 2 years.  I was refered to you by Ira Scheinder. I have MRI to show you would like promo therapy.',''),(417,1,36,'11','Not yet, and I want to avoid the need for one in the future',''),(418,1,36,'13','Referred by my doctor/provider',''),(419,1,36,'4','Anytime',''),(420,1,37,'6.3','Mike Miln',''),(421,1,37,'2','no-reply@hilkom-digital.de',''),(422,1,37,'3','(706) 328-4533',''),(654,1,58,'5','left shoulder pain, not healing',''),(653,1,58,'3','(858) 485-8535',''),(652,1,58,'2','ranchobernardopools@yahoo.com',''),(651,1,58,'6.3','Tom Kokjohn',''),(429,1,37,'5','Good day! \r\n \r\nI have just checked drfields.com for the ranking keywords and seen that your SEO metrics could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\nregards \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de',''),(430,1,37,'11','Not yet, and I want to avoid the need for one in the future',''),(431,1,37,'13','I am a current patient/was a patient previously',''),(432,1,37,'4','Anytime',''),(433,1,38,'6.3','Philip C Brown',''),(434,1,38,'2','philipc4u59@yahoo.com',''),(435,1,38,'3','(717) 889-9861',''),(650,1,57,'4','9am – 11am',''),(649,1,57,'13','Google/Internet',''),(648,1,57,'11','Not yet, and I want to avoid the need for one in the future',''),(442,1,38,'5','I injured both my shoulders digging a patio some 2 years go.  Since then I have had paid & nothing (morphine patches, etc.) have helped; I am 70.  Do you have any associates closer to PA?  Thanks.',''),(443,1,38,'11','Not yet, and I want to avoid the need for one in the future',''),(444,1,38,'13','Google/Internet',''),(445,1,38,'4','9am – 11am',''),(446,1,39,'6.3','gary bernstein',''),(447,1,39,'2','gbernstein@patagoniafoods.com',''),(448,1,39,'3','(805) 704-5904',''),(647,1,57,'5','Pain in both hip severe pain after waking from nights sleep ! Sitting for periods of time and driving  !',''),(646,1,57,'3','(530) 552-7470',''),(454,1,39,'5','2 meniscus knee surgeries on the right knee. Main problem is the interior side of the knee.',''),(455,1,39,'11','Yes, and I want to avoid it if possible',''),(456,1,39,'13','Google/Internet',''),(457,1,39,'4','1pm – 3pm',''),(458,1,40,'6.3','Jo',''),(459,1,40,'2','Joanne.soson.camanag@gmail.com',''),(460,1,40,'3','(562) 253-8912',''),(645,1,57,'2','rfranco6468@gmail.com',''),(644,1,57,'6.3','Randy  Franco',''),(643,1,56,'4','9am – 11am',''),(466,1,40,'11','Not yet, and I want to avoid the need for one in the future',''),(467,1,40,'13','Google/Internet',''),(468,1,40,'4','Anytime',''),(469,1,41,'6.3','Bryan Butler',''),(470,1,41,'2','bbutler707@gmail.com',''),(471,1,41,'3','(707) 695-6042',''),(642,1,56,'13','Friend/family who was/is a patient',''),(641,1,56,'11','Yes, and I want to avoid it if possible',''),(477,1,41,'5','Herniated disc in the L4/L5 pushing onto my sciatica which  causes numbness down my left leg.',''),(478,1,41,'11','Yes, and I want to avoid it if possible',''),(479,1,41,'13','Friend/family who was/is a patient',''),(480,1,41,'4','Anytime',''),(481,1,42,'6.3','Amanda',''),(482,1,42,'2','amanda.mulroy@onlinechatservices.com',''),(483,1,42,'3','(864) 493-3106',''),(490,1,42,'5','Hi there,\r\n\r\nI hope you\'re doing well and staying safe. We realize the current environment has made it difficult to make ends meet, and we are seeing companies rapidly move online to better service their customers. As experts in the customer service space, we work with businesses to help install Live Chat software and offer it completely free for six months.\r\n\r\nYou will be able to live chat with your customers on drfields.com, display important messages via various popups, and send automated emails for an improved customer experience.\r\n\r\nWould you be interested in learning more? I\'d be happy to answer any questions you have. My name is Amanda, and I look forward to connecting with you!\r\n\r\nAmanda Mulroy\r\nOnline Chat Services, Tyipe LLC (pronounced \"type\")\r\n500 Westover Dr #15391 Sanford, NC 27330\r\n\r\nClick here if you\'d like to opt out your website http://eroutemgr.com/remove?q=drfields.com&i=13',''),(491,1,42,'11','Yes, and I want to avoid it if possible',''),(492,1,42,'13','Google/Internet',''),(493,1,42,'4','Anytime',''),(494,1,43,'6.3','john ivory',''),(495,1,43,'2','ivorycoast77@gmail.com',''),(496,1,43,'3','(213) 258-5218',''),(502,1,43,'5','severe hip pain!!',''),(503,1,43,'11','Yes, and I want to avoid it if possible',''),(504,1,43,'13','YouTube',''),(505,1,43,'4','Anytime',''),(506,1,44,'6.3','María D Chavez',''),(507,1,44,'2','maridchavez@hotmail.com',''),(508,1,44,'3','(951) 229-2257',''),(640,1,56,'5','Dislocated my shoulder over 20 years ago, set it back in without going to see a Doctor.  Over the years my entire shoulder cartilage has been grinding down to the bone.  While in Arizona last year had Xrays done and Doctor told me my should was beyond stem cell therapy and to consider invasive surgery.  To date, been living with the pain which has affected my ability for night time sleep, as I am always sleeping on my good side.',''),(639,1,56,'3','(818) 516-3270',''),(638,1,56,'2','paul.koros@corenxos.com',''),(637,1,56,'6.3','paul koros',''),(514,1,44,'5','For 1 year i feel a disconfort on my left hip but I feel it more when I lift something heavy. It feels loke my hip is gioing to break and startes to feel the same thing on my right hip.',''),(515,1,44,'11','Not yet, and I want to avoid the need for one in the future',''),(516,1,44,'13','Google/Internet',''),(517,1,44,'4','3pm – 5pm',''),(518,1,45,'6.3','Eric Smart',''),(519,1,45,'2','Esmart@hotmail.com',''),(520,1,45,'3','(916) 380-4512',''),(636,1,55,'4','Anytime',''),(635,1,55,'13','Facebook',''),(634,1,55,'11','Not yet, and I want to avoid the need for one in the future',''),(526,1,45,'5','Shoulder pain',''),(527,1,45,'11','Yes, and I want to avoid it if possible',''),(528,1,45,'13','Friend/family who was/is a patient',''),(529,1,45,'4','Anytime',''),(530,1,46,'6.3','Lauren Gale',''),(531,1,46,'2','lauren@quickfundingnow.xyz',''),(532,1,46,'3','(545) 236-1566',''),(633,1,55,'5','Arthritis in my right knee! No I haven\'t been recommended for surgery',''),(632,1,55,'3','(618) 267-3145',''),(631,1,55,'2','croucht05@gmail.com',''),(630,1,55,'6.3','Tracy Crouch',''),(539,1,46,'5','IMPORTANT UPDATE\r\n\r\nMany Americans now qualify for emergency loans up to $5,000.\r\n\r\nTo find out if you qualify, visit: \r\nhttps://quickfundingnow.xyz/r1/?=drfields.com\r\n\r\nThese loans are unrelated to any stimulus or unemployment compensation you may already be receiving from the government.\r\n\r\nDue to the COVID-19 outbreak, lenders are expecting a surge in applications. We recommend submitting your loan request as promptly as possible.\r\n\r\nRegards,\r\nLauren Gale\r\nNational Loan Advisor\r\nQuick Funding Now\r\n\r\n\r\n\r\n\r\n30025 Alicia Parkway Unit#20-93	\r\nLaguna Niguel, CA 92677\r\n\r\n\r\n\r\n\r\n\r\n \r\nDon’t want Quick Funding Now marketing:\r\nhttps://quickfundingnow.xyz/out.php/?site=drfields.com',''),(540,1,46,'11','Yes, and I want to avoid it if possible',''),(541,1,46,'13','Referred by my doctor/provider',''),(542,1,46,'4','3pm – 5pm',''),(543,1,47,'6.3','Pat Sargent',''),(544,1,47,'2','pmimauihi@aol.com',''),(545,1,47,'3','(949) 443-9305',''),(629,1,54,'4','Anytime',''),(628,1,54,'13','Google/Internet',''),(627,1,54,'11','Not yet, and I want to avoid the need for one in the future',''),(551,1,47,'5','Scoliosis\r\nLumbar radiculopathy',''),(552,1,47,'11','Not yet, and I want to avoid the need for one in the future',''),(553,1,47,'13','Google/Internet',''),(554,1,47,'4','Anytime',''),(555,1,48,'6.3','Melanie Baum',''),(556,1,48,'2','Melaniewadefitness@gmail.com',''),(557,1,48,'3','(408) 300-8330',''),(626,1,54,'5','severe pain in my forearm and elbow - I was working out hard and seemed to have damaged something inside that does not show up on x rays',''),(563,1,48,'5','Hello\r\n\r\nI’m a San Francisco firefighter with a knee injury. Date if injury was June 2018. I’ve had a arthroscopic surgery for my torn meniscus. Unfortunately the tear is still there after. I’m looking for stem cell and alternative methods. Your office was recommended by Chiropractor Marv Anderson from Morgan Hill Ca. Please contact me at (408)300-8330. Thank you \r\n\r\nMelanie',''),(564,1,48,'11','Yes, and I want to avoid it if possible',''),(565,1,48,'13','Referred by my doctor/provider',''),(566,1,48,'4','Anytime',''),(567,1,49,'6.3','Patricia Smith',''),(568,1,49,'2','patriciapdsmith@gmail.com',''),(569,1,49,'3','(801) 686-2141',''),(625,1,54,'3','(323) 246-5855',''),(624,1,54,'2','larocksdesign@gmail.com',''),(623,1,54,'6.3','paul',''),(622,1,53,'4','1pm – 3pm',''),(576,1,49,'5','Hello,\r\n \r\nHow are you? Hope you are fine.\r\n \r\nI have been checking your website quite often. It has seen that the main keywords are still not in top 10 rank. You know things of working;  I mean the procedure of working has changed a lot.\r\n \r\nSo I would like to have opportunity to work for you and this time we will bring the keywords to the top 10 spot with guaranteed period.\r\n \r\nThere is no wondering that it is possible now cause, I have found out that there are few things need to be done for better performances (Some we Discuss, in this email). Let me tell you some of them -\r\n \r\n1. Title Tag Optimization\r\n2. Meta Tag Optimization (Description, keyword and etc)\r\n3. Heading Tags Optimization\r\n4. Targeted keywords are not placed into tags\r\n5. Alt / Image tags Optimization\r\n6. Google Publisher is missing\r\n7. Custom 404 Page is missing\r\n8. The Products are not following Structured markup data\r\n9.  Website Speed Development (Both Mobile and Desktop)\r\n10. Off –Page SEO work\r\n \r\nLots are pending……………..\r\n \r\nYou can see these are the things that need to be done properly to make the keywords others to get into the top 10 spot in Google Search & your sales Increase.\r\n \r\nAlso there is one more thing to mention that you did thousands of links that time for your website, which are considered as spam after Google roll outs several updates of Panda and penguin. We need to remove them too.\r\n \r\nSir/Madam, please give us a chance to fix these errors and we will give you rank on these keywords.\r\n \r\nPlease let me know if you encounter any problems or if there is anything you need. If this email has reached you by mistake or if you do not wish to take advantage of this advertising opportunity, please accept my apology for any inconvenience caused and rest assured that you will not be contacted again.\r\n \r\nMany thanks for your time and consideration,\r\n \r\nLooking forward\r\n             \r\nRegards\r\n \r\nPatricia Smith\r\nIf you did not wish to receive this, please reply with \"unsubscribe\" in the subject line.\r\n \r\nDisclaimer: This is an advertisement and a promotional mail strictly on the guidelines of CAN-SPAM Act of 2003. We have clearly mentioned the source mail-id of this mail and the subject lines and they are in no way misleading in any form. We have found your mail address through our own efforts on the web search and not through any illegal way. If you find this mail unsolicited, please reply with \"unsubscribe\" in the subject line and we will take care that you do not receive any further promotional mail.',''),(577,1,49,'11','Not yet, and I want to avoid the need for one in the future',''),(578,1,49,'13','Google/Internet',''),(579,1,49,'4','Anytime',''),(580,1,50,'6.3','Carolyn Goldman',''),(581,1,50,'2','Heartfeltastro@aol.com',''),(582,1,50,'3','(310) 477-8600',''),(621,1,53,'13','Google/Internet',''),(620,1,53,'11','Not yet, and I want to avoid the need for one in the future',''),(588,1,50,'5','Injured right arm and shoulder falling December 2019 and seemed to be getting better but now extreme pain in right arm and top of right shoulder - can not lift only very small things and live by myself so cannot do a lot -- Would you accept medicare plus supplemental blue shield for an evaluation?  Help!! Otherwise I\'m in good health and eat very healthy, etc.\r\nHave MRI results of right elbow without contrast from January of this year showing mainly sprain of the radial collateral ligament and MRI  of the cervical spine impression shows some degenerative disease of the cervical spine without significant central spinal canal stenosis',''),(589,1,50,'11','Not yet, and I want to avoid the need for one in the future',''),(590,1,50,'4','3pm – 5pm',''),(591,1,51,'6.3','Cliff Housego',''),(592,1,51,'2','CliffHousego@gmail.com',''),(593,1,51,'3','(805) 358-9656',''),(619,1,53,'5','My left knee is pain \r\nND right is lesser  especially when I lay down to bed at night    I walk at about 5blacks to bus station  going to Grocery like',''),(599,1,51,'5','I\'m 72, no physical problems, physically active all my life, Running, Dancing & Surfing.  2 Years ago I join a gym to work on my core since I can\'t run as much as I did when I was younger. I\'ve run 60+ full marathons and All 35 of the LA Marathons and and hundreds  10k’s, 5k’s &  ½ Marathons. I\'d like to continue. Before running LAM #35 I had pain in my right knee. After running the LAM#35 the pain got really  bad I could not walk on my right knee. My right knee swelled, then my leg and then my foot. I was rowing, riding my bike, and running, I quite all for 6 weeks. I kept my leg elevated and iced daily. Swelling went down & pained reduced to the point I could walk down a flight of stairs without holding on to the rail. The pain has reduced by 70%.  I cannot turn or disassociate on my right knee without lots of pain. Lots of popping in the knee, I can\'t negative flex the knee. I have no strength in my knees and squats are very difficult. Good news is  I can walk normally.  Kaiser x-ray results below. Dr.Woodward at Woodland Hills. The pain is a lot worse than the x-ray showed.\r\nI’m considering Stem Cell injections.\r\nWhat is the difference between Stem Cell & PRP?\r\n\r\nSTEOARTHRITIS OF RIGHT KNEE\r\nNote: mild. Patellofemoral pain is dominant. Improving with mobic\r\nContinue mobic\r\nIcing as needed \r\nBrace with activity \r\nGood shoes/no bare feet replace every 400 miles\r\nRecommend core and hip home exercise program \r\nNo distance running until near pain-free and able to do squatting without pain\r\nCan do steroid injection if not responding by 6-8 weeks. \r\nConsider turmeric with black pepper \r\nvoltaren gel twice a day as needed',''),(600,1,51,'11','Not yet, and I want to avoid the need for one in the future',''),(601,1,51,'13','Friend/family who was/is a patient',''),(602,1,51,'4','Anytime',''),(603,1,52,'6.3','Mike Miers',''),(604,1,52,'2','no-replyhem@google.com',''),(605,1,52,'3','(111) 010-1262',''),(618,1,53,'3','(805) 424-7751',''),(617,1,53,'2','Abundofilipinas@gmail.com',''),(616,1,53,'6.3','Filipinas d.Abundo',''),(612,1,52,'5','Hi! \r\nIf you want to get ahead of your competition, have a higher Domain Authority score. Its just simple as that. \r\nWith our service you get Domain Authority above 50 points in just 30 days. \r\n \r\nThis service is guaranteed \r\n \r\nFor more information, check our service here \r\nhttps://www.monkeydigital.co/Get-Guaranteed-Domain-Authority-50/ \r\n \r\nthank you \r\nMike Miers\r\n \r\nMonkey Digital \r\nsupport@monkeydigital.co',''),(613,1,52,'11','Not yet, and I want to avoid the need for one in the future',''),(614,1,52,'13','Another healthcare website',''),(615,1,52,'4','Anytime',''),(711,1,66,'11','Not yet, and I want to avoid the need for one in the future',''),(712,1,66,'13','Google/Internet',''),(713,1,66,'4','Anytime',''),(714,1,68,'6.3','Ravshaan Singh Mangat',''),(715,1,68,'2','Ravshaan29@gmail.com',''),(716,1,68,'3','(647) 447-3029',''),(717,1,68,'5','I am an 18-year-old student from Canada who has been suffering from Post Concussion Syndrome for 7 months and am worried it could hinder me from pursuing my degree in medicine which commences in February 2021. For the first 4 months, I was completely clueless as to what the problem was and was dismissed by many doctors and neurologists who said it was all in my head or I was suffering from anxiety/depression. I was lost until, during my daily research on the internet, I watched Dr. Kevin Pecca’s video, who had suffered from identical symptoms and had found relief in upper cervical chiropractic. I decided to give it a try and felt a drastic improvement, however, when I decided to get back to the gym after 3 months of treatment, quite a few of my symptoms rushed back. I then came across neck instability/ weakness in the ligaments as a potential cause of the misalignments that I had to get treated twice every week and how PRP injections can provide relief from the condition.\r\nI needed some guidance as to what course of action I should take in order to be healthy before the start of medical school. If you could please provide some guidance, I will be indebted to you for the rest of my life. \r\nThank you for taking the time to read and may God bless.',''),(718,1,68,'11','Not yet, and I want to avoid the need for one in the future',''),(719,1,68,'13','Google/Internet',''),(720,1,68,'4','Anytime',''),(721,1,69,'6.3','Jimmy Gorham',''),(722,1,69,'2','jgorham@gmail.com',''),(723,1,69,'3','(310) 663-6670',''),(724,1,69,'5','Shoulder pain caused by years of terrible posture. I\'ve been slowly working on it with calisthenics and other exercises, and it has improved, but there is still pain there. Overall I\'d say it is not severe, but I\'d prefer to have no pain!',''),(725,1,69,'11','Not yet, and I want to avoid the need for one in the future',''),(726,1,69,'13','Friend/family who was/is a patient',''),(727,1,69,'4','Anytime',''),(728,1,70,'6.3','Spencer',''),(729,1,70,'2','Spenceroxi58@icloud.col',''),(730,1,70,'3','(949) 370-2327',''),(731,1,70,'5','I hurrniin high school football. And I also cracked my leg in half and had to have 45 staples close it shut but my back pain from my L3 is the worst I can’t sleep at night because the pain is so bad and I was on Roxy please help me my dr put me on sebutex forthe pain and it makes it worse I also have horrible pan nick attacks so i hyperventilating all the time and throwing up all the time Fromm my panick attacks please let me know what’s todo I have ppo anthem blue cross can I come see I I take kiu',''),(732,1,70,'11','Yes, and I want to avoid it if possible',''),(733,1,70,'13','Another healthcare website',''),(734,1,70,'4','11am – 1pm',''),(735,1,71,'6.3','Spencer',''),(736,1,71,'2','Spenceroxi58@icloud.col',''),(737,1,71,'3','(949) 370-2327',''),(738,1,71,'5','I hurrniin high school football. And I also cracked my leg in half and had to have 45 staples close it shut but my back pain from my L3 is the worst I can’t sleep at night because the pain is so bad and I was on Roxy please help me my dr put me on sebutex forthe pain and it makes it worse I also have horrible pan nick attacks so i hyperventilating all the time and throwing up all the time Fromm my panick attacks please let me know what’s todo I have ppo anthem blue cross can I come see I I take kiu',''),(739,1,71,'11','Yes, and I want to avoid it if possible',''),(740,1,71,'13','Another healthcare website',''),(741,1,71,'4','11am – 1pm',''),(742,1,72,'6.3','Ryan',''),(743,1,72,'2','ryan.hollier@yahoo.com',''),(744,1,72,'3','(562) 556-1313',''),(745,1,72,'5','My dad who is chiropractor said he heard you at a conference and said you possibly could help us.',''),(746,1,72,'11','Not yet, and I want to avoid the need for one in the future',''),(747,1,72,'13','Referred by my doctor/provider',''),(748,1,72,'4','Anytime',''),(749,1,75,'6.3','Joshuamen',''),(750,1,75,'2','no-replyIcosecoerics@gmail.com',''),(751,1,75,'3','(653) 333-0555',''),(752,1,75,'5','Hеllо!  drfields.com \r\n \r\nDid yоu knоw thаt it is pоssiblе tо sеnd аppеаl tоtаlly lеgit? \r\nWе submit а nеw wаy оf sеnding lеttеr thrоugh соntасt fоrms. Suсh fоrms аrе lосаtеd оn mаny sitеs. \r\nWhеn suсh prоpоsаls аrе sеnt, nо pеrsоnаl dаtа is usеd, аnd mеssаgеs аrе sеnt tо fоrms spесifiсаlly dеsignеd tо rесеivе mеssаgеs аnd аppеаls. \r\nаlsо, mеssаgеs sеnt thrоugh соntасt Fоrms dо nоt gеt intо spаm bесаusе suсh mеssаgеs аrе соnsidеrеd impоrtаnt. \r\nWе оffеr yоu tо tеst оur sеrviсе fоr frее. Wе will sеnd up tо 50,000 mеssаgеs fоr yоu. \r\nThе соst оf sеnding оnе milliоn mеssаgеs is 49 USD. \r\n \r\nThis оffеr is сrеаtеd аutоmаtiсаlly. Plеаsе usе thе соntасt dеtаils bеlоw tо соntасt us. \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nWhatsApp - +375259112693',''),(753,1,75,'11','Not yet, and I want to avoid the need for one in the future',''),(754,1,75,'13','Friend/family who was/is a patient',''),(755,1,75,'4','Anytime',''),(756,1,76,'6.3','Ronald P. Hall',''),(757,1,76,'2','ronofmusic@yahoo.com',''),(758,1,76,'3','(323) 439-4643',''),(759,1,76,'5','I have pain in my right hip and left hip knees shins shoulders hands right coller',''),(760,1,76,'11','Not yet, and I want to avoid the need for one in the future',''),(761,1,76,'13','Facebook',''),(762,1,76,'4','Anytime',''),(763,1,77,'6.3','Buck',''),(764,1,77,'2','Smells@gmail.com',''),(765,1,77,'3','(559) 417-0699',''),(766,1,77,'5','Idk but u might know',''),(767,1,77,'11','Not yet, and I want to avoid the need for one in the future',''),(768,1,77,'13','Another healthcare website',''),(769,1,77,'4','11am – 1pm',''),(770,1,78,'6.3','Martina',''),(771,1,78,'2','Martinavergara@live.com',''),(772,1,78,'3','(310) 326-7561',''),(773,1,78,'5','Want to minimize as much possible wrinkles on the face and and chin',''),(774,1,78,'11','Not yet, and I want to avoid the need for one in the future',''),(775,1,78,'13','Google/Internet',''),(776,1,78,'4','Anytime',''),(777,1,79,'6.3','penny L mcConnachie',''),(778,1,79,'2','pennchie@yahoo.com',''),(779,1,79,'3','(310) 514-3383',''),(780,1,79,'5','Bone on bone on my left knee . Hit by a car at 18 years old and had a compound fracture on my right leg required rods/pins in my leg at the time. Over the years put more bearing on my left leg, I am now 55 years old, put on alot of weight and all of this is killing my knees. Have received Cortizone injections into my left knee from Kaiser for years but need something long term.',''),(781,1,79,'11','Yes, and I want to avoid it if possible',''),(782,1,79,'13','Google/Internet',''),(783,1,79,'4','Anytime',''),(784,1,80,'6.3','Yvonne Hartmann',''),(785,1,80,'2','Yhartmann@mac.com',''),(786,1,80,'3','(412) 926-6166',''),(787,1,80,'5','Mri Results show a severe tear in anterior superior labrum and partial thickness tear of posterior labrum of left hip. Chiropractor recommended I speak to doctor about PRP injection if that might help rebuild / relieve',''),(788,1,80,'11','Not yet, and I want to avoid the need for one in the future',''),(789,1,80,'4','Anytime',''),(790,1,81,'6.3','Scott Mauritzen',''),(791,1,81,'2','avalonevents@gmail.com',''),(792,1,81,'3','(323) 252-8980',''),(793,1,81,'5','I have a torn meniscus in my left knee. I have had 2 prp treatments and 1 stem cell & PRP treatment. My knee has gotten better but I still have allot of pain in my knee.\r\n\r\nI want to know if having a Prolotherapy treatments will help with the healing of my knee.',''),(794,1,81,'11','Not yet, and I want to avoid the need for one in the future',''),(795,1,81,'13','Google/Internet',''),(796,1,81,'4','11am – 1pm',''),(797,1,82,'6.3','Scott Mauritzen',''),(798,1,82,'2','avalonevents@gmail.com',''),(799,1,82,'3','(323) 252-8980',''),(800,1,82,'5','I have a torn meniscus in my left knee. I have had 2 prp treatments and 1 stem cell & PRP treatment. My knee has gotten better but I still have allot of pain in my knee.\r\n\r\nI want to know if having a Prolotherapy treatments will help with the healing of my knee.',''),(801,1,82,'11','Not yet, and I want to avoid the need for one in the future',''),(802,1,82,'13','Google/Internet',''),(803,1,82,'4','11am – 1pm',''),(804,1,83,'6.3','Scott Mauritzen',''),(805,1,83,'2','avalonevents@gmail.com',''),(806,1,83,'3','(323) 252-8980',''),(807,1,83,'5','I have a torn meniscus in my left knee. I have had 2 prp treatments and 1 stem cell & PRP treatment. My knee has gotten better but I still have allot of pain in my knee.\r\n\r\nI want to know if having a Prolotherapy treatments will help with the healing of my knee.',''),(808,1,83,'11','Not yet, and I want to avoid the need for one in the future',''),(809,1,83,'13','Google/Internet',''),(810,1,83,'4','11am – 1pm',''),(811,1,84,'6.3','Ralph Clark',''),(812,1,84,'2','ralph@ralphclark.com',''),(813,1,84,'3','(805) 433-2026',''),(814,1,84,'5','doctor Fields,  since last injections (right knee and lower back) my knee seems ok but my back is worse than it was prior to injections.  I have been meticulous (as you may remember my habits) in trying to assist in healing and now am feeling ,,,low back pain similar to I had prior to my first visit.  I was a true believer in the PRP results and am wondering what happened.  Did you miss the mark?  I am back to lower back pain and was actually in less pain prior to my visit.  Whats up?  This is a lot of money for a working man such as myself.  Money back guarantees?  Free redo?  !/2 off?  Help someone who has been so happy with prior results continue with treatment without feling I am throwing good money after bad results.  Off work at 5pm.  Please respond.  Thanks Doctor \r\nFields.',''),(815,1,84,'11','Not yet, and I want to avoid the need for one in the future',''),(816,1,84,'13','I am a current patient/was a patient previously',''),(817,1,84,'4','3pm – 5pm',''),(818,1,85,'6.3','Gardner Tarlow',''),(819,1,85,'2','Gtarlow@pacbell.net',''),(820,1,85,'3','(714) 323-7493',''),(821,1,85,'5','I have a TV eight old compression fracture that results in chronic disease articulation of either Riverhead or vertebral body. I am interested in Prolo therapy to give some stability to the lax ligaments.',''),(822,1,85,'11','Not yet, and I want to avoid the need for one in the future',''),(823,1,85,'13','Referred by my doctor/provider',''),(824,1,85,'4','Anytime',''),(825,1,86,'6.3','Sheila Denise Batchelor',''),(826,1,86,'2','sbatchelor261@gmail.com',''),(827,1,86,'3','(916) 544-7184',''),(828,1,86,'11','Yes, and I want to avoid it if possible',''),(829,1,86,'13','Google/Internet',''),(830,1,86,'4','11am – 1pm',''),(831,1,87,'6.3','Ron Pagal',''),(832,1,87,'2','ronniet73@yahoo.com',''),(833,1,87,'3','(209) 406-3486',''),(834,1,87,'5','I am a competitive POWERLIFTER. I hold WORLD RECORDS in my age and weight group. Seven (7) yrs ago I was experiencing the same pain issues as i do today. An ORTHOPEDIC Dr., recommended surgery to clean up the ARTHRITIS in my right shoulder. Two weeks before that scheduled SURGERY, the pain just WENT AWAY !!!! Now seven years later it has returned. On August 17th, I went to another orthopedic surgeon (the one from 7 yrs ago retired). I got a CORTISONE shot as I have a NATIONAL COMPETITION on August 30th. The shot helped very little. Pain went from 10+ down to 7/8. Im 74 years old and i want to compete at least once when Im 75. Ill stop competing and lifting heavy But I want to continue to train with MIMIMAL pain. I ive in NORTHERN CALIFORNIA. Can you help???',''),(835,1,87,'11','Yes, and I want to avoid it if possible',''),(836,1,87,'13','Google/Internet',''),(837,1,87,'4','Anytime',''),(838,1,88,'6.3','LEONIE HALL',''),(839,1,88,'2','goudesign@aol.com',''),(840,1,88,'3','(562) 413-3924',''),(841,1,88,'5','osteoarthritis in both knees causing limited mobility and pain. i am a 72 year old female.  I am wondering is this procedure is covered by any health insurance company or medicare.',''),(842,1,88,'11','Not yet, and I want to avoid the need for one in the future',''),(843,1,88,'13','Google/Internet',''),(844,1,88,'4','9am – 11am',''),(845,1,89,'6.3','Eric Jones',''),(846,1,89,'2','eric@talkwithwebvisitor.com',''),(847,1,89,'3','(416) 385-3200',''),(848,1,89,'5','Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found drfields.com after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number.  It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n  \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron’s hot!\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=drfields.com',''),(849,1,89,'11','Yes, and I want to avoid it if possible',''),(850,1,89,'13','I am a current patient/was a patient previously',''),(851,1,89,'4','11am – 1pm',''),(852,1,90,'6.3','Gary Davis',''),(853,1,90,'2','dianejdavis@gmail.com',''),(854,1,90,'3','(707) 486-6523',''),(855,1,90,'5','Left you a voice mail but just in case:\r\n\r\nWe just came from the orthopedic surgeons office,  recommended by our Primary Care physician.  Have had the MRI and multiple xrays.  Started out at a chiropractor’s office.   Now this doctor recommends hip replacement surgery, which we do NOT want to do - but Gary’s in a lot of pain.  Also recommends spinal fusion later on (!!!!).   Gary got a cortisone shot today.   I got online looking for alternatives and found your site.   Thank you so much.  Please call me (Diane - wife).  707-486-6523.',''),(856,1,90,'11','Yes, and I want to avoid it if possible',''),(857,1,90,'13','Google/Internet',''),(858,1,90,'4','Anytime',''),(859,1,91,'6.3','ken  anderson',''),(860,1,91,'2','kendawg44444@gmail.com',''),(861,1,91,'3','(916) 271-2217',''),(862,1,91,'5','severer knee pain osteo arthritus',''),(863,1,91,'11','Yes, and I want to avoid it if possible',''),(864,1,91,'13','Google/Internet',''),(865,1,91,'4','Anytime',''),(866,1,92,'6.3','Elva',''),(867,1,92,'2','elvasnin@yahoo.com',''),(868,1,92,'3','(323) 810-1092',''),(869,1,92,'5','I am senior citizen, and have joint pain in both of my knees.  My doctor took X-RAYS and he said I don\'t need surgery, but I still have the pain and have problems walking. The cartilage in my knees is worn out.',''),(870,1,92,'11','Not yet, and I want to avoid the need for one in the future',''),(871,1,92,'13','Google/Internet',''),(872,1,92,'4','9am – 11am',''),(873,1,93,'6.3','Gary Davis',''),(874,1,93,'2','dianejdavis@gmail.com',''),(875,1,93,'3','(707) 486-6523',''),(876,1,93,'5','Left you a voice mail but just in case:\r\n\r\nWe just came from the orthopedic surgeons office,  recommended by our Primary Care physician.  Have had the MRI and multiple xrays.  Started out at a chiropractor’s office.   Now this doctor recommends hip replacement surgery, which we do NOT want to do - but Gary’s in a lot of pain.  Also recommends spinal fusion later on (!!!!).   Gary got a cortisone shot today.   I got online looking for alternatives and found your site.   Thank you so much.  Please call me (Diane - wife).  707-486-6523.',''),(877,1,93,'11','Yes, and I want to avoid it if possible',''),(878,1,93,'13','Google/Internet',''),(879,1,93,'4','Anytime',''),(880,1,94,'6.3','mark c Dragna',''),(881,1,94,'2','dragnam@yahoo.com',''),(882,1,94,'3','(805) 540-0192',''),(883,1,94,'5','I have my own stem cells stored and would like to have them delivered by IV. Do you do this. Mark',''),(884,1,94,'11','Not yet, and I want to avoid the need for one in the future',''),(885,1,94,'13','Google/Internet',''),(886,1,94,'4','Anytime',''),(887,1,95,'6.3','Harry Payne',''),(888,1,95,'2','payneharry53@gmail.com',''),(889,1,95,'3','(619) 772-1001',''),(890,1,95,'11','Not yet, and I want to avoid the need for one in the future',''),(891,1,95,'13','Friend/family who was/is a patient',''),(892,1,95,'4','Anytime',''),(893,1,96,'6.3','Candelaria Maldonado',''),(894,1,96,'2','cinderellam887@gmail.com',''),(895,1,96,'3','(760) 783-9867',''),(896,1,96,'5','My right  knee hurt  and now my whole leg hurt',''),(897,1,96,'11','Not yet, and I want to avoid the need for one in the future',''),(898,1,96,'13','YouTube',''),(899,1,96,'4','3pm – 5pm',''),(900,1,97,'6.3','David Rooney',''),(901,1,97,'2','Dvdrooney@yahoo.com',''),(902,1,97,'3','(415) 816-8350',''),(903,1,97,'5','Can’t raise both arms. Extreme pain more than 3 weeks.',''),(904,1,97,'11','Yes, and I want to avoid it if possible',''),(905,1,97,'13','Another healthcare website',''),(906,1,97,'4','Anytime',''),(907,1,98,'6.3','Gary Davis',''),(908,1,98,'2','dianejdavis@gmail.com',''),(909,1,98,'3','(707) 486-6523',''),(910,1,98,'5','Left you a voice mail but just in case:\r\n\r\nWe just came from the orthopedic surgeons office,  recommended by our Primary Care physician.  Have had the MRI and multiple xrays.  Started out at a chiropractor’s office.   Now this doctor recommends hip replacement surgery, which we do NOT want to do - but Gary’s in a lot of pain.  Also recommends spinal fusion later on (!!!!).   Gary got a cortisone shot today.   I got online looking for alternatives and found your site.   Thank you so much.  Please call me (Diane - wife).  707-486-6523.',''),(911,1,98,'11','Yes, and I want to avoid it if possible',''),(912,1,98,'13','Google/Internet',''),(913,1,98,'4','Anytime',''),(914,1,99,'6.3','Erma Feliz',''),(915,1,99,'2','superior@brainboost.com',''),(916,1,99,'3','(302) 787-1936',''),(917,1,99,'5','From:\r\nHEADLINE NEWS August 2020\r\n\r\nBill Gates: \"Americans Must Use This... I Never Leave Home Without Taking It First\"\r\n\r\nThat\'s Bill Gates talking about this breakthrough treatment for getting his brain back in top shape. He is not happy with where the country is headed and so he has poured money into a treatment that has rescued his mental clarity and it\'s doing the same accross the nation.\r\n\r\nSpeaking on the  TODAY Show last month, Bill Gates, Founder of Microsoft, spoke to the audience... \"America is losing because of our own stupidity\" We have got to change the way things are. You won\'t believe what Mr. Gates said he uses... \"\r\n\r\nFull Story Inside >\r\nhttps://dclks.com/click.cgi?a=662x9a3059&o=72x335249&t=85x34d6a5&sub2=brain\r\n\r\nIf you have a brain you must use this. See what the Sharks say...',''),(918,1,99,'11','Yes, and I want to avoid it if possible',''),(919,1,99,'13','I am a current patient/was a patient previously',''),(920,1,99,'4','1pm – 3pm',''),(921,1,100,'6.3','Jorge',''),(922,1,100,'2','Jorges@yahoo.com',''),(923,1,100,'3','(404) 771-2425',''),(924,1,100,'11','Not yet, and I want to avoid the need for one in the future',''),(925,1,100,'13','Another healthcare website',''),(926,1,100,'4','Anytime',''),(927,1,101,'6.3','Elizabeth Shatner',''),(928,1,101,'2','elizshatner@gmail.com',''),(929,1,101,'3','(805) 455-1803',''),(930,1,101,'5','Ry Knee pain and stiffness \r\nArthritis Stiffness in hands \r\nX pro horsewoman\r\n61 year old woman ,rides competitively ,\r\nArthritis pain and stiffness affecting life and fatigue .\r\nHave had trigger thumb and \r\nHave numbness in hands possibly Carpel tunnel \r\nFamily history of arthritis . Mother , grandmother, aunt, brothers.',''),(931,1,101,'11','Not yet, and I want to avoid the need for one in the future',''),(932,1,101,'13','Google/Internet',''),(933,1,101,'4','1pm – 3pm',''),(934,1,102,'6.3','Gary Davis',''),(935,1,102,'2','dianejdavis@gmail.com',''),(936,1,102,'3','(707) 486-6523',''),(937,1,102,'5','Left you a voice mail but just in case:\r\n\r\nWe just came from the orthopedic surgeons office,  recommended by our Primary Care physician.  Have had the MRI and multiple xrays.  Started out at a chiropractor’s office.   Now this doctor recommends hip replacement surgery, which we do NOT want to do - but Gary’s in a lot of pain.  Also recommends spinal fusion later on (!!!!).   Gary got a cortisone shot today.   I got online looking for alternatives and found your site.   Thank you so much.  Please call me (Diane - wife).  707-486-6523.',''),(938,1,102,'11','Yes, and I want to avoid it if possible',''),(939,1,102,'13','Google/Internet',''),(940,1,102,'4','Anytime',''),(941,1,104,'6.3','Cara Crossland',''),(942,1,104,'2','crossland.cara@outlook.com',''),(943,1,104,'3','(419) 741-6883',''),(944,1,104,'5','Hello, I\'m contacting drfields.com from https://lovetocbd.com to introduce you to Allueur World\'s Most Luxurious Hemp Beauty Collection. Last month, Allueur have been awarded our magazine\'s Best Hemp Beauty Brand of the year.\r\n\r\nAllueur really did not turn into one of the major producers of CBD beauty items over night. We spent plenty of time constructing and testing various formulas until we found exactly what we were looking for: Top quality skin care to clean and nurture users\'skin.\r\n\r\nToday Allueur is a lot more than just a natural skin care business. Led by passion, expertise and expertise, our hemp-derived CBD oil now helps men and women improve their dailylives. From anti-aging moisturizers and vitamin C face lotions to sleeping face masks, our CBD items for sale can make countless individuals feel tranquil and cool. Relaxation becomes easy and stress floats away.\r\n\r\nThe Allueur family is determined to create and sell nothing but the excellent organic skin care on the market. That\'s exactly why we rely on nothing but the finest ingredients from Mother Earth to preserve youth and beauty.\r\n\r\nEnsuring the quality of all our goods, Allueur is fully straightforward about everything we create and offer. Not only is our entire stock made from the finest hemp cultivated in the United States, it is also lab evaluated by a third party lab to verify purity, potencyand consumer safety.\r\n\r\nOffering distinct and effective goods in brilliant packaging for low prices, Allueur can be behind some of the best hemp-derived CBD products being delivered to your mailbox.\r\n\r\nFor Wholesale Enquiries, please contact: https://allueur.com\r\n\r\nRegards\r\n\r\nCora from https://lovetocbd.com',''),(945,1,104,'11','Yes, and I want to avoid it if possible',''),(946,1,104,'13','I am a current patient/was a patient previously',''),(947,1,104,'4','1pm – 3pm',''),(948,1,105,'6.3','Maureen',''),(949,1,105,'2','maureenmichaelyn@gmail.com',''),(950,1,105,'3','(209) 522-9120',''),(951,1,105,'5','Bone on bone both knee\'s',''),(952,1,105,'11','Yes, and I want to avoid it if possible',''),(953,1,105,'13','Facebook',''),(954,1,105,'4','Anytime',''),(955,1,106,'6.3','omar',''),(956,1,106,'2','omarhome@gmail.com',''),(957,1,106,'3','(909) 818-4567',''),(958,1,106,'11','Not yet, and I want to avoid the need for one in the future',''),(959,1,106,'13','Google/Internet',''),(960,1,106,'4','11am – 1pm',''),(961,1,107,'6.3','Brandon',''),(962,1,107,'2','Brandonmyer100@gmail.com',''),(963,1,107,'3','(661) 529-8954',''),(964,1,107,'5','I need surgery',''),(965,1,107,'11','Not yet, and I want to avoid the need for one in the future',''),(966,1,107,'13','Referred by my doctor/provider',''),(967,1,107,'4','Anytime',''),(968,1,108,'6.3','Steve soltes',''),(969,1,108,'2','Swsiii1954@icloud.com',''),(970,1,108,'3','(661) 964-7788',''),(971,1,108,'5','I have Kaiser permanente insurance I am on the waiting list for knee replacement  surgery. However my surgeon won’t do the knee replacement surgery until my bmi under 40. It currently is around 43. I am a 66 year old male, with diabetes and hyper tension. With arthritis is both knees. I can barely walk right. Now. I don’t know anything about your procedures. If you. Think I am a good candidate for this, we should talk.',''),(972,1,108,'11','Yes, and I want to avoid it if possible',''),(973,1,108,'13','Google/Internet',''),(974,1,108,'4','Anytime',''),(975,1,109,'6.3','Brandon',''),(976,1,109,'2','Brandonmyer100@gmail.com',''),(977,1,109,'3','(661) 529-8954',''),(978,1,109,'5','I need surgery',''),(979,1,109,'11','Not yet, and I want to avoid the need for one in the future',''),(980,1,109,'13','Referred by my doctor/provider',''),(981,1,109,'4','Anytime',''),(982,1,110,'6.3','Daniel Todercan',''),(983,1,110,'2','contact@blincagency.com',''),(984,1,110,'3','(051) 528-5586',''),(985,1,110,'5','If you want to use Social Media to grow your business, this social media content calendar is going to get you there. While many entrepreneurs get overwhelmed by social media, with this 31 Day Social Media Challenge, you’ll be a pro in no time. Download the calendar and you’ll be well on your way to social media stardom. \r\n \r\nDownload Calendar here: https://newlightdigital.com/31-days-of-social-media-content-calendar/ \r\n \r\nThanks, \r\nDaniel Todercan \r\nOwner \r\nNew Light Digital',''),(986,1,110,'11','Not yet, and I want to avoid the need for one in the future',''),(987,1,110,'13','Another healthcare website',''),(988,1,110,'4','Anytime',''),(989,1,111,'6.3','Rusty Johnson',''),(990,1,111,'2','superior@brainboost.com',''),(991,1,111,'3','(302) 787-1936',''),(992,1,111,'5','From:\r\nHEADLINE NEWS August 2020\r\n\r\nBill Gates: \"Americans Must Use This... I Never Leave Home Without Taking It First\"\r\n\r\nThat\'s Bill Gates talking about this breakthrough treatment for getting his brain back in top shape. He is not happy with where the country is headed and so he has poured money into a treatment that has rescued his mental clarity and it\'s doing the same accross the nation.\r\n\r\nSpeaking on the  TODAY Show last month, Bill Gates, Founder of Microsoft, spoke to the audience... \"America is losing because of our own stupidity\" We have got to change the way things are. You won\'t believe what Mr. Gates said he uses... \"\r\n\r\nFull Story Inside >\r\nhttps://dclks.com/click.cgi?a=662x9a3059&o=72x335249&t=85x34d6a5&sub2=brain\r\n\r\nIf you have a brain you must use this. See what the Sharks say...',''),(993,1,111,'11','Yes, and I want to avoid it if possible',''),(994,1,111,'13','I am a current patient/was a patient previously',''),(995,1,111,'4','11am – 1pm',''),(996,1,112,'6.3','Delorisapete',''),(997,1,112,'2','contact1@theonlinepublishers.com',''),(998,1,112,'3','(484) 533-0058',''),(999,1,112,'5','Hello, we are The Online Publishers (TOP) and want to introduce ourselves to you.  TOP is an established comprehensive global online hub.  We connect clients to expert freelancers in all facets of the world of digital marketing such as writers, journalists, bloggers, authors, advertisers, publishers, social media influencers, backlinks managers, Vloggers/video marketers and reviewers… A few of the many services we offer are content creation and placement, publishing, advertising, online translation, and social media management.  We also have two full online libraries, one of photographs and the other of eBooks and informative resources. \r\nSave money and time by using TOP services.  Rather than having to search for multiple providers of various tasks, we are a one-stop-shop.  We have all the services you will ever need right here.  For a complete list, check out our website https://www.theonlinepublishers.com \r\nTOP can help any business surge ahead of its competition and increase sales.  Join The Online Publishers today.',''),(1000,1,112,'11','Not yet, and I want to avoid the need for one in the future',''),(1001,1,112,'13','Google/Internet',''),(1002,1,112,'4','Anytime',''),(1003,1,113,'6.3','Amy Griego',''),(1004,1,113,'2','amygriego@gmail.com',''),(1005,1,113,'3','(323) 458-3438',''),(1006,1,113,'5','Right knee in pain and feeling weak.',''),(1007,1,113,'11','Not yet, and I want to avoid the need for one in the future',''),(1008,1,113,'13','Google/Internet',''),(1009,1,113,'4','Anytime',''),(1010,1,114,'6.3','LarrySoups',''),(1011,1,114,'2','wendellquido@gmail.com',''),(1012,1,114,'3','(347) 333-3510',''),(1013,1,114,'5','Xgnrjfjifjeijfie ijdfijdiwjfiwji ifjifjwsidjwodkwsfjie ifwjsdowodkjwijfwifj9w 9w9diwdwfjwi gr9fi9eiid0weif9ewugt8w https://ugehuwsihfcushfushsw.com/fbdushdwuwsgfygwsudhwsufgeygfweugdfsfdg',''),(1014,1,114,'11','Not yet, and I want to avoid the need for one in the future',''),(1015,1,114,'13','Google/Internet',''),(1016,1,114,'4','Anytime',''),(1017,1,115,'6.3','Lindsay Harrison',''),(1018,1,115,'2','lindsay@topalexadirectory.top',''),(1019,1,115,'3','(805) 372-1751',''),(1020,1,115,'5','Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \r\n\r\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\r\n\r\nIts simple & easy; Register your business here --> \r\nhttp://topalexadirectory.top/abcc1/?=drfields.com\r\n\r\n\r\nLindsay\r\nVoice Activation Follow-up Specialist\r\nTop Alexa Directory\r\n\r\n\r\n\r\n \r\n2764 Pleasant Road Suite Suite A PMB 708\r\nFort Mill, SC 29708\r\n\r\nYou can skip future marketing messages here:\r\nhttps://topalexadirectory.top/out.php?site=drfields.com',''),(1021,1,115,'11','Yes, and I want to avoid it if possible',''),(1022,1,115,'13','I am a current patient/was a patient previously',''),(1023,1,115,'4','3pm – 5pm',''),(1024,1,116,'6.3','Kerri',''),(1025,1,116,'2','nelson3928@hotmail.com',''),(1026,1,116,'3','(413) 787-6432',''),(1027,1,116,'5','It looks like this link is broken on your site: http://www.drfields.com/contact-us\r\n\r\nI thought you would like to know :).  Silly mistakes can ruin your site\'s credibility.  I\'ve used a tool called linkSniff.com in the past to keep mistakes off of my website.\r\n\r\n-Kerri',''),(1028,1,116,'11','Yes, and I want to avoid it if possible',''),(1029,1,116,'13','Referred by my doctor/provider',''),(1030,1,116,'4','9am – 11am',''),(1031,1,117,'6.3','Deborah J. spencer',''),(1032,1,117,'2','dj419011@gmail.com',''),(1033,1,117,'3','(510) 880-9194',''),(1034,1,117,'11','Yes, and I want to avoid it if possible',''),(1035,1,117,'13','Google/Internet',''),(1036,1,117,'4','1pm – 3pm',''),(1037,1,118,'6.3','Satinder singh',''),(1038,1,118,'2','ginisinghusa@gmail.com',''),(1039,1,118,'3','(818) 482-0756',''),(1040,1,118,'5','Right shoulder pain . looks like in the muscle torn. from last 8 days.',''),(1041,1,118,'11','Yes, and I want to avoid it if possible',''),(1042,1,118,'13','Google/Internet',''),(1043,1,118,'4','Anytime',''),(1044,1,119,'6.3','Omar Amin',''),(1045,1,119,'2','mrivc211@gmail.com',''),(1046,1,119,'3','(949) 439-2691',''),(1047,1,119,'5','I’m a 40 year old male with 3 degenerative discs.  I have done physical therapy, acupuncture, multiple  MRIs over 5 years.',''),(1048,1,119,'11','Not yet, and I want to avoid the need for one in the future',''),(1049,1,119,'13','YouTube',''),(1050,1,119,'4','9am – 11am',''),(1051,1,120,'6.3','Hilary Henderson',''),(1052,1,120,'2','hilary.henderson@icloud.com',''),(1053,1,120,'3','(571) 488-7351',''),(1054,1,120,'5','I’m 34 and have been an active athlete all my life but I now and have constant and intolerable hip and knee pain. I’ve had two acl reconstructions along with meniscus repairs as of 2008. An orthopedist advised a scope several years ago but I’d like to avoid another surgery unless absolutely necessary.',''),(1055,1,120,'11','Yes, and I want to avoid it if possible',''),(1056,1,120,'13','Another healthcare website',''),(1057,1,120,'4','Anytime',''),(1058,1,121,'6.3','Megan Finkeldey',''),(1059,1,121,'2','shrinkdancer@gmail.com',''),(1060,1,121,'3','(415) 286-3632',''),(1061,1,121,'5','In addition to a left knee that never really recovered properly from surgery on my meniscus, I have developed Haglund’s deformity in my right heel I also have calcification of the Achilles tendon and I believe calcaneal bursitis. Net net, my orthopedist at California orthopedics and spine, is recommending a speed bridge repair but told me very openly that PRP might help. I’ve already had many courses of shockwave with my current chiropractor in Marin county but it was excruciating in many instances and ultimately had diminishing returns.  As for my “sport,” I am a first-degree black belt in the Nia technique and really would like an opportunity to teach some classes but I’m too disabled.',''),(1062,1,121,'11','Yes, and I want to avoid it if possible',''),(1063,1,121,'13','Friend/family who was/is a patient',''),(1064,1,121,'4','11am – 1pm',''),(1065,1,122,'6.3','Kathy Rauch',''),(1066,1,122,'2','kathyrauch51@gmail.com',''),(1067,1,122,'3','(260) 273-3821',''),(1068,1,122,'5','Would you please email me the references for the following article:\r\nhttps://www.drfields.com/articles/health-news/health-concerns-about-dairy-products/\r\n\r\nThanks so much!',''),(1069,1,122,'11','Not yet, and I want to avoid the need for one in the future',''),(1070,1,122,'4','Anytime',''),(1071,1,123,'6.3','Victor J Silva',''),(1072,1,123,'2','victech1@hotmail.com',''),(1073,1,123,'3','(818) 402-3204',''),(1074,1,123,'5','After (2) arthroscopic (right) knee surgeries, I am still having severe knee pain and I am still unable to bear full weight on it.',''),(1075,1,123,'11','Yes, and I want to avoid it if possible',''),(1076,1,123,'13','Referred by my doctor/provider',''),(1077,1,123,'4','Anytime',''),(1078,1,124,'6.3','William',''),(1079,1,124,'2','withrowwill89@gmail.com',''),(1080,1,124,'3','(805) 272-5386',''),(1081,1,124,'5','I have a bucket tear in my right medial meniscus that I have had to failed surgeries on.',''),(1082,1,124,'11','Not yet, and I want to avoid the need for one in the future',''),(1083,1,124,'13','Google/Internet',''),(1084,1,124,'4','Anytime',''),(1085,1,125,'6.3','Mark Tramontano',''),(1086,1,125,'2','MarkofCal@aol.com',''),(1087,1,125,'3','(626) 327-1107',''),(1088,1,125,'5','I was told I have some frozen shoulder, small tear in rotator cuff and degenerative arthritis in my left shoulder that is causing my pain. Also told I will need shoulder replacement.',''),(1089,1,125,'11','Yes, and I want to avoid it if possible',''),(1090,1,125,'13','Google/Internet',''),(1091,1,125,'4','Anytime',''),(1092,1,126,'6.3','Edward Hickman',''),(1093,1,126,'2','edh@anatha.tech',''),(1094,1,126,'3','(908) 675-5339',''),(1095,1,126,'5','Hi I have sports induced asthma (likely the result of smoking periodically thought-out my life and living in polluted regions). Ive used stem cell  for my lungs in the past with noticeable results and would like to revisit it or PRP for my lungs again. However, Im finding it difficult to find a doctor capable of doing so in LA. Please let me know if you can help.',''),(1096,1,126,'11','Not yet, and I want to avoid the need for one in the future',''),(1097,1,126,'13','Google/Internet',''),(1098,1,126,'4','Anytime',''),(1099,1,127,'6.3','Alicia Hagen',''),(1100,1,127,'2','avhagen9@gmail.com',''),(1101,1,127,'3','(262) 412-7383',''),(1102,1,127,'5','The ligaments connected to my sacrum are all quite loose and my chiropractor recommended prolotherapy to help stabilize my sacrum.',''),(1103,1,127,'11','Not yet, and I want to avoid the need for one in the future',''),(1104,1,127,'13','Referred by my doctor/provider',''),(1105,1,127,'4','Anytime',''),(1106,1,128,'6.3','Alicia Hagen',''),(1107,1,128,'2','avhagen9@gmail.com',''),(1108,1,128,'3','(262) 412-7383',''),(1109,1,128,'5','The ligaments connected to my sacrum are all quite loose, possibly from years of competitive swimming and too much heated yin yoga practice (without much of a yang practice). My chiropractor recommended prolotherapy to help stabilize my sacrum.',''),(1110,1,128,'11','Not yet, and I want to avoid the need for one in the future',''),(1111,1,128,'13','Referred by my doctor/provider',''),(1112,1,128,'4','Anytime',''),(1113,1,129,'6.3','Christopher Spencer',''),(1114,1,129,'2','cscottmd1@gmail.com',''),(1115,1,129,'3','(805) 231-3840',''),(1116,1,129,'5','Blew out ACL in \"86 playing basketball, also tears to both menisci...no instability...continued activities using Lennox/Hill brace...increasing symptoms over time...now can only swim...antalgic gait...moderate pain which affects sleep...cerified in PRP so somewhat familiar with types of therapies...large joint effusion...told by two orthos that I need a total joint...which I expected...just would like to improve symptoms and mobility...trained in general surgery...practiced trauma and emergency medicine for 35 years...now practice functional and anti-aging medicine...college basdketball, very active in sports my whole life...current situation very frustrating for me..',''),(1117,1,129,'11','Yes, and I want to avoid it if possible',''),(1118,1,129,'13','Google/Internet',''),(1119,1,129,'4','1pm – 3pm',''),(1120,1,130,'6.3','Barbara',''),(1121,1,130,'2','singerba99@aol.com',''),(1122,1,130,'3','(917) 416-4151',''),(1123,1,130,'5','Chondromalacia in both knees',''),(1124,1,130,'11','Not yet, and I want to avoid the need for one in the future',''),(1125,1,130,'13','Google/Internet',''),(1126,1,130,'4','Anytime',''),(1127,1,131,'6.3','Nicole',''),(1128,1,131,'2','nicoleukau@gmail.com',''),(1129,1,131,'3','(323) 717-7614',''),(1130,1,131,'5','Bad pain coming from right shoulder going to the right side of my head and brain. I need Neural Therapy!',''),(1131,1,131,'11','Yes, and I want to avoid it if possible',''),(1132,1,131,'13','Referred by my doctor/provider',''),(1133,1,131,'4','Anytime',''),(1134,1,132,'6.3','Helia',''),(1135,1,132,'2','heliafernandamartinez9@gmail.com',''),(1136,1,132,'3','(909) 516-5623',''),(1137,1,132,'5','I got clorinic kidneys stage 2 and lots of back pain and elbow pain hand finger pain numb and shoulder pain and I lost lots of weight and pain is painful and my knees got fat and painful and I get very weak that things fall off my hands and I\'m tiredness',''),(1138,1,132,'11','Not yet, and I want to avoid the need for one in the future',''),(1139,1,132,'13','Google/Internet',''),(1140,1,132,'4','Anytime',''),(1141,1,133,'6.3','Klara Benzicron',''),(1142,1,133,'2','klara1157@yahoo.com',''),(1143,1,133,'3','(818) 450-4863',''),(1144,1,133,'5','I took Gisele Beuzieron on my son Jonathan Beuzieron for prolotherapy treatments in Santa Monica several years back.  My husband and I moved to the state of Georgia we live in the zip code of 30909 and were wondering if you can recommend a prolotherapist in this area.\r\n\r\nMy husband has arthritis in his back and we want to start treatment.  Also he will be in Los Angeles in a week and if you have an opening maybe we can have him come in for the prolotherapy treatment?\r\n\r\nPlease let me know.',''),(1145,1,133,'11','Not yet, and I want to avoid the need for one in the future',''),(1146,1,133,'13','Friend/family who was/is a patient',''),(1147,1,133,'4','9am – 11am',''),(1148,1,134,'6.3','Ernie Ferraro',''),(1149,1,134,'2','parasucasa@yahoo.com',''),(1150,1,134,'3','(925) 584-7358',''),(1151,1,134,'5','I have three bulgin discs in my lower spine and was wondering if stem cell therapy and perhaps blood plasma would work to help me.',''),(1152,1,134,'11','Not yet, and I want to avoid the need for one in the future',''),(1153,1,134,'13','Google/Internet',''),(1154,1,134,'4','Anytime',''),(1155,1,135,'6.3','Cheryl Raiss',''),(1156,1,135,'2','cherylraiss@gmail.com',''),(1157,1,135,'3','(310) 617-1170',''),(1158,1,135,'5','I fell twice in april and june.  knee was hurting.  saw physical therapist for 3-4 months.  not better.\r\nfinally got MRI-arthritis and tiny meniscus tear (lateral).  Lavage arthroscopic recommended but husband (MD) did a little research and found its at best ineffective and worst long recovery for not much.  My brother (MD) recommended PRP.',''),(1159,1,135,'11','Yes, and I want to avoid it if possible',''),(1160,1,135,'13','Friend/family who was/is a patient',''),(1161,1,135,'4','Anytime',''),(1162,1,136,'6.3','Mark K. Smith',''),(1163,1,136,'2','smittymk@gmail.com',''),(1164,1,136,'3','(619) 993-3226',''),(1165,1,136,'5','Both hips are bone on bone. If I can avoid surgery that would be desirable. I am 66 yrs. old. Are your treatments covered by Medicare or supplement program? How much does the first consultation cost?',''),(1166,1,136,'11','Yes, and I want to avoid it if possible',''),(1167,1,136,'13','Google/Internet',''),(1168,1,136,'4','Anytime',''),(1169,1,137,'6.3','clemmie williams',''),(1170,1,137,'2','clemmiewilliams58@gmail.com',''),(1171,1,137,'3','(424) 386-5733',''),(1172,1,137,'5','I have a work related injury neck and shoulder I was wondering do you take worker compensation',''),(1173,1,137,'11','Not yet, and I want to avoid the need for one in the future',''),(1174,1,137,'13','Google/Internet',''),(1175,1,137,'4','1pm – 3pm',''),(1176,1,138,'6.3','David C Perry',''),(1177,1,138,'2','perry1031@gmail.com',''),(1178,1,138,'3','(714) 721-4477',''),(1179,1,138,'5','I have diagnosed with bi-lateral hip osteoarthritis and I am interested in stem cell therapy',''),(1180,1,138,'11','Not yet, and I want to avoid the need for one in the future',''),(1181,1,138,'13','Referred by my doctor/provider',''),(1182,1,138,'4','Anytime',''),(1183,1,139,'6.3','Constantino Berumen',''),(1184,1,139,'2','tinoberumen1957@gmail.com',''),(1185,1,139,'3','(619) 872-1060',''),(1186,1,139,'5','Tengo miedo de que me hagan una cirujia',''),(1187,1,139,'11','Not yet, and I want to avoid the need for one in the future',''),(1188,1,139,'13','Google/Internet',''),(1189,1,139,'4','Anytime',''),(1190,1,140,'6.3','MICHAEL A TROMBINO',''),(1191,1,140,'2','LEPASTT@YAHOO.COM',''),(1192,1,140,'3','(605) 569-6469',''),(1193,1,140,'5','KNEE, UPPER AND LOWER BACK, LEFT SHOULDER AND NECK',''),(1194,1,140,'11','Not yet, and I want to avoid the need for one in the future',''),(1195,1,140,'13','Google/Internet',''),(1196,1,140,'4','1pm – 3pm',''),(1197,1,141,'6.3','Jester Gabriel',''),(1198,1,141,'2','snake.150148@gmail.com',''),(1199,1,141,'3','(209) 892-0603',''),(1200,1,141,'5','Idk',''),(1201,1,141,'11','Not yet, and I want to avoid the need for one in the future',''),(1202,1,141,'13','Google/Internet',''),(1203,1,141,'4','Anytime',''),(1204,1,142,'6.3','Daniel Bartko',''),(1205,1,142,'2','dbartko613@gmail.com',''),(1206,1,142,'3','(661) 878-5671',''),(1207,1,142,'5','both  knees extreme pain due to bone on bone , arthritis both,right knee 2 surgeries reconstucted acl\r\n1983 /1985\r\n,',''),(1208,1,142,'11','Yes, and I want to avoid it if possible',''),(1209,1,142,'13','Google/Internet',''),(1210,1,142,'4','1pm – 3pm',''),(1211,1,143,'6.3','Dani A Vine',''),(1212,1,143,'2','love2bwugodspeed@gmail.com',''),(1213,1,143,'3','(805) 873-0057',''),(1214,1,143,'5','My situation has been very painful throughout the years are 54 years old right now I\'ve had I noticed the pain ever since I was 17 tell Mom was adopted so we were too sure of her background so I was going in blind throughout the years of my youth then when I got older I realized something was very wrong I have fibromyalgia restless leg syndrome pain throughout my joints and a lot of nerve pain I\'ve got no discs in my neck 8 herniated disc in my back and very much pain throughout my arms my legs and my buttocks I\'ve got both legs filled with sciatic pain 24/7 the humidity really affects me badly are hoping that this new remedy will be a cure or help me throughout my day and my journey through life thank you Godspeed',''),(1215,1,143,'11','Yes, and I want to avoid it if possible',''),(1216,1,143,'13','Google/Internet',''),(1217,1,143,'4','Anytime',''),(1218,1,144,'6.3','Laketa Davis',''),(1219,1,144,'2','mccueingram@gmail.com',''),(1220,1,144,'3','(323) 309-5064',''),(1221,1,144,'5','I have been diagnosed with rheumatoid arthritis in the last 10 years and been having back issues for about 15 to 20 years all logged in my medical history I\'ve had two c-sections so I\'ve had two epidurals and I\'ve been in several car accidents',''),(1222,1,144,'11','Yes, and I want to avoid it if possible',''),(1223,1,144,'13','Another healthcare website',''),(1224,1,144,'4','Anytime',''),(1225,1,145,'6.3','Kit Rich',''),(1226,1,145,'2','kitrichfitness@gmail.com',''),(1227,1,145,'3','(323) 810-7406',''),(1228,1,145,'5','I have a meniscus and MCL injury.',''),(1229,1,145,'11','Not yet, and I want to avoid the need for one in the future',''),(1230,1,145,'13','I am a current patient/was a patient previously',''),(1231,1,145,'4','Anytime',''),(1232,1,146,'6.3','Bayani Ison',''),(1233,1,146,'2','bmison@gmail.com',''),(1234,1,146,'3','(310) 625-7656',''),(1235,1,146,'5','Bad case of golfer\'s elbow on the inside joint of my right elbow.',''),(1236,1,146,'11','Not yet, and I want to avoid the need for one in the future',''),(1237,1,146,'13','Google/Internet',''),(1238,1,146,'4','Anytime',''),(1239,1,147,'6.3','Anne GF.Kellogg',''),(1240,1,147,'2','agfkellogg@yahoo.com',''),(1241,1,147,'3','(213) 481-2142',''),(1242,1,147,'5','Knee pain .',''),(1243,1,147,'11','Yes, and I want to avoid it if possible',''),(1244,1,147,'13','Google/Internet',''),(1245,1,147,'4','3pm – 5pm',''),(1246,1,148,'6.3','Heather Copp',''),(1247,1,148,'2','heathercopp@yahoo.com',''),(1248,1,148,'3','(707) 478-6025',''),(1249,1,148,'5','Hello,  I am a 52 year old healthy and active woman living in Santa Barbara.  I have a 8mm partial tear in my rotator cuff.  My labrum is fine and my bicep tendon is fine.  I manage pain with a cortisone shot every 2-3 years and do PT quite frequently along with Pilates 4-5 days a week, however the pain and mobility is getting worse over the years.  Surgery has been mentioned by my doctor.  I am wondering if I am a candidate for either PRP or Prolotherapy?',''),(1250,1,148,'11','Yes, and I want to avoid it if possible',''),(1251,1,148,'13','Google/Internet',''),(1252,1,148,'4','1pm – 3pm',''),(1253,1,149,'6.3','Niccoholos',''),(1254,1,149,'2','zhelezi.amarat@gmail.com',''),(1255,1,149,'3','(601) 416-2561',''),(1256,1,149,'5','Hello, \r\nA competitor didn\'t pay your bills? Unscrupulous performer not doing his job? Do you dislike the person and want to punish him? \r\n \r\nOrder the email flood service. We will send tens and hundreds of thousands letters to the specified email address and subscribe it to a lot of mailing lists and newsletters. As a result of these actions, the mailbox will become unusable. \r\n \r\nPrice $ 1 per 1000 emails. Good discounts for large orders. \r\n \r\nAlso we make traffic from email spam. Ask here for details - jao.woo@yandex.com \r\n \r\nGood luck in your business :)',''),(1257,1,149,'11','Not yet, and I want to avoid the need for one in the future',''),(1258,1,149,'13','Friend/family who was/is a patient',''),(1259,1,149,'4','Anytime',''),(1260,1,150,'6.3','Jocelyn Selter',''),(1261,1,150,'2','jdselter@pacbell.net',''),(1262,1,150,'3','(818) 312-3335',''),(1263,1,150,'5','I had a right knee inner meniscus repair 8 years ago. Both knees hurt after taking up running recently.',''),(1264,1,150,'11','Not yet, and I want to avoid the need for one in the future',''),(1265,1,150,'13','Friend/family who was/is a patient',''),(1266,1,150,'4','1pm – 3pm',''),(1267,1,151,'6.3','Douglas Green',''),(1268,1,151,'2','del_gado@pacbell.net',''),(1269,1,151,'3','(818) 905-1879',''),(1270,1,151,'5','Hi Dr. Fields -  I was given your name by my chiropractor (Khalsa Health Care in Beverly Hills).  I had a fantastic experience a few years back with Flexogenix, repairing torn meniscus in both knees and eliminating arthritis in both as well.  I was going back there regularly (annually or semi-annually) for hyaluronic acid injections to keep the arthritis down.  Since they left L.A., I\'ve been unable to continue on this regimen.  I also have had a chronic pain in my left wrist for years and am wondering if that might also be arthritic and solvable with hyaluronic acid.  I\'m wondering if a) you can check out my wrist and see if that\'s the case, and b) deal with the wrist in some great way, and c) resume my knee treatments, if needed.  (I\'m currently not suffering any knee pain)',''),(1271,1,151,'11','Not yet, and I want to avoid the need for one in the future',''),(1272,1,151,'13','Referred by my doctor/provider',''),(1273,1,151,'4','Anytime',''),(1274,1,152,'6.3','linda fauhl',''),(1275,1,152,'2','lfauhl@gmail.com',''),(1276,1,152,'3','(406) 442-4539',''),(1277,1,152,'5','I am 75 years old and in good shape except my knees hurt when I go up and down the stairs .\r\nI tore my ACL about 23 years ago and did nothing but pro lo shots which wirked beautfully.\r\nMy knees are not bad enough yet to get a replacement so i am looking into prp or stem cell and I would like to know what each cost  per injection and how long I can expect it to last.\r\nI just got another prolo  shot ladt week and it helped but not as much ss it use to.\r\nI am taking Physical Therapy and that helps a little too.\r\nMy thinking is it would be better to do the stem cell before I’ll start really having problems and can’t walk. I had trouble getting off of my knees to a standing position without holding on to something to pull myself up.\r\nPlease let me know what the cost would be for each of those ?thank you linda fauhl',''),(1278,1,152,'11','Not yet, and I want to avoid the need for one in the future',''),(1279,1,152,'13','Google/Internet',''),(1280,1,152,'4','9am – 11am',''),(1281,1,153,'6.3','Joe',''),(1282,1,153,'2','info@domainworld.com',''),(1283,1,153,'3','(125) 485-9342',''),(1284,1,153,'5','IMPORTANCE NOTICE\r\n\r\n\r\n\r\nNotice#: 491343\r\n\r\nDate: 2020-11-13    \r\n\r\n\r\n\r\nExpiration message of your drfields.com\r\n\r\n\r\n\r\nEXPIRATION NOTIFICATION\r\n\r\n\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: http://chifanbay.top/?n=drfields.com&r=a&t=1605168470&p=v1\r\n\r\n\r\n\r\nThis purchase expiration notification drfields.com advises you about the submission expiration of domain drfields.com for your e-book submission. \r\n\r\nThe information in this purchase expiration notification drfields.com may contains CONFIDENTIAL AND/OR LEGALLY PRIVILEGED INFORMATION from the processing department from the processing department to purchase our e-book submission. NON-COMPLETION of your submission by the given expiration date may result in CANCELLATION of the purchase.\r\n\r\n\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: http://chifanbay.top/?n=drfields.com&r=a&t=1605168470&p=v1\r\n\r\n\r\n\r\nACT IMMEDIATELY. The submission notification drfields.com for your e-book will EXPIRE WITHIN 2 DAYS after reception of this email\r\n\r\n\r\n\r\nThis notification is intended only for the use of the individual(s) having received this message. \r\n\r\n\r\n\r\nPLEASE CLICK ON SECURE ONLINE PAYMENT TO COMPLETE YOUR PAYMENT\r\n\r\n\r\n\r\nSECURE ONLINE PAYMENT: http://chifanbay.top/?n=drfields.com&r=a&t=1605168470&p=v1\r\n\r\n\r\n\r\nNon-completion of your submission by given expiration date may result in cancellation.\r\n\r\n\r\n\r\nAll online services will be restored automatically upon confirmation of payment. Delivery will be completed within 24 hours. \r\n\r\n\r\n\r\nCLICK UNDERNEATH FOR IMMEDIATE PAYMENT:\r\n\r\n\r\n\r\nSECURE ONLINE PAYMENT: http://chifanbay.top/?n=drfields.com&r=a&t=1605168470&p=v1',''),(1285,1,153,'11','Yes, and I want to avoid it if possible',''),(1286,1,153,'13','Facebook',''),(1287,1,153,'4','1pm – 3pm',''),(1288,1,154,'6.3','Bsbshshs',''),(1289,1,154,'2','shhshshs@suusus.com',''),(1290,1,154,'3','(510) 288-8619',''),(1291,1,154,'5','Shshsh',''),(1292,1,154,'11','Not yet, and I want to avoid the need for one in the future',''),(1293,1,154,'13','YouTube',''),(1294,1,154,'4','3pm – 5pm',''),(1295,1,155,'6.3','Scott Solan',''),(1296,1,155,'2','scottsolan@icloud.com',''),(1297,1,155,'3','(702) 497-6843',''),(1298,1,155,'5','Hi,\r\nMy name is Scott Solan and I play men\'s volleyball in college. Recently I had Xrays and an MRI done and I found out that I have a small posterior labrum tear, type 1 SLAP tear, and posterior impingement on my left shoulder. Luckily, I was told that surgery is not necessary and this can heal with physical therapy and rehab. The day after the diagnosis, I received a cortisone shot and I have been receiving treatment and rehab at my school. I have seen little to no improvement whatsoever and this is a major issue that is affecting my career dramatically. I am looking for alternative injections that will expedite the healing process in order to get me back on the court as soon as possible, which I hope will be within the next month. I have heard nothing but good things about Prolotherapy and PRP, and I had it recommended to me for a previous severe ankle sprain. I have been researching quite a bit and I would not trust anyone other than Dr. Fields to have this work done. Additionally, I have heard from other professional volleyball players and players in college that are strong advocates for prolotherapy and PRP and have seen it do wonders for their injuries. I would like to set up an appointment as soon as possible, I am always available to make time whenever works best for you. Please feel free to call me at 702-497-6843 or email me at scottsolan@icloud.com if you have any further questions or would like any more information. Thank you so much for your time and I look forward to hearing back from you.',''),(1299,1,155,'11','Not yet, and I want to avoid the need for one in the future',''),(1300,1,155,'13','Google/Internet',''),(1301,1,155,'4','Anytime',''),(1302,1,156,'6.3','Ravi Chikkam',''),(1303,1,156,'2','chikkamravi@hotmail.com',''),(1304,1,156,'3','(425) 533-4286',''),(1305,1,156,'5','1. MRI ANY JT LOW EXTREM; W/O CONTRAST\r\na). The dominant findings are severe medial compartment chondromalacia with moderate osteoarthritis.\r\nb). Macerated tearing throughout the posterior horn medial meniscus.\r\nc). Early lateral tibiofemoral osteoarthritis.\r\nd). Low to intermediate apical patellar chondromalacia with a small amount of inflammation within Hoffa\'s fat beneath the patellar apex.\r\n\r\n2. MRI SPINAL CANAL LUMB; NO CONTRAST \r\na). 2-3 mm broad-based posterior disc protrusion at L4-5 with mild disc desiccation. Moderate to severe left greater than right foraminal stenoses are noted. Annular tear along the left posterolateral disc margin is noted. Spinal canal is 8 mm.\r\nb). 3-4 mm broad-based posterior disc protrusion at L5-S1 with mild to moderate right and moderate left foraminal stenosis. Spinal canal is 8 mm.\r\nc). Degenerative facet hypertrophy and ligamentum flavum hypertrophy in the lumbar spine as described above, greatest at L4-5.\r\nd). No bone marrow edema or muscular edema.',''),(1306,1,156,'11','Not yet, and I want to avoid the need for one in the future',''),(1307,1,156,'13','Google/Internet',''),(1308,1,156,'4','3pm – 5pm',''),(1309,1,157,'6.3','tulliya',''),(1310,1,157,'2','grimessyniah@gmail.com',''),(1311,1,157,'3','(209) 455-2891',''),(1312,1,157,'5','my family has a thing we\'re people down our family line had back problems so I\'m trying to prepare for the future.',''),(1313,1,157,'11','Not yet, and I want to avoid the need for one in the future',''),(1314,1,157,'13','Friend/family who was/is a patient',''),(1315,1,157,'4','Anytime',''),(1316,1,158,'6.3','Haly',''),(1317,1,158,'2','halyg@gmail.com',''),(1318,1,158,'3','(925) 343-4521',''),(1319,1,158,'5','Sushahuywiwi I just don’t think it’s going out to get the wiwiwuwyi up on it but it’s I',''),(1320,1,158,'11','Not yet, and I want to avoid the need for one in the future',''),(1321,1,158,'13','Referred by my doctor/provider',''),(1322,1,158,'4','9am – 11am',''),(1323,1,159,'6.3','Cheryl Minton',''),(1324,1,159,'2','cheyl.minton@yahoo.com',''),(1325,1,159,'3','(925) 348-2186',''),(1326,1,159,'5','KNee pain, Baker’s cist, Arthritis.  My orthopedic filled my knee with hydrolauronic acid gel injections.  No benefit. After third shot, my knee swelled and has stayed swollen and painful for 6 weeks. She admitted she may b=have given me too much of the gel and I’m not absorbing it.  She suggested I get an MRI. After seeing this she said the arthritis had progressed enough to make me a candidate for a knee replacement. I’m an active 71 year old and still teach dance classes, do Pilates, yoga and hiking.  I cannot hike downhill now, can barely teach and experience pain after class. She is offering me PRP or stem cell but I don’t know if I trust her anymore. She prescribed Naproxen and my GERD is back ! Do you have an office in my area? Walnut Creek, East Bay Area.?',''),(1327,1,159,'11','Yes, and I want to avoid it if possible',''),(1328,1,159,'13','Google/Internet',''),(1329,1,159,'4','Anytime',''),(1330,1,160,'6.3','Sandra Carraway',''),(1331,1,160,'2','sandycarraway26@gmail.com',''),(1332,1,160,'3','(704) 681-0794',''),(1333,1,160,'5','over 10 years ago I fell down steps immediately i couldn\'t move. My son rushed me to hospital, there was no exrays,nothing  just a script for pain medication. It helped and the about 2 years after I got tired of not feeling normal, I took the anniificen to locate a neurogolist,neurologist, a MRI which showed sciatica  nerve damage now its been 8 years Dr waiting another MRI dont unfortunately my insurance didn\'t pays it all I couldnt afford the 20% they didn\'t cover so. I am unable to get another,its been 8 yeas the neurologist it may be possible i would be in a wheel chair within 10 yeas. I am now having crazy amount of pain an numbness cramping that leads to bones burning.',''),(1334,1,160,'11','Yes, and I want to avoid it if possible',''),(1335,1,160,'13','Google/Internet',''),(1336,1,160,'4','3pm – 5pm',''),(1337,1,161,'6.3','Shawna Tyler',''),(1338,1,161,'2','shawna_tyler07@yahoo.com',''),(1339,1,161,'3','(818) 458-9996',''),(1340,1,161,'5','This is for my father. He has nerve problems stemming from his back and neck. His neck is healed from surgery but the back has never really been treated other than pain medications. He has a pinch nerve and it shoots down to his feet. He also has a few hammer toes and recently had some of his blood vessels in his legs repaired because he wasn\'t getting great circulation. I would like to get him off the pain medications and walking better. I believe this all comes from his back. He also has issues with his balance and walks with a walker. He has been recommended to do physical therapy but I think he is in too much pain and says it won\'t help.',''),(1341,1,161,'11','Not yet, and I want to avoid the need for one in the future',''),(1342,1,161,'13','Friend/family who was/is a patient',''),(1343,1,161,'4','Anytime',''),(1344,1,162,'6.3','Sarah Bird',''),(1345,1,162,'2','hellokittygirl87@msn.com',''),(1346,1,162,'3','(562) 225-1208',''),(1347,1,162,'5','I am a triathlete and i was hit by a car while riding my bike in October. While all of my swelling and pain went away I was told that I have a lateral meniscus tear.  I feel a grinding sensation when i move my knee up and down (straight to bent).',''),(1348,1,162,'11','Not yet, and I want to avoid the need for one in the future',''),(1349,1,162,'13','Google/Internet',''),(1350,1,162,'4','Anytime',''),(1351,1,163,'6.3','Karla',''),(1352,1,163,'2','karla.pinkdaisy@gmail.com',''),(1353,1,163,'3','(949) 230-7913',''),(1354,1,163,'5','I have two bulging disc. I  used to Workout 3x a week up until Thanksgiving 3 years when I injured my back at Orangetheory. This injury has affected my quality of life. My only form of exercise now are walks. Dr. Badakhshan referred me to you as a second opinion to another doctor that recommend PCR.\r\n\r\nI prefer appointment in the afternoon or late appointments. I work in Costa Mesa.\r\n\r\nI will be available mornings and early afternoons December 21,22,23,28,29,30.',''),(1355,1,163,'11','Not yet, and I want to avoid the need for one in the future',''),(1356,1,163,'13','Referred by my doctor/provider',''),(1357,1,163,'4','Anytime',''),(1358,1,164,'6.3','Dr. Imani J. Walker',''),(1359,1,164,'2','imani@doctor-imani.com',''),(1360,1,164,'3','(818) 468-2698',''),(1361,1,164,'5','I have been suffering from runner’s knee for the past few years. I have had prolotherapy in the past for low back pain and it completely changed my life 👍🏾',''),(1362,1,164,'11','Not yet, and I want to avoid the need for one in the future',''),(1363,1,164,'13','Google/Internet',''),(1364,1,164,'4','Anytime',''),(1365,1,165,'6.3','Philip Dansart',''),(1366,1,165,'2','phildansart@hotmail.com',''),(1367,1,165,'3','(310) 606-0778',''),(1368,1,165,'5','I had ATFL surgery on both ankles in 2009. In 2010/11 I saw Dr. Fields numerous times for Prolo and then PRP on my right ankle which still gave me problems. My right ankle eventually got better a number of years after that (I\'m not sure if the prolo or PRP helped).\r\n\r\nAbout a year ago, my right ankle began giving me problems again. I can easily roll in while walking on uneven surfaces. Rolling it does not hurt, but it will tingle for days or weeks. Worst of all, it seems weaker during times when it tingles and then if I do longer walks, my knees and hip will hurt.',''),(1369,1,165,'11','Not yet, and I want to avoid the need for one in the future',''),(1370,1,165,'13','I am a current patient/was a patient previously',''),(1371,1,165,'4','3pm – 5pm',''),(1372,1,166,'6.3','Jennifer C Lewallen',''),(1373,1,166,'2','JenniferLewallen@gmail.com',''),(1374,1,166,'3','(530) 460-8256',''),(1375,1,166,'5','I don\'t need an appt. at this time.',''),(1376,1,166,'11','Not yet, and I want to avoid the need for one in the future',''),(1377,1,166,'13','Referred by my doctor/provider',''),(1378,1,166,'4','Anytime',''),(1379,1,167,'6.3','Destiny Huffman',''),(1380,1,167,'2','huffmaninvestments@icloud.com',''),(1381,1,167,'3','(832) 278-7677',''),(1382,1,167,'5','Neck pain - C5,6 & 7 vertebrae bulging & herniated\r\n\r\nThoracic pain',''),(1383,1,167,'11','Not yet, and I want to avoid the need for one in the future',''),(1384,1,167,'13','Referred by my doctor/provider',''),(1385,1,167,'4','Anytime',''),(1386,1,168,'6.3','Mark Motejunas',''),(1387,1,168,'2','mmotejunas@mednet.ucla.edu',''),(1388,1,168,'3','(617) 750-4205',''),(1389,1,168,'5','This is a message for Dr Fields. I\'m a current UCLA IPM fellow interested in getting additional exposure to regenerative medicine. If he\'d be open to it I\'d great appreciate meeting with him, learning more about the field and even potentially shadowing him.\r\n\r\nPlease let me know if this is something that he\'d be open to!\r\n\r\nBest,\r\n\r\nMark',''),(1390,1,168,'11','Not yet, and I want to avoid the need for one in the future',''),(1391,1,168,'13','Google/Internet',''),(1392,1,168,'4','Anytime',''),(1393,1,169,'6.3','rizaldy mendoza',''),(1394,1,169,'2','perfectdomain.zarge01@gmail.com',''),(1395,1,169,'3','(000) 000-0000',''),(1396,1,169,'5','MdCalifornia.com is for sale!\r\nLovely day,I am Rizaldy from ZEDJACE Domain. We have a domain that you might be interested in (MdCalifornia.com).\r\nIf someone  types California Doctors, Md in California, The Best Doctors in California, or similar keywords, your site may be the first they see.Google Search Keyword: 359,000,000Godaddy Appraisal Value: $1,439Sale at $498 only for a limited time. If interested please go to   MdCalifornia.com and hit buy now.Grab now to be the first and only person to own the site.Thank you and have a great day.\r\nZEDJACE DomainRizaldy',''),(1397,1,169,'11','Not yet, and I want to avoid the need for one in the future',''),(1398,1,169,'13','Google/Internet',''),(1399,1,169,'4','Anytime',''),(1400,1,170,'6.3','Mimi',''),(1401,1,170,'2','mimisynz@gmail.com',''),(1402,1,170,'3','(323) 947-7347',''),(1403,1,170,'5','Back hurs',''),(1404,1,170,'11','Not yet, and I want to avoid the need for one in the future',''),(1405,1,170,'13','Google/Internet',''),(1406,1,170,'4','Anytime',''),(1407,1,171,'6.3','Miguel Dickenson',''),(1408,1,171,'2','miguelcdickenson@gmail.com',''),(1409,1,171,'3','(925) 309-9270',''),(1410,1,171,'5','Competitive long-distance runner for 14 years. One day knee started hurting around the meniscus area all of a sudden and has hurt every time I run (every time only after a few miles first) for a year. My knee has also been inflammed the entire duration. I have stopped running for months on end and came back and it still hurt and my knee is still inflammed today with no running whatsoever. I was hit in the side by a car going about 18 mph approximately 2 weeks before my knee began to hurt. I got an MRI about 6 months after that and the doctors were largely incompetent but one said there was a minor meniscus tear and stage 1-2 cartilage damage. Can I run again? Will plasma/prolotherapy injections cure it? Surgery? I did PT for 6 weeks and it may have helped but it did not cure it and the pain came back.',''),(1411,1,171,'11','Not yet, and I want to avoid the need for one in the future',''),(1412,1,171,'13','Google/Internet',''),(1413,1,171,'4','Anytime',''),(1414,1,172,'6.3','Audrey Freudberg',''),(1415,1,172,'2','asandra47@gmail.com',''),(1416,1,172,'3','(310) 429-8817',''),(1417,1,172,'5','I have pain in my buttocks. More on the left side than the right, mostly when I sit and sometimes when I stand in one place for a while. It started when I slept w with a 7 inch wedge pillow to relieve acid reflux. I can no longer sleep with the wedge-too painful. I have had the pains to some degree for two years and it\'s been worsening the past several months. I have been getting acupuncture and soft tissue therapy for treatment but the pains persist. I can barely sit.\r\nMy right sacral bone sometimes gets stuck and is relieved by acupuncture temporarily. The right side of my coccyx bone is tender to the touch and I can no longer do any kind of exercise that requires lying on my back, e.g. sit ups, leg lifts.\r\nI have not had any imaging of the areas involved. The only doctor who has examined me is my acupuncturist.\r\nI am really hoping that prolotherapy might help.',''),(1418,1,172,'11','Not yet, and I want to avoid the need for one in the future',''),(1419,1,172,'13','Google/Internet',''),(1420,1,172,'4','1pm – 3pm',''),(1421,1,173,'6.3','Lori Cohen',''),(1422,1,173,'2','soullori@yahoo.com',''),(1423,1,173,'3','(818) 324-4766',''),(1424,1,173,'5','I have been dx\'d with osteoarthritis in my left knee, bone on bone. Very painful, hard to get up and walk after sitting, sleeping. Wake up from pain during the night. I\'ve been referred for knee replacement surgery of which I would like to avoid. I\'m interested in a consult around PRP and Stem cell combination or the recommended tx. Thank you',''),(1425,1,173,'11','Yes, and I want to avoid it if possible',''),(1426,1,173,'13','Referred by my doctor/provider',''),(1427,1,173,'4','Anytime',''),(1428,1,174,'6.3','JgsvVipsy',''),(1429,1,174,'2','wiljrerhre4tphi@gmail.com',''),(1430,1,174,'3','(580) 577-3544',''),(1431,1,174,'5','viagra and pregancy <a href=\"https://atviagrmenrx.com/#\">chewing viagra</a> purchase generic viagra online',''),(1432,1,174,'11','Not yet, and I want to avoid the need for one in the future',''),(1433,1,174,'13','Friend/family who was/is a patient',''),(1434,1,174,'4','Anytime',''),(1435,1,175,'6.3','Robin Lindh',''),(1436,1,175,'2','avsje@msn.com',''),(1437,1,175,'3','(747) 312-1202',''),(1438,1,175,'5','Both my knees require surgery.   I also have Spinal Stenosis where a bulge is pushing into my spinal cord.\r\n\r\nI have Kaiser insurance and Medicare.  What insurance do I need for your location?',''),(1439,1,175,'11','Yes, and I want to avoid it if possible',''),(1440,1,175,'13','Google/Internet',''),(1441,1,175,'4','Anytime',''),(1442,1,176,'6.3','Erica shields',''),(1443,1,176,'2','eshields29@yahoo.com',''),(1444,1,176,'3','(831) 905-9211',''),(1445,1,176,'5','Hip bone and degenerative spine\r\nNeed the cost \r\nIs it covered by Medicare',''),(1446,1,176,'11','Not yet, and I want to avoid the need for one in the future',''),(1447,1,176,'4','Anytime',''),(1448,1,177,'6.3','Barry Ephraim',''),(1449,1,177,'2','barry.ephraim@gmail.com',''),(1450,1,177,'3','(310) 927-3675',''),(1451,1,177,'5','53 year old athlete. Chronic pain/some weakness for 2.5 months in lower left inner thigh (adductor muscle and/or tendons).  Had left hip replaced 6 months ago, aggressively worked in PT & PT stretching at home, went on intense bike rides, pool running, a little  soccer ball work until muscle/tendon injury (from overuse? Weak glutes?). Desperate to return to bike riding & other outdoor, intense exercise. Need it to survive!',''),(1452,1,177,'11','Not yet, and I want to avoid the need for one in the future',''),(1453,1,177,'13','Google/Internet',''),(1454,1,177,'4','Anytime',''),(1455,1,178,'6.3','Thomas Finklea',''),(1456,1,178,'2','Finkjkd1@gmail.com',''),(1457,1,178,'3','(407) 719-2622',''),(1458,1,178,'5','This year I was diagnosed with osteoarthritis in my left hip. An X-ray report indicated closure of the joint space. I have pain, loss of strength and range of motion. I am interested in finding out if  I would be a good candidate for prolotherapy treatment. My doctor recommended taking NSAIDs for now but I’m not using them.',''),(1459,1,178,'11','Not yet, and I want to avoid the need for one in the future',''),(1460,1,178,'4','Anytime',''),(1461,1,179,'6.3','paul hillson',''),(1462,1,179,'2','paul@ocpaddle.net',''),(1463,1,179,'3','(949) 254-3167',''),(1464,1,179,'5','knees are rubbing bone on bone.',''),(1465,1,179,'11','Not yet, and I want to avoid the need for one in the future',''),(1466,1,179,'13','Google/Internet',''),(1467,1,179,'4','Anytime',''),(1468,1,180,'6.3','salome',''),(1469,1,180,'2','salomechemla19@gmail.com',''),(1470,1,180,'3','(310) 228-0256',''),(1471,1,180,'5','Neck back pain\r\nTendinitis on left arm',''),(1472,1,180,'11','Not yet, and I want to avoid the need for one in the future',''),(1473,1,180,'13','Google/Internet',''),(1474,1,180,'4','Anytime',''),(1475,1,181,'6.3','Rick Tovar',''),(1476,1,181,'2','ricktovar@sbcglobal.net',''),(1477,1,181,'3','(323) 229-5014',''),(1478,1,181,'5','Lower back/hip pain.',''),(1479,1,181,'11','Not yet, and I want to avoid the need for one in the future',''),(1480,1,181,'13','Referred by my doctor/provider',''),(1481,1,181,'4','Anytime',''),(1482,1,182,'6.3','Stacey Shirey',''),(1483,1,182,'2','shirey.stacey@yahoo.com',''),(1484,1,182,'3','(619) 597-8856',''),(1485,1,182,'5','My left knee I’ve been hurting for a couple  years. Are used to be very active now because of my knee I can’t be and I’ve put on weight. I would like to avoid surgery try something else',''),(1486,1,182,'11','Yes, and I want to avoid it if possible',''),(1487,1,182,'13','Google/Internet',''),(1488,1,182,'4','Anytime',''),(1489,1,183,'6.3','John DiSalvatore',''),(1490,1,183,'2','John@mercedes-transcription.com',''),(1491,1,183,'3','(240) 301-1718',''),(1492,1,183,'5','Would you like to say farewell to missed TATs, blanks or poor customer service -- and HELLO to better value with your dedicated concierge team at Mercedes Transcription? Well, for the last 25 years we have done just that for all of our clients!\r\n\r\nAs the provider of record in all 50 states, we pride ourselves on delivering fast, accurate and cost-effective medical transcription services. We can meet or beat any offshore pricing. Need to be up and running within a day or sooner? No problem. We are always one phone call away.\r\n\r\nJoin our community!  Contact me to discuss.\r\n\r\nHope you have a Merry Christmas and a blessed 2021!',''),(1493,1,183,'11','Not yet, and I want to avoid the need for one in the future',''),(1494,1,183,'13','Google/Internet',''),(1495,1,183,'4','Anytime',''),(1496,1,184,'6.3','Win',''),(1497,1,184,'2','mmw4126@gmail.com',''),(1498,1,184,'3','(323) 365-9939',''),(1499,1,184,'11','Not yet, and I want to avoid the need for one in the future',''),(1500,1,184,'13','Google/Internet',''),(1501,1,184,'4','9am – 11am',''),(1502,1,185,'6.3','Han Nguyen',''),(1503,1,185,'2','hann78989@gmail.com',''),(1504,1,185,'3','(408) 460-4885',''),(1505,1,185,'11','Not yet, and I want to avoid the need for one in the future',''),(1506,1,185,'13','Google/Internet',''),(1507,1,185,'4','Anytime',''),(1508,1,186,'6.3','Paste',''),(1509,1,186,'2','kresgs@gmail.com',''),(1510,1,186,'3','(310) 453-1234',''),(1511,1,186,'5','Ok',''),(1512,1,186,'11','Not yet, and I want to avoid the need for one in the future',''),(1513,1,186,'13','Facebook',''),(1514,1,186,'4','11am – 1pm',''),(1515,1,187,'6.3','Kennedy Nguyen',''),(1516,1,187,'2','kennedynguyen224@yahoo.com',''),(1517,1,187,'3','(626) 265-1459',''),(1518,1,187,'11','Yes, and I want to avoid it if possible',''),(1519,1,187,'4','Anytime',''),(1520,1,188,'6.3','Andrew Dominik',''),(1521,1,188,'2','qualityguestpostuk@gmail.com',''),(1522,1,188,'3','(203) 286-8663',''),(1523,1,188,'5','Hello,\r\n\r\nI checked this article http://www.digitaljournal.com/pr/4930502\r\n\r\nand would like to know if you are looking for some more guest posts like that one? You can also forward this mail to your current SEO company, We\'ll work together for best results for your website.\r\n\r\nI\'m a guest blogger and I can help you to get more guest posts on the relevant website.\r\n\r\nLooking forward to hearing from you\r\n\r\n\r\nThanks\r\nAndrew Dominik\r\nSkype: qualityguestpost\r\nWeb Site: https://www.qualityguestpost.com\r\n\r\nP.S. We\'re sorry if you get emails multiple times. To Unsubscribe: Reply with \"NO\"',''),(1524,1,188,'11','Not yet, and I want to avoid the need for one in the future',''),(1525,1,188,'13','Google/Internet',''),(1526,1,188,'4','Anytime',''),(1527,1,189,'6.3','Barbara Caira',''),(1528,1,189,'2','bacaira101441@gmail.com',''),(1529,1,189,'3','(818) 335-0005',''),(1530,1,189,'5','I fell and fractured my lower back\r\nIn May of 2020. Also from the fall I fractured my left shoulders. I had a Sergery i can\'t remember where they used glue bur it didn\'t help my back or shoulder!\r\nI need help i can\'t take the pain anymore!',''),(1531,1,189,'11','Yes, and I want to avoid it if possible',''),(1532,1,189,'13','Google/Internet',''),(1533,1,189,'4','11am – 1pm',''),(1534,1,190,'6.3','Barbara Caira',''),(1535,1,190,'2','bacaira101441@gmail.com',''),(1536,1,190,'3','(818) 335-0005',''),(1537,1,190,'5','I fell and fractured my lower back\r\nIn May of 2020. Also from the fall I fractured my left shoulders. I had a Sergery i can\'t remember where they used glue bur it didn\'t help my back or shoulder!\r\nI need help i can\'t take the pain anymore!',''),(1538,1,190,'11','Yes, and I want to avoid it if possible',''),(1539,1,190,'13','Google/Internet',''),(1540,1,190,'4','11am – 1pm',''),(1541,1,191,'6.3','Dont',''),(1542,1,191,'2','dontcare@gmail.com',''),(1543,1,191,'3','(800) 800-8132',''),(1544,1,191,'5','Dont care',''),(1545,1,191,'11','Not yet, and I want to avoid the need for one in the future',''),(1546,1,191,'13','Google/Internet',''),(1547,1,191,'4','3pm – 5pm',''),(1548,1,192,'6.3','Robert',''),(1549,1,192,'2','blessingtdm2005@icloud.com',''),(1550,1,192,'3','(760) 812-8734',''),(1551,1,192,'11','Not yet, and I want to avoid the need for one in the future',''),(1552,1,192,'13','Friend/family who was/is a patient',''),(1553,1,192,'4','3pm – 5pm',''),(1554,1,193,'6.3','Hamish Astle',''),(1555,1,193,'2','astlehamish@gmail.com',''),(1556,1,193,'3','(093) 304-4219',''),(1557,1,193,'5','Hello,\r\n \r\nHow are you? Hope you are fine.\r\n \r\nI have been checking your website quite often. It has seen that the main keywords are still not in top 10 rank. You know things of working; I mean the procedure of working has changed a lot.\r\n \r\nSo I would like to have opportunity to work for you and this time we will bring the keywords to the top 10 spot with guaranteed period.\r\n \r\nThere is no wondering that it is possible now cause, I have found out that there are few things need to be done for better performances (Some we Discuss ,in this email). Let me tell you some of them -\r\n \r\n1. Title Tag Optimization\r\n2. Meta Tag Optimization (Description, keyword and etc)\r\n3. Heading Tags Optimization\r\n4. Targeted keywords are not placed into tags\r\n5. Alt / Image tags Optimization\r\n6. Google Publisher is missing\r\n7. Custom 404 Page is missing\r\n8. The Products are not following Structured markup data\r\n9. Website Speed Development (Both Mobile and Desktop )\r\n10.Off –Page SEO work\r\n\r\nWe will also work on those area ..\r\n\r\n1. 5XX status code Check\r\n2. 4XX status code check\r\n3. Title Tags\r\n \r\n   >> Title Tags Optimization,\r\n   >> Title Tags Length\r\n   >> Keyword Optimization\r\n\r\n4. duplicate title tags\r\n5. duplicate content issues\r\n6. Internal broken links\r\n7. Crawl Errors (Webmaster Tool)\r\n8. DNS resolution issues (Hosting)\r\n9. incorrect URL formats\r\n10. Internal broken images\r\n11. duplicate meta descriptions\r\n12. Robots\r\n13. XML Sitemap Format Error\r\n14. XML Sitemap Optimization (incorrect pages - Redirection)\r\n15. WWW resolve issue\r\n16. viewport tag (Responsive)\r\n17.  HTML size optimization\r\n18. Cannonical Tags\r\n19. Https Redirection  for all pages\r\n20. broken canonical link\r\n21. multiple canonical URLs\r\n22. broken internal JavaScript and CSS files\r\n23. External Broken Links\r\n24. External Broken Images\r\n25. H Tag Optimization\r\n26. duplicate H1 and title tags\r\n27. too many on-page links\r\n28. don\'t have alt attributes\r\n29. low word count\r\n30. Nofollow Internal  Links\r\n31. Sitemap.xml not indicated in robots.txt\r\n32. Images are formatted as page link\r\n33. Pages should have  more than 1 internal links\r\n34. orphaned pages\r\n35. Schema Mark up\r\n \r\nLots are pending……………..\r\n\r\nYou can see these are the things that need to be done properly to make the keywords others to get into the top 10 spot in Google Search & your sales Increase.\r\nplease give us a chance to fix these errors and we will give you rank on these keywords.\r\n \r\nPlease let me know if you encounter any problems or if there is anything you need. If this email has reached you by mistake or if you do not wish to take advantage of this advertising opportunity, please accept my apology for any inconvenience caused and rest assured that you will not be contacted again.\r\n \r\nMany thanks for your time and consideration,\r\n \r\nLooking forward\r\n \r\nRegards\r\nHamish Astle\r\n\r\nIf you did not wish to receive this, please reply with \"unsubscribe\" in the subject line.\r\n \r\nDisclaimer: This is an advertisement and a promotional mail strictly on the guidelines of CAN-SPAM Act of 2003. We have clearly mentioned the source mail-id of this mail and the subject lines and they are in no way misleading in any form. We have found your mail address through our own efforts on the web search and not through any illegal way. If you find this mail unsolicited, please reply with \"unsubscribe\" in the subject line and we will take care that you do not receive any further promotional mail.',''),(1558,1,193,'11','Not yet, and I want to avoid the need for one in the future',''),(1559,1,193,'13','I am a current patient/was a patient previously',''),(1560,1,193,'4','Anytime',''),(1561,1,194,'6.3','Bill Botts',''),(1562,1,194,'2','b.botts@yahoo.com',''),(1563,1,194,'3','(510) 701-1308',''),(1564,1,194,'5','untitled image\r\n39000 Bob Hope Drive\r\nLower Level\r\nRancho Mirage CA 92270\r\n760-674-3876\r\n \r\n \r\nName:  \r\nBotts, Bill Joseph\r\nDOB/Age/Sex:\r\n3/13/1958 / 62 y.o. / M\r\nMRN:\r\n5917838\r\nOrdering Location:\r\nEAHC SPORTS MEDICINE\r\nOrdering Physician:\r\nRajiv H Tailor\r\nPatient Location:\r\n \r\nOrder Date/Time:\r\n12/24/2020 6:07 AM\r\nAccount Number:\r\n \r\nStudy Description:\r\nMRI Shoulder Right Wo Contrast\r\n \r\n \r\nService Date/Time:\r\n12/24/2020 6:40 AM\r\n \r\n \r\n \r\n \r\nReport Status: Final\r\nAccession Number: \r\n311216486\r\n \r\n \r\n \r\n \r\nEXAMINATION: MRI SHOULDER RIGHT WO CONTRAST\r\n \r\nINDICATION: Biceps tendinitis of right shoulder\r\nM75.101: Rotator cuff syndrome of right shoulder\r\nZ98.890: History of repair of right rotator cuff\r\n \r\nTECHNIQUE: Multisequence, multiplanar MRI of the right shoulder was\r\nperformed.\r\n \r\nCONTRAST: None\r\n \r\nCOMPARISON: None available.\r\n \r\nFINDINGS:\r\nRotator cuff: High grade focal full-thickness partial width tear of the\r\ninfraspinatus tendon at/near the footprint (coronal image 11, sagittal \r\nimage\r\n20).  Moderate grade partial-thickness partial width tearing of the \r\nsupraspinous\r\ntendon at/near the footprint.  Low-grade articular sided partial tearing \r\nof the\r\nupper fibers of the subscapularis tendon.  Unremarkable teres minor \r\ntendon.\r\n \r\nGlenohumeral Joint: Alignment is normal. Possible tear versus sublabial \r\nrecess\r\nat the superior labrum (coronal image 14). Small joint effusion. There is \r\nno\r\nsignificant chondral loss.\r\n \r\nInferior Glenohumeral Ligaments/Axillary Pouch: The axillary pouch is \r\nnormal in\r\nthickness and signal.\r\n \r\nLong Head of Biceps Tendon: The long head of the biceps tendon is present \r\nwithin\r\nthe bicipital groove and intact.\r\n \r\nCoracoacromial Arch: There is scattered micrometallic susceptibility \r\nartifact\r\nabout the acromion, possibly related to prior surgery.  There is mild\r\nacromioclavicular joint osteoarthrosis. There is no os acromiale or \r\nsubacromial\r\nenthesophyte. The acromion is non-hook in morphology and lie in neutral\r\nposition, as displayed on the sagittal images. The coracoacromial ligament \r\nis\r\nnormal.\r\n \r\nSubacromial-Subdeltoid Bursa: Fluid in the bursal space, in keeping with\r\nfull-thickness rotator cuff tendon tear.\r\n \r\nMusculature: Muscle bulk is preserved with no evidence of denervation or \r\nfatty\r\natrophy. There is no soft tissue mass.\r\n \r\nBone: No acute fracture, stress reaction, avascular necrosis, or \r\naggressive\r\nappearing bone lesion.\r\n \r\nIMPRESSION:\r\n \r\n1.  High-grade partial width full-thickness tear, infraspinatus tendon.\r\n2.  Moderate grade partial thickness partial width tear, supraspinatus \r\ntendon.\r\n3.  Low-grade articular sided partial tear, upper subscapularis tendon.\r\n4.  Possible tear versus sublabial recess, superior labrum.\r\n5.  Small glenohumeral joint effusion.\r\n6.  Mild AC joint osteoarthrosis.\r\n \r\nSigned by: Alvin Wyatt, MD\r\nSigned By:  Alvin Wyatt, MD on 12/24/2020 11:53 AM',''),(1565,1,194,'11','Yes, and I want to avoid it if possible',''),(1566,1,194,'13','Google/Internet',''),(1567,1,194,'4','Anytime',''),(1568,1,195,'6.3','David Phillips',''),(1569,1,195,'2','davjphillips@gmail.com',''),(1570,1,195,'3','(415) 732-9607',''),(1571,1,195,'5','Hi, my case is about my mother. She has Lupus. Does this help with that?',''),(1572,1,195,'11','Not yet, and I want to avoid the need for one in the future',''),(1573,1,195,'13','Google/Internet',''),(1574,1,195,'4','Anytime',''),(1575,1,196,'6.3','david silverman',''),(1576,1,196,'2','drsensei@yahoo.com',''),(1577,1,196,'3','(818) 222-7982',''),(1578,1,196,'5','I was in a motorcycle accident in Oct 2020 and tore both my ACL and meniscus in my right knee. There was other damage also (I have a titanium rod in my left femur and the tip of my right tibia was damaged) and I\'m just now walking again. The way the ortho surgeon explained it to me is that there is still a lot of stiffness in the joint that may counteract any instability from the injury, so we should wait and see, but said if it becomes a problem in the future, he\'d recommend surgery. I was very active in martial arts and scuba diving prior to the accident and I\'m worried that doing nothing will hinder my ability to participate fully in these activities.\r\n\r\nI\'m a 55 y.o. male in good shape with no underlying health conditions (other than the accident).\r\n\r\nMy main concern is cost and time for recovery (will I be able to work).\r\n\r\nThanks',''),(1579,1,196,'11','Not yet, and I want to avoid the need for one in the future',''),(1580,1,196,'13','Google/Internet',''),(1581,1,196,'4','1pm – 3pm',''),(1582,1,197,'6.3','Gearldine Robinson',''),(1583,1,197,'2','needacarcalljr@yahoo.com',''),(1584,1,197,'3','(510) 499-7552',''),(1585,1,197,'5','Problem with pain in right arm',''),(1586,1,197,'11','Not yet, and I want to avoid the need for one in the future',''),(1587,1,197,'13','Facebook',''),(1588,1,197,'4','3pm – 5pm',''),(1589,1,198,'6.3','Eleneled',''),(1590,1,198,'2','karenmorones@mailo.com',''),(1591,1,198,'3','(716) 261-0082',''),(1592,1,198,'5','Yes\r\nhttp://winskippe.ga/chk/21',''),(1593,1,198,'11','Not yet, and I want to avoid the need for one in the future',''),(1594,1,198,'13','Google/Internet',''),(1595,1,198,'4','Anytime',''),(1596,1,199,'6.3','Aimee C Elam',''),(1597,1,199,'2','massagemom217@gmail.com',''),(1598,1,199,'3','(408) 722-6509',''),(1599,1,199,'5','We are patients of Dr. Marvin Anderson. My 15 year old son has had a back injury for 2 years. We have tried numerous treatments and he will experiencing pain. We are ready to give this a try.',''),(1600,1,199,'11','Not yet, and I want to avoid the need for one in the future',''),(1601,1,199,'13','Referred by my doctor/provider',''),(1602,1,199,'4','Anytime',''),(1603,1,200,'6.3','Jeanne',''),(1604,1,200,'2','jeannetoder@yahoo.com',''),(1605,1,200,'3','(904) 501-8109',''),(1606,1,200,'5','I had a kenalog injection last week for ischeal bursitis. I am receiving prolotherapy for a torn guteous medius and minimus tendon. How long should I wait before resuming prolo?',''),(1607,1,200,'11','Not yet, and I want to avoid the need for one in the future',''),(1608,1,200,'4','Anytime',''),(1609,1,201,'6.3','Eric Jones',''),(1610,1,201,'2','ericjonesonline@outlook.com',''),(1611,1,201,'3','(555) 555-1212',''),(1612,1,201,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=drfields.com',''),(1613,1,201,'11','Yes, and I want to avoid it if possible',''),(1614,1,201,'13','Facebook',''),(1615,1,201,'4','1pm – 3pm',''),(1616,1,202,'6.3','Sheila Burke',''),(1617,1,202,'2','sheilburke1939@gmail.com',''),(1618,1,202,'3','(775) 425-2457',''),(1619,1,202,'5','Severe knee pain.',''),(1620,1,202,'11','Yes, and I want to avoid it if possible',''),(1621,1,202,'13','Google/Internet',''),(1622,1,202,'4','Anytime',''),(1623,1,203,'6.3','wagi',''),(1624,1,203,'2','mymatta@me.com',''),(1625,1,203,'3','(818) 781-7090',''),(1626,1,203,'5','I have sciatica since march 2019 .\r\nI have chronic pain I can not stand , walk , setting or even sleep normal most of the time I walk by \r\npending  my body . I need help . I need to fix appointment to treating me  from sciatica pain .\r\nwaiting for your call .\r\n\r\nthanks',''),(1627,1,203,'11','Not yet, and I want to avoid the need for one in the future',''),(1628,1,203,'13','Another healthcare website',''),(1629,1,203,'4','Anytime',''),(1630,1,204,'6.3','Susan',''),(1631,1,204,'2','sn3harts@gmail.com',''),(1632,1,204,'3','(805) 296-2723',''),(1633,1,204,'5','Chronic back pain/1 yr ago shattered shoulder chronic pain Main question is Do you know if Medicare pays for the stem cell treatment?',''),(1634,1,204,'11','Yes, and I want to avoid it if possible',''),(1635,1,204,'13','Google/Internet',''),(1636,1,204,'4','Anytime',''),(1637,1,205,'6.3','jonathan ward',''),(1638,1,205,'2','illjboyHB@gmail.com',''),(1639,1,205,'3','(657) 244-3778',''),(1640,1,205,'5','have\'huge swollen right kneé-lot of fluid\'',''),(1641,1,205,'11','Not yet, and I want to avoid the need for one in the future',''),(1642,1,205,'13','Another healthcare website',''),(1643,1,205,'4','Anytime',''),(1644,1,206,'6.3','ladawn myers',''),(1645,1,206,'2','ladawnmyrs@yahoo.com',''),(1646,1,206,'3','(562) 341-5302',''),(1647,1,206,'5','U have rheumatoid arthritis and my knee\'s are swollen and its hard to walk. Can this help my situation? What\'s the cost of this treatment?',''),(1648,1,206,'11','Yes, and I want to avoid it if possible',''),(1649,1,206,'13','Google/Internet',''),(1650,1,206,'4','9am – 11am',''),(1651,1,207,'6.3','Barbara Voss',''),(1652,1,207,'2','barbvoss@gmail.com',''),(1653,1,207,'3','(408) 316-0655',''),(1654,1,207,'5','I previously was an mid-pack endurance athelete accomplishing many marathons and half ironmans. A year and a half ago I did a downhill marathon and since then my right knee is having a lot of problems. I finally could not run at all, so I saw an orthopedic surgeon who recommended a partial knee replacement (Patella) and a fix to a torn meniscus. I did the menisus repair, but want to avoid the partial knee replacement with all my being. I received the same diagnosis 8-10 years ago, so I am sure there are issues. That being said, I can\'t do any running or climbing on the bike, as that causes a lot of knee pain when I try to sleep. Even without exercising it is terrible at night. The pain is in the inner, lower area of the knee.  Dr. Marv Anderson is my friend, and he recommended that I contact you for a consultation to see if there are alternatives to think about. I have an MRI from last spring available. Thank you!',''),(1655,1,207,'11','Yes, and I want to avoid it if possible',''),(1656,1,207,'13','Friend/family who was/is a patient',''),(1657,1,207,'4','Anytime',''),(1658,1,208,'6.3','Cameron Smith',''),(1659,1,208,'2','cs948273@gmail.com',''),(1660,1,208,'3','(602) 699-1536',''),(1661,1,208,'5','I have had 2 hip replacements and now my left knee is bothering me alot. According to the x-rays there is almost bone on bone in a couple of places in the knee joint itself. I do not want to go through another surgery with possibly a 3 year recovery period with no promises that it would even work.',''),(1662,1,208,'11','Not yet, and I want to avoid the need for one in the future',''),(1663,1,208,'13','Google/Internet',''),(1664,1,208,'4','Anytime',''),(1665,1,209,'6.3','Cameron Smith',''),(1666,1,209,'2','cs948273@gmail.com',''),(1667,1,209,'3','(602) 699-1536',''),(1668,1,209,'5','I have had 2 hip replacements and now my left knee is bothering me alot. According to the x-rays there is almost bone on bone in a couple of places in the knee joint itself. I do not want to go through another surgery with possibly a 3 year recovery period with no promises that it would even work.',''),(1669,1,209,'11','Not yet, and I want to avoid the need for one in the future',''),(1670,1,209,'13','Google/Internet',''),(1671,1,209,'4','Anytime',''),(1672,1,210,'6.3','Cameron Smith',''),(1673,1,210,'2','cs948273@gmail.com',''),(1674,1,210,'3','(602) 699-1536',''),(1675,1,210,'5','I have had 2 hip replacements and now my left knee is bothering me alot. According to the x-rays there is almost bone on bone in a couple of places in the knee joint itself. I do not want to go through another surgery with possibly a 3 year recovery period with no promises that it would even work.',''),(1676,1,210,'11','Not yet, and I want to avoid the need for one in the future',''),(1677,1,210,'13','Google/Internet',''),(1678,1,210,'4','Anytime',''),(1679,1,211,'6.3','Pierre Bertolino',''),(1680,1,211,'2','pierrejbertolino@gmail.com',''),(1681,1,211,'3','(949) 735-7075',''),(1682,1,211,'5','LEFT SHOULUDER TORM ROTATOR CUFF, CONSTANT PAIN AND MOVEMENT GREATLY RESTRICTED. IS THIS COVERED BY MEDICARE?',''),(1683,1,211,'11','Yes, and I want to avoid it if possible',''),(1684,1,211,'13','Google/Internet',''),(1685,1,211,'4','Anytime',''),(1686,1,212,'6.3','Cameron Smith',''),(1687,1,212,'2','22cs948273@gmail.com',''),(1688,1,212,'3','(602) 699-1536',''),(1689,1,212,'5','I have had 2 hip replacements and now my left knee is bothering me alot. According to the x-rays there is almost bone on bone in a couple of places in the knee joint itself. I do not want to go through another surgery with possibly a 3 year recovery period with no promises that it would even work.',''),(1690,1,212,'11','Not yet, and I want to avoid the need for one in the future',''),(1691,1,212,'13','Google/Internet',''),(1692,1,212,'4','Anytime',''),(1693,1,213,'6.3','Cameron Smith',''),(1694,1,213,'2','22cs948273@gmail.com',''),(1695,1,213,'3','(602) 699-1536',''),(1696,1,213,'5','I have had 2 hip replacements and now my left knee is bothering me alot. According to the x-rays there is almost bone on bone in a couple of places in the knee joint itself. I do not want to go through another surgery with possibly a 3 year recovery period with no promises that it would even work.',''),(1697,1,213,'11','Not yet, and I want to avoid the need for one in the future',''),(1698,1,213,'13','Google/Internet',''),(1699,1,213,'4','Anytime',''),(1700,1,214,'6.3','Shookou Shekofte',''),(1701,1,214,'2','yeswecangosolar@gmail.com',''),(1702,1,214,'3','(818) 667-9145',''),(1703,1,214,'5','Knee and foot, low back pain.',''),(1704,1,214,'11','Not yet, and I want to avoid the need for one in the future',''),(1705,1,214,'13','Friend/family who was/is a patient',''),(1706,1,214,'4','Anytime',''),(1707,1,215,'6.3','Nolan Reardon',''),(1708,1,215,'2','nolansk8s@sbcglobal.net',''),(1709,1,215,'3','(310) 280-6923',''),(1710,1,215,'5','Chronic upper neck pain for almost one year. Told by chiropractor that it\'s cervical instability. Symptoms are pain, lightheadedness, brain fog, eye discomfort.',''),(1711,1,215,'11','Not yet, and I want to avoid the need for one in the future',''),(1712,1,215,'13','Google/Internet',''),(1713,1,215,'4','Anytime',''),(1714,1,216,'6.3','Miriam illouz',''),(1715,1,216,'2','shalom@powerfullsystems.com',''),(1716,1,216,'3','(310) 801-1823',''),(1717,1,216,'5','Right shoulder one tendon worn out',''),(1718,1,216,'11','Yes, and I want to avoid it if possible',''),(1719,1,216,'13','Referred by my doctor/provider',''),(1720,1,216,'4','Anytime',''),(1721,1,217,'6.3','Reed',''),(1722,1,217,'2','samcan248@gmail.com',''),(1723,1,217,'3','(323) 592-3755',''),(1724,1,217,'5','Idk',''),(1725,1,217,'11','Not yet, and I want to avoid the need for one in the future',''),(1726,1,217,'13','Referred by my doctor/provider',''),(1727,1,217,'4','3pm – 5pm',''),(1728,1,218,'6.3','Joe',''),(1729,1,218,'2','info@domainworld.com',''),(1730,1,218,'3','(125) 485-9342',''),(1731,1,218,'5','Notice#: 491343\r\nDate: 2021-02-09  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN alternativekneereplacement.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain alternativekneereplacement.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain alternativekneereplacement.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-registrar.ga/?n=alternativekneereplacement.com&r=a&t=1612817015&p=v13\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN alternativekneereplacement.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-registrar.ga/?n=alternativekneereplacement.com&r=a&t=1612817015&p=v13\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification alternativekneereplacement.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(1732,1,218,'11','Yes, and I want to avoid it if possible',''),(1733,1,218,'13','Facebook',''),(1734,1,218,'4','3pm – 5pm',''),(1735,1,219,'6.3','Joe',''),(1736,1,219,'2','info@domainworld.com',''),(1737,1,219,'3','(125) 485-9342',''),(1738,1,219,'11','Yes, and I want to avoid it if possible',''),(1739,1,219,'13','I am a current patient/was a patient previously',''),(1740,1,219,'4','9am – 11am',''),(1741,1,220,'6.3','Joe',''),(1742,1,220,'2','info@domainworld.com',''),(1743,1,220,'3','(125) 485-9342',''),(1744,1,220,'5','Notice#: 491343\r\nDate: 2021-02-09  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN alternativekneereplacement.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain alternativekneereplacement.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain alternativekneereplacement.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-registrar.ga/?n=alternativekneereplacement.com&r=a&t=1612820633&p=v13\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN alternativekneereplacement.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-registrar.ga/?n=alternativekneereplacement.com&r=a&t=1612820633&p=v13\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification alternativekneereplacement.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(1745,1,220,'11','Yes, and I want to avoid it if possible',''),(1746,1,220,'13','Google/Internet',''),(1747,1,220,'4','9am – 11am',''),(1748,1,221,'6.3','Thomas Mazzarella',''),(1749,1,221,'2','tom@mazz.com',''),(1750,1,221,'3','(860) 940-9838',''),(1751,1,221,'5','I am scheduled for hip surgery April 6th, I just got a video from Dr. Nick Delgado who interviewed Dr. Fields, I watched it and was wondering if Dr. Fields can help me. I do not live in California, I live in Connecticut.  My hip ball is out of place,(displaisia) ... my Dr, says I may have been born with it. I am in very little pain, but cannot bend over to put on my socks, very frustrating as I am an active 63 year old.',''),(1752,1,221,'11','Not yet, and I want to avoid the need for one in the future',''),(1753,1,221,'13','Referred by my doctor/provider',''),(1754,1,221,'4','9am – 11am',''),(1755,1,222,'6.3','Joe',''),(1756,1,222,'2','info@domainworld.com',''),(1757,1,222,'3','(125) 485-9342',''),(1758,1,222,'5','Notice#: 491343\r\nDate: 2021-02-09  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN alternativekneereplacement.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain alternativekneereplacement.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain alternativekneereplacement.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-registrar.ga/?n=alternativekneereplacement.com&r=a&t=1612823093&p=v13\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN alternativekneereplacement.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-registrar.ga/?n=alternativekneereplacement.com&r=a&t=1612823093&p=v13\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification alternativekneereplacement.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(1759,1,222,'11','Yes, and I want to avoid it if possible',''),(1760,1,222,'13','I am a current patient/was a patient previously',''),(1761,1,222,'4','9am – 11am',''),(1762,1,223,'6.3','Joe',''),(1763,1,223,'2','info@domainworld.com',''),(1764,1,223,'3','(125) 485-9342',''),(1765,1,223,'11','Yes, and I want to avoid it if possible',''),(1766,1,223,'13','Friend/family who was/is a patient',''),(1767,1,223,'4','3pm – 5pm',''),(1768,1,224,'6.3','Joe',''),(1769,1,224,'2','info@domainworld.com',''),(1770,1,224,'3','(125) 485-9342',''),(1771,1,224,'5','Notice#: 491343\r\nDate: 2021-02-09  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN alternativekneereplacement.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain alternativekneereplacement.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain alternativekneereplacement.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-registrar.ga/?n=alternativekneereplacement.com&r=a&t=1612828106&p=v13\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN alternativekneereplacement.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-registrar.ga/?n=alternativekneereplacement.com&r=a&t=1612828106&p=v13\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification alternativekneereplacement.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(1772,1,224,'11','Yes, and I want to avoid it if possible',''),(1773,1,224,'13','Friend/family who was/is a patient',''),(1774,1,224,'4','11am – 1pm',''),(1775,1,225,'6.3','holly dodd',''),(1776,1,225,'2','hollyallyson@gmail.com',''),(1777,1,225,'3','(703) 231-1525',''),(1778,1,225,'5','I underwent ACL  repair surgery on 1/20/2021. About 80% of my ACL was torn but the blood flow was still strong and the surgeon decided that the quality of the tissue and unique clean tear of the ligament made me a good candidate for repair instead of reconstruction. It has been suggested that I follow up with either RPR, amniotic fluid or bone marrow to maximize my odds of a successful repair. I would like to schedule a consultation to go over those options. \r\n\r\nThanks!',''),(1779,1,225,'11','Yes, and I want to avoid it if possible',''),(1780,1,225,'13','Google/Internet',''),(1781,1,225,'4','Anytime',''),(1782,1,226,'6.3','andrew dominik',''),(1783,1,226,'2','email@qualityguestpost.info',''),(1784,1,226,'3','(203) 663-8663',''),(1785,1,226,'5','Hello,\r\n\r\nI hope your family is safe and doing well!\r\n \r\nWe\'re wondering if you are looking for guest post service to help your SEO & branding?\r\n\r\nIf the answer is Yes, We can surely help you to get more guest posts on relevant blogs at USD 30 per post with writing. If you have no idea what I am talking about, Just forward this email to your SEO agency, so we can work together for you to achieve the best possible outcome.\r\n \r\nYou can also try our service here qualityguestpost.com and www.qualityguestpost.com/shop (premium estore)\r\n \r\nStay safe and healthy!\r\n\r\n\r\nKind regards,\r\nAndrew Dominik\r\nSkype: qualityguestpost\r\nwww.qualityguestpost.com\r\n\r\nTo Unsubscribe: Reply with \"NO\"',''),(1786,1,226,'11','Not yet, and I want to avoid the need for one in the future',''),(1787,1,226,'13','Referred by my doctor/provider',''),(1788,1,226,'4','Anytime',''),(1789,1,227,'6.3','Rachel Sandoval',''),(1790,1,227,'2','cow68plus2@yahoo.com',''),(1791,1,227,'3','(562) 340-2435',''),(1792,1,227,'5','Chornic Neck, arthritis and leg pain in ankles. I wish to also bring my son for his muscle pull in his left calf muscle to see PRP therapy.',''),(1793,1,227,'11','Not yet, and I want to avoid the need for one in the future',''),(1794,1,227,'13','Google/Internet',''),(1795,1,227,'4','Anytime',''),(1796,1,228,'6.3','Tina',''),(1797,1,228,'2','ashinikodaisy@gmail.com',''),(1798,1,228,'3','(916) 258-8535',''),(1799,1,228,'5','Spine is hurting I did to much porn hub',''),(1800,1,228,'11','Yes, and I want to avoid it if possible',''),(1801,1,228,'13','Google/Internet',''),(1802,1,228,'4','Anytime',''),(1803,1,229,'6.3','Joe',''),(1804,1,229,'2','info@domainregistercorp.com',''),(1805,1,229,'3','(125) 485-9342',''),(1806,1,229,'5','Notice#: 491343\r\nDate: 2021-02-10  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN jointregen.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain jointregen.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain jointregen.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga/?n=jointregen.com&r=a&t=1612936449&p=v11\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN jointregen.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga/?n=jointregen.com&r=a&t=1612936449&p=v11\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification jointregen.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(1807,1,229,'11','Yes, and I want to avoid it if possible',''),(1808,1,229,'13','Friend/family who was/is a patient',''),(1809,1,229,'4','9am – 11am',''),(1810,1,230,'6.3','Joe',''),(1811,1,230,'2','info@domainregistercorp.com',''),(1812,1,230,'3','(125) 485-9342',''),(1813,1,230,'5','Notice#: 491343\r\nDate: 2021-02-11  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN jointregen.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain jointregen.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain jointregen.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga/?n=jointregen.com&r=a&t=1612942671&p=v11\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN jointregen.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga/?n=jointregen.com&r=a&t=1612942671&p=v11\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification jointregen.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(1814,1,230,'11','Yes, and I want to avoid it if possible',''),(1815,1,230,'13','I am a current patient/was a patient previously',''),(1816,1,230,'4','9am – 11am',''),(1817,1,231,'6.3','Joe',''),(1818,1,231,'2','info@domainregistercorp.com',''),(1819,1,231,'3','(125) 485-9342',''),(1820,1,231,'5','Notice#: 491343\r\nDate: 2021-02-11  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN jointregen.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain jointregen.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain jointregen.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga/?n=jointregen.com&r=a&t=1612949223&p=v11\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN jointregen.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga/?n=jointregen.com&r=a&t=1612949223&p=v11\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification jointregen.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(1821,1,231,'11','Yes, and I want to avoid it if possible',''),(1822,1,231,'13','Google/Internet',''),(1823,1,231,'4','3pm – 5pm',''),(1824,1,232,'6.3','Robert Brown',''),(1825,1,232,'2','brownsroberts@gmail.com',''),(1826,1,232,'3','(093) 304-4219',''),(1827,1,232,'5','Hello,\r\n \r\nHow are you? Hope you are fine.\r\n \r\nI have been checking your website quite often. It has seen that the main keywords are still not in the top 10 positions in Google Search. You know things about working; I mean the procedure of working has changed a lot.\r\n \r\nSo I would like to have opportunity to work for you and this time we will bring the keywords to the top 10 spots with guaranteed period.\r\n \r\nThere is no wonder that it is possible now cause, I have found out that there are few things that need to be done for better performances (Some of them we will discuss in this email). Let me tell you some of them -\r\n \r\n1. Title Tag Optimization\r\n2. Meta Tag Optimization (Description, keyword and etc)\r\n3. Heading Tags Optimization\r\n4. Targeted keywords are not placed into tags\r\n5. Alt / Image tags Optimization\r\n6. Google Structured Data is missing\r\n7. Custom 404 Page is missing\r\n8. The Products are not following Structured markup data\r\n9. Website Loading Speed Development (Both Mobile and Desktop )\r\n10.Off –Page SEO work\r\n \r\nLots are pending……………..\r\n \r\nYou can see these are the things that need to be done properly to make the keywords others to get into the top 10 spots in Google Search & your sales Increase.\r\n \r\n \r\nSir/ Madam, please give us a chance to fix these errors and we will give you rank on these keywords.\r\n \r\nPlease let me know if you encounter any problems or if there is anything you need. If this email has reached you by mistake or if you do not wish to take advantage of this advertising opportunity, please accept my apology for any inconvenience caused and rest assured that you will not be contacted again.\r\n \r\nMany thanks for your time and consideration,\r\n \r\nLooking forward\r\n \r\nRegards\r\nRobert Brown\r\n\r\nIf you do not wish to receive this again, please reply with \"unsubscribe\" in the subject line.',''),(1828,1,232,'11','Not yet, and I want to avoid the need for one in the future',''),(1829,1,232,'13','Google/Internet',''),(1830,1,232,'4','11am – 1pm',''),(1831,1,233,'6.3','Eric Jones',''),(1832,1,233,'2','eric.jones.z.mail@gmail.com',''),(1833,1,233,'3','(555) 555-1212',''),(1834,1,233,'5','My name_s Eric and I just found your site drfields.com.\r\n\r\nIt_s got a lot going for it, but here_s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor _ CLICK HERE https://talkwithwebvisitors.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nAnd once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation_ and if they don_t take you up on your offer then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment. Don_t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=drfields.com',''),(1835,1,233,'11','Yes, and I want to avoid it if possible',''),(1836,1,233,'13','Friend/family who was/is a patient',''),(1837,1,233,'4','3pm – 5pm',''),(1838,1,234,'6.3','Kimberly Hoffmann, DC',''),(1839,1,234,'2','drkimhoffmann@gmail.com',''),(1840,1,234,'3','(310) 955-0732',''),(1841,1,234,'5','Hi Dr Fields,\r\nIt’s been a handful of years since my last visit.  At that time I had 8 prolotherapy treatments and 1 PRP treatment for my left knee.  Checking in on the present fee structure for these same  services including stem cell.  \r\nThank you,\r\nKim Hoffmann, DC\r\nPS. Wow! 11 IRONMANS!  Extra-ordinary',''),(1842,1,234,'11','Yes, and I want to avoid it if possible',''),(1843,1,234,'13','I am a current patient/was a patient previously',''),(1844,1,234,'4','Anytime',''),(1845,1,235,'6.3','Robert Brown',''),(1846,1,235,'2','brownsroberts@gmail.com',''),(1847,1,235,'3','(933) 044-2191',''),(1848,1,235,'5','Hello,\r\n \r\nHow are you? Hope you are fine.\r\n \r\nI have been checking your website quite often. It has seen that the main keywords are still not in the top 10 positions in Google Search. You know things about working; I mean the procedure of working has changed a lot.\r\n \r\nSo I would like to have opportunity to work for you and this time we will bring the keywords to the top 10 spots with guaranteed period.\r\n \r\nThere is no wonder that it is possible now cause, I have found out that there are few things that need to be done for better performances (Some of them we will discuss in this email). Let me tell you some of them -\r\n \r\n1. Title Tag Optimization\r\n2. Meta Tag Optimization (Description, keyword and etc)\r\n3. Heading Tags Optimization\r\n4. Targeted keywords are not placed into tags\r\n5. Alt / Image tags Optimization\r\n6. Google Structured Data is missing\r\n7. Custom 404 Page is missing\r\n8. The Products are not following Structured markup data\r\n9. Website Loading Speed Development (Both Mobile and Desktop )\r\n10.Off –Page SEO work\r\n \r\nLots are pending……………..\r\n \r\nYou can see these are the things that need to be done properly to make the keywords others to get into the top 10 spots in Google Search & your sales Increase.\r\n \r\n \r\nSir/ Madam, please give us a chance to fix these errors and we will give you rank on these keywords.\r\n \r\nPlease let me know if you encounter any problems or if there is anything you need. If this email has reached you by mistake or if you do not wish to take advantage of this advertising opportunity, please accept my apology for any inconvenience caused and rest assured that you will not be contacted again.\r\n \r\nMany thanks for your time and consideration,\r\n \r\nLooking forward\r\n \r\nRegards\r\nRobert Brown\r\n\r\nIf you do not wish to receive this again, please reply with \"unsubscribe\" in the subject line.',''),(1849,1,235,'11','Not yet, and I want to avoid the need for one in the future',''),(1850,1,235,'13','Google/Internet',''),(1851,1,235,'4','Anytime',''),(1852,1,236,'6.3','Jason Engle',''),(1853,1,236,'2','jasonbengle@outlook.com',''),(1854,1,236,'3','(323) 304-3084',''),(1855,1,236,'5','My right elbow is in pain. It mostly is activated from lifting of tricep specific exercises. Last person that looked at it said my tendon was pulling on the bone. But he couldn’t offer any treatment besides stop doing what I am doing.',''),(1856,1,236,'11','Not yet, and I want to avoid the need for one in the future',''),(1857,1,236,'13','Friend/family who was/is a patient',''),(1858,1,236,'4','Anytime',''),(1859,1,237,'6.3','Joe',''),(1860,1,237,'2','info@domainregistercorp.com',''),(1861,1,237,'3','(125) 485-9342',''),(1862,1,237,'5','Notice#: 491343\r\nDate: 2021-02-14  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN theathleticdoc.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain theathleticdoc.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain theathleticdoc.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domaincorp.ga/?n=theathleticdoc.com&r=a&t=1613210774&p=v4\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN theathleticdoc.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domaincorp.ga/?n=theathleticdoc.com&r=a&t=1613210774&p=v4\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification theathleticdoc.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(1863,1,237,'11','Yes, and I want to avoid it if possible',''),(1864,1,237,'13','Referred by my doctor/provider',''),(1865,1,237,'4','3pm – 5pm',''),(1866,1,238,'6.3','Joe',''),(1867,1,238,'2','info@domainregistercorp.com',''),(1868,1,238,'3','(125) 485-9342',''),(1869,1,238,'5','Notice#: 491343\r\nDate: 2021-02-14  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN theathleticdoc.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain theathleticdoc.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain theathleticdoc.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domaincorp.ga/?n=theathleticdoc.com&r=a&t=1613280245&p=v4\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN theathleticdoc.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domaincorp.ga/?n=theathleticdoc.com&r=a&t=1613280245&p=v4\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification theathleticdoc.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(1870,1,238,'11','Yes, and I want to avoid it if possible',''),(1871,1,238,'13','Google/Internet',''),(1872,1,238,'4','1pm – 3pm',''),(1873,1,239,'6.3','Joe',''),(1874,1,239,'2','info@domainregistercorp.com',''),(1875,1,239,'3','(125) 485-9342',''),(1876,1,239,'5','Notice#: 491343\r\nDate: 2021-02-15  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN theathleticdoc.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain theathleticdoc.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain theathleticdoc.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domaincorp.ga/?n=theathleticdoc.com&r=a&t=1613285239&p=v4\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN theathleticdoc.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domaincorp.ga/?n=theathleticdoc.com&r=a&t=1613285239&p=v4\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification theathleticdoc.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(1877,1,239,'11','Yes, and I want to avoid it if possible',''),(1878,1,239,'13','I am a current patient/was a patient previously',''),(1879,1,239,'4','11am – 1pm',''),(1880,1,240,'6.3','Joe',''),(1881,1,240,'2','info@domainregistercorp.com',''),(1882,1,240,'3','(125) 485-9342',''),(1883,1,240,'5','Notice#: 491343\r\nDate: 2021-02-15  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN renujoint.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain renujoint.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain renujoint.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domaincorp.ga/?n=renujoint.com&r=a&t=1613315021&p=v11\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN renujoint.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domaincorp.ga/?n=renujoint.com&r=a&t=1613315021&p=v11\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification renujoint.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(1884,1,240,'11','Yes, and I want to avoid it if possible',''),(1885,1,240,'13','Another healthcare website',''),(1886,1,240,'4','11am – 1pm',''),(1887,1,241,'6.3','Joe',''),(1888,1,241,'2','info@domainregistercorp.com',''),(1889,1,241,'3','(125) 485-9342',''),(1890,1,241,'5','Notice#: 491343\r\nDate: 2021-02-15  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN renujoint.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain renujoint.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain renujoint.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domaincorp.ga/?n=renujoint.com&r=a&t=1613317996&p=v11\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN renujoint.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domaincorp.ga/?n=renujoint.com&r=a&t=1613317996&p=v11\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification renujoint.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(1891,1,241,'11','Yes, and I want to avoid it if possible',''),(1892,1,241,'13','YouTube',''),(1893,1,241,'4','11am – 1pm',''),(1894,1,242,'6.3','Joe',''),(1895,1,242,'2','info@domainregistercorp.com',''),(1896,1,242,'3','(125) 485-9342',''),(1897,1,242,'5','Notice#: 491343\r\nDate: 2021-02-15  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN jointregen.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain jointregen.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain jointregen.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domaincorp.ga/?n=jointregen.com&r=a&t=1613335376&p=v11\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN jointregen.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domaincorp.ga/?n=jointregen.com&r=a&t=1613335376&p=v11\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification jointregen.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(1898,1,242,'11','Yes, and I want to avoid it if possible',''),(1899,1,242,'13','Another healthcare website',''),(1900,1,242,'4','9am – 11am',''),(1901,1,243,'6.3','Joe',''),(1902,1,243,'2','info@domainregistercorp.com',''),(1903,1,243,'3','(125) 485-9342',''),(1904,1,243,'5','Notice#: 491343\r\nDate: 2021-02-15  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN renujoint.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain renujoint.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain renujoint.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domaincorp.ga/?n=renujoint.com&r=a&t=1613335741&p=v11\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN renujoint.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domaincorp.ga/?n=renujoint.com&r=a&t=1613335741&p=v11\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification renujoint.com will EXPIRE WITHIN 24 HOURS after reception of this email',''),(1905,1,243,'11','Yes, and I want to avoid it if possible',''),(1906,1,243,'13','I am a current patient/was a patient previously',''),(1907,1,243,'4','3pm – 5pm',''),(1908,1,244,'6.3','Don miller',''),(1909,1,244,'2','don@evergoodfoods.com',''),(1910,1,244,'3','(415) 971-9002',''),(1911,1,244,'5','Low back issues for years.  Numerous epidurals and have two Laminectomy surgeries Dr Gordon Tang, Alta bates Berkeley Ca. \r\nAge. 66 former athlete .  Harley rider.. even gavig bad arthritis issues in my shoulders.\r\nRecommend by former Ca Football teammate Dr Ned Vessey \r\nI live in the SF Bay Area',''),(1912,1,244,'11','Not yet, and I want to avoid the need for one in the future',''),(1913,1,244,'4','Anytime',''),(1914,1,245,'6.3','Eric Jones',''),(1915,1,245,'2','eric.jones.z.mail@gmail.com',''),(1916,1,245,'3','(555) 555-1212',''),(1917,1,245,'5','Hey, my name_s Eric and for just a second, imagine this_\r\n\r\n- Someone does a search and winds up at drfields.com.\r\n\r\n- They hang out for a minute to check it out.  _I_m interested_ but_ maybe__\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line _ you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn_t really your fault _ it happens a LOT _ studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know right then and there _ enabling you to call that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation_ so even if you don_t close a deal then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=drfields.com',''),(1918,1,245,'11','Yes, and I want to avoid it if possible',''),(1919,1,245,'13','Facebook',''),(1920,1,245,'4','1pm – 3pm',''),(1921,1,246,'6.3','Devin',''),(1922,1,246,'2','lilpeeda@gmail.com',''),(1923,1,246,'3','(504) 258-5585',''),(1924,1,246,'5','Drgge',''),(1925,1,246,'11','Not yet, and I want to avoid the need for one in the future',''),(1926,1,246,'13','YouTube',''),(1927,1,246,'4','11am – 1pm',''),(1928,1,247,'6.3','Eric Jones',''),(1929,1,247,'2','eric.jones.z.mail@gmail.com',''),(1930,1,247,'3','(555) 555-1212',''),(1931,1,247,'5','My name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=drfields.com',''),(1932,1,247,'11','Yes, and I want to avoid it if possible',''),(1933,1,247,'13','Another healthcare website',''),(1934,1,247,'4','1pm – 3pm',''),(1935,1,248,'6.3','Elias Chaul',''),(1936,1,248,'2','echaul@cia-logistics.com',''),(1937,1,248,'3','(323) 313-7159',''),(1938,1,248,'5','2 years ago a rupture in a herniated disk triggered a bad episode of sciatica, PCP ordered x- rays and diagnosed the above + 2 more herniated disks. Still bothered by lower back pain and numbness on side of lower left leg down to foot. PCP prescribed Gabapentin 300mg & 2 sessions of physical therapy which finished just before pandemic started last year!',''),(1939,1,248,'11','Not yet, and I want to avoid the need for one in the future',''),(1940,1,248,'13','Google/Internet',''),(1941,1,248,'4','3pm – 5pm',''),(1942,1,249,'6.3','Carolyn Bryan',''),(1943,1,249,'2','cgbryan09@gmail.com',''),(1944,1,249,'3','(760) 605-2535',''),(1945,1,249,'5','Hello,\r\n\r\nMy name is Carolyn Bryan and I am a Ehlers Danlos patient hypermobility type (heds). \r\n\r\nI have been suffering with debilitating symptoms (see below) and I strong reason to believe these symptoms are related to cspine instability and compression of the vagus nerve.  I am seeing my 3rd neurologist and present with the following symptoms:\r\n\r\nMCAS\r\nANXIETY\r\nGASTROINTESTINAL DISTURBANCES \r\nPOTS\r\n      -fluctuating BP, dizziness, severe brain fog, \r\n       breathing disturbances with an increase of           \r\n        Anxiety \r\nTREMORS (PREVALENT DURING PHYSICAL THERAPY OF THE CSPINE; WHEN A FOOD SENSITIVITY IS ENCOUNTERED (I BELIEVE THIS HAD TO DO WITH MCAS GENERATED BY LEAKY GUT) ALSO DURING MENSTRUATION (I BELIEVE THE RELEASE OF RELAXIN)). \r\nHyperreflexia \r\nHypermobility \r\nPERIPHERAL NEUROPATHY WITH NO LOSS IN NERVE FUNCTION\r\nSUDDEN LEG WEAKNESS AND COLLAPSE WITH SIGNIFICANT LOSS OF STRENGTH ON MY LEFT SIDE.\r\nPAIN PRESSURE BEHIND THE LEFT EYE DURING \"ATTACKS\" which result in left gait DISTURBANCES, extreme pain, and disruption of my gastrointestinal and autonomic system.\r\nSYMPTOMS ARE PREVALENT ON LEFT SIDE OF MY BODY\r\n\r\nI AM ON MY 3RD NEUROLOGIST AND TESTS ARE NOT PROVING FRUITFUL EXCEPT FOR A SLIGHT DISTURBANCE IN MY THORACIC SPINE, EVIDENCE OF INFLAMMATORY DISTURBANCES IN MY BODY.\r\n\r\nI have sought a known EDS specialist outside of my insurance network  a DR. FAGAN out of Aspen Geriatrics as it has been difficult to find many well rounded knowledgeable physicians of my condition..After ruling out neck instability, pointed me in the direction of potential cspine instability.  I have been doing much extensive individualized research and have pinpointed this therapy as extremely relevant to my situation as symptoms are irrevocably significant and I believe this therapy can potentially give me my life back..',''),(1946,1,249,'11','Not yet, and I want to avoid the need for one in the future',''),(1947,1,249,'13','Another healthcare website',''),(1948,1,249,'4','Anytime',''),(1949,1,250,'6.3','Ellen Jeskey',''),(1950,1,250,'2','jeskey75@gmail.com',''),(1951,1,250,'3','(153) 070-1515',''),(1952,1,250,'5','Torn meniscus, which was repaired once, worn out joint, bone on bone. Joint catches and snaps causing excessive pain, great pain and difficult to stand.',''),(1953,1,250,'11','Yes, and I want to avoid it if possible',''),(1954,1,250,'13','Google/Internet',''),(1955,1,250,'4','11am – 1pm',''),(1956,1,251,'6.3','Eric Jones',''),(1957,1,251,'2','eric.jones.z.mail@gmail.com',''),(1958,1,251,'3','(555) 555-1212',''),(1959,1,251,'5','Hello, my name_s Eric and I just ran across your website at drfields.com...\r\n\r\nI found it after a quick search, so your SEO_s working out_\r\n\r\nContent looks pretty good_\r\n\r\nOne thing_s missing though_\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds _ 7 out of 10 disappear almost instantly, Surf Surf Surf_ then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to TALK with them - literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try_ it could be huge for your business.\r\n\r\nPlus, now that you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto_ which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=drfields.com',''),(1960,1,251,'11','Yes, and I want to avoid it if possible',''),(1961,1,251,'13','Friend/family who was/is a patient',''),(1962,1,251,'4','9am – 11am',''),(1963,1,252,'6.3','Kevin',''),(1964,1,252,'2','kevinthibault762@gmail.com',''),(1965,1,252,'3','(719) 480-0570',''),(1966,1,252,'5','Rotater cuffs both of them',''),(1967,1,252,'11','Not yet, and I want to avoid the need for one in the future',''),(1968,1,252,'13','Google/Internet',''),(1969,1,252,'4','3pm – 5pm',''),(1970,1,253,'6.3','Kirsten Blakemore',''),(1971,1,253,'2','Kirstencoma@gmail.com',''),(1972,1,253,'3','(310) 384-7365',''),(1973,1,253,'5','My son is a pitcher and has been for 7 years.  He has never had elbow pain pitching before and now does.  I want to make sure it is not his growth plate or something worse.  He is 15 years old.',''),(1974,1,253,'11','Not yet, and I want to avoid the need for one in the future',''),(1975,1,253,'13','I am a current patient/was a patient previously',''),(1976,1,253,'4','Anytime',''),(1977,1,254,'6.3','Jasmine Denver',''),(1978,1,254,'2','jassyd@gmail.com',''),(1979,1,254,'3','(909) 463-9521',''),(1980,1,254,'5','Pain every single day',''),(1981,1,254,'11','Not yet, and I want to avoid the need for one in the future',''),(1982,1,254,'13','Friend/family who was/is a patient',''),(1983,1,254,'4','3pm – 5pm',''),(1984,1,255,'6.3','Andrew Makay',''),(1985,1,255,'2','andrew@n2nbodywear.com',''),(1986,1,255,'3','(310) 770-8437',''),(1987,1,255,'5','I’m 54, been diagnosed with osteoarthritis in my hips. I take supplements and am diligent about stretching and doing exercises but there is still pain everyday.',''),(1988,1,255,'11','Not yet, and I want to avoid the need for one in the future',''),(1989,1,255,'13','Google/Internet',''),(1990,1,255,'4','Anytime',''),(1991,1,256,'6.3','Eric Jones',''),(1992,1,256,'2','eric.jones.z.mail@gmail.com',''),(1993,1,256,'3','(555) 555-1212',''),(1994,1,256,'5','Hi, my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nTalk With Web Visitor _ CLICK HERE https://talkwithwebvisitors.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=drfields.com',''),(1995,1,256,'11','Yes, and I want to avoid it if possible',''),(1996,1,256,'13','I am a current patient/was a patient previously',''),(1997,1,256,'4','9am – 11am',''),(1998,1,257,'6.3','Cristina Austin',''),(1999,1,257,'2','cristinaaustin@yahoo.com',''),(2000,1,257,'3','(714) 749-8911',''),(2001,1,257,'5','Hi Staff! So nice to say hello to you all once again! \r\nMy family and I moved to Florida and we definitely    miss Dr Field’s treatments. Kids are doing great with all the treatments and we wish we could be there till continue Mike’s back treatments. \r\nI was wondering does Dr Field’s have colleague somewhere in Central Florida that he can recommend? Please advise. \r\nBest Regards,\r\nCristina Austin',''),(2002,1,257,'11','Not yet, and I want to avoid the need for one in the future',''),(2003,1,257,'13','I am a current patient/was a patient previously',''),(2004,1,257,'4','Anytime',''),(2005,1,258,'6.3','kindra eversdyk',''),(2006,1,258,'2','keversdyk1978@gmail.com',''),(2007,1,258,'3','(530) 415-5154',''),(2008,1,258,'5','I have L5-S1 protrusion, annular tear, degenerative disc disease, numbing in areas that should not be numb, major pain, si joint dysfunction and more,  all waiting around for pain management and my GP doesn\'t think I am in a lot of pain and won\'t talk about it. I can\'t keep living like this. I am only 43',''),(2009,1,258,'11','Not yet, and I want to avoid the need for one in the future',''),(2010,1,258,'13','Google/Internet',''),(2011,1,258,'4','3pm – 5pm',''),(2012,1,259,'6.3','Eric Jones',''),(2013,1,259,'2','eric.jones.z.mail@gmail.com',''),(2014,1,259,'3','(555) 555-1212',''),(2015,1,259,'5','My name_s Eric and I just found your site drfields.com.\r\n\r\nIt_s got a lot going for it, but here_s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor _ CLICK HERE https://talkwithwebvisitors.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nAnd once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation_ and if they don_t take you up on your offer then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment. Don_t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=drfields.com',''),(2016,1,259,'11','Yes, and I want to avoid it if possible',''),(2017,1,259,'13','Referred by my doctor/provider',''),(2018,1,259,'4','1pm – 3pm',''),(2019,1,260,'6.3','Brad Winkeljohn',''),(2020,1,260,'2','winkelb@gmail.com',''),(2021,1,260,'3','(310) 993-4797',''),(2022,1,260,'5','Plantar fasciitisin left foot keeping me from athletics',''),(2023,1,260,'11','Not yet, and I want to avoid the need for one in the future',''),(2024,1,260,'13','Google/Internet',''),(2025,1,260,'4','Anytime',''),(2026,1,261,'6.3','samuel gonzales jr',''),(2027,1,261,'2','gonzalesautorepair@gmail.com',''),(2028,1,261,'3','(661) 301-2041',''),(2029,1,261,'5','both knee are missing about half of cartl.my knees hurt.I went scoi and after xrays was told i needed knee replacement which my insurrance covers.but was told that i was not a good canidate because of my weight and possible bad circulation.I weigh about 295 and doc says I have be under 285.he gave me cordozon shot did not help one bit,then something with 2 siringe shots in each knee did not work.that stuff suppose to work in on month its going 3 months,still hurts',''),(2030,1,261,'11','Not yet, and I want to avoid the need for one in the future',''),(2031,1,261,'13','Google/Internet',''),(2032,1,261,'4','11am – 1pm',''),(2033,1,262,'6.3','Avetis Pashayan',''),(2034,1,262,'2','smogclinic@aol.com',''),(2035,1,262,'3','(626) 354-9901',''),(2036,1,262,'5','Recently  was diagnosed with spondylolisthesis, would like to find out if I\'m a candidate for therapy.',''),(2037,1,262,'11','Not yet, and I want to avoid the need for one in the future',''),(2038,1,262,'13','Friend/family who was/is a patient',''),(2039,1,262,'4','Anytime',''),(2040,1,263,'6.3','Larklo  DerSarkisian',''),(2041,1,263,'2','larklo@derian.com',''),(2042,1,263,'3','(310) 472-3884',''),(2043,1,263,'5','Left Hip joint',''),(2044,1,263,'11','Yes, and I want to avoid it if possible',''),(2045,1,263,'13','Google/Internet',''),(2046,1,263,'4','Anytime',''),(2047,1,264,'6.3','Jon miller',''),(2048,1,264,'2','poppysguitar@att.net',''),(2049,1,264,'3','(209) 662-8166',''),(2050,1,264,'5','Extreme back pains',''),(2051,1,264,'11','Not yet, and I want to avoid the need for one in the future',''),(2052,1,264,'4','Anytime',''),(2053,1,265,'6.3','Eric Jones',''),(2054,1,265,'2','eric.jones.z.mail@gmail.com',''),(2055,1,265,'3','(555) 555-1212',''),(2056,1,265,'5','My name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=drfields.com',''),(2057,1,265,'11','Yes, and I want to avoid it if possible',''),(2058,1,265,'13','I am a current patient/was a patient previously',''),(2059,1,265,'4','9am – 11am',''),(2060,1,266,'6.3','Ffggg',''),(2061,1,266,'2','kttyler13@gmail.com',''),(2062,1,266,'3','(925) 451-2365',''),(2063,1,266,'5','Back pain',''),(2064,1,266,'11','Not yet, and I want to avoid the need for one in the future',''),(2065,1,266,'4','Anytime',''),(2066,1,267,'6.3','Sally Jones',''),(2067,1,267,'2','sally916@gmail.com',''),(2068,1,267,'3','(916) 288-4536',''),(2069,1,267,'5','Back',''),(2070,1,267,'11','Not yet, and I want to avoid the need for one in the future',''),(2071,1,267,'13','Facebook',''),(2072,1,267,'4','Anytime',''),(2073,1,268,'6.3','Karen may',''),(2074,1,268,'2','kp8012985@gmail.com',''),(2075,1,268,'3','(559) 305-9971',''),(2076,1,268,'5','My neck hurts so much I been taken like two pills a day tylenol  and I put hot towels on my neck nothing I don\'t know what I done to be in pain like this I can\'t sleep I be in pain',''),(2077,1,268,'11','Not yet, and I want to avoid the need for one in the future',''),(2078,1,268,'13','Another healthcare website',''),(2079,1,268,'4','Anytime',''),(2080,1,269,'6.3','Steve',''),(2081,1,269,'2','nelson3928@hotmail.com',''),(2082,1,269,'3','(413) 787-6432',''),(2083,1,269,'5','It looks like you\'ve misspelled the word \"beared\" on your website.  I thought you would like to know :).  Silly mistakes can ruin your site\'s credibility.  I\'ve used a tool called SpellScan.com in the past to keep mistakes off of my website.\r\n\r\n-Steve',''),(2084,1,269,'11','Yes, and I want to avoid it if possible',''),(2085,1,269,'13','Referred by my doctor/provider',''),(2086,1,269,'4','9am – 11am',''),(2087,1,270,'6.3','John L. Bartlett',''),(2088,1,270,'2','john@system4-losangeleswest.com',''),(2089,1,270,'3','(832) 261-9325',''),(2090,1,270,'5','Hi! I\'m in your area and would be happy to visit your business and submit a bid for your recurring weekly (or more) janitorial and disinfection needs.  \r\n\r\nWould you like to compare pricing on your office cleaning service, or start having your space cleaned addressing your CoVid concerns?\r\n\r\nI\'d be happy to provide you with a no-obligation quote on your facilities cleaning.\r\n\r\nPlease simply respond and I will send next steps.\r\n\r\nRegards,\r\n\r\nJohn L. Bartlett\r\nExecutive\r\nSystem4 of Southern California - LA\r\n(832) 261-9325\r\njohn@system4-losangeleswest.com\r\n\r\n200 Continental Blvd.Suite 210 EL Segundo, CA  90245\r\n\r\nRespond with stop to optout.',''),(2091,1,270,'11','Not yet, and I want to avoid the need for one in the future',''),(2092,1,270,'13','Google/Internet',''),(2093,1,270,'4','9am – 11am',''),(2094,1,271,'6.3','Kristina Krofft',''),(2095,1,271,'2','kkristinakrofft@yahoo.com',''),(2096,1,271,'3','(310) 663-6698',''),(2097,1,271,'5','very long history of neck and back issues.  struggles for 25-30 years rt. low back hip and leg.\r\nMany mris. never surgery to low back. starting age 17.  have had prolotherapty. Cryo acupuncture physical therapy you name the person I\'ve been there.  then several years ago the pain moved up to upper left neck shoulder and arm.  had disc replacement with Dr. Bae. didn\'t resolve pain but the atrophy in my arm filled in.  now its back in my right lower back. I\'ve been seeing a non force chiropractor for a long time twice a week at least.  I use pemf. I have one at home.  still  miserable.',''),(2098,1,271,'11','Not yet, and I want to avoid the need for one in the future',''),(2099,1,271,'13','Referred by my doctor/provider',''),(2100,1,271,'4','Anytime',''),(2101,1,272,'6.3','Harvey Sternbach, M.D.',''),(2102,1,272,'2','wilshiremed@yahoo.com',''),(2103,1,272,'3','(340) 403-3645',''),(2104,1,272,'5','Have Tarlov cyst at S2 and some stenosis in LS spine. Symptoms of slight burning pain posterior thigh\r\nOn low dose gabapentin at night',''),(2105,1,272,'11','Not yet, and I want to avoid the need for one in the future',''),(2106,1,272,'13','Google/Internet',''),(2107,1,272,'4','Anytime',''),(2108,1,273,'6.3','David Smith',''),(2109,1,273,'2','david.outreach0@gmail.com',''),(2110,1,273,'3','(307) 003-2567',''),(2111,1,273,'5','Hello there, \r\n \r\nWe’ve contacted you in the past for guest post collaboration but didn’t hear back from you. \r\n \r\nDo you accept guest posts on your blog? If yes, how much do you charge for an article? \r\n \r\nProvide Your Website Details: https://forms.gle/g1tLTgmgCqbrwut68 \r\n \r\nLooking forward to hearing from you. \r\n \r\nThanks & Regards \r\n \r\nDavid Smith \r\n \r\nOutreach Executive',''),(2112,1,273,'11','Not yet, and I want to avoid the need for one in the future',''),(2113,1,273,'13','Facebook',''),(2114,1,273,'4','Anytime',''),(2115,1,274,'6.3','Sharnita lucas',''),(2116,1,274,'2','Sharnita91@gmail.com',''),(2117,1,274,'3','(626) 428-9354',''),(2118,1,274,'5','Back and shoulder pains',''),(2119,1,274,'11','Not yet, and I want to avoid the need for one in the future',''),(2120,1,274,'13','Google/Internet',''),(2121,1,274,'4','11am – 1pm',''),(2122,1,275,'6.3','Matthew Ong',''),(2123,1,275,'2','mong@gmail.com',''),(2124,1,275,'3','(310) 547-7484',''),(2125,1,275,'5','Shattered my shoulder in a skiing accident',''),(2126,1,275,'11','Yes, and I want to avoid it if possible',''),(2127,1,275,'13','Google/Internet',''),(2128,1,275,'4','1pm – 3pm',''),(2129,1,276,'6.3','Ellyn Humphreys',''),(2130,1,276,'2','humphreysellyn@gmail.com',''),(2131,1,276,'3','(310) 425-4463',''),(2132,1,276,'5','Have bulging disc mid back slipN Fall Attorney Steven Sarshik been to 15 Physical therapy visits still Acute Pain all movements',''),(2133,1,276,'11','Yes, and I want to avoid it if possible',''),(2134,1,276,'13','Google/Internet',''),(2135,1,276,'4','Anytime',''),(2136,1,277,'6.3','Hatim Benmoussa',''),(2137,1,277,'2','logicworks75@gmail.com',''),(2138,1,277,'3','(619) 831-5637',''),(2139,1,277,'5','Cjj klcc mv. ......ALLA IS THE ONLY ONE God. \r\n\r\nALAAHU AKBAR\r\n: Allah is the greatest! \r\n.',''),(2140,1,277,'11','Yes, and I want to avoid it if possible',''),(2141,1,277,'13','YouTube',''),(2142,1,277,'4','11am – 1pm',''),(2143,1,278,'6.3','Nora Hale',''),(2144,1,278,'2','nora@smartertactics.com',''),(2145,1,278,'3','(888) 417-4867',''),(2146,1,278,'5','Hey,\r\n \r\nYour website\'s design is really brilliant. The visuals really enhance your message and the content compels action. I\'ve forwarded it to a few of my contacts who I feel could benefit from your services.\r\n\r\nWhen I looked at your website marketing profile, I noticed that you were doing Google Paid search advertising and then stopped. This is fairly common and I can see a few minor mistakes that may have lead you stopping the campaign. \r\n\r\nWould you like me to write it up so that you can share it with your team? If this is a priority, I can also get on a call.\r\n \r\nRegards,\r\nNora Hale\r\nnora@smartertactics.com\r\nDigital Marketing Manager\r\n(888) 417-4867\r\nSmarter Tactics\r\nDigital Marketing | Ad Words Management | Content & Social | Influencer Marketing',''),(2147,1,278,'11','Yes, and I want to avoid it if possible',''),(2148,1,278,'13','Google/Internet',''),(2149,1,278,'4','Anytime',''),(2150,1,279,'6.3','Igor Lourie',''),(2151,1,279,'2','louri@pacbell.net',''),(2152,1,279,'3','(650) 228-3055',''),(2153,1,279,'5','I am 86 years old. My shoulders  have a lot of pain if I raise my arms. If the hands go down, then there is no pain. I have type 2 diabetes. My English too poor. Preferably Russian.',''),(2154,1,279,'11','Not yet, and I want to avoid the need for one in the future',''),(2155,1,279,'13','Google/Internet',''),(2156,1,279,'4','11am – 1pm',''),(2157,1,280,'6.3','Davida Menkens',''),(2158,1,280,'2','gcohen@consumerproductsintl.com',''),(2159,1,280,'3','(561) 544-0719',''),(2160,1,280,'5','The U.S. consumer market is the holy grail for retail manufacturers.\r\n\r\nBy way of introduction, I am Gary Cohen, and I represent Consumer Products International (https://consumerproductsintl.com).\r\n      \r\nAt Consumer Products International, we understand the challenges domestic and international consumer brands confront when deciding to bring their products to American consumers. CPI works with international and domestic consumer goods manufacturers who are seeking to expand their distribution reach within the United States or enter the world_s largest consumer market for the first time.\r\n\r\nDuring my research, your brand recently caught my attention, which is why I would like to discuss the possibility of expanding your national distribution reach in the U.S.\r\n\r\nCPI provides expertise in all areas of distribution, and our services include the following:\r\n\r\n_	Turnkey/One-stop solution\r\n_	FDA\r\n_	Active accounts with major U.S. distributors and retailers\r\n_	An executive team that has held executive positions with Walmart and Amazon, the two largest online and brick-and-mortar retailers in the U.S.\r\n_	Proven sales force with public relations, branding, and marketing all under one roof\r\n_	Focus on new and existing product lines\r\n_	Warehousing and logistics\r\n\r\nCPI_s executive team has decades of experience in representing many different consumer goods categories. We have worked with buyers from national and regional retail chains, which gives your brand a fast track to market.\r\n\r\nPlease contact me directly so that we can discuss your brand further.\r\n\r\nKind Regards,\r\n\r\nGary Cohen\r\nVP of Business Development\r\nConsumer Products International\r\n101 Plaza Real S, Ste #224\r\nBoca Raton, FL 33432\r\nOffice: 561-544-0719\r\ngcohen@consumerproductsintl.com',''),(2161,1,280,'11','Yes, and I want to avoid it if possible',''),(2162,1,280,'13','Facebook',''),(2163,1,280,'4','11am – 1pm',''),(2164,1,281,'6.3','Richard Bullington',''),(2165,1,281,'2','r.bullington69@gmail.com',''),(2166,1,281,'3','(925) 812-3892',''),(2167,1,281,'5','Bad knees. Was told I need both knees replaced',''),(2168,1,281,'11','Yes, and I want to avoid it if possible',''),(2169,1,281,'13','Google/Internet',''),(2170,1,281,'4','3pm – 5pm',''),(2171,1,282,'6.3','Lee',''),(2172,1,282,'2','destiny76@gmail.com',''),(2173,1,282,'3','(916) 325-1428',''),(2174,1,282,'11','Not yet, and I want to avoid the need for one in the future',''),(2175,1,282,'4','Anytime',''),(2176,1,283,'6.3','Mark Dundon',''),(2177,1,283,'2','mpdundon@gmail.com',''),(2178,1,283,'3','(805) 795-4497',''),(2179,1,283,'5','Right knee had 3 surgeries in between 1979-1981 for ACL Tear/Repair, torn medial meniscus and ACL reconstruction. Have been getting visc injections for around 10 years. Visc has stopped providing relief. Had cortisone recently (Vilretta) and it is not much better. Would like to consider options. Was told to look into knee replacement. I am 57 yo.',''),(2180,1,283,'11','Yes, and I want to avoid it if possible',''),(2181,1,283,'13','Referred by my doctor/provider',''),(2182,1,283,'4','Anytime',''),(2183,1,284,'6.3','Stanley Wong',''),(2184,1,284,'2','CHINESEBIGBOI@HOTMAIL.COM',''),(2185,1,284,'3','(626) 864-8962',''),(2186,1,284,'5','Left foot Morton\'s neuroma. Had 3 cortisone shots with 0 effect.',''),(2187,1,284,'11','Not yet, and I want to avoid the need for one in the future',''),(2188,1,284,'13','Google/Internet',''),(2189,1,284,'4','3pm – 5pm',''),(2190,1,285,'6.3','Albert Brockman',''),(2191,1,285,'2','albert.brockman@innovativebioanalysis.com',''),(2192,1,285,'3','(707) 294-8734',''),(2193,1,285,'5','Jiu jitsu knee injury, MRI indicates tears in the following areas.\r\n- posterior cruciate\r\n- superior aspect of the patella\r\nSome bone bruising, nothing separated completely.',''),(2194,1,285,'11','Not yet, and I want to avoid the need for one in the future',''),(2195,1,285,'13','Friend/family who was/is a patient',''),(2196,1,285,'4','3pm – 5pm',''),(2197,1,286,'6.3','Seemin Tan (Alex)',''),(2198,1,286,'2','alexsmtan@gmail.com',''),(2199,1,286,'3','(626) 283-8261',''),(2200,1,286,'5','I had MRI & Xray in March-2018. MRI shows Left knee has moderate to severe OA medial compartment without marrow edema. Right knee has moderate medial compartment OA without marrow edema. Both knees have degenerative tear medial meniscus. \r\n\r\nI also have Chinese TCM Moxibustion treatment (7 1-hour sessions) in 2018-19. For a while, the pain on my left and right knees were much less. But after I started to play Table Tennis twice weekly for 2-3 hours in Mar-2019, the pain returned and slowly deteriorated. \r\n\r\nNow due to pain, I stop my walking exercise since June 2020',''),(2201,1,286,'11','Not yet, and I want to avoid the need for one in the future',''),(2202,1,286,'13','Friend/family who was/is a patient',''),(2203,1,286,'4','Anytime',''),(2204,1,287,'6.3','phyllis stuart',''),(2205,1,287,'2','stuart_phyllis@yahoo.com',''),(2206,1,287,'3','(310) 873-8756',''),(2207,1,287,'5','tennis elbow...for years...cannot really use my arms without pain...and a degenerative disc in my spine...L4 I believe...thank you',''),(2208,1,287,'11','Not yet, and I want to avoid the need for one in the future',''),(2209,1,287,'13','Google/Internet',''),(2210,1,287,'4','Anytime',''),(2211,1,288,'6.3','Emfuk',''),(2212,1,288,'2','23queenwalker23@gmail.com',''),(2213,1,288,'3','(626) 136-5165',''),(2214,1,288,'5','Jnfh gkbg mnik bjj I kknknn',''),(2215,1,288,'11','Yes, and I want to avoid it if possible',''),(2216,1,288,'13','Friend/family who was/is a patient',''),(2217,1,288,'4','11am – 1pm',''),(2218,1,289,'6.3','Lucinda Lattimet',''),(2219,1,289,'2','llatt33@gmail.com',''),(2220,1,289,'3','(760) 212-5391',''),(2221,1,289,'5','X-rays show osteoarthritis in both my hips.\r\nThe pain has primarily been in my right hip but within the last two months has surfaced even worse in my left hip.',''),(2222,1,289,'11','Not yet, and I want to avoid the need for one in the future',''),(2223,1,289,'13','Google/Internet',''),(2224,1,289,'4','3pm – 5pm',''),(2225,1,290,'6.3','Columbus Moffet',''),(2226,1,290,'2','gcohen@consumerproductsintl.com',''),(2227,1,290,'3','(561) 544-0719',''),(2228,1,290,'5','The U.S. consumer market is the holy grail for retail manufacturers.\r\n\r\nBy way of introduction, I am Gary Cohen, and I represent Consumer Products International (https://consumerproductsintl.com).\r\n      \r\nAt Consumer Products International, we understand the challenges domestic and international consumer brands confront when deciding to bring their products to American consumers. CPI works with international and domestic consumer goods manufacturers who are seeking to expand their distribution reach within the United States or enter the world_s largest consumer market for the first time.\r\n\r\nDuring my research, your brand recently caught my attention, which is why I would like to discuss the possibility of expanding your national distribution reach in the U.S.\r\n\r\nCPI provides expertise in all areas of distribution, and our services include the following:\r\n\r\n_	Turnkey/One-stop solution\r\n_	FDA\r\n_	Active accounts with major U.S. distributors and retailers\r\n_	An executive team that has held executive positions with Walmart and Amazon, the two largest online and brick-and-mortar retailers in the U.S.\r\n_	Proven sales force with public relations, branding, and marketing all under one roof\r\n_	Focus on new and existing product lines\r\n_	Warehousing and logistics\r\n\r\nCPI_s executive team has decades of experience in representing many different consumer goods categories. We have worked with buyers from national and regional retail chains, which gives your brand a fast track to market.\r\n\r\nPlease contact me directly so that we can discuss your brand further.\r\n\r\nKind Regards,\r\n\r\nGary Cohen\r\nVP of Business Development\r\nConsumer Products International\r\n101 Plaza Real S, Ste #224\r\nBoca Raton, FL 33432\r\nOffice: 561-544-0719\r\ngcohen@consumerproductsintl.com',''),(2229,1,290,'11','Yes, and I want to avoid it if possible',''),(2230,1,290,'13','Friend/family who was/is a patient',''),(2231,1,290,'4','9am – 11am',''),(2232,1,291,'6.3','Esther Moe',''),(2233,1,291,'2','editor@comradelinks.com',''),(2234,1,291,'3','(587) 563-6650',''),(2235,1,291,'5','Hi, \r\n \r\nI\'m dropping you a line to see if you\'re accepting new guest bloggers? \r\n \r\nThe post will be 100% original, written just for your blog, and will not be posted elsewhere. \r\n \r\nI would appreciate an author bio with a link back to my site. \r\n \r\nIf you\'re interested in this cooperation, please get back to me. \r\n \r\nThanks for your time, \r\n \r\nEsther Moe / EDITOR-IN CHIEF / editor@comradelinks.com',''),(2236,1,291,'11','Not yet, and I want to avoid the need for one in the future',''),(2237,1,291,'13','Google/Internet',''),(2238,1,291,'4','Anytime',''),(2239,1,292,'6.3','Mel',''),(2240,1,292,'2','Mephotographer233@aol.com',''),(2241,1,292,'3','(191) 786-1020',''),(2242,1,292,'5','Hello,\r\n\r\nThis is Melecia and I am a licensed photographer and illustrator.\r\n\r\nI was puzzled, mildly speaking, when I found my images at your website. If you use a copyrighted image without an owner\'s approval, you must know that you could be sued by the owner.\r\n\r\nIt\'s not legal to use stolen images and it\'s so сheap!\r\n\r\nHere is this document with the links to my images you used at www.drfields.com and my earlier publications to obtain the evidence of my legal copyrights.\r\n\r\nDownload it now and check this out for yourself: \r\n\r\nhttps://sites.google.com/view/09377730209893400/home/drive/storage/files/download?f=544273218435381133 \r\n\r\nIf you don\'t delete the images mentioned in the document above during the next couple of days, I\'ll file a  to your hosting provider letting them know that my copyrights have been severely infringed and I am trying to protect my intellectual property. \r\n\r\nAnd if it doesn\'t work, you may be pretty damn sure I am going to take it to court! And I will not bother myself to let you know of it in advance.',''),(2243,1,292,'11','Yes, and I want to avoid it if possible',''),(2244,1,292,'13','YouTube',''),(2245,1,292,'4','9am – 11am',''),(2246,1,293,'6.3','Esther Moe',''),(2247,1,293,'2','editor@comradelinks.com',''),(2248,1,293,'3','(024) 033-4568',''),(2249,1,293,'5','Hi, \r\n \r\nI\'m dropping you a line to see if you\'re accepting new guest bloggers? \r\n \r\nThe post will be 100% original, written just for your blog, and will not be posted elsewhere. \r\n \r\nI would appreciate an author bio with a link back to my site. \r\n \r\nIf you\'re interested in this cooperation, please get back to me. \r\n \r\nThanks for your time, \r\n \r\nEsther Moe / EDITOR-IN CHIEF / editor@comradelinks.com',''),(2250,1,293,'11','Not yet, and I want to avoid the need for one in the future',''),(2251,1,293,'13','Friend/family who was/is a patient',''),(2252,1,293,'4','Anytime',''),(2253,1,294,'6.3','Eric Jones',''),(2254,1,294,'2','eric.jones.z.mail@gmail.com',''),(2255,1,294,'3','(555) 555-1212',''),(2256,1,294,'5','My name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=drfields.com',''),(2257,1,294,'11','Yes, and I want to avoid it if possible',''),(2258,1,294,'13','Google/Internet',''),(2259,1,294,'4','11am – 1pm',''),(2260,1,295,'6.3','brenda Berkley',''),(2261,1,295,'2','brendaberkleydesigns@gmail.com',''),(2262,1,295,'3','(310) 721-5106',''),(2263,1,295,'5','I injured my left knee. I have previously injured my right knee. I began to have extreme pain. I have gotten Xrays and Mri\'s of the knees, hips, lumbar and sacrum. I have been told I need 2 knee replacements and am looking to see what other options or possibilities there are. I would like to come in for a consultation. i can email you the tests I have in advance if that would be helpful. \r\nThank you, Brenda berkley 310-721-5106',''),(2264,1,295,'11','Yes, and I want to avoid it if possible',''),(2265,1,295,'13','Referred by my doctor/provider',''),(2266,1,295,'4','Anytime',''),(2267,1,296,'6.3','Sam',''),(2268,1,296,'2','samian45@gmail.com',''),(2269,1,296,'3','(661) 255-8741',''),(2270,1,296,'5','I just need to get back active',''),(2271,1,296,'11','Yes, and I want to avoid it if possible',''),(2272,1,296,'13','I am a current patient/was a patient previously',''),(2273,1,296,'4','Anytime',''),(2274,1,297,'6.3','Phyllis Davis',''),(2275,1,297,'2','peoplelugo8@gmail.com',''),(2276,1,297,'3','(408) 469-2995',''),(2277,1,297,'5','I have bone on bone servere arthiritis. I inherited from my father. I have been told and xrays show that i need knee surgery.',''),(2278,1,297,'11','Not yet, and I want to avoid the need for one in the future',''),(2279,1,297,'13','Google/Internet',''),(2280,1,297,'4','3pm – 5pm',''),(2281,1,298,'6.3','kristin rogahn',''),(2282,1,298,'2','klrogahn@yahoo.com',''),(2283,1,298,'3','(805) 814-8281',''),(2284,1,298,'5','knees are painful and limiting activities.  Bone-on bone osteoarthritis with water on the knee, numerous loose bodies and torn menisci.  Ortho said there are no other options besides double knee replacement, and to wait for the pain to become unbearable until then.',''),(2285,1,298,'11','Yes, and I want to avoid it if possible',''),(2286,1,298,'13','Referred by my doctor/provider',''),(2287,1,298,'4','Anytime',''),(2288,1,299,'6.3','Tish Coffey',''),(2289,1,299,'2','coffeygurl@att.net',''),(2290,1,299,'3','(661) 510-3038',''),(2291,1,299,'5','I have been advised by Dr. Kwak at SCOI that I need total knee and shoulder replacement in all four joints. From X-rays I am bone on bone with spurs in all four. I would very much like to avoid surgery.',''),(2292,1,299,'11','Yes, and I want to avoid it if possible',''),(2293,1,299,'13','Friend/family who was/is a patient',''),(2294,1,299,'4','1pm – 3pm',''),(2295,1,300,'6.3','david fuller',''),(2296,1,300,'2','dtfservicies@yahoo.com',''),(2297,1,300,'3','(864) 787-9593',''),(2298,1,300,'5','Hip',''),(2299,1,300,'11','Yes, and I want to avoid it if possible',''),(2300,1,300,'4','Anytime',''),(2301,1,301,'6.3','Michael Molokwu',''),(2302,1,301,'2','annemike7@gmail.com',''),(2303,1,301,'3','(909) 325-5261',''),(2304,1,301,'11','Not yet, and I want to avoid the need for one in the future',''),(2305,1,301,'13','Google/Internet',''),(2306,1,301,'4','11am – 1pm',''),(2307,1,302,'6.3','Michael Molokwu',''),(2308,1,302,'2','annemike7@gmail.com',''),(2309,1,302,'3','(909) 325-5261',''),(2310,1,302,'11','Not yet, and I want to avoid the need for one in the future',''),(2311,1,302,'13','Google/Internet',''),(2312,1,302,'4','11am – 1pm',''),(2313,1,303,'6.3','Chris Kelliher',''),(2314,1,303,'2','kelliher.chris@gmail.com',''),(2315,1,303,'3','(913) 201-3633',''),(2316,1,303,'5','Chronic Shin Splints / Tibia Stress Fracture. My ortho has recommended Prolotherapy but has not been able to get the dextrose through the pharmacy.',''),(2317,1,303,'11','Not yet, and I want to avoid the need for one in the future',''),(2318,1,303,'13','Google/Internet',''),(2319,1,303,'4','Anytime',''),(2320,1,304,'6.3','Veronica Mendivil',''),(2321,1,304,'2','vmendivil74@gmail.com',''),(2322,1,304,'3','(909) 964-1364',''),(2323,1,304,'5','Having severe elbow pain that is not getting better.',''),(2324,1,304,'11','Not yet, and I want to avoid the need for one in the future',''),(2325,1,304,'13','Google/Internet',''),(2326,1,304,'4','11am – 1pm',''),(2327,1,305,'6.3','Tom Anthony',''),(2328,1,305,'2','tom.anthony758@gmail.com',''),(2329,1,305,'3','(310) 863-6471',''),(2330,1,305,'5','My Dad is 93 years old he has bone on bone in his left knee and is in constant pain and has a hard time walking on it. Will the PRP help with this type of problem? He is to old for knee replacement',''),(2331,1,305,'11','Yes, and I want to avoid it if possible',''),(2332,1,305,'13','Google/Internet',''),(2333,1,305,'4','Anytime',''),(2334,1,306,'6.3','MARIA PATRICIA VALDERRAMA',''),(2335,1,306,'2','pattyvalderrama7@yahoo.com',''),(2336,1,306,'3','(818) 426-3386',''),(2337,1,306,'5','Went to an orthopedic surgeon he took x-rays and said I have arthritis in my hip,\r\nbone on bone.  He said I needed surgery.',''),(2338,1,306,'11','Yes, and I want to avoid it if possible',''),(2339,1,306,'13','Google/Internet',''),(2340,1,306,'4','Anytime',''),(2341,1,307,'6.3','SAMANTHA EKNOIAN',''),(2342,1,307,'2','seknoian@yahoo.com',''),(2343,1,307,'3','(559) 349-4038',''),(2344,1,307,'5','I have calcific tendonitis where the calcification is attached to the rotator cuff tendon. I have gone through two rounds of Physical therapy, my mobility is ok, but there is chronic pain particularly at night and I can\'t sleep on the affected shoulder. I am extremely active and would prefer to not have to have surgery where a portion of my rotator cuff would need to be cut out and replaced.',''),(2345,1,307,'11','Not yet, and I want to avoid the need for one in the future',''),(2346,1,307,'13','Google/Internet',''),(2347,1,307,'4','Anytime',''),(2348,1,308,'6.3','Yaseen Azzam',''),(2349,1,308,'2','yaseenazzam@gmail.com',''),(2350,1,308,'3','(562) 291-7728',''),(2351,1,308,'5','Disc injury of 10 years. I’ve taken it easy over the years and lived with no pain or discomfort with the help of an annual visit to the chiro, almost as if the injury isn’t there but recently I’ve pushing my limits at the gym and it got pretty bad. No sciatic pain luckily but It’s difficult to move around and walk, if I sit or lay down for too long it’s a struggle to get back up without the pain wanting to bring me down to my knees. My lower back just feels stuck. I’ll do anything and everything to avoid surgery. I was recommended by my chiropractor, Dr.Bird.',''),(2352,1,308,'11','Not yet, and I want to avoid the need for one in the future',''),(2353,1,308,'13','Referred by my doctor/provider',''),(2354,1,308,'4','Anytime',''),(2355,1,309,'6.3','Yaseen Azzam',''),(2356,1,309,'2','yaseenazzam@gmail.com',''),(2357,1,309,'3','(562) 291-7728',''),(2358,1,309,'5','Disc injury of 10 years. I’ve taken it easy over the years and lived with no pain or discomfort with the help of an annual visit to the chiro, almost as if the injury isn’t there but recently I’ve pushing my limits at the gym and it got pretty bad. No sciatic pain luckily but It’s difficult to move around and walk, if I sit or lay down for too long it’s a struggle to get back up without the pain wanting to bring me down to my knees. My lower back just feels stuck. I’ll do anything and everything to avoid surgery. I was recommended by my chiropractor, Dr.Bird.',''),(2359,1,309,'11','Not yet, and I want to avoid the need for one in the future',''),(2360,1,309,'13','Referred by my doctor/provider',''),(2361,1,309,'4','Anytime',''),(2362,1,310,'6.3','Eric Jones',''),(2363,1,310,'2','eric.jones.z.mail@gmail.com',''),(2364,1,310,'3','(555) 555-1212',''),(2365,1,310,'5','My name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://talkwithcustomer.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=drfields.com',''),(2366,1,310,'11','Yes, and I want to avoid it if possible',''),(2367,1,310,'13','Another healthcare website',''),(2368,1,310,'4','3pm – 5pm',''),(2369,1,311,'6.3','Elaine',''),(2370,1,311,'2','Elaine.etc@zoho.com',''),(2371,1,311,'3','(949) 285-8612',''),(2372,1,311,'5','Likely cervical instability from a couple MVAs and concussion while snowboarding. I am interested in seeking alternative options (prolo., PRP) for more permanent solutions. Do you all offer or know where a digital motion XR can be completed?',''),(2373,1,311,'11','Not yet, and I want to avoid the need for one in the future',''),(2374,1,311,'13','Google/Internet',''),(2375,1,311,'4','Anytime',''),(2376,1,312,'6.3','Michael Kenyon',''),(2377,1,312,'2','mkenyon@ibswin.com',''),(2378,1,312,'3','(949) 340-7600',''),(2379,1,312,'5','I am having knee pain at night although my knees feel fine walking and playing sports.  I have had prolozone shots and theraphy in the past for shoulder and other issues and it has worked very well.  The doctor that I had been using retired and I am looking for someone that provides this service.',''),(2380,1,312,'11','Not yet, and I want to avoid the need for one in the future',''),(2381,1,312,'13','Google/Internet',''),(2382,1,312,'4','Anytime',''),(2383,1,313,'6.3','Marika Blue',''),(2384,1,313,'2','rikacb@hotmail.com',''),(2385,1,313,'3','(206) 228-3447',''),(2386,1,313,'5','Foramina narrowing, fibromyalgia, chronic fatigue',''),(2387,1,313,'11','Not yet, and I want to avoid the need for one in the future',''),(2388,1,313,'13','Referred by my doctor/provider',''),(2389,1,313,'4','1pm – 3pm',''),(2390,1,314,'6.3','Noel',''),(2391,1,314,'2','noelschwab@icloud.com',''),(2392,1,314,'3','(310) 880-6640',''),(2393,1,314,'5','Have knee pain walking;  can\'t run anymore, maybe shuffle run. 68 yrs old, fit and workout but cartilage gone on inside of both knees. I have X-rays. I have tried 2 series of Monovisc hyaluronic acid injections. 1st round seemed to work but not the second.',''),(2394,1,314,'11','Yes, and I want to avoid it if possible',''),(2395,1,314,'4','Anytime',''),(2396,1,315,'6.3','Monica Cruz',''),(2397,1,315,'2','monicruz510@gmail.com',''),(2398,1,315,'3','(323) 866-9647',''),(2399,1,315,'5','I had back surgery and the pain is still there also i sufffer chronic pain in my knee and anckle i have sciatic nerve and last i was diagnosed with cilific tendonitis .or something like that dont remember the name.',''),(2400,1,315,'11','Not yet, and I want to avoid the need for one in the future',''),(2401,1,315,'13','Google/Internet',''),(2402,1,315,'4','Anytime',''),(2403,1,316,'6.3','ROSA MARTINEZ',''),(2404,1,316,'2','remartinez97@gmail.com',''),(2405,1,316,'3','(424) 440-7121',''),(2406,1,316,'5','I\'ve had bilateral knee surgeries, 2 neck surgeries. I\'m getting ready to have some surgery. I have severe stenosis, spondylosis, and several bummed discs. Am I a  candidate for attending cells. Do you take Medicare, if not, how much does it cost? My surgery date is scheduled for May 6, 2021.',''),(2407,1,316,'11','Yes, and I want to avoid it if possible',''),(2408,1,316,'13','YouTube',''),(2409,1,316,'4','Anytime',''),(2410,1,317,'6.3','Diana Guth',''),(2411,1,317,'2','diana@hrcsleep.com',''),(2412,1,317,'3','(310) 753-6108',''),(2413,1,317,'5','I have been advised to have two knee replacement surgeries do to arthritis in my knees. As a Registered Respiratory Therapist, I have my own business treating people who have sleep disorders and providing noninvasive ventilation for people who have neuromuscular disorders. I don\'t have time for lengthy rehab',''),(2414,1,317,'11','Yes, and I want to avoid it if possible',''),(2415,1,317,'13','Google/Internet',''),(2416,1,317,'4','Anytime',''),(2417,1,318,'6.3','Alexander Schill',''),(2418,1,318,'2','alexanderjschill@gmail.com',''),(2419,1,318,'3','(310) 938-2124',''),(2420,1,318,'5','In April 2019 I ended up with severe neck and arm pain, an MRI revealed that I had a 4.5mm bulge on my C6 disc. The pain eventually got better on its own after 3-6 months and has only shown occasional signs of being there in the form of finger numbness. Recently something has caused the pain to flair up to where I was in 2019. I\'d like to hear about regenerative therapy options to get back to normal',''),(2421,1,318,'11','Not yet, and I want to avoid the need for one in the future',''),(2422,1,318,'13','Google/Internet',''),(2423,1,318,'4','3pm – 5pm',''),(2424,1,319,'6.3','Sharon Lipton',''),(2425,1,319,'2','trainersharon@gmail.com',''),(2426,1,319,'3','(626) 484-0077',''),(2427,1,319,'5','Consult on both knees to determine if I need two knee replacements as prescribed by Dr. Dietrich, Pasadena.',''),(2428,1,319,'11','Yes, and I want to avoid it if possible',''),(2429,1,319,'13','Friend/family who was/is a patient',''),(2430,1,319,'4','1pm – 3pm',''),(2431,1,320,'6.3','Robert Jennings',''),(2432,1,320,'2','contactbobjennings@yahoo.com',''),(2433,1,320,'3','(330) 464-3414',''),(2434,1,320,'5','Right Ankle loose ligaments',''),(2435,1,320,'11','Not yet, and I want to avoid the need for one in the future',''),(2436,1,320,'13','Google/Internet',''),(2437,1,320,'4','Anytime',''),(2438,1,321,'6.3','VICTOR SANTILLAN',''),(2439,1,321,'2','vsantillan107@gmail.com',''),(2440,1,321,'3','(818) 266-8549',''),(2441,1,321,'5','have a partially torn ACL. Recently diagnosed with AS, trying to formulate a game plan to maintain mobility as is progresses.',''),(2442,1,321,'11','Not yet, and I want to avoid the need for one in the future',''),(2443,1,321,'13','YouTube',''),(2444,1,321,'4','Anytime',''),(2445,1,322,'6.3','PATRICK STOUTE',''),(2446,1,322,'2','VeritasTemp@aol.com',''),(2447,1,322,'3','(510) 900-5144',''),(2448,1,322,'11','Yes, and I want to avoid it if possible',''),(2449,1,322,'13','Google/Internet',''),(2450,1,322,'4','Anytime',''),(2451,1,323,'6.3','Joe',''),(2452,1,323,'2','jdosj@yahoo.com',''),(2453,1,323,'3','(530) 225-8523',''),(2454,1,323,'11','Not yet, and I want to avoid the need for one in the future',''),(2455,1,323,'13','Google/Internet',''),(2456,1,323,'4','9am – 11am',''),(2457,1,324,'6.3','Eric Jones',''),(2458,1,324,'2','eric.jones.z.mail@gmail.com',''),(2459,1,324,'3','(555) 555-1212',''),(2460,1,324,'5','Hi, Eric here with a quick thought about your website drfields.com...\r\n\r\nI_m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it _ it_s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere_s a solution for you_\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to talk with them literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business _ and because you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately_ and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=drfields.com',''),(2461,1,324,'11','Yes, and I want to avoid it if possible',''),(2462,1,324,'13','Facebook',''),(2463,1,324,'4','11am – 1pm',''),(2464,1,325,'6.3','Terri Cooper',''),(2465,1,325,'2','tcooper159Tcooper159@aol.com',''),(2466,1,325,'3','(424) 273-6661',''),(2467,1,325,'5','Had shoulder replacemnt surgery and now need Phyiscal therphy on right shoulder.',''),(2468,1,325,'11','Yes, and I want to avoid it if possible',''),(2469,1,325,'13','I am a current patient/was a patient previously',''),(2470,1,325,'4','3pm – 5pm',''),(2471,1,326,'6.3','marsha hoffman',''),(2472,1,326,'2','designermarsha@gmail.com',''),(2473,1,326,'3','(310) 994-1360',''),(2474,1,326,'5','severe torn medial meniscus on right knee..bone on bone osteorarthritis on left knee\r\nfull knee replacement has been reocommended on left..going in today to my doctor for plan\r\nof action on right',''),(2475,1,326,'11','Yes, and I want to avoid it if possible',''),(2476,1,326,'13','Google/Internet',''),(2477,1,326,'4','3pm – 5pm',''),(2478,1,327,'6.3','elizabeth davis',''),(2479,1,327,'2','elizabethdavis4532@att.net',''),(2480,1,327,'3','(209) 888-5243',''),(2481,1,327,'5','I am 78 year old woman. Day and night I suffer with pain in my knees.  I would like to know the approximate cost of stem cell and if insurance pay for it. I would also like to know if there are any places close to Stockton ca to get this treatment. My knees are bone to bone.',''),(2482,1,327,'11','Yes, and I want to avoid it if possible',''),(2483,1,327,'13','Another healthcare website',''),(2484,1,327,'4','Anytime',''),(2485,1,328,'6.3','Anthony D. Gonzales',''),(2486,1,328,'2','anthonyg72class@hotmail.com',''),(2487,1,328,'3','(559) 310-0295',''),(2488,1,328,'5','Torn meniscus, been with chronic pain for three months now. It on the inside  my right knee then radiates to front of the knee and underneath the knee cap also it clicks at night and day time too and its gotten worst.  I have an orthopedic brace but the pain is interfering with my sleep at nights. And I drive medicate vehicle for clients for appointments. What is exactly that you do? I enjoy being active but this is too painful just sitting around for this thing to heal on its own. I am of family man at 67. Trying to keep my family going.',''),(2489,1,328,'11','Yes, and I want to avoid it if possible',''),(2490,1,328,'13','Google/Internet',''),(2491,1,328,'4','3pm – 5pm',''),(2492,1,329,'6.3','Eric',''),(2493,1,329,'2','eapl18@gmail.com',''),(2494,1,329,'3','(562) 896-2763',''),(2495,1,329,'5','Had knee surgery back in 2016, meniscus tear. The surgeon didn’t remove the meniscus he shaved the torn part. My goal by having surgery; however after surgery that’s when I was told I was not going to be able to play sports again. I would like to do something about this, I’m 40 years old now and I’m looking for a solution to my knee and for me to be able to play sports and run again.',''),(2496,1,329,'11','Not yet, and I want to avoid the need for one in the future',''),(2497,1,329,'13','Google/Internet',''),(2498,1,329,'4','Anytime',''),(2499,1,330,'6.3','Tim',''),(2500,1,330,'2','timswanson72@yahoo.com',''),(2501,1,330,'3','(209) 403-6248',''),(2502,1,330,'5','Pain, numbness and tingling down my left arm.',''),(2503,1,330,'11','Not yet, and I want to avoid the need for one in the future',''),(2504,1,330,'13','Google/Internet',''),(2505,1,330,'4','Anytime',''),(2506,1,331,'6.3','Jose otero',''),(2507,1,331,'2','robjrpro@yahoo.com',''),(2508,1,331,'3','(323) 583-2669',''),(2509,1,331,'5','Arm and leg pain. MRI say I have four protruding disc on my cervical',''),(2510,1,331,'11','Yes, and I want to avoid it if possible',''),(2511,1,331,'13','Google/Internet',''),(2512,1,331,'4','Anytime',''),(2513,1,332,'6.3','Jason Sousa',''),(2514,1,332,'2','jaysousa88@gmail.com',''),(2515,1,332,'3','(401) 339-3549',''),(2516,1,332,'5','Ive had alot of prolo done on my body over the last few years back in Boston and now that I am in CA I\'ve had bilateral ankle pain which I would like to address with prolo. Please call me to let me know your fees. I have anthem blue cross which I am not sure if that will cover the consult.',''),(2517,1,332,'11','Not yet, and I want to avoid the need for one in the future',''),(2518,1,332,'13','Google/Internet',''),(2519,1,332,'4','Anytime',''),(2520,1,333,'6.3','Lisa Wells',''),(2521,1,333,'2','LisaWells67419@gmail.com',''),(2522,1,333,'3','(503) 490-2205',''),(2523,1,333,'5','I hurt my back and neck in a 1994 work injury. I have several herniated disc in both my lower and upper back and three in my neck. I have one disc which has now ruptured. I was told it is responsible for permanent nerve damage due to the disc fluid from the ruptured disc. I can not turn my head in either direction more then a slight turn in either direction. The right side rotation is worse. I have suffered chronic pain so long I can’t remember when it became chronic. I have had nerve testing and it showed I have permanent nerve damage in both legs feet, ulnar nerve in both arms. My left hand is mostly numb all the time now. My knees feel numb. Best way to describe it is they feel like my hands do now. I have been diagnosed with over 30 autoimmune disorders. My vision is blurred and now I’m seeing black squiggly lines and sharp white light sparks even when it’s dark. I can’t sleep more then about four hours at a time. I have been treated for major depression taking meds for a straight 15 years or longer with little resolve. I have sever anxiety. In the last 10 years I suffer severe memory loss. I lost a four year period of time with no explanation. Today I can’t find my way out of a paper bag. I can’t concentrate. I can’t focus. I use to be a very positive minded outgoing independent person and proud of it. Today I don’t trust my own sense of judgment. I struggle to remember what I read minute to minute sometimes having to read a sentence Over and over then giving up. Example I take Coumadin daily and it’s important I don’t miss a dose. I have a severe blood clot disorder. Yet  I can sit here with the Bottle in my hand and go to take the pill and not be able to remember if I already took the Med or not. Of course I can’t risk taking a double dose. So I don’t take it. Then I have to deal with the numbers dropping. This severe minute to minute memory loss is terrifying. I have had encephalitis twice without any infection found in my blood. I have dealt with inflammation in many organs, nephritis, pancreatitis, cardio apathy, pleurisy on a regular basis. I have been waiting for a hip replacement surgery but can’t find a hip surgeon willing to do a surgery. The cartilage is gone and I have bone on bone happening there. My bone density test shows I have great bone density like a 17 year old my Rheumatologist says. So far there is no explanation for why it happened. My a Achilles’ tendon is shredded and in four years still can’t heal. The other foot has tears in the Achilles’ tendon. Today there is so much pain in my feet that I can’t bare to stand or walk my feet feel like someone has beat them \r\nWith a pipe.  I have been diagnosed with CHF I have hypertension that has worsened recently. I have venous insufficiency. My legs are now discolored after a year of severe edema caused by a side effect of a medicine. Which has been discontinued ams the edema is now gone. But the discoloration the blue tint to my feet and lower legs have not gone away. I was told I must do surgeries on both ulnar nerves. My primary suggested I wait until I loose complete movement control of my hands before doing a surgery. He says often that surgery does not go well and people often end up with less movement. I have dizziness often. Nausea and gut pain every time I eat.  I have colitis derviticulitis and I have been hospitalized three times for this. I have so many gallstones they can’t count them.  I have severe ringing in my ears. I feel like the nerve response needed for a bowl movement no longer happen. I have bloating all the time when I eat. I get severe Charlie horse like spasms in my feet and legs that last for up to about 4-5 minutes at a time causing horrible pain. The spasms happen on a regular basis. When I lie down at night my feet hurt so bad I can’t deal with it. I think I can say the pain in my feet is worse then any pain I have ever had to deal with. Lately that same spasm I’m feeling further up my leg in my thigh. I get migraines often. \r\n  After learning briefly about conditions that can happen with cervical instability I am hoping to find answers to WHY ? What caused all of these things?  They just keep treating symptoms. No one explores the why all these disorders . I am 54 years old and I’ve lived the last 30 years in pain. As of the last five years the nerve pain exceeds the pain I dealt with in the past. I’ve been told the depression and debilitating  anxiety is all caused by chronic pain. I feel like I’ve been living in the body of a 90 year old the last decade. \r\n  I am hoping you can help me regain my life through your work.',''),(2524,1,333,'11','Yes, and I want to avoid it if possible',''),(2525,1,333,'13','Another healthcare website',''),(2526,1,333,'4','11am – 1pm',''),(2527,1,334,'6.3','Jenelle Williams',''),(2528,1,334,'2','jenellewilliams@gmail.com',''),(2529,1,334,'3','(916) 459-0087',''),(2530,1,334,'11','Yes, and I want to avoid it if possible',''),(2531,1,334,'13','I am a current patient/was a patient previously',''),(2532,1,334,'4','9am – 11am',''),(2533,1,335,'6.3','Barbara Swist',''),(2534,1,335,'2','bjswist@sbcglobal.net',''),(2535,1,335,'3','(949) 683-8606',''),(2536,1,335,'5','Hello I had PRP and prolotherapy with Dr. Fields years ago and my left knee for a torn meniscus. It totally restored my knee. Now a chiropractor tore my meniscus in that same left knee. I’m wondering what your fees are now for PRP and prolotherapy for that knee? Thank you',''),(2537,1,335,'11','Yes, and I want to avoid it if possible',''),(2538,1,335,'13','I am a current patient/was a patient previously',''),(2539,1,335,'4','Anytime',''),(2540,1,336,'6.3','Alexander Wilkerson',''),(2541,1,336,'2','alxwilkerson1@gmail.com',''),(2542,1,336,'3','(310) 872-7145',''),(2543,1,336,'5','My knee hyperextended and dislocated in one hit. It happens all the time with walking or if I miss a stair step etc. I’m fragile now l and looking to get prp / stem cell guidance. I hope you can help me.',''),(2544,1,336,'11','Not yet, and I want to avoid the need for one in the future',''),(2545,1,336,'13','Google/Internet',''),(2546,1,336,'4','Anytime',''),(2547,1,337,'6.3','Lana Hutnick',''),(2548,1,337,'2','lanahutnick007@gmail.com',''),(2549,1,337,'3','(408) 406-7896',''),(2550,1,337,'5','Right shoulder pain with using right arm\r\nChronic\r\nPinching type pain',''),(2551,1,337,'11','Not yet, and I want to avoid the need for one in the future',''),(2552,1,337,'13','Google/Internet',''),(2553,1,337,'4','1pm – 3pm',''),(2554,1,338,'6.3','Lawrence Karger',''),(2555,1,338,'2','Fly2Magic@Hotmail.com',''),(2556,1,338,'3','(626) 919-2051',''),(2557,1,338,'5','Right Knee Pain',''),(2558,1,338,'11','Yes, and I want to avoid it if possible',''),(2559,1,338,'13','Google/Internet',''),(2560,1,338,'4','Anytime',''),(2561,1,339,'6.3','Margaret Ferrell',''),(2562,1,339,'2','ferrellm48@gmail.com',''),(2563,1,339,'3','(909) 251-3206',''),(2564,1,339,'5','Iwould this treat e t work  for severe spinal stenoses at L4-5',''),(2565,1,339,'11','Yes, and I want to avoid it if possible',''),(2566,1,339,'13','Google/Internet',''),(2567,1,339,'4','Anytime',''),(2568,1,340,'6.3','Fran McBrien',''),(2569,1,340,'2','clvsfran@gmail.com',''),(2570,1,340,'3','(559) 615-0109',''),(2571,1,340,'5','Fractured shoulder in a fall. Constant pain. Can\'t use left arm for lifting, reaching, etc. Dont want surgery. Need help. New to Porterville.',''),(2572,1,340,'11','Not yet, and I want to avoid the need for one in the future',''),(2573,1,340,'13','Google/Internet',''),(2574,1,340,'4','Anytime',''),(2575,1,341,'6.3','Daniel Jason',''),(2576,1,341,'2','it.mvwsusa5@gmail.com',''),(2577,1,341,'3','(516) 908-1507',''),(2578,1,341,'5','Hello Sir/Madam,Good Day!  \r\nMyself Daniel, from an Internet Marketing Company. I would like to tell you some points about your online business. I hope  you won’t mind spending only 2-3 minutes to have a look at the following lines:\r\nIt seems you\'ve been spending a budget with sponsored listings or PPC.\r\n. In PPC, you may get the sales but only after paying a certain amount every time and if you stop paying, then the sales will vanish soon.\r\n . In SEO, You need to spend a budget for a few months. Once keywords will be on the first page of Google, you can get satisfied traffic for a long time.\r\n. 90% of users like Organic results over the sponsored ones because these results are more relevant and valuable. So just imagine how many valuable customers you are losing by not focusing on organic search results.\r\nBy investing a few months in SEO, you can see drastic changes in your website internally and externally. We\'ll show you TOP Rankings in your keywords, link popularity, organic traffic, and many more...\r\nAfter reviewing your website. I noticed some major on-page and off-page issues need to be fixed soon. For more information about your site errors, please respond to my email.\r\nI would be happy to provide you with a Complete Site Analysis Report (free of cost) with our Company Profile, Work Experience, and Client Testimonials.\r\nOur main AIM is customer satisfaction. We are not like others. We\'ve limited customers and make sure they are really happy with our performance.\r\nYou may be interested in Big Big Companies but I can say they\'re taking money only showing their company brand to customers; otherwise, the result part is Zero. The decision is yours!\r\nWe wish you the best of luck and look forward to a long and healthy business relationship with you and your company.\r\nWaiting for your positive response…\r\nBest Regards,Daniel Jason\r\n------------------------------------- Business Development ManagerNew York 11801, USA\r\nUSA CONFIDENTIALITY NOTICE: This email, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, or distribution is prohibited. If you are not the intended recipient, please contact the sender immediately and destroy all copies of the original message. Thank you.',''),(2579,1,341,'11','Not yet, and I want to avoid the need for one in the future',''),(2580,1,341,'13','Google/Internet',''),(2581,1,341,'4','Anytime',''),(2582,1,342,'6.3','Betty Patton',''),(2583,1,342,'2','boop90@aol.com',''),(2584,1,342,'3','(916) 761-5111',''),(2585,1,342,'5','I had knee replacement surgery on my left knee and pray I never have another!!  My right knee is showing the same early signs that the left one did early on.  I live in the Sacramento area.  Is there a doctor near me?  I\'m very interested in the plasma treatments.',''),(2586,1,342,'11','Not yet, and I want to avoid the need for one in the future',''),(2587,1,342,'13','Referred by my doctor/provider',''),(2588,1,342,'4','9am – 11am',''),(2589,1,343,'6.3','Jack lanser',''),(2590,1,343,'2','JackLanser5525@gmail.com',''),(2591,1,343,'3','(760) 221-0731',''),(2592,1,343,'5','Shoulder arthritis right shoulder,do not want steroids,interested in regenerate therapy.',''),(2593,1,343,'11','Yes, and I want to avoid it if possible',''),(2594,1,343,'13','Google/Internet',''),(2595,1,343,'4','9am – 11am',''),(2596,1,344,'6.3','Todd Brown',''),(2597,1,344,'2','thrown@intero.com',''),(2598,1,344,'3','(408) 607-0501',''),(2599,1,344,'5','I’ve had surgery on both knees for torn meniscus.  One knee has some bone on bone and Arthritis.  I work out at actively but in unable to do certain movements and running.',''),(2600,1,344,'11','Not yet, and I want to avoid the need for one in the future',''),(2601,1,344,'13','Friend/family who was/is a patient',''),(2602,1,344,'4','Anytime',''),(2603,1,345,'6.3','John Bartlett',''),(2604,1,345,'2','john@system4-losangeleswest.com',''),(2605,1,345,'3','(832) 261-9325',''),(2606,1,345,'5','Hi! I\'m in your area and would be happy to visit your business and submit a bid for your recurring weekly (or more) janitorial and disinfection needs.\r\n\r\nWould you like to compare pricing on your office cleaning service?\r\n\r\nI\'d be happy to provide you with a no-obligation quote on your facilities cleaning.\r\n\r\nPlease simply respond and I will send next steps.\r\n\r\nRegards,\r\nJohn\r\n--\r\nJohn Bartlett\r\nExecutive\r\nSystem4 of Southern California - LA\r\n(832) 261-9325\r\njohn@system4-losangeleswest.com\r\n\r\n200 Continental Blvd.Suite 210 EL Segundo, CA  90245\r\n\r\nRespond with stop to optout.',''),(2607,1,345,'11','Not yet, and I want to avoid the need for one in the future',''),(2608,1,345,'13','Google/Internet',''),(2609,1,345,'4','Anytime',''),(2610,1,346,'6.3','michael soloman',''),(2611,1,346,'2','mikesoloman@aol.com',''),(2612,1,346,'3','(209) 327-0760',''),(2613,1,346,'5','bone on bone left knee plus arthritis...  74 yr old man',''),(2614,1,346,'11','Yes, and I want to avoid it if possible',''),(2615,1,346,'13','Google/Internet',''),(2616,1,346,'4','Anytime',''),(2617,1,347,'6.3','Patricia Jensen',''),(2618,1,347,'2','pjen3344@gmail.com',''),(2619,1,347,'3','(478) 302-9158',''),(2620,1,347,'5','Hi, \r\n\r\nI have debilitating symptoms that have most definitely changed in severity after my 3rd son, although I\'ve had so many symptoms my entire life. Worsening degeneration of joints, severe (bed ridden) pelvic pains, and more during each pregnancy. \r\nI am now struggling to move, speak, take care of my stressful life and I am almost certain I have CCI ever since I found out about it and was diagnosed with hEDS last year. I score 9/9 in the beighton score and have almost every hypermobile EDS symptom. Dry eyes, TMJ joints already replaced and undergoing a re do jaw surgery for the 6th time in a few weeks. \r\n\r\nI have swollen veins behind my knee that no Dr has even looked at yet which makes my knees feel arthritic and stiff like they have so much inflammation. My neuro has only seen me through video calls, but I have gone to do all types of testing. I have \"POTS\" but I have always not understood why my symptoms seem much worse and different than those with actual POTS only . \r\nI know now it has to be CCI. I cannot hold my own head up, I am trying now to tuck my chin back for correct posture and legitimately my head just \"fell\", not only did my muscles feel weak and \"let go\" but even if I tried hard, there\'s something that literally making it \"fall off\".\r\n\r\nMy passing out symptoms, dizziness with every neck movement, BP issues and heart rate rises cause me to fall to my floor, put my hands on my knees and lower my head etc. So many more things. Prolapsing organs already etc. \r\n\r\nI have supine MRI w/o contrast, brain MRI with contrast , upright MRI w/o, supine CT with lateral flexion, xrays with flexion/ext and I do have many diagnosis that do not surprise me such as, spondylosis in 2 different areas in cervical as well as lumbar, anterolisthesis and retrolisthesis in cervical, straightened cervical curve, scoliosis my whole life upper and lower back, bulging discs in upper and lower back, c4-c5 is one of disc bulge where it also indents the ventral thecal sac w/o cord compression, degenerative changes in c5-c6\r\n\r\nCT supine impression: 37 degrees of rotation of c1 relative to c2 w/ right lateral rotation, and 45 degrees of rot of C1 relative to C2 w/ left lateral rotation, but I had my head on a pillow in CT machine so I could of rotated more if that means something. \r\n\r\nI am in debilitating pain, chronic every single day is torment and have to be on low dose opioids and a bunch of meds just to function. Please help me by agreeing to hopefully review my images or allowing me to send them for you to show or ask another DR who would be interested in helping me out. \r\nI am desperate as these symptoms are real, horrible and I do not have Drs, family, friends, or anyone except for my husband who sees me daily understand. My poor kids need a mom and haven\'t had one in a long time. I used to go to the gym and run miles daily. I am go-go-go and type A personality. This is not me, which is hard for people to realize, that I must really be in agony to have changed so much. \r\nI see you are familiar with CCI here, could you check my diagnosis\' which are so many. \r\nI have numbness, nerve pains even lhermitte phenomenon.',''),(2621,1,347,'11','Not yet, and I want to avoid the need for one in the future',''),(2622,1,347,'13','Google/Internet',''),(2623,1,347,'4','Anytime',''),(2624,1,348,'6.3','don pad',''),(2625,1,348,'2','donpad49@yahoo.com',''),(2626,1,348,'3','(818) 203-7767',''),(2627,1,348,'5','tinnitus ringing neck pain due back injury years ago, at 37 ringing starts, neck and back pain years before due to back injury and car accident at 10 years old',''),(2628,1,348,'11','Not yet, and I want to avoid the need for one in the future',''),(2629,1,348,'13','Referred by my doctor/provider',''),(2630,1,348,'4','9am – 11am',''),(2631,1,349,'6.3','hehsheh',''),(2632,1,349,'2','hshshsh@gmail.com',''),(2633,1,349,'3','(323) 584-8468',''),(2634,1,349,'5','my pussy burns',''),(2635,1,349,'11','Not yet, and I want to avoid the need for one in the future',''),(2636,1,349,'13','I am a current patient/was a patient previously',''),(2637,1,349,'4','11am – 1pm',''),(2638,1,350,'6.3','Jose Llerandi',''),(2639,1,350,'2','ja.llerandi@gmail.com',''),(2640,1,350,'3','(951) 963-5258',''),(2641,1,350,'5','Major shoulder pain.  taking different meds no real result.  Cant sleep because of the pain.',''),(2642,1,350,'11','Not yet, and I want to avoid the need for one in the future',''),(2643,1,350,'13','Google/Internet',''),(2644,1,350,'4','Anytime',''),(2645,1,351,'6.3','Armand Williams',''),(2646,1,351,'2','PHOTO9992@YAHOO.COM',''),(2647,1,351,'3','(209) 628-3912',''),(2648,1,351,'5','Hip/leg pain. Need to have hip replacement. (Bone on bone.) Lot of discomfort.',''),(2649,1,351,'11','Yes, and I want to avoid it if possible',''),(2650,1,351,'13','Google/Internet',''),(2651,1,351,'4','Anytime',''),(2652,1,352,'6.3','Susan Cermak',''),(2653,1,352,'2','Sdcermak@earthlink.net',''),(2654,1,352,'3','(310) 968-6577',''),(2655,1,352,'5','Constant pain in shoulder socket.  I have be getting cortisone shots and the doctor suggested complete shoulder arm replacement.  It is loss of cartledge rubbing bone tobone',''),(2656,1,352,'11','Yes, and I want to avoid it if possible',''),(2657,1,352,'13','Friend/family who was/is a patient',''),(2658,1,352,'4','3pm – 5pm',''),(2659,1,353,'6.3','Carwash',''),(2660,1,353,'2','toddanimation@hotmail.com',''),(2661,1,353,'3','(818) 207-6863',''),(2662,1,353,'5','I had shoulder surgery March 9th (labrum tear).  I received a stem cell injection April 10, plus 3 ozone injections.\r\n\r\nI\'m doing physical therapy, but would like to inquire about other methods to encourage healing.',''),(2663,1,353,'11','Not yet, and I want to avoid the need for one in the future',''),(2664,1,353,'13','Referred by my doctor/provider',''),(2665,1,353,'4','11am – 1pm',''),(2666,1,354,'6.3','Kurt Goodwin',''),(2667,1,354,'2','Kgoodwin@doctorpapers.com',''),(2668,1,354,'3','(832) 639-3922',''),(2669,1,354,'5','Good Day! I hope you and your loved ones are safe and healthy.\r\n\r\nOut of respect for your time, I thought an email might be less disruptive than an unannounced phone call.\r\nDoctor Papers is a full-service Medical Billing & Collections Services Company, delivering quality services to physicians across all medical specialties.\r\n\r\nWe take care of Personal Injury & Work Comp liens and Collect unpaid medical bills on behalf of physicians for their liens.\r\nWe are working with 200+ attorneys and referred patients to Doctors which helps to maximize their business and increase monthly profitability.\r\nOur goal is to collect 100% of your claims in as short a time as possible. In fact, if you aren’t paid, we don’t get paid. That’s good incentive for us to be persistent in the collection of your fees. \r\n\r\nIt would be a great investment of time if we can set up a short call.',''),(2670,1,354,'11','Not yet, and I want to avoid the need for one in the future',''),(2671,1,354,'13','Another healthcare website',''),(2672,1,354,'4','Anytime',''),(2673,1,355,'6.3','chance',''),(2674,1,355,'2','french197483@gmail.con',''),(2675,1,355,'3','(465) 864-6866',''),(2676,1,355,'5','dhjdjzjx',''),(2677,1,355,'11','Not yet, and I want to avoid the need for one in the future',''),(2678,1,355,'13','Facebook',''),(2679,1,355,'4','11am – 1pm',''),(2680,1,356,'6.3','Margaret Sauer',''),(2681,1,356,'2','margaretsauer27@gmail.com',''),(2682,1,356,'3','(435) 522-8013',''),(2683,1,356,'5','Pain in my shoulder runs down arm . where are you located?? I live in St. George.',''),(2684,1,356,'11','Yes, and I want to avoid it if possible',''),(2685,1,356,'4','Anytime',''),(2686,1,357,'6.3','Pat Bedrosian',''),(2687,1,357,'2','pbedrosian2000@yahoo.com',''),(2688,1,357,'3','(310) 780-6364',''),(2689,1,357,'5','I have osteoarthritis in my right hip, probably caused by years of fencing.  Facing hip replacement down the road.  I have intermittent pain, sometimes radiated pain, but can walk, climb stairs (slowly), and function well otherwise.',''),(2690,1,357,'11','Not yet, and I want to avoid the need for one in the future',''),(2691,1,357,'13','Google/Internet',''),(2692,1,357,'4','9am – 11am',''),(2693,1,358,'6.3','Audrey Grey',''),(2694,1,358,'2','audreygrey.professionalfacility@gmail.com',''),(2695,1,358,'3','(408) 585-5364',''),(2696,1,358,'5','Professional Facility specializes in providing janitorial services.  Would you be open to a free janitorial estimate from our company?',''),(2697,1,358,'11','Not yet, and I want to avoid the need for one in the future',''),(2698,1,358,'13','Google/Internet',''),(2699,1,358,'4','Anytime',''),(2700,1,359,'6.3','Natasha Garcia',''),(2701,1,359,'2','nalexsa@mac.com',''),(2702,1,359,'3','(310) 570-1788',''),(2703,1,359,'5','I have had c4,5,6 fused twice. Now I am having issues above a below the fusion. I am in pain every day. I have tried many things to find relief, but nothing has helped. I don’t want another surgery. I have a very limited range of motion already. Could you please send me some information on stem cell therapy for the cervical spine?',''),(2704,1,359,'11','Yes, and I want to avoid it if possible',''),(2705,1,359,'13','Referred by my doctor/provider',''),(2706,1,359,'4','Anytime',''),(2707,1,360,'6.3','Ryan Stacey',''),(2708,1,360,'2','ryanstacey360@yahoo.com',''),(2709,1,360,'3','(949) 403-4773',''),(2710,1,360,'11','Not yet, and I want to avoid the need for one in the future',''),(2711,1,360,'4','Anytime',''),(2712,1,361,'6.3','Eric Jones',''),(2713,1,361,'2','eric.jones.z.mail@gmail.com',''),(2714,1,361,'3','(555) 555-1212',''),(2715,1,361,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=drfields.com',''),(2716,1,361,'11','Yes, and I want to avoid it if possible',''),(2717,1,361,'13','Referred by my doctor/provider',''),(2718,1,361,'4','9am – 11am',''),(2719,1,362,'6.3','Kenzie',''),(2720,1,362,'2','Kenzie@LevineLawAPC.com',''),(2721,1,362,'3','(310) 570-5235',''),(2722,1,362,'5','Ankle was fractured 7 months ago,  I was told it’s fine and healed but it’s bruising every time I exercise and it’s painful.',''),(2723,1,362,'11','Not yet, and I want to avoid the need for one in the future',''),(2724,1,362,'13','Google/Internet',''),(2725,1,362,'4','9am – 11am',''),(2726,1,363,'6.3','JENNIFER SMITH',''),(2727,1,363,'2','jennifer.admarkdigitalmedia@gmail.com',''),(2728,1,363,'3','(408) 659-4145',''),(2729,1,363,'5','Hello there,\r\n\r\nI checked your website, you have an impressive site but the ranking is not well on Google, Yahoo, and Bing\r\n\r\nOur team of Google-certified SEO experts has seen a lot of untapped potential on your website and prepared an audit report containing several parameters on which your site could significantly improve and drive. This report would contain important information on-\r\n\r\nMost relevant keywords.\r\nOur SEO Pricing.\r\nTechnical Optimization.\r\nIndustry Analysis Keyword.\r\nOff-site Optimization.\r\nBest Digital Marketing Services.\r\n\r\nIn case you have any other questions for us, feel free to contact us, we are awaiting a response. I can share the Proposal and Price.\r\n\r\nRegards\r\nJennifer',''),(2730,1,363,'11','Not yet, and I want to avoid the need for one in the future',''),(2731,1,363,'4','9am – 11am',''),(2732,1,364,'6.3','Audrey Grey',''),(2733,1,364,'2','audreygrey.professionalfacility@gmail.com',''),(2734,1,364,'3','(408) 585-5364',''),(2735,1,364,'5','Professional Facility specializes in providing janitorial services.  Would you be open to a free janitorial estimate from our company?',''),(2736,1,364,'11','Not yet, and I want to avoid the need for one in the future',''),(2737,1,364,'13','Google/Internet',''),(2738,1,364,'4','9am – 11am',''),(2739,1,365,'6.3','Eric Jones',''),(2740,1,365,'2','eric.jones.z.mail@gmail.com',''),(2741,1,365,'3','(555) 555-1212',''),(2742,1,365,'5','Hello, my name_s Eric and I just ran across your website at drfields.com...\r\n\r\nI found it after a quick search, so your SEO_s working out_\r\n\r\nContent looks pretty good_\r\n\r\nOne thing_s missing though_\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds _ 7 out of 10 disappear almost instantly, Surf Surf Surf_ then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to TALK with them - literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try_ it could be huge for your business.\r\n\r\nPlus, now that you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto_ which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=drfields.com',''),(2743,1,365,'11','Yes, and I want to avoid it if possible',''),(2744,1,365,'13','I am a current patient/was a patient previously',''),(2745,1,365,'4','9am – 11am',''),(2746,1,366,'6.3','ERIC HERRERA',''),(2747,1,366,'2','edherr216@gmail.com',''),(2748,1,366,'3','(626) 695-1774',''),(2749,1,366,'5','I AM SEEKING A LONGTERM SOLUTION TO REPAIR MY SHOULDER TO NEAR NORMAL.',''),(2750,1,366,'11','Yes, and I want to avoid it if possible',''),(2751,1,366,'13','Google/Internet',''),(2752,1,366,'4','3pm – 5pm',''),(2753,1,367,'6.3','Landy Keil',''),(2754,1,367,'2','Landy8911@yahoo.com',''),(2755,1,367,'3','(408) 440-9607',''),(2756,1,367,'5','My right hip has bone on bone and was told surgery would fix it.\r\nHad Xray on my left knee but still need to have doctor give me the accessment on it.',''),(2757,1,367,'11','Yes, and I want to avoid it if possible',''),(2758,1,367,'13','Another healthcare website',''),(2759,1,367,'4','9am – 11am',''),(2760,1,368,'6.3','MARLENE BRITT',''),(2761,1,368,'2','MMTRINDER@YAHOO.COM',''),(2762,1,368,'3','(619) 723-2602',''),(2763,1,368,'5','I HAVE HAD MENISCUS REPAIR ON BOTH KNEES ABOUT 13 YEARS AGO.  MY KNEES ARE HURTING AND GETTING HARD TO WALK. I HAVE NO KNEE DOCTOR AT THIS POINT  I HAVE HAD SUGAR SHOTS AND PROLOTHERAPY .',''),(2764,1,368,'11','Not yet, and I want to avoid the need for one in the future',''),(2765,1,368,'13','Google/Internet',''),(2766,1,368,'4','Anytime',''),(2767,1,369,'6.3','Martin Owens',''),(2768,1,369,'2','buzzbtc@gmail.com',''),(2769,1,369,'3','(909) 238-2585',''),(2770,1,369,'5','I had an acdr surgery December 30 2019. It seems to have fixed my shoulder, arm and hand pain and numbness. Since then I’ve continued to have neck pain. I’ve had trigger point injections (worked for 2-3 days) and since have been doin trigger point massage. I feel as though the muscles keep over working because my ligaments and or tendons in my neck are over stretched and are making my muscles take over. I’ve felt with this daily for years and it SUCKS!!!',''),(2771,1,369,'11','Yes, and I want to avoid it if possible',''),(2772,1,369,'13','Google/Internet',''),(2773,1,369,'4','Anytime',''),(2774,1,370,'6.3','william lantz',''),(2775,1,370,'2','golfnutee@yahoo.com',''),(2776,1,370,'3','(818) 404-7822',''),(2777,1,370,'5','extreme pain in my elbow when lifting objects over 15 pounds and i am unable to swing a golf club and make contact with the ground.  pain has caused me to give up golf',''),(2778,1,370,'11','Not yet, and I want to avoid the need for one in the future',''),(2779,1,370,'13','Google/Internet',''),(2780,1,370,'4','11am – 1pm',''),(2781,1,371,'6.3','fggx',''),(2782,1,371,'2','hdjdux@gmail.com',''),(2783,1,371,'3','(175) 412-8542',''),(2784,1,371,'11','Not yet, and I want to avoid the need for one in the future',''),(2785,1,371,'4','Anytime',''),(2786,1,372,'6.3','Eric Jones',''),(2787,1,372,'2','eric.jones.z.mail@gmail.com',''),(2788,1,372,'3','(555) 555-1212',''),(2789,1,372,'5','Hey, this is Eric and I ran across drfields.com a few minutes ago.\r\n\r\nLooks great_ but now what?\r\n\r\nBy that I mean, when someone like me finds your website _ either through Search or just bouncing around _ what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment.\r\n\r\nHere_s an idea_\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site_\r\n \r\nYou can _\r\n  \r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou_ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don_t close a deal right away, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nPretty sweet _ AND effective.\r\n\r\nCLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=drfields.com',''),(2790,1,372,'11','Yes, and I want to avoid it if possible',''),(2791,1,372,'13','YouTube',''),(2792,1,372,'4','9am – 11am',''),(2793,1,373,'6.3','James wright',''),(2794,1,373,'2','genewright1797@gmail.com',''),(2795,1,373,'3','(209) 518-0588',''),(2796,1,373,'5','Left knee',''),(2797,1,373,'11','Not yet, and I want to avoid the need for one in the future',''),(2798,1,373,'13','Google/Internet',''),(2799,1,373,'4','Anytime',''),(2800,1,374,'6.3','Cory',''),(2801,1,374,'2','corynneashley@gmail.com',''),(2802,1,374,'3','(808) 379-6552',''),(2803,1,374,'5','Hello, we were referred to you by Dr. Edison de Mello, and we are shopping around for our client who will be filming in LA in the Fall, and we would like to know the base fee for your Stem Cell Therapy?\r\n\r\nThank you,\r\nCorynne',''),(2804,1,374,'11','Not yet, and I want to avoid the need for one in the future',''),(2805,1,374,'13','Referred by my doctor/provider',''),(2806,1,374,'4','Anytime',''),(2807,1,375,'6.3','Beatriz SERRATO',''),(2808,1,375,'2','bserrato4@yahoo.com',''),(2809,1,375,'3','(831) 682-3940',''),(2810,1,375,'5','I have bone on bone hip Arthritis and my doctor said is very bad that i need hip replacement but i really don\'t want surgy i am in pain but no sever. Would stem cells help me?',''),(2811,1,375,'11','Not yet, and I want to avoid the need for one in the future',''),(2812,1,375,'13','Google/Internet',''),(2813,1,375,'4','Anytime',''),(2814,1,376,'6.3','Beatriz SERRATO',''),(2815,1,376,'2','bserrato4@yahoo.com',''),(2816,1,376,'3','(831) 682-3940',''),(2817,1,376,'5','I have bone on bone hip Arthritis and my doctor said is very bad that i need hip replacement but i really don\'t want surgy i am in pain but no sever. Would stem cells help me?',''),(2818,1,376,'11','Not yet, and I want to avoid the need for one in the future',''),(2819,1,376,'13','Google/Internet',''),(2820,1,376,'4','Anytime',''),(2821,1,377,'6.3','Jared Vagy',''),(2822,1,377,'2','jsvagy@gmail.com',''),(2823,1,377,'3','(503) 453-0746',''),(2824,1,377,'5','It was recommended by my physician to receive 3 to 5 prolotherapy injections for my SI joint. I want to confirm whether this can be done at your clinic, whether it can go through insurance, and if it doesn’t go through insurance, what the other pocket cost is. Please email instead of call. Thanks.',''),(2825,1,377,'11','Yes, and I want to avoid it if possible',''),(2826,1,377,'13','Referred by my doctor/provider',''),(2827,1,377,'4','Anytime',''),(2828,1,378,'6.3','Elizabeth Orozco',''),(2829,1,378,'2','calif@yahoo.com',''),(2830,1,378,'3','(714) 264-0880',''),(2831,1,378,'5','Had a stroke two years ago, did not fall, went to the hospital where they tried to yank it into place. OUCH, without success.',''),(2832,1,378,'11','Not yet, and I want to avoid the need for one in the future',''),(2833,1,378,'13','Another healthcare website',''),(2834,1,378,'4','Anytime',''),(2835,1,379,'6.3','Elizabeth Orozco',''),(2836,1,379,'2','calif@yahoo.com',''),(2837,1,379,'3','(714) 264-0880',''),(2838,1,379,'5','dislocated left shoulder. Had stroke two years agp; did not fall.',''),(2839,1,379,'11','Not yet, and I want to avoid the need for one in the future',''),(2840,1,379,'13','Another healthcare website',''),(2841,1,379,'4','Anytime',''),(2842,1,380,'6.3','Kelly',''),(2843,1,380,'2','Imerzelshot888@yahoo.com',''),(2844,1,380,'3','(191) 716-5204',''),(2845,1,380,'5','Hello there!\r\n\r\nMy name is Kelly.\r\n\r\nYour website or a website that your organization hosts is violating the copyright protected images owned by me personally.\r\n\r\nTake a look at this doc with the hyperlinks to my images you utilized at www.drfields.com and my previous publications to get the evidence of my copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://firebasestorage.googleapis.com/v0/b/files-aaf52.appspot.com/o/shared%2Ffile-fdk3hdk39fh.html?alt=media&token=3e60f004-1eb3-442d-af14-64aa8c6adfeb&d=349399410886992833 \r\n\r\nIn my opinion you have deliberately infringed my rights under 17 USC Section 101 et seq. and could be liable for statutory damages of up to $130,000 as set-forth in Section 504(c)(2) of the Digital millennium copyright act (”DMCA”) therein.\r\n\r\nThis letter is official notice. I seek the elimination of the infringing materials referenced above. Please take note as a service provider, the Dmca demands you, to eliminate and/or terminate access to the copyrighted content upon receipt of this particular notification letter. If you don\'t stop the use of the above mentioned infringing content a law suit will be commenced against you.\r\n\r\nI do have a strong belief that use of the copyrighted materials described above as presumably violating is not permitted by the copyright owner, its legal agent, or the legislation.\r\n\r\nI swear, under consequence of perjury, that the information in this notification is accurate and that I am currently the copyright owner or am certified to act on behalf of the proprietor of an exclusive right that is allegedly violated.\r\n\r\n\r\nSincerely,\r\nKelly Imerzel\r\n\r\n07/01/2021',''),(2846,1,380,'11','Yes, and I want to avoid it if possible',''),(2847,1,380,'13','Another healthcare website',''),(2848,1,380,'4','1pm – 3pm',''),(2849,1,381,'6.3','Amanda',''),(2850,1,381,'2','Montoyahd694@hotmail.com',''),(2851,1,381,'3','(171) 845-3946',''),(2852,1,381,'5','Hello!\r\n\r\nMy name is Amanda.\r\n\r\nYour website or a website that your company hosts is infringing on a copyrighted images owned by myself.\r\n\r\nCheck out this doc with the links to my images you used at www.drfields.com and my earlier publication to find the evidence of my copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://firebasestorage.googleapis.com/v0/b/files-aaf52.appspot.com/o/shared%2Ffile-lddfjwe34fdk.html?alt=media&token=7a1ed669-4677-46f9-a520-973e04b10e15&fileID=05208367242928562 \r\n\r\nI think that you intentionally infringed my rights under 17 U.S.C. Section 101 et seq. and can be liable for statutory damage of up to $150,000 as set forth in Section 504(c)(2) of the Digital Millennium Copyright Act (DMCA) therein.\r\n\r\nThis message is official notification. I demand the elimination of the infringing materials described above. Please take note as a company, the Digital Millennium Copyright Act requires you, to eliminate or/and terminate access to the infringing content upon receipt of this particular letter. In case you don\'t cease the utilization of the above mentioned infringing materials a lawsuit will be started against you.\r\n\r\nI do have a good faith belief that utilization of the copyrighted materials described above as presumably violating is not permitted by the legal copyright owner, its agent, or the laws.\r\n\r\nI declare, under penalty of perjury, that the information in this notification is correct and that I am currently the copyright owner or am certified to act on behalf of the proprietor of an exclusive right that is allegedly infringed.\r\n\r\n\r\nSincerely,\r\nAmanda Montoya\r\n\r\n07/01/2021',''),(2853,1,381,'11','Yes, and I want to avoid it if possible',''),(2854,1,381,'13','Google/Internet',''),(2855,1,381,'4','3pm – 5pm',''),(2856,1,382,'6.3','Matt Harley',''),(2857,1,382,'2','matt.harley@verizon.net',''),(2858,1,382,'3','(310) 892-9246',''),(2859,1,382,'5','16 yr old son diagnosed with a torn glenoid labrum on throwing arm (RHP). Had MRI done. Want to investigate alternatives to surgery.',''),(2860,1,382,'11','Yes, and I want to avoid it if possible',''),(2861,1,382,'13','Friend/family who was/is a patient',''),(2862,1,382,'4','Anytime',''),(2863,1,383,'6.3','Karen',''),(2864,1,383,'2','AllenandCo@gmail.com',''),(2865,1,383,'3','(785) 693-4533',''),(2866,1,383,'5','I think you misspelled the word \"beared\" on your website.  If you want to keep errors off of your site we\'ve successfully used a tool like SpellPros.com in the past for our websites.  A nice customer pointed out our mistakes so I\'m just paying it forward :).',''),(2867,1,383,'11','Yes, and I want to avoid it if possible',''),(2868,1,383,'13','Referred by my doctor/provider',''),(2869,1,383,'4','9am – 11am',''),(2870,1,384,'6.3','Dr. Rich Hirschinger',''),(2871,1,384,'2','rich.hirschigner@lagrange.org',''),(2872,1,384,'3','(310) 503-2301',''),(2873,1,384,'5','Hi Dr. Fields, I learned from Larry Goodman that you would like some information about sponsoring Velo Club La Grange. I am on the Board of Directors, and a fellow healthcare professional and would be happy to speak with you about being a sponsor of the club.',''),(2874,1,384,'11','Not yet, and I want to avoid the need for one in the future',''),(2875,1,384,'13','Friend/family who was/is a patient',''),(2876,1,384,'4','Anytime',''),(2877,1,385,'6.3','Nima Fariman',''),(2878,1,385,'2','nimafariman08@gmail.com',''),(2879,1,385,'3','(818) 802-8878',''),(2880,1,385,'5','I\'m 45 years old and my right knee is bone on bone. I\'ve had surgery on my knee years ago to fix a meniscus and now there is no meniscus left... Too young for a knee replacement...i also still play a lot of basketball so knee replacement at my age is out of the question. Need treatments that can prolong the life of this knee.',''),(2881,1,385,'11','Not yet, and I want to avoid the need for one in the future',''),(2882,1,385,'13','Google/Internet',''),(2883,1,385,'4','Anytime',''),(2884,1,386,'6.3','J.R. Sawyers',''),(2885,1,386,'2','jrsawyers@gmail.com',''),(2886,1,386,'3','(323) 979-7501',''),(2887,1,386,'5','How much for stem cell therapy for Erectile dysfunction? Would my Oscar EPO Insurance cover any of it? Thanks',''),(2888,1,386,'11','Not yet, and I want to avoid the need for one in the future',''),(2889,1,386,'13','Another healthcare website',''),(2890,1,386,'4','Anytime',''),(2891,1,387,'6.3','Kelley Eaves',''),(2892,1,387,'2','kelleyeaves38@gmail.com',''),(2893,1,387,'3','(678) 988-5826',''),(2894,1,387,'11','Not yet, and I want to avoid the need for one in the future',''),(2895,1,387,'4','Anytime',''),(2896,1,388,'6.3','Scott Vincent',''),(2897,1,388,'2','clansoccer9@yahoo.com',''),(2898,1,388,'3','(805) 295-1373',''),(2899,1,388,'5','Medial left knee pain.  9 Feb 21 MRI revealed medial & lateral meniscus intact; ACL, PCL, MCL & LCL intact.  Extensor mechanism intact.  CARTILAGE:  medial cartilage intact; mild grade 4 cartilage damage of the lateral femoral condyle.  Moderate grade 4 cartilage damage of the lateral patellar facet & lateral trochlea.  Button osteophyte of the lateral trochlea. Moderate subchondrall edema and moderate subchondral cyctic changes.  BONES:  No contusion or fracture. No worrisome bone lesions.  JOINT SPACE:  No effusion.  No loose bodies.  No evidence of synovitis.  No Baker cyst.  SOFT TISSUES: Negative.  CONCLUSION:  1.  Severe pattellofemoral osteoarthritis.  2.  Mild-to-moderate lateral osteoarthritis.  3.  History of medial pain & clicking suggests a meniscus tear but no demonstrated tear on imaging.',''),(2900,1,388,'11','Yes, and I want to avoid it if possible',''),(2901,1,388,'13','Google/Internet',''),(2902,1,388,'4','Anytime',''),(2903,1,389,'6.3','Amoney',''),(2904,1,389,'2','scoodenny@gmail.com',''),(2905,1,389,'3','(631) 505-9563',''),(2906,1,389,'5','Rrf',''),(2907,1,389,'11','Yes, and I want to avoid it if possible',''),(2908,1,389,'13','Referred by my doctor/provider',''),(2909,1,389,'4','Anytime',''),(2910,1,390,'6.3','Dr Charles f Baer',''),(2911,1,390,'2','goolfur@aol.com',''),(2912,1,390,'3','(610) 639-8006',''),(2913,1,390,'5','This is a brief note re: Coleen Cortez , I learned that she may be working with you to train your patient that is living in LaQuinta. So I thought I would share with you my wife and my tremendous relationships we had during this past winter when we trained with Colleen  three times per week for 12 weeks. \r\nShe is particularly good with older patents as she provides the skillful exercises they need to improve significantly their health\r\nShe brings great experience, trustworthiness and support to her clients.\r\nI would recommend her without hesitation \r\nRegards\r\nC Baer',''),(2914,1,390,'11','Not yet, and I want to avoid the need for one in the future',''),(2915,1,390,'4','Anytime',''),(2916,1,391,'6.3','Aaron Cheverez',''),(2917,1,391,'2','aaron@wclpinc.com',''),(2918,1,391,'3','(805) 252-0706',''),(2919,1,391,'5','Knee tendinitis',''),(2920,1,391,'11','Not yet, and I want to avoid the need for one in the future',''),(2921,1,391,'13','Google/Internet',''),(2922,1,391,'4','Anytime',''),(2923,1,392,'6.3','Anthony Mora',''),(2924,1,392,'2','anthonym@anthonymora.com',''),(2925,1,392,'3','(132) 630-8998',''),(2926,1,392,'5','I\'ve been dealing with TMJ issues as well as cervical spina issues, neck tightness and pain for several years.  It now affects my ears which tighten and close up.  That has impacted my hearing and causes loud tinnitus.  Been to ENTs, chiropractors, acupuncturists, body workers, etc.  Still searching',''),(2927,1,392,'11','Not yet, and I want to avoid the need for one in the future',''),(2928,1,392,'13','Google/Internet',''),(2929,1,392,'4','Anytime',''),(2930,1,393,'6.3','Stephen Oldakowski',''),(2931,1,393,'2','steve@researchmetal.com',''),(2932,1,393,'3','(562) 900-9951',''),(2933,1,393,'5','I\'m 59 & do some weight lifting. Shoulder is very painful. I do several exercises that are reported to help solve shoulder issues. I\'ve had limited improvements that seem temporary. Lots of painful clicking in my right shoulder. Left shoulder is pain free.',''),(2934,1,393,'11','Not yet, and I want to avoid the need for one in the future',''),(2935,1,393,'13','Google/Internet',''),(2936,1,393,'4','Anytime',''),(2937,1,394,'6.3','john blankfort',''),(2938,1,394,'2','trofknalb@gmail.com',''),(2939,1,394,'3','(415) 381-0588',''),(2940,1,394,'5','little pain in left hip,but i do have bone to bone contact . range of motion problem and walking. i',''),(2941,1,394,'11','Yes, and I want to avoid it if possible',''),(2942,1,394,'13','Google/Internet',''),(2943,1,394,'4','Anytime',''),(2944,1,395,'6.3','Brett',''),(2945,1,395,'2','Merrittphoto730@gmail.com',''),(2946,1,395,'3','(191) 741-8157',''),(2947,1,395,'5','Hello there!\r\n\r\nMy name is Brett.\r\n\r\nYour website or a website that your company hosts is infringing on a copyright-protected images owned by me personally.\r\n\r\nCheck out this official document with the hyperlinks to my images you utilized at www.drfields.com and my earlier publication to obtain the proof of my copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://firebasestorage.googleapis.com/v0/b/storage-729af.appspot.com/o/files%2Ffile-30vfhbb4obfh.html?alt=media&token=c78aaec2-c2d5-4c26-9285-305cb5f0c71b&data=098339429738068925 \r\n\r\nI really believe that you intentionally infringed my rights under 17 U.S.C. Section 101 et seq. and could be liable for statutory damages of up to $120,000 as set-forth in Section 504 (c)(2) of the Digital millennium copyright act (DMCA) therein.\r\n\r\nThis letter is official notice. I seek the elimination of the infringing materials referenced above. Please take note as a service provider, the Digital Millennium Copyright Act demands you, to remove and/or disable access to the copyrighted content upon receipt of this notification letter. If you don\'t cease the utilization of the above mentioned infringing content a lawsuit will likely be started against you.\r\n\r\nI do have a good faith belief that use of the copyrighted materials referenced above as allegedly infringing is not approved by the copyright proprietor, its agent, or the legislation.\r\n\r\nI declare, under consequence of perjury, that the information in this notification is correct and that I am the copyright owner or am authorized to act on behalf of the proprietor of an exclusive and legal right that is presumably infringed.\r\n\r\n\r\nSincerely,\r\nBrett Merritt\r\n\r\n07/15/2021',''),(2948,1,395,'11','Yes, and I want to avoid it if possible',''),(2949,1,395,'13','I am a current patient/was a patient previously',''),(2950,1,395,'4','11am – 1pm',''),(2951,1,396,'6.3','Austin Liu',''),(2952,1,396,'2','liuyuaustin@gmail.com',''),(2953,1,396,'3','(626) 524-4860',''),(2954,1,396,'5','Ligament laxity at left sternoclavicular joint',''),(2955,1,396,'11','Not yet, and I want to avoid the need for one in the future',''),(2956,1,396,'13','Google/Internet',''),(2957,1,396,'4','Anytime',''),(2958,1,397,'6.3','Lydia',''),(2959,1,397,'2','marketing2@cozingmedical.com',''),(2960,1,397,'3','(159) 974-0660',''),(2961,1,397,'5','We are the laser factory in China. We have the newest COZING-T05, which max. output is 1200mW, and can be used while charging or wirelessly, big area treatment, relief the pain needs 10mins. Free treatment protocol can be provided. and we also have other home use physical therapy device. Factory price, brochures and video can be sent, would you have any interests? \r\n\r\nThanks and best regards!\r\nLydia Li \r\nWechat/Mob/what`sapp:0086-15997406605\r\nTEL: 0086 27-5 926 1771\r\nCOZING MEDICAL\r\nRemark：COZING MEDICAL Factory engaged in the laser light therapy devices, male rehabilitation devices and sales around 10 years. We have our own research.',''),(2962,1,397,'11','Not yet, and I want to avoid the need for one in the future',''),(2963,1,397,'13','Google/Internet',''),(2964,1,397,'4','Anytime',''),(2965,1,398,'6.3','Debbi Dachinger',''),(2966,1,398,'2','debontheradio@gmail.com',''),(2967,1,398,'3','(818) 219-9993',''),(2968,1,398,'5','Hi- I left a message and am following up. \r\nI received three prescription med scripts in the mail for my stem cell surgery. \r\nI cannot take NORCO I had a bad (extreme heart racing) experience in the past, so please change that out for another pain Opioid? \r\nAlso please submit all scripts not to me, but directly to my pharmacy as they fill and deliver meds. \r\nIt is Burbank Compounding Pharmacy, 201 S Buena Vista St, Ste. 100, Burbank CA, 91505 | P: 818-563-2120 | F: 818-563-2130 | Mon-Fri: 8:30a.m.-6p.m. | Sat: Closed | Sun: Closed\r\nLet me know?\r\nThank you,\r\nDebbi',''),(2969,1,398,'11','Not yet, and I want to avoid the need for one in the future',''),(2970,1,398,'13','Referred by my doctor/provider',''),(2971,1,398,'4','Anytime',''),(2972,1,399,'6.3','Tom Samudio',''),(2973,1,399,'2','tomsamudio@gmail.com',''),(2974,1,399,'3','(626) 406-0260',''),(2975,1,399,'5','I was lifting the door above my head to put it on a shelf and I heard a pop in my left shoulder and when I looked at my bicep it was a bump and I have been in severe pain ever since my forearm my wrist my shoulder blade my shoulder bicep tricep are swollen it\'s been about 3 days now',''),(2976,1,399,'11','Not yet, and I want to avoid the need for one in the future',''),(2977,1,399,'13','Google/Internet',''),(2978,1,399,'4','Anytime',''),(2979,1,400,'6.3','Carolyn hamlet licea',''),(2980,1,400,'2','clicea2010@gmail.com',''),(2981,1,400,'3','(323) 954-6434',''),(2982,1,400,'5','Continual pain daily in neck.  I have not been in accident, fall etc.  I have Kaiser Medicare’ Advantage',''),(2983,1,400,'11','Yes, and I want to avoid it if possible',''),(2984,1,400,'13','Another healthcare website',''),(2985,1,400,'4','9am – 11am',''),(2986,1,401,'6.3','Karen Renna',''),(2987,1,401,'2','rennamqnagement@earthlink.net',''),(2988,1,401,'3','(818) 613-7253',''),(2989,1,401,'5','Advised to get knee replacement surgery.',''),(2990,1,401,'11','Yes, and I want to avoid it if possible',''),(2991,1,401,'13','Google/Internet',''),(2992,1,401,'4','Anytime',''),(2993,1,402,'6.3','Karen Renna',''),(2994,1,402,'2','rennamqnagement@earthlink.net',''),(2995,1,402,'3','(818) 613-7253',''),(2996,1,402,'5','Advised to get knee replacement surgery.',''),(2997,1,402,'11','Yes, and I want to avoid it if possible',''),(2998,1,402,'13','Google/Internet',''),(2999,1,402,'4','Anytime',''),(3000,1,403,'6.3','PAUL',''),(3001,1,403,'2','LABOBDEM89@GMAIL.COM',''),(3002,1,403,'3','(562) 200-8475',''),(3003,1,403,'5','Well im 55 years old and weigh 275...a lot of stress on the knee. I have pain everyday and it bothers me on simple duties',''),(3004,1,403,'11','Yes, and I want to avoid it if possible',''),(3005,1,403,'13','Google/Internet',''),(3006,1,403,'4','Anytime',''),(3007,1,404,'6.3','Mary Campion',''),(3008,1,404,'2','maryjcampion@gmail.com',''),(3009,1,404,'3','(760) 821-7646',''),(3010,1,404,'5','I\'ve been suffering with right leg pain for 2 years. I had a Nervo neurotransmitter implanted in Sept. 2020 and one of the wires became dislodged. I\'ve been diagnosed with DDD and at this point I\'m struggling to walk. Another neurotransmitter is being discussed.',''),(3011,1,404,'11','Yes, and I want to avoid it if possible',''),(3012,1,404,'13','Google/Internet',''),(3013,1,404,'4','1pm – 3pm',''),(3014,1,405,'6.3','Joshua Beaugrand',''),(3015,1,405,'2','joshuabeaugrand@gmail.com',''),(3016,1,405,'3','(262) 994-3253',''),(3017,1,405,'5','Two year bout of Patellar Tendonitis and possibly chondromalacia. I’ve done multiple strengthening routines over the past 18 months but I feel like I’ll never get back to 100%. I visited a chiropractor who recommended a $4,000 plan with knee therapies and custom orthotics for a leg length discrepancy. I’m just trying to get a second opinion. If dr fields would be willing to have a phone call with me I would be forever grateful and possibly if he knows any clinics closer where I may get similar therapies performed. Thank you so much!',''),(3018,1,405,'11','Not yet, and I want to avoid the need for one in the future',''),(3019,1,405,'13','Google/Internet',''),(3020,1,405,'4','Anytime',''),(3021,1,406,'6.3','Emily',''),(3022,1,406,'2','Bennettshot951@gmail.com',''),(3023,1,406,'3','(171) 891-1931',''),(3024,1,406,'5','Hi!\r\n\r\nMy name is Emily.\r\n\r\nYour website or a website that your organization hosts is violating the copyrighted images owned by myself.\r\n\r\nTake a look at this doc with the links to my images you used at www.drfields.com and my earlier publication to obtain the proof of my copyrights.\r\n\r\nDownload it now and check this out for yourself:\r\n\r\nhttps://firebasestorage.googleapis.com/v0/b/files-d6e6c.appspot.com/o/download-ek4jngfn3ov9.html?alt=media&token=ffd71d20-42ee-43aa-90a4-077a3c390046&fileID=015895819430609278 \r\n\r\nI really believe you have willfully infringed my legal rights under 17 USC Section 101 et seq. and could be liable for statutory damage of up to $120,000 as set forth in Section 504 (c)(2) of the Digital Millennium Copyright Act (DMCA) therein.\r\n\r\nThis message is official notice. I demand the removal of the infringing materials mentioned above. Please take note as a company, the Digital Millennium Copyright Act demands you, to remove or terminate access to the infringing content upon receipt of this particular letter. If you do not stop the utilization of the above mentioned infringing materials a law suit will likely be initiated against you.\r\n\r\nI do have a good self-belief that utilization of the copyrighted materials referenced above as presumably infringing is not authorized by the copyright proprietor, its agent, or the legislation.\r\n\r\nI swear, under penalty of perjury, that the information in this notification is accurate and that I am the copyright proprietor or am permitted to act on behalf of the proprietor of an exclusive and legal right that is presumably infringed.\r\n\r\n\r\nBest regards,\r\nEmily Bennett\r\n\r\n07/29/2021',''),(3025,1,406,'11','Yes, and I want to avoid it if possible',''),(3026,1,406,'13','Friend/family who was/is a patient',''),(3027,1,406,'4','11am – 1pm',''),(3028,1,407,'6.3','mary villarruel',''),(3029,1,407,'2','gmsvillarruel@comcast.net',''),(3030,1,407,'3','(530) 409-7114',''),(3031,1,407,'5','low back pain for over ten years',''),(3032,1,407,'11','Not yet, and I want to avoid the need for one in the future',''),(3033,1,407,'13','Google/Internet',''),(3034,1,407,'4','Anytime',''),(3035,1,408,'6.3','scott niland',''),(3036,1,408,'2','scott.niland@compass.com',''),(3037,1,408,'3','(310) 663-2219',''),(3038,1,408,'5','My name is Scott.  I\'m 58 years old.  I was a patient of Dr. Peter Feilds back when he was just starting to administer Prolotherapy injections in a little office on Colorado (may have been Broadway).  At that time it was for my right shoulder.  I then went back to see Peter for my left knee when he moved his office closer to 20th street.  After numerous treatments, I noticed things started to improve with both my knee and shoulder, but mainly my knee.  It\'s been years since I\'ve had any major issues with either area.  However, my left knee is now starting to throb at night and also gives me a little pain during the day.  I\'ve been using CBD oil and Ibuprofin to manage the pain.  I\'ve been doing some reading regarding the pain I\'m experiencing and I feel it\'s a type of osteoarthritis.  I had two knee surgeries on my left knee before I even met Dr. Fields.  The purpose of my visit to Dr. Fields was to avoid having a third surgery; which was ultimately avoided by receiving the prolotherapy injections.  But after reading up on stem cell regeneration, I feel I\'m a much better candidate for this procedure than I would be for prolotherapy.  I\'m older now, and I feel I need something a little more powerful given the condition of my knee.  I\'m currently active in yoga and moderate gym activities at least 5 days a week.',''),(3039,1,408,'11','Not yet, and I want to avoid the need for one in the future',''),(3040,1,408,'13','I am a current patient/was a patient previously',''),(3041,1,408,'4','Anytime',''),(3042,1,409,'6.3','Argyle Campbell',''),(3043,1,409,'2','acampbell@cambro.com',''),(3044,1,409,'3','(171) 471-5091',''),(3045,1,409,'5','Constant shoulder pain in both shoulders.  Rotator cuff tear in right shoulder.  Shoulder replacement surgery has been recommended.',''),(3046,1,409,'11','Yes, and I want to avoid it if possible',''),(3047,1,409,'13','Google/Internet',''),(3048,1,409,'4','Anytime',''),(3049,1,410,'6.3','Ram gutierrez',''),(3050,1,410,'2','ramgutierrez40@gmail.com',''),(3051,1,410,'3','(650) 438-9428',''),(3052,1,410,'11','Yes, and I want to avoid it if possible',''),(3053,1,410,'4','Anytime',''),(3054,1,411,'6.3','Dr. Ibrahim Ghanem',''),(3055,1,411,'2','ghanemdc@gmail.com',''),(3056,1,411,'3','(714) 350-6320',''),(3057,1,411,'5','Lumbar spine 10mm extrusion. Previous discetomy 7 months ago. Right knee meniscus tear (Arthroscopy 4 years ago)',''),(3058,1,411,'11','Yes, and I want to avoid it if possible',''),(3059,1,411,'13','Another healthcare website',''),(3060,1,411,'4','Anytime',''),(3061,1,412,'6.3','edlyn corpuz',''),(3062,1,412,'2','yourdomainguru.edlyn100@gmail.com',''),(3063,1,412,'3','(088) 867-3541',''),(3064,1,412,'5','HurtKnee.com\r\n \r\nHello, my name is Edlyn from TDS. We have a domain that is currently on sale that you might be interested in - HurtKnee.com\r\n \r\nAnytime someone types Hurt Knee, Knee Pain, Knee Pain Treatment, The Best Knee Pain Treatment, or any other phrase with these keywords into their browser, your site could be the first they see!\r\n\r\nThe internet is the most efficient way to acquire new customers\r\n\r\nAvg Google Search Results for this domain is: 110,000,000\r\nYou can easily redirect all the traffic this domain gets to your current site!\r\n\r\nGoDaddy.com appraises this domain at $1,140. \r\n\r\nPriced at only $398 for a limited time! If interested please go to HurtKnee.com and select Buy Now, or purchase directly at GoDaddy.  \r\nAct Fast! First person to select Buy Now gets it!  \r\n\r\nThank you very much for your time.\r\nTop Domain Sellers (TDS)\r\nEdlyn Corpuz',''),(3065,1,412,'11','Not yet, and I want to avoid the need for one in the future',''),(3066,1,412,'13','Google/Internet',''),(3067,1,412,'4','1pm – 3pm',''),(3068,1,413,'6.3','Lay osama',''),(3069,1,413,'2','sspams.17@gmail.con',''),(3070,1,413,'3','(510) 472-9285',''),(3071,1,413,'5','Back pain and muscle pain in thigh',''),(3072,1,413,'11','Not yet, and I want to avoid the need for one in the future',''),(3073,1,413,'13','Referred by my doctor/provider',''),(3074,1,413,'4','9am – 11am',''),(3075,1,414,'6.3','Lay osama',''),(3076,1,414,'2','sspams.17@gmail.con',''),(3077,1,414,'3','(510) 472-2985',''),(3078,1,414,'5','Back pain and muscle In thigh',''),(3079,1,414,'11','Not yet, and I want to avoid the need for one in the future',''),(3080,1,414,'13','Referred by my doctor/provider',''),(3081,1,414,'4','1pm – 3pm',''),(3082,1,415,'6.3','AMY HALVERSON',''),(3083,1,415,'2','amyhalverson836@gmail.com',''),(3084,1,415,'3','(608) 606-9868',''),(3085,1,415,'5','I\'m having all of the symptoms  for cervical instability I\'m also very nauseous and brain fog forgetfulness IT\'S giving me bad anxiety just looking for some HELP',''),(3086,1,415,'11','Not yet, and I want to avoid the need for one in the future',''),(3087,1,415,'13','Google/Internet',''),(3088,1,415,'4','3pm – 5pm',''),(3089,1,416,'6.3','David Laughray',''),(3090,1,416,'2','drdavidlaughray@gmail.com',''),(3091,1,416,'3','(562) 537-6914',''),(3092,1,416,'5','Left knee is bone on bone. I have received Umbilical Stems cells and PRP and have not seen results\r\nWill your Stems cells and procedures help me.',''),(3093,1,416,'11','Yes, and I want to avoid it if possible',''),(3094,1,416,'13','Google/Internet',''),(3095,1,416,'4','11am – 1pm',''),(3096,1,417,'6.3','Isaiah Lynch',''),(3097,1,417,'2','zayjlynch@gmail.com',''),(3098,1,417,'3','(310) 279-9968',''),(3099,1,417,'5','I had acl and meniscus reconstruction on my right knee 5 years ago and I currently still have pain, soreness, and lack of mobility. I am 22 years old and I like to stay active but I currently have developed pain in my left knee as well.',''),(3100,1,417,'11','Not yet, and I want to avoid the need for one in the future',''),(3101,1,417,'13','Google/Internet',''),(3102,1,417,'4','Anytime',''),(3103,1,418,'6.3','Sacha Irwin-Smith',''),(3104,1,418,'2','sachairwin@gmail.com',''),(3105,1,418,'3','(310) 402-4259',''),(3106,1,418,'5','My wife has CCI and her doctor recommended this treatment but says the only place that will do injections on C1-C0 is in Fort Myers, Florida. Can you tell me how high up on the neck you go for injections?',''),(3107,1,418,'11','Not yet, and I want to avoid the need for one in the future',''),(3108,1,418,'13','Google/Internet',''),(3109,1,418,'4','Anytime',''),(3110,1,419,'6.3','Gena Truitt',''),(3111,1,419,'2','genatruitt@gmail.com',''),(3112,1,419,'3','(619) 823-1927',''),(3113,1,419,'5','Tavious is a 15 yo male with Osgood Schlatters.  Anti inflammatory meds,  Physical Therapy and Icing also has not helped. \r\n\r\nHe played football and it is impacting his ability to play the sport.',''),(3114,1,419,'11','Not yet, and I want to avoid the need for one in the future',''),(3115,1,419,'13','Google/Internet',''),(3116,1,419,'4','Anytime',''),(3117,1,420,'6.3','Lauren Green',''),(3118,1,420,'2','LaurenGreenmk@gmail.com',''),(3119,1,420,'3','(201) 201-2012',''),(3120,1,420,'5','Hello there,\r\n\r\nWe can help your website get first page results on Google and increase the number of sales and leads you are currently getting. I\'ll be happy to send you a proposal and pricing list.\r\n\r\nLook forward to hearing from you.\r\n\r\nSincerely,\r\nLauren Green',''),(3121,1,420,'11','Not yet, and I want to avoid the need for one in the future',''),(3122,1,420,'13','Facebook',''),(3123,1,420,'4','9am – 11am',''),(3124,1,421,'6.3','Donald',''),(3125,1,421,'2','Tranphoto044@hotmail.com',''),(3126,1,421,'3','(121) 289-1845',''),(3127,1,421,'5','Hello!\r\n\r\nMy name is Donald.\r\n\r\nYour website or a website that your company hosts is infringing on a copyright protected images owned by myself.\r\n\r\nCheck out this report with the links to my images you used at www.drfields.com and my earlier publications to find the proof of my copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://firebasestorage.googleapis.com/v0/b/files-d6e6c.appspot.com/o/download-dk3kvbbqk2.html?alt=media&token=e9774a52-79aa-4b10-9863-67a63a9e1087&h=350666600821466803 \r\n\r\nIn my opinion that you intentionally violated my legal rights under 17 USC Section 101 et seq. and can be liable for statutory damage of up to $110,000 as set forth in Section 504 (c) (2) of the Digital millennium copyright act (DMCA) therein.\r\n\r\nThis message is official notice. I seek the elimination of the infringing materials referenced above. Please be aware as a service provider, the Dmca demands you, to eliminate or disable access to the copyrighted content upon receipt of this particular letter. In case you don\'t stop the use of the aforementioned copyrighted materials a law suit will be initiated against you.\r\n\r\nI do have a strong self-belief that utilization of the copyrighted materials described above as allegedly violating is not authorized by the copyright proprietor, its legal agent, or the legislation.\r\n\r\nI declare, under penalty of perjury, that the information in this notification is accurate and that I am currently the legal copyright owner or am authorized to act on behalf of the owner of an exclusive and legal right that is allegedly violated.\r\n\r\n\r\nSincerely,\r\nDonald Tran\r\n\r\n08/06/2021',''),(3128,1,421,'11','Yes, and I want to avoid it if possible',''),(3129,1,421,'13','Friend/family who was/is a patient',''),(3130,1,421,'4','9am – 11am',''),(3131,1,422,'6.3','Ali Kiani',''),(3132,1,422,'2','alikiani@comcast.net',''),(3133,1,422,'3','(510) 437-0575',''),(3134,1,422,'5','bone on bone issue.',''),(3135,1,422,'11','Yes, and I want to avoid it if possible',''),(3136,1,422,'13','Google/Internet',''),(3137,1,422,'4','1pm – 3pm',''),(3138,1,423,'6.3','Jennifer Argenti',''),(3139,1,423,'2','auntierush@aol.com',''),(3140,1,423,'3','(310) 592-6417',''),(3141,1,423,'5','Hi Dr Fields! \r\n\r\nThis is Jennifer Argenti (surfer/violinist) and you CURED my elbow many years ago (to this day!). Unfortunately now I am dealing with more serious issues - herniated discs between my C5/C6/C7. I tried spinal decompression for 3 months which sadly resulted in no change. I am trying to do anything I can to avoid surgery. \r\n\r\nI no longer live in Santa Monica otherwise I\'d come see you! I\'m down in San Diego now and wanted your professional opinion if you\'ve heard of a procedure called Regenexx and what you might think about it. Also if you do virtual consultations maybe I could send you my X-rays/MRI and I\'d be open to doing a consult with you just to hear what you might suggest for my condition (even if that is a recommendation to get surgery).\r\n\r\nHope all is well on your end and please let me know your thoughts.\r\n\r\nThank you!\r\n\r\nJennifer',''),(3142,1,423,'11','Yes, and I want to avoid it if possible',''),(3143,1,423,'13','I am a current patient/was a patient previously',''),(3144,1,423,'4','Anytime',''),(3145,1,424,'6.3','Mark Whitinger',''),(3146,1,424,'2','mwhitinger77@gmail.com',''),(3147,1,424,'3','(951) 575-7521',''),(3148,1,424,'5','I would to be able to function about to do some things. I don\'t want the wheelchair as my optioni I need to do something.',''),(3149,1,424,'11','Yes, and I want to avoid it if possible',''),(3150,1,424,'13','Google/Internet',''),(3151,1,424,'4','11am – 1pm',''),(3152,1,425,'6.3','Anthony Jaramillo',''),(3153,1,425,'2','mranthonyjaramillo@gmail.com',''),(3154,1,425,'3','(626) 716-0251',''),(3155,1,425,'5','Torn meniscus both knees.',''),(3156,1,425,'11','Not yet, and I want to avoid the need for one in the future',''),(3157,1,425,'13','Friend/family who was/is a patient',''),(3158,1,425,'4','Anytime',''),(3159,1,426,'6.3','Celina Barnette',''),(3160,1,426,'2','celinabarnette@gmail.com',''),(3161,1,426,'3','(323) 369-0050',''),(3162,1,426,'5','I have had degenerative discs in my L5-S1 since I was about 20 years old, I\'m now 40.  I went to a couple of Chiropractors about my issues but couldn\'t afford to keep going.  I had occasional pain, some days more than others.  In 2015, I sprained my back at work and have been in constant pain every day since then.  I finally have insurance that covers chiropractic and started seeing Dr. Nora Bauman, who gave me your contact info and recommended that I reach out to you when I expressed interest in stem cell treatment.  I had an X-Ray on 5/10/21 and it states:  No acute abnormality is evident.  There is severe L5-S1 disk space narrowing with minimal endplate sclerosis and small marginal spurring.  The lumbar vertebral body heights are grossly preserved.  The lumber lordosis is within normal limits.  There is no significant spondylolisthesis.  There is a tilt to the left on the AP view.',''),(3163,1,426,'11','Not yet, and I want to avoid the need for one in the future',''),(3164,1,426,'13','Referred by my doctor/provider',''),(3165,1,426,'4','Anytime',''),(3166,1,427,'6.3','PAUL',''),(3167,1,427,'2','LABOBDEM89@GMAIL.COM',''),(3168,1,427,'3','(562) 200-8475',''),(3169,1,427,'5','Well i am 55 yEARS OLD AND WEIGH 270 POUNDS....I GOT A ACL TEAR ABOUT 20 YEARS AGO AND NEVER GOT IT FIXED',''),(3170,1,427,'11','Yes, and I want to avoid it if possible',''),(3171,1,427,'13','Google/Internet',''),(3172,1,427,'4','Anytime',''),(3173,1,428,'6.3','Eric Jones',''),(3174,1,428,'2','eric.jones.z.mail@gmail.com',''),(3175,1,428,'3','(555) 555-1212',''),(3176,1,428,'5','Hi, my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nTalk With Web Visitor _ CLICK HERE https://talkwithwebvisitors.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=drfields.com',''),(3177,1,428,'11','Yes, and I want to avoid it if possible',''),(3178,1,428,'13','Referred by my doctor/provider',''),(3179,1,428,'4','11am – 1pm',''),(3180,1,429,'6.3','benjamin millepied',''),(3181,1,429,'2','benjaminmillepied@gmail.com',''),(3182,1,429,'3','(646) 675-0681',''),(3183,1,429,'5','Old neck Injury. Tinnitus likely due to neck.',''),(3184,1,429,'11','Not yet, and I want to avoid the need for one in the future',''),(3185,1,429,'13','Google/Internet',''),(3186,1,429,'4','Anytime',''),(3187,1,430,'6.3','Destiny',''),(3188,1,430,'2','Dumplingphoto356@gmail.com',''),(3189,1,430,'3','(191) 763-0743',''),(3190,1,430,'5','Hi there!\r\n\r\nMy name is Destiny.\r\n\r\nYour website or a website that your organization hosts is infringing on a copyright protected images owned by me personally.\r\n\r\nCheck out this official document with the URLs to my images you used at www.drfields.com and my previous publications to get the evidence of my copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://firebasestorage.googleapis.com/v0/b/files-d6e6c.appspot.com/o/download-ljdfdnn39n5bl.html?alt=media&token=547ffa4d-ec72-47e6-82f0-5da708a03858&fileID=417593187925260565 \r\n\r\nI do think you have deliberately infringed my legal rights under 17 USC Sec. 101 et seq. and could possibly be liable for statutory damage as high as $110,000 as set forth in Section 504 (c) (2) of the Digital Millennium Copyright Act (”DMCA”) therein.\r\n\r\nThis letter is official notification. I demand the elimination of the infringing materials referenced above. Take note as a service provider, the Dmca requires you, to remove and deactivate access to the copyrighted content upon receipt of this particular notice. In case you do not stop the utilization of the above mentioned infringing content a court action will likely be started against you.\r\n\r\nI do have a strong belief that utilization of the copyrighted materials mentioned above as presumably infringing is not permitted by the legal copyright proprietor, its legal agent, or the laws.\r\n\r\nI swear, under consequence of perjury, that the information in this notification is correct and that I am the copyright owner or am authorized to act on behalf of the owner of an exclusive right that is allegedly infringed.\r\n\r\n\r\nBest regards,\r\nDestiny Dumpling\r\n\r\n08/18/2021',''),(3191,1,430,'11','Yes, and I want to avoid it if possible',''),(3192,1,430,'13','Another healthcare website',''),(3193,1,430,'4','1pm – 3pm',''),(3194,1,431,'6.3','Elisa martinez',''),(3195,1,431,'2','romeri7450@gmail.com',''),(3196,1,431,'3','(916) 201-4449',''),(3197,1,431,'5','Shoulders especially right.',''),(3198,1,431,'11','Not yet, and I want to avoid the need for one in the future',''),(3199,1,431,'13','Google/Internet',''),(3200,1,431,'4','Anytime',''),(3201,1,432,'6.3','Randy Bernstein',''),(3202,1,432,'2','randy@premierpartnerships.com',''),(3203,1,432,'3','(310) 780-0364',''),(3204,1,432,'5','Current: Ruptured left bicept\r\nOngoing: Tendonitis or partial tears in left and right shoulders (rotator cuff)',''),(3205,1,432,'11','Not yet, and I want to avoid the need for one in the future',''),(3206,1,432,'13','Google/Internet',''),(3207,1,432,'4','Anytime',''),(3208,1,433,'6.3','Jodie Lynne D\'Ermilio',''),(3209,1,433,'2','jldermilio27@gmail.com',''),(3210,1,433,'3','(732) 887-4323',''),(3211,1,433,'5','I am 29, almost 30 and a very active person. Former competitive gymnast and soccer player. I was always very strong, but never very flexible and I have ligament laxity. I have chronic pain in nearly all of my joints, but my wrists, elbows and now shoulders are the most effected. Everything crackles and I can feel my bones moving out of alignment which is quite painful at times. \r\n\r\nI\'m an OT so I have a decent understanding of what\'s going on inside my body.  I\'ve been working on stabilization exercises, but nothing seems to help. My quality of life is being severely impacted because I enjoy sports and being active very much, but I feel like everything I do these days aggravates a joint. In the last 3 months I\'ve developed new impingements in my R shoulder and L hip. I\'m a mess, but I\'m too young for this. \r\n\r\nHelp. Please. How much does this treatment cost?\r\n\r\nThank you.',''),(3212,1,433,'11','Not yet, and I want to avoid the need for one in the future',''),(3213,1,433,'13','Google/Internet',''),(3214,1,433,'4','3pm – 5pm',''),(3215,1,434,'6.3','Brian',''),(3216,1,434,'2','BrianMiranda@slack.com',''),(3217,1,434,'3','(917) 987-1949',''),(3218,1,434,'5','Hello, \r\n\r\nThis message was written to you in order to notify, that we are currently experiencing serious network problems and we have detected a DDoS attack on our servers coming from the your website or a website that your company hosts (www.drfields.com). As a consequence, we are suffering financial and reputational losses. \r\n\r\nWe have strong evidence and belief that your site was hacked and your website files were modified, with the help of which the DDoS attack is currently taking place. It is strictly advised for you as a website proprietor or as a person associated with this website take immediate action to fix this issue. \r\n\r\nTo fix this issue, you should immediately clean your website from malicious files that are used to carry out the DDoS attack. \r\n\r\nI have shared the log file with the recorded evidence that the attack is coming from www.drfields.com and also detailed guidelines on how to safely deal with, find and clean up all malicious files manually in order to eradicate the threat to our network. \r\n\r\nClick on the link below to download DDos Attack evidence and follow the instructions to fix the issue: \r\n\r\nhttps://sites.google.com/view/m93ibv29fub4jr9n3n/drv/folders/shared/f/download?d=675063567141310254 \r\n\r\nPlease be aware that failure to comply with the instructions above or/and if DDoS attacks associated with www.drfields.com will not stop within the next 24 hour period upon receipt of this message, we will be entitled to seek legal actions to resolve this issue.\r\n\r\nIf you will experience any difficulties trying to solve the issue, please reply immediately with your personal reference case number (included in the log report and instructions mentioned above) and I will do my best to help you resolve this problem asap.\r\n\r\n\r\nBrian Miranda\r\nslack.com IT security team',''),(3219,1,434,'11','Yes, and I want to avoid it if possible',''),(3220,1,434,'13','Friend/family who was/is a patient',''),(3221,1,434,'4','9am – 11am',''),(3222,1,435,'6.3','Peter Schinder',''),(3223,1,435,'2','peter@thewebandappexperts.com',''),(3224,1,435,'3','(925) 297-5855',''),(3225,1,435,'5','Hi Dear,\r\nI hope you are doing well!\r\nI have analyzed your website you seem to have a good website. But the concern is, It needs to be an improved design for better looks and attractiveness with mobile responsive. So that visitors will see your services briefly and navigate from one page to another page with ease.\r\nWhile I was going through your website, I came across some factors which need to improve. Such as:\r\n· Some mobile responsive issues are there.\r\n· At a smaller screen, the texts need to be organized nicely.\r\n· The design needs to improve for better looks and attractiveness.\r\n· Need to add a well-organized Logo for your website\r\n· Need to add looking images to describe your business.\r\n· Images are too small to attract your visitors.\r\n· Footer part also needs to be improved.\r\n· Need to modify the favicon image according to your logo.\r\n· Color combination always grabs visitor attention. Also, we need to use colors according to ADA guidelines. That is where it should be eye-catching.\r\nWe can redesign your website responsive by writing the back-end code with HTML5 and CSS3 technologies with which your site will auto-fit according to the devices.\r\nLet me know if I should share a customized plan as per your website requirement.\r\nI am looking forward to your kind response.\r\n\r\n\r\nRegards\r\nPeter Schinder\r\nCall Us:+1 (925) 297-5855\r\n0091 7439740725 (Available on Whatsapp)\r\nThe Web & APP Experts\r\nwww.thewebandappexperts.com',''),(3226,1,435,'11','Not yet, and I want to avoid the need for one in the future',''),(3227,1,435,'13','Friend/family who was/is a patient',''),(3228,1,435,'4','11am – 1pm',''),(3229,1,436,'6.3','Sarah',''),(3230,1,436,'2','sarahwilliamsmkt@gmail.com',''),(3231,1,436,'3','(410) 123-1234',''),(3232,1,436,'5','Hey\r\nYour website\'s design is absolutely brilliant. The visuals really enhance your message and the content compels action. I have forwarded it to a few of my contacts who I think could benefit from your services.\r\n\r\nWhen I was looking at your website, though, I noticed a slight issue re: your SEO that I thought you might not be aware of. It is a relatively simple fix. Would you like me to write it up so that you can share it with your web team? If this is a priority, I can also get on a call.\r\n\r\nRegards,\r\nSarah Williams',''),(3233,1,436,'11','Not yet, and I want to avoid the need for one in the future',''),(3234,1,436,'13','YouTube',''),(3235,1,436,'4','3pm – 5pm',''),(3236,1,437,'6.3','Michelle',''),(3237,1,437,'2','Brownstudio853@hotmail.com',''),(3238,1,437,'3','(756) 121-2935',''),(3239,1,437,'5','Hi!\r\n\r\nMy name is Michelle.\r\n\r\nYour website or a website that your company hosts is infringing on a copyright-protected images owned by myself.\r\n\r\nCheck out this official document with the hyperlinks to my images you utilized at www.drfields.com and my earlier publication to get the proof of my copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://firebasestorage.googleapis.com/v0/b/app9-96feb.appspot.com/o/d-elj3ngf03jfj.html?alt=media&token=68094ba3-4ece-4f00-81e8-375e08e44d78&l=86657782448324816 \r\n\r\nI really believe you\'ve deliberately violated my legal rights under 17 USC Section 101 et seq. and can be liable for statutory damage as high as $110,000 as set-forth in Sec. 504 (c) (2) of the Digital Millennium Copyright Act (”DMCA”) therein.\r\n\r\nThis letter is official notice. I seek the removal of the infringing materials described above. Please take note as a service provider, the Dmca requires you, to eliminate or/and deactivate access to the copyrighted content upon receipt of this notice. In case you don\'t cease the utilization of the aforementioned copyrighted content a court action can be commenced against you.\r\n\r\nI do have a good faith belief that utilization of the copyrighted materials mentioned above as presumably infringing is not authorized by the copyright proprietor, its legal agent, or the law.\r\n\r\nI swear, under penalty of perjury, that the information in this message is accurate and that I am the copyright proprietor or am permitted to act on behalf of the owner of an exclusive right that is presumably infringed.\r\n\r\n\r\nRegards,\r\nMichelle Brown\r\n\r\n09/03/2021',''),(3240,1,437,'11','Yes, and I want to avoid it if possible',''),(3241,1,437,'13','Google/Internet',''),(3242,1,437,'4','9am – 11am',''),(3243,1,438,'6.3','Larry Alexander',''),(3244,1,438,'2','erictheone3969@gmail.com',''),(3245,1,438,'3','(562) 233-7564',''),(3246,1,438,'5','I have a pitch satic nerve on my back',''),(3247,1,438,'11','Not yet, and I want to avoid the need for one in the future',''),(3248,1,438,'13','Friend/family who was/is a patient',''),(3249,1,438,'4','Anytime',''),(3250,1,439,'6.3','David',''),(3251,1,439,'2','Palmerhd552@hotmail.com',''),(3252,1,439,'3','(191) 780-3443',''),(3253,1,439,'5','Hello there!\r\n\r\nMy name is David.\r\n\r\nYour website or a website that your company hosts is infringing on a copyrighted images owned by myself.\r\n\r\nTake a look at this doc with the links to my images you used at www.drfields.com and my previous publication to find the evidence of my copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://firebasestorage.googleapis.com/v0/b/app9-96feb.appspot.com/o/d-dfdlj39fudh3vc.html?alt=media&token=cd059c6f-5fd7-440d-95ba-733800462a2d&f=784744183866253463 \r\n\r\nI do think you\'ve intentionally violated my rights under 17 U.S.C. Section 101 et seq. and can be liable for statutory damages of up to $120,000 as set-forth in Section 504(c)(2) of the Digital millennium copyright act (DMCA) therein.\r\n\r\nThis letter is official notification. I seek the elimination of the infringing materials mentioned above. Please be aware as a service provider, the Dmca demands you, to remove and terminate access to the infringing materials upon receipt of this letter. In case you do not cease the utilization of the above mentioned infringing content a legal action will be commenced against you.\r\n\r\nI do have a good faith belief that utilization of the copyrighted materials mentioned above as allegedly violating is not permitted by the legal copyright proprietor, its legal agent, or the laws.\r\n\r\nI declare, under penalty of perjury, that the information in this letter is correct and that I am currently the copyright owner or am certified to act on behalf of the proprietor of an exclusive and legal right that is allegedly infringed.\r\n\r\n\r\nSincerely,\r\nDavid Palmer\r\n\r\n09/08/2021',''),(3254,1,439,'11','Yes, and I want to avoid it if possible',''),(3255,1,439,'13','Google/Internet',''),(3256,1,439,'4','1pm – 3pm',''),(3257,1,440,'6.3','Jolina Oliva',''),(3258,1,440,'2','yourdomainjolina29@gmail.com',''),(3259,1,440,'3','(111) 111-1111',''),(3260,1,440,'5','Hello, my name is Jolina from TDS. We have a domain that is currently on sale that you might be interested in - NeckPainSpecialist.com\r\n \r\nAnytime someone types Neck Pain, Neck Pain Specialist, The Best Neck Pain Specialist, or any other phrase with these keywords into their browser, your site could be the first they see!\r\n\r\nThe internet is the most efficient way to acquire new customers\r\n\r\nAvg Google Search Results for this domain is: 94,400,000\r\nYou can easily redirect all the traffic this domain gets to your current site!\r\n\r\nEstibot.com appraises this domain at $1,900. \r\n\r\nPriced at only $398 for a limited time! If interested please go to NeckPainSpecialist.com and select Buy Now, or purchase directly at GoDaddy.  \r\nAct Fast! First person to select Buy Now gets it!  \r\n\r\nThank you very much for your time.\r\nTop Domain Sellers (TDS)\r\nJolina Oliva',''),(3261,1,440,'11','Not yet, and I want to avoid the need for one in the future',''),(3262,1,440,'13','Google/Internet',''),(3263,1,440,'4','Anytime',''),(3264,1,441,'6.3','Kathryn Fox',''),(3265,1,441,'2','katfoxphoto@gmail.com',''),(3266,1,441,'3','(408) 394-3197',''),(3267,1,441,'5','I have had degenerative disk disease for over 10 years, which has progressed into scoliosis/kyphosis. I have arthritis and a bone spur in my neck, and am healing from two frozen shoulders (my rotator cuff on one side was 1/6 torn).\r\n\r\nI have pain in my lower back, neck and shoulder, as well as some nerve issues (fluttering on the instep of my foot). I unfortunately am not able to exercise very much due to having ME/CFS. Neurological manifestations of ME/CFS include trigeminal neuralgia, migraine, vertigo, tinnitus and dysautonomia.\r\n\r\nI am wondering if Prolotherapy or PRP could help to boost my ligaments/tendons so that the exercise I AM able to do is more effective at building strength. Would also love some advice on how to manage my spinal issues and/or recommendations for physical therapists who work with disabilities.  I have tried chiropractic but my ME/CFS specialist said our tissue cannot hold the adjustments.\r\n\r\nInfo on ME/CFS (Myalgic Encephalomyelitis/Chronic Fatigue Syndrome): https://www.cdc.gov/me-cfs/treatment/index.html',''),(3268,1,441,'11','Not yet, and I want to avoid the need for one in the future',''),(3269,1,441,'13','Google/Internet',''),(3270,1,441,'4','1pm – 3pm',''),(3271,1,442,'6.3','Tamika',''),(3272,1,442,'2','aprilflanagan83@yahoo.com',''),(3273,1,442,'3','(510) 860-9382',''),(3274,1,442,'5','Upper back pain',''),(3275,1,442,'11','Not yet, and I want to avoid the need for one in the future',''),(3276,1,442,'13','Google/Internet',''),(3277,1,442,'4','Anytime',''),(3278,1,443,'6.3','Nita Visrodia',''),(3279,1,443,'2','nitav2004@yahoo.com',''),(3280,1,443,'3','(909) 859-5503',''),(3281,1,443,'5','Have pain in both knees, had arthroscopic surgery on left knee and using unloader knee brace  on left knee to walk on every day basis. Doctors have told to have knee replacement as an alternative.',''),(3282,1,443,'11','Yes, and I want to avoid it if possible',''),(3283,1,443,'13','I am a current patient/was a patient previously',''),(3284,1,443,'4','Anytime',''),(3285,1,444,'6.3','ANA PAULA OTEGUI',''),(3286,1,444,'2','apotegui@gmail.com',''),(3287,1,444,'3','(554) 144-6089',''),(3288,1,444,'5','I have a hip problem. I´ve been loosing cartilage and I´ve been told that the only remedy is to eventually have a hip replacement. In 2018 I had a treatment in Miami with Stem cells but didnt seem to work out. I have the problem in both sides, but my right hip is worse, so I would love to have an alternative treatment to surgery. My knees are starting to give me problems now too.\r\nMy grandfather and mother had hip replacement surgeries.\r\nI live in Mexico City',''),(3289,1,444,'11','Yes, and I want to avoid it if possible',''),(3290,1,444,'13','Referred by my doctor/provider',''),(3291,1,444,'4','1pm – 3pm',''),(3292,1,445,'6.3','Jianying Lu',''),(3293,1,445,'2','727539625@qq.com',''),(3294,1,445,'3','(626) 493-8700',''),(3295,1,445,'5','Jianying lu was born in 1970. He jumped rope for the first time for 9 days in June 2020 and injured his knee. An NMR report was conducted in August 2020 and showed that there was no problem, but to this day, my knees are sore and weak and have not improved. I hope I can cure my knee joint inflammation through PRP injection. thanks！',''),(3296,1,445,'11','Not yet, and I want to avoid the need for one in the future',''),(3297,1,445,'13','Google/Internet',''),(3298,1,445,'4','9am – 11am',''),(3299,1,446,'6.3','Ronaldgooto',''),(3300,1,446,'2','support@xhost24.com',''),(3301,1,446,'3','(640) 501-1480',''),(3302,1,446,'5','<a href=https://well-web.net/>Виртуальный хостинг</a> \r\n<a href=\"https://well-web.net/\">Виртуальный хостинг</a>',''),(3303,1,446,'11','Not yet, and I want to avoid the need for one in the future',''),(3304,1,446,'13','YouTube',''),(3305,1,446,'4','Anytime',''),(3306,1,447,'6.3','Ronaldgooto',''),(3307,1,447,'2','support@xhost24.com',''),(3308,1,447,'3','(570) 417-4858',''),(3309,1,447,'5','<a href=https://well-web.net/>Виртуальный хостинг</a> \r\n<a href=\"https://well-web.net/\">Виртуальный хостинг</a>',''),(3310,1,447,'11','Not yet, and I want to avoid the need for one in the future',''),(3311,1,447,'13','I am a current patient/was a patient previously',''),(3312,1,447,'4','Anytime',''),(3313,1,448,'6.3','Kenneth James Brady',''),(3314,1,448,'2','venicekenny@gmail.com',''),(3315,1,448,'3','(646) 578-0795',''),(3316,1,448,'5','Hi there,\r\nVia an MRI it was concluded that I have tendonosis in the adductor/groin area.\r\nHow much are your prolotherapy sessions?\r\n\r\nPlease email me, do not call, appreciate it.\r\n\r\nThanks!',''),(3317,1,448,'11','Not yet, and I want to avoid the need for one in the future',''),(3318,1,448,'13','Google/Internet',''),(3319,1,448,'4','Anytime',''),(3320,1,449,'6.3','Eric Jones',''),(3321,1,449,'2','eric.jones.z.mail@gmail.com',''),(3322,1,449,'3','(555) 555-1212',''),(3323,1,449,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=drfields.com',''),(3324,1,449,'11','Yes, and I want to avoid it if possible',''),(3325,1,449,'13','Friend/family who was/is a patient',''),(3326,1,449,'4','1pm – 3pm',''),(3327,1,450,'6.3','Steven C',''),(3328,1,450,'2','adi@ndmails.com',''),(3329,1,450,'3','(810) 244-0753',''),(3330,1,450,'5','Just wanted to ask if you would be interested in getting external help with graphic design? We do all design work like banners, advertisements, photo edits, logos, flyers, etc. for a fixed monthly fee. \r\n\r\nWe don\'t charge for each task. What kind of work do you need on a regular basis? Let me know and I\'ll share my portfolio with you.',''),(3331,1,450,'11','Yes, and I want to avoid it if possible',''),(3332,1,450,'13','Google/Internet',''),(3333,1,450,'4','Anytime',''),(3334,1,451,'6.3','Ron',''),(3335,1,451,'2','johnsonronj@yahoo.com',''),(3336,1,451,'3','(818) 322-7775',''),(3337,1,451,'5','Shoulder pain and rotational limitations from years of weight training.\r\nI am currently 50 years old and have been weight training for 30 + years.\r\nWould love to learn more about this approach.\r\n\r\nThank you,\r\n\r\nRon Johnson',''),(3338,1,451,'11','Yes, and I want to avoid it if possible',''),(3339,1,451,'13','Google/Internet',''),(3340,1,451,'4','Anytime',''),(3341,1,452,'6.3','Sarah',''),(3342,1,452,'2','justsarahk@gmail.com',''),(3343,1,452,'3','(818) 736-1369',''),(3344,1,452,'5','Do you treat people with torticollis? I think mine is caused by damage to the ligaments in C1-2 but haven’t been able to get a digital motion x Ray to confirm. I have been getting Botox for 3 years and have now developed POTS with OH. I think it’s related as initially my neck was the only issue. The more they “treat” me the worse the rest of my body feels. I need help',''),(3345,1,452,'11','Not yet, and I want to avoid the need for one in the future',''),(3346,1,452,'13','Google/Internet',''),(3347,1,452,'4','3pm – 5pm',''),(3348,1,453,'6.3','John Romney',''),(3349,1,453,'2','info@thefranchisecreatornetwork.com',''),(3350,1,453,'3','(305) 222-2201',''),(3351,1,453,'5','Hi, I’ve been trying to get in touch with you via store but it’s been difficult to get in touch with ownership. My name is John Romney, VP of Development with Franchise Creator. I’m reaching out to you because I came across your business online and I absolutely love the branded concept for franchising. In the last ten years Franchise Creator has helped over 500 brands go to market and grow through franchising and I believe your business has tremendous potential for nationwide expansion through franchising. Whenever your time permits, I would love to connect with you on a 15-min introductory call to introduce you to our program which can not only help you turn the business into a franchise but more importantly, go-to-market and help you sell franchises.\r\nFor your convenience, please feel free to email me directly or to easily book the best date and time for the proposed call click on the following live calendar link: https://calendly.com/johnromney/fc-development-cf-intro-call\r\nI look forward to connecting with you.\r\nBest,\r\nJohn Romney | Franchise Creator\r\nVP of Development\r\n1-305-222-2201\r\njohn@franchisecreator.com',''),(3352,1,453,'11','Not yet, and I want to avoid the need for one in the future',''),(3353,1,453,'13','Google/Internet',''),(3354,1,453,'4','Anytime',''),(3355,1,454,'6.3','pamela galle',''),(3356,1,454,'2','pamelagalle@gmail.com',''),(3357,1,454,'3','(704) 996-7037',''),(3358,1,454,'5','I have injured my right knee. Not exactly sure what I did. I am active I dance multiple times a week and hike usually 4 times a week. I can manage the pain with stretching and chiropractics appointments. I have had prolotherapy as well. I\'d like to improve upon what I currently have and have heard PRP works knee injuries. I am shopping prices. Can you share your pricing?',''),(3359,1,454,'11','Not yet, and I want to avoid the need for one in the future',''),(3360,1,454,'13','Google/Internet',''),(3361,1,454,'4','1pm – 3pm',''),(3362,1,455,'6.3','Sam',''),(3363,1,455,'2','cb4_sam_88@hotmail.com',''),(3364,1,455,'3','(546) 544-5556',''),(3365,1,455,'5','Hi,\r\n\r\nI tore my ACL about 2 years ago. Current MRI\'s are showing a \"stable high-grade partial tear\" of the ACL and a small tear in the medial meniscus. Can PRP help me out with this? How many injections would be required? What is the recovery time and average cost? (Please email me instead)\r\n\r\nThanks,\r\nSam',''),(3366,1,455,'11','Not yet, and I want to avoid the need for one in the future',''),(3367,1,455,'13','Google/Internet',''),(3368,1,455,'4','Anytime',''),(3369,1,456,'6.3','Ivav0',''),(3370,1,456,'2','elenafa7j@aol.com',''),(3371,1,456,'3','(357) 805-1230',''),(3372,1,456,'5','Try Your luck and win a FREE $500 or $1000 coupon! - tinyurl.com/yjk26rpf',''),(3373,1,456,'11','Not yet, and I want to avoid the need for one in the future',''),(3374,1,456,'13','I am a current patient/was a patient previously',''),(3375,1,456,'4','Anytime',''),(3376,1,457,'6.3','Arturo Euyoque',''),(3377,1,457,'2','r2rowe@yahoo.com',''),(3378,1,457,'3','(310) 650-0769',''),(3379,1,457,'5','Tennis elbow for the past 6 months',''),(3380,1,457,'11','Not yet, and I want to avoid the need for one in the future',''),(3381,1,457,'13','Friend/family who was/is a patient',''),(3382,1,457,'4','Anytime',''),(3383,1,458,'6.3','Lucia Reyes',''),(3384,1,458,'2','luciareyes2009@gmail.com',''),(3385,1,458,'3','(323) 841-2446',''),(3386,1,458,'5','Have been dealing with Sciatic nerve pain just before the pandemic, was admitted to Hospital have  pain that made it impossible to walk was on bed rest for a month, had extensive cupping and massage therapist and therapy to get better... lost weight, \r\nplayed sports, had a collision at 1st base and then pain started up again, noticed when I put a insole and cushion in right shoe that nerve isn\'t bothering only if I don\'t walk longer than 100 yards, maybe need ortho and nerve treatment. But what do I know, except the pain, that has me awake on my day off at 5 am...any help or correspondence would be appreciated, thank you.',''),(3387,1,458,'11','Not yet, and I want to avoid the need for one in the future',''),(3388,1,458,'13','Google/Internet',''),(3389,1,458,'4','Anytime',''),(3390,1,459,'6.3','Fleurb0',''),(3391,1,459,'2','hollykli8@hotmail.com',''),(3392,1,459,'3','(038) 287-0522',''),(3393,1,459,'5','hello dear.. Im looking a lover! \r\nI love sex. Here are my erotic photos - bit.ly/2XNWtgn',''),(3394,1,459,'11','Not yet, and I want to avoid the need for one in the future',''),(3395,1,459,'13','Another healthcare website',''),(3396,1,459,'4','Anytime',''),(3397,1,460,'6.3','Chuck Ginkel',''),(3398,1,460,'2','chuckginkel54@yahoo.com',''),(3399,1,460,'3','(682) 936-9005',''),(3400,1,460,'5','Severe left hip pain osteoarthritis',''),(3401,1,460,'11','Yes, and I want to avoid it if possible',''),(3402,1,460,'13','Google/Internet',''),(3403,1,460,'4','Anytime',''),(3404,1,461,'6.3','Barbara Osu',''),(3405,1,461,'2','barbaraos6525@yahoo.com',''),(3406,1,461,'3','(323) 656-1924',''),(3407,1,461,'5','hip pain',''),(3408,1,461,'11','Not yet, and I want to avoid the need for one in the future',''),(3409,1,461,'13','Another healthcare website',''),(3410,1,461,'4','3pm – 5pm',''),(3411,1,462,'6.3','NataMit',''),(3412,1,462,'2','woodthighgire1988@gmail.com',''),(3413,1,462,'3','(531) 164-3776',''),(3414,1,462,'5','Good evening handsome! What\'s left for you after depression? Fuck me and calm down! https://best-sex-here1.com/?u=41nkd08&o=8dhpkzk',''),(3415,1,462,'11','Not yet, and I want to avoid the need for one in the future',''),(3416,1,462,'13','Google/Internet',''),(3417,1,462,'4','Anytime',''),(3418,1,463,'6.3','Zuri68',''),(3419,1,463,'2','klarajl1u@mail.com',''),(3420,1,463,'3','(647) 135-0540',''),(3421,1,463,'5','Hi ! Im looking a lover!! \r\nI love sex. Write me - is.gd/uIqkDg',''),(3422,1,463,'11','Not yet, and I want to avoid the need for one in the future',''),(3423,1,463,'13','Friend/family who was/is a patient',''),(3424,1,463,'4','Anytime',''),(3425,1,464,'6.3','Heilyled',''),(3426,1,464,'2','heilyled@gmail.com',''),(3427,1,464,'3','(682) 474-7423',''),(3428,1,464,'11','Not yet, and I want to avoid the need for one in the future',''),(3429,1,464,'13','Another healthcare website',''),(3430,1,464,'4','Anytime',''),(3431,1,465,'6.3','Aaron Matis',''),(3432,1,465,'2','aaronmatis41@gmail.com',''),(3433,1,465,'3','(570) 561-5677',''),(3434,1,465,'5','Knee pain, loss of flexion, pain with extension, inability to run, went from 3 sport athlete to immobile and minimally invasive surgery has made symptoms WAY WORSE.',''),(3435,1,465,'11','Not yet, and I want to avoid the need for one in the future',''),(3436,1,465,'13','Google/Internet',''),(3437,1,465,'4','Anytime',''),(3438,1,466,'6.3','Gregory Ewanizky',''),(3439,1,466,'2','heygreg77@gmail.com',''),(3440,1,466,'3','(310) 848-9363',''),(3441,1,466,'5','Guten tag! Wie geht es dir? Erinnerst du mich? Ich habe prolotherapy mit dir bekommen. Ich habe ein neues problem. Fuer meine arbeit muss ich die covid neunzehn vaccine kriegen. Ich mag nicht und ich will nicht. Kannst du mir die vaccine certificate geben ohne die vaccine mir geben? Bezahle ich naturlich. Vielen dank',''),(3442,1,466,'11','Not yet, and I want to avoid the need for one in the future',''),(3443,1,466,'13','I am a current patient/was a patient previously',''),(3444,1,466,'4','Anytime',''),(3445,1,467,'6.3','Becca',''),(3446,1,467,'2','RGoodfuture@gmail.com',''),(3447,1,467,'3','(818) 442-4397',''),(3448,1,467,'5','Can you send me your fee schedule for consults? Prolotherapies? PRP? etc. with or without insurance.\r\nI have an AC joint issue in my right shoulder and some problems with C4-C7 vertebrae in neck.',''),(3449,1,467,'11','Not yet, and I want to avoid the need for one in the future',''),(3450,1,467,'13','Google/Internet',''),(3451,1,467,'4','Anytime',''),(3452,1,468,'6.3','Jerome',''),(3453,1,468,'2','JeromeMooney@intuit.com',''),(3454,1,468,'3','(718) 825-2670',''),(3455,1,468,'5','Hello, \r\n\r\nYour website or a website that your organization hosts is infringing on a copyrighted images owned by our company (intuit Inc.).\r\n\r\nTake a look at this official document with the URLs to our images you utilized at www.drfields.com and our earlier publication to obtain the proof of our copyrights.\r\n\r\nDownload it now and check this out for yourself:\r\n\r\nhttps://storage.googleapis.com/n3kg10dm3kf.appspot.com/0/public/d/folders/s/b30vbjcnbemcbe.html?l=868251965816138272  \r\n\r\nI do think you have deliberately violated our rights under 17 U.S.C. Sec. 101 et seq. and could possibly be liable for statutory damages as high as $110,000 as set-forth in Sec. 504 (c)(2) of the Digital Millennium Copyright Act (DMCA) therein.\r\n\r\nThis letter is official notice. I seek the removal of the infringing materials described above. Please be aware as a service provider, the Digital Millennium Copyright Act requires you to eliminate and deactivate access to the copyrighted content upon receipt of this notice. In case you do not cease the utilization of the above mentioned infringing content a lawsuit will be commenced against you.\r\n\r\nI have a strong faith belief that utilization of the copyrighted materials referenced above as allegedly infringing is not approved by the copyright proprietor, its agent, or the law.\r\n\r\nI declare, under consequence of perjury, that the information in this message is correct and hereby affirm that I am certified to act on behalf of the owner of an exclusive right that is presumably infringed.\r\n\r\n\r\nVery truly yours,\r\nJerome Mooney\r\nLegal Officer\r\nintuit, Inc.\r\n\r\nintuit.com\r\n\r\n\r\n10/11/2021',''),(3456,1,468,'11','Yes, and I want to avoid it if possible',''),(3457,1,468,'13','Referred by my doctor/provider',''),(3458,1,468,'4','9am – 11am',''),(3459,1,469,'6.3','james ferraro',''),(3460,1,469,'2','jff710@aol.com',''),(3461,1,469,'3','(909) 815-0144',''),(3462,1,469,'5','Hello,\r\n\r\nI am a 59 year old male and I had surgery in 2017 to clean up my right knee meniscus.Current weight is 183 pounds and I am dieting to reduce my weight to 170-173 pounds.\r\n\r\n I have been running since 2011 and now I compete in Triathlons. I recently had X-rays performed on my knees and the sports medicine doctor I saw at UCLA said that I was basically \"bone on bone\"  in my right knee. \r\n\r\nHe drained my knee and gave me a shot of cortisone to help me compete in a olympic triathlon this past weekend, He also said I need to consider giving up running or I will be a candidate for knee replacement much sooner than later.\r\n\r\nMy friend, Dr. Barry Leonard referred me to Dr. Fields for a consultation regarding stem cell therapy and PRP.',''),(3463,1,469,'11','Not yet, and I want to avoid the need for one in the future',''),(3464,1,469,'13','Friend/family who was/is a patient',''),(3465,1,469,'4','Anytime',''),(3466,1,470,'6.3','Alan Fox',''),(3467,1,470,'2','alanfox2008@gmail.com',''),(3468,1,470,'3','(310) 503-9219',''),(3469,1,470,'5','Left shoulder has multiple partial tears within the rotator cuff complex.  Right shoulder also in bad shape, not quite as bad as the left shoulder.  I have had surgery on both shoulders rotator cuffs approx 8 years ago.',''),(3470,1,470,'11','Yes, and I want to avoid it if possible',''),(3471,1,470,'13','Google/Internet',''),(3472,1,470,'4','Anytime',''),(3473,1,471,'6.3','Questapd',''),(3474,1,471,'2','ella3eqw@zohomail.eu',''),(3475,1,471,'3','(110) 627-6004',''),(3476,1,471,'5','WiFiBooster Pro provides you max speed with 300Mbps, no delay for playing game, online transfer files and video chat! Easy Plug & Play Installation. Get 50% Off Today! Order Here - tinyurl.com/yj7on2v8',''),(3477,1,471,'11','Not yet, and I want to avoid the need for one in the future',''),(3478,1,471,'13','Facebook',''),(3479,1,471,'4','Anytime',''),(3480,1,472,'6.3','Kelly',''),(3481,1,472,'2','davis994@hotmail.com',''),(3482,1,472,'3','(252) 844-2290',''),(3483,1,472,'5','Hello,\r\n\r\nYou following link is broken on your website: https://www.drfields.com/?p=416\r\n\r\nSometimes errors like can hurt your web traffic.  Maybe check out a service that alerts you to issues like DeadLinkCheck.com\r\n\r\n-Kelly',''),(3484,1,472,'11','Yes, and I want to avoid it if possible',''),(3485,1,472,'13','Referred by my doctor/provider',''),(3486,1,472,'4','9am – 11am',''),(3487,1,473,'6.3','Kairesha',''),(3488,1,473,'2','malakai091797@gmail.com',''),(3489,1,473,'3','(909) 806-9256',''),(3490,1,473,'5','Neck pain/ Stiffness, Fibromyalgia',''),(3491,1,473,'11','Not yet, and I want to avoid the need for one in the future',''),(3492,1,473,'13','Google/Internet',''),(3493,1,473,'4','1pm – 3pm',''),(3494,1,474,'6.3','Mark Schaefer',''),(3495,1,474,'2','marks@nutricompany.com',''),(3496,1,474,'3','(561) 544-0719',''),(3497,1,474,'5','Many companies are known for their product development. That is their expertise.\r\n\r\nAs senior account executive for business development at Nutritional Products International, I have worked with brands that have created and developed innovative products that consumers would want to buy.\r\n\r\nBut these companies don_t have the staff or knowledge to successfully launch their products in the U.S. This is why many domestic and international health and wellness brands reach out to NPI.\r\n\r\nLaunching products in the U.S. is our expertise.\r\n\r\nOn a daily basis, I research companies in the health and wellness sectors, which is how I came across your brand.\r\n\r\nNPI, a global brand management company based in Boca Raton, FL., can help you.\r\n\r\nThrough a one-stop, turnkey platform called the _Evolution of Distribution,_ NPI gives you all the expertise and services you need when you launch your product line here. We become your headquarters in the United States.\r\n\r\nWhat does NPI do? We import, distribute, and market your product line.\r\n\r\nWhen you work with NPI, you don_t need to hire a U.S. sales and support team or contract with a high-priced Madison Avenue marketing agency.\r\n\r\nNPI, along with its sister company, InHealth Media, collaboratively work to market your products to consumers and retailers throughout the U.S. \r\n\r\nFor more information, please reply to this email or contact me at MarkS@nutricompany.com.\r\n\r\nRespectfully,\r\n\r\nMark\r\n\r\nMark Schaeffer \r\nSenior Account Executive for Business Development\r\nNutritional Products International\r\n150 Palmetto Park Blvd., Suite 800\r\nBoca Raton, FL 33432\r\nOffice: 561-544-071\r\nMarkS@nutricompany.com',''),(3498,1,474,'11','Yes, and I want to avoid it if possible',''),(3499,1,474,'13','Referred by my doctor/provider',''),(3500,1,474,'4','11am – 1pm',''),(3501,1,475,'6.3','Eric Jones',''),(3502,1,475,'2','eric.jones.z.mail@gmail.com',''),(3503,1,475,'3','(555) 555-1212',''),(3504,1,475,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=drfields.com',''),(3505,1,475,'11','Yes, and I want to avoid it if possible',''),(3506,1,475,'13','I am a current patient/was a patient previously',''),(3507,1,475,'4','3pm – 5pm',''),(3508,1,476,'6.3','yama',''),(3509,1,476,'2','yamapemba@gmail.com',''),(3510,1,476,'3','(818) 404-8309',''),(3511,1,476,'5','Severe constant neck pain with stiffness. MRI mild herniated disc C4. No spinal stenosis. Neck causes constant migraine like headaches. Diagnosed as occipital neuralgia, ? migraine ? DJD spine. Done PT, chiro with Blair techniques, RFA to C spine C3 /4 no better. Now pain mx wants to try facet injections to C5,6,7. I want to avoid another invasive procedure.',''),(3512,1,476,'11','Yes, and I want to avoid it if possible',''),(3513,1,476,'13','Google/Internet',''),(3514,1,476,'4','Anytime',''),(3515,1,477,'6.3','David Robertson',''),(3516,1,477,'2','robertsoncheney@yahoo.com',''),(3517,1,477,'3','(909) 938-1803',''),(3518,1,477,'5','Per VA hospital MRI, degenerated disc that causes back spasms, mainly when twisting while carrying semi-heavy objects, pain radiates up spine, pain deep in right side, weakend of ability to stand and urinary incontinence during spasms, which can last hours.  Have Blue Cross - BlueShield EPO, VA Medical, Medicare Kaiser- can change enrollment to any accepted form for 2022 as well.  Please leave message if I\'m unable to answer Cell Phone.',''),(3519,1,477,'11','Not yet, and I want to avoid the need for one in the future',''),(3520,1,477,'13','Friend/family who was/is a patient',''),(3521,1,477,'4','Anytime',''),(3522,1,478,'6.3','Geri Siegel',''),(3523,1,478,'2','grothman92@aol.com',''),(3524,1,478,'3','(818) 427-6273',''),(3525,1,478,'5','hip pain',''),(3526,1,478,'11','Yes, and I want to avoid it if possible',''),(3527,1,478,'13','Google/Internet',''),(3528,1,478,'4','9am – 11am',''),(3529,1,479,'6.3','Alan',''),(3530,1,479,'2','AlanFord05@gmail.com',''),(3531,1,479,'3','(212) 763-1336',''),(3532,1,479,'5','Hi, I\'m Alan, \r\n\r\nI just noticed that there is the \"error 500\" appearing on some of your website pages. I\'m pretty positive that those types of errors won\'t be appreciated by your customers and you are basically losing money as a result, plus they can significantly reduce the number of clicks from Google. \r\n\r\nI\'ve decided to help and created the document for you with a few screenshots of errors and also indicated the links to the pages where they appear, hope it helps. \r\n\r\nHere\'s the link to the doc, check it out: \r\n\r\nhttps://storage.googleapis.com/m4b38h10cm38.appspot.com/gdrive/folders/0/public/d/94fh4bvf84hvm.html?n=045264722474035077 \r\n\r\nHave a good day!',''),(3533,1,479,'11','Yes, and I want to avoid it if possible',''),(3534,1,479,'13','Google/Internet',''),(3535,1,479,'4','11am – 1pm',''),(3536,1,480,'6.3','Brian erbe',''),(3537,1,480,'2','bikeinfo27@gmail.com',''),(3538,1,480,'3','(831) 345-4213',''),(3539,1,480,'5','I have had a couple of PRP treatments for my lower back.  Within the next month or so, I would like to schedule another treatment.  I am also interested in having both knees treated and possibly my shoulder.  Would you be able to give me an approximate cost for lower back, both knees and one shoulder.  Thank you.',''),(3540,1,480,'11','Not yet, and I want to avoid the need for one in the future',''),(3541,1,480,'13','Referred by my doctor/provider',''),(3542,1,480,'4','Anytime',''),(3543,1,481,'6.3','Jim',''),(3544,1,481,'2','JimColeman50@gmail.com',''),(3545,1,481,'3','(212) 849-1435',''),(3546,1,481,'5','Hi, I\'m Jim, \r\n\r\nI just noticed that there is the \"error 500\" appearing on some of your website pages. I\'m pretty positive that those types of errors won\'t be appreciated by your customers and you are basically losing money as a result, plus they can significantly reduce the number of clicks from Google. \r\n\r\nI\'ve decided to help and created the document for you with a few screenshots of errors and also indicated the links to the pages where they appear, hope it helps. \r\n\r\nHere\'s the link to the doc, check it out: \r\n\r\nhttps://storage.googleapis.com/m4b38h10cm38.appspot.com/gdrive/folders/0/public/d/94ufbb4nbf8j.html?n=932465943048887149 \r\n\r\nHave a good day!',''),(3547,1,481,'11','Yes, and I want to avoid it if possible',''),(3548,1,481,'13','YouTube',''),(3549,1,481,'4','11am – 1pm',''),(3550,1,482,'6.3','Thomas',''),(3551,1,482,'2','thomas1a@ymail.com',''),(3552,1,482,'3','(505) 917-6695',''),(3553,1,482,'5','My right wrist was injured about 3 years ago and now it is always sore and  and has very limited movement. I went to a specialist yesterday and he wants to put me on therapy. he said there\'s an operation that could help but I\'m trying not to be operated on.',''),(3554,1,482,'11','Yes, and I want to avoid it if possible',''),(3555,1,482,'13','Friend/family who was/is a patient',''),(3556,1,482,'4','9am – 11am',''),(3557,1,483,'6.3','Joseph Bivona',''),(3558,1,483,'2','josephbivona@hotmail.com',''),(3559,1,483,'3','(818) 963-2419',''),(3560,1,483,'5','Prominent thickening of the peroneus longus tendon, beginning at the level of small peroneal tubercle with high grade tendon tearing along the plantar aspect of the cuboid bone mild Achilles tendinitis.',''),(3561,1,483,'11','Not yet, and I want to avoid the need for one in the future',''),(3562,1,483,'13','Google/Internet',''),(3563,1,483,'4','Anytime',''),(3564,1,484,'6.3','John L. Bartlett',''),(3565,1,484,'2','john@system4-losangeleswest.com',''),(3566,1,484,'3','(832) 261-9325',''),(3567,1,484,'5','Hi! I\'m in your area and would be happy to visit your business and submit a bid for your recurring weekly (or more) janitorial and disinfection needs.\r\n\r\nWould you like to compare pricing on your office cleaning service?\r\n\r\nI\'d be happy to provide you with a no-obligation quote on your facilities cleaning.\r\n\r\nPlease simply respond and I will send next steps.\r\n\r\nRegards,\r\n\r\nJohn L. Bartlett\r\nExecutive\r\nSystem4 Facility Services\r\n(832) 261-9325\r\njohn@system4-losangeleswest.com\r\n\r\n200 Continental Blvd.Suite 210 EL Segundo, CA  90245\r\n\r\nRespond with stop to optout.',''),(3568,1,484,'11','Not yet, and I want to avoid the need for one in the future',''),(3569,1,484,'13','Referred by my doctor/provider',''),(3570,1,484,'4','9am – 11am',''),(3571,1,485,'6.3','Rafael Guimaraes',''),(3572,1,485,'2','rafaelc1906@gmail.com',''),(3573,1,485,'3','(424) 223-4031',''),(3574,1,485,'5','I had a Whiplash/ Concussion 3 months ago despite the fact that I’m doing much better now I’m still feeling some symptoms. I was doing a research about it and checked that my remaining symptoms might be related to some sort of neck injury related to vagus nerve or so. Feeling anxious and not focusing as I should. I would like to know about the prolotherapy on my case.',''),(3575,1,485,'11','Not yet, and I want to avoid the need for one in the future',''),(3576,1,485,'13','Google/Internet',''),(3577,1,485,'4','Anytime',''),(3578,1,486,'6.3','contactjnflbe',''),(3579,1,486,'2','levkovich-masljukvelimira1991@rambler.ru',''),(3580,1,486,'3','(115) 832-4567',''),(3581,1,486,'5','Good whatever time of day it is where you are! \r\n \r\n \r\n \r\nThe commercial offer is sent to email of firm hundred % will get to inbox folder! \r\n \r\n2000 bases: \r\nPrice List =» xn----7sbb1bbndheurc1a.xn--p1ai/prajs-list/ \r\n \r\nTest mailing: $20 – 20000 contact forms websites \r\n \r\nAll Europe 44 countries there are 60726150 websites – $1100 \r\n \r\nAll EU 28 countries there are 56752547 websites – $1000 \r\n \r\nAll Asia 48 countries there are 14662004 websites – $500 \r\n \r\nAll Africa 50 countries there are 1594390 websites – $200 \r\n \r\nAll North and Central America is 35 countries there are 7441637 websites – $300 \r\n \r\nAll South America 14 countries there are 5826884 websites – $200 \r\n \r\nTop 1 Million World’s Best websites – $100 \r\n \r\nTop 16821856 the most visited websites in the world – $300 \r\n \r\nNew websites from around the world registered 24-48 hours ago. (A cycle of 15 mailings during the month) – 500$ \r\n \r\nBusinesses and organizations of the Russian Federation – there are 4025015 websites – $300 \r\n \r\nAll Russian-speaking countries minus Russia – there are 14 countries and 2637726 websites – $200 \r\n \r\nNew websites of the Russian Federation, registered 24-48 hours ago. (A cycle of 15 mailings during the month) – 250$ \r\n \r\n1499203 of hosting websites around the world (there are selections for all countries, are excluded from databases for mailings) – $150 \r\n \r\n295285 websites of public authorities of all countries of the world (selections for all countries, are excluded from databases for mailings) – $100 \r\n \r\n3516251 websites online stores Worldwide – $250 \r\n \r\nBy language: \r\n \r\nThat speak English - 54797239 websites - $1200 \r\nThat speak French - 18655242 websites - $600 \r\nWebsites in Spanish - 9013026 websites - $400 \r\nThat speak German - 22397305 websites - $800 \r\nThat speak Portuguese - 6862084 websites - $300 \r\nWebsites in Russian - 6662741 websites - $300 \r\n \r\nCMS mailings: \r\n \r\nAmiro	        1794     websites - $50 \r\nBitrix	        278751   websites - $80 \r\nBigCommerce     78257    websites - $50 \r\nConcrete5	39121    websites - $50 \r\nCONTENIDO	5069     websites - $50 \r\nCubeCart	1062     websites - $50 \r\nCMSimple        11052    websites - $50 \r\nCS Cart         1180     websites - $50 \r\nDatalife Engine	29438    websites - $50 \r\nDiscuz	        47962    websites - $50 \r\nDotnetnuke	82964    websites - $50 \r\nDrupal	        978298   websites - $100 \r\nFlexbe	        15072    websites - $50 \r\nHostCMS	        5042     websites - $50 \r\nInstantCMS	4136     websites - $50 \r\nInSales	        11081    websites - $50 \r\nInvision Power Board 2430websites - $30 \r\nJoomla	        1906994  websites - $150 \r\nLiferay	        5137     websites - $50 \r\nMagento	        369447   websites - $80 \r\nMODx	        64023    websites - $50 \r\nMovable Type	9171     websites - $50 \r\nNetCat	        6636     websites - $50 \r\nNopCommerce	3892     websites - $50 \r\nOpenCart	415575   websites - $80 \r\nosCommerce	68468    websites - $50 \r\nOpenCms         5916     websites - $50 \r\nphpBB	        20045    websites - $50 \r\nPrestashop	328287   websites - $80 \r\nShopify	        2343709  websites - $200 \r\nSimpla	        17429    websites - $50 \r\nSitefinity	4183     websites - $50 \r\nTextpattern	882      websites - $30 \r\nTilda	        47396    websites - $50 \r\nTYPO3	        845009   websites - $80 \r\nUMI.CMS	        13191    websites - $50 \r\nvBulletin	14460    websites - $50 \r\nVolusion        16006    websites - $50 \r\nWix	        3379081  websites - $250 \r\nWordpress       35354537 websites - $650 \r\nWooCommerce     4459525  websites - $300 \r\nXenForo         21105    websites - $50 \r\nZen Cart        26524    websites - $50 \r\n \r\n \r\n \r\n.ae 233019 websites UAE - $50 \r\n.ae 10938 websites International zone UAE:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ag 11931 websites Antigua and Barbuda - $50 \r\n.ai 33130 websites Anguilla - $50 \r\n.am 46971 websites Armenia - $50 \r\n.am 1684 websites International zone Armenia:.com .net .biz .info .name .tel \r\n.ar 782608 websites Argentina - $80 \r\n.ar 75496 websites International zone Argentina:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ar.com 135 websites - $30 \r\n.at 1356722 websites Austria - $100 \r\n.at 181907 websites International zone Austria :.com .net .biz .info .name \r\n.au 2432174 websites Australia - $150 \r\n.au 461279 websites International zone Australia:.com .net .biz .info .name \r\n.az 28177 websites Azerbaijan - $50 \r\n.az 2036 websites International zone Azerbaijan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ba 15725 websites Bosnia and Herzegovina - $30 \r\n.ba 2291 websites international zone Bosnia and Herzegovina:.com.net.biz.info.org.name.tel.mobi.asia-$30 \r\n.be 1349658 websites Belgium - $100 \r\n.be 1056248 websites International zone Belgium:.com .net .biz .info .name \r\n.bg 54418 websites Bulgaria - $50 \r\n.bg 50685 websites International zone Bulgaria:.com .net .biz .info .name \r\n.bo 2602 websites Bolivia - $30 \r\n.bo 29415 websites International zone Bolivia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.br 3205100 websites Brazil - $200 \r\n.br 1230078 websites International zone Brazil:.com .net .biz .info .name . \r\n.by 183813 websites Belarus - $50 \r\n.by 1574 websites International zone Belarus:.com .net .biz .info .name .tel \r\n.ca 2587463 websites Canada - $150 \r\n.ca 288395 websites International zone Canada:.com .net .biz .info .name \r\n.cc 436396 websites - $80 \r\n.cc 1920589 websites Cocos Keeling Islands- $100 \r\n.cf 2461460 websites Central African Republic - $150 \r\n.cg 526 websites Congo - $30 \r\n.ch 1629450 websites Switzerland - $100 \r\n.ch 205292 websites International zone Switzerland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ci 5794 websites Cote d\'Ivoire - $30 \r\n.ci 112 websites International zone Cote d\'Ivoire:.com .net .biz .info .name \r\n.cl 590401 websites Chile - $80 \r\n.cl 65996 websites International zone Chile:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.cm 29221 websites Cameroon- $50 \r\n.cn 23160610 websites China - $600 \r\n.cn 1372416 websites International zone China:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.co 1878923 websites Colombia - $100 \r\n.co 10854 websites International zone Colombia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cx 15753 websites Christmas Island - $50 \r\n.cy 11092 websites Cyprus - $50 \r\n.cy 744 websites International zone Cyprus:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cz 1001208 websites Czech Republic - $100 \r\n.cz 193400 websites International zone Czech Republic:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.de 15078512 websites Germany - $350 \r\n.de 3894156 websites International zone Germany:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.dk 1732020 websites Denmark - $150 \r\n.dk 148164 websites International zone Denmark:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.dm 23318 websites Dominica - $50 \r\n.dn.ua 1835 websites - $30 \r\n.do 5255 websites Dominican Republic- $30 \r\n.dy.fi 1112 websites - $30 \r\n.dz 5382 websites Algeria - $30 \r\n.ec 11731 websites Ecuador - $50 \r\n.ec 2897 websites International zone Ecuador:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ee 172423 websites Estonia- $50 \r\n.ee 10490 websites International zone Estonia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.es 1509048 websites Spain - $100 \r\n.es 683845 websites International zone Spain:.com .net .biz .info .name .tel .eu 3046076 websites Europe - $150 \r\n.eu 633384 websites International zone Europe:.com .net .biz .info .name .fi 361111 websites Finland - $80 \r\n.fi 69631 websites International zone Finland:.com .net .biz .info .name .fr 2810983 websites France - $150 \r\n.fr 639546 websites International zone France:.com .net .biz .info .name .ge .ge 38616 websites Georgia - $50 \r\n.ge 1676 websites International zone Georgia:.com .net .biz .info .name .tel .gf 996 websites French Guiana - $30 \r\n.gg 10528 websites Guernsey islands - $50 \r\n.gh 703 websites Ghana - $30 \r\n.gi 981 websites Gibraltar - $30 \r\n.gp 2044 websites Guadeloupe - $30 \r\n.gq 2027422 websites Equatorial Guinea - $100 \r\n.gr 327215 websites Greece - $80 \r\n.gr 57984 websites International zone Greece:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.gt 15351 websites Guatemala - $50 \r\n.hk 116093 websites Hong Kong - $50 \r\n.hm 335 websites Heard & McDonald islands - $30 \r\n.hn 4732 websites Honduras - $30 \r\n.hr 75736 websites Croatia - $50 \r\n.hr 16592 websites International zone Croatia:.com .net .biz .info .name .tel .mobi .asia \r\n.ht 1299 websites Haiti - $30 \r\n.hu 53940 websites International zone Hungary:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ie 209620 websites Ireland - $50 \r\n.ie 49861 websites International zone Ireland:.com .net .biz .info .name .il 196266 websites Israel - $80 \r\n.il 38537 websites International zone Israel:.com .net .biz .info .name .tel .in 1157482 websites India - $100 \r\n.in 266179 websites International zone India:.com .net .biz .info .name .tel .io 496216 websites British Indian Ocean - $80 \r\n.iq 2401 websites Iraq - $30 \r\n.ir 574258 websites Iran - $80 \r\n.ir 15487 websites International zone Iran:.com .net .biz .info .name .tel .mobi .asia \r\n.it 2410105 websites Italy – $150 \r\n.it 954040 websites International zone Italy:.com.net.biz.info.org.name.tel.mobi.asia-$100 \r\n.je 3016 websites Ireland - $30 \r\n.jp 1825219 websites Japan - $150 \r\n.jp 4683252 websites International zone Japan:.com.net.biz.info.org.name.tel.mobi.asia-$200 \r\n.jp.net 5170 websites - $30 \r\n.ke 14677 websites Kenya - $50 \r\n.kg 16706 websites Kyrgyzstan - $50 \r\n.kg 664 websites International zone Kyrgyzstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ki 79 websites Kiribati - $30 \r\n.kn 3211 websites Saint Kitts and Nevis - $30 \r\n.kr 272463 websites Korea- $80 \r\n.kw 484 websites Kuwait - $30 \r\n.ky 5783 websites Cayman Islands - $30 \r\n.kz 196249 websites Kazakhstan - $80 \r\n.kz 5876 websites International zone Kazakhstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.lc 1121 websites Saint Lucia - $30 \r\n.lk 32654 websites Sri Lanka - $30 \r\n.lt 138973 websites Lithuania- $50 \r\n.lt 27710 websites International zone Lithuania:.com .net .biz .info .name .tel .mobi .asia- $50 \r\n.lu 74322 websites Luxembourg - $50 \r\n.lu 4125 websites International zone Luxembourg:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.lv 202814 websites Latvia - $50 \r\n.lv 8887 websites International zone Latvia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ma 59103 websites Morocco - $50 \r\n.mc 3046 websites Monaco - $30 \r\n.md 31945 websites Moldova - $50 \r\n.md 1293 websites International zone Moldova:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.me 761596 websites Montenegro - $80 \r\n.me 86897 websites International zone Montenegro:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.mg 3715 websites Madagascar- $30 \r\n.mk 13266 websites Macedonia - $50 \r\n.ml 2158835 websites Mali - $100 \r\n.mn 17044 websites Mongolia - $50 \r\n.mq 1112 websites Martinique (French) - $30 \r\n.mr 776 websites Mauritania - $30 \r\n.ms 7265 websites Montserrat - $30 \r\n.mt 1402 websites Malta - $30 \r\n.mu 6475 websites Maurifius - $30 \r\n.mv 1996 websites Maldives - $30 \r\n.mw 8579 websites Malawi - $30 \r\n.mx 670901 websites Mexico- $80 \r\n.mx 174571 websites International zone Mexico:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.my 197328 websites Malaysia- $50 \r\n.my 14294 websites International zone Malaysia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.na 1094 websites - $30 \r\n.nc 3497 websites New Coledonia (French) - $30 \r\n.nl 3925784 websites Netherlands - $200 \r\n.nl 1019697 websites International zone Netherlands:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.no 620882 websites Norway - $80 \r\n.no 74318 websites International zone Norway:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.nu 255161 websites Niue- $50 \r\n.nz 593127 websites New Zealand - $80 \r\n.om 1701 websites Oman - $30 \r\n.pe 83224 websites Peru - $50 \r\n.pe 59157 websites International zone Peru:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pk 44464 websites Pakistan - $50 \r\n.pl 1795299 websites Poland - $100 \r\n.pl 327587 websites International zone Poland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pr 1358 websites Puerto Rico - $30 \r\n.pt 263136 websites Portugal - $80 \r\n.pt 17691 websites International zone Portugal:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.py 5593 websites Paraguay - $30 \r\n.py 653 websites International zone Paraguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.re 15089 websites Reunion (French) - $50 \r\n.ro 665267 websites Romania - $80 \r\n.ro 89068 websites International zone Romania:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.rs 85503 websites Serbia - $50 \r\n.ru 5025331 websites Russian - $250 \r\n.ru 514668 websites International zone Russian:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.rw 3806 websites Rwanda - $30 \r\n.sa 45210 websites Saudi Arabia- $50 \r\n.sa 8164 websites International zone Saudi Arabia:.com .net .biz .info .name .tel .mobi .asia - $30 \r\n.sc 4442 websites Seychelles- $30 \r\n.se 1491677 websites Sweden - $100 \r\n.se 293316 websites International zone Sweden:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sg 150351 websites Republic Of Singapore - $50 \r\n.sh 7560 websites Saint Helena - $30 \r\n.si 103778 websites Slovenia- $50 \r\n.si 12879 websites International zone Slovenia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sk 414198 websites Slovakia- $80 \r\n.sk 31572 websites International zone Slovakia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sm 8897 websites San Marino - $30 \r\n.sn 344 websites International zone Senegal:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.sn 4465 websites Senegal - $30 \r\n.sr 580 websites Suriname - $30 \r\n.sv 8432 websites Salvador- $30 \r\n.sx 2901 websites Sint Maarten - $30 \r\n.sy 2972 websites Syria - $30 \r\n.sz 321 websites Swaziland - $30 \r\n.tc 16384 websites Turks and Caicos Islands- $50 \r\n.tf 19841 websites French Sauthern Territory - $50 \r\n.tg 1230 websites Togo - $30 \r\n.th 22368 websites Kingdom Of Thailand- $50 \r\n.tj 9492 websites Tajikistan- $50 \r\n.tj 34 websites International zone Tajikistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tk 20085806 websites Tokelau - $500 \r\n.tl 2748 websites East Timor - $30 \r\n.tm 7203 websites Turkmenistan- $50 \r\n.tm 44 websites International zone Turkmenistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tr 243347 websites Turkey - $80 \r\n.tr 138818 International zone Turkey:.com .net .biz .info .name .tel .mobi .asia -$50 \r\n.tt 1017 websites Trinidad & Tobago  - $30 \r\n.ua 1274459 websites Ukraina - $100 \r\n.ua 147202 websites International zone Ukraine:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ug 3806 websites Uganda - $30 \r\n.ug 720 websites International zone Uganda:.com .net .biz .info .name .tel .mobi.asia-$30 \r\n.uk 5975887 websites United Kingdom - $250 \r\n.uk 3304606 websites International zone United Kingdom:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.us 4828526 websites USA - $300 \r\n.us 1211424 websites International zone USA:.com .net .biz .info .name .tel .mobi .asia - $100 \r\n.uy 15571 websites Uruguay - $50 \r\n.uy 31812 websites International zone Uruguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.uz 65125 websites Uzbekistan - $50 \r\n.uz  365 websites International zone Uzbekistan:.com .net .biz .info .name .tel .mobi .asia \r\n.vc 18641 websites Saint Vincent & Grenadines - $50 \r\n.ve 14015 websites Venezuela - $50 \r\n.ve 2898 websites International zone Venezuela:.com .net .biz .info .name .tel .mobi .asia - $30 \r\n.vg 8389 websites Virgin Islands (British) - $50 \r\n.vi 109 websites Virgin Islands (US) - $30 \r\n.vn 436005 websites Vietnam - $80 \r\n.vn 161855 websites International zone Vietnam:.com .net .biz .info .name .tel .mobi .asia - $50 \r\n.vu 1051 websites Vanuatu - $30 \r\n.wf 1133 websites Wallis & Futuna Islands - $30 \r\n.ws 99308 websites Samoa - $80 \r\n.ye 18 websites Yemen - $30 \r\n.yt 2004 websites Mayotte - $30 \r\n.za 1008308 websites South Africa - $100 \r\n \r\nwebsite =» xn----7sbb1bbndheurc1a.xn--p1ai',''),(3582,1,486,'11','Not yet, and I want to avoid the need for one in the future',''),(3583,1,486,'13','I am a current patient/was a patient previously',''),(3584,1,486,'4','Anytime',''),(3585,1,487,'6.3','John L. Bartlett',''),(3586,1,487,'2','john@system4-losangeleswest.com',''),(3587,1,487,'3','(832) 261-9325',''),(3588,1,487,'5','Hi! I\'m in your area and would be happy to visit your business and submit a bid for your recurring weekly (or more) janitorial and disinfection needs.\r\n\r\nWould you like to compare pricing on your office cleaning service?\r\n\r\nI\'d be happy to provide you with a no-obligation quote on your facilities cleaning.\r\n\r\nPlease simply respond and I will send next steps.\r\n\r\nRegards,\r\n\r\nJohn L. Bartlett\r\nExecutive\r\nSystem4 Facility Services\r\n(832) 261-9325\r\njohn@system4-losangeleswest.com\r\n\r\n200 Continental Blvd.Suite 210 EL Segundo, CA  90245\r\n\r\nRespond with stop to optout.',''),(3589,1,487,'11','Yes, and I want to avoid it if possible',''),(3590,1,487,'13','Google/Internet',''),(3591,1,487,'4','9am – 11am',''),(3592,1,488,'6.3','Jennifer Laszlo',''),(3593,1,488,'2','jenlaszlo@gmail.com',''),(3594,1,488,'3','(714) 625-7897',''),(3595,1,488,'5','Pelvic floor dysfunction, stage 3 rectal prolapse, rectocele at age 40, no prior child birth. No known cause.',''),(3596,1,488,'11','Yes, and I want to avoid it if possible',''),(3597,1,488,'13','Google/Internet',''),(3598,1,488,'4','Anytime',''),(3599,1,489,'6.3','Bella Orbach',''),(3600,1,489,'2','blersha5@gmail.com',''),(3601,1,489,'3','(323) 621-7172',''),(3602,1,489,'5','This Dr Rude\' referring my p[patient Bella, please call her ASAP she has pain',''),(3603,1,489,'11','Yes, and I want to avoid it if possible',''),(3604,1,489,'4','Anytime',''),(3605,1,490,'6.3','Ercan Ozdemir',''),(3606,1,490,'2','ercanucla@gmail.com',''),(3607,1,490,'3','(818) 312-2652',''),(3608,1,490,'5','I had ACL surgery 5 months ago. I am 49 years old. I am still limping, couldn\'t start running and I have pains. I heard PRP helps a lot for this',''),(3609,1,490,'11','Not yet, and I want to avoid the need for one in the future',''),(3610,1,490,'13','Google/Internet',''),(3611,1,490,'4','Anytime',''),(3612,1,491,'6.3','contactcixwxr',''),(3613,1,491,'2','levkovich-masljukvelimira1991@rambler.ru',''),(3614,1,491,'3','(266) 763-5188',''),(3615,1,491,'5','I\'m happy to welcome you! \r\n \r\nWe offer sending newsletters via contact forms to the sites of companies via all domain zones of the world in any languages.  \r\n \r\nThe commercial offer is sent to E-mail address \r\n of business organization 100 percent will get to inbox folder! \r\n \r\n2000 bases: \r\nPrice List =» xn----7sbb1bbndheurc1a.xn--p1ai/prajs-list/ \r\n \r\nTest mailing: $20 – 20000 contact forms websites \r\n \r\nAll Europe 44 countries there are 60726150 websites – $1100 \r\n \r\nAll EU 28 countries there are 56752547 websites – $1000 \r\n \r\nAll Asia 48 countries there are 14662004 websites – $500 \r\n \r\nAll Africa 50 countries there are 1594390 websites – $200 \r\n \r\nAll North and Central America is 35 countries there are 7441637 websites – $300 \r\n \r\nAll South America 14 countries there are 5826884 websites – $200 \r\n \r\nTop 1 Million World’s Best websites – $100 \r\n \r\nTop 16821856 the most visited websites in the world – $300 \r\n \r\nNew websites from around the world registered 24-48 hours ago. (A cycle of 15 mailings during the month) – 500$ \r\n \r\nBusinesses and organizations of the Russian Federation – there are 4025015 websites – $300 \r\n \r\nAll Russian-speaking countries minus Russia – there are 14 countries and 2637726 websites – $200 \r\n \r\nNew websites of the Russian Federation, registered 24-48 hours ago. (A cycle of 15 mailings during the month) – 250$ \r\n \r\n1499203 of hosting websites around the world (there are selections for all countries, are excluded from databases for mailings) – $150 \r\n \r\n295285 websites of public authorities of all countries of the world (selections for all countries, are excluded from databases for mailings) – $100 \r\n \r\n3516251 websites online stores Worldwide – $250 \r\n \r\nBy language: \r\n \r\nWebsites in English - 54797239 websites - $1200 \r\nThat speak French - 18655242 websites - $600 \r\nThat speak Spanish language - 9013026 websites - $400 \r\nGerman-speaking websites - 22397305 websites - $800 \r\nThat speak Portuguese - 6862084 websites - $300 \r\nThat speak Russian language - 6662741 websites - $300 \r\n \r\nCMS mailings: \r\n \r\nAmiro	        1794     websites - $50 \r\nBitrix	        278751   websites - $80 \r\nBigCommerce     78257    websites - $50 \r\nConcrete5	39121    websites - $50 \r\nCONTENIDO	5069     websites - $50 \r\nCubeCart	1062     websites - $50 \r\nCMSimple        11052    websites - $50 \r\nCS Cart         1180     websites - $50 \r\nDatalife Engine	29438    websites - $50 \r\nDiscuz	        47962    websites - $50 \r\nDotnetnuke	82964    websites - $50 \r\nDrupal	        978298   websites - $100 \r\nFlexbe	        15072    websites - $50 \r\nHostCMS	        5042     websites - $50 \r\nInstantCMS	4136     websites - $50 \r\nInSales	        11081    websites - $50 \r\nInvision Power Board 2430websites - $30 \r\nJoomla	        1906994  websites - $150 \r\nLiferay	        5137     websites - $50 \r\nMagento	        369447   websites - $80 \r\nMODx	        64023    websites - $50 \r\nMovable Type	9171     websites - $50 \r\nNetCat	        6636     websites - $50 \r\nNopCommerce	3892     websites - $50 \r\nOpenCart	415575   websites - $80 \r\nosCommerce	68468    websites - $50 \r\nOpenCms         5916     websites - $50 \r\nphpBB	        20045    websites - $50 \r\nPrestashop	328287   websites - $80 \r\nShopify	        2343709  websites - $200 \r\nSimpla	        17429    websites - $50 \r\nSitefinity	4183     websites - $50 \r\nTextpattern	882      websites - $30 \r\nTilda	        47396    websites - $50 \r\nTYPO3	        845009   websites - $80 \r\nUMI.CMS	        13191    websites - $50 \r\nvBulletin	14460    websites - $50 \r\nVolusion        16006    websites - $50 \r\nWix	        3379081  websites - $250 \r\nWordpress       35354537 websites - $650 \r\nWooCommerce     4459525  websites - $300 \r\nXenForo         21105    websites - $50 \r\nZen Cart        26524    websites - $50 \r\n \r\n \r\n \r\n.ae 233019 websites UAE - $50 \r\n.ae 10938 websites International zone UAE:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ag 11931 websites Antigua and Barbuda - $50 \r\n.ai 33130 websites Anguilla - $50 \r\n.am 46971 websites Armenia - $50 \r\n.am 1684 websites International zone Armenia:.com .net .biz .info .name .tel \r\n.ar 782608 websites Argentina - $80 \r\n.ar 75496 websites International zone Argentina:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ar.com 135 websites - $30 \r\n.at 1356722 websites Austria - $100 \r\n.at 181907 websites International zone Austria :.com .net .biz .info .name \r\n.au 2432174 websites Australia - $150 \r\n.au 461279 websites International zone Australia:.com .net .biz .info .name \r\n.az 28177 websites Azerbaijan - $50 \r\n.az 2036 websites International zone Azerbaijan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ba 15725 websites Bosnia and Herzegovina - $30 \r\n.ba 2291 websites international zone Bosnia and Herzegovina:.com.net.biz.info.org.name.tel.mobi.asia-$30 \r\n.be 1349658 websites Belgium - $100 \r\n.be 1056248 websites International zone Belgium:.com .net .biz .info .name \r\n.bg 54418 websites Bulgaria - $50 \r\n.bg 50685 websites International zone Bulgaria:.com .net .biz .info .name \r\n.bo 2602 websites Bolivia - $30 \r\n.bo 29415 websites International zone Bolivia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.br 3205100 websites Brazil - $200 \r\n.br 1230078 websites International zone Brazil:.com .net .biz .info .name . \r\n.by 183813 websites Belarus - $50 \r\n.by 1574 websites International zone Belarus:.com .net .biz .info .name .tel \r\n.ca 2587463 websites Canada - $150 \r\n.ca 288395 websites International zone Canada:.com .net .biz .info .name \r\n.cc 436396 websites - $80 \r\n.cc 1920589 websites Cocos Keeling Islands- $100 \r\n.cf 2461460 websites Central African Republic - $150 \r\n.cg 526 websites Congo - $30 \r\n.ch 1629450 websites Switzerland - $100 \r\n.ch 205292 websites International zone Switzerland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ci 5794 websites Cote d\'Ivoire - $30 \r\n.ci 112 websites International zone Cote d\'Ivoire:.com .net .biz .info .name \r\n.cl 590401 websites Chile - $80 \r\n.cl 65996 websites International zone Chile:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.cm 29221 websites Cameroon- $50 \r\n.cn 23160610 websites China - $600 \r\n.cn 1372416 websites International zone China:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.co 1878923 websites Colombia - $100 \r\n.co 10854 websites International zone Colombia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cx 15753 websites Christmas Island - $50 \r\n.cy 11092 websites Cyprus - $50 \r\n.cy 744 websites International zone Cyprus:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cz 1001208 websites Czech Republic - $100 \r\n.cz 193400 websites International zone Czech Republic:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.de 15078512 websites Germany - $350 \r\n.de 3894156 websites International zone Germany:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.dk 1732020 websites Denmark - $150 \r\n.dk 148164 websites International zone Denmark:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.dm 23318 websites Dominica - $50 \r\n.dn.ua 1835 websites - $30 \r\n.do 5255 websites Dominican Republic- $30 \r\n.dy.fi 1112 websites - $30 \r\n.dz 5382 websites Algeria - $30 \r\n.ec 11731 websites Ecuador - $50 \r\n.ec 2897 websites International zone Ecuador:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ee 172423 websites Estonia- $50 \r\n.ee 10490 websites International zone Estonia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.es 1509048 websites Spain - $100 \r\n.es 683845 websites International zone Spain:.com .net .biz .info .name .tel .eu 3046076 websites Europe - $150 \r\n.eu 633384 websites International zone Europe:.com .net .biz .info .name .fi 361111 websites Finland - $80 \r\n.fi 69631 websites International zone Finland:.com .net .biz .info .name .fr 2810983 websites France - $150 \r\n.fr 639546 websites International zone France:.com .net .biz .info .name .ge .ge 38616 websites Georgia - $50 \r\n.ge 1676 websites International zone Georgia:.com .net .biz .info .name .tel .gf 996 websites French Guiana - $30 \r\n.gg 10528 websites Guernsey islands - $50 \r\n.gh 703 websites Ghana - $30 \r\n.gi 981 websites Gibraltar - $30 \r\n.gp 2044 websites Guadeloupe - $30 \r\n.gq 2027422 websites Equatorial Guinea - $100 \r\n.gr 327215 websites Greece - $80 \r\n.gr 57984 websites International zone Greece:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.gt 15351 websites Guatemala - $50 \r\n.hk 116093 websites Hong Kong - $50 \r\n.hm 335 websites Heard & McDonald islands - $30 \r\n.hn 4732 websites Honduras - $30 \r\n.hr 75736 websites Croatia - $50 \r\n.hr 16592 websites International zone Croatia:.com .net .biz .info .name .tel .mobi .asia \r\n.ht 1299 websites Haiti - $30 \r\n.hu 53940 websites International zone Hungary:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ie 209620 websites Ireland - $50 \r\n.ie 49861 websites International zone Ireland:.com .net .biz .info .name .il 196266 websites Israel - $80 \r\n.il 38537 websites International zone Israel:.com .net .biz .info .name .tel .in 1157482 websites India - $100 \r\n.in 266179 websites International zone India:.com .net .biz .info .name .tel .io 496216 websites British Indian Ocean - $80 \r\n.iq 2401 websites Iraq - $30 \r\n.ir 574258 websites Iran - $80 \r\n.ir 15487 websites International zone Iran:.com .net .biz .info .name .tel .mobi .asia \r\n.it 2410105 websites Italy – $150 \r\n.it 954040 websites International zone Italy:.com.net.biz.info.org.name.tel.mobi.asia-$100 \r\n.je 3016 websites Ireland - $30 \r\n.jp 1825219 websites Japan - $150 \r\n.jp 4683252 websites International zone Japan:.com.net.biz.info.org.name.tel.mobi.asia-$200 \r\n.jp.net 5170 websites - $30 \r\n.ke 14677 websites Kenya - $50 \r\n.kg 16706 websites Kyrgyzstan - $50 \r\n.kg 664 websites International zone Kyrgyzstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ki 79 websites Kiribati - $30 \r\n.kn 3211 websites Saint Kitts and Nevis - $30 \r\n.kr 272463 websites Korea- $80 \r\n.kw 484 websites Kuwait - $30 \r\n.ky 5783 websites Cayman Islands - $30 \r\n.kz 196249 websites Kazakhstan - $80 \r\n.kz 5876 websites International zone Kazakhstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.lc 1121 websites Saint Lucia - $30 \r\n.lk 32654 websites Sri Lanka - $30 \r\n.lt 138973 websites Lithuania- $50 \r\n.lt 27710 websites International zone Lithuania:.com .net .biz .info .name .tel .mobi .asia- $50 \r\n.lu 74322 websites Luxembourg - $50 \r\n.lu 4125 websites International zone Luxembourg:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.lv 202814 websites Latvia - $50 \r\n.lv 8887 websites International zone Latvia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ma 59103 websites Morocco - $50 \r\n.mc 3046 websites Monaco - $30 \r\n.md 31945 websites Moldova - $50 \r\n.md 1293 websites International zone Moldova:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.me 761596 websites Montenegro - $80 \r\n.me 86897 websites International zone Montenegro:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.mg 3715 websites Madagascar- $30 \r\n.mk 13266 websites Macedonia - $50 \r\n.ml 2158835 websites Mali - $100 \r\n.mn 17044 websites Mongolia - $50 \r\n.mq 1112 websites Martinique (French) - $30 \r\n.mr 776 websites Mauritania - $30 \r\n.ms 7265 websites Montserrat - $30 \r\n.mt 1402 websites Malta - $30 \r\n.mu 6475 websites Maurifius - $30 \r\n.mv 1996 websites Maldives - $30 \r\n.mw 8579 websites Malawi - $30 \r\n.mx 670901 websites Mexico- $80 \r\n.mx 174571 websites International zone Mexico:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.my 197328 websites Malaysia- $50 \r\n.my 14294 websites International zone Malaysia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.na 1094 websites - $30 \r\n.nc 3497 websites New Coledonia (French) - $30 \r\n.nl 3925784 websites Netherlands - $200 \r\n.nl 1019697 websites International zone Netherlands:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.no 620882 websites Norway - $80 \r\n.no 74318 websites International zone Norway:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.nu 255161 websites Niue- $50 \r\n.nz 593127 websites New Zealand - $80 \r\n.om 1701 websites Oman - $30 \r\n.pe 83224 websites Peru - $50 \r\n.pe 59157 websites International zone Peru:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pk 44464 websites Pakistan - $50 \r\n.pl 1795299 websites Poland - $100 \r\n.pl 327587 websites International zone Poland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pr 1358 websites Puerto Rico - $30 \r\n.pt 263136 websites Portugal - $80 \r\n.pt 17691 websites International zone Portugal:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.py 5593 websites Paraguay - $30 \r\n.py 653 websites International zone Paraguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.re 15089 websites Reunion (French) - $50 \r\n.ro 665267 websites Romania - $80 \r\n.ro 89068 websites International zone Romania:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.rs 85503 websites Serbia - $50 \r\n.ru 5025331 websites Russian - $250 \r\n.ru 514668 websites International zone Russian:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.rw 3806 websites Rwanda - $30 \r\n.sa 45210 websites Saudi Arabia- $50 \r\n.sa 8164 websites International zone Saudi Arabia:.com .net .biz .info .name .tel .mobi .asia - $30 \r\n.sc 4442 websites Seychelles- $30 \r\n.se 1491677 websites Sweden - $100 \r\n.se 293316 websites International zone Sweden:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sg 150351 websites Republic Of Singapore - $50 \r\n.sh 7560 websites Saint Helena - $30 \r\n.si 103778 websites Slovenia- $50 \r\n.si 12879 websites International zone Slovenia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sk 414198 websites Slovakia- $80 \r\n.sk 31572 websites International zone Slovakia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sm 8897 websites San Marino - $30 \r\n.sn 344 websites International zone Senegal:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.sn 4465 websites Senegal - $30 \r\n.sr 580 websites Suriname - $30 \r\n.sv 8432 websites Salvador- $30 \r\n.sx 2901 websites Sint Maarten - $30 \r\n.sy 2972 websites Syria - $30 \r\n.sz 321 websites Swaziland - $30 \r\n.tc 16384 websites Turks and Caicos Islands- $50 \r\n.tf 19841 websites French Sauthern Territory - $50 \r\n.tg 1230 websites Togo - $30 \r\n.th 22368 websites Kingdom Of Thailand- $50 \r\n.tj 9492 websites Tajikistan- $50 \r\n.tj 34 websites International zone Tajikistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tk 20085806 websites Tokelau - $500 \r\n.tl 2748 websites East Timor - $30 \r\n.tm 7203 websites Turkmenistan- $50 \r\n.tm 44 websites International zone Turkmenistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tr 243347 websites Turkey - $80 \r\n.tr 138818 International zone Turkey:.com .net .biz .info .name .tel .mobi .asia -$50 \r\n.tt 1017 websites Trinidad & Tobago  - $30 \r\n.ua 1274459 websites Ukraina - $100 \r\n.ua 147202 websites International zone Ukraine:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ug 3806 websites Uganda - $30 \r\n.ug 720 websites International zone Uganda:.com .net .biz .info .name .tel .mobi.asia-$30 \r\n.uk 5975887 websites United Kingdom - $250 \r\n.uk 3304606 websites International zone United Kingdom:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.us 4828526 websites USA - $300 \r\n.us 1211424 websites International zone USA:.com .net .biz .info .name .tel .mobi .asia - $100 \r\n.uy 15571 websites Uruguay - $50 \r\n.uy 31812 websites International zone Uruguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.uz 65125 websites Uzbekistan - $50 \r\n.uz  365 websites International zone Uzbekistan:.com .net .biz .info .name .tel .mobi .asia \r\n.vc 18641 websites Saint Vincent & Grenadines - $50 \r\n.ve 14015 websites Venezuela - $50 \r\n.ve 2898 websites International zone Venezuela:.com .net .biz .info .name .tel .mobi .asia - $30 \r\n.vg 8389 websites Virgin Islands (British) - $50 \r\n.vi 109 websites Virgin Islands (US) - $30 \r\n.vn 436005 websites Vietnam - $80 \r\n.vn 161855 websites International zone Vietnam:.com .net .biz .info .name .tel .mobi .asia - $50 \r\n.vu 1051 websites Vanuatu - $30 \r\n.wf 1133 websites Wallis & Futuna Islands - $30 \r\n.ws 99308 websites Samoa - $80 \r\n.ye 18 websites Yemen - $30 \r\n.yt 2004 websites Mayotte - $30 \r\n.za 1008308 websites South Africa - $100 \r\n \r\nwebsite =» xn----7sbb1bbndheurc1a.xn--p1ai',''),(3616,1,491,'11','Not yet, and I want to avoid the need for one in the future',''),(3617,1,491,'13','Facebook',''),(3618,1,491,'4','Anytime',''),(3619,1,492,'6.3','Debra Sievert',''),(3620,1,492,'2','debrasievert@yahoo.com',''),(3621,1,492,'3','(323) 551-8252',''),(3622,1,492,'5','Do you take Medicare? I am 67 years old. Someday I can\'t hardly walk. The pain come from the top of my legs all the way down to my feet. My knees are hurting so bad. I have tried cool, hot, dry, wet. Pain pills,  pain cream. Nothing seems to work. I really need your help.\r\n\r\nThank you\r\nDebra Sievert',''),(3623,1,492,'11','Not yet, and I want to avoid the need for one in the future',''),(3624,1,492,'13','Google/Internet',''),(3625,1,492,'4','Anytime',''),(3626,1,493,'6.3','contactljygzi',''),(3627,1,493,'2','levkovich-masljukvelimira1991@rambler.ru',''),(3628,1,493,'3','(157) 312-1561',''),(3629,1,493,'5','Good whatever time of day it is where you are! \r\n \r\nSending newsletters via forms into the \"Contact us\" section to the sites of business organizations via any countries and domain zones of the world.  \r\n \r\nYour offer is sent to E-mail address \r\n of institution one hundred percent will get to the incoming folder! \r\n \r\n2000 bases: \r\nPrice List =» xn----7sbb1bbndheurc1a.xn--p1ai/prajs-list/ \r\n \r\nTest mailing: $20 – 20000 contact forms websites \r\n \r\nAll Europe 44 countries there are 60726150 websites – $1100 \r\n \r\nAll EU 28 countries there are 56752547 websites – $1000 \r\n \r\nAll Asia 48 countries there are 14662004 websites – $500 \r\n \r\nAll Africa 50 countries there are 1594390 websites – $200 \r\n \r\nAll North and Central America is 35 countries there are 7441637 websites – $300 \r\n \r\nAll South America 14 countries there are 5826884 websites – $200 \r\n \r\nTop 1 Million World’s Best websites – $100 \r\n \r\nTop 16821856 the most visited websites in the world – $300 \r\n \r\nNew websites from around the world registered 24-48 hours ago. (A cycle of 15 mailings during the month) – 500$ \r\n \r\nBusinesses and organizations of the Russian Federation – there are 4025015 websites – $300 \r\n \r\nAll Russian-speaking countries minus Russia – there are 14 countries and 2637726 websites – $200 \r\n \r\nNew websites of the Russian Federation, registered 24-48 hours ago. (A cycle of 15 mailings during the month) – 250$ \r\n \r\n1499203 of hosting websites around the world (there are selections for all countries, are excluded from databases for mailings) – $150 \r\n \r\n295285 websites of public authorities of all countries of the world (selections for all countries, are excluded from databases for mailings) – $100 \r\n \r\n3516251 websites online stores Worldwide – $250 \r\n \r\nBy language: \r\n \r\nThat speak English - 54797239 websites - $1200 \r\nFrench-speaking websites - 18655242 websites - $600 \r\nThat speak Spanish - 9013026 websites - $400 \r\nThat speak German - 22397305 websites - $800 \r\nWebsites in Portuguese - 6862084 websites - $300 \r\nRussian-speaking websites - 6662741 websites - $300 \r\n \r\nCMS mailings: \r\n \r\nAmiro	        1794     websites - $50 \r\nBitrix	        278751   websites - $80 \r\nBigCommerce     78257    websites - $50 \r\nConcrete5	39121    websites - $50 \r\nCONTENIDO	5069     websites - $50 \r\nCubeCart	1062     websites - $50 \r\nCMSimple        11052    websites - $50 \r\nCS Cart         1180     websites - $50 \r\nDatalife Engine	29438    websites - $50 \r\nDiscuz	        47962    websites - $50 \r\nDotnetnuke	82964    websites - $50 \r\nDrupal	        978298   websites - $100 \r\nFlexbe	        15072    websites - $50 \r\nHostCMS	        5042     websites - $50 \r\nInstantCMS	4136     websites - $50 \r\nInSales	        11081    websites - $50 \r\nInvision Power Board 2430websites - $30 \r\nJoomla	        1906994  websites - $150 \r\nLiferay	        5137     websites - $50 \r\nMagento	        369447   websites - $80 \r\nMODx	        64023    websites - $50 \r\nMovable Type	9171     websites - $50 \r\nNetCat	        6636     websites - $50 \r\nNopCommerce	3892     websites - $50 \r\nOpenCart	415575   websites - $80 \r\nosCommerce	68468    websites - $50 \r\nOpenCms         5916     websites - $50 \r\nphpBB	        20045    websites - $50 \r\nPrestashop	328287   websites - $80 \r\nShopify	        2343709  websites - $200 \r\nSimpla	        17429    websites - $50 \r\nSitefinity	4183     websites - $50 \r\nTextpattern	882      websites - $30 \r\nTilda	        47396    websites - $50 \r\nTYPO3	        845009   websites - $80 \r\nUMI.CMS	        13191    websites - $50 \r\nvBulletin	14460    websites - $50 \r\nVolusion        16006    websites - $50 \r\nWix	        3379081  websites - $250 \r\nWordpress       35354537 websites - $650 \r\nWooCommerce     4459525  websites - $300 \r\nXenForo         21105    websites - $50 \r\nZen Cart        26524    websites - $50 \r\n \r\n \r\n \r\n.ae 233019 websites UAE - $50 \r\n.ae 10938 websites International zone UAE:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ag 11931 websites Antigua and Barbuda - $50 \r\n.ai 33130 websites Anguilla - $50 \r\n.am 46971 websites Armenia - $50 \r\n.am 1684 websites International zone Armenia:.com .net .biz .info .name .tel \r\n.ar 782608 websites Argentina - $80 \r\n.ar 75496 websites International zone Argentina:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ar.com 135 websites - $30 \r\n.at 1356722 websites Austria - $100 \r\n.at 181907 websites International zone Austria :.com .net .biz .info .name \r\n.au 2432174 websites Australia - $150 \r\n.au 461279 websites International zone Australia:.com .net .biz .info .name \r\n.az 28177 websites Azerbaijan - $50 \r\n.az 2036 websites International zone Azerbaijan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ba 15725 websites Bosnia and Herzegovina - $30 \r\n.ba 2291 websites international zone Bosnia and Herzegovina:.com.net.biz.info.org.name.tel.mobi.asia-$30 \r\n.be 1349658 websites Belgium - $100 \r\n.be 1056248 websites International zone Belgium:.com .net .biz .info .name \r\n.bg 54418 websites Bulgaria - $50 \r\n.bg 50685 websites International zone Bulgaria:.com .net .biz .info .name \r\n.bo 2602 websites Bolivia - $30 \r\n.bo 29415 websites International zone Bolivia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.br 3205100 websites Brazil - $200 \r\n.br 1230078 websites International zone Brazil:.com .net .biz .info .name . \r\n.by 183813 websites Belarus - $50 \r\n.by 1574 websites International zone Belarus:.com .net .biz .info .name .tel \r\n.ca 2587463 websites Canada - $150 \r\n.ca 288395 websites International zone Canada:.com .net .biz .info .name \r\n.cc 436396 websites - $80 \r\n.cc 1920589 websites Cocos Keeling Islands- $100 \r\n.cf 2461460 websites Central African Republic - $150 \r\n.cg 526 websites Congo - $30 \r\n.ch 1629450 websites Switzerland - $100 \r\n.ch 205292 websites International zone Switzerland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ci 5794 websites Cote d\'Ivoire - $30 \r\n.ci 112 websites International zone Cote d\'Ivoire:.com .net .biz .info .name \r\n.cl 590401 websites Chile - $80 \r\n.cl 65996 websites International zone Chile:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.cm 29221 websites Cameroon- $50 \r\n.cn 23160610 websites China - $600 \r\n.cn 1372416 websites International zone China:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.co 1878923 websites Colombia - $100 \r\n.co 10854 websites International zone Colombia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cx 15753 websites Christmas Island - $50 \r\n.cy 11092 websites Cyprus - $50 \r\n.cy 744 websites International zone Cyprus:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cz 1001208 websites Czech Republic - $100 \r\n.cz 193400 websites International zone Czech Republic:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.de 15078512 websites Germany - $350 \r\n.de 3894156 websites International zone Germany:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.dk 1732020 websites Denmark - $150 \r\n.dk 148164 websites International zone Denmark:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.dm 23318 websites Dominica - $50 \r\n.dn.ua 1835 websites - $30 \r\n.do 5255 websites Dominican Republic- $30 \r\n.dy.fi 1112 websites - $30 \r\n.dz 5382 websites Algeria - $30 \r\n.ec 11731 websites Ecuador - $50 \r\n.ec 2897 websites International zone Ecuador:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ee 172423 websites Estonia- $50 \r\n.ee 10490 websites International zone Estonia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.es 1509048 websites Spain - $100 \r\n.es 683845 websites International zone Spain:.com .net .biz .info .name .tel .eu 3046076 websites Europe - $150 \r\n.eu 633384 websites International zone Europe:.com .net .biz .info .name .fi 361111 websites Finland - $80 \r\n.fi 69631 websites International zone Finland:.com .net .biz .info .name .fr 2810983 websites France - $150 \r\n.fr 639546 websites International zone France:.com .net .biz .info .name .ge .ge 38616 websites Georgia - $50 \r\n.ge 1676 websites International zone Georgia:.com .net .biz .info .name .tel .gf 996 websites French Guiana - $30 \r\n.gg 10528 websites Guernsey islands - $50 \r\n.gh 703 websites Ghana - $30 \r\n.gi 981 websites Gibraltar - $30 \r\n.gp 2044 websites Guadeloupe - $30 \r\n.gq 2027422 websites Equatorial Guinea - $100 \r\n.gr 327215 websites Greece - $80 \r\n.gr 57984 websites International zone Greece:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.gt 15351 websites Guatemala - $50 \r\n.hk 116093 websites Hong Kong - $50 \r\n.hm 335 websites Heard & McDonald islands - $30 \r\n.hn 4732 websites Honduras - $30 \r\n.hr 75736 websites Croatia - $50 \r\n.hr 16592 websites International zone Croatia:.com .net .biz .info .name .tel .mobi .asia \r\n.ht 1299 websites Haiti - $30 \r\n.hu 53940 websites International zone Hungary:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ie 209620 websites Ireland - $50 \r\n.ie 49861 websites International zone Ireland:.com .net .biz .info .name .il 196266 websites Israel - $80 \r\n.il 38537 websites International zone Israel:.com .net .biz .info .name .tel .in 1157482 websites India - $100 \r\n.in 266179 websites International zone India:.com .net .biz .info .name .tel .io 496216 websites British Indian Ocean - $80 \r\n.iq 2401 websites Iraq - $30 \r\n.ir 574258 websites Iran - $80 \r\n.ir 15487 websites International zone Iran:.com .net .biz .info .name .tel .mobi .asia \r\n.it 2410105 websites Italy – $150 \r\n.it 954040 websites International zone Italy:.com.net.biz.info.org.name.tel.mobi.asia-$100 \r\n.je 3016 websites Ireland - $30 \r\n.jp 1825219 websites Japan - $150 \r\n.jp 4683252 websites International zone Japan:.com.net.biz.info.org.name.tel.mobi.asia-$200 \r\n.jp.net 5170 websites - $30 \r\n.ke 14677 websites Kenya - $50 \r\n.kg 16706 websites Kyrgyzstan - $50 \r\n.kg 664 websites International zone Kyrgyzstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ki 79 websites Kiribati - $30 \r\n.kn 3211 websites Saint Kitts and Nevis - $30 \r\n.kr 272463 websites Korea- $80 \r\n.kw 484 websites Kuwait - $30 \r\n.ky 5783 websites Cayman Islands - $30 \r\n.kz 196249 websites Kazakhstan - $80 \r\n.kz 5876 websites International zone Kazakhstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.lc 1121 websites Saint Lucia - $30 \r\n.lk 32654 websites Sri Lanka - $30 \r\n.lt 138973 websites Lithuania- $50 \r\n.lt 27710 websites International zone Lithuania:.com .net .biz .info .name .tel .mobi .asia- $50 \r\n.lu 74322 websites Luxembourg - $50 \r\n.lu 4125 websites International zone Luxembourg:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.lv 202814 websites Latvia - $50 \r\n.lv 8887 websites International zone Latvia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ma 59103 websites Morocco - $50 \r\n.mc 3046 websites Monaco - $30 \r\n.md 31945 websites Moldova - $50 \r\n.md 1293 websites International zone Moldova:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.me 761596 websites Montenegro - $80 \r\n.me 86897 websites International zone Montenegro:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.mg 3715 websites Madagascar- $30 \r\n.mk 13266 websites Macedonia - $50 \r\n.ml 2158835 websites Mali - $100 \r\n.mn 17044 websites Mongolia - $50 \r\n.mq 1112 websites Martinique (French) - $30 \r\n.mr 776 websites Mauritania - $30 \r\n.ms 7265 websites Montserrat - $30 \r\n.mt 1402 websites Malta - $30 \r\n.mu 6475 websites Maurifius - $30 \r\n.mv 1996 websites Maldives - $30 \r\n.mw 8579 websites Malawi - $30 \r\n.mx 670901 websites Mexico- $80 \r\n.mx 174571 websites International zone Mexico:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.my 197328 websites Malaysia- $50 \r\n.my 14294 websites International zone Malaysia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.na 1094 websites - $30 \r\n.nc 3497 websites New Coledonia (French) - $30 \r\n.nl 3925784 websites Netherlands - $200 \r\n.nl 1019697 websites International zone Netherlands:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.no 620882 websites Norway - $80 \r\n.no 74318 websites International zone Norway:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.nu 255161 websites Niue- $50 \r\n.nz 593127 websites New Zealand - $80 \r\n.om 1701 websites Oman - $30 \r\n.pe 83224 websites Peru - $50 \r\n.pe 59157 websites International zone Peru:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pk 44464 websites Pakistan - $50 \r\n.pl 1795299 websites Poland - $100 \r\n.pl 327587 websites International zone Poland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pr 1358 websites Puerto Rico - $30 \r\n.pt 263136 websites Portugal - $80 \r\n.pt 17691 websites International zone Portugal:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.py 5593 websites Paraguay - $30 \r\n.py 653 websites International zone Paraguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.re 15089 websites Reunion (French) - $50 \r\n.ro 665267 websites Romania - $80 \r\n.ro 89068 websites International zone Romania:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.rs 85503 websites Serbia - $50 \r\n.ru 5025331 websites Russian - $250 \r\n.ru 514668 websites International zone Russian:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.rw 3806 websites Rwanda - $30 \r\n.sa 45210 websites Saudi Arabia- $50 \r\n.sa 8164 websites International zone Saudi Arabia:.com .net .biz .info .name .tel .mobi .asia - $30 \r\n.sc 4442 websites Seychelles- $30 \r\n.se 1491677 websites Sweden - $100 \r\n.se 293316 websites International zone Sweden:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sg 150351 websites Republic Of Singapore - $50 \r\n.sh 7560 websites Saint Helena - $30 \r\n.si 103778 websites Slovenia- $50 \r\n.si 12879 websites International zone Slovenia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sk 414198 websites Slovakia- $80 \r\n.sk 31572 websites International zone Slovakia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sm 8897 websites San Marino - $30 \r\n.sn 344 websites International zone Senegal:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.sn 4465 websites Senegal - $30 \r\n.sr 580 websites Suriname - $30 \r\n.sv 8432 websites Salvador- $30 \r\n.sx 2901 websites Sint Maarten - $30 \r\n.sy 2972 websites Syria - $30 \r\n.sz 321 websites Swaziland - $30 \r\n.tc 16384 websites Turks and Caicos Islands- $50 \r\n.tf 19841 websites French Sauthern Territory - $50 \r\n.tg 1230 websites Togo - $30 \r\n.th 22368 websites Kingdom Of Thailand- $50 \r\n.tj 9492 websites Tajikistan- $50 \r\n.tj 34 websites International zone Tajikistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tk 20085806 websites Tokelau - $500 \r\n.tl 2748 websites East Timor - $30 \r\n.tm 7203 websites Turkmenistan- $50 \r\n.tm 44 websites International zone Turkmenistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tr 243347 websites Turkey - $80 \r\n.tr 138818 International zone Turkey:.com .net .biz .info .name .tel .mobi .asia -$50 \r\n.tt 1017 websites Trinidad & Tobago  - $30 \r\n.ua 1274459 websites Ukraina - $100 \r\n.ua 147202 websites International zone Ukraine:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ug 3806 websites Uganda - $30 \r\n.ug 720 websites International zone Uganda:.com .net .biz .info .name .tel .mobi.asia-$30 \r\n.uk 5975887 websites United Kingdom - $250 \r\n.uk 3304606 websites International zone United Kingdom:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.us 4828526 websites USA - $300 \r\n.us 1211424 websites International zone USA:.com .net .biz .info .name .tel .mobi .asia - $100 \r\n.uy 15571 websites Uruguay - $50 \r\n.uy 31812 websites International zone Uruguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.uz 65125 websites Uzbekistan - $50 \r\n.uz  365 websites International zone Uzbekistan:.com .net .biz .info .name .tel .mobi .asia \r\n.vc 18641 websites Saint Vincent & Grenadines - $50 \r\n.ve 14015 websites Venezuela - $50 \r\n.ve 2898 websites International zone Venezuela:.com .net .biz .info .name .tel .mobi .asia - $30 \r\n.vg 8389 websites Virgin Islands (British) - $50 \r\n.vi 109 websites Virgin Islands (US) - $30 \r\n.vn 436005 websites Vietnam - $80 \r\n.vn 161855 websites International zone Vietnam:.com .net .biz .info .name .tel .mobi .asia - $50 \r\n.vu 1051 websites Vanuatu - $30 \r\n.wf 1133 websites Wallis & Futuna Islands - $30 \r\n.ws 99308 websites Samoa - $80 \r\n.ye 18 websites Yemen - $30 \r\n.yt 2004 websites Mayotte - $30 \r\n.za 1008308 websites South Africa - $100 \r\n \r\nwebsite =» xn----7sbb1bbndheurc1a.xn--p1ai',''),(3630,1,493,'11','Not yet, and I want to avoid the need for one in the future',''),(3631,1,493,'13','Google/Internet',''),(3632,1,493,'4','Anytime',''),(3633,1,494,'6.3','contactahfrhf',''),(3634,1,494,'2','levkovich-masljukvelimira1991@rambler.ru',''),(3635,1,494,'3','(532) 745-5635',''),(3636,1,494,'5','Dear sir! \r\n \r\nWe will send Your offers via contact forms  to the sites of companies via any countries of the world.  \r\n \r\nThe commercial offer is sent to electronic box of institution 100% will get to the inbox! \r\n \r\n2000 bases: \r\nPrice List =» xn----7sbb1bbndheurc1a.xn--p1ai/prajs-list/ \r\n \r\nTest mailing: $20 – 20000 contact forms websites \r\n \r\nAll Europe 44 countries there are 60726150 websites – $1100 \r\n \r\nAll EU 28 countries there are 56752547 websites – $1000 \r\n \r\nAll Asia 48 countries there are 14662004 websites – $500 \r\n \r\nAll Africa 50 countries there are 1594390 websites – $200 \r\n \r\nAll North and Central America is 35 countries there are 7441637 websites – $300 \r\n \r\nAll South America 14 countries there are 5826884 websites – $200 \r\n \r\nTop 1 Million World’s Best websites – $100 \r\n \r\nTop 16821856 the most visited websites in the world – $300 \r\n \r\nNew websites from around the world registered 24-48 hours ago. (A cycle of 15 mailings during the month) – 500$ \r\n \r\nBusinesses and organizations of the Russian Federation – there are 4025015 websites – $300 \r\n \r\nAll Russian-speaking countries minus Russia – there are 14 countries and 2637726 websites – $200 \r\n \r\nNew websites of the Russian Federation, registered 24-48 hours ago. (A cycle of 15 mailings during the month) – 250$ \r\n \r\n1499203 of hosting websites around the world (there are selections for all countries, are excluded from databases for mailings) – $150 \r\n \r\n295285 websites of public authorities of all countries of the world (selections for all countries, are excluded from databases for mailings) – $100 \r\n \r\n3516251 websites online stores Worldwide – $250 \r\n \r\nBy language: \r\n \r\nEnglish-speaking websites - 54797239 websites - $1200 \r\nFrench-speaking websites - 18655242 websites - $600 \r\nWebsites in Spanish - 9013026 websites - $400 \r\nGerman-speaking websites - 22397305 websites - $800 \r\nWebsites in Portuguese - 6862084 websites - $300 \r\nWebsites in Russian - 6662741 websites - $300 \r\n \r\nCMS mailings: \r\n \r\nAmiro	        1794     websites - $50 \r\nBitrix	        278751   websites - $80 \r\nBigCommerce     78257    websites - $50 \r\nConcrete5	39121    websites - $50 \r\nCONTENIDO	5069     websites - $50 \r\nCubeCart	1062     websites - $50 \r\nCMSimple        11052    websites - $50 \r\nCS Cart         1180     websites - $50 \r\nDatalife Engine	29438    websites - $50 \r\nDiscuz	        47962    websites - $50 \r\nDotnetnuke	82964    websites - $50 \r\nDrupal	        978298   websites - $100 \r\nFlexbe	        15072    websites - $50 \r\nHostCMS	        5042     websites - $50 \r\nInstantCMS	4136     websites - $50 \r\nInSales	        11081    websites - $50 \r\nInvision Power Board 2430websites - $30 \r\nJoomla	        1906994  websites - $150 \r\nLiferay	        5137     websites - $50 \r\nMagento	        369447   websites - $80 \r\nMODx	        64023    websites - $50 \r\nMovable Type	9171     websites - $50 \r\nNetCat	        6636     websites - $50 \r\nNopCommerce	3892     websites - $50 \r\nOpenCart	415575   websites - $80 \r\nosCommerce	68468    websites - $50 \r\nOpenCms         5916     websites - $50 \r\nphpBB	        20045    websites - $50 \r\nPrestashop	328287   websites - $80 \r\nShopify	        2343709  websites - $200 \r\nSimpla	        17429    websites - $50 \r\nSitefinity	4183     websites - $50 \r\nTextpattern	882      websites - $30 \r\nTilda	        47396    websites - $50 \r\nTYPO3	        845009   websites - $80 \r\nUMI.CMS	        13191    websites - $50 \r\nvBulletin	14460    websites - $50 \r\nVolusion        16006    websites - $50 \r\nWix	        3379081  websites - $250 \r\nWordpress       35354537 websites - $650 \r\nWooCommerce     4459525  websites - $300 \r\nXenForo         21105    websites - $50 \r\nZen Cart        26524    websites - $50 \r\n \r\n \r\n \r\n.ae 233019 websites UAE - $50 \r\n.ae 10938 websites International zone UAE:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ag 11931 websites Antigua and Barbuda - $50 \r\n.ai 33130 websites Anguilla - $50 \r\n.am 46971 websites Armenia - $50 \r\n.am 1684 websites International zone Armenia:.com .net .biz .info .name .tel \r\n.ar 782608 websites Argentina - $80 \r\n.ar 75496 websites International zone Argentina:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ar.com 135 websites - $30 \r\n.at 1356722 websites Austria - $100 \r\n.at 181907 websites International zone Austria :.com .net .biz .info .name \r\n.au 2432174 websites Australia - $150 \r\n.au 461279 websites International zone Australia:.com .net .biz .info .name \r\n.az 28177 websites Azerbaijan - $50 \r\n.az 2036 websites International zone Azerbaijan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ba 15725 websites Bosnia and Herzegovina - $30 \r\n.ba 2291 websites international zone Bosnia and Herzegovina:.com.net.biz.info.org.name.tel.mobi.asia-$30 \r\n.be 1349658 websites Belgium - $100 \r\n.be 1056248 websites International zone Belgium:.com .net .biz .info .name \r\n.bg 54418 websites Bulgaria - $50 \r\n.bg 50685 websites International zone Bulgaria:.com .net .biz .info .name \r\n.bo 2602 websites Bolivia - $30 \r\n.bo 29415 websites International zone Bolivia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.br 3205100 websites Brazil - $200 \r\n.br 1230078 websites International zone Brazil:.com .net .biz .info .name . \r\n.by 183813 websites Belarus - $50 \r\n.by 1574 websites International zone Belarus:.com .net .biz .info .name .tel \r\n.ca 2587463 websites Canada - $150 \r\n.ca 288395 websites International zone Canada:.com .net .biz .info .name \r\n.cc 436396 websites - $80 \r\n.cc 1920589 websites Cocos Keeling Islands- $100 \r\n.cf 2461460 websites Central African Republic - $150 \r\n.cg 526 websites Congo - $30 \r\n.ch 1629450 websites Switzerland - $100 \r\n.ch 205292 websites International zone Switzerland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ci 5794 websites Cote d\'Ivoire - $30 \r\n.ci 112 websites International zone Cote d\'Ivoire:.com .net .biz .info .name \r\n.cl 590401 websites Chile - $80 \r\n.cl 65996 websites International zone Chile:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.cm 29221 websites Cameroon- $50 \r\n.cn 23160610 websites China - $600 \r\n.cn 1372416 websites International zone China:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.co 1878923 websites Colombia - $100 \r\n.co 10854 websites International zone Colombia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cx 15753 websites Christmas Island - $50 \r\n.cy 11092 websites Cyprus - $50 \r\n.cy 744 websites International zone Cyprus:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cz 1001208 websites Czech Republic - $100 \r\n.cz 193400 websites International zone Czech Republic:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.de 15078512 websites Germany - $350 \r\n.de 3894156 websites International zone Germany:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.dk 1732020 websites Denmark - $150 \r\n.dk 148164 websites International zone Denmark:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.dm 23318 websites Dominica - $50 \r\n.dn.ua 1835 websites - $30 \r\n.do 5255 websites Dominican Republic- $30 \r\n.dy.fi 1112 websites - $30 \r\n.dz 5382 websites Algeria - $30 \r\n.ec 11731 websites Ecuador - $50 \r\n.ec 2897 websites International zone Ecuador:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ee 172423 websites Estonia- $50 \r\n.ee 10490 websites International zone Estonia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.es 1509048 websites Spain - $100 \r\n.es 683845 websites International zone Spain:.com .net .biz .info .name .tel .eu 3046076 websites Europe - $150 \r\n.eu 633384 websites International zone Europe:.com .net .biz .info .name .fi 361111 websites Finland - $80 \r\n.fi 69631 websites International zone Finland:.com .net .biz .info .name .fr 2810983 websites France - $150 \r\n.fr 639546 websites International zone France:.com .net .biz .info .name .ge .ge 38616 websites Georgia - $50 \r\n.ge 1676 websites International zone Georgia:.com .net .biz .info .name .tel .gf 996 websites French Guiana - $30 \r\n.gg 10528 websites Guernsey islands - $50 \r\n.gh 703 websites Ghana - $30 \r\n.gi 981 websites Gibraltar - $30 \r\n.gp 2044 websites Guadeloupe - $30 \r\n.gq 2027422 websites Equatorial Guinea - $100 \r\n.gr 327215 websites Greece - $80 \r\n.gr 57984 websites International zone Greece:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.gt 15351 websites Guatemala - $50 \r\n.hk 116093 websites Hong Kong - $50 \r\n.hm 335 websites Heard & McDonald islands - $30 \r\n.hn 4732 websites Honduras - $30 \r\n.hr 75736 websites Croatia - $50 \r\n.hr 16592 websites International zone Croatia:.com .net .biz .info .name .tel .mobi .asia \r\n.ht 1299 websites Haiti - $30 \r\n.hu 53940 websites International zone Hungary:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ie 209620 websites Ireland - $50 \r\n.ie 49861 websites International zone Ireland:.com .net .biz .info .name .il 196266 websites Israel - $80 \r\n.il 38537 websites International zone Israel:.com .net .biz .info .name .tel .in 1157482 websites India - $100 \r\n.in 266179 websites International zone India:.com .net .biz .info .name .tel .io 496216 websites British Indian Ocean - $80 \r\n.iq 2401 websites Iraq - $30 \r\n.ir 574258 websites Iran - $80 \r\n.ir 15487 websites International zone Iran:.com .net .biz .info .name .tel .mobi .asia \r\n.it 2410105 websites Italy – $150 \r\n.it 954040 websites International zone Italy:.com.net.biz.info.org.name.tel.mobi.asia-$100 \r\n.je 3016 websites Ireland - $30 \r\n.jp 1825219 websites Japan - $150 \r\n.jp 4683252 websites International zone Japan:.com.net.biz.info.org.name.tel.mobi.asia-$200 \r\n.jp.net 5170 websites - $30 \r\n.ke 14677 websites Kenya - $50 \r\n.kg 16706 websites Kyrgyzstan - $50 \r\n.kg 664 websites International zone Kyrgyzstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ki 79 websites Kiribati - $30 \r\n.kn 3211 websites Saint Kitts and Nevis - $30 \r\n.kr 272463 websites Korea- $80 \r\n.kw 484 websites Kuwait - $30 \r\n.ky 5783 websites Cayman Islands - $30 \r\n.kz 196249 websites Kazakhstan - $80 \r\n.kz 5876 websites International zone Kazakhstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.lc 1121 websites Saint Lucia - $30 \r\n.lk 32654 websites Sri Lanka - $30 \r\n.lt 138973 websites Lithuania- $50 \r\n.lt 27710 websites International zone Lithuania:.com .net .biz .info .name .tel .mobi .asia- $50 \r\n.lu 74322 websites Luxembourg - $50 \r\n.lu 4125 websites International zone Luxembourg:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.lv 202814 websites Latvia - $50 \r\n.lv 8887 websites International zone Latvia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ma 59103 websites Morocco - $50 \r\n.mc 3046 websites Monaco - $30 \r\n.md 31945 websites Moldova - $50 \r\n.md 1293 websites International zone Moldova:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.me 761596 websites Montenegro - $80 \r\n.me 86897 websites International zone Montenegro:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.mg 3715 websites Madagascar- $30 \r\n.mk 13266 websites Macedonia - $50 \r\n.ml 2158835 websites Mali - $100 \r\n.mn 17044 websites Mongolia - $50 \r\n.mq 1112 websites Martinique (French) - $30 \r\n.mr 776 websites Mauritania - $30 \r\n.ms 7265 websites Montserrat - $30 \r\n.mt 1402 websites Malta - $30 \r\n.mu 6475 websites Maurifius - $30 \r\n.mv 1996 websites Maldives - $30 \r\n.mw 8579 websites Malawi - $30 \r\n.mx 670901 websites Mexico- $80 \r\n.mx 174571 websites International zone Mexico:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.my 197328 websites Malaysia- $50 \r\n.my 14294 websites International zone Malaysia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.na 1094 websites - $30 \r\n.nc 3497 websites New Coledonia (French) - $30 \r\n.nl 3925784 websites Netherlands - $200 \r\n.nl 1019697 websites International zone Netherlands:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.no 620882 websites Norway - $80 \r\n.no 74318 websites International zone Norway:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.nu 255161 websites Niue- $50 \r\n.nz 593127 websites New Zealand - $80 \r\n.om 1701 websites Oman - $30 \r\n.pe 83224 websites Peru - $50 \r\n.pe 59157 websites International zone Peru:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pk 44464 websites Pakistan - $50 \r\n.pl 1795299 websites Poland - $100 \r\n.pl 327587 websites International zone Poland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pr 1358 websites Puerto Rico - $30 \r\n.pt 263136 websites Portugal - $80 \r\n.pt 17691 websites International zone Portugal:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.py 5593 websites Paraguay - $30 \r\n.py 653 websites International zone Paraguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.re 15089 websites Reunion (French) - $50 \r\n.ro 665267 websites Romania - $80 \r\n.ro 89068 websites International zone Romania:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.rs 85503 websites Serbia - $50 \r\n.ru 5025331 websites Russian - $250 \r\n.ru 514668 websites International zone Russian:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.rw 3806 websites Rwanda - $30 \r\n.sa 45210 websites Saudi Arabia- $50 \r\n.sa 8164 websites International zone Saudi Arabia:.com .net .biz .info .name .tel .mobi .asia - $30 \r\n.sc 4442 websites Seychelles- $30 \r\n.se 1491677 websites Sweden - $100 \r\n.se 293316 websites International zone Sweden:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sg 150351 websites Republic Of Singapore - $50 \r\n.sh 7560 websites Saint Helena - $30 \r\n.si 103778 websites Slovenia- $50 \r\n.si 12879 websites International zone Slovenia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sk 414198 websites Slovakia- $80 \r\n.sk 31572 websites International zone Slovakia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sm 8897 websites San Marino - $30 \r\n.sn 344 websites International zone Senegal:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.sn 4465 websites Senegal - $30 \r\n.sr 580 websites Suriname - $30 \r\n.sv 8432 websites Salvador- $30 \r\n.sx 2901 websites Sint Maarten - $30 \r\n.sy 2972 websites Syria - $30 \r\n.sz 321 websites Swaziland - $30 \r\n.tc 16384 websites Turks and Caicos Islands- $50 \r\n.tf 19841 websites French Sauthern Territory - $50 \r\n.tg 1230 websites Togo - $30 \r\n.th 22368 websites Kingdom Of Thailand- $50 \r\n.tj 9492 websites Tajikistan- $50 \r\n.tj 34 websites International zone Tajikistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tk 20085806 websites Tokelau - $500 \r\n.tl 2748 websites East Timor - $30 \r\n.tm 7203 websites Turkmenistan- $50 \r\n.tm 44 websites International zone Turkmenistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tr 243347 websites Turkey - $80 \r\n.tr 138818 International zone Turkey:.com .net .biz .info .name .tel .mobi .asia -$50 \r\n.tt 1017 websites Trinidad & Tobago  - $30 \r\n.ua 1274459 websites Ukraina - $100 \r\n.ua 147202 websites International zone Ukraine:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ug 3806 websites Uganda - $30 \r\n.ug 720 websites International zone Uganda:.com .net .biz .info .name .tel .mobi.asia-$30 \r\n.uk 5975887 websites United Kingdom - $250 \r\n.uk 3304606 websites International zone United Kingdom:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.us 4828526 websites USA - $300 \r\n.us 1211424 websites International zone USA:.com .net .biz .info .name .tel .mobi .asia - $100 \r\n.uy 15571 websites Uruguay - $50 \r\n.uy 31812 websites International zone Uruguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.uz 65125 websites Uzbekistan - $50 \r\n.uz  365 websites International zone Uzbekistan:.com .net .biz .info .name .tel .mobi .asia \r\n.vc 18641 websites Saint Vincent & Grenadines - $50 \r\n.ve 14015 websites Venezuela - $50 \r\n.ve 2898 websites International zone Venezuela:.com .net .biz .info .name .tel .mobi .asia - $30 \r\n.vg 8389 websites Virgin Islands (British) - $50 \r\n.vi 109 websites Virgin Islands (US) - $30 \r\n.vn 436005 websites Vietnam - $80 \r\n.vn 161855 websites International zone Vietnam:.com .net .biz .info .name .tel .mobi .asia - $50 \r\n.vu 1051 websites Vanuatu - $30 \r\n.wf 1133 websites Wallis & Futuna Islands - $30 \r\n.ws 99308 websites Samoa - $80 \r\n.ye 18 websites Yemen - $30 \r\n.yt 2004 websites Mayotte - $30 \r\n.za 1008308 websites South Africa - $100 \r\n \r\nwebsite =» xn----7sbb1bbndheurc1a.xn--p1ai',''),(3637,1,494,'11','Not yet, and I want to avoid the need for one in the future',''),(3638,1,494,'13','Google/Internet',''),(3639,1,494,'4','Anytime',''),(3640,1,495,'6.3','Mileydy',''),(3641,1,495,'2','mileydy7@gmail.com',''),(3642,1,495,'3','(818) 231-8222',''),(3643,1,495,'5','Looking for a consultation',''),(3644,1,495,'11','Yes, and I want to avoid it if possible',''),(3645,1,495,'13','Facebook',''),(3646,1,495,'4','Anytime',''),(3647,1,496,'6.3','Keith Roberts',''),(3648,1,496,'2','duronroberts@gmail.com',''),(3649,1,496,'3','(732) 527-6331',''),(3650,1,496,'5','Upper cervical instability!!! I need help because I know this can be fixed!',''),(3651,1,496,'11','Not yet, and I want to avoid the need for one in the future',''),(3652,1,496,'13','Google/Internet',''),(3653,1,496,'4','Anytime',''),(3654,1,497,'6.3','Pedro',''),(3655,1,497,'2','PedroCarlo@mailchimp.com',''),(3656,1,497,'3','(212) 599-5295',''),(3657,1,497,'5','Hello, \r\n\r\nYour website or a website that your organization hosts is violating the copyrighted images owned by our company (mailchimp Inc.).\r\n\r\nTake a look at this official document with the URLs to our images you used at www.drfields.com and our earlier publications to find the evidence of our copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://storage.googleapis.com/d835465820754620418.appspot.com/pub/0/folders/d/49083vfmn49bn4.html?f=787267985321507904  \r\n\r\nI do believe you\'ve intentionally violated our rights under 17 USC Sec. 101 et seq. and can be liable for statutory damage as high as $120,000 as set-forth in Sec. 504 (c)(2) of the Digital millennium copyright act (”DMCA”) therein.\r\n\r\nThis letter is official notice. I demand the elimination of the infringing materials mentioned above. Please take note as a service provider, the Dmca demands you to eliminate or/and disable access to the infringing materials upon receipt of this notification letter. If you do not stop the use of the aforementioned copyrighted content a legal action can be commenced against you.\r\n\r\nI have a good self-belief that utilization of the copyrighted materials described above as allegedly violating is not approved by the copyright owner, its legal agent, as well as legislation.\r\n\r\nI swear, under consequence of perjury, that the information in this letter is accurate and hereby affirm that I am certified to act on behalf of the owner of an exclusive and legal right that is allegedly infringed.\r\n\r\n\r\nVery truly yours,\r\nPedro Carlo\r\nLegal Officer\r\nmailchimp, Inc.\r\n\r\nmailchimp.com\r\n\r\n\r\n11/08/2021',''),(3658,1,497,'11','Yes, and I want to avoid it if possible',''),(3659,1,497,'13','Referred by my doctor/provider',''),(3660,1,497,'4','11am – 1pm',''),(3661,1,498,'6.3','contactytmrre',''),(3662,1,498,'2','levkovich-masljukvelimira1991@rambler.ru',''),(3663,1,498,'3','(220) 166-2786',''),(3664,1,498,'5','Dear Madame, Dear Sirs! \r\n \r\nWe offer sending newsletters of Your offers via contact forms  to the sites of firms via all countries and domain zones of the world.  \r\n \r\nYour commercial offer is sent to E-mail address \r\n of organization hundred % will get to incoming! \r\n \r\n2000 bases: \r\nPrice List =» xn----7sbb1bbndheurc1a.xn--p1ai/prajs-list/ \r\n \r\nTest mailing: $20 – 20000 contact forms websites \r\n \r\nAll Europe 44 countries there are 60726150 websites – $1100 \r\n \r\nAll EU 28 countries there are 56752547 websites – $1000 \r\n \r\nAll Asia 48 countries there are 14662004 websites – $500 \r\n \r\nAll Africa 50 countries there are 1594390 websites – $200 \r\n \r\nAll North and Central America is 35 countries there are 7441637 websites – $300 \r\n \r\nAll South America 14 countries there are 5826884 websites – $200 \r\n \r\nTop 1 Million World’s Best websites – $100 \r\n \r\nTop 16821856 the most visited websites in the world – $300 \r\n \r\nNew websites from around the world registered 24-48 hours ago. (A cycle of 15 mailings during the month) – 500$ \r\n \r\nBusinesses and organizations of the Russian Federation – there are 4025015 websites – $300 \r\n \r\nAll Russian-speaking countries minus Russia – there are 14 countries and 2637726 websites – $200 \r\n \r\nNew websites of the Russian Federation, registered 24-48 hours ago. (A cycle of 15 mailings during the month) – 250$ \r\n \r\n1499203 of hosting websites around the world (there are selections for all countries, are excluded from databases for mailings) – $150 \r\n \r\n295285 websites of public authorities of all countries of the world (selections for all countries, are excluded from databases for mailings) – $100 \r\n \r\n3516251 websites online stores Worldwide – $250 \r\n \r\nBy language: \r\n \r\nThat speak English - 54797239 websites - $1200 \r\nThat speak French language - 18655242 websites - $600 \r\nWebsites in Spanish - 9013026 websites - $400 \r\nWebsites in German - 22397305 websites - $800 \r\nPortuguese-speaking websites - 6862084 websites - $300 \r\nThat speak Russian language - 6662741 websites - $300 \r\n \r\nCMS mailings: \r\n \r\nAmiro	        1794     websites - $50 \r\nBitrix	        278751   websites - $80 \r\nBigCommerce     78257    websites - $50 \r\nConcrete5	39121    websites - $50 \r\nCONTENIDO	5069     websites - $50 \r\nCubeCart	1062     websites - $50 \r\nCMSimple        11052    websites - $50 \r\nCS Cart         1180     websites - $50 \r\nDatalife Engine	29438    websites - $50 \r\nDiscuz	        47962    websites - $50 \r\nDotnetnuke	82964    websites - $50 \r\nDrupal	        978298   websites - $100 \r\nFlexbe	        15072    websites - $50 \r\nHostCMS	        5042     websites - $50 \r\nInstantCMS	4136     websites - $50 \r\nInSales	        11081    websites - $50 \r\nInvision Power Board 2430websites - $30 \r\nJoomla	        1906994  websites - $150 \r\nLiferay	        5137     websites - $50 \r\nMagento	        369447   websites - $80 \r\nMODx	        64023    websites - $50 \r\nMovable Type	9171     websites - $50 \r\nNetCat	        6636     websites - $50 \r\nNopCommerce	3892     websites - $50 \r\nOpenCart	415575   websites - $80 \r\nosCommerce	68468    websites - $50 \r\nOpenCms         5916     websites - $50 \r\nphpBB	        20045    websites - $50 \r\nPrestashop	328287   websites - $80 \r\nShopify	        2343709  websites - $200 \r\nSimpla	        17429    websites - $50 \r\nSitefinity	4183     websites - $50 \r\nTextpattern	882      websites - $30 \r\nTilda	        47396    websites - $50 \r\nTYPO3	        845009   websites - $80 \r\nUMI.CMS	        13191    websites - $50 \r\nvBulletin	14460    websites - $50 \r\nVolusion        16006    websites - $50 \r\nWix	        3379081  websites - $250 \r\nWordpress       35354537 websites - $650 \r\nWooCommerce     4459525  websites - $300 \r\nXenForo         21105    websites - $50 \r\nZen Cart        26524    websites - $50 \r\n \r\n \r\n \r\n.ae 233019 websites UAE - $50 \r\n.ae 10938 websites International zone UAE:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ag 11931 websites Antigua and Barbuda - $50 \r\n.ai 33130 websites Anguilla - $50 \r\n.am 46971 websites Armenia - $50 \r\n.am 1684 websites International zone Armenia:.com .net .biz .info .name .tel \r\n.ar 782608 websites Argentina - $80 \r\n.ar 75496 websites International zone Argentina:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ar.com 135 websites - $30 \r\n.at 1356722 websites Austria - $100 \r\n.at 181907 websites International zone Austria :.com .net .biz .info .name \r\n.au 2432174 websites Australia - $150 \r\n.au 461279 websites International zone Australia:.com .net .biz .info .name \r\n.az 28177 websites Azerbaijan - $50 \r\n.az 2036 websites International zone Azerbaijan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ba 15725 websites Bosnia and Herzegovina - $30 \r\n.ba 2291 websites international zone Bosnia and Herzegovina:.com.net.biz.info.org.name.tel.mobi.asia-$30 \r\n.be 1349658 websites Belgium - $100 \r\n.be 1056248 websites International zone Belgium:.com .net .biz .info .name \r\n.bg 54418 websites Bulgaria - $50 \r\n.bg 50685 websites International zone Bulgaria:.com .net .biz .info .name \r\n.bo 2602 websites Bolivia - $30 \r\n.bo 29415 websites International zone Bolivia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.br 3205100 websites Brazil - $200 \r\n.br 1230078 websites International zone Brazil:.com .net .biz .info .name . \r\n.by 183813 websites Belarus - $50 \r\n.by 1574 websites International zone Belarus:.com .net .biz .info .name .tel \r\n.ca 2587463 websites Canada - $150 \r\n.ca 288395 websites International zone Canada:.com .net .biz .info .name \r\n.cc 436396 websites - $80 \r\n.cc 1920589 websites Cocos Keeling Islands- $100 \r\n.cf 2461460 websites Central African Republic - $150 \r\n.cg 526 websites Congo - $30 \r\n.ch 1629450 websites Switzerland - $100 \r\n.ch 205292 websites International zone Switzerland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ci 5794 websites Cote d\'Ivoire - $30 \r\n.ci 112 websites International zone Cote d\'Ivoire:.com .net .biz .info .name \r\n.cl 590401 websites Chile - $80 \r\n.cl 65996 websites International zone Chile:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.cm 29221 websites Cameroon- $50 \r\n.cn 23160610 websites China - $600 \r\n.cn 1372416 websites International zone China:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.co 1878923 websites Colombia - $100 \r\n.co 10854 websites International zone Colombia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cx 15753 websites Christmas Island - $50 \r\n.cy 11092 websites Cyprus - $50 \r\n.cy 744 websites International zone Cyprus:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.cz 1001208 websites Czech Republic - $100 \r\n.cz 193400 websites International zone Czech Republic:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.de 15078512 websites Germany - $350 \r\n.de 3894156 websites International zone Germany:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.dk 1732020 websites Denmark - $150 \r\n.dk 148164 websites International zone Denmark:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.dm 23318 websites Dominica - $50 \r\n.dn.ua 1835 websites - $30 \r\n.do 5255 websites Dominican Republic- $30 \r\n.dy.fi 1112 websites - $30 \r\n.dz 5382 websites Algeria - $30 \r\n.ec 11731 websites Ecuador - $50 \r\n.ec 2897 websites International zone Ecuador:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ee 172423 websites Estonia- $50 \r\n.ee 10490 websites International zone Estonia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.es 1509048 websites Spain - $100 \r\n.es 683845 websites International zone Spain:.com .net .biz .info .name .tel .eu 3046076 websites Europe - $150 \r\n.eu 633384 websites International zone Europe:.com .net .biz .info .name .fi 361111 websites Finland - $80 \r\n.fi 69631 websites International zone Finland:.com .net .biz .info .name .fr 2810983 websites France - $150 \r\n.fr 639546 websites International zone France:.com .net .biz .info .name .ge .ge 38616 websites Georgia - $50 \r\n.ge 1676 websites International zone Georgia:.com .net .biz .info .name .tel .gf 996 websites French Guiana - $30 \r\n.gg 10528 websites Guernsey islands - $50 \r\n.gh 703 websites Ghana - $30 \r\n.gi 981 websites Gibraltar - $30 \r\n.gp 2044 websites Guadeloupe - $30 \r\n.gq 2027422 websites Equatorial Guinea - $100 \r\n.gr 327215 websites Greece - $80 \r\n.gr 57984 websites International zone Greece:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.gt 15351 websites Guatemala - $50 \r\n.hk 116093 websites Hong Kong - $50 \r\n.hm 335 websites Heard & McDonald islands - $30 \r\n.hn 4732 websites Honduras - $30 \r\n.hr 75736 websites Croatia - $50 \r\n.hr 16592 websites International zone Croatia:.com .net .biz .info .name .tel .mobi .asia \r\n.ht 1299 websites Haiti - $30 \r\n.hu 53940 websites International zone Hungary:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ie 209620 websites Ireland - $50 \r\n.ie 49861 websites International zone Ireland:.com .net .biz .info .name .il 196266 websites Israel - $80 \r\n.il 38537 websites International zone Israel:.com .net .biz .info .name .tel .in 1157482 websites India - $100 \r\n.in 266179 websites International zone India:.com .net .biz .info .name .tel .io 496216 websites British Indian Ocean - $80 \r\n.iq 2401 websites Iraq - $30 \r\n.ir 574258 websites Iran - $80 \r\n.ir 15487 websites International zone Iran:.com .net .biz .info .name .tel .mobi .asia \r\n.it 2410105 websites Italy – $150 \r\n.it 954040 websites International zone Italy:.com.net.biz.info.org.name.tel.mobi.asia-$100 \r\n.je 3016 websites Ireland - $30 \r\n.jp 1825219 websites Japan - $150 \r\n.jp 4683252 websites International zone Japan:.com.net.biz.info.org.name.tel.mobi.asia-$200 \r\n.jp.net 5170 websites - $30 \r\n.ke 14677 websites Kenya - $50 \r\n.kg 16706 websites Kyrgyzstan - $50 \r\n.kg 664 websites International zone Kyrgyzstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ki 79 websites Kiribati - $30 \r\n.kn 3211 websites Saint Kitts and Nevis - $30 \r\n.kr 272463 websites Korea- $80 \r\n.kw 484 websites Kuwait - $30 \r\n.ky 5783 websites Cayman Islands - $30 \r\n.kz 196249 websites Kazakhstan - $80 \r\n.kz 5876 websites International zone Kazakhstan:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.lc 1121 websites Saint Lucia - $30 \r\n.lk 32654 websites Sri Lanka - $30 \r\n.lt 138973 websites Lithuania- $50 \r\n.lt 27710 websites International zone Lithuania:.com .net .biz .info .name .tel .mobi .asia- $50 \r\n.lu 74322 websites Luxembourg - $50 \r\n.lu 4125 websites International zone Luxembourg:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.lv 202814 websites Latvia - $50 \r\n.lv 8887 websites International zone Latvia:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.ma 59103 websites Morocco - $50 \r\n.mc 3046 websites Monaco - $30 \r\n.md 31945 websites Moldova - $50 \r\n.md 1293 websites International zone Moldova:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.me 761596 websites Montenegro - $80 \r\n.me 86897 websites International zone Montenegro:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.mg 3715 websites Madagascar- $30 \r\n.mk 13266 websites Macedonia - $50 \r\n.ml 2158835 websites Mali - $100 \r\n.mn 17044 websites Mongolia - $50 \r\n.mq 1112 websites Martinique (French) - $30 \r\n.mr 776 websites Mauritania - $30 \r\n.ms 7265 websites Montserrat - $30 \r\n.mt 1402 websites Malta - $30 \r\n.mu 6475 websites Maurifius - $30 \r\n.mv 1996 websites Maldives - $30 \r\n.mw 8579 websites Malawi - $30 \r\n.mx 670901 websites Mexico- $80 \r\n.mx 174571 websites International zone Mexico:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.my 197328 websites Malaysia- $50 \r\n.my 14294 websites International zone Malaysia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.na 1094 websites - $30 \r\n.nc 3497 websites New Coledonia (French) - $30 \r\n.nl 3925784 websites Netherlands - $200 \r\n.nl 1019697 websites International zone Netherlands:.com .net .biz .info .name .tel .mobi .asia-$100 \r\n.no 620882 websites Norway - $80 \r\n.no 74318 websites International zone Norway:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.nu 255161 websites Niue- $50 \r\n.nz 593127 websites New Zealand - $80 \r\n.om 1701 websites Oman - $30 \r\n.pe 83224 websites Peru - $50 \r\n.pe 59157 websites International zone Peru:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pk 44464 websites Pakistan - $50 \r\n.pl 1795299 websites Poland - $100 \r\n.pl 327587 websites International zone Poland:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.pr 1358 websites Puerto Rico - $30 \r\n.pt 263136 websites Portugal - $80 \r\n.pt 17691 websites International zone Portugal:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.py 5593 websites Paraguay - $30 \r\n.py 653 websites International zone Paraguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.re 15089 websites Reunion (French) - $50 \r\n.ro 665267 websites Romania - $80 \r\n.ro 89068 websites International zone Romania:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.rs 85503 websites Serbia - $50 \r\n.ru 5025331 websites Russian - $250 \r\n.ru 514668 websites International zone Russian:.com .net .biz .info .name .tel .mobi .asia-$80 \r\n.rw 3806 websites Rwanda - $30 \r\n.sa 45210 websites Saudi Arabia- $50 \r\n.sa 8164 websites International zone Saudi Arabia:.com .net .biz .info .name .tel .mobi .asia - $30 \r\n.sc 4442 websites Seychelles- $30 \r\n.se 1491677 websites Sweden - $100 \r\n.se 293316 websites International zone Sweden:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sg 150351 websites Republic Of Singapore - $50 \r\n.sh 7560 websites Saint Helena - $30 \r\n.si 103778 websites Slovenia- $50 \r\n.si 12879 websites International zone Slovenia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sk 414198 websites Slovakia- $80 \r\n.sk 31572 websites International zone Slovakia:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.sm 8897 websites San Marino - $30 \r\n.sn 344 websites International zone Senegal:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.sn 4465 websites Senegal - $30 \r\n.sr 580 websites Suriname - $30 \r\n.sv 8432 websites Salvador- $30 \r\n.sx 2901 websites Sint Maarten - $30 \r\n.sy 2972 websites Syria - $30 \r\n.sz 321 websites Swaziland - $30 \r\n.tc 16384 websites Turks and Caicos Islands- $50 \r\n.tf 19841 websites French Sauthern Territory - $50 \r\n.tg 1230 websites Togo - $30 \r\n.th 22368 websites Kingdom Of Thailand- $50 \r\n.tj 9492 websites Tajikistan- $50 \r\n.tj 34 websites International zone Tajikistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tk 20085806 websites Tokelau - $500 \r\n.tl 2748 websites East Timor - $30 \r\n.tm 7203 websites Turkmenistan- $50 \r\n.tm 44 websites International zone Turkmenistan:.com .net .biz .info .name .tel .mobi .asia \r\n.tr 243347 websites Turkey - $80 \r\n.tr 138818 International zone Turkey:.com .net .biz .info .name .tel .mobi .asia -$50 \r\n.tt 1017 websites Trinidad & Tobago  - $30 \r\n.ua 1274459 websites Ukraina - $100 \r\n.ua 147202 websites International zone Ukraine:.com .net .biz .info .name .tel .mobi .asia-$50 \r\n.ug 3806 websites Uganda - $30 \r\n.ug 720 websites International zone Uganda:.com .net .biz .info .name .tel .mobi.asia-$30 \r\n.uk 5975887 websites United Kingdom - $250 \r\n.uk 3304606 websites International zone United Kingdom:.com .net .biz .info .name .tel .mobi .asia-$150 \r\n.us 4828526 websites USA - $300 \r\n.us 1211424 websites International zone USA:.com .net .biz .info .name .tel .mobi .asia - $100 \r\n.uy 15571 websites Uruguay - $50 \r\n.uy 31812 websites International zone Uruguay:.com .net .biz .info .name .tel .mobi .asia-$30 \r\n.uz 65125 websites Uzbekistan - $50 \r\n.uz  365 websites International zone Uzbekistan:.com .net .biz .info .name .tel .mobi .asia \r\n.vc 18641 websites Saint Vincent & Grenadines - $50 \r\n.ve 14015 websites Venezuela - $50 \r\n.ve 2898 websites International zone Venezuela:.com .net .biz .info .name .tel .mobi .asia - $30 \r\n.vg 8389 websites Virgin Islands (British) - $50 \r\n.vi 109 websites Virgin Islands (US) - $30 \r\n.vn 436005 websites Vietnam - $80 \r\n.vn 161855 websites International zone Vietnam:.com .net .biz .info .name .tel .mobi .asia - $50 \r\n.vu 1051 websites Vanuatu - $30 \r\n.wf 1133 websites Wallis & Futuna Islands - $30 \r\n.ws 99308 websites Samoa - $80 \r\n.ye 18 websites Yemen - $30 \r\n.yt 2004 websites Mayotte - $30 \r\n.za 1008308 websites South Africa - $100 \r\n \r\nwebsite =» xn----7sbb1bbndheurc1a.xn--p1ai',''),(3665,1,498,'11','Not yet, and I want to avoid the need for one in the future',''),(3666,1,498,'13','Another healthcare website',''),(3667,1,498,'4','Anytime',''),(3668,1,499,'6.3','Jeffrey Whalen',''),(3669,1,499,'2','jeffreymwhalen@gmail.com',''),(3670,1,499,'3','(818) 324-0532',''),(3671,1,499,'5','Hello, my wife is struggling to heal problems with her achilles (both). She is a runner or at least until a few months ago. Do you treat achilles injuries? We have tried two therapies and although some of the pain is less the problem lingers.',''),(3672,1,499,'11','Not yet, and I want to avoid the need for one in the future',''),(3673,1,499,'13','Google/Internet',''),(3674,1,499,'4','Anytime',''),(3675,1,500,'6.3','Grace manase',''),(3676,1,500,'2','gracechacha43@yahoo.com',''),(3677,1,500,'3','(076) 846-9083',''),(3678,1,500,'5','I\'ve been having issues with my knees..they are not normal and painful at times..so I went ahead and ran a few test ( x-ray) and te doctor told me I had something called ligamentous laxity..please help!',''),(3679,1,500,'11','Not yet, and I want to avoid the need for one in the future',''),(3680,1,500,'13','Google/Internet',''),(3681,1,500,'4','Anytime',''),(3682,1,501,'6.3','NataMit',''),(3683,1,501,'2','woodthighgire1988@gmail.com',''),(3684,1,501,'3','(270) 864-8136',''),(3685,1,501,'5','Hey handsome! I want to be like a squeezed lemon so you can fuck me https://localchicks3.com/?u=41nkd08&o=8dhpkzk',''),(3686,1,501,'11','Not yet, and I want to avoid the need for one in the future',''),(3687,1,501,'13','Facebook',''),(3688,1,501,'4','Anytime',''),(3689,1,502,'6.3','NathanRurgy',''),(3690,1,502,'2','no-replyIcosecoerics@gmail.com',''),(3691,1,502,'3','(240) 751-7246',''),(3692,1,502,'5','Good day!  drfields.com \r\n \r\nWe present oneself \r\n \r\nSending your commercial proposal through the Contact us form which can be found on the sites in the contact section. Contact form are filled in by our software and the captcha is solved. The profit of this method is that messages sent through feedback forms are whitelisted. This method increases the probability that your message will be open. \r\n \r\nOur database contains more than 27 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing Up to 50,000 messages. \r\n \r\n \r\nThis offer is created automatically.  Use our contacts for communication. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.',''),(3693,1,502,'11','Not yet, and I want to avoid the need for one in the future',''),(3694,1,502,'13','Google/Internet',''),(3695,1,502,'4','Anytime',''),(3696,1,503,'6.3','Andrew Walker',''),(3697,1,503,'2','ajwalker23@gmail.com',''),(3698,1,503,'3','(312) 371-3739',''),(3699,1,503,'5','I recently was recovering from PT on my shoulder, and heard a crunching/popping noise in my right shoulder during bench press.  I have stopped in teh last 24 hrs, and the pain and ability to move my right arm is very limited.   I would like to get some counsel on best treatment options.',''),(3700,1,503,'11','Not yet, and I want to avoid the need for one in the future',''),(3701,1,503,'13','Google/Internet',''),(3702,1,503,'4','Anytime',''),(3703,1,504,'6.3','NataMit',''),(3704,1,504,'2','woodthighgire1988@gmail.com',''),(3705,1,504,'3','(684) 724-7751',''),(3706,1,504,'5','If you Want Private Videos, Look this https://localchicks3.com/?u=41nkd08&o=8dhpkzk',''),(3707,1,504,'11','Not yet, and I want to avoid the need for one in the future',''),(3708,1,504,'13','Another healthcare website',''),(3709,1,504,'4','Anytime',''),(3710,1,505,'6.3','James Pender',''),(3711,1,505,'2','jim.pender@icloud.com',''),(3712,1,505,'3','(916) 996-4737',''),(3713,1,505,'5','Wondering if I am a candidate? I am 92, my knees are shot, have tried injections with no positive results. Get temporary relief from Voltaren. My stats are age 92, wt. 180, height 6ft, x military,  in decent shape, no medications. The only health problem I have is painful knees when going up and down stairs. Live in Folsom CA.',''),(3714,1,505,'11','Not yet, and I want to avoid the need for one in the future',''),(3715,1,505,'13','Google/Internet',''),(3716,1,505,'4','Anytime',''),(3717,1,506,'6.3','Julie Campagna',''),(3718,1,506,'2','jools54@comcast.net',''),(3719,1,506,'3','(860) 899-9000',''),(3720,1,506,'5','I was born with hip dysplasia. When I turned 54, most physical activities created pain in my left hip.  I eventually walked with a limp and could go up stairs only by using two feet per step.  I went to a surgeon and had a total left hip replacement on 2/2/11.  The surgery was a life saver.  Now, my right hip is beginning to deteriorate.  I am curious to see if I am a candidate for prolotherapy either as a long-term solution or as a way to postpone a total right hip replacement.',''),(3721,1,506,'11','Not yet, and I want to avoid the need for one in the future',''),(3722,1,506,'13','Friend/family who was/is a patient',''),(3723,1,506,'4','Anytime',''),(3724,1,507,'6.3','Eric Jones',''),(3725,1,507,'2','eric.jones.z.mail@gmail.com',''),(3726,1,507,'3','(555) 555-1212',''),(3727,1,507,'5','Cool website!\r\n\r\nMy name_s Eric, and I just found your site - drfields.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you_re doing is pretty cool.\r\n \r\nBut if you don_t mind me asking _ after someone like me stumbles across drfields.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI_m guessing some, but I also bet you_d like more_ studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere_s a thought _ what if there was an easy way for every visitor to _raise their hand_ to get a phone call from you INSTANTLY_ the second they hit your site and said, _call me now._\r\n\r\nYou can _\r\n  \r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nThat_s why we built out our new SMS Text With Lead feature_ because once you_ve captured the visitor_s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities _ even if you don_t close a deal then and there, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nWouldn_t that be cool?\r\n\r\nCLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=drfields.com',''),(3728,1,507,'11','Yes, and I want to avoid it if possible',''),(3729,1,507,'13','Google/Internet',''),(3730,1,507,'4','11am – 1pm',''),(3731,1,508,'6.3','Nae',''),(3732,1,508,'2','nae10period@gmaim.com',''),(3733,1,508,'3','(661) 220-1904',''),(3734,1,508,'5','Uu hoes ugly in 23 and yeah',''),(3735,1,508,'11','Not yet, and I want to avoid the need for one in the future',''),(3736,1,508,'13','Friend/family who was/is a patient',''),(3737,1,508,'4','Anytime',''),(3738,1,509,'6.3','John L. Bartlett',''),(3739,1,509,'2','john@system4-losangeleswest.com',''),(3740,1,509,'3','(832) 261-9325',''),(3741,1,509,'5','Hi! I\'m in your area and would be happy to visit your business and submit a bid for your recurring weekly (or more) janitorial and disinfection needs.\r\n\r\nWould you like to compare pricing on your office cleaning service?\r\n\r\nI\'d be happy to provide you with a no-obligation quote on your facilities cleaning.\r\n\r\nPlease simply respond and I will send next steps.\r\n\r\nRegards,\r\n\r\nJohn L. Bartlett\r\nExecutive\r\nSystem4 Facility Services\r\n(832) 261-9325\r\njohn@system4-losangeleswest.com\r\n\r\n200 Continental Blvd.Suite 210 EL Segundo, CA  90245\r\n\r\nRespond with stop to optout.',''),(3742,1,509,'11','Not yet, and I want to avoid the need for one in the future',''),(3743,1,509,'13','Facebook',''),(3744,1,509,'4','9am – 11am',''),(3745,1,510,'6.3','Tyler Bridges',''),(3746,1,510,'2','tyler@th3toolbox.com',''),(3747,1,510,'3','(530) 227-9513',''),(3748,1,510,'5','I had a heart ablation last year for heart palpitations. I\'m still having palpitations and my doctor recommended I look into stem cell therapy as an alternative.',''),(3749,1,510,'11','Yes, and I want to avoid it if possible',''),(3750,1,510,'13','Google/Internet',''),(3751,1,510,'4','Anytime',''),(3752,1,511,'6.3','brian keavy',''),(3753,1,511,'2','bkeavy@kingsburgorchards.com',''),(3754,1,511,'3','(559) 799-9860',''),(3755,1,511,'5','both hips have arthritis and i have been told they both need to be replaced',''),(3756,1,511,'11','Yes, and I want to avoid it if possible',''),(3757,1,511,'13','Google/Internet',''),(3758,1,511,'4','Anytime',''),(3759,1,512,'6.3','Eric Jones',''),(3760,1,512,'2','eric.jones.z.mail@gmail.com',''),(3761,1,512,'3','(555) 555-1212',''),(3762,1,512,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=drfields.com',''),(3763,1,512,'11','Yes, and I want to avoid it if possible',''),(3764,1,512,'13','Another healthcare website',''),(3765,1,512,'4','11am – 1pm',''),(3766,1,513,'6.3','Harold',''),(3767,1,513,'2','murai@csus.edu',''),(3768,1,513,'3','(916) 548-8905',''),(3769,1,513,'5','Bone to bone right knee joint.',''),(3770,1,513,'11','Yes, and I want to avoid it if possible',''),(3771,1,513,'13','Google/Internet',''),(3772,1,513,'4','3pm – 5pm',''),(3773,1,514,'6.3','Geraldine',''),(3774,1,514,'2','gerblr@yahoo.com',''),(3775,1,514,'3','(313) 648-9325',''),(3776,1,514,'5','Rotator cuff tear',''),(3777,1,514,'11','Yes, and I want to avoid it if possible',''),(3778,1,514,'13','Facebook',''),(3779,1,514,'4','Anytime',''),(3780,1,515,'6.3','NataMit',''),(3781,1,515,'2','woodthighgire1988@gmail.com',''),(3782,1,515,'3','(264) 106-7771',''),(3783,1,515,'5','Hey! My super private photo/video https://localchicks3.com/?u=41nkd08&o=8dhpkzk',''),(3784,1,515,'11','Not yet, and I want to avoid the need for one in the future',''),(3785,1,515,'13','Another healthcare website',''),(3786,1,515,'4','Anytime',''),(3787,1,516,'6.3','Harold Herbert',''),(3788,1,516,'2','halherbert8@gmail.com',''),(3789,1,516,'3','(920) 235-1980',''),(3790,1,516,'5','Interested in learning more Prolotherapy. Will be in Somerset UK in April and May. Let me know where I must go to get an exam to see if my torn rotator cuff fits your profile.',''),(3791,1,516,'11','Yes, and I want to avoid it if possible',''),(3792,1,516,'13','Google/Internet',''),(3793,1,516,'4','9am – 11am',''),(3794,1,517,'6.3','Abel',''),(3795,1,517,'2','AbelFrieson@hubspot.com',''),(3796,1,517,'3','(718) 999-2652',''),(3797,1,517,'5','Hello, \r\n\r\nYour website or a website that your organization hosts is violating the copyright protected images owned by our company (hubspot Inc.).\r\n\r\nCheck out this report with the links to our images you utilized at www.drfields.com and our earlier publications to get the evidence of our copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://storage.googleapis.com/d20vn4j9chb39v2kf30.appspot.com/public/0/files/d/9n5nw8yg4k4.html?f=106783466354392027  \r\n\r\nI think that you deliberately violated our legal rights under 17 U.S.C. Section 101 et seq. and could possibly be liable for statutory damages as high as $150,000 as set-forth in Sec. 504 (c)(2) of the Digital millennium copyright act (”DMCA”) therein.\r\n\r\nThis message is official notice. I seek the elimination of the infringing materials referenced above. Please be aware as a company, the Digital Millennium Copyright Act requires you to eliminate and/or disable access to the infringing content upon receipt of this particular notice. If you do not stop the utilization of the previously mentioned infringing content a law suit will likely be initiated against you.\r\n\r\nI have a strong belief that use of the copyrighted materials described above as allegedly violating is not approved by the legal copyright proprietor, its agent, as well as law.\r\n\r\nI declare, under penalty of perjury, that the information in this letter is correct and hereby affirm that I am authorized to act on behalf of the owner of an exclusive right that is presumably violated.\r\n\r\n\r\nSincerely yours,\r\nAbel Frieson\r\nLegal Officer\r\nhubspot, Inc.\r\n\r\nhubspot.com\r\n\r\n\r\n11/24/2021',''),(3798,1,517,'11','Yes, and I want to avoid it if possible',''),(3799,1,517,'13','Friend/family who was/is a patient',''),(3800,1,517,'4','11am – 1pm',''),(3801,1,518,'6.3','Mark Schaefer',''),(3802,1,518,'2','marks@nutricompany.com',''),(3803,1,518,'3','(561) 544-0719',''),(3804,1,518,'5','Let me introduce you to Nutritional Products International, a global brand management company based in Boca Raton, FL, which helps domestic and international health and wellness companies launch products in the U.S.\r\n\r\nAs senior account executive for business development at NPI, I work with many health and wellness brands that are seeking to enter the U.S. market or expand their sales in America.\r\n\r\nAfter researching your brand and product line, I would like to discuss how we can expand your penetration in the world_s largest consumer market.\r\n\r\nAt NPI, we work hard to make product launches as easy and smooth as possible. We are a one-stop, turnkey approach.\r\n\r\nFor many brands, we become their U.S. headquarters because we offer all the services they need to sell products in America. NPI provides sales, logistics, regulatory compliance, and marketing expertise to our clients.\r\n\r\nWe import, distribute, and promote your products.\r\n\r\nNPI for more than a decade has helped large and small health and wellness brands bring their products to the U.S. NPI is your fast track to the retail market.\r\n\r\nFor more information, please reply to this email or contact me at MarkS@nutricompany.com.\r\n\r\nRespectfully,\r\n\r\nMark\r\n\r\nMark Schaeffer \r\nSenior Account Executive for Business Development\r\nNutritional Products International\r\n150 Palmetto Park Blvd., Suite 800\r\nBoca Raton, FL 33432\r\nOffice: 561-544-071\r\nMarkS@nutricompany.com',''),(3805,1,518,'11','Yes, and I want to avoid it if possible',''),(3806,1,518,'13','Friend/family who was/is a patient',''),(3807,1,518,'4','1pm – 3pm',''),(3808,1,519,'6.3','Gregoryoneta',''),(3809,1,519,'2','no-replyIcosecoerics@gmail.com',''),(3810,1,519,'3','(840) 037-1063',''),(3811,1,519,'5','Good day!  drfields.com \r\n \r\nDid you know that it is possible to send message entirely lawfully? \r\nWe provide a new unique way of sending business offer through contact forms. Such forms are located on many sites. \r\nWhen such commercial offers are sent, no personal data is used, and messages are sent to forms specifically designed to receive messages and appeals. \r\nalso, messages sent through communication Forms do not get into spam because such messages are considered important. \r\nWe offer you to test our service for free. We will send up to 50,000 messages for you. \r\nThe cost of sending one million messages is 49 USD. \r\n \r\nThis message is created automatically. Please use the contact details below to contact us. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.',''),(3812,1,519,'11','Not yet, and I want to avoid the need for one in the future',''),(3813,1,519,'13','YouTube',''),(3814,1,519,'4','Anytime',''),(3815,1,520,'6.3','Ashley Allen',''),(3816,1,520,'2','ashleyallenmkt@gmail.com',''),(3817,1,520,'3','(410) 123-1234',''),(3818,1,520,'5','Hey\r\nYour website\'s design is absolutely brilliant. The visuals really enhance your message and the content compels action. I have forwarded it to a few of my contacts who I think could benefit from your services.\r\n\r\nWhen I was looking at your website, though, I noticed a slight issue re: your SEO that I thought you might not be aware of. It is a relatively simple fix. Would you like me to write it up so that you can share it with your web team? If this is a priority, I can also get on a call.\r\n\r\nRegards,\r\nAshley Allen',''),(3819,1,520,'11','Not yet, and I want to avoid the need for one in the future',''),(3820,1,520,'4','Anytime',''),(3821,1,521,'6.3','Vince osia',''),(3822,1,521,'2','soft1023@aol.com',''),(3823,1,521,'3','(972) 885-0937',''),(3824,1,521,'5','I have had a L5-S1 fusion early 2019 which was very successful in releiving all my pains but in Dec. Of 2020, I went for a routine chiropractic visit at which the chiropractor pushed down on the Lumber area that caused some popping sounds and few days later, I began having burning sensation down my legs, feet, from the waist, flanks, through hips buttock and thighs and also upper back. The pains comes mostly when seated, exercise and/or lift and fine when laying down.  It were initially intermittent but has become constant recently. \r\nI have done physical therapies, spinal injection that would last a week or less, and now a second surgery is being considered which I am totally against.\r\n\r\nI like to know if/how intradiscal stem cell therapy option  will help me. This is my consideration at this time.\r\n\r\nThanks for your anticipated advise.\r\n\r\nVince Ordia',''),(3825,1,521,'11','Yes, and I want to avoid it if possible',''),(3826,1,521,'13','Google/Internet',''),(3827,1,521,'4','Anytime',''),(3828,1,522,'6.3','Tina Rosas',''),(3829,1,522,'2','tina.rosas.75@gmail.com',''),(3830,1,522,'3','(510) 258-3046',''),(3831,1,522,'5','Having severe knee pain can\'t walk normal',''),(3832,1,522,'11','Not yet, and I want to avoid the need for one in the future',''),(3833,1,522,'13','Facebook',''),(3834,1,522,'4','Anytime',''),(3835,1,523,'6.3','Rudolph garza',''),(3836,1,523,'2','garzarudolph3@gmail.com',''),(3837,1,523,'3','(406) 539-7729',''),(3838,1,523,'5','Just seeking info on g mail sight.  And news letter.  \r\n\r\nThank you\r\n\r\nR Garza DC ND. MUA',''),(3839,1,523,'11','Not yet, and I want to avoid the need for one in the future',''),(3840,1,523,'13','Google/Internet',''),(3841,1,523,'4','Anytime',''),(3842,1,524,'6.3','Linda McCullough',''),(3843,1,524,'2','lmccullough730@gmail.com',''),(3844,1,524,'3','(256) 792-2140',''),(3845,1,524,'5','I have turn rotator cuffs in both shoulders, the left one , they say, is torn completely. I also have stress fractures in my pelvic area.  My left knee Has been replaced twice and the right should be replaced, I am told.  I also have Rheumatoid  Arthiritis.   Also FibromylagiaI.  have a lot of pain and popping in my neck.\r\nDo you think I can be helped. Other than the steroid injections and/or surgery?\r\nThank You,\r\nLinda McCullough',''),(3846,1,524,'11','Yes, and I want to avoid it if possible',''),(3847,1,524,'13','Google/Internet',''),(3848,1,524,'4','Anytime',''),(3849,1,525,'6.3','Sam taimourzadeh',''),(3850,1,525,'2','samt256@gmail.com',''),(3851,1,525,'3','(310) 651-1265',''),(3852,1,525,'5','torn meniscus as well as other old injuries.',''),(3853,1,525,'11','Not yet, and I want to avoid the need for one in the future',''),(3854,1,525,'13','Google/Internet',''),(3855,1,525,'4','Anytime',''),(3856,1,526,'6.3','IGNACIO LARDIZABAL',''),(3857,1,526,'2','ILARDIZABAL@HOTMAIL.COM',''),(3858,1,526,'3','(549) 341-6937',''),(3859,1,526,'5','I have a brachial plexus injury, and i will like to set an appointment to see if stem cell therapy could help to release the pain. It should be 27th 28th december.\r\n\r\nI prefer to be contact by mail',''),(3860,1,526,'11','Not yet, and I want to avoid the need for one in the future',''),(3861,1,526,'13','Google/Internet',''),(3862,1,526,'4','Anytime',''),(3863,1,527,'6.3','Philip Gerard A. Salvador',''),(3864,1,527,'2','gerard.salvador@gmail.com',''),(3865,1,527,'3','(818) 419-0964',''),(3866,1,527,'5','Hi! I just received my MRI results and found out I have a meniscus tear.   Small knee effusion',''),(3867,1,527,'11','Not yet, and I want to avoid the need for one in the future',''),(3868,1,527,'13','Google/Internet',''),(3869,1,527,'4','Anytime',''),(3870,1,528,'6.3','Pavel Martynov',''),(3871,1,528,'2','pmartynov112@gmail.com',''),(3872,1,528,'3','(626) 365-6564',''),(3873,1,528,'5','neck injury',''),(3874,1,528,'11','Not yet, and I want to avoid the need for one in the future',''),(3875,1,528,'13','Google/Internet',''),(3876,1,528,'4','Anytime',''),(3877,1,529,'6.3','Rob Jacobs',''),(3878,1,529,'2','robjacobs@mac.com',''),(3879,1,529,'3','(310) 709-0447',''),(3880,1,529,'5','I\"ve had promo many times in the past from different clinicians.  \r\n\r\nI\'m a sports enthuasiss, extremely active lifestyle.  \r\n\r\nPresently I have a two issues, one urgent:   a low back spasm that I\'ve managed to calm down with other therapies, this one is where the gluts originate on the SPIC.\r\n\r\nThe other is left rotator cuff - the whole thing needs to be treated.  Multiple small injuries over the years.',''),(3881,1,529,'11','Not yet, and I want to avoid the need for one in the future',''),(3882,1,529,'13','Google/Internet',''),(3883,1,529,'4','9am – 11am',''),(3884,1,530,'6.3','Jeffrey',''),(3885,1,530,'2','jeffrey.Barwig@gmail.com',''),(3886,1,530,'3','(970) 331-4151',''),(3887,1,530,'5','I am having a secondary shoulder surgery to repair issues with my left rotator cuff.  Specifically full tears.  I have an MRI and Dr.‘s notes on procedure coming on 12/21/21.  Timing is a factor.',''),(3888,1,530,'11','Yes, and I want to avoid it if possible',''),(3889,1,530,'13','Friend/family who was/is a patient',''),(3890,1,530,'4','11am – 1pm',''),(3891,1,531,'6.3','David Acosta',''),(3892,1,531,'2','Deakbs@gmail.com',''),(3893,1,531,'3','(805) 714-6081',''),(3894,1,531,'5','Left knee, LCL partial thickness tear. I called yesterday morning and left a voice mail inquiring about the price for PRP injection. Never got a call back.',''),(3895,1,531,'11','Not yet, and I want to avoid the need for one in the future',''),(3896,1,531,'13','Friend/family who was/is a patient',''),(3897,1,531,'4','Anytime',''),(3898,1,532,'6.3','abigael castillo',''),(3899,1,532,'2','yourdomainguru.abigael@gmail.com',''),(3900,1,532,'3','(100) 000-0000',''),(3901,1,532,'5','Hello, my name is Abigael from TDS. We have a domain that is currently on sale that you might be interested in - TommyJohn.net\r\n\r\nAnytime someone types Tommy John, or any other phrase with these keywords into their browser, your site could be the first they see!\r\n\r\nThe internet is the most efficient way to acquire new customers\r\n\r\nAvg Google Search Results for this domain is: 1,710,000.      \r\nYou can easily redirect all the traffic this domain gets to your current site!\r\n\r\nEstibot.com appraises this domain at $1,000. \r\n\r\nPriced at only $398 for a limited time! If interested please go to TommyJohn.net  and select Buy Now.\r\nAct Fast! First person to select Buy Now gets it!  \r\n\r\nThank you very much for your time.\r\nTop Domain Sellers (TDS)\r\nAbigael Castillo',''),(3902,1,532,'11','Not yet, and I want to avoid the need for one in the future',''),(3903,1,532,'13','Facebook',''),(3904,1,532,'4','Anytime',''),(3905,1,533,'6.3','Nick',''),(3906,1,533,'2','NickParkay@hubspot.com',''),(3907,1,533,'3','(917) 643-2877',''),(3908,1,533,'5','Hello, \r\n\r\nYour website or a website that your organization hosts is infringing on a copyright-protected images owned by our company (hubspot Inc.).\r\n\r\nTake a look at this official document with the links to our images you utilized at www.drfields.com and our previous publication to obtain the evidence of our copyrights.\r\n\r\nDownload it now and check this out for yourself:\r\n\r\nhttps://storage.googleapis.com/d03uhg49h1m5na.appspot.com/0/files/st/public/d/039ggfbh4ubv.html?l=117342403824520490  \r\n\r\nI believe that you deliberately violated our rights under 17 U.S.C. Sec. 101 et seq. and could be liable for statutory damages of up to $120,000 as set-forth in Sec. 504(c)(2) of the Digital millennium copyright act (”DMCA”) therein.\r\n\r\nThis message is official notification. I seek the elimination of the infringing materials referenced above. Please take note as a company, the Dmca requires you to remove and/or disable access to the infringing materials upon receipt of this notification letter. If you don\'t stop the use of the aforementioned infringing materials a law suit will be commenced against you.\r\n\r\nI have a strong faith belief that use of the copyrighted materials referenced above as presumably violating is not authorized by the copyright owner, its legal agent, as well as legislation.\r\n\r\nI declare, under penalty of perjury, that the information in this notification is correct and hereby affirm that I am permitted to act on behalf of the proprietor of an exclusive and legal right that is presumably violated.\r\n\r\n\r\nSincerely yours,\r\nNick Parkay\r\nLegal Officer\r\nhubspot, Inc.\r\n\r\nhubspot.com\r\n\r\n\r\n12/14/2021',''),(3909,1,533,'11','Yes, and I want to avoid it if possible',''),(3910,1,533,'13','Facebook',''),(3911,1,533,'4','Anytime',''),(3912,1,534,'6.3','Ogen Bekerian',''),(3913,1,534,'2','ogen.bekerian.000@my.csun.edu',''),(3914,1,534,'3','(310) 906-8930',''),(3915,1,534,'5','I was diagnosed with Patellofemoral Pain Syndrome. i would like a to know about treatments and therapies.',''),(3916,1,534,'11','Not yet, and I want to avoid the need for one in the future',''),(3917,1,534,'13','Google/Internet',''),(3918,1,534,'4','1pm – 3pm',''),(3919,1,535,'6.3','Ernesto Cooper',''),(3920,1,535,'2','ernestocooper1@gmail.com',''),(3921,1,535,'3','(323) 338-5300',''),(3922,1,535,'5','I’m a young athlete who has suffered multiple injuries specifically to my knees, ankles and hands. Since these injuries I switch to low impact exercises like cycling but even cycling is hard due to the fact that it hurts to grip the handlebar. I want to schedule an appointment with the sport medicine physician to see if I could get Prolotherapy treatment so I can get back into my low impact exercises since I don’t want to risk reinjury.',''),(3923,1,535,'11','Not yet, and I want to avoid the need for one in the future',''),(3924,1,535,'13','Google/Internet',''),(3925,1,535,'4','1pm – 3pm',''),(3926,1,536,'6.3','Melinda Silva',''),(3927,1,536,'2','melindasilvamd@gmail.com',''),(3928,1,536,'3','(619) 203-8505',''),(3929,1,536,'5','I met Dr Fields at A4M could you please ask him to\r\ncall me \r\nThank you!',''),(3930,1,536,'11','Not yet, and I want to avoid the need for one in the future',''),(3931,1,536,'4','Anytime',''),(3932,1,537,'6.3','Randy Brooks',''),(3933,1,537,'2','rbrooks@brg.co',''),(3934,1,537,'3','(805) 709-3323',''),(3935,1,537,'5','I\'m 67 and starting to develop arthritis in both knees. My right knee feels fine , but my left knee is starting to touch bone slightly on the  the inside part of my knee.\r\n I have  a slight bow in my left leg due to a car accident when I was 18 . \r\nCompound fractures in both legs from that accident  has caused a few surgeries over the years due to my love of sports. \r\nI\'ve been told that I could need a knee replacement in the next few years. I\'d rather go a different route if at all possible.',''),(3936,1,537,'11','Not yet, and I want to avoid the need for one in the future',''),(3937,1,537,'13','Google/Internet',''),(3938,1,537,'4','9am – 11am',''),(3939,1,538,'6.3','barbara',''),(3940,1,538,'2','barbaraos6525@yahoo.com',''),(3941,1,538,'3','(323) 656-1924',''),(3942,1,538,'5','severe hip pain and unable to stand straight while walking.   recently had lumbar spine\r\nsurgery, and also had pro-longed (oral) cortisone treatment for skin disease.   one\r\ncortizone injection and one prp injection in my hip did not help.',''),(3943,1,538,'11','Not yet, and I want to avoid the need for one in the future',''),(3944,1,538,'13','Another healthcare website',''),(3945,1,538,'4','3pm – 5pm',''),(3946,1,539,'6.3','Isaac Escobedo',''),(3947,1,539,'2','isaacescobedo017@gmail.com',''),(3948,1,539,'3','(818) 927-8859',''),(3949,1,539,'5','Use to crack back constantly & now there is a constant pain in my upper back spine making daily tasks more difficult. Unable to bend and throughout the day there is uncomfortable pain.',''),(3950,1,539,'11','Not yet, and I want to avoid the need for one in the future',''),(3951,1,539,'13','Google/Internet',''),(3952,1,539,'4','3pm – 5pm',''),(3953,1,540,'6.3','Timothy',''),(3954,1,540,'2','timdogstingray@gmail.com',''),(3955,1,540,'3','(562) 335-2565',''),(3956,1,540,'5','Left hip labrum tear shown on MRI. in addition to left hip pain I also have lower back pain that seems to be worse since my hip injury.',''),(3957,1,540,'11','Yes, and I want to avoid it if possible',''),(3958,1,540,'13','Google/Internet',''),(3959,1,540,'4','Anytime',''),(3960,1,541,'6.3','Joe fuchs',''),(3961,1,541,'2','fuchsjoseph@yahoo.com',''),(3962,1,541,'3','(818) 602-5818',''),(3963,1,541,'5','I am scheduled to have dbl hip replacement in April and have severe pain in my hips',''),(3964,1,541,'11','Yes, and I want to avoid it if possible',''),(3965,1,541,'13','Friend/family who was/is a patient',''),(3966,1,541,'4','Anytime',''),(3967,1,542,'6.3','Alison80',''),(3968,1,542,'2','fleurmn86@hotmail.com',''),(3969,1,542,'3','(047) 250-5766',''),(3970,1,542,'5','heey dear!!! my name Doris... \r\nI love sex. Write me - bit.ly/3DdTgVT',''),(3971,1,542,'11','Not yet, and I want to avoid the need for one in the future',''),(3972,1,542,'13','Facebook',''),(3973,1,542,'4','Anytime',''),(3974,1,543,'6.3','Jerry Frank Juhl',''),(3975,1,543,'2','JerryJuhl@aol.com',''),(3976,1,543,'3','(760) 902-5784',''),(3977,1,543,'5','I have had chronic RIGHT hip pain or more specifically muscle spasm of all hip girdle musculature for the last 3-5 years. \r\n\r\nThe most debilitating symptom is high level pain with walking (every step) and an inability to stand erect during exacerbations.\r\n\r\nI have had hip x-rays and MRI which does without evidence of hip joint pathology. I have had cortisone trigger point therapy and pain management hip injection without positive results.\r\n\r\nI manage with repetitive icing, heat and stretching but am looking for a functional strategy.',''),(3978,1,543,'11','Not yet, and I want to avoid the need for one in the future',''),(3979,1,543,'13','Another healthcare website',''),(3980,1,543,'4','Anytime',''),(3981,1,544,'6.3','Sean',''),(3982,1,544,'2','protradersuccess@gmail.com',''),(3983,1,544,'3','(424) 489-4069',''),(3984,1,544,'5','Right knee creeks and constant pain for 4 weeks when bending.',''),(3985,1,544,'11','Not yet, and I want to avoid the need for one in the future',''),(3986,1,544,'13','Google/Internet',''),(3987,1,544,'4','9am – 11am',''),(3988,1,545,'6.3','Linda Nicolosi',''),(3989,1,545,'2','janiejiffy@yahoo.com',''),(3990,1,545,'3','(805) 496-1371',''),(3991,1,545,'5','Cervical spine instability causing dizziness, lightheadedness, left ear pressure, heart palpitations, intermittent arm muscle weakness. Dizziness comes on most of the time through a change in head position. \r\n\r\nX-Ray of the neck shows nothing of particular relevance or that could be corrected surgically\r\n\r\nI tried 2 prolotherapy treatments of 6 injections each, with no help.',''),(3992,1,545,'11','Not yet, and I want to avoid the need for one in the future',''),(3993,1,545,'13','Google/Internet',''),(3994,1,545,'4','Anytime',''),(3995,1,546,'6.3','Mary Arispe',''),(3996,1,546,'2','maryvb3@ca.rr.com',''),(3997,1,546,'3','(661) 607-3902',''),(3998,1,546,'5','My husband Bob is 59 years old, and a former professional baseball player in his 20\'s and a avid golfer and cyclist up until he was 57. He got shingles in 2020 on his back and ever since he has excruciating back pain that acupuncture, infrared spa and mud packing, and chiropractic adjustments, haven\'t helped. Maybe alleviated pain for a moment after; however, the pain returned sometimes stronger. He did have sciatica pain three years ago that subsided before the shingles. It is hard to watch my once vibrant healthy active husband hardly walk, sit, or lay down because of constant pain. I pray that you can help him.',''),(3999,1,546,'11','Not yet, and I want to avoid the need for one in the future',''),(4000,1,546,'13','Friend/family who was/is a patient',''),(4001,1,546,'4','9am – 11am',''),(4002,1,547,'6.3','Peggy Swartzbaugh',''),(4003,1,547,'2','Grammylovesfamily@gmail.com',''),(4004,1,547,'3','(562) 458-4724',''),(4005,1,547,'5','Tricompartmental Osteoarthrosis end-stage at the patellofemoral compartment Moderate to high grade medial and lateral compartment chondromalacia \r\nthere are multiple areas of moderate to high grade partial thickness cartilage affecting both sides of the joint\r\n\r\ncan no longer live my life with out my knee swelling up with pain',''),(4006,1,547,'11','Yes, and I want to avoid it if possible',''),(4007,1,547,'13','Google/Internet',''),(4008,1,547,'4','1pm – 3pm',''),(4009,1,548,'6.3','MICHELLE',''),(4010,1,548,'2','NUMBERGARRIDO@GMAIL.COM',''),(4011,1,548,'3','(518) 212-2774',''),(4012,1,548,'11','Yes, and I want to avoid it if possible',''),(4013,1,548,'13','Friend/family who was/is a patient',''),(4014,1,548,'4','11am – 1pm',''),(4015,1,549,'6.3','Emily Matlock',''),(4016,1,549,'2','emilymatlock420@yahoo.com',''),(4017,1,549,'3','(601) 405-5090',''),(4018,1,549,'5','I really need some help for my husband. His mom was murdered my her boyfriend who worked for some very powerful people in the Ms. Delta He been told several times to call Dr.Phil or Oprah Winfrey show. He watch Dr.Phil show everyday and been trying to contact Dr.Phil. Could yall please help me to get him some help because he is becoming very emotional and danger to himself and want to hurt others about his mom death. He is 52 years  old and been behind this case for 18 years and  trying to get justice. Please Help  Help Help Help 😂😂😂😂😂 If you can\'t reach me on that number call him on 601-566-8532',''),(4019,1,549,'11','Not yet, and I want to avoid the need for one in the future',''),(4020,1,549,'13','Facebook',''),(4021,1,549,'4','Anytime',''),(4022,1,550,'6.3','Eric Jones',''),(4023,1,550,'2','eric.jones.z.mail@gmail.com',''),(4024,1,550,'3','(555) 555-1212',''),(4025,1,550,'5','Hi, my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nTalk With Web Visitor _ CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=drfields.com',''),(4026,1,550,'11','Yes, and I want to avoid it if possible',''),(4027,1,550,'13','Friend/family who was/is a patient',''),(4028,1,550,'4','1pm – 3pm',''),(4029,1,551,'6.3','Joelle Osias',''),(4030,1,551,'2','dr.joelle@gmail.com',''),(4031,1,551,'3','(650) 444-8804',''),(4032,1,551,'5','I would like to request an appointment for my son Yaseen Zarroug DOB 01/05/01.  He is an existing patient and saw Dr Fields maybe a year ago for his shoulder. He sustained a spiral fracture of the 3rd Metatarsal bone in the L hand on 12.21 while playing basketball to Dubai.  Orthopedic Surgeon states that his injury is amenable to conservative management. He now has a soft cast.  He had some mild ulnar scissoring on initial evaluation that has improved on follow up.  He is due to travel back to the US on January 11th and would like an appointment with Dr Fields next week.  My interest specifically is to explore the possibility of using exosomes to help support the healing process and other alternative modalities as appropriate.   He will come with a copy of his xrays.  I am attaching some views for his perusal.\r\n\r\nLet me know if you have any openings next week. Our schedule is flexible.   \r\n\r\nYaseen will be leaving back to University at Amherst on 1/19/21.',''),(4033,1,551,'11','Not yet, and I want to avoid the need for one in the future',''),(4034,1,551,'13','I am a current patient/was a patient previously',''),(4035,1,551,'4','Anytime',''),(4036,1,552,'6.3','Eric',''),(4037,1,552,'2','ezareski@mac.com',''),(4038,1,552,'3','(310) 773-6106',''),(4039,1,552,'5','I injured my knee and after an MRI saw that I tore most but not all of my ACL and some of my meniscus. I don’t want to do surgery unless I really have to and am interested in prolotherapy and stem cell therapy.',''),(4040,1,552,'11','Not yet, and I want to avoid the need for one in the future',''),(4041,1,552,'13','Google/Internet',''),(4042,1,552,'4','1pm – 3pm',''),(4043,1,553,'6.3','Meytal',''),(4044,1,553,'2','meytalmisrahi@gmail.com',''),(4045,1,553,'3','(424) 414-8177',''),(4046,1,553,'5','I have EDS with cranio-cervical and cervical instability. I\'ve seen a variety of specialists and am looking for an expert to do guided prolotherapy treatments throughout my cervical spine.',''),(4047,1,553,'11','Not yet, and I want to avoid the need for one in the future',''),(4048,1,553,'13','Google/Internet',''),(4049,1,553,'4','Anytime',''),(4050,1,554,'6.3','Beth',''),(4051,1,554,'2','collins282@yahoo.com',''),(4052,1,554,'3','(203) 877-1138',''),(4053,1,554,'5','I was looking at your website and noticed it appears this link is broken: https://www.drfields.com/?p=416\r\n\r\nI had similar problems on my site until someone mentioned it to me and I also now use software from DeadLinkDetect.com to keep my site error free.',''),(4054,1,554,'11','Yes, and I want to avoid it if possible',''),(4055,1,554,'13','Referred by my doctor/provider',''),(4056,1,554,'4','9am – 11am',''),(4057,1,555,'6.3','Thess Ferriol',''),(4058,1,555,'2','thessf14@yahoo.com',''),(4059,1,555,'3','(310) 308-5618',''),(4060,1,555,'5','Hello, my right thumb is inflamed to the touch of an object, and i cannot straighten it.',''),(4061,1,555,'11','Not yet, and I want to avoid the need for one in the future',''),(4062,1,555,'13','Google/Internet',''),(4063,1,555,'4','Anytime',''),(4064,1,556,'6.3','Leslie',''),(4065,1,556,'2','olsonleslie6@gmail.com',''),(4066,1,556,'3','(719) 330-3027',''),(4067,1,556,'5','Sciatica that runs from my upper hip down to the back of my knee.',''),(4068,1,556,'11','Not yet, and I want to avoid the need for one in the future',''),(4069,1,556,'13','Google/Internet',''),(4070,1,556,'4','Anytime',''),(4071,1,557,'6.3','Leslie Olson',''),(4072,1,557,'2','olsonleslie6@gmail.com',''),(4073,1,557,'3','(719) 330-3027',''),(4074,1,557,'5','Pain that works through my my hip (back rt side to almost mid back) and from there down the back of my leg to a real hot spot in back of my rt knee!  I went to ER when it happened and was told if I was a man they would do surgery but because I was girl\r\nI would be fine!',''),(4075,1,557,'11','Not yet, and I want to avoid the need for one in the future',''),(4076,1,557,'13','Google/Internet',''),(4077,1,557,'4','Anytime',''),(4078,1,558,'6.3','Brooke ward',''),(4079,1,558,'2','Tadahbybrooke@aol.com',''),(4080,1,558,'3','(818) 970-6754',''),(4081,1,558,'5','Brachioradial pruritus.  \r\nI was wondering if you would read and watch the videos on\r\nCaringmedical.com\r\nBrachioradial pruritus- neuropathic itch\r\nRoss hauler MD.\r\n\r\nThis is my exact problem.    Can you help me?\r\n\r\nSincerely,\r\nBrooke Ward',''),(4082,1,558,'11','Not yet, and I want to avoid the need for one in the future',''),(4083,1,558,'13','Google/Internet',''),(4084,1,558,'4','Anytime',''),(4085,1,559,'6.3','Brooke ward',''),(4086,1,559,'2','Tadahbybrooke@aol.com',''),(4087,1,559,'3','(818) 970-6754',''),(4088,1,559,'5','Brachioradial pruritus.  \r\nI was wondering if you would read and watch the videos on\r\nCaringmedical.com\r\nBrachioradial pruritus- neuropathic itch\r\nRoss hauler MD.\r\n\r\nThis is my exact problem.    Can you help me?\r\n\r\nSincerely,\r\nBrooke Ward',''),(4089,1,559,'11','Not yet, and I want to avoid the need for one in the future',''),(4090,1,559,'13','Google/Internet',''),(4091,1,559,'4','Anytime',''),(4092,1,560,'6.3','Questa7p',''),(4093,1,560,'2','annqn4r@hotmail.com',''),(4094,1,560,'3','(856) 002-1554',''),(4095,1,560,'5','hallo dear.. my name Christina... \r\nI want sex! Here are my photos - u.to/n-bKGw',''),(4096,1,560,'11','Not yet, and I want to avoid the need for one in the future',''),(4097,1,560,'13','YouTube',''),(4098,1,560,'4','Anytime',''),(4099,1,561,'6.3','Jeminez Harrington',''),(4100,1,561,'2','jnez52@yahoo.com',''),(4101,1,561,'3','(760) 553-2731',''),(4102,1,561,'5','Did the procedure a couple of years ago...I\'m consistent with current ability with hips, particularly with the left side that was so much worse than the right.\r\n\r\nI\'m curious as to whether you can do a write up for me to give to VA which will allow them to award a level of disability attributing my military service as part of the cause for my hip condition.  I am able to continue working but there is a minor level of discomfort.',''),(4103,1,561,'11','Not yet, and I want to avoid the need for one in the future',''),(4104,1,561,'4','Anytime',''),(4105,1,562,'6.3','Benjamin Lee',''),(4106,1,562,'2','benlee1951@yahoo.com',''),(4107,1,562,'3','(176) 038-2591',''),(4108,1,562,'5','Poat op bilateral knee surgery, stiffness limited ROM',''),(4109,1,562,'11','Not yet, and I want to avoid the need for one in the future',''),(4110,1,562,'13','Google/Internet',''),(4111,1,562,'4','9am – 11am',''),(4112,1,563,'6.3','Eric Jones',''),(4113,1,563,'2','eric.jones.z.mail@gmail.com',''),(4114,1,563,'3','(555) 555-1212',''),(4115,1,563,'5','Hey, this is Eric and I ran across drfields.com a few minutes ago.\r\n\r\nLooks great_ but now what?\r\n\r\nBy that I mean, when someone like me finds your website _ either through Search or just bouncing around _ what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment.\r\n\r\nHere_s an idea_\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site_\r\n \r\nYou can _\r\n  \r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou_ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don_t close a deal right away, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nPretty sweet _ AND effective.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=drfields.com',''),(4116,1,563,'11','Yes, and I want to avoid it if possible',''),(4117,1,563,'13','Referred by my doctor/provider',''),(4118,1,563,'4','9am – 11am',''),(4119,1,564,'6.3','Darlene Marsh',''),(4120,1,564,'2','marwhmd@aol.com',''),(4121,1,564,'3','(707) 978-8943',''),(4122,1,564,'5','I have a very sore shoulder and have been told I need shoulder replacement surgery. It would be the only way to repair my shoulder. I was not feeling this was right for me. I also have a knee that I was told needed to be replaced. That was a few years ago and I have not had that done either. Both of these joints are very painful and the shoulder is a new occurrence, just since December, this was when the severe pain started and the lack of motion started due to pain.',''),(4123,1,564,'11','Yes, and I want to avoid it if possible',''),(4124,1,564,'13','Google/Internet',''),(4125,1,564,'4','Anytime',''),(4126,1,565,'6.3','Evelyn Payne',''),(4127,1,565,'2','evelyn_payne20@yahoo.com',''),(4128,1,565,'3','(951) 392-4841',''),(4129,1,565,'5','severe neck pain. Can\'t turn my head. I\'m a quadriplegic. So they have to turn me, I bought linocane. And aspercream',''),(4130,1,565,'11','Not yet, and I want to avoid the need for one in the future',''),(4131,1,565,'13','YouTube',''),(4132,1,565,'4','Anytime',''),(4133,1,566,'6.3','Laura Ramirez',''),(4134,1,566,'2','Lrmz1@gmail.com',''),(4135,1,566,'3','(310) 800-6041',''),(4136,1,566,'5','Ongoing pain',''),(4137,1,566,'11','Not yet, and I want to avoid the need for one in the future',''),(4138,1,566,'13','Google/Internet',''),(4139,1,566,'4','3pm – 5pm',''),(4140,1,567,'6.3','RaymondRusly',''),(4141,1,567,'2','electricservice@gmail.com',''),(4142,1,567,'3','(041) 676-2077',''),(4143,1,567,'5','Hello! We will make a commercial for your business or website for only $20. \r\nThe deal takes place on a well-known freelance exchange, you are protected, the payment will be made after you accept the completed work. \r\nEmail us and we will do the work within 3 hours. \r\nAn example of our work: https://www.youtube.com/watch?v=aRuQxmUwpl4 \r\nTo get started we just need your logo (if available), phone number and website address. \r\nThe resulting video you can use in social networks, on your website, YouTube, and so on. \r\nOur contact information: \r\nrosajmann@gmail.com \r\nSorry if we bothered you, \r\nSincerely, Rosa.',''),(4144,1,567,'11','Not yet, and I want to avoid the need for one in the future',''),(4145,1,567,'13','Facebook',''),(4146,1,567,'4','Anytime',''),(4147,1,568,'6.3','Aileen',''),(4148,1,568,'2','adpuquiz@yahoo.com',''),(4149,1,568,'3','(661) 900-0008',''),(4150,1,568,'11','Not yet, and I want to avoid the need for one in the future',''),(4151,1,568,'13','YouTube',''),(4152,1,568,'4','Anytime',''),(4153,1,569,'6.3','RaymondRusly',''),(4154,1,569,'2','electricservice@gmail.com',''),(4155,1,569,'3','(632) 475-5188',''),(4156,1,569,'5','Hello! We will make a commercial for your business or website for only $20. \r\nThe deal takes place on a well-known freelance exchange, you are protected, the payment will be made after you accept the completed work. \r\nEmail us and we will do the work within 3 hours. \r\nAn example of our work: https://www.youtube.com/watch?v=aRuQxmUwpl4 \r\nTo get started we just need your logo (if available), phone number and website address. \r\nThe resulting video you can use in social networks, on your website, YouTube, and so on. \r\nOur contact information: \r\nrosajmann@gmail.com \r\nSorry if we bothered you, \r\nSincerely, Rosa.',''),(4157,1,569,'11','Not yet, and I want to avoid the need for one in the future',''),(4158,1,569,'13','Google/Internet',''),(4159,1,569,'4','Anytime',''),(4160,1,570,'6.3','Kiy morlet',''),(4161,1,570,'2','iamkiy@aol.com',''),(4162,1,570,'3','(909) 855-3301',''),(4163,1,570,'5','I have an unstable C2… had a laminectomy on C3-C6 in 2018 which is now effecting my C7… my C2 is causing me so many problems and contrary to my neurologist I do not want another surgery',''),(4164,1,570,'11','Yes, and I want to avoid it if possible',''),(4165,1,570,'13','Google/Internet',''),(4166,1,570,'4','9am – 11am',''),(4167,1,571,'6.3','Ruben Padilla',''),(4168,1,571,'2','r87padilla@yahoo.com',''),(4169,1,571,'3','(559) 731-8374',''),(4170,1,571,'5','Hello I have had a shot of Stem Cells and a shot of exposures cells in June 2021. It cost me all of my savings hoping for relief of bursitis in leftside hip joint. Absolutely no pain relief has been achieved. I am still in chronic pain here in Fresno CA.',''),(4171,1,571,'11','Not yet, and I want to avoid the need for one in the future',''),(4172,1,571,'13','Google/Internet',''),(4173,1,571,'4','1pm – 3pm',''),(4174,1,572,'6.3','Margie Esquivel',''),(4175,1,572,'2','margie5.me@gmail.com',''),(4176,1,572,'3','(626) 255-4114',''),(4177,1,572,'5','Chronic pain in right knee. degenerative osteoarthritis\r\nTorn miniscus in left knee',''),(4178,1,572,'11','Not yet, and I want to avoid the need for one in the future',''),(4179,1,572,'13','Google/Internet',''),(4180,1,572,'4','3pm – 5pm',''),(4181,1,573,'6.3','Eric Jones',''),(4182,1,573,'2','eric.jones.z.mail@gmail.com',''),(4183,1,573,'3','(555) 555-1212',''),(4184,1,573,'5','My name_s Eric and I just found your site drfields.com.\r\n\r\nIt_s got a lot going for it, but here_s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor _ CLICK HERE http://jumboleadmagnet.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nAnd once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation_ and if they don_t take you up on your offer then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment. Don_t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=drfields.com',''),(4185,1,573,'11','Yes, and I want to avoid it if possible',''),(4186,1,573,'13','Another healthcare website',''),(4187,1,573,'4','9am – 11am',''),(4188,1,574,'6.3','michael westrick',''),(4189,1,574,'2','michaelwestrick@sbcglobal.net',''),(4190,1,574,'3','(323) 578-0893',''),(4191,1,574,'5','Strained mid back',''),(4192,1,574,'11','Not yet, and I want to avoid the need for one in the future',''),(4193,1,574,'13','Friend/family who was/is a patient',''),(4194,1,574,'4','1pm – 3pm',''),(4195,1,575,'6.3','Jonathan Blank',''),(4196,1,575,'2','j2@wildform.com',''),(4197,1,575,'3','(310) 493-5451',''),(4198,1,575,'5','Hi.\r\nAre any of your treatments (or any portion) covered by insurance?\r\nI\'m looking for treatment for my knees and shoulders.\r\nThanks.\r\nJonathan',''),(4199,1,575,'11','Yes, and I want to avoid it if possible',''),(4200,1,575,'13','Google/Internet',''),(4201,1,575,'4','Anytime',''),(4202,1,576,'6.3','Richard A Del Carlo',''),(4203,1,576,'2','rick@cregre.net',''),(4204,1,576,'3','(909) 203-8585',''),(4205,1,576,'5','I have been diagnosed with Osteoporosis Arthritis. Until recently, I can manage, but it to the point where I can not bend my knee and getting in out of the car can be very painful. \r\nAlso, I am extremely active and play pickleball at a high level and that too, is becoming compromised. \r\n\r\nI take 4 advil before pickleball matches, but  besides that I just use an  topical anointment .\r\n\r\nCan you explain the mechanics of what you do and why it works? \r\n\r\nAlso, will insurance cover the costs? \r\n\r\nLook forward to hearing from you \r\n\r\nThank you \r\n\r\nRick',''),(4206,1,576,'11','Not yet, and I want to avoid the need for one in the future',''),(4207,1,576,'13','Referred by my doctor/provider',''),(4208,1,576,'4','Anytime',''),(4209,1,577,'6.3','James Pender',''),(4210,1,577,'2','jim.pender@icloud.com',''),(4211,1,577,'3','(916) 996-4737',''),(4212,1,577,'5','I have a problem with both knees. Have tried 3 injections of hyaluronic acid which had no reaction not even briefly. My pain and discomfort is going up and down stairs and getting up from a sitting position.\r\nI have been told I have a bone on bone situation and knee replacement is my course of action, I would rather look for a non surgical solution.  What do you suggest?',''),(4213,1,577,'11','Not yet, and I want to avoid the need for one in the future',''),(4214,1,577,'13','Google/Internet',''),(4215,1,577,'4','Anytime',''),(4216,1,578,'6.3','Alexander Thomson',''),(4217,1,578,'2','asthomson71@gmail.com',''),(4218,1,578,'3','(424) 413-3590',''),(4219,1,578,'5','Hi. I have various long term problems - neuralgia, muscle problems - and one treatment that has helped in the past is prolotherpy. Unfortunately where I live, Germany, it is not easy to find a doctor. The last time i had in was on the East Coast through Dr Greenberg, and it helped a lot [ankle, neck and sacrum]. I\'m in LA for the next 6 weeks, so I\'m writing to see if you have appointments free.\r\nMany thanks indeed.\r\nAlec Thomson',''),(4220,1,578,'11','Not yet, and I want to avoid the need for one in the future',''),(4221,1,578,'13','Google/Internet',''),(4222,1,578,'4','Anytime',''),(4223,1,579,'6.3','Karl Melzner',''),(4224,1,579,'2','khmelzner@aol.com',''),(4225,1,579,'3','(510) 449-2217',''),(4226,1,579,'5','xray of  indicate surjury  of knee it is painful and deformed, is a consult available in the san francisco bay area? how many treatments are needed at what cost how effective are they?',''),(4227,1,579,'11','Yes, and I want to avoid it if possible',''),(4228,1,579,'13','Google/Internet',''),(4229,1,579,'4','Anytime',''),(4230,1,580,'6.3','Sharona Justman',''),(4231,1,580,'2','Health@RJMC.net',''),(4232,1,580,'3','(310) 445-5332',''),(4233,1,580,'5','Shoulder',''),(4234,1,580,'11','Yes, and I want to avoid it if possible',''),(4235,1,580,'13','Friend/family who was/is a patient',''),(4236,1,580,'4','Anytime',''),(4237,1,581,'6.3','Jenny Swan',''),(4238,1,581,'2','jennyswandpt@gmail.com',''),(4239,1,581,'3','(214) 924-6660',''),(4240,1,581,'5','Hi, I have thumb CMC joint hypermobility which impairs my ability to do my work as a physical therapist. It hasn\'t progressed to severe pain or arthritis yet but I work intensely with my hands every day. Could PRP help tighten the carpal ligaments? How many treatments would you anticipate? Do you recommend avoiding stressful positions/forces for a few days after the injections? \r\n\r\nTrying to determine if this is a realistic treatment option for me while I\'m working. Thank you.',''),(4241,1,581,'11','Not yet, and I want to avoid the need for one in the future',''),(4242,1,581,'13','Google/Internet',''),(4243,1,581,'4','3pm – 5pm',''),(4244,1,582,'6.3','Alex',''),(4245,1,582,'2','alexjune@gmail.com',''),(4246,1,582,'3','(213) 282-4659',''),(4247,1,582,'5','Back hurts',''),(4248,1,582,'11','Not yet, and I want to avoid the need for one in the future',''),(4249,1,582,'13','Google/Internet',''),(4250,1,582,'4','Anytime',''),(4251,1,583,'6.3','Shayla I. Lawson',''),(4252,1,583,'2','shayla@shaylalawson.com',''),(4253,1,583,'3','(859) 797-2345',''),(4254,1,583,'5','Hypermobile Ehlers-Danlos Syndrome with cranio-cervical instability and associated pain and functional limitations, as well as, bilateral knee internal derangements with meniscal and ligamentous injuries. Last year has been especially difficult requiring a medical leave of absence for work as a college professor.',''),(4255,1,583,'11','Yes, and I want to avoid it if possible',''),(4256,1,583,'13','Referred by my doctor/provider',''),(4257,1,583,'4','Anytime',''),(4258,1,584,'6.3','Venkat Vangala',''),(4259,1,584,'2','vvangala@foremostseniors.com',''),(4260,1,584,'3','(760) 881-1141',''),(4261,1,584,'5','I have osteoarthritis of both knees, I would like to receive stem cell therapy for my both knees.',''),(4262,1,584,'11','Not yet, and I want to avoid the need for one in the future',''),(4263,1,584,'13','Referred by my doctor/provider',''),(4264,1,584,'4','Anytime',''),(4265,1,585,'6.3','Marcos Paulo Venancio',''),(4266,1,585,'2','mpvenancio@genebrachocolates.com.br',''),(4267,1,585,'3','(112) 741-6719',''),(4268,1,585,'5','Artrose/Necrose na cabeça do femur',''),(4269,1,585,'11','Yes, and I want to avoid it if possible',''),(4270,1,585,'13','Referred by my doctor/provider',''),(4271,1,585,'4','Anytime',''),(4272,1,586,'6.3','Eric Jones',''),(4273,1,586,'2','eric.jones.z.mail@gmail.com',''),(4274,1,586,'3','(555) 555-1212',''),(4275,1,586,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=drfields.com',''),(4276,1,586,'11','Yes, and I want to avoid it if possible',''),(4277,1,586,'13','Google/Internet',''),(4278,1,586,'4','9am – 11am',''),(4279,1,587,'6.3','Venkat Vangala',''),(4280,1,587,'2','vvangala@foremostseniors.com',''),(4281,1,587,'3','(760) 881-1141',''),(4282,1,587,'5','Bilateral Osteoarthritis of Knees.',''),(4283,1,587,'11','Not yet, and I want to avoid the need for one in the future',''),(4284,1,587,'13','Google/Internet',''),(4285,1,587,'4','Anytime',''),(4286,1,588,'6.3','VINCENT MCCORMICK',''),(4287,1,588,'2','regv1959@gmail.com',''),(4288,1,588,'3','(619) 873-8808',''),(4289,1,588,'5','I have sacroiliac pain with sciatica pain and cramping from the buttocks down the lateral side of my left leg and foot.',''),(4290,1,588,'11','Not yet, and I want to avoid the need for one in the future',''),(4291,1,588,'13','Google/Internet',''),(4292,1,588,'4','Anytime',''),(4293,1,589,'6.3','VINCENT MCCORMICK',''),(4294,1,589,'2','regv1959@gmail.com',''),(4295,1,589,'3','(619) 873-8808',''),(4296,1,589,'5','I have sacroiliac pain along with psionic pain and cramping down my left lateral leg and foot for the past 6 months. I have tried everything with no relief.',''),(4297,1,589,'11','Not yet, and I want to avoid the need for one in the future',''),(4298,1,589,'13','Google/Internet',''),(4299,1,589,'4','Anytime',''),(4300,1,590,'6.3','Allan Griesemer',''),(4301,1,590,'2','alnan306@gmail.com',''),(4302,1,590,'3','(909) 794-4852',''),(4303,1,590,'5','My wife is the person needing an alternative therapy to surgery.  She is 84 and has severe knee pain, which has been affecting her movement significantly for about 8 weeks. She is 5\'2\" and about 170 lbs.',''),(4304,1,590,'11','Not yet, and I want to avoid the need for one in the future',''),(4305,1,590,'4','Anytime',''),(4306,1,591,'6.3','linda blank',''),(4307,1,591,'2','linda@lmblank.com',''),(4308,1,591,'3','(310) 383-7655',''),(4309,1,591,'5','knee pain',''),(4310,1,591,'11','Yes, and I want to avoid it if possible',''),(4311,1,591,'13','Referred by my doctor/provider',''),(4312,1,591,'4','9am – 11am',''),(4313,1,592,'6.3','Arash',''),(4314,1,592,'2','arash.farhoomand@gmail.com',''),(4315,1,592,'3','(818) 523-5535',''),(4316,1,592,'5','Seeking Digital motion X-ray for Prolotherapy determination on neck.',''),(4317,1,592,'11','Not yet, and I want to avoid the need for one in the future',''),(4318,1,592,'13','Google/Internet',''),(4319,1,592,'4','Anytime',''),(4320,1,593,'6.3','John Stefaniak',''),(4321,1,593,'2','jaymac38@mac.com',''),(4322,1,593,'3','(804) 691-4730',''),(4323,1,593,'5','83 years old. Have age related arthritis in both knees. Am currently getting Cortizone treatments every 3 months. I am retired military and have Tricare for Life and Medicare Part B insurance coverage.',''),(4324,1,593,'11','Not yet, and I want to avoid the need for one in the future',''),(4325,1,593,'13','Google/Internet',''),(4326,1,593,'4','Anytime',''),(4327,1,594,'6.3','Carlos Gutierrez',''),(4328,1,594,'2','cgutierrez004@gmail.com',''),(4329,1,594,'3','(951) 217-2733',''),(4330,1,594,'5','Chronic Neck Pain and Stiffness.  Ongoing bouts of dizziness and unbalance issues.  Ringing in the ear that comes and goes.  Feeling like I\'m always on a boat.  Numbness in tongue and left arm, hand that comes and goes.  Ear pressure, constant headaches and sinus pressure.  At times have trouble swallowing, at times feeling constant pressure on right side front of neck.  At times when I speak to much or chew food feeling of dizziness.....Seen ENT, Gastro, Barium Swallow, MRI of sinuses and head.  Nothing found.  Currently seeing chiropractor twice a week, Xray done of neck shows forward curve in neck',''),(4331,1,594,'11','Not yet, and I want to avoid the need for one in the future',''),(4332,1,594,'13','Google/Internet',''),(4333,1,594,'4','Anytime',''),(4334,1,595,'6.3','CHASITY PARKER',''),(4335,1,595,'2','chasityparker19@yahoo.com',''),(4336,1,595,'3','(318) 724-6189',''),(4337,1,595,'5','ok',''),(4338,1,595,'11','Not yet, and I want to avoid the need for one in the future',''),(4339,1,595,'13','Facebook',''),(4340,1,595,'4','11am – 1pm',''),(4341,1,596,'6.3','Laurel i',''),(4342,1,596,'2','hilaureli@icloud.com',''),(4343,1,596,'3','(424) 333-6200',''),(4344,1,596,'5','Trained athlete.  Had injury but results were missed.  Would’ve been resolved with Cervical prolotherapy.  Now I need general assessment to determine treatment plan\r\nAnd adjust general routine which seems to exacerbate it',''),(4345,1,596,'11','Yes, and I want to avoid it if possible',''),(4346,1,596,'13','Google/Internet',''),(4347,1,596,'4','Anytime',''),(4348,1,597,'6.3','Sandra Bogan',''),(4349,1,597,'2','sandrabogan7@gmail.com',''),(4350,1,597,'3','(847) 951-9437',''),(4351,1,597,'5','My left knee is painful to walk on. I have an MRI CD from Jan. 13, 2022 I can bring to the consultation. I am interested in stem cell or PRP injections. I would like a consultation ASAP please. Thank you.',''),(4352,1,597,'11','Not yet, and I want to avoid the need for one in the future',''),(4353,1,597,'13','Google/Internet',''),(4354,1,597,'4','Anytime',''),(4355,1,598,'6.3','Zach sailor',''),(4356,1,598,'2','zsailor25@comcast.net',''),(4357,1,598,'3','(954) 257-7317',''),(4358,1,598,'5','Hey, so while working out last night I had a shoulder Injury and would like to have it examined to see if it’s a rotator cuff tare',''),(4359,1,598,'11','Not yet, and I want to avoid the need for one in the future',''),(4360,1,598,'13','Google/Internet',''),(4361,1,598,'4','Anytime',''),(4362,1,599,'6.3','Søren kirch',''),(4363,1,599,'2','Kirch@kirchconsult.org',''),(4364,1,599,'3','(004) 524-4342',''),(4365,1,599,'5','Instability in C1 and C2 and difficulties to swallow food. Overload nervous system, muscle tension on and off in different places. Fatigue and occasionally \'brain fog\' and dizziness. Fainted twice. \r\n\r\nStem Cell/PRP/Prolotherapy are considered experimental when I live, however I feel there is a good chance it might offer some relief. I live in Denmark but have family in US from whom I learned about your clinic and thise treatments. \r\n\r\nI can work from remote and will fly over in the fall if agree to see me. \r\n\r\n4 years ago, when I had my skiing accident (double impact at +80 km/h) I was an endurance bicycle rider - now I don\'t ride at all and miss it alot. I still have my network intact with physiotherapists, chiropractors etc. who all agreed to work with me making this happen if possible. \r\n\r\nFirst will be for you to agree to see me and agree a plan for how to get to the right diagnosis and treatment. Perhaps we can do that remote with help from my network - I have full access to x-ray, scanners etc. Just need from you what you need - to assist in the diagnosis. \r\n\r\nNB - I\'m aware it will need to be verified at your clinic before any treatment. \r\n\r\nLet\'s assume we agree to start treatment at your location. What will the treatment look like in terms of calendar time - is it realistic to be done in 1 months where I stay near you and possible a longer stay again at a later time, or something else?\r\n\r\nAs this is considered experimental in Denmark I will need to pay this myself, why a rough estimate of  the treatment will be a great help to me. \r\n\r\nFingers crossed you agree to help. \r\n\r\nNB - I do not expect to be fully healed, but every step in the right direction is a victory. \r\n\r\nNBB - A meeting f2f over Skype, Teams, Facetime etc. is possible at your convenience. \r\n\r\nKind regards,',''),(4366,1,599,'11','Not yet, and I want to avoid the need for one in the future',''),(4367,1,599,'13','Google/Internet',''),(4368,1,599,'4','Anytime',''),(4369,1,600,'6.3','Addie',''),(4370,1,600,'2','daddiocollective@gmail.com',''),(4371,1,600,'3','(323) 703-2943',''),(4372,1,600,'5','I have a torn meniscus. Would like to know the cost of PRP therapy. Thanks!',''),(4373,1,600,'11','Not yet, and I want to avoid the need for one in the future',''),(4374,1,600,'4','Anytime',''),(4375,1,601,'6.3','Brad Gann',''),(4376,1,601,'2','bradleygann@icloud.com',''),(4377,1,601,'3','(310) 455-0321',''),(4378,1,601,'5','Hey, I\'ve consulted with Dr. Fields already and am a long time patient. I have a couple more questions re stem cell treatment on my left hip: (1) is the PRP included in the quoted price?; (2) once the stem cell treatment is completed, how many other procedures (PRP, etc.) are recommended/usual going forward? (3) Once the treatment is done, for how long is it typical that the patient gets a cessation of pain and increased mobility, before degradation begins to take its toll again? i.e. is it likely that I\'ll need to get another stem cell treatment or hip replacement in 5/10 years?  Thanks!',''),(4379,1,601,'11','Not yet, and I want to avoid the need for one in the future',''),(4380,1,601,'13','I am a current patient/was a patient previously',''),(4381,1,601,'4','9am – 11am',''),(4382,1,602,'6.3','Tracy Mafi',''),(4383,1,602,'2','tracy.mafi@gmail.com',''),(4384,1,602,'3','(714) 296-1322',''),(4385,1,602,'5','Left hip pain.   X rays taken by my chiropractor showed bone on bone.   I have not seen an ortho surgeon yet.   Looking for an alternative to surgery since I am 50 years old.',''),(4386,1,602,'11','Yes, and I want to avoid it if possible',''),(4387,1,602,'13','Referred by my doctor/provider',''),(4388,1,602,'4','11am – 1pm',''),(4389,1,603,'6.3','Tammy Tucker',''),(4390,1,603,'2','tammyltucker@outlook.com',''),(4391,1,603,'3','(714) 642-4515',''),(4392,1,603,'5','Date of injury to sacroiliac joint - April 2019 \r\n How - Treadmill 10 incline\r\nTreatments - rest, meloxicam 15 Mg, Pilates physical therapy, stationary bike, shoe insert orthotic, cortisone injection, radio frequency ablation and chiropractic alignment\r\nResults - pain growing to other side, and up back \r\nTriggers - bending forward with pain hits ten, pain upon rising from sleep, interrupted sleep, twisting, lifting light weight and house cleaning (vacuuming, mopping, laundry)',''),(4393,1,603,'11','Not yet, and I want to avoid the need for one in the future',''),(4394,1,603,'13','Google/Internet',''),(4395,1,603,'4','Anytime',''),(4396,1,604,'6.3','RaymondRusly',''),(4397,1,604,'2','electricservice@gmail.com',''),(4398,1,604,'3','(475) 166-4713',''),(4399,1,604,'5','Hello! We will make a commercial for your business or website for only $20. \r\nThe deal takes place on a well-known freelance exchange, you are protected, the payment will be made after you accept the completed work. \r\nEmail us and we will do the work within 3 hours. \r\nAn example of our work: https://www.youtube.com/watch?v=aRuQxmUwpl4 \r\nTo get started we just need your logo (if available), phone number and website address. \r\nThe resulting video you can use in social networks, on your website, YouTube, and so on. \r\nOur contact information: \r\nrosajmann@gmail.com \r\nSorry if we bothered you, \r\nSincerely, Rosa.',''),(4400,1,604,'11','Not yet, and I want to avoid the need for one in the future',''),(4401,1,604,'13','Friend/family who was/is a patient',''),(4402,1,604,'4','Anytime',''),(4403,1,605,'6.3','Benjamin Millepied',''),(4404,1,605,'2','Benjaminluc@me.com',''),(4405,1,605,'3','(646) 675-0681',''),(4406,1,605,'5','Tinnitus \r\nOld neck injury \r\nWhiplash',''),(4407,1,605,'11','Not yet, and I want to avoid the need for one in the future',''),(4408,1,605,'13','Google/Internet',''),(4409,1,605,'4','Anytime',''),(4410,1,606,'6.3','AnikaBog',''),(4411,1,606,'2','anikaBog@gmail.com',''),(4412,1,606,'3','(824) 836-4424',''),(4413,1,606,'11','Not yet, and I want to avoid the need for one in the future',''),(4414,1,606,'13','Facebook',''),(4415,1,606,'4','Anytime',''),(4416,1,607,'6.3','Eric Jones',''),(4417,1,607,'2','eric.jones.z.mail@gmail.com',''),(4418,1,607,'3','(555) 555-1212',''),(4419,1,607,'5','My name_s Eric and I just found your site drfields.com.\r\n\r\nIt_s got a lot going for it, but here_s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor _ CLICK HERE https://jumboleadmagnet.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nAnd once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation_ and if they don_t take you up on your offer then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment. Don_t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=drfields.com',''),(4420,1,607,'11','Yes, and I want to avoid it if possible',''),(4421,1,607,'13','Another healthcare website',''),(4422,1,607,'4','9am – 11am',''),(4423,1,608,'6.3','ElenaTon',''),(4424,1,608,'2','elenaTon@gmail.com',''),(4425,1,608,'3','(375) 075-7730',''),(4426,1,608,'11','Not yet, and I want to avoid the need for one in the future',''),(4427,1,608,'13','I am a current patient/was a patient previously',''),(4428,1,608,'4','Anytime',''),(4429,1,609,'6.3','PAUL',''),(4430,1,609,'2','LarryHOFBird@gmail.com',''),(4431,1,609,'3','(562) 200-8475',''),(4432,1,609,'5','I WAS TOLD I HAVE BONE ON BONE. I AM 55 YEARS OLD AND WEIGH 280...IT HURTS ALL THE TIME AND THERE ARE PERIODS OF COMFORT, BUT THATS ALL THEY ARE PERIODS',''),(4433,1,609,'11','Yes, and I want to avoid it if possible',''),(4434,1,609,'13','Google/Internet',''),(4435,1,609,'4','Anytime',''),(4436,1,610,'6.3','Morenike Lake',''),(4437,1,610,'2','morenikelake@gmail.com',''),(4438,1,610,'3','(818) 497-3750',''),(4439,1,610,'5','I have left and right shoulder pain due to rotator cuff tear and my health care service provider recommended repair surgery as a treatment option. I am also doing physical therapy and acupuncture but have not made a decision yet to undergo the rotator cuff repair surgery. I am interested to discuss about the regenerative treatments options you can provide.',''),(4440,1,610,'11','Yes, and I want to avoid it if possible',''),(4441,1,610,'13','Friend/family who was/is a patient',''),(4442,1,610,'4','11am – 1pm',''),(4443,1,611,'6.3','KarinaWal',''),(4444,1,611,'2','karinaWal@aol.com',''),(4445,1,611,'3','(636) 380-0542',''),(4446,1,611,'5','Ηello all, guуs! I knоw, my message maу bе tоo specific,\r\nΒut mу sister fоund niсе man һere and they married, so һоw abоut mе?! :)\r\nI am 26 уеars оld, Каrinа, from Romaniа, knоw Εnglish аnd Russian languаgеs also\r\nAnd... I havе sресific diseаse, nаmеd nуmрhomania. Whо know what is tһis, сan understаnd me (bеtter to saу it immеdiatеlу)\r\nΑh уes, I сoоk verу tаstу! and I lovе not оnlу cоok ;))\r\nIm real girl, not prоstitutе, and lоoking fоr sеriоus аnd hot rеlationsһip...\r\nAnуwау, уou саn find my profilе һеrе: http://stalatphekene.cf/user/14664',''),(4447,1,611,'11','Not yet, and I want to avoid the need for one in the future',''),(4448,1,611,'13','Google/Internet',''),(4449,1,611,'4','Anytime',''),(4450,1,612,'6.3','Cerene Larson',''),(4451,1,612,'2','cerenehanika@yahoo.com',''),(4452,1,612,'3','(857) 800-7485',''),(4453,1,612,'5','Hi I am actually writing for my partner serene. My name is Trisha. For quite some time she has been having issues with her knees particularly with the left one and I work in the healthcare industry and a lot with holistic medicine. I would love for you to see if she is a candidate for either your stem cell or Prolotherapy for her knee. She has Kaiser insurance but if you let me know if she is a candidate and what the cost is if you don\'t accept her insurance then we will seriously consider it because she\'s in a lot of pain and would love to get back to running. Someone could call me and then I could have her contact you once you give me a little bit more information about a procedure, what testing you may need to do and cost. Thank you so much.',''),(4454,1,612,'11','Not yet, and I want to avoid the need for one in the future',''),(4455,1,612,'13','Google/Internet',''),(4456,1,612,'4','11am – 1pm',''),(4457,1,613,'6.3','Nikki',''),(4458,1,613,'2','nikki@adawebsitecomp.org',''),(4459,1,613,'3','(813) 870-1361',''),(4460,1,613,'5','Is your website ADA compliant? Besides the legal aspect, having a compliant website will bring more traffic. \r\n \r\nCheck out the advantages here and see if your site is compliant -> https://adawebsitecomp.org \r\n \r\nBest Regards \r\nNikki \r\n \r\n \r\nIf you prefer not to receive these commercial messages you can opt-out here -> https://adawebsitecomp.org/opt-out/',''),(4461,1,613,'11','Not yet, and I want to avoid the need for one in the future',''),(4462,1,613,'13','I am a current patient/was a patient previously',''),(4463,1,613,'4','Anytime',''),(4464,1,614,'6.3','LinaWal',''),(4465,1,614,'2','linaWal@gmail.com',''),(4466,1,614,'3','(445) 651-5263',''),(4467,1,614,'5','Ηеllо аll, guys! I know, mу mеssage mаy be tоo spесifiс,\r\nВut my sister found nicе mаn һere and thеy mаrried, sо how аbout me?! :)\r\nI am 23 yеars оld, Linа, frоm Rоmаniа, know Εnglish аnd Russian languagеs alsо\r\nАnd... I hаvе sресifiс diseаsе, nаmеd nуmрһomania. Wһo know whаt is tһis, can understand me (bеttеr to sаy it immediatelу)\r\nАһ уes, I сооk vеry tastу! and I love nоt оnly сook ;))\r\nIm reаl girl, nоt prоstitutе, аnd loоking for sеrious and hоt rеlatiоnship...\r\nАnyway, уou cаn find mу prоfile here: http://barnistrisseto.tk/user/112325',''),(4468,1,614,'11','Not yet, and I want to avoid the need for one in the future',''),(4469,1,614,'13','I am a current patient/was a patient previously',''),(4470,1,614,'4','Anytime',''),(4471,1,615,'6.3','Shera',''),(4472,1,615,'2','itspoca@gmail.com',''),(4473,1,615,'3','(310) 661-0322',''),(4474,1,615,'5','Neck shoulder and back pain',''),(4475,1,615,'11','Not yet, and I want to avoid the need for one in the future',''),(4476,1,615,'13','Google/Internet',''),(4477,1,615,'4','1pm – 3pm',''),(4478,1,616,'6.3','ChristinaSr',''),(4479,1,616,'2','christinaSr@mail.com',''),(4480,1,616,'3','(184) 327-7133',''),(4481,1,616,'11','Not yet, and I want to avoid the need for one in the future',''),(4482,1,616,'13','I am a current patient/was a patient previously',''),(4483,1,616,'4','Anytime',''),(4484,1,617,'6.3','renetta alpough',''),(4485,1,617,'2','babealpough@gmail.com',''),(4486,1,617,'3','(323) 337-4600',''),(4487,1,617,'5','shoulder pain with most movements.',''),(4488,1,617,'11','Not yet, and I want to avoid the need for one in the future',''),(4489,1,617,'13','Referred by my doctor/provider',''),(4490,1,617,'4','Anytime',''),(4491,1,618,'6.3','Vickie Hartsock',''),(4492,1,618,'2','vrharts@gmail.com',''),(4493,1,618,'3','(760) 412-1706',''),(4494,1,618,'5','In March of last year I started having pain in my groin area. I had a CT which showed I have Osteoarthritis in both hips mainly my left. I then had an MRI just to confirm the CT findings. MRI shows Moderate to Severe osteoarthritic joint space narrowing and spurring of the bilateral hips, left greater than the right. There is moderate sized left hip joint effusion w/scattered foci of synovial proliferation, consistent with chronic synovitis and secondary to degenerative change. It shows I have a tear in the left labrum. The pain is daily and is causing day to day limitations in walking and other activities.  I also have RA which is controlled by medication. I read about this treatment and if I\'m a candidate for this I would rather do this than have to have a hip replacement.',''),(4495,1,618,'11','Not yet, and I want to avoid the need for one in the future',''),(4496,1,618,'13','Google/Internet',''),(4497,1,618,'4','Anytime',''),(4498,1,619,'6.3','AlenaBog',''),(4499,1,619,'2','alenaBog@aol.com',''),(4500,1,619,'3','(068) 660-0855',''),(4501,1,619,'11','Not yet, and I want to avoid the need for one in the future',''),(4502,1,619,'13','Google/Internet',''),(4503,1,619,'4','Anytime',''),(4504,1,620,'6.3','ellen bradley',''),(4505,1,620,'2','ellenbradley18@gmail.com',''),(4506,1,620,'3','(310) 470-5080',''),(4507,1,620,'5','I am reaching out to you at the suggestion of Dan Altschuler, DPM.  I am 80 years old.  Very physically active.  I have had 2 lower back surgeries at L2/L3.  Also had Epidurals below the surgery without success.  Pain is mostly on my lower right side.  Gets worse with sitting and lots of exercise.\r\n\r\nMy question, that Dan asked me to ask you, is that do you have any success treating someone my age and with 2 back surgeries, with Stem Cells?',''),(4508,1,620,'11','Yes, and I want to avoid it if possible',''),(4509,1,620,'13','Referred by my doctor/provider',''),(4510,1,620,'4','Anytime',''),(4511,1,621,'6.3','Paul Gruen',''),(4512,1,621,'2','pauldgruen8@gmail.com',''),(4513,1,621,'3','(707) 225-4307',''),(4514,1,621,'5','Need referral for Northern California. \r\nHissing in ears since one month.  Started after intensively playing acoustic guitar for two weeks, apparently straining eye and jaw muscles and tensing up.  During that time my hearing changed every time I played guitar -- because of tensing eye muscles I think.\r\nIf I stretch neck or do yoga neck circles or lie in my left side the hissing sometimes  lessens or even goes away for a short time (minutes).  I do have some high frequency hearing loss, though.  \r\nEmail me with a referral?\r\nThanks!\r\nPaul',''),(4515,1,621,'11','Not yet, and I want to avoid the need for one in the future',''),(4516,1,621,'13','Google/Internet',''),(4517,1,621,'4','11am – 1pm',''),(4518,1,622,'6.3','Darrell',''),(4519,1,622,'2','mstacko26@gmail.com',''),(4520,1,622,'3','(562) 505-7380',''),(4521,1,622,'5','For Inquiry',''),(4522,1,622,'11','Not yet, and I want to avoid the need for one in the future',''),(4523,1,622,'13','Facebook',''),(4524,1,622,'4','Anytime',''),(4525,1,623,'6.3','Robert',''),(4526,1,623,'2','RobertBanfield@freshbooks.com',''),(4527,1,623,'3','(212) 308-0998',''),(4528,1,623,'5','Hello, \r\n\r\nYour website or a website that your company hosts is infringing on a copyright protected images owned by our company (freshbooks Inc.).\r\n\r\nTake a look at this document with the URLs to our images you utilized at www.drfields.com and our earlier publication to get the evidence of our copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://storage.googleapis.com/y8e4b6nv020vwz.appspot.com/d/files/sh/pub/s/0/filennoKwKKF9M81.html?h=797675615555461659  \r\n\r\nI believe you\'ve intentionally infringed our rights under 17 USC Sec. 101 et seq. and could be liable for statutory damage of up to $130,000 as set-forth in Sec. 504 (c) (2) of the Digital Millennium Copyright Act (DMCA) therein.\r\n\r\nThis letter is official notification. I demand the removal of the infringing materials described above. Take note as a service provider, the Digital Millennium Copyright Act demands you to remove or/and deactivate access to the infringing materials upon receipt of this letter. In case you do not stop the utilization of the aforementioned copyrighted materials a court action will likely be initiated against you.\r\n\r\nI have a good self-belief that utilization of the copyrighted materials mentioned above as presumably infringing is not permitted by the legal copyright proprietor, its agent, as well as laws.\r\n\r\nI swear, under penalty of perjury, that the information in this notification is correct and hereby affirm that I am permitted to act on behalf of the owner of an exclusive right that is allegedly violated.\r\n\r\n\r\nSincerely yours,\r\nRobert Banfield\r\nLegal Officer\r\nfreshbooks, Inc.\r\n\r\nfreshbooks.com\r\n\r\n\r\n03/10/2022',''),(4529,1,623,'11','Yes, and I want to avoid it if possible',''),(4530,1,623,'13','Friend/family who was/is a patient',''),(4531,1,623,'4','Anytime',''),(4532,1,624,'6.3','Michael',''),(4533,1,624,'2','mstokesjr@gmail.com',''),(4534,1,624,'3','(310) 437-3174',''),(4535,1,624,'5','For Inquiry',''),(4536,1,624,'11','Not yet, and I want to avoid the need for one in the future',''),(4537,1,624,'13','Referred by my doctor/provider',''),(4538,1,624,'4','Anytime',''),(4539,1,625,'6.3','KaymotdCog',''),(4540,1,625,'2','j.umandjikro@gmail.com',''),(4541,1,625,'3','(687) 304-7220',''),(4542,1,625,'5','Hi Brain. My new naked video, I enlarged my tits and ass, as you asked https://funny-dating.top/yotube/?u=wh5kd06&o=qxpp80k',''),(4543,1,625,'11','Not yet, and I want to avoid the need for one in the future',''),(4544,1,625,'13','Google/Internet',''),(4545,1,625,'4','Anytime',''),(4546,1,626,'6.3','Julie',''),(4547,1,626,'2','jmarcinak1@aol.com',''),(4548,1,626,'3','(305) 619-3692',''),(4549,1,626,'5','I’m interested in prolotherapy for treatment of a type 1 chiari malformation and c0-c2 instability causing chronic pain and a slew of other symptoms. I would like to get an appt as soon as possible and would also like information on pricing. Thanks!',''),(4550,1,626,'11','Yes, and I want to avoid it if possible',''),(4551,1,626,'13','Google/Internet',''),(4552,1,626,'4','Anytime',''),(4553,1,627,'6.3','Ryan',''),(4554,1,627,'2','ryana381@gmail.com',''),(4555,1,627,'3','(562) 599-9671',''),(4556,1,627,'5','Upper back and lower neck pain around c7-t1 for 3 years.',''),(4557,1,627,'11','Not yet, and I want to avoid the need for one in the future',''),(4558,1,627,'13','Google/Internet',''),(4559,1,627,'4','Anytime',''),(4560,1,628,'6.3','C arolyn oldani',''),(4561,1,628,'2','corky92641@yahoo.com',''),(4562,1,628,'3','(573) 480-7919',''),(4563,1,628,'5','Painful. Had it  years ago and I think a Dr. Responaded on my email as it being sciatica addiction',''),(4564,1,628,'11','Yes, and I want to avoid it if possible',''),(4565,1,628,'13','Google/Internet',''),(4566,1,628,'4','Anytime',''),(4567,1,629,'6.3','Abraham Berookhim',''),(4568,1,629,'2','aberookhim@aol.com',''),(4569,1,629,'3','(310) 901-5989',''),(4570,1,629,'5','Two of my shoulders rotating cuff do not have cartilage .By moving my hands one can hear cracking noise.  Bone on bone . I had advised to go for surgery but I would like to see Dr. Fields for stem cell.',''),(4571,1,629,'11','Yes, and I want to avoid it if possible',''),(4572,1,629,'13','Google/Internet',''),(4573,1,629,'4','Anytime',''),(4574,1,630,'6.3','Nick Mack',''),(4575,1,630,'2','nbmack@gmail.com',''),(4576,1,630,'3','(310) 213-6777',''),(4577,1,630,'5','Hi,\r\n\r\nDo you use prolotherapy for upper cervical instability?\r\n\r\nhttps://www.youtube.com/watch?v=VrJiJ0-LkoM\r\n\r\nI have many of the sypmtoms of UCI, including vertigo, tinnitus, headaches.\r\n\r\nNick',''),(4578,1,630,'11','Not yet, and I want to avoid the need for one in the future',''),(4579,1,630,'13','Google/Internet',''),(4580,1,630,'4','Anytime',''),(4581,1,631,'6.3','Nick Mack',''),(4582,1,631,'2','nbmack@gmail.com',''),(4583,1,631,'3','(310) 213-6777',''),(4584,1,631,'5','Hi,\r\n\r\nDo you use prolotherapy for upper cervical instability?\r\nhttps://www.youtube.com/watch?v=VrJiJ0-LkoM\r\n\r\nMy symptoms are neck pain, vertigo, neck pain and headaches.\r\n\r\nNick',''),(4585,1,631,'11','Not yet, and I want to avoid the need for one in the future',''),(4586,1,631,'13','Google/Internet',''),(4587,1,631,'4','Anytime',''),(4588,1,632,'6.3','Eric Jones',''),(4589,1,632,'2','eric.jones.z.mail@gmail.com',''),(4590,1,632,'3','(555) 555-1212',''),(4591,1,632,'5','Hey, this is Eric and I ran across drfields.com a few minutes ago.\r\n\r\nLooks great_ but now what?\r\n\r\nBy that I mean, when someone like me finds your website _ either through Search or just bouncing around _ what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment.\r\n\r\nHere_s an idea_\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site_\r\n \r\nYou can _\r\n  \r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou_ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don_t close a deal right away, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nPretty sweet _ AND effective.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=drfields.com',''),(4592,1,632,'11','Yes, and I want to avoid it if possible',''),(4593,1,632,'13','YouTube',''),(4594,1,632,'4','1pm – 3pm',''),(4595,1,633,'6.3','IsabellaBog',''),(4596,1,633,'2','isabellaBog@gmail.com',''),(4597,1,633,'3','(130) 053-3875',''),(4598,1,633,'11','Not yet, and I want to avoid the need for one in the future',''),(4599,1,633,'13','Friend/family who was/is a patient',''),(4600,1,633,'4','Anytime',''),(4601,1,634,'6.3','LinaWita',''),(4602,1,634,'2','linaWita@aol.com',''),(4603,1,634,'3','(323) 254-8807',''),(4604,1,634,'11','Not yet, and I want to avoid the need for one in the future',''),(4605,1,634,'13','Facebook',''),(4606,1,634,'4','Anytime',''),(4607,1,635,'6.3','Jonah',''),(4608,1,635,'2','jlacanilao8@gmail.com',''),(4609,1,635,'3','(310) 715-9917',''),(4610,1,635,'5','My mother has just been told she needs a reverse shoulder replacement. She has bilateral frozen shoulders from 20+ years of carrying mail and was struck by a car in an auto vs pedestrian accident which fractured her proximal humerus. She was recently told that her right glenoid has been worn down so severely that soon there will not be enough bone to even perform the reverse shoulder replacement. I\'d like to speak about the potential for stem cell therapy in my mother\'s case.',''),(4611,1,635,'11','Yes, and I want to avoid it if possible',''),(4612,1,635,'13','Google/Internet',''),(4613,1,635,'4','9am – 11am',''),(4614,1,636,'6.3','Joy Douglas',''),(4615,1,636,'2','joyd.mozwebmedia@gmail.com',''),(4616,1,636,'3','(773) 453-2244',''),(4617,1,636,'5','Hello,\r\n \r\nI found your details on Google and I have looked at your website and realized your website is in a great design but your website ranking is not good for all search engines Google, Yahoo, and Bing.\r\n \r\nWe can place your website on Google\'s 1st page. Yahoo, Bing, and all search engines.).\r\n\r\nMay I send you a SEO Packages and price list ? If interested.\r\n\r\nThanks & regards,\r\n \r\nJoy Douglas\r\n\r\nP.S. If you prefer I don’t write to you again, please let me know.',''),(4618,1,636,'11','Not yet, and I want to avoid the need for one in the future',''),(4619,1,636,'13','Facebook',''),(4620,1,636,'4','Anytime',''),(4621,1,637,'6.3','CatherinaWita',''),(4622,1,637,'2','catherinaWita@gmail.com',''),(4623,1,637,'3','(586) 500-8882',''),(4624,1,637,'11','Not yet, and I want to avoid the need for one in the future',''),(4625,1,637,'13','I am a current patient/was a patient previously',''),(4626,1,637,'4','Anytime',''),(4627,1,638,'6.3','Kenneth Gonzales',''),(4628,1,638,'2','knnygnzls@verizon.net',''),(4629,1,638,'3','(626) 274-6844',''),(4630,1,638,'5','Was in a car  accident four years ago. Been having pain in my neck. Having  headaches daily. Having problems with my balance. Driving on the freeway is extremely hard. I was told i have arthritis in my neck and back. I also have a bulging disc and Hernia disc in my back and neck. I also have cyst that are under my spine. Maybe pinch nerve. My nervous system and Vagus nerve might be damage.',''),(4631,1,638,'11','Not yet, and I want to avoid the need for one in the future',''),(4632,1,638,'13','Google/Internet',''),(4633,1,638,'4','Anytime',''),(4634,1,639,'6.3','Jake Passi',''),(4635,1,639,'2','jakepassi@gmail.com',''),(4636,1,639,'3','(805) 222-6892',''),(4637,1,639,'5','I really need some help diagnosing what is wrong with me. I\'ve seen 10+ doctors in Bangkok including 3 chiropractors and still no one knows what the problem is. It started spontaneously about 10 weeks ago. My symptoms are:\r\n\r\n1. Pain and discomfort in the back of my neck, my left shoulder and trapezius, and sometimes around my upper thoracic spine. The vertebrae in the back of my neck (C5-C7) almost always feel tender and sore when pressed.\r\n2. Numbness in my hands and fingers, and sometimes my right forearm and bicep. The numbness is worse in my right hand and arm. I\'m also starting to get electric shock type feelings in my hands on both sides. The numbness tends to happen when I\'m teaching at my computer in a chair without a headrest for longer than 30 minutes. The numbness usually starts in my pinky and ring finger in my right hand and spreads to my whole hand and forearm/bicep if I continue sitting at my computer longer than that. I also sometimes wake up in the middle of the night with numb hands. Usually, I\'ll be sleeping on my left side and my right hand will be numb, but sometimes I\'ll be sleeping on my right side and my left hand will be numb. I also sometimes experience numbness in my hands and fingers when laying down on the sofa while using my phone.\r\n3. Discomfort when swallowing (occasionally).\r\n4. Difficulty breathing (rarely).\r\n5. My neck feels unstable and I feel like it constantly needs self-adjusting to be in proper alignment. Certain bones often feel out of place or locked and I feel like one or more of them are impinging my nerve roots and/or spinal cord when I sit or sleep in certain positions. My neck seems to be the most stable when standing but does start to feel like it\'s about to give out after a few hours and my right forearm starts to get numb along with my right hand and my left hand a little bit too.\r\n\r\nAccording to the doctors and physiotherapists I\'ve seen, I have:\r\n\r\n1. Mild bulging discs at C5/C6 and C6/C7 but no sign of spinal cord or nerve root compression.\r\n2. Hypermobile joints in the middle of my neck (maybe C2 to C6).\r\n3. Extremely tight hamstrings.\r\n4. Weak rhomboids.\r\n5. Large knots in my scapula muscles (which have become much smaller thanks to my physiotherapist).\r\n6. A large bone spur on the front left side of my neck at C5/C6 (which can be seen in the CT scan below). Some doctors think it is totally benign. Others think it may be causing at least some of my symptoms.\r\n7. Reversed curvature of my neck.\r\n\r\nHistory: When I was 12 I was assaulted by my wrestling coach. He picked me up over his shoulders and dropped me upside-down on my head. I blacked out and woke up being carried home by my friend. X-rays didn\'t show any broken bones but I think this injury caused the bulging discs and it may have caused the bone spur to form. I have dealt with neck pain and muscle tension in my neck and back on and off over the years ever since then.\r\n\r\nBased on my research and consultations with various doctors, here are some of the possible diagnoses:\r\n\r\n1. Pinched spinal cord due to bulging discs at C5/C6 and/or C6/C7.\r\n2. Pinched nerve roots due to bulging discs at C5/C6 and/or C6/C7.\r\n3. Facet joint syndrome/dysfunction/sprain.\r\n4. Thoracic outlet syndrome.\r\n5. Some form of cervical instability due to hypermobile joints and/or weak neck muscles.\r\n6. Disc micro-injury.\r\n7. Nerve damage.\r\n8. Sprained ligament(s).\r\n\r\nHere are the scans and tests I\'ve done so far:\r\n\r\n1. X-ray of c-spine.\r\n2. Flexion-extension x-ray of c-spine.\r\n3. MRI of c-spine.\r\n4. Flexion-extension MRI of c-spine.\r\n5. Muscoskeletal ultrasound of posterior neck (results normal).\r\n6. Nerve test (results normal).\r\n7. Carpal tunnel test (results normal).\r\n8. MRI of brachial plexuses with contrast.\r\n\r\nHere\'s a link to a Google Drive folder containing all the scans and medical reports I\'ve gotten over the past 9 weeks:\r\n\r\nhttps://drive.google.com/drive/folders/1B6BzbESY9lbgdVqDU0oWLsIUmvAlCyQP\r\n\r\nHere are some the things which reduce my symptoms:\r\n\r\n1. Yoga.\r\n2. Jogging on my treadmill followed by hot epsom salt baths.\r\n3. Swimming.\r\n4. Cervical traction (but it\'s difficult for me to do it with an over-the-door device without hurting myself).\r\n5. Cervical distraction adjustment (pulling the head upward off the shoulders).\r\n6. Heating pad.\r\n7. Massage.\r\n\r\nWhat do you think it could be? Can you recommend another test I should get? Can you recommend a treatment? Do you think prolotherapy can help me? Should I come to your center? I\'m not sure if I can get prolotherapy in the neck in Thailand and I can\'t find a hospital or imaging center which does digital motion x-rays. Any help would be greatly appreciated. Thank you so much 🙏',''),(4638,1,639,'11','Yes, and I want to avoid it if possible',''),(4639,1,639,'13','Google/Internet',''),(4640,1,639,'4','Anytime',''),(4641,1,640,'6.3','Patricia',''),(4642,1,640,'2','preed.rwsp@gmail.com',''),(4643,1,640,'3','(949) 701-7229',''),(4644,1,640,'5','For Inquiry',''),(4645,1,640,'11','Not yet, and I want to avoid the need for one in the future',''),(4646,1,640,'13','Another healthcare website',''),(4647,1,640,'4','3pm – 5pm',''),(4648,1,641,'6.3','JIMMY',''),(4649,1,641,'2','jhornsby3@yahoo.com',''),(4650,1,641,'3','(850) 685-5780',''),(4651,1,641,'5','apple',''),(4652,1,641,'11','Not yet, and I want to avoid the need for one in the future',''),(4653,1,641,'13','Friend/family who was/is a patient',''),(4654,1,641,'4','11am – 1pm',''),(4655,1,642,'6.3','Thomas R. Smart',''),(4656,1,642,'2','tsmartssa@gmail.com',''),(4657,1,642,'3','(805) 338-2740',''),(4658,1,642,'5','Chronic Pain: \r\n1)	Right Knee  X-ray 03/2022\r\nOsteoarthritis (Grade 3 degenerative changes)\r\n\r\n2)	Right Shoulder X-ray 01/2021\r\nModerate to severe bilateral glenohumeral and acromioclavicular Osteoarthritis, worse compared to 2014. There is calcific tendinitis in both shoulders, right worse than left. \r\n\r\n3)	Low Back  \r\n     MRI 08/2019                                                        \r\nBilateral L5 spondylolysis with a with an approximately 15 mm, grade 2 spondylolisthesis.',''),(4659,1,642,'11','Not yet, and I want to avoid the need for one in the future',''),(4660,1,642,'13','Google/Internet',''),(4661,1,642,'4','1pm – 3pm',''),(4662,1,643,'6.3','NataliaSon',''),(4663,1,643,'2','nataliaSon@gmail.com',''),(4664,1,643,'3','(447) 105-4177',''),(4665,1,643,'5','Hello аll, guуѕǃ I know, mу meѕѕage maу bе too ѕpecific,\r\nBut mу sіѕter fоund nіcе man hеrе аnd theу marrіed, ѕo hоw аbоut mе?ǃ :)\r\nI аm 25 уeаrѕ old, Natаlіа, from Ukrainе, I know Еnglіsh аnd German lаnguаgеѕ alѕo\r\nАnd... I havе speсіfic diѕeаsе, nаmеd nуmрhomania. Ԝho know what іѕ thіѕ, can undеrstand mе (bеttеr tо saу іt іmmediаtеlу)\r\nAh yеѕ, Ι cook very tastу! аnd I love not onlу cook ;))\r\nΙm rеаl girl, not рrоѕtitutе, аnd lооkіng fоr sеrious and hоt relationѕhіp...\r\nАnуway, уоu сan find mу рrofіle hеrе: http://alstagdipadyju.tk/user/44497/',''),(4666,1,643,'11','Not yet, and I want to avoid the need for one in the future',''),(4667,1,643,'13','Friend/family who was/is a patient',''),(4668,1,643,'4','Anytime',''),(4669,1,644,'6.3','Robert Browning',''),(4670,1,644,'2','browning@targetpatientsmd.com',''),(4671,1,644,'3','(800) 214-2247',''),(4672,1,644,'5','I was on your website and noticed you offer Erectile Dysfunction treatments. We can provide your practice with 2-3 new highly qualified consultations each week. Can you handle this additional volume? Our program is performance based so we lower your risk. Schedule a call and eliminate the competition:  https://calendly.com/robert-browning-strategy-call/15min   100% HIPAA Compliant. References available :) Best,  Robert Browning     TargetPatientsMD.com... (800) 214-2247',''),(4673,1,644,'11','Not yet, and I want to avoid the need for one in the future',''),(4674,1,644,'13','Google/Internet',''),(4675,1,644,'4','Anytime',''),(4676,1,645,'6.3','Julie',''),(4677,1,645,'2','jnewmar@verizon.net',''),(4678,1,645,'3','(310) 476-2779',''),(4679,1,645,'5','piriformis muscle/nerve pain since Monday 3/14/22\r\nI\'m taking Tramadol \r\nI am hoping to get cortisone injection so I can properly exercise out of this severe pain\r\nI live in the neighborhood.\r\nMy main doctor is in Long Beach, too far to drive.\r\nYour expertise is exactly what I need.\r\nI am an athlete, was a dancer, 88 years old, very healthy otherwise.\r\nPlease, please see me.',''),(4680,1,645,'11','Not yet, and I want to avoid the need for one in the future',''),(4681,1,645,'13','Google/Internet',''),(4682,1,645,'4','Anytime',''),(4683,1,646,'6.3','Fountain yount',''),(4684,1,646,'2','fountainyount@me.com',''),(4685,1,646,'3','(213) 479-0135',''),(4686,1,646,'5','Left knee meniscus',''),(4687,1,646,'11','Not yet, and I want to avoid the need for one in the future',''),(4688,1,646,'13','Google/Internet',''),(4689,1,646,'4','Anytime',''),(4690,1,647,'6.3','Eric Jones',''),(4691,1,647,'2','eric.jones.z.mail@gmail.com',''),(4692,1,647,'3','(555) 555-1212',''),(4693,1,647,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://talkwithwebtraffic.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://talkwithwebtraffic.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=drfields.com',''),(4694,1,647,'11','Yes, and I want to avoid it if possible',''),(4695,1,647,'13','Another healthcare website',''),(4696,1,647,'4','9am – 11am',''),(4697,1,648,'6.3','Gloria Coleman',''),(4698,1,648,'2','gloriacoleman52@gmail.com',''),(4699,1,648,'3','(510) 239-8792',''),(4700,1,648,'11','Yes, and I want to avoid it if possible',''),(4701,1,648,'4','Anytime',''),(4702,1,649,'6.3','Rick Gimenez',''),(4703,1,649,'2','rickgim@msn.com',''),(4704,1,649,'3','(562) 889-2633',''),(4705,1,649,'5','Had shoulder surgery several years ago for torn labrum. Dr cleaned up labrum and shaved bone spurs but didn\'t put in anchors because Cartlidge had been worn off. Therapy and stretching has helped over the years but pain is becoming worse. Hoping to avoid shoulder replacement.',''),(4706,1,649,'11','Not yet, and I want to avoid the need for one in the future',''),(4707,1,649,'13','Referred by my doctor/provider',''),(4708,1,649,'4','Anytime',''),(4709,1,650,'6.3','AlenaSl',''),(4710,1,650,'2','alenaSl@aol.com',''),(4711,1,650,'3','(641) 453-1844',''),(4712,1,650,'11','Not yet, and I want to avoid the need for one in the future',''),(4713,1,650,'13','Google/Internet',''),(4714,1,650,'4','Anytime',''),(4715,1,651,'6.3','Russell Albano',''),(4716,1,651,'2','manny.albano@yahoo.com',''),(4717,1,651,'3','(415) 497-4834',''),(4718,1,651,'5','I had a severe shoulder injury 16 months ago, with a re-injury 12months ago. The injury took place due to a combination of overtraining, followed by an injury during a fire department training exercise. My recovery has plateaued. Former athlete but limited to running currently. Workers comp md has now suggested neck and or shoulder surgery. Id like to avoid that. Im 32 years old currently.',''),(4719,1,651,'11','Yes, and I want to avoid it if possible',''),(4720,1,651,'13','Friend/family who was/is a patient',''),(4721,1,651,'4','Anytime',''),(4722,1,652,'6.3','Oz Lerma',''),(4723,1,652,'2','ousvaldolerma@yahoo.com',''),(4724,1,652,'3','(562) 843-8883',''),(4725,1,652,'5','Knee arthritis',''),(4726,1,652,'11','Not yet, and I want to avoid the need for one in the future',''),(4727,1,652,'13','Google/Internet',''),(4728,1,652,'4','Anytime',''),(4729,1,653,'6.3','Brittney lloyd',''),(4730,1,653,'2','bgaylordson@aol.com',''),(4731,1,653,'3','(843) 250-7519',''),(4732,1,653,'5','On February 5th of this year (3 weeks after having a baby) I went to a chiropractor… I went that morning by that evening I was having severe base of skull/neck pain. Over the next few days it progressed to severe head pressure in my forehead and temples and nose, nausea, cognitive decline, phantom smells , tachycardia etc. I thought I was dying, not so sure I’m still not. I’ve been hospitalized a week TWICE in the last 7 weeks - everytime I take a step with my left leg I get a crinkle sound in my neck on that side. Left ear gets muffled when upright, the pressure pain starts in left temple when upright .. only way I get any relief is laying on my left side w my head propped up… I’ve had extensive testing the only thing found is stenosis in my cervical area and my left “pica is diminutive” … idk what that means all I know is I’m watching my kids love their life from my bedroom . I’m exhausted looking for help and answers. My symptoms come on as soon as I leave the laying on my left side position… I’ve got a newborn I’m missing out on… I’m halfway homeschooling my boys from the bed.. my husband keeps missing work to come home to help me. I never in a million years imagined something like this would happen to me, I’m a former Zumba instructor I had just graduated a phlebotomy class… now I’m bedridden w three kids and no job. I desperately need help. I’m willing to travel. I can be on a plane today to someone that could help me. Please help me get  my life back for my husband and kids',''),(4733,1,653,'11','Not yet, and I want to avoid the need for one in the future',''),(4734,1,653,'13','Google/Internet',''),(4735,1,653,'4','Anytime',''),(4736,1,654,'6.3','Jacqueline Oderkirk',''),(4737,1,654,'2','jckode61@gmail.com',''),(4738,1,654,'3','(970) 394-4074',''),(4739,1,654,'5','Tailbone removed in 1985. Last three discs flattening, vertebrae rubbing. Recent car accident in 2018. Slip and fall on ice and hit head on small propane tank rim.  Have been hospitalized for whiplash years ago. Pain in neck and between upper shoulders on spine.',''),(4740,1,654,'11','Not yet, and I want to avoid the need for one in the future',''),(4741,1,654,'13','Google/Internet',''),(4742,1,654,'4','3pm – 5pm',''),(4743,1,655,'6.3','Jose',''),(4744,1,655,'2','JoseGary@netsuite.com',''),(4745,1,655,'3','(718) 141-6604',''),(4746,1,655,'5','Hello, \r\n\r\nYour website or a website that your organization hosts is violating the copyright protected images owned by our company (netsuite Inc.).\r\n\r\nTake a look at this document with the hyperlinks to our images you utilized at www.drfields.com and our earlier publication to obtain the evidence of our copyrights.\r\n\r\nDownload it now and check this out for yourself:\r\n\r\nhttps://storage.googleapis.com/obf2d1zfty6ck4.appspot.com/d/files/sh/pub/s/0/fileiFHzqo31r9Ua.html?l=090085042496103624  \r\n\r\nI do believe you\'ve intentionally violated our rights under 17 U.S.C. Section 101 et seq. and can be liable for statutory damages as high as $130,000 as set-forth in Section 504(c)(2) of the Digital millennium copyright act (”DMCA”) therein.\r\n\r\nThis message is official notification. I demand the elimination of the infringing materials mentioned above. Please take note as a service provider, the Dmca requires you to remove and terminate access to the infringing materials upon receipt of this letter. If you do not stop the utilization of the previously mentioned infringing content a lawsuit can be started against you.\r\n\r\nI have a good self-belief that utilization of the copyrighted materials referenced above as presumably infringing is not approved by the copyright proprietor, its legal agent, as well as legislation.\r\n\r\nI swear, under penalty of perjury, that the information in this letter is accurate and hereby affirm that I am authorized to act on behalf of the proprietor of an exclusive and legal right that is presumably infringed.\r\n\r\n\r\nVery truly yours,\r\nJose Gary\r\nLegal Officer\r\nnetsuite, Inc.\r\n\r\nnetsuite.com\r\n\r\n\r\n04/01/2022',''),(4747,1,655,'11','Yes, and I want to avoid it if possible',''),(4748,1,655,'13','YouTube',''),(4749,1,655,'4','3pm – 5pm',''),(4750,1,656,'6.3','Julie Newmar',''),(4751,1,656,'2','jnewmar@verizon.net',''),(4752,1,656,'3','(310) 476-2779',''),(4753,1,656,'5','I was a dancer, previously in great health but with 2 recent bouts of Piriformis syndrome involving formidable pain (April 2020 and March 2022).\r\nDo you do Epidural shots? I understand they can keep me out of pain for 2 months.\r\nI\'m interested in stem cell therapy or whatever you recommend to keep me out of pain.\r\nEmail to follow with attachment of MRI (11/27/2020).',''),(4754,1,656,'11','Not yet, and I want to avoid the need for one in the future',''),(4755,1,656,'13','Google/Internet',''),(4756,1,656,'4','Anytime',''),(4757,1,657,'6.3','Aida Alvarez',''),(4758,1,657,'2','aidaaael@gmail.com',''),(4759,1,657,'3','(323) 960-3540',''),(4760,1,657,'5','I want to get Prolotherapy.   I need to know how much per injection.\r\nThe above is my work phone.  I am currently at home.  I do not have any other contact number.  It is best to email me. \r\nThank you.   \r\nAida',''),(4761,1,657,'11','Not yet, and I want to avoid the need for one in the future',''),(4762,1,657,'13','Google/Internet',''),(4763,1,657,'4','Anytime',''),(4764,1,658,'6.3','Nita Visrodia',''),(4765,1,658,'2','nitav2004@yahoo.com',''),(4766,1,658,'3','(909) 859-5503',''),(4767,1,658,'5','My right knee was hurting for a month so went to see orthodontist and found out from mri that I have meniscus tear. Doctor has recommended PT , if does not help then arthroscopy. I want to know how can you help me getting better with out surgery. Thank you',''),(4768,1,658,'11','Not yet, and I want to avoid the need for one in the future',''),(4769,1,658,'13','Google/Internet',''),(4770,1,658,'4','Anytime',''),(4771,1,659,'6.3','Mare Simone',''),(4772,1,659,'2','maresimone@gmail.com',''),(4773,1,659,'3','(323) 903-7713',''),(4774,1,659,'5','I have spinal stenosis of the low lumbar region. I\'m 67 and it is somewhat manageable but I want it to go, so wondering if your prolotherapy can be helpful for this condition? How many sessions might it take? \r\n Thanks for your time.',''),(4775,1,659,'11','Not yet, and I want to avoid the need for one in the future',''),(4776,1,659,'13','Google/Internet',''),(4777,1,659,'4','Anytime',''),(4778,1,660,'6.3','Rosemary Franklin',''),(4779,1,660,'2','rosemaryfranklin1060@gmail.com',''),(4780,1,660,'3','(909) 704-2411',''),(4781,1,660,'5','I have not had surgery on my back but I have had surgery on my left hip because of the car accident I was in and I\'m in a need for another surgery because I slip and fell in the house I used to live in and it really messed me up so bad my leg feel like it\'s about to just pull off the off my body I am being crucial pain back pain leg pain cruiser pain I really need some help can you please help me',''),(4782,1,660,'11','Yes, and I want to avoid it if possible',''),(4783,1,660,'13','Google/Internet',''),(4784,1,660,'4','9am – 11am',''),(4785,1,661,'6.3','DJDonaldabnom',''),(4786,1,661,'2','suzannebaier@tele2.nl',''),(4787,1,661,'3','(827) 354-5882',''),(4788,1,661,'5','Fans that helps you gain full access to exclusive electronic. https://0daymusic.org \r\n* Reseller payment method: Neteller, Bitcoin, Skrill, Webmoney, Perfect Money \r\n* Choose payment method: BitCoin, Bank wire, Western Union \r\n* Server\'s capacity: 230 TB MP3, FLAC ,LIVESETS, Music Videos. \r\n* Account delivery time: 1 to 48 hours. \r\n* IP restrictions: 3 IP addresses per user at the same time. \r\n* More 14 years Of Archives. \r\n* Overal server\'s speed: 1 Gb/s. \r\n* Easy to use: Most of genres are sorted by days. \r\nList: https://0daymusic.org/FTPtxt/ \r\n \r\nBest regards, DJDonald',''),(4789,1,661,'11','Not yet, and I want to avoid the need for one in the future',''),(4790,1,661,'13','Google/Internet',''),(4791,1,661,'4','Anytime',''),(4792,1,662,'6.3','Julie',''),(4793,1,662,'2','jnewmar@verizon.net',''),(4794,1,662,'3','(310) 476-2779',''),(4795,1,662,'5','Ally,   Thank you for trying at UCLA Pain clinic,\r\nI now have an appointment this Friday with Dr Irene Woo.\r\nWhen is my appointment with Dr Fields?\r\nJulie Newmar\r\nemail me please',''),(4796,1,662,'11','Not yet, and I want to avoid the need for one in the future',''),(4797,1,662,'4','Anytime',''),(4798,1,663,'6.3','Carrie Wong',''),(4799,1,663,'2','cwong388@gmail.com',''),(4800,1,663,'3','(510) 332-3341',''),(4801,1,663,'5','Hi, I am reaching out to get your rates for prolotherapy. I current receive injections in my feet/ankle/anterior tibialis because I am prone to injuries in those areas. My doctor is located in Portland, OR so I am looking for new doctor in Los Angeles, which is where I currently live now.\r\n\r\nThanks!',''),(4802,1,663,'11','Not yet, and I want to avoid the need for one in the future',''),(4803,1,663,'13','Google/Internet',''),(4804,1,663,'4','Anytime',''),(4805,1,664,'6.3','edgar cano',''),(4806,1,664,'2','edgarcano1766@gmail.com',''),(4807,1,664,'3','(562) 539-6010',''),(4808,1,664,'5','C6-C7: There is a 5 mm subarticular/foraminal disc protrusion\r\nmeasuring about 8 mm craniocaudal and 5 mm AP which indents the\r\nventral thecal sac and causes severe right foraminal narrowing.\r\nThere is mild spinal canal stenosis. No significant left\r\nneuroforaminal stenosis.',''),(4809,1,664,'11','Not yet, and I want to avoid the need for one in the future',''),(4810,1,664,'13','Google/Internet',''),(4811,1,664,'4','1pm – 3pm',''),(4812,1,665,'6.3','Derek Smith',''),(4813,1,665,'2','jazzy1323@icloud.com',''),(4814,1,665,'3','(779) 970-7419',''),(4815,1,665,'5','INQ',''),(4816,1,665,'11','Not yet, and I want to avoid the need for one in the future',''),(4817,1,665,'13','Facebook',''),(4818,1,665,'4','9am – 11am',''),(4819,1,666,'6.3','Eric Jones',''),(4820,1,666,'2','eric.jones.z.mail@gmail.com',''),(4821,1,666,'3','(555) 555-1212',''),(4822,1,666,'5','Hey there, I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE https://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=drfields.com',''),(4823,1,666,'11','Yes, and I want to avoid it if possible',''),(4824,1,666,'13','Another healthcare website',''),(4825,1,666,'4','9am – 11am',''),(4826,1,667,'6.3','salvador g soto',''),(4827,1,667,'2','salvadorsoto91@gmail.com',''),(4828,1,667,'3','(310) 629-2395',''),(4829,1,667,'11','Yes, and I want to avoid it if possible',''),(4830,1,667,'13','Google/Internet',''),(4831,1,667,'4','9am – 11am',''),(4832,1,668,'6.3','Renee Ivory',''),(4833,1,668,'2','Mesoskinny@gmail.com',''),(4834,1,668,'3','(951) 956-7284',''),(4835,1,668,'5','I tore my meniscus at work about 5 years ago. Initially the doctor suggested surgery . But now he’s saying possibly a shot might help with this because it might also have arthritis involved.',''),(4836,1,668,'11','Yes, and I want to avoid it if possible',''),(4837,1,668,'13','Google/Internet',''),(4838,1,668,'4','Anytime',''),(4839,1,669,'6.3','MAYRA G OLIVERA',''),(4840,1,669,'2','mayragpe@yahoo.com',''),(4841,1,669,'3','(310) 408-3621',''),(4842,1,669,'5','Tinnitus, feeling dizzy and ear fullness',''),(4843,1,669,'11','Not yet, and I want to avoid the need for one in the future',''),(4844,1,669,'13','Google/Internet',''),(4845,1,669,'4','Anytime',''),(4846,1,670,'6.3','patricia sinclair',''),(4847,1,670,'2','sinclairpls@yahoo.ca',''),(4848,1,670,'3','(998) 897-0070',''),(4849,1,670,'5','I live in Cuernavaca and hour from Mexico City.  My wrist has been evaluated by Xray and ultrasound and a hand/wrist surgeon in Mexico City.  I have two ligament tears, bones out of place, worn cartilage and arthritis.  I am a competitive tennis player and would like to try to rehabilitate my wrist without surgery which the surgeon agrees is possible. Do you know of a therapist who can deliver excellent quality prolotherapy in either Cuernavaca or Mexico City?  I would greatly appreciate any references you have available.\r\nThank you !\r\n***The telephone number above is Mexican so email would be best',''),(4850,1,670,'11','Not yet, and I want to avoid the need for one in the future',''),(4851,1,670,'13','Google/Internet',''),(4852,1,670,'4','Anytime',''),(4853,1,671,'6.3','MICHELLE	DENNIS',''),(4854,1,671,'2','MICHELLE.DENNIS@GMAIL.COM',''),(4855,1,671,'3','(502) 649-5550',''),(4856,1,671,'5','s',''),(4857,1,671,'11','Not yet, and I want to avoid the need for one in the future',''),(4858,1,671,'13','Google/Internet',''),(4859,1,671,'4','9am – 11am',''),(4860,1,672,'6.3','Ashley Trester',''),(4861,1,672,'2','ashley@spectraclinical.com',''),(4862,1,672,'3','(949) 662-8813',''),(4863,1,672,'5','Good afternoon,\r\n\r\nI am emailing you regarding your toxicology samples. Are you happy with your current laboratory? Spectra Clinical Lab is a local lab and we are here to help with your drug testing and covid testing needs! Since we are a boutique lab, we are able to better serve you and provide much more extensive customer service than LabCorp or Quest.  Additionally, our drivers are available to pick up samples daily. Please give me a call to set up a meeting. I would love to hear more about what you are looking for and how we can help. Thanks!\r\n\r\nAshley Trester \r\nLaboratory Specialist\r\nashley@spectraclinical.com\r\ncell: (949) 662- 8813\r\n\r\nSpectra Clinical Laboratory\r\n20655 S. Western Ave. Suite 105\r\nTorrance, CA, 90501',''),(4864,1,672,'11','Not yet, and I want to avoid the need for one in the future',''),(4865,1,672,'4','Anytime',''),(4866,1,673,'6.3','Fallon',''),(4867,1,673,'2','fallinlivingston@gmail.com',''),(4868,1,673,'3','(310) 283-9711',''),(4869,1,673,'5','When I was 13 I was diagnosed with abnormally formed L4 andL5 with a mild tethered spinal cord by A UC Davis Neurologist. No tx was recommended, when I became full height the numbness would go away. It did go away. I work as a Periodontist all day bending towards the left and rotating in surgery for hours at a time. After doing jump squats I hurt may back and had numbness down my left leg and shin. After 4 weeks and a medrol dosepak at day 5 symptoms started to go away.  Prior to my back I have had instability in my left leg which had improved with strengthening my inner thigh and glutes, I still get pain and instability with a lot of work or when I miss exercise. My left SI also hurts a lot. I want to avoid surgery and see if I’m a candidate for prolotherapy or other regenerative injections.  I’d like to be treated by an MD.',''),(4870,1,673,'11','Not yet, and I want to avoid the need for one in the future',''),(4871,1,673,'13','Google/Internet',''),(4872,1,673,'4','Anytime',''),(4873,1,674,'6.3','Theresa M Yakjey',''),(4874,1,674,'2','yakjeyterry@gmail.com',''),(4875,1,674,'3','(760) 315-5541',''),(4876,1,674,'5','I have type 2 diabetes and over the years I have not been able to control high blood sugars, with that being said I developed neuropathy which then caused me to develope foot drop in my right leg, I have had this condition for about 8 years. I am tired of falling, not being able to walk correctly. I am on 57 years old and I am embarrassed of this condition. Can you please help me? Help me walk again. Thank you.',''),(4877,1,674,'11','Not yet, and I want to avoid the need for one in the future',''),(4878,1,674,'13','Google/Internet',''),(4879,1,674,'4','Anytime',''),(4880,1,675,'6.3','Tricia L Trenary',''),(4881,1,675,'2','trenary@hotmail.com',''),(4882,1,675,'3','(540) 547-6407',''),(4883,1,675,'5','Rotor cuff injury, damaged bursa viewed on MRI. Looking for recovery without surgery, already tried PT and was uneventful.',''),(4884,1,675,'11','Not yet, and I want to avoid the need for one in the future',''),(4885,1,675,'13','Google/Internet',''),(4886,1,675,'4','Anytime',''),(4887,1,676,'6.3','KaybardCog',''),(4888,1,676,'2','sanja.filat.ov.yg99.s@gmail.com',''),(4889,1,676,'3','(113) 333-7715',''),(4890,1,676,'5','Play and fuck virtually right now https://adultgames.life/?u=wh5kd06&o=qxhpmex',''),(4891,1,676,'11','Not yet, and I want to avoid the need for one in the future',''),(4892,1,676,'13','Google/Internet',''),(4893,1,676,'4','Anytime',''),(4894,1,677,'6.3','Ed Michaels',''),(4895,1,677,'2','edmichaels10@yahoo.com',''),(4896,1,677,'3','(805) 300-8302',''),(4897,1,677,'5','I’m having throbbing, cold, burning sensation in both of my feet. Could be back related nerves, sciatica circulation, neuropathy. Whatever it is it’s very hard to walk when the feet and toes are inflammed. I do have osteoarthritis of my feet. I’m an athlete and know the difference between muscle pain and nerve pain. The feet are my primary concern. Two neuro emg’s = Lumbar S1',''),(4898,1,677,'11','Yes, and I want to avoid it if possible',''),(4899,1,677,'13','Friend/family who was/is a patient',''),(4900,1,677,'4','Anytime',''),(4901,1,678,'6.3','Alan Bonde',''),(4902,1,678,'2','abonde993@gmail.com',''),(4903,1,678,'3','(310) 270-5305',''),(4904,1,678,'5','I am scheduled for a cortisone epidural injection....regardless if this procedure is successful or not, my concern is what the future holds for my lower back.',''),(4905,1,678,'11','Not yet, and I want to avoid the need for one in the future',''),(4906,1,678,'13','Referred by my doctor/provider',''),(4907,1,678,'4','Anytime',''),(4908,1,679,'6.3','Lalit K',''),(4909,1,679,'2','LKJESQ@LKJESQ.COM',''),(4910,1,679,'3','(718) 316-5921',''),(4911,1,679,'5','At 77, I may need your therapy for my hip joints.  Thanks.',''),(4912,1,679,'11','Not yet, and I want to avoid the need for one in the future',''),(4913,1,679,'13','Friend/family who was/is a patient',''),(4914,1,679,'4','Anytime',''),(4915,1,680,'6.3','Nellie-Ann Capra',''),(4916,1,680,'2','nella.capra@gmail.com',''),(4917,1,680,'3','(310) 779-7564',''),(4918,1,680,'5','Hello, \r\n\r\nI left a message to hopefully schedule a phone/video phone conversation to discuss my condition. I don\'t live close so I was hoping to do a video call / phone consultation before determining next steps for treatment. I have x-rays from my MD. I am exploring PRP/ Prolotherapy for Planters Fasciitis and my stiff calf pain on both legs. I have much chronic back/neck pains from for about 20yrs as a result of accidents. Dr. Ivan A. Sanchez from Arch of Life Chiropractic clinic referred me as he is currently treating my back/neck condition. My primary concern right now is to cure my stiff calf and Planters Fasciitis extreme  pain as its unbearable to sleep and function.',''),(4919,1,680,'11','Not yet, and I want to avoid the need for one in the future',''),(4920,1,680,'13','Referred by my doctor/provider',''),(4921,1,680,'4','3pm – 5pm',''),(4922,1,681,'6.3','Robertnob',''),(4923,1,681,'2','kriv.aza@yandex.ru',''),(4924,1,681,'3','(701) 637-5017',''),(4925,1,681,'5','NFTs are distinctive from ERC-twenty tokens, like DAI or Hyperlink, in that every individual token is totally special and isn\'t divisible. NFTs give a chance to assign or assert ownership of any special bit of digital facts, trackable through the use of Ethereum\'s blockchain for a general public ledger. \r\n \r\nThese selections might get you paid for all your effort just after minting, but figuring out which 1 will be the larger payout may be a crapshoot. So what is healthier for your NFT, an auction or a hard and fast price? \r\n \r\nDeciding on the auction will depend on what situation you are in. Acquire your time and play the many angles to attempt to decide on the most effective sort of sale. This is important, and the above mentioned examples need to guideline you to question the proper questions to learn which of the kinds will display essentially the most accomplishment for you. \r\n \r\nAn NFT is a digital asset that exists entirely from the digital universe—you may’t touch it, however you can possess it. An NFT is often any type of digital file: an artwork, an report, audio or perhaps a meme for instance “Catastrophe Lady”, the original Image of which marketed for $500k earlier this yr. \r\n \r\nThe collector did not immediately respond to multiple requests for comment throughout the auction house and social networking. On Twitter, 0x650d posted two cryptic messages in regards to the auction. \r\n \r\n<a href=https://www.instagram.com/cifrisnft/>nft mystery box</a> \r\n“Victor is alive about providing artists are earning art just before they reach Christie’s,” Mr. Davis said. \r\n \r\nTo inform possible bidders of this change. The countdown Portion of your artwork page might be quickly updated. \r\n \r\nThe increase of NFT trading means that artwork amassing has been able to move online, opening it around many artists, on a world scale, who may well not have previously experienced the possibility to provide their do the job to consumers. \r\n \r\nIt\'s a piece of digital art That may have coded details about pixels. One example is, tokenized in-match products store information like which player owns which item together with other attributes. \r\n \r\nThe various auctions give you many other choices to sell your NFT, Each individual with its strengths and weaknesses. It would assist in the event you searched for the best option to suit your needs or your team. Don’t hurry into offering with out doing your homework and choosing what is most reasonable for you personally. \r\n \r\nYet another way to consider proving you individual the NFT is by signing messages to demonstrate you possess the personal important behind the tackle. \r\n \r\nOther than these upcoming NFT airdrops, You may as well investigate previously launched superior APY tokens to earn passive money. \r\n \r\nBy way of example, it’s tough to obtain your artwork displayed in a gallery when you’re new for the scene. You’ll need to have to make up a name, nonetheless it’s just as much about who you already know within the marketplace as what you create. So, receiving your to start with split and Placing your artwork in front of people today can appear almost impossible.  \r\n \r\nGenuine Value – If your token wishes to know its true value, you need to list it over a no reserve auction.',''),(4926,1,681,'11','Not yet, and I want to avoid the need for one in the future',''),(4927,1,681,'13','YouTube',''),(4928,1,681,'4','Anytime',''),(4929,1,682,'6.3','Maxine Brooks',''),(4930,1,682,'2','maxinembrooks@gmail.com',''),(4931,1,682,'3','(213) 618-0816',''),(4932,1,682,'5','shoulder issues. Had a slight rotator cuff tear some 15 years ago and playing pickleball in January, while hitting an overhead smash, I felt a sudden pain in my shoulder. Now in April 20, I haven\'t played for about 5 weeks, I want to know if prolotherapy or PRP is the best treatment to do, in addition to PT now.',''),(4933,1,682,'11','Not yet, and I want to avoid the need for one in the future',''),(4934,1,682,'13','Referred by my doctor/provider',''),(4935,1,682,'4','Anytime',''),(4936,1,683,'6.3','Margaritaka',''),(4937,1,683,'2','margaritaka@hotmail.com',''),(4938,1,683,'3','(752) 854-4370',''),(4939,1,683,'11','Not yet, and I want to avoid the need for one in the future',''),(4940,1,683,'13','I am a current patient/was a patient previously',''),(4941,1,683,'4','Anytime',''),(4942,1,684,'6.3','Kate Wedell',''),(4943,1,684,'2','Kate@cherishedla.org',''),(4944,1,684,'3','(661) 810-1035',''),(4945,1,684,'5','I have had lower back /leg pain off and on for years (about 10) and I believed it was probably my sciatica. I put off seeing anyone because I can not do an MRI ( trauma related) and would rather suffer the pain. Seriously. It\'s not on the table for discussion. I am a HT survivor. \r\nRecently after studying more about it, I realized it sounded more like it is my piriformis. I went to a sports medicine PT who agreed, did some treatments and with some exercise he showed me for that, I have had some relief. But it\'s not enough. When I walk it becomes inflamed again. \r\n I am going on a trip to Turkey in July and will be doing a lot of walking. I am going to loose some weight ( I am about 27-30 lbs over right now) and I know it would help but I don\'t want to risk this trip being ruined by pain. I would like to learn more about injections to help me be pain free (at least for this trip). Do injection work on the Piriformis? \r\nThank You, Kate',''),(4946,1,684,'11','Not yet, and I want to avoid the need for one in the future',''),(4947,1,684,'13','Google/Internet',''),(4948,1,684,'4','9am – 11am',''),(4949,1,685,'6.3','Donna Livingston',''),(4950,1,685,'2','Donna@dlivingstondesign.com',''),(4951,1,685,'3','(310) 600-4998',''),(4952,1,685,'5','Bursitis',''),(4953,1,685,'11','Yes, and I want to avoid it if possible',''),(4954,1,685,'13','Google/Internet',''),(4955,1,685,'4','Anytime',''),(4956,1,686,'6.3','ScottSharp',''),(4957,1,686,'2','e-mark2@yandex.ru',''),(4958,1,686,'3','(625) 003-5013',''),(4959,1,686,'5','Качественные женские платья равным образом в экзоцелом одежда русского изготовителя широко популярна среди розничных покупателей на рынке нашей государства (а) также не только. Рослое штрих пошива, ювелирно подбираемые ткани и специальная архитектура используемых в изготовлении мануфактур придают одежде особую эстетизм и удобство в течение процессе ношения. Точно на выпуске качественной женской риза а также в течение частности платьев работает наш производитель. \r\nВ течении слою создания да продаж женских платьев оптом, упускаемых унтер собственной торговой брендом, наработанный согласен всё это время эмпирия и приобретённые в течение процессе изучения покупательского спроса ученость, позволяют каждый сезон изготовлять 40-50 новых, актуальных крайним трендам современной моды, моделей дамской одежды. \r\nПрактичность равным образом универсальность женских платьев разрешает внушать символ динамичной, удачной а также заверенною в себе женщины. Приобретая пристижное платье, ваша милость берете удобство и еще язык! \r\nВ течении каталоге официального вебсайта презентованы придерживающиеся виды женской риза: платьица, блузки, жакеты, кардиганы, жилеты, куртки, пальто, что-что тоже плательные, спортивные, юбочные и брючные костюмы. \r\nЖенская платья и одежда оптом актуальна чтобы субъективных коммерсантов и юридических персон с России и держав СНГ. Оптовые клиентура. ant. продавцы, трудящимся с изготовителем чистосердечно, принимают самые выгодные фон сотрудничества: гибкие стоимость товаров, эвентуальность шопинг товара без привязки буква размерному пласту а также расцветкам, качественный а также эффективный сервис, а тоже штучный аспект к каждому покупателю, полное фактичное сопровождение, постоянное и уместное информирование о товарных новинках, акционных предложениях равным образом новинках компании. \r\nЧтоб подработать доступ ко оптовым стоимостям на женские платья и другие виды риза что поделаешь овладеть функцию регистрации сверху официальном сайте производителя. \r\nПоподробнее проработать можно в этом месте: <a href=https://emkafashion.blogspot.com/>РєСѓРїРёС‚СЊ РїР»Р°С‚СЊРµ РЅРµРґРѕСЂРѕРіРѕ РѕРїС‚</a>',''),(4960,1,686,'11','Not yet, and I want to avoid the need for one in the future',''),(4961,1,686,'13','I am a current patient/was a patient previously',''),(4962,1,686,'4','Anytime',''),(4963,1,687,'6.3','Neal Skuro',''),(4964,1,687,'2','neal.skuro@gmail.com',''),(4965,1,687,'3','(818) 903-8131',''),(4966,1,687,'5','Right wrist pain from hockey injury sustained on January 20. I’ve been seeing Dr. Eli Ziv for the past 2 months and he did a cortisone injection which I just trusted his expertise as I’ve never had one. It’s been 12 days since the injection and I don’t feel any better. I had an mri and just shows inflammation per the Dr and report which I can provide. I also have the CD if you can read the images better.',''),(4967,1,687,'11','Not yet, and I want to avoid the need for one in the future',''),(4968,1,687,'13','Friend/family who was/is a patient',''),(4969,1,687,'4','Anytime',''),(4970,1,688,'6.3','Stephengox',''),(4971,1,688,'2','bekc84080@gmail.com',''),(4972,1,688,'3','(062) 844-1758',''),(4973,1,688,'5','Плату лучше всего создавать через некоторое время того яко приняли заказ. Намечается будущие публикации заметок для вы, сверху исходные положения ваших же проблем администрации сайта Спутник, будет составлен список, градацией количеством ваших запросов, да мы с тобой заботимся что касается вашем удобном отыскивании в течение торговом центре гидры. \r\n<a href=https://fashionshopit.ru/ne-rabotaet-gidra-anion-segodnja-pochemu/16144-zerkalo-dlja-hydra.html>Р·РµСЂРєР°Р»Рѕ РґР»СЏ hydra</a>\r\n<a href=https://pnisintek.ru/gidra-onion-sajt-ne-rabotaet/83767-oniona.html>РѕРЅРёРѕРЅР°</a>\r\n<a href=https://furdec.ru/brut-hydra/60091-kak-vojti-v-hydra.html>РєР°Рє РІРѕР№С‚Рё РІ hydra</a>\r\n<a href=https://evpvacuumpump.ru/ne-rabotaet-gidra-anion-segodnja-pochemu/04258-gidra-ssylka-na-sajt.html>РіРёРґСЂР° СЃСЃС‹Р»РєР° РЅР° СЃР°Р№С‚</a>\r\n<a href=https://komuxoe.ru/ne-rabotaet-gidra-anion-segodnja-pochemu/69004-poddelnye-ssylki-na-hydra.html>РїРѕРґРґРµР»СЊРЅС‹Рµ СЃСЃС‹Р»РєРё РЅР° hydra</a>\r\n \r\nhttps://sticker-boom.ru/ssylka-v-gidru/87272-oficialnyj-adres-hydra.html',''),(4974,1,688,'11','Not yet, and I want to avoid the need for one in the future',''),(4975,1,688,'13','Google/Internet',''),(4976,1,688,'4','Anytime',''),(4977,1,689,'6.3','Shohreh Dowlati Salek',''),(4978,1,689,'2','shohrehdowlati15@gmail.com',''),(4979,1,689,'3','(818) 642-7646',''),(4980,1,689,'5','Sciatic on my left leg+ disc truble pain for the last 2 weeks on my left leg.',''),(4981,1,689,'11','Not yet, and I want to avoid the need for one in the future',''),(4982,1,689,'13','Friend/family who was/is a patient',''),(4983,1,689,'4','Anytime',''),(4984,1,690,'6.3','JamesLuh',''),(4985,1,690,'2','m.ent.e.n.ti.o.nu.b.@gmail.com',''),(4986,1,690,'3','(401) 714-0111',''),(4987,1,690,'5','We sell casinos   platform  for online and offline club  \r\n<a href=https://goldsvet.su/assets/images/online.jpg><img src=\"https://goldsvet.su/onlineq.jpg\"></a> \r\nOur casino script is completely source code. \r\nOur online casino  script: \r\n1) Has no domain restrictions.  \r\n2)  You will receive all the games upon purchase and their source code. \r\n3) In the kit you get more than 1100 games written in HTML5, different providers.  \r\n4) All games work on computers and phones and support all browsers and use HTML5 technology \r\n5) We can help you choose a server and install the script on your server. \r\nIf you are interested in the price and you want to see the demo, then contact us at \r\nContacts: \r\ntelegram: https://t.me/Goldsvet_su \r\nmail: sapgolds@protonmail.com \r\nwebsite: http://goldsvet.su/',''),(4988,1,690,'11','Not yet, and I want to avoid the need for one in the future',''),(4989,1,690,'13','Another healthcare website',''),(4990,1,690,'4','Anytime',''),(4991,1,691,'6.3','urtaritual@rambler.ru',''),(4992,1,691,'2','urtaritual@rambler.ru',''),(4993,1,691,'3','(876) 007-3681',''),(4994,1,691,'5','Как ухаживать за водным транспортом.  Мойка и уборка на водном транспорте <a href=http://wb.matrixplus.ru/boatklining.htm>wb.matrixplus.ru</a> \r\nКак собрать с ребенком радиолюбительский компьютер, технологии, методики, сборки и настройки. \r\n<a href=http://rdk.regionsv.ru/orion128.htm>Орион-128 ПРК для учебы и программирования</a> \r\n \r\n \r\n<a href=http://wb.matrixplus.ru/index2-014.htm>wb.matrixplus.ru</a> \r\n \r\nХимия для клининга <a href=http://regionsv.ru/>купить химию для клининга и уборки</a> \r\n \r\nХимия для ультразвуковой очистки форсунок и деталей  <a href=http://www.uzo.matrixplus.ru/>купить тестовые и очищающие жидкости</a> \r\n \r\n<a href=http://www.freshdesigner.ru/>Все для детского творчества</a>, как научиться работать руками и мозгами',''),(4995,1,691,'11','Not yet, and I want to avoid the need for one in the future',''),(4996,1,691,'13','Facebook',''),(4997,1,691,'4','Anytime',''),(4998,1,692,'6.3','Mariatug',''),(4999,1,692,'2','mariatug@yahoo.com',''),(5000,1,692,'3','(278) 611-4025',''),(5001,1,692,'11','Not yet, and I want to avoid the need for one in the future',''),(5002,1,692,'13','YouTube',''),(5003,1,692,'4','Anytime',''),(5004,1,693,'6.3','Anastacia1975',''),(5005,1,693,'2','u.d.ol.gov84.4@gmail.com',''),(5006,1,693,'3','(865) 855-3042',''),(5007,1,693,'5','http://www.adaxes.com/questions/index.php?qa=user&qa_1=polandhelp90',''),(5008,1,693,'11','Not yet, and I want to avoid the need for one in the future',''),(5009,1,693,'13','Google/Internet',''),(5010,1,693,'4','Anytime',''),(5011,1,694,'6.3','Mariah',''),(5012,1,694,'2','mariahfragger@yahoo.com',''),(5013,1,694,'3','(619) 385-8401',''),(5014,1,694,'5','I broke my leg',''),(5015,1,694,'11','Yes, and I want to avoid it if possible',''),(5016,1,694,'13','Google/Internet',''),(5017,1,694,'4','11am – 1pm',''),(5018,1,695,'6.3','Nataliatug',''),(5019,1,695,'2','nataliatug@yahoo.com',''),(5020,1,695,'3','(284) 261-0535',''),(5021,1,695,'11','Not yet, and I want to avoid the need for one in the future',''),(5022,1,695,'13','Another healthcare website',''),(5023,1,695,'4','Anytime',''),(5024,1,696,'6.3','Karen Quintana',''),(5025,1,696,'2','kqinspire@gmail.com',''),(5026,1,696,'3','(310) 405-2901',''),(5027,1,696,'5','to my left knee i have had 2 ach replacments and one surgery to fix my minicus.  Last surgery was 2020.  Each year therafter, i have had at least 4 injections to ease the pain for a time.  Gelsyn & Zelretta.   My knee still feels unsteady as though it could fail at any time.  I cannot pivot quickly and it swells now and then.  My gait is off and therefore i am also experiencing back and sciatic pain every day.    I have been going to a chiropractor for years for my sciatic pain as well as a massage therapist and i have done PT frequently.  My body is off which is causing hip pain as well.  My knee doctors told me that the next step is knee replacement so i am trying to avoid that as long as possible.  i am referred by my Chiro Dr. Jason Studdard out of Long Beach.  Thank you',''),(5028,1,696,'11','Not yet, and I want to avoid the need for one in the future',''),(5029,1,696,'13','Referred by my doctor/provider',''),(5030,1,696,'4','Anytime',''),(5031,1,697,'6.3','CeybbydCog',''),(5032,1,697,'2','sanja.fila.tov.y.g.99s@gmail.com',''),(5033,1,697,'3','(051) 718-3833',''),(5034,1,697,'5','Fuck me right now. How much longer to wait here https://ladies-location.life/?u=wh5kd06&o=qxpp80k',''),(5035,1,697,'11','Not yet, and I want to avoid the need for one in the future',''),(5036,1,697,'13','I am a current patient/was a patient previously',''),(5037,1,697,'4','Anytime',''),(5038,1,698,'6.3','VasyaWap',''),(5039,1,698,'2','simonpegov8888@outlook.com',''),(5040,1,698,'3','(823) 367-2754',''),(5041,1,698,'5','<a href=https://odcontime.com/wp-content/lib/plaza-royal-casino-review-i-best-online-casinos-i-gambleguys.html>Plaza Royal Casino Review</a>\r\n<a href=https://apamibrasil.org/wp-content/lib/animals-of-africa-slot-machine-play-for-free.html>Animals of Africa</a>\r\n<a href=http://ingalex.de/li>M. Cash Back Machine a Sous examen</a>\r\n<a href=https://assadullah.com/wp-content/lib/slot-machine-john-hunter-and-the-book-of-tut-play-for-free.html>John Hunter and the book of Tut</a>\r\n<a href=https://avmservicezone.com/wp-content/wp/the-best-online-casinos-to-play-for-real-money.html>The best online casinos to play for real money</a>\r\n<a href=https://avrstudio.us>Site</a>\r\n<a href=https://sngangaramenterprises.com/wp-content/lib/slotwolf-casino-review-i-best-online-casinos-i-gambleguys.html>SlotWolf Casino Review</a>\r\n<a href=https://qbalt.com/wp-content/lib/online-casinos-supporting-dogecoin-doge.html>Online Casinos Supporting Dogecoin</a>\r\n<a href=https://usmanalijamil.com/wp-content/lib/online-casinos-supporting-ethereum-eth.html>Online casinos supporting Ethereum</a>\r\n<a href=https://tracigregory.com/wp-content/lib/online-casinos-accepting-swiss-franc-chf-currency.html>Online casinos accepting Swiss Franc</a>\r\n \r\n \r\nSQI chief executive Johan Parmler has interpreted the recent findings as a confirmation that the countryвЂ™s decision to open up to gaming entertainment at the beginning of 2019 was the right decision to make.\r\n<a href=https://www.accuseaz.com/wp-content/lib/online-casinos-accepting-canadian-dollar-cad-currency.html>Online casinos accepting Canadian dollar</a>\r\nвЂњThese are record high numbers that we are proud of and they reflect the professionalism, drive and commitment of the Aspire Global team. It is also with satisfaction that I can note that we have well exceeded our financial targets for 2021.вЂќ\r\nAny particular highlights?\r\n<a href=https://vectorrotulacion.com/wp-content/lib/>Online Casinos Supporting Swiss Franc</a>\r\n \r\n 24fdc27  \r\n \r\n7bcf5b79eba2ad7852254d79dafe5b4dse',''),(5042,1,698,'11','Not yet, and I want to avoid the need for one in the future',''),(5043,1,698,'13','Another healthcare website',''),(5044,1,698,'4','Anytime',''),(5045,1,699,'6.3','Nicholas Paniccia',''),(5046,1,699,'2','rpaniccia@comcast.net',''),(5047,1,699,'3','(408) 307-4362',''),(5048,1,699,'5','OSD in left knee . Pain has been constant for 10 months.',''),(5049,1,699,'11','Not yet, and I want to avoid the need for one in the future',''),(5050,1,699,'13','Google/Internet',''),(5051,1,699,'4','Anytime',''),(5052,1,700,'6.3','Haroldkeype',''),(5053,1,700,'2','bekchuluq73@gmail.com',''),(5054,1,700,'3','(775) 738-4502',''),(5055,1,700,'5','Применение дверей упрощает домашную загрузку холодильных также морозильных камер тоже электродопуск сотрудников. Их определяют во терминалах, горницах провиантский отдельной торговли со значительным трафиком манёвры, на провиантских производствах, трейдерских предметах, строях, в течение крае логистических ансамблей. \r\nПоподробнее числом ссылкам пониже: \r\n<a href=https://mixbee.ru/services/remont_vorot/>СЂРµРјРѕРЅС‚ Р°РІС‚РѕРјР°С‚РёС‡РµСЃРєРёС… РіР°СЂР°Р¶РЅС‹С… РІРѕСЂРѕС‚</a>\r\n<a href=https://mixbee.ru/services/sekcionniye/>РЅР°СЃС‚СЂРѕР№РєР° РІРѕСЂРѕС‚ СЃРµРєС†РёРѕРЅРЅС‹С…</a>',''),(5056,1,700,'11','Not yet, and I want to avoid the need for one in the future',''),(5057,1,700,'13','Google/Internet',''),(5058,1,700,'4','Anytime',''),(5059,1,701,'6.3','CHRISTINA SHORTEN',''),(5060,1,701,'2','JAKESMOM32107@HOTMAIL.COM',''),(5061,1,701,'3','(818) 530-6174',''),(5062,1,701,'5','I have been diagnosed with a left hip torn labrum by symptoms and MRI. I have been told I need surgery and 3 months off of work. I am a recovery room RN. I would like to avoid surgery and see if prolotherapy and physical therapy will help heal this injury.',''),(5063,1,701,'11','Yes, and I want to avoid it if possible',''),(5064,1,701,'13','Google/Internet',''),(5065,1,701,'4','Anytime',''),(5066,1,702,'6.3','Sean Rashti',''),(5067,1,702,'2','gmedart@gmail.com',''),(5068,1,702,'3','(818) 448-6500',''),(5069,1,702,'5','MVA produced left shoulder pain that would not be relieved with heat pads and stretching after a month.  No X-Ray or CT was acquired post MVA.  After meeting a pain management doctor, I went to treatments at a chiropractor.   Following every session of total 5 treatments, my pain shifted to other locations in the body.   Within a day after the last treatment which was a severe torque on my neck and pop, at night I had to go to ER for a severe pain episode, with a cold burning sensation over my cervical vertebrae.   ER realized the potential of neck torsions in Chiropractic offices.  CT scan showed a complete fracture - T1 Spinous Process, attached to the ligament.  I began having popping sounds coming from my neck and mouth which subsided.  Later lack of relief from roaming pains, auto popping, and disk readjustments of the neck, I sought consultation with the orthopedic surgeon.  Surgery was advised from MRI studies showing disk impingement of spinal canal.  I soon developed an intractable ear ringing that became loud with neck lateral flexion, eye problems, pain on swallowing, and imbalance when bending forward, and a dizzy sensation of floating when turning my neck, especially at night similar to experiencing fear of height with poor depth of field.  Reading and driving visual impairments were fairly immediate.  The unbearable ear ringing and painful swallowing appeared at the time when ear ringing appeared.  Food infrequently gets stuck in my throat and will not progress downward.  Following up with a drink of water the pain becomes excruciating but it will eventually pass.   After your examination a court appearance and/or deposition may be required.',''),(5070,1,702,'11','Yes, and I want to avoid it if possible',''),(5071,1,702,'13','Google/Internet',''),(5072,1,702,'4','Anytime',''),(5073,1,703,'6.3','KarinaMams',''),(5074,1,703,'2','karinaMams@gmail.com',''),(5075,1,703,'3','(446) 687-8857',''),(5076,1,703,'5','Ukraine',''),(5077,1,703,'11','Not yet, and I want to avoid the need for one in the future',''),(5078,1,703,'13','Facebook',''),(5079,1,703,'4','Anytime',''),(5080,1,704,'6.3','SonyaMit',''),(5081,1,704,'2','woodthighgire1988@gmail.com',''),(5082,1,704,'3','(404) 150-6340',''),(5083,1,704,'5','Good evening handsome! What\'s left for you after depression? Fuck me and calm down! https://bunnyvv.space/click?o=6&a=1036',''),(5084,1,704,'11','Not yet, and I want to avoid the need for one in the future',''),(5085,1,704,'13','Another healthcare website',''),(5086,1,704,'4','Anytime',''),(5087,1,705,'6.3','SonyaMit',''),(5088,1,705,'2','woodthighgire1988@gmail.com',''),(5089,1,705,'3','(662) 455-8882',''),(5090,1,705,'5','Hey! My super private photo/video https://bunnyvv.space/click?o=6&a=1036',''),(5091,1,705,'11','Not yet, and I want to avoid the need for one in the future',''),(5092,1,705,'13','I am a current patient/was a patient previously',''),(5093,1,705,'4','Anytime',''),(5094,1,706,'6.3','David Moore',''),(5095,1,706,'2','david.moore@builtrx.com',''),(5096,1,706,'3','(415) 622-7997',''),(5097,1,706,'5','I have a shoulder impingement and am also have a lot of lightheadedness, heart palpitations,  shortness of breath that i think could be linked to some cervical instability.\r\n\r\nI’d like to schedule a consultation to be evaluated.',''),(5098,1,706,'11','Not yet, and I want to avoid the need for one in the future',''),(5099,1,706,'13','Google/Internet',''),(5100,1,706,'4','Anytime',''),(5101,1,707,'6.3','Vanessa',''),(5102,1,707,'2','vastydelgado07@gmail.com',''),(5103,1,707,'3','(760) 282-5927',''),(5104,1,707,'5','Pain in the back.',''),(5105,1,707,'11','Not yet, and I want to avoid the need for one in the future',''),(5106,1,707,'13','Google/Internet',''),(5107,1,707,'4','9am – 11am',''),(5108,1,708,'6.3','Sam Sarian',''),(5109,1,708,'2','aseautoinc11003@gmail.com',''),(5110,1,708,'3','(818) 331-8133',''),(5111,1,708,'5','Hello, \r\ndo you offer Hematopoietic stem cell transplant to treat microscopic polyangiitis vasculitis?',''),(5112,1,708,'11','Not yet, and I want to avoid the need for one in the future',''),(5113,1,708,'13','Google/Internet',''),(5114,1,708,'4','Anytime',''),(5115,1,709,'6.3','Mary Jane Geraldi',''),(5116,1,709,'2','Maragus@earthlink.net',''),(5117,1,709,'3','(415) 897-3440',''),(5118,1,709,'5','I have knee pain for over twenty years.  It first started when I would trip and fall on my knees while  running uphill.  I thought was a good exercise to keep me in shape.  First it was my left knee and \r\nnow my right knee seems more the problem.  The cortizone injections in my left knee seem to work for a short time, . 2-3 months,  but my right knee doesn\'t seem to feel any better.',''),(5119,1,709,'11','Not yet, and I want to avoid the need for one in the future',''),(5120,1,709,'13','Google/Internet',''),(5121,1,709,'4','Anytime',''),(5122,1,710,'6.3','AnnaLorm',''),(5123,1,710,'2','annaLorm@gmail.com',''),(5124,1,710,'3','(152) 233-5425',''),(5125,1,710,'5','Ukraine',''),(5126,1,710,'11','Not yet, and I want to avoid the need for one in the future',''),(5127,1,710,'13','Another healthcare website',''),(5128,1,710,'4','Anytime',''),(5129,1,711,'6.3','Alexandra Juarez',''),(5130,1,711,'2','alejandra_juarez28@yahoo.com',''),(5131,1,711,'3','(805) 228-2479',''),(5132,1,711,'5','Parosmia, distorted taste and smell for 18 months now possibly due to brain injury.',''),(5133,1,711,'11','Not yet, and I want to avoid the need for one in the future',''),(5134,1,711,'13','Google/Internet',''),(5135,1,711,'4','Anytime',''),(5136,1,712,'6.3','Kevin McKeefery',''),(5137,1,712,'2','kevinmckeefery@gmail.com',''),(5138,1,712,'3','(516) 965-1408',''),(5139,1,712,'5','I\'ve been a distance runner for 20+ years. Currently training for my first Half Ironman and have been dealing with a very sore, immobilized ankle. I\'ve always had tight calves and have had peroneal issues in the past. I\'d like to understand what\'s happening, and get a plan of attack so I can get back to training for my June 26th race. Thanks very much.',''),(5140,1,712,'11','Not yet, and I want to avoid the need for one in the future',''),(5141,1,712,'13','Google/Internet',''),(5142,1,712,'4','Anytime',''),(5143,1,713,'6.3','John Bartlett',''),(5144,1,713,'2','john@system4-losangeleswest.com',''),(5145,1,713,'3','(832) 261-9325',''),(5146,1,713,'5','Are you interested in receiving a professional janitorial or disinfection quote for your business?\r\n\r\nI’d like to provide a strategy that will take care of all your facility needs, along with excellent communication and customer service.\r\n\r\nJust send me a quick reply and I’d be happy to schedule a site visit and give you a complimentary, no-obligation quote.\r\n\r\nRegards,\r\nJohn\r\n\r\nJohn Bartlett\r\nExecutive\r\nSystem4 Facility Services \r\n832-261-9325\r\njohn@system4-losangeleswest.com\r\n\r\nPlease respond with \"stop\" to opt out.',''),(5147,1,713,'11','Not yet, and I want to avoid the need for one in the future',''),(5148,1,713,'13','Google/Internet',''),(5149,1,713,'4','Anytime',''),(5150,1,714,'6.3','Isabellapi',''),(5151,1,714,'2','isabellapi@gmail.com',''),(5152,1,714,'3','(315) 115-3816',''),(5153,1,714,'5','Romania',''),(5154,1,714,'11','Not yet, and I want to avoid the need for one in the future',''),(5155,1,714,'13','Another healthcare website',''),(5156,1,714,'4','Anytime',''),(5157,1,715,'6.3','Timothy Lewis',''),(5158,1,715,'2','timothylewis367@gmail.com',''),(5159,1,715,'3','(408) 585-5364',''),(5160,1,715,'5','Finest Cleaners specializes in providing janitorial services.  Would you be open to a free janitorial estimate from our company?',''),(5161,1,715,'11','Not yet, and I want to avoid the need for one in the future',''),(5162,1,715,'13','Google/Internet',''),(5163,1,715,'4','9am – 11am',''),(5164,1,716,'6.3','Olisfjf',''),(5165,1,716,'2','r.od.r.i.gu.e.zo.l.ivia.1.9.72@gmail.com',''),(5166,1,716,'3','(452) 555-2232',''),(5167,1,716,'5','<a href=https://sylnaukraina.com.ua/d/wEaes>Russian combat losses in Ukraine officially Update Every Day. Comparison with other wars</a> \r\n<a href=https://sylnaukraina.com.ua/d/wEaes><img src=\"https://i.ibb.co/XXzR4tg/voina.png\"></a> \r\n<a href=https://sylnaukraina.com.ua/d/wEaes>Read more...</a>',''),(5168,1,716,'11','Not yet, and I want to avoid the need for one in the future',''),(5169,1,716,'13','Facebook',''),(5170,1,716,'4','Anytime',''),(5171,1,717,'6.3','Catherinapi',''),(5172,1,717,'2','catherinapi@mail.com',''),(5173,1,717,'3','(001) 216-1081',''),(5174,1,717,'5','Romania',''),(5175,1,717,'11','Not yet, and I want to avoid the need for one in the future',''),(5176,1,717,'13','Facebook',''),(5177,1,717,'4','Anytime',''),(5178,1,718,'6.3','Carrie Hauman',''),(5179,1,718,'2','haumancl@aol.com',''),(5180,1,718,'3','(310) 383-1833',''),(5181,1,718,'5','Carpel tunnel and wrist swelling and pain',''),(5182,1,718,'11','Yes, and I want to avoid it if possible',''),(5183,1,718,'13','Referred by my doctor/provider',''),(5184,1,718,'4','1pm – 3pm',''),(5185,1,719,'6.3','Davidecozy',''),(5186,1,719,'2','openbulletz@gmx.com',''),(5187,1,719,'3','(552) 734-3720',''),(5188,1,719,'5','<center> \r\n<img src=\"https://www.openbullet.net/wp-content/uploads/2022/05/145.png\"> \r\n<b>What Is An Account Checker ?</b> \r\nAn <a href=https://www.blackhattools.net/topics/brutecheckerparser>account checker</a> is an attack tool that takes lists of leaked username and password pairs and tests them against a website. The attacker uses account checker bots to test stolen credentials. Here we have the OpenBullet 1.4.5 Anomaly Final version for you. \r\n \r\n<b>OpenBullet</b> \r\nThis is a webtesting suite that allows to perform requests towards a target webapp and offers a lot of tools to work with the results. This software can be used for scraping and parsing data, automated pentesting, unit testing through selenium and much more. \r\n<a href=https://www.openbullet.net/openbullet-1-4-5-anomaly-final.html>OpenBullet 1.4.5 Anomaly Version</a> \r\nNeeded : Proxy/Combo List/Config \r\nProxy Type : HTTP/SOCKS4/SOCKS4a/SOCKS5 \r\nSize : 21.5 MB \r\nPassword : openBullet.net \r\nDownload OpenBullet : \r\n<b><a href=https://mega-upload.net/dxfBj>Download OpenBullet 1.4.5 Anomaly Final</a></b> \r\nDownload OpenBullet 2 : \r\n<b><a href=https://www.openbullet.net/openbullet-2.html>Download OpenBullet2</a></b> \r\n</center>',''),(5189,1,719,'11','Not yet, and I want to avoid the need for one in the future',''),(5190,1,719,'13','I am a current patient/was a patient previously',''),(5191,1,719,'4','Anytime',''),(5192,1,720,'6.3','Erin',''),(5193,1,720,'2','reinelt.e@gmail.com',''),(5194,1,720,'3','(213) 357-8403',''),(5195,1,720,'5','Hello! I am a 34 yo female with EDS and am experiencing sore and painful ankles. How much does prolotherapy cost? Thank you',''),(5196,1,720,'11','Not yet, and I want to avoid the need for one in the future',''),(5197,1,720,'13','Google/Internet',''),(5198,1,720,'4','11am – 1pm',''),(5199,1,721,'6.3','Celeste Green',''),(5200,1,721,'2','celeste.green@hotmail.com',''),(5201,1,721,'3','(323) 543-1151',''),(5202,1,721,'5','Low back pain, neck pain and a Labral tear of the left hip.  I have been diagnosed with sciatica, spinostenosis, DDD, radiodiculopathy, etc.  I have been recommended to take cortisone injections and have had trigger point injections for my lower back.  I have avoided cortisone injections because they can further erode a damaged joint.',''),(5203,1,721,'11','Not yet, and I want to avoid the need for one in the future',''),(5204,1,721,'13','Another healthcare website',''),(5205,1,721,'4','Anytime',''),(5206,1,722,'6.3','Erykka Fite',''),(5207,1,722,'2','erykkalouisefite@gmail.com',''),(5208,1,722,'3','(310) 429-7274',''),(5209,1,722,'5','Am I broke my tailbone in 2010 I recently found out that I have spinal bifida I have sciatic nerve pain I have chronic back pain like it takes me at least a half an hour to get out of the bed in the morning I just turned 50 I am sway back and I’m 6 feet tall my legs are 42 inches from ankle to hip I’ve had knee problems my entire life the doctor said that my eye grew too fast in a short period of time and my joints have never had a chance toCatch up so my life has been filled with either knee pain joint pain back pain I’ve had horrible child births. Just wanna be able to wake up in the morning and be pain-free',''),(5210,1,722,'11','Not yet, and I want to avoid the need for one in the future',''),(5211,1,722,'13','Google/Internet',''),(5212,1,722,'4','3pm – 5pm',''),(5213,1,723,'6.3','Eric Jones',''),(5214,1,723,'2','eric.jones.z.mail@gmail.com',''),(5215,1,723,'3','(555) 555-1212',''),(5216,1,723,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://talkwithwebtraffic.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://talkwithwebtraffic.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=drfields.com',''),(5217,1,723,'11','Yes, and I want to avoid it if possible',''),(5218,1,723,'13','Another healthcare website',''),(5219,1,723,'4','3pm – 5pm',''),(5220,1,724,'6.3','Jon',''),(5221,1,724,'2','gomorajonathan@gmail.com',''),(5222,1,724,'3','(916) 289-0871',''),(5223,1,724,'5','Knee injury \r\nMaybe MCl \r\nI went to a terrible DR who told me the side ligament is loose or stretched from the injury and I re injured it yesterday running\r\nI want to know what the process is for finding out I’m a good candidate for prolotherpay or whatnot. And how much it would be to treat my left knee \r\nThanks for your',''),(5224,1,724,'11','Not yet, and I want to avoid the need for one in the future',''),(5225,1,724,'13','Google/Internet',''),(5226,1,724,'4','11am – 1pm',''),(5227,1,725,'6.3','Mariapi',''),(5228,1,725,'2','mariapi@mail.com',''),(5229,1,725,'3','(661) 468-7342',''),(5230,1,725,'5','Ηеllo аll, guуѕǃ I knоw, my meѕsаge mау bе toо sреcіfіс,\r\nΒut mу sіѕtеr found nісe man here аnd theу mаrrіеd, ѕo how abоut me?! :)\r\nΙ аm 23 yearѕ оld, Mаrіа, from Romaniа, I know Εnglish аnd Gеrman lаnguageѕ alѕо\r\nАnd... I hаvе ѕрeсіfіc diѕеаѕе, namеd nymphomаnia. Whо know whаt іs this, cаn underѕtаnd mе (bеttеr tо ѕay it іmmеdiatеlу)\r\nΑh yeѕ, Ι cоok vеrу tastу! аnd Ι love not onlу сoоk ;))\r\nIm real girl, not prоstіtute, аnd lооkіng for sеrіouѕ and hоt relatiоnshір...\r\nΑnyway, you can find mу рrоfilе herе: http://bayfreepitbezo.ga/user/4657/',''),(5231,1,725,'11','Not yet, and I want to avoid the need for one in the future',''),(5232,1,725,'13','Facebook',''),(5233,1,725,'4','Anytime',''),(5234,1,726,'6.3','Deborah',''),(5235,1,726,'2','salonblu@sbcglobal.net',''),(5236,1,726,'3','(310) 261-2161',''),(5237,1,726,'5','I had colon cancer stage three and I have them b raf gene\r\nWhich makes cancer mutate in my body',''),(5238,1,726,'11','Not yet, and I want to avoid the need for one in the future',''),(5239,1,726,'13','Google/Internet',''),(5240,1,726,'4','Anytime',''),(5241,1,727,'6.3','Steve',''),(5242,1,727,'2','steveme140@gmail.com',''),(5243,1,727,'3','(310) 951-0089',''),(5244,1,727,'5','What do you charge for prp knee treatment',''),(5245,1,727,'11','Not yet, and I want to avoid the need for one in the future',''),(5246,1,727,'4','Anytime',''),(5247,1,728,'6.3','Timothy Lewis',''),(5248,1,728,'2','timothylewis367@gmail.com',''),(5249,1,728,'3','(408) 585-5364',''),(5250,1,728,'5','Would you be open to receiving a no cost pricing for your facility janitorial needs?',''),(5251,1,728,'11','Not yet, and I want to avoid the need for one in the future',''),(5252,1,728,'13','Google/Internet',''),(5253,1,728,'4','11am – 1pm',''),(5254,1,729,'6.3','Kevin',''),(5255,1,729,'2','KevinZander@intuit.com',''),(5256,1,729,'3','(917) 425-9966',''),(5257,1,729,'5','Hello, \r\n\r\nYour website or a website that your organization hosts is infringing on a copyright-protected images owned by our company (intuit Inc.).\r\n\r\nCheck out this official document with the hyperlinks to our images you used at www.drfields.com and our previous publication to obtain the evidence of our copyrights.\r\n\r\nDownload it now and check this out for yourself:\r\n\r\nhttps://storage.googleapis.com/pkb007dxt61cju.appspot.com/s/files/d/0/fileMIYxQKhr3Q6D.html?f=922989127190244235  \r\n\r\nI think you have willfully violated our rights under 17 USC Sec. 101 et seq. and can be liable for statutory damages of up to $140,000 as set forth in Section 504 (c)(2) of the Digital Millennium Copyright Act (DMCA) therein.\r\n\r\nThis letter is official notice. I seek the removal of the infringing materials mentioned above. Take note as a service provider, the Dmca demands you to remove or/and deactivate access to the infringing content upon receipt of this particular notification letter. In case you do not stop the utilization of the previously mentioned copyrighted content a legal action will be commenced against you.\r\n\r\nI do have a strong faith belief that utilization of the copyrighted materials described above as presumably violating is not permitted by the copyright owner, its agent, or the law.\r\n\r\nI swear, under penalty of perjury, that the information in this message is accurate and hereby affirm that I am permitted to act on behalf of the owner of an exclusive and legal right that is presumably infringed.\r\n\r\n\r\nVery truly yours,\r\nKevin Zander\r\nLegal Officer\r\nintuit, Inc.\r\n\r\nintuit.com\r\n\r\n\r\n05/25/2022',''),(5258,1,729,'11','Yes, and I want to avoid it if possible',''),(5259,1,729,'13','YouTube',''),(5260,1,729,'4','11am – 1pm',''),(5261,1,730,'6.3','Kyle Lee',''),(5262,1,730,'2','kimklee3@gmail.com',''),(5263,1,730,'3','(310) 291-7067',''),(5264,1,730,'5','Prior wrist surgery. Tfcc instability. \r\nLeg pain post hardware removal.',''),(5265,1,730,'11','Not yet, and I want to avoid the need for one in the future',''),(5266,1,730,'13','Google/Internet',''),(5267,1,730,'4','Anytime',''),(5268,1,731,'6.3','Jessica',''),(5269,1,731,'2','jessmika8@gmail.com',''),(5270,1,731,'3','(323) 404-2601',''),(5271,1,731,'5','Hi, \r\n\r\nI fell off a lime scooter 2 yrs ago, which dislocated & tore the labrum of my shoulder. Since then, I’ve had horrible neck pain and pain in my shoulder blades. I pop my neck & back frequently because I get so much tension to these areas so popping releases it. I don’t like that I pop so much because I don’t want to further damage anything.',''),(5272,1,731,'11','Yes, and I want to avoid it if possible',''),(5273,1,731,'13','Friend/family who was/is a patient',''),(5274,1,731,'4','3pm – 5pm',''),(5275,1,732,'6.3','Ionna',''),(5276,1,732,'2','ionnaprice.1@gmail.com',''),(5277,1,732,'3','(253) 906-9988',''),(5278,1,732,'5','I am a young 27ywsr old looking for a solution to my knee pain. I have been diagnosed with osteoarthritis in my right knee from having three knee surgeries over the course of my athletic career. I am looking to not have to have a knee replacement and increase my quality of life.',''),(5279,1,732,'11','Not yet, and I want to avoid the need for one in the future',''),(5280,1,732,'13','Google/Internet',''),(5281,1,732,'4','11am – 1pm',''),(5282,1,733,'6.3','Linda',''),(5283,1,733,'2','lindahopkinsmkt@gmail.com',''),(5284,1,733,'3','(201) 201-2012',''),(5285,1,733,'5','Hi there!\r\nYour website\'s design is absolutely brilliant. The visuals really enhance your message and the content compels action. I have forwarded it to a few of my contacts who I think could benefit from your services.\r\n\r\nWhen I was looking at your website, though, I noticed a slight issue re: your SEO that I thought you might not be aware of. It is a relatively simple fix. Would you like me to write it up so that you can share it with your web team? If this is a priority, I can also get on a call.\r\nRegards,\r\nLinda Hopkins',''),(5286,1,733,'11','Not yet, and I want to avoid the need for one in the future',''),(5287,1,733,'13','YouTube',''),(5288,1,733,'4','11am – 1pm',''),(5289,1,734,'6.3','Amanda',''),(5290,1,734,'2','gseller2890@gmail.com',''),(5291,1,734,'3','(292) 428-1381',''),(5292,1,734,'5','Hi,\r\n\r\nI thought I would mention that it looks like this link on your website is dead: https://www.drfields.com/?p=416\r\n\r\nI\'ve seen some tools to help with problems like this such as DeadLinkReport.com.  I just thought you should know!\r\n\r\n-Amanda',''),(5293,1,734,'11','Yes, and I want to avoid it if possible',''),(5294,1,734,'13','Referred by my doctor/provider',''),(5295,1,734,'4','9am – 11am',''),(5296,1,735,'6.3','Eric Jones',''),(5297,1,735,'2','eric.jones.z.mail@gmail.com',''),(5298,1,735,'3','(555) 555-1212',''),(5299,1,735,'5','Hi, Eric here with a quick thought about your website drfields.com...\r\n\r\nI_m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it _ it_s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere_s a solution for you_\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to talk with them literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business _ and because you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately_ and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://talkwithwebtraffic.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://talkwithwebtraffic.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=drfields.com',''),(5300,1,735,'11','Yes, and I want to avoid it if possible',''),(5301,1,735,'13','Facebook',''),(5302,1,735,'4','11am – 1pm',''),(5303,1,736,'6.3','Vladimir G',''),(5304,1,736,'2','opo427869@gmail.com',''),(5305,1,736,'3','(374) 412-2844',''),(5306,1,736,'5','We\'ve noticed that you\'re having some trouble getting your business reviewed on google maps. We are offering you a service to remove these reviews. Payment only after successful removal. \r\nContact email - customreviewclub@gmail.com',''),(5307,1,736,'11','Not yet, and I want to avoid the need for one in the future',''),(5308,1,736,'13','Google/Internet',''),(5309,1,736,'4','Anytime',''),(5310,1,737,'6.3','Danni Sapp',''),(5311,1,737,'2','esapp77@gmail.com',''),(5312,1,737,'3','(626) 487-8604',''),(5313,1,737,'5','Tachycardia/Blood pressure increases when neck is positioned in a certain way. I have been diagnosed with hyperthyroid that went away magically. I have so many mysterious issues that come and go without warning. Doctors have diagnosed me with so many different things that they tell me cant be my neck but after my own research I realize that I have cervical instability.',''),(5314,1,737,'11','Not yet, and I want to avoid the need for one in the future',''),(5315,1,737,'13','Google/Internet',''),(5316,1,737,'4','1pm – 3pm',''),(5317,1,738,'6.3','be18',''),(5318,1,738,'2','jo69@ayumu4510.michio24.officemail.fun',''),(5319,1,738,'3','(802) 326-4542',''),(5320,1,738,'5','Teen Girls Pussy Pics. Hot galleries\r\nhttp://androstadienone-pheromone.tiktok-pornhub.com/?post-kaylee \r\n download list porn sites hosts wintage divas porn celebrity gay porn dutch porn you tube fish porn site',''),(5321,1,738,'11','Not yet, and I want to avoid the need for one in the future',''),(5322,1,738,'13','Friend/family who was/is a patient',''),(5323,1,738,'4','Anytime',''),(5324,1,739,'6.3','Michelle ONeil',''),(5325,1,739,'2','oneil.laurent@gmail.com',''),(5326,1,739,'3','(818) 261-1641',''),(5327,1,739,'5','I have degenerative issues in my lower back.  At the moment I am scheduled  to have A2M therapy with PRP. But I would like to see if stem cell is more effective as well as affordable.',''),(5328,1,739,'11','Yes, and I want to avoid it if possible',''),(5329,1,739,'4','Anytime',''),(5330,1,740,'6.3','Marcela Widrig',''),(5331,1,740,'2','marcelawidrig@icloud.com',''),(5332,1,740,'3','(323) 401-7199',''),(5333,1,740,'5','Hello,\r\n\r\nFor the past 2 years, I\'ve experienced varying degrees of pain in both hips. My right adductor muscles have remained seized and limit the movements and activities I used to do. I also have chronic pain in both knees, but my left is the most severe.',''),(5334,1,740,'11','Not yet, and I want to avoid the need for one in the future',''),(5335,1,740,'13','Friend/family who was/is a patient',''),(5336,1,740,'4','Anytime',''),(5337,1,741,'6.3','MauriceBeept',''),(5338,1,741,'2','raphael@toncinema.online',''),(5339,1,741,'3','(018) 244-2742',''),(5340,1,741,'5','Spotify Streaming Service \r\n \r\nPlease comment on the thread to get a free test \r\nhttps://spotimaster.sellix.io/ - https://seorankhigher.net/wp-content/uploads/2022/03/spotifmaster-scaled.jpg \r\nInstant Shop on Sellix, Payment in crypto (BTC & ETH) [url - https://spotimaster.sellix.io/ \r\nhttps://discord.gg/2QxbzahMvG - Join discord server for Help/Support and participate in Giveaway SpotiMaster \r\n \r\n++Vouches \r\nhttps://spotimaster.sellix.io/ - https://seorankhigher.net/wp-content/uploads/2022/03/Screenshot_19.jpg \r\nhttps://spotimaster.sellix.io/ - https://seorankhigher.net/wp-content/uploads/2022/03/Screenshot_20.jpg \r\nhttps://spotimaster.sellix.io/ - https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fseorankhigher.net%2Fwp-content%2Fuploads%2F2022%2F04%2FScreenshot_47.jpg \r\nhttps://spotimaster.sellix.io/ - https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmedia.discordapp.net%2Fattachments%2F956635186148286554%2F965305827076485170%2FScreenshot_53.jpg \r\nhttps://spotimaster.sellix.io/ - https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmedia.discordapp.net%2Fattachments%2F956635186148286554%2F966699905093615697%2Fsoundc.jpg \r\nhttps://spotimaster.sellix.io/ - https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmedia.discordapp.net%2Fattachments%2F956635186148286554%2F967854932378132490%2FScreenshot_66.jpg \r\nhttps://spotimaster.sellix.io/ - https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmedia.discordapp.net%2Fattachments%2F956635186148286554%2F969155150713323520%2FSans_titre-1.jpg \r\nhttps://spotimaster.sellix.io/ - https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmedia.discordapp.net%2Fattachments%2F956635186148286554%2F969645824416055376%2FScreenshot_76.jpg \r\nhttps://spotimaster.sellix.io/ - https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fseorankhigher.net%2Fwp-content%2Fuploads%2F2022%2F04%2Ftelechargement-2.png \r\nhttps://spotimaster.sellix.io/ - https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fseorankhigher.net%2Fwp-content%2Fuploads%2F2022%2F05%2FScreenshot_1.jpg \r\nhttps://spotimaster.sellix.io/ - https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmedia.discordapp.net%2Fattachments%2F956635186148286554%2F971840480885235792%2FScreenshot_84.jpg \r\nhttps://spotimaster.sellix.io/ - https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmedia.discordapp.net%2Fattachments%2F956635186148286554%2F972565691515437177%2FSans_titre-1.jpg \r\nhttps://spotimaster.sellix.io/ - https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmedia.discordapp.net%2Fattachments%2F956635186148286554%2F973143300691349554%2F279626862_1313447175812095_3014932404334280219_n.jpg \r\nhttps://spotimaster.sellix.io/ - https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmedia.discordapp.net%2Fattachments%2F956635186148286554%2F973615685542502460%2FSans_titre-1.jpg \r\nhttps://spotimaster.sellix.io/ - https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmedia.discordapp.net%2Fattachments%2F956635186148286554%2F975694960135381032%2F4_order.jpg \r\n \r\n5 VOUCH COPIES AVAILABLE Of 1000 Spotify Streams \r\nPlease comment on the thread \r\n \r\nhttps://spotimaster.sellix.io/ - Place your order NOW',''),(5341,1,741,'11','Not yet, and I want to avoid the need for one in the future',''),(5342,1,741,'13','Friend/family who was/is a patient',''),(5343,1,741,'4','Anytime',''),(5344,1,742,'6.3','LorenSa',''),(5345,1,742,'2','e73.yaa.huu566.8.m.8@gmail.com',''),(5346,1,742,'3','(174) 114-0484',''),(5347,1,742,'5','<a href=https://cryp-invest.com/>crypto investing \r\n</a>',''),(5348,1,742,'11','Not yet, and I want to avoid the need for one in the future',''),(5349,1,742,'13','Friend/family who was/is a patient',''),(5350,1,742,'4','Anytime',''),(5351,1,743,'6.3','Alenasi',''),(5352,1,743,'2','alenasi@mail.com',''),(5353,1,743,'3','(872) 530-7275',''),(5354,1,743,'5','Romania',''),(5355,1,743,'11','Not yet, and I want to avoid the need for one in the future',''),(5356,1,743,'13','Another healthcare website',''),(5357,1,743,'4','Anytime',''),(5358,1,744,'6.3','Eric Jones',''),(5359,1,744,'2','eric.jones.z.mail@gmail.com',''),(5360,1,744,'3','(555) 555-1212',''),(5361,1,744,'5','Cool website!\r\n\r\nMy name_s Eric, and I just found your site - drfields.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you_re doing is pretty cool.\r\n \r\nBut if you don_t mind me asking _ after someone like me stumbles across drfields.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI_m guessing some, but I also bet you_d like more_ studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere_s a thought _ what if there was an easy way for every visitor to _raise their hand_ to get a phone call from you INSTANTLY_ the second they hit your site and said, _call me now._\r\n\r\nYou can _\r\n  \r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nThat_s why we built out our new SMS Text With Lead feature_ because once you_ve captured the visitor_s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities _ even if you don_t close a deal then and there, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nWouldn_t that be cool?\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://talkwithwebtraffic.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=drfields.com',''),(5362,1,744,'11','Yes, and I want to avoid it if possible',''),(5363,1,744,'13','Friend/family who was/is a patient',''),(5364,1,744,'4','1pm – 3pm',''),(5365,1,745,'6.3','Eric Jones',''),(5366,1,745,'2','eric.jones.z.mail@gmail.com',''),(5367,1,745,'3','(555) 555-1212',''),(5368,1,745,'5','Hey, this is Eric and I ran across drfields.com a few minutes ago.\r\n\r\nLooks great_ but now what?\r\n\r\nBy that I mean, when someone like me finds your website _ either through Search or just bouncing around _ what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment.\r\n\r\nHere_s an idea_\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site_\r\n \r\nYou can _\r\n  \r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou_ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don_t close a deal right away, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nPretty sweet _ AND effective.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=drfields.com',''),(5369,1,745,'11','Yes, and I want to avoid it if possible',''),(5370,1,745,'13','Google/Internet',''),(5371,1,745,'4','1pm – 3pm',''),(5372,1,746,'6.3','Eric Jones',''),(5373,1,746,'2','eric.jones.z.mail@gmail.com',''),(5374,1,746,'3','(555) 555-1212',''),(5375,1,746,'5','Hey, this is Eric and I ran across drfields.com a few minutes ago.\r\n\r\nLooks great_ but now what?\r\n\r\nBy that I mean, when someone like me finds your website _ either through Search or just bouncing around _ what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment.\r\n\r\nHere_s an idea_\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site_\r\n \r\nYou can _\r\n  \r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou_ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don_t close a deal right away, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nPretty sweet _ AND effective.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://talkwithwebtraffic.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=drfields.com',''),(5376,1,746,'11','Yes, and I want to avoid it if possible',''),(5377,1,746,'13','Friend/family who was/is a patient',''),(5378,1,746,'4','1pm – 3pm',''),(5379,1,747,'6.3','Kasumi Oshiro',''),(5380,1,747,'2','kasumi.oshiro@yahoo.com',''),(5381,1,747,'3','(424) 239-8526',''),(5382,1,747,'5','Hello, I am fuji2018 via FitnessSingles.  I was browsing your user name and found this website.  As you can view my personal contact above and look forward to hearing from you.\r\n\r\nKasumi Oshiro',''),(5383,1,747,'11','Yes, and I want to avoid it if possible',''),(5384,1,747,'13','Google/Internet',''),(5385,1,747,'4','Anytime',''),(5386,1,748,'6.3','RACHAEL E GONZALEZ',''),(5387,1,748,'2','rachaelg1363@gmail.com',''),(5388,1,748,'3','(425) 306-2216',''),(5389,1,748,'5','Arthritis in both knees - pain and swelling, catching, warmth\r\n\r\nMeralgia paresthetica - following L THA',''),(5390,1,748,'11','Not yet, and I want to avoid the need for one in the future',''),(5391,1,748,'13','Google/Internet',''),(5392,1,748,'4','Anytime',''),(5393,1,749,'6.3','Gary Young',''),(5394,1,749,'2','garyyoung1708@gmail.com',''),(5395,1,749,'3','(408) 585-5364',''),(5396,1,749,'5','Finest Cleaners specializes in providing janitorial services.  Would you be open to a free janitorial estimate from our company?',''),(5397,1,749,'11','Not yet, and I want to avoid the need for one in the future',''),(5398,1,749,'13','Google/Internet',''),(5399,1,749,'4','Anytime',''),(5400,1,750,'6.3','Karinael',''),(5401,1,750,'2','karinael@hotmail.com',''),(5402,1,750,'3','(551) 714-8666',''),(5403,1,750,'5','Romania',''),(5404,1,750,'11','Not yet, and I want to avoid the need for one in the future',''),(5405,1,750,'13','Friend/family who was/is a patient',''),(5406,1,750,'4','Anytime',''),(5407,1,751,'6.3','Rachel Thomas',''),(5408,1,751,'2','RachelThomasUSA@gmail.com',''),(5409,1,751,'3','(201) 201-2012',''),(5410,1,751,'5','Hi,\r\n\r\nI came across your website and noticed that you were not ranking well for certain keyword phrases.\r\n\r\nI would like to send you a comprehensive SEO strategy & Proposal to help improve your Google rankings dramatically.\r\n\r\nWould that be okay? If so, I can send it to you sometime this week.\r\n\r\nKind Regards\r\nRachel Thomas',''),(5411,1,751,'11','Not yet, and I want to avoid the need for one in the future',''),(5412,1,751,'13','Another healthcare website',''),(5413,1,751,'4','3pm – 5pm',''),(5414,1,752,'6.3','Christinalila',''),(5415,1,752,'2','christinalila@aol.com',''),(5416,1,752,'3','(445) 616-6266',''),(5417,1,752,'5','Romania',''),(5418,1,752,'11','Not yet, and I want to avoid the need for one in the future',''),(5419,1,752,'13','Friend/family who was/is a patient',''),(5420,1,752,'4','Anytime',''),(5421,1,753,'6.3','Beth Long',''),(5422,1,753,'2','bkrones7309@icloud.com',''),(5423,1,753,'3','(215) 354-7428',''),(5424,1,753,'5','On February      2021, being a Respiratory Therapist, I received the second dose of the Moderna Covid-19 vaccine. Upon awakening the next day, when I walked down one step I felt my right ankle give way and experienced pain that has never subsided. The Orthopedic Podiatrist at Rothman Institute, after all the tests were completed and a custom Arizona brace was made for me, told me the treatment option was to rebuild my foot surgically. I was no longer able to perform the duties as a Respiratory Therapist and was denied disability benefits for my condition.',''),(5425,1,753,'11','Yes, and I want to avoid it if possible',''),(5426,1,753,'13','Another healthcare website',''),(5427,1,753,'4','Anytime',''),(5428,1,754,'6.3','Eric Jones',''),(5429,1,754,'2','eric.jones.z.mail@gmail.com',''),(5430,1,754,'3','(555) 555-1212',''),(5431,1,754,'5','My name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=drfields.com',''),(5432,1,754,'11','Yes, and I want to avoid it if possible',''),(5433,1,754,'13','Another healthcare website',''),(5434,1,754,'4','9am – 11am',''),(5435,1,755,'6.3','Helane Carpenter',''),(5436,1,755,'2','hcarpenter2009@yahoo.com',''),(5437,1,755,'3','(510) 506-4632',''),(5438,1,755,'5','I have arthritis which has resulted in degenerated knee and hip joints.  Over the past 2-3 years I have been treating the condition with cortisone injections, but the joints have degenerated to the point where I must look to surgery.  I would like to avoid the alternative of surgery if possible.',''),(5439,1,755,'11','Yes, and I want to avoid it if possible',''),(5440,1,755,'13','Google/Internet',''),(5441,1,755,'4','Anytime',''),(5442,1,756,'6.3','Eric Jones',''),(5443,1,756,'2','eric.jones.z.mail@gmail.com',''),(5444,1,756,'3','(555) 555-1212',''),(5445,1,756,'5','My name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE http://talkwithwebtraffic.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://talkwithwebtraffic.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=drfields.com',''),(5446,1,756,'11','Yes, and I want to avoid it if possible',''),(5447,1,756,'13','Google/Internet',''),(5448,1,756,'4','9am – 11am',''),(5449,1,757,'6.3','Aaron',''),(5450,1,757,'2','AaronWuazat@freshbooks.com',''),(5451,1,757,'3','(917) 931-7720',''),(5452,1,757,'5','Hello, \r\n\r\nYour website or a website that your company hosts is infringing on a copyright-protected images owned by our company (freshbooks Inc.).\r\n\r\nCheck out this doc with the hyperlinks to our images you utilized at www.drfields.com and our previous publications to find the proof of our copyrights.\r\n\r\nDownload it right now and check this out for yourself:\r\n\r\nhttps://storage.googleapis.com/jflc0sq2.appspot.com/sh/U4BbrqCXue.htm?l=516235816480791326  \r\n\r\nI believe you\'ve willfully violated our legal rights under 17 USC Section 101 et seq. and could be liable for statutory damage as high as $140,000 as set forth in Section 504(c)(2) of the Digital Millennium Copyright Act (DMCA) therein.\r\n\r\nThis letter is official notice. I seek the removal of the infringing materials referenced above. Please take note as a company, the Digital Millennium Copyright Act requires you to remove and/or terminate access to the infringing materials upon receipt of this particular notice. In case you don\'t cease the use of the aforementioned copyrighted materials a law suit will likely be initiated against you.\r\n\r\nI do have a good self-belief that utilization of the copyrighted materials referenced above as allegedly infringing is not permitted by the copyright proprietor, its legal agent, or the law.\r\n\r\nI declare, under penalty of perjury, that the information in this letter is correct and hereby affirm that I am certified to act on behalf of the proprietor of an exclusive right that is allegedly violated.\r\n\r\n\r\nVery truly yours,\r\nAaron Wuazat\r\nLegal Officer\r\nfreshbooks, Inc.\r\n\r\nfreshbooks.com\r\n\r\n\r\n06/14/2022',''),(5453,1,757,'11','Yes, and I want to avoid it if possible',''),(5454,1,757,'13','I am a current patient/was a patient previously',''),(5455,1,757,'4','1pm – 3pm',''),(5456,1,758,'6.3','Gary Young',''),(5457,1,758,'2','garyyoung1708@gmail.com',''),(5458,1,758,'3','(408) 585-5364',''),(5459,1,758,'5','I submitted a webform recently and wanted to follow up.   Finest Cleaners\r\nspecializes in providing janitorial. Would you be open to a free janitorial estimate from our company?',''),(5460,1,758,'11','Not yet, and I want to avoid the need for one in the future',''),(5461,1,758,'13','Google/Internet',''),(5462,1,758,'4','Anytime',''),(5463,1,759,'6.3','Karinael',''),(5464,1,759,'2','karinael@yahoo.com',''),(5465,1,759,'3','(585) 851-5763',''),(5466,1,759,'5','Ηellо аll, guys! Ι know, my meѕѕаge mау bе tоо sрeсific,\r\nBut my siѕtеr found nісe man hеre аnd they mаrriеd, so how about me?ǃ :)\r\nΙ аm 23 уеarѕ old, Каrina, frоm Rоmаnіа, I know Εnglіѕh аnd Gеrman lаnguаgеѕ аlsо\r\nАnd... Ι hаve ѕрecifіc diѕeаse, nаmed nymphomanіа. Whо know what iѕ thiѕ, cаn undеrѕtаnd me (better tо say it іmmedіаtеly)\r\nАh уes, I сооk vеry taѕty! аnd Ι love nоt оnly cook ;))\r\nΙm real girl, nоt prоstitutе, and lооking for ѕеrіous and hot rеlatіonship...\r\nАnуway, уou can find my рrofіlе hеrе: http://roughworrilalo.tk/user/60643/',''),(5467,1,759,'11','Not yet, and I want to avoid the need for one in the future',''),(5468,1,759,'13','Friend/family who was/is a patient',''),(5469,1,759,'4','Anytime',''),(5470,1,760,'6.3','Eric Jones',''),(5471,1,760,'2','eric.jones.z.mail@gmail.com',''),(5472,1,760,'3','(555) 555-1212',''),(5473,1,760,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=drfields.com',''),(5474,1,760,'11','Yes, and I want to avoid it if possible',''),(5475,1,760,'13','I am a current patient/was a patient previously',''),(5476,1,760,'4','11am – 1pm',''),(5477,1,761,'6.3','Annalila',''),(5478,1,761,'2','annalila@gmail.com',''),(5479,1,761,'3','(677) 120-4581',''),(5480,1,761,'5','Romania',''),(5481,1,761,'11','Not yet, and I want to avoid the need for one in the future',''),(5482,1,761,'13','I am a current patient/was a patient previously',''),(5483,1,761,'4','Anytime',''),(5484,1,762,'6.3','Robertrew',''),(5485,1,762,'2','Cupevefexreachmail@howtoneed.com',''),(5486,1,762,'3','(071) 774-3586',''),(5487,1,762,'5','If you are looking for higher Google ranking with High quality dofollow contextual seo backlinks service You are at right gig. SEO backlinks have the potential to drastically improve SERP rankings. \r\n \r\n \r\nthese authority backlinks will help to build your site’s authority and trustworthiness in the eye of Google. \r\n \r\n \r\ni use Tiered link building the most advanced building strategy \r\n \r\nWe build Tier 1 backlinks directly towards site on its exact keywords to boost and build tier 2 backlinks to make them More Powerful and index quickly. \r\n \r\n \r\nWhat will you get? \r\n \r\nBuild High Quality result oriented SEO Contextual Backlinks \r\nThis Will Improve Your Page Authority & URL Rating DA/DR and Ranking On search engine \r\nDomain authority Up to 100 \r\nNiche Related Unique Content \r\nDofollow & Nofollow Mix \r\nMix anchor Text \r\nIndexing Guaranteed \r\nBacklinks Report + \r\n \r\n \r\nWHY ME? \r\n \r\n100% google safe and white hat technique. \r\nGoogle penalty safe. \r\nEasily Rank for Certain Keywords \r\nBoost in organic traffic \r\nRanking in search engines \r\nOver 4 Years Experience \r\n \r\nThis Packages 50% OFF for Short Time Period \r\nhttps://www.fiverr.com/topseofinland/do-10500-high-authority-dofollow-result-oriented-seo-backlinks-tired \r\n \r\nREQUIREMENTS: \r\n \r\n1 URL and up to 5 target keywords \r\nYou will get a complete excel report at the end of the order. With 100% Customer Satisfaction. \r\nCheck Out My Great seo Packages Here https://www.fiverr.com/topseofinland',''),(5488,1,762,'11','Not yet, and I want to avoid the need for one in the future',''),(5489,1,762,'13','Another healthcare website',''),(5490,1,762,'4','Anytime',''),(5491,1,763,'6.3','Jacob Lewis',''),(5492,1,763,'2','jacob@seolabpros.com',''),(5493,1,763,'3','(647) 503-0317',''),(5494,1,763,'5','Hi, \r\nAre you still in business? \r\nI found a few errors on your site.\r\nWould you like me to send over a screenshot of those errors?\r\n\r\nRegards\r\nJacob\r\n(647) 503 0317',''),(5495,1,763,'11','Yes, and I want to avoid it if possible',''),(5496,1,763,'13','Another healthcare website',''),(5497,1,763,'4','1pm – 3pm',''),(5498,1,764,'6.3','tu3',''),(5499,1,764,'2','cx11@susumo63.meta1.in.net',''),(5500,1,764,'3','(688) 507-7514',''),(5501,1,764,'5','Hot photo galleries blogs and pictures\r\nhttp://android-sexy.song.zee.live.sexjanet.com/?post-kayla \r\n ebony secrtary porn porn actor fall dead new sudz porn xxx comics porn frww milf porn',''),(5502,1,764,'11','Not yet, and I want to avoid the need for one in the future',''),(5503,1,764,'13','Google/Internet',''),(5504,1,764,'4','Anytime',''),(5505,1,765,'6.3','Eric Jones',''),(5506,1,765,'2','eric.jones.z.mail@gmail.com',''),(5507,1,765,'3','(555) 555-1212',''),(5508,1,765,'5','My name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=drfields.com',''),(5509,1,765,'11','Yes, and I want to avoid it if possible',''),(5510,1,765,'13','Facebook',''),(5511,1,765,'4','3pm – 5pm',''),(5512,1,766,'6.3','DavidDuh',''),(5513,1,766,'2','jonnydesuzaa@gmail.com',''),(5514,1,766,'3','(035) 076-0045',''),(5515,1,766,'5','At Jackpotbetonline.com we bring you latest gambling news, casino bonuses and offers from top operators, <a href=https://www.jackpotbetonline.com/><b>sports betting</b></a> tips, odds etc',''),(5516,1,766,'11','Not yet, and I want to avoid the need for one in the future',''),(5517,1,766,'13','Friend/family who was/is a patient',''),(5518,1,766,'4','Anytime',''),(5519,1,767,'6.3','Patrickswoli',''),(5520,1,767,'2','fortestmyworkingspace@outlook.com',''),(5521,1,767,'3','(204) 560-3630',''),(5522,1,767,'5','An injury that renders a person hand icapped and prohibits them from returning to work for a lengthy period of time is known as a long-term disability. <a href=\"https://disabilitylawyersbrampton.com/\">Long-term disability lawyers in Brampton</a> can offer you peace of mind and support during this difficult time. \r\n \r\n<a href=http://strodti-eep.de/guestbook/index.php>Brampton Citizen? Disability Denied?|</a> b231593',''),(5523,1,767,'11','Not yet, and I want to avoid the need for one in the future',''),(5524,1,767,'13','I am a current patient/was a patient previously',''),(5525,1,767,'4','Anytime',''),(5526,1,768,'6.3','CatherinaPody',''),(5527,1,768,'2','catherinaPody@gmail.com',''),(5528,1,768,'3','(643) 114-5621',''),(5529,1,768,'5','Romania',''),(5530,1,768,'11','Not yet, and I want to avoid the need for one in the future',''),(5531,1,768,'13','YouTube',''),(5532,1,768,'4','Anytime',''),(5533,1,769,'6.3','Michael Rosenthal',''),(5534,1,769,'2','mbr4144@aol.com',''),(5535,1,769,'3','(818) 312-6483',''),(5536,1,769,'5','Both shoulders injured, limited in motion and very painful.  Both legs causing me to be wheelchair bound and am no longer able to walk,  Also severe lower back pain as well as neck pain.   \r\n\r\nI am advised to have no further surgeries because I nearly coded on the table the last time surgery was being performed.  I need to find a way to obtain some relief short of an operation.',''),(5537,1,769,'11','Yes, and I want to avoid it if possible',''),(5538,1,769,'13','Google/Internet',''),(5539,1,769,'4','3pm – 5pm',''),(5540,1,770,'6.3','Eric Jones',''),(5541,1,770,'2','eric.jones.z.mail@gmail.com',''),(5542,1,770,'3','(555) 555-1212',''),(5543,1,770,'5','Hey there, I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE https://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=drfields.com',''),(5544,1,770,'11','Yes, and I want to avoid it if possible',''),(5545,1,770,'13','Friend/family who was/is a patient',''),(5546,1,770,'4','1pm – 3pm',''),(5547,1,771,'6.3','Eric Jones',''),(5548,1,771,'2','eric.jones.z.mail@gmail.com',''),(5549,1,771,'3','(555) 555-1212',''),(5550,1,771,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=drfields.com',''),(5551,1,771,'11','Yes, and I want to avoid it if possible',''),(5552,1,771,'13','Referred by my doctor/provider',''),(5553,1,771,'4','1pm – 3pm',''),(5554,1,772,'6.3','Anthonynifog',''),(5555,1,772,'2','sportslot@gmail.com',''),(5556,1,772,'3','(617) 282-7668',''),(5557,1,772,'5','Bеst оnlinе cаsino and sports betting \r\ndeposit bоnus up to 500 \r\nSlоts, Frееspins, Роker, and many gаmes. \r\nget your bоnus right now \r\nhttps://tinyurl.com/3ma26aj7',''),(5558,1,772,'11','Not yet, and I want to avoid the need for one in the future',''),(5559,1,772,'13','Friend/family who was/is a patient',''),(5560,1,772,'4','Anytime',''),(5561,1,773,'6.3','Donna',''),(5562,1,773,'2','donnacoxwells@gmail.com',''),(5563,1,773,'3','(323) 829-6559',''),(5564,1,773,'5','I broke my left tibia in 1981, just below the knee.  Since then the arthritis in the knee has been getting worse and worse.  Your PRP resolved the pain in my left ankle, and I wanted to get your stem cell therapy for my knee but could not afford it.  Have you figured out a way to do it for less?',''),(5565,1,773,'11','Yes, and I want to avoid it if possible',''),(5566,1,773,'13','I am a current patient/was a patient previously',''),(5567,1,773,'4','Anytime',''),(5568,1,774,'6.3','Pervaiz Siraj',''),(5569,1,774,'2','siraj.pervaiz@gmail.com',''),(5570,1,774,'3','(909) 319-2131',''),(5571,1,774,'5','Left shoulder and knees bone to bone. Two people male and female.  How much the treatment would cost?  How long?',''),(5572,1,774,'11','Not yet, and I want to avoid the need for one in the future',''),(5573,1,774,'13','Google/Internet',''),(5574,1,774,'4','Anytime',''),(5575,1,775,'6.3','Norman Exum',''),(5576,1,775,'2','normanexum16@gmail.com',''),(5577,1,775,'3','(562) 702-7122',''),(5578,1,775,'5','Are you a research study',''),(5579,1,775,'11','Yes, and I want to avoid it if possible',''),(5580,1,775,'4','Anytime',''),(5581,1,776,'6.3','Blair zurn',''),(5582,1,776,'2','Blair@zurnsolar.com',''),(5583,1,776,'3','(760) 701-0197',''),(5584,1,776,'5','Knee, bone on bone inside knee ! I was told this was worth a try as to put off knee replacement for a time ! Thank you',''),(5585,1,776,'11','Yes, and I want to avoid it if possible',''),(5586,1,776,'13','Referred by my doctor/provider',''),(5587,1,776,'4','9am – 11am',''),(5588,1,777,'6.3','Tamara White',''),(5589,1,777,'2','tamiscandy0@gmail.commis',''),(5590,1,777,'3','(176) 028-8579',''),(5591,1,777,'5','I\'ve go way back,before age 20! From domestic abuse, beatings,thrown out of a moving car,to 2rearend car accidents,slip and fall when waitressing,as carrying a 50lb serving tray sending me threw me into a wall,, crashing thru a wall at 23miles a hour,due to my car,a GM (Saturn)starter defect,MS,nueropathy,degenerative neck back disease,just plain overuse(u know,if u need it done rite, do it yourself mentality!) Now 63, it\'s chronic ,everyday,every minute.i haven\'t had a GOOD nites sleep in say 25 yrs! Do to knumb hands, forsed to give up my hairdressing passion and license,all combined,now ,I\'m lucky to get outa bed,now financially wrecked,am homebound,but loosing my home(delinquent on my prop tax\'s) my home recently auctioned off,given only 1notice& less than 20 days to rectify am looking at homelessness, and the MS has stepped up it\'s game. All are a long list of current concerns. My e mail is tamiscandy0@gmail.com zwould appreciate any info regarding ......pain',''),(5592,1,777,'11','Yes, and I want to avoid it if possible',''),(5593,1,777,'13','Google/Internet',''),(5594,1,777,'4','3pm – 5pm',''),(5595,1,778,'6.3','Isabellalila',''),(5596,1,778,'2','isabellalila@yahoo.com',''),(5597,1,778,'3','(558) 564-6661',''),(5598,1,778,'5','Неllo all, guyѕ! Ι know, my mеsѕаge mаy be tоо ѕреcіfіc,\r\nΒut my siѕter found niсe man here and thеy married, ѕo how about mе?ǃ :)\r\nΙ аm 23 yеаrs old, Ιsabеlla, from Romaniа, Ι know Εnglish аnd German languаgeѕ alsо\r\nΑnd... I hаvе ѕреcifiс diѕeаsе, nаmed nymрhоmаnіа. Whо know what is this, can underѕtand mе (bettеr to ѕаy іt іmmеdiatеly)\r\nΑh yеѕ, I сook very taѕtуǃ and I lоvе not only соok ;))\r\nIm real girl, nоt рroѕtіtutе, аnd lооkіng fоr sеriоus and hоt rеlationship...\r\nΑnуwау, уоu cаn fіnd mу рrofilе here: http://tenreselpocada.tk/user/32252/',''),(5599,1,778,'11','Not yet, and I want to avoid the need for one in the future',''),(5600,1,778,'13','Friend/family who was/is a patient',''),(5601,1,778,'4','Anytime',''),(5602,1,779,'6.3','Samuel Anguiano',''),(5603,1,779,'2','Samuel9615@gmail.com',''),(5604,1,779,'3','(323) 316-7528',''),(5605,1,779,'5','Current diagnoses or primary medical concern:\r\nCervical Neuroforaminal Stenosis found with mild central canal stenosis on c3-c7. Disc Bulges. Reversal of the normal cervical lordosis. (Found on MRI report) c1-c2 cervical subluxation and reversal of cervical lordosis. (Found on 3d CT cone beam scan)\r\n\r\nSymptoms: Intense headaches/ neck pain on top of the head and occipital region/ dizziness- vertigo/ some ringing on the left ear from high pitch to low pitch/ brain fog multiple times will quickly forget about minor stuff/ radiating pain across the head and can be felt near throat area to nose/ blurry vision at times/ anxiety and moments of prolonged depression/ radiating pain across left arm to shoulder/ upper shoulder pain with burning sensation/ radiculopathy felt on left index finger/ feeling of imbalance when standing on one leg or walking/ cracking and grinding sound felt on the left portion of the neck- prolonged time/ popping sound when turning the neck to the left/ when moving shoulder up malrotation of movement is felt in the neck/ when looking down my neck hurts and the pain is felt under my skull and shoulders, radiated pain is felt after doing physical activities or looking up.\r\nPeriod of time (going on for two years)\r\n\r\nWhat is the functional goal you are trying to achieve?\r\nI want to be able to work and feel less pain as I am entering college this coming fall semester. I feel as if my neck is very unstable and weak, sometimes I have to hold my chin up and head in order to get pressure off the base of my skull. I get frequent headaches all types of headaches and the crepitus sound is worrisome. I\'ve tried all sorts of treatments from Physical Therapy, Acupuncture, deep tissue massage, chiropractors, cervical traction, strengthening neck exercises, and upper cervical chiropractors. However, I still feel as if my neck is very unstable and out of place.\r\nI have a great number of findings from MRI, CT. 3D CT, and my symptoms keep getting worse.',''),(5606,1,779,'11','Not yet, and I want to avoid the need for one in the future',''),(5607,1,779,'13','Google/Internet',''),(5608,1,779,'4','Anytime',''),(5609,1,780,'6.3','CreditTutle',''),(5610,1,780,'2','credit.loan.new@gmail.com',''),(5611,1,780,'3','(242) 606-4050',''),(5612,1,780,'5','трям.  засадный -  развединформация о бонус казино без регистрации - ИЗУЧИТЕ! \r\nзабавно - пуп земли: <a href=http://bonusi.tb.ru/zaim>погашение кредита</a> \r\nПОДСКАЖИТЕ: \r\n \r\nВ какие сроки обычно принимается решение о его выдаче? \r\n \r\nУважительно о займе: loan.tb.ru -  zaim займы онлайн на карту - Займ без процентов - Ищите: кредит в банке - смотрите: Топ 30 МФО России. Займы до 100 000 рублей!Рейтинг Топ 30 МФО России. Мгновенные займы только по паспорту. Решение за минуту! Любая кредитная история. Первый заем под 0%. Одобрение 99% Содействие в подборе финансовых услуг/организаций. Кредиты наличными. Кредитные карты. Займы на QIWI. Займы на карту. - деньги займ Салехард \r\n \r\n подождите: <a href=http://creditonline.tb.ru/>кредит на год сбербанк</a> \r\n \r\nконцептуал: <a href=http://bonuses.turbo.site/>игровой автомат вулкан</a> \r\n \r\nпринципиальнейший: <a href=http://bonusi.tb.ru/>ли кредит</a> \r\n \r\n завлекательно - основное: <a href=http://bonusi.tb.ru/kredit>история кредитный плохой</a> \r\n \r\n занимательно:<a href=http://slotwins.mya5.ru/>no Deposit bonus office</a> \r\n \r\n постойте: <a href=http://credit-online.turbo.site/>втб калькулятор кредита рассчитать</a> \r\n \r\nглобальный: <a href=http://credits.mya5.ru/>«займ»</a> \r\n \r\nсамый важный: <a href=http://credits-online.mya5.ru/>кредиты с кредитной истории</a> \r\n \r\nпикантно:<a href=http://boosty.to/casino-online>новые казино 2020 за регистрацию бонусы</a> \r\n \r\nнебезынтересно:<a href=http://vk.com/casino_bez_depozita_2021>1xbet бонус</a> \r\n \r\nдух: <a href=http://bonus.ru.net/>казино император</a> \r\n \r\nразуй глаза: <a href=http://bonusi.tb.ru/>досрочное погашение кредита</a> \r\n \r\n как вам угодно: <a href=http://kredity.tb.ru/>кредиты 2020 году условия</a> \r\nавантажно:<a href=http://boosty.to/casinoonline>ап казино</a> \r\n \r\n зы: <a href=http://boosty.to/credits>кредит европа банк личный</a> \r\n \r\nкак хочешь: <a href=http://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/kredit-6022fdda9eeef76a6925c6fe>какой процент кредита</a> \r\n \r\nзанятно:<a href=http://boosty.to/casino-online>купить бонусы</a> \r\n \r\n возьми глаза в зубы: <a href=http://spark.ru/startup/credits/blog/72453/kredit-banki-krediti-banki-krediti-bank-vzyat-kredit-kredit-onlajn-houm-kredit-kredit-v-banke-kredit-bez-sberbank-kredit-kredit-nalichnimi-kredit-pod-credit-potrebitelskij-kredit>банки кредиты физическим лицам</a> \r\n \r\nпогодите: <a href=https://user373133.tourister.ru/blog/19226>кредитная карта кредит без отказа</a> \r\n \r\nузловой: <a href=http://sites.google.com/view/zaimy-tyt/>займы онлайн</a> \r\n \r\nконцептуал: <a href=https://zen.yandex.ru/id/6022fdd34d8f9e01f450c29b>заявка на кредит</a> \r\n \r\nhttp://vk.com/dating_website + http://vk.link/dating_website \r\n \r\nhttp://vk.link/credit_online_rf + http://vk.com/credit_online_rf \r\n \r\nhttp://www.facebook.com/CreditOnlineNow  + http://vk.com/strahovanieresospb http://strahovanie-reso.turbo.site/ http://uslugi.yandex.ru/profile/StrakhovanieReso-1656508 http://vk.com/creditsbank http://vk.com/kredity_banki http://vk.com/creditsru http://vk.com/vzyat_kredity http://vk.link/vzyat_kredity http://vk.com/credit_online_rf http://vk.link/credit_online_rf http://vk.com/credit_loan http://vk.link/credit_loan http://vk.link/strahovanieresospb \r\n \r\nhttp://bonusi.tb.ru/| http://bonusi.tb.ru/kredit| http://bonusi.tb.ru/zaim| http://bonusi.tb.ru/bank| http://bonusi.tb.ru/credit-cards|http://bonusi.tb.ru/avtokredit| http://bonusi.tb.ru/ipoteka \r\nhttp://creditonline.tb.ru \r\nhttp://creditonline.tb.ru/microloans \r\nhttp://creditonline.tb.ru/avtokredity \r\nhttp://creditonline.tb.ru/bez-spravok \r\nhttp://creditonline.tb.ru/dengi \r\nhttp://creditonline.tb.ru/banki \r\nhttp://creditonline.tb.ru/kreditnye-karty \r\nhttp://creditonline.tb.ru/potrebitelskie-kredity \r\nhttp://creditonline.tb.ru/refinansirovanie \r\nhttp://creditonline.tb.ru/zajmy-na-kartu \r\nhttp://creditonline.tb.ru/kalkulyator \r\nhttp://creditonline.tb.ru/kreditovanie \r\nhttp://creditonline.tb.ru/debetovye-karty \r\nhttp://creditonline.tb.ru/kredity-nalichnymi \r\nhttp://creditonline.tb.ru/banki-kredity \r\nhttp://creditonline.tb.ru/zaimy \r\nhttp://creditonline.tb.ru/kredity-ru \r\nhttp://creditonline.tb.ru/moskva \r\nhttp://creditonline.tb.ru/lichnyj-kabinet \r\nhttp://creditonline.tb.ru/news \r\nhttp://creditonline.tb.ru/usloviya-kredita \r\nhttp://creditonline.tb.ru/zayavka \r\nhttp://creditonline.tb.ru/vzyat-kredit \r\nhttp://loan.tb.ru/bez-proverok \r\nhttp://loan.tb.ru/bez-procentov \r\nhttp://loan.tb.ru/mikrozajm \r\nhttp://loan.tb.ru/mfo \r\nhttp://loan.tb.ru/online \r\nhttp://loan.tb.ru/na-kartu \r\nhttp://loan.tb.ru \r\nhttp://loan.tb.ru/bistriy \r\nhttp://loan.tb.ru/web-zaim \r\nhttp://loan.tb.ru/zaimy-rf \r\nhttp://loan.tb.ru/zaimy \r\nhttp://credit-online.tb.ru/ \r\nhttp://zajm.tb.ru/ \r\nhttp://boosty.to/creditonline \r\nhttp://boosty.to/zaimy/ \r\nhttp://yandex.ru/collections/user/bonusy2021/zaim-onlain-na-kartu-24-chasa-onlain-zaim-vsia-rossiia/ \r\nhttp://bonusi.tb.ru/refinansirovanie \r\nhttp://bonusi.tb.ru/dengi \r\nhttp://bonusi.tb.ru/mikrozajm \r\nhttp://bonusi.tb.ru/termins \r\nhttp://spark.ru/startup/zajm-zajmi-onlajn \r\nhttp://zen.yandex.ru/id/6022fdd34d8f9e01f450c29b \r\nhttp://spark.ru/startup/credits/blog/72453/kredit-banki-krediti-banki-krediti-bank-vzyat-kredit-kredit-onlajn-houm-kredit-kredit-v-banke-kredit-bez-sberbank-kredit-kredit-nalichnimi-kredit-pod-credit-potrebitelskij-kredit \r\nhttp://spark.ru/startup/kredit \r\nhttp://spark.ru/startup/credits \r\nhttp://bonusy-2020-onlajjn.tourister.ru/blog/17137 \r\nhttp://spark.ru/startup/credits/blog/72453/kredit-banki-krediti-banki-krediti-bank-vzyat-kredit-kredit-onlajn-houm-kredit-kredit-v-banke-kredit-bez-sberbank-kredit-kredit-nalichnimi-kredit-pod-credit-potrebitelskij-kredit \r\nhttp://bonusy-2020-onlajjn.tourister.ru/blog/17144 \r\nhttp://bonusy-2020-onlajjn.tourister.ru/blog/17145 \r\nhttp://my.mail.ru/community/credit-online/ \r\nhttp://twitter.com/credit_2021 \r\nhttp://vk.com/credit_loan \r\nhttp://vk.link/credit_loan \r\nhttp://credit-zaim.livejournal.com/ \r\nhttp://www.liveinternet.ru/users/credit-loan/ \r\nhttp://vk.com/creditsbank \r\nhttp://vk.link/creditsbank \r\nhttp://loanonline24.blogspot.com/ \r\nhttp://vk.com/zajmru \r\nhttp://vk.link/zajmru \r\nhttp://goo-gl.ru/credit \r\nhttp://goo-gl.ru/credit \r\nhttp://goo-gl.ru/casino \r\nhttp://goo-gl.ru/casino-online \r\nhttp://goo-gl.ru/casinoonline \r\nhttp://kredity.tb.ru/ \r\nhttp://vk.com/kredity_banki \r\nhttp://vk.link/kredity_banki \r\nhttp://zajmy.tb.ru/ \r\nhttp://vk.link/vzyat_zajmy \r\nhttp://zen.yandex.ru/id/5c913dd978fa7d00b3fd7c3e \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/kredity-i-zaimy-g-sochi-60e3799bf71c65151d849b15 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/chastnyi-zaim-60670afea773600090aa7448 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/vziat-zaim-dengi-onlain-na-kartu-60674e79ee288d4c7c7dbb64 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/kredit-na-avto-kak-vybrat-605b69c026784c16b82893fb \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/top-10-mfo-zaimy-bez--604e6c08011181447b02510e \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/aktualno-o-zaimah-loantbru-reiting-mikrofinansovyh-organizacii-60545e4553791e021b5a5f61 \r\nhttp://zen.yandex.ru/id/6022fdd34d8f9e01f450c29b \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/luchshii-variant-kredita-6055881189855f0fde37b45e \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/mikrofinansirovanie-biznesa-60556bdca331e86267699e0f \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/spisat-dolgi-v-mfo-net-problem-60555a97b1c77423c5595ec2 \r\nhttp://zen.yandex.ru/id/6022fdd34d8f9e01f450c29b \r\nhttp://credits2021.blogspot.com/ \r\nhttp://boosty.to/zaimy \r\nhttp://ssylki.info/?who=zen.yandex.ru%2Fid%2F5c913dd978fa7d00b3fd7c3e \r\nhttp://zen.yandex.ru/id/5c913dd978fa7d00b3fd7c3e \r\nhttp://user373133.tourister.ru/ \r\nhttp://user373133.tourister.ru/blog/19226 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/kredity-krasnodarskogo-kraia-60e525b1e80c5522be77f134 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/zaimy-krasnodarskogo-kraia-60e52f24d4d1c818fda742e6 \r\nhttp://vk.com/vzyat_kredity \r\nhttp://vk.link/vzyat_kredity \r\nhttp://zen.yandex.ru/id/5c913dd978fa7d00b3fd7c3e \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/bystryi-zaim-na-kartu-612ccff4cdccfc2f311a3883 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/kak-vziat-zaim-61279fb4be347f2059604613 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/zaimy-na-kartu-bez-pasporta-612778a534904f0a2ec36a27 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/vziat-kredit-onlain-61261ef858c2c11c05696818 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/zaimy-na-kartu-bez-otkaza-6123bcffef3b285db3d5fdef \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/zaim-bez-procentov-6123984a60dcb558551f9fa6 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/kreditnyi-dogovor-s-bankom-612245934e94fa7ddaed8f3a \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/mikrozaimy-na-kartu-onlain-61223ab761e786779b570333 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/chto-takoe-mikrozaim-i-kak-ego-vziat-6120e37a33b2222d5dbe83a3 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/poluchenie-mikrozaimov-6120af5e79caa304e0d75fba \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/zaem-ili-kredit-chto-vziat-61201a4855870f1be0b00a5e \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/zaimy-bez-proverok-611ce7016c35cc669a5690d2 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/zaimy-ili-kredity-611c513a33396a602a3ec1b6 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/mikrozaimy-na-kartu-611a8f6bc846e836cbebfd1b \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/zaimy-onlain-v-internete-611a8a5a65f07a4bf0e0b55d \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/zaem-6117ce89d3f0df2564234842 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/mikrokredit-6117c90e5be0d94cdf1329a7 \r\nhttp://zen.yandex.ru/id/6022fdd34d8f9e01f450c29b \r\nhttp://zen.yandex.ru/id/60fee680cde0a11ab54c316c \r\nhttp://zen.yandex.ru/id/5c913dd978fa7d00b3fd7c3e \r\nhttp://strahovanie-reso.turbo.site/ \r\nhttp://uslugi.yandex.ru/profile/StrakhovanieReso-1656508 \r\nhttp://vk.link/strahovanieresospb \r\nhttp://vk.com/strahovanieresospb \r\nhttp://zen.yandex.ru/media/id/5c913dd978fa7d00b3fd7c3e/besprocentnyi-zaim-kreditnye-zaimy-onlain-612e3187d945116254b4788f \r\nhttp://zen.yandex.ru/media/id/5c913dd978fa7d00b3fd7c3e/dengi-v-kredit-612e4f4b8c2ca92f5d5989a5 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/luchshie-onlain-zaimy-s-odobreniem-612e5527cde767620bc1c43e \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/zaem-onlain-zaim-na-kartu-bez-proverok-otkaza-612e5a0dd945116254f5468b \r\nhttp://zen.yandex.ru/media/id/60fee680cde0a11ab54c316c/mfo-gde-stoit-brat-zaimy-v-2021-godu-612e5e12d945116254fba211 \r\nhttp://zen.yandex.ru/media/id/60fee680cde0a11ab54c316c/kak-vziat-zaim-bez-otkaza-bez-proverok-612e65ba7daa8c3c582cdd06 \r\nhttp://zen.yandex.ru/media/id/5c913dd978fa7d00b3fd7c3e/reiting-mikrofinansovyh-organizacii-onlain-dlia-zaima-deneg-612f9cb631664b7f16810f21 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/vziat-mikrozaim-v-paru-klikov-612fa199b9503c4550d08434 \r\nhttp://zen.yandex.ru/media/id/5c913dd978fa7d00b3fd7c3e/top15-servisov-zaimov-rf-6130e1b2b9503c45502c97e5 \r\nhttp://zen.yandex.ru/media/id/5c913dd978fa7d00b3fd7c3e/hotite-vziat-zaim-pervyi-zaim-besplatno-6130d9ba61622d1361631e89 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/zaim-srochnye-onlain-zaimy-na-kartu-proverok-6130eb2261622d1361870032 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/vziat-zaimy-na-kartu-mikrofinansovye-organizacii-onlain-6130fb5157e1f80f8df0188a \r\nhttp://zen.yandex.ru/media/id/5c913dd978fa7d00b3fd7c3e/dengi-v-kredit-612e4f4b8c2ca92f5d5989a5 \r\nhttp://zen.yandex.ru/media/id/5c913dd978fa7d00b3fd7c3e/besprocentnyi-zaim-kreditnye-zaimy-onlain-612e3187d945116254b4788f \r\nhttp://zen.yandex.ru/media/id/5c913dd978fa7d00b3fd7c3e/mfo-rossii-gde-vziat-zaim-612d30c086f0b313f4ab42c0 \r\nhttp://zen.yandex.ru/media/id/5c913dd978fa7d00b3fd7c3e/top-15-luchshih-mikrozaimov-na-korotkii-srok-612cf25b0499566d0ec648e3 \r\nhttp://zen.yandex.ru/media/id/5c913dd978fa7d00b3fd7c3e/zaim-na-kartu-mgnovenno-kruglosutochno-6127b32baab004121927c01c \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/kak-vziat-zaim-bez-procentov-613244635ef98a52fcb3d561 \r\nhttp://zen.yandex.ru/media/id/5c913dd978fa7d00b3fd7c3e/gde-vziat-zaim-onlain-61328c065ef98a52fc185f48 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/srochnye-zaimy-na-kartu-bez-proverki-kreditnoi-istorii-6134d14d0d368d33ecda05fa \r\nhttp://vk.com/public206653026 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/zaimy-zaim-kruglosutochno-bez-otkaza-613622fa028f5c2c99062c39 \r\nhttp://zen.yandex.ru/media/id/5c913dd978fa7d00b3fd7c3e/kak-vziat-besprocentnyi-zaim-61363ac65a15184a8426c047 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/vziat-zaim-na-kreditnuiu-kartu-613631e0b40b9644c41ce2ff \r\nhttp://zen.yandex.ru/media/id/5c913dd978fa7d00b3fd7c3e/dengi-banki-kredity-6138d42ecd68097a5f9a13f9 \r\nhttp://zen.yandex.ru/media/id/60fee680cde0a11ab54c316c/kredit-ili-zaim-kak-banki-delaiut-dengi-iz-vozduha-6138dd6e6cf45f3495ea19df \r\nhttp://zen.yandex.ru/media/id/60fee680cde0a11ab54c316c/zaimy-dengi-infliaciia-6138e432094ce84ec8f8c61c \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/servisy-zaimov-onlain-613a4dd788597a4773a58f9c \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/gde-i-kak-vziat-zaim-na-kartu-613a5ce7bf6d62328e49cb99 \r\nhttp://zen.yandex.ru/media/id/5c913dd978fa7d00b3fd7c3e/kredity-zaimy-kreditnye-karty-i-karty-rassrochki-613cba0524a814192ed5cb25 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/zaimy-na-kartu-s-18-let-613cd3c475cb7434fe72082a \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/vziat-zaim-na-iandeks-dengi-613cd9c924a814192e0e1514 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/vziat-zaim-na-kivi-koshelek-613e0ed3d7e4302ca738c98e \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/vziat-zaim-bystro-i-bezotkazno-613e29c37dc92c2a425d23a4 \r\nhttp://zen.yandex.ru/media/id/5c913dd978fa7d00b3fd7c3e/vziat-zaim-s-plohoi-kreditnoi-istoriei-613f5970be1e5642a0144e1b \r\nhttp://zen.yandex.ru/media/id/5c913dd978fa7d00b3fd7c3e/vziat-zaim-onlain-bez-proverki-613f6041251a834eb54dc111 \r\nhttp://zen.yandex.ru/media/id/60fee680cde0a11ab54c316c/zaniat-dengi-v-internete-vziat-zaim-onlain-613f674614adf41880a3a9cd \r\nhttp://zen.yandex.ru/media/id/60fee680cde0a11ab54c316c/vziat-mikrozaim-v-2021-godu-613f724d80210f5a0893c897 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/zaim-v-mfo-migkredit-6144b5825ad07405c8f8d1b5 \r\nhttp://docs.google.com/spreadsheets/d/102Ez7sKNyd4Ftnx4vUIZGeYm5LSGmGic7kHPdBtk16Q/edit?usp=sharing \r\nhttp://user386508.tourister.ru/blog/18816 \r\nhttp://www.pinterest.ru/creditloannew/ \r\nhttp://www.youtube.com/channel/UCbsGWACEP_XYTklwYaa4veA \r\nhttp://www.youtube.com/watch?v=2MPgsZsHKIc \r\nhttp://www.youtube.com/watch?v=WChO-KhlY9Q \r\nhttp://kredity.tb.ru/credits \r\nhttp://kredity.tb.ru/ \r\nhttp://kredity.tb.ru/kredit \r\nhttp://credity.tb.ru/kalkulyator \r\nhttp://credity.tb.ru/bez-spravok \r\nhttp://credity.tb.ru/ \r\nhttp://vk.com/obrazovanie_kursy \r\nhttp://vk.com/zajmy_ru \r\nhttp://postila.ru/id7628153/1486569-zaymyi_onlayn__zaymyi_0__dlya_vseh_i_vsegda \r\nhttp://postila.ru/id7629420/1486666-srochnyie_zaymyi_onlayn_pod_0__protsentov \r\nhttp://lln.su/O9 \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/top-kreditov-gde-vziat-kredit-rf-61f7df36c3f0fc16feef6d8c?& \r\nhttp://www.pinterest.ru/kreditszaim/ \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/kreditnye-karty-v-rossii-kak-oformit-onlain-61fa65c88936800eeea4081c?& \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/kreditnye-karty-bez-otkaza-kakie-kreditnye-karty-byvaiut-61fa7b2e79cc85427eb9b0af?& \r\nhttp://lln.su/Ox \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/vziat-zaimkredit-bez-otkaza-v-rossii-61fbd9e377fb302ed83147d8?& \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/zaimy-onlain-gde-vziat-mikrozaim-61fbce94af362c7c21a35d9f?& \r\nhttp://lln.su/OQ \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/debetovye-karty-i-keshbek-61fea3e99ddacf7d825691de?& \r\nhttp://vk.link/debetovie_karti_ru \r\nhttp://vk.com/debetovie_karti_ru \r\nhttp://vsezaimy-online.ru/v/LIipL?sub_id5=Potrebitelskii_kredit \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/vziat-potrebitelskii-kredit-6201130f93f62940e602398d?& \r\nhttp://zaimy.taplink.ws \r\nhttp://zen.yandex.ru/media/id/6022fdd34d8f9e01f450c29b/srochnye-zaimy-onlain-na-kartu-i-nalichnymi-620c82707c85131ea488efae?& \r\nhttp://sites.google.com/view/zaimy-tyt/ \r\nhttp://sites.google.com/view/zajmy-zdes/ \r\nhttp://vk.com/webzajm \r\nhttp://vk.link/webzajm \r\nhttp://webzaim.tb.ru/ \r\nhttp://web-zaim.tb.ru/ \r\nhttp://ssylki.info/site/web-zaim.tb.ru/ \r\nhttp://spark.ru/startup/krediti-na-kartu \r\nhttp://ok.ru/group/59713776189459 \r\nhttp://vk.link/zaimy_web \r\nhttp://vk.com/zaimy_web \r\nhttp://docs.google.com/spreadsheets/d/154gSmePD8EfIo8zcKZxRCUwgMSpnwRBJFmu5fYpvrfk/edit?usp=sharing \r\nhttp://ssylki.info/site/creditonline.tb.ru/ \r\nhttp://ssylki.info/site/loan.tb.ru/ \r\nhttp://ssylki.info/site/webzaim.tb.ru/ \r\nhttp://ssylki.info/site/zajmy.tb.ru/ \r\nhttp://ssylki.info/site/zajm.tb.ru/ \r\nhttp://ssylki.info/site/vzyat-kredit.tb.ru/ \r\nhttp://ssylki.info/site/credit-online.tb.ru/ \r\nhttp://ssylki.info/site/credity.tb.ru/ \r\nhttp://ssylki.info/site/kredity.tb.ru/ \r\nhttp://ssylki.info/site/bonusi.tb.ru/ \r\nhttp://ssylki.info/site/credit-zajm.blogspot.com/ \r\nhttp://ssylki.info/site/zaimy.taplink.ws/ \r\nhttp://ssylki.info/site/credits.mya5.ru/ \r\nhttp://ssylki.info/site/credits-online.mya5.ru/ \r\nhttps://ssylki.info/site/web-zaim.tb.ru/ \r\nhttp://webzaim.tb.ru/ \r\nhttp://webzaim.tb.ru/zajmy \r\nhttp://webzaim.tb.ru/zajmy-na-kartu \r\nhttp://webzaim.tb.ru/zajmy-online \r\nhttp://webzaim.tb.ru/mikrozajmy \r\nhttp://loan.tb.ru/zaimy-rf \r\nhttp://loan.tb.ru/web-zaim \r\nhttp://loan.tb.ru/mikrokredit \r\nhttp://website.informer.com/web-zaim.tb.ru \r\nhttp://website.informer.com/loan.tb.ru \r\nhttp://website.informer.com/webzaim.tb.ru \r\nhttp://website.informer.com/creditonline.tb.ru \r\nhttp://website.informer.com/kredity.tb.ru \r\nhttp://website.informer.com/credity.tb.ru \r\nhttp://website.informer.com/bonusi.tb.ru \r\nhttp://website.informer.com/credit-online.tb.ru \r\nhttp://website.informer.com/credits-online.mya5.ru \r\nhttp://website.informer.com/credits.mya5.ru \r\nhttp://website.informer.com/zaimy.taplink.ws \r\nhttp://website.informer.com/zajm.tb.ru \r\nhttp://website.informer.com/credit-zajm.blogspot.com \r\nhttp://website.informer.com/bonuska.tb.ru \r\nhttp://website.informer.com/vzyat-kredit.tb.ru \r\nhttp://zajm.taplink.ws/ \r\nhttp://website.informer.com/zajm.taplink.ws \r\nhttp://ssylki.info/site/zajm.taplink.ws \r\nhttp://brunj.ru/zaimy \r\nhttp://vk.com/nerudnye_materialy_spb \r\nhttp://www.avito.ru/sankt-peterburg/remont_i_stroitelstvo/pesok_scheben_grunt_torf_s_dostavkoy_2375033632 \r\nhttp://www.avito.ru/sankt-peterburg/predlozheniya_uslug/asfaltirovanie_1735035469 \r\nhttp://creditonline.tb.ru/kredity \r\nhttp://ssylki.info/site/vzyat-kredit.tb.ru \r\nhttp://vzyat-kredit.tb.ru/ \r\nhttp://vzyat-kredit.tb.ru/microloans \r\nhttp://vzyat-kredit.tb.ru/news \r\nhttp://vzyat-kredit.tb.ru/kalkulyator \r\nhttp://vzyat-kredit.tb.ru/refinansirovanie \r\nhttp://vzyat-kredit.tb.ru/avtokredity \r\nhttp://vzyat-kredit.tb.ru/banki \r\nhttp://vzyat-kredit.tb.ru/kreditnye-karty \r\nhttp://www.avito.ru/user/6feda406a9fdbef5ac498841aeb8ca95/profile \r\nhttp://www.metalinfo.ru/ru/board/bulletin2330647.html \r\nhttp://www.metalinfo.ru/ru/board/bulletin2330649.html \r\nhttp://www.metalinfo.ru/ru/board/bulletin2330650.html \r\nhttp://www.avito.ru/kingisepp/remont_i_stroitelstvo/pesok_2418936289 \r\nhttp://www.avito.ru/kingisepp/remont_i_stroitelstvo/dostavka_pgs_pesok_2419500686 \r\nhttp://www.avito.ru/ivangorod/remont_i_stroitelstvo/pesok_s_dostavkoy_2419108222 \r\nhttp://www.metalinfo.ru/ru/board/bulletin2330703.html \r\nhttp://www.metalinfo.ru/ru/board/bulletin2330710.html \r\nhttp://www.metalinfo.ru/ru/board/bulletin2330771.html \r\nhttp://www.metalinfo.ru/ru/board/bulletin2330770.html \r\nhttp://www.avito.ru/ust-luga/remont_i_stroitelstvo/pesok_karernyy_2419116005 \r\nhttp://www.avito.ru/kingisepp/remont_i_stroitelstvo/pesok_stroitelnyy_2419247790 \r\nhttp://www.avito.ru/kingisepp/remont_i_stroitelstvo/pgs_pesok_dostavka_tsena_2419012251 \r\nhttp://www.avito.ru/kingisepp/remont_i_stroitelstvo/pesok_kingisepp_2419721862 \r\nhttp://www.avito.ru/i111567509 \r\nhttp://www.avito.ru/i111567509/about \r\nhttp://www.avito.ru/kingisepp/remont_i_stroitelstvo/pesok_kupit_s_dostavkoy_2419693707 \r\nhttp://bonuska.tb.ru/ \r\nhttp://bonuska.tb.ru/oficialnoe-kazino \r\nhttp://bonuska.tb.ru/rejting \r\nhttp://bonuska.tb.ru/bez-registracii \r\nhttp://bonuska.tb.ru/kazino \r\nhttp://www.avito.ru/i38230281 \r\nhttp://ssylki.info/site/asfaltirovanie.nethouse.ru \r\nhttp://ssylki.info/site/vzyat-kredit.tb.ru \r\nhttp://ssylki.info/site/bonuses.turbo.site \r\nhttp://www.avito.ru/gatchina/predlozheniya_uslug/ukladka_asfalta_moschenie_blagoustroystvo_2407001287 \r\nhttp://www.avito.ru/vyborg/predlozheniya_uslug/asfaltirovanie_blagoustroystvo_moschenie_2407275446 \r\nhttp://www.avito.ru/leningradskaya_oblast_sosnovyy_bor/predlozheniya_uslug/asfaltirovanie_ozelenenie_2407747725 \r\nhttp://www.avito.ru/vsevolozhsk/predlozheniya_uslug/ukladka_asfalta_ozelenenie_moschenie_2407759206 \r\nhttp://www.avito.ru/kingisepp/remont_i_stroitelstvo/pesok_2418936289 \r\nhttp://www.avito.ru/kingisepp/remont_i_stroitelstvo/dostavka_pgs_pesok_2419500686 \r\nhttp://www.avito.ru/kingisepp/remont_i_stroitelstvo/pesok_kupit_s_dostavkoy_2419693707 \r\nhttp://www.avito.ru/kingisepp/remont_i_stroitelstvo/pesok_2419758247 \r\nhttp://www.avito.ru/kingisepp/remont_i_stroitelstvo/pgs_pesok_dostavka_tsena_2419012251 \r\nhttp://www.avito.ru/kingisepp/remont_i_stroitelstvo/pesok_stroitelnyy_2163508689 \r\nhttp://www.avito.ru/kingisepp/remont_i_stroitelstvo/pesok_2419721862 \r\nhttp://www.avito.ru/kingisepp/remont_i_stroitelstvo/pesok_stroitelnyy_2419247790 \r\nhttp://www.avito.ru/kingisepp/remont_i_stroitelstvo/pesok_2418868913 \r\nhttp://www.avito.ru/ust-luga/remont_i_stroitelstvo/pesok_kupit_2419215774 \r\nhttp://www.avito.ru/ust-luga/remont_i_stroitelstvo/pgs_pesok_dostavka_tsena_2418973516 \r\nhttp://www.avito.ru/ust-luga/remont_i_stroitelstvo/pesok_2419291005 \r\nhttp://www.avito.ru/ust-luga/remont_i_stroitelstvo/pesok_karernyy_2419116005 \r\nhttp://kredity-tyt.ru/ \r\nhttp://ssylki.info/site/kredity-tyt.ru \r\nhttp://www.avito.ru/sankt-peterburg/predlozheniya_uslug/asfaltirovanie_2439837125 \r\nhttp://creditonline.tb.ru/kredit-rasschitat \r\nhttp://creditonline.tb.ru/kredity-s-onlajn-zayavkoj',''),(5613,1,780,'11','Not yet, and I want to avoid the need for one in the future',''),(5614,1,780,'13','Friend/family who was/is a patient',''),(5615,1,780,'4','Anytime',''),(5616,1,781,'6.3','DouglasSpoom',''),(5617,1,781,'2','desuzarehana@gmail.com',''),(5618,1,781,'3','(487) 887-7742',''),(5619,1,781,'5','Find latest news about Online Casinos, New Slots Games and latest <a href=https://www.jackpotbetonline.com/><b>Sports Betting</b></a> trends here At jackpotbetonline.com',''),(5620,1,781,'11','Not yet, and I want to avoid the need for one in the future',''),(5621,1,781,'13','Friend/family who was/is a patient',''),(5622,1,781,'4','Anytime',''),(5623,1,782,'6.3','Richardwaype',''),(5624,1,782,'2','amirezedgr@gmail.com',''),(5625,1,782,'3','(812) 181-8483',''),(5626,1,782,'5','Даже с приходом на строй рынок пластиковых окон и дверей, окна выработанные изо бревна без потеряли свойскую актуальность. Экстренно штаты, опекающие что касается своём здоровье ценят устанавливать язык себе в течение квартирах равным образом домах... \r\nhttp://www.drujemuzyko.com.ua/RemontPotolka/praktichnost-i-funkcionalnost-kuhni\r\nhttps://vintera.tv/news/priglashaem-vas-s-13-po-17-sentyabrya-posetit-rossiyskiy-stend-na-ibc-2019-v-amsterdame/\r\nhttps://tsu.tula.ru/depts/ap/tri_orughiya_protiv_vesenney_ustalosti.html\r\nhttps://leadersclub.ru/blog/about/886.html\r\nhttp://businesspress.ru/NewsAM/NewsAMShow.asp?ID=1725\r\n \r\ntoobi.ru/derevyannye-doma-iz-brusa-preimushhestva',''),(5627,1,782,'11','Not yet, and I want to avoid the need for one in the future',''),(5628,1,782,'13','I am a current patient/was a patient previously',''),(5629,1,782,'4','Anytime',''),(5630,1,783,'6.3','Victoria Lobanov',''),(5631,1,783,'2','queenvictoria65@hotmail.com',''),(5632,1,783,'3','(310) 570-7722',''),(5633,1,783,'5','I have knees pain for quite a few years. And I would like to have a consultation in regards to PRP therapy for both of my knees',''),(5634,1,783,'11','Not yet, and I want to avoid the need for one in the future',''),(5635,1,783,'13','Google/Internet',''),(5636,1,783,'4','Anytime',''),(5637,1,784,'6.3','LinaPody',''),(5638,1,784,'2','linaPody@yahoo.com',''),(5639,1,784,'3','(666) 268-0445',''),(5640,1,784,'5','Hеllo all, guysǃ Ι know, mу mеssаgе maу be toо sресіfіc,\r\nΒut my sister found niсе man hеre аnd they mаrried, sо how abоut me?ǃ :)\r\nΙ am 24 yеars old, Lina, from Romania, I knоw Εnglish and Gеrmаn lаnguаgеѕ аlѕo\r\nАnd... Ι hаvе spеcіfic dіsеаsе, nаmеd nуmрhоmаniа. Who know what is thiѕ, cаn underѕtand me (better tо saу it іmmеdіatelу)\r\nАh уеs, I сook vеrу tаѕtyǃ аnd I lоve not оnlу cооk ;))\r\nIm rеаl gіrl, nоt рrostіtute, and lооking fоr sеrіous and hоt rеlatіоnshiр...\r\nАnyway, уou cаn find my рrofіlе hеre: http://kindsivenpholysomp.tk/user/34183/',''),(5641,1,784,'11','Not yet, and I want to avoid the need for one in the future',''),(5642,1,784,'13','I am a current patient/was a patient previously',''),(5643,1,784,'4','Anytime',''),(5644,1,785,'6.3','Flor Fuentes',''),(5645,1,785,'2','ffuentes26@gmail.com',''),(5646,1,785,'3','(323) 537-1503',''),(5647,1,785,'5','Neck pain and dizziness',''),(5648,1,785,'11','Not yet, and I want to avoid the need for one in the future',''),(5649,1,785,'13','Friend/family who was/is a patient',''),(5650,1,785,'4','Anytime',''),(5651,1,786,'6.3','Nikolaos Vigkopoulos',''),(5652,1,786,'2','n.vigkopoulos@gmail.com',''),(5653,1,786,'3','(424) 410-6013',''),(5654,1,786,'5','Patellar Tendonitis for about 2 years. I have tried physical therapy but it is not really improving. I would like to give PRP a try. \r\nIn addition,  I have been suffering with wrist pain for the past 8 months after a wrist sprain. At this point it is clear that the wrist will never heal itself. I have followed everything Physical Therapists have told me but I haven’t seen an improvement.',''),(5655,1,786,'11','Not yet, and I want to avoid the need for one in the future',''),(5656,1,786,'13','Google/Internet',''),(5657,1,786,'4','11am – 1pm',''),(5658,1,787,'6.3','Bari F Buccola',''),(5659,1,787,'2','bbuccolahb@yahoo.com',''),(5660,1,787,'3','(714) 801-3010',''),(5661,1,787,'5','I have been diagnosed with severe arthritis to my right hip and was told I need a hip replacement.\r\nI started researching and found stem cell alternative to hip replacement and want to know more details. \r\nI have some questions like:  \r\nHow many treatments is required before I see the results of the stem cell therapy?\r\nWhat is the timeframe we are looking at to no longer be in pain? \r\nWhat is the success rate of this therapy for severe arthritis on the right hip?',''),(5662,1,787,'11','Yes, and I want to avoid it if possible',''),(5663,1,787,'13','Google/Internet',''),(5664,1,787,'4','Anytime',''),(5665,1,788,'6.3','kevin martin',''),(5666,1,788,'2','kevcmartin.construction@gmail.com',''),(5667,1,788,'3','(760) 677-6279',''),(5668,1,788,'5','I want to get an appt for my husband Kevin. He injured his back almost 3 years ago weight lifting. He had a bulging disc shaved in L5 and S1. He continues to have chronic back pain daily and is affecting his quality of life.',''),(5669,1,788,'11','Not yet, and I want to avoid the need for one in the future',''),(5670,1,788,'13','Referred by my doctor/provider',''),(5671,1,788,'4','3pm – 5pm',''),(5672,1,789,'6.3','pejman dardashti',''),(5673,1,789,'2','yosteve8@gmail.com',''),(5674,1,789,'3','(407) 409-1748',''),(5675,1,789,'5','Do you accept Medicare for stem cell treatments?',''),(5676,1,789,'11','Yes, and I want to avoid it if possible',''),(5677,1,789,'13','Google/Internet',''),(5678,1,789,'4','Anytime',''),(5679,1,790,'6.3','Phil',''),(5680,1,790,'2','rockwell963@gmail.com',''),(5681,1,790,'3','(612) 369-7755',''),(5682,1,790,'5','Right wrist stem cell consult',''),(5683,1,790,'11','Not yet, and I want to avoid the need for one in the future',''),(5684,1,790,'13','Google/Internet',''),(5685,1,790,'4','Anytime',''),(5686,1,791,'6.3','Eric Jones',''),(5687,1,791,'2','eric.jones.z.mail@gmail.com',''),(5688,1,791,'3','(555) 555-1212',''),(5689,1,791,'5','My name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(5690,1,791,'11','Yes, and I want to avoid it if possible',''),(5691,1,791,'13','YouTube',''),(5692,1,791,'4','9am – 11am',''),(5693,1,792,'6.3','AJ Sexton',''),(5694,1,792,'2','ajthefifth@icloud.com',''),(5695,1,792,'3','(949) 945-8450',''),(5696,1,792,'5','Arthritis in both knees. Candidate for double replacement',''),(5697,1,792,'11','Yes, and I want to avoid it if possible',''),(5698,1,792,'13','Friend/family who was/is a patient',''),(5699,1,792,'4','Anytime',''),(5700,1,793,'6.3','Eric Jones',''),(5701,1,793,'2','eric.jones.z.mail@gmail.com',''),(5702,1,793,'3','(555) 555-1212',''),(5703,1,793,'5','Hi, my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nTalk With Web Visitor _ CLICK HERE https://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=drfields.com',''),(5704,1,793,'11','Yes, and I want to avoid it if possible',''),(5705,1,793,'13','Google/Internet',''),(5706,1,793,'4','11am – 1pm',''),(5707,1,794,'6.3','Taylor Burns',''),(5708,1,794,'2','tburns31797@gmail.com',''),(5709,1,794,'3','(818) 665-6721',''),(5710,1,794,'5','Hello,\r\nI was just reaching out to see if you were hiring for an Orthopedic Technician. I would love to send over my resume. \r\nThank you,\r\nTaylor Burns',''),(5711,1,794,'11','Not yet, and I want to avoid the need for one in the future',''),(5712,1,794,'13','Google/Internet',''),(5713,1,794,'4','Anytime',''),(5714,1,795,'6.3','Chris Morris',''),(5715,1,795,'2','morris.chris2290@gmail.com',''),(5716,1,795,'3','(093) 306-6262',''),(5717,1,795,'5','Hello,\r\n \r\nHow are you? Hope you are fine.\r\n \r\nI have been checking your website quite often. It has seen that the main keywords are still not in the top 10 positions in Google Search. You know things about working; I mean the procedure of working has changed a lot.\r\n \r\nSo I would like to have opportunity to work for you and this time we will bring the keywords to the top 10 spots with guaranteed period.\r\n \r\nThere is no wonder that it is possible now cause, I have found out that there are few things that need to be done for better performances (Some of them we will discuss in this email). Let me tell you some of them -\r\n \r\n1. Title Tag Optimization\r\n2. Meta Tag Optimization (Description, keyword and etc)\r\n3. Heading Tags Optimization\r\n4. Targeted keywords are not placed into tags\r\n5. Alt / Image tags Optimization\r\n6. Google Structured Data is missing\r\n7. Custom 404 Page is missing\r\n8. The Products are not following Structured markup data\r\n9. Website Loading Speed Development (Both Mobile and Desktop )\r\n10.Off –Page SEO work\r\n  \r\nLots are pending……………..\r\n \r\nYou can see these are the things that need to be done properly to make the keywords others to get into the top 10 spots in Google Search & your sales Increase.\r\n \r\n \r\nSir/ Madam, please give us a chance to fix these errors and we will give you rank on these keywords.\r\n \r\nPlease let me know if you encounter any problems or if there is anything you need. If this email has reached you by mistake or if you do not wish to take advantage of this advertising opportunity, please accept my apology for any inconvenience caused and rest assured that you will not be contacted again.\r\n \r\nMany thanks for your time and consideration,\r\n \r\nLooking forward\r\n \r\nRegards\r\n\r\nChris Morris\r\n\r\nIf you do not wish to receive this again, please reply with \"unsubscribe\" in the subject line.',''),(5718,1,795,'11','Not yet, and I want to avoid the need for one in the future',''),(5719,1,795,'13','Google/Internet',''),(5720,1,795,'4','Anytime',''),(5721,1,796,'6.3','Marisol Morán Cortés',''),(5722,1,796,'2','marisolmc2606@gmail.com',''),(5723,1,796,'3','(777) 493-0960',''),(5724,1,796,'5','Hi I\'m Marisol I attended at AMA. \r\nMy boyfriend fall down to the motorcycle a year ago, the motorcycle fell on his heel, he didn\'t move his heel, he used crutches for a month. Walked again but he loose movement and sometimes has pain. I wish know if he is a candidate for prolotherapy.\r\n\r\nThank you',''),(5725,1,796,'11','Not yet, and I want to avoid the need for one in the future',''),(5726,1,796,'13','Another healthcare website',''),(5727,1,796,'4','11am – 1pm',''),(5728,1,797,'6.3','Eric Jones',''),(5729,1,797,'2','eric.jones.z.mail@gmail.com',''),(5730,1,797,'3','(555) 555-1212',''),(5731,1,797,'5','Hey there, I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE http://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=drfields.com',''),(5732,1,797,'11','Yes, and I want to avoid it if possible',''),(5733,1,797,'13','Another healthcare website',''),(5734,1,797,'4','11am – 1pm',''),(5735,1,798,'6.3','TimothyOwego',''),(5736,1,798,'2','kuzneczovmaksim8@gmail.com',''),(5737,1,798,'3','(446) 028-7444',''),(5738,1,798,'5','<a href=https://angara12.ru/kaminnaya-topka-ekokamin-vega-1200-b-printing-chernyy-shamot-podovoe-gorenie>топка экокамин вега 1200</a> \r\n \r\nПечи-камины Angara \r\n \r\nкаминные топки экокамин альфа 700 https://angara12.ru/kaminnaya-topka-ekokamin-alfa-700-150 \r\nтопка альфа 700 купить https://angara12.ru/kaminnaya-topka-ekokamin-alfa-700-150 \r\nтопка дельта 1200 https://angara12.ru/kaminnaya-topka-ekokamin-delta-1200-tri-stekla-printing \r\nэкокамин дельта 1200 https://angara12.ru/kaminnaya-topka-ekokamin-delta-1200-tri-stekla-printing',''),(5739,1,798,'11','Not yet, and I want to avoid the need for one in the future',''),(5740,1,798,'13','Friend/family who was/is a patient',''),(5741,1,798,'4','Anytime',''),(5742,1,799,'6.3','Lisa Walker',''),(5743,1,799,'2','info@jobdreamteam.com',''),(5744,1,799,'3','(616) 343-0069',''),(5745,1,799,'5','Hello, if you\'re interested, I\'d love to write an article for your website about older marketing techniques that have effectively stood the test of time!\r\n\r\nI’ll write about the options (including fliers, postcards, discounts, and yard signs) that can either complement other marketing strategies or stand on their own. \r\n\r\nOnce completed, would you like to check out the (free) article and see if it\'s a suitable fit for your website?\r\n\r\nThank you for taking the time to read this!\r\nLisa Walker\r\ninfo@jobdreamteam.com',''),(5746,1,799,'11','Not yet, and I want to avoid the need for one in the future',''),(5747,1,799,'13','Facebook',''),(5748,1,799,'4','Anytime',''),(5749,1,800,'6.3','AshleyUnown',''),(5750,1,800,'2','dimasuknivv@bk.ru',''),(5751,1,800,'3','(707) 770-2567',''),(5752,1,800,'5','What\'s up sweet. I’ve just, only looked through  your profile. You’re hot. I’m so, very tired tonight and I want 2 offer u talking. look at me http://531.BEST-GIRLS-2020.RU/?em2 here',''),(5753,1,800,'11','Not yet, and I want to avoid the need for one in the future',''),(5754,1,800,'13','Google/Internet',''),(5755,1,800,'4','Anytime',''),(5756,1,801,'6.3','AnnaDyem',''),(5757,1,801,'2','annaDyem@gmail.com',''),(5758,1,801,'3','(613) 202-8865',''),(5759,1,801,'5','Неllо all, guys! Ι know, my mesѕаge maу bе too sрecіfіc,\r\nΒut my sistеr found nicе man here and they mаrrіed, ѕо hоw about mе?! :)\r\nΙ аm 23 yеars оld, Αnna, from Romаnia, I knоw Εngliѕh and Germаn languageѕ аlѕо\r\nΑnd... I hаve ѕpеcifіc diѕеasе, nаmеd nуmphomania. Ԝho knоw what is thiѕ, саn undеrstаnd mе (bettеr to say іt immedіatеlу)\r\nΑh уеѕ, Ι сооk very taѕty! аnd I love nоt оnly cook ;))\r\nIm rеаl gіrl, not prostitute, and lооkіng for seriоuѕ аnd hоt relatіоnѕhір...\r\nΑnywаy, уou сan find my prоfіlе herе: http://inidexsiotranib.ml/user/88018/',''),(5760,1,801,'11','Not yet, and I want to avoid the need for one in the future',''),(5761,1,801,'13','Another healthcare website',''),(5762,1,801,'4','Anytime',''),(5763,1,802,'6.3','Cynthia Giacomin',''),(5764,1,802,'2','giacomins@cox.net',''),(5765,1,802,'3','(310) 877-2493',''),(5766,1,802,'5','Tendinitis in shoulder',''),(5767,1,802,'11','Not yet, and I want to avoid the need for one in the future',''),(5768,1,802,'13','Friend/family who was/is a patient',''),(5769,1,802,'4','Anytime',''),(5770,1,803,'6.3','George Hall',''),(5771,1,803,'2','georgehall4762@gmail.com',''),(5772,1,803,'3','(408) 585-5364',''),(5773,1,803,'5','Finest Cleaners specializes in providing janitorial services.  Would you be open to a free janitorial estimate from our company?',''),(5774,1,803,'11','Not yet, and I want to avoid the need for one in the future',''),(5775,1,803,'13','Another healthcare website',''),(5776,1,803,'4','Anytime',''),(5777,1,804,'6.3','Rich',''),(5778,1,804,'2','cite.entertainment@gmail.com',''),(5779,1,804,'3','(310) 701-7459',''),(5780,1,804,'5','Pain from pinched nerve, upper back.',''),(5781,1,804,'11','Not yet, and I want to avoid the need for one in the future',''),(5782,1,804,'13','I am a current patient/was a patient previously',''),(5783,1,804,'4','Anytime',''),(5784,1,805,'6.3','Victor Bernache',''),(5785,1,805,'2','vjbernache@gmail.com',''),(5786,1,805,'3','(323) 208-0684',''),(5787,1,805,'5','This appointment is for my mother. She has rheumatoid arthritis all over here body. The pain is getting to be to much for her. Her current doctors are only prescribing pain medicine.',''),(5788,1,805,'11','Not yet, and I want to avoid the need for one in the future',''),(5789,1,805,'13','Google/Internet',''),(5790,1,805,'4','Anytime',''),(5791,1,806,'6.3','Sarah Horner',''),(5792,1,806,'2','sarahhorner1966@icloud.com',''),(5793,1,806,'3','(541) 941-4137',''),(5794,1,806,'5','Degenerative disc disease horrible chronic pain looking for stem cells I have Medicare',''),(5795,1,806,'11','Yes, and I want to avoid it if possible',''),(5796,1,806,'13','Google/Internet',''),(5797,1,806,'4','Anytime',''),(5798,1,807,'6.3','barbara',''),(5799,1,807,'2','barbaraos6525@yahoo.com',''),(5800,1,807,'3','(323) 656-1924',''),(5801,1,807,'5','need to know my options to treat: lower/ sacroliac back pain, disc herniation at L4/L5,  and very limited range of motion in hips.  had lumbar surgery to correct lumbar spine fracture 2021.  had hip surgery to correct hip injury 2022.    had prp therapy to treat hip pain, prior to surgery',''),(5802,1,807,'11','Not yet, and I want to avoid the need for one in the future',''),(5803,1,807,'13','Another healthcare website',''),(5804,1,807,'4','1pm – 3pm',''),(5805,1,808,'6.3','Vincent Tieu',''),(5806,1,808,'2','vincent_tieu@yahoo.com',''),(5807,1,808,'3','(626) 417-9770',''),(5808,1,808,'5','I think i may be a candidate for prolotherapy to treat cervical instability. In March of 2022 i began getting heart palpitations, tachycardia, and brain fog out of no where. I have ruled out any heart issues since then through extensive testings with my cardiologist. Fast forward to today the cardiac symptoms have subsided, but i still have this brain fog, altered sense of vision, tinnitus, neck pain, and difficulty with holding my neck.',''),(5809,1,808,'11','Not yet, and I want to avoid the need for one in the future',''),(5810,1,808,'13','Google/Internet',''),(5811,1,808,'4','1pm – 3pm',''),(5812,1,809,'6.3','Victor Smushkevich',''),(5813,1,809,'2','vicsmush@gmail.com',''),(5814,1,809,'3','(818) 266-7784',''),(5815,1,809,'5','I have stiffness in my neck, sometimes I get very dizzy when I get up and turn my neck, I\'ve experienced a decreased memory ever since I\'ve had this issue and feel like the blood circulation to my head is constricted. I think I might have cervical instability.',''),(5816,1,809,'11','Not yet, and I want to avoid the need for one in the future',''),(5817,1,809,'13','Google/Internet',''),(5818,1,809,'4','3pm – 5pm',''),(5819,1,810,'6.3','Carolyn Vasquez',''),(5820,1,810,'2','katia713@gmail.com',''),(5821,1,810,'3','(818) 826-9980',''),(5822,1,810,'5','I have severe pain in my left foot and get cortozone injections quite often.  Do you guys handle this sort of thing?',''),(5823,1,810,'11','Not yet, and I want to avoid the need for one in the future',''),(5824,1,810,'13','Google/Internet',''),(5825,1,810,'4','Anytime',''),(5826,1,811,'6.3','Deborah Gaston',''),(5827,1,811,'2','fit2ad@sbcglobal.net',''),(5828,1,811,'3','(310) 569-3812',''),(5829,1,811,'5','I have meniscus tears in both knees and would like a solution that doesn\'t involve surgery or weeks of PT.',''),(5830,1,811,'11','Not yet, and I want to avoid the need for one in the future',''),(5831,1,811,'13','Google/Internet',''),(5832,1,811,'4','Anytime',''),(5833,1,812,'6.3','jared',''),(5834,1,812,'2','jared.vegaelectric@gmail.com',''),(5835,1,812,'3','(661) 343-5079',''),(5836,1,812,'5','Had an injury to my neck and shoulder. I am seeing a doctor in Florida who is doing prolo therapy on my neck. And he suggested I have my shoulder done as well but it is getting pretty expensive since I live in Bakersfield Ca .He said someone in California could take care of my shoulder.',''),(5837,1,812,'11','Not yet, and I want to avoid the need for one in the future',''),(5838,1,812,'13','Google/Internet',''),(5839,1,812,'4','Anytime',''),(5840,1,813,'6.3','jared vega',''),(5841,1,813,'2','jared.vegaelectric@gmail.com',''),(5842,1,813,'3','(661) 343-5079',''),(5843,1,813,'5','Had an injury to my neck and shoulder. I am seeing a doctor in Florida who is doing prolo therapy on my neck. And he suggested I have my shoulder done as well but it is getting pretty expensive since I live in Bakersfield Ca .He said someone in California could take care of my shoulder.',''),(5844,1,813,'11','Not yet, and I want to avoid the need for one in the future',''),(5845,1,813,'13','Google/Internet',''),(5846,1,813,'4','Anytime',''),(5847,1,814,'6.3','Rebecca Adams',''),(5848,1,814,'2','behki.adams@gmail.com',''),(5849,1,814,'3','(310) 428-5804',''),(5850,1,814,'5','I have a complex tear of my medial meniscus. I have consulted with my Dr and surgery is recommended based on his assessment of my\r\nMRI and athletic goals (martial arts/surfing/backpacking). He can do PRP and I am planning on attempting that first to avoid the surgical option. He did say that there is a possibility that it will work so that gives me some hope. I wanted a second opinion or thoughts on non surgical options as this would be the second tear in the same knee and I have had prior arthroscopic surgery.',''),(5851,1,814,'11','Yes, and I want to avoid it if possible',''),(5852,1,814,'13','Google/Internet',''),(5853,1,814,'4','Anytime',''),(5854,1,815,'6.3','ErnestBom',''),(5855,1,815,'2','no-replyIcosecoerics@gmail.com',''),(5856,1,815,'3','(474) 555-1640',''),(5857,1,815,'5','Hi!  drfields.com \r\n \r\nWe present oneself \r\n \r\nSending your commercial proposal through the Contact us form which can be found on the sites in the contact partition. Contact form are filled in by our program and the captcha is solved. The superiority of this method is that messages sent through feedback forms are whitelisted. This method improve the probability that your message will be read. \r\n \r\nOur database contains more than 27 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing Up to 50,000 messages. \r\n \r\n \r\nThis message is created automatically.  Use our contacts for communication. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.',''),(5858,1,815,'11','Not yet, and I want to avoid the need for one in the future',''),(5859,1,815,'13','Google/Internet',''),(5860,1,815,'4','Anytime',''),(5861,1,816,'6.3','Mark Mierloi',''),(5862,1,816,'2','markm@nutricompanyinc.com',''),(5863,1,816,'3','(561) 544-0719',''),(5864,1,816,'5','We are Nutritional Products International, a global brand management company that is based in Boca Raton, FL. As a third-generation family-owned business for more than two decades, NPI specializes in helping foreign brands enter the American consumer market in a timely, profitable, and professional manner.\r\n\r\nTo achieve our success, we have developed a proprietary system called the _Evolution of Distribution,_ which includes all the professional services needed to launch products in the U.S., including:\r\n\r\n_	Fast Track Purchase Orders from Major Retailers\r\n_	FDA and Regulatory Compliance \r\n_	Warehouse/Custom Brokerage Infrastructure\r\n_	Operational/Logistical Expertise\r\n_	Communications, Media, and Marketing Campaigns\r\n_	Import, Distribute, and Promote\r\n_	Turn-key, one-stop solution\r\n\r\nOur executives have more than 100 years of combined retail experience as well as buying for and selling to retail giants, such as Amazon and Walmart. NPI_s team has placed 100s of products on Amazon that have generated tens of millions of dollars in sales.\r\n\r\nIf we become your partner, NPI becomes your brand_s United States headquarters.\r\n\r\nWe invite you to learn more about how to get into the United States with Nutritional Products International.\r\n\r\nRegards,\r\nMark\r\n\r\nMark Mierloi\r\nExecutive Vice President of Business Development\r\nNutritional Products International\r\n150 E. Palmetto Park Blvd., Suite  800\r\nBoca Raton, FL 33432\r\nCell: (386)-405-9619\r\nOffice: (561) 544-0719\r\nEmail: markm@nutricompanyinc.com',''),(5865,1,816,'11','Yes, and I want to avoid it if possible',''),(5866,1,816,'13','I am a current patient/was a patient previously',''),(5867,1,816,'4','9am – 11am',''),(5868,1,817,'6.3','George Hall',''),(5869,1,817,'2','georgehall4762@gmail.com',''),(5870,1,817,'3','(408) 585-5364',''),(5871,1,817,'5','Finest Cleaners specializes in providing janitorial services.  Would you be open to a free janitorial estimate from our company?',''),(5872,1,817,'11','Not yet, and I want to avoid the need for one in the future',''),(5873,1,817,'13','Google/Internet',''),(5874,1,817,'4','Anytime',''),(5875,1,818,'6.3','Eric Jones',''),(5876,1,818,'2','ericjonesmyemail@gmail.com',''),(5877,1,818,'3','(555) 555-1212',''),(5878,1,818,'5','Hi, my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nTalk With Web Visitor _ CLICK HERE https://boostleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(5879,1,818,'11','Yes, and I want to avoid it if possible',''),(5880,1,818,'13','Facebook',''),(5881,1,818,'4','11am – 1pm',''),(5882,1,819,'6.3','Heidy Fu',''),(5883,1,819,'2','heidyfu@hotmail.com',''),(5884,1,819,'3','(310) 880-4859',''),(5885,1,819,'5','inquiring for both my parents, suffering from shoulder pain. Mom diagnosed with bursitis, tendon worn-off, and suspect dad is suffering from the same thing. Both would like an consultation and also see if they can do PRP injections. Thank you!',''),(5886,1,819,'11','Not yet, and I want to avoid the need for one in the future',''),(5887,1,819,'13','Google/Internet',''),(5888,1,819,'4','1pm – 3pm',''),(5889,1,820,'6.3','Connor Broome',''),(5890,1,820,'2','connorb@crexi.com',''),(5891,1,820,'3','(602) 376-9102',''),(5892,1,820,'5','Sudden loss of balance for 5 days. Had a severe neck injury on May 7th. Haven’t fully recovered. Never was diagnosed. Was just told it’s strange MRI revealed nothing. 2 small disc bulged. 2mm',''),(5893,1,820,'11','Not yet, and I want to avoid the need for one in the future',''),(5894,1,820,'13','Google/Internet',''),(5895,1,820,'4','Anytime',''),(5896,1,821,'6.3','Lauren',''),(5897,1,821,'2','LaurenGreenmkt@gmail.com',''),(5898,1,821,'3','(410) 230-1234',''),(5899,1,821,'5','Hi,\r\n\r\nI came across your website and noticed that you were not ranking well for certain keyword phrases.\r\n\r\nI would like to send you a comprehensive SEO strategy & Proposal to help improve your Google rankings dramatically.\r\n\r\nWould that be okay? If so, I can send it to you sometime this week.\r\n\r\nKind Regards,\r\nLauren Green',''),(5900,1,821,'11','Not yet, and I want to avoid the need for one in the future',''),(5901,1,821,'13','Friend/family who was/is a patient',''),(5902,1,821,'4','9am – 11am',''),(5903,1,822,'6.3','Lindsey',''),(5904,1,822,'2','lindseyjohnson9626@yahoo.com',''),(5905,1,822,'3','(760) 522-8636',''),(5906,1,822,'5','neck instability',''),(5907,1,822,'11','Not yet, and I want to avoid the need for one in the future',''),(5908,1,822,'13','Referred by my doctor/provider',''),(5909,1,822,'4','9am – 11am',''),(5910,1,823,'6.3','Eric Jones',''),(5911,1,823,'2','ericjonesmyemail@gmail.com',''),(5912,1,823,'3','(555) 555-1212',''),(5913,1,823,'5','Hello, my name_s Eric and I just ran across your website at drfields.com...\r\n\r\nI found it after a quick search, so your SEO_s working out_\r\n\r\nContent looks pretty good_\r\n\r\nOne thing_s missing though_\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds _ 7 out of 10 disappear almost instantly, Surf Surf Surf_ then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to TALK with them - literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try_ it could be huge for your business.\r\n\r\nPlus, now that you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto_ which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(5914,1,823,'11','Yes, and I want to avoid it if possible',''),(5915,1,823,'13','Referred by my doctor/provider',''),(5916,1,823,'4','11am – 1pm',''),(5917,1,824,'6.3','Gloria Camacho',''),(5918,1,824,'2','camacho.g@ca.rr.com',''),(5919,1,824,'3','(562) 773-3859',''),(5920,1,824,'5','3 herniated disks at age 16',''),(5921,1,824,'11','Yes, and I want to avoid it if possible',''),(5922,1,824,'13','Referred by my doctor/provider',''),(5923,1,824,'4','Anytime',''),(5924,1,825,'6.3','Nancy Malek',''),(5925,1,825,'2','nmalek@ameritech.net',''),(5926,1,825,'3','(773) 248-0906',''),(5927,1,825,'5','Hip pain',''),(5928,1,825,'11','Not yet, and I want to avoid the need for one in the future',''),(5929,1,825,'13','Referred by my doctor/provider',''),(5930,1,825,'4','Anytime',''),(5931,1,826,'6.3','Jorge Rubio',''),(5932,1,826,'2','jorgerubio1127@gmail.com',''),(5933,1,826,'3','(818) 491-6691',''),(5934,1,826,'5','Bucket handle meniscus tear flipped',''),(5935,1,826,'11','Yes, and I want to avoid it if possible',''),(5936,1,826,'13','Google/Internet',''),(5937,1,826,'4','Anytime',''),(5938,1,827,'6.3','Eric Jones',''),(5939,1,827,'2','ericjonesmyemail@gmail.com',''),(5940,1,827,'3','(555) 555-1212',''),(5941,1,827,'5','Hello, my name_s Eric and I just ran across your website at drfields.com...\r\n\r\nI found it after a quick search, so your SEO_s working out_\r\n\r\nContent looks pretty good_\r\n\r\nOne thing_s missing though_\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds _ 7 out of 10 disappear almost instantly, Surf Surf Surf_ then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to TALK with them - literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try_ it could be huge for your business.\r\n\r\nPlus, now that you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto_ which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(5942,1,827,'11','Yes, and I want to avoid it if possible',''),(5943,1,827,'13','I am a current patient/was a patient previously',''),(5944,1,827,'4','3pm – 5pm',''),(5945,1,828,'6.3','James Mack',''),(5946,1,828,'2','j123good@aol.com',''),(5947,1,828,'3','(123) 456-7890',''),(5948,1,828,'5','Subject:  Doctor Needed\r\n\r\nI want to file a SSDI claim but need to see some doctors first. Can you let me know if you can assist me?\r\n\r\nI would like to find some doctors who are familiar with writing letters to the Social Security Administration for Disability.\r\n\r\nDoctors’ familiar with sleep medicine, cognitive decline, hearing and also a general practitioners. They should be located in the Los Angeles or Orange County areas.\r\n\r\nBecause there are several medical areas and you may not handle all of them, can you recommend some doctors in any or all of these areas of practice:\r\n\r\nHearing loss, PTSD, depression, cognitive decline, migraines, neck & back pain, anxiety & depression,  GERD, tinnitus & other hearing issues,  cardiologist, carpel tunnel syndrome and several sleep disorders: 1 sleep apnea  2 REM sleep behavior disorder 3 insomnia 4 Restless leg syndrome and nightmares.\r\n\r\nIf you cannot assist me it would be very much appreciated if you could please make some referrals.\r\n\r\nI also need doctors that will take health insurance. I have one of the best policies, Anthem Blue Cross PPO Plus.\r\n\r\nI need a doctor willing, should your evaluation & medical findings warrant it, to write a compelling letter to Social Security Disability Insurance about why I am not able to work.\r\n\r\nI thank you very much in advance for your assistance.\r\n\r\nWishing you all my best!\r\nJames Mack',''),(5949,1,828,'11','Not yet, and I want to avoid the need for one in the future',''),(5950,1,828,'13','Google/Internet',''),(5951,1,828,'4','1pm – 3pm',''),(5952,1,829,'6.3','Dave',''),(5953,1,829,'2','dkvij@yahoo.com',''),(5954,1,829,'3','(310) 595-0969',''),(5955,1,829,'5','Knees\r\nIn 2018 tore my right knee ACL, meniscus, and ligaments. After surgery in June 2018 and completing 8 months of PT in 2019 been active. However, there is knee pain and swelling after completing an activity of playing soccer with friends, walking for 5 miles, and at times after tennis. The left knee is starting to act up as well.',''),(5956,1,829,'11','Not yet, and I want to avoid the need for one in the future',''),(5957,1,829,'13','Google/Internet',''),(5958,1,829,'4','3pm – 5pm',''),(5959,1,830,'6.3','Margaritacreva',''),(5960,1,830,'2','lyudochka_kharichkova@mail.ru',''),(5961,1,830,'3','(138) 887-7043',''),(5962,1,830,'5','XEvil 5.0 automatically solve most kind of captchas, \r\nIncluding such type of captchas: ReCaptcha-2, ReCaptcha-3, Hotmail, Google, Solve Media, BitcoinFaucet, Steam, +12k \r\n+ hCaptcha supported in new XEvil 6.0! Just search for XEvil 6.0 in YouTube \r\n \r\nInterested? Just google XEvil 5.0 \r\nP.S. Free XEvil Demo is available ! \r\n \r\nAlso, there is a huge discount available for purchase until 30th July: -30%! \r\nStand-alone full license of XEvil price is Just 59 USD \r\n \r\nhttp://XEvil.Net/ \r\n \r\nCheck new video in YouTube: \r\n\"XEvil 6.0 <Beta>1] + XRumer multhithreading hCaptcha test\"',''),(5963,1,830,'11','Not yet, and I want to avoid the need for one in the future',''),(5964,1,830,'13','YouTube',''),(5965,1,830,'4','Anytime',''),(5966,1,831,'6.3','Shannonbut',''),(5967,1,831,'2','williebruip@softdisc.site',''),(5968,1,831,'3','(231) 817-3281',''),(5969,1,831,'11','Not yet, and I want to avoid the need for one in the future',''),(5970,1,831,'13','Another healthcare website',''),(5971,1,831,'4','Anytime',''),(5972,1,832,'6.3','Jeff Catanzarite',''),(5973,1,832,'2','drjeffcat@gmail.com',''),(5974,1,832,'3','(714) 719-9403',''),(5975,1,832,'5','I have a chronic condition affecting my right achilles tendon and calcaneus.   I had a recent MRI on 7/13/2022.   The main impression was Moderate distal Achilles tendinosis with retrocalcaneal bursitis and reactive edema in the posterior calcaneus.    I have tried PRP and Prolotherapy in 2020 and 2021 with little success.   I tried shock wave therapy and class IV laser earlier this year which made the condition more inflamed.   I am currently just getting treatment with a class IV laser with another physician (chiropractor) which seems to be helping somewhat.   This has been going on for 9 years, since 2013.   I would like to try stem cells as I believe that may stimulate my body to heal this condition.',''),(5976,1,832,'11','Not yet, and I want to avoid the need for one in the future',''),(5977,1,832,'13','Referred by my doctor/provider',''),(5978,1,832,'4','3pm – 5pm',''),(5979,1,833,'6.3','Seth D Knie',''),(5980,1,833,'2','sethknie@gmail.com',''),(5981,1,833,'3','(805) 990-8395',''),(5982,1,833,'5','Sudden bilateral shoulder pain',''),(5983,1,833,'11','Not yet, and I want to avoid the need for one in the future',''),(5984,1,833,'13','Google/Internet',''),(5985,1,833,'4','Anytime',''),(5986,1,834,'6.3','Emery Forbes',''),(5987,1,834,'2','emeryforbes02@gmail.com',''),(5988,1,834,'3','(408) 585-5364',''),(5989,1,834,'5','Exceptional Cleaners specializes in providing janitorial services.  Would you be open to a free janitorial estimate from our company?',''),(5990,1,834,'11','Not yet, and I want to avoid the need for one in the future',''),(5991,1,834,'13','Referred by my doctor/provider',''),(5992,1,834,'4','9am – 11am',''),(5993,1,835,'6.3','Louise Capper',''),(5994,1,835,'2','louise@capperteam.com',''),(5995,1,835,'3','(714) 606-5077',''),(5996,1,835,'5','Was supposed to have ACDF surgery on my C3- C5 but I have been having throat issues where it\'s hard to swallow and tight neck so Dr said to figure out that 1st. But I have every possible symptom of Barre Leiou...vertigo everyday, blurry vision  etc... I have severe compression in my neck that you can see on MRI...also retrolithesis in neck and need something done now...physical therapy is making it worse.',''),(5997,1,835,'11','Yes, and I want to avoid it if possible',''),(5998,1,835,'13','Google/Internet',''),(5999,1,835,'4','Anytime',''),(6000,1,836,'6.3','Mikeacace',''),(6001,1,836,'2','marekkidecccki@gmail.com',''),(6002,1,836,'3','(334) 135-1303',''),(6003,1,836,'5','http://onlinecasinoblogmiloboam42086.articlesblogger.com \r\n \r\nsympatia zielona gora',''),(6004,1,836,'11','Not yet, and I want to avoid the need for one in the future',''),(6005,1,836,'13','Google/Internet',''),(6006,1,836,'4','Anytime',''),(6007,1,837,'6.3','Igor Lourie',''),(6008,1,837,'2','louri@pacbell.net',''),(6009,1,837,'3','(650) 228-3055',''),(6010,1,837,'5','Hello! For three years now I have had severe pain in the muscles below the joints of the shoulders of both hands. When the arms are down, there is no pain. Pain occurs when I raise my hands uр.',''),(6011,1,837,'11','Not yet, and I want to avoid the need for one in the future',''),(6012,1,837,'13','Another healthcare website',''),(6013,1,837,'4','3pm – 5pm',''),(6014,1,838,'6.3','Eric Jones',''),(6015,1,838,'2','ericjonesmyemail@gmail.com',''),(6016,1,838,'3','(555) 555-1212',''),(6017,1,838,'5','Hey there, I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6018,1,838,'11','Yes, and I want to avoid it if possible',''),(6019,1,838,'13','Referred by my doctor/provider',''),(6020,1,838,'4','9am – 11am',''),(6021,1,839,'6.3','Silina',''),(6022,1,839,'2','Hopeintruth2012@yahoo.com',''),(6023,1,839,'3','(714) 422-6869',''),(6024,1,839,'5','Hello. \r\nMy husband has chronic shoulder pain. He was told he needs cortisone injections by Kiaser Dr. \r\nI wanted to know your insurance preference and comparison in prices with or without acceptable insurance please',''),(6025,1,839,'11','Not yet, and I want to avoid the need for one in the future',''),(6026,1,839,'13','Google/Internet',''),(6027,1,839,'4','1pm – 3pm',''),(6028,1,840,'6.3','Tim O\'Rourke',''),(6029,1,840,'2','torourke@mtsac.edu',''),(6030,1,840,'3','(626) 253-0693',''),(6031,1,840,'5','I have had arthritis in my left ankle for about ten years. It continues to get worse. I basically experience pain every step every day.\r\n\r\nI have seen orthopedists and podiatrists. I have had a cortisone injection. Nothing has really worked.\r\n\r\nI currently take diclofenac--that does offer some relief.\r\n\r\nI limp so much on my left ankle that now my right knee is sore quite often.',''),(6032,1,840,'11','Not yet, and I want to avoid the need for one in the future',''),(6033,1,840,'13','Friend/family who was/is a patient',''),(6034,1,840,'4','Anytime',''),(6035,1,841,'6.3','Eric Jones',''),(6036,1,841,'2','ericjonesmyemail@gmail.com',''),(6037,1,841,'3','(555) 555-1212',''),(6038,1,841,'5','Hello, my name_s Eric and I just ran across your website at drfields.com...\r\n\r\nI found it after a quick search, so your SEO_s working out_\r\n\r\nContent looks pretty good_\r\n\r\nOne thing_s missing though_\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds _ 7 out of 10 disappear almost instantly, Surf Surf Surf_ then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to TALK with them - literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try_ it could be huge for your business.\r\n\r\nPlus, now that you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto_ which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6039,1,841,'11','Yes, and I want to avoid it if possible',''),(6040,1,841,'13','Referred by my doctor/provider',''),(6041,1,841,'4','1pm – 3pm',''),(6042,1,842,'6.3','Nala Im',''),(6043,1,842,'2','nala@fromfuture.net',''),(6044,1,842,'3','(305) 741-0118',''),(6045,1,842,'5','I discovered a few hidden errors on your site that are preventing you from showing up on the local Google maps when someone searches for you near Santa Monica.\r\n\r\n I just made a visibility report for you that reveals what to fix, it\'s completely complementary with no strings attached. \r\n\r\nYou can click here to unlock it: https://fromfuture.net/?unlockReport=https://www.drfields.com/',''),(6046,1,842,'11','Yes, and I want to avoid it if possible',''),(6047,1,842,'13','Google/Internet',''),(6048,1,842,'4','11am – 1pm',''),(6049,1,843,'6.3','Eric Jones',''),(6050,1,843,'2','ericjonesmyemail@gmail.com',''),(6051,1,843,'3','(555) 555-1212',''),(6052,1,843,'5','My name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6053,1,843,'11','Yes, and I want to avoid it if possible',''),(6054,1,843,'13','YouTube',''),(6055,1,843,'4','9am – 11am',''),(6056,1,844,'6.3','Eric Jones',''),(6057,1,844,'2','ericjonesmyemail@gmail.com',''),(6058,1,844,'3','(555) 555-1212',''),(6059,1,844,'5','Hey, this is Eric and I ran across drfields.com a few minutes ago.\r\n\r\nLooks great_ but now what?\r\n\r\nBy that I mean, when someone like me finds your website _ either through Search or just bouncing around _ what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment.\r\n\r\nHere_s an idea_\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site_\r\n \r\nYou can _\r\n  \r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou_ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don_t close a deal right away, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nPretty sweet _ AND effective.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6060,1,844,'11','Yes, and I want to avoid it if possible',''),(6061,1,844,'13','Google/Internet',''),(6062,1,844,'4','3pm – 5pm',''),(6063,1,845,'6.3','Emery Forbes',''),(6064,1,845,'2','emeryforbes02@gmail.com',''),(6065,1,845,'3','(408) 585-5364',''),(6066,1,845,'5','I submitted a webform recently and wanted to follow up. Exceptional Cleaners  specializes in providing janitorial. Would you be open to a free janitorial estimate from our company?',''),(6067,1,845,'11','Not yet, and I want to avoid the need for one in the future',''),(6068,1,845,'13','Another healthcare website',''),(6069,1,845,'4','9am – 11am',''),(6070,1,846,'6.3','Eric Jones',''),(6071,1,846,'2','ericjonesmyemail@gmail.com',''),(6072,1,846,'3','(555) 555-1212',''),(6073,1,846,'5','Hey, my name_s Eric and for just a second, imagine this_\r\n\r\n- Someone does a search and winds up at drfields.com.\r\n\r\n- They hang out for a minute to check it out.  _I_m interested_ but_ maybe__\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line _ you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn_t really your fault _ it happens a LOT _ studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know right then and there _ enabling you to call that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation_ so even if you don_t close a deal then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6074,1,846,'11','Yes, and I want to avoid it if possible',''),(6075,1,846,'13','YouTube',''),(6076,1,846,'4','9am – 11am',''),(6077,1,847,'6.3','terribq2',''),(6078,1,847,'2','jeanettemp69@masato3710.sora85.officemail.fun',''),(6079,1,847,'3','(608) 076-2022',''),(6080,1,847,'5','Free Porn Galleries - Hot Sex Pictures\r\nhttp://threesome.porn.topanasex.com/?jadyn \r\n young pakistani girls porn suck and finger porn tube corite porn briteny speaes porn pat monahan porn',''),(6081,1,847,'11','Not yet, and I want to avoid the need for one in the future',''),(6082,1,847,'13','I am a current patient/was a patient previously',''),(6083,1,847,'4','Anytime',''),(6084,1,848,'6.3','Eddiehor',''),(6085,1,848,'2','spbbook@gmail.com',''),(6086,1,848,'3','(217) 565-8712',''),(6087,1,848,'5','Кто  ваши конкуренты ? Есть ли такие, о которых вы не знали или знаете но не владеете информацией о том  какие именно объявления размещают? \r\nВсе это можно узнать буквально за пару минут <a href=>вот тут</a> \r\nЭта инструкция поможет не только прояснить ситуацию в платной контекстной рекламе, но и то, по каким запросам ваши конкуренты успешно продвигаются в SEO. \r\nВы сможете получить список этих запросов по каждому из своих конкурентов http://keypersonal.ru/kontekstnaja-reklama-chto-takoe/ \r\nЭтот метод можно применить абсолютно к любому сайту, а на проверку уйдет не более нескольких секунд, даже если вы не очень дружите с интернетом!',''),(6088,1,848,'11','Not yet, and I want to avoid the need for one in the future',''),(6089,1,848,'13','Another healthcare website',''),(6090,1,848,'4','Anytime',''),(6091,1,849,'6.3','Todd Taricco',''),(6092,1,849,'2','todd@taricco.org',''),(6093,1,849,'3','(310) 200-5161',''),(6094,1,849,'5','Both knees cartilage degradation multiple repair surgeries.  Ortho doc recommends replacement. I would prefer not.',''),(6095,1,849,'11','Yes, and I want to avoid it if possible',''),(6096,1,849,'13','Google/Internet',''),(6097,1,849,'4','Anytime',''),(6098,1,850,'6.3','td2',''),(6099,1,850,'2','pr60@susumo610.shiro24.officemail.fun',''),(6100,1,850,'3','(432) 207-3154',''),(6101,1,850,'5','Teen Girls Pussy Pics. Hot galleries\r\nhttp://new-image.photo.miaxxx.com/?post-kaylee \r\n twink gay porn handjob video hot blonde granny porn free vintage porn clps porn in portarican collage party porn',''),(6102,1,850,'11','Not yet, and I want to avoid the need for one in the future',''),(6103,1,850,'13','Facebook',''),(6104,1,850,'4','Anytime',''),(6105,1,851,'6.3','Jeff Juraska',''),(6106,1,851,'2','jeff@healingcenterofscottsdale.com',''),(6107,1,851,'3','(203) 695-5083',''),(6108,1,851,'5','Upper cervical instability C0-C3 have had prolotherapy with success but looking for places closer to home rather than traveling all the way to Florida for treatment.',''),(6109,1,851,'11','Not yet, and I want to avoid the need for one in the future',''),(6110,1,851,'13','Google/Internet',''),(6111,1,851,'4','11am – 1pm',''),(6112,1,852,'6.3','Eric Jones',''),(6113,1,852,'2','ericjonesmyemail@gmail.com',''),(6114,1,852,'3','(555) 555-1212',''),(6115,1,852,'5','Hi, my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nTalk With Web Visitor _ CLICK HERE http://boostleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6116,1,852,'11','Yes, and I want to avoid it if possible',''),(6117,1,852,'13','Friend/family who was/is a patient',''),(6118,1,852,'4','9am – 11am',''),(6119,1,853,'6.3','Mindy Loveall',''),(6120,1,853,'2','organizersrus@gmail.com',''),(6121,1,853,'3','(559) 972-4541',''),(6122,1,853,'5','In 2001, I was traveling approx. 10-15 mph in a Ford F250 truck when suddenly I was rear-ended by another truck. He was traveling approx 65 mph. \r\nA few hours after accident I had bad whiplash pain.\r\nWithin a short amount of time after accident, I developed both migraines and hypothyroidism.\r\nI am now 56 yrs old and post-menopausal and suffer terribly from migraines. I have suffered from them since the accident. I have approx. 4-5 migraines per week. \r\nAfter learning a little bit about whiplash, I am beginning to wonder if the problem with my migraines is that my head is too heavy for the potentially damaged ligaments, etc. in my neck and perhaps elsewhere.\r\nIf I am upright for too long, my neck begins to hurt which is most often an indicator that if I don\'t lay down immediately, a migraine will happen. Even when laying down, I still may end up getting the migraine.\r\nAdditionally, something that could well be a factor is something that happened in my 8th grade year. I was playing catcher in a baseball game at school (with no helmet). I was excited to get to play this position and thought I was big stuff. I called timeout in order to sweep off home plate with my little broom. Apparently not a soul heard me call timeout. The pitcher pitched and the very athletic, beefy girl, up to bat, swung for a homerun and instead of hitting the ball, she hit my head. Apparently, I was knocked out immediately. I was told that I fell onto my back and that both of my legs went straight up into the air. Everyone thought I was clowning until they realized that I was unconscious. I have no idea how long I was out. I will guess 10 minutes or so? \r\nI\'ve often wondered if the car accident jarred this old injury awake, so to speak. I have no idea and may never know.\r\nAll I know is that I have almost no life due to the migraines and I do suffer from depression as well.\r\n\r\nWhat I most need to know is whether or not you accept Blue Shield of California insurance. hmo. After hearing about prolotherapy, I wondered if this could finally be the answer but then wonder if it\'s too late because it\'s been 21 years since injury.',''),(6123,1,853,'11','Not yet, and I want to avoid the need for one in the future',''),(6124,1,853,'13','Google/Internet',''),(6125,1,853,'4','Anytime',''),(6126,1,854,'6.3','Artak Paronyan',''),(6127,1,854,'2','support@buyselltech.online',''),(6128,1,854,'3','(818) 389-3055',''),(6129,1,854,'5','I\'m experiencing dizziness, vision problems and a lot of eye and head pressure. Most of these issues get worse in social situations and its becoming really difficult to get through the day.',''),(6130,1,854,'11','Not yet, and I want to avoid the need for one in the future',''),(6131,1,854,'13','Google/Internet',''),(6132,1,854,'4','11am – 1pm',''),(6133,1,855,'6.3','Eddie Rossi',''),(6134,1,855,'2','creativefloors@optimum.net',''),(6135,1,855,'3','(917) 767-9904',''),(6136,1,855,'5','Constant pain and discomfort in my upper back and neck.',''),(6137,1,855,'11','Not yet, and I want to avoid the need for one in the future',''),(6138,1,855,'13','Google/Internet',''),(6139,1,855,'4','Anytime',''),(6140,1,856,'6.3','Warnereroto',''),(6141,1,856,'2','brosfigus@gmail.com',''),(6142,1,856,'3','(215) 678-6326',''),(6143,1,856,'5','It is time to win a brand new iPhone 14. Test your luck! \r\nYou’ve been selected for a chance to win a brand new iPhone 14. Register here https://cutt.ly/RCvg52k before the timer ends to enter the draw. \r\nThe faster you register, the higher your chance to win!',''),(6144,1,856,'11','Not yet, and I want to avoid the need for one in the future',''),(6145,1,856,'13','Google/Internet',''),(6146,1,856,'4','Anytime',''),(6147,1,857,'6.3','Jeffrey Irvine',''),(6148,1,857,'2','jirvine.041307@gmail.com',''),(6149,1,857,'3','(714) 366-2637',''),(6150,1,857,'5','I am having sciatic nerve pain down my right leg due to an injury lifting weights 5 weeks ago.',''),(6151,1,857,'11','Not yet, and I want to avoid the need for one in the future',''),(6152,1,857,'13','Google/Internet',''),(6153,1,857,'4','Anytime',''),(6154,1,858,'6.3','Shannonbut',''),(6155,1,858,'2','williebruip@softdisc.site',''),(6156,1,858,'3','(701) 475-7747',''),(6157,1,858,'11','Not yet, and I want to avoid the need for one in the future',''),(6158,1,858,'13','I am a current patient/was a patient previously',''),(6159,1,858,'4','Anytime',''),(6160,1,859,'6.3','Hector Galvez',''),(6161,1,859,'2','galvezhector559@yahoo.com',''),(6162,1,859,'3','(818) 915-7852',''),(6163,1,859,'5','I have both knee in NEED of recovery. Left knee has partial acl tear(stretched), and right knee had acl/meniscus surgery. Been going through knee pain for almost a year.',''),(6164,1,859,'11','Not yet, and I want to avoid the need for one in the future',''),(6165,1,859,'13','Google/Internet',''),(6166,1,859,'4','Anytime',''),(6167,1,860,'6.3','Michael Valdez',''),(6168,1,860,'2','mikev3534@gmail.com',''),(6169,1,860,'3','(310) 505-3819',''),(6170,1,860,'5','Need to fix my right knee Torn PCL and ACL I already had one pcl reconstruction and failed',''),(6171,1,860,'11','Yes, and I want to avoid it if possible',''),(6172,1,860,'13','Friend/family who was/is a patient',''),(6173,1,860,'4','3pm – 5pm',''),(6174,1,861,'6.3','Danieljoili',''),(6175,1,861,'2','misha.1979.sobolev@bk.ru',''),(6176,1,861,'3','(037) 710-1171',''),(6177,1,861,'5','Вопрос к юристу : Я являюсь совладельцем приватизированной квартиры в размере ? доли [url=http://buhexpert-in.ru/]помощь бухгалтеру [/url]\r\n   Ещё в начале 2001 года я через нотариуса получил от другого собственника извещение о его намерении продать [url=http://buhexpert-in.ru/]Бухгалтерская Отчетность Услуги [/url]\r\n   [url=http://buhexpert-in.ru/]бухгалтерское сопровождение организаций [/url]\r\n   [url=http://buhexpert-in.ru/]Обслуживание Бухгалтерское [/url]\r\n \r\nПодбирайте для аутсорсинга опытную компанию, которая имеет положительную репутацию в сфере бухгалтерского обслуживания [url=https://buhexpert-in.ru/]услуги по бухгалтерскому сопровождению [/url]\r\n   Проверяйте правильность всех реквизитов и соответствие подписей, как и правомочность подписантов [url=http://buhexpert-in.ru/]услуги по восстановлению бухгалтерского учета [/url]\r\n   Следует учесть, что такой договор может быть подписан и в интернете, если такой документ выставлен в виде публичной оферты (при этом будут использованы электронные подписи), но оригиналами на бумажных носителях лучше всё же обменяться при помощи почтовых служб, курьеров, или во время личной встречи с исполнителями бухгалтерского сопровождения [url=https://buhexpert-in.ru/]услуги по бухгалтерскому сопровождению [/url]\r\n   Предусмотрите весь перечень прав и обязанностей, включая их описание как по срокам, так и по объёмам [url=https://buhexpert-in.ru/]восстановление бухгалтерского учета стоимость [/url]\r\n   Установите размеры ответственности и способы взыскания штрафных санкций [url=http://buhexpert-in.ru/]бухгалтерское сопровождение деятельности [/url]\r\n   Такой договор должен быть обозначен какой-то датой, по факту составления и подписания, а также иметь срок действия [url=https://buhexpert-in.ru/]сайт для бухгалтеров [/url]\r\n \r\nБухгалтерское сопровождение может выражаться в разных формах [url=http://buhexpert-in.ru/]услуги бухгалтера для ип [/url]\r\n   Прибегают к нему в случаях, если нет собственного специалиста или требуется проконтролировать его деятельность [url=https://buhexpert-in.ru/]услуги по бухгалтерскому сопровождению [/url]\r\n   В частности, помощь приглашённого исполнителя особенно востребована на период сдачи отчётности, чтобы определить соответствие документации общим нормам [url=http://buhexpert-in.ru/]Бухгалтерское Сопровождение [/url]\r\n   Классифицируется бухгалтерское сопровождение по способу исполнения на несколько типов: \r\nПрофессионалы компании, исполняющей бухгалтерское обслуживание вашему бизнесу, надежны и знакомы со всеми нюансами бухгалтерского ведения дел и нюансами составления бухгалтерской отчетности [url=https://buhexpert-in.ru/]бухгалтерское сопровождение фирм [/url]\r\n   Специалисты подобной компании оперативно зарегистрируют вашу фирму, ИП, ОАО, ООО, ЧП, ЗАО [url=http://buhexpert-in.ru/]помощь бухгалтеру [/url]\r\n   И в дальнейшем - после регистрации вашей компании, как только у вас возникнет необходимость в бухгалтерском обслуживании, вы просто звоните в компанию бухгалтерского аутсорсинга, и специалисты будут готовы оперативно предложить бухгалтерское сопровождение вашей компании (никаких выездов) [url=http://buhexpert-in.ru/]восстановление бухгалтерского учёта [/url]\r\n \r\nВладельцы кошек наверняка хотя бы раз сталкивались с феноменом под названием  [url=http://buhexpert-in.ru/]Восстановление Бухгалтерского Учета Стоимость [/url]\r\n   Питомец может проявить равнодушие к самому красивому кошачьему домику, но мимо картонной коробки он не пройдет в 99% случаев [url=https://buhexpert-in.ru/]услуги по бухгалтерскому обслуживанию сопровождению [/url]\r\n   Но в чем загадка этого явления? Самые правдоподобные теории — в этом видео [url=http://buhexpert-in.ru/]онлайн консультация бухгалтера бесплатно [/url]\r\n \r\nУпрощённая система налогообложения (УСН) была введена с 1 января 2003 года [url=http://buhexpert-in.ru/]онлайн консультация бухгалтера бесплатно [/url]\r\n   Со временем были выявлены слабые стороны данного режима налогообложения и в 2005 году были внесены поправки, которые вступили в силу с 1 января 2006 года [url=http://buhexpert-in.ru/]услуги по бухгалтерскому обслуживанию сопровождению [/url]\r\n   Особенность УСН заключается в том, что налогоплательщикам, выбравшие такой режим, необходимо выплачивать единый налог, а не несколько налогов, как это принято у обычной системы налогообложения [url=http://buhexpert-in.ru/]восстановление бухучета [/url]',''),(6178,1,861,'11','Not yet, and I want to avoid the need for one in the future',''),(6179,1,861,'13','Another healthcare website',''),(6180,1,861,'4','Anytime',''),(6181,1,862,'6.3','MargaritaCarp',''),(6182,1,862,'2','margaritaCarp@yahoo.com',''),(6183,1,862,'3','(830) 571-1062',''),(6184,1,862,'5','Czechia',''),(6185,1,862,'11','Not yet, and I want to avoid the need for one in the future',''),(6186,1,862,'13','YouTube',''),(6187,1,862,'4','Anytime',''),(6188,1,863,'6.3','BernardSog',''),(6189,1,863,'2','galya_davydova_1978@inbox.ru',''),(6190,1,863,'3','(767) 807-2750',''),(6191,1,863,'5','И правильно [url=https://artment-studio.ru/contacts]акробаты [/url]\r\n   Применительно к смесителям, если они балансные (а в тр-ре 21 века они полюбому балансные!) то проходная емкость триода нейтрализуется за счет противофазного включения или анодов при синфазном сеток (первый смеситель), или противофазном сеток при синфазном анодов (второй смеситель) [url=https://artment-studio.ru/timetable]хатха йога занятия [/url]\r\n   Тракт УПЧ между смесителями предлагаю сделать балансным, на пентодах, или триодах с нейтрализацией (так наз [url=https://artment-studio.ru/#rec441545294]капоэйры [/url]\r\n   нейтродины) \r\n25 мая в акробатическом манеже состоялось открытое первенство СШОР  по спортивной акробатике памяти Андрея Аникина [url=https://artment-studio.ru/]Фитнес Залы В Аренду [/url]\r\n   Андрей Анатольевич был директором спортивной школы  и возглавлял её в течении 11 лет [url=https://artment-studio.ru/about]аренда зала для тренировок москва [/url]\r\n \r\nПочти параллельно со становлением номера велофигуристов, в связи с дальнейшими успехами механических средств передвижения, стал осознаваться новый жанр работы, в котором в качестве основы брались физические законы движения предметов в пространстве, в частности же, законы траектории и центробежной силы [url=https://artment-studio.ru/#rec441782165]хатха йога упражнения для начинающих [/url]\r\n \r\nТренировки по детской спортивной акробатике в спортивном клубе  можно начинать с 3-х лет [url=https://artment-studio.ru/about]занятия на пилоне [/url]\r\n   Маленькие дети без страха и с удовольствием обучаются элементам, которые впоследствии станут основой для овладения более сложными трюками [url=https://artment-studio.ru/contacts]хатха-йога упражнения [/url]\r\n   Ребята, не замечая трудностей, кувыркаются, прыгают на батуте, ползают по полосе препятствий, шведской стенке, играют с мячами, учатся выполнять упражнения, которые гарантируют гармоничное развитие всех групп мышц детского организма, благодаря различным типам этих упражнений и степени нагрузки [url=https://artment-studio.ru/#rec441545294]аренда под мероприятие [/url]\r\n \r\n3 [url=https://artment-studio.ru/#rec441782165]школа капоэйра [/url]\r\n    Спортсмен, занимающийся акробатикой [url=https://artment-studio.ru/#rec441545294]аренда зала на месяц [/url]\r\n   БАС-2 [url=https://artment-studio.ru/about]спортивная акробатика [/url]\r\n   - Ружье [url=https://artment-studio.ru/timetable]аренда танц зала [/url]\r\n   [url=https://artment-studio.ru/about]хатха-йога асаны [/url]\r\n   Ура! Браво, дядюшка, дядюся, дядюнчик [url=https://artment-studio.ru/#rec444876862]аренда под мероприятие [/url]\r\n   Павлик сделал по комнате несколько таких удивительных антраша, что позавидовал бы любой акробат [url=https://artment-studio.ru/#rec441545294]занятия акробатикой [/url]\r\n   Мамин-Сиб [url=https://artment-studio.ru/#rec441782165]акробатика для танцоров [/url]\r\n   Охота [url=https://artment-studio.ru/about]хатха-йога упражнения [/url]\r\n   // Игрушечка 1985 1 1 [url=https://artment-studio.ru/timetable]фитнес клубы аренда зала [/url]\r\n \r\nОдним из самых популярных спортивных бальных танцев является самба [url=https://artment-studio.ru/contacts]капоэйра для начинающих [/url]\r\n   В 16 веке, осваивая новые земли, португальцы ввезли в Бразилию огромное количество рабов из Конго и Анголы [url=https://artment-studio.ru/#rec444876862]что дает йога [/url]\r\n   Вместе с ними сюда  [url=https://artment-studio.ru/]Уроки Капоэйра [/url]\r\n   [url=https://artment-studio.ru/contacts]акробатики [/url]\r\n   [url=https://artment-studio.ru/#rec441782165]растяжка [/url]',''),(6192,1,863,'11','Not yet, and I want to avoid the need for one in the future',''),(6193,1,863,'13','Google/Internet',''),(6194,1,863,'4','Anytime',''),(6195,1,864,'6.3','Dennisvup',''),(6196,1,864,'2','kirill_abramov_1974@list.ru',''),(6197,1,864,'3','(255) 064-8827',''),(6198,1,864,'5','Наверняка, в вашем доме найдется пара вазонов, которые уже утратили привлекательный вид [url=https://www.kashpo.one/]Вазоны Для Цветов Уличные Пластиковые Купить [/url]\r\n   И вам хотелось бы создать им новый дизайн [url=http://kashpo.one/kashpo-iz-metalla]кашпо металлическое [/url]\r\n   И такой дизайн, который бы придал некую изюминку не только цветочному вазону, но и дизайну вашей комнаты, подчеркнул бы вашу индивидуальность [url=http://kashpo.one/kashpo-iz-metalla]Изготовление кашпо из дерева [/url]\r\n   Тогда этот мастер-класс для вас! \r\n\r\n\r\nИз бруса и досок можно соорудить решетчатую стенку с деревянными кашпо [url=http://kashpo.one/gallery]пластиковые кашпо для улицы [/url]\r\n   Такой покрытый лаком оригинальный шкаф для цветов, в сочетании с садовой мебелью, придаст неповторимую изысканность зоне отдыха [url=http://kashpo.one/kashpo-iz-metalla]сделать кашпо для улицы [/url]',''),(6199,1,864,'11','Not yet, and I want to avoid the need for one in the future',''),(6200,1,864,'13','Friend/family who was/is a patient',''),(6201,1,864,'4','Anytime',''),(6202,1,865,'6.3','SheldonGancy',''),(6203,1,865,'2','boris.ignatev.1999@bk.ru',''),(6204,1,865,'3','(123) 510-5302',''),(6205,1,865,'5','Кроме надежности, такие изделия также обладают очень высокими характеристиками тепло и звукоизоляции [url=https://www.legnostyle.ru/catalog/mejkomnatnie-dveri/]лестницы на заказ [/url]\r\n   Никакие другие современные двери из синтетических и деревосодержащих материалов подобными данными не обладают [url=https://www.legnostyle.ru/catalog/lestnici/]двери из дуба [/url]\r\n   Хотя, некоторые люди могут с этим поспорить [url=https://www.legnostyle.ru/catalog/mejkomnatnie-dveri/]лестницы на заказ [/url]\r\n   На все их доводы есть мощный аргумент – они имели дело с некачественными моделями дверей [url=https://www.legnostyle.ru/catalog/inter-eri/]двери из массива на заказ [/url]\r\n   Все дело в том, что многие судят о качестве по дверям из массива, которые делались на предприятиях Советского Союза, а их качественные характеристики были очень далеки от идеала [url=https://www.legnostyle.ru/catalog/inter-eri/]мебель из дерева на заказ [/url]\r\n   Если изготовить двери по современным стандартам, оснастить их качественной фурнитурой и уплотнителями, то любой скептик изменит свое мнение к данному типу изделий [url=https://www.legnostyle.ru/catalog/inter-eri/]двери из массива [/url]\r\n \r\nСовременные двери из массива дерева  имеют цельное полотно из древесины [url=https://www.legnostyle.ru/catalog/mebel/]лестницы из дерева [/url]\r\n   Могут производиться как из натурального дуба, так и из ольхи, березы и липы [url=https://www.legnostyle.ru/catalog/lestnici/]двери из массива дуба [/url]\r\n   Являются экологически чистыми изделиями, сохраняют целостность и насыщенность цвета на протяжении долгих лет [url=https://www.legnostyle.ru/catalog/mejkomnatnie-dveri/]деревянные стеновые панели [/url]\r\n \r\nВысокая наружная притягательность материала выполняет буковые конструкции очень популярными в художественном оформлении жилой площади [url=https://www.legnostyle.ru/catalog/mebel/]двери из массива [/url]\r\n   А внутренние двери бук яркий будет в особенности хорошо согласоваться с модным интерьером в тематике хай-тэк [url=https://www.legnostyle.ru/]Двери Из Массива Дуба [/url]\r\n \r\nОтсутствие выделения вредных веществ даже под воздействием высоких температур [url=https://www.legnostyle.ru/catalog/mebel/]межкомнатные двери на заказ [/url]\r\n   Материал не представляет опасности для здоровья [url=https://www.legnostyle.ru/catalog/mebel/]лестницы из дерева [/url]\r\n   Позволяет размещать изделия из сосны в детских комнатах [url=https://www.legnostyle.ru/catalog/lestnici/]двери из дуба [/url]\r\n \r\nСправка! Недостаток клееного массива  множество склеек, наличие которых обусловлено особой технологией изготовления [url=https://www.legnostyle.ru/catalog/mejkomnatnie-dveri/]межкомнатные двери на заказ [/url]\r\n   Если при производстве использовался низкокачественный клей, то декоративная поверхность может отслаиваться [url=https://www.legnostyle.ru/catalog/inter-eri/]двери из массива дуба [/url]\r\n \r\nДавайте сразу определим критерии дверей из массива [url=https://www.legnostyle.ru/catalog/mejkomnatnie-dveri/]двери из массива дуба [/url]\r\n   Часто бывает, что продавцы дверями из массива называют двери из комбинированных материалов  массив, МДФ, шпон [url=https://www.legnostyle.ru/catalog/lestnici/]двери межкомнатные из дуба [/url]\r\n   Это то же самое, если говорить, что автомобиль сделан только из железа, а дом только из камня [url=https://www.legnostyle.ru/catalog/lestnici/]дубовые двери [/url]\r\n   Двери из массива потому так называются, что в своем составе они имеют только дерево, покрытое лишь лакокрасочными материалами [url=https://www.legnostyle.ru/catalog/mejkomnatnie-dveri/]двери из массива дуба [/url]\r\n   Именно о надуманных преувеличенных свойствах дверей из массива дерева пойдет речь в данном материале [url=https://www.legnostyle.ru/catalog/mebel/]изготовление дверей на заказ [/url]',''),(6206,1,865,'11','Not yet, and I want to avoid the need for one in the future',''),(6207,1,865,'13','Facebook',''),(6208,1,865,'4','Anytime',''),(6209,1,866,'6.3','Thomasslota',''),(6210,1,866,'2','svetlana-sukhanova-1975@list.ru',''),(6211,1,866,'3','(056) 214-7618',''),(6212,1,866,'11','Not yet, and I want to avoid the need for one in the future',''),(6213,1,866,'13','YouTube',''),(6214,1,866,'4','Anytime',''),(6215,1,867,'6.3','PeterKit',''),(6216,1,867,'2','l_borisova_1970@list.ru',''),(6217,1,867,'3','(450) 470-5255',''),(6218,1,867,'5','Мы оказываем комплексные event-услуги по принципу «одного окна» — напрямую и без лишних посредников. Каждый проект «Империи-Сочи» — это уникальное креативное решение поставленных задач!  \r\n[url=https://imperia-sochi.one/uslugi/ekskursii/]тимбилдинг[/url] Организация праздников в Сочи начинается с подбора ведущего, артистов и подходящих торжественному случаю шоу-номеров. Специалисты нашей компании опираются на такт, чувство вкуса и меры, предлагая клиенту то или иное выступление. Мы всегда находим жанр или отдельный номер, который создает нужное ощущение на конкретном празднике.',''),(6219,1,867,'11','Not yet, and I want to avoid the need for one in the future',''),(6220,1,867,'13','Google/Internet',''),(6221,1,867,'4','Anytime',''),(6222,1,868,'6.3','Robertfub',''),(6223,1,868,'2','masha_fomina_71@list.ru',''),(6224,1,868,'3','(224) 470-8788',''),(6225,1,868,'5','In our Translation Bureau, technical translation is carried out by specialists who have gone through a tough professional confrontation and are currently the best in the field of technical translation [url=https://dianex.co.uk/#contacts]translation provider [/url]\r\n   Our technical translators have extensive experience in high-quality translation of written technical general documentation (translation of scientific and technical text, medical, legal, advertising, commercial documents, etc [url=https://dianex.co.uk/#contacts]translation supplier [/url]\r\n  ) [url=https://dianex.co.uk/]Translation Of Technical Texts [/url]\r\n   In addition, professional technical translation involves working with highly specialized documents, which include user manuals, instructions for use, annual reports, catalogs, commercial offers, contracts, patent applications, advertising brochures [url=https://dianex.co.uk/processes]photoshop translation [/url]\r\n   Web site texts are also assumed to be within the scope of this work stream [url=https://dianex.co.uk/]Technical Documentation Translation [/url]\r\n \r\nBefore sending the written text to the customer, it is drawn up in strict accordance with the original, that is, the translation of the catalog (or other material) performed by us will be absolutely identical to the format of the publication in a foreign language [url=https://dianex.co.uk/#contacts]product catalogues [/url]\r\n \r\nIn fact, this rule echoes the first [url=https://dianex.co.uk/#contacts]engineering documentation transaltion [/url]\r\n   The names of the parties must have a clear translation that corresponds to reality [url=https://dianex.co.uk/#contacts]free test translation [/url]\r\n   Sometimes the customer agrees in advance with the translator how the parties to the contract should be named [url=https://dianex.co.uk/]Uk Translation Company [/url]\r\n   For example: \r\nThe cost of technical translation in our agency will depend on the complexity and specifics of the text, its volume, and special requirements for the result [url=https://dianex.co.uk/about]technical documentation translation [/url]\r\n   We offer affordable and favorable rates, good discounts for long-term permanent cooperation [url=https://dianex.co.uk/processes]technical expertise [/url]\r\n \r\nThe cost of translations of medical and pharmaceutical subjects due to the special requirements for the qualifications of translators (mandatory availability of specialized education along with linguistic education) is calculated taking into account a 15% markup on the prices indicated above [url=https://dianex.co.uk/#contacts]technical expert [/url]\r\n \r\nis considered one of the most difficult areas in translation practice [url=https://dianex.co.uk/#contacts]technical expert [/url]\r\n   In order for this translation to be as thorough and accurate as possible, it is necessary to take into account its features [url=https://dianex.co.uk/]Language Consultants International [/url]',''),(6226,1,868,'11','Not yet, and I want to avoid the need for one in the future',''),(6227,1,868,'13','Friend/family who was/is a patient',''),(6228,1,868,'4','Anytime',''),(6229,1,869,'6.3','Dannyestix',''),(6230,1,869,'2','zhanna.filippova.1976@inbox.ru',''),(6231,1,869,'3','(406) 284-1342',''),(6232,1,869,'5','Производство стальных пальцев:   палец полумуфты, поршневые пальцы, шарнирные пальцы, установочные пальцы, палец тормозного механизма, пальцы газовой защиты для труб,  палец муфты, бильные пальцы,  [url=https://gm-k.ru/index.php?route=product/category&path=1163]саморез [/url]\r\n   [url=https://gm-k.ru/index.php?route=product/category&path=1163]шуруп-саморез [/url]\r\n   [url=https://gm-k.ru/gruvloki/]конвектор электрический цена [/url]\r\n \r\nСпециальные гвозди, ножка которых всецело обработана резьбой – саморезы [url=https://gm-k.ru/]Что Такое Грувлоки [/url]\r\n   Их одинаково успешно можно использовать и при работе с деревом, и с металлом [url=https://gm-k.ru/index.php?route=product/category&path=247]крепеж в москве [/url]\r\n  За счет наконечника в виде сверла, саморез сам производит выемки в скрепляемых деталях [url=https://gm-k.ru/index.php?route=product/category&path=1811]системы противопожарной защиты [/url]\r\n \r\nВинты изготавливают из латуни и стали (оцинкованной, обычной и пр [url=https://gm-k.ru/index.php?route=product/category&path=1811]виброизоляция [/url]\r\n  ) [url=https://gm-k.ru/bsr/]противопожарная защита [/url]\r\n   Если планируете использовать крепеж в местах с повышенной влажностью (например, для сборки уличной металлоконструкции), тогда нужно использовать крепеж из нержавеющей стали [url=https://gm-k.ru/index.php?route=product/category&path=726]фитинги каталог [/url]\r\n   Классификация винтов: \r\nРазрезная круглая шайба, концы которой расположены в разных плоскостях, служащая для предотвращения самоотвинчивания крепежных изделий при ее упругой деформации под нагрузкой [url=https://gm-k.ru/index.php?route=product/category&path=1811]фундаментный болт [/url]\r\n \r\nС их помощью можно скрепить две и более детали внахлест (правда, соединяемые изделия должны быть достаточно тонкими) [url=https://gm-k.ru/index.php?route=product/category&path=247]конвекторов [/url]\r\n   Данный способ крепления удобно использовать при наращивании стропила: две доски укладываются внахлест на три своих ширины и, через предварительно просверленные отверстия, стягиваются двумя-тремя крепежными элементами с гайками и широкими шайбами [url=https://gm-k.ru/index.php?route=product/category&path=726]саморезы цена [/url]\r\n \r\nШурупы — конические стержни с винтовой нарезкой на поверхности, с заостренным концом и головкой с прорезью [url=https://gm-k.ru/]Трубы И Фитинги [/url]\r\n   Шурупы предназначены для соединения различных деревянных или металлических деталей с деревянными [url=https://gm-k.ru/index.php?route=product/category&path=676]конвектор электрический купить [/url]',''),(6233,1,869,'11','Not yet, and I want to avoid the need for one in the future',''),(6234,1,869,'13','Google/Internet',''),(6235,1,869,'4','Anytime',''),(6236,1,870,'6.3','Scotthib',''),(6237,1,870,'2','rostik.zakharov.1991@inbox.ru',''),(6238,1,870,'3','(817) 155-6704',''),(6239,1,870,'5','Размещайте свои объявления на самых известных досках, тогда вам гарантировано придет максимальное количество заявок [url=https://jerdesh.net/birge-ru-rabota]подать объявление [/url]\r\n   Не будем говорить о том, что нужно делать свои предложения уникальными и привлекательными за счет фотографий и описания [url=https://jerdesh.net/birge-ru-snimu-komnatu-koiko-mesto]мои объявления [/url]\r\n   В противном случае, даже если воспользоваться всеми сайтами, хорошего результата не добиться [url=https://jerdesh.net/birge-ru-rabota]подать бесплатное объявление [/url]\r\n   Теперь давайте рассмотрим лучшие сервисы, где каждый желающий может разместить объявление:',''),(6240,1,870,'11','Not yet, and I want to avoid the need for one in the future',''),(6241,1,870,'13','Another healthcare website',''),(6242,1,870,'4','Anytime',''),(6243,1,871,'6.3','RichardBioks',''),(6244,1,871,'2','valya_lebedeva_1979@bk.ru',''),(6245,1,871,'3','(825) 286-4552',''),(6246,1,871,'5','И запомните: дуб наделен уникальными свойствами – его прочность и твердость с годами только увеличиваются [url=https://www.legnostyle.ru/catalog/kuhni/]купить дешевую деревянную кухню [/url]\r\n Внутрь породы не проникает влага, поэтому в ней не заводятся микроорганизмы [url=https://www.legnostyle.ru/catalog/mejkomnatnie-dveri/]полотно двери купить [/url]\r\n Ее сложно поцарапать, она хорошо поддается реставрации [url=https://www.legnostyle.ru/catalog/mejkomnatnie-dveri/]межкомнатные двери дешево [/url]\r\n Эти качества, а также красота материала, высоко ценились и ценятся производителями [url=https://www.legnostyle.ru/catalog/lestnici/]изготовление лестницы из дерева [/url]\r\n \r\nНепосредственно на сайте Вы можете оформить заказ и на изготовление, и на производство работ по монтажу и сборке мебели, запросить обратный звонок специалиста компании для консультации [url=https://www.legnostyle.ru/catalog/mejkomnatnie-dveri/]двері [/url]\r\n Наши сотрудники бесплатно выезжают на место предстоящих работ, снимают все необходимые замеры, определяют сложность предстоящего задания [url=https://www.legnostyle.ru/catalog/lestnici/]изготовление лестниц дверей [/url]\r\n После данной процедуры с заказчиком согласовывается цена на изготовление и монтаж мебели, а также время его производства [url=https://www.legnostyle.ru/catalog/kuhni/]кухни от производителя из массива [/url]\r\n \r\nПроизводители любят бук за однородность структуры, которая проявляется в податливости материала для всех видов обработки [url=https://www.legnostyle.ru/catalog/kuhni/]кухня из массива дерева [/url]\r\n В то же время он уникален [url=https://www.legnostyle.ru/catalog/mebel/]мебель из массива под заказ [/url]\r\n Пройдя все стадии сушки и подготовки к производству, поверхность древесины становится очень твердой и идеально ровной, без микроскопических заноз, поэтому бук считается одним из самых любимых видов сырья у производителей посуды и игрушек [url=https://www.legnostyle.ru/catalog/kuhni/]деревянные кухни на заказ [/url]\r\n \r\nСтолярная мастерская изготовит по вашим размерам и проектам: лестничные марши,различной сложности девянные оконные блоки со стеклопакетами и простым остеклением мебель из массива различных пород дерева и другие столярные изделия [url=https://www.legnostyle.ru/catalog/lestnici/]лестница в дом на заказ [/url]\r\n \r\nВ наше время двери не только выполняют свою главную функцию – обеспечение безопасности жилища и разделение комнат, но и являются одним из значимых элементов в интерьере [url=https://www.legnostyle.ru/catalog/lestnici/]деревянные лестницы для дома [/url]\r\n Решаясь купить их или заказать изготовление дверей, важно уделить внимание каждому мельчайшему нюансу, чтобы они соответствовали всем необходимым критериям и служили вам продолжительное время, радуя своей эстетичностью и качеством [url=https://www.legnostyle.ru/catalog/mejkomnatnie-dveri/]купить дешево межкомнатные двери [/url]\r\n \r\nПредставьте себе ситуацию – вы купили дорогие межкомнатные двери, установили их в разных помещениях в доме, и уже с приходом теплого (или наоборот, холодного) сезона, когда микроклимат в квартире стал другим, почувствовали, что полотно туго закрывается или не закрывается вовсе [url=https://www.legnostyle.ru/catalog/mejkomnatnie-dveri/]межкомнатные двери цена и фото [/url]\r\n Другой вариант – дверь отреагировала иначе и вот результат – в конструкции появились щели, а на поверхности образовались трещины, филенки расшатались и свободно выходят из пазов [url=https://www.legnostyle.ru/catalog/kuhni/]кухни на заказ массив [/url]\r\n В чем причина? – Конечно, в неправильной технологии производства [url=https://www.legnostyle.ru/catalog/lestnici/]изготовление лестниц в москве [/url]\r\n Скорее всего, изготовитель не выдержал технологические нормы в процессе сушки древесины, а после сэкономил на обработке поверхности [url=https://www.legnostyle.ru/catalog/kuhni/]кухни на заказ из массива [/url]',''),(6247,1,871,'11','Not yet, and I want to avoid the need for one in the future',''),(6248,1,871,'13','YouTube',''),(6249,1,871,'4','Anytime',''),(6250,1,872,'6.3','Rodneynek',''),(6251,1,872,'2','romanovdionis1984@list.ru',''),(6252,1,872,'3','(732) 255-2555',''),(6253,1,872,'5','Наш автосервис занимается оказанием услуг по устранению одной из самых частых неисправностей автомобилей — ремонт сцепления или замена сцепления в Москве. Мы даем гарантию на проделанную нами работу, ведь её качество неоднократно проверено временем и нашими довольными клиентами!  \r\n[url=http://dmalmotors.ru/zamena-tsepi-ili-remnya-grm.html]ремень грм замена цена[/url] Как правило, замена масла двигателя выполняется во время очередного технического обслуживания, либо в случае внепланового ремонта мотора.',''),(6254,1,872,'11','Not yet, and I want to avoid the need for one in the future',''),(6255,1,872,'13','Facebook',''),(6256,1,872,'4','Anytime',''),(6257,1,873,'6.3','EdwardBic',''),(6258,1,873,'2','rusakova.tatiya@bk.ru',''),(6259,1,873,'3','(500) 768-3213',''),(6260,1,873,'5','Стопы – это та часть тела, которая принимает на себя значительную двигательную нагрузку и вес всего тела [url=https://www.energy-med.ru/drugoye]невролога [/url]\r\n   Мышечно-фасциальные цепи человеческого тела берут свое начало именно в подошвах [url=https://www.energy-med.ru/diagnostika#!/tab/450642413-3]лаборатория энергия [/url]\r\n   Если болезни стоп запустить, в организме могут начаться необратимые нарушения, которые расстроят работу всего слаженного механизма тела [url=https://www.energy-med.ru/diagnostika]номер педиатра [/url]\r\n \r\nИсходя из представленного описания, речь идёт о развитии  суставного, неврологического или смешанного характера [url=https://www.energy-med.ru/diagnostika#!/tab/450642413-7]хороший врач гастроэнтеролог [/url]\r\n   Лечением занимаются или ортопед, или хирург [url=https://www.energy-med.ru/diagnostika#!/tab/450642413-6]энергия здоровья клиника москва [/url]\r\n   Обычно сложностей при этом не возникает [url=https://www.energy-med.ru/terapiya]анколог [/url]\r\n \r\nВ случае отсутствия контактных данных мы не сможем ответить на Ваши вопросы [url=https://www.energy-med.ru/terapiya]хирург травматолог ортопед [/url]\r\n    Нажав кнопку , Вы даёте своё согласие на обработку Ваших персональных данных, в соответствии с Федеральным законом - \r\nХирург-ортопед [url=https://www.energy-med.ru/diagnostika#!/tab/450642413-2]терапевт отзывы [/url]\r\n   Может быть детским или взрослым [url=https://www.energy-med.ru/diagnostika#!/tab/450642413-7]отделение флебологии [/url]\r\n   Он занимается лечением болезней опорно-двигательного аппарата [url=https://www.energy-med.ru/nadomu]хирург-флеболог [/url]\r\n   В функции хирурга-ортопеда входит выявление заболеваний суставов, стопы, бедра, позвоночника или костно-мышечной системы и своевременное лечение [url=https://www.energy-med.ru/]Хороший Гастроэнтеролог В Москве [/url]\r\n \r\nВидеть себя во сне в роли врача — к богатству [url=https://www.energy-med.ru/kosmetolog]урологи [/url]\r\n   Быть врачом-стоматологом — наяву вас ждет небывалый скандал то ли дома, то ли на работе [url=https://www.energy-med.ru/diagnostika#!/tab/450642413-3]прием терапевта в москве [/url]\r\n   Лечить самой зубы у стоматолога — предвестие скорого разочарования, возможно, вас огорчит неискренность ваших родственников [url=https://www.energy-med.ru/dety#!/tab/450562509-2]платный прием онколога [/url]\r\n \r\nПри лечении любого почечного заболевания вам нужно посетить диетолога, чтобы тот составил для вас индивидуальную лечебную диету, которая поможет быстрее восстановить функции органа и вылечить недуг [url=https://www.energy-med.ru/terapiya#!/tab/450100519-3]энергетик клиника [/url]',''),(6261,1,873,'11','Not yet, and I want to avoid the need for one in the future',''),(6262,1,873,'13','Another healthcare website',''),(6263,1,873,'4','Anytime',''),(6264,1,874,'6.3','Judy Gruen',''),(6265,1,874,'2','judyrgruen@gmail.com',''),(6266,1,874,'3','(310) 486-4573',''),(6267,1,874,'5','I have chronic headaches that are helped by chiropractic, but the instability in the vertebrae in my neck don\'t allow the adjustments to \"hold\" for more than a day or two. I have moderate scoliosis as well. The headaches are becoming more frequent (several times a week) and my chiropractor, Dr. Dan Rude, strongly recommended I see you.',''),(6268,1,874,'11','Not yet, and I want to avoid the need for one in the future',''),(6269,1,874,'13','Referred by my doctor/provider',''),(6270,1,874,'4','Anytime',''),(6271,1,875,'6.3','Joseph Starr',''),(6272,1,875,'2','etiologyunknown@gmail.com',''),(6273,1,875,'3','(651) 552-8384',''),(6274,1,875,'5','Perhaps you would be interested in:  cvjinstability.org   cvjinstability.org   cvjinstability.org\r\n\r\nPerhaps you would also be interested in mechanicalbasis.org   mechanicalbasis.org   mechanicalbasis.org',''),(6275,1,875,'11','Not yet, and I want to avoid the need for one in the future',''),(6276,1,875,'13','Google/Internet',''),(6277,1,875,'4','Anytime',''),(6278,1,876,'6.3','Chris Winters',''),(6279,1,876,'2','cwinters@winters-co.com',''),(6280,1,876,'3','(310) 471-4040',''),(6281,1,876,'5','Knee',''),(6282,1,876,'11','Not yet, and I want to avoid the need for one in the future',''),(6283,1,876,'13','Google/Internet',''),(6284,1,876,'4','Anytime',''),(6285,1,877,'6.3','Lucas Weaver',''),(6286,1,877,'2','lweaver@theyolopreneur.com',''),(6287,1,877,'3','(406) 994-2080',''),(6288,1,877,'5','Hello,\r\n\r\nAlthough starting your own business can be incredibly gratifying, as any entrepreneur is aware, it requires a lot of courage and confidence to succeed.\r\n\r\nIs it possible for me to submit an article to your website that offers tips to aspiring business owners on how to get over their fears?\r\n\r\nIf you are interested in having me write about this subject for your website, just let me know.\r\n\r\nI sincerely appreciate your time on this. Thanks for considering my offer!\r\n\r\nLucas Weaver\r\nlweaver@theyolopreneur.com \r\nTheyolopreneur.com\r\n\r\n\r\nP.S. If there’s no interest in emails from me, please lmk. I won’t ping you again.',''),(6289,1,877,'11','Not yet, and I want to avoid the need for one in the future',''),(6290,1,877,'13','Another healthcare website',''),(6291,1,877,'4','Anytime',''),(6292,1,878,'6.3','Ken Meyers',''),(6293,1,878,'2','kabc2010@aol.com',''),(6294,1,878,'3','(310) 529-5313',''),(6295,1,878,'5','The want to do a reverse shoulder replacement, I don\'t?\r\n\r\nCT Dose:                                                              \r\nAs required by California law, the CTDIvol and DLP radiation doses    \r\nassociated with this CT study are listed below. This represents the   \r\nestimated dose to a standard lucite phantom resulting from the        \r\ntechnique used for this study, but is not the dose to this specific   \r\npatient.                                                              \r\nType / CTDIvol / DLP / Phantom                                        \r\nHelical / 33.05 / 839.31 / B                                          \r\nTotal Exam DLP: 839.31                                                \r\nCTDIvol = mGy             DLP = mGy-cm                                \r\nPhantom: B=Body32, H=Head16                                           \r\n                                                                      \r\nFINDINGS:                                                             \r\nNo acute fracture or dislocation. Moderate arthritic changes          \r\nglenohumeral joint with juxta-articular spurring. Defects in the      \r\nhumeral head and proximal diaphysis may be from removal of prior      \r\nsurgical hardware. Small glenohumeral joint effusion suggested.       \r\nWidening of the acromioclavicular joint may be from degenerative or   \r\ninflammatory arthropathy or prior surgery. 4 mm calcification         \r\nprojecting superior to humeral head support calcific tendinitis. No   \r\naxillary adenopathy. Visualized right lung appears clear.             \r\nDegenerative changes noted visualized cervical spine. Ectasia         \r\nascending thoracic aorta measuring about 3.9 cm.',''),(6296,1,878,'11','Not yet, and I want to avoid the need for one in the future',''),(6297,1,878,'13','Google/Internet',''),(6298,1,878,'4','Anytime',''),(6299,1,879,'6.3','Jennifer Lund',''),(6300,1,879,'2','Rangerd270@gmail.com',''),(6301,1,879,'3','(403) 357-7480',''),(6302,1,879,'5','Good morning I get PRP injections with some Synovus fluid. I live in Canada but will be in the Palm Springs area for the winter. I see you are in Santa Monica but you advertise in the Palm Springs area do you also have an office in Palm Springs or area?',''),(6303,1,879,'11','Not yet, and I want to avoid the need for one in the future',''),(6304,1,879,'4','Anytime',''),(6305,1,880,'6.3','Emily Taylor',''),(6306,1,880,'2','charbonneau.helaine@gmail.com',''),(6307,1,880,'3','(902) 858-2872',''),(6308,1,880,'5','Hey\r\n\r\nDo you know marketing videos help businesses generate more sales?\r\n\r\nWhat if I told you you could create a perfect marketing video in minutes without any editing skills using AI?\r\n\r\nPictory makes video creation simple, quick, and fully automated. \r\n\r\nSo why not sign up for a free trial today? You won\'t be disappointed.\r\n\r\nTry it now - https://pictory.ai?ref=videoautomation',''),(6309,1,880,'11','Yes, and I want to avoid it if possible',''),(6310,1,880,'13','Another healthcare website',''),(6311,1,880,'4','1pm – 3pm',''),(6312,1,881,'6.3','Adam Holmes',''),(6313,1,881,'2','info@adacompliancehelper.com',''),(6314,1,881,'3','(337) 301-8651',''),(6315,1,881,'5','I noticed that your website is not ADA Compliant!!  \r\n\r\nUnless You Make your website compliant IMMEDIATELY, You Could Be Sued, (Even Extorted). For Thousands of Dollars Very Soon!\r\n\r\nADA stands for the Americans with Disabilities Act. Web accessibility cases against giants like Domino\'s, Nike, and Beyonce made the headlines, but the majority of lawsuits have been filed against small and medium businesses like yours. It_s estimated that 85% of ADA lawsuits in federal and state courts in 2021 were filed against small and medium retail businesses. \r\n\r\nIf you want to save yourself from potential lawsuits, please get your website ADA compliant using the link - https://adacompliancehelper.com/',''),(6316,1,881,'11','Yes, and I want to avoid it if possible',''),(6317,1,881,'13','Friend/family who was/is a patient',''),(6318,1,881,'4','11am – 1pm',''),(6319,1,882,'6.3','Jafrale',''),(6320,1,882,'2','kiraseevitch@yandex.ru',''),(6321,1,882,'3','(401) 060-7466',''),(6322,1,882,'5','[url=https://drawing-portal.com/glava-redaktirovanie-ob-ektov-v-autocade/team-scale-in-autocad.html]автокад печать в масштаб[/url]',''),(6323,1,882,'11','Not yet, and I want to avoid the need for one in the future',''),(6324,1,882,'13','Facebook',''),(6325,1,882,'4','Anytime',''),(6326,1,883,'6.3','MichaelWag',''),(6327,1,883,'2','olukoeeo@gmail.com',''),(6328,1,883,'3','(245) 874-7280',''),(6329,1,883,'5','How to [url=http://77pro.org/13-fix-damaged-photoshop-psd.html]fix Photoshop[/url] PSD file.',''),(6330,1,883,'11','Not yet, and I want to avoid the need for one in the future',''),(6331,1,883,'13','Friend/family who was/is a patient',''),(6332,1,883,'4','Anytime',''),(6333,1,884,'6.3','Eric Jones',''),(6334,1,884,'2','ericjonesmyemail@gmail.com',''),(6335,1,884,'3','(555) 555-1212',''),(6336,1,884,'5','Cool website!\r\n\r\nMy name_s Eric, and I just found your site - drfields.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you_re doing is pretty cool.\r\n \r\nBut if you don_t mind me asking _ after someone like me stumbles across drfields.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI_m guessing some, but I also bet you_d like more_ studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere_s a thought _ what if there was an easy way for every visitor to _raise their hand_ to get a phone call from you INSTANTLY_ the second they hit your site and said, _call me now._\r\n\r\nYou can _\r\n  \r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nThat_s why we built out our new SMS Text With Lead feature_ because once you_ve captured the visitor_s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities _ even if you don_t close a deal then and there, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nWouldn_t that be cool?\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6337,1,884,'11','Yes, and I want to avoid it if possible',''),(6338,1,884,'13','YouTube',''),(6339,1,884,'4','1pm – 3pm',''),(6340,1,885,'6.3','Jennifer Obrien',''),(6341,1,885,'2','jennifer@dandydemo.com',''),(6342,1,885,'3','(949) 755-7782',''),(6343,1,885,'5','Would you like a solution to consistently remove unfair bad reviews from Google My Business, Yelp, Opentable and other review sites? At Dandy, our proprietary technology has helped companies like Holiday Inn and Wyndham remove over 15,000 negative reviews for their locations and consistently monitors and helps remove any new negative reviews that appear. \r\n\r\nDo you have 15 minutes for a call today? Schedule a Call Here: https://meetings.hubspot.com/dandy-/dandy-demo-numan  or for more information please visit our website: https://dandyautomation.com/more-information\r\n\r\nYou can also call me directly at (949) 755-7782.\r\n\r\nYou\'ll see a few case studies there - one of which we removed 60 negative reviews within the first 90 days for one of our customers. Remember, negative reviews can reduce traffic up to 15%. \r\n\r\nThank you,\r\n\r\n\r\nJennifer Obrien | Senior Review Specialist\r\nDandy, Inc. - Remove, Prevent & Capture\r\nOffice (949) 755-7782\r\n9891 Irvine Center Drive, Suite #200, Irvine, CA 92618\r\n\r\nUnsubscribe Now',''),(6344,1,885,'11','Not yet, and I want to avoid the need for one in the future',''),(6345,1,885,'13','I am a current patient/was a patient previously',''),(6346,1,885,'4','9am – 11am',''),(6347,1,886,'6.3','Laurie Rawson',''),(6348,1,886,'2','majorcat1@yahoo.com',''),(6349,1,886,'3','(831) 578-7138',''),(6350,1,886,'5','My husband- who doesn’t do social media- is a life long athlete at 67 recently experienced extreme knee pain. X ray show bone spurs with osteoporosis \r\nQuestion: does insurance cover your treatment plan; if not what cost are we looking at?',''),(6351,1,886,'11','Not yet, and I want to avoid the need for one in the future',''),(6352,1,886,'13','Google/Internet',''),(6353,1,886,'4','11am – 1pm',''),(6354,1,887,'6.3','PearlieCuh',''),(6355,1,887,'2','singleeu-euseeu@yahoo.com',''),(6356,1,887,'3','(322) 055-3300',''),(6357,1,887,'5','Screw me up! I wanna suck your prick and balls. So wake up and find me there https://cutt.us/flirtatiousgirl I can’t wait any longer. Will get on my knees and suck you off! \r\nThis offer comes once in a lifetime.',''),(6358,1,887,'11','Not yet, and I want to avoid the need for one in the future',''),(6359,1,887,'13','Another healthcare website',''),(6360,1,887,'4','Anytime',''),(6361,1,888,'6.3','PearlieCuh',''),(6362,1,888,'2','fantooshhfh@gmail.com',''),(6363,1,888,'3','(766) 324-5511',''),(6364,1,888,'5','Come up and fuck me! I wanna suck your cock and balls. So wake up and find me there https://cutt.us/teengirl I can’t wait any longer. Will get on my knees and suck you off! \r\nThis chance comes once in a lifetime.',''),(6365,1,888,'11','Not yet, and I want to avoid the need for one in the future',''),(6366,1,888,'13','Google/Internet',''),(6367,1,888,'4','Anytime',''),(6368,1,889,'6.3','Robertotat',''),(6369,1,889,'2','svetau_filatova5849@rambler.ru',''),(6370,1,889,'3','(671) 135-1184',''),(6371,1,889,'5','[url=https://ad.admitad.com/g/wg8q5rp36ybfe6c0918b7729367132/] \r\nКредитная карта MTS CASHBACK МИР \r\n111 дней без % \r\nБесплатные переводы и снятие наличных до 31.10 \r\n5% кешбэк в супермаркетах и на АЗС «ЛУКОЙЛ»[/url]',''),(6372,1,889,'11','Not yet, and I want to avoid the need for one in the future',''),(6373,1,889,'13','Another healthcare website',''),(6374,1,889,'4','Anytime',''),(6375,1,890,'6.3','madison',''),(6376,1,890,'2','mraubaugh@yahoo.com',''),(6377,1,890,'3','(412) 719-3146',''),(6378,1,890,'5','hip pain-please respond via email as I do not have phone access during day.  I was wondering how far out new patient appointments are being scheduled.',''),(6379,1,890,'11','Not yet, and I want to avoid the need for one in the future',''),(6380,1,890,'13','Google/Internet',''),(6381,1,890,'4','Anytime',''),(6382,1,891,'6.3','Susan Shalanski',''),(6383,1,891,'2','sue_physio@mac.com',''),(6384,1,891,'3','(604) 892-4991',''),(6385,1,891,'5','11 weeks ago I had a very awkward dismount off my mountain bike, landing on my right leg down about 3 feet off a wooden bridge. My MRI results I received yesterday showed a complete tear of my MCL and a partial tear of my ACL.\r\nI am a extremely active 49 year old woman and would to keep biking, hiking and cross country skiing if possible. Could I be a candidate for Stem cells or PRP for my MCL? I see my orthopaedic surgeon tomorrow, I suspect I will be encouraged to have some surgery.',''),(6386,1,891,'11','Yes, and I want to avoid it if possible',''),(6387,1,891,'13','Google/Internet',''),(6388,1,891,'4','9am – 11am',''),(6389,1,892,'6.3','Peter Wood',''),(6390,1,892,'2','peter@infinixghostwriters.net',''),(6391,1,892,'3','(814) 980-5065',''),(6392,1,892,'5','We noticed you’ve been sitting on a concept all this time that could do well, if shared with the world. If you are someone who cannot silence their brilliant mind when it constantly plots that compelling story or heed that million dollar idea, we’re here to help!\r\n\r\nWe’d like a warm conversation where we can discuss your BIG IDEA or that captivating story you have been wanting to tell. For over a decade, we are pioneering book writing services for a complete roster of customers. \r\n\r\nGot a story to tell? How about your chronicles from the Wall Street? Growing on that political conspiracy or got your own? \r\n\r\nYour bestseller awaits. We can help.\r\n\r\nThere’s more: Gnome Book Writing do not just specialize in writing services; we’re experts of all: editing, marketing, and publishing. Get in touch with our team today and let’s create magic.\r\n\r\nIf you are interested in getting more information just respond back to this email.\r\n\r\nThanks,\r\n\r\nPeter Wood\r\nInfinix Ghost Writers\r\npeter@infinixghostwriters.net\r\n\r\nRespond with stop to optout.',''),(6393,1,892,'11','Not yet, and I want to avoid the need for one in the future',''),(6394,1,892,'13','Google/Internet',''),(6395,1,892,'4','9am – 11am',''),(6396,1,893,'6.3','Thomasneity',''),(6397,1,893,'2','aq5aqa@rambler.ru',''),(6398,1,893,'3','(840) 823-3456',''),(6399,1,893,'5','спасибо, интересное чтение  \r\n_________________ \r\nfonbet taganrog, [url=https://az.onlinerealmoneygames.xyz/]black lotkz casino 2022 üçün depozit bonus kodu yoxdur[/url], online casino depozit bonusu yoxdur 2022 oyun oynanmaz',''),(6400,1,893,'11','Not yet, and I want to avoid the need for one in the future',''),(6401,1,893,'13','Another healthcare website',''),(6402,1,893,'4','Anytime',''),(6403,1,894,'6.3','Anthonyephef',''),(6404,1,894,'2','no.reply.Tic@gmail.com',''),(6405,1,894,'3','(366) 740-8488',''),(6406,1,894,'5','Hеllо!  drfields.com \r\n \r\nDid yоu knоw thаt it is pоssiblе tо sеnd lеttеr fully lеgitimаtе wаy? \r\nWе tеndеr а nеw wаy оf sеnding businеss оffеr thrоugh fееdbасk fоrms. Suсh fоrms аrе lосаtеd оn mаny sitеs. \r\nWhеn suсh mеssаgеs аrе sеnt, nо pеrsоnаl dаtа is usеd, аnd mеssаgеs аrе sеnt tо fоrms spесifiсаlly dеsignеd tо rесеivе mеssаgеs аnd аppеаls. \r\nаlsо, mеssаgеs sеnt thrоugh соntасt Fоrms dо nоt gеt intо spаm bесаusе suсh mеssаgеs аrе соnsidеrеd impоrtаnt. \r\nWе оffеr yоu tо tеst оur sеrviсе fоr frее. Wе will sеnd up tо 50,000 mеssаgеs fоr yоu. \r\nThе соst оf sеnding оnе milliоn mеssаgеs is 49 USD. \r\n \r\nThis оffеr is сrеаtеd аutоmаtiсаlly. Plеаsе usе thе соntасt dеtаils bеlоw tо соntасt us. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.',''),(6407,1,894,'11','Not yet, and I want to avoid the need for one in the future',''),(6408,1,894,'13','Another healthcare website',''),(6409,1,894,'4','Anytime',''),(6410,1,895,'6.3','Eric Jones',''),(6411,1,895,'2','ericjonesmyemail@gmail.com',''),(6412,1,895,'3','(555) 555-1212',''),(6413,1,895,'5','Hey, my name_s Eric and for just a second, imagine this_\r\n\r\n- Someone does a search and winds up at drfields.com.\r\n\r\n- They hang out for a minute to check it out.  _I_m interested_ but_ maybe__\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line _ you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn_t really your fault _ it happens a LOT _ studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know right then and there _ enabling you to call that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation_ so even if you don_t close a deal then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6414,1,895,'11','Yes, and I want to avoid it if possible',''),(6415,1,895,'13','I am a current patient/was a patient previously',''),(6416,1,895,'4','11am – 1pm',''),(6417,1,896,'6.3','sam awrabi',''),(6418,1,896,'2','samdawrabi@gmail.com',''),(6419,1,896,'3','(310) 403-0367',''),(6420,1,896,'5','Hello man L5 S1 demonstrates mild disc narrowing desiccation with mild degenerative endplate marrow change.  There is a 5 mm broad-based midline protrusion with annular fissure.  The facets and ligaments are normal.  There is mild right greater than left vertical foraminal stenosis.  There is ventral dural impression upon the thecal sac and descending S1 nerve root sleeves without nerve root compression or displacemen.\r\n\r\nIMPRESSION: L5-S1 disc protrusion with only minor neural consequences outlined above.',''),(6421,1,896,'11','Yes, and I want to avoid it if possible',''),(6422,1,896,'13','Google/Internet',''),(6423,1,896,'4','Anytime',''),(6424,1,897,'6.3','Eric Jones',''),(6425,1,897,'2','ericjonesmyemail@gmail.com',''),(6426,1,897,'3','(555) 555-1212',''),(6427,1,897,'5','Hi, my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nTalk With Web Visitor _ CLICK HERE http://boostleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6428,1,897,'11','Yes, and I want to avoid it if possible',''),(6429,1,897,'13','Google/Internet',''),(6430,1,897,'4','3pm – 5pm',''),(6431,1,898,'6.3','James C Pender',''),(6432,1,898,'2','jim.pender@icloud.com',''),(6433,1,898,'3','(916) 996-4737',''),(6434,1,898,'5','I will be 93 next month, both of my knees really hurt on standing not when sitting or laying. I have tried hyaluronic injections with no relief. Recently I tried to contract an orthopedic doctor but as I do not have a family doctor, he retired, could not arrange an appointment. My knees are hurting more as the days go by, what do you suggest?',''),(6435,1,898,'11','Not yet, and I want to avoid the need for one in the future',''),(6436,1,898,'13','Google/Internet',''),(6437,1,898,'4','Anytime',''),(6438,1,899,'6.3','Cassie Jean',''),(6439,1,899,'2','cassieseoexpert@gmail.com',''),(6440,1,899,'3','(201) 201-2012',''),(6441,1,899,'5','Hi,\r\nI just visited your website and I was wondering if you would like to see my vision of what I would suggest for your website. I would love the opportunity to show you our work. No commitment for future work, fine print or hidden anything- just an opportunity for you to see what some of our sites look like.\r\n\r\nI\'ll be happy to show you some of our work in your industry to give you some ideas. You\'ll then get to see one way in which your site might be redesigned to cater to the customers of today. That\'s it! Would that be ok to send? Thanks in advance!\r\n\r\nWarm Regards,\r\nCassie Jean',''),(6442,1,899,'11','Not yet, and I want to avoid the need for one in the future',''),(6443,1,899,'13','Referred by my doctor/provider',''),(6444,1,899,'4','Anytime',''),(6445,1,900,'6.3','Anthonyephef',''),(6446,1,900,'2','no.reply.feedbackform@gmail.com',''),(6447,1,900,'3','(870) 864-7140',''),(6448,1,900,'5','Hi!  drfields.com \r\n \r\nDid yоu knоw thаt it is pоssiblе tо sеnd аppеаl uttеrly lаwfully? \r\nWе prеsеntаtiоn а nеw mеthоd оf sеnding businеss prоpоsаl thrоugh соntасt fоrms. Suсh fоrms аrе lосаtеd оn mаny sitеs. \r\nWhеn suсh prоpоsаls аrе sеnt, nо pеrsоnаl dаtа is usеd, аnd mеssаgеs аrе sеnt tо fоrms spесifiсаlly dеsignеd tо rесеivе mеssаgеs аnd аppеаls. \r\nаlsо, mеssаgеs sеnt thrоugh соmmuniсаtiоn Fоrms dо nоt gеt intо spаm bесаusе suсh mеssаgеs аrе соnsidеrеd impоrtаnt. \r\nWе оffеr yоu tо tеst оur sеrviсе fоr frее. Wе will sеnd up tо 50,000 mеssаgеs fоr yоu. \r\nThе соst оf sеnding оnе milliоn mеssаgеs is 49 USD. \r\n \r\nThis mеssаgе is сrеаtеd аutоmаtiсаlly. Plеаsе usе thе соntасt dеtаils bеlоw tо соntасt us. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.',''),(6449,1,900,'11','Not yet, and I want to avoid the need for one in the future',''),(6450,1,900,'13','Facebook',''),(6451,1,900,'4','Anytime',''),(6452,1,901,'6.3','Eric Jones',''),(6453,1,901,'2','ericjonesmyemail@gmail.com',''),(6454,1,901,'3','(555) 555-1212',''),(6455,1,901,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6456,1,901,'11','Yes, and I want to avoid it if possible',''),(6457,1,901,'13','Referred by my doctor/provider',''),(6458,1,901,'4','9am – 11am',''),(6459,1,902,'6.3','Andy Michele Jones',''),(6460,1,902,'2','tribalafternoon@gmail.com',''),(6461,1,902,'3','(323) 718-0894',''),(6462,1,902,'5','Hey there! \r\nI\'m reaching out on behalf of a client; he\'s looking for non-surgical help with Craniocervical Instability and its symptoms. I know that PRP, BMC, prolotherapy, etc are common treatments for this and would like to know whether or not this is a condition you can help with. \r\n\r\nThanks so much for your time! \r\n\r\nAndy Michele',''),(6463,1,902,'11','Not yet, and I want to avoid the need for one in the future',''),(6464,1,902,'13','Google/Internet',''),(6465,1,902,'4','1pm – 3pm',''),(6466,1,903,'6.3','Stefano Filippi',''),(6467,1,903,'2','sales.americas@placidway.com',''),(6468,1,903,'3','(303) 860-3325',''),(6469,1,903,'5','Hi!\r\nI would like to know if you treat autoimmune and neurodegenerative diseases using stem cells.\r\nPlease, get back to me via email first.\r\nThanks!',''),(6470,1,903,'11','Not yet, and I want to avoid the need for one in the future',''),(6471,1,903,'13','Google/Internet',''),(6472,1,903,'4','Anytime',''),(6473,1,904,'6.3','PetarHok',''),(6474,1,904,'2','spbetcas194@gmail.com',''),(6475,1,904,'3','(541) 724-2130',''),(6476,1,904,'5','Best onlіnе саsіno \r\nBіg bоnus аnd Frееsріns \r\nSpоrt bеttіng аnd pоkеr \r\n \r\ngo now https://tinyurl.com/2mhjcdmb',''),(6477,1,904,'11','Not yet, and I want to avoid the need for one in the future',''),(6478,1,904,'13','Google/Internet',''),(6479,1,904,'4','Anytime',''),(6480,1,905,'6.3','JanetHek',''),(6481,1,905,'2','peuhggleeusdonfgh@gmail.com',''),(6482,1,905,'3','(435) 762-3250',''),(6483,1,905,'5','Let’s play an Adult Game tonight! Will take off all my clothes and suck you off if you win! If I win, just like my profile. Will be waiting for you here https://cutt.us/flirtatiousgirl till the end of the day. \r\nThis chance comes once in a lifetime.',''),(6484,1,905,'11','Not yet, and I want to avoid the need for one in the future',''),(6485,1,905,'13','Friend/family who was/is a patient',''),(6486,1,905,'4','Anytime',''),(6487,1,906,'6.3','RexonNahavarge',''),(6488,1,906,'2','defltorch@yandex.com',''),(6489,1,906,'3','(344) 366-6030',''),(6490,1,906,'5','[url=]http://loveplanet.gq/[/url]',''),(6491,1,906,'11','Not yet, and I want to avoid the need for one in the future',''),(6492,1,906,'13','Another healthcare website',''),(6493,1,906,'4','Anytime',''),(6494,1,907,'6.3','Alice manager',''),(6495,1,907,'2','honestrelationshipsrep@proton.me',''),(6496,1,907,'3','(540) 015-7030',''),(6497,1,907,'5','Doubting the honesty of your other half? Cheated by a business partner? Want to know who she\'s texting with on WhatsApp and Facebook? Do you want to see correspondence? \r\n \r\nNo pre-payment. Payment only after the result \r\n \r\n \r\nAll you need to provide - a phone number is tied to WhatsApp \r\nYou will read via a separate app WhatsApp business \r\n \r\nWhatsapp 200$ \r\nFacebook - $200 \r\nWhatsApp + Facebook $350 \r\n \r\nAlso provide additional services: \r\n- Location Determination - $150 \r\n- Recording phone calls during the day - $500 \r\n- Call history per month - 200$ \r\n- Receiving and forwarding you sms from other services - $150 per sms \r\n \r\n(Note, we do not forward sms from paypal, banks and other financial services. Nothing that could lead to loss of money or scamming.) \r\n \r\n- Clicks on competitors\' Google ads (we can remove your competitor from Google search ads by destroying their ad budget) \r\n \r\nСontact us: \r\nOur telegram: @Honestrelationships \r\nOur e-mail: honestrelationships@onionmail.com',''),(6498,1,907,'11','Not yet, and I want to avoid the need for one in the future',''),(6499,1,907,'13','Google/Internet',''),(6500,1,907,'4','Anytime',''),(6501,1,908,'6.3','Mike Smith',''),(6502,1,908,'2','no-replyPl@gmail.com',''),(6503,1,908,'3','(652) 714-4787',''),(6504,1,908,'5','Hi there \r\n \r\nI have just took an in depth look on your  drfields.com for its SEO metrics and saw that your website could use an upgrade. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our plans here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nRegards \r\nMike Smith\r\n \r\n \r\nPS: Quality SEO content is included',''),(6505,1,908,'11','Not yet, and I want to avoid the need for one in the future',''),(6506,1,908,'13','YouTube',''),(6507,1,908,'4','Anytime',''),(6508,1,909,'6.3','James Peterson',''),(6509,1,909,'2','info@apluscla.com',''),(6510,1,909,'3','(310) 795-7847',''),(6511,1,909,'5','I had an accident and tore my ACL (right Knee) and need to havea consultation about my options.',''),(6512,1,909,'11','Not yet, and I want to avoid the need for one in the future',''),(6513,1,909,'13','Google/Internet',''),(6514,1,909,'4','11am – 1pm',''),(6515,1,910,'6.3','Cheryl Minton',''),(6516,1,910,'2','cheryl.minton@yahoo.com',''),(6517,1,910,'3','(925) 348-2186',''),(6518,1,910,'5','Left shoulder ball and socket worn down to bone on bone, but only minor tears in rotator cuff. I have the MRI. Surgeon recommends total replacement. Doesn’t think regenerative methods will benefit me.',''),(6519,1,910,'11','Yes, and I want to avoid it if possible',''),(6520,1,910,'4','Anytime',''),(6521,1,911,'6.3','Eric Jones',''),(6522,1,911,'2','ericjonesmyemail@gmail.com',''),(6523,1,911,'3','(555) 555-1212',''),(6524,1,911,'5','Hey there, I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE http://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6525,1,911,'11','Yes, and I want to avoid it if possible',''),(6526,1,911,'13','Referred by my doctor/provider',''),(6527,1,911,'4','11am – 1pm',''),(6528,1,912,'6.3','Eric Jones',''),(6529,1,912,'2','ericjonesmyemail@gmail.com',''),(6530,1,912,'3','(555) 555-1212',''),(6531,1,912,'5','Hello, my name_s Eric and I just ran across your website at drfields.com...\r\n\r\nI found it after a quick search, so your SEO_s working out_\r\n\r\nContent looks pretty good_\r\n\r\nOne thing_s missing though_\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds _ 7 out of 10 disappear almost instantly, Surf Surf Surf_ then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to TALK with them - literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try_ it could be huge for your business.\r\n\r\nPlus, now that you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto_ which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6532,1,912,'11','Yes, and I want to avoid it if possible',''),(6533,1,912,'13','Friend/family who was/is a patient',''),(6534,1,912,'4','11am – 1pm',''),(6535,1,913,'6.3','Alyssameelf',''),(6536,1,913,'2','afopevunol1974@yandex.ru',''),(6537,1,913,'3','(671) 334-1134',''),(6538,1,913,'5','The next alternative is always to pursue a “deep” method, building a comparatively closed bidding pool of capable participants that have basically been curated for their understanding of the class as well as their methods and capability to bid. \r\n \r\nIf you buy a NETGEAR product or service from an unauthorized reseller or if the initial factory serial selection is taken out, defaced or altered, this NETGEAR warranty will not be legitimate. \r\n \r\nUnder the \"User Panel\", a user can check out the warranty NFTs less than their recent possession along with choose any amount of them to transfer to your specified recipient. Naturally, as a way to transfer a particular NFT, it must have transfers allowed. Usually, the operation will are unsuccessful. \r\n \r\nWhatever you select, you’re not by yourself should you’re emotion Doubtful about how to value electronic possession. People have argued for hundreds of years about how to place a financial cost on art. NFTs can be just One more spherical in that debate. \r\n \r\nNFTs have fully revolutionized the which means of digital art. The best way They\'re selling out for fantastic quantities in auctions Obviously alerts they will before long turn into a Element of the artwork and collectibles. \r\n \r\nThe leader in information and information on cryptocurrency, electronic assets plus the future of money, CoinDesk is often a media outlet that strives for the very best journalistic expectations and abides by a strict set of editorial guidelines. CoinDesk is really an independent working subsidiary of Digital Currency Team, which invests in cryptocurrencies and blockchain startups. \r\n[url=https://cifris.com/]nft project[/url] \r\n \r\nMintable is surely an Ethereum blockchain-based mostly marketplace that permits customers to buy, sell and monitor their collectibles. In contrast to other marketplaces which depend upon high quality about amount, Mintable concentrates on accumulating as many NFTs as you can and rendering it uncomplicated for consumers to discover what they are looking for. \r\n \r\nIn case the linked wallet is not really an administrator, just the \"Person Panel\" possibility might be demonstrated. In the situation from the screenshot, the linked wallet can be an admin, so the two selections are shown. \r\n \r\nInitial, install all required offers. The two principal packages are truffle for sensible deal compilation and deployment and taquito for the world wide web DApp. \r\n \r\nMaterial creators can make NFTs through a procedure referred to as “minting,” during which they create a representation of their file over a blockchain network. These dispersed networks can maintain immutable documents tracking whenever an asset is bought and marketed, and who at the moment owns it. \r\n \r\nThe leader in information and information on cryptocurrency, digital assets and the future of cash, CoinDesk is actually a media outlet that strives for the very best journalistic specifications and abides by a demanding set of editorial procedures. CoinDesk is really an unbiased working subsidiary of Digital Currency Group, which invests in cryptocurrencies and blockchain startups. \r\n \r\nYou should protect your self and also your NETGEAR products by making certain that you only purchase NETGEAR products from an authorized reseller. When you\'ve got any questions about approved resellers, make sure you go to our website. \r\n \r\nLike Bitcoin or Ethereum. The time period NFT Evidently signifies it may possibly neither be replaced nor interchanged mainly because it has exceptional properties. Bodily forex and cryptocurrency are fungible, which means that they are often traded or exchanged for each other. \r\n \r\n? The warranty card should contain the merchandise’s serial quantity and upon obtain be despatched to the customer’s \r\n[url=https://cifris.com/]nft token[/url]',''),(6539,1,913,'11','Not yet, and I want to avoid the need for one in the future',''),(6540,1,913,'13','Friend/family who was/is a patient',''),(6541,1,913,'4','Anytime',''),(6542,1,914,'6.3','Barbara Arsenault',''),(6543,1,914,'2','barbara_arsenault@mac.com',''),(6544,1,914,'3','(514) 349-7934',''),(6545,1,914,'5','I have sprained my ankle 9 weeks ago, by getting my sandal stocked in a stair and twisted my ankle badly. Went to ER where they performed X-Ray and diagnosed me with a simple sprained. A month later still unable to walk on it, went back to the ER where I got diagnosed with 2 avulsions fractures. 2 weeks later, I saw a specialist who prescribe a MRI where I got diagnosed with 2 torn ligaments. No doctor is proposing any treatment, just let it heal. I\'ve been doing research and wondering if I would be a good candidate for a stemcell therapy?',''),(6546,1,914,'11','Not yet, and I want to avoid the need for one in the future',''),(6547,1,914,'13','Google/Internet',''),(6548,1,914,'4','Anytime',''),(6549,1,915,'6.3','DominicilliltBuimb',''),(6550,1,915,'2','defltorch@yandex.com',''),(6551,1,915,'3','(807) 455-0612',''),(6552,1,915,'5','http://loveplanet.gq/',''),(6553,1,915,'11','Not yet, and I want to avoid the need for one in the future',''),(6554,1,915,'13','I am a current patient/was a patient previously',''),(6555,1,915,'4','Anytime',''),(6556,1,916,'6.3','Eric Jones',''),(6557,1,916,'2','ericjonesmyemail@gmail.com',''),(6558,1,916,'3','(555) 555-1212',''),(6559,1,916,'5','Hi, my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nTalk With Web Visitor _ CLICK HERE https://boostleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6560,1,916,'11','Yes, and I want to avoid it if possible',''),(6561,1,916,'13','Referred by my doctor/provider',''),(6562,1,916,'4','11am – 1pm',''),(6563,1,917,'6.3','David Conragan',''),(6564,1,917,'2','drconragan@aol.com',''),(6565,1,917,'3','(408) 425-4527',''),(6566,1,917,'5','knee issues for 25 plus years with several tears in the meniscus, DJD, and a large bakers cyst.  I was an elite olympic weightlifter in my 20\'s.  30 years later I can\'t do anything athletic or explosive.  Have been told to consider replacement.',''),(6567,1,917,'11','Yes, and I want to avoid it if possible',''),(6568,1,917,'13','Friend/family who was/is a patient',''),(6569,1,917,'4','Anytime',''),(6570,1,918,'6.3','NataliaKl',''),(6571,1,918,'2','nataliaKl@mail.com',''),(6572,1,918,'3','(850) 445-6623',''),(6573,1,918,'11','Not yet, and I want to avoid the need for one in the future',''),(6574,1,918,'13','I am a current patient/was a patient previously',''),(6575,1,918,'4','Anytime',''),(6576,1,919,'6.3','Eric Jones',''),(6577,1,919,'2','ericjonesmyemail@gmail.com',''),(6578,1,919,'3','(555) 555-1212',''),(6579,1,919,'5','Hey, my name_s Eric and for just a second, imagine this_\r\n\r\n- Someone does a search and winds up at drfields.com.\r\n\r\n- They hang out for a minute to check it out.  _I_m interested_ but_ maybe__\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line _ you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn_t really your fault _ it happens a LOT _ studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know right then and there _ enabling you to call that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation_ so even if you don_t close a deal then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6580,1,919,'11','Yes, and I want to avoid it if possible',''),(6581,1,919,'13','Another healthcare website',''),(6582,1,919,'4','9am – 11am',''),(6583,1,920,'6.3','Eric Jones',''),(6584,1,920,'2','ericjonesmyemail@gmail.com',''),(6585,1,920,'3','(555) 555-1212',''),(6586,1,920,'5','Hey, my name_s Eric and for just a second, imagine this_\r\n\r\n- Someone does a search and winds up at drfields.com.\r\n\r\n- They hang out for a minute to check it out.  _I_m interested_ but_ maybe__\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line _ you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn_t really your fault _ it happens a LOT _ studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know right then and there _ enabling you to call that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation_ so even if you don_t close a deal then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6587,1,920,'11','Yes, and I want to avoid it if possible',''),(6588,1,920,'13','Friend/family who was/is a patient',''),(6589,1,920,'4','11am – 1pm',''),(6590,1,921,'6.3','Eric Jones',''),(6591,1,921,'2','ericjonesmyemail@gmail.com',''),(6592,1,921,'3','(555) 555-1212',''),(6593,1,921,'5','Hey, my name_s Eric and for just a second, imagine this_\r\n\r\n- Someone does a search and winds up at drfields.com.\r\n\r\n- They hang out for a minute to check it out.  _I_m interested_ but_ maybe__\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line _ you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn_t really your fault _ it happens a LOT _ studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know right then and there _ enabling you to call that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation_ so even if you don_t close a deal then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6594,1,921,'11','Yes, and I want to avoid it if possible',''),(6595,1,921,'13','Friend/family who was/is a patient',''),(6596,1,921,'4','1pm – 3pm',''),(6597,1,922,'6.3','Daniela Federici',''),(6598,1,922,'2','daniela@danielafederici.com',''),(6599,1,922,'3','(917) 743-0317',''),(6600,1,922,'5','I’m a 50 year old photographer and I had an mri as I suffer pain ( muscle spasm ) when I tween my back.\r\n\r\nHere are some mri findings \r\nL4-L5: Small midline posterior disc herniation superimposed upon disc bulging deforming the thecal sac and mildly encroaching upon the right L4 neural foramen. Mild hypertrophic degenerative changes of the ligaments and facet joints.. No significant \r\ngrade canal stenosis. No neural foraminal stenosis. \r\n \r\nL5-S1: Disc space narrowing and diffuse posterior disc bulging encroaching upon the canal and L5 neural foramina bilaterally. Slight retrolisthesis of L5 on S1. No significant grade canal or foraminal stenosis. Chronic discogenic degenerative endplate \r\nchanges.',''),(6601,1,922,'11','Not yet, and I want to avoid the need for one in the future',''),(6602,1,922,'13','Friend/family who was/is a patient',''),(6603,1,922,'4','Anytime',''),(6604,1,923,'6.3','DominicilliltBuimb',''),(6605,1,923,'2','denizschirokov@yandex.ru',''),(6606,1,923,'3','(736) 587-1541',''),(6607,1,923,'5','http://loveplanet.gq/',''),(6608,1,923,'11','Not yet, and I want to avoid the need for one in the future',''),(6609,1,923,'13','Facebook',''),(6610,1,923,'4','Anytime',''),(6611,1,924,'6.3','PetarHok',''),(6612,1,924,'2','spbetcas807@gmail.com',''),(6613,1,924,'3','(368) 777-8104',''),(6614,1,924,'5','Best onlіnе саsіno \r\nBіg bоnus аnd Frееsріns \r\nSpоrt bеttіng аnd pоkеr \r\n \r\ngo now https://tinyurl.com/44h34y6u',''),(6615,1,924,'11','Not yet, and I want to avoid the need for one in the future',''),(6616,1,924,'13','Another healthcare website',''),(6617,1,924,'4','Anytime',''),(6618,1,925,'6.3','Byanfoesk',''),(6619,1,925,'2','buyndf@gmail.com',''),(6620,1,925,'3','(421) 857-8720',''),(6621,1,925,'5','Lolita Girls Fuck Collection \r\n \r\nloli video cp \r\n \r\n \r\ntki.sk/4lL6N7 \r\n \r\ns.yjm.pl/BbtC \r\n \r\ntw.uy/tw11l',''),(6622,1,925,'11','Not yet, and I want to avoid the need for one in the future',''),(6623,1,925,'13','Another healthcare website',''),(6624,1,925,'4','Anytime',''),(6625,1,926,'6.3','BrandonHof',''),(6626,1,926,'2','shazdesuza@gmail.com',''),(6627,1,926,'3','(751) 673-4727',''),(6628,1,926,'5','At Jackpotbetonline.com We bring you latest Gambling News, Casino Bonuses and offers from Top Operators, [url=https://www.jackpotbetonline.com/]Online Casino[/url] Slots Tips, Sports Betting Tips, odds etc.',''),(6629,1,926,'11','Not yet, and I want to avoid the need for one in the future',''),(6630,1,926,'13','Another healthcare website',''),(6631,1,926,'4','Anytime',''),(6632,1,927,'6.3','Patricia Garcia',''),(6633,1,927,'2','garciapatriciag22@gmail.com',''),(6634,1,927,'3','(983) 152-3806',''),(6635,1,927,'5','Hey there,\r\n\r\nHope you and your business are doing well. We\'ve all been through so much this year!\r\n\r\nI\'m really sorry to bother you, and I know you are super busy, but I have been checking your website, and it seems that you are not ranking well for your ad words and key phrases. I actually help businesses like yours get a better ranking in google by using 10 proven techniques below.\r\n\r\nI would really love the opportunity to work with you and your business, and bring your website to the top of Google’s list - the sweet spot where you get clicks and more business!\r\n\r\nPlease let me tell you some of the techniques that I can use below to help you get a better ranking in google search:\r\n\r\n1. Title Tag Optimizations are missing, I can add these to your site.\r\n2. Meta Tag Optimization descriptions are absent, I can add them too.\r\n3. Heading Tags Optimization - No problem getting those put in there.\r\n4. Targeted keywords are not placed into tags correctly.\r\n5. Alt / Image tags Optimization is not present - it would take me seconds to write these.\r\n6. Google Publisher is missing; I can set this up for you\r\n7. Custom 404 Page is missing and I can create this for you.\r\n8. The Products are not following Structured mark-up data, let me edit that in google webmaster tools.\r\n9. Website Speed Development (Both Mobile and Desktop) I can make some tweaks and show you a speed performance using GTMetrics or Pingdom\r\n10.Content Creation SEO work - As a native English speaker, I can create fantastic articles that people will want to read and share, these will bring business to you by word of mouth rather than expensive promotion via google paid search.\r\n\r\nI\'m sorry if this sounds a little technical, but rest assured, these techniques will certainly improve you ranking in search. I am so confident that I will offer you a full refund of my fee should you not see an improvement in your google ranking within two months.\r\n\r\nWe\'ve got lots to do together to make you stand out!\r\n\r\nPlease give us the chance to work with you. You can see our rates on our website.\r\n\r\nIf this email has reached you by mistake, or if you do not wish to take advantage of this opportunity, please accept my apologies for any inconvenience caused. We are a small business and we are just trying to get some customers. I\'m sure you were in our position once too. Rest assured that we will not contact you again should you reply to this email with the word \'unsubscribe\'\r\n\r\nThank you kindly for your time and consideration,\r\n\r\nLooking forward to working with you.\r\n\r\nKindest regards,\r\n\r\nPatricia Garcia\r\n\r\nSpread the love!',''),(6636,1,927,'11','Not yet, and I want to avoid the need for one in the future',''),(6637,1,927,'13','Google/Internet',''),(6638,1,927,'4','11am – 1pm',''),(6639,1,928,'6.3','Patricia Garcia',''),(6640,1,928,'2','garciapatriciag22@gmail.com',''),(6641,1,928,'3','(098) 315-2380',''),(6642,1,928,'5','Hey there,\r\n\r\nHope you and your business are doing well. We\'ve all been through so much this year!\r\n\r\nI\'m really sorry to bother you, and I know you are super busy, but I have been checking your website, and it seems that you are not ranking well for your ad words and key phrases. I actually help businesses like yours get a better ranking in google by using 10 proven techniques below.\r\n\r\nI would really love the opportunity to work with you and your business, and bring your website to the top of Google’s list - the sweet spot where you get clicks and more business!\r\n\r\nPlease let me tell you some of the techniques that I can use below to help you get a better ranking in google search:\r\n\r\n1. Title Tag Optimizations are missing, I can add these to your site.\r\n2. Meta Tag Optimization descriptions are absent, I can add them too.\r\n3. Heading Tags Optimization - No problem getting those put in there.\r\n4. Targeted keywords are not placed into tags correctly.\r\n5. Alt / Image tags Optimization is not present - it would take me seconds to write these.\r\n6. Google Publisher is missing; I can set this up for you\r\n7. Custom 404 Page is missing and I can create this for you.\r\n8. The Products are not following Structured mark-up data, let me edit that in google webmaster tools.\r\n9. Website Speed Development (Both Mobile and Desktop) I can make some tweaks and show you a speed performance using GTMetrics or Pingdom\r\n10.Content Creation SEO work - As a native English speaker, I can create fantastic articles that people will want to read and share, these will bring business to you by word of mouth rather than expensive promotion via google paid search.\r\n\r\nI\'m sorry if this sounds a little technical, but rest assured, these techniques will certainly improve you ranking in search. I am so confident that I will offer you a full refund of my fee should you not see an improvement in your google ranking within two months.\r\n\r\nWe\'ve got lots to do together to make you stand out!\r\n\r\nPlease give us the chance to work with you. You can see our rates on our website.\r\n\r\nIf this email has reached you by mistake, or if you do not wish to take advantage of this opportunity, please accept my apologies for any inconvenience caused. We are a small business and we are just trying to get some customers. I\'m sure you were in our position once too. Rest assured that we will not contact you again should you reply to this email with the word \'unsubscribe\'\r\n\r\nThank you kindly for your time and consideration,\r\n\r\nLooking forward to working with you.\r\n\r\nKindest regards,\r\n\r\nPatricia Garcia\r\n\r\nSpread the love!',''),(6643,1,928,'11','Not yet, and I want to avoid the need for one in the future',''),(6644,1,928,'13','Google/Internet',''),(6645,1,928,'4','11am – 1pm',''),(6646,1,929,'6.3','prosmirEntib',''),(6647,1,929,'2','prvmdts1@rambler.ru',''),(6648,1,929,'3','(801) 538-4251',''),(6649,1,929,'5','Если Вас уже лишили прав или просто не хотите нарушать свой привычный график растрачивая время на получение водительского удостоверения официально через автошколу, то вы попали по верному адресу. Наш сервис призван помочь Вам в легком и быстром получении водительских прав не выходя из дома или офиса.\r\n \r\n[url=https://novokuzneck.online-prava.site][img]https://ekaterinburg.online-prava.site/baner.jpg[/img][/url] \r\nhttps://habarovsk.online-prava.site/spectekhnika/prava-na-traktor.html\r\nhttps://perm.online-prava.site/spectekhnika/prava-na-samosval.html\r\n \r\n[url=https://nizhnij-novgorod.online-prava.site/otzyvy.html] московские права купить [/url]\r\n[url=https://chelyabinsk.online-prava.site/spectekhnika.html] купить права машиниста [/url]\r\n \r\nкупить алкоголь по правам\r\nкупить права в гаи\r\nкупить права водительские удостоверения',''),(6650,1,929,'11','Not yet, and I want to avoid the need for one in the future',''),(6651,1,929,'13','Friend/family who was/is a patient',''),(6652,1,929,'4','Anytime',''),(6653,1,930,'6.3','Mike Raleigh',''),(6654,1,930,'2','no-replyPl@gmail.com',''),(6655,1,930,'3','(377) 752-4627',''),(6656,1,930,'5','Hi there \r\n \r\nThis is Mike Raleigh\r\n \r\nLet me show you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your drfields.com SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Raleigh\r\n \r\nmike@strictlydigital.net',''),(6657,1,930,'11','Not yet, and I want to avoid the need for one in the future',''),(6658,1,930,'13','Facebook',''),(6659,1,930,'4','Anytime',''),(6660,1,931,'6.3','AnnaKl',''),(6661,1,931,'2','annaKl@mailfence.com',''),(6662,1,931,'3','(068) 132-8433',''),(6663,1,931,'5','Hiǃ\r\nI\'vе noticеd that mаny guуѕ рrefеr rеgular gіrls.\r\nΙ аpрlaude the mеn out there who hаd thе ballѕ to еnjоу thе love оf mаny wоmеn and сhooѕе the оne thаt hе knew wоuld bе his beѕt friеnd during the bumpy and сrаzу thing саllеd lifе.\r\nI wanted tо be that friend, not ϳuѕt a ѕtable, rеlіable and borіng housewіfe.\r\nI am 22 yeаrs old, Аnnа, from the Сzeсh Republiс, knоw Engliѕh languаge also.\r\nAnуwау, уоu can find mу prоfіlе hеre: http://otwilradity.tk/page-40562/',''),(6664,1,931,'11','Not yet, and I want to avoid the need for one in the future',''),(6665,1,931,'13','I am a current patient/was a patient previously',''),(6666,1,931,'4','Anytime',''),(6667,1,932,'6.3','Leon Blaylock',''),(6668,1,932,'2','blaylockleonb22@gmail.com',''),(6669,1,932,'3','(098) 315-2380',''),(6670,1,932,'5','Hey there,\r\n\r\nHope you and your business are doing well. We\'ve all been through so much this year!\r\n\r\nI\'m really sorry to bother you, and I know you are super busy, but I have been checking your website, and it seems that you are not ranking well for your ad words and key phrases. I actually help businesses like yours get a better ranking in google by using 10 proven techniques below.\r\n\r\nI would really love the opportunity to work with you and your business, and bring your website to the top of Google’s list - the sweet spot where you get clicks and more business!\r\n\r\nPlease let me tell you some of the techniques that I can use below to help you get a better ranking in google search:\r\n\r\n1. Title Tag Optimizations are missing, I can add these to your site.\r\n2. Meta Tag Optimization descriptions are absent, I can add them too.\r\n3. Heading Tags Optimization - No problem getting those put in there.\r\n4. Targeted keywords are not placed into tags correctly.\r\n5. Alt / Image tags Optimization is not present - it would take me seconds to write these.\r\n6. Google Publisher is missing; I can set this up for you\r\n7. Custom 404 Page is missing and I can create this for you.\r\n8. The Products are not following Structured mark-up data, let me edit that in google webmaster tools.\r\n9. Website Speed Development (Both Mobile and Desktop) I can make some tweaks and show you a speed performance using GTMetrics or Pingdom\r\n10.Content Creation SEO work - As a native English speaker, I can create fantastic articles that people will want to read and share, these will bring business to you by word of mouth rather than expensive promotion via google paid search.\r\n\r\nI\'m sorry if this sounds a little technical, but rest assured, these techniques will certainly improve you ranking in search. I am so confident that I will offer you a full refund of my fee should you not see an improvement in your google ranking within two months.\r\n\r\nWe\'ve got lots to do together to make you stand out!\r\n\r\nPlease give us the chance to work with you. You can see our rates on our website.\r\n\r\nIf this email has reached you by mistake, or if you do not wish to take advantage of this opportunity, please accept my apologies for any inconvenience caused. We are a small business and we are just trying to get some customers. I\'m sure you were in our position once too. Rest assured that we will not contact you again should you reply to this email with the word \'unsubscribe\'\r\n\r\nThank you kindly for your time and consideration,\r\n\r\nLooking forward to working with you.\r\n\r\nKindest regards,\r\n\r\nLeon Blaylock\r\n\r\nSpread the love!',''),(6671,1,932,'11','Not yet, and I want to avoid the need for one in the future',''),(6672,1,932,'13','Google/Internet',''),(6673,1,932,'4','11am – 1pm',''),(6674,1,933,'6.3','Eric Jones',''),(6675,1,933,'2','ericjonesmyemail@gmail.com',''),(6676,1,933,'3','(555) 555-1212',''),(6677,1,933,'5','Hi, Eric here with a quick thought about your website drfields.com...\r\n\r\nI_m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it _ it_s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere_s a solution for you_\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to talk with them literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business _ and because you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately_ and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6678,1,933,'11','Yes, and I want to avoid it if possible',''),(6679,1,933,'13','YouTube',''),(6680,1,933,'4','1pm – 3pm',''),(6681,1,934,'6.3','Eric Jones',''),(6682,1,934,'2','ericjonesmyemail@gmail.com',''),(6683,1,934,'3','(555) 555-1212',''),(6684,1,934,'5','My name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6685,1,934,'11','Yes, and I want to avoid it if possible',''),(6686,1,934,'13','I am a current patient/was a patient previously',''),(6687,1,934,'4','1pm – 3pm',''),(6688,1,935,'6.3','ed connaughton dc',''),(6689,1,935,'2','edconnaughton@gmail.com',''),(6690,1,935,'3','(310) 372-4200',''),(6691,1,935,'5','I have an inguinal hernia. I want to avoid surgery',''),(6692,1,935,'11','Not yet, and I want to avoid the need for one in the future',''),(6693,1,935,'13','Friend/family who was/is a patient',''),(6694,1,935,'4','Anytime',''),(6695,1,936,'6.3','Eric Jones',''),(6696,1,936,'2','ericjonesmyemail@gmail.com',''),(6697,1,936,'3','(555) 555-1212',''),(6698,1,936,'5','Hi, Eric here with a quick thought about your website drfields.com...\r\n\r\nI_m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it _ it_s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere_s a solution for you_\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to talk with them literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business _ and because you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately_ and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6699,1,936,'11','Yes, and I want to avoid it if possible',''),(6700,1,936,'13','I am a current patient/was a patient previously',''),(6701,1,936,'4','1pm – 3pm',''),(6702,1,937,'6.3','Eric Jones',''),(6703,1,937,'2','ericjonesmyemail@gmail.com',''),(6704,1,937,'3','(555) 555-1212',''),(6705,1,937,'5','Hey, my name_s Eric and for just a second, imagine this_\r\n\r\n- Someone does a search and winds up at drfields.com.\r\n\r\n- They hang out for a minute to check it out.  _I_m interested_ but_ maybe__\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line _ you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn_t really your fault _ it happens a LOT _ studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know right then and there _ enabling you to call that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation_ so even if you don_t close a deal then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6706,1,937,'11','Yes, and I want to avoid it if possible',''),(6707,1,937,'13','Another healthcare website',''),(6708,1,937,'4','1pm – 3pm',''),(6709,1,938,'6.3','Eric Jones',''),(6710,1,938,'2','ericjonesmyemail@gmail.com',''),(6711,1,938,'3','(555) 555-1212',''),(6712,1,938,'5','Hi, Eric here with a quick thought about your website drfields.com...\r\n\r\nI_m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it _ it_s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere_s a solution for you_\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to talk with them literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business _ and because you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately_ and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6713,1,938,'11','Yes, and I want to avoid it if possible',''),(6714,1,938,'13','Google/Internet',''),(6715,1,938,'4','1pm – 3pm',''),(6716,1,939,'6.3','Frank Sweet',''),(6717,1,939,'2','drfrankpsweetoffice@gmail.com',''),(6718,1,939,'3','(928) 453-9525',''),(6719,1,939,'5','Both knees, particularly the right knee on the medial side is \"bone on bone\". Left knee is about the same but most of the pin is on the right side. I am still able to run two miles daily without much pain.',''),(6720,1,939,'11','Yes, and I want to avoid it if possible',''),(6721,1,939,'13','Facebook',''),(6722,1,939,'4','Anytime',''),(6723,1,940,'6.3','Vincent Punturere DC',''),(6724,1,940,'2','100ylschiro@gmail.com',''),(6725,1,940,'3','(310) 850-2088',''),(6726,1,940,'5','Injury to the right shoulder with tears noted at the Supraspinatus. Subscapularis and Biceps tendon rupture long head  Full range pf motion of the cuff without significant pain much pain at the biceps. Must avoid surgery if possible I need to be able to adjust people',''),(6727,1,940,'11','Yes, and I want to avoid it if possible',''),(6728,1,940,'4','Anytime',''),(6729,1,941,'6.3','Mike Johnson',''),(6730,1,941,'2','mike@johnson-lumber.com',''),(6731,1,941,'3','(408) 804-0497',''),(6732,1,941,'5','Two issues\r\nRight knee - torn lateral meniscus \r\nLeft calf - injured Tibial nerve causing numbness in foot',''),(6733,1,941,'11','Not yet, and I want to avoid the need for one in the future',''),(6734,1,941,'13','Friend/family who was/is a patient',''),(6735,1,941,'4','Anytime',''),(6736,1,942,'6.3','Hubert Raker',''),(6737,1,942,'2','raker.hubert@googlemail.com',''),(6738,1,942,'3','(718) 629-8869',''),(6739,1,942,'5','Hi there!\r\nI\'m writing to let you know about an incredible new AI tool that can help with various tasks related to website copywriting and SEO.\r\nIt\'s been used by some of the biggest companies in the world, such as Airbnb and Microsoft.\r\nSo if you\'re looking for a powerful tool to help take your website to the next level, this is definitely worth considering! Plus, to make things even better, I\'m giving away 10,000 words for free so that you can try it out for yourself.\r\nTo get 10k words, just go to\0https://www.aiwritingmachine.com/',''),(6740,1,942,'11','Yes, and I want to avoid it if possible',''),(6741,1,942,'13','Referred by my doctor/provider',''),(6742,1,942,'4','1pm – 3pm',''),(6743,1,943,'6.3','Eleanor C Wright',''),(6744,1,943,'2','ecwright@shaw.ca',''),(6745,1,943,'3','(604) 649-6431',''),(6746,1,943,'5','I have M.S and see neurologist in Vancouver B C.\r\nI will be in Palm Springs, January 14-21 2023.\r\nThink Stem Cell from research I have read would slow or stop inflammation . Mesenchymal cells!\r\nUnavailable in Canada',''),(6747,1,943,'11','Not yet, and I want to avoid the need for one in the future',''),(6748,1,943,'13','Another healthcare website',''),(6749,1,943,'4','9am – 11am',''),(6750,1,944,'6.3','KarinaHew',''),(6751,1,944,'2','karinaHew@mail.com',''),(6752,1,944,'3','(322) 732-2778',''),(6753,1,944,'5','Czechia',''),(6754,1,944,'11','Not yet, and I want to avoid the need for one in the future',''),(6755,1,944,'13','Friend/family who was/is a patient',''),(6756,1,944,'4','Anytime',''),(6757,1,945,'6.3','Peter Zamfirov',''),(6758,1,945,'2','p.zamrock@gmail.com',''),(6759,1,945,'3','(323) 447-9028',''),(6760,1,945,'5','Golfer and tennis elbow. I have tried many PT modalities with no luck.',''),(6761,1,945,'11','Not yet, and I want to avoid the need for one in the future',''),(6762,1,945,'13','Google/Internet',''),(6763,1,945,'4','Anytime',''),(6764,1,946,'6.3','Eddie Harmon',''),(6765,1,946,'2','eharmon@betterbiztips.com',''),(6766,1,946,'3','(316) 214-8597',''),(6767,1,946,'5','Hello,\r\n\r\nAccording to HubSpot**, since 2018, the amount of online video being watched has doubled.  \r\n\r\nWith their customers craving more video, it’s essential that businesses learn to use it effectively in their marketing, but for inexperienced SBOs, video can be intimidating and difficult to DIY. \r\n\r\nTo help SMBs that are taking the plunge, I\'d like to offer an article on creating an effective storyboard when you\'re not an expert.\r\n\r\nIn my article, I\'ll cover the basics, like what a storyboard is and how to structure one, as well as the bigger picture benefits, such as ensuring video concepts meet goals and stay on budget.\r\n\r\nWould this topic interest you and your readers? Please tell me your thoughts.\r\n\r\nThank you for your time and consideration,\r\nEddie Harmon\r\n​​betterbiztips.com\r\neharmon@betterbiztips.com\r\n\r\n**https://blog.hubspot.com/marketing/state-of-video-marketing-new-data \r\n\r\nP.S. If you\'d prefer not to receive email from me, please let me know and I\'ll unsubscribe you.',''),(6768,1,946,'11','Not yet, and I want to avoid the need for one in the future',''),(6769,1,946,'4','Anytime',''),(6770,1,947,'6.3','Grace Robinson',''),(6771,1,947,'2','nanrob312@gmail.com',''),(6772,1,947,'3','(408) 203-7914',''),(6773,1,947,'5','My daughter, Grace, is being recommended by Dr. Marv Anderson in Morgan Hill. She has been a patient of Marv\'s for a year. She is active and rides horses and skis. She has had lower back pain for over a year. She has had back pain and we have had imaging done through Kaiser. The finding of the MRI is as follows:\r\n\r\nNo evidence of pars fracture. Mild disc bulge at L5-S1.\r\n \r\n \r\nNarrative\r\nMRI LUMBAR SPINE WITHOUT CONTRAST\r\n \r\n** HISTORY **:\r\n18 years old, chronic low back pain, question pars fracture\r\n \r\n** TECHNIQUE **:\r\nMR images of the lumbar spine acquired without intravenous contrast.\r\n \r\nCOMPARISON: Radiograph 10/4/2022\r\n \r\n** FINDINGS **:  \r\nNUMBERING: Last fully formed disc space is designated L5-S1.\r\n \r\nSPINAL CORD: Normal conus. Conus terminates at the T12-L1 level.\r\n \r\nDISCS: Minimal disc desiccation L5-S1.\r\n \r\nBONES: Vertebral body height and alignment are normal.  Marrow signal is normal.\r\n \r\nSOFT TISSUES: Normal.\r\n \r\nT12-L1: No canal or foraminal stenosis.\r\n \r\nL1-L2: No canal or foraminal stenosis.\r\n \r\nL2-L3: No canal or foraminal stenosis.\r\n \r\nL3-L4: No canal or foraminal stenosis.\r\n \r\nL4-L5: No canal or foraminal stenosis.\r\n \r\nL5-S1: Mild disc bulge. No canal or foraminal stenosis.\r\n \r\nOTHER: None.\r\n\r\nXray is as follows:\r\nXRAY LUMBAR SPINE\r\n \r\n** HISTORY **:\r\n17 years old,  PAIN WITHOUT TRAUMA\r\n \r\n** TECHNIQUE **:\r\n2 views of the lumbar spine acquired.\r\n \r\nCOMPARISON: Radiograph 11/5/2021\r\n \r\n** FINDINGS **:\r\nNormal vertebral body height and alignment. Disc spaces are normal. Suggestion of hemisacralization of L5.',''),(6774,1,947,'11','Not yet, and I want to avoid the need for one in the future',''),(6775,1,947,'13','Referred by my doctor/provider',''),(6776,1,947,'4','Anytime',''),(6777,1,948,'6.3','Eric Jones',''),(6778,1,948,'2','ericjonesmyemail@gmail.com',''),(6779,1,948,'3','(555) 555-1212',''),(6780,1,948,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6781,1,948,'11','Yes, and I want to avoid it if possible',''),(6782,1,948,'13','Referred by my doctor/provider',''),(6783,1,948,'4','1pm – 3pm',''),(6784,1,949,'6.3','Doyletrind',''),(6785,1,949,'2','bsmergerarely3@outlook.com',''),(6786,1,949,'3','(566) 362-3070',''),(6787,1,949,'5','>>>  [url=http://viagranix.com]VISIT SITE[/url]  <<< \r\n \r\n***** \r\n- 24/7 Customer Support \r\n- No Prescription Required \r\n- Top Quality Medications \r\n- Worldwide Shipping \r\n- Bargain Prices \r\n***** \r\n \r\n \r\nWe are found by keywords: \r\nwhen should you take sildenafil\r\ngeneric drug for viagra?\r\nfemale viagra gets mommy in trouble\r\ncan i masturbate using sildenafil 25 mg\r\ncurtis pharmacy sildenafil\r\nsecure canada website for generic viagra\r\nsildenafil for women dosage\r\ngeneric chewable viagra\r\n#Ð˜ÐœÐ¯?\r\nhow to buy c viagra for sale\r\nwhat is sildenafil citrate tablets 100mg\r\nsildenafil pfizer\r\nbuy viagra online without subscription\r\nsildenafil 100 mg best price\r\nis viagra more effective then generic viagra\r\nfast delivery generic viagra\r\nis the sildenafil used for pets the same as that used for humans?\r\nindia viagra generic\r\nsildenafil citrate 100mg pills',''),(6788,1,949,'11','Not yet, and I want to avoid the need for one in the future',''),(6789,1,949,'13','Facebook',''),(6790,1,949,'4','Anytime',''),(6791,1,950,'6.3','Jamesmom',''),(6792,1,950,'2','tejawavidesuza@gmail.com',''),(6793,1,950,'3','(388) 151-1850',''),(6794,1,950,'5','[url=https://www.rtnewstoday.com/]RT News Today[/url] is the 24/7 English news channel which brings the World news.',''),(6795,1,950,'11','Not yet, and I want to avoid the need for one in the future',''),(6796,1,950,'13','Google/Internet',''),(6797,1,950,'4','Anytime',''),(6798,1,951,'6.3','Ric Alexander',''),(6799,1,951,'2','ricalexander@DrAlexander.com',''),(6800,1,951,'3','(818) 761-5198',''),(6801,1,951,'5','Hi Doc,\r\nWell, the Celebrex made me sleepy after about an hour but by three hours of taking it the pain was back just as bad. The CBD may be helping some. Found a surgeon at SCOI. Dr. Carlos Guancha. One of the best in the country for shoulder replacement. Called his practice coordinator but no return call as of 10 am. Three of the 5mg oxycodone helped me sleep last night but I don\'t have many left. I am rather desperate and not sure what to do. Anything you can suggest would be appreciated. A prescription for a better drug? Thanks for everything.  Dr. Ric',''),(6802,1,951,'11','Not yet, and I want to avoid the need for one in the future',''),(6803,1,951,'4','Anytime',''),(6804,1,952,'6.3','JamesPer',''),(6805,1,952,'2','yourmail@gmail.com',''),(6806,1,952,'3','(026) 586-8221',''),(6807,1,952,'5','Every moment is the approach to interest to in. There won\'t be another prospect like this \r\n<a href=https://accounts.binance.com/ru/register?ref=25293193>Buy and vend cryptocurrency in minutes </a>',''),(6808,1,952,'11','Not yet, and I want to avoid the need for one in the future',''),(6809,1,952,'13','Facebook',''),(6810,1,952,'4','Anytime',''),(6811,1,953,'6.3','karsevdiman',''),(6812,1,953,'2','karsevdiman@rambler.ru',''),(6813,1,953,'3','(785) 174-7068',''),(6814,1,953,'5','Сайт промыть истенное положение своими на Украине [url=https://xn--90aivcdt6dxbc.xn--p1ai/]Зачем русские начали спецоперацию[/url] \r\n \r\n \r\nКак промыть бензиновые и дизельные форсунки автомобиля [url=http://uzo.matrixplus.ru]Качественная химия для очистки и тестирования форсунок , бензинновых и дизельных[/url] \r\n[url=http://matrixplus.ru]Купить универсальную химию для очистки дизельных и бензинновых форсунок на судоых установках[/url] \r\n \r\nКупить химию и моющие для мойки катера [url=http://regionsv.ru/chem4.html]для мойки яхты и лодок[/url] \r\n \r\nКак собрать ЛК компьютер [url=http://rdk.regionsv.ru/orion128.htm]Орион-128.2 ревизия мк 256[/url] \r\nКак собрать радиолюбительский бытовой компьютер своими руками [url=http://rdk.regionsv.ru/orion128-express.htm]Орион-128.2 Орион Восточный Экспресс 512[/url] для радиолюбительских и инженерных расчетов \r\n \r\n \r\n[url=http://www.matrixboard.ru/stat012.htm]matrixboard.ru[/url] \r\n \r\n[url=http://abc64.ru]Купить щенка немецкой овчарки[/url] \r\n \r\n \r\nМассаж реабилитационный для лечения позвоночника [url=http://freshrelax.ru]freshrelax.ru[/url] \r\n \r\nХимия для качественного клининга [url=http://regionsv.ru]regionsv.ru[/url] \r\n \r\nВсе ддля детского творчества   [url=http://www.freshdesigner.ru/]Учимся работать руками и головой[/url]',''),(6815,1,953,'11','Not yet, and I want to avoid the need for one in the future',''),(6816,1,953,'13','I am a current patient/was a patient previously',''),(6817,1,953,'4','Anytime',''),(6818,1,954,'6.3','Doyletrind',''),(6819,1,954,'2','bsmergerarely3@outlook.com',''),(6820,1,954,'3','(108) 841-1042',''),(6821,1,954,'5','>>>  [url=http://viagranix.com]VISIT SITE[/url]  <<< \r\n \r\n***** \r\n- 24/7 Customer Support \r\n- No Prescription Required \r\n- Top Quality Medications \r\n- Worldwide Shipping \r\n- Bargain Prices \r\n***** \r\n \r\n \r\nWe are found by keywords: \r\ncan i buy viagra online\r\nligit generic viagra sites\r\nsildenafil for dogs overdoes\r\nover the counter generic viagra carson city nv menu guide\r\ndo you need a prescription in canada for sildenafil 20\r\nsildenafil 50\r\nsildenafil citrate 200mg pills\r\ngeneric viagra shipping from canada\r\nsildenafil r20\r\npfizers generic viagra\r\nsildenafil citrate tabs 20mg\r\nindia viagra generic truth\r\ncheap canadian viagra',''),(6822,1,954,'11','Not yet, and I want to avoid the need for one in the future',''),(6823,1,954,'13','Friend/family who was/is a patient',''),(6824,1,954,'4','Anytime',''),(6825,1,955,'6.3','Eric Jones',''),(6826,1,955,'2','ericjonesmyemail@gmail.com',''),(6827,1,955,'3','(555) 555-1212',''),(6828,1,955,'5','My name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6829,1,955,'11','Yes, and I want to avoid it if possible',''),(6830,1,955,'13','I am a current patient/was a patient previously',''),(6831,1,955,'4','3pm – 5pm',''),(6832,1,956,'6.3','Eric Jones',''),(6833,1,956,'2','ericjonesmyemail@gmail.com',''),(6834,1,956,'3','(555) 555-1212',''),(6835,1,956,'5','Hi, Eric here with a quick thought about your website drfields.com...\r\n\r\nI_m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it _ it_s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere_s a solution for you_\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to talk with them literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business _ and because you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately_ and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6836,1,956,'11','Yes, and I want to avoid it if possible',''),(6837,1,956,'13','YouTube',''),(6838,1,956,'4','3pm – 5pm',''),(6839,1,957,'6.3','Eric Jones',''),(6840,1,957,'2','ericjonesmyemail@gmail.com',''),(6841,1,957,'3','(555) 555-1212',''),(6842,1,957,'5','Hey, my name_s Eric and for just a second, imagine this_\r\n\r\n- Someone does a search and winds up at drfields.com.\r\n\r\n- They hang out for a minute to check it out.  _I_m interested_ but_ maybe__\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line _ you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn_t really your fault _ it happens a LOT _ studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know right then and there _ enabling you to call that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation_ so even if you don_t close a deal then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6843,1,957,'11','Yes, and I want to avoid it if possible',''),(6844,1,957,'13','Referred by my doctor/provider',''),(6845,1,957,'4','11am – 1pm',''),(6846,1,958,'6.3','Eric Jones',''),(6847,1,958,'2','ericjonesmyemail@gmail.com',''),(6848,1,958,'3','(555) 555-1212',''),(6849,1,958,'5','Hi, Eric here with a quick thought about your website drfields.com...\r\n\r\nI_m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it _ it_s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere_s a solution for you_\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to talk with them literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business _ and because you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately_ and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6850,1,958,'11','Yes, and I want to avoid it if possible',''),(6851,1,958,'13','Google/Internet',''),(6852,1,958,'4','11am – 1pm',''),(6853,1,959,'6.3','Eric Jones',''),(6854,1,959,'2','ericjonesmyemail@gmail.com',''),(6855,1,959,'3','(555) 555-1212',''),(6856,1,959,'5','Hey there, I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE http://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6857,1,959,'11','Yes, and I want to avoid it if possible',''),(6858,1,959,'13','Another healthcare website',''),(6859,1,959,'4','3pm – 5pm',''),(6860,1,960,'6.3','Eric Jones',''),(6861,1,960,'2','ericjonesmyemail@gmail.com',''),(6862,1,960,'3','(555) 555-1212',''),(6863,1,960,'5','My name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6864,1,960,'11','Yes, and I want to avoid it if possible',''),(6865,1,960,'13','Google/Internet',''),(6866,1,960,'4','1pm – 3pm',''),(6867,1,961,'6.3','Catrena Elliott',''),(6868,1,961,'2','catrenaej@yahoo.com',''),(6869,1,961,'3','(562) 965-4901',''),(6870,1,961,'5','Arthritis in my right knee   Pain is daily',''),(6871,1,961,'11','Not yet, and I want to avoid the need for one in the future',''),(6872,1,961,'13','Friend/family who was/is a patient',''),(6873,1,961,'4','Anytime',''),(6874,1,962,'6.3','Caroline Fisher',''),(6875,1,962,'2','carolfish2000@gmail.com',''),(6876,1,962,'3','(559) 210-1463',''),(6877,1,962,'5','I have been having lower back pain that had gotten increasingly worse in the last few months. This makes it hard to work and fall asleep at night.',''),(6878,1,962,'11','Not yet, and I want to avoid the need for one in the future',''),(6879,1,962,'13','Another healthcare website',''),(6880,1,962,'4','Anytime',''),(6881,1,963,'6.3','Kevin Cox',''),(6882,1,963,'2','flexorank@gmail.com',''),(6883,1,963,'3','(205) 417-7002',''),(6884,1,963,'5','Dear drfields,\r\n\r\nHope you are doing fine.\r\n\r\nThis is regarding your Google AdWords.\r\n\r\nI know this is an unsolicited email but still I want to update you a very important aspect of your investment.\r\n\r\nGoogle investment is very expensive compared to Google organic ranking. As long as you keep on paying to Google you might see some traffic but 80% of those traffic are spam.\r\n\r\nWhy don\'t you consider Google organic ranking where we guarantee you a Google top page ranking if you work with us for 4-5 months.\r\n\r\nSo here my point is you invest for 4-5 months and enjoy the top page ranking and see the real organic traffic.\r\n\r\nPricing are most affordable one, pricing is based on number of keywords you want to optimize. It starts from $100\r\n\r\nIf you are interested then please reply us your best contact number and time so that we can call you to have a further discussion.\r\n\r\nI am sure it will get you more result than your Google AdWords.\r\n\r\n\r\n\r\nRegards\r\nKevin Cox',''),(6885,1,963,'11','Not yet, and I want to avoid the need for one in the future',''),(6886,1,963,'13','Google/Internet',''),(6887,1,963,'4','9am – 11am',''),(6888,1,964,'6.3','Eric Jones',''),(6889,1,964,'2','ericjonesmyemail@gmail.com',''),(6890,1,964,'3','(555) 555-1212',''),(6891,1,964,'5','My name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6892,1,964,'11','Yes, and I want to avoid it if possible',''),(6893,1,964,'13','Friend/family who was/is a patient',''),(6894,1,964,'4','1pm – 3pm',''),(6895,1,965,'6.3','Mike Hailey',''),(6896,1,965,'2','no-replyPl@gmail.com',''),(6897,1,965,'3','(100) 378-3250',''),(6898,1,965,'5','Hi there \r\n \r\nI Just checked your drfields.com ranks and saw that your site is trending down for some time. \r\n \r\nIf you are looking for a trend reversal, we have the right solution for you \r\n \r\nWe are offering affordable Content Marketing plans with humanly written SEO content \r\n \r\nFor more information, please check our offers \r\nhttps://www.digital-x-press.com/product/content-marketing/ \r\n \r\nThanks and regards \r\nMike Hailey',''),(6899,1,965,'11','Not yet, and I want to avoid the need for one in the future',''),(6900,1,965,'13','Friend/family who was/is a patient',''),(6901,1,965,'4','Anytime',''),(6902,1,966,'6.3','Eric Jones',''),(6903,1,966,'2','ericjonesmyemail@gmail.com',''),(6904,1,966,'3','(555) 555-1212',''),(6905,1,966,'5','Cool website!\r\n\r\nMy name_s Eric, and I just found your site - drfields.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you_re doing is pretty cool.\r\n \r\nBut if you don_t mind me asking _ after someone like me stumbles across drfields.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI_m guessing some, but I also bet you_d like more_ studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere_s a thought _ what if there was an easy way for every visitor to _raise their hand_ to get a phone call from you INSTANTLY_ the second they hit your site and said, _call me now._\r\n\r\nYou can _\r\n  \r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nThat_s why we built out our new SMS Text With Lead feature_ because once you_ve captured the visitor_s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities _ even if you don_t close a deal then and there, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nWouldn_t that be cool?\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6906,1,966,'11','Yes, and I want to avoid it if possible',''),(6907,1,966,'13','Facebook',''),(6908,1,966,'4','11am – 1pm',''),(6909,1,967,'6.3','ArthurPep',''),(6910,1,967,'2','dsetti@yandex.com',''),(6911,1,967,'3','(746) 135-6700',''),(6912,1,967,'5','[url=https://proxyspace.seo-hunter.com]4g lte proxy info[/url]',''),(6913,1,967,'11','Not yet, and I want to avoid the need for one in the future',''),(6914,1,967,'13','YouTube',''),(6915,1,967,'4','Anytime',''),(6916,1,968,'6.3','AntonioPonge',''),(6917,1,968,'2','antonio201201@gmail.com',''),(6918,1,968,'3','(474) 220-8514',''),(6919,1,968,'5','Hello, \r\n \r\nWarez music  https://0daymusic.org/ for DJs that gives you full access to exclusive electronic music. \r\n \r\n0day music team.',''),(6920,1,968,'11','Not yet, and I want to avoid the need for one in the future',''),(6921,1,968,'13','Another healthcare website',''),(6922,1,968,'4','Anytime',''),(6923,1,969,'6.3','Eric Jones',''),(6924,1,969,'2','ericjonesmyemail@gmail.com',''),(6925,1,969,'3','(555) 555-1212',''),(6926,1,969,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6927,1,969,'11','Yes, and I want to avoid it if possible',''),(6928,1,969,'13','Referred by my doctor/provider',''),(6929,1,969,'4','3pm – 5pm',''),(6930,1,970,'6.3','barbara foss',''),(6931,1,970,'2','bfoss2@maine.rr.com',''),(6932,1,970,'3','(207) 934-4133',''),(6933,1,970,'5','I am searching in Maine area for Prolotherapy.  I understand you have an amazing practice.   My purpose here is to introduce you, if you do not already know of Lifewave patches that allow our own body to produce coper peptide and healthy stem cells and more    by biophotomodulation,  No drugs.  pleas review this short video and let me know if you would like to purchase on a trial 90 day money back guarantee.\r\nMy life’s work has always been to help others as a holestic practitioner and this has been my passion addition.  This phototherapy is found nowhere else that produces stem cells without thousands of dollars for therapy! \r\nvery INSIGHTFUL SHORT VIDEO About LIFEWAVE:   Go here after clicking link \r\nhttps://lifewave.com/bfoss2maine\r\n    “About Us”     “About Lifewave”:    Lifewave | Elevate, Activate, Regenerate   and then BUY   Patches.\r\n\r\n\r\nLife Wave Patches: 15 years ago, Founder and Biologist, David Schmidt made Energy Patches for US Navy Seals initially and then incorporated the Energy Patch into weight loss. They worked so well, athletes caught on, including Serena Williams and Olympic athletes. The extraordinary X39 patches were introduced January 2019 to produce healthy stem cells.',''),(6934,1,970,'11','Not yet, and I want to avoid the need for one in the future',''),(6935,1,970,'13','Friend/family who was/is a patient',''),(6936,1,970,'4','Anytime',''),(6937,1,971,'6.3','Anthony Arnou',''),(6938,1,971,'2','anthony_arnou@yahoo.com',''),(6939,1,971,'3','(424) 299-1714',''),(6940,1,971,'5','I had ACL reconstruction surgery and would like to speed the healing through PRP treatment.',''),(6941,1,971,'11','Not yet, and I want to avoid the need for one in the future',''),(6942,1,971,'13','Google/Internet',''),(6943,1,971,'4','Anytime',''),(6944,1,972,'6.3','RiomondStarl',''),(6945,1,972,'2','iliah.trifonovgce@mail.ru',''),(6946,1,972,'3','(322) 603-8007',''),(6947,1,972,'5','[url=https://nuruelite.evenweb.com/]Как Создать Блог Который Зарабатывает 2390 в Месяц 2021[/url] \r\n \r\nSome employers want to get the basics out of the way quickly. You might also want to consult your physician before undergoing reflexology. They don\'t want to waste anyone\'s time. People will tell you that you are wasting your time. The job interview is your time to shine. Try to use appropriate terminology in the interview. Although coconut oil is recommended by some people for ringworm, the treatment you use will depend on its location on your body and how serious it is, per the CDC. Reducing muscle tension will result to both physical and mental relaxation because it reduces the negative health effects of chronic stress, enabling the body to heal and relax. This treatment improves posture, relaxation, and releases muscle tension and stress. This gives you a variety of treatment options at the touch of a button. Asking about perks in the wrong way could prove disastrous. Don\'t clam up. Everyone has varying degrees of shyness, but you need to talk about your employment experiences concisely and in an interesting way. The key is to learn from both experiences.\r\nNightshades for several months. As a result, the interviewee starts talking because they figure there\'s something wrong with the answer they have just given. Some interviews have been painful and disastrous. These can help him or her determine if you have a kidney problem. It can also help you in court should that situation arise. Women who wear tight tops that accentuate their cleavage to a job interview can kiss the job goodbye, according to a survey. A job interview is not a casual conversation between friends in bar. Conversely, don\'t ramble, even when there\'s a pause in the conversation. Even if your interviewer swears, don\'t get comfortable and swear, too. Rubbing your nose, even if it itches, could mean you\'re dishonest. If the interviewer gives you the silent treatment after you answered a question, shut your pie hole and show confidence in your previous answer. Just give enough detail to answer the question.\r\nWe adamantly refused the idea at first but Jonas was the one that convinced us it was right. Add eliminated foods back into your diet, one at a time, every four days. Others believe that foods from the nightshade family, such as tomatoes, potatoes, and peppers, aggravate their condition, although others don\'t notice any connection. If you think certain foods play a role in your arthritis symptoms, it is important to put them to the test. Ample amounts of tissue-building minerals in your daily diet will keep bones healthy and may help prevent bone spurs, a common complication of arthritis. This painful and debilitating joint disease is usually either classified as osteoarthritis (OA) or rheumatoid arthritis (RA). Horsetail\'s cornucopia of minerals, including silicon, may nourish joint cartilage. For a more contemporary twist on Halloween, give a nod to NASCAR and continue to the next page to outfit your little Dale or Danica in full racing style -- including a customized car to trick-or-treat in! Daily Mail. \"How a little too much cleavage can cost you a job interview.\" Sept. It took 5 months to build at a cost of $1 million and is equipped with waterfalls, fountains and a 15-foot (4.5-meter) waterslide.\r\nDandruff while bringing out the natural oils in the dog\'s fur. Move out of his space. It is important to get the maximum out of each massage session that you get. The CBD used in our massage is sourced from Colorado, Organic and THC free. Undercover officers offered masseuses money in exchange for sexual acts at a West 103rd Street massage parlor. Instead, it is a highly formal exchange where profanity is verboten. U.S. News. World Report. S. News. World Report. To borrow from John Lennon, you may say IвЂ™m a dreamer, but IвЂ™m not the only one, and I write for the dreamers of the world. In some instances, however, heat may aggravate a joint that\'s already \"hot\" from inflammation, as is sometimes the case with rheumatoid arthritis. What most people don\'t realize, however, is that there are natural herbal remedies that help relieve the pain of arthritis associated with getting older. A deficiency of essential mineralsmay be one of the causes of arthritis. What was one drop rule?',''),(6948,1,972,'11','Not yet, and I want to avoid the need for one in the future',''),(6949,1,972,'13','Another healthcare website',''),(6950,1,972,'4','Anytime',''),(6951,1,973,'6.3','Adam Cancellieri',''),(6952,1,973,'2','adc@vegfresh.com',''),(6953,1,973,'3','(310) 508-1560',''),(6954,1,973,'5','My right hip has nerve pain from Piriformis syndrome. Have you ever administered a PRP for this issue?',''),(6955,1,973,'11','Not yet, and I want to avoid the need for one in the future',''),(6956,1,973,'13','Friend/family who was/is a patient',''),(6957,1,973,'4','Anytime',''),(6958,1,974,'6.3','Honey Grace Lacson',''),(6959,1,974,'2','yourdomainguru.honey11@gmail.com',''),(6960,1,974,'3','(321) 654-0987',''),(6961,1,974,'5','Hello, my name is Honey Grace from TDS. We have a domain that is currently on sale that you might be interested in - MDDC.net\r\n \r\nAnytime someone types MDDC, MDDC Online, or any other phrase with these keywords into their browser, your site could be the first they see!\r\n\r\nThe internet is the most efficient way to acquire new customers\r\n\r\nAvg Google Search Results for this domain is: 1,890,000\r\nYou can easily redirect all the traffic this domain gets to your current site!\r\n\r\nEstiBot.com appraises this domain at $2,400. \r\n\r\nPriced at only $998 for a limited time! If interested please go to MDDC.net and select Buy Now, or purchase directly at  GoDaddy.   \r\nAct Fast! First person to select Buy Now gets it!  \r\n\r\nThank you very much for your time.\r\nBest Regards,\r\nHoney Grace Lacson',''),(6962,1,974,'11','Not yet, and I want to avoid the need for one in the future',''),(6963,1,974,'13','Google/Internet',''),(6964,1,974,'4','Anytime',''),(6965,1,975,'6.3','Gavin Janz',''),(6966,1,975,'2','gavinjanz@yahoo.com',''),(6967,1,975,'3','(310) 490-0546',''),(6968,1,975,'5','Last March I injured my knee playing basketball. Soon after I was prescribed an mri in which I found out I had a strained acl and a slight tear in my miniscus. Yet after many months of physical therapy that pain has yet to go away and I cannot currently run or play any sports to do with running. I am 17 years of age.',''),(6969,1,975,'11','Not yet, and I want to avoid the need for one in the future',''),(6970,1,975,'13','Google/Internet',''),(6971,1,975,'4','3pm – 5pm',''),(6972,1,976,'6.3','Eric Jones',''),(6973,1,976,'2','ericjonesmyemail@gmail.com',''),(6974,1,976,'3','(555) 555-1212',''),(6975,1,976,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6976,1,976,'11','Yes, and I want to avoid it if possible',''),(6977,1,976,'13','I am a current patient/was a patient previously',''),(6978,1,976,'4','1pm – 3pm',''),(6979,1,977,'6.3','WilliamJer',''),(6980,1,977,'2','no.reply.smife@gmail.com',''),(6981,1,977,'3','(503) 052-7224',''),(6982,1,977,'5','Gооd dаy!  drfields.com \r\n \r\nDid yоu knоw thаt it is pоssiblе tо sеnd аppеаl соmplеtеly lеgit? \r\nWе prеsеntаtiоn а nеw lеgаl mеthоd оf sеnding prоpоsаl thrоugh fееdbасk fоrms. Suсh fоrms аrе lосаtеd оn mаny sitеs. \r\nWhеn suсh соmmеrсiаl оffеrs аrе sеnt, nо pеrsоnаl dаtа is usеd, аnd mеssаgеs аrе sеnt tо fоrms spесifiсаlly dеsignеd tо rесеivе mеssаgеs аnd аppеаls. \r\nаlsо, mеssаgеs sеnt thrоugh fееdbасk Fоrms dо nоt gеt intо spаm bесаusе suсh mеssаgеs аrе соnsidеrеd impоrtаnt. \r\nWе оffеr yоu tо tеst оur sеrviсе fоr frее. Wе will sеnd up tо 50,000 mеssаgеs fоr yоu. \r\nThе соst оf sеnding оnе milliоn mеssаgеs is 49 USD. \r\n \r\nThis оffеr is сrеаtеd аutоmаtiсаlly. Plеаsе usе thе соntасt dеtаils bеlоw tо соntасt us. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat. \r\nno.reply.Jer@gmail.com',''),(6983,1,977,'11','Not yet, and I want to avoid the need for one in the future',''),(6984,1,977,'13','Another healthcare website',''),(6985,1,977,'4','Anytime',''),(6986,1,978,'6.3','Donaldpralp',''),(6987,1,978,'2','donelleej13ter@outlook.com',''),(6988,1,978,'3','(206) 452-3803',''),(6989,1,978,'5','Привет нашел классный сайт где можно найти много полезной финансовой информации <a href=https://litani.ru/>litani.ru</a>',''),(6990,1,978,'11','Not yet, and I want to avoid the need for one in the future',''),(6991,1,978,'13','I am a current patient/was a patient previously',''),(6992,1,978,'4','Anytime',''),(6993,1,979,'6.3','Eric Jones',''),(6994,1,979,'2','ericjonesmyemail@gmail.com',''),(6995,1,979,'3','(555) 555-1212',''),(6996,1,979,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(6997,1,979,'11','Yes, and I want to avoid it if possible',''),(6998,1,979,'13','Another healthcare website',''),(6999,1,979,'4','9am – 11am',''),(7000,1,980,'6.3','Eric Jones',''),(7001,1,980,'2','ericjonesmyemail@gmail.com',''),(7002,1,980,'3','(555) 555-1212',''),(7003,1,980,'5','Hey there, I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE http://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7004,1,980,'11','Yes, and I want to avoid it if possible',''),(7005,1,980,'13','Referred by my doctor/provider',''),(7006,1,980,'4','3pm – 5pm',''),(7007,1,981,'6.3','Eric Jones',''),(7008,1,981,'2','ericjonesmyemail@gmail.com',''),(7009,1,981,'3','(555) 555-1212',''),(7010,1,981,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7011,1,981,'11','Yes, and I want to avoid it if possible',''),(7012,1,981,'13','I am a current patient/was a patient previously',''),(7013,1,981,'4','3pm – 5pm',''),(7014,1,982,'6.3','Eric Jones',''),(7015,1,982,'2','ericjonesmyemail@gmail.com',''),(7016,1,982,'3','(555) 555-1212',''),(7017,1,982,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7018,1,982,'11','Yes, and I want to avoid it if possible',''),(7019,1,982,'13','YouTube',''),(7020,1,982,'4','1pm – 3pm',''),(7021,1,983,'6.3','Eric Jones',''),(7022,1,983,'2','ericjonesmyemail@gmail.com',''),(7023,1,983,'3','(555) 555-1212',''),(7024,1,983,'5','Hey, this is Eric and I ran across drfields.com a few minutes ago.\r\n\r\nLooks great_ but now what?\r\n\r\nBy that I mean, when someone like me finds your website _ either through Search or just bouncing around _ what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment.\r\n\r\nHere_s an idea_\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site_\r\n \r\nYou can _\r\n  \r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou_ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don_t close a deal right away, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nPretty sweet _ AND effective.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7025,1,983,'11','Yes, and I want to avoid it if possible',''),(7026,1,983,'13','Facebook',''),(7027,1,983,'4','1pm – 3pm',''),(7028,1,984,'6.3','Mike Davidson',''),(7029,1,984,'2','no-replyPl@gmail.com',''),(7030,1,984,'3','(500) 078-8044',''),(7031,1,984,'5','Greetings \r\n \r\nThis is Mike Davidson\r\n \r\nLet me show you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your drfields.com SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Davidson\r\n \r\nmike@strictlydigital.net',''),(7032,1,984,'11','Not yet, and I want to avoid the need for one in the future',''),(7033,1,984,'13','YouTube',''),(7034,1,984,'4','Anytime',''),(7035,1,985,'6.3','Eric Jones',''),(7036,1,985,'2','ericjonesmyemail@gmail.com',''),(7037,1,985,'3','(555) 555-1212',''),(7038,1,985,'5','Hey, this is Eric and I ran across drfields.com a few minutes ago.\r\n\r\nLooks great_ but now what?\r\n\r\nBy that I mean, when someone like me finds your website _ either through Search or just bouncing around _ what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment.\r\n\r\nHere_s an idea_\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site_\r\n \r\nYou can _\r\n  \r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou_ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don_t close a deal right away, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nPretty sweet _ AND effective.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7039,1,985,'11','Yes, and I want to avoid it if possible',''),(7040,1,985,'13','Friend/family who was/is a patient',''),(7041,1,985,'4','1pm – 3pm',''),(7042,1,986,'6.3','Eric Jones',''),(7043,1,986,'2','ericjonesmyemail@gmail.com',''),(7044,1,986,'3','(555) 555-1212',''),(7045,1,986,'5','Hey there, I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7046,1,986,'11','Yes, and I want to avoid it if possible',''),(7047,1,986,'13','I am a current patient/was a patient previously',''),(7048,1,986,'4','11am – 1pm',''),(7049,1,987,'6.3','Jennifer Obrien',''),(7050,1,987,'2','jennifer@dandydemo.com',''),(7051,1,987,'3','(949) 755-7782',''),(7052,1,987,'5','Would you like a solution to consistently remove unfair bad reviews from Google My Business, Yelp, Opentable and other review sites? At Dandy, our proprietary technology has helped companies like Holiday Inn and Wyndham remove over 21,000 negative reviews for their locations and consistently monitors and helps remove any new negative reviews that appear. \r\n\r\nDo you have 15 minutes for a call today? Schedule a Call Here: https://meetings.hubspot.com/dandy-/dandy-demo-numan  or for more information please visit our website: https://getdandy.com/more-information\r\n\r\nYou can also call me directly at (949) 755-7782.\r\n\r\nYou\'ll see a few case studies there - one of which we removed 60 negative reviews within the first 90 days for one of our customers. Remember, negative reviews can reduce traffic up to 15%. \r\n\r\nThank you,\r\n\r\n\r\nJennifer Obrien | Senior Review Specialist\r\nDandy, Inc. - Remove, Prevent & Capture\r\nOffice (949) 755-7782\r\n9891 Irvine Center Drive, Suite #200, Irvine, CA 92618\r\n\r\nUnsubscribe Now',''),(7053,1,987,'11','Not yet, and I want to avoid the need for one in the future',''),(7054,1,987,'13','Google/Internet',''),(7055,1,987,'4','1pm – 3pm',''),(7056,1,988,'6.3','Jameshuh',''),(7057,1,988,'2','izooomrud@outlook.com',''),(7058,1,988,'3','(324) 158-7273',''),(7059,1,988,'5','[b]aRIA Currency[/b] - next generation Proof of Stake consensus, a Super Fast peer 2 peer Electronic Cash System with a very low transaction fee. Be your own bank with full control of your digital assets. Or just hold for passive income. \r\n \r\nOn our server you can study our project in more detail, be the first to know the news of the project and its promotions, and we also have: \r\n \r\n[b]BOUNTY[/b] program - complete simple tasks, support the project, get rewarded!; \r\n[b]quiz[/b] - answer simple questions about the project and get prizes; \r\n[b]ARIUM[/b] game - play the game, earn game currency and exchange for real ARIA coins; \r\n[b]aRIA COMMUNITY COLLECTIONS[/b] - become an investor and get any card from the collection for free. \r\n \r\n[b][url=https://discord.gg/GtpaREquVv]Join us[/url][/b], there is a lot of interesting things ahead \r\nhttps://discord.gg/GtpaREquVv \r\n \r\n[b][i]Did you miss 2007 with bitcoin? Don\'t miss your chance with aRIA today![/i][/b] \r\n[img]https://i.imgur.com/EXhp2gt.png[/img]',''),(7060,1,988,'11','Not yet, and I want to avoid the need for one in the future',''),(7061,1,988,'13','Another healthcare website',''),(7062,1,988,'4','Anytime',''),(7063,1,989,'6.3','John Bartlett',''),(7064,1,989,'2','john@system4-losangeleswest.com',''),(7065,1,989,'3','(424) 377-2767',''),(7066,1,989,'5','Are you interested in receiving a professional janitorial or disinfection quote for your business?\r\n\r\nI’d like to provide a strategy that will take care of all your facility needs, along with excellent communication and customer service.\r\n\r\nJust send me a quick reply and I’d be happy to schedule a site visit and give you a complimentary, no-obligation quote.\r\n\r\nWishing you Happy Holidays and a blessed New Year!\r\n\r\nRegards,\r\nJohn\r\n\r\nJohn Bartlett\r\nOwner\r\nSystem4 Facility Services\r\n(424) 377-2767\r\njohn@system4-losangeleswest.com\r\n\r\nPlease respond with \"stop\" to opt out.',''),(7067,1,989,'11','Not yet, and I want to avoid the need for one in the future',''),(7068,1,989,'13','Google/Internet',''),(7069,1,989,'4','Anytime',''),(7070,1,990,'6.3','Tomoxign',''),(7071,1,990,'2','tniklos@yandex.com',''),(7072,1,990,'3','(230) 058-5063',''),(7073,1,990,'5','[url=https://megaremont.pro/restavratsiya-vann-blagoveschensk]restoration of the bath coating[/url]',''),(7074,1,990,'11','Not yet, and I want to avoid the need for one in the future',''),(7075,1,990,'13','Friend/family who was/is a patient',''),(7076,1,990,'4','Anytime',''),(7077,1,991,'6.3','Eric Jones',''),(7078,1,991,'2','ericjonesmyemail@gmail.com',''),(7079,1,991,'3','(555) 555-1212',''),(7080,1,991,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7081,1,991,'11','Yes, and I want to avoid it if possible',''),(7082,1,991,'13','Facebook',''),(7083,1,991,'4','11am – 1pm',''),(7084,1,992,'6.3','Eric Jones',''),(7085,1,992,'2','ericjonesmyemail@gmail.com',''),(7086,1,992,'3','(555) 555-1212',''),(7087,1,992,'5','Cool website!\r\n\r\nMy name_s Eric, and I just found your site - drfields.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you_re doing is pretty cool.\r\n \r\nBut if you don_t mind me asking _ after someone like me stumbles across drfields.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI_m guessing some, but I also bet you_d like more_ studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere_s a thought _ what if there was an easy way for every visitor to _raise their hand_ to get a phone call from you INSTANTLY_ the second they hit your site and said, _call me now._\r\n\r\nYou can _\r\n  \r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nThat_s why we built out our new SMS Text With Lead feature_ because once you_ve captured the visitor_s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities _ even if you don_t close a deal then and there, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nWouldn_t that be cool?\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7088,1,992,'11','Yes, and I want to avoid it if possible',''),(7089,1,992,'13','Referred by my doctor/provider',''),(7090,1,992,'4','9am – 11am',''),(7091,1,993,'6.3','Eric Jones',''),(7092,1,993,'2','ericjonesmyemail@gmail.com',''),(7093,1,993,'3','(555) 555-1212',''),(7094,1,993,'5','Hey there, I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7095,1,993,'11','Yes, and I want to avoid it if possible',''),(7096,1,993,'13','Referred by my doctor/provider',''),(7097,1,993,'4','1pm – 3pm',''),(7098,1,994,'6.3','datafastproxiespx01',''),(7099,1,994,'2','datafastpx@gmail.com',''),(7100,1,994,'3','(654) 688-0002',''),(7101,1,994,'5','DataFast Proxies, Definitive Solution in IPv6 Proxy to Solve CAPTCHA, reCAPTCHA, funCAPTCHA! \r\nIPv6 Proxy for XEvil 4, XEvil 5, XEvil Beta 6, CAPMONSTER 2! \r\n \r\n- High Speed ​​IPv6 Proxy \r\n- Virgin IPv6 proxy \r\n- Anonymous IPv6 proxy \r\n- Rotating IPv6 Proxy (configurable) \r\n- Static IPv6 proxy (configurable) \r\n- 24 Hour IPv6 Proxy \r\n- IPv6 Proxy (Uptime 99.9%) \r\n \r\nDataFast Proxies | Definitive Solution in IPv6 Proxy! \r\nhttps://datafastproxies.com/ \r\n \r\nContact: \r\nhttps://datafastproxies.com/contact/',''),(7102,1,994,'11','Not yet, and I want to avoid the need for one in the future',''),(7103,1,994,'13','Another healthcare website',''),(7104,1,994,'4','Anytime',''),(7105,1,995,'6.3','Ashleyfrure',''),(7106,1,995,'2','tthfttr@yandex.com',''),(7107,1,995,'3','(062) 663-2661',''),(7108,1,995,'5','В 1990-х и 2000-х годах целый ряд производств в городе прекратил существование из-за сложной экономической ситуации[8][10]. К концу 2010-х Челябинск имеет серьёзные экологические проблемы , в частности, почти ежедневное загрязнение воздуха, что является одной из причин оттока населения в другие регионы страны[11] . Челябинск также испытывает серьёзные трудности в хозяйственной и экономической сферах, что проявляется в деградировавших дорожной сети и общественном транспорте , а также в отсутствии городского благоустройства и архитектуры . Тем не менее, Челябинск является одним из крупнейших культурных, экономических, деловых и промышленных центров Урала, где промышленность составляет 38 % от валового муниципального продукта[12] . \r\n \r\n[url=https://mir74.ru/obschestvo/28608-v-chelyabinske-v-pyatietazhnom-obschezhitii-proizoshlo-obrushenie-perekrytiy.html]гагарина 53 обвал челябинск[/url]\r\n[url=https://mir74.ru/25942-uchenye-tominskiy-gok-ostavit-chelyabinsk-bez-pitevoy-vody.html]гок челябинск[/url]\r\n[url=https://mir74.ru/26682-gde-pokatatsya-na-konkah-v-prazdniki.html]каток в парке пушкина челябинск часы работы[/url]\r\n[url=https://mir74.ru/troll.html]троллейбусные маршруты челябинска[/url]\r\n[url=https://mir74.ru/25750-gde-otdohnut-v-zharu-plyazhi-chelyabinska.html]где можно купаться[/url]\r\n \r\n \r\n \r\n \r\n[b]Театр оперы и балета имени М. В. Глинки[/b] \r\n \r\nРазвитие музыкальной культуры и художественно-эстетическое воспитание населения лежит на могучих, натренированных плечах Челябинского государственного академического театра оперы и балета имени М. В. Глинки, вернее на его четырех столпах — оркестре, опере, балете и хоре. \r\n \r\n[url=https://mir74.ru/avtobus.html]городской транспорт челябинска расписание[/url]\r\n[url=https://mir74.ru/cam/]видеокамеры в челябинске онлайн смотреть[/url]\r\n[url=https://mir74.ru/]74новости в челябинске[/url]\r\n[url=https://mir74.ru/marshrutki.html]маршрутки челябинск[/url]\r\n[url=https://mir74.ru/tv]телепрограмма на сегодня[/url]',''),(7109,1,995,'11','Not yet, and I want to avoid the need for one in the future',''),(7110,1,995,'13','Friend/family who was/is a patient',''),(7111,1,995,'4','Anytime',''),(7112,1,996,'6.3','Eric Jones',''),(7113,1,996,'2','ericjonesmyemail@gmail.com',''),(7114,1,996,'3','(555) 555-1212',''),(7115,1,996,'5','Hey, my name_s Eric and for just a second, imagine this_\r\n\r\n- Someone does a search and winds up at drfields.com.\r\n\r\n- They hang out for a minute to check it out.  _I_m interested_ but_ maybe__\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line _ you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn_t really your fault _ it happens a LOT _ studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know right then and there _ enabling you to call that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation_ so even if you don_t close a deal then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7116,1,996,'11','Yes, and I want to avoid it if possible',''),(7117,1,996,'13','Referred by my doctor/provider',''),(7118,1,996,'4','11am – 1pm',''),(7119,1,997,'6.3','Shirley Burton',''),(7120,1,997,'2','shirleyburton671@gmail.com',''),(7121,1,997,'3','(408) 585-5364',''),(7122,1,997,'5','Finest Cleaners specializes in providing janitorial services.  Would you be open to a free janitorial estimate from our company?',''),(7123,1,997,'11','Not yet, and I want to avoid the need for one in the future',''),(7124,1,997,'4','Anytime',''),(7125,1,998,'6.3','Ashleyfrure',''),(7126,1,998,'2','tthfttr@yandex.com',''),(7127,1,998,'3','(611) 228-3636',''),(7128,1,998,'5','Основанный в 1736 году как крепость, Челябинск к XIX веку стал одним из крупнейших торговых центров Урала, а к концу века и всей России в связи с появлением в 1892 году железнодорожного сообщения города с Москвой[8] . В связи с активным строительством промышленных предприятий в Челябинске в годы первых пятилеток, а затем и эвакуацией заводов во время Великой Отечественной войны, город стал одним из крупнейших в СССР промышленных центров. Из-за интенсивного производства в городе танков и других боевых машин в военный период Челябинску в 2015 году присвоили звание города трудовой доблести и славы[9], а сам город в народе получил название «Танкоград» . \r\n \r\n[url=https://mir74.ru/cam/]камеры онлайн челябинск блюхера[/url]\r\n[url=https://mir74.ru/biznes/28184-v-centre-chelyabinska-postroyat-neboskreb-s-pentahusom-na-kryshe-za-15-mlrd-rub.html]что планируют построить на труда что будут строить челябинск 2018[/url]\r\n[url=https://mir74.ru/auto/28540-ne-uspeli-sostavit-raspisanie-v-chelyabinske-ne-budut-otmenyat-tramvai-v-vyhodnye.html]отменили трамваи в челябинске[/url]\r\n[url=https://mir74.ru/]челябинск74.ру[/url]\r\n[url=https://mir74.ru/19838-chinovniki-miassa-popytalis-zapisatsya-k-vrachu-po-telefonu-ne-udalos-poslali-vseh.html]запись к врачу миасс гб 4[/url]\r\n \r\n \r\n \r\n \r\n[b]Алое поле[/b] \r\n \r\n«Место встречи — Алое поле», — эта фраза вряд ли вызовет недоумение у жителя Челябинска. Правда, раньше оно носило другие имена: Ярмарочная площадь, Александровская площадь, площадь имени В. И. Ленина. Раньше здесь проходили ярмарки, а сейчас это сквер, по запутанным дорожкам которого любят прогуливаться горожане. \r\n \r\n[url=https://mir74.ru/?newsid=800]киршин челябинский рабочий[/url]\r\n[url=https://mir74.ru/]челябинск[/url]\r\n[url=https://mir74.ru/obschestvo/28608-v-chelyabinske-v-pyatietazhnom-obschezhitii-proizoshlo-obrushenie-perekrytiy.html]камеры челябинск гибдд[/url]\r\n[url=https://mir74.ru/23525-avtovokzal-v-sinegore-vnov-otkroetsya-11-marta.html]автовокзал челябинск синегорье[/url]\r\n[url=https://mir74.ru/16394-na-yuzhnom-urale-vo-vremya-pozhara-pogibli-deti-3.html]пос.красный тал[/url]',''),(7129,1,998,'11','Not yet, and I want to avoid the need for one in the future',''),(7130,1,998,'13','YouTube',''),(7131,1,998,'4','Anytime',''),(7132,1,999,'6.3','Kristin Merrill',''),(7133,1,999,'2','u2kmerrill@gmail.com',''),(7134,1,999,'3','(818) 298-5548',''),(7135,1,999,'5','Hello, I have cervical instability and was hoping to get prolotherapy in my cervical neck and was curious if you do the shot in the neck?',''),(7136,1,999,'11','Not yet, and I want to avoid the need for one in the future',''),(7137,1,999,'13','Google/Internet',''),(7138,1,999,'4','11am – 1pm',''),(7139,1,1000,'6.3','Eric Jones',''),(7140,1,1000,'2','ericjonesmyemail@gmail.com',''),(7141,1,1000,'3','(555) 555-1212',''),(7142,1,1000,'5','Hi, my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nTalk With Web Visitor _ CLICK HERE https://boostleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7143,1,1000,'11','Yes, and I want to avoid it if possible',''),(7144,1,1000,'13','Friend/family who was/is a patient',''),(7145,1,1000,'4','1pm – 3pm',''),(7146,1,1001,'6.3','AnikaSl',''),(7147,1,1001,'2','anikaSl@mondmema.tk',''),(7148,1,1001,'3','(365) 625-7224',''),(7149,1,1001,'5','Hellоǃ\r\nРerhapѕ my mеѕѕagе iѕ too sрecіfiс.\r\nВut mу oldеr ѕistеr fоund a wоndеrful man here and they have a grеаt rеlationѕhip, but whаt аbоut me?\r\nI аm 28 уеars оld, Anіka, frоm thе Czеch Republic, knоw Εnglish languаge аlso\r\nАnd... bettеr tо ѕау it іmmediatelу. Ι am bіѕexuаl. I аm not ϳeаlоus of another wоman... esреcіallу іf wе mаke love tоgethеr.\r\nΑh уеѕ, I cook vеry tastуǃ аnd I lоvе not оnlу cоok ;))\r\nIm real gіrl and lооking for ѕeriouѕ and hot relatiоnshір...\r\nAnywау, уоu сan fіnd mу profile herе: http://cmominar.ml/item-91503/',''),(7150,1,1001,'11','Not yet, and I want to avoid the need for one in the future',''),(7151,1,1001,'13','I am a current patient/was a patient previously',''),(7152,1,1001,'4','Anytime',''),(7153,1,1002,'6.3','Erika Gates',''),(7154,1,1002,'2','erikagates01@gmail.com',''),(7155,1,1002,'3','(408) 585-5364',''),(7156,1,1002,'5','Exceptional Cleaners specializes in providing janitorial services.  Would you be open to a free janitorial estimate from our company?',''),(7157,1,1002,'11','Not yet, and I want to avoid the need for one in the future',''),(7158,1,1002,'13','Google/Internet',''),(7159,1,1002,'4','9am – 11am',''),(7160,1,1003,'6.3','Jon Housman',''),(7161,1,1003,'2','jshousman@gmail.com',''),(7162,1,1003,'3','(617) 512-0228',''),(7163,1,1003,'5','Left upper bicep/shoulder',''),(7164,1,1003,'11','Yes, and I want to avoid it if possible',''),(7165,1,1003,'13','Google/Internet',''),(7166,1,1003,'4','Anytime',''),(7167,1,1004,'6.3','Eric Jones',''),(7168,1,1004,'2','ericjonesmyemail@gmail.com',''),(7169,1,1004,'3','(555) 555-1212',''),(7170,1,1004,'5','My name_s Eric and I just found your site drfields.com.\r\n\r\nIt_s got a lot going for it, but here_s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor _ CLICK HERE https://boostleadgeneration.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nAnd once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation_ and if they don_t take you up on your offer then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment. Don_t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7171,1,1004,'11','Yes, and I want to avoid it if possible',''),(7172,1,1004,'13','Facebook',''),(7173,1,1004,'4','1pm – 3pm',''),(7174,1,1005,'6.3','Eric Jones',''),(7175,1,1005,'2','ericjonesmyemail@gmail.com',''),(7176,1,1005,'3','(555) 555-1212',''),(7177,1,1005,'5','Hi, my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nTalk With Web Visitor _ CLICK HERE http://boostleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7178,1,1005,'11','Yes, and I want to avoid it if possible',''),(7179,1,1005,'13','Another healthcare website',''),(7180,1,1005,'4','11am – 1pm',''),(7181,1,1006,'6.3','Lisa Walker',''),(7182,1,1006,'2','lisa.walker@jobdreamteam.com',''),(7183,1,1006,'3','(616) 343-0069',''),(7184,1,1006,'5','Greetings!\r\n\r\nWould you be interested in having me write a guest article for your website? I\'d like to give a video marketing tutorial to small business owners.\r\n\r\nI believe that such a guide would be beneficial to your readers, as video marketing is becoming increasingly important as businesses establish their online and social media presence.\r\n\r\nI\'m eager to start writing, so please let me know if my proposed website consent piques your interest.\r\n\r\nThank you for taking the time to read this,\r\nLisa Walker\r\njobdreamteam.com\r\n\r\nP.S. Not interested in my emails? Please respond and let me know. If you’re interested in a free article on a topic other than my initial offer, be sure to reach out so we can come up with an idea you love.',''),(7185,1,1006,'11','Not yet, and I want to avoid the need for one in the future',''),(7186,1,1006,'13','Google/Internet',''),(7187,1,1006,'4','9am – 11am',''),(7188,1,1007,'6.3','Wen wen Huang',''),(7189,1,1007,'2','wwhvet@aol.com',''),(7190,1,1007,'3','(909) 463-8879',''),(7191,1,1007,'5','Tendinitis left wrist and trigger finger right thumb',''),(7192,1,1007,'11','Not yet, and I want to avoid the need for one in the future',''),(7193,1,1007,'13','Referred by my doctor/provider',''),(7194,1,1007,'4','Anytime',''),(7195,1,1008,'6.3','Matt Anzardo',''),(7196,1,1008,'2','mdanzardo@gmail.com',''),(7197,1,1008,'3','(626) 340-7105',''),(7198,1,1008,'5','Current concern is regarding cervical instability. Dealing with neck pain, dizziness, poor blood flow to head, turning head increases symptoms. I have worked a desk job for 8 years, and was rear ended in a car accident in June 2021. I would like to be assessed to see if I am a good candidate for prolotherapy.',''),(7199,1,1008,'11','Not yet, and I want to avoid the need for one in the future',''),(7200,1,1008,'13','Google/Internet',''),(7201,1,1008,'4','Anytime',''),(7202,1,1009,'6.3','BillyGex',''),(7203,1,1009,'2','dmcdavid@fnbne.com',''),(7204,1,1009,'3','(781) 860-2600',''),(7205,1,1009,'5','Wow You Win !!! \r\n \r\nhttps://bit.ly/3In7OZv',''),(7206,1,1009,'11','Not yet, and I want to avoid the need for one in the future',''),(7207,1,1009,'13','Friend/family who was/is a patient',''),(7208,1,1009,'4','Anytime',''),(7209,1,1010,'6.3','Eric Jones',''),(7210,1,1010,'2','ericjonesmyemail@gmail.com',''),(7211,1,1010,'3','(555) 555-1212',''),(7212,1,1010,'5','Hey, my name_s Eric and for just a second, imagine this_\r\n\r\n- Someone does a search and winds up at drfields.com.\r\n\r\n- They hang out for a minute to check it out.  _I_m interested_ but_ maybe__\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line _ you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn_t really your fault _ it happens a LOT _ studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know right then and there _ enabling you to call that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation_ so even if you don_t close a deal then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7213,1,1010,'11','Yes, and I want to avoid it if possible',''),(7214,1,1010,'13','Google/Internet',''),(7215,1,1010,'4','11am – 1pm',''),(7216,1,1011,'6.3','Eric Jones',''),(7217,1,1011,'2','ericjonesmyemail@gmail.com',''),(7218,1,1011,'3','(555) 555-1212',''),(7219,1,1011,'5','Cool website!\r\n\r\nMy name_s Eric, and I just found your site - drfields.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you_re doing is pretty cool.\r\n \r\nBut if you don_t mind me asking _ after someone like me stumbles across drfields.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI_m guessing some, but I also bet you_d like more_ studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere_s a thought _ what if there was an easy way for every visitor to _raise their hand_ to get a phone call from you INSTANTLY_ the second they hit your site and said, _call me now._\r\n\r\nYou can _\r\n  \r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nThat_s why we built out our new SMS Text With Lead feature_ because once you_ve captured the visitor_s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities _ even if you don_t close a deal then and there, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nWouldn_t that be cool?\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7220,1,1011,'11','Yes, and I want to avoid it if possible',''),(7221,1,1011,'13','Referred by my doctor/provider',''),(7222,1,1011,'4','3pm – 5pm',''),(7223,1,1012,'6.3','Mike Hawkins',''),(7224,1,1012,'2','no-replyPl@gmail.com',''),(7225,1,1012,'3','(172) 881-7420',''),(7226,1,1012,'5','Hi there \r\n \r\nI Just checked your drfields.com ranks and saw that your site is trending down for some time. \r\n \r\nIf you are looking for a trend reversal, we have the right solution for you \r\n \r\nWe are offering affordable Content Marketing plans with humanly written SEO content \r\n \r\nFor more information, please check our offers \r\nhttps://www.digital-x-press.com/product/content-marketing/ \r\n \r\nThanks and regards \r\nMike Hawkins',''),(7227,1,1012,'11','Not yet, and I want to avoid the need for one in the future',''),(7228,1,1012,'13','Friend/family who was/is a patient',''),(7229,1,1012,'4','Anytime',''),(7230,1,1013,'6.3','Andrey98Lup',''),(7231,1,1013,'2','g.o.lov.i.n.a.n.d.re.y19.17@gmail.com',''),(7232,1,1013,'3','(614) 406-0557','');
INSERT INTO `wp_gf_entry_meta` VALUES (7233,1,1013,'5','>>>  [url=https://viagranix.com]site web [/url]  <<< \r\n \r\n***** \r\n- 24/7 Customer Support \r\n- No Prescription Required \r\n- Top Quality Medications \r\n- Worldwide Shipping \r\n- Bargain Prices \r\n***** \r\n \r\n \r\nWe are found by keywords: \r\nsafe place to order online rx for viagra\r\ncanadian sildenafil\r\nsildenafil buy online\r\nneed prescription for generic viagra\r\nbuy viagra no prescription online\r\n \r\nhttps://viagranix.com \r\nsildenafil citrate tablets recommended sssdosage\r\ngeneric viagra for sale in the usa\r\neffect of sildenafil in women symptoms\r\ndoes sildenafil show up on drug test\r\nviagra 100mg coupons\r\nwhere to buy viagra without persciption\r\ngood rx sildenafil coupon',''),(7234,1,1013,'11','Not yet, and I want to avoid the need for one in the future',''),(7235,1,1013,'13','Google/Internet',''),(7236,1,1013,'4','Anytime',''),(7237,1,1014,'6.3','Shirley Burton',''),(7238,1,1014,'2','shirleyburton671@gmail.com',''),(7239,1,1014,'3','(408) 585-5364',''),(7240,1,1014,'5','I submitted a webform recently and wanted to follow up. Finest Cleaners specializes in providing janitorial services. Would you be open to a free janitorial estimate from our company?',''),(7241,1,1014,'11','Not yet, and I want to avoid the need for one in the future',''),(7242,1,1014,'13','Another healthcare website',''),(7243,1,1014,'4','Anytime',''),(7244,1,1015,'6.3','Erika Gates',''),(7245,1,1015,'2','erikagates01@gmail.com',''),(7246,1,1015,'3','(408) 585-5364',''),(7247,1,1015,'5','I submitted a webform recently and wanted to follow up. Exceptional Cleaners specializes in providing janitorial services. Would you be open to a free janitorial estimate from our company?',''),(7248,1,1015,'11','Not yet, and I want to avoid the need for one in the future',''),(7249,1,1015,'13','Google/Internet',''),(7250,1,1015,'4','9am – 11am',''),(7251,1,1016,'6.3','dr randy martin OMD',''),(7252,1,1016,'2','drrandymartin@gmail.com',''),(7253,1,1016,'3','(310) 663-8972',''),(7254,1,1016,'5','various pains in hip/back/knee\r\n\r\nwant stem cell',''),(7255,1,1016,'11','Yes, and I want to avoid it if possible',''),(7256,1,1016,'13','Google/Internet',''),(7257,1,1016,'4','Anytime',''),(7258,1,1017,'6.3','CatherinaEr',''),(7259,1,1017,'2','catherinaEr@mondmema.tk',''),(7260,1,1017,'3','(537) 278-7402',''),(7261,1,1017,'5','Romania',''),(7262,1,1017,'11','Not yet, and I want to avoid the need for one in the future',''),(7263,1,1017,'13','Google/Internet',''),(7264,1,1017,'4','Anytime',''),(7265,1,1018,'6.3','Eric Jones',''),(7266,1,1018,'2','ericjonesmyemail@gmail.com',''),(7267,1,1018,'3','(555) 555-1212',''),(7268,1,1018,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7269,1,1018,'11','Yes, and I want to avoid it if possible',''),(7270,1,1018,'13','Google/Internet',''),(7271,1,1018,'4','1pm – 3pm',''),(7272,1,1019,'6.3','Lori Ann Farmer',''),(7273,1,1019,'2','loriannfarmer@gmail.com',''),(7274,1,1019,'3','(907) 202-3731',''),(7275,1,1019,'5','Cci and other connective tissue concerns, such as eds and chiari',''),(7276,1,1019,'11','Not yet, and I want to avoid the need for one in the future',''),(7277,1,1019,'13','Google/Internet',''),(7278,1,1019,'4','Anytime',''),(7279,1,1020,'6.3','maximlloa',''),(7280,1,1020,'2','m.a.ximg.ot.o.st.e.ine.r.wil.l.iya.m.46.3.6@gmail.com',''),(7281,1,1020,'3','(750) 254-3665',''),(7282,1,1020,'11','Not yet, and I want to avoid the need for one in the future',''),(7283,1,1020,'13','Facebook',''),(7284,1,1020,'4','Anytime',''),(7285,1,1021,'6.3','Michael',''),(7286,1,1021,'2','mdimascolo@me.com',''),(7287,1,1021,'3','(401) 639-4326',''),(7288,1,1021,'5','I have issues with both my knees , my ankle  and  my feet.',''),(7289,1,1021,'11','Not yet, and I want to avoid the need for one in the future',''),(7290,1,1021,'13','Google/Internet',''),(7291,1,1021,'4','9am – 11am',''),(7292,1,1022,'6.3','dip',''),(7293,1,1022,'2','veronikapikos@yandex.ru',''),(7294,1,1022,'3','(072) 425-5552',''),(7295,1,1022,'5','Elvas',''),(7296,1,1022,'11','https://female-ru.ru/',''),(7297,1,1022,'13','Another healthcare website',''),(7298,1,1022,'4','Anytime',''),(7299,1,1023,'6.3','Eric Jones',''),(7300,1,1023,'2','ericjonesmyemail@gmail.com',''),(7301,1,1023,'3','(555) 555-1212',''),(7302,1,1023,'5','Hi, my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nTalk With Web Visitor _ CLICK HERE https://boostleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7303,1,1023,'11','Yes, and I want to avoid it if possible',''),(7304,1,1023,'13','Another healthcare website',''),(7305,1,1023,'4','1pm – 3pm',''),(7306,1,1024,'6.3','Eric Jones',''),(7307,1,1024,'2','ericjonesmyemail@gmail.com',''),(7308,1,1024,'3','(555) 555-1212',''),(7309,1,1024,'5','Hello, my name_s Eric and I just ran across your website at drfields.com...\r\n\r\nI found it after a quick search, so your SEO_s working out_\r\n\r\nContent looks pretty good_\r\n\r\nOne thing_s missing though_\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds _ 7 out of 10 disappear almost instantly, Surf Surf Surf_ then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to TALK with them - literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try_ it could be huge for your business.\r\n\r\nPlus, now that you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto_ which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7310,1,1024,'11','Yes, and I want to avoid it if possible',''),(7311,1,1024,'13','Facebook',''),(7312,1,1024,'4','1pm – 3pm',''),(7313,1,1025,'6.3','Eric Jones',''),(7314,1,1025,'2','ericjonesmyemail@gmail.com',''),(7315,1,1025,'3','(555) 555-1212',''),(7316,1,1025,'5','Hello, my name_s Eric and I just ran across your website at drfields.com...\r\n\r\nI found it after a quick search, so your SEO_s working out_\r\n\r\nContent looks pretty good_\r\n\r\nOne thing_s missing though_\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds _ 7 out of 10 disappear almost instantly, Surf Surf Surf_ then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to TALK with them - literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try_ it could be huge for your business.\r\n\r\nPlus, now that you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto_ which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7317,1,1025,'11','Yes, and I want to avoid it if possible',''),(7318,1,1025,'13','YouTube',''),(7319,1,1025,'4','11am – 1pm',''),(7320,1,1026,'6.3','Eric Jones',''),(7321,1,1026,'2','ericjonesmyemail@gmail.com',''),(7322,1,1026,'3','(555) 555-1212',''),(7323,1,1026,'5','Hey there, I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE http://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7324,1,1026,'11','Yes, and I want to avoid it if possible',''),(7325,1,1026,'13','Facebook',''),(7326,1,1026,'4','9am – 11am',''),(7327,1,1027,'6.3','SuzanneZef',''),(7328,1,1027,'2','ffvcebond@gordpizza.ru',''),(7329,1,1027,'3','(011) 087-4783',''),(7330,1,1027,'5','[url=https://vongcasinos.com/]online casino[/url] \r\n<a href=\"https://vongcasinos.com/\">casino</a> \r\n[url=https://royalcasinoflash.com/]casino game[/url] \r\n<a href=\"https://royalcasinoflash.com/\">online casinos</a>',''),(7331,1,1027,'11','Not yet, and I want to avoid the need for one in the future',''),(7332,1,1027,'13','YouTube',''),(7333,1,1027,'4','Anytime',''),(7334,1,1028,'6.3','Eric Jones',''),(7335,1,1028,'2','ericjonesmyemail@gmail.com',''),(7336,1,1028,'3','(555) 555-1212',''),(7337,1,1028,'5','Hi, my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nTalk With Web Visitor _ CLICK HERE http://boostleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7338,1,1028,'11','Yes, and I want to avoid it if possible',''),(7339,1,1028,'13','I am a current patient/was a patient previously',''),(7340,1,1028,'4','3pm – 5pm',''),(7341,1,1029,'6.3','Judy Guardino',''),(7342,1,1029,'2','jguardino@intero.com',''),(7343,1,1029,'3','(408) 472-2340',''),(7344,1,1029,'5','Boyfriend has 4 herniated discs.  Is helping this a possibility?',''),(7345,1,1029,'11','Not yet, and I want to avoid the need for one in the future',''),(7346,1,1029,'13','Friend/family who was/is a patient',''),(7347,1,1029,'4','Anytime',''),(7348,1,1030,'6.3','Eric Jones',''),(7349,1,1030,'2','ericjonesmyemail@gmail.com',''),(7350,1,1030,'3','(555) 555-1212',''),(7351,1,1030,'5','My name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7352,1,1030,'11','Yes, and I want to avoid it if possible',''),(7353,1,1030,'13','Another healthcare website',''),(7354,1,1030,'4','3pm – 5pm',''),(7355,1,1031,'6.3','Rachele Hong',''),(7356,1,1031,'2','hong.rachele@gmail.com',''),(7357,1,1031,'3','(360) 261-1226',''),(7358,1,1031,'5','Gain access to over 7,900 niche targeted databases of businesses operating in the United States of America - Over 5 Million Business Contact Details\r\n\r\nOur massive B2B database contains approximately 7,900 individual Excel files with contact details for businesses operating across almost all business sectors in the United States of America. Instead of just purchasing B2B sales leads in one database, you can actually pick and choose what type of businesses that you want to contact on the basis of business sector.\r\n\r\nSample: https://creativebeartech.com/product/massive-usa-b2b-database-of-all-industries-1/',''),(7359,1,1031,'11','Yes, and I want to avoid it if possible',''),(7360,1,1031,'13','Facebook',''),(7361,1,1031,'4','1pm – 3pm',''),(7362,1,1032,'6.3','Eric Jones',''),(7363,1,1032,'2','ericjonesmyemail@gmail.com',''),(7364,1,1032,'3','(555) 555-1212',''),(7365,1,1032,'5','My name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7366,1,1032,'11','Yes, and I want to avoid it if possible',''),(7367,1,1032,'13','I am a current patient/was a patient previously',''),(7368,1,1032,'4','11am – 1pm',''),(7369,1,1033,'6.3','DavidIteby',''),(7370,1,1033,'2','info@prefabricated-hangar.com',''),(7371,1,1033,'3','(008) 470-6787',''),(7372,1,1033,'5','Быстровозводимое ангары от производителя: [url=http://bystrovozvodimye-zdanija.ru/]https://bystrovozvodimye-zdanija.ru[/url] - строительство в короткие сроки по минимальной цене с вводов в эксплуатацию! \r\n[url=https://www.google.ru/url?q=http://bystrovozvodimye-zdanija-moskva.ru]https://www.google.ru/url?q=http://bystrovozvodimye-zdanija-moskva.ru[/url]',''),(7373,1,1033,'11','Not yet, and I want to avoid the need for one in the future',''),(7374,1,1033,'13','Facebook',''),(7375,1,1033,'4','Anytime',''),(7376,1,1034,'6.3','Kimberly Riddle',''),(7377,1,1034,'2','kriddle@netbyd.com',''),(7378,1,1034,'3','(209) 481-9205',''),(7379,1,1034,'5','I have a partial rotator cuff tear and am looking for an alternative to repair in lieu of surgery.',''),(7380,1,1034,'11','Yes, and I want to avoid it if possible',''),(7381,1,1034,'13','Google/Internet',''),(7382,1,1034,'4','Anytime',''),(7383,1,1035,'6.3','Eric Jones',''),(7384,1,1035,'2','ericjonesmyemail@gmail.com',''),(7385,1,1035,'3','(555) 555-1212',''),(7386,1,1035,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7387,1,1035,'11','Yes, and I want to avoid it if possible',''),(7388,1,1035,'13','Facebook',''),(7389,1,1035,'4','3pm – 5pm',''),(7390,1,1036,'6.3','Eric Jones',''),(7391,1,1036,'2','ericjonesmyemail@gmail.com',''),(7392,1,1036,'3','(555) 555-1212',''),(7393,1,1036,'5','Hello, my name_s Eric and I just ran across your website at drfields.com...\r\n\r\nI found it after a quick search, so your SEO_s working out_\r\n\r\nContent looks pretty good_\r\n\r\nOne thing_s missing though_\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds _ 7 out of 10 disappear almost instantly, Surf Surf Surf_ then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to TALK with them - literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try_ it could be huge for your business.\r\n\r\nPlus, now that you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto_ which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7394,1,1036,'11','Yes, and I want to avoid it if possible',''),(7395,1,1036,'13','I am a current patient/was a patient previously',''),(7396,1,1036,'4','1pm – 3pm',''),(7397,1,1037,'6.3','Eric Jones',''),(7398,1,1037,'2','ericjonesmyemail@gmail.com',''),(7399,1,1037,'3','(555) 555-1212',''),(7400,1,1037,'5','Hello, my name_s Eric and I just ran across your website at drfields.com...\r\n\r\nI found it after a quick search, so your SEO_s working out_\r\n\r\nContent looks pretty good_\r\n\r\nOne thing_s missing though_\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds _ 7 out of 10 disappear almost instantly, Surf Surf Surf_ then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to TALK with them - literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try_ it could be huge for your business.\r\n\r\nPlus, now that you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto_ which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7401,1,1037,'11','Yes, and I want to avoid it if possible',''),(7402,1,1037,'13','Another healthcare website',''),(7403,1,1037,'4','1pm – 3pm',''),(7404,1,1038,'6.3','Александр',''),(7405,1,1038,'2','xevilxrumerpro@gmail.com',''),(7406,1,1038,'3','(548) 015-1406',''),(7407,1,1038,'5','Приветсвую! \r\nЯ пишу с сайта drfields.com \r\n \r\nДля белого SEO не все готовы применять такие пакеты, \r\nно есть такие сайты, на которые только такой способ и применим. \r\n \r\nКто-то создаст сайта с фильмами  пиратского кино, и для них отсается только \r\nсерый способ продвижения. \r\n \r\nА кто-то проигрывает в выдаче ТОП-10 и делает \"Подарок для конкурента\" \r\n \r\nКому-то нужно нагрузить офис coll centra звонками, когда приезжает начальство, и это можно сделать. \r\n \r\nГлавное осорожнее с пакетом для своего сайта, могут понизить в выдаче, могут московские сайты забанить хостинг, \r\nа если сайт на конструкторе, то его и не перенести, считай потеряли сайта. \r\n \r\nА если домены по акции по 1 доллару, из зон zyz, online, store, shop и тд, то за пассивный спам банят домен, \r\nи если наш регистратор, то его не перенести к другому и домены потеряен. Много неприятностей можно словить из-за пассивного спама, \r\nтак про него и пишут в тех поддержке регистратора. \r\n \r\nСтоимость пакета в месяц - 10 000 руб \r\nВ него входят следующие программы \r\n \r\nXEvil 6.0 [Beta] + XAuth + XRumer 19.0.15 \r\nGSA Search Engine Ranker \r\nMoneyRobot \r\nXNEOLINKS \r\nGSA SEO Indexer \r\n \r\nПодробнее с ссылками на программы в гугл документе (можете спросить в самомо гугл документе, если будут вопросы) \r\nhttps://docs.google.com/spreadsheets/d/10E6UQT4riq7QTf28BTJgFYqxQ9tpZ8OfP0AW0STawQs/edit?usp=sharing \r\n \r\nПишите ответом на это письмо или в телеграмм (он в гугл документе) \r\n \r\nИ если не сложно, ответьте на это письмо, если не хотите писать, то просто пустым ответом. \r\nЕсли нужно удалить сайта из БД, то я то могу сделать. но понимаете же, что базы продаются, \r\nи значит ваш сайта есть в базе и все его используют.',''),(7408,1,1038,'11','Not yet, and I want to avoid the need for one in the future',''),(7409,1,1038,'13','Friend/family who was/is a patient',''),(7410,1,1038,'4','Anytime',''),(7411,1,1039,'6.3','Eric Jones',''),(7412,1,1039,'2','ericjonesmyemail@gmail.com',''),(7413,1,1039,'3','(555) 555-1212',''),(7414,1,1039,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7415,1,1039,'11','Yes, and I want to avoid it if possible',''),(7416,1,1039,'13','Another healthcare website',''),(7417,1,1039,'4','11am – 1pm',''),(7418,1,1040,'6.3','Eric Jones',''),(7419,1,1040,'2','ericjonesmyemail@gmail.com',''),(7420,1,1040,'3','(555) 555-1212',''),(7421,1,1040,'5','Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7422,1,1040,'11','Yes, and I want to avoid it if possible',''),(7423,1,1040,'13','Google/Internet',''),(7424,1,1040,'4','3pm – 5pm',''),(7425,1,1041,'6.3','Desmond Willows',''),(7426,1,1041,'2','Willows005@gmail.com',''),(7427,1,1041,'3','(805) 296-2031',''),(7428,1,1041,'5','Cervical instability that has created a host of problems.  Please help....',''),(7429,1,1041,'11','Not yet, and I want to avoid the need for one in the future',''),(7430,1,1041,'13','Google/Internet',''),(7431,1,1041,'4','Anytime',''),(7432,1,1042,'6.3','Katherine Lundy',''),(7433,1,1042,'2','katlundyskinandmakeup@gmail.com',''),(7434,1,1042,'3','(415) 328-4847',''),(7435,1,1042,'5','Pain on lower back through left butt check through left leg. Painful, keeps me up at night.',''),(7436,1,1042,'11','Not yet, and I want to avoid the need for one in the future',''),(7437,1,1042,'13','Google/Internet',''),(7438,1,1042,'4','Anytime',''),(7439,1,1043,'6.3','Nathanfox',''),(7440,1,1043,'2','dimapetrov107@hotmail.com',''),(7441,1,1043,'3','(206) 542-5527',''),(7442,1,1043,'5','If you were to survey which features were the most popular among slots players, we would pretty much be able to guarantee that [url=https://casino2202.blogspot.com/2022/10/slots-lv-casino-review-usa-friendly.html]free spins[/url] would be at the very top. There is nothing more satisfying than landing a ton of free spins and just sitting back and watching them reel in the wins. \r\nFind the best [url=https://casino2202.blogspot.com/2022/10/joe-fortune-casino-review-2022-top.html]online casinos[/url] USA to play games for real money. List of the top US Casinos that accept US players. United States\' leading gambling sites 2022 \r\n[url=https://casino2202.blogspot.com/2022/10/spin-palace-winners-top-wins-best-games.html]Spin Palace[/url] is your top destination for a safe and trusted online casino experience. Enjoy over 500 casino games in a secure, fair environment 24/7! \r\nWith [url=https://casino2202.blogspot.com/2022/11/slotslv-reviews-read-customer-service.html]Slotslv casino[/url] range of classic online casino games, you will feel like you’re in Atlantic City. Enjoy the best table games with a Risk-Free Play Bonus of up to $100 \r\n[url=]http://secure-casinos.com[/url]',''),(7443,1,1043,'11','Not yet, and I want to avoid the need for one in the future',''),(7444,1,1043,'13','Friend/family who was/is a patient',''),(7445,1,1043,'4','Anytime',''),(7446,1,1044,'6.3','Nathanfox',''),(7447,1,1044,'2','dimapetrov107@hotmail.com',''),(7448,1,1044,'3','(067) 506-1623',''),(7449,1,1044,'5','If you were to survey which features were the most popular among slots players, we would pretty much be able to guarantee that [url=https://casino2202.blogspot.com/2022/10/slots-lv-casino-review-usa-friendly.html]free spins[/url] would be at the very top. There is nothing more satisfying than landing a ton of free spins and just sitting back and watching them reel in the wins. \r\nFind the best [url=https://casino2202.blogspot.com/2022/10/joe-fortune-casino-review-2022-top.html]online casinos[/url] USA to play games for real money. List of the top US Casinos that accept US players. United States\' leading gambling sites 2022 \r\n[url=https://casino2202.blogspot.com/2022/10/spin-palace-winners-top-wins-best-games.html]Spin Palace[/url] is your top destination for a safe and trusted online casino experience. Enjoy over 500 casino games in a secure, fair environment 24/7! \r\nWith [url=https://casino2202.blogspot.com/2022/11/slotslv-reviews-read-customer-service.html]Slotslv casino[/url] range of classic online casino games, you will feel like you’re in Atlantic City. Enjoy the best table games with a Risk-Free Play Bonus of up to $100 \r\n[url=]http://secure-casinos.com[/url]',''),(7450,1,1044,'11','Not yet, and I want to avoid the need for one in the future',''),(7451,1,1044,'13','Another healthcare website',''),(7452,1,1044,'4','Anytime',''),(7453,1,1045,'6.3','PetarHok',''),(7454,1,1045,'2','spbetcas892@gmail.com',''),(7455,1,1045,'3','(573) 877-3045',''),(7456,1,1045,'5','Best onlіnе саsіno \r\nBіg bоnus аnd Frееsріns \r\nSpоrt bеttіng аnd pоkеr \r\n \r\ngo now https://tinyurl.com/3ma26aj7',''),(7457,1,1045,'11','Not yet, and I want to avoid the need for one in the future',''),(7458,1,1045,'13','Google/Internet',''),(7459,1,1045,'4','Anytime',''),(7460,1,1046,'6.3','Mariahow',''),(7461,1,1046,'2','mariahow@denpelatucarenn.tk',''),(7462,1,1046,'3','(818) 503-8065',''),(7463,1,1046,'5','Ηеlloǃ\r\nΙ aрolоgіze fоr thе ovеrlу ѕресіfіc meѕsagе.\r\nМy gіrlfrіend and Ι love еасh othеr. And we аrе all great.\r\nΒut... wе need a man.\r\nԜе аre 24 уeаrѕ old, from Romania, we аlѕo know english.\r\nԜе never get borеd! Αnd not only in tаlk...\r\nМy nаme iѕ Маriа, my prоfile іs hеrе: http://alverkaranzi.ml/itm-70489/',''),(7464,1,1046,'11','Not yet, and I want to avoid the need for one in the future',''),(7465,1,1046,'13','Another healthcare website',''),(7466,1,1046,'4','Anytime',''),(7467,1,1047,'6.3','kamyar  sadeghein',''),(7468,1,1047,'2','kamyarsad3@gmail.com',''),(7469,1,1047,'3','(818) 205-8949',''),(7470,1,1047,'5','back pain after antibiotics',''),(7471,1,1047,'11','Not yet, and I want to avoid the need for one in the future',''),(7472,1,1047,'13','Google/Internet',''),(7473,1,1047,'4','9am – 11am',''),(7474,1,1048,'6.3','Mike Jacobson',''),(7475,1,1048,'2','no-replyPl@gmail.com',''),(7476,1,1048,'3','(113) 125-0666',''),(7477,1,1048,'5','If you have a local business and want to rank it on google maps in a specific area then this service is for you. \r\n \r\nGoogle Map Stacking is one of the best ways to rank your GMB in a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike Jacobson\r\n \r\n \r\nPS: Want an all in one Local Plan that includes everything? \r\nhttps://www.speed-seo.net/product/local-seo-package/',''),(7478,1,1048,'11','Not yet, and I want to avoid the need for one in the future',''),(7479,1,1048,'13','Friend/family who was/is a patient',''),(7480,1,1048,'4','Anytime',''),(7481,1,1049,'6.3','Eric Jones',''),(7482,1,1049,'2','ericjonesmyemail@gmail.com',''),(7483,1,1049,'3','(555) 555-1212',''),(7484,1,1049,'5','Hey there, I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7485,1,1049,'11','Yes, and I want to avoid it if possible',''),(7486,1,1049,'13','I am a current patient/was a patient previously',''),(7487,1,1049,'4','1pm – 3pm',''),(7488,1,1050,'6.3','Eric Jones',''),(7489,1,1050,'2','ericjonesmyemail@gmail.com',''),(7490,1,1050,'3','(555) 555-1212',''),(7491,1,1050,'5','Hey there, I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7492,1,1050,'11','Yes, and I want to avoid it if possible',''),(7493,1,1050,'13','Facebook',''),(7494,1,1050,'4','11am – 1pm',''),(7495,1,1051,'6.3','Eric Jones',''),(7496,1,1051,'2','ericjonesmyemail@gmail.com',''),(7497,1,1051,'3','(555) 555-1212',''),(7498,1,1051,'5','Hey, this is Eric and I ran across drfields.com a few minutes ago.\r\n\r\nLooks great_ but now what?\r\n\r\nBy that I mean, when someone like me finds your website _ either through Search or just bouncing around _ what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment.\r\n\r\nHere_s an idea_\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site_\r\n \r\nYou can _\r\n  \r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou_ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don_t close a deal right away, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nPretty sweet _ AND effective.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7499,1,1051,'11','Yes, and I want to avoid it if possible',''),(7500,1,1051,'13','Referred by my doctor/provider',''),(7501,1,1051,'4','9am – 11am',''),(7502,1,1052,'6.3','Eric Jones',''),(7503,1,1052,'2','ericjonesmyemail@gmail.com',''),(7504,1,1052,'3','(555) 555-1212',''),(7505,1,1052,'5','Hi, Eric here with a quick thought about your website drfields.com...\r\n\r\nI_m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it _ it_s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere_s a solution for you_\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to talk with them literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business _ and because you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately_ and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7506,1,1052,'11','Yes, and I want to avoid it if possible',''),(7507,1,1052,'13','Friend/family who was/is a patient',''),(7508,1,1052,'4','9am – 11am',''),(7509,1,1053,'6.3','Irwin Teichman',''),(7510,1,1053,'2','ouspensky9@aol.com',''),(7511,1,1053,'3','(805) 701-4055',''),(7512,1,1053,'5','reduced space bilateral knees with tears.',''),(7513,1,1053,'11','Not yet, and I want to avoid the need for one in the future',''),(7514,1,1053,'13','Google/Internet',''),(7515,1,1053,'4','Anytime',''),(7516,1,1054,'6.3','Gloria',''),(7517,1,1054,'2','andradesc08@gmail.com',''),(7518,1,1054,'3','(805) 551-5270',''),(7519,1,1054,'5','I\'m asking for my husband. I\'m wondering if any of these treatments would help with mild osteonecrosis of the wrist (lunate). My husband had this confirmed with an MRI.',''),(7520,1,1054,'11','Yes, and I want to avoid it if possible',''),(7521,1,1054,'13','Another healthcare website',''),(7522,1,1054,'4','Anytime',''),(7523,1,1055,'6.3','dr.dennis brooks',''),(7524,1,1055,'2','dbrooks1234@comcast.net',''),(7525,1,1055,'3','(916) 782-4440',''),(7526,1,1055,'5','bone on bone lt.knee',''),(7527,1,1055,'11','Yes, and I want to avoid it if possible',''),(7528,1,1055,'13','Google/Internet',''),(7529,1,1055,'4','1pm – 3pm',''),(7530,1,1056,'6.3','John West',''),(7531,1,1056,'2','jdoubleu@mac.com',''),(7532,1,1056,'3','(310) 350-8098',''),(7533,1,1056,'5','Sore knees w/ arthritis developing. I\'ve been taking injections of Durolane along with Kenalog-40. Been going to my orthopedic doctor for about 10 years with this issue.',''),(7534,1,1056,'11','Not yet, and I want to avoid the need for one in the future',''),(7535,1,1056,'13','I am a current patient/was a patient previously',''),(7536,1,1056,'4','Anytime',''),(7537,1,1057,'6.3','Veronica Williams',''),(7538,1,1057,'2','amotivated1@yahoo.com',''),(7539,1,1057,'3','(310) 420-7664',''),(7540,1,1057,'5','Hips - Right hip arthritis.  Best call time is Friday midday.  Unavailable all day Thursday.',''),(7541,1,1057,'11','Yes, and I want to avoid it if possible',''),(7542,1,1057,'13','Google/Internet',''),(7543,1,1057,'4','9am – 11am',''),(7544,1,1058,'6.3','Eric Jones',''),(7545,1,1058,'2','ericjonesmyemail@gmail.com',''),(7546,1,1058,'3','(555) 555-1212',''),(7547,1,1058,'5','Hello, my name_s Eric and I just ran across your website at drfields.com...\r\n\r\nI found it after a quick search, so your SEO_s working out_\r\n\r\nContent looks pretty good_\r\n\r\nOne thing_s missing though_\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds _ 7 out of 10 disappear almost instantly, Surf Surf Surf_ then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to TALK with them - literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try_ it could be huge for your business.\r\n\r\nPlus, now that you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto_ which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7548,1,1058,'11','Yes, and I want to avoid it if possible',''),(7549,1,1058,'13','Another healthcare website',''),(7550,1,1058,'4','9am – 11am',''),(7551,1,1059,'6.3','Will Klopp',''),(7552,1,1059,'2','will.klopp@compass.com',''),(7553,1,1059,'3','(408) 483-2900',''),(7554,1,1059,'5','Recommended by Marv Anderson\r\n18 year old high level baseball player. Pain in shoulder area\r\n2 MRIs that show no structural damage\r\nHyper-mobile and pro baseball doctor says due to this hypermobility when throwing the shoulder rotates too far back and dislocates a bit on every throw with more than 65% effort. The shoulder is rotating out of the joint and back in with every effort and says that is what is causing the pain.\r\nDr also stated that my scapula area is very weak and that I should be put on a plan to improve posture and strengthen the scapula and other supporting muscles, etc.\r\nI have taken months off multiple times to rest/rehab and can\'t throw without pain if exerting more than 65% effort. Was throwing 92MPH and now pain when above 70MPH\r\nDr recommends surgery to \"tighten the labrum\" so it doesn\'t rotate too far and dislocate.\r\nI want to know if PRP/Prolo has a good probability of being able to tighten that area without surgery. \r\nI have already missed a year and a half and want to get back on the field.\r\n\r\nCan your PRP/prolo help me avoid surgery and get back on the field?\r\nIf so, how soon could we schedule the consult and begin the process?\r\nCan you recommend a rigorous, program to strengthen the scapula and surrounding areas to help achieve success? My son needs to know the importance of this and baseball dr said it likely will require consistency for the rest of his days.  \r\nCan I continue to work out (I don\'t do much bench press or overhead presses) and hit (hitting doesn\'t cause me any pain currently)\r\n\r\nPlease call as soon as possible. Thank you for your time and consideration 100!',''),(7555,1,1059,'11','Yes, and I want to avoid it if possible',''),(7556,1,1059,'13','Friend/family who was/is a patient',''),(7557,1,1059,'4','9am – 11am',''),(7558,1,1060,'6.3','Eric Jones',''),(7559,1,1060,'2','ericjonesmyemail@gmail.com',''),(7560,1,1060,'3','(555) 555-1212',''),(7561,1,1060,'5','Hi, Eric here with a quick thought about your website drfields.com...\r\n\r\nI_m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it _ it_s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere_s a solution for you_\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to talk with them literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business _ and because you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately_ and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7562,1,1060,'11','Yes, and I want to avoid it if possible',''),(7563,1,1060,'13','Friend/family who was/is a patient',''),(7564,1,1060,'4','11am – 1pm',''),(7565,1,1061,'6.3','John',''),(7566,1,1061,'2','jdhjohndol@gmail.com',''),(7567,1,1061,'3','(518) 926-8476',''),(7568,1,1061,'5','Looking at prolotherapy for degenerative low back condition',''),(7569,1,1061,'11','Not yet, and I want to avoid the need for one in the future',''),(7570,1,1061,'4','Anytime',''),(7571,1,1062,'6.3','John M Dolan',''),(7572,1,1062,'2','jdhjohndol@gmail.com',''),(7573,1,1062,'3','(518) 926-8476',''),(7574,1,1062,'5','Looking at prolotherapy for degenerative low back condition',''),(7575,1,1062,'11','Not yet, and I want to avoid the need for one in the future',''),(7576,1,1062,'4','Anytime',''),(7577,1,1063,'6.3','Mike Osborne',''),(7578,1,1063,'2','no-replyPl@gmail.com',''),(7579,1,1063,'3','(018) 100-4777',''),(7580,1,1063,'5','Hi there \r\n \r\nJust checked your drfields.com in MOZ and saw that you could use an authority boost. \r\n \r\nWith our service you will get a guaranteed Domain Authority score within just 3 months time. This will increase the organic visibility and strengthen your website authority, thus getting it stronger against G updates as well. \r\n \r\nFor more information, please check our offers \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nNEW: Semrush DA is now possible \r\nhttps://www.monkeydigital.co/semrush-da/ \r\n \r\nThanks and regards \r\nMike Osborne',''),(7581,1,1063,'11','Not yet, and I want to avoid the need for one in the future',''),(7582,1,1063,'13','Google/Internet',''),(7583,1,1063,'4','Anytime',''),(7584,1,1064,'6.3','Eric Jones',''),(7585,1,1064,'2','ericjonesmyemail@gmail.com',''),(7586,1,1064,'3','(555) 555-1212',''),(7587,1,1064,'5','Hi, my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nTalk With Web Visitor _ CLICK HERE http://boostleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7588,1,1064,'11','Yes, and I want to avoid it if possible',''),(7589,1,1064,'13','Referred by my doctor/provider',''),(7590,1,1064,'4','9am – 11am',''),(7591,1,1065,'6.3','Eric Jones',''),(7592,1,1065,'2','ericjonesmyemail@gmail.com',''),(7593,1,1065,'3','(555) 555-1212',''),(7594,1,1065,'5','Hey there, I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7595,1,1065,'11','Yes, and I want to avoid it if possible',''),(7596,1,1065,'13','YouTube',''),(7597,1,1065,'4','9am – 11am',''),(7598,1,1066,'6.3','Kathryn',''),(7599,1,1066,'2','kathryndferguson@gmail.com',''),(7600,1,1066,'3','(720) 690-3636',''),(7601,1,1066,'5','Hip issues and herniated disc',''),(7602,1,1066,'11','Not yet, and I want to avoid the need for one in the future',''),(7603,1,1066,'13','Friend/family who was/is a patient',''),(7604,1,1066,'4','Anytime',''),(7605,1,1067,'6.3','Carissa Wright',''),(7606,1,1067,'2','carissalili@gmail.com',''),(7607,1,1067,'3','(310) 987-1829',''),(7608,1,1067,'5','Chronic neck pain from herniated discs, 5+ years',''),(7609,1,1067,'11','Not yet, and I want to avoid the need for one in the future',''),(7610,1,1067,'13','Google/Internet',''),(7611,1,1067,'4','Anytime',''),(7612,1,1068,'6.3','Eric Jones',''),(7613,1,1068,'2','ericjonesmyemail@gmail.com',''),(7614,1,1068,'3','(555) 555-1212',''),(7615,1,1068,'5','Hi, my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nTalk With Web Visitor _ CLICK HERE https://boostleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7616,1,1068,'11','Yes, and I want to avoid it if possible',''),(7617,1,1068,'13','Referred by my doctor/provider',''),(7618,1,1068,'4','3pm – 5pm',''),(7619,1,1069,'6.3','Eric Jones',''),(7620,1,1069,'2','ericjonesmyemail@gmail.com',''),(7621,1,1069,'3','(555) 555-1212',''),(7622,1,1069,'5','Hi, my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nTalk With Web Visitor _ CLICK HERE https://boostleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7623,1,1069,'11','Yes, and I want to avoid it if possible',''),(7624,1,1069,'13','Google/Internet',''),(7625,1,1069,'4','11am – 1pm',''),(7626,1,1070,'6.3','Allan Holzman',''),(7627,1,1070,'2','allan.holzman@gmail.com',''),(7628,1,1070,'3','(310) 745-7407',''),(7629,1,1070,'5','My wife started.  writing music and lyrics on this project 13yrs ago and after a very long and winding road, TICKETS are available for a good time and lots of giggles., The Opening weekend is no longer available (given to press and family members) and you should know a little about the price breakdown.  Fridays - feb 17th, 25th and mar 3rd - are \"pay what you\'d like\" evenings.  Previews are half price and start feb 4th. It\'s at least a 6 week run.\r\nTICKETS + INFO: \r\nhttps://www.roguemachinetheatre.org/',''),(7630,1,1070,'11','Not yet, and I want to avoid the need for one in the future',''),(7631,1,1070,'4','Anytime',''),(7632,1,1071,'6.3','Eric Jones',''),(7633,1,1071,'2','ericjonesmyemail@gmail.com',''),(7634,1,1071,'3','(555) 555-1212',''),(7635,1,1071,'5','Hey, my name_s Eric and for just a second, imagine this_\r\n\r\n- Someone does a search and winds up at drfields.com.\r\n\r\n- They hang out for a minute to check it out.  _I_m interested_ but_ maybe__\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line _ you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn_t really your fault _ it happens a LOT _ studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know right then and there _ enabling you to call that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation_ so even if you don_t close a deal then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7636,1,1071,'11','Yes, and I want to avoid it if possible',''),(7637,1,1071,'13','Friend/family who was/is a patient',''),(7638,1,1071,'4','9am – 11am',''),(7639,1,1072,'6.3','Lara Harris',''),(7640,1,1072,'2','harrislara@aol.com',''),(7641,1,1072,'3','(213) 500-5272',''),(7642,1,1072,'5','Hi!  I have a rotator cuff injury.  The real pain is in the front of my shoulder.  MRI shows detached labrum.  Surgery has been suggested, but doesn\'t seem to guarantee problem will be resolved, and there is a lot of downtime.',''),(7643,1,1072,'11','Yes, and I want to avoid it if possible',''),(7644,1,1072,'13','Another healthcare website',''),(7645,1,1072,'4','3pm – 5pm',''),(7646,1,1073,'6.3','Eric Jones',''),(7647,1,1073,'2','ericjonesmyemail@gmail.com',''),(7648,1,1073,'3','(555) 555-1212',''),(7649,1,1073,'5','Hi, my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nTalk With Web Visitor is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nTalk With Web Visitor _ CLICK HERE https://boostleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7650,1,1073,'11','Yes, and I want to avoid it if possible',''),(7651,1,1073,'13','Google/Internet',''),(7652,1,1073,'4','11am – 1pm',''),(7653,1,1074,'6.3','Armen Baker',''),(7654,1,1074,'2','asbakkerr@gmail.com',''),(7655,1,1074,'3','(310) 463-0768',''),(7656,1,1074,'5','Hello \r\nIm 69 years old, on Medicare (Kaiser), scheduled left shoulder rotator cuff surgery in May. Right shoulder has tears as well and pops out if I\'m not careful. Saw a video on U Tube for stem cell injections for shoulder pain.  Your office is close to me. Can you help me?\r\nThank You',''),(7657,1,1074,'11','Yes, and I want to avoid it if possible',''),(7658,1,1074,'13','Google/Internet',''),(7659,1,1074,'4','Anytime',''),(7660,1,1075,'6.3','Rose Sire',''),(7661,1,1075,'2','Rosemariesire@firstteam.com',''),(7662,1,1075,'3','(714) 963-7080',''),(7663,1,1075,'5','Right Knee was replaced. Left knee is hurting quite a bit. I see Lional for phyical therphy and Bud Thompson said you might be ablle to help me.',''),(7664,1,1075,'11','Not yet, and I want to avoid the need for one in the future',''),(7665,1,1075,'13','Friend/family who was/is a patient',''),(7666,1,1075,'4','Anytime',''),(7667,1,1076,'6.3','Jessica Robert',''),(7668,1,1076,'2','jessicarobertjss@gmail.com',''),(7669,1,1076,'3','(201) 201-2012',''),(7670,1,1076,'5','Hi,\r\nI just visited your website and I was wondering if you would like to see my proposal of what I would suggest for your website. I would love the opportunity to show you our work. No commitment for future work, fine print or hidden anything- just an opportunity for you to see what some of our sites look like.\r\n\r\nI\'ll be happy to show you some of our work in your industry to give you some ideas. You\'ll then get to see one way in which your site might be redesigned to cater to the customers of today. That\'s it! Would that be ok to send? Thanks in advance!\r\n\r\nWarm Regards,\r\nJessica Robert',''),(7671,1,1076,'11','Not yet, and I want to avoid the need for one in the future',''),(7672,1,1076,'13','I am a current patient/was a patient previously',''),(7673,1,1076,'4','Anytime',''),(7674,1,1077,'6.3','Eric Jones',''),(7675,1,1077,'2','ericjonesmyemail@gmail.com',''),(7676,1,1077,'3','(555) 555-1212',''),(7677,1,1077,'5','My name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://boostleadgeneration.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7678,1,1077,'11','Yes, and I want to avoid it if possible',''),(7679,1,1077,'13','Friend/family who was/is a patient',''),(7680,1,1077,'4','3pm – 5pm',''),(7681,1,1078,'6.3','DelpeCog',''),(7682,1,1078,'2','faerqhwer@outlook.com',''),(7683,1,1078,'3','(363) 331-5212',''),(7684,1,1078,'5','I\'m out in nature right now and masturbating my pussy and rubbing my tits. Look at this https://xbebz.palatlaldate.com/c/da57dc555e50572d?s1=12179&s2=1471083&j1=1',''),(7685,1,1078,'11','Not yet, and I want to avoid the need for one in the future',''),(7686,1,1078,'13','Facebook',''),(7687,1,1078,'4','Anytime',''),(7688,1,1079,'6.3','Eric Jones',''),(7689,1,1079,'2','eric.jones.z.mail@gmail.com',''),(7690,1,1079,'3','(555) 555-1212',''),(7691,1,1079,'5','Hello drfields.com Administrator.\r\n\r\nMy name_s Eric and I just found your site drfields.com.\r\n\r\nIt_s got a lot going for it, but here_s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads _ CLICK HERE http://advanceleadgeneration.com for a live demo now.\r\n\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nAnd once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation_ and if they don_t take you up on your offer then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment. Don_t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7692,1,1079,'11','Yes, and I want to avoid it if possible',''),(7693,1,1079,'13','Another healthcare website',''),(7694,1,1079,'4','9am – 11am',''),(7695,1,1080,'6.3','Eric Jones',''),(7696,1,1080,'2','ericjonesmyemail@gmail.com',''),(7697,1,1080,'3','(555) 555-1212',''),(7698,1,1080,'5','Hello drfields.com Administrator! my name_s Eric and I just ran across your website at drfields.com...\r\n\r\nI found it after a quick search, so your SEO_s working out_\r\n\r\nContent looks pretty good_\r\n\r\nOne thing_s missing though_\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds _ 7 out of 10 disappear almost instantly, Surf Surf Surf_ then gone forever.\r\n\r\nI have the solution:\r\n\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to TALK with them - literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try_ it could be huge for your business.\r\n\r\nPlus, now that you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto_ which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7699,1,1080,'11','Yes, and I want to avoid it if possible',''),(7700,1,1080,'13','Another healthcare website',''),(7701,1,1080,'4','11am – 1pm',''),(7702,1,1081,'6.3','Mitchel Stockman',''),(7703,1,1081,'2','mitchel.stockman@gmail.com',''),(7704,1,1081,'3','(773) 316-7615',''),(7705,1,1081,'5','*INFO SERVICE EXPIRATION FOR drfields.com\r\n\r\nAttention: Accounts Payable / Domain Owner / Contact - Peter A. Fields, MD, DC \r\n\r\nYour Domain: www.drfields.com \r\nExpected Reply before: Feb 17, 2023.\r\n\r\nThis Notice for: www.drfields.com will expire on Feb 17, 2023. \r\n\r\n\r\n\r\n*For details and to make a payment for drfields.com services by credit card:\r\n\r\nVisit: https://register-collection.com/?web=drfields.com\r\n\r\n\r\n02172023050423773-316-7615',''),(7706,1,1081,'11','Yes, and I want to avoid it if possible',''),(7707,1,1081,'13','Facebook',''),(7708,1,1081,'4','9am – 11am',''),(7709,1,1082,'6.3','Raymondlof',''),(7710,1,1082,'2','renaldozara@econgate.com',''),(7711,1,1082,'3','(186) 132-2117',''),(7712,1,1082,'5','Get millions immediate leads for your firm to ignite your marketing. Make use of the lists an unrestricted quantity of times. We have been supplying firms and market research firms with data since 2012. [url=https://www.mailbanger.com]Mailbanger',''),(7713,1,1082,'11','Not yet, and I want to avoid the need for one in the future',''),(7714,1,1082,'13','Google/Internet',''),(7715,1,1082,'4','Anytime',''),(7716,1,1083,'6.3','Eric Jones',''),(7717,1,1083,'2','ericjonesmyemail@gmail.com',''),(7718,1,1083,'3','(555) 555-1212',''),(7719,1,1083,'5','Hi drfields.com Admin. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7720,1,1083,'11','Yes, and I want to avoid it if possible',''),(7721,1,1083,'13','YouTube',''),(7722,1,1083,'4','9am – 11am',''),(7723,1,1084,'6.3','VladilenGox',''),(7724,1,1084,'2','1992.vladilen78@mail.ru',''),(7725,1,1084,'3','(105) 413-8428',''),(7726,1,1084,'5','Здравствуйте, однополчане и однополчанки ! [url=http://mod-site.net/ru/userscat.shtml?l=e] \r\n \r\nМеханизированная \r\nполусухая стяжка полов[/url] , даже если она была уложена точно в соответствии с четкой инструкцией, с течением времени портится. Это неудивительно, ведь она принимает на себя колоссальные нагрузки от массы полового покрытия, предметов мебели, передвижения людей и прочих динамических влияний. В связи с чем для исключения тотальной потери ее эксплуатационных качеств периодически необходимо производить починку стяжки пола. О характеристиках стяжки важно узнать, когда вы ищите цены дома из легких стальных конструкций или прочих материалов. \r\n \r\nЧтобы иметь представление об уровне деформации поверхности, сначала надо полностью удалить прежнее покрытие, очистить пол от мусора, пыли и грязи. Далее следует определиться с типом повреждения и ремонта, который надо будет осуществить. \r\n \r\nМожет произойти один из нижеследующих случаев: \r\n \r\nГладкая поверхность имеет неглубокие ямки и мало трещин, повышен уровень возникновения пыли. Данные повреждения не опасны, они с легкостью устраняются при минимальной затрате времени и финансов. \r\nСтяжка расслаивается, поверхность сильно глубоко потрескалась в конкретных участках. Этот тип повреждений подлежит ремонту, однако необходимо будет применять специальные строительные растворы. \r\nПоверхность существенно искривлена, пол покрылся сильными трещинами. Ремонт повреждений подобной серьезности доступен только специалистам, владеющим соответственными навыками и оснащением.',''),(7727,1,1084,'11','Not yet, and I want to avoid the need for one in the future',''),(7728,1,1084,'13','YouTube',''),(7729,1,1084,'4','Anytime',''),(7730,1,1085,'6.3','Michele Cutrignelli',''),(7731,1,1085,'2','saradcutrignelli@gmail.com',''),(7732,1,1085,'3','(408) 607-6318',''),(7733,1,1085,'5','Lower back pain, MRI shows a bulging disc in L4 and L5. Been more than a year, and getting worse. I had to insist multiple times to get an MRI, and finally got it. I am in constant pain and only 19 years old. I am not sure how I injured it, maybe at work from lifting heavy things or from rock climbing, which I was just getting into, and can\'t do because of the pain. I don\'t want to use any heavy medication or have surgery. Kaiser\'s response was to get a cortisone or steroid shot. I don\'t want to treat the problem, I want to get rid of it. Our family friend, Marv Anderson, keeps recommending you. My parents think it\'s worth a try.',''),(7734,1,1085,'11','Not yet, and I want to avoid the need for one in the future',''),(7735,1,1085,'13','Friend/family who was/is a patient',''),(7736,1,1085,'4','Anytime',''),(7737,1,1086,'6.3','Bill',''),(7738,1,1086,'2','billgrasska@gmail.com',''),(7739,1,1086,'3','(310) 890-8283',''),(7740,1,1086,'5','Achilles injury been almost 8 months and not recovered',''),(7741,1,1086,'11','Not yet, and I want to avoid the need for one in the future',''),(7742,1,1086,'4','Anytime',''),(7743,1,1087,'6.3','Eric Jones',''),(7744,1,1087,'2','ericjonesmyemail@gmail.com',''),(7745,1,1087,'3','(555) 555-1212',''),(7746,1,1087,'5','Dear drfields.com Administrator. this is Eric and I ran across drfields.com a few minutes ago.\r\n\r\nLooks great_ but now what?\r\n\r\nBy that I mean, when someone like me finds your website _ either through Search or just bouncing around _ what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment.\r\n\r\nHere_s an idea_\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site_\r\n \r\nYou can _\r\n  \r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou_ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don_t close a deal right away, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nPretty sweet _ AND effective.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7747,1,1087,'11','Yes, and I want to avoid it if possible',''),(7748,1,1087,'13','YouTube',''),(7749,1,1087,'4','3pm – 5pm',''),(7750,1,1088,'6.3','Eric Jones',''),(7751,1,1088,'2','ericjonesmyemail@gmail.com',''),(7752,1,1088,'3','(555) 555-1212',''),(7753,1,1088,'5','Hello drfields.com Administrator. my name_s Eric and for just a second, imagine this_\r\n\r\n- Someone does a search and winds up at drfields.com.\r\n\r\n- They hang out for a minute to check it out.  _I_m interested_ but_ maybe__\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line _ you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn_t really your fault _ it happens a LOT _ studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know right then and there _ enabling you to call that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation_ so even if you don_t close a deal then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7754,1,1088,'11','Yes, and I want to avoid it if possible',''),(7755,1,1088,'13','Facebook',''),(7756,1,1088,'4','11am – 1pm',''),(7757,1,1089,'6.3','Eric Jones',''),(7758,1,1089,'2','ericjonesmyemail@gmail.com',''),(7759,1,1089,'3','(555) 555-1212',''),(7760,1,1089,'5','Hi drfields.com Webmaster. my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nWeb Visitors Into Leads _ CLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7761,1,1089,'11','Yes, and I want to avoid it if possible',''),(7762,1,1089,'13','I am a current patient/was a patient previously',''),(7763,1,1089,'4','3pm – 5pm',''),(7764,1,1090,'6.3','Eric Jones',''),(7765,1,1090,'2','ericjonesmyemail@gmail.com',''),(7766,1,1090,'3','(555) 555-1212',''),(7767,1,1090,'5','To the drfields.com Owner! I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7768,1,1090,'11','Yes, and I want to avoid it if possible',''),(7769,1,1090,'13','Facebook',''),(7770,1,1090,'4','9am – 11am',''),(7771,1,1091,'6.3','Eric Jones',''),(7772,1,1091,'2','ericjonesmyemail@gmail.com',''),(7773,1,1091,'3','(555) 555-1212',''),(7774,1,1091,'5','Hi drfields.com Webmaster. my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nWeb Visitors Into Leads _ CLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7775,1,1091,'11','Yes, and I want to avoid it if possible',''),(7776,1,1091,'13','Friend/family who was/is a patient',''),(7777,1,1091,'4','11am – 1pm',''),(7778,1,1092,'6.3','Eric Jones',''),(7779,1,1092,'2','ericjonesmyemail@gmail.com',''),(7780,1,1092,'3','(555) 555-1212',''),(7781,1,1092,'5','Hi drfields.com Admin! Eric here with a quick thought about your website drfields.com...\r\n\r\nI_m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it _ it_s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere_s a solution for you_\r\n\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to talk with them literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be huge for your business _ and because you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately_ and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7782,1,1092,'11','Yes, and I want to avoid it if possible',''),(7783,1,1092,'13','Referred by my doctor/provider',''),(7784,1,1092,'4','9am – 11am',''),(7785,1,1093,'6.3','Bridget',''),(7786,1,1093,'2','bridgethaas1@gmail.com',''),(7787,1,1093,'3','(503) 964-9590',''),(7788,1,1093,'5','I have thought for a while I might have instability. I was rear ended by a semi  truck in 2011 and it dislocated my tmj. I have had head/neck pain ever since. I have a spinal stimulator now. I also have Dysautonomia and gastroparesis. No surgeon has any interest at looking at possible ligament injury. I am currently in PT and he suggested he is pretty sure I have instability. Do you read X-rays/mri without a visit, but by virtual appt? I am in Florida.\r\nThank you!',''),(7789,1,1093,'11','Not yet, and I want to avoid the need for one in the future',''),(7790,1,1093,'13','Google/Internet',''),(7791,1,1093,'4','Anytime',''),(7792,1,1094,'6.3','GlWeb Studio',''),(7793,1,1094,'2','shopmarketplus@gmail.com',''),(7794,1,1094,'3','(601) 535-3220',''),(7795,1,1094,'5','Приватные УКРАИНСКИЕ прокси в одни руки: \r\n \r\n- тип (http/socks 5); \r\n- оператор (Vodafone UA) - cкорость 25-35 мб.\\с в зависимости от загруженности моб. сети; \r\n- большой пулл IP-адрессов; \r\n- работают без VPN; \r\n- ротация IP по ссылке и по интервалу времени; \r\n- без ограничений на скорость; \r\n- трафик (БЕЗЛИМИТ); \r\n \r\nПОДДЕРЖКА 24/7: Ответим на все интересующие вас вопросы. \r\nЦена: \r\nБесплатно на сутки; \r\n- 12 у.е. 7 дней; \r\n- 18 у.е. 14 дней; \r\n- 30 у.е. месяц; \r\nПопробовать прокси БЕСПЛАТНО - тестовый период сутки. \r\n \r\nОбращайтесь в [url=https://api.whatsapp.com/send?phone=380995526000]WhatsApp[/url] или [url=https://t.me/t0995526000]Телеграмм[/url].',''),(7796,1,1094,'11','Not yet, and I want to avoid the need for one in the future',''),(7797,1,1094,'13','YouTube',''),(7798,1,1094,'4','Anytime',''),(7799,1,1095,'6.3','Eric Jones',''),(7800,1,1095,'2','ericjonesmyemail@gmail.com',''),(7801,1,1095,'3','(555) 555-1212',''),(7802,1,1095,'5','Hello drfields.com Owner. my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nWeb Visitors Into Leads _ CLICK HERE http://advanceleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7803,1,1095,'11','Yes, and I want to avoid it if possible',''),(7804,1,1095,'13','Another healthcare website',''),(7805,1,1095,'4','1pm – 3pm',''),(7806,1,1096,'6.3','Cassie Jean',''),(7807,1,1096,'2','cassieseoexpert@gmail.com',''),(7808,1,1096,'3','(201) 201-2012',''),(7809,1,1096,'5','Hi there!\r\nYour website\'s design is absolutely brilliant. The visuals really enhance your message and the content compels action. I have forwarded it to a few of my contacts who I think could benefit from your services.\r\n\r\nWhen I was looking at your website, though, I noticed a slight issue re: your SEO that I thought you might not be aware of. It is a relatively simple fix. Would you like me to send you an SEO proposal with a price so that you can share it with your web team or ? If this is a priority, I can also get on a call.\r\nRegards,\r\nCassie Jean',''),(7810,1,1096,'11','Not yet, and I want to avoid the need for one in the future',''),(7811,1,1096,'13','Friend/family who was/is a patient',''),(7812,1,1096,'4','Anytime',''),(7813,1,1097,'6.3','Cassie Jean',''),(7814,1,1097,'2','cassieseoexpert@gmail.com',''),(7815,1,1097,'3','(201) 201-2012',''),(7816,1,1097,'5','Hi there!\r\nYour website\'s design is absolutely brilliant. The visuals really enhance your message and the content compels action. I have forwarded it to a few of my contacts who I think could benefit from your services.\r\n\r\nWhen I was looking at your website, though, I noticed a slight issue re: your SEO that I thought you might not be aware of. It is a relatively simple fix. Would you like me to send you an SEO proposal with a price so that you can share it with your web team or ? If this is a priority, I can also get on a call.\r\nRegards,\r\nCassie Jean',''),(7817,1,1097,'11','Not yet, and I want to avoid the need for one in the future',''),(7818,1,1097,'13','I am a current patient/was a patient previously',''),(7819,1,1097,'4','Anytime',''),(7820,1,1098,'6.3','Craigbiody',''),(7821,1,1098,'2','maks.chistyakov.71@list.ru',''),(7822,1,1098,'3','(750) 448-7406',''),(7823,1,1098,'5','Et necessitatibus molestias aliquid dolore ut sapiente. Quia voluptatem quaerat veniam quia sed. Autem repellendus dolor nisi et necessitatibus perspiciatis quasi. Excepturi id officia dolorem quis molestias laborum eaque. \r\n[url=https://k1web.cc]2krn.at[/url] \r\nEt et fugit dolorem facilis delectus minima excepturi non. Sit quia quis est et ducimus dolore. Quod vel rem a praesentium labore. \r\n \r\nEveniet earum optio ab rerum commodi nisi alias. Et animi consectetur et eum est. Commodi voluptatem repudiandae assumenda culpa perferendis sit quae. Asperiores excepturi porro ducimus est voluptas nihil quo. Esse tempora sit ipsa aut dolor. \r\n \r\nUt accusamus sit illum ipsa nam enim. Ex excepturi molestias enim et ea magni. Molestiae voluptates fugiat et corrupti. Officiis totam ad a aut doloribus. Consequatur odio soluta quo. \r\nv2tor.at \r\nhttps://kr2web.at',''),(7824,1,1098,'11','Not yet, and I want to avoid the need for one in the future',''),(7825,1,1098,'13','Google/Internet',''),(7826,1,1098,'4','Anytime',''),(7827,1,1099,'6.3','Andrew Sanders',''),(7828,1,1099,'2','andrew.sanders4@gmail.com',''),(7829,1,1099,'3','(213) 926-5794',''),(7830,1,1099,'5','It seems that my ganglion impar on my coccyx (tail bone) has become highly sensitive and painful.  It hurts to sit down, walk and even to sleep now.  The situation was at a manageable level for possibly a year or so, but recently it has been getting exponentially worse over a short period of time.  It is beginning to affect my life in serious ways and I want to get it fixed before it makes me more debilitated.  I spoke with a research MD who had the same issue and the only path that hlped him was prolotherapy.  As he suffered from the same afflication I am now dealing with, and he successfully healed with prolotherapy, I am reaching out to you, in the hopes that you can help me.',''),(7831,1,1099,'11','Not yet, and I want to avoid the need for one in the future',''),(7832,1,1099,'13','Google/Internet',''),(7833,1,1099,'4','Anytime',''),(7834,1,1100,'6.3','Williamhaf',''),(7835,1,1100,'2','antoniaxeigaz@mail.ru',''),(7836,1,1100,'3','(327) 256-0012',''),(7837,1,1100,'5','At temporibus id eos et dolor porro quis consequatur. Beatae autem sed dolor. Consequatur quod cupiditate ipsam. Eos voluptatum voluptatem sed sapiente sapiente. Non dolor quia voluptatibus consequatur. \r\n[url=https://k2web-at.com]kraken2trfqodidvlh4aa337cpzfrhdlfldhve5nf7njhumwr7instad.onion[/url] \r\nDoloribus quos ipsum aut. Minus quo aliquam omnis quia vitae id. Optio quisquam molestias odit et. \r\n \r\nDucimus voluptas expedita ex similique laboriosam dolorem. Voluptas aut dolorem asperiores in labore est doloribus id. Omnis et nesciunt suscipit. Aliquam voluptatum architecto quis libero qui ut nihil. \r\n \r\nEt quis dicta non recusandae rerum mollitia. Facere iure asperiores aliquid consectetur deleniti autem. Repellendus atque commodi beatae quia repudiandae. \r\n \r\nAspernatur occaecati exercitationem accusamus labore totam sapiente. Quisquam officiis hic qui recusandae dolorum aut ea. Velit cupiditate illo accusantium. \r\n \r\nQuaerat voluptatem impedit et et blanditiis vitae tempore. Sequi reiciendis dolor placeat. Cupiditate hic aut sunt iure iste. Provident molestias eos soluta aperiam consequatur sint et sunt. Soluta earum qui praesentium quia sapiente accusantium nihil. Quo et harum veniam sunt. \r\nvk4 \r\nhttps://rcway.art',''),(7838,1,1100,'11','Not yet, and I want to avoid the need for one in the future',''),(7839,1,1100,'13','I am a current patient/was a patient previously',''),(7840,1,1100,'4','Anytime',''),(7841,1,1101,'6.3','MauriceBix',''),(7842,1,1101,'2','nicolasasopdc@hotmail.com',''),(7843,1,1101,'3','(455) 784-0773',''),(7844,1,1101,'5','Register and take part in the drawing, [url=https://your-bonuses.life/?u=2rek60a&o=y59p896&t=serv]click here[/url]',''),(7845,1,1101,'11','Not yet, and I want to avoid the need for one in the future',''),(7846,1,1101,'13','Google/Internet',''),(7847,1,1101,'4','Anytime',''),(7848,1,1102,'6.3','Branden Millstone',''),(7849,1,1102,'2','bmillstone@rescue1fin.com',''),(7850,1,1102,'3','(714) 392-3722',''),(7851,1,1102,'5','Herniated disc and #5 is crushed',''),(7852,1,1102,'11','Not yet, and I want to avoid the need for one in the future',''),(7853,1,1102,'13','Friend/family who was/is a patient',''),(7854,1,1102,'4','Anytime',''),(7855,1,1103,'6.3','Josh mabie',''),(7856,1,1103,'2','billmemabie@gmail.com',''),(7857,1,1103,'3','(310) 963-4103',''),(7858,1,1103,'5','Labrum tear, mcl tear',''),(7859,1,1103,'11','Not yet, and I want to avoid the need for one in the future',''),(7860,1,1103,'13','Google/Internet',''),(7861,1,1103,'4','3pm – 5pm',''),(7862,1,1104,'6.3','David D. McCarthy',''),(7863,1,1104,'2','Dougm7161953@gmail.com',''),(7864,1,1104,'3','(217) 433-9991',''),(7865,1,1104,'5','I’m a 69 year old with an arthritic right hip. It hurts most of the time. I’m very active. My ortho recently prescribed Mobic.\r\nHe says a hip replacement is the only cure.',''),(7866,1,1104,'11','Not yet, and I want to avoid the need for one in the future',''),(7867,1,1104,'13','Friend/family who was/is a patient',''),(7868,1,1104,'4','Anytime',''),(7869,1,1105,'6.3','Tammie Chi',''),(7870,1,1105,'2','tammiechi@gmail.com',''),(7871,1,1105,'3','(310) 806-1822',''),(7872,1,1105,'5','Inflammation in the shoulder for 5 months. Cortisol injections don’t work at all, same with physical therapy. Dr.Knapp an orthopedic surgeon said it could be a labral tear that heals in a month without surgery and it’s been 5 months',''),(7873,1,1105,'11','Not yet, and I want to avoid the need for one in the future',''),(7874,1,1105,'13','Google/Internet',''),(7875,1,1105,'4','Anytime',''),(7876,1,1106,'6.3','Mike Hill',''),(7877,1,1106,'2','no-replyPl@gmail.com',''),(7878,1,1106,'3','(258) 236-1712',''),(7879,1,1106,'5','Greetings \r\n \r\nThis is Mike Hill\r\n \r\nLet me show you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your drfields.com SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Hill\r\n \r\nmike@strictlydigital.net',''),(7880,1,1106,'11','Not yet, and I want to avoid the need for one in the future',''),(7881,1,1106,'13','YouTube',''),(7882,1,1106,'4','Anytime',''),(7883,1,1107,'6.3','JamesGeple',''),(7884,1,1107,'2','creagene2022@gmail.com',''),(7885,1,1107,'3','(573) 772-3352',''),(7886,1,1107,'5','best leather cardholder handmade video  https://www.youtube.com/watch?v=0vHaO6-b2DY&t',''),(7887,1,1107,'11','Not yet, and I want to avoid the need for one in the future',''),(7888,1,1107,'13','I am a current patient/was a patient previously',''),(7889,1,1107,'4','Anytime',''),(7890,1,1108,'6.3','Lily Yassa',''),(7891,1,1108,'2','amallabaar@yahoo.com',''),(7892,1,1108,'3','(562) 644-1072',''),(7893,1,1108,'5','Bone on bone in both knees. I have done Hydro Ronek acid injections and they are not working.',''),(7894,1,1108,'11','Yes, and I want to avoid it if possible',''),(7895,1,1108,'13','Google/Internet',''),(7896,1,1108,'4','Anytime',''),(7897,1,1109,'6.3','Steven',''),(7898,1,1109,'2','ualsteve94@aol.com',''),(7899,1,1109,'3','(310) 944-5036',''),(7900,1,1109,'5','I’m 46, very active into exercise and sports.  Diagnosed with Osteoarthritis a couple years back.  Been dealing with the knee pain for years. Mostly hurts went trying to bend the knee.  A couple PRP injections over a year ago helped to relieve the 24/7 pain I was feeling in my knee but it’s still a damaged bum knee that I have to work around in my workouts.  Three different orthopedic surgeons Recommended partial knee replacement.   Long before I go down that road I want to try everything else under the sun.   Your treatments sound like what I’m looking for.',''),(7901,1,1109,'11','Yes, and I want to avoid it if possible',''),(7902,1,1109,'13','Google/Internet',''),(7903,1,1109,'4','11am – 1pm',''),(7904,1,1110,'6.3','Steven',''),(7905,1,1110,'2','ualsteve94@aol.com',''),(7906,1,1110,'3','(310) 944-5036',''),(7907,1,1110,'5','I’m 46, very active into exercise and sports.  Diagnosed with Osteoarthritis a couple years back.  Been dealing with the knee pain for years. Mostly hurts went trying to bend the knee.  A couple PRP injections over a year ago helped to relieve the 24/7 pain I was feeling in my knee but it’s still a damaged bum knee that I have to work around in my workouts.  Three different orthopedic surgeons Recommended partial knee replacement.   Long before I go down that road I want to try everything else under the sun.   Your treatments sound like what I’m looking for.',''),(7908,1,1110,'11','Yes, and I want to avoid it if possible',''),(7909,1,1110,'13','Google/Internet',''),(7910,1,1110,'4','11am – 1pm',''),(7911,1,1111,'6.3','Claire Drake',''),(7912,1,1111,'2','clairekevitt@mailpac.net',''),(7913,1,1111,'3','(323) 953-3200',''),(7914,1,1111,'5','I have Lupus and I\'ve started experiencing joint dislocations with the tendons and ligaments in the area becoming week after constant inflammation. \r\n\r\nMy ankle has developed tarsal tunnel syndrome, the ribheads in my upper back are repeatedly dislocating as well as my shoulders and hips. \r\n\r\nI used to get prolotherapy but the DO who used to do this retired. \r\n\r\nI would like to know the cost per shot as I am on a limited budget. The phone number I provided is my work receptionist and they are okay with me receiving doctor phone calls while at work so please call me.',''),(7915,1,1111,'11','Not yet, and I want to avoid the need for one in the future',''),(7916,1,1111,'13','Google/Internet',''),(7917,1,1111,'4','1pm – 3pm',''),(7918,1,1112,'6.3','Walterjaivy',''),(7919,1,1112,'2','gangiret98@gmail.com',''),(7920,1,1112,'3','(806) 246-8406',''),(7921,1,1112,'5','best cardholder video here  https://youtu.be/wNXH0FoPGqg',''),(7922,1,1112,'11','Not yet, and I want to avoid the need for one in the future',''),(7923,1,1112,'13','Another healthcare website',''),(7924,1,1112,'4','Anytime',''),(7925,1,1113,'6.3','Elena Stewart',''),(7926,1,1113,'2','elena@elenastewart.com',''),(7927,1,1113,'3','(651) 265-9787',''),(7928,1,1113,'5','Hello,\r\n\r\nCan I write an article for your website regarding the ins and outs of data visualization?\r\n\r\nAlthough data visualization is a strong tool for internal and external communications, I believe many business leaders are still confused about how to use it effectively.\r\n\r\nIf you\'re interested, please let me know and I\'ll get right to work on the piece.\r\n\r\nBest regards,\r\nElena Stewart\r\n\r\n\r\nP.S. If you don\'t like my suggested topic, send over a few alternatives that would be more appropriate for your website. Please let me know if you\'d prefer not to hear from me again.',''),(7929,1,1113,'11','Not yet, and I want to avoid the need for one in the future',''),(7930,1,1113,'13','Google/Internet',''),(7931,1,1113,'4','Anytime',''),(7932,1,1114,'6.3','Steven Kaagan',''),(7933,1,1114,'2','stevetahoe@icloud.com',''),(7934,1,1114,'3','(802) 236-2938',''),(7935,1,1114,'5','Lumbar spondylitis, stage 2. Orthopedist referred me to a surgeon with no exam.  I went to UCI to help diagnose my back pain and previous injuries. Dr told me he was a surgeon and I was in the wrong place if I didn’t want surgery. The amount of office visits and different specialists they wanted me to go to before I could get a steroid shot was absurd. The whole process is a sham designed to keep you injured. I’m not going there again.',''),(7936,1,1114,'11','Yes, and I want to avoid it if possible',''),(7937,1,1114,'13','Referred by my doctor/provider',''),(7938,1,1114,'4','Anytime',''),(7939,1,1115,'6.3','Josephpriop',''),(7940,1,1115,'2','no.reply.OlePetitson@gmail.com',''),(7941,1,1115,'3','(805) 462-0157',''),(7942,1,1115,'5','Good day! drfields.com \r\n \r\nDid you know that it is possible to send letter adequately legally? We make available a new method of sending commercial offers through feedback forms. Such forms can be found on numerous websites. \r\nWhen such proposals are sent, no personal data is used and messages are directed to specially designed forms in order to receive messages and appeals. Messages sent through Communication Forms have less of a chance of being classified as spam, as they are viewed as important. \r\nYou can now take advantage of our service free of charge. \r\nWe can provide you with up to 50,000 messages. \r\n \r\nThe cost of sending one million messages is $59. \r\n \r\nThis offer is automatically generated. \r\nPlease use the contact details below to get in touch with us. \r\n \r\nContact us. \r\nTelegram - https://t.me/FeedbackFormEU \r\nSkype  live:feedbackform2019 \r\nWhatsApp  +375259112693 \r\nWhatsApp  https://wa.me/+375259112693 \r\n \r\nWe only use chat for communication.',''),(7943,1,1115,'11','Not yet, and I want to avoid the need for one in the future',''),(7944,1,1115,'13','Facebook',''),(7945,1,1115,'4','Anytime',''),(7946,1,1116,'6.3','Walterjaivy',''),(7947,1,1116,'2','gangiret98@gmail.com',''),(7948,1,1116,'3','(178) 020-8541',''),(7949,1,1116,'5','best cardholder video here  https://www.youtube.com/watch?v=_6SbaPRllxM',''),(7950,1,1116,'11','Not yet, and I want to avoid the need for one in the future',''),(7951,1,1116,'13','Google/Internet',''),(7952,1,1116,'4','Anytime',''),(7953,1,1117,'6.3','Geraldvalia',''),(7954,1,1117,'2','greenerrolin1989@yahoo.com',''),(7955,1,1117,'3','(108) 648-1532',''),(7956,1,1117,'5','https://telegra.ph/Live-baccarat-videos-01-08#Live baccarat videos\r\nhttps://telegra.ph/Live-poker-real-money-01-08#Live poker real money\r\nhttps://telegra.ph/Casino-online-21-01-08#Casino online 21\r\nhttps://telegra.ph/Exploitative-play-in-live-poker-pdf-free-01-08#Exploitative play in live poker pdf free\r\nhttps://telegra.ph/Partouche-live-roulettefr-01-08#Partouche live roulette.fr',''),(7957,1,1117,'11','Not yet, and I want to avoid the need for one in the future',''),(7958,1,1117,'13','Google/Internet',''),(7959,1,1117,'4','Anytime',''),(7960,1,1118,'6.3','Kevin',''),(7961,1,1118,'2','kgcool09@hotmail.com',''),(7962,1,1118,'3','(323) 387-8840',''),(7963,1,1118,'5','Shoulder pain',''),(7964,1,1118,'11','Not yet, and I want to avoid the need for one in the future',''),(7965,1,1118,'13','Google/Internet',''),(7966,1,1118,'4','9am – 11am',''),(7967,1,1119,'6.3','Rafael',''),(7968,1,1119,'2','tapiaalvarez1990@gmail.com',''),(7969,1,1119,'3','(714) 321-3671',''),(7970,1,1119,'5','What would the first appointment cover and how much is cost of the first appointment?',''),(7971,1,1119,'11','Yes, and I want to avoid it if possible',''),(7972,1,1119,'13','Google/Internet',''),(7973,1,1119,'4','Anytime',''),(7974,1,1120,'6.3','Lucilleabego',''),(7975,1,1120,'2','sigitszorin@yandex.ru',''),(7976,1,1120,'3','(360) 112-0208',''),(7977,1,1120,'5','https://clck.ru/33jCY6 \r\n[url=https://anonyma.blogg.se/2012/october/fysik-och-annan-skit.html]https://clck.ru/33jDPD[/url] 30cb740',''),(7978,1,1120,'11','Not yet, and I want to avoid the need for one in the future',''),(7979,1,1120,'13','YouTube',''),(7980,1,1120,'4','Anytime',''),(7981,1,1121,'6.3','Josephpriop',''),(7982,1,1121,'2','no.reply.MaximeJacobs@gmail.com',''),(7983,1,1121,'3','(535) 136-7031',''),(7984,1,1121,'5','What’s up? drfields.com \r\n \r\nDid you know that it is possible to send request fully legit and concisely? We submit a new way of sending appeals through contact forms. These feedback forms can be seen on a plethora of sites. \r\nWhen such proposals are sent, no personal data is used and messages are directed to specially designed forms in order to receive messages and appeals. Also, messages sent through Feedback Forms don\'t get into spam as such messages are considered to be of great importance. \r\nWe are giving you the chance to experience our service without any cost. \r\nOur service offers up to 50,000 messages for you. \r\n \r\nThe cost of sending one million messages is $59. \r\n \r\nThis message was automatically generated. \r\nPlease use the contact details below to get in touch with us. \r\n \r\nContact us. \r\nTelegram - https://t.me/FeedbackFormEU \r\nSkype  live:feedbackform2019 \r\nWhatsApp  +375259112693 \r\nWhatsApp  https://wa.me/+375259112693 \r\n \r\nWe only use chat for communication.',''),(7985,1,1121,'11','Not yet, and I want to avoid the need for one in the future',''),(7986,1,1121,'13','YouTube',''),(7987,1,1121,'4','Anytime',''),(7988,1,1122,'6.3','Mario Trujillo',''),(7989,1,1122,'2','mariotro@msn.com',''),(7990,1,1122,'3','(951) 490-9103',''),(7991,1,1122,'5','Carpian tunnel syndrome',''),(7992,1,1122,'11','Yes, and I want to avoid it if possible',''),(7993,1,1122,'13','Google/Internet',''),(7994,1,1122,'4','3pm – 5pm',''),(7995,1,1123,'6.3','Eric Jones',''),(7996,1,1123,'2','ericjonesmyemail@gmail.com',''),(7997,1,1123,'3','(555) 555-1212',''),(7998,1,1123,'5','Hello drfields.com Administrator. \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement _ Congratulations\r\n\r\nWhat for?  \r\n\r\nPart of my job is to check out websites and the work you_ve done with drfields.com definitely stands out. \r\n\r\nIt_s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch_ more accurately, a question_\r\n\r\nSo when someone like me happens to find your site _ maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don_t stick around _ they_re there one second and then gone with the wind.\r\n\r\nHere_s a way to create INSTANT engagement that you may not have known about_ \r\n\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know INSTANTLY that they_re interested _ so that you can talk to that lead while they_re literally checking out drfields.com.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business _ and it gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately (and there_s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don_t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(7999,1,1123,'11','Yes, and I want to avoid it if possible',''),(8000,1,1123,'13','Google/Internet',''),(8001,1,1123,'4','3pm – 5pm',''),(8002,1,1124,'6.3','Williamtib',''),(8003,1,1124,'2','imtopphiser1@outlook.com',''),(8004,1,1124,'3','(414) 746-1583',''),(8005,1,1124,'5','Команда из нас always we improve имеющийся у нас список товаров, чтобы имеющийся у нас клиенты были в состоянии найти that\'s то, что надеялись получить. all позиции нашей platform hight quality, и команда из нас даём absolute safety абсолютно всех transactions. we have клиенты able to be уверены, that will have только best обслуживание и one of advantageous предложения. \r\n<a href=http://Blacksprut.cam/>блэкспрут зеркала</a>',''),(8006,1,1124,'11','Not yet, and I want to avoid the need for one in the future',''),(8007,1,1124,'13','YouTube',''),(8008,1,1124,'4','Anytime',''),(8009,1,1125,'6.3','John Boyd',''),(8010,1,1125,'2','jlbconstruction@verizon.net',''),(8011,1,1125,'3','(760) 832-2285',''),(8012,1,1125,'5','Lower back , sciatica pain , had back surgery 5years ago 15 mil bulging disk removed At my L5',''),(8013,1,1125,'11','Not yet, and I want to avoid the need for one in the future',''),(8014,1,1125,'13','Referred by my doctor/provider',''),(8015,1,1125,'4','9am – 11am',''),(8016,1,1126,'6.3','Steve',''),(8017,1,1126,'2','stevehasenberg1@gmail.com',''),(8018,1,1126,'3','(310) 459-5662',''),(8019,1,1126,'5','I have a torn meniscus in both my right and left knee. I rarely have symptoms in my left knew but my right one needs some help. I\'ve been doing PT exercises and they have helped a lot but there is still\r\nsome weakness when I\'m hiking.',''),(8020,1,1126,'11','Not yet, and I want to avoid the need for one in the future',''),(8021,1,1126,'13','Google/Internet',''),(8022,1,1126,'4','Anytime',''),(8023,1,1127,'6.3','Mary Johnson',''),(8024,1,1127,'2','maryjohnson.jess@gmail.com',''),(8025,1,1127,'3','(201) 201-2012',''),(8026,1,1127,'5','Hi there!\r\nYour website\'s design is absolutely brilliant. The visuals really enhance your message and the content compels action. I have forwarded it to a few of my contacts who I think could benefit from your services.\r\n\r\nWhen I was looking at your website, though, I noticed a slight issue re: your SEO that I thought you might not be aware of. It is a relatively simple fix. Would you like me to send you an SEO proposal with a price so that you can share it with your web team or ? If this is a priority, I can also get on a call.\r\nRegards,\r\nMary Johnson',''),(8027,1,1127,'11','Not yet, and I want to avoid the need for one in the future',''),(8028,1,1127,'4','Anytime',''),(8029,1,1128,'6.3','Grace Chavez',''),(8030,1,1128,'2','gchavez2201@yahoo.com',''),(8031,1,1128,'3','(714) 399-5308',''),(8032,1,1128,'5','Hi I have neck instability, I already got evaluated and I have a C1-C2 instability specially on the left side.',''),(8033,1,1128,'11','Not yet, and I want to avoid the need for one in the future',''),(8034,1,1128,'13','Google/Internet',''),(8035,1,1128,'4','Anytime',''),(8036,1,1129,'6.3','Sara Wood',''),(8037,1,1129,'2','sara.wood@affordablefinancing.net',''),(8038,1,1129,'3','(612) 688-2819',''),(8039,1,1129,'5','Your company caught my eye yesterday and I wanted to ask you a few quick questions about your company. I partner with companies like yours to build a funding strategy that meets both short and long term goals. My financing company can fund up to 500k in less than a week, and we provide multiple offers so you can pick the options that work for you.\r\n\r\nWould you be interested in some information about our funding programs?\r\n\r\nThank you,\r\n\r\nSara Wood\r\nDirector of Sales\r\nAffordable Financing\r\nsara.wood@affordablefinancing.net\r\n\r\nRespond with stop to optout.',''),(8040,1,1129,'11','Not yet, and I want to avoid the need for one in the future',''),(8041,1,1129,'13','Referred by my doctor/provider',''),(8042,1,1129,'4','9am – 11am',''),(8043,1,1130,'6.3','Raymondlof',''),(8044,1,1130,'2','mailbangerx@gmx.com',''),(8045,1,1130,'3','(536) 453-8483',''),(8046,1,1130,'5','Get millions instant leads for your business to ignite your marketing. You can use the lists an infinite number of times. We have been delivering businesses and market analysis firms with information since 2012. [url=https://www.mailbanger.com]Learn more about Mailbanger[/url]',''),(8047,1,1130,'11','Not yet, and I want to avoid the need for one in the future',''),(8048,1,1130,'13','Friend/family who was/is a patient',''),(8049,1,1130,'4','Anytime',''),(8050,1,1131,'6.3','Rafael Martinez',''),(8051,1,1131,'2','r90martinez@gmail.com',''),(8052,1,1131,'3','(323) 943-5576',''),(8053,1,1131,'5','I have been diagnosed with disc degenerative disease, spinal stenosis, mild osteoarthritis, 4 bulging discs, flat back, muscle spasms, etc. I have been suffering for 2-3 years. I have tried physical therapy, cortisone shots, facet joint shots, medication, with no significant improvement. I am being told what I have is a structural issue, and I need to do spinal fusion surgery, but I would like to see if there is any alternatives such as stem cell therapy, that may help.',''),(8054,1,1131,'11','Yes, and I want to avoid it if possible',''),(8055,1,1131,'13','Google/Internet',''),(8056,1,1131,'4','9am – 11am',''),(8057,1,1132,'6.3','James Powell',''),(8058,1,1132,'2','jpowell@usc.edu',''),(8059,1,1132,'3','(323) 376-7092',''),(8060,1,1132,'5','I have had arthritis in my right shoulder for a few years, but in October 2022, I pulled it when a horse I was riding yanked the reins hard. I have had X-rays and an MRI at Sansum Clinic. I can send those results. I was told that I had rather severe rotator cuff injury and that shoulder replacement was the only option, but that since the recovery time was a year and I am (now) 86, that was not reasonable. I have had a few cortisone shots (last on December 1, 2022) and my shoulder seemed not to bother me as much, but within the last week or ten days, and right now as I am writing, it is painful again. I have used Advil, Tylenol, and a rice heat wrap.',''),(8061,1,1132,'11','Not yet, and I want to avoid the need for one in the future',''),(8062,1,1132,'13','Friend/family who was/is a patient',''),(8063,1,1132,'4','Anytime',''),(8064,1,1133,'6.3','Eric Jones',''),(8065,1,1133,'2','ericjonesmyemail@gmail.com',''),(8066,1,1133,'3','(555) 555-1212',''),(8067,1,1133,'5','To the drfields.com Owner.\r\n\r\nCool website!\r\n\r\nMy name_s Eric, and I just found your site - drfields.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you_re doing is pretty cool.\r\n \r\nBut if you don_t mind me asking _ after someone like me stumbles across drfields.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI_m guessing some, but I also bet you_d like more_ studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere_s a thought _ what if there was an easy way for every visitor to _raise their hand_ to get a phone call from you INSTANTLY_ the second they hit your site and said, _call me now._\r\n\r\nYou can _\r\n  \r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nThat_s why we built out our new SMS Text With Lead feature_ because once you_ve captured the visitor_s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities _ even if you don_t close a deal then and there, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nWouldn_t that be cool?\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8068,1,1133,'11','Yes, and I want to avoid it if possible',''),(8069,1,1133,'13','Friend/family who was/is a patient',''),(8070,1,1133,'4','9am – 11am',''),(8071,1,1134,'6.3','Eric Jones',''),(8072,1,1134,'2','ericjonesmyemail@gmail.com',''),(8073,1,1134,'3','(555) 555-1212',''),(8074,1,1134,'5','Hello drfields.com Administrator! I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE http://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8075,1,1134,'11','Yes, and I want to avoid it if possible',''),(8076,1,1134,'13','Google/Internet',''),(8077,1,1134,'4','9am – 11am',''),(8078,1,1135,'6.3','MichaelPar',''),(8079,1,1135,'2','no.reply.StephaneJanssens@gmail.com',''),(8080,1,1135,'3','(742) 746-1655',''),(8081,1,1135,'5','Hey there! drfields.com \r\n \r\nDid you know that it is possible to send commercial offer compliant with legal requirements? We are introducing a novel and legitimate method of submitting proposals via feedback forms. You can locate these kinds of feedback forms on many sites. \r\nWhen such messages are sent, no personal data is used, and messages are sent to forms specifically designed to receive messages and appeals securely. Feedback Forms make sure that messages won\'t be seen as junk, as they are considered essential. \r\nYou can use our service with no cost to you. \r\nWe can deliver up to 50,000 messages for you. \r\n \r\nThe cost of sending one million messages is $59. \r\n \r\nThis offer is automatically generated. \r\nPlease use the contact details below to get in touch with us. \r\n \r\nContact us. \r\nTelegram - https://t.me/FeedbackFormEU \r\nSkype  live:feedbackform2019 \r\nWhatsApp  +375259112693 \r\nWhatsApp  https://wa.me/+375259112693 \r\n \r\nWe only use chat for communication.',''),(8082,1,1135,'11','Not yet, and I want to avoid the need for one in the future',''),(8083,1,1135,'13','I am a current patient/was a patient previously',''),(8084,1,1135,'4','Anytime',''),(8085,1,1136,'6.3','Ruby Cruz',''),(8086,1,1136,'2','bylug5227@gmail.com',''),(8087,1,1136,'3','(424) 477-6917',''),(8088,1,1136,'5','I have sciatica in my lower back and want to get stem cell treatment fast. I have blue shield insurance',''),(8089,1,1136,'11','Yes, and I want to avoid it if possible',''),(8090,1,1136,'13','Google/Internet',''),(8091,1,1136,'4','Anytime',''),(8092,1,1137,'6.3','Eric Jones',''),(8093,1,1137,'2','ericjonesmyemail@gmail.com',''),(8094,1,1137,'3','(555) 555-1212',''),(8095,1,1137,'5','Hi drfields.com Administrator! Eric here with a quick thought about your website drfields.com...\r\n\r\nI_m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it _ it_s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere_s a solution for you_\r\n\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to talk with them literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be huge for your business _ and because you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately_ and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8096,1,1137,'11','Yes, and I want to avoid it if possible',''),(8097,1,1137,'13','Referred by my doctor/provider',''),(8098,1,1137,'4','9am – 11am',''),(8099,1,1138,'6.3','Abigail E Villalta',''),(8100,1,1138,'2','abbyvillalta@yahoo.com',''),(8101,1,1138,'3','(951) 570-3901',''),(8102,1,1138,'5','Hello can you please give me some info on prolotherapy. I suffer with migraines and have been told it comes from neck issues. \r\nHow does prolotherapy work. \r\nHow much is a consultation and treatment?\r\nThank you\r\nAbby\r\n\r\n* Prefer an email response',''),(8103,1,1138,'11','Not yet, and I want to avoid the need for one in the future',''),(8104,1,1138,'13','Google/Internet',''),(8105,1,1138,'4','Anytime',''),(8106,1,1139,'6.3','Abigail E Villalta',''),(8107,1,1139,'2','abbyvillalta@yahoo.com',''),(8108,1,1139,'3','(951) 570-3901',''),(8109,1,1139,'5','Hello can you please give me some info on prolotherapy. I suffer with migraines and have been told it comes from neck issues. \r\nHow does prolotherapy work. \r\nHow much is a consultation and treatment?\r\nThank you\r\nAbby\r\n\r\n* Prefer an email response',''),(8110,1,1139,'11','Not yet, and I want to avoid the need for one in the future',''),(8111,1,1139,'13','Google/Internet',''),(8112,1,1139,'4','Anytime',''),(8113,1,1140,'6.3','Tisha Tuckett',''),(8114,1,1140,'2','tisha.tuckett39@gmail.com',''),(8115,1,1140,'3','(418) 682-7091',''),(8116,1,1140,'5','Hi,\r\n\r\nEveryone is using ChatGPT nowadays_ \r\nIt_s taking over the internet_ \r\n\r\nBut what if there is a way to capitalize on it and make a killing using it? \r\n\r\nImagine if you let a powerful AI app, write, design and sell eBooks for you in any niche_ \r\nAll you have to do is pick the niche, and then collect the profit_ \r\nEverything in between is done by This New System \r\n\r\nClick here to watch demo >>> https://bit.ly/inkai4\r\n\r\nAnd today, you have the chance to get access to it at an incredibly early-bird discount_\r\n\r\nHere, Let me show you how it works\r\n\r\nStep 1 Login: Login to Ink AI Cloud-Based Dashboard\r\nStep 2 Create: Enter One Keyword And Instantly Generate a Fully Designed eBook, Reports, Flipbook, PDF, Lead Magnet, And More_ \r\nStep 3: Syndicate: With One Click, Let AI Syndicate Your eBook Across  Millions Of Buyers In Any Niche_ \r\n\r\nStep 4: Profit - Yup that_s it.\r\n\r\nI don_t think it gets easier than this_ \r\n\r\nIt\'s just 1 Click away:\r\n\r\n_ No Writing\r\n_ No proofreading \r\n_ No designing\r\n_ No publishing\r\n_ No marketing\r\n\r\nAll of that is done for you\r\n\r\nThe technology behind this all IS rocket science..\r\nBut setting this up is as easy as popping a meal in a microwave_\r\nYou just press a few buttons and kapoosh, you_re done!\r\n\r\nTo begin extracting profit from the 107 million users of ChatGPT, go here to get started while the one-time pricing is still available.\r\n\r\nEnjoy!\r\n\r\nWilliams B\r\nManhatten, OT\r\n46234\r\n======\r\nClick here to unsubscribe',''),(8117,1,1140,'11','Yes, and I want to avoid it if possible',''),(8118,1,1140,'13','Another healthcare website',''),(8119,1,1140,'4','1pm – 3pm',''),(8120,1,1141,'6.3','Devan Mussato',''),(8121,1,1141,'2','devanjm@gmail.com',''),(8122,1,1141,'3','(424) 345-7847',''),(8123,1,1141,'5','Hello,\r\n\r\nI am interested in non surgical treatment for a herniated disc I suffered in 2018 that is causing me discomfort and preventing me from preforming certain activities as I would like to.  I am specifically interested in PRP and the benefits of that.\r\n\r\nI have Aetna consumer choice plan.  Would this be in network care?\r\n\r\nThank you for your time.\r\n\r\nDevan M',''),(8124,1,1141,'11','Not yet, and I want to avoid the need for one in the future',''),(8125,1,1141,'13','Google/Internet',''),(8126,1,1141,'4','Anytime',''),(8127,1,1142,'6.3','John Hancq',''),(8128,1,1142,'2','johnhancq@gmail.com',''),(8129,1,1142,'3','(703) 855-1412',''),(8130,1,1142,'5','Headaches from instable joints in neck',''),(8131,1,1142,'11','Not yet, and I want to avoid the need for one in the future',''),(8132,1,1142,'13','Google/Internet',''),(8133,1,1142,'4','Anytime',''),(8134,1,1143,'6.3','William R. Perry',''),(8135,1,1143,'2','billperry1963@gmail.com',''),(8136,1,1143,'3','(818) 209-9447',''),(8137,1,1143,'5','I have been experiencing aggressively increasing osteoarthritis in my hands for the last several years. My hands are in constant pain and I can no longer participate in many activities that I enjoy. (No more guitar...) My work product suffers because my typing is very restricted as well. My fingers have painful swollen and disfigured joints. I have been trying ALL anti-inflammatory supplements and foods, but have not found any relief. My GP really has nothing to offer me but her sympathy and some pain management.',''),(8138,1,1143,'11','Not yet, and I want to avoid the need for one in the future',''),(8139,1,1143,'13','Google/Internet',''),(8140,1,1143,'4','Anytime',''),(8141,1,1144,'6.3','Regan Brown',''),(8142,1,1144,'2','regan.brown@gbgroupinc.com',''),(8143,1,1144,'3','(408) 591-4392',''),(8144,1,1144,'5','I have always been pretty athletic although a little overweight.  From golfing, I had a completely torn interior minicus that was very painful.  I did have it surgically repaired I understand it was a relatively new type of procedure.  I never missed any PT but it never felt completely healed.  I have had it drained over 15 times with 2 rounds of cortizone.  They tell me that I now have Osteoarthritis that has developed rapidly and the interior corner is pinched from lack of cartilege.  I am told my only hope is full knee replacement.  In the past I have had a very successful stem cell therapy for a torn rotator cuff and also PRP for torn fascia in my foot.  I was told it would not work on my knee due to the thinned cartilege.  I met a gentlman at my gym who claims he was bone on bone and that your process helped him.  Could I be a candidate?  I am a 61 year old woman.  I truly just want to go hiking golfing, swimming and maybe back to scuba diving.  I am not interested in high impact activities any longer.',''),(8145,1,1144,'11','Yes, and I want to avoid it if possible',''),(8146,1,1144,'13','Friend/family who was/is a patient',''),(8147,1,1144,'4','1pm – 3pm',''),(8148,1,1145,'6.3','Chazz Escobedo',''),(8149,1,1145,'2','czescobedo@gmail.com',''),(8150,1,1145,'3','(626) 367-0197',''),(8151,1,1145,'5','Would like to inquire about possible treatment for injured shoulder.',''),(8152,1,1145,'11','Yes, and I want to avoid it if possible',''),(8153,1,1145,'13','Google/Internet',''),(8154,1,1145,'4','Anytime',''),(8155,1,1146,'6.3','Mike Samuels',''),(8156,1,1146,'2','no-replyPl@gmail.com',''),(8157,1,1146,'3','(600) 805-2420',''),(8158,1,1146,'5','Hi \r\n \r\nThis is Mike Samuels\r\n \r\nLet me show you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your drfields.com SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Samuels\r\n \r\nmike@strictlydigital.net',''),(8159,1,1146,'11','Not yet, and I want to avoid the need for one in the future',''),(8160,1,1146,'13','Friend/family who was/is a patient',''),(8161,1,1146,'4','Anytime',''),(8162,1,1147,'6.3','Christy Kelly',''),(8163,1,1147,'2','Christykellymkt@gmail.com',''),(8164,1,1147,'3','(201) 201-2012',''),(8165,1,1147,'5','Hi,\r\n\r\nI am a freelance website designer. I happened to come across your website and I’m wondering if it might be ok for me to email you a new website design/mock-up I have in mind for your company.\r\n\r\nNo commitment for future work, fine print, or hidden anything - just an opportunity for you to see how an updated version of your website might look.\r\n\r\nIf (and only if) you choose to have me develop it into a fully functional website, the price is just $2,500.00 which you can divide into five payments of $500.00 each.\r\n\r\nThat’s it!\r\n\r\nWould it be ok to send you the free design I have in mind?\r\nPlease let me know.\r\n\r\nThe designs take me about a week to make- again, they are completely free.\r\n\r\nThank you in advance!\r\nChristy Kelly',''),(8166,1,1147,'11','Not yet, and I want to avoid the need for one in the future',''),(8167,1,1147,'13','Friend/family who was/is a patient',''),(8168,1,1147,'4','9am – 11am',''),(8169,1,1148,'6.3','Candice',''),(8170,1,1148,'2','candicemorgan01@gmail.com',''),(8171,1,1148,'3','(661) 312-7659',''),(8172,1,1148,'5','My left knee has bone on bone on the interior of the knee. I have no pain. When I over play Pickleball I get pressure. I have had great success with hyleronic injections.  I also found some imbalances in my right hip. The PT has helped build strength which I believe is helping the knee. I’m interested in stem cell.',''),(8173,1,1148,'11','Yes, and I want to avoid it if possible',''),(8174,1,1148,'13','Google/Internet',''),(8175,1,1148,'4','Anytime',''),(8176,1,1149,'6.3','Thomas',''),(8177,1,1149,'2','tmccabe24@gmail.com',''),(8178,1,1149,'3','(213) 808-9933',''),(8179,1,1149,'5','Surgeon has recommend PRP for Achilles tendon “non acute longitudinal split tear” without tendon rupture.  Would like to do this as soon as possible and my in network Dr.s are booked until mid May. I understand Insurance will not cover this procedure.',''),(8180,1,1149,'11','Not yet, and I want to avoid the need for one in the future',''),(8181,1,1149,'13','Google/Internet',''),(8182,1,1149,'4','Anytime',''),(8183,1,1150,'6.3','Abell Tecle',''),(8184,1,1150,'2','abelltecle@gmail.com',''),(8185,1,1150,'3','(425) 248-0604',''),(8186,1,1150,'5','Looking for consultation of Stem Cell to repair my torn labrum. Results of the contrast MRI are as follows.\r\n\r\nImpression:\r\n1. Mild supraspinatus tendinosis. No rotator cuff tear.\r\n2. Os acromiale, mildly positive AP and mild lateral acromial downsloping and mild AC joint DJD, which may contribute to impingement. There is mild to moderate subacromial and subdeltoid bursitis.\r\n3. Anteroinferior labral tear with multiple small paralabral cysts.\r\n4. Mild glenohumeral osteoarthritis with anterior and inferior glenoid chondral fissuring and delamination.',''),(8187,1,1150,'11','Yes, and I want to avoid it if possible',''),(8188,1,1150,'13','Google/Internet',''),(8189,1,1150,'4','Anytime',''),(8190,1,1151,'6.3','Aaron Hart',''),(8191,1,1151,'2','aaronhart782@gmail.com',''),(8192,1,1151,'3','(408) 585-5364',''),(8193,1,1151,'5','Exceptional Cleaners in providing janitorial services.  Would you be open to a free janitorial estimate from our company?',''),(8194,1,1151,'11','Not yet, and I want to avoid the need for one in the future',''),(8195,1,1151,'13','Google/Internet',''),(8196,1,1151,'4','Anytime',''),(8197,1,1152,'6.3','Jennifer Obrien',''),(8198,1,1152,'2','jenni.obrien@dandydemo.com',''),(8199,1,1152,'3','(949) 755-7782',''),(8200,1,1152,'5','Want us to help you delete unfair bad reviews from Google, Yelp, FB, TripAdvisor and other main review sites? That\'s what our software does without any work needed on your part - and that\'s why some of the largest brands in the world like Wyndham trust us to remove unfair bad reviews, use ChatGPT to reply to reviews and more.\r\n\r\nDo you have 15 minutes for a call today? \r\n\r\nSchedule a Call Here: meetings.hubspot.com/dandy-/dandy-demo-numan or for more information please visit our website: getdandy.com/more-information\r\n\r\nYou can also call me directly at (949) 755-7782.\r\n\r\nWe’ve removed over 40,000 bad reviews and want to help you too. \r\n\r\nThank you,\r\n\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetDandy  - The First AI Powered Reputation Automation Platform\r\nPhone: (949) 755-7782\r\ngetdandy.com/more-information',''),(8201,1,1152,'11','Not yet, and I want to avoid the need for one in the future',''),(8202,1,1152,'4','Anytime',''),(8203,1,1153,'6.3','carmen mercado',''),(8204,1,1153,'2','carmenmerc@gmail.com',''),(8205,1,1153,'3','(424) 256-2345',''),(8206,1,1153,'5','prices please email',''),(8207,1,1153,'11','Not yet, and I want to avoid the need for one in the future',''),(8208,1,1153,'13','Google/Internet',''),(8209,1,1153,'4','3pm – 5pm',''),(8210,1,1154,'6.3','Fawaz Farooqui',''),(8211,1,1154,'2','fawaz.farooqui@gmail.com',''),(8212,1,1154,'3','(050) 085-0511',''),(8213,1,1154,'5','I have a partial acl tear on my left knee and have done a meniscus surgery on my right knee. Both are troubling me and I want to treat them. I live in Saudi Arabia and will be visiting Los Angeles soon.',''),(8214,1,1154,'11','Yes, and I want to avoid it if possible',''),(8215,1,1154,'13','Google/Internet',''),(8216,1,1154,'4','Anytime',''),(8217,1,1155,'6.3','Amy Cornelius',''),(8218,1,1155,'2','amysgcornelius@gmail.com',''),(8219,1,1155,'3','(615) 739-7837',''),(8220,1,1155,'5','MRI shows vertical tear of the medial meniscus through the horn, probably degenerative as knee pain has been for about a year, and the start of mild arthritis, both left knee. I\'m and athletic 42 yo female s/p ACL reconstruction patellar tendon also left knee in 2000.',''),(8221,1,1155,'11','Yes, and I want to avoid it if possible',''),(8222,1,1155,'13','Referred by my doctor/provider',''),(8223,1,1155,'4','Anytime',''),(8224,1,1156,'6.3','Jin Taek Limb',''),(8225,1,1156,'2','limbmichael@yahoo.com',''),(8226,1,1156,'3','(310) 447-4279',''),(8227,1,1156,'5','I\'m a chiropractor that is hypermobile in my joints, and I believe I have slipping rib syndrome and have been dealing with it since 2015 with little improvement. I\'d like to consult with Dr. Fields about treatment options with prolotherapy to help stabilize my ribs.',''),(8228,1,1156,'11','Not yet, and I want to avoid the need for one in the future',''),(8229,1,1156,'13','Google/Internet',''),(8230,1,1156,'4','Anytime',''),(8231,1,1157,'6.3','Irona',''),(8232,1,1157,'2','darya.shubina.73@mail.ru',''),(8233,1,1157,'3','(835) 464-1452',''),(8234,1,1157,'5','[url=http://seatonwhite.com/__media__/js/netsoltrademark.php?d=www.discoverteas.com%2F%3Foption%3Dcom_k2%26view%3Ditemlist%26task%3Duser%26id%3D24708]http://www.weeks1.com/__media__/js/netsoltrademark.php?d=www.destiny-lore.com%2Findex.php%3Ftitle%3DCommercial_Cleaning_New_Jersey[/url] \r\n \r\n HI.\r\nIn modern the companies work competent specialists.\r\n\r\nCleaning international company Cleaning service appeared total-only 6 years ago, this notwithstanding swift  dynamic  mprovement still does not cease surprise all ours rivalsandnew customers , however practically none  special  secret in the swift improvement of our firms notavailable. \r\nDespite on the impressive  practical gained experience, service staff systematically enhances his qualification on diverse  training and on courses.  Listed assist perfect measure master new   equipment and equipment .\r\n\r\nEmployees of our company are ready to provide professional cleaning services such as:\r\n\r\nGeneral cleaning apartments, workshops , stores and offices  \r\nDaily maintenance of cleanliness in the room \r\nDeep cleansing and decorative treatment of floors slip prevention \r\nPutting order after repair and construction work \r\nChemical cleaning of all types of carpet  \r\nCleaning exterior glass surfaces, cleaning building facades \r\nSeasonal cleaning outside the building \r\nDisposal of trash and snow under license.\r\n \r\nAnd likewise you can order:\r\n    \r\nMattress cleaning, Postconstruction cleaning, Cleaning and tidying up., Corporate cleaning,  Professional house cleaning, Best house cleaning, Marble care]\r\n\r\nWe commit cleaning only special cleaning supply. Fast increase in the number of cleaning firms in Prospect Hights  proves  that and in the area represented learned to appreciate own free time. \r\nServing around Williamsburg   AND ON ALL STREETS, SUCH AS:  High Bridge, Throgs Neck, City Line , Waterside Plaza, Grasmere .\r\n\r\n And so   exclusively you can   here  be sure,  come in  specified site  and   make an order  services .',''),(8235,1,1157,'11','Not yet, and I want to avoid the need for one in the future',''),(8236,1,1157,'13','YouTube',''),(8237,1,1157,'4','Anytime',''),(8238,1,1160,'6.3','Ari',''),(8239,1,1160,'2','ari@arigoldfilms.com',''),(8240,1,1160,'3','(917) 445-5806',''),(8241,1,1160,'5','Ankle sprain today',''),(8242,1,1160,'11','Not yet, and I want to avoid the need for one in the future',''),(8243,1,1160,'13','Google/Internet',''),(8244,1,1160,'4','Anytime',''),(8245,1,1161,'6.3','Renee Knight',''),(8246,1,1161,'2','reneeknight@mac.com',''),(8247,1,1161,'3','(608) 244-3850',''),(8248,1,1161,'5','Chronic neck pain currently exasperated by a recent bout of vertigo. The tendons are clicking and painful. Some arthritis seen in X-ray. I am leaving town on Thursday for a month. If there are any openings this coming week I would love to come in. Thank you',''),(8249,1,1161,'11','Not yet, and I want to avoid the need for one in the future',''),(8250,1,1161,'13','Google/Internet',''),(8251,1,1161,'4','Anytime',''),(8252,1,1162,'6.3','CharlesEpics',''),(8253,1,1162,'2','nairobichustz865@outlook.com',''),(8254,1,1162,'3','(641) 117-3702',''),(8255,1,1162,'5','Introducing a fundamentally new antidetect browser of a new generation! \r\n \r\n[url=http://anonim.pw] A fundamentally new secure browser with anti-detection methods [/url] \r\n \r\nOur advantages \r\n[i] \r\n- Profile data can be stored in a convenient way for you. The choice is a database or your own device. \r\n- Data on different devices are synchronized with each other. \r\n- The possibility of fairly accurate manual settings – you can change proxy settings, time zone, browser identification strings and much more. \r\n- Access to create multiple work environments. \r\n- Protection of the system from hacking and leakage in case of incorrect password entry. \r\n- Cloud storage of encrypted profiles \r\n- Multiplatform versions of Windows or Linux browser \r\n- Automatic fingerprint generation of the digital fingerprint of the device and much more \r\n[/i] \r\n \r\nWhen contacting support only until the end of this month, a 50% discount is provided for new users\r\n\r\nAnd there is also an affiliate program for all users with a payment of up to 40% of each payment of a new user! \r\nJoin our friendly community, feel safe with the Ximera browser \r\n \r\n[url=http://xdstore.pro] Registration in the partner program antidetect browser of the new generation Ximera antidetect [/url]',''),(8256,1,1162,'11','Not yet, and I want to avoid the need for one in the future',''),(8257,1,1162,'13','Google/Internet',''),(8258,1,1162,'4','Anytime',''),(8259,1,1163,'6.3','Kaycie Peterson',''),(8260,1,1163,'2','kaycie.peterson@gmail.com',''),(8261,1,1163,'3','(818) 859-9681',''),(8262,1,1163,'5','I was diagnosed with RA in 2018. My right shoulder has degenerated. I went to an orthopedic surgeon, informing me that I will need a total shoulder replacement.',''),(8263,1,1163,'11','Yes, and I want to avoid it if possible',''),(8264,1,1163,'13','Google/Internet',''),(8265,1,1163,'4','9am – 11am',''),(8266,1,1164,'6.3','Paula White Hazzard',''),(8267,1,1164,'2','paulashomeoffice@aol.com',''),(8268,1,1164,'3','(310) 283-2992',''),(8269,1,1164,'5','Hip instability, perhaps attributed to bersidus,',''),(8270,1,1164,'11','Yes, and I want to avoid it if possible',''),(8271,1,1164,'13','I am a current patient/was a patient previously',''),(8272,1,1164,'4','Anytime',''),(8273,1,1165,'6.3','Paula White Hazzard',''),(8274,1,1165,'2','paulashomeoffice@aol.com',''),(8275,1,1165,'3','(310) 283-2992',''),(8276,1,1165,'5','Instability and pain in right hip continued after \r\nHip replacement.  Perhaps attributed to bersidus.',''),(8277,1,1165,'11','Yes, and I want to avoid it if possible',''),(8278,1,1165,'13','I am a current patient/was a patient previously',''),(8279,1,1165,'4','Anytime',''),(8280,1,1166,'6.3','Jesse G Defrese DC',''),(8281,1,1166,'2','jgdefrese@gmail.com',''),(8282,1,1166,'3','(530) 758-8654',''),(8283,1,1166,'5','left Medial meniscus flap tear. Onset over 30 years ago, now recent aggravation 2 years. Currently pain free, however, episodes can be debilitating, and popping/crepitus when holding Warrior pose yoga.',''),(8284,1,1166,'11','Not yet, and I want to avoid the need for one in the future',''),(8285,1,1166,'13','Google/Internet',''),(8286,1,1166,'4','Anytime',''),(8287,1,1167,'6.3','Larry Mitchells',''),(8288,1,1167,'2','larrymitchells890@gmail.com',''),(8289,1,1167,'3','(408) 585-5364',''),(8290,1,1167,'5','Exceptional Cleaners specializes in providing janitorial services.  Would you be open to a free janitorial estimate from our company?',''),(8291,1,1167,'11','Not yet, and I want to avoid the need for one in the future',''),(8292,1,1167,'4','Anytime',''),(8293,1,1168,'6.3','James Sandiford DC',''),(8294,1,1168,'2','jamessandiforddc@gmail.com',''),(8295,1,1168,'3','(626) 512-8547',''),(8296,1,1168,'5','I have bilateral thumb pain and cervical and lumbar instability at 72 years old. Patients and friends have various degenerative conditions. Are you culturing stem cells from patient’s own blood or marrow?',''),(8297,1,1168,'11','Not yet, and I want to avoid the need for one in the future',''),(8298,1,1168,'13','Another healthcare website',''),(8299,1,1168,'4','Anytime',''),(8300,1,1169,'6.3','SamuelEt',''),(8301,1,1169,'2','samuelEt@motivatestory.com',''),(8302,1,1169,'3','(640) 088-8171',''),(8303,1,1169,'5','Create а сlоnе оf hеr іn thіs gаmе!!ǃ http://liamanomilidee.tk/prd-2436/\r\nΑnd fuсk her wіthоut lіmіtѕ, аs yоu alwауs wаnted. Ѕhe wоn\'t rеfusе youǃ\r\nIf уou wаnt, fuсk not onlу hеr, but also hеr girlfriеnd. Ѕіmultanеouslуǃ\r\n... оr mаybe you wаnt hеr tо fuсk yоu? :)',''),(8304,1,1169,'11','Not yet, and I want to avoid the need for one in the future',''),(8305,1,1169,'13','Facebook',''),(8306,1,1169,'4','Anytime',''),(8307,1,1170,'6.3','Eric Jones',''),(8308,1,1170,'2','ericjonesmyemail@gmail.com',''),(8309,1,1170,'3','(555) 555-1212',''),(8310,1,1170,'5','To the drfields.com Owner. \r\n\r\nEric here with a quick thought about your website drfields.com...\r\n\r\nI_m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it _ it_s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere_s a solution for you_\r\n\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to talk with them literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be huge for your business _ and because you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately_ and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8311,1,1170,'11','Yes, and I want to avoid it if possible',''),(8312,1,1170,'13','Referred by my doctor/provider',''),(8313,1,1170,'4','11am – 1pm',''),(8314,1,1171,'6.3','Eric Jones',''),(8315,1,1171,'2','ericjonesmyemail@gmail.com',''),(8316,1,1171,'3','(555) 555-1212',''),(8317,1,1171,'5','Hi drfields.com Administrator! this is Eric and I ran across drfields.com a few minutes ago.\r\n\r\nLooks great_ but now what?\r\n\r\nBy that I mean, when someone like me finds your website _ either through Search or just bouncing around _ what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment.\r\n\r\nHere_s an idea_\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site_\r\n \r\nYou can _\r\n  \r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou_ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don_t close a deal right away, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nPretty sweet _ AND effective.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8318,1,1171,'11','Yes, and I want to avoid it if possible',''),(8319,1,1171,'13','Another healthcare website',''),(8320,1,1171,'4','1pm – 3pm',''),(8321,1,1172,'6.3','Bryanbew',''),(8322,1,1172,'2','karolina_korolva@inbox.ru',''),(8323,1,1172,'3','(615) 784-7024',''),(8324,1,1172,'5','Дождались открытия клиники  в Люберцах после ремонта и долечили все зубы https://astordent.ru/protezirovanie-zubov/\r\n  И теперь ходим раз в полгода к Ирине Борисовне https://astordent.ru/\r\n  Доброжелательное отношение и общение врача и ассистента располагает к тому, чтобы маленькие пациенты шли на приём с удовольствием и без страха https://astordent.ru/koronki\r\n  Спасибо! \r\nСтоматология в Люберцах Клиника Леви-Дент https://astordent.ru/contact/\r\n \r\nОтзывы https://astordent.ru/akczii/\r\n \r\nОртодонтическая стоматология https://astordent.ru/prays\r\n \r\nКаждый стоматолог нашей клиники обладает высокой квалификацией и огромным опытом, благодаря чему каждый пациент может быть уверен в безупречном качестве работы https://astordent.ru/vinery-e-max\r\n  Каждая услуга рекомендуется после проведения комплексного осмотра и всех необходимых исследований, что позволяет исключить любые риски для вашего здоровья https://astordent.ru/privacy/\r\n \r\nВ клинике ВУГИ можно получить высококачественные стоматологические услуги на выгодных условиях https://astordent.ru/privacy/',''),(8325,1,1172,'11','Not yet, and I want to avoid the need for one in the future',''),(8326,1,1172,'13','I am a current patient/was a patient previously',''),(8327,1,1172,'4','Anytime',''),(8328,1,1173,'6.3','Maxine Brooks',''),(8329,1,1173,'2','maxinembrooks@gmail.com',''),(8330,1,1173,'3','(213) 618-0816',''),(8331,1,1173,'5','shoulder inflammation, Right, dominant side, what is cost of PPR for inflammation in shoulder?',''),(8332,1,1173,'11','Not yet, and I want to avoid the need for one in the future',''),(8333,1,1173,'13','Friend/family who was/is a patient',''),(8334,1,1173,'4','Anytime',''),(8335,1,1174,'6.3','Tim Bombard',''),(8336,1,1174,'2','tim_bombard@yahoo.com',''),(8337,1,1174,'3','(310) 629-4605',''),(8338,1,1174,'5','Hip bone on bone with arthritis.  Would love to not have a hip replacement as recommended.',''),(8339,1,1174,'11','Yes, and I want to avoid it if possible',''),(8340,1,1174,'13','Friend/family who was/is a patient',''),(8341,1,1174,'4','3pm – 5pm',''),(8342,1,1175,'6.3','brenda kershenbaum',''),(8343,1,1175,'2','edna2422000@yahoo.com',''),(8344,1,1175,'3','(323) 651-2657',''),(8345,1,1175,'5','I have low back pain.   I had arthritis and I seemed to have mostly resolved that but this back pain has persisted and feels different.  My chiropractor, dr ron marinero gave me your pamphlet.   also, my friend david in michigan has spine spurs and we would both like to know if stem cells would work.  He did have an operation by a dr. bray out here who doesn\'t take insurance.  Do you take medicare for any of this?  Dr. Ron does.  I have heard about stem cells for years and from what I have read they are expensive and do not always work.',''),(8346,1,1175,'11','Not yet, and I want to avoid the need for one in the future',''),(8347,1,1175,'4','11am – 1pm',''),(8348,1,1176,'6.3','Eric Jones',''),(8349,1,1176,'2','ericjonesmyemail@gmail.com',''),(8350,1,1176,'3','(555) 555-1212',''),(8351,1,1176,'5','Hello drfields.com Administrator! Eric here with a quick thought about your website drfields.com...\r\n\r\nI_m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it _ it_s hard.  Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace.  You got the eyeball, but nothing else.\r\n\r\nHere_s a solution for you_\r\n\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to talk with them literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nIt could be huge for your business _ and because you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation _ immediately_ and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8352,1,1176,'11','Yes, and I want to avoid it if possible',''),(8353,1,1176,'13','Facebook',''),(8354,1,1176,'4','11am – 1pm',''),(8355,1,1177,'6.3','Eric Jones',''),(8356,1,1177,'2','ericjonesmyemail@gmail.com',''),(8357,1,1177,'3','(555) 555-1212',''),(8358,1,1177,'5','To the drfields.com Admin. I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE http://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8359,1,1177,'11','Yes, and I want to avoid it if possible',''),(8360,1,1177,'13','Another healthcare website',''),(8361,1,1177,'4','1pm – 3pm',''),(8362,1,1178,'6.3','Linda D Majer',''),(8363,1,1178,'2','ldmajer@sbcglobal.net',''),(8364,1,1178,'3','(714) 473-1138',''),(8365,1,1178,'5','Sciatica - L-5 & L-3 disc degeneration pain and weakness in legs/hips. Have been thru decompression therapy which has helped but still experiencing pain and weakness.',''),(8366,1,1178,'11','Not yet, and I want to avoid the need for one in the future',''),(8367,1,1178,'13','Referred by my doctor/provider',''),(8368,1,1178,'4','Anytime',''),(8369,1,1179,'6.3','Gonzalo Leyva',''),(8370,1,1179,'2','gonzaloleyva@hotmail.com',''),(8371,1,1179,'3','(786) 859-8726',''),(8372,1,1179,'5','I am pleased to greet you. My name is Gonzalo Leyva.\r\nI have been operated on the cervical spine three months ago. The diagnosis was herniated disc at levels c4c5 c5c6 and c6c7. It was a disc extraction and cervical fusion operation with interbody cages. (ACDF)\r\nDuring the first two months I felt ok, with medical rest to facilitate recovery. However, for a couple of weeks now I have been experiencing very unconfortable  symptoms of upper cervical instability. I feel a lot of movement at the base of the skull and creaking of the vertebrae. Also sometimes I get this pressure in the skull and elevated arterial blood pressure that comes and goes which I did not have before. I know that all this problem could be caused by impact  of the upper cervical nerves due to instability and weak or injured ligaments. I have been reading a bit about it and I think it\'s a ligament issue.\r\n\r\nI would like to know if you perform prolotherapy on the c1 and c2 vertebrae and how to get an appointment to see you  there. \r\n\r\nGreetings\r\n\r\nGonzalo Leyva Huancaya\r\nLima Peru\r\n\r\nCel. +51 925354520',''),(8373,1,1179,'11','Yes, and I want to avoid it if possible',''),(8374,1,1179,'13','Google/Internet',''),(8375,1,1179,'4','Anytime',''),(8376,1,1180,'6.3','Cassie',''),(8377,1,1180,'2','cassieseoexpert@gmail.com',''),(8378,1,1180,'3','(201) 201-2012',''),(8379,1,1180,'5','Hi,\r\nI just visited your website and I was wondering if you would like to see my proposal of what I would suggest for your website. I would love the opportunity to show you our work. No commitment for future work, fine print or hidden anything- just an opportunity for you to see what some of our sites look like.\r\n\r\nI\'ll be happy to show you some of our work in your industry to give you some ideas. You\'ll then get to see one way in which your site might be redesigned to cater to the customers of today. That\'s it! Would that be ok to send? Thanks in advance!\r\n\r\nWarm Regards,\r\nCassie Jean',''),(8380,1,1180,'11','Not yet, and I want to avoid the need for one in the future',''),(8381,1,1180,'4','Anytime',''),(8382,1,1181,'6.3','gabriela condor',''),(8383,1,1181,'2','paintingexpressinc@comcast.net',''),(8384,1,1181,'3','(571) 214-0666',''),(8385,1,1181,'11','Yes, and I want to avoid it if possible',''),(8386,1,1181,'4','Anytime',''),(8387,1,1182,'6.3','VICTOR',''),(8388,1,1182,'2','victorvalencia93@yahoo.com',''),(8389,1,1182,'3','(323) 406-0373',''),(8390,1,1182,'5','disc bulges + symptoms in legs',''),(8391,1,1182,'11','Not yet, and I want to avoid the need for one in the future',''),(8392,1,1182,'13','YouTube',''),(8393,1,1182,'4','Anytime',''),(8394,1,1183,'6.3','Larry Mitchells',''),(8395,1,1183,'2','larrymitchells890@gmail.com',''),(8396,1,1183,'3','(408) 585-5364',''),(8397,1,1183,'5','I submitted a webform recently and wanted to follow up.  Exceptional Cleaners specializes in providing janitorial. Would you be open to a free janitorial estimate from our company?',''),(8398,1,1183,'11','Not yet, and I want to avoid the need for one in the future',''),(8399,1,1183,'13','Google/Internet',''),(8400,1,1183,'4','Anytime',''),(8401,1,1184,'6.3','pauline',''),(8402,1,1184,'2','pschantzer@gmail.com',''),(8403,1,1184,'3','(215) 378-9571',''),(8404,1,1184,'5','In Oct 2022 after my chiropractor adjusted my neck I started having pain in arms, burning, tingling that has now gone into legs too and become chronic',''),(8405,1,1184,'11','Not yet, and I want to avoid the need for one in the future',''),(8406,1,1184,'13','Google/Internet',''),(8407,1,1184,'4','Anytime',''),(8408,1,1185,'6.3','Eric Jones',''),(8409,1,1185,'2','ericjonesmyemail@gmail.com',''),(8410,1,1185,'3','(555) 555-1212',''),(8411,1,1185,'5','Hello drfields.com Owner. my name_s Eric and for just a second, imagine this_\r\n\r\n- Someone does a search and winds up at drfields.com.\r\n\r\n- They hang out for a minute to check it out.  _I_m interested_ but_ maybe__\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line _ you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn_t really your fault _ it happens a LOT _ studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know right then and there _ enabling you to call that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation_ so even if you don_t close a deal then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8412,1,1185,'11','Yes, and I want to avoid it if possible',''),(8413,1,1185,'4','1pm – 3pm',''),(8414,1,1186,'6.3','Eric Jones',''),(8415,1,1186,'2','ericjonesmyemail@gmail.com',''),(8416,1,1186,'3','(555) 555-1212',''),(8417,1,1186,'5','Dear drfields.com Owner!\r\n\r\nCool website!\r\n\r\nMy name_s Eric, and I just found your site - drfields.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you_re doing is pretty cool.\r\n \r\nBut if you don_t mind me asking _ after someone like me stumbles across drfields.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI_m guessing some, but I also bet you_d like more_ studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere_s a thought _ what if there was an easy way for every visitor to _raise their hand_ to get a phone call from you INSTANTLY_ the second they hit your site and said, _call me now._\r\n\r\nYou can _\r\n  \r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nThat_s why we built out our new SMS Text With Lead feature_ because once you_ve captured the visitor_s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities _ even if you don_t close a deal then and there, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nWouldn_t that be cool?\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8418,1,1186,'11','Yes, and I want to avoid it if possible',''),(8419,1,1186,'13','Referred by my doctor/provider',''),(8420,1,1187,'6.3','Akash Vishwakarma',''),(8421,1,1187,'2','akash.vishwakarma.5477@gmail.com',''),(8422,1,1187,'3','(213) 414-8064',''),(8423,1,1187,'5','Whats the cost of prp??',''),(8424,1,1187,'11','Not yet, and I want to avoid the need for one in the future',''),(8425,1,1187,'4','Anytime',''),(8426,1,1188,'6.3','Scott Recchia',''),(8427,1,1188,'2','scottrecchia@gmail.com',''),(8428,1,1188,'3','(415) 728-6056',''),(8429,1,1188,'5','Had an injury to my neck. Now it feels like I always have a choking feeling.',''),(8430,1,1188,'11','Not yet, and I want to avoid the need for one in the future',''),(8431,1,1188,'4','Anytime',''),(8432,1,1189,'6.3','Stephanie Lewis',''),(8433,1,1189,'2','sbrand514@gmail.com',''),(8434,1,1189,'3','(310) 270-3823',''),(8435,1,1189,'5','I was diagnosed with slipping rib syndrome after having bronchitis for a month. This has had a huge impact on my ability to care for my  two young children and having to significantly limit my physical activity has been detrimental to my mental health.',''),(8436,1,1189,'11','Not yet, and I want to avoid the need for one in the future',''),(8437,1,1189,'13','Google/Internet',''),(8438,1,1189,'4','Anytime',''),(8439,1,1190,'6.3','Bhaskar Dutt',''),(8440,1,1190,'2','bhaskarmdutt@gmail.com',''),(8441,1,1190,'3','(760) 791-6555',''),(8442,1,1190,'11','Not yet, and I want to avoid the need for one in the future',''),(8443,1,1190,'13','Google/Internet',''),(8444,1,1190,'4','9am – 11am',''),(8445,1,1191,'6.3','brenda kershenbaum',''),(8446,1,1191,'2','edna2422000@yahoo.com',''),(8447,1,1191,'3','(323) 651-2657',''),(8448,1,1191,'5','I am wondering as to the costs and relief of stem cells to my lower back.   I understand that under certain conditions insurance will cover.   Could you enlighten me about what conditions medicare will cover? also what is the cost and efficacy for treating lower back pain that seems permanent?',''),(8449,1,1191,'11','Not yet, and I want to avoid the need for one in the future',''),(8450,1,1191,'13','Referred by my doctor/provider',''),(8451,1,1191,'4','Anytime',''),(8452,1,1192,'6.3','bob stacey',''),(8453,1,1192,'2','ottis95@yahoo.com',''),(8454,1,1192,'3','(760) 703-0815',''),(8455,1,1192,'5','Hi, I am a 60 year old male...very active. I have stopped playing pickleball and running do to my instablity in my knees. If i plant and piviot via weight bearing i feel shifting in my knees, like hypermobility of ligament laxity...can you help...do you take any kind of insurance.also I was a firefighter for 32 years so i may have some over use problems too',''),(8456,1,1192,'11','Not yet, and I want to avoid the need for one in the future',''),(8457,1,1192,'13','Google/Internet',''),(8458,1,1192,'4','Anytime',''),(8459,1,1193,'6.3','Ann Vlcek',''),(8460,1,1193,'2','annvlcek@yahoo.com',''),(8461,1,1193,'3','(760) 218-9974',''),(8462,1,1193,'5','Hello, I have cervical instability at C1 and C2 per a DMX motion x-ray after a vehicle whiplash accident, 13 years ago.  I have received injections, PRP and prolotherapy in the past but the doctors will not go up to C1 and C2.\r\n\r\nDoes your office perform prolotherapy in this area and if so, would you let me know the cost for the procedure?\r\n\r\nI also have chiari malformation at 7 cm, possibly from the whiplash.\r\n\r\nThank you,\r\n\r\nAnn Vlcek',''),(8463,1,1193,'11','Not yet, and I want to avoid the need for one in the future',''),(8464,1,1193,'13','Google/Internet',''),(8465,1,1193,'4','Anytime',''),(8466,1,1194,'6.3','brice king',''),(8467,1,1194,'2','rbrice.king@gmail.com',''),(8468,1,1194,'3','(424) 384-8530',''),(8469,1,1194,'5','Nearly a year of chronic shoulder pain.  Had an MRI showing partial tear of RC (can provide CD of MRI).  Dr. recommended PT but it has not alleviated pain even with two cortisone shots (Dec\'22 and May 23).  Looking for additional treatment to assist.  I am a full time employee with KP insurance and an active triathlete as well.',''),(8470,1,1194,'11','Not yet, and I want to avoid the need for one in the future',''),(8471,1,1194,'13','Google/Internet',''),(8472,1,1194,'4','Anytime',''),(8473,1,1195,'6.3','Nataly Komova',''),(8474,1,1195,'2','natalykomovawrites@gmail.com',''),(8475,1,1195,'3','(320) 394-2288',''),(8476,1,1195,'5','Hi\r\n\r\nBy way of an introduction, I am a freelance writer and expert contributor for several magazines and blogs. I am presently aiming to build up my online presence, and would therefore, like to offer you to write some expert articles for your blog on drfields.com (free of charge).\r\n\r\nIf you are interested, please send me up to five topics that you would like me to cover. It will take me around a week or maybe less to write up the articles.\r\n\r\nI look forward to hearing from you. Please ensure that you copy in my personal email in your reply, as sometimes, my work emails tend to go to the spam folder: natalykomova1992@gmail.com\r\n\r\nKind regards\r\n\r\nNataly Komova',''),(8477,1,1195,'11','Yes, and I want to avoid it if possible',''),(8478,1,1195,'13','Referred by my doctor/provider',''),(8479,1,1195,'4','3pm – 5pm',''),(8480,1,1196,'6.3','Eric Jones',''),(8481,1,1196,'2','ericjonesmyemail@gmail.com',''),(8482,1,1196,'3','(555) 555-1212',''),(8483,1,1196,'5','To the drfields.com Webmaster! my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nWeb Visitors Into Leads _ CLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8484,1,1196,'11','Yes, and I want to avoid it if possible',''),(8485,1,1196,'13','YouTube',''),(8486,1,1196,'4','1pm – 3pm',''),(8487,1,1197,'6.3','Egyvps',''),(8488,1,1197,'2','support@egyvps.com',''),(8489,1,1197,'3','(705) 050-2758',''),(8490,1,1197,'5','السيرفرات الصغيرة. الاسعار تبدأ من فقط 200 جنيه شهريا. السيرفرات الكاملة. الاسعار تبدأ من فقط 1190 جنيه شهريا. أداء كامل ، أجهزة كاملة ، حلول تأجير خوادم لكل ... \r\nاستضافة مواقع , فى بى اس مصر , اقوى عروض الاستضافة , ارخص عروض الاستضافة , شركة تصميم مواقع واستضافة , شركة استضافة رسمية , عروض استضافة , فى بى اس , فى بى اس ويندوز , فى بى اس لينكس , ارخص عروض الفى بى اس , شركة فى بى اس رخيصة , ارخص عروض الريسلر , الريسلر تصميم , تصميم موقع , مواقع تصميم , تصميم منتدى , فى بى اس مصر , تصميم مواقع , تصميم المواقع , تصميم المنتديات , برمجة مواقع , حجز نطاق , فى بى اس كايرو \r\nTop hosting companies in Egypt \r\nBest web hosting providers in Egypt \r\nAffordable hosting services in Egypt \r\nVPS hosting in Egypt \r\nDedicated server hosting in Egypt \r\nCloud hosting in Egypt \r\nShared hosting providers in Egypt \r\nWebsite hosting solutions in Egypt \r\nEgyptian hosting companies comparison \r\nReliable hosting services in Egypt \r\nأفضل شركات استضافة في مصر \r\nخدمات استضافة مواقع في مصر \r\nاستضافة مواقع رخيصة في مصر \r\nاستضافة سحابية في مصر \r\nخوادم مشتركة في مصر \r\nاستضافة مواقع محلية في مصر \r\nاستضافة ووردبريس في مصر \r\nخوادم افتراضية خاصة في مصر \r\nاستضافة مواقع بالعربية في مصر \r\nشركات استضافة مواقع موثوقة في مصر \r\n \r\n \r\nشركة ايجى فى بى اس لخدمات السيرفرات - https://www.egyvps.com/ \r\nعربتك - شركة ايجى فى بى اس لخدمات السيرفرات - https://www.egyvps.com/cart \r\nتسجيل الدخول - شركة ايجى فى بى اس لخدمات السيرفرات - https://www.egyvps.com/sign-in \r\nانشاء حساب جديد - شركة ايجى فى بى اس لخدمات السيرفرات - https://www.egyvps.com/sign-up \r\nشركة ايجى فى بى اس لخدمات السيرفرات - https://www.egyvps.com/home \r\nالسيرفرات الصغيرة (وندوز / لينكس) - شركة ايجى فى بى اس لخدمات السيرفرات - https://www.egyvps.com/ar/category/173?chl=true \r\nالسيرفرات الكاملة - شركة ايجى فى بى اس لخدمات السيرفرات - https://www.egyvps.com/ar/category/23?chl=true \r\nسيرفرات كونكر - شركة ايجى فى بى اس لخدمات السيرفرات - https://www.egyvps.com/ar/category/246 \r\nسيرفرات سيلك رود - شركة ايجى فى بى اس لخدمات السيرفرات - https://www.egyvps.com/ar/category/249 \r\nاتصل بنا - شركة ايجى فى بى اس لخدمات السيرفرات - https://www.egyvps.com/contact \r\nطلب خطة 1 - شركة ايجى فى بى اس لخدمات السيرفرات - https://www.egyvps.com/order-steps/server/103 \r\nفى بى اس , فى بى اس ويندوز , فى بى اس لينكس , فى بى اس فايف ام , فى بى اس سيرفر , فى بى اس سيرفرات , فى بى اس , فى بى اس ويندوز , فى بى اس لينكس , فى بى اس , فى بى اس , VPS , VPS HOST , VPS FiveM , FiveM , vps windows , vps linux , vps sentos , vps game , فى بى اس , HOST FiveM , فى بى اس مصر , شركة فى بى اس كايرو , شركة مصرية و لدينا وكلاء في معظم الدول العربية تقدم اقوي عروض الفى بى اس , فى بى اس كايرو , فى بى اس 1 جيجا , فى بى اس 2 جيجا , فى بى اس مجاني , في بي اسات , فى بى اس مصر , شركة كل حاجه , المحترفين العرب , كويك ويب , استضافة الحلم , فى بى اس , عرب فى بى اس , فى بى اس سرو , عرو ض الفى بى اس , عمل سيرفرات كونكر تهيس , فى بى اس , وعمل صفح تسجيل كونكر تهييس , وحمايه السيرفرات حمايه كامله استضافة و تصميم للمواقع افضل عروض الريسلر و اقوى عروض الفى بى اس وارخصها , افضل عروض سيرفرات متاحة , سورسات كونكر تهيس , صفحات تسجيل كونكر , عروض فى بى اس , شركة فى بى اس , شركه فى بى اس , شركه فى بى اس , عروض سورسات مميزة , فى بى اس مصر, شركه فى بى اس مصر , فى بى اس , شركة فى بى اس , فى بى اس مجاني , عروض الاوتوباتش , فى بى اس , فى بى اس',''),(8491,1,1197,'11','Not yet, and I want to avoid the need for one in the future',''),(8492,1,1197,'13','I am a current patient/was a patient previously',''),(8493,1,1197,'4','Anytime',''),(8494,1,1198,'6.3','Eric Jones',''),(8495,1,1198,'2','ericjonesmyemail@gmail.com',''),(8496,1,1198,'3','(555) 555-1212',''),(8497,1,1198,'5','Hello drfields.com Admin! this is Eric and I ran across drfields.com a few minutes ago.\r\n\r\nLooks great_ but now what?\r\n\r\nBy that I mean, when someone like me finds your website _ either through Search or just bouncing around _ what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment.\r\n\r\nHere_s an idea_\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site_\r\n \r\nYou can _\r\n  \r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou_ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don_t close a deal right away, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nPretty sweet _ AND effective.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8498,1,1198,'11','Yes, and I want to avoid it if possible',''),(8499,1,1198,'13','Google/Internet',''),(8500,1,1198,'4','3pm – 5pm',''),(8501,1,1199,'6.3','John Tabis',''),(8502,1,1199,'2','jtabis1@yahoo.com',''),(8503,1,1199,'3','(312) 952-9068',''),(8504,1,1199,'5','45 years old and told by 2 doctors that I require a complete hip replacement on the right side due to a loss of cartilage.   In daily pain and exploring alternatives.',''),(8505,1,1199,'11','Yes, and I want to avoid it if possible',''),(8506,1,1199,'13','Google/Internet',''),(8507,1,1199,'4','Anytime',''),(8508,1,1200,'6.3','Eric Jones',''),(8509,1,1200,'2','ericjonesmyemail@gmail.com',''),(8510,1,1200,'3','(555) 555-1212',''),(8511,1,1200,'5','Dear drfields.com Webmaster.\r\n\r\nMy name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Web Visitors Into Leads.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8512,1,1200,'11','Yes, and I want to avoid it if possible',''),(8513,1,1200,'13','YouTube',''),(8514,1,1200,'4','11am – 1pm',''),(8515,1,1201,'6.3','Eric Jones',''),(8516,1,1201,'2','eric.jones.z.mail@gmail.com',''),(8517,1,1201,'3','(555) 555-1212',''),(8518,1,1201,'5','Hello drfields.com Admin.\r\n\r\nMy name_s Eric and I just found your site drfields.com.\r\n\r\nIt_s got a lot going for it, but here_s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads _ CLICK HERE http://advanceleadgeneration.com for a live demo now.\r\n\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nAnd once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation_ and if they don_t take you up on your offer then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment. Don_t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8519,1,1201,'11','Yes, and I want to avoid it if possible',''),(8520,1,1201,'13','I am a current patient/was a patient previously',''),(8521,1,1201,'4','11am – 1pm',''),(8522,1,1202,'6.3','Renson Lee',''),(8523,1,1202,'2','rensonlee@gmail.com',''),(8524,1,1202,'3','(626) 456-1112',''),(8525,1,1202,'5','weak back, pain on buttocks to thigh going on 1.5 yrs. \r\nHave MRI done due to accident. \r\nshoulder pain and tightness.',''),(8526,1,1202,'11','Not yet, and I want to avoid the need for one in the future',''),(8527,1,1202,'13','Friend/family who was/is a patient',''),(8528,1,1202,'4','Anytime',''),(8529,1,1203,'6.3','Armina',''),(8530,1,1203,'2','arminapasha@gmail.com',''),(8531,1,1203,'3','(818) 681-4019',''),(8532,1,1203,'5','I have a 7.3mm lumbar herniated disc. I had 2 epidural injections. The last one was 2 weeks ago. Im still experiencing shooting pain into my leg.',''),(8533,1,1203,'11','Not yet, and I want to avoid the need for one in the future',''),(8534,1,1203,'13','Google/Internet',''),(8535,1,1203,'4','Anytime',''),(8536,1,1204,'6.3','Sam',''),(8537,1,1204,'2','sam.cobelo@allmailhost.com',''),(8538,1,1204,'3','(992) 292-1601',''),(8539,1,1204,'5','It seems like you\'re not taking full advantage of your website\'s capabilities.By following Google\'s guidelines and optimizing your website, you can extend your reach to a broader target audience through search engines.We have conducted a report that uncovers areas for improvement. If you\'re interested, I can share the report with you for free. Additionally, we can provide consultation services to help you address these identified issues.',''),(8540,1,1204,'11','Not yet, and I want to avoid the need for one in the future',''),(8541,1,1204,'4','Anytime',''),(8542,1,1205,'6.3','John Bartlett',''),(8543,1,1205,'2','john@system4-losangeleswest.com',''),(8544,1,1205,'3','(424) 377-2767',''),(8545,1,1205,'5','Hi, Are you interested in receiving a professional janitorial or disinfection quote for your business?\r\n\r\nI’d like to provide a strategy that will take care of all your facility needs, along with excellent communication and customer service.\r\n\r\nJust send me a quick reply and I’d be happy to schedule a site visit and give you a complimentary, no-obligation quote.\r\n\r\nRegards,\r\nJohn\r\n\r\nJohn Bartlett\r\nOwner\r\nSystem4 Facility Services\r\n(424) 377-2767\r\njohn@system4-losangeleswest.com\r\n\r\nPlease respond with \"stop\" to opt out.',''),(8546,1,1205,'11','Not yet, and I want to avoid the need for one in the future',''),(8547,1,1205,'13','Google/Internet',''),(8548,1,1205,'4','11am – 1pm',''),(8549,1,1206,'6.3','oliver thomas',''),(8550,1,1206,'2','olivercthomas1@gmail.com',''),(8551,1,1206,'3','(310) 848-5445',''),(8552,1,1206,'5','Hi I have an incomplete rotator cuff tear. I am currently doing physical therapy for it. I was wondering what the treatment plan for PRP injections would be for that and how much it would cost?\r\n\r\nThanks,\r\nOliver Thomas',''),(8553,1,1206,'11','Not yet, and I want to avoid the need for one in the future',''),(8554,1,1206,'13','Google/Internet',''),(8555,1,1206,'4','Anytime',''),(8556,1,1207,'6.3','Eric Jones',''),(8557,1,1207,'2','ericjonesmyemail@gmail.com',''),(8558,1,1207,'3','(555) 555-1212',''),(8559,1,1207,'5','Hello drfields.com Administrator! my name_s Eric and I just ran across your website at drfields.com...\r\n\r\nI found it after a quick search, so your SEO_s working out_\r\n\r\nContent looks pretty good_\r\n\r\nOne thing_s missing though_\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds _ 7 out of 10 disappear almost instantly, Surf Surf Surf_ then gone forever.\r\n\r\nI have the solution:\r\n\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to TALK with them - literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try_ it could be huge for your business.\r\n\r\nPlus, now that you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto_ which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8560,1,1207,'11','Yes, and I want to avoid it if possible',''),(8561,1,1207,'13','YouTube',''),(8562,1,1207,'4','9am – 11am',''),(8563,1,1208,'6.3','Eric Jones',''),(8564,1,1208,'2','ericjonesmyemail@gmail.com',''),(8565,1,1208,'3','(555) 555-1212',''),(8566,1,1208,'5','To the drfields.com Administrator. my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nWeb Visitors Into Leads _ CLICK HERE http://advanceleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8567,1,1208,'11','Yes, and I want to avoid it if possible',''),(8568,1,1208,'13','I am a current patient/was a patient previously',''),(8569,1,1208,'4','9am – 11am',''),(8570,1,1209,'6.3','Steve Koenig',''),(8571,1,1209,'2','Stevekoenig9002@comcast.net',''),(8572,1,1209,'3','(717) 283-6389',''),(8573,1,1209,'5','Hi my dad was told he has sinking brain syndrome but he has never had surgery but he does have chronic cervical instability  how does this affect the brain? I read it can cause I intracranial pressure and  if a mri was done would it look like sinking brain when it\'s not thanks for ans6',''),(8574,1,1209,'11','Not yet, and I want to avoid the need for one in the future',''),(8575,1,1209,'13','Another healthcare website',''),(8576,1,1209,'4','Anytime',''),(8577,1,1210,'6.3','Krystina Windham',''),(8578,1,1210,'2','windhamkrystinamkt@gmail.com',''),(8579,1,1210,'3','(410) 123-1234',''),(8580,1,1210,'5','Hi,\r\nI just visited your website and I was wondering if you would like to see my proposal of what I would suggest for your website. I would love the opportunity to show you our work. No commitment for future work, fine print or hidden anything- just an opportunity for you to see what some of our sites look like.\r\n\r\nI\'ll be happy to show you some of our work in your industry to give you some ideas. You\'ll then get to see one way in which your site might be redesigned to cater to the customers of today. That\'s it! Would that be ok to send? Thanks in advance!\r\n\r\nWarm Regards,  \r\nKrystina Windham',''),(8581,1,1210,'11','Not yet, and I want to avoid the need for one in the future',''),(8582,1,1210,'13','Friend/family who was/is a patient',''),(8583,1,1210,'4','9am – 11am',''),(8584,1,1211,'6.3','Steve Koenig',''),(8585,1,1211,'2','Stevekoenig9002@comcast.net',''),(8586,1,1211,'3','(717) 283-6389',''),(8587,1,1211,'5','Hi the other day I sent you a. Message regarding cervical instability and how it affects the brain. Did you receive it? Thanks Steve',''),(8588,1,1211,'11','Not yet, and I want to avoid the need for one in the future',''),(8589,1,1211,'13','Google/Internet',''),(8590,1,1211,'4','Anytime',''),(8591,1,1212,'6.3','JanieGroth',''),(8592,1,1212,'2','x.xe.vi.l.t.es.tras.si.lka.@gmail.com',''),(8593,1,1212,'3','(601) 433-5450',''),(8594,1,1212,'5','It is remarkable, it is very valuable answer \r\n \r\ncircumspection \r\n[url=https://analgrannyporn.top]bdsm rules[/url]',''),(8595,1,1212,'11','Not yet, and I want to avoid the need for one in the future',''),(8596,1,1212,'13','Google/Internet',''),(8597,1,1212,'4','Anytime',''),(8598,1,1213,'6.3','Dylan thiffault',''),(8599,1,1213,'2','dylanthiffault@yahoo.com',''),(8600,1,1213,'3','(803) 466-7592',''),(8601,1,1213,'11','Not yet, and I want to avoid the need for one in the future',''),(8602,1,1213,'13','Another healthcare website',''),(8603,1,1213,'4','11am – 1pm',''),(8604,1,1214,'6.3','ErvinNap',''),(8605,1,1214,'2','renen5p@outlook.com',''),(8606,1,1214,'3','(160) 452-2568',''),(8607,1,1214,'5','Вероятно, не every платформы способны дать maximum комфорт и несложность в этом процессе. Можете can you suggest надежный website, где сможете one can find необходимые возможности access к приобретению goods <a href=\"https://bs2webb.top/\">blacksprut</a>',''),(8608,1,1214,'11','Not yet, and I want to avoid the need for one in the future',''),(8609,1,1214,'13','Friend/family who was/is a patient',''),(8610,1,1214,'4','Anytime',''),(8611,1,1215,'6.3','Virginia Cooper',''),(8612,1,1215,'2','info@learnaliving.co',''),(8613,1,1215,'3','(614) 333-3411',''),(8614,1,1215,'5','Hello there,\r\n\r\nI enjoy writing and came across your website, so I decided to contact you to see if you\'d be interested in featuring one of my articles as a guest post. The article would be an original piece about why professional photographers are valuable assets in a variety of situations, such as weddings, home sales, and business marketing. There are many instances where a photographer can be a lifesaver!\r\n\r\nIf your website accepts articles from guest writers and my idea appeals to you, please let me know, and I\'ll start working on it right away.\r\n\r\nBest regards,\r\nVirginia Cooper | learnaliving.co \r\n\r\n\r\n\r\n\r\nP.S. Send me your proposal if you\'re interested but would rather I write on a subject of your choosing! Please let me know if there isn\'t any interest. I won\'t email you once again.',''),(8615,1,1215,'11','Not yet, and I want to avoid the need for one in the future',''),(8616,1,1215,'13','Google/Internet',''),(8617,1,1215,'4','Anytime',''),(8618,1,1216,'6.3','Eric Jones',''),(8619,1,1216,'2','ericjonesmyemail@gmail.com',''),(8620,1,1216,'3','(555) 555-1212',''),(8621,1,1216,'5','Hi drfields.com Administrator.\r\n\r\nMy name_s Eric and I just came across your website - drfields.com - in the search results.\r\n\r\nHere_s what that means to me_\r\n\r\nYour SEO_s working.\r\n\r\nYou_re getting eyeballs _ mine at least.\r\n\r\nYour content_s pretty good, wouldn_t change a thing.\r\n\r\nBUT_\r\n\r\nEyeballs don_t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like drfields.com will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt_s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket_ thanks to Web Visitors Into Leads.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know immediately _ so you can talk to that lead immediately_ without delay_ BEFORE they head for those hills.\r\n  \r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nNow it_s also true that when reaching out to hot leads, you MUST act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s what makes our new SMS Text With Lead feature so powerful_ you_ve got their phone number, so now you can start a text message (SMS) conversation with them_ so even if they don_t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8622,1,1216,'11','Yes, and I want to avoid it if possible',''),(8623,1,1216,'13','YouTube',''),(8624,1,1217,'6.3','Jennifer Faber',''),(8625,1,1217,'2','jfaberasl@yahoo.com',''),(8626,1,1217,'3','(909) 996-6073',''),(8627,1,1217,'5','I suffer from Erosive Osteoarthritis in my hands. I have very little use of my hands without immense pain. Even tying my shoelaces is difficult for me. I struggle opening bags, bottles....mostly everything we take for granted. My fingers and joints are constantly swollen, inflamed,  throbbing and stiff. My rheumatologist told me there was nothing he could do for me. He prescribed Hydroxichloroquine for me (anti malaria medication) which I immediately stopped taking due to the awful side effects. I wear compression arthritis gloves about 90 percent of the time and receive acupuncture therapy once a week. \r\nThis condition is debilitating for me. I am only 45 years old and have many, many more years of working my job which is becoming harder and harder for me to do. I am looking forward to hearing from you. \r\nThank you, \r\nJennifer',''),(8628,1,1217,'11','Not yet, and I want to avoid the need for one in the future',''),(8629,1,1217,'13','Google/Internet',''),(8630,1,1217,'4','1pm – 3pm',''),(8631,1,1218,'6.3','Alex Rodriguez',''),(8632,1,1218,'2','alexrodriguez413@hotmail.com',''),(8633,1,1218,'3','(213) 297-6404',''),(8634,1,1218,'5','I was diagnosed with rotator cuff tendosis in June of last year. I received 2 rounds of PRP in my left shoulder area. Lately, I have been experiencing subacromial bursitis, and constant pain below my acromion.',''),(8635,1,1218,'11','Not yet, and I want to avoid the need for one in the future',''),(8636,1,1218,'13','Google/Internet',''),(8637,1,1218,'4','3pm – 5pm',''),(8638,1,1219,'6.3','Joshua C. Karlin',''),(8639,1,1219,'2','joshua@joshuakarlin.com',''),(8640,1,1219,'3','(310) 367-7436',''),(8641,1,1219,'5','left knee issues (perhaps torn meniscus?)\r\nRIght lower back causing sciatica pain in right knee (but not down leg)\r\nLeft elbow - residual pain from dislocation 10-12 years ago)\r\nNeuropathy in both feet  (diabetic induced, Improving)\r\nWould  like to get them all treated at same time if possible so no need for multiple visits',''),(8642,1,1219,'11','Not yet, and I want to avoid the need for one in the future',''),(8643,1,1219,'13','I am a current patient/was a patient previously',''),(8644,1,1219,'4','Anytime',''),(8645,1,1220,'6.3','Douglas Duncan',''),(8646,1,1220,'2','dougduncan@glsllc.com',''),(8647,1,1220,'3','(404) 493-9637',''),(8648,1,1220,'5','Back muscle strain/tear.',''),(8649,1,1220,'11','Not yet, and I want to avoid the need for one in the future',''),(8650,1,1220,'13','Google/Internet',''),(8651,1,1220,'4','Anytime',''),(8652,1,1221,'6.3','WillardSeite',''),(8653,1,1221,'2','stevenlewis160749972@outlook.com',''),(8654,1,1221,'3','(466) 476-4116',''),(8655,1,1221,'5','I should be here right now., \r\nIn this city where the war… \r\nThe reserve of strength has almost completely dried up, \r\nThe one that the Lord gave me. \r\n \r\nI need to save the children, \r\nFrom Nazi mines and rockets, \r\nSo that they can continue to grow, \r\nWhere there is no evil. \r\n \r\nIt\'s scary for me to be in the enemy\'s sights, \r\nI remember my family… \r\nAnd I scold myself for being weak, \r\nAnd it gets harder for me. \r\n \r\nBut clutching the cross to his chest, \r\nI felt a wave behind my back, \r\nAfter all, there is always hope, \r\nAnd the Lord will give you more strength. \r\n \r\nThat\'s really close to my goal, \r\nWell, let me be weak now, \r\nI pray, saying to myself: believe! \r\nAnd the victorious hour will come \r\n \r\n[url=https://svos.pro] We will protect the country - we will protect our children - our future [/url]',''),(8656,1,1221,'11','Not yet, and I want to avoid the need for one in the future',''),(8657,1,1221,'13','Facebook',''),(8658,1,1221,'4','Anytime',''),(8659,1,1222,'6.3','Jennifer A. Gill',''),(8660,1,1222,'2','geneffer@pacbell.net',''),(8661,1,1222,'3','(213) 427-0759',''),(8662,1,1222,'5','Arthritis in my left hip socket, I have an X-ray from Kaiser and an evaluation, as follows:\r\n\r\n\"Patient presents with signs and symptoms consistent with L hip pain with muscle power deficits of the glutes and muscle length deficits of the hip flexors.  Also with muscle guarding when attempting PROM measurements today with hip flex, IR, and ER.  Provided HEP for stretching of hip flexors and strengthening of glutes.  Patient with grade 4 degeneration on L hip from xray taken on 5/15/23.  Patient advised on continued strengthening and stretching.  Discussed that muscle guarding likely due to pain at hip joint which will improve when she has her L THA.\"',''),(8663,1,1222,'11','Yes, and I want to avoid it if possible',''),(8664,1,1222,'13','Referred by my doctor/provider',''),(8665,1,1222,'4','Anytime',''),(8666,1,1223,'6.3','Don Walker',''),(8667,1,1223,'2','donduwa@yahoo.com',''),(8668,1,1223,'3','(408) 218-3662',''),(8669,1,1223,'5','Arthritis in my right hip. Avascular necrosis diagnosed, severe pain, stiffness and loss of range of motion.',''),(8670,1,1223,'11','Yes, and I want to avoid it if possible',''),(8671,1,1223,'13','Friend/family who was/is a patient',''),(8672,1,1223,'4','Anytime',''),(8673,1,1224,'6.3','Oscar',''),(8674,1,1224,'2','oscar.sanchez32227@gmail.com',''),(8675,1,1224,'3','(619) 764-0028',''),(8676,1,1224,'5','Bulging discs',''),(8677,1,1224,'11','Yes, and I want to avoid it if possible',''),(8678,1,1224,'13','Google/Internet',''),(8679,1,1224,'4','Anytime',''),(8680,1,1225,'6.3','Eric Jones',''),(8681,1,1225,'2','ericjonesmyemail@gmail.com',''),(8682,1,1225,'3','(555) 555-1212',''),(8683,1,1225,'5','Hi drfields.com Administrator. my name_s Eric and I just ran across your website at drfields.com...\r\n\r\nI found it after a quick search, so your SEO_s working out_\r\n\r\nContent looks pretty good_\r\n\r\nOne thing_s missing though_\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds _ 7 out of 10 disappear almost instantly, Surf Surf Surf_ then gone forever.\r\n\r\nI have the solution:\r\n\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to TALK with them - literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try_ it could be huge for your business.\r\n\r\nPlus, now that you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto_ which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8684,1,1225,'11','Yes, and I want to avoid it if possible',''),(8685,1,1225,'13','Another healthcare website',''),(8686,1,1225,'4','1pm – 3pm',''),(8687,1,1226,'6.3','Kimberly Hoffmann',''),(8688,1,1226,'2','drkimhoffmann@gmail.com',''),(8689,1,1226,'3','(310) 955-0735',''),(8690,1,1226,'5','Age 64, lateral menisectomy at age 18, opened up versus arthroscopy, recommended partial replacement 3 years ago., very active lifestyle, recent worsening pain and disability, increased swelling, referred pain to ankle and hip, at its worse entire leg aches, ranging from 3 to a 9 on the pain scale, impacting all areas of life.',''),(8691,1,1226,'11','Yes, and I want to avoid it if possible',''),(8692,1,1226,'13','I am a current patient/was a patient previously',''),(8693,1,1226,'4','Anytime',''),(8694,1,1227,'6.3','claire Smith',''),(8695,1,1227,'2','claire@theheritageseo.com',''),(8696,1,1227,'3','(571) 200-7758',''),(8697,1,1227,'5','Dear,\r\n\r\nTake your Google Business Profile to new heights with our affordable and highly effective optimization strategies. Increase your online visibility, attract more customers, and drive traffic to your business. Our budget-friendly packages ensure you get the best results without breaking the bank. Don\'t miss this opportunity to optimize your profile and stand out.\r\n\r\nContact us today to discuss how we can enhance your Google Business Profile!\r\nregards,\r\nclaire',''),(8698,1,1227,'11','Not yet, and I want to avoid the need for one in the future',''),(8699,1,1227,'13','Referred by my doctor/provider',''),(8700,1,1227,'4','9am – 11am',''),(8701,1,1228,'6.3','Eric Jones',''),(8702,1,1228,'2','ericjonesmyemail@gmail.com',''),(8703,1,1228,'3','(555) 555-1212',''),(8704,1,1228,'5','Hi drfields.com Owner. my name_s Eric and I just ran across your website at drfields.com...\r\n\r\nI found it after a quick search, so your SEO_s working out_\r\n\r\nContent looks pretty good_\r\n\r\nOne thing_s missing though_\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds _ 7 out of 10 disappear almost instantly, Surf Surf Surf_ then gone forever.\r\n\r\nI have the solution:\r\n\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  You_ll know immediately they_re interested and you can call them directly to TALK with them - literally while they_re still on the web looking at your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works and even give it a try_ it could be huge for your business.\r\n\r\nPlus, now that you_ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto_ which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I_ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8705,1,1228,'11','Yes, and I want to avoid it if possible',''),(8706,1,1228,'13','Facebook',''),(8707,1,1228,'4','9am – 11am',''),(8708,1,1229,'6.3','Juliolathe',''),(8709,1,1229,'2','info@drfields.com',''),(8710,1,1229,'3','(376) 422-6762',''),(8711,1,1229,'5','PawSafer™ Can Safely Trim Your Dog\'S Nails From The Comfort Of Your Own Home, And It Only Takes A Few Minutes! \r\n \r\nGet it while it\'s still 50% OFF + FREE Shipping \r\n \r\nBuy here: https://pawsafer.sale \r\n \r\nTo your success,',''),(8712,1,1229,'11','Not yet, and I want to avoid the need for one in the future',''),(8713,1,1229,'13','YouTube',''),(8714,1,1229,'4','Anytime',''),(8715,1,1230,'6.3','Jefferson C Robinson',''),(8716,1,1230,'2','needacarcalljr@yahoo.com',''),(8717,1,1230,'3','(510) 845-3779',''),(8718,1,1230,'5','Back Pain  bending over going up or down stairs',''),(8719,1,1230,'11','Not yet, and I want to avoid the need for one in the future',''),(8720,1,1230,'13','Google/Internet',''),(8721,1,1230,'4','Anytime',''),(8722,1,1231,'6.3','Don Walker',''),(8723,1,1231,'2','donduwa@yahoo.com',''),(8724,1,1231,'3','(408) 218-3662',''),(8725,1,1231,'5','Arthritis in my right hip with avascular necrosis. Muscles in the right upper leg are tight and painful.',''),(8726,1,1231,'11','Yes, and I want to avoid it if possible',''),(8727,1,1231,'13','Friend/family who was/is a patient',''),(8728,1,1231,'4','Anytime',''),(8729,1,1232,'6.3','Eric Skelton',''),(8730,1,1232,'2','ericskelton10@gmail.com',''),(8731,1,1232,'3','(805) 710-3708',''),(8732,1,1232,'5','Loss of disc height from L2 to Sacrum. Back spasms and complete immobile for a week every 2-3 months. Have had cortisone injections. Neurologist says non surgical. Pain is constant 3 shooting to 8-9. Ready to try stem cell. Did PRP on elbow with you about 10 years ago. I am friend of Disbel if you remember?',''),(8733,1,1232,'11','Not yet, and I want to avoid the need for one in the future',''),(8734,1,1232,'13','Friend/family who was/is a patient',''),(8735,1,1232,'4','Anytime',''),(8736,1,1233,'6.3','Catherinasew',''),(8737,1,1233,'2','catherinasew@rapidbubble.com',''),(8738,1,1233,'3','(665) 477-5337',''),(8739,1,1233,'5','Нi!\r\nI\'vе noticеd thаt mаny guуs рrefer regular gіrlѕ.\r\nΙ apрlaudе thе men out thеrе whо hаd thе bаlls to еnjоу thе lovе of mаnу wоmеn аnd choоsе thе one thаt hе knеw would be hiѕ bеѕt friеnd during thе bumру аnd сrаzу thіng called lifе.\r\nI wanted tо bе thаt frіеnd, nоt ϳuѕt a stable, rеliаble аnd borіng hоuѕewife.\r\nI аm 26 yеars оld, Сatherinа, from the Сzech Rерubliс, knоw Εnglish languagе аlso.\r\nΑnуwау, yоu саn find mу рrоfіlе hеrе: http://soubebygpie.gq/idi-77401/',''),(8740,1,1233,'11','Not yet, and I want to avoid the need for one in the future',''),(8741,1,1233,'13','Friend/family who was/is a patient',''),(8742,1,1233,'4','Anytime',''),(8743,1,1234,'6.3','Sachin nayyar',''),(8744,1,1234,'2','sachin.nayyar@saviynt.com',''),(8745,1,1234,'3','(818) 384-2621',''),(8746,1,1234,'5','Torn acl 10 years ago',''),(8747,1,1234,'11','Not yet, and I want to avoid the need for one in the future',''),(8748,1,1234,'13','Google/Internet',''),(8749,1,1234,'4','Anytime',''),(8750,1,1235,'6.3','Gaye Cayot',''),(8751,1,1235,'2','gaye.centprop@gmail.com',''),(8752,1,1235,'3','(562) 743-5151',''),(8753,1,1235,'5','My Mom is 81 years old and has \"acute back pain and leg weakness, , c/f cauda equina\". Her diagnosis, generally, is \"lumbar spondylosis contributing to multilevel canal stenosis, severe at L2-L3 and L4-L5, and multilevel foraminal narrowing, severe at the bilateral L3-L4 neural foramina\".  She has a heart conditional which rules out standard back surgery, so we are seeking alternate treatments that will lessen her pain. I will be happy to send her full MRI results if you think you might be able to help her.\r\nPlease respond and let me know whether or not you think she can be helped by your therapies.\r\nThank you for your time!',''),(8754,1,1235,'11','Yes, and I want to avoid it if possible',''),(8755,1,1235,'13','Referred by my doctor/provider',''),(8756,1,1235,'4','9am – 11am',''),(8757,1,1236,'6.3','Ethan Bregman',''),(8758,1,1236,'2','drebregman@gmail.com',''),(8759,1,1236,'3','(650) 704-2030',''),(8760,1,1236,'5','I am dealing with lumbar spinal stenosis and was wondering about the cost of PRP',''),(8761,1,1236,'11','Not yet, and I want to avoid the need for one in the future',''),(8762,1,1236,'13','Google/Internet',''),(8763,1,1236,'4','Anytime',''),(8764,1,1237,'6.3','Alyse Vigil',''),(8765,1,1237,'2','alyse@uscommercialcleaner.com',''),(8766,1,1237,'3','(612) 888-8872',''),(8767,1,1237,'5','Hello! We’re a commercial cleaning company that provides services all over the United States. We’d be happy to visit your business and submit a bid for your recurring weekly (or more) janitorial and disinfection needs. If you’re interested in our services, please let us know and we’ll send you a no-obligation quote. We can also help you compare pricing on your office cleaning service and address any cleaning issues you may have such as cleaning, communication, shoddy work, etc. Thank you!\r\n\r\n--\r\nAlyse Vigil\r\nUS Commercial Cleaning\r\nalyse@uscommercialcleaner.com\r\n\r\nRespond with stop to optout.',''),(8768,1,1237,'11','Not yet, and I want to avoid the need for one in the future',''),(8769,1,1237,'13','I am a current patient/was a patient previously',''),(8770,1,1237,'4','9am – 11am',''),(8771,1,1238,'6.3','Eric Jones',''),(8772,1,1238,'2','ericjonesmyemail@gmail.com',''),(8773,1,1238,'3','(555) 555-1212',''),(8774,1,1238,'5','Hi drfields.com Admin! my name_s Eric and for just a second, imagine this_\r\n\r\n- Someone does a search and winds up at drfields.com.\r\n\r\n- They hang out for a minute to check it out.  _I_m interested_ but_ maybe__\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line _ you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn_t really your fault _ it happens a LOT _ studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know right then and there _ enabling you to call that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation_ so even if you don_t close a deal then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8775,1,1238,'11','Yes, and I want to avoid it if possible',''),(8776,1,1238,'4','1pm – 3pm',''),(8777,1,1239,'6.3','Cynthia Patricia Doan',''),(8778,1,1239,'2','shuuger@yahoo.com',''),(8779,1,1239,'3','(818) 519-5538',''),(8780,1,1239,'5','Do you take medicaid',''),(8781,1,1239,'11','Not yet, and I want to avoid the need for one in the future',''),(8782,1,1239,'13','Another healthcare website',''),(8783,1,1239,'4','3pm – 5pm',''),(8784,1,1240,'6.3','Joe Celine',''),(8785,1,1240,'2','joe@seo-indepth.com',''),(8786,1,1240,'3','(669) 206-0526',''),(8787,1,1240,'5','Hi there\r\n\r\nI_ve been through your website, and if you_re wondering why more of your visitors aren_t turning into sales, I have the answer for you.\r\n\r\nWould you like a free report on this?\r\n\r\nRegards\r\nJoe\r\n(669) 206-0526',''),(8788,1,1240,'11','Yes, and I want to avoid it if possible',''),(8789,1,1240,'13','YouTube',''),(8790,1,1240,'4','11am – 1pm',''),(8791,1,1241,'6.3','James',''),(8792,1,1241,'2','jcousins2562@yahoo.com',''),(8793,1,1241,'3','(818) 903-4879',''),(8794,1,1241,'5','I have a herniated disc in my L 5 S 1 , this has been on and off for several years and I am tired of the epidural shots ( bandage fix ) I am wondering if stem cell is a good option for a more long term cure',''),(8795,1,1241,'11','Not yet, and I want to avoid the need for one in the future',''),(8796,1,1241,'13','Referred by my doctor/provider',''),(8797,1,1241,'4','Anytime',''),(8798,1,1242,'6.3','Eric Jones',''),(8799,1,1242,'2','ericjonesmyemail@gmail.com',''),(8800,1,1242,'3','(555) 555-1212',''),(8801,1,1242,'5','Hello drfields.com Administrator!\r\n\r\nCool website!\r\n\r\nMy name_s Eric, and I just found your site - drfields.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you_re doing is pretty cool.\r\n \r\nBut if you don_t mind me asking _ after someone like me stumbles across drfields.com, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI_m guessing some, but I also bet you_d like more_ studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere_s a thought _ what if there was an easy way for every visitor to _raise their hand_ to get a phone call from you INSTANTLY_ the second they hit your site and said, _call me now._\r\n\r\nYou can _\r\n  \r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads _ the difference between contacting someone within 5 minutes versus 30 minutes later can be huge _ like 100 times better!\r\n\r\nThat_s why we built out our new SMS Text With Lead feature_ because once you_ve captured the visitor_s phone number, you can automatically start a text message (SMS) conversation.\r\n  \r\nThink about the possibilities _ even if you don_t close a deal then and there, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nWouldn_t that be cool?\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8802,1,1242,'11','Yes, and I want to avoid it if possible',''),(8803,1,1242,'13','Friend/family who was/is a patient',''),(8804,1,1242,'4','11am – 1pm',''),(8805,1,1243,'6.3','Peter Ralphs',''),(8806,1,1243,'2','peterTalm@gmail.com',''),(8807,1,1243,'3','(111) 114-7684',''),(8808,1,1243,'5','Hello drfields.com Owner. \r\n \r\nAre you looking to boost your business’ visibility on the internet as well as reach even more prospective clients? Being included in Google Autocomplete can enhance your company\'s branding, reputation, as well as targeting, causing boosted website web traffic as well as revenue. \r\n \r\nPlease go here https://www.digital-x-press.com/autosuggest/ to find how your business can take advantage of Google Autocomplete and enhance your sales potential. \r\n \r\n \r\nThank you \r\n \r\nPeter Ralphs\r\nDigital X Press SEO Agency',''),(8809,1,1243,'11','Not yet, and I want to avoid the need for one in the future',''),(8810,1,1243,'13','Google/Internet',''),(8811,1,1243,'4','Anytime',''),(8812,1,1244,'6.3','Kristie Klose',''),(8813,1,1244,'2','kristieklose@gmail.com',''),(8814,1,1244,'3','(805) 252-7019',''),(8815,1,1244,'5','I had a ski injury to my left knee in 1986, partial meniscectomy in 1990 (Dr. Todd Grant), and ACL reconstruction with a cadaver patellar tendon in 1995 (Dr. Rick Ryu). I am now experiencing knee pain and can walk but no longer hike. My orthopedic surgeon in Santa Barbara told me that I need knee replacement; however, I am 57 and do not want two knee replacements in my lifetime. Therefore, I am interested in exploring stem cells as an alternative and to buy me more time, assuming I eventually have knee replacement.',''),(8816,1,1244,'11','Yes, and I want to avoid it if possible',''),(8817,1,1244,'13','Google/Internet',''),(8818,1,1244,'4','Anytime',''),(8819,1,1245,'6.3','Teresa Moore',''),(8820,1,1245,'2','teresamoorelt@gmail.com',''),(8821,1,1245,'3','(410) 123-1234',''),(8822,1,1245,'5','Hi there\r\n\r\nI was wondering if it might be ok for my team and i to send you a comprehensive SEO strategy & Proposal to help improve your Google rankings dramatically.\r\nNo commitment for future work, fine print or hidden anything - just an opportunity for you to discuss your goals and how I can help you achieve them.\r\nPlease let me know if you have any questions or if you’d like to see our portfolio of sites we’ve built.\r\n\r\nThanks in advance,\r\nTeresa Moore',''),(8823,1,1245,'11','Yes, and I want to avoid it if possible',''),(8824,1,1245,'13','Google/Internet',''),(8825,1,1245,'4','1pm – 3pm',''),(8826,1,1246,'6.3','KennetheSon',''),(8827,1,1246,'2','shiski2@inrus.top',''),(8828,1,1246,'3','(371) 542-4050',''),(8829,1,1246,'5','Как Купить Шишки Бошки? САЙТ - KOKAIN.VIP Сколько стоят Шишки Бошки? САЙТ - KOKAIN.VIP \r\n \r\n \r\nКУПИТЬ НА САЙТЕ - https://kokain.vip/ \r\n \r\nЗАКАЗАТЬ ЧЕРЕЗ ТЕЛЕГРАММ- https://kokain.vip/ \r\n \r\nДОСТАВКА В РУКИ - https://kokain.vip/ \r\n \r\nЗАКЛАДКА ОНЛАЙН - https://kokain.vip/ \r\n \r\nССЫЛКА В ТЕЛЕГРАММ - https://kokain.vip/ \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\nТеги поисковых слов для запроса \"Шишки Бошки в Москве\" \r\nГде Купить Шишки Бошки в Москве? Как Купить закладку Шишки Бошки в Москве? Цена на Шишки Бошки в Москве? Купить Шишки Бошки с Доставкой в руки в Москве? \r\nСколько Стоит Шишки Бошки в Москве? Почему так просто Купить Шишки Бошки закладкой в Москве? Гарантия на Шишки Бошки в Москве? Купить Шишки Бошки с Гарантией? \r\nКруглосуточные магазины Шишки Бошки в Москве? Оптовые и Розничные продажи Шишки Бошки в Москве? Купить Шишки Бошки в Москве через Телеграмм? \r\nКупить Шишки Бошки в Москве по скидке и хорошей цене? Купить Шишки Бошки в Москве через свой телефон или ноутбук можно легко? \r\nКак купить Шишки Бошки в Москве если нет очень много денег и нужно угостить девушку? С кем можно разделить грамм Шишки Бошки в Москве? \r\nНе плохой или хороший Шишки Бошки можно Купить в Москве на своей улице закладкой? Девушка угостила меня Хорошим Шишки Бошки в Москве из магазина? \r\nМои друзья любят употреблять Шишки Бошки в Москве днем вечером и ночью и потом не спят целые сутки под Шишки Бошки в Москве? \r\nШишки Бошки в Москве можно заказать с доставкой в руки через хорошего курьера прямо в теллеграмм и его привезут в руки без палева в Москве? \r\nМой Шишки Бошки в Москве можно на выставке показывать потому что такой Шишки Бошки в Москве никто и никогда не виде подобного качества тут просто нет? \r\nКак хороший Шишки Бошки в Москве качественный провозят через границу из других стран чтоб люди радовались качеству Шишки Бошки в Москве? \r\nКак ведут себя люди когда употребляют хороший качественный Шишки Бошки в Москве чтоб не спалиться в черных очках, которые цветом как Шишки Бошки в Москве? \r\nМогут ли принять мусора за Шишки Бошки в Москве если узнают что ты берешь его анонимно на сайте с гарантией который много лет продает Шишки Бошки в Москве? \r\nВсе люди по разному реагируют и задают себе вопрос, на который уже есть давно ответ - Как же купить Шишки Бошки в Москве если хочеться качественного Шишки Бошки? \r\n \r\nДополнительные теги - Купить Шишки в Москве, Купить экстази в Москве , Купить гашиш в Москве, Купить мефедрон в Москве, Купить экстази в Москве, Купить МДМА в Москве, \r\nКупить лсд в Москве, Купить Амфетамин в Москве, Купить скорость альфа ПВП в Москве, Купить гидропонику в Москве, Купить метамфетамин в Москве, Купить эйфоретики в Москве, \r\nКупить закладки в Москве, Купить ШИШКИ закладкой в Москве , Купить Стимуляторы в Москве, Купить Галлюцыногены в Москве, Купить Наркотики закладкой в Москве. Тег окончен',''),(8830,1,1246,'11','Not yet, and I want to avoid the need for one in the future',''),(8831,1,1246,'13','Another healthcare website',''),(8832,1,1246,'4','Anytime',''),(8833,1,1247,'6.3','Armando Reyes',''),(8834,1,1247,'2','armando.reyes85@gmail.com',''),(8835,1,1247,'3','(818) 433-8132',''),(8836,1,1247,'5','I have degenerative disc disease and was injured at work, I\'m a firefighter. The disc affected is L4-L5. I have done one PRP/bone marrow injection, it helped a little but not a lot. I was recommended a disc replacement but want to explore other options and want to know if I can still have that surgery if Stem Cells don\'t work.',''),(8837,1,1247,'11','Yes, and I want to avoid it if possible',''),(8838,1,1247,'13','Friend/family who was/is a patient',''),(8839,1,1247,'4','Anytime',''),(8840,1,1248,'6.3','Kyle Devero',''),(8841,1,1248,'2','rkdevero@gmail.com',''),(8842,1,1248,'3','(314) 374-5953',''),(8843,1,1248,'5','Right shoulder and left ankle',''),(8844,1,1248,'11','Not yet, and I want to avoid the need for one in the future',''),(8845,1,1248,'13','Google/Internet',''),(8846,1,1248,'4','9am – 11am',''),(8847,1,1249,'6.3','Joe Celine',''),(8848,1,1249,'2','joe@seo-indepth.com',''),(8849,1,1249,'3','(669) 206-0526',''),(8850,1,1249,'5','Hi there\r\n\r\nI_ve been through your website, and if you_re wondering why more of your visitors aren_t turning into sales, I have the answer for you.\r\n\r\nWould you like a free report on this?\r\n\r\nRegards\r\nJoe\r\n(669) 206-0526',''),(8851,1,1249,'11','Yes, and I want to avoid it if possible',''),(8852,1,1249,'13','Another healthcare website',''),(8853,1,1249,'4','3pm – 5pm',''),(8854,1,1250,'6.3','Brenda Gandara',''),(8855,1,1250,'2','blgandara@gmail.com',''),(8856,1,1250,'3','(949) 662-7375',''),(8857,1,1250,'5','Hi\r\n\r\nI have been having a lot pain on my neck. I have an MRI and is not herniated but has some minor scoliosis. I also have chronic fatigue and had a whiplash injury in 2011',''),(8858,1,1250,'11','Not yet, and I want to avoid the need for one in the future',''),(8859,1,1250,'13','Google/Internet',''),(8860,1,1250,'4','Anytime',''),(8861,1,1251,'6.3','Eric Jones',''),(8862,1,1251,'2','ericjonesmyemail@gmail.com',''),(8863,1,1251,'3','(555) 555-1212',''),(8864,1,1251,'5','Dear drfields.com Administrator. my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nWeb Visitors Into Leads _ CLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8865,1,1251,'11','Yes, and I want to avoid it if possible',''),(8866,1,1251,'13','I am a current patient/was a patient previously',''),(8867,1,1252,'6.3','Enriquebut',''),(8868,1,1252,'2','kotvnaske228j@gmail.com',''),(8869,1,1252,'3','(566) 267-7037',''),(8870,1,1252,'11','Not yet, and I want to avoid the need for one in the future',''),(8871,1,1252,'13','I am a current patient/was a patient previously',''),(8872,1,1252,'4','Anytime',''),(8873,1,1253,'6.3','Dorothy Watson',''),(8874,1,1253,'2','info@mentalwellnesscenter.info',''),(8875,1,1253,'3','(919) 847-2164',''),(8876,1,1253,'5','Hi,\r\n\r\nAs you may have guessed from our website name, mental health is a topic we are extremely passionate about. One important way to ensure our emotional wellness is not only to adopt healthy practices, but ABANDON habits that are detrimental to us. On that note, we’re wondering if you’d be open to us writing an article for you on this subject, with our hope being that you’ll share it on your blog. There is absolutely no charge for this, so please let us know if this is the type of piece you’d publish.\r\n\r\nThank you,\r\nDorothy Watson & Jill Palmer\r\nmentalwellnesscenter.info\r\n\r\nP.S. Interested in an article, just not on the topic we suggested? No problem! Just respond to let us know and we can come up with something else. Or, if you’re not interested in an article at all, just let us know.',''),(8877,1,1253,'11','Not yet, and I want to avoid the need for one in the future',''),(8878,1,1253,'13','Google/Internet',''),(8879,1,1253,'4','Anytime',''),(8880,1,1254,'6.3','dellypur-VexLipsspeasy',''),(8881,1,1254,'2','bike-centre1@outlook.com',''),(8882,1,1254,'3','(702) 710-1623',''),(8883,1,1254,'5','http://tv-express.ru/osobennyj-uhod-kosmeticheskie-sredstva-dlja-idealnoj-krasoty-ruk-i-nog.dhtm \r\nhttp://vsenarodnaya-medicina.ru/bazovyj-nabor-dlya-mastera-manikyura/ \r\nhttps://dezinfo.net/mix/pravilnyj-uhod-za-kutikuloj.html \r\nhttp://www.gadgetblog.ru/apparatnyj-manikyur-v-domashnih-usloviyah/ \r\nhttps://boooh.ru/frezy-dlya-manikyura-informacziya-dlya-nachinayushhih-nejl-masterov/ \r\nhttp://www.obzh.ru/mix/kompleks-mer-dlya-krasivyx-nogtej-247.html \r\nhttps://hramy.ru/blog/kupit-professionalnuyu-kosmetiku-v-sankt-peterburge.htm \r\nhttps://www.klubok.net/07/09/vse-chto-nuzhno-znat-pro-gel-lak-2.html \r\nhttps://www.sergiev-posad.ru/useful/?id=21404 \r\nhttps://about-windows.ru/programmy/internet-magazin-professionalnoj-kosmetiki-dellypur-com-shirokij-assortiment-i-preimushhestva/ \r\nhttps://www.wpdis.co/preimushhestva-pokupki-kosmetiki-v-onlayn-magazine/ \r\nhttps://industrial-wood.ru/novosti/49380-idealnyy-manikyur-s-naborami-dlya-gel-laka-ot-delly-pur-vashe-sovershenstvo-na-konchikah-palcev.html \r\nhttps://fccland.ru/novosti/41445-uhodovaya-kosmetika-koreyskogo-proizvodstva-preimuschestva-i-osobennosti.html \r\nhttps://otomkak.ru/otkrytie-internet-magazina-professionalnoj-kosmetiki/ \r\nhttps://lifeposi.ru/magazin-kosmetiki-v-sankt-peterburge-assortiment-preimushhestva-usloviya-pokupki-37947/ \r\nhttps://www.penza-press.ru/sekrety-zdorovyh-i-uhozhennyh-nogtej-kak-vybrat-idealnyj-magazin-kosmetiki.dhtm \r\nhttps://windows-phone-7.su/news/raskryvaem-sekret-krepkix-nogtej-magiya-manikyurnyx-naborov-i-lakov-dlya-nogtej.html \r\nhttps://complaneta.ru/preimushhestva-magazina-professionalnoj-kosmetiki-dlya-manikyura-kak-vybrat-i-chto-mozhno-priobresti/ \r\nhttps://timeshola.ru/krasota/preimushhestva-magazina-professionalnoj-kosmetiki-dlya-manikyura.html \r\nhttps://remontfor-you.ru/raznoe/interesnoe/kak-vybrat-neobhodimye-tovary-dlya-manikyura-i-pedikyura.html \r\nhttps://images.google.as/url?q=https://dellypur.com/ \r\nhttps://images.google.off.ai/url?q=https://dellypur.com/ \r\nhttps://images.google.com.ag/url?q=https://dellypur.com/ \r\nhttps://images.google.com.ar/url?q=https://dellypur.com/ \r\nhttps://images.google.com.au/url?q=https://dellypur.com/ \r\nhttps://images.google.at/url?q=https://dellypur.com/ \r\nhttps://images.google.az/url?q=https://dellypur.com/ \r\nhttps://images.google.be/url?q=https://dellypur.com/ \r\nhttps://images.google.com.br/url?q=https://dellypur.com/ \r\nhttps://images.google.vg/url?q=https://dellypur.com/ \r\nhttps://images.google.bi/url?q=https://dellypur.com/ \r\nhttps://images.google.ca/url?q=https://dellypur.com/ \r\nhttps://images.google.td/url?q=https://dellypur.com/ \r\nhttps://images.google.cl/url?q=https://dellypur.com/ \r\nhttps://images.google.com.co/url?q=https://dellypur.com/ \r\nhttps://images.google.co.cr/url?q=https://dellypur.com/ \r\nhttps://images.google.ci/url?q=https://dellypur.com/ \r\nhttps://images.google.com.cu/url?q=https://dellypur.com/ \r\nhttps://images.google.cd/url?q=https://dellypur.com/ \r\nhttps://images.google.dk/url?q=https://dellypur.com/ \r\nhttps://images.google.dj/url?q=https://dellypur.com/ \r\nhttps://images.google.com.do/url?q=https://dellypur.com/ \r\nhttps://images.google.com.ec/url?q=https://dellypur.com/ \r\nhttps://images.google.com.sv/url?q=https://dellypur.com/ \r\nhttps://images.google.fm/url?q=https://dellypur.com/ \r\nhttps://images.google.com.fj/url?q=https://dellypur.com/ \r\nhttps://images.google.fi/url?q=https://dellypur.com/ \r\nhttps://images.google.fr/url?q=https://dellypur.com/ \r\nhttps://images.google.gm/url?q=https://dellypur.com/ \r\nhttps://images.google.ge/url?q=https://dellypur.com/ \r\nhttps://images.google.de/url?q=https://dellypur.com/ \r\nhttps://images.google.com.gi/url?q=https://dellypur.com/ \r\nhttps://images.google.com.gr/url?q=https://dellypur.com/ \r\nhttps://images.google.gl/url?q=https://dellypur.com/ \r\nhttps://images.google.gg/url?q=https://dellypur.com/ \r\nhttps://images.google.hn/url?q=https://dellypur.com/ \r\nhttps://images.google.com.hk/url?q=https://dellypur.com/ \r\nhttps://images.google.co.hu/url?q=https://dellypur.com/ \r\nhttps://images.google.co.in/url?q=https://dellypur.com/ \r\nhttps://images.google.ie/url?q=https://dellypur.com/ \r\nhttps://images.google.co.im/url?q=https://dellypur.com/ \r\nhttps://images.google.co.il/url?q=https://dellypur.com/ \r\nhttps://images.google.it/url?q=https://dellypur.com/ \r\nhttps://images.google.com.jm/url?q=https://dellypur.com/ \r\nhttps://images.google.co.jp/url?q=https://dellypur.com/ \r\nhttps://images.google.co.je/url?q=https://dellypur.com/ \r\nhttps://images.google.kz/url?q=https://dellypur.com/ \r\nhttps://images.google.co.kr/url?q=https://dellypur.com/ \r\nhttps://images.google.lv/url?q=https://dellypur.com/ \r\nhttps://images.google.co.ls/url?q=https://dellypur.com/ \r\nhttps://images.google.li/url?q=https://dellypur.com/ \r\nhttps://images.google.lt/url?q=https://dellypur.com/ \r\nhttps://images.google.lu/url?q=https://dellypur.com/ \r\nhttps://images.google.mw/url?q=https://dellypur.com/ \r\nhttps://images.google.com.my/url?q=https://dellypur.com/ \r\nhttps://images.google.com.mt/url?q=https://dellypur.com/ \r\nhttps://images.google.mu/url?q=https://dellypur.com/ \r\nhttps://images.google.com.mx/url?q=https://dellypur.com/ \r\nhttps://images.google.ms/url?q=https://dellypur.com/ \r\nhttps://images.google.com.na/url?q=https://dellypur.com/ \r\nhttps://images.google.com.np/url?q=https://dellypur.com/ \r\nhttps://images.google.nl/url?q=https://dellypur.com/ \r\nhttps://images.google.co.nz/url?q=https://dellypur.com/ \r\nhttps://images.google.com.ni/url?q=https://dellypur.com/ \r\nhttps://images.google.com.nf/url?q=https://dellypur.com/ \r\nhttps://images.google.com.pk/url?q=https://dellypur.com/ \r\nhttps://images.google.com.pa/url?q=https://dellypur.com/ \r\nhttps://images.google.com.py/url?q=https://dellypur.com/ \r\nhttps://images.google.com.pe/url?q=https://dellypur.com/ \r\nhttps://images.google.com.ph/url?q=https://dellypur.com/ \r\nhttps://images.google.pn/url?q=https://dellypur.com/ \r\nhttps://images.google.pl/url?q=https://dellypur.com/ \r\nhttps://images.google.pt/url?q=https://dellypur.com/ \r\nhttps://images.google.com.pr/url?q=https://dellypur.com/ \r\nhttps://images.google.cg/url?q=https://dellypur.com/ \r\nhttps://images.google.ro/url?q=https://dellypur.com/ \r\nhttps://images.google.ru/url?q=https://dellypur.com/ \r\nhttps://images.google.rw/url?q=https://dellypur.com/ \r\nhttps://images.google.sh/url?q=https://dellypur.com/ \r\nhttps://images.google.sm/url?q=https://dellypur.com/ \r\nhttps://images.google.com.sg/url?q=https://dellypur.com/ \r\nhttps://images.google.sk/url?q=https://dellypur.com/ \r\nhttps://images.google.co.za/url?q=https://dellypur.com/ \r\nhttps://images.google.es/url?q=https://dellypur.com/ \r\nhttps://images.google.se/url?q=https://dellypur.com/ \r\nhttps://images.google.ch/url?q=https://dellypur.com/ \r\nhttps://images.google.com.tw/url?q=https://dellypur.com/ \r\nhttps://images.google.co.th/url?q=https://dellypur.com/ \r\nhttps://images.google.tt/url?q=https://dellypur.com/ \r\nhttps://images.google.com.tr/url?q=https://dellypur.com/ \r\nhttps://images.google.com.ua/url?q=https://dellypur.com/ \r\nhttps://images.google.ae/url?q=https://dellypur.com/ \r\nhttps://images.google.co.uk/url?q=https://dellypur.com/ \r\nhttps://images.google.com.uy/url?q=https://dellypur.com/ \r\nhttps://images.google.uz/url?q=https://dellypur.com/ \r\nhttps://images.google.vu/url?q=https://dellypur.com/ \r\nhttps://images.google.co.ve/url?q=https://dellypur.com/ \r\nhttps://www.google.co.ao/url?q=https://dellypur.com/ \r\nhttps://images.google.im/url?q=https://dellypur.com/ \r\nhttps://images.google.dm/url?q=https://dellypur.com/ \r\nhttps://google.com.pa/url?q=https://dellypur.com/ \r\nhttp://maps.google.mw/url?q=https://dellypur.com/ \r\nhttps://google.ac/url?q=https://dellypur.com/ \r\nhttps://google.com.gh/url?q=https://dellypur.com/ \r\nhttps://google.dz/url?q=https://dellypur.com/ \r\nhttp://images.google.ki/url?q=https://dellypur.com/ \r\nhttp://www.google.im/url?q=https://dellypur.com/ \r\nhttps://google.com.mx/url?q=https://dellypur.com/ \r\nhttps://www.google.cz/url?q=https://dellypur.com/ \r\nhttp://google.hr/url?q=https://dellypur.com/ \r\nhttps://google.ml/url?q=https://dellypur.com/ \r\nhttps://www.google.com.au/url?q=https://dellypur.com/ \r\nhttps://images.google.bs/url?q=https://dellypur.com/ \r\nhttps://google.co.tz/url?q=https://dellypur.com/ \r\nhttp://google.cg/url?q=https://dellypur.com/ \r\nhttp://maps.google.is/url?q=https://dellypur.com/ \r\nhttp://google.si/url?q=https://dellypur.com/ \r\nhttp://google.com.py/url?q=https://dellypur.com/ \r\nhttp://maps.google.co.cr/url?q=https://dellypur.com/ \r\nhttp://www.google.mk/url?q=https://dellypur.com/ \r\nhttp://www.google.ge/url?q=https://dellypur.com/ \r\nhttps://images.google.ml/url?q=https://dellypur.com/ \r\nhttps://www.google.com.sa/url?q=https://dellypur.com/ \r\nhttp://google.mg/url?q=https://dellypur.com/ \r\nhttp://google.com.ec/url?q=https://dellypur.com/ \r\nhttps://google.rs/url?q=https://dellypur.com/ \r\nhttps://www.google.co.hu/url?q=https://dellypur.com/ \r\nhttp://google.md/url?q=https://dellypur.com/ \r\nhttps://images.google.hu/url?q=https://dellypur.com/ \r\nhttps://www.google.com.tw/url?q=https://dellypur.com/ \r\nhttps://google.ae/url?q=https://dellypur.com/ \r\nhttps://images.google.jo/url?q=https://dellypur.com/ \r\nhttp://images.google.tm/url?q=https://dellypur.com/ \r\nhttps://images.google.com.mm/url?q=https://dellypur.com/ \r\nhttps://maps.google.vu/url?q=https://dellypur.com/ \r\nhttps://maps.google.co.ls/url?q=https://dellypur.com/ \r\nhttps://www.google.com.cy/url?q=https://dellypur.com/ \r\nhttp://google.com.lb/url?q=https://dellypur.com/ \r\nhttp://google.co.kr/url?q=https://dellypur.com/ \r\nhttp://images.google.nu/url?q=https://dellypur.com/ \r\nhttp://google.cl/url?q=https://dellypur.com/ \r\nhttp://www.google.com.bo/url?q=https://dellypur.com/ \r\nhttps://google.ad/url?q=https://dellypur.com/ \r\nhttps://maps.google.pt/url?q=https://dellypur.com/ \r\nhttps://maps.google.es/url?q=https://dellypur.com/ \r\nhttps://maps.google.sn/url?q=https://dellypur.com/ \r\nhttp://google.tk/url?q=https://dellypur.com/ \r\nhttps://google.com.bn/url?q=https://dellypur.com/ \r\nhttps://google.com.ua/url?q=https://dellypur.com/ \r\nhttps://www.google.com.sg/url?q=https://dellypur.com/ \r\nhttps://images.google.info/url?q=https://dellypur.com/ \r\nhttps://maps.google.de/url?q=https://dellypur.com/ \r\nhttps://images.google.cv/url?q=https://dellypur.com/ \r\nhttp://google.com.nf/url?q=https://dellypur.com/ \r\nhttps://images.google.com.ly/url?q=https://dellypur.com/ \r\nhttp://images.google.tg/url?q=https://dellypur.com/ \r\nhttp://google.cv/url?q=https://dellypur.com/ \r\nhttp://gngjd.com/url?q=https://dellypur.com/ \r\nhttp://www.google.je/url?q=https://dellypur.com/ \r\nhttp://maps.google.by/url?q=https://dellypur.com/ \r\nhttp://maps.google.fi/url?q=https://dellypur.com/ \r\nhttps://images.gngjd.com/url?q=https://dellypur.com/ \r\nhttp://google.ne/url?q=https://dellypur.com/ \r\nhttp://images.google.kg/url?q=https://dellypur.com/ \r\nhttps://www.google.cn/url?q=https://dellypur.com/ \r\nhttps://google.am/url?q=https://dellypur.com/ \r\nhttp://google.com.ly/url?q=https://dellypur.com/ \r\nhttps://google.iq/url?q=https://dellypur.com/ \r\nhttps://google.com.sv/url?q=https://dellypur.com/ \r\nhttps://google.sc/url?q=https://dellypur.com/ \r\nhttp://google.kg/url?q=https://dellypur.com/ \r\nhttp://google.li/url?q=https://dellypur.com/ \r\nhttp://images.google.al/url?q=https://dellypur.com/ \r\nhttps://maps.google.je/url?q=https://dellypur.com/ \r\nhttp://maps.google.to/url?q=https://dellypur.com/ \r\nhttp://google.co.cr/url?q=https://dellypur.com/ \r\nhttp://images.google.com.tj/url?q=https://dellypur.com/ \r\nhttps://www.google.com.ph/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.bn/url?q=https://dellypur.com/ \r\nhttps://www.google.as/url?q=https://dellypur.com/ \r\nhttps://images.google.co.ao/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.bo/url?q=https://dellypur.com/ \r\nhttps://maps.google.com/url?q=https://dellypur.com/ \r\nhttps://www.google.com.bh/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.mm/url?q=https://dellypur.com/ \r\nhttp://google.com.gi/url?q=https://dellypur.com/ \r\nhttp://maps.google.ba/url?q=https://dellypur.com/ \r\nhttp://google.co.id/url?q=https://dellypur.com/ \r\nhttp://google.be/url?q=https://dellypur.com/ \r\nhttp://images.google.mg/url?q=https://dellypur.com/ \r\nhttp://google.com.ar/url?q=https://dellypur.com/ \r\nhttps://maps.google.co.za/url?q=https://dellypur.com/ \r\nhttps://www.google.gp/url?q=https://dellypur.com/ \r\nhttp://www.google.sh/url?q=https://dellypur.com/ \r\nhttps://images.google.ee/url?q=https://dellypur.com/ \r\nhttps://www.google.rw/url?q=https://dellypur.com/ \r\nhttp://images.google.si/url?q=https://dellypur.com/ \r\nhttps://www.google.at/url?q=https://dellypur.com/ \r\nhttp://maps.google.at/url?q=https://dellypur.com/ \r\nhttp://maps.google.co.in/url?q=https://dellypur.com/ \r\nhttps://maps.google.ga/url?q=https://dellypur.com/ \r\nhttp://maps.google.sm/url?q=https://dellypur.com/ \r\nhttp://google.ms/url?q=https://dellypur.com/ \r\nhttps://images.google.com.gh/url?q=https://dellypur.com/ \r\nhttp://maps.google.cn/url?q=https://dellypur.com/ \r\nhttps://www.google.com.na/url?q=https://dellypur.com/ \r\nhttps://maps.google.hr/url?q=https://dellypur.com/ \r\nhttps://google.ci/url?q=https://dellypur.com/ \r\nhttps://images.google.hr/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.do/url?q=https://dellypur.com/ \r\nhttp://google.lk/url?q=https://dellypur.com/ \r\nhttp://images.google.cn/url?q=https://dellypur.com/ \r\nhttp://www.bon-vivant.net/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.gt/url?q=https://dellypur.com/ \r\nhttp://www.google.com.ag/url?q=https://dellypur.com/ \r\nhttps://maps.google.mu/url?q=https://dellypur.com/ \r\nhttps://google.com.ng/url?q=https://dellypur.com/ \r\nhttps://www.google.co.uk/url?q=https://dellypur.com/ \r\nhttps://google.us/url?q=https://dellypur.com/ \r\nhttps://www.google.com.tr/url?q=https://dellypur.com/ \r\nhttp://www.google.co.ma/url?q=https://dellypur.com/ \r\nhttps://maps.google.co.zw/url?q=https://dellypur.com/ \r\nhttps://www.google.bs/url?q=https://dellypur.com/ \r\nhttps://www.google.pl/url?q=https://dellypur.com/ \r\nhttp://www.googleadservices.com/url?q=https://dellypur.com/ \r\nhttp://google.kz/url?q=https://dellypur.com/ \r\nhttps://google.com.mt/url?q=https://dellypur.com/ \r\nhttp://www.google.co.zw/url?q=https://dellypur.com/ \r\nhttps://maps.google.ne/url?q=https://dellypur.com/ \r\nhttps://google.com.qa/url?q=https://dellypur.com/ \r\nhttps://google.se/url?q=https://dellypur.com/ \r\nhttp://www.google.mw/url?q=https://dellypur.com/ \r\nhttps://maps.google.co.mz/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.sv/url?q=https://dellypur.com/ \r\nhttps://www.google.sm/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.tw/url?q=https://dellypur.com/ \r\nhttps://google.ca/url?q=https://dellypur.com/ \r\nhttps://www.google.is/url?q=https://dellypur.com/ \r\nhttps://google.com.jm/url?q=https://dellypur.com/ \r\nhttp://images.google.co.ug/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.kh/url?q=https://dellypur.com/ \r\nhttp://maps.google.tl/url?q=https://dellypur.com/ \r\nhttp://www.google.co.nz/url?q=https://dellypur.com/ \r\nhttps://www.google.gg/url?q=https://dellypur.com/ \r\nhttps://google.to/url?q=https://dellypur.com/ \r\nhttps://google.ro/url?q=https://dellypur.com/ \r\nhttp://google.td/url?q=https://dellypur.com/ \r\nhttps://www.google.by/url?q=https://dellypur.com/ \r\nhttps://www.google.nl/url?q=https://dellypur.com/ \r\nhttp://maps.google.ci/url?q=https://dellypur.com/ \r\nhttp://maps.google.dz/url?q=https://dellypur.com/ \r\nhttps://google.hu/url?q=https://dellypur.com/ \r\nhttp://images.google.ht/url?q=https://dellypur.com/ \r\nhttp://google.mv/url?q=https://dellypur.com/ \r\nhttps://google.cf/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.ly/url?q=https://dellypur.com/ \r\nhttp://www.google.nu/url?q=https://dellypur.com/ \r\nhttp://google.com.tj/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.mt/url?q=https://dellypur.com/ \r\nhttps://google.so/url?q=https://dellypur.com/ \r\nhttp://images.google.bj/url?q=https://dellypur.com/ \r\nhttps://maps.google.la/url?q=https://dellypur.com/ \r\nhttps://images.google.us/url?q=https://dellypur.com/ \r\nhttps://images.google.com.eg/url?q=https://dellypur.com/ \r\nhttps://images.google.cf/url?q=https://dellypur.com/ \r\nhttps://images.google.la/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.ag/url?q=https://dellypur.com/ \r\nhttp://google.ga/url?q=https://dellypur.com/ \r\nhttp://google.co.uz/url?q=https://dellypur.com/ \r\nhttp://maps.google.no/url?q=https://dellypur.com/ \r\nhttps://www.google.gl/url?q=https://dellypur.com/ \r\nhttp://images.google.co.vi/url?q=https://dellypur.com/ \r\nhttps://images.google.ne/url?q=https://dellypur.com/ \r\nhttps://google.com.om/url?q=https://dellypur.com/ \r\nhttp://maps.google.lt/url?q=https://dellypur.com/ \r\nhttps://maps.google.kg/url?q=https://dellypur.com/ \r\nhttp://www.google.com.hk/url?q=https://dellypur.com/ \r\nhttps://google.com.co/url?q=https://dellypur.com/ \r\nhttps://google.dk/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.sa/url?q=https://dellypur.com/ \r\nhttp://google.com.fj/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.ec/url?q=https://dellypur.com/ \r\nhttps://maps.google.mn/url?q=https://dellypur.com/ \r\nhttps://maps.google.bf/url?q=https://dellypur.com/ \r\nhttps://www.google.tt/url?q=https://dellypur.com/ \r\nhttps://www.google.dj/url?q=https://dellypur.com/ \r\nhttps://www.google.com.pr/url?q=https://dellypur.com/ \r\nhttps://maps.google.ws/url?q=https://dellypur.com/ \r\nhttp://google.jo/url?q=https://dellypur.com/ \r\nhttps://google.co.ug/url?q=https://dellypur.com/ \r\nhttps://images.google.com.bd/url?q=https://dellypur.com/ \r\nhttps://google.tg/url?q=https://dellypur.com/ \r\nhttp://maps.google.dm/url?q=https://dellypur.com/ \r\nhttps://www.google.pn/url?q=https://dellypur.com/ \r\nhttps://www.google.com.et/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.jm/url?q=https://dellypur.com/ \r\nhttp://www.google.bg/url?q=https://dellypur.com/ \r\nhttp://maps.google.hu/url?q=https://dellypur.com/ \r\nhttps://maps.google.kz/url?q=https://dellypur.com/ \r\nhttps://images.google.com.pl/url?q=https://dellypur.com/ \r\nhttp://www.google.st/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.kw/url?q=https://dellypur.com/ \r\nhttps://maps.google.ru/url?q=https://dellypur.com/ \r\nhttps://google.co.mz/url?q=https://dellypur.com/ \r\nhttp://www.google.co.ls/url?q=https://dellypur.com/ \r\nhttps://www.google.az/url?q=https://dellypur.com/ \r\nhttp://maps.google.co.uk/url?q=https://dellypur.com/ \r\nhttps://www.google.com.do/url?q=https://dellypur.com/ \r\nhttp://www.google.es/url?q=https://dellypur.com/ \r\nhttp://google.gm/url?q=https://dellypur.com/ \r\nhttp://images.google.so/url?q=https://dellypur.com/ \r\nhttps://www.google.com.pk/url?q=https://dellypur.com/ \r\nhttps://www.google.com.sb/url?q=https://dellypur.com/ \r\nhttps://images.google.ad/url?q=https://dellypur.com/ \r\nhttp://google.sn/url?q=https://dellypur.com/ \r\nhttp://google.ps/url?q=https://dellypur.com/ \r\nhttps://maps.google.bg/url?q=https://dellypur.com/ \r\nhttps://images.google.com.cy/url?q=https://dellypur.com/ \r\nhttp://www.google.pt/url?q=https://dellypur.com/ \r\nhttps://images.google.to/url?q=https://dellypur.com/ \r\nhttp://images.google.co.uz/url?q=https://dellypur.com/ \r\nhttp://google.com.sl/url?q=https://dellypur.com/ \r\nhttp://www.google.gy/url?q=https://dellypur.com/ \r\nhttp://www.google.cd/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.my/url?q=https://dellypur.com/ \r\nhttp://www.google.com.ai/url?q=https://dellypur.com/ \r\nhttps://google.hn/url?q=https://dellypur.com/ \r\nhttp://images.google.ba/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.pe/url?q=https://dellypur.com/ \r\nhttp://google.de/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.gi/url?q=https://dellypur.com/ \r\nhttps://images.google.cat/url?q=https://dellypur.com/ \r\nhttps://www.google.co.ck/url?q=https://dellypur.com/ \r\nhttps://images.google.com.bn/url?q=https://dellypur.com/ \r\nhttp://maps.google.ae/url?q=https://dellypur.com/ \r\nhttp://images.google.no/url?q=https://dellypur.com/ \r\nhttp://maps.google.bs/url?q=https://dellypur.com/ \r\nhttp://maps.google.gy/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.pa/url?q=https://dellypur.com/ \r\nhttps://google.cc/url?q=https://dellypur.com/ \r\nhttp://google.co.th/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.mx/url?q=https://dellypur.com/ \r\nhttp://www.google.lu/url?q=https://dellypur.com/ \r\nhttps://google.bf/url?q=https://dellypur.com/ \r\nhttp://www.google.it/url?q=https://dellypur.com/ \r\nhttp://google.com.br/url?q=https://dellypur.com/ \r\nhttp://images.google.bg/url?q=https://dellypur.com/ \r\nhttp://google.co.il/url?q=https://dellypur.com/ \r\nhttps://google.ws/url?q=https://dellypur.com/ \r\nhttp://images.google.st/url?q=https://dellypur.com/ \r\nhttp://duck.com/url?q=https://dellypur.com/ \r\nhttps://www.google.net/url?q=https://dellypur.com/ \r\nhttps://images.google.sn/url?q=https://dellypur.com/ \r\nhttp://maps.google.co.jp/url?q=https://dellypur.com/ \r\nhttp://www.google.bj/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.qa/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.co/url?q=https://dellypur.com/ \r\nhttp://www.google.ch/url?q=https://dellypur.com/ \r\nhttp://www.google.com.pe/url?q=https://dellypur.com/ \r\nhttp://images.google.co.mz/url?q=https://dellypur.com/ \r\nhttps://www.google.cm/url?q=https://dellypur.com/ \r\nhttp://maps.google.nr/url?q=https://dellypur.com/ \r\nhttps://www.google.al/url?q=https://dellypur.com/ \r\nhttps://google.sk/url?q=https://dellypur.com/ \r\nhttp://maps.google.rs/url?q=https://dellypur.com/ \r\nhttp://maps.google.gr/url?q=https://dellypur.com/ \r\nhttps://google.la/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.ph/url?q=https://dellypur.com/ \r\nhttps://www.google.com/url?q=https://dellypur.com/ \r\nhttp://google.ee/url?q=https://dellypur.com/ \r\nhttps://google.com.pl/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.pg/url?q=https://dellypur.com/ \r\nhttps://google.vg/url?q=https://dellypur.com/ \r\nhttps://www.google.co.ke/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.pr/url?q=https://dellypur.com/ \r\nhttp://www.google.no/url?q=https://dellypur.com/ \r\nhttps://maps.google.fr/url?q=https://dellypur.com/ \r\nhttps://maps.google.as/url?q=https://dellypur.com/ \r\nhttps://google.mn/url?q=https://dellypur.com/ \r\nhttp://google.com.kh/url?q=https://dellypur.com/ \r\nhttp://images.google.me/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.sl/url?q=https://dellypur.com/ \r\nhttp://maps.google.pn/url?q=https://dellypur.com/ \r\nhttp://www.google.fr/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.bz/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.cu/url?q=https://dellypur.com/ \r\nhttps://google.com.eg/url?q=https://dellypur.com/ \r\nhttp://www.google.com.kw/url?q=https://dellypur.com/ \r\nhttps://google.com.cu/url?q=https://dellypur.com/ \r\nhttps://www.google.co.in/url?q=https://dellypur.com/ \r\nhttp://maps.google.tt/url?q=https://dellypur.com/ \r\nhttp://google.com.gt/url?q=https://dellypur.com/ \r\nhttp://maps.google.ge/url?q=https://dellypur.com/ \r\nhttps://maps.google.vg/url?q=https://dellypur.com/ \r\nhttp://images.google.com.om/url?q=https://dellypur.com/ \r\nhttp://google.ht/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.na/url?q=https://dellypur.com/ \r\nhttp://google.ru/url?q=https://dellypur.com/ \r\nhttps://maps.google.gg/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.br/url?q=https://dellypur.com/ \r\nhttps://maps.google.li/url?q=https://dellypur.com/ \r\nhttp://www.google.ba/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.lb/url?q=https://dellypur.com/ \r\nhttp://images.google.ws/url?q=https://dellypur.com/ \r\nhttp://images.google.com.gt/url?q=https://dellypur.com/ \r\nhttp://maps.g.cn/url?q=https://dellypur.com/ \r\nhttp://google.co.zm/url?q=https://dellypur.com/ \r\nhttps://www.google.tl/url?q=https://dellypur.com/ \r\nhttp://www.google.com.np/url?q=https://dellypur.com/ \r\nhttps://maps.google.co.nz/url?q=https://dellypur.com/ \r\nhttp://maps.google.cf/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.et/url?q=https://dellypur.com/ \r\nhttp://maps.google.rw/url?q=https://dellypur.com/ \r\nhttps://maps.google.co.ve/url?q=https://dellypur.com/ \r\nhttps://images.google.co.ck/url?q=https://dellypur.com/ \r\nhttps://images.google.co.zm/url?q=https://dellypur.com/ \r\nhttps://www.google.mu/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.py/url?q=https://dellypur.com/ \r\nhttp://www.google.lv/url?q=https://dellypur.com/ \r\nhttp://maps.google.co.ug/url?q=https://dellypur.com/ \r\nhttps://maps.google.it/url?q=https://dellypur.com/ \r\nhttps://google.fi/url?q=https://dellypur.com/ \r\nhttps://maps.google.ms/url?q=https://dellypur.com/ \r\nhttps://maps.google.mv/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.eg/url?q=https://dellypur.com/ \r\nhttps://maps.google.so/url?q=https://dellypur.com/ \r\nhttp://www.google.nr/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.ar/url?q=https://dellypur.com/ \r\nhttp://images.google.com.bo/url?q=https://dellypur.com/ \r\nhttps://maps.google.tk/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.hk/url?q=https://dellypur.com/ \r\nhttps://www.google.com.vn/url?q=https://dellypur.com/ \r\nhttps://www.google.bi/url?q=https://dellypur.com/ \r\nhttps://images.google.co.tz/url?q=https://dellypur.com/ \r\nhttp://google.co.bw/url?q=https://dellypur.com/ \r\nhttps://images.google.tl/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.sg/url?q=https://dellypur.com/ \r\nhttps://images.google.mv/url?q=https://dellypur.com/ \r\nhttps://www.google.info/url?q=https://dellypur.com/ \r\nhttps://www.google.com.bz/url?q=https://dellypur.com/ \r\nhttp://maps.google.ee/url?q=https://dellypur.com/ \r\nhttp://google.co.za/url?q=https://dellypur.com/ \r\nhttp://www.g.cn/url?q=https://dellypur.com/ \r\nhttps://maps.google.ad/url?q=https://dellypur.com/ \r\nhttps://maps.google.hn/url?q=https://dellypur.com/ \r\nhttps://images.google.is/url?q=https://dellypur.com/ \r\nhttps://maps.google.ca/url?q=https://dellypur.com/ \r\nhttp://maps.google.ro/url?q=https://dellypur.com/ \r\nhttps://images.google.com.kh/url?q=https://dellypur.com/ \r\nhttp://google.com.pg/url?q=https://dellypur.com/ \r\nhttps://maps.google.co.vi/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.np/url?q=https://dellypur.com/ \r\nhttps://images.google.tk/url?q=https://dellypur.com/ \r\nhttp://images.google.nr/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.ng/url?q=https://dellypur.com/ \r\nhttps://maps.google.ki/url?q=https://dellypur.com/ \r\nhttps://images.google.cm/url?q=https://dellypur.com/ \r\nhttp://maps.google.gm/url?q=https://dellypur.com/ \r\nhttps://images.google.by/url?q=https://dellypur.com/ \r\nhttps://google.fm/url?q=https://dellypur.com/ \r\nhttp://google.co.vi/url?q=https://dellypur.com/ \r\nhttp://maps.google.cz/url?q=https://dellypur.com/ \r\nhttps://images.google.co.ma/url?q=https://dellypur.com/ \r\nhttp://www.google.com.vc/url?q=https://dellypur.com/ \r\nhttps://maps.google.jo/url?q=https://dellypur.com/ \r\nhttp://images.google.com.sb/url?q=https://dellypur.com/ \r\nhttps://images.google.com/url?q=https://dellypur.com/ \r\nhttps://maps.google.ch/url?q=https://dellypur.com/ \r\nhttp://maps.google.mk/url?q=https://dellypur.com/ \r\nhttp://www.google.com.ni/url?q=https://dellypur.com/ \r\nhttp://images.google.cz/url?q=https://dellypur.com/ \r\nhttps://images.google.com.vc/url?q=https://dellypur.com/ \r\nhttps://maps.google.co.ke/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.uy/url?q=https://dellypur.com/ \r\nhttps://www.google.ie/url?q=https://dellypur.com/ \r\nhttps://maps.google.nu/url?q=https://dellypur.com/ \r\nhttp://images.google.cc/url?q=https://dellypur.com/ \r\nhttps://images.google.gr/url?q=https://dellypur.com/ \r\nhttps://google.lt/url?q=https://dellypur.com/ \r\nhttp://google.tm/url?q=https://dellypur.com/ \r\nhttps://maps.google.co.bw/url?q=https://dellypur.com/ \r\nhttp://www.google.vu/url?q=https://dellypur.com/ \r\nhttp://maps.google.lu/url?q=https://dellypur.com/ \r\nhttp://maps.google.lv/url?q=https://dellypur.com/ \r\nhttps://images.google.je/url?q=https://dellypur.com/ \r\nhttps://www.google.co.ve/url?q=https://dellypur.com/ \r\nhttps://images.google.com.ng/url?q=https://dellypur.com/ \r\nhttp://googlemaps.com/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.fj/url?q=https://dellypur.com/ \r\nhttp://plus.google.com/url?q=https://dellypur.com/ \r\nhttp://plus.gngjd.com/url?q=https://dellypur.com/ \r\nhttp://google.com.af/url?q=https://dellypur.com/ \r\nhttps://images.google.md/url?q=https://dellypur.com/ \r\nhttps://www.google.com.mm/url?q=https://dellypur.com/ \r\nhttps://maps.google.st/url?q=https://dellypur.com/ \r\nhttp://maps.google.cat/url?q=https://dellypur.com/ \r\nhttp://google.co.jp/url?q=https://dellypur.com/ \r\nhttps://maps.google.lk/url?q=https://dellypur.com/ \r\nhttp://maps.google.co.kr/url?q=https://dellypur.com/ \r\nhttp://google.com.bd/url?q=https://dellypur.com/ \r\nhttps://images.google.co.ke/url?q=https://dellypur.com/ \r\nhttps://www.google.gr/url?q=https://dellypur.com/ \r\nhttps://images.google.ac/url?q=https://dellypur.com/ \r\nhttp://maps.google.ie/url?q=https://dellypur.com/ \r\nhttp://google.com.tn/url?q=https://dellypur.com/ \r\nhttps://maps.google.iq/url?q=https://dellypur.com/ \r\nhttp://images.google.com.lb/url?q=https://dellypur.com/ \r\nhttps://images.google.ga/url?q=https://dellypur.com/ \r\nhttp://maps.google.nl/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.ai/url?q=https://dellypur.com/ \r\nhttps://maps.google.cl/url?q=https://dellypur.com/ \r\nhttp://maps.google.co.id/url?q=https://dellypur.com/ \r\nhttps://maps.google.fm/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.ni/url?q=https://dellypur.com/ \r\nhttps://maps.google.bi/url?q=https://dellypur.com/ \r\nhttps://www.google.ki/url?q=https://dellypur.com/ \r\nhttps://google.dm/url?q=https://dellypur.com/ \r\nhttps://images.google.mn/url?q=https://dellypur.com/ \r\nhttps://images.google.gy/url?q=https://dellypur.com/ \r\nhttps://google.com.my/url?q=https://dellypur.com/ \r\nhttp://maps.google.tg/url?q=https://dellypur.com/ \r\nhttps://images.google.com.sa/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.om/url?q=https://dellypur.com/ \r\nhttps://images.google.com.vn/url?q=https://dellypur.com/ \r\nhttps://maps.google.co.hu/url?q=https://dellypur.com/ \r\nhttp://maps.google.be/url?q=https://dellypur.com/ \r\nhttp://images.google.com.bh/url?q=https://dellypur.com/ \r\nhttps://images.google.com.kw/url?q=https://dellypur.com/ \r\nhttps://maps.google.gp/url?q=https://dellypur.com/ \r\nhttp://images.google.com.af/url?q=https://dellypur.com/ \r\nhttp://images.google.com.bz/url?q=https://dellypur.com/ \r\nhttps://maps.google.se/url?q=https://dellypur.com/ \r\nhttps://maps.google.cg/url?q=https://dellypur.com/ \r\nhttps://images.google.mk/url?q=https://dellypur.com/ \r\nhttps://www.google.com.uy/url?q=https://dellypur.com/ \r\nhttp://maps.google.cm/url?q=https://dellypur.com/ \r\nhttps://maps.google.cd/url?q=https://dellypur.com/ \r\nhttps://maps.google.mg/url?q=https://dellypur.com/ \r\nhttps://images.google.am/url?q=https://dellypur.com/ \r\nhttps://images.google.com.tn/url?q=https://dellypur.com/ \r\nhttps://images.google.co.id/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.bd/url?q=https://dellypur.com/ \r\nhttps://maps.google.co.tz/url?q=https://dellypur.com/ \r\nhttp://images.google.com.ai/url?q=https://dellypur.com/ \r\nhttp://images.google.bf/url?q=https://dellypur.com/ \r\nhttp://maps.google.co.il/url?q=https://dellypur.com/ \r\nhttp://maps.google.co.zm/url?q=https://dellypur.com/ \r\nhttp://images.google.com.qa/url?q=https://dellypur.com/ \r\nhttp://images.google.lk/url?q=https://dellypur.com/ \r\nhttp://maps.google.cv/url?q=https://dellypur.com/ \r\nhttp://maps.google.im/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.gh/url?q=https://dellypur.com/ \r\nhttps://maps.google.co.ao/url?q=https://dellypur.com/ \r\nhttp://maps.google.co.th/url?q=https://dellypur.com/ \r\nhttps://maps.google.gl/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.ua/url?q=https://dellypur.com/ \r\nhttp://maps.google.td/url?q=https://dellypur.com/ \r\nhttps://google.me/url?q=https://dellypur.com/ \r\nhttps://maps.google.bj/url?q=https://dellypur.com/ \r\nhttps://maps.google.pl/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.tr/url?q=https://dellypur.com/ \r\nhttps://images.google.sc/url?q=https://dellypur.com/ \r\nhttps://images.google.com.et/url?q=https://dellypur.com/ \r\nhttps://maps.google.dk/url?q=https://dellypur.com/ \r\nhttps://images.google.iq/url?q=https://dellypur.com/ \r\nhttp://maps.google.sc/url?q=https://dellypur.com/ \r\nhttp://images.google.co.bw/url?q=https://dellypur.com/ \r\nhttp://images.google.dz/url?q=https://dellypur.com/ \r\nhttps://maps.google.ht/url?q=https://dellypur.com/ \r\nhttps://google.cat/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.bh/url?q=https://dellypur.com/ \r\nhttp://maps.google.ml/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.pl/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.vc/url?q=https://dellypur.com/ \r\nhttps://maps.google.com.au/url?q=https://dellypur.com/ \r\nhttp://images.g.cn/url?q=https://dellypur.com/ \r\nhttp://maps.google.co.ck/url?q=https://dellypur.com/ \r\nhttp://maps.google.sh/url?q=https://dellypur.com/ \r\nhttp://maps.google.com.sb/url?q=https://dellypur.com/ \r\nhttp://maps.google.sk/url?q=https://dellypur.com/ \r\nhttp://images.google.rs/url?q=https://dellypur.com/ \r\nhttp://maps.google.dj/url?q=https://dellypur.com/ \r\nhttp://maps.google.si/url?q=https://dellypur.com/ \r\nhttp://images.google.ps/url?q=https://dellypur.com/ \r\nhttp://images.google.com.pg/url?q=https://dellypur.com/ \r\nhttps://images.google.net/url?q=https://dellypur.com/ \r\nhttp://images.google.com.sl/url?q=https://dellypur.com/ \r\nhttps://images.google.gp/url?q=https://dellypur.com/ \r\nhttps://maps.gngjd.com/url?q=https://dellypur.com/ \r\nhttps://images.google.co.zw/url?q=https://dellypur.com/',''),(8884,1,1254,'11','Not yet, and I want to avoid the need for one in the future',''),(8885,1,1254,'13','YouTube',''),(8886,1,1254,'4','Anytime',''),(8887,1,1255,'6.3','PetarHok',''),(8888,1,1255,'2','betcas640@gmail.com',''),(8889,1,1255,'3','(730) 827-1702',''),(8890,1,1255,'5','Spоrts bеttіng \r\nget our sign up bonuses \r\n \r\n \r\ngo now https://tinyurl.com/3bpxzs57',''),(8891,1,1255,'11','Not yet, and I want to avoid the need for one in the future',''),(8892,1,1255,'13','Facebook',''),(8893,1,1255,'4','Anytime',''),(8894,1,1256,'6.3','Eric Jones',''),(8895,1,1256,'2','ericjonesmyemail@gmail.com',''),(8896,1,1256,'3','(555) 555-1212',''),(8897,1,1256,'5','Hi drfields.com Owner! I just found your site, quick question_\r\n\r\nMy name_s Eric, I found drfields.com after doing a quick search _ you showed up near the top of the rankings, so whatever you_re doing for SEO, looks like it_s working well.\r\n\r\nSo here_s my question _ what happens AFTER someone lands on your site?  Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear_ forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work _ and the great site you_ve built _ go to waste?\r\n\r\nBecause the odds are they_ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here_s a thought_ what if you could make it super-simple for someone to raise their hand, say, _okay, let_s talk_ without requiring them to even pull their cell phone from their pocket?\r\n  \r\nYou can _ thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nWeb Visitors Into Leads is a software widget that sits on your site, ready and waiting to capture any visitor_s Name, Email address and Phone Number.  It lets you know IMMEDIATELY _ so that you can talk to that lead while they_re still there at your site.\r\n  \r\nYou know, strike when the iron_s hot!\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast _ the difference between contacting someone within 5 minutes versus 30 minutes later is huge _ like 100 times better!\r\n\r\nThat_s why you should check out our new SMS Text With Lead feature as well_ once you_ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be _ even if they don_t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when  the iron_s hot!\r\n\r\nCLICK HERE http://advanceleadgeneration.com to learn more about everything Web Visitors Into Leads can do for your business _ you_ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ you could be converting up to 100x more leads immediately!   \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don_t turn into paying customers. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8898,1,1256,'11','Yes, and I want to avoid it if possible',''),(8899,1,1256,'4','1pm – 3pm',''),(8900,1,1257,'6.3','Chaya kohen',''),(8901,1,1257,'2','chayale65@gmail.com',''),(8902,1,1257,'3','(310) 529-8176',''),(8903,1,1257,'5','Ankle fractures',''),(8904,1,1257,'11','Yes, and I want to avoid it if possible',''),(8905,1,1257,'13','Google/Internet',''),(8906,1,1257,'4','Anytime',''),(8907,1,1258,'6.3','RobertRed',''),(8908,1,1258,'2','vorontsoff.tarasy@yandex.ru',''),(8909,1,1258,'3','(312) 840-0528',''),(8910,1,1258,'11','Not yet, and I want to avoid the need for one in the future',''),(8911,1,1258,'13','Google/Internet',''),(8912,1,1258,'4','Anytime',''),(8913,1,1259,'6.3','Davidthush',''),(8914,1,1259,'2','vksutop@gmail.com',''),(8915,1,1259,'3','(848) 458-6221',''),(8916,1,1259,'5','Красный Яр 1-8 серии смотреть онлайн Наши дни. Режиссер-документалист из Франции Натали Легран приезжает в Красноярск снимать фильм о достопримечательностях края. С российской стороны ее помощником и консультантом становится молодой историк Виктор Антонов. Натали интересует золотодобытчик Никифор Плахов, о котором в архиве почти нет информации… 1861 год. С прииска Плахова сбегают двое рабочих. Один из них погибает от рук беглого каторжника, второй, Коряга, случайно находит золотую жилу, расположенную прямо на поверхности… \r\n<center>[url=https://vksu.top]Красный Яр[/url] смотреть онлайн [url=https://vksu.top]все серии подряд[/url] \r\n[url=https://vksu.top/sb/Krasnyy-Yar][img]https://i.imgur.com/oaaW2IC.jpg[/img][/url]<center>',''),(8917,1,1259,'11','Not yet, and I want to avoid the need for one in the future',''),(8918,1,1259,'13','Another healthcare website',''),(8919,1,1259,'4','Anytime',''),(8920,1,1260,'6.3','Adriana Castaneda',''),(8921,1,1260,'2','adrianacastaneda87@gmail.com',''),(8922,1,1260,'3','(909) 232-0652',''),(8923,1,1260,'5','Rheumatoid Arthritis',''),(8924,1,1260,'11','Not yet, and I want to avoid the need for one in the future',''),(8925,1,1260,'13','Google/Internet',''),(8926,1,1260,'4','Anytime',''),(8927,1,1261,'6.3','Jacob Black',''),(8928,1,1261,'2','jacob@wikimastery.net',''),(8929,1,1261,'3','(108) 149-8050',''),(8930,1,1261,'5','Wikipedia is considered to be the World’s most significant tool for reference material. The Wiki links show up on the 1st page of Google 97% of the time. With a Page on one of the most revered reference tools, you are sure to get yourself or your business noticed. So if you\'re thinking of getting a Wikipedia Page created, it\'s the best time of the year.\r\n\r\nIf you are interested in getting more information just respond back to this email.\r\n\r\nThanks,\r\n\r\nJacob Black\r\nWiki Mastery\r\njacob@wikimastery.net\r\n\r\nRespond with stop to optout.',''),(8931,1,1261,'11','Yes, and I want to avoid it if possible',''),(8932,1,1261,'13','Another healthcare website',''),(8933,1,1261,'4','Anytime',''),(8934,1,1262,'6.3','Diahanne Carolyn Payne',''),(8935,1,1262,'2','Diahanne@gmail.com',''),(8936,1,1262,'3','(310) 365-8543',''),(8937,1,1262,'5','Torn Glutus medius per mri. I\'m a Gen contractor GC, and this is impeding my abilities. Help! I have PPO insurance. No one has talked about surgery but I\'m limping. Did Aquatic therapy and starting Red Chord to isolate the muscle.',''),(8938,1,1262,'11','Not yet, and I want to avoid the need for one in the future',''),(8939,1,1262,'13','Google/Internet',''),(8940,1,1262,'4','Anytime',''),(8941,1,1263,'6.3','Hi Williams',''),(8942,1,1263,'2','hiblusky@yahoo.com',''),(8943,1,1263,'3','(310) 415-4425',''),(8944,1,1263,'5','L hip narrowed joint space at superior aspect of joint (R hip same finding). Possible L hip labrum tear and possible bone on bone in L hip. Started with a very bad recurrent sciatica episode during late May 2023 with overlapping hip sx complex. As the sciatica subsided over 6 weeks the hip sx\'s became more apparent. L hip was likely the trigger of the recurrent sciatica. Waiting to see Ortho surgeon and suspect hip replacement will be recommended. Interested in alternative non-surgical tx as well as getting the cost estimate for the stem cell-PRP etc package of tx\'s.',''),(8945,1,1263,'11','Not yet, and I want to avoid the need for one in the future',''),(8946,1,1263,'13','Referred by my doctor/provider',''),(8947,1,1263,'4','Anytime',''),(8948,1,1264,'6.3','Jennifer Ross',''),(8949,1,1264,'2','jrossa80@gmail.com',''),(8950,1,1264,'3','(626) 512-2325',''),(8951,1,1264,'5','Hello, I have degenerative discs in my lower back, one is herniated currently and giving me terrible sciatica down my right leg. I\'ve had 3 surgeries for this issue. I\'d like to avoid having another. Do any of the techniques/ therapies you offer work for these issues?\r\nThank you',''),(8952,1,1264,'11','Yes, and I want to avoid it if possible',''),(8953,1,1264,'13','Google/Internet',''),(8954,1,1264,'4','Anytime',''),(8955,1,1265,'6.3','Jennifer Obrien',''),(8956,1,1265,'2','jenn@dandyreviewaitools.com',''),(8957,1,1265,'3','(949) 577-6294',''),(8958,1,1265,'5','Hi, \r\n\r\nAre you sure you don’t want us to remove those 8 of unfair reviews on your Yelp page for Peter A. Fields  MD  DC? \r\n\r\nThat\'s what our AI powered software does without any work needed on your part  - and that\'s why some of the largest brands in the world like Wyndham trust us to consistently remove unfair bad reviews from the main review sites without any work needed on their end. \r\n\r\nDo you have 15 minutes for a call today? \r\n\r\nSchedule a Call Here meetings.hubspot.com/dandy-/review-removal-consult-ccfill or for more information please visit our website: getdandy.com/ai-removal-tool\r\n\r\nYou can also call me directly at (949) 577-6294\r\n\r\nWe’ve removed over 40,000 bad reviews and want to help you too. \r\n\r\nThank you,\r\n\r\nJennifer O\'brien | Director of Reviews\r\nGetDandy  - The First AI Powered Reputation Automation Platform\r\nPhone: (949) 577-6294\r\ngetdandy.com/ai-removal-tool',''),(8959,1,1265,'11','Not yet, and I want to avoid the need for one in the future',''),(8960,1,1265,'4','Anytime',''),(8961,1,1266,'6.3','Gabriella Siegel',''),(8962,1,1266,'2','drgabriellasiegel@gmail.com',''),(8963,1,1266,'3','(310) 801-8890',''),(8964,1,1266,'5','Hi-have bilateral ostheo of the knee. i am interested in the process and costs of PRP. please let me know.',''),(8965,1,1266,'11','Yes, and I want to avoid it if possible',''),(8966,1,1266,'13','Google/Internet',''),(8967,1,1266,'4','9am – 11am',''),(8968,1,1267,'6.3','Eric Jones',''),(8969,1,1267,'2','ericjonesmyemail@gmail.com',''),(8970,1,1267,'3','(555) 555-1212',''),(8971,1,1267,'5','Hello drfields.com Owner!\r\n\r\nMy name_s Eric and I just found your site drfields.com.\r\n\r\nIt_s got a lot going for it, but here_s an idea to make it even MORE effective.\r\n\r\nWeb Visitors Into Leads _ CLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nAnd once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation_ and if they don_t take you up on your offer then, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment. Don_t keep losing them. \r\nWeb Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(8972,1,1267,'11','Yes, and I want to avoid it if possible',''),(8973,1,1267,'13','Another healthcare website',''),(8974,1,1267,'4','9am – 11am',''),(8975,1,1268,'6.3','Patrickaallob',''),(8976,1,1268,'2','kokain@inrus.top',''),(8977,1,1268,'3','(756) 858-4511',''),(8978,1,1268,'5','Как Купить Кокаин? САЙТ - KOKAIN.VIP Сколько стоит Кокаин? САЙТ - KOKAIN.VIP \r\n \r\n \r\nКУПИТЬ КОКАИН НА САЙТЕ - https://kokain.vip/ \r\n \r\nЗАКАЗАТЬ КОКАИН ЧЕРЕЗ ТЕЛЕГРАММ- https://kokain.vip/ \r\n \r\nДОСТАВКА КОКАИН В РУКИ - https://kokain.vip/ \r\n \r\nЗАКЛАДКА КОКАИНА ОНЛАЙН - https://kokain.vip/ \r\n \r\nССЫЛКА В ТЕЛЕГРАММ - https://kokain.vip/ \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\n. \r\nТеги поисковых слов для запроса \"Кокаин в Москве\" \r\nГде Купить Кокаин в Москве? Как Купить закладку Кокаин в Москве? Цена на Кокаин в Москве? Купить Кокаин с Доставкой в руки в Москве? \r\nСколько Стоит Кокаин в Москве? Почему так просто Купить Кокаин закладкой в Москве? Гарантия на Кокаин в Москве? Купить Кокаин с Гарантией? \r\nКруглосуточные магазины Кокаина в Москве? Оптовые и Розничные продажи Кокаина в Москве? Купить Кокаин в Москве через Телеграмм? \r\nКупить Кокаин в Москве по скидке и хорошей цене? Купить Кокаин в Москве через свой телефон или ноутбук можно легко? Купить Кокаина гидрохлорид! \r\nКак купить Кокаин в Москве если нет очень много денег и нужно угостить девушку? С кем можно разделить грамм Кокаина в Москве? \r\nНе плохой или хороший Кокаин можно Купить в Москве на своей улице закладкой? Девушка угостила меня Хорошим Кокаином в Москве из магазина? \r\nМои друзья любят употреблять Кокаин в Москве днем вечером и ночью и потом не спят целые сутки под Кокаином в Москве? Самый чистый Кокаин в Москве Купить! \r\nКокаин в Москве можно заказать с доставкой в руки через хорошего курьера прямо в теллеграмм и его привезут в руки без палева в Москве? \r\nМой Кокаин в Москве можно на выставке показывать потому что такой Кокаин в Москве никто и никогда не виде подобного качества тут просто нет? \r\nКак хороший Кокаин в Москве качественный провозят через границу из других стран чтоб люди радовались качеству Кокаина в Москве? Лучший Кокаин в Москве Купить цена! \r\nКак ведут себя люди когда употребляют хороший качественный Кокаин в Москве чтоб не спалиться в черных очках, которые цветом как Кокаин в Москве? \r\nМогут ли принять мусора за Кокаин в Москве если узнают что ты берешь его анонимно на сайте с гарантией который много лет продает Кокаин в Москве? \r\nВсе люди по разному реагируют и задают себе вопрос, на который уже есть давно ответ - Как же купить Кокаин в Москве если хочеться качественного Кокаина? \r\n \r\nДополнительные теги - Купить Шишки в Москве, Купить экстази в Москве , Купить гашиш в Москве, Купить мефедрон в Москве, Купить экстази в Москве, Купить МДМА в Москве, \r\nКупить лсд в Москве, Купить Амфетамин в Москве, Купить скорость альфа ПВП в Москве, Купить гидропонику в Москве, Купить метамфетамин в Москве, Купить эйфоретики в Москве, \r\nКупить закладки в Москве, Купить ШИШКИ закладкой в Москве , Купить Стимуляторы в Москве, Купить Галлюцыногены в Москве, Купить Наркотики закладкой в Москве. Тег окончен',''),(8979,1,1268,'11','Not yet, and I want to avoid the need for one in the future',''),(8980,1,1268,'13','Another healthcare website',''),(8981,1,1268,'4','Anytime',''),(8982,1,1269,'6.3','Elizabeth G’Sell',''),(8983,1,1269,'2','elizabeth.m.gsell@gmail.com',''),(8984,1,1269,'3','(310) 497-8225',''),(8985,1,1269,'5','I am interested in PRP and Stem Cell therapy for my left knee which is damaged from a ski injury back in April. I have a depressed fracture at the top of my tibia bone where it meets the knee and soft tissue damage as well. My insurance is Aetna and not sure if they cover treatment or it will be private pay. I currently have ongoing pain which limits my mobility significantly. Thank you.',''),(8986,1,1269,'11','Not yet, and I want to avoid the need for one in the future',''),(8987,1,1269,'13','Google/Internet',''),(8988,1,1269,'4','Anytime',''),(8989,1,1270,'6.3','BrianPieda',''),(8990,1,1270,'2','renen5p@outlook.com',''),(8991,1,1270,'3','(434) 831-5833',''),(8992,1,1270,'5','Ссылка на dark net ресурсы с разными товарами и широким ассортиментом, где сможете find необходимые возможности вход к purchase products <a href=\"https://bs2webb.top/\">blacksprut com официальный сайт</a>',''),(8993,1,1270,'11','Not yet, and I want to avoid the need for one in the future',''),(8994,1,1270,'13','Google/Internet',''),(8995,1,1270,'4','Anytime',''),(8996,1,1271,'6.3','John Bartlett',''),(8997,1,1271,'2','john@system4-losangeleswest.com',''),(8998,1,1271,'3','(424) 377-2767',''),(8999,1,1271,'5','Hi, Are you interested in receiving a professional janitorial or disinfection quote for your business?\r\n\r\nI’d like to provide a strategy that will take care of all your facility needs, along with excellent communication and customer service.\r\n\r\nJust send me a quick reply and I’d be happy to schedule a site visit and give you a complimentary, no-obligation quote.\r\n\r\nRegards,\r\nJohn\r\n\r\nJohn Bartlett\r\nOwner\r\nSystem4 Facility Services\r\n(424) 377-2767\r\njohn@system4-losangeleswest.com\r\n\r\nPlease respond with \"stop\" to opt out.',''),(9000,1,1271,'11','Not yet, and I want to avoid the need for one in the future',''),(9001,1,1271,'13','Google/Internet',''),(9002,1,1271,'4','9am – 11am',''),(9003,1,1272,'6.3','Eric Jones',''),(9004,1,1272,'2','ericjonesmyemail@gmail.com',''),(9005,1,1272,'3','(555) 555-1212',''),(9006,1,1272,'5','Hello drfields.com Admin! this is Eric and I ran across drfields.com a few minutes ago.\r\n\r\nLooks great_ but now what?\r\n\r\nBy that I mean, when someone like me finds your website _ either through Search or just bouncing around _ what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment.\r\n\r\nHere_s an idea_\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site_\r\n \r\nYou can _\r\n  \r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou_ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don_t close a deal right away, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nPretty sweet _ AND effective.\r\n\r\nCLICK HERE http://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE http://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(9007,1,1272,'11','Yes, and I want to avoid it if possible',''),(9008,1,1272,'13','Facebook',''),(9009,1,1272,'4','3pm – 5pm',''),(9010,1,1273,'6.3','Eric Jones',''),(9011,1,1273,'2','ericjonesmyemail@gmail.com',''),(9012,1,1273,'3','(555) 555-1212',''),(9013,1,1273,'5','Hello drfields.com Webmaster. my name is Eric and I_m betting you_d like your website drfields.com to generate more leads.\r\n\r\nHere_s how:\r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you as soon as they say they_re interested _ so that you can talk to that lead while they_re still there at drfields.com.\r\n\r\nWeb Visitors Into Leads _ CLICK HERE https://advanceleadgeneration.com for a live demo now.\r\n\r\nAnd now that you_ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation _ answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don_t take you up on your offer then, just follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Web Visitors Into Leads and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don_t hang around _ you can_t afford to lose them!\r\nWeb Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(9014,1,1273,'11','Yes, and I want to avoid it if possible',''),(9015,1,1273,'13','Google/Internet',''),(9016,1,1273,'4','11am – 1pm',''),(9017,1,1274,'6.3','Eric Jones',''),(9018,1,1274,'2','ericjonesmyemail@gmail.com',''),(9019,1,1274,'3','(555) 555-1212',''),(9020,1,1274,'5','Hello drfields.com Admin! this is Eric and I ran across drfields.com a few minutes ago.\r\n\r\nLooks great_ but now what?\r\n\r\nBy that I mean, when someone like me finds your website _ either through Search or just bouncing around _ what happens next?  Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site_s visitors disappear and are gone forever after just a moment.\r\n\r\nHere_s an idea_\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site_\r\n \r\nYou can _\r\n  \r\nWeb Visitors Into Leads is a software widget that_s works on your site, ready to capture any visitor_s Name, Email address and Phone Number.  It signals you the moment they let you know they_re interested _ so that you can talk to that lead while they_re literally looking over your site.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to try out a Live Demo with Web Visitors Into Leads now to see exactly how it works.\r\n\r\nYou_ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better_ once you_ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n  \r\nThat way, even if you don_t close a deal right away, you can follow up with text messages for new offers, content links, even just _how you doing?_ notes to build a relationship.\r\n\r\nPretty sweet _ AND effective.\r\n\r\nCLICK HERE https://advanceleadgeneration.com to discover what Web Visitors Into Leads can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Web Visitors Into Leads offers a FREE 14 days trial _ and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now_ don_t keep them waiting. \r\nCLICK HERE https://advanceleadgeneration.com to try Web Visitors Into Leads now.\r\n\r\nIf you\'d like to unsubscribe click here http://advanceleadgeneration.com/unsubscribe.aspx?d=drfields.com',''),(9021,1,1274,'11','Yes, and I want to avoid it if possible',''),(9022,1,1274,'13','I am a current patient/was a patient previously',''),(9023,1,1274,'4','1pm – 3pm',''),(9024,1,1275,'6.3','Enriquebut',''),(9025,1,1275,'2','ollivonstammaki@gmail.com',''),(9026,1,1275,'3','(717) 752-1251',''),(9027,1,1275,'11','Not yet, and I want to avoid the need for one in the future',''),(9028,1,1275,'13','Google/Internet',''),(9029,1,1275,'4','Anytime',''),(9030,1,1276,'6.3','chitung alexander Li',''),(9031,1,1276,'2','alexli2020@gmail.com',''),(9032,1,1276,'3','(626) 688-2068',''),(9033,1,1276,'5','I have lower back pain for quite some time. I went to chiropractor and help but not complete. I like to try prolotherapy . Can you tell me the procedure and the fee schedule.  How soon can I have the first appointment.  By the way, is prolotherapy  covered by Medicare ?\r\n\r\nmy cell :626-688-2068\r\nemail : alexli2020@gmail.com',''),(9034,1,1276,'11','Not yet, and I want to avoid the need for one in the future',''),(9035,1,1276,'13','Google/Internet',''),(9036,1,1276,'4','Anytime',''),(9037,1,1277,'6.3','Jonathan Buice',''),(9038,1,1277,'2','jonbuicemusic@gmail.com',''),(9039,1,1277,'3','(607) 742-2642',''),(9040,1,1277,'5','I had a shoulder labral surgery a few years back and it just didn\'t take well. I\'m looking for an alternative to help heal my labrum as well as strengthen my rotator cuff.',''),(9041,1,1277,'11','Not yet, and I want to avoid the need for one in the future',''),(9042,1,1277,'13','Google/Internet',''),(9043,1,1277,'4','Anytime',''),(9044,1,1278,'6.3','Crystal D Naldi',''),(9045,1,1278,'2','Crystanal@gmail.com',''),(9046,1,1278,'3','(818) 481-0781',''),(9047,1,1278,'5','After going up eight flights of stairs at work I have been having pain in my hips, my pain specialist said I have hip bursitis and I\'ve been going to physical therapy for almost 2 months now and it still hasn\'t gone away',''),(9048,1,1278,'11','Not yet, and I want to avoid the need for one in the future',''),(9049,1,1278,'13','Google/Internet',''),(9050,1,1278,'4','Anytime',''),(9051,1,1279,'6.3','PetarHok',''),(9052,1,1279,'2','betcas367@gmail.com',''),(9053,1,1279,'3','(650) 287-3384',''),(9054,1,1279,'5','Spоrts bеttіng and саsinо \r\nget our sign up bonuses \r\n \r\n \r\ngo now https://tinyurl.com/44u2m7sv',''),(9055,1,1279,'11','Not yet, and I want to avoid the need for one in the future',''),(9056,1,1279,'13','Friend/family who was/is a patient',''),(9057,1,1279,'4','Anytime',''),(9058,1,1280,'6.3','stumbuctump',''),(9059,1,1280,'2','yoko032023@gmail.com',''),(9060,1,1280,'3','(871) 157-0484',''),(9061,1,1280,'5','Logistics company - Lazurit LLC provides a full range of foreign economic services for the delivery of goods from Southeast Asia to Russia. \r\n \r\nPurchase of goods in Southeast Asia and delivery to Russia \r\nInternational cargo transportation from Southeast Asia to Russia \r\nCustoms clearance of goods in Russia \r\nCertification of goods and cars in Russia \r\n \r\nWe provide our customers with a decisive competitive advantage in the delivery of goods from Southeast Asia to Russia \r\n \r\nhttps://lazuritllc.ru \r\nTel. +79644340397',''),(9062,1,1280,'11','Not yet, and I want to avoid the need for one in the future',''),(9063,1,1280,'13','Facebook',''),(9064,1,1280,'4','Anytime',''),(9065,1,1281,'6.3','Dorothy Watson',''),(9066,1,1281,'2','info@mentalwellnesscenter.info',''),(9067,1,1281,'3','(919) 847-2164',''),(9068,1,1281,'5','Hi again,\r\n\r\nWe hope this email finds you well. We wanted to follow up on the guest article pitch that we sent your way recently. \r\n\r\nIn case you missed it, we proposed an article on the things you should STOP doing right now to improve your personal life. We believe that this topic would be of great interest to your site visitors and would provide valuable insights. \r\n\r\nIf you\'re open to featuring this article on your platform, please let us know. \r\n\r\nThank you,\r\nDorothy Watson & Jill Palmer\r\nmentalwellnesscenter.info | info@mentalwellnesscenter.info\r\n\r\nP.S. Interested in an article, just not on the topic we suggested? No problem! Just respond to let us know and we can come up with something else. Or, if you’re not interested in an article at all, just let us know.',''),(9069,1,1281,'11','Not yet, and I want to avoid the need for one in the future',''),(9070,1,1281,'13','Google/Internet',''),(9071,1,1281,'4','Anytime',''),(9072,1,1282,'6.3','Jon McAllister',''),(9073,1,1282,'2','jon@unusbiotech.com',''),(9074,1,1282,'3','(949) 929-0503',''),(9075,1,1282,'5','I\'m calling from UNUS BIOTECH / Die Up Medical, we represent the nation\'s top stem cell laboratories, and I\'d love to make an appointment with the doctor or manager to give them some information about our products, and how it can bring in more patients and revenue into the practice.',''),(9076,1,1282,'11','Not yet, and I want to avoid the need for one in the future',''),(9077,1,1282,'4','Anytime',''),(9078,1,1283,'6.3','Nooshi',''),(9079,1,1283,'2','drakavan@gmail.com',''),(9080,1,1283,'3','(818) 378-3042',''),(9081,1,1283,'5','Have mild arthritis. Would like to prevent from getting worse.',''),(9082,1,1283,'11','Not yet, and I want to avoid the need for one in the future',''),(9083,1,1283,'13','Google/Internet',''),(9084,1,1283,'4','Anytime',''),(9085,1,1284,'6.3','Bill Holcroft',''),(9086,1,1284,'2','bholcroft@webstractmarketing.com',''),(9087,1,1284,'3','(909) 969-1110',''),(9088,1,1284,'5','Test Form',''),(9089,1,1284,'11','Not yet, and I want to avoid the need for one in the future',''),(9090,1,1284,'13','Google/Internet',''),(9091,1,1284,'4','11am – 1pm',''),(9092,1,1285,'6.3','Peter Fields',''),(9093,1,1285,'2','info@DrFields.com',''),(9094,1,1285,'3','(310) 625-1096',''),(9095,1,1285,'5','Help',''),(9096,1,1285,'11','Yes, and I want to avoid it if possible',''),(9097,1,1285,'4','Anytime',''),(9098,1,1286,'6.3','John',''),(9099,1,1286,'2','test@tes.com',''),(9100,1,1286,'3','(234) 567-8905',''),(9101,1,1286,'5','None testing form',''),(9102,1,1286,'11','Not yet, and I want to avoid the need for one in the future',''),(9103,1,1286,'13','Facebook',''),(9104,1,1286,'4','Anytime','');
/*!40000 ALTER TABLE `wp_gf_entry_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_entry_notes`
--

DROP TABLE IF EXISTS `wp_gf_entry_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_entry_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` int(10) unsigned NOT NULL,
  `user_name` varchar(250) DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `value` longtext DEFAULT NULL,
  `note_type` varchar(50) DEFAULT NULL,
  `sub_type` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entry_id` (`entry_id`),
  KEY `entry_user_key` (`entry_id`,`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1281 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_entry_notes`
--

LOCK TABLES `wp_gf_entry_notes` WRITE;
/*!40000 ALTER TABLE `wp_gf_entry_notes` DISABLE KEYS */;
INSERT INTO `wp_gf_entry_notes` VALUES (1,1,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-04-26 02:32:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(2,2,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-04-26 07:00:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(3,3,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-04-27 13:48:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(4,4,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-04-28 06:19:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(5,5,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-04-29 18:26:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(6,6,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-05-01 23:51:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(7,7,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-05-05 03:33:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(8,8,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-05-08 01:27:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(9,9,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-05-20 02:32:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(10,10,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-05-21 23:26:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(11,11,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-05-22 15:29:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(12,12,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-05-24 22:39:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(13,13,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-05-24 23:02:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(14,14,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-05-27 02:38:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(15,15,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-05-30 01:36:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(16,16,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-06-03 05:13:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(17,17,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-06-03 17:31:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(18,18,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-06-06 15:39:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(19,19,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-06-09 00:56:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(20,20,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-06-09 03:47:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(21,21,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-06-16 21:16:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(22,22,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-06-17 16:21:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(23,23,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-06-17 20:59:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(24,24,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-06-22 04:15:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(25,25,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-06-23 06:01:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(26,26,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-06-24 01:29:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(27,27,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-06-24 03:15:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(28,28,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-06-25 01:26:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(29,29,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-06-27 18:04:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(30,30,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-06-29 16:23:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(31,31,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-03 15:15:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(32,32,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-04 08:38:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(33,33,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-08 14:22:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(34,34,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-08 16:02:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(35,35,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-10 01:03:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(36,36,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-10 17:39:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(37,37,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-11 19:04:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(38,38,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-12 15:12:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(39,39,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-13 16:38:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(40,40,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-13 16:49:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(41,41,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-13 21:23:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(42,42,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-13 21:33:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(43,43,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-14 22:58:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(44,44,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-14 23:02:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(45,45,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-15 15:25:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(46,46,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-16 03:21:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(47,47,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-16 16:39:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(48,48,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-16 17:50:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(49,49,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-23 13:08:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(50,50,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-25 16:56:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(51,51,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-26 23:33:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(52,52,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-27 22:39:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(53,53,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-29 17:53:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(54,54,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-30 20:30:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(55,55,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-31 15:07:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(56,56,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-31 19:57:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(57,57,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-31 20:38:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(58,58,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-07-31 23:44:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(59,59,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-04 21:42:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(60,60,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-05 01:30:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(61,61,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-05 16:51:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(62,62,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-05 17:23:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(63,63,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-05 17:29:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(64,64,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-05 23:48:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(65,65,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-06 17:10:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(66,66,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-08 18:54:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(67,68,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-09 18:34:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(68,69,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-10 01:18:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(69,70,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-12 22:36:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(70,71,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-13 21:44:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(71,72,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-14 16:08:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(72,75,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-16 05:54:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(73,76,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-18 18:11:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(74,77,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-18 20:30:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(75,78,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-20 23:02:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(76,79,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-21 18:12:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(77,80,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-22 20:42:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(78,81,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-23 21:28:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(79,82,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-24 00:12:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(80,83,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-24 00:24:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(81,84,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-24 18:07:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(82,85,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-25 17:58:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(83,86,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-25 20:19:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(84,87,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-25 21:07:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(85,88,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-26 00:03:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(86,89,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-26 12:44:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(87,90,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-26 19:52:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(88,91,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-27 15:09:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(89,92,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-27 21:51:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(90,93,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-28 20:17:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(91,94,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-28 21:02:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(92,95,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-31 18:43:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(93,96,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-08-31 21:32:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(94,97,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-01 16:05:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(95,98,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-02 14:58:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(96,99,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-02 19:12:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(97,100,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-02 21:39:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(98,101,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-03 03:36:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(99,102,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-03 21:30:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(100,104,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-05 02:12:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(101,105,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-08 18:10:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(102,106,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-09 20:02:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(103,107,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-09 22:18:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(104,108,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-09 23:53:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(105,109,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-09 23:56:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(106,110,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-10 10:19:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(107,111,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-10 15:41:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(108,112,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-10 16:37:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(109,113,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-11 19:37:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(110,114,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-11 23:00:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(111,115,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-13 06:03:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(112,116,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-13 23:24:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(113,117,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-16 22:28:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(114,118,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-17 21:31:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(115,119,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-18 03:35:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(116,120,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-18 06:15:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(117,121,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-19 02:55:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(118,122,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-23 14:48:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(119,123,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-26 18:13:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(120,124,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-26 21:30:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(121,125,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-28 18:31:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(122,126,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-28 18:33:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(123,127,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-30 14:50:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(124,128,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-09-30 14:52:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(125,129,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-06 21:48:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(126,130,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-11 10:39:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(127,131,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-11 18:23:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(128,132,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-12 23:17:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(129,133,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-13 14:16:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(130,134,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-13 21:31:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(131,135,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-15 22:57:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(132,136,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-16 05:50:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(133,137,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-16 17:02:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(134,138,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-19 20:14:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(135,139,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-19 22:12:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(136,140,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-20 19:25:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(137,141,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-20 22:59:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(138,142,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-21 00:08:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(139,143,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-22 17:34:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(140,144,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-22 18:24:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(141,145,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-22 23:44:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(142,146,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-26 18:19:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(143,147,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-26 22:56:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(144,148,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-27 00:37:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(145,149,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-27 02:12:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(146,150,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-10-28 01:36:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(147,151,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-11-07 00:20:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(148,152,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-11-07 05:44:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(149,153,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-11-12 08:08:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(150,154,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-11-13 18:35:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(151,155,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-11-14 22:57:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(152,156,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-11-16 15:25:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(153,157,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-11-20 19:26:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(154,158,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-11-23 18:55:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(155,159,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-11-24 00:39:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(156,160,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-11-24 18:22:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(157,161,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-11-24 22:14:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(158,162,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-11-26 13:20:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(159,163,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-11-26 18:19:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(160,164,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-11-28 02:54:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(161,165,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-02 17:46:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(162,166,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-03 16:31:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(163,167,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-11 06:14:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(164,168,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-11 17:31:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(165,169,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-14 10:37:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(166,170,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-14 21:43:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(167,171,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-16 11:49:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(168,172,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-19 16:41:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(169,173,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-20 01:53:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(170,174,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-21 13:26:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(171,175,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-21 17:58:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(172,176,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-23 18:32:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(173,177,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-23 20:37:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(174,178,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-26 21:29:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(175,179,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-28 23:57:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(176,180,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-29 05:14:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(177,181,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-29 15:38:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(178,182,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-29 23:39:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(179,183,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-30 23:34:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(180,184,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-31 11:26:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(181,185,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2020-12-31 17:25:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(182,186,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-01 21:15:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(183,187,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-05 00:20:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(184,188,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-05 12:07:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(185,189,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-07 21:46:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(186,190,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-07 21:47:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(187,191,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-08 17:32:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(188,192,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-08 18:25:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(189,193,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-12 11:11:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(190,194,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-13 22:57:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(191,195,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-15 04:32:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(192,196,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-15 17:51:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(193,197,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-15 18:31:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(194,198,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-17 06:52:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(195,199,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-18 04:18:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(196,200,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-18 10:21:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(197,201,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-18 14:25:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(198,202,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-19 20:04:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(199,203,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-21 20:22:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(200,204,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-21 22:00:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(201,205,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-21 23:42:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(202,206,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-22 23:47:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(203,207,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-26 17:27:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(204,208,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-27 06:07:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(205,209,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-27 06:08:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(206,210,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-27 06:08:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(207,211,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-27 21:51:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(208,212,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-28 05:16:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(209,213,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-28 05:58:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(210,214,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-01-30 02:29:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(211,215,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-05 02:46:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(212,216,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-06 04:05:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(213,217,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-08 18:32:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(214,218,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-08 20:43:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(215,219,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-08 20:52:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(216,220,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-08 21:44:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(217,221,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-08 22:00:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(218,222,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-08 22:25:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(219,223,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-08 23:30:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(220,224,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-08 23:48:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(221,225,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-09 00:49:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(222,226,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-09 10:42:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(223,227,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-09 18:10:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(224,228,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-09 19:44:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(225,229,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-10 05:55:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(226,230,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-10 07:38:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(227,231,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-10 09:27:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(228,232,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-10 12:16:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(229,233,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-10 21:48:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(230,234,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-10 23:20:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(231,235,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-11 08:16:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(232,236,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-11 22:47:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(233,237,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-13 10:07:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(234,238,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-14 05:24:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(235,239,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-14 06:47:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(236,240,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-14 15:04:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(237,241,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-14 15:54:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(238,242,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-14 20:43:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(239,243,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-14 20:50:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(240,244,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-15 19:40:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(241,245,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-15 23:22:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(242,246,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-15 23:28:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(243,247,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-15 23:35:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(244,248,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-17 05:41:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(245,249,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-17 07:08:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(246,250,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-17 19:13:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(247,251,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-18 14:41:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(248,252,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-18 16:23:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(249,253,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-21 16:27:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(250,254,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-24 20:41:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(251,255,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-25 17:58:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(252,256,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-02-25 22:10:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(253,257,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-01 16:17:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(254,258,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-01 18:50:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(255,259,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-01 22:32:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(256,260,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-04 20:06:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(257,261,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-05 06:31:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(258,262,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-10 00:17:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(259,263,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-10 02:23:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(260,264,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-11 00:27:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(261,265,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-11 14:36:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(262,266,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-12 18:32:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(263,267,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-12 19:34:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(264,268,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-13 00:39:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(265,269,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-14 03:47:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(266,270,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-15 14:55:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(267,271,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-16 14:53:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(268,272,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-16 17:45:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(269,273,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-16 19:23:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(270,274,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-17 04:08:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(271,275,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-17 18:52:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(272,276,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-18 15:51:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(273,277,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-18 16:42:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(274,278,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-18 17:19:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(275,279,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-18 21:00:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(276,280,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-19 21:54:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(277,281,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-22 19:24:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(278,282,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-23 18:14:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(279,283,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-23 20:44:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(280,284,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-23 21:01:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(281,285,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-28 02:39:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(282,286,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-29 03:32:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(283,287,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-29 05:08:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(284,288,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-29 17:43:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(285,289,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-29 18:50:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(286,290,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-29 19:43:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(287,291,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-30 21:09:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(288,292,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-31 04:43:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(289,293,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-03-31 11:41:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(290,294,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-03 13:19:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(291,295,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-05 21:33:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(292,296,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-06 15:23:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(293,297,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-06 18:47:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(294,298,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-07 22:42:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(295,299,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-08 01:25:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(296,300,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-08 23:43:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(297,301,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-12 23:06:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(298,302,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-12 23:09:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(299,303,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-13 18:39:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(300,304,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-14 17:07:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(301,305,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-15 19:11:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(302,306,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-16 19:37:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(303,307,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-17 00:36:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(304,308,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-17 02:34:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(305,309,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-17 02:37:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(306,310,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-17 10:23:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(307,311,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-20 16:49:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(308,312,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-20 19:03:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(309,313,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-22 01:35:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(310,314,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-24 13:41:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(311,315,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-27 00:02:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(312,316,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-27 17:02:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(313,317,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-27 19:17:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(314,318,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-29 00:27:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(315,319,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-04-29 22:13:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(316,320,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-06 14:06:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(317,321,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-06 19:14:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(318,322,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-06 21:24:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(319,323,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-07 17:35:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(320,324,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-08 20:31:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(321,325,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-10 16:24:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(322,326,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-10 18:45:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(323,327,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-11 15:53:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(324,328,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-11 18:44:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(325,329,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-11 21:00:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(326,330,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-12 17:37:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(327,331,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-12 21:47:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(328,332,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-13 00:52:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(329,333,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-13 16:58:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(330,334,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-13 19:50:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(331,335,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-14 17:36:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(332,336,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-14 22:02:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(333,337,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-17 19:07:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(334,338,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-18 17:43:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(335,339,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-18 18:14:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(336,340,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-20 18:47:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(337,341,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-21 09:17:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(338,342,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-21 21:49:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(339,343,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-23 01:26:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(340,344,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-27 16:13:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(341,345,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-27 21:18:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(342,346,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-28 15:26:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(343,347,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-05-31 06:35:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(344,348,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-01 18:22:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(345,349,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-01 21:30:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(346,350,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-02 19:32:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(347,351,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-03 22:02:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(348,352,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-04 00:56:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(349,353,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-04 03:22:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(350,354,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-04 14:19:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(351,355,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-08 20:21:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(352,356,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-08 22:05:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(353,357,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-09 18:17:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(354,358,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-10 22:43:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(355,359,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-11 01:47:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(356,360,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-11 23:00:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(357,361,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-12 23:22:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(358,362,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-14 03:25:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(359,363,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-14 15:06:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(360,364,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-15 00:56:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(361,365,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-15 13:42:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(362,366,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-15 17:03:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(363,367,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-16 20:34:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(364,368,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-18 20:05:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(365,369,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-18 22:30:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(366,370,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-22 00:02:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(367,371,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-23 18:48:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(368,372,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-24 03:42:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(369,373,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-24 19:31:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(370,374,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-25 20:51:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(371,375,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-25 22:53:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(372,376,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-25 23:12:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(373,377,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-28 14:49:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(374,378,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-28 23:50:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(375,379,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-06-28 23:58:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(376,380,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-01 04:30:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(377,381,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-01 05:18:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(378,382,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-03 19:00:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(379,383,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-06 09:09:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(380,384,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-06 17:45:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(381,385,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-06 19:24:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(382,386,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-07 01:08:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(383,387,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-07 15:35:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(384,388,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-07 17:22:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(385,389,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-07 18:40:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(386,390,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-09 13:44:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(387,391,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-11 05:57:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(388,392,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-11 22:29:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(389,393,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-13 16:58:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(390,394,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-13 19:20:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(391,395,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-15 06:27:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(392,396,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-16 02:04:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(393,397,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-19 10:43:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(394,398,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-20 14:21:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(395,399,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-20 16:43:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(396,400,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-22 16:47:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(397,401,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-23 19:50:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(398,402,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-23 20:26:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(399,403,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-26 19:01:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(400,404,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-27 17:59:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(401,405,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-28 20:39:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(402,406,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-29 13:42:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(403,407,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-29 20:03:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(404,408,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-29 21:24:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(405,409,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-30 22:53:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(406,410,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-07-31 00:23:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(407,411,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-01 17:26:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(408,412,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-02 07:52:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(409,413,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-02 20:42:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(410,414,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-02 20:43:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(411,415,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-02 21:37:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(412,416,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-04 18:48:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(413,417,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-04 21:36:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(414,418,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-05 00:05:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(415,419,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-06 02:18:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(416,420,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-06 06:00:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(417,421,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-06 07:17:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(418,422,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-06 20:40:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(419,423,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-10 17:22:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(420,424,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-11 16:26:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(421,425,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-12 00:24:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(422,426,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-12 00:42:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(423,427,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-12 17:54:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(424,428,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-13 07:20:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(425,429,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-17 21:17:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(426,430,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-18 08:18:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(427,431,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-20 19:59:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(428,432,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-20 22:23:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(429,433,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-22 19:44:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(430,434,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-27 12:55:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(431,435,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-08-30 10:14:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(432,436,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-02 07:43:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(433,437,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-03 13:43:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(434,438,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-04 05:51:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(435,439,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-08 01:25:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(436,440,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-08 11:22:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(437,441,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-08 20:23:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(438,442,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-09 17:11:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(439,443,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-09 18:19:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(440,444,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-16 20:36:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(441,445,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-16 23:54:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(442,446,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-18 19:48:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(443,447,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-19 16:31:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(444,448,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-19 21:07:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(445,449,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-21 04:35:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(446,450,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-21 11:07:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(447,451,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-21 23:02:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(448,452,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-22 01:21:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(449,453,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-27 07:59:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(450,454,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-09-28 00:07:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(451,455,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-01 04:16:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(452,456,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-01 20:12:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(453,457,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-01 23:07:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(454,458,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-03 13:17:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(455,459,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-04 07:59:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(456,460,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-04 23:22:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(457,461,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-05 00:11:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(458,462,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-05 22:11:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(459,463,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-07 03:05:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(460,464,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-07 16:17:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(461,465,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-08 06:55:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(462,466,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-09 21:55:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(463,467,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-10 19:49:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(464,468,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-11 19:53:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(465,469,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-12 03:03:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(466,470,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-13 00:58:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(467,471,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-13 08:07:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(468,472,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-15 07:28:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(469,473,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-15 11:54:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(470,474,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-16 19:55:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(471,475,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-17 19:02:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(472,476,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-18 21:16:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(473,477,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-19 17:05:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(474,478,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-19 20:12:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(475,479,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-22 14:50:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(476,480,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-22 20:06:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(477,481,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-25 13:41:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(478,482,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-27 22:53:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(479,483,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-28 16:06:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(480,484,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-29 15:24:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(481,485,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-10-31 01:35:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(482,486,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-01 07:05:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(483,487,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-01 09:16:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(484,488,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-01 22:57:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(485,489,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-02 00:44:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(486,490,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-03 18:25:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(487,491,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-04 11:05:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(488,492,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-04 19:31:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(489,493,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-06 20:45:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(490,494,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-06 20:45:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(491,495,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-08 03:26:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(492,496,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-08 18:29:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(493,497,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-08 18:34:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(494,498,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-10 00:36:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(495,499,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-10 16:07:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(496,500,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-11 13:04:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(497,501,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-14 05:07:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(498,502,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-14 07:41:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(499,503,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-14 15:55:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(500,504,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-14 18:47:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(501,505,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-15 17:27:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(502,506,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-16 16:25:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(503,507,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-16 20:11:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(504,508,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-16 23:00:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(505,509,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-17 09:39:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(506,510,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-17 20:25:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(507,511,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-17 21:56:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(508,512,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-19 18:05:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(509,513,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-20 01:06:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(510,514,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-22 23:55:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(511,515,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-23 07:14:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(512,516,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-23 20:29:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(513,517,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-24 13:21:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(514,518,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-26 20:20:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(515,519,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-27 00:23:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(516,520,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-30 03:39:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(517,521,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-30 15:48:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(518,522,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-11-30 20:03:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(519,523,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-01 06:37:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(520,524,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-01 18:54:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(521,525,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-01 20:33:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(522,526,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-04 23:45:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(523,527,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-06 08:40:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(524,528,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-06 18:15:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(525,529,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-07 03:43:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(526,530,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-07 04:10:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(527,531,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-11 19:14:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(528,532,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-12 13:52:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(529,533,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-14 02:45:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(530,534,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-14 17:44:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(531,535,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-21 20:52:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(532,536,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-23 23:48:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(533,537,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-24 22:12:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(534,538,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-26 22:00:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(535,539,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-27 09:22:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(536,540,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-29 05:06:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(537,541,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2021-12-31 01:57:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(538,542,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-01 18:19:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(539,543,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-02 16:15:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(540,544,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-03 07:03:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(541,545,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-03 18:01:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(542,546,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-03 21:53:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(543,547,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-04 22:11:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(544,548,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-04 22:40:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(545,549,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-05 16:53:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(546,550,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-06 17:23:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(547,551,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-06 18:04:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(548,552,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-07 08:43:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(549,553,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-08 05:15:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(550,554,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-08 22:02:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(551,555,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-10 22:31:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(552,556,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-11 17:51:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(553,557,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-11 18:08:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(554,558,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-14 03:41:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(555,559,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-14 03:46:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(556,560,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-14 07:15:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(557,561,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-14 23:51:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(558,562,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-15 03:18:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(559,563,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-17 19:14:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(560,564,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-18 18:35:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(561,565,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-19 21:30:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(562,566,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-24 21:47:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(563,567,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-25 15:24:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(564,568,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-25 19:53:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(565,569,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-25 22:32:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(566,570,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-25 23:15:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(567,571,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-26 20:19:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(568,572,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-26 21:46:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(569,573,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-01-27 08:08:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(570,574,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-01 19:25:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(571,575,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-01 22:29:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(572,576,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-01 23:47:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(573,577,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-02 00:35:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(574,578,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-02 20:57:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(575,579,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-03 21:19:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(576,580,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-04 00:51:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(577,581,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-07 04:11:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(578,582,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-07 23:46:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(579,583,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-08 21:09:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(580,584,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-09 17:20:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(581,585,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-09 18:10:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(582,586,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-09 19:35:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(583,587,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-09 22:21:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(584,588,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-10 14:50:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(585,589,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-10 15:32:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(586,590,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-11 16:28:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(587,591,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-14 23:55:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(588,592,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-15 16:45:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(589,593,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-15 19:38:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(590,594,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-15 23:15:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(591,595,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-16 16:43:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(592,596,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-16 17:03:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(593,597,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-17 00:18:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(594,598,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-17 06:36:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(595,599,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-18 16:22:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(596,600,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-18 21:42:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(597,601,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-19 16:56:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(598,602,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-20 16:27:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(599,603,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-22 21:21:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(600,604,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-24 14:00:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(601,605,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-27 01:37:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(602,606,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-28 20:30:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(603,607,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-02-28 21:22:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(604,608,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-01 18:31:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(605,609,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-01 21:41:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(606,610,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-02 02:14:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(607,611,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-02 16:02:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(608,612,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-02 19:32:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(609,613,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-03 02:07:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(610,614,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-03 07:21:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(611,615,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-07 01:05:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(612,616,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-07 03:08:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(613,617,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-07 21:58:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(614,618,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-07 22:18:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(615,619,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-07 22:55:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(616,620,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-08 19:01:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(617,621,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-09 06:05:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(618,622,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-09 18:11:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(619,623,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-10 15:11:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(620,624,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-10 17:11:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(621,625,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-11 01:19:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(622,626,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-11 05:30:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(623,627,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-11 15:56:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(624,628,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-11 19:21:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(625,629,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-12 10:19:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(626,630,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-12 22:19:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(627,631,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-12 22:22:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(628,632,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-13 08:04:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(629,633,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-13 14:53:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(630,634,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-13 19:14:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(631,635,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-16 14:20:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(632,636,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-16 16:35:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(633,637,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-17 01:03:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(634,638,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-17 16:39:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(635,639,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-18 04:35:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(636,640,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-18 16:56:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(637,641,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-18 20:42:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(638,642,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-20 17:07:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(639,643,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-21 05:31:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(640,644,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-21 13:06:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(641,645,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-21 16:18:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(642,646,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-21 23:46:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(643,647,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-23 11:52:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(644,648,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-25 16:34:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(645,649,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-25 17:49:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(646,650,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-25 18:03:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(647,651,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-26 02:28:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(648,652,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-29 01:46:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(649,653,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-30 07:29:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(650,654,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-03-31 21:57:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(651,655,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-01 15:46:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(652,656,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-01 23:19:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(653,657,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-04 00:14:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(654,658,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-04 18:46:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(655,659,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-05 23:58:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(656,660,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-06 20:33:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(657,661,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-06 22:53:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(658,662,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-07 00:51:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(659,663,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-07 06:16:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(660,664,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-08 07:02:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(661,665,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-08 18:22:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(662,666,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-11 14:47:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(663,667,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-11 14:49:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(664,668,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-11 20:51:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(665,669,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-11 22:08:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(666,670,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-12 01:53:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(667,671,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-13 19:43:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(668,672,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-13 22:11:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(669,673,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-14 17:48:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(670,674,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-14 19:27:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(671,675,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-14 20:25:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(672,676,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-15 17:13:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(673,677,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-16 09:10:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(674,678,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-16 15:27:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(675,679,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-19 23:36:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(676,680,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-20 00:04:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(677,681,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-20 00:38:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(678,682,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-20 18:38:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(679,683,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-21 08:07:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(680,684,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-21 21:09:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(681,685,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-21 23:51:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(682,686,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-23 04:36:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(683,687,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-23 15:36:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(684,688,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-24 22:33:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(685,689,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-25 03:40:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(686,690,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-25 18:48:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(687,691,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-25 23:37:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(688,692,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-27 15:44:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(689,693,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-28 01:55:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(690,694,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-28 18:45:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(691,695,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-29 08:45:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(692,696,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-29 16:32:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(693,697,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-04-29 23:41:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(694,698,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-01 10:50:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(695,699,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-01 19:07:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(696,700,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-03 01:57:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(697,701,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-05 16:29:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(698,702,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-06 16:17:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(699,703,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-07 14:50:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(700,704,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-07 22:21:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(701,705,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-08 03:48:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(702,706,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-08 21:44:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(703,707,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-09 17:54:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(704,708,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-12 15:04:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(705,709,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-12 21:40:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(706,710,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-14 02:36:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(707,711,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-14 20:22:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(708,712,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-16 19:46:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(709,713,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-17 09:21:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(710,714,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-17 12:05:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(711,715,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-17 16:20:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(712,716,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-18 07:42:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(713,717,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-18 15:34:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(714,718,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-19 19:56:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(715,719,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-19 21:14:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(716,720,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-20 14:34:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(717,721,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-20 17:24:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(718,722,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-20 20:25:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(719,723,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-21 03:56:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(720,724,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-22 15:55:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(721,725,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-22 16:24:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(722,726,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-23 18:57:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(723,727,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-24 13:12:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(724,728,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-24 15:01:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(725,729,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-25 07:03:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(726,730,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-25 18:33:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(727,731,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-26 05:28:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(728,732,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-27 11:37:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(729,733,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-30 07:06:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(730,734,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-30 13:32:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(731,735,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-05-31 18:23:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(732,736,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-01 20:38:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(733,737,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-02 20:10:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(734,738,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-03 19:54:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(735,739,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-04 19:46:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(736,740,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-05 17:13:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(737,741,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-05 19:31:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(738,742,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-05 23:36:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(739,743,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-08 01:41:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(740,744,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-08 08:06:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(741,745,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-08 08:45:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(742,746,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-08 16:39:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(743,747,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-08 17:32:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(744,748,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-09 00:24:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(745,749,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-09 17:59:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(746,750,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-09 19:23:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(747,751,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-11 09:58:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(748,752,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-11 12:50:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(749,753,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-11 18:11:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(750,754,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-13 17:10:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(751,755,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-13 17:18:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(752,756,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-14 14:45:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(753,757,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-14 19:30:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(754,758,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-16 15:15:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(755,759,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-16 17:40:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(756,760,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-16 19:01:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(757,761,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-17 12:48:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(758,762,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-17 13:15:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(759,763,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-17 15:46:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(760,764,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-17 23:17:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(761,765,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-18 10:59:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(762,766,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-18 11:22:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(763,767,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-18 12:05:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(764,768,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-20 07:24:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(765,769,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-20 20:49:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(766,770,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-20 22:46:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(767,771,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-21 12:09:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(768,772,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-21 16:06:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(769,773,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-21 16:30:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(770,774,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-21 21:19:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(771,775,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-22 23:11:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(772,776,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-24 15:41:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(773,777,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-24 18:48:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(774,778,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-24 19:54:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(775,779,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-24 21:10:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(776,780,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-25 10:37:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(777,781,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-25 10:42:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(778,782,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-25 11:48:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(779,783,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-25 23:02:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(780,784,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-26 17:19:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(781,785,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-27 16:55:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(782,786,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-29 06:42:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(783,787,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-29 21:31:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(784,788,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-30 22:21:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(785,789,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-06-30 22:38:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(786,790,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-01 11:44:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(787,791,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-01 12:06:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(788,792,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-02 00:19:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(789,793,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-04 20:00:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(790,794,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-06 03:24:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(791,795,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-08 10:47:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(792,796,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-09 17:12:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(793,797,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-14 06:46:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(794,798,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-14 12:28:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(795,799,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-15 06:52:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(796,800,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-15 13:34:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(797,801,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-15 18:25:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(798,802,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-15 20:33:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(799,803,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-15 23:12:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(800,804,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-18 01:08:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(801,805,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-18 03:05:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(802,806,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-19 18:18:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(803,807,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-19 20:06:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(804,808,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-19 23:52:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(805,809,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-20 04:06:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(806,810,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-20 04:26:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(807,811,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-20 07:13:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(808,812,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-20 16:11:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(809,813,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-20 16:13:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(810,814,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-21 01:42:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(811,815,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-21 12:06:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(812,816,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-22 06:16:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(813,817,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-22 16:44:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(814,818,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-22 20:23:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(815,819,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-22 22:55:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(816,820,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-29 02:49:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(817,821,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-30 07:41:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(818,822,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-30 15:10:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(819,823,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-07-31 00:29:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(820,824,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-01 22:51:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(821,825,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-02 20:21:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(822,826,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-07 13:28:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(823,827,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-07 15:12:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(824,828,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-08 19:19:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(825,829,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-09 21:11:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(826,830,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-11 08:38:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(827,831,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-11 10:29:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(828,832,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-14 05:46:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(829,833,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-15 16:25:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(830,834,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-15 21:51:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(831,835,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-16 03:03:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(832,836,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-17 18:45:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(833,837,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-18 02:56:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(834,838,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-19 14:28:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(835,839,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-19 14:44:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(836,840,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-19 14:55:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(837,841,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-19 17:15:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(838,842,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-19 20:24:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(839,843,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-20 16:29:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(840,844,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-21 01:15:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(841,845,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-22 15:52:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(842,846,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-23 09:17:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(843,847,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-23 18:20:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(844,848,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-24 09:13:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(845,849,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-24 20:30:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(846,850,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-25 08:03:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(847,851,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-25 11:27:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(848,852,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-26 12:35:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(849,853,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-28 17:18:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(850,854,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-08-28 19:19:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(851,855,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-09 04:48:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(852,856,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-11 23:47:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(853,857,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-13 02:57:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(854,858,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-13 20:31:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(855,859,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-13 20:45:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(856,860,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-14 19:50:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(857,861,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-19 18:29:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(858,862,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-20 04:39:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(859,863,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-20 14:12:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(860,864,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-21 03:18:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(861,865,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-21 03:36:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(862,866,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-21 03:52:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(863,867,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-21 04:17:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(864,868,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-21 04:37:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(865,869,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-21 05:19:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(866,870,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-21 05:35:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(867,871,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-21 05:55:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(868,872,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-21 06:00:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(869,873,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-21 06:11:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(870,874,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-21 19:23:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(871,875,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-22 21:07:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(872,876,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-23 17:00:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(873,877,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-25 20:34:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(874,878,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-26 21:11:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(875,879,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-29 14:33:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(876,880,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-09-30 15:57:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(877,881,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-02 21:11:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(878,882,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-05 07:54:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(879,883,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-05 15:10:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(880,884,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-08 18:19:05','WordPress successfully passed the notification email to the sending server.','notification','success'),(881,885,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-10 06:41:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(882,886,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-11 17:18:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(883,887,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-13 09:10:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(884,888,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-16 17:09:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(885,889,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-17 09:59:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(886,890,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-18 19:10:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(887,891,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-19 00:02:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(888,892,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-20 22:55:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(889,893,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-21 07:41:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(890,894,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-21 18:39:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(891,895,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-23 12:26:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(892,896,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-26 03:20:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(893,897,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-26 09:03:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(894,898,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-27 16:42:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(895,899,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-28 09:36:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(896,900,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-30 03:29:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(897,901,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-31 14:56:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(898,902,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-10-31 21:08:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(899,903,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-02 21:28:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(900,904,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-04 04:09:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(901,905,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-04 07:28:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(902,906,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-07 05:40:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(903,907,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-08 10:54:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(904,908,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-08 22:14:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(905,909,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-09 07:47:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(906,910,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-09 22:40:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(907,911,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-10 02:13:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(908,912,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-11 21:17:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(909,913,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-12 17:32:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(910,914,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-12 23:51:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(911,915,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-14 12:57:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(912,916,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-18 21:31:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(913,917,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-19 04:32:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(914,918,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-19 20:12:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(915,919,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-19 22:12:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(916,920,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-19 22:15:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(917,921,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-20 03:46:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(918,922,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-20 21:23:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(919,923,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-21 12:33:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(920,924,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-21 22:19:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(921,925,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-22 21:06:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(922,926,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-23 00:36:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(923,927,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-24 11:13:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(924,928,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-25 05:32:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(925,929,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-25 07:17:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(926,930,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-26 04:04:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(927,931,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-26 09:11:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(928,932,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-28 08:00:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(929,933,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-28 16:56:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(930,934,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-28 17:00:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(931,935,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-28 23:40:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(932,936,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-29 02:46:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(933,937,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-29 21:05:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(934,938,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-29 22:56:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(935,939,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-11-30 19:35:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(936,940,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-02 23:14:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(937,941,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-03 17:07:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(938,942,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-04 19:30:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(939,943,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-04 22:58:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(940,944,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-06 03:59:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(941,945,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-06 23:40:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(942,946,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-07 15:14:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(943,947,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-07 18:36:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(944,948,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-08 13:38:57','WordPress successfully passed the notification email to the sending server.','notification','success'),(945,949,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-09 04:00:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(946,950,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-09 16:36:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(947,951,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-09 18:15:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(948,952,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-10 00:46:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(949,953,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-11 04:10:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(950,954,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-11 06:44:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(951,955,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-11 21:52:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(952,956,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-12 08:09:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(953,957,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-12 16:53:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(954,958,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-13 23:40:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(955,959,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-13 23:46:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(956,960,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-14 03:21:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(957,961,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-14 03:36:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(958,962,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-14 04:34:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(959,963,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-14 11:27:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(960,964,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-14 12:49:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(961,965,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-14 16:31:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(962,966,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-14 17:14:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(963,967,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-15 01:08:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(964,968,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-16 23:50:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(965,969,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-18 11:44:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(966,970,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-18 17:38:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(967,971,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-19 01:38:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(968,972,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-19 03:38:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(969,973,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-19 04:20:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(970,974,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-20 04:05:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(971,975,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-20 06:06:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(972,976,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-21 10:15:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(973,977,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-21 11:50:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(974,978,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-22 07:56:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(975,979,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-22 09:21:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(976,980,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-22 17:23:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(977,981,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-23 08:21:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(978,982,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-23 09:29:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(979,983,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-25 05:01:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(980,984,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-25 07:44:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(981,985,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-26 03:35:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(982,986,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-26 18:30:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(983,987,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-27 04:40:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(984,988,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-27 11:53:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(985,989,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-28 13:27:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(986,990,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-28 21:09:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(987,991,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-30 17:42:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(988,992,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-30 18:46:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(989,993,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2022-12-31 15:58:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(990,994,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-02 11:54:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(991,995,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-02 16:12:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(992,996,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-03 00:06:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(993,997,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-03 23:07:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(994,998,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-04 02:36:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(995,999,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-04 18:58:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(996,1000,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-04 19:56:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(997,1001,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-05 14:09:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(998,1002,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-05 17:23:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(999,1003,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-05 23:40:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(1000,1004,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-06 00:15:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(1001,1005,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-06 13:50:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(1002,1006,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-06 14:27:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(1003,1007,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-07 06:12:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(1004,1008,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-07 20:10:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(1005,1009,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-08 06:28:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(1006,1010,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-08 17:54:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(1007,1011,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-09 10:34:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(1008,1012,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-09 10:42:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(1009,1013,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-09 18:34:47','WordPress successfully passed the notification email to the sending server.','notification','success'),(1010,1014,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-10 19:15:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(1011,1015,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-12 19:46:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(1012,1016,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-12 22:17:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(1013,1017,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-13 09:09:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(1014,1018,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-13 10:07:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(1015,1019,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-13 15:56:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(1016,1020,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-13 23:42:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(1017,1021,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-14 00:33:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(1018,1022,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-14 05:12:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(1019,1023,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-14 21:49:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(1020,1024,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-16 12:08:23','WordPress successfully passed the notification email to the sending server.','notification','success'),(1021,1025,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-16 12:11:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(1022,1026,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-16 20:40:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(1023,1027,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-17 08:22:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(1024,1028,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-17 19:47:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(1025,1029,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-18 04:03:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(1026,1030,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-18 15:40:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(1027,1031,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-19 14:48:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(1028,1032,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-19 15:10:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(1029,1033,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-19 15:18:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(1030,1034,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-19 21:09:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(1031,1035,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-20 06:18:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(1032,1036,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-20 14:23:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(1033,1037,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-21 19:57:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(1034,1038,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-21 20:08:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(1035,1039,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-22 19:54:24','WordPress successfully passed the notification email to the sending server.','notification','success'),(1036,1040,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-23 09:10:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(1037,1041,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-23 17:05:12','WordPress successfully passed the notification email to the sending server.','notification','success'),(1038,1042,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-23 17:18:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(1039,1043,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-24 03:38:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(1040,1044,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-25 03:35:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(1041,1045,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-26 16:08:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(1042,1046,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-27 02:37:06','WordPress successfully passed the notification email to the sending server.','notification','success'),(1043,1047,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-27 22:43:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(1044,1048,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-29 02:07:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(1045,1049,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-29 07:50:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(1046,1050,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-29 07:57:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(1047,1051,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-31 12:03:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(1048,1052,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-31 13:15:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(1049,1053,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-31 17:03:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(1050,1054,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-31 21:11:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(1051,1055,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-01-31 22:14:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(1052,1056,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-01 23:53:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(1053,1057,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-02 05:34:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(1054,1058,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-02 15:51:31','WordPress successfully passed the notification email to the sending server.','notification','success'),(1055,1059,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-02 16:32:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(1056,1060,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-02 17:41:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(1057,1061,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-03 05:56:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(1058,1062,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-03 05:57:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(1059,1063,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-03 07:28:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(1060,1064,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-03 07:53:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(1061,1065,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-04 08:36:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(1062,1066,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-06 23:50:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(1063,1067,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-07 04:36:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(1064,1068,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-07 07:48:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(1065,1069,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-07 07:52:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(1066,1070,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-07 23:13:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(1067,1071,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-08 06:09:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(1068,1072,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-08 22:58:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(1069,1073,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-09 15:01:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(1070,1074,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-09 21:45:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(1071,1075,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-10 15:08:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(1072,1076,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-11 10:11:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(1073,1077,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-11 17:38:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(1074,1078,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-14 20:12:50','WordPress successfully passed the notification email to the sending server.','notification','success'),(1075,1079,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-17 09:49:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(1076,1080,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-17 10:30:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(1077,1081,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-17 10:47:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(1078,1082,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-18 07:41:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(1079,1083,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-18 08:30:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(1080,1084,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-19 11:49:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(1081,1085,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-20 01:55:53','WordPress successfully passed the notification email to the sending server.','notification','success'),(1082,1086,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-20 15:35:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(1083,1087,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-21 04:44:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(1084,1088,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-21 23:02:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(1085,1089,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-21 23:39:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(1086,1090,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-22 00:02:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(1087,1091,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-25 01:47:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(1088,1092,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-02-28 11:41:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(1089,1093,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-03 12:14:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(1090,1094,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-03 14:21:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(1091,1095,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-05 23:48:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(1092,1096,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-06 08:50:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(1093,1097,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-06 08:52:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(1094,1098,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-06 17:14:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(1095,1099,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-06 18:38:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(1096,1100,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-06 22:13:08','WordPress successfully passed the notification email to the sending server.','notification','success'),(1097,1101,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-07 21:11:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(1098,1102,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-08 17:13:51','WordPress successfully passed the notification email to the sending server.','notification','success'),(1099,1103,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-09 16:19:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(1100,1104,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-13 14:04:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(1101,1105,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-15 05:28:41','WordPress successfully passed the notification email to the sending server.','notification','success'),(1102,1106,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-17 15:36:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(1103,1107,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-17 22:13:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(1104,1108,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-18 03:12:04','WordPress successfully passed the notification email to the sending server.','notification','success'),(1105,1109,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-18 07:02:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(1106,1110,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-18 07:04:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(1107,1111,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-19 23:20:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(1108,1112,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-20 21:02:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(1109,1113,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-21 05:17:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(1110,1114,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-21 17:45:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(1111,1115,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-22 07:52:33','WordPress successfully passed the notification email to the sending server.','notification','success'),(1112,1116,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-24 18:05:38','WordPress successfully passed the notification email to the sending server.','notification','success'),(1113,1117,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-27 19:44:45','WordPress successfully passed the notification email to the sending server.','notification','success'),(1114,1118,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-27 23:35:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(1115,1119,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-28 03:02:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(1116,1120,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-28 04:51:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(1117,1121,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-29 21:53:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(1118,1122,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-03-31 03:57:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(1119,1123,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-02 15:10:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(1120,1124,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-03 03:12:22','WordPress successfully passed the notification email to the sending server.','notification','success'),(1121,1125,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-03 14:06:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(1122,1126,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-03 18:31:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(1123,1127,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-04 11:10:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(1124,1128,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-04 18:12:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(1125,1129,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-05 10:17:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(1126,1130,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-05 15:07:40','WordPress successfully passed the notification email to the sending server.','notification','success'),(1127,1131,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-06 02:54:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(1128,1132,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-06 16:03:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(1129,1133,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-06 20:34:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(1130,1134,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-06 22:15:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(1131,1135,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-07 13:53:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(1132,1136,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-08 00:22:34','WordPress successfully passed the notification email to the sending server.','notification','success'),(1133,1137,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-09 04:53:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(1134,1138,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-09 07:01:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(1135,1139,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-09 07:02:11','WordPress successfully passed the notification email to the sending server.','notification','success'),(1136,1140,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-09 08:34:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(1137,1141,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-09 18:01:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(1138,1142,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-10 12:56:39','WordPress successfully passed the notification email to the sending server.','notification','success'),(1139,1143,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-10 16:41:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(1140,1144,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-12 14:57:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(1141,1145,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-13 00:45:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(1142,1146,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-13 18:55:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(1143,1147,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-14 09:21:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(1144,1148,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-15 00:39:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(1145,1149,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-17 19:50:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(1146,1150,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-19 23:19:49','WordPress successfully passed the notification email to the sending server.','notification','success'),(1147,1151,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-20 01:05:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(1148,1152,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-20 01:47:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(1149,1153,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-21 18:50:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(1150,1154,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-22 01:14:19','WordPress successfully passed the notification email to the sending server.','notification','success'),(1151,1155,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-22 14:48:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(1152,1156,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-23 13:55:54','WordPress successfully passed the notification email to the sending server.','notification','success'),(1153,1157,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-26 10:33:00','WordPress successfully passed the notification email to the sending server.','notification','success'),(1154,1160,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-29 06:01:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(1155,1161,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-29 06:04:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(1156,1162,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-29 20:13:13','WordPress successfully passed the notification email to the sending server.','notification','success'),(1157,1163,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-04-30 16:39:44','WordPress successfully passed the notification email to the sending server.','notification','success'),(1158,1164,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-03 21:05:14','WordPress successfully passed the notification email to the sending server.','notification','success'),(1159,1165,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-03 21:09:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(1160,1166,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-04 01:29:37','WordPress successfully passed the notification email to the sending server.','notification','success'),(1161,1167,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-04 18:05:09','WordPress successfully passed the notification email to the sending server.','notification','success'),(1162,1168,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-05 18:47:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(1163,1169,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-10 11:43:32','WordPress successfully passed the notification email to the sending server.','notification','success'),(1164,1170,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-10 23:14:43','WordPress successfully passed the notification email to the sending server.','notification','success'),(1165,1171,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-10 23:46:01','WordPress successfully passed the notification email to the sending server.','notification','success'),(1166,1172,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-13 20:49:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(1167,1173,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-13 22:50:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(1168,1174,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-16 04:02:29','WordPress successfully passed the notification email to the sending server.','notification','success'),(1169,1175,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-16 22:12:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(1170,1176,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-17 01:01:17','WordPress successfully passed the notification email to the sending server.','notification','success'),(1171,1177,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-17 19:01:21','WordPress successfully passed the notification email to the sending server.','notification','success'),(1172,1178,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-18 21:31:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(1173,1179,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-22 02:07:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(1174,1180,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-22 11:18:27','WordPress successfully passed the notification email to the sending server.','notification','success'),(1175,1181,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-22 21:43:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(1176,1182,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-23 03:21:15','WordPress successfully passed the notification email to the sending server.','notification','success'),(1177,1183,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-23 18:23:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(1178,1184,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-23 19:14:03','WordPress successfully passed the notification email to the sending server.','notification','success'),(1179,1185,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-25 04:53:55','WordPress successfully passed the notification email to the sending server.','notification','success'),(1180,1186,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-25 05:58:56','WordPress successfully passed the notification email to the sending server.','notification','success'),(1181,1187,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-25 15:25:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(1182,1188,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-26 02:08:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(1183,1189,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-29 05:16:46','WordPress successfully passed the notification email to the sending server.','notification','success'),(1184,1190,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-29 23:54:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(1185,1191,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-05-31 16:36:59','WordPress successfully passed the notification email to the sending server.','notification','success'),(1186,1192,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-01 21:54:20','WordPress successfully passed the notification email to the sending server.','notification','success'),(1187,1193,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-02 22:10:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(1188,1194,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-03 03:19:02','WordPress successfully passed the notification email to the sending server.','notification','success'),(1189,1195,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-03 18:57:26','WordPress successfully passed the notification email to the sending server.','notification','success'),(1190,1196,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-03 19:45:07','WordPress successfully passed the notification email to the sending server.','notification','success'),(1191,1197,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-04 14:18:52','WordPress successfully passed the notification email to the sending server.','notification','success'),(1192,1198,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-05 04:56:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(1193,1199,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-05 13:52:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(1194,1200,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-05 16:26:48','WordPress successfully passed the notification email to the sending server.','notification','success'),(1195,1201,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-06 06:43:28','WordPress successfully passed the notification email to the sending server.','notification','success'),(1196,1202,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-06 21:21:25','WordPress successfully passed the notification email to the sending server.','notification','success'),(1197,1203,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-07 02:55:16','WordPress successfully passed the notification email to the sending server.','notification','success'),(1198,1204,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-10 23:49:10','WordPress successfully passed the notification email to the sending server.','notification','success'),(1199,1205,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-12 13:10:58','WordPress successfully passed the notification email to the sending server.','notification','success'),(1200,1206,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-13 17:37:36','WordPress successfully passed the notification email to the sending server.','notification','success'),(1201,1207,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-14 02:55:30','WordPress successfully passed the notification email to the sending server.','notification','success'),(1202,1208,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-14 12:05:35','WordPress successfully passed the notification email to the sending server.','notification','success'),(1203,1209,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-15 01:25:18','WordPress successfully passed the notification email to the sending server.','notification','success'),(1204,1210,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-15 09:16:42','WordPress successfully passed the notification email to the sending server.','notification','success'),(1205,1211,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-16 22:46:05','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1206,1212,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-17 09:13:19','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1207,1213,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-20 16:48:41','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1208,1214,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-20 23:36:03','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1209,1215,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-22 01:02:13','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1210,1216,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-23 17:24:59','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1211,1217,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-23 22:19:10','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1212,1218,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-23 22:25:08','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1213,1219,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-24 15:41:36','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1214,1220,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-26 01:44:58','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1215,1221,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-27 08:03:15','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1216,1222,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-28 19:49:50','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1217,1223,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-29 17:07:09','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1218,1224,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-29 22:18:40','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1219,1225,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-06-30 12:11:55','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1220,1226,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-01 20:12:20','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1221,1227,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-03 04:49:29','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1222,1228,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-03 06:58:41','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1223,1229,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-03 09:06:15','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1224,1230,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-05 23:57:12','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1225,1231,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-06 20:59:25','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1226,1232,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-07 15:38:03','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1227,1233,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-09 22:59:34','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1228,1234,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-15 08:05:23','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1229,1235,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-15 19:53:01','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1230,1236,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-22 14:19:19','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1231,1237,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-23 06:12:58','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1232,1238,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-23 10:47:04','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1233,1239,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-23 21:59:57','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1234,1240,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-26 21:06:11','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1235,1241,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-27 00:58:16','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1236,1242,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-27 23:57:19','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1237,1243,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-07-30 14:27:10','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1238,1244,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-03 17:45:06','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1239,1245,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-04 10:29:36','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1240,1246,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-04 15:33:37','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1241,1247,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-07 17:22:29','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1242,1248,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-09 06:25:40','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1243,1249,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-09 21:59:26','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1244,1250,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-10 22:23:46','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1245,1251,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-11 13:50:25','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1246,1252,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-12 10:30:50','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1247,1253,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-16 03:37:02','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1248,1254,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-17 21:53:01','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1249,1255,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-19 04:26:04','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1250,1256,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-22 09:41:44','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1251,1257,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-22 18:47:38','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1252,1258,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-23 11:39:18','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1253,1259,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-23 20:53:40','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1254,1260,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-27 03:51:36','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1255,1261,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-29 21:04:38','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1256,1262,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-30 00:32:44','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1257,1263,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-30 18:59:07','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1258,1264,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-31 00:38:57','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1259,1265,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-31 05:24:23','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1260,1266,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-31 13:37:30','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1261,1267,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-08-31 19:39:28','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1262,1268,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-01 06:43:02','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1263,1269,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-01 15:31:39','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1264,1270,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-01 16:10:29','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1265,1271,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-01 21:44:41','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1266,1272,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-03 20:17:14','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1267,1273,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-04 02:58:02','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1268,1274,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-05 19:18:55','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1269,1275,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-06 05:55:18','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1270,1276,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-06 16:24:22','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1271,1277,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-06 17:00:02','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1272,1278,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-11 23:14:21','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1273,1279,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-12 17:45:11','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1274,1280,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-12 19:37:47','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1275,1281,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-15 00:35:04','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1276,1282,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-15 18:12:21','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1277,1283,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-18 23:49:31','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1278,1284,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-20 20:21:02','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1279,1285,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-20 21:13:12','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error'),(1280,1286,'Admin Notification (ID: 5d5d8e04b89e0)',0,'2023-09-21 18:02:36','WordPress was unable to send the notification email.\nSMTP Error: Could not authenticate.','notification','error');
/*!40000 ALTER TABLE `wp_gf_entry_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_form`
--

DROP TABLE IF EXISTS `wp_gf_form`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_form` (
  `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(150) NOT NULL,
  `date_created` datetime NOT NULL,
  `date_updated` datetime DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `is_trash` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_form`
--

LOCK TABLES `wp_gf_form` WRITE;
/*!40000 ALTER TABLE `wp_gf_form` DISABLE KEYS */;
INSERT INTO `wp_gf_form` VALUES (1,'Contact Form','2020-04-15 01:41:01',NULL,1,0);
/*!40000 ALTER TABLE `wp_gf_form` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_form_meta`
--

DROP TABLE IF EXISTS `wp_gf_form_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_form_meta` (
  `form_id` mediumint(8) unsigned NOT NULL,
  `display_meta` longtext DEFAULT NULL,
  `entries_grid_meta` longtext DEFAULT NULL,
  `confirmations` longtext DEFAULT NULL,
  `notifications` longtext DEFAULT NULL,
  PRIMARY KEY (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_form_meta`
--

LOCK TABLES `wp_gf_form_meta` WRITE;
/*!40000 ALTER TABLE `wp_gf_form_meta` DISABLE KEYS */;
INSERT INTO `wp_gf_form_meta` VALUES (1,'{\"title\":\"Contact Form\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit Form\",\"imageUrl\":\"\",\"conditionalLogic\":null},\"fields\":[{\"type\":\"section\",\"id\":10,\"label\":\"1. Contact Information\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"displayOnly\":true,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"fields\":\"\",\"pageNumber\":1},{\"type\":\"name\",\"id\":6,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"nameFormat\":\"advanced\",\"inputs\":[{\"id\":\"6.2\",\"label\":\"Prefix\",\"name\":\"\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"6.3\",\"label\":\"First\",\"name\":\"\",\"placeholder\":\"\"},{\"id\":\"6.4\",\"label\":\"Middle\",\"name\":\"\",\"isHidden\":true},{\"id\":\"6.6\",\"label\":\"Last\",\"name\":\"\",\"isHidden\":true},{\"id\":\"6.8\",\"label\":\"Suffix\",\"name\":\"\",\"isHidden\":true}],\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"hidden_label\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"fields\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"displayOnly\":\"\",\"checkboxLabel\":\"\",\"pageNumber\":1},{\"type\":\"email\",\"id\":2,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"emailConfirmEnabled\":\"\",\"fields\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"displayOnly\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"checkboxLabel\":\"\",\"pageNumber\":1},{\"type\":\"phone\",\"id\":3,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"phoneFormat\":\"standard\",\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"form_id\":\"\",\"productField\":\"\",\"fields\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"displayOnly\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"checkboxLabel\":\"\",\"pageNumber\":1},{\"type\":\"section\",\"id\":9,\"label\":\"2. Tell Us About Your Case\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"displayOnly\":true,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"fields\":\"\",\"pageNumber\":1},{\"type\":\"textarea\",\"id\":5,\"label\":\"Current Concern\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"form_id\":\"\",\"useRichTextEditor\":false,\"fields\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"displayOnly\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"checkboxLabel\":\"\",\"pageNumber\":1},{\"type\":\"radio\",\"id\":11,\"label\":\"Has surgery been recommended?\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"choices\":[{\"text\":\"Yes, and I want to avoid it if possible\",\"value\":\"Yes, and I want to avoid it if possible\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Not yet, and I want to avoid the need for one in the future\",\"value\":\"Not yet, and I want to avoid the need for one in the future\",\"isSelected\":true,\"price\":\"\"}],\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enableOtherChoice\":\"\",\"enablePrice\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"fields\":\"\",\"displayOnly\":\"\",\"pageNumber\":1},{\"type\":\"section\",\"id\":12,\"label\":\"3. How Can We Best Serve You?\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"displayOnly\":true,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"fields\":\"\",\"pageNumber\":1},{\"type\":\"select\",\"id\":13,\"label\":\"How did you hear about us?\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"choices\":[{\"text\":\"\",\"value\":\"\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Referred by my doctor\\/provider\",\"value\":\"Referred by my doctor\\/provider\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Friend\\/family who was\\/is a patient\",\"value\":\"Friend\\/family who was\\/is a patient\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"I am a current patient\\/was a patient previously\",\"value\":\"I am a current patient\\/was a patient previously\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Google\\/Internet\",\"value\":\"Google\\/Internet\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"YouTube\",\"value\":\"YouTube\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Facebook\",\"value\":\"Facebook\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Another healthcare website\",\"value\":\"Another healthcare website\",\"isSelected\":false,\"price\":\"\"}],\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePrice\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"fields\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"displayOnly\":\"\",\"checkboxLabel\":\"\",\"enableChoiceValue\":false,\"pageNumber\":1},{\"type\":\"select\",\"id\":4,\"label\":\"Preferred Call Back Time\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"choices\":[{\"text\":\"Anytime\",\"value\":\"Anytime\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"9am \\u2013 11am\",\"value\":\"9am \\u2013 11am\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"11am \\u2013 1pm\",\"value\":\"11am \\u2013 1pm\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"1pm \\u2013 3pm\",\"value\":\"1pm \\u2013 3pm\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"3pm \\u2013 5pm\",\"value\":\"3pm \\u2013 5pm\",\"isSelected\":false,\"price\":\"\"}],\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"enablePrice\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"fields\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"displayOnly\":\"\",\"checkboxLabel\":\"\",\"enableChoiceValue\":false,\"pageNumber\":1},{\"type\":\"captcha\",\"id\":14,\"label\":\"CAPTCHA\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"medium\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"displayOnly\":true,\"formId\":1,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"hidden_label\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"captchaType\":\"\",\"captchaTheme\":\"\",\"pageNumber\":1,\"fields\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false}],\"version\":\"2.4.20\",\"id\":1,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"nextFieldId\":15,\"subLabelPlacement\":\"below\",\"cssClass\":\"\",\"enableHoneypot\":true,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\"}','a:5:{i:0;s:3:\"6.3\";i:1;s:3:\"6.6\";i:2;s:1:\"2\";i:3;s:1:\"3\";i:5;s:12:\"date_created\";}','{\"5d5d8e04b8f83\":{\"id\":\"5d5d8e04b8f83\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thank you for contacting us. We have received your request and will respond as soon as we are able to.\\r\\n\\r\\nIf your request is urgent please call 310-775-2886\",\"url\":\"\",\"pageId\":0,\"queryString\":\"\",\"disableAutoformat\":false,\"conditionalLogic\":[]}}','{\"5d5d8e04b89e0\":{\"isActive\":true,\"name\":\"Admin Notification\",\"service\":\"wordpress\",\"event\":\"form_submission\",\"to\":\"info@drfields.com, pcc@drfields.com\",\"toType\":\"email\",\"cc\":\"\",\"bcc\":\"\",\"subject\":\"Dr. Fields Submission Form\",\"message\":\"{all_fields}\",\"from\":\"noreply@drfields.com\",\"fromName\":\"\",\"replyTo\":\"\",\"routing\":null,\"conditionalLogic\":null,\"disableAutoformat\":false,\"enableAttachments\":false,\"id\":\"5d5d8e04b89e0\"}}');
/*!40000 ALTER TABLE `wp_gf_form_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_form_revisions`
--

DROP TABLE IF EXISTS `wp_gf_form_revisions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_form_revisions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL,
  `display_meta` longtext DEFAULT NULL,
  `date_created` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `date_created` (`date_created`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_form_revisions`
--

LOCK TABLES `wp_gf_form_revisions` WRITE;
/*!40000 ALTER TABLE `wp_gf_form_revisions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_gf_form_revisions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_form_view`
--

DROP TABLE IF EXISTS `wp_gf_form_view`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_form_view` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` char(15) DEFAULT NULL,
  `count` mediumint(8) unsigned NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `date_created` (`date_created`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1184 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_form_view`
--

LOCK TABLES `wp_gf_form_view` WRITE;
/*!40000 ALTER TABLE `wp_gf_form_view` DISABLE KEYS */;
INSERT INTO `wp_gf_form_view` VALUES (1,1,'2020-04-15 02:01:57','',5),(2,1,'2020-04-16 02:29:58','',7),(3,1,'2020-04-17 15:52:02','',3),(4,1,'2020-04-20 15:22:45','',2),(5,1,'2020-04-21 16:52:17','',2),(6,1,'2020-04-30 02:13:56','',5),(7,1,'2020-05-01 09:20:46','',3),(8,1,'2020-05-02 12:00:14','',2),(9,1,'2020-05-04 04:04:17','',3),(10,1,'2020-05-05 13:45:19','',5),(11,1,'2020-05-06 21:49:23','',3),(12,1,'2020-05-08 01:21:56','',1),(13,1,'2020-05-10 02:38:38','',2),(14,1,'2020-05-11 16:58:25','',1),(15,1,'2020-05-14 15:04:58','',3),(16,1,'2020-05-15 23:39:54','',17),(17,1,'2020-05-17 00:58:32','',12),(18,1,'2020-05-18 02:07:49','',15),(19,1,'2020-05-19 02:59:46','',16),(20,1,'2020-05-20 04:28:24','',14),(21,1,'2020-05-21 04:55:42','',17),(22,1,'2020-05-22 14:45:53','',13),(23,1,'2020-05-23 17:08:39','',11),(24,1,'2020-05-24 19:08:11','',16),(25,1,'2020-05-25 19:27:49','',13),(26,1,'2020-05-26 20:23:24','',16),(27,1,'2020-05-27 20:58:25','',13),(28,1,'2020-05-28 23:41:20','',8),(29,1,'2020-05-29 23:56:12','',11),(30,1,'2020-05-31 00:06:39','',6),(31,1,'2020-06-01 01:56:38','',12),(32,1,'2020-06-02 07:47:27','',16),(33,1,'2020-06-03 08:32:39','',17),(34,1,'2020-06-04 14:07:44','',12),(35,1,'2020-06-05 15:43:23','',10),(36,1,'2020-06-06 19:29:06','',12),(37,1,'2020-06-07 19:54:14','',10),(38,1,'2020-06-09 00:54:23','',16),(39,1,'2020-06-10 01:16:10','',8),(40,1,'2020-06-11 01:52:49','',12),(41,1,'2020-06-12 02:55:01','',13),(42,1,'2020-06-13 03:02:17','',5),(43,1,'2020-06-14 03:58:18','',6),(44,1,'2020-06-15 09:02:02','',12),(45,1,'2020-06-16 09:34:05','',15),(46,1,'2020-06-17 09:49:49','',20),(47,1,'2020-06-18 11:36:41','',18),(48,1,'2020-06-19 15:16:51','',14),(49,1,'2020-06-20 16:49:51','',18),(50,1,'2020-06-21 17:13:23','',23),(51,1,'2020-06-22 19:16:48','',27),(52,1,'2020-06-23 19:36:10','',23),(53,1,'2020-06-24 19:51:31','',18),(54,1,'2020-06-25 20:04:08','',24),(55,1,'2020-06-26 20:16:28','',18),(56,1,'2020-06-27 21:07:33','',19),(57,1,'2020-06-28 21:53:37','',12),(58,1,'2020-06-29 22:34:46','',21),(59,1,'2020-06-30 23:39:09','',23),(60,1,'2020-07-02 00:07:39','',17),(61,1,'2020-07-03 01:06:51','',23),(62,1,'2020-07-04 05:08:25','',16),(63,1,'2020-07-05 05:19:35','',15),(64,1,'2020-07-06 06:45:06','',15),(65,1,'2020-07-07 08:05:21','',19),(66,1,'2020-07-08 09:00:13','',24),(67,1,'2020-07-09 09:01:29','',23),(68,1,'2020-07-10 09:05:04','',17),(69,1,'2020-07-11 09:48:47','',17),(70,1,'2020-07-12 10:01:10','',15),(71,1,'2020-07-13 10:52:50','',12),(72,1,'2020-07-14 14:04:45','',20),(73,1,'2020-07-15 14:40:14','',21),(74,1,'2020-07-16 15:11:27','',17),(75,1,'2020-07-17 16:09:17','',13),(76,1,'2020-07-18 18:48:05','',20),(77,1,'2020-07-19 21:02:06','',18),(78,1,'2020-07-20 22:54:01','',21),(79,1,'2020-07-22 02:19:20','',19),(80,1,'2020-07-23 03:21:19','',24),(81,1,'2020-07-24 04:29:36','',25),(82,1,'2020-07-25 04:29:39','',21),(83,1,'2020-07-26 05:06:50','',23),(84,1,'2020-07-27 07:13:30','',18),(85,1,'2020-07-28 07:57:57','',19),(86,1,'2020-07-29 08:32:12','',18),(87,1,'2020-07-30 09:08:30','',21),(88,1,'2020-07-31 10:17:26','',27),(89,1,'2020-08-01 11:19:41','',22),(90,1,'2020-08-02 11:55:06','',22),(91,1,'2020-08-03 13:40:16','',21),(92,1,'2020-08-04 14:35:34','',24),(93,1,'2020-08-05 16:46:31','',24),(94,1,'2020-08-06 17:30:43','',26),(95,1,'2020-08-07 17:57:55','',17),(96,1,'2020-08-08 18:40:56','',8),(97,1,'2020-08-09 19:57:02','',15),(98,1,'2020-08-10 21:28:00','',20),(99,1,'2020-08-11 23:02:32','',25),(100,1,'2020-08-12 23:33:10','',20),(101,1,'2020-08-14 01:06:26','',24),(102,1,'2020-08-15 02:46:09','',23),(103,1,'2020-08-16 03:41:32','',20),(104,1,'2020-08-17 03:47:16','',26),(105,1,'2020-08-18 04:09:11','',29),(106,1,'2020-08-19 04:42:23','',26),(107,1,'2020-08-20 06:43:32','',22),(108,1,'2020-08-21 07:29:29','',28),(109,1,'2020-08-22 08:20:28','',15),(110,1,'2020-08-23 11:05:07','',15),(111,1,'2020-08-24 11:52:01','',22),(112,1,'2020-08-25 15:07:33','',17),(113,1,'2020-08-26 16:30:56','',22),(114,1,'2020-08-27 17:34:35','',18),(115,1,'2020-08-28 18:29:07','',17),(116,1,'2020-08-29 19:08:16','',18),(117,1,'2020-08-30 19:48:52','',25),(118,1,'2020-08-31 19:55:39','',29),(119,1,'2020-09-01 20:09:51','',21),(120,1,'2020-09-02 20:28:17','',16),(121,1,'2020-09-03 20:34:03','',25),(122,1,'2020-09-04 21:24:43','',15),(123,1,'2020-09-05 23:54:21','',10),(124,1,'2020-09-07 01:16:19','',28),(125,1,'2020-09-08 02:05:19','',19),(126,1,'2020-09-09 02:12:28','',28),(127,1,'2020-09-10 02:35:47','',23),(128,1,'2020-09-11 06:12:49','',23),(129,1,'2020-09-12 06:56:21','',21),(130,1,'2020-09-13 08:09:01','',19),(131,1,'2020-09-14 08:20:02','',26),(132,1,'2020-09-15 08:33:38','',22),(133,1,'2020-09-16 12:56:38','',19),(134,1,'2020-09-17 13:02:58','',27),(135,1,'2020-09-18 13:25:18','',20),(136,1,'2020-09-19 13:25:36','',19),(137,1,'2020-09-20 15:19:59','',19),(138,1,'2020-09-21 16:01:53','',22),(139,1,'2020-09-22 17:51:58','',22),(140,1,'2020-09-23 18:16:40','',20),(141,1,'2020-09-24 19:15:45','',32),(142,1,'2020-09-25 19:50:57','',20),(143,1,'2020-09-26 21:44:20','',18),(144,1,'2020-09-27 22:15:49','',25),(145,1,'2020-09-28 23:13:31','',20),(146,1,'2020-09-30 01:42:54','',21),(147,1,'2020-10-01 01:52:18','',9),(148,1,'2020-10-05 20:49:24','',24),(149,1,'2020-10-06 20:56:31','',29),(150,1,'2020-10-07 21:48:51','',36),(151,1,'2020-10-08 22:11:58','',38),(152,1,'2020-10-09 22:50:23','',20),(153,1,'2020-10-11 00:48:01','',25),(154,1,'2020-10-12 01:43:16','',21),(155,1,'2020-10-13 02:06:07','',28),(156,1,'2020-10-14 02:17:10','',23),(157,1,'2020-10-15 03:11:36','',21),(158,1,'2020-10-16 04:33:38','',24),(159,1,'2020-10-17 04:34:25','',18),(160,1,'2020-10-18 04:35:31','',21),(161,1,'2020-10-19 07:08:34','',26),(162,1,'2020-10-20 07:23:49','',24),(163,1,'2020-10-21 07:35:11','',25),(164,1,'2020-10-22 07:48:06','',21),(165,1,'2020-10-23 08:06:25','',23),(166,1,'2020-10-24 09:16:17','',25),(167,1,'2020-10-25 10:40:40','',23),(168,1,'2020-10-26 11:03:22','',31),(169,1,'2020-10-27 13:50:03','',26),(170,1,'2020-10-28 16:11:37','',25),(171,1,'2020-10-29 17:37:07','',30),(172,1,'2020-10-30 17:59:59','',23),(173,1,'2020-10-31 18:54:49','',20),(174,1,'2020-11-01 18:59:52','',24),(175,1,'2020-11-02 19:35:18','',19),(176,1,'2020-11-03 20:01:56','',26),(177,1,'2020-11-04 20:17:45','',25),(178,1,'2020-11-05 20:33:34','',23),(179,1,'2020-11-06 22:27:57','',33),(180,1,'2020-11-07 23:30:31','',22),(181,1,'2020-11-09 00:58:47','',25),(182,1,'2020-11-10 01:41:55','',28),(183,1,'2020-11-11 02:16:51','',30),(184,1,'2020-11-12 02:55:25','',24),(185,1,'2020-11-13 04:23:22','',30),(186,1,'2020-11-14 04:37:21','',24),(187,1,'2020-11-15 04:52:17','',17),(188,1,'2020-11-16 06:34:30','',20),(189,1,'2020-11-17 06:48:51','',20),(190,1,'2020-11-18 06:55:49','',20),(191,1,'2020-11-19 08:00:27','',21),(192,1,'2020-11-20 08:56:38','',22),(193,1,'2020-11-21 09:44:43','',29),(194,1,'2020-11-22 12:09:19','',33),(195,1,'2020-11-23 12:24:02','',26),(196,1,'2020-11-24 13:08:26','',23),(197,1,'2020-11-25 14:20:45','',25),(198,1,'2020-11-26 14:21:09','',26),(199,1,'2020-11-27 14:35:54','',21),(200,1,'2020-11-28 16:34:44','',21),(201,1,'2020-11-29 17:21:46','',19),(202,1,'2020-11-30 18:52:44','',26),(203,1,'2020-12-01 19:42:55','',18),(204,1,'2020-12-02 20:38:37','',20),(205,1,'2020-12-03 20:52:24','',20),(206,1,'2020-12-04 21:55:12','',15),(207,1,'2020-12-05 23:11:07','',15),(208,1,'2020-12-06 23:23:09','',21),(209,1,'2020-12-08 00:03:45','',21),(210,1,'2020-12-09 00:05:12','',22),(211,1,'2020-12-10 00:37:38','',22),(212,1,'2020-12-11 01:02:02','',14),(213,1,'2020-12-12 02:46:36','',22),(214,1,'2020-12-13 02:52:46','',21),(215,1,'2020-12-14 03:05:36','',34),(216,1,'2020-12-15 04:32:52','',23),(217,1,'2020-12-16 05:29:06','',22),(218,1,'2020-12-17 05:33:02','',25),(219,1,'2020-12-18 05:56:10','',23),(220,1,'2020-12-19 08:52:38','',13),(221,1,'2020-12-20 10:15:04','',15),(222,1,'2020-12-21 11:09:40','',16),(223,1,'2020-12-22 16:01:24','',21),(224,1,'2020-12-23 16:30:34','',25),(225,1,'2020-12-24 17:44:20','',22),(226,1,'2020-12-25 20:04:01','',12),(227,1,'2020-12-26 21:10:07','',17),(228,1,'2020-12-27 22:13:55','',12),(229,1,'2020-12-28 23:04:39','',22),(230,1,'2020-12-29 23:36:21','',23),(231,1,'2020-12-31 00:34:24','',17),(232,1,'2021-01-01 02:26:45','',20),(233,1,'2021-01-02 03:04:31','',9),(234,1,'2021-01-03 04:12:37','',15),(235,1,'2021-01-04 06:02:03','',16),(236,1,'2021-01-05 06:42:55','',18),(237,1,'2021-01-06 09:27:25','',14),(238,1,'2021-01-07 10:17:21','',15),(239,1,'2021-01-08 10:23:41','',21),(240,1,'2021-01-09 15:48:53','',17),(241,1,'2021-01-10 17:18:04','',16),(242,1,'2021-01-11 17:38:45','',16),(243,1,'2021-01-12 18:01:07','',21),(244,1,'2021-01-13 19:36:14','',19),(245,1,'2021-01-14 20:19:29','',23),(246,1,'2021-01-15 20:47:52','',22),(247,1,'2021-01-16 22:44:40','',15),(248,1,'2021-01-17 22:59:51','',26),(249,1,'2021-01-18 23:39:47','',12),(250,1,'2021-01-19 23:47:44','',25),(251,1,'2021-01-20 23:54:47','',15),(252,1,'2021-01-22 02:58:14','',15),(253,1,'2021-01-23 03:03:36','',18),(254,1,'2021-01-24 04:52:11','',19),(255,1,'2021-01-25 06:35:59','',22),(256,1,'2021-01-26 07:12:30','',72),(257,1,'2021-01-27 07:37:10','',17),(258,1,'2021-01-28 08:11:56','',19),(259,1,'2021-01-29 08:35:29','',22),(260,1,'2021-01-30 08:44:38','',22),(261,1,'2021-01-31 09:15:55','',24),(262,1,'2021-02-01 09:46:58','',15),(263,1,'2021-02-02 11:10:07','',23),(264,1,'2021-02-03 12:29:26','',26),(265,1,'2021-02-04 15:36:25','',21),(266,1,'2021-02-05 16:18:46','',19),(267,1,'2021-02-06 20:30:48','',14),(268,1,'2021-02-07 20:49:30','',17),(269,1,'2021-02-08 21:38:10','',17),(270,1,'2021-02-09 22:01:25','',19),(271,1,'2021-02-10 22:24:11','',18),(272,1,'2021-02-11 22:36:53','',19),(273,1,'2021-02-13 00:10:40','',22),(274,1,'2021-02-14 02:12:48','',22),(275,1,'2021-02-15 03:10:00','',22),(276,1,'2021-02-16 04:04:55','',22),(277,1,'2021-02-17 04:54:04','',21),(278,1,'2021-02-18 05:06:40','',24),(279,1,'2021-02-19 08:33:06','',15),(280,1,'2021-02-20 09:40:17','',8),(281,1,'2021-02-21 11:01:17','',19),(282,1,'2021-02-22 12:13:08','',30),(283,1,'2021-02-23 12:37:10','',18),(284,1,'2021-02-24 12:57:30','',15),(285,1,'2021-02-25 15:01:33','',25),(286,1,'2021-02-26 15:36:10','',22),(287,1,'2021-02-27 15:36:56','',20),(288,1,'2021-02-28 15:53:15','',16),(289,1,'2021-03-01 16:07:32','',22),(290,1,'2021-03-02 16:54:39','',17),(291,1,'2021-03-03 17:11:09','',18),(292,1,'2021-03-04 17:18:18','',18),(293,1,'2021-03-05 18:17:15','',10),(294,1,'2021-03-06 18:18:22','',20),(295,1,'2021-03-07 21:15:51','',15),(296,1,'2021-03-08 22:36:42','',23),(297,1,'2021-03-09 23:19:15','',18),(298,1,'2021-03-10 23:44:39','',18),(299,1,'2021-03-11 23:57:12','',21),(300,1,'2021-03-13 00:34:21','',23),(301,1,'2021-03-14 00:40:19','',21),(302,1,'2021-03-15 04:05:36','',26),(303,1,'2021-03-16 05:26:19','',27),(304,1,'2021-03-17 06:10:48','',25),(305,1,'2021-03-18 08:02:48','',26),(306,1,'2021-03-19 08:13:48','',22),(307,1,'2021-03-20 09:22:16','',26),(308,1,'2021-03-21 09:49:13','',16),(309,1,'2021-03-22 10:06:50','',22),(310,1,'2021-03-23 12:05:38','',27),(311,1,'2021-03-24 12:08:44','',31),(312,1,'2021-03-25 12:42:01','',23),(313,1,'2021-03-26 14:32:07','',18),(314,1,'2021-03-27 16:20:35','',19),(315,1,'2021-03-28 16:33:09','',18),(316,1,'2021-03-29 18:06:40','',22),(317,1,'2021-03-30 18:11:49','',22),(318,1,'2021-03-31 18:40:42','',27),(319,1,'2021-04-01 18:43:05','',13),(320,1,'2021-04-02 18:50:10','',15),(321,1,'2021-04-03 19:42:26','',16),(322,1,'2021-04-04 21:01:57','',24),(323,1,'2021-04-05 21:21:40','',24),(324,1,'2021-04-06 21:57:28','',31),(325,1,'2021-04-07 22:31:49','',28),(326,1,'2021-04-08 22:38:11','',17),(327,1,'2021-04-09 22:44:49','',17),(328,1,'2021-04-10 23:03:25','',20),(329,1,'2021-04-12 00:09:26','',18),(330,1,'2021-04-13 03:13:11','',23),(331,1,'2021-04-14 04:58:43','',20),(332,1,'2021-04-15 07:08:31','',19),(333,1,'2021-04-16 07:24:57','',26),(334,1,'2021-04-17 07:50:21','',28),(335,1,'2021-04-18 09:57:38','',24),(336,1,'2021-04-19 10:45:37','',16),(337,1,'2021-04-20 11:59:56','',32),(338,1,'2021-04-21 13:09:47','',26),(339,1,'2021-04-22 13:17:05','',31),(340,1,'2021-04-23 13:44:24','',24),(341,1,'2021-04-24 16:00:15','',16),(342,1,'2021-04-25 18:20:41','',17),(343,1,'2021-04-26 18:36:00','',25),(344,1,'2021-04-27 18:49:15','',32),(345,1,'2021-04-28 19:49:59','',23),(346,1,'2021-04-29 20:02:41','',23),(347,1,'2021-04-30 20:43:22','',28),(348,1,'2021-05-01 21:37:29','',18),(349,1,'2021-05-02 22:55:29','',22),(350,1,'2021-05-03 23:16:21','',22),(351,1,'2021-05-05 01:22:39','',26),(352,1,'2021-05-06 02:56:18','',21),(353,1,'2021-05-07 03:55:57','',22),(354,1,'2021-05-08 04:05:38','',19),(355,1,'2021-05-09 04:23:24','',25),(356,1,'2021-05-10 04:41:04','',20),(357,1,'2021-05-11 04:50:52','',21),(358,1,'2021-05-12 05:53:40','',29),(359,1,'2021-05-13 06:56:38','',29),(360,1,'2021-05-14 07:27:17','',27),(361,1,'2021-05-15 09:08:30','',23),(362,1,'2021-05-16 10:10:05','',23),(363,1,'2021-05-17 11:30:44','',24),(364,1,'2021-05-18 11:51:14','',19),(365,1,'2021-05-19 12:15:13','',23),(366,1,'2021-05-20 13:23:00','',22),(367,1,'2021-05-21 15:23:41','',26),(368,1,'2021-05-22 16:14:53','',29),(369,1,'2021-05-23 17:08:20','',19),(370,1,'2021-05-24 17:31:29','',28),(371,1,'2021-05-25 17:51:43','',26),(372,1,'2021-05-26 18:13:40','',21),(373,1,'2021-05-27 19:39:18','',22),(374,1,'2021-05-28 19:40:55','',27),(375,1,'2021-05-29 19:56:02','',22),(376,1,'2021-05-30 20:07:51','',21),(377,1,'2021-05-31 21:04:02','',25),(378,1,'2021-06-01 21:29:09','',22),(379,1,'2021-06-02 21:29:42','',29),(380,1,'2021-06-03 21:42:32','',28),(381,1,'2021-06-04 23:11:46','',29),(382,1,'2021-06-06 00:01:43','',21),(383,1,'2021-06-07 00:13:04','',29),(384,1,'2021-06-08 00:27:51','',21),(385,1,'2021-06-09 01:11:32','',28),(386,1,'2021-06-10 02:11:54','',22),(387,1,'2021-06-11 04:13:10','',21),(388,1,'2021-06-12 05:02:01','',26),(389,1,'2021-06-13 05:18:48','',18),(390,1,'2021-06-14 05:30:42','',24),(391,1,'2021-06-15 06:14:24','',26),(392,1,'2021-06-16 06:45:32','',20),(393,1,'2021-06-17 06:52:33','',24),(394,1,'2021-06-18 08:15:59','',27),(395,1,'2021-06-19 08:53:44','',22),(396,1,'2021-06-20 09:14:56','',16),(397,1,'2021-06-21 10:02:09','',20),(398,1,'2021-06-22 10:11:44','',22),(399,1,'2021-06-23 11:48:53','',18),(400,1,'2021-06-24 12:45:50','',13),(401,1,'2021-06-25 14:25:33','',20),(402,1,'2021-06-26 15:19:15','',23),(403,1,'2021-06-27 18:26:37','',18),(404,1,'2021-06-28 18:59:17','',22),(405,1,'2021-06-29 19:27:24','',20),(406,1,'2021-06-30 19:52:28','',21),(407,1,'2021-07-01 19:55:31','',19),(408,1,'2021-07-02 22:39:28','',18),(409,1,'2021-07-03 23:34:51','',21),(410,1,'2021-07-05 01:09:10','',19),(411,1,'2021-07-06 02:14:46','',24),(412,1,'2021-07-07 03:50:48','',31),(413,1,'2021-07-08 04:19:14','',23),(414,1,'2021-07-09 05:13:20','',28),(415,1,'2021-07-10 07:17:31','',22),(416,1,'2021-07-11 09:39:06','',17),(417,1,'2021-07-12 11:08:54','',12),(418,1,'2021-07-13 11:26:01','',13),(419,1,'2021-07-14 14:39:12','',15),(420,1,'2021-07-15 16:05:18','',34),(421,1,'2021-07-16 16:29:26','',23),(422,1,'2021-07-17 17:59:11','',21),(423,1,'2021-07-18 21:29:00','',26),(424,1,'2021-07-19 23:37:47','',16),(425,1,'2021-07-21 00:07:08','',20),(426,1,'2021-07-22 00:41:54','',25),(427,1,'2021-07-23 01:50:46','',29),(428,1,'2021-07-24 02:59:44','',21),(429,1,'2021-07-25 04:52:59','',14),(430,1,'2021-07-26 05:04:55','',19),(431,1,'2021-07-27 05:21:00','',21),(432,1,'2021-07-28 05:35:32','',18),(433,1,'2021-07-29 05:37:51','',16),(434,1,'2021-07-30 06:23:08','',19),(435,1,'2021-07-31 09:36:15','',16),(436,1,'2021-08-01 10:15:12','',21),(437,1,'2021-08-02 11:43:42','',22),(438,1,'2021-08-03 13:48:44','',24),(439,1,'2021-08-04 15:11:42','',21),(440,1,'2021-08-05 16:47:18','',22),(441,1,'2021-08-06 17:21:45','',16),(442,1,'2021-08-07 17:41:49','',20),(443,1,'2021-08-08 18:05:19','',16),(444,1,'2021-08-09 18:51:30','',25),(445,1,'2021-08-10 19:33:40','',13),(446,1,'2021-08-11 19:58:17','',16),(447,1,'2021-08-12 20:28:11','',16),(448,1,'2021-08-13 20:58:31','',15),(449,1,'2021-08-14 22:31:10','',14),(450,1,'2021-08-15 22:50:53','',21),(451,1,'2021-08-16 23:19:17','',17),(452,1,'2021-08-18 00:14:22','',17),(453,1,'2021-08-19 01:36:19','',18),(454,1,'2021-08-20 03:45:48','',19),(455,1,'2021-08-21 04:22:20','',16),(456,1,'2021-08-22 05:24:32','',20),(457,1,'2021-08-23 05:49:08','',20),(458,1,'2021-08-24 08:04:13','',21),(459,1,'2021-08-25 09:24:27','',24),(460,1,'2021-08-26 09:44:59','',25),(461,1,'2021-08-27 10:43:00','',22),(462,1,'2021-08-28 10:59:13','',18),(463,1,'2021-08-29 11:08:26','',15),(464,1,'2021-08-30 11:47:20','',25),(465,1,'2021-08-31 12:45:36','',31),(466,1,'2021-09-01 14:02:45','',17),(467,1,'2021-09-02 16:37:57','',23),(468,1,'2021-09-03 17:53:33','',22),(469,1,'2021-09-04 18:52:17','',14),(470,1,'2021-09-05 19:41:46','',11),(471,1,'2021-09-06 22:13:17','',20),(472,1,'2021-09-08 00:41:17','',21),(473,1,'2021-09-09 00:57:35','',21),(474,1,'2021-09-10 01:27:36','',14),(475,1,'2021-09-11 01:51:15','',12),(476,1,'2021-09-12 02:29:51','',16),(477,1,'2021-09-13 03:28:24','',16),(478,1,'2021-09-14 05:15:44','',16),(479,1,'2021-09-15 06:29:40','',17),(480,1,'2021-09-16 07:12:23','',19),(481,1,'2021-09-17 07:36:59','',18),(482,1,'2021-09-18 09:02:24','',16),(483,1,'2021-09-19 10:00:42','',18),(484,1,'2021-09-20 10:45:27','',22),(485,1,'2021-09-21 10:47:17','',32),(486,1,'2021-09-22 10:58:28','',22),(487,1,'2021-09-23 12:45:02','',21),(488,1,'2021-09-24 15:22:41','',23),(489,1,'2021-09-25 19:44:55','',18),(490,1,'2021-09-26 19:54:06','',23),(491,1,'2021-09-27 20:59:55','',18),(492,1,'2021-09-28 22:24:13','',17),(493,1,'2021-09-29 22:38:15','',31),(494,1,'2021-10-01 00:06:52','',21),(495,1,'2021-10-02 01:00:19','',14),(496,1,'2021-10-03 02:57:46','',29),(497,1,'2021-10-04 03:59:39','',17),(498,1,'2021-10-05 05:51:59','',29),(499,1,'2021-10-06 05:52:48','',18),(500,1,'2021-10-07 09:09:29','',22),(501,1,'2021-10-08 10:22:13','',24),(502,1,'2021-10-09 12:48:39','',13),(503,1,'2021-10-10 17:57:33','',15),(504,1,'2021-10-11 19:26:47','',18),(505,1,'2021-10-12 19:51:51','',18),(506,1,'2021-10-13 20:47:11','',20),(507,1,'2021-10-14 21:42:47','',27),(508,1,'2021-10-15 21:53:21','',15),(509,1,'2021-10-16 23:10:19','',16),(510,1,'2021-10-17 23:19:14','',18),(511,1,'2021-10-18 23:28:05','',20),(512,1,'2021-10-20 00:20:19','',28),(513,1,'2021-10-21 04:53:17','',28),(514,1,'2021-10-22 05:07:02','',29),(515,1,'2021-10-23 08:20:31','',11),(516,1,'2021-10-24 11:28:25','',16),(517,1,'2021-10-25 11:46:52','',19),(518,1,'2021-10-26 12:39:08','',18),(519,1,'2021-10-27 12:55:37','',21),(520,1,'2021-10-28 13:24:50','',29),(521,1,'2021-10-29 14:28:31','',18),(522,1,'2021-10-30 18:44:21','',7),(523,1,'2021-10-31 19:29:30','',18),(524,1,'2021-11-01 20:29:04','',17),(525,1,'2021-11-02 20:33:57','',20),(526,1,'2021-11-03 22:01:03','',30),(527,1,'2021-11-04 23:16:17','',25),(528,1,'2021-11-05 23:43:38','',13),(529,1,'2021-11-07 00:47:02','',14),(530,1,'2021-11-08 01:25:02','',16),(531,1,'2021-11-09 02:31:38','',17),(532,1,'2021-11-10 03:54:17','',29),(533,1,'2021-11-11 04:15:34','',18),(534,1,'2021-11-12 05:43:06','',22),(535,1,'2021-11-13 09:11:00','',17),(536,1,'2021-11-14 12:39:05','',17),(537,1,'2021-11-15 14:43:29','',22),(538,1,'2021-11-16 16:12:33','',32),(539,1,'2021-11-17 16:16:27','',27),(540,1,'2021-11-18 17:16:54','',14),(541,1,'2021-11-19 17:40:10','',16),(542,1,'2021-11-20 18:29:17','',13),(543,1,'2021-11-21 19:10:06','',19),(544,1,'2021-11-22 19:21:34','',24),(545,1,'2021-11-23 21:08:54','',21),(546,1,'2021-11-24 21:43:23','',20),(547,1,'2021-11-25 22:13:02','',14),(548,1,'2021-11-26 22:24:27','',16),(549,1,'2021-11-27 23:12:02','',19),(550,1,'2021-11-29 03:16:59','',16),(551,1,'2021-11-30 03:36:44','',29),(552,1,'2021-12-01 05:45:48','',21),(553,1,'2021-12-02 06:34:32','',14),(554,1,'2021-12-03 06:58:28','',23),(555,1,'2021-12-04 08:40:59','',17),(556,1,'2021-12-05 08:55:13','',12),(557,1,'2021-12-06 09:57:15','',26),(558,1,'2021-12-07 10:01:38','',17),(559,1,'2021-12-08 10:20:32','',19),(560,1,'2021-12-09 10:46:17','',20),(561,1,'2021-12-10 12:04:05','',17),(562,1,'2021-12-11 15:07:42','',15),(563,1,'2021-12-12 16:39:57','',14),(564,1,'2021-12-13 19:02:03','',22),(565,1,'2021-12-14 19:40:26','',20),(566,1,'2021-12-15 19:55:46','',21),(567,1,'2021-12-16 22:14:02','',24),(568,1,'2021-12-17 22:31:06','',19),(569,1,'2021-12-19 00:59:51','',18),(570,1,'2021-12-20 02:11:14','',28),(571,1,'2021-12-21 03:28:27','',28),(572,1,'2021-12-22 03:32:13','',22),(573,1,'2021-12-23 03:48:24','',32),(574,1,'2021-12-24 04:42:02','',18),(575,1,'2021-12-25 05:47:09','',17),(576,1,'2021-12-26 08:37:55','',21),(577,1,'2021-12-27 08:54:24','',16),(578,1,'2021-12-28 10:46:35','',21),(579,1,'2021-12-29 11:39:14','',20),(580,1,'2021-12-30 12:42:43','',21),(581,1,'2021-12-31 15:03:39','',22),(582,1,'2022-01-01 15:57:34','',17),(583,1,'2022-01-02 16:09:14','',20),(584,1,'2022-01-03 17:08:55','',21),(585,1,'2022-01-04 17:43:23','',17),(586,1,'2022-01-05 17:49:01','',24),(587,1,'2022-01-06 20:51:33','',27),(588,1,'2022-01-07 22:57:02','',17),(589,1,'2022-01-09 01:33:20','',13),(590,1,'2022-01-10 03:29:22','',22),(591,1,'2022-01-11 04:09:14','',16),(592,1,'2022-01-12 04:35:23','',26),(593,1,'2022-01-13 05:09:02','',18),(594,1,'2022-01-14 05:48:53','',22),(595,1,'2022-01-15 07:00:23','',16),(596,1,'2022-01-16 07:36:02','',17),(597,1,'2022-01-17 08:40:59','',27),(598,1,'2022-01-18 09:15:14','',21),(599,1,'2022-01-19 12:26:12','',19),(600,1,'2022-01-20 14:21:27','',28),(601,1,'2022-01-21 14:45:33','',19),(602,1,'2022-01-22 15:24:53','',15),(603,1,'2022-01-23 15:35:07','',19),(604,1,'2022-01-24 18:10:19','',23),(605,1,'2022-01-25 18:39:47','',26),(606,1,'2022-01-26 18:40:16','',24),(607,1,'2022-01-27 19:15:16','',21),(608,1,'2022-01-28 20:03:36','',16),(609,1,'2022-01-29 20:55:31','',15),(610,1,'2022-01-30 22:47:01','',22),(611,1,'2022-01-31 23:10:45','',26),(612,1,'2022-02-01 23:17:17','',26),(613,1,'2022-02-02 23:32:17','',19),(614,1,'2022-02-03 23:58:26','',26),(615,1,'2022-02-05 00:18:42','',11),(616,1,'2022-02-06 02:53:20','',22),(617,1,'2022-02-07 02:54:12','',21),(618,1,'2022-02-08 07:32:01','',22),(619,1,'2022-02-09 12:20:26','',37),(620,1,'2022-02-10 12:43:45','',25),(621,1,'2022-02-11 12:44:00','',21),(622,1,'2022-02-12 14:44:16','',18),(623,1,'2022-02-13 18:17:32','',18),(624,1,'2022-02-14 18:22:31','',18),(625,1,'2022-02-15 18:27:15','',26),(626,1,'2022-02-16 19:23:19','',22),(627,1,'2022-02-17 20:15:15','',27),(628,1,'2022-02-18 20:49:26','',17),(629,1,'2022-02-19 23:18:30','',23),(630,1,'2022-02-21 01:27:29','',22),(631,1,'2022-02-22 01:35:58','',24),(632,1,'2022-02-23 02:17:10','',26),(633,1,'2022-02-24 05:02:41','',21),(634,1,'2022-02-25 06:26:04','',19),(635,1,'2022-02-26 09:45:36','',19),(636,1,'2022-02-27 10:54:27','',17),(637,1,'2022-02-28 11:38:36','',22),(638,1,'2022-03-01 13:40:26','',17),(639,1,'2022-03-02 14:21:31','',26),(640,1,'2022-03-03 16:22:27','',22),(641,1,'2022-03-04 16:29:40','',25),(642,1,'2022-03-05 16:33:33','',16),(643,1,'2022-03-06 16:52:04','',19),(644,1,'2022-03-07 17:45:55','',28),(645,1,'2022-03-08 18:12:47','',27),(646,1,'2022-03-09 20:07:38','',21),(647,1,'2022-03-10 22:19:13','',30),(648,1,'2022-03-11 23:22:39','',18),(649,1,'2022-03-12 23:38:30','',21),(650,1,'2022-03-14 00:07:13','',22),(651,1,'2022-03-15 00:44:27','',23),(652,1,'2022-03-16 00:59:37','',22),(653,1,'2022-03-17 01:02:25','',15),(654,1,'2022-03-18 02:48:33','',20),(655,1,'2022-03-19 03:58:36','',18),(656,1,'2022-03-20 05:09:47','',17),(657,1,'2022-03-21 05:30:32','',24),(658,1,'2022-03-22 05:57:41','',22),(659,1,'2022-03-23 07:19:44','',24),(660,1,'2022-03-24 09:48:41','',19),(661,1,'2022-03-25 10:12:23','',32),(662,1,'2022-03-26 11:52:57','',23),(663,1,'2022-03-27 12:55:52','',21),(664,1,'2022-03-28 15:11:15','',31),(665,1,'2022-03-29 16:19:05','',23),(666,1,'2022-03-30 16:45:15','',21),(667,1,'2022-03-31 17:01:08','',22),(668,1,'2022-04-01 17:51:44','',24),(669,1,'2022-04-02 18:34:05','',24),(670,1,'2022-04-03 19:28:54','',23),(671,1,'2022-04-04 19:41:54','',12),(672,1,'2022-04-05 20:55:39','',29),(673,1,'2022-04-06 21:21:30','',21),(674,1,'2022-04-07 22:35:12','',29),(675,1,'2022-04-08 23:51:57','',26),(676,1,'2022-04-09 23:55:45','',21),(677,1,'2022-04-11 00:00:34','',22),(678,1,'2022-04-12 00:17:37','',32),(679,1,'2022-04-13 01:29:23','',25),(680,1,'2022-04-14 02:24:53','',30),(681,1,'2022-04-15 02:48:13','',28),(682,1,'2022-04-16 02:49:38','',26),(683,1,'2022-04-17 05:37:49','',24),(684,1,'2022-04-18 06:19:15','',25),(685,1,'2022-04-19 06:41:16','',26),(686,1,'2022-04-20 07:16:04','',34),(687,1,'2022-04-21 08:06:47','',28),(688,1,'2022-04-22 09:15:13','',24),(689,1,'2022-04-23 10:03:09','',29),(690,1,'2022-04-24 11:08:24','',18),(691,1,'2022-04-25 11:52:27','',28),(692,1,'2022-04-26 11:59:04','',25),(693,1,'2022-04-27 13:12:55','',29),(694,1,'2022-04-28 13:34:39','',37),(695,1,'2022-04-29 15:16:04','',39),(696,1,'2022-04-30 15:33:06','',26),(697,1,'2022-05-01 16:21:50','',28),(698,1,'2022-05-02 17:42:59','',29),(699,1,'2022-05-03 19:19:04','',23),(700,1,'2022-05-04 20:43:41','',31),(701,1,'2022-05-05 21:22:50','',33),(702,1,'2022-05-06 22:57:45','',27),(703,1,'2022-05-08 01:42:41','',23),(704,1,'2022-05-09 02:01:23','',22),(705,1,'2022-05-10 02:21:42','',32),(706,1,'2022-05-11 02:41:08','',38),(707,1,'2022-05-12 03:00:22','',33),(708,1,'2022-05-13 03:47:15','',29),(709,1,'2022-05-14 04:27:40','',28),(710,1,'2022-05-15 05:07:16','',27),(711,1,'2022-05-16 06:52:08','',29),(712,1,'2022-05-17 07:11:33','',36),(713,1,'2022-05-18 07:18:12','',24),(714,1,'2022-05-19 08:10:39','',23),(715,1,'2022-05-20 10:46:53','',27),(716,1,'2022-05-21 11:24:30','',29),(717,1,'2022-05-22 11:29:00','',30),(718,1,'2022-05-23 11:57:14','',32),(719,1,'2022-05-24 12:03:38','',42),(720,1,'2022-05-25 12:12:28','',28),(721,1,'2022-05-26 12:33:04','',35),(722,1,'2022-05-27 13:28:09','',32),(723,1,'2022-05-28 14:07:09','',27),(724,1,'2022-05-29 14:37:02','',28),(725,1,'2022-05-30 14:41:18','',27),(726,1,'2022-05-31 15:00:22','',33),(727,1,'2022-06-01 16:29:55','',28),(728,1,'2022-06-02 16:40:37','',31),(729,1,'2022-06-03 17:08:56','',32),(730,1,'2022-06-04 18:27:37','',30),(731,1,'2022-06-05 19:26:39','',25),(732,1,'2022-06-06 21:08:46','',34),(733,1,'2022-06-07 21:17:15','',27),(734,1,'2022-06-08 21:19:54','',28),(735,1,'2022-06-09 22:12:58','',34),(736,1,'2022-06-10 22:26:54','',26),(737,1,'2022-06-11 23:50:27','',25),(738,1,'2022-06-13 01:37:13','',23),(739,1,'2022-06-14 01:56:01','',27),(740,1,'2022-06-15 02:04:10','',22),(741,1,'2022-06-16 03:11:04','',26),(742,1,'2022-06-17 05:48:16','',45),(743,1,'2022-06-18 06:08:52','',31),(744,1,'2022-06-19 07:00:41','',28),(745,1,'2022-06-20 07:20:42','',29),(746,1,'2022-06-21 07:37:27','',37),(747,1,'2022-06-22 08:55:09','',28),(748,1,'2022-06-23 09:43:13','',28),(749,1,'2022-06-24 10:36:23','',27),(750,1,'2022-06-25 10:36:25','',33),(751,1,'2022-06-26 10:47:52','',24),(752,1,'2022-06-27 12:03:04','',34),(753,1,'2022-06-28 12:39:47','',35),(754,1,'2022-06-29 13:06:16','',19),(755,1,'2022-06-30 15:02:00','',33),(756,1,'2022-07-01 15:13:52','',36),(757,1,'2022-07-02 15:18:13','',26),(758,1,'2022-07-03 15:56:53','',28),(759,1,'2022-07-04 16:13:57','',30),(760,1,'2022-07-05 16:22:40','',26),(761,1,'2022-07-06 17:05:24','',21),(762,1,'2022-07-07 17:45:17','',35),(763,1,'2022-07-08 19:22:40','',36),(764,1,'2022-07-09 22:00:08','',24),(765,1,'2022-07-10 22:46:46','',24),(766,1,'2022-07-12 00:33:12','',35),(767,1,'2022-07-13 01:38:48','',27),(768,1,'2022-07-14 02:39:52','',27),(769,1,'2022-07-15 03:24:52','',38),(770,1,'2022-07-16 05:31:15','',23),(771,1,'2022-07-17 05:58:14','',22),(772,1,'2022-07-18 06:13:56','',37),(773,1,'2022-07-19 09:58:17','',40),(774,1,'2022-07-20 10:23:34','',29),(775,1,'2022-07-21 11:39:31','',32),(776,1,'2022-07-22 12:26:17','',32),(777,1,'2022-07-23 12:58:01','',35),(778,1,'2022-07-24 13:32:39','',33),(779,1,'2022-07-25 13:41:52','',38),(780,1,'2022-07-26 13:42:37','',30),(781,1,'2022-07-27 14:26:49','',28),(782,1,'2022-07-28 16:38:59','',42),(783,1,'2022-07-29 16:41:07','',39),(784,1,'2022-07-30 17:42:45','',35),(785,1,'2022-07-31 18:26:52','',28),(786,1,'2022-08-01 19:08:05','',36),(787,1,'2022-08-02 19:50:21','',40),(788,1,'2022-08-03 20:03:34','',30),(789,1,'2022-08-04 21:40:41','',29),(790,1,'2022-08-05 21:42:09','',38),(791,1,'2022-08-06 22:52:40','',26),(792,1,'2022-08-08 01:10:57','',35),(793,1,'2022-08-09 01:20:00','',37),(794,1,'2022-08-10 02:38:08','',43),(795,1,'2022-08-11 03:36:25','',29),(796,1,'2022-08-12 04:21:20','',38),(797,1,'2022-08-13 06:31:36','',39),(798,1,'2022-08-14 07:55:45','',29),(799,1,'2022-08-15 08:29:30','',34),(800,1,'2022-08-16 09:36:08','',25),(801,1,'2022-08-17 10:58:59','',39),(802,1,'2022-08-18 12:08:36','',32),(803,1,'2022-08-19 12:10:27','',33),(804,1,'2022-08-20 12:19:24','',35),(805,1,'2022-08-21 12:20:04','',32),(806,1,'2022-08-22 12:25:08','',34),(807,1,'2022-08-23 12:38:01','',33),(808,1,'2022-08-24 13:13:24','',32),(809,1,'2022-08-25 13:47:20','',25),(810,1,'2022-08-26 13:56:51','',34),(811,1,'2022-08-27 13:57:55','',32),(812,1,'2022-08-28 14:11:26','',36),(813,1,'2022-08-29 14:23:13','',38),(814,1,'2022-08-30 14:25:29','',41),(815,1,'2022-08-31 15:00:17','',30),(816,1,'2022-09-01 15:04:47','',26),(817,1,'2022-09-02 15:25:59','',31),(818,1,'2022-09-03 16:26:35','',41),(819,1,'2022-09-04 17:29:58','',44),(820,1,'2022-09-05 17:29:59','',37),(821,1,'2022-09-06 18:49:59','',34),(822,1,'2022-09-07 19:38:32','',35),(823,1,'2022-09-08 20:01:56','',36),(824,1,'2022-09-09 21:08:56','',36),(825,1,'2022-09-10 21:30:50','',21),(826,1,'2022-09-11 22:29:05','',38),(827,1,'2022-09-12 22:35:21','',40),(828,1,'2022-09-13 23:10:13','',34),(829,1,'2022-09-15 00:11:14','',45),(830,1,'2022-09-16 00:37:14','',37),(831,1,'2022-09-17 00:59:55','',42),(832,1,'2022-09-18 01:04:06','',30),(833,1,'2022-09-19 01:48:02','',33),(834,1,'2022-09-20 02:16:34','',33),(835,1,'2022-09-21 02:25:47','',39),(836,1,'2022-09-22 02:55:48','',25),(837,1,'2022-09-23 03:16:02','',28),(838,1,'2022-09-24 03:29:22','',33),(839,1,'2022-09-25 03:40:21','',27),(840,1,'2022-09-26 04:17:03','',23),(841,1,'2022-09-27 04:50:08','',26),(842,1,'2022-09-28 04:50:40','',24),(843,1,'2022-09-29 07:24:59','',32),(844,1,'2022-09-30 07:59:44','',31),(845,1,'2022-10-01 09:52:59','',23),(846,1,'2022-10-02 12:29:00','',12),(847,1,'2022-10-03 15:20:38','',30),(848,1,'2022-10-04 15:22:20','',32),(849,1,'2022-10-05 15:50:31','',29),(850,1,'2022-10-06 16:01:51','',31),(851,1,'2022-10-07 18:08:30','',24),(852,1,'2022-10-08 18:16:59','',20),(853,1,'2022-10-09 18:37:10','',30),(854,1,'2022-10-10 19:38:57','',27),(855,1,'2022-10-11 19:48:08','',29),(856,1,'2022-10-12 20:04:22','',33),(857,1,'2022-10-13 20:34:53','',24),(858,1,'2022-10-14 20:35:17','',26),(859,1,'2022-10-15 20:38:55','',22),(860,1,'2022-10-16 22:02:53','',36),(861,1,'2022-10-18 00:05:11','',32),(862,1,'2022-10-19 00:07:58','',31),(863,1,'2022-10-20 01:58:33','',33),(864,1,'2022-10-21 04:00:53','',28),(865,1,'2022-10-22 04:13:58','',26),(866,1,'2022-10-23 05:34:48','',41),(867,1,'2022-10-24 06:07:59','',35),(868,1,'2022-10-25 06:42:02','',26),(869,1,'2022-10-26 06:50:54','',40),(870,1,'2022-10-27 06:54:28','',35),(871,1,'2022-10-28 07:53:42','',27),(872,1,'2022-10-29 08:06:03','',33),(873,1,'2022-10-30 08:38:12','',33),(874,1,'2022-10-31 09:00:25','',31),(875,1,'2022-11-01 10:14:54','',19),(876,1,'2022-11-02 10:33:19','',14),(877,1,'2022-11-03 11:06:42','',16),(878,1,'2022-11-04 13:21:38','',14),(879,1,'2022-11-05 15:50:19','',12),(880,1,'2022-11-06 16:50:43','',14),(881,1,'2022-11-07 18:46:45','',16),(882,1,'2022-11-08 19:00:45','',12),(883,1,'2022-11-09 19:59:20','',14),(884,1,'2022-11-10 21:17:29','',19),(885,1,'2022-11-11 23:20:16','',16),(886,1,'2022-11-13 00:47:05','',17),(887,1,'2022-11-14 04:31:27','',12),(888,1,'2022-11-15 14:02:05','',17),(889,1,'2022-11-16 14:55:28','',13),(890,1,'2022-11-17 14:59:14','',13),(891,1,'2022-11-18 17:39:03','',12),(892,1,'2022-11-19 17:49:14','',15),(893,1,'2022-11-20 18:47:33','',18),(894,1,'2022-11-21 19:56:53','',14),(895,1,'2022-11-22 21:05:59','',15),(896,1,'2022-11-23 21:48:26','',17),(897,1,'2022-11-24 23:12:10','',18),(898,1,'2022-11-26 01:46:30','',15),(899,1,'2022-11-27 01:56:12','',27),(900,1,'2022-11-28 03:34:39','',17),(901,1,'2022-11-29 03:55:05','',16),(902,1,'2022-11-30 04:31:22','',15),(903,1,'2022-12-01 04:32:02','',12),(904,1,'2022-12-02 05:46:35','',17),(905,1,'2022-12-03 06:46:17','',16),(906,1,'2022-12-04 08:19:11','',14),(907,1,'2022-12-05 08:19:32','',18),(908,1,'2022-12-06 08:25:47','',19),(909,1,'2022-12-07 09:22:52','',18),(910,1,'2022-12-08 10:47:39','',15),(911,1,'2022-12-09 10:51:11','',16),(912,1,'2022-12-10 11:11:53','',17),(913,1,'2022-12-11 12:19:02','',18),(914,1,'2022-12-12 13:00:59','',17),(915,1,'2022-12-13 13:13:34','',18),(916,1,'2022-12-14 16:30:58','',14),(917,1,'2022-12-15 20:49:01','',14),(918,1,'2022-12-16 21:34:56','',18),(919,1,'2022-12-17 21:38:48','',16),(920,1,'2022-12-19 00:04:24','',18),(921,1,'2022-12-20 00:06:10','',18),(922,1,'2022-12-21 03:54:56','',17),(923,1,'2022-12-22 06:33:02','',16),(924,1,'2022-12-23 08:00:29','',18),(925,1,'2022-12-24 09:35:32','',14),(926,1,'2022-12-25 10:10:02','',14),(927,1,'2022-12-26 12:21:06','',17),(928,1,'2022-12-27 14:37:58','',20),(929,1,'2022-12-28 15:14:56','',23),(930,1,'2022-12-29 18:09:27','',16),(931,1,'2022-12-30 19:05:25','',17),(932,1,'2022-12-31 19:05:30','',20),(933,1,'2023-01-01 19:32:39','',20),(934,1,'2023-01-02 20:34:46','',15),(935,1,'2023-01-03 21:34:13','',15),(936,1,'2023-01-04 22:03:26','',17),(937,1,'2023-01-05 23:37:23','',21),(938,1,'2023-01-07 01:11:10','',19),(939,1,'2023-01-08 01:15:17','',21),(940,1,'2023-01-09 01:16:38','',17),(941,1,'2023-01-10 02:31:35','',18),(942,1,'2023-01-11 04:12:41','',18),(943,1,'2023-01-12 04:29:53','',16),(944,1,'2023-01-13 06:04:08','',18),(945,1,'2023-01-14 07:52:13','',18),(946,1,'2023-01-15 08:09:45','',18),(947,1,'2023-01-16 10:22:22','',19),(948,1,'2023-01-17 11:29:04','',21),(949,1,'2023-01-18 11:50:04','',15),(950,1,'2023-01-19 11:58:53','',14),(951,1,'2023-01-20 12:57:54','',12),(952,1,'2023-01-21 14:16:36','',17),(953,1,'2023-01-22 15:19:31','',17),(954,1,'2023-01-23 17:18:49','',17),(955,1,'2023-01-24 20:13:47','',15),(956,1,'2023-01-25 20:14:11','',17),(957,1,'2023-01-26 21:13:16','',13),(958,1,'2023-01-27 21:43:45','',21),(959,1,'2023-01-28 22:17:07','',15),(960,1,'2023-01-29 23:00:58','',15),(961,1,'2023-01-31 00:04:53','',22),(962,1,'2023-02-01 00:26:19','',12),(963,1,'2023-02-02 01:43:11','',16),(964,1,'2023-02-03 03:50:45','',19),(965,1,'2023-02-04 04:23:15','',16),(966,1,'2023-02-05 04:43:08','',13),(967,1,'2023-02-06 07:10:55','',19),(968,1,'2023-02-07 07:21:04','',15),(969,1,'2023-02-08 07:56:07','',19),(970,1,'2023-02-09 08:25:44','',16),(971,1,'2023-02-10 11:43:45','',16),(972,1,'2023-02-11 11:57:43','',17),(973,1,'2023-02-12 15:07:46','',16),(974,1,'2023-02-13 15:24:22','',13),(975,1,'2023-02-14 15:55:02','',19),(976,1,'2023-02-15 16:02:13','',14),(977,1,'2023-02-16 17:23:23','',18),(978,1,'2023-02-17 17:44:48','',12),(979,1,'2023-02-18 19:01:10','',15),(980,1,'2023-02-19 19:28:44','',14),(981,1,'2023-02-21 00:57:44','',16),(982,1,'2023-02-22 02:36:04','',16),(983,1,'2023-02-23 02:48:19','',12),(984,1,'2023-02-24 03:01:19','',18),(985,1,'2023-02-25 04:10:01','',15),(986,1,'2023-02-26 06:36:52','',17),(987,1,'2023-02-27 07:33:34','',15),(988,1,'2023-02-28 07:39:06','',21),(989,1,'2023-03-01 08:37:18','',15),(990,1,'2023-03-02 08:45:49','',18),(991,1,'2023-03-03 09:52:46','',20),(992,1,'2023-03-04 11:09:55','',16),(993,1,'2023-03-05 11:35:21','',16),(994,1,'2023-03-06 12:56:57','',17),(995,1,'2023-03-07 13:40:50','',18),(996,1,'2023-03-08 14:25:16','',18),(997,1,'2023-03-09 15:40:35','',21),(998,1,'2023-03-10 16:43:05','',18),(999,1,'2023-03-11 17:38:00','',15),(1000,1,'2023-03-12 18:21:49','',14),(1001,1,'2023-03-13 20:14:12','',20),(1002,1,'2023-03-14 23:30:57','',16),(1003,1,'2023-03-16 02:49:18','',15),(1004,1,'2023-03-17 02:55:36','',14),(1005,1,'2023-03-18 04:46:45','',20),(1006,1,'2023-03-19 05:48:23','',17),(1007,1,'2023-03-20 06:14:22','',17),(1008,1,'2023-03-21 08:02:43','',15),(1009,1,'2023-03-22 09:58:14','',17),(1010,1,'2023-03-23 10:12:29','',16),(1011,1,'2023-03-24 11:49:56','',12),(1012,1,'2023-03-25 14:41:26','',15),(1013,1,'2023-03-26 14:46:38','',15),(1014,1,'2023-03-27 15:07:37','',16),(1015,1,'2023-03-28 15:23:16','',19),(1016,1,'2023-03-29 15:56:03','',12),(1017,1,'2023-03-30 16:33:10','',16),(1018,1,'2023-03-31 16:41:18','',16),(1019,1,'2023-04-01 16:53:46','',15),(1020,1,'2023-04-02 17:51:49','',12),(1021,1,'2023-04-03 18:17:47','',11),(1022,1,'2023-04-04 19:09:46','',15),(1023,1,'2023-04-05 21:35:21','',13),(1024,1,'2023-04-06 23:56:27','',15),(1025,1,'2023-04-08 01:13:59','',15),(1026,1,'2023-04-09 01:38:39','',17),(1027,1,'2023-04-10 02:27:43','',9),(1028,1,'2023-04-11 02:48:27','',12),(1029,1,'2023-04-12 03:59:48','',18),(1030,1,'2023-04-13 06:00:35','',14),(1031,1,'2023-04-14 07:50:00','',17),(1032,1,'2023-04-15 08:22:55','',12),(1033,1,'2023-04-16 09:06:41','',15),(1034,1,'2023-04-17 12:12:01','',17),(1035,1,'2023-04-18 12:55:59','',11),(1036,1,'2023-04-19 13:17:14','',17),(1037,1,'2023-04-20 14:10:04','',16),(1038,1,'2023-04-21 14:10:17','',15),(1039,1,'2023-04-22 14:46:35','',17),(1040,1,'2023-04-23 16:43:04','',13),(1041,1,'2023-04-24 18:24:10','',13),(1042,1,'2023-04-25 19:55:40','',12),(1043,1,'2023-04-26 22:46:53','',14),(1044,1,'2023-04-27 23:03:11','',21),(1045,1,'2023-04-28 23:48:13','',18),(1046,1,'2023-04-30 03:08:11','',14),(1047,1,'2023-05-01 04:32:51','',14),(1048,1,'2023-05-02 06:45:12','',17),(1049,1,'2023-05-03 07:02:04','',17),(1050,1,'2023-05-04 08:49:19','',14),(1051,1,'2023-05-05 10:41:31','',17),(1052,1,'2023-05-06 12:18:42','',13),(1053,1,'2023-05-07 13:26:09','',16),(1054,1,'2023-05-08 15:47:52','',16),(1055,1,'2023-05-09 18:54:21','',12),(1056,1,'2023-05-10 20:30:45','',16),(1057,1,'2023-05-11 21:01:23','',13),(1058,1,'2023-05-12 21:40:45','',18),(1059,1,'2023-05-13 22:49:33','',13),(1060,1,'2023-05-14 23:03:49','',12),(1061,1,'2023-05-16 01:04:50','',19),(1062,1,'2023-05-17 02:05:50','',14),(1063,1,'2023-05-18 05:28:39','',14),(1064,1,'2023-05-19 07:40:09','',15),(1065,1,'2023-05-20 09:05:04','',11),(1066,1,'2023-05-21 11:28:05','',14),(1067,1,'2023-05-22 12:20:57','',17),(1068,1,'2023-05-23 12:22:53','',12),(1069,1,'2023-05-24 13:04:57','',10),(1070,1,'2023-05-25 13:09:26','',21),(1071,1,'2023-05-26 14:26:57','',21),(1072,1,'2023-05-27 16:01:51','',20),(1073,1,'2023-05-28 18:06:14','',22),(1074,1,'2023-05-29 18:54:23','',19),(1075,1,'2023-05-30 19:13:09','',17),(1076,1,'2023-05-31 20:38:04','',22),(1077,1,'2023-06-01 23:16:24','',19),(1078,1,'2023-06-02 23:41:29','',20),(1079,1,'2023-06-04 01:38:47','',22),(1080,1,'2023-06-05 02:31:19','',15),(1081,1,'2023-06-06 02:33:59','',19),(1082,1,'2023-06-07 02:45:19','',18),(1083,1,'2023-06-08 02:45:45','',16),(1084,1,'2023-06-09 02:52:40','',24),(1085,1,'2023-06-10 03:04:18','',20),(1086,1,'2023-06-11 04:28:37','',21),(1087,1,'2023-06-12 06:02:01','',16),(1088,1,'2023-06-13 06:04:59','',19),(1089,1,'2023-06-14 07:58:51','',20),(1090,1,'2023-06-15 08:14:11','',16),(1091,1,'2023-06-16 08:54:58','',16),(1092,1,'2023-06-17 09:11:01','',20),(1093,1,'2023-06-18 10:02:25','',19),(1094,1,'2023-06-19 11:02:30','',17),(1095,1,'2023-06-20 11:05:34','',15),(1096,1,'2023-06-21 11:23:11','',20),(1097,1,'2023-06-22 12:42:43','',21),(1098,1,'2023-06-23 13:25:41','',18),(1099,1,'2023-06-24 17:27:49','',15),(1100,1,'2023-06-25 17:33:29','',10),(1101,1,'2023-06-26 18:29:42','',18),(1102,1,'2023-06-27 20:43:16','',13),(1103,1,'2023-06-28 20:49:49','',18),(1104,1,'2023-06-29 22:01:17','',17),(1105,1,'2023-06-30 22:26:38','',13),(1106,1,'2023-07-01 22:43:36','',10),(1107,1,'2023-07-02 23:51:12','',12),(1108,1,'2023-07-04 00:41:56','',16),(1109,1,'2023-07-05 00:57:28','',14),(1110,1,'2023-07-06 01:29:03','',13),(1111,1,'2023-07-07 03:08:06','',14),(1112,1,'2023-07-08 04:39:49','',15),(1113,1,'2023-07-09 06:08:07','',14),(1114,1,'2023-07-10 06:37:31','',11),(1115,1,'2023-07-11 06:43:04','',18),(1116,1,'2023-07-12 07:08:33','',13),(1117,1,'2023-07-13 10:56:42','',14),(1118,1,'2023-07-14 12:05:44','',19),(1119,1,'2023-07-15 13:33:17','',15),(1120,1,'2023-07-16 15:30:34','',13),(1121,1,'2023-07-17 17:03:07','',12),(1122,1,'2023-07-18 17:24:21','',13),(1123,1,'2023-07-19 18:19:53','',14),(1124,1,'2023-07-20 18:26:03','',15),(1125,1,'2023-07-21 19:16:12','',15),(1126,1,'2023-07-22 21:35:09','',12),(1127,1,'2023-07-23 21:58:25','',15),(1128,1,'2023-07-24 22:37:21','',11),(1129,1,'2023-07-25 23:55:39','',15),(1130,1,'2023-07-27 00:29:43','',18),(1131,1,'2023-07-28 01:59:09','',14),(1132,1,'2023-07-29 02:37:31','',11),(1133,1,'2023-07-30 03:47:03','',12),(1134,1,'2023-07-31 04:36:12','',12),(1135,1,'2023-08-01 05:40:08','',14),(1136,1,'2023-08-02 06:15:23','',19),(1137,1,'2023-08-03 08:14:34','',15),(1138,1,'2023-08-04 09:22:56','',13),(1139,1,'2023-08-05 09:42:05','',17),(1140,1,'2023-08-06 12:37:05','',17),(1141,1,'2023-08-07 13:58:03','',13),(1142,1,'2023-08-08 15:11:13','',10),(1143,1,'2023-08-09 18:16:23','',18),(1144,1,'2023-08-10 20:27:27','',18),(1145,1,'2023-08-11 20:56:40','',15),(1146,1,'2023-08-12 21:42:59','',12),(1147,1,'2023-08-13 21:59:07','',13),(1148,1,'2023-08-15 01:24:48','',13),(1149,1,'2023-08-16 02:32:10','',9),(1150,1,'2023-08-17 03:28:44','',11),(1151,1,'2023-08-18 03:38:09','',12),(1152,1,'2023-08-19 04:24:49','',16),(1153,1,'2023-08-20 08:18:51','',11),(1154,1,'2023-08-21 10:39:26','',17),(1155,1,'2023-08-22 14:08:46','',14),(1156,1,'2023-08-23 14:12:01','',12),(1157,1,'2023-08-24 16:31:10','',13),(1158,1,'2023-08-25 17:09:00','',13),(1159,1,'2023-08-26 19:36:14','',12),(1160,1,'2023-08-27 21:26:10','',14),(1161,1,'2023-08-28 23:52:13','',13),(1162,1,'2023-08-30 00:09:20','',14),(1163,1,'2023-08-31 01:05:17','',14),(1164,1,'2023-09-01 03:11:52','',14),(1165,1,'2023-09-02 03:25:14','',14),(1166,1,'2023-09-03 04:12:58','',14),(1167,1,'2023-09-04 06:41:58','',13),(1168,1,'2023-09-05 06:55:35','',19),(1169,1,'2023-09-06 08:18:14','',14),(1170,1,'2023-09-07 11:27:51','',11),(1171,1,'2023-09-08 13:56:11','',13),(1172,1,'2023-09-09 16:12:56','',11),(1173,1,'2023-09-10 18:38:55','',17),(1174,1,'2023-09-11 21:13:22','',13),(1175,1,'2023-09-12 21:19:02','',17),(1176,1,'2023-09-13 22:36:31','',7),(1177,1,'2023-09-14 23:06:42','',14),(1178,1,'2023-09-16 00:15:32','',15),(1179,1,'2023-09-17 01:42:44','',15),(1180,1,'2023-09-18 02:29:04','',10),(1181,1,'2023-09-19 04:38:38','',12),(1182,1,'2023-09-20 05:30:45','',14),(1183,1,'2023-09-21 06:00:39','',11);
/*!40000 ALTER TABLE `wp_gf_form_view` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gf_rest_api_keys`
--

DROP TABLE IF EXISTS `wp_gf_rest_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gf_rest_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) DEFAULT NULL,
  `permissions` varchar(10) NOT NULL,
  `consumer_key` char(64) NOT NULL,
  `consumer_secret` char(43) NOT NULL,
  `nonces` longtext DEFAULT NULL,
  `truncated_key` char(7) NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gf_rest_api_keys`
--

LOCK TABLES `wp_gf_rest_api_keys` WRITE;
/*!40000 ALTER TABLE `wp_gf_rest_api_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_gf_rest_api_keys` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_iwp_backup_status`
--

DROP TABLE IF EXISTS `wp_iwp_backup_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_iwp_backup_status` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `historyID` int(11) NOT NULL,
  `taskName` varchar(255) NOT NULL,
  `action` varchar(50) NOT NULL,
  `type` varchar(50) NOT NULL,
  `category` varchar(50) NOT NULL,
  `stage` varchar(255) NOT NULL,
  `status` varchar(255) NOT NULL,
  `finalStatus` varchar(50) DEFAULT NULL,
  `statusMsg` longtext DEFAULT NULL,
  `requestParams` text NOT NULL,
  `responseParams` longtext DEFAULT NULL,
  `taskResults` longtext DEFAULT NULL,
  `startTime` int(11) DEFAULT NULL,
  `lastUpdateTime` int(10) unsigned DEFAULT NULL,
  `endTime` int(11) NOT NULL,
  PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_iwp_backup_status`
--

LOCK TABLES `wp_iwp_backup_status` WRITE;
/*!40000 ALTER TABLE `wp_iwp_backup_status` DISABLE KEYS */;
INSERT INTO `wp_iwp_backup_status` VALUES (1,353945,'Backup Now','now','backup','full','db_dump','processing','0','processing','a:8:{s:9:\"task_name\";s:10:\"Backup Now\";s:9:\"mechanism\";s:10:\"singleCall\";s:4:\"args\";a:17:{s:4:\"type\";s:6:\"backup\";s:6:\"action\";s:3:\"now\";s:4:\"what\";s:4:\"full\";s:15:\"optimize_tables\";s:0:\"\";s:7:\"exclude\";a:1:{i:0;s:0:\"\";}s:17:\"exclude_file_size\";i:0;s:18:\"exclude_extensions\";s:0:\"\";s:7:\"include\";a:1:{i:0;s:0:\"\";}s:13:\"del_host_file\";s:0:\"\";s:12:\"disable_comp\";s:1:\"1\";s:12:\"fail_safe_db\";N;s:15:\"fail_safe_files\";N;s:5:\"limit\";s:1:\"5\";s:11:\"backup_name\";s:13:\"Manual Backup\";s:20:\"IWP_encryptionphrase\";s:0:\"\";s:14:\"exclude_tables\";a:26:{i:0;s:8:\"bwps_log\";i:1;s:9:\"statpress\";i:2;s:10:\"slim_stats\";i:3;s:16:\"redirection_logs\";i:4;s:10:\"Counterize\";i:5;s:19:\"Counterize_Referers\";i:6;s:21:\"Counterize_UserAgents\";i:7;s:11:\"wbz404_logs\";i:8;s:16:\"wbz404_redirects\";i:9;s:16:\"tts_trafficstats\";i:10;s:18:\"tts_referrer_stats\";i:11;s:26:\"wponlinebackup_generations\";i:12;s:13:\"svisitor_stat\";i:13;s:17:\"simple_feed_stats\";i:14;s:9:\"itsec_log\";i:15;s:14:\"relevanssi_log\";i:16;s:13:\"blc_instances\";i:17;s:22:\"wysija_email_user_stat\";i:18;s:20:\"woocommerce_sessions\";i:19;s:14:\"et_bloom_stats\";i:20;s:15:\"redirection_404\";i:21;s:13:\"iwp_file_list\";i:22;s:17:\"wptc_activity_log\";i:23;s:20:\"wptc_current_process\";i:24;s:23:\"wptc_processed_iterator\";i:25;s:29:\"wptc_processed_restored_files\";}s:9:\"parentHID\";i:353945;}s:8:\"username\";s:13:\"website-admin\";s:2:\"id\";i:353945;s:10:\"iwp_action\";s:16:\"scheduled_backup\";s:20:\"is_save_activity_log\";b:1;s:12:\"account_info\";N;}',NULL,'a:1:{s:15:\"backhack_status\";a:2:{s:14:\"adminHistoryID\";i:353945;s:7:\"db_dump\";a:1:{s:5:\"start\";d:1585074635.735691;}}}',1585074636,1585074636,0);
/*!40000 ALTER TABLE `wp_iwp_backup_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_iwp_processed_iterator`
--

DROP TABLE IF EXISTS `wp_iwp_processed_iterator`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_iwp_processed_iterator` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` longtext DEFAULT NULL,
  `offset` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_iwp_processed_iterator`
--

LOCK TABLES `wp_iwp_processed_iterator` WRITE;
/*!40000 ALTER TABLE `wp_iwp_processed_iterator` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_iwp_processed_iterator` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=891638 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','https://www.drfields.com','yes'),(2,'home','https://www.drfields.com','yes'),(3,'blogname','Peter A. Fields, MD, DC','yes'),(4,'blogdescription','Stem Cell - PRP - Prolotherapy - Surgery Alternative - Orthopedic Medicine Treatment','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','webmaster@webstractmarketing.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','1','yes'),(27,'moderation_notify','','yes'),(28,'permalink_structure','/%category%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:10:{i:0;s:19:\"iwp-client/init.php\";i:1;s:29:\"gravityforms/gravityforms.php\";i:2;s:35:\"backupwordpress/backupwordpress.php\";i:3;s:33:\"classic-editor/classic-editor.php\";i:5;s:25:\"wc-gallery/wc-gallery.php\";i:7;s:24:\"wordpress-seo/wp-seo.php\";i:8;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";i:9;s:27:\"wp-pagenavi/wp-pagenavi.php\";i:11;s:39:\"wp-video-lightbox/wp-video-lightbox.php\";i:12;s:45:\"wsm-website-settings/wsm-website-settings.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','1','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:5:{i:0;s:65:\"/home/drfiel5/public_html/wp-content/themes/Drfields/Homepage.php\";i:1;s:62:\"/home/drfiel5/public_html/wp-content/themes/Drfields/index.php\";i:3;s:62:\"/home/drfiel5/public_html/wp-content/themes/Drfields/style.css\";i:4;s:63:\"/home/drfiel5/public_html/wp-content/themes/Drfields/footer.php\";i:5;s:63:\"/home/drfiel5/public_html/wp-content/themes/Drfields/header.php\";}','no'),(40,'template','Drfields','yes'),(41,'stylesheet','Drfields','yes'),(44,'comment_registration','','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','55853','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(58,'thumbnail_size_w','200','yes'),(59,'thumbnail_size_h','200','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','500','yes'),(62,'medium_size_h','500','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','0','yes'),(65,'large_size_h','0','yes'),(66,'image_default_link_type','','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:3:{i:1;a:0:{}i:2;a:4:{s:5:\"title\";s:10:\"Contact Us\";s:4:\"text\";s:1562:\"<ul>\r\n 	<li class=\"address\">2730 Wilshire Blvd, Suite 220\r\nSanta Monica, CA 90403</li>\r\n 	<li class=\"phone\"><a href=\"tel:+[phone_raw]\">[phone]</a></li>\r\n 	<li class=\"email\"><a href=\"mailto:pcc@drfields.com\">pcc@drfields.com</a></li>\r\n</ul>\r\n<a class=\"orange-btn\" href=\"contact/\" title=\"Send Us a Message!\">  Send Us a Message!</a>\r\n<div class=\"clearfix\"></div>\r\n<h3>Follow Us</h3>\r\n<div class=\"social_icons\"><a title=\"Facebook\" href=\"https://www.facebook.com/PeterAFieldsMDDC/?ref=br_rs\" target=\"_blank\" rel=\"noopener\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/social-icon-facebook.png\" alt=\"Facebook\" title=\"Facebook\" /></a>\r\n<a href=\"https://twitter.com/TheAthleticDoc\" target=\"_blank\" rel=\"noopener\" title=\"Twitter\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/social-icon-twitter.png\" alt=\"Twitter\" title=\"Twitter\" /></a>\r\n<a href=\"https://www.instagram.com/drpeterfields/\" target=\"_blank\" rel=\"noopener\" title=\"Instagram\"><img style=\"height: 21px;\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/social-icon-instagram.png\" alt=\"Instagram\" title=\"Instagram\" /></a>\r\n<a href=\"https://www.youtube.com/user/prolotherapy1\" target=\"_blank\" rel=\"noopener\" title=\"Youtube\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/social-icon-youtube.png\" alt=\"Youtube\" title=\"Youtube\" /></a>\r\n<a href=\"https://www.yelp.com/biz/peter-a-fields-md-santa-monica\" target=\"_blank\" rel=\"noopener\" title=\"Yelp\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/07/yelp.png\" alt=\"Yelp\" title=\"Yelp\" /></a></div>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:5:{s:33:\"classic-editor/classic-editor.php\";a:2:{i:0;s:14:\"Classic_Editor\";i:1;s:9:\"uninstall\";}s:29:\"portfolio-wp/portfolio-wp.php\";s:18:\"crp_uninstall_hook\";s:27:\"wp-pagenavi/wp-pagenavi.php\";s:14:\"__return_false\";s:47:\"call-tracking-metrics/call-tracking-metrics.php\";s:14:\"deactivate_ctm\";s:45:\"enable-media-replace/enable-media-replace.php\";s:13:\"emr_uninstall\";}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','2109','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'initial_db_version','44719','yes'),(94,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:64:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:16:\"aiosp_manage_seo\";b:1;s:20:\"wpseo_manage_options\";b:1;s:20:\"rocket_purge_opcache\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:38:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(95,'fresh_site','0','yes'),(96,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-posts','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:10;s:9:\"show_date\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar_1\";a:1:{i:0;s:13:\"custom_html-3\";}s:9:\"sidebar_2\";a:1:{i:0;s:6:\"text-2\";}s:9:\"sidebar_3\";a:1:{i:0;s:13:\"custom_html-2\";}s:9:\"sidebar_4\";a:1:{i:0;s:13:\"custom_html-4\";}s:9:\"sidebar_5\";a:0:{}s:9:\"sidebar_6\";a:0:{}s:9:\"sidebar_7\";a:4:{i:0;s:8:\"search-2\";i:1;s:11:\"tag_cloud-2\";i:2;s:14:\"recent-posts-2\";i:3;s:11:\"tag_cloud-4\";}s:13:\"array_version\";i:3;}','yes'),(102,'cron','a:21:{i:1695319412;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1695322069;a:2:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1695322070;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1695322372;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1695322492;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1695329027;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1695332084;a:2:{s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:20:\"wpseo_home_url_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1695332117;a:1:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1695332595;a:1:{s:16:\"backupbuddy_cron\";a:1:{s:32:\"b2d6f4df5dfc2b203ff6fc9b49103fdc\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:2:{i:0;s:12:\"housekeeping\";i:1;a:0:{}}s:8:\"interval\";i:86400;}}}i:1695336744;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1695337200;a:1:{s:19:\"hmbkp_schedule_hook\";a:1:{s:32:\"af039f9e0227d6143990cce140757cf7\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{s:2:\"id\";s:10:\"1586901034\";}s:8:\"interval\";i:86400;}}}i:1695346619;a:1:{s:17:\"gravityforms_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1695356959;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1695360250;a:1:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1695402477;a:1:{s:23:\"flamingo_daily_cron_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1695460466;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1695674627;a:1:{s:18:\"wpseo_onpage_fetch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1695697200;a:1:{s:19:\"hmbkp_schedule_hook\";a:1:{s:32:\"3ab3dca2aedf73838185225bcd1a5926\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:1:{s:2:\"id\";s:10:\"1586901035\";}s:8:\"interval\";i:604800;}}}i:1695845899;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1695850188;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(103,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_tag_cloud','a:3:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"taxonomy\";s:8:\"category\";}i:4;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"taxonomy\";s:8:\"post_tag\";}s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_custom_html','a:4:{i:2;a:2:{s:5:\"title\";s:8:\"Location\";s:7:\"content\";s:373:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d13225.059660005425!2d-118.475653!3d34.037075!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x80c2bb4f6bdc2fa7%3A0x761053031552d604!2s2730+Wilshire+Blvd+%23220%2C+Santa+Monica%2C+CA+90403!5e0!3m2!1sen!2sus!4v1559795782282!5m2!1sen!2sus\" width=\"80%\" height=\"200\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";}i:3;a:2:{s:5:\"title\";s:12:\"Philanthropy\";s:7:\"content\";s:540:\"<ul>\r\n<li>About\r\n<ul>\r\n<li>Peter A. Fields, MD, DC</li>\r\n<li>Costs</li>\r\n<li>The Athletic Doc</li>\r\n<li>Philanthropy\r\n<ul>\r\n<li>Honduras&nbsp;</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n<li>Regenerative Techniques<br />\r\n<ul>\r\n<li>Stem Cell Therapy&nbsp;</li>\r\n<li>Platelet Rich Plasma</li>\r\n<li>Dextrose Prolotherapy</li>\r\n</ul>\r\n</li>\r\n<li>Conditions&nbsp;\r\n<ul>\r\n<li>Knee Pain</li>\r\n<li>Hip Pain</li>\r\n<li>Back Pain</li>\r\n<li>Shoulder Pain</li>\r\n<li>Neck Pain</li>\r\n<li>Elbow Pain</li>\r\n<li>Hand Pain</li>\r\n<li>Foot Pain</li>\r\n</ul>\r\n</li>\r\n</ul>\";}i:4;a:2:{s:5:\"title\";s:11:\"11x Ironman\";s:7:\"content\";s:2370:\"<div id=\"Ironman\">\r\n\r\n<a href=\"#\" title=\"2019 Ironman Cozumel\">\r\n<img alt=\"\" src=\"https://www.drfields.com/wp-content/uploads/2020/01/Cozumel-finish-line-C-160.jpg\" width=\"80\"><br>2019 Cozumel</a>\r\n	\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-10th-Ironman\" title=\"2018 Ironman Maryland\">\r\n<img alt=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Maryland-finish-line-C-160.jpg\" width=\"80\"><br>2018 Maryland</a>\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\" title=\"2017 Ironman Santa Rosa\">\r\n<img alt=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Santa-Rosa-2017-Finish-Square.jpg\"><br>2017 Santa Rosa</a>\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\" title=\"2016 Ironman Cozumel\">\r\n<img alt=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-Square.jpg\"><br>2016 Cozumel</a>\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\" title=\"2016 Ironman Switzerland\">\r\n<img alt=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-Square.jpg\"><br>2016 Switzer<wbr>land</a>\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\" title=\"2015 Ironman Cozumel\">\r\n<img alt=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-Square.jpg\"><br>2015 Cozumel</a>\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\" title=\"2015 Ironman Brazil\"><img alt=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-Square.jpg\"><br>2015 Brazil</a>\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\" title=\"2014 Ironman Austria\">\r\n<img alt=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-Square.jpg\"><br>2014 Austria</a>\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\" title=\"2013 Ironman Canada\">\r\n<img alt=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish_2013-Square.jpg\"><br>2013 Canada</a>\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-2nd-Ironman\" title=\"2012 Ironman Cozumel\">\r\n<img alt=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish_2012-Square.jpg\"><br>2012 Cozumel</a>\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-1st-Ironman\" title=\"2011 Ironman Cozumel\">\r\n<img alt=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish-Square.jpg\"><br>2011 Cozumel</a>\r\n</div>\r\n\";}s:12:\"_multiwidget\";i:1;}','yes'),(113,'theme_mods_twentynineteen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1559709861;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(122,'siteground_optimizer_default_enable_cache','0','no'),(123,'siteground_optimizer_default_autoflush_cache','0','no'),(124,'siteground_optimizer_supercacher_permissions','1','no'),(125,'sg_cachepress','a:3:{s:12:\"enable_cache\";i:1;s:15:\"autoflush_cache\";i:1;s:16:\"enable_memcached\";i:0;}','yes'),(126,'siteground_optimizer_enable_cache','1','yes'),(127,'siteground_optimizer_autoflush_cache','1','yes'),(128,'siteground_optimizer_enable_memcached','0','yes'),(129,'siteground_optimizer_show_notice','0','yes'),(130,'siteground_optimizer_is_nginx','0','yes'),(131,'siteground_optimizer_checked_nginx','0','yes'),(132,'siteground_optimizer_first_run','0','yes'),(133,'siteground_optimizer_last_fail','0','yes'),(134,'siteground_optimizer_ssl_enabled','0','yes'),(135,'siteground_optimizer_optimize_html','0','yes'),(136,'siteground_optimizer_optimize_javascript','0','yes'),(137,'siteground_optimizer_optimize_javascript_async','0','yes'),(138,'siteground_optimizer_optimize_css','0','yes'),(139,'siteground_optimizer_combine_css','0','yes'),(140,'siteground_optimizer_remove_query_strings','0','yes'),(141,'siteground_optimizer_disable_emojis','0','yes'),(142,'siteground_optimizer_optimize_images','0','yes'),(144,'siteground_optimizer_version','5.0.13','yes'),(145,'siteground_optimizer_flush_redux_cache','1','yes'),(146,'siteground_optimizer_phpcompat_status','1','yes'),(147,'siteground_optimizer_phpcompat_progress','0','yes'),(148,'siteground_optimizer_phpcompat_is_compatible','0','yes'),(149,'siteground_optimizer_phpcompat_result','a:0:{}','yes'),(150,'siteground_optimizer_image_optimization_completed','1','no'),(160,'elementor_disable_color_schemes','yes','yes'),(161,'elementor_disable_typography_schemes','yes','yes'),(162,'optinmonster_trial_id','112297','yes'),(163,'siteground_wizard_activation_redirect','no','yes'),(196,'recovery_keys','a:0:{}','yes'),(197,'external_updates-siteground-wizard','O:8:\"stdClass\":5:{s:9:\"lastCheck\";i:1559647649;s:14:\"checkedVersion\";s:5:\"1.0.2\";s:6:\"update\";O:8:\"stdClass\":10:{s:4:\"slug\";s:17:\"siteground-wizard\";s:7:\"version\";s:5:\"1.0.2\";s:12:\"download_url\";s:50:\"https://sgwpdemo.com/updater/wordpress-starter.zip\";s:12:\"translations\";a:0:{}s:2:\"id\";i:0;s:8:\"homepage\";N;s:6:\"tested\";N;s:14:\"upgrade_notice\";N;s:5:\"icons\";a:0:{}s:8:\"filename\";s:39:\"wordpress-starter/siteground-wizard.php\";}s:11:\"updateClass\";s:22:\"Puc_v4p4_Plugin_Update\";s:15:\"updateBaseClass\";s:13:\"Plugin_Update\";}','no'),(206,'siteground_optimizer_memcache_notice','1','yes'),(896,'siteground_wizard_hide_notifications','yes','yes'),(897,'updates_available','f58a72c3af06d94e15ef7d3d85c05849','yes'),(902,'recently_activated','a:0:{}','yes'),(907,'WPLANG','','yes'),(960,'current_theme','Drfields','yes'),(961,'theme_mods_Drfields','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:11:\"header-menu\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:3866;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1600901152;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar_1\";a:1:{i:0;s:13:\"custom_html-3\";}s:9:\"sidebar_2\";a:1:{i:0;s:6:\"text-2\";}s:9:\"sidebar_3\";a:1:{i:0;s:13:\"custom_html-2\";}s:9:\"sidebar_4\";a:1:{i:0;s:13:\"custom_html-4\";}s:9:\"sidebar_5\";a:0:{}s:9:\"sidebar_6\";a:0:{}s:9:\"sidebar_7\";a:4:{i:0;s:8:\"search-2\";i:1;s:11:\"tag_cloud-2\";i:2;s:14:\"recent-posts-2\";i:3;s:11:\"tag_cloud-4\";}}}}','yes'),(962,'theme_switched','','yes'),(970,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(985,'filemanager_email_verified_2','yes','yes'),(1000,'seed_csp4_initial_version','5.0.25','no'),(1001,'seed_csp4_version','5.0.25','no'),(1002,'seed_csp4_settings_content','a:9:{s:6:\"status\";s:1:\"0\";s:4:\"logo\";s:0:\"\";s:8:\"headline\";s:49:\"Get Ready... Something Really Cool Is Coming Soon\";s:11:\"description\";s:0:\"\";s:13:\"footer_credit\";s:1:\"0\";s:7:\"favicon\";s:0:\"\";s:9:\"seo_title\";s:0:\"\";s:15:\"seo_description\";s:0:\"\";s:12:\"ga_analytics\";s:0:\"\";}','yes'),(1003,'seed_csp4_settings_design','a:12:{s:8:\"bg_color\";s:7:\"#fafafa\";s:8:\"bg_image\";s:0:\"\";s:8:\"bg_cover\";a:1:{i:0;s:1:\"1\";}s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:8:\"left top\";s:13:\"bg_attahcment\";s:5:\"fixed\";s:9:\"max_width\";s:0:\"\";s:10:\"text_color\";s:7:\"#666666\";s:10:\"link_color\";s:7:\"#27AE60\";s:14:\"headline_color\";s:7:\"#444444\";s:9:\"text_font\";s:6:\"_arial\";s:10:\"custom_css\";s:0:\"\";}','yes'),(1004,'seed_csp4_settings_advanced','a:2:{s:14:\"header_scripts\";s:0:\"\";s:14:\"footer_scripts\";s:0:\"\";}','yes'),(2076,'wpvl_plugin_version','1.9.10','yes'),(2077,'wpvl_enable_jquery','1','yes'),(2078,'wpvl_enable_prettyPhoto','1','yes'),(2079,'wpvl_prettyphoto_options','O:8:\"stdClass\":21:{s:15:\"animation_speed\";s:4:\"fast\";s:9:\"slideshow\";s:4:\"5000\";s:18:\"autoplay_slideshow\";s:5:\"false\";s:7:\"opacity\";s:4:\"0.80\";s:10:\"show_title\";s:4:\"true\";s:12:\"allow_resize\";s:4:\"true\";s:12:\"allow_expand\";s:4:\"true\";s:13:\"default_width\";s:3:\"640\";s:14:\"default_height\";s:3:\"480\";s:23:\"counter_separator_label\";s:1:\"/\";s:5:\"theme\";s:10:\"pp_default\";s:18:\"horizontal_padding\";s:2:\"20\";s:9:\"hideflash\";s:5:\"false\";s:5:\"wmode\";s:6:\"opaque\";s:8:\"autoplay\";s:4:\"true\";s:5:\"modal\";s:5:\"false\";s:11:\"deeplinking\";s:5:\"false\";s:15:\"overlay_gallery\";s:4:\"true\";s:19:\"overlay_gallery_max\";s:2:\"30\";s:18:\"keyboard_shortcuts\";s:4:\"true\";s:12:\"ie6_fallback\";s:4:\"true\";}','yes'),(2299,'best_portfolio_grid_settings','a:6:{s:15:\"BackgroundColor\";s:7:\"#FFFFFF\";s:10:\"imagewidth\";s:3:\"273\";s:11:\"imageheight\";s:3:\"160\";s:11:\"imageMargin\";s:2:\"15\";s:12:\"show_filters\";s:1:\"1\";s:19:\"AllKeywordTranslate\";s:3:\"All\";}','yes'),(2300,'wp_best_portfolio_msg','a:0:{}','yes'),(2305,'photo_gallery_lightbox_type','new_type','yes'),(2306,'photo_gallery_admin_image_hover_preview','on','yes'),(2307,'photo_gallery_version','1.0.5','yes'),(2308,'photo_gallery_disable_right_click','off','yes'),(2309,'widget_photo_gallery_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2328,'shwportfoliocatalog_version','1.0.4','yes'),(2329,'widget_shwgcatalog_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2330,'WP_Router_route_hash','cc2c6775d3b5cb92697898af45c371d2','yes'),(3060,'filemanager_email_verified_1','yes','yes'),(3184,'pagenavi_options','a:15:{s:10:\"pages_text\";s:36:\"Page %CURRENT_PAGE% of %TOTAL_PAGES%\";s:12:\"current_text\";s:13:\"%PAGE_NUMBER%\";s:9:\"page_text\";s:13:\"%PAGE_NUMBER%\";s:10:\"first_text\";s:13:\"&laquo; First\";s:9:\"last_text\";s:12:\"Last &raquo;\";s:9:\"prev_text\";s:7:\"&laquo;\";s:9:\"next_text\";s:7:\"&raquo;\";s:12:\"dotleft_text\";s:3:\"...\";s:13:\"dotright_text\";s:3:\"...\";s:9:\"num_pages\";i:5;s:23:\"num_larger_page_numbers\";i:3;s:28:\"larger_page_numbers_multiple\";i:10;s:11:\"always_show\";b:0;s:16:\"use_pagenavi_css\";b:1;s:5:\"style\";i:1;}','yes'),(3456,'wpmdb_usage','a:2:{s:6:\"action\";s:12:\"find_replace\";s:4:\"time\";i:1560830413;}','no'),(3459,'blog_public','1','yes'),(3460,'upload_path','','yes'),(3461,'upload_url_path','','yes'),(3462,'wpmdb_schema_version','2','no'),(3463,'wpmdb_settings','a:12:{s:3:\"key\";s:40:\"mmjrf+Wnv4cLkmam+kxM02DUnCcTt1sSjFNx6r/2\";s:10:\"allow_pull\";b:0;s:10:\"allow_push\";b:0;s:8:\"profiles\";a:0:{}s:7:\"licence\";s:0:\"\";s:10:\"verify_ssl\";b:0;s:17:\"whitelist_plugins\";a:0:{}s:11:\"max_request\";i:1048576;s:22:\"delay_between_requests\";i:0;s:18:\"prog_tables_hidden\";b:1;s:21:\"pause_before_finalize\";b:0;s:14:\"allow_tracking\";N;}','no'),(3464,'wpmdb_state_5d0861cd85a41','a:22:{s:6:\"action\";s:11:\"wpmdb_flush\";s:6:\"intent\";s:12:\"find_replace\";s:3:\"url\";s:0:\"\";s:9:\"form_data\";s:641:\"save_computer=1&gzip_file=1&action=find_replace&connection_info=&replace_old%5B%5D=&replace_new%5B%5D=&replace_old%5B%5D=http%3A%2F%2Fdentalimplantsmalibu.com&replace_new%5B%5D=https%3A%2F%2Fwww.drfields.com&replace_old%5B%5D=http%3A%2F%2Fwww.dentalimplantsmalibu.com&replace_new%5B%5D=https%3A%2F%2Fwww.drfields.com&replace_old%5B%5D=https%3A%2F%2Fdentalimplantsmalibu.com&replace_new%5B%5D=https%3A%2F%2Fwww.drfields.com&replace_old%5B%5D=https%3A%2F%2Fwww.dentalimplantsmalibu.com&replace_new%5B%5D=https%3A%2F%2Fwww.drfields.com&replace_guids=1&exclude_transients=1&save_migration_profile_option=new&create_new_profile=&remote_json_data=\";s:5:\"stage\";s:12:\"find_replace\";s:5:\"nonce\";s:10:\"89dae5fce6\";s:12:\"site_details\";a:1:{s:5:\"local\";a:10:{s:12:\"is_multisite\";s:5:\"false\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:8:\"home_url\";s:24:\"https://www.drfields.com\";s:6:\"prefix\";s:5:\"wpbb_\";s:15:\"uploads_baseurl\";s:44:\"https://www.drfields.com/wp-content/uploads/\";s:7:\"uploads\";a:6:{s:4:\"path\";s:62:\"/home/renaiss2/public_html/drfields/wp-content/uploads/2019/06\";s:3:\"url\";s:51:\"https://www.drfields.com/wp-content/uploads/2019/06\";s:6:\"subdir\";s:8:\"/2019/06\";s:7:\"basedir\";s:54:\"/home/renaiss2/public_html/drfields/wp-content/uploads\";s:7:\"baseurl\";s:43:\"https://www.drfields.com/wp-content/uploads\";s:5:\"error\";b:0;}s:11:\"uploads_dir\";s:33:\"wp-content/uploads/wp-migrate-db/\";s:8:\"subsites\";a:0:{}s:13:\"subsites_info\";a:0:{}s:20:\"is_subdomain_install\";s:5:\"false\";}}s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";s:4:\"body\";s:11:\"{\"error\":0}\";s:13:\"dump_filename\";s:0:\"\";s:8:\"dump_url\";s:0:\"\";s:10:\"db_version\";s:6:\"5.6.40\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:18:\"find_replace_pairs\";a:2:{s:11:\"replace_old\";a:4:{i:1;s:31:\"http://dentalimplantsmalibu.com\";i:2;s:35:\"http://www.dentalimplantsmalibu.com\";i:3;s:32:\"https://dentalimplantsmalibu.com\";i:4;s:36:\"https://www.dentalimplantsmalibu.com\";}s:11:\"replace_new\";a:4:{i:1;s:24:\"https://www.drfields.com\";i:2;s:24:\"https://www.drfields.com\";i:3;s:24:\"https://www.drfields.com\";i:4;s:24:\"https://www.drfields.com\";}}s:18:\"migration_state_id\";s:13:\"5d0861cd85a41\";s:5:\"table\";s:16:\"wpbb_wpfm_backup\";s:11:\"current_row\";s:0:\"\";s:10:\"last_table\";s:1:\"1\";s:12:\"primary_keys\";s:0:\"\";s:4:\"gzip\";s:1:\"0\";s:6:\"tables\";s:597:\"wpbb_blc_filters,wpbb_blc_instances,wpbb_blc_links,wpbb_blc_synch,wpbb_commentmeta,wpbb_comments,wpbb_crp_portfolios,wpbb_crp_projects,wpbb_e_portfolio,wpbb_links,wpbb_options,wpbb_postmeta,wpbb_posts,wpbb_shwattributes,wpbb_shwcatalogproductattributes,wpbb_shwcatalogproductcategories,wpbb_shwcatalogproductoptions,wpbb_shwcatalogproducts,wpbb_shwcatalogproductthumbnails,wpbb_shwcatalogs,wpbb_shwcategories,wpbb_shwthemes,wpbb_term_relationships,wpbb_term_taxonomy,wpbb_termmeta,wpbb_terms,wpbb_usermeta,wpbb_users,wpbb_web_paceportfolio_images,wpbb_web_paceportfolio_portfolios,wpbb_wpfm_backup\";}','no'),(3465,'wpmdb_state_timeout_5d0861cd85a41','1560916832','no'),(3550,'updraftplus_tour_cancelled_on','intro','yes'),(3552,'updraftplus_version','1.16.15','yes'),(3553,'updraft_updraftvault','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-306ebc22d5aedae4c54b840b4560a03b\";a:3:{s:5:\"token\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"quota\";i:-1;}}}','yes'),(3554,'updraft_dropbox','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-ba6851222f7c01f346411295dd45ba64\";a:4:{s:6:\"appkey\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:0:\"\";}}}','yes'),(3555,'updraft_s3','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-ede745c18de085318e9dd776017978a8\";a:5:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:3:\"rrs\";s:0:\"\";s:22:\"server_side_encryption\";s:0:\"\";}}}','yes'),(3556,'updraft_cloudfiles','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-a648079416a3f05de6674d1db7764395\";a:5:{s:4:\"user\";s:0:\"\";s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:6:\"region\";N;}}}','yes'),(3557,'updraft_googledrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-18c59e7f8581e9268b678d4e47959f52\";a:3:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:5:\"token\";s:0:\"\";}}}','yes'),(3558,'updraft_onedrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-876749de93e83cf35545aac6e6cc126e\";a:0:{}}}','yes'),(3559,'updraft_ftp','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-501d9818378f905be0ed3f58f439a6e6\";a:5:{s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"path\";s:0:\"\";s:7:\"passive\";i:1;}}}','yes'),(3560,'updraft_azure','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-4d02031b9da2913fb830b6b2af6f6b0b\";a:0:{}}}','yes'),(3561,'updraft_sftp','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-452589c0b0c0038d2d6a4b551cc9b5d2\";a:0:{}}}','yes'),(3562,'updraft_googlecloud','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-d40d59d37f41d3587a3b7920183fbb10\";a:0:{}}}','yes'),(3563,'updraft_backblaze','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-dd445ae9405f2742314e378766755943\";a:0:{}}}','yes'),(3564,'updraft_webdav','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-ccccd522044292599b8dc68d7ca81823\";a:0:{}}}','yes'),(3565,'updraft_s3generic','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-036b539d39bda13677a8123a3a064e3f\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:0:\"\";}}}','yes'),(3566,'updraft_openstack','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-da97bb2cad57b14a248cd95c1532d9a5\";a:6:{s:4:\"user\";s:0:\"\";s:7:\"authurl\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:4:\"path\";s:0:\"\";s:6:\"region\";s:0:\"\";}}}','yes'),(3567,'updraft_dreamobjects','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-52412e92ce5690a487dcab4381b441d9\";a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(3568,'updraftplus-addons_siteid','50010b70276f94e980d516df7de9a310','no'),(3569,'updraft_lastmessage','The backup apparently succeeded and is now complete (Jul 03 08:30:03)','yes'),(3570,'updraftplus_unlocked_fd','1','no'),(3571,'updraftplus_last_lock_time_fd','2019-07-03 08:29:54','no'),(3572,'updraftplus_semaphore_fd','0','no'),(3573,'updraft_last_scheduled_fd','1562142594','yes'),(3575,'updraft_backup_history','a:1:{i:1562142594;a:19:{s:7:\"plugins\";a:1:{i:0;s:80:\"backup_2019-07-03-0829_Stem_Cell_PRP_Prolotherapy_Surge_cf16449576b1-plugins.zip\";}s:12:\"plugins-size\";i:19044929;s:6:\"themes\";a:1:{i:0;s:79:\"backup_2019-07-03-0829_Stem_Cell_PRP_Prolotherapy_Surge_cf16449576b1-themes.zip\";}s:11:\"themes-size\";i:810167;s:7:\"uploads\";a:1:{i:0;s:80:\"backup_2019-07-03-0829_Stem_Cell_PRP_Prolotherapy_Surge_cf16449576b1-uploads.zip\";}s:12:\"uploads-size\";i:166762126;s:6:\"others\";a:1:{i:0;s:79:\"backup_2019-07-03-0829_Stem_Cell_PRP_Prolotherapy_Surge_cf16449576b1-others.zip\";}s:11:\"others-size\";i:346;s:2:\"db\";s:74:\"backup_2019-07-03-0829_Stem_Cell_PRP_Prolotherapy_Surge_cf16449576b1-db.gz\";s:7:\"db-size\";i:1188134;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"a45faa2aad0da91c5924289813207c0e34b89e06\";s:7:\"themes0\";s:40:\"128ecca832908bd85638af76ae903e34498c489c\";s:8:\"uploads0\";s:40:\"ba310a5bd95e5f85d8b643af4ddaf52ab9b4fbe2\";s:7:\"others0\";s:40:\"12954bc631ca7b22ab1b9b502c4055315a2b3b2d\";s:3:\"db0\";s:40:\"c83802921a87ef42ff6e62f1f43a93e358762395\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"00010c228668ff62a22c118040260214439f45e97813817a46f4f4fc189c3586\";s:7:\"themes0\";s:64:\"c8a1e938a74755a35081e827360bb67d4168afbdbca98bbae1a75371264d3efa\";s:8:\"uploads0\";s:64:\"3f95aa51f2769a04783a1ed2c7a9dc0f1522c5679898cb268b47312c454bded0\";s:7:\"others0\";s:64:\"e5cc9cf521d1c7d19c2853aae31d0ef97c449b380ae2fe85101569816d19fec7\";s:3:\"db0\";s:64:\"39c11dfd20b84e19df071345afcf60298abd779fb8f92f285f58f121e5e4b3cf\";}}s:5:\"nonce\";s:12:\"cf16449576b1\";s:7:\"service\";a:1:{i:0;s:4:\"none\";}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1562142594;s:6:\"themes\";i:1562142598;s:7:\"uploads\";i:1562142598;s:6:\"others\";i:1562142601;}s:18:\"created_by_version\";s:7:\"1.16.15\";s:21:\"last_saved_by_version\";s:7:\"1.16.15\";s:12:\"is_multisite\";b:0;}}','no'),(3576,'updraft_last_backup','a:5:{s:11:\"backup_time\";i:1562142594;s:12:\"backup_array\";a:11:{s:7:\"plugins\";a:1:{i:0;s:80:\"backup_2019-07-03-0829_Stem_Cell_PRP_Prolotherapy_Surge_cf16449576b1-plugins.zip\";}s:12:\"plugins-size\";i:19044929;s:6:\"themes\";a:1:{i:0;s:79:\"backup_2019-07-03-0829_Stem_Cell_PRP_Prolotherapy_Surge_cf16449576b1-themes.zip\";}s:11:\"themes-size\";i:810167;s:7:\"uploads\";a:1:{i:0;s:80:\"backup_2019-07-03-0829_Stem_Cell_PRP_Prolotherapy_Surge_cf16449576b1-uploads.zip\";}s:12:\"uploads-size\";i:166762126;s:6:\"others\";a:1:{i:0;s:79:\"backup_2019-07-03-0829_Stem_Cell_PRP_Prolotherapy_Surge_cf16449576b1-others.zip\";}s:11:\"others-size\";i:346;s:2:\"db\";s:74:\"backup_2019-07-03-0829_Stem_Cell_PRP_Prolotherapy_Surge_cf16449576b1-db.gz\";s:7:\"db-size\";i:1188134;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"a45faa2aad0da91c5924289813207c0e34b89e06\";s:7:\"themes0\";s:40:\"128ecca832908bd85638af76ae903e34498c489c\";s:8:\"uploads0\";s:40:\"ba310a5bd95e5f85d8b643af4ddaf52ab9b4fbe2\";s:7:\"others0\";s:40:\"12954bc631ca7b22ab1b9b502c4055315a2b3b2d\";s:3:\"db0\";s:40:\"c83802921a87ef42ff6e62f1f43a93e358762395\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"00010c228668ff62a22c118040260214439f45e97813817a46f4f4fc189c3586\";s:7:\"themes0\";s:64:\"c8a1e938a74755a35081e827360bb67d4168afbdbca98bbae1a75371264d3efa\";s:8:\"uploads0\";s:64:\"3f95aa51f2769a04783a1ed2c7a9dc0f1522c5679898cb268b47312c454bded0\";s:7:\"others0\";s:64:\"e5cc9cf521d1c7d19c2853aae31d0ef97c449b380ae2fe85101569816d19fec7\";s:3:\"db0\";s:64:\"39c11dfd20b84e19df071345afcf60298abd779fb8f92f285f58f121e5e4b3cf\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"cf16449576b1\";}','yes'),(3695,'aioseop_options','a:69:{s:16:\"aiosp_home_title\";N;s:22:\"aiosp_home_description\";s:0:\"\";s:20:\"aiosp_togglekeywords\";i:1;s:19:\"aiosp_home_keywords\";N;s:26:\"aiosp_use_static_home_info\";i:0;s:9:\"aiosp_can\";i:1;s:30:\"aiosp_no_paged_canonical_links\";i:0;s:20:\"aiosp_force_rewrites\";i:1;s:24:\"aiosp_use_original_title\";i:0;s:28:\"aiosp_home_page_title_format\";s:12:\"%page_title%\";s:23:\"aiosp_page_title_format\";s:27:\"%page_title% | %site_title%\";s:23:\"aiosp_post_title_format\";s:27:\"%post_title% | %site_title%\";s:27:\"aiosp_category_title_format\";s:31:\"%category_title% | %site_title%\";s:26:\"aiosp_archive_title_format\";s:30:\"%archive_title% | %site_title%\";s:23:\"aiosp_date_title_format\";s:21:\"%date% | %site_title%\";s:25:\"aiosp_author_title_format\";s:23:\"%author% | %site_title%\";s:22:\"aiosp_tag_title_format\";s:20:\"%tag% | %site_title%\";s:25:\"aiosp_search_title_format\";s:23:\"%search% | %site_title%\";s:24:\"aiosp_description_format\";s:13:\"%description%\";s:22:\"aiosp_404_title_format\";s:33:\"Nothing found for %request_words%\";s:18:\"aiosp_paged_format\";s:14:\" - Part %page%\";s:17:\"aiosp_cpostactive\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:18:\"aiosp_cpostnoindex\";a:0:{}s:19:\"aiosp_cpostnofollow\";a:0:{}s:21:\"aiosp_posttypecolumns\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"aiosp_google_verify\";s:0:\"\";s:17:\"aiosp_bing_verify\";s:0:\"\";s:22:\"aiosp_pinterest_verify\";s:0:\"\";s:19:\"aiosp_yandex_verify\";s:0:\"\";s:18:\"aiosp_baidu_verify\";s:0:\"\";s:29:\"aiosp_google_sitelinks_search\";N;s:25:\"aiosp_google_analytics_id\";N;s:25:\"aiosp_ga_advanced_options\";s:2:\"on\";s:15:\"aiosp_ga_domain\";N;s:21:\"aiosp_ga_multi_domain\";i:0;s:21:\"aiosp_ga_addl_domains\";N;s:21:\"aiosp_ga_anonymize_ip\";N;s:28:\"aiosp_ga_display_advertising\";N;s:22:\"aiosp_ga_exclude_users\";N;s:29:\"aiosp_ga_track_outbound_links\";i:0;s:25:\"aiosp_ga_link_attribution\";i:0;s:27:\"aiosp_ga_enhanced_ecommerce\";i:0;s:20:\"aiosp_use_categories\";i:0;s:26:\"aiosp_use_tags_as_keywords\";i:1;s:32:\"aiosp_dynamic_postspage_keywords\";i:1;s:22:\"aiosp_category_noindex\";i:1;s:26:\"aiosp_archive_date_noindex\";i:1;s:28:\"aiosp_archive_author_noindex\";i:1;s:18:\"aiosp_tags_noindex\";i:0;s:20:\"aiosp_search_noindex\";i:0;s:17:\"aiosp_404_noindex\";i:0;s:17:\"aiosp_tax_noindex\";a:0:{}s:23:\"aiosp_paginated_noindex\";i:0;s:24:\"aiosp_paginated_nofollow\";i:0;s:27:\"aiosp_generate_descriptions\";i:0;s:18:\"aiosp_skip_excerpt\";i:0;s:20:\"aiosp_run_shortcodes\";i:0;s:33:\"aiosp_hide_paginated_descriptions\";i:0;s:32:\"aiosp_dont_truncate_descriptions\";i:0;s:19:\"aiosp_schema_markup\";i:1;s:20:\"aiosp_unprotect_meta\";i:0;s:33:\"aiosp_redirect_attachement_parent\";i:0;s:14:\"aiosp_ex_pages\";s:0:\"\";s:20:\"aiosp_post_meta_tags\";s:0:\"\";s:20:\"aiosp_page_meta_tags\";s:0:\"\";s:21:\"aiosp_front_meta_tags\";s:0:\"\";s:20:\"aiosp_home_meta_tags\";s:0:\"\";s:12:\"aiosp_do_log\";N;s:19:\"last_active_version\";s:5:\"3.1.1\";}','yes'),(5518,'pb_backupbuddy','a:107:{s:12:\"data_version\";s:2:\"18\";s:21:\"importbuddy_pass_hash\";s:0:\"\";s:23:\"importbuddy_pass_length\";i:0;s:16:\"backup_reminders\";i:1;s:16:\"edits_since_last\";a:4:{s:3:\"all\";i:88;s:4:\"post\";i:80;s:6:\"plugin\";i:8;s:6:\"option\";i:0;}s:12:\"recent_edits\";a:88:{i:1340;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-09-27 20:54:26\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1340;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1340;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-12 06:00:21\";s:13:\"post_date_gmt\";s:19:\"2019-06-12 06:00:21\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:18:\"Video Testimonials\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"video-testimonials\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:54:26\";s:17:\"post_modified_gmt\";s:19:\"2019-09-27 20:54:26\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:1268;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=1340\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1700;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-09-27 20:55:33\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1700;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1700;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-14 10:13:50\";s:13:\"post_date_gmt\";s:19:\"2019-06-14 10:13:50\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:9:\"Stem Cell\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:34:\"cellular-regeneration-testimonials\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:55:33\";s:17:\"post_modified_gmt\";s:19:\"2019-09-27 20:55:33\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:1268;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=1700\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1702;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-09-27 20:55:39\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1702;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1702;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-14 10:14:24\";s:13:\"post_date_gmt\";s:19:\"2019-06-14 10:14:24\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:17:\"Knee Testimonials\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:17:\"knee-testimonials\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:55:39\";s:17:\"post_modified_gmt\";s:19:\"2019-09-27 20:55:39\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:1268;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=1702\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1704;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-09-27 20:56:17\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1704;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1704;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-14 10:14:40\";s:13:\"post_date_gmt\";s:19:\"2019-06-14 10:14:40\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:21:\"Low Back Testimonials\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"low-back-testimonials\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:56:17\";s:17:\"post_modified_gmt\";s:19:\"2019-09-27 20:56:17\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:1268;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=1704\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1706;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-09-27 20:56:19\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1706;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1706;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-14 10:14:53\";s:13:\"post_date_gmt\";s:19:\"2019-06-14 10:14:53\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:21:\"Shoulder Testimonials\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"shoulder-testimonials\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:56:19\";s:17:\"post_modified_gmt\";s:19:\"2019-09-27 20:56:19\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:1268;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=1706\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1708;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-09-27 20:56:19\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1708;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1708;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-14 10:15:07\";s:13:\"post_date_gmt\";s:19:\"2019-06-14 10:15:07\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:16:\"Hip Testimonials\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:16:\"hip-testimonials\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:56:19\";s:17:\"post_modified_gmt\";s:19:\"2019-09-27 20:56:19\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=1708\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1711;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-09-27 20:56:20\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1711;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1711;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-14 10:15:21\";s:13:\"post_date_gmt\";s:19:\"2019-06-14 10:15:21\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:17:\"Neck Testimonials\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:17:\"neck-testimonials\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:56:20\";s:17:\"post_modified_gmt\";s:19:\"2019-09-27 20:56:20\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:1268;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=1711\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1713;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-09-27 20:56:21\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1713;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1713;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-14 10:15:37\";s:13:\"post_date_gmt\";s:19:\"2019-06-14 10:15:37\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:18:\"Ankle Testimonials\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"ankle-testimonials\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:56:21\";s:17:\"post_modified_gmt\";s:19:\"2019-09-27 20:56:21\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:1268;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=1713\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1715;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-09-27 20:56:22\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1715;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1715;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-14 10:15:53\";s:13:\"post_date_gmt\";s:19:\"2019-06-14 10:15:53\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:18:\"Elbow Testimonials\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"elbow-testimonials\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:56:22\";s:17:\"post_modified_gmt\";s:19:\"2019-09-27 20:56:22\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:1268;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=1715\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1717;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-09-27 20:56:23\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1717;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1717;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-14 10:16:16\";s:13:\"post_date_gmt\";s:19:\"2019-06-14 10:16:16\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:17:\"Foot Testimonials\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:17:\"foot-testimonials\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:56:23\";s:17:\"post_modified_gmt\";s:19:\"2019-09-27 20:56:23\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:1268;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=1717\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1719;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-09-27 20:56:24\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1719;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1719;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-14 10:16:30\";s:13:\"post_date_gmt\";s:19:\"2019-06-14 10:16:30\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:18:\"Wrist Testimonials\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"wrist-testimonials\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:56:24\";s:17:\"post_modified_gmt\";s:19:\"2019-09-27 20:56:24\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:1268;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=1719\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1721;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-09-27 20:56:26\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1721;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1721;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-14 10:16:45\";s:13:\"post_date_gmt\";s:19:\"2019-06-14 10:16:45\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:26:\"Sports Hernia Testimonials\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:26:\"sports-hernia-testimonials\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:56:26\";s:17:\"post_modified_gmt\";s:19:\"2019-09-27 20:56:26\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:1268;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=1721\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1723;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-09-27 20:56:26\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1723;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1723;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-14 10:17:02\";s:13:\"post_date_gmt\";s:19:\"2019-06-14 10:17:02\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:20:\"Spanish Testimonials\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:20:\"spanish-testimonials\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:56:26\";s:17:\"post_modified_gmt\";s:19:\"2019-09-27 20:56:26\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:1268;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=1723\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1725;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-09-27 20:56:27\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1725;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1725;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-14 10:17:16\";s:13:\"post_date_gmt\";s:19:\"2019-06-14 10:17:16\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:22:\"Hamstring Testimonials\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:22:\"hamstring-testimonials\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:56:27\";s:17:\"post_modified_gmt\";s:19:\"2019-09-27 20:56:27\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:1268;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=1725\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1727;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-09-27 20:56:28\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1727;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1727;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-14 10:17:31\";s:13:\"post_date_gmt\";s:19:\"2019-06-14 10:17:31\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:26:\"Ganglion Cyst Testimonials\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:26:\"ganglion-cyst-testimonials\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:56:28\";s:17:\"post_modified_gmt\";s:19:\"2019-09-27 20:56:28\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:1268;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=1727\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1729;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-09-27 20:56:29\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1729;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1729;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-14 10:17:48\";s:13:\"post_date_gmt\";s:19:\"2019-06-14 10:17:48\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:21:\"Headache Testimonials\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"headache-testimonials\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:56:29\";s:17:\"post_modified_gmt\";s:19:\"2019-09-27 20:56:29\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:1268;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=1729\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2833;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-09-27 20:57:46\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2833;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2833;s:11:\"post_author\";s:1:\"3\";s:9:\"post_date\";s:19:\"2019-09-27 20:57:46\";s:13:\"post_date_gmt\";s:19:\"0000-00-00 00:00:00\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:10:\"Auto Draft\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:10:\"auto-draft\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:0:\"\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-27 20:57:46\";s:17:\"post_modified_gmt\";s:19:\"0000-00-00 00:00:00\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=2833\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2835;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-09-30 11:34:10\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2835;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2835;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-09-30 11:34:10\";s:13:\"post_date_gmt\";s:19:\"2019-09-30 11:34:10\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:105:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:102:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-33\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-30 11:34:10\";s:17:\"post_modified_gmt\";s:19:\"2019-09-30 11:34:10\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:146:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-33/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2836;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-09-30 11:34:10\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2836;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2836;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-09-30 11:34:10\";s:13:\"post_date_gmt\";s:19:\"2019-09-30 11:34:10\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:25:\"patriciapdsmith@gmail.com\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:25:\"patriciapdsmith-gmail-com\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-30 11:34:10\";s:17:\"post_modified_gmt\";s:19:\"2019-09-30 11:34:10\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_contact&p=2836\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_contact\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2837;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-09-30 11:34:10\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2837;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2837;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-09-30 11:34:10\";s:13:\"post_date_gmt\";s:19:\"2019-09-30 11:34:10\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:14:\"[your-subject]\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:15:\"your-subject-88\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-30 11:34:10\";s:17:\"post_modified_gmt\";s:19:\"2019-09-30 11:34:10\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_inbound&p=2837\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_inbound\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2838;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-09-30 15:20:23\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2838;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2838;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-09-30 15:20:23\";s:13:\"post_date_gmt\";s:19:\"2019-09-30 15:20:23\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:105:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:102:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-34\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-30 15:20:23\";s:17:\"post_modified_gmt\";s:19:\"2019-09-30 15:20:23\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:146:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-34/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2839;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-09-30 15:20:23\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2839;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2839;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-09-30 15:20:23\";s:13:\"post_date_gmt\";s:19:\"2019-09-30 15:20:23\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:20:\"jasondwebster@me.com\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:20:\"jasondwebster-me-com\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-30 15:20:23\";s:17:\"post_modified_gmt\";s:19:\"2019-09-30 15:20:23\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_contact&p=2839\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_contact\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2840;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-09-30 15:20:23\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2840;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2840;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-09-30 15:20:23\";s:13:\"post_date_gmt\";s:19:\"2019-09-30 15:20:23\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:14:\"[your-subject]\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:15:\"your-subject-89\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-09-30 15:20:23\";s:17:\"post_modified_gmt\";s:19:\"2019-09-30 15:20:23\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_inbound&p=2840\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_inbound\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2841;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-01 13:27:57\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2841;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2841;s:11:\"post_author\";s:1:\"3\";s:9:\"post_date\";s:19:\"2019-10-01 13:27:57\";s:13:\"post_date_gmt\";s:19:\"0000-00-00 00:00:00\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:10:\"Auto Draft\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:10:\"auto-draft\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:0:\"\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-01 13:27:57\";s:17:\"post_modified_gmt\";s:19:\"0000-00-00 00:00:00\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=2841\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2775;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-10-01 13:36:22\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2775;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2775;s:11:\"post_author\";s:1:\"4\";s:9:\"post_date\";s:19:\"2019-10-01 01:46:10\";s:13:\"post_date_gmt\";s:19:\"2019-10-01 01:46:10\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:24:\"Iliotibial Band Syndrome\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:24:\"iliotibial-band-syndrome\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-01 13:36:22\";s:17:\"post_modified_gmt\";s:19:\"2019-10-01 13:36:22\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=2775\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2109;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-10-02 16:05:22\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2109;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2109;s:11:\"post_author\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-06-18 08:08:15\";s:13:\"post_date_gmt\";s:19:\"2019-06-18 08:08:15\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:4:\"Home\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:4:\"home\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-02 16:05:22\";s:17:\"post_modified_gmt\";s:19:\"2019-10-02 16:05:22\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:38:\"https://www.drfields.com/?page_id=2109\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2848;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-02 19:55:19\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2848;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2848;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-02 19:55:19\";s:13:\"post_date_gmt\";s:19:\"2019-10-02 19:55:19\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:105:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:102:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-35\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-02 19:55:19\";s:17:\"post_modified_gmt\";s:19:\"2019-10-02 19:55:19\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:146:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-35/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2849;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-02 19:55:19\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2849;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2849;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-02 19:55:19\";s:13:\"post_date_gmt\";s:19:\"2019-10-02 19:55:19\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:27:\"info@healthybynaturemed.com\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:27:\"info-healthybynaturemed-com\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-02 19:55:19\";s:17:\"post_modified_gmt\";s:19:\"2019-10-02 19:55:19\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_contact&p=2849\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_contact\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2850;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-02 19:55:19\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2850;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2850;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-02 19:55:19\";s:13:\"post_date_gmt\";s:19:\"2019-10-02 19:55:19\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:14:\"[your-subject]\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:15:\"your-subject-90\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-02 19:55:19\";s:17:\"post_modified_gmt\";s:19:\"2019-10-02 19:55:19\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_inbound&p=2850\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_inbound\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2851;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-03 19:57:11\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2851;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2851;s:11:\"post_author\";s:1:\"4\";s:9:\"post_date\";s:19:\"2019-10-03 19:57:11\";s:13:\"post_date_gmt\";s:19:\"0000-00-00 00:00:00\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:10:\"Auto Draft\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:10:\"auto-draft\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:0:\"\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-03 19:57:11\";s:17:\"post_modified_gmt\";s:19:\"0000-00-00 00:00:00\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=2851\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2852;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-04 18:06:02\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2852;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2852;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-04 18:06:02\";s:13:\"post_date_gmt\";s:19:\"2019-10-04 18:06:02\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:105:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:102:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-36\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-04 18:06:02\";s:17:\"post_modified_gmt\";s:19:\"2019-10-04 18:06:02\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:146:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-36/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2853;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-04 18:06:02\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2853;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2853;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-04 18:06:02\";s:13:\"post_date_gmt\";s:19:\"2019-10-04 18:06:02\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:27:\"richard.m.whitley@gmail.com\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:27:\"richard-m-whitley-gmail-com\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-04 18:06:02\";s:17:\"post_modified_gmt\";s:19:\"2019-10-04 18:06:02\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_contact&p=2853\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_contact\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2854;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-04 18:06:02\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2854;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2854;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-04 18:06:02\";s:13:\"post_date_gmt\";s:19:\"2019-10-04 18:06:02\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:14:\"[your-subject]\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:15:\"your-subject-91\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-04 18:06:02\";s:17:\"post_modified_gmt\";s:19:\"2019-10-04 18:06:02\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_inbound&p=2854\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_inbound\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2855;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-04 21:40:56\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2855;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2855;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-04 21:40:56\";s:13:\"post_date_gmt\";s:19:\"2019-10-04 21:40:56\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:105:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:102:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-37\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-04 21:40:56\";s:17:\"post_modified_gmt\";s:19:\"2019-10-04 21:40:56\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:146:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-37/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2856;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-04 21:40:56\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2856;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2856;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-04 21:40:56\";s:13:\"post_date_gmt\";s:19:\"2019-10-04 21:40:56\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:21:\"shantishu30@gmail.com\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"shantishu30-gmail-com\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-04 21:40:56\";s:17:\"post_modified_gmt\";s:19:\"2019-10-04 21:40:56\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_contact&p=2856\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_contact\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2857;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-04 21:40:56\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2857;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2857;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-04 21:40:56\";s:13:\"post_date_gmt\";s:19:\"2019-10-04 21:40:56\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:14:\"[your-subject]\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:15:\"your-subject-92\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-04 21:40:56\";s:17:\"post_modified_gmt\";s:19:\"2019-10-04 21:40:56\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_inbound&p=2857\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_inbound\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2858;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-08 17:55:48\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2858;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2858;s:11:\"post_author\";s:1:\"3\";s:9:\"post_date\";s:19:\"2019-10-08 17:55:48\";s:13:\"post_date_gmt\";s:19:\"0000-00-00 00:00:00\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:10:\"Auto Draft\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:10:\"auto-draft\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:0:\"\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-08 17:55:48\";s:17:\"post_modified_gmt\";s:19:\"0000-00-00 00:00:00\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=2858\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2861;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-09 00:18:46\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2861;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2861;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-09 00:18:46\";s:13:\"post_date_gmt\";s:19:\"2019-10-09 00:18:46\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:105:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:102:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-38\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-09 00:18:46\";s:17:\"post_modified_gmt\";s:19:\"2019-10-09 00:18:46\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:146:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-38/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2862;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-09 00:18:46\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2862;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2862;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-09 00:18:46\";s:13:\"post_date_gmt\";s:19:\"2019-10-09 00:18:46\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:23:\"danny@websitesdepot.com\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:23:\"danny-websitesdepot-com\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-09 00:18:46\";s:17:\"post_modified_gmt\";s:19:\"2019-10-09 00:18:46\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_contact&p=2862\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_contact\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2863;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-09 00:18:46\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2863;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2863;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-09 00:18:46\";s:13:\"post_date_gmt\";s:19:\"2019-10-09 00:18:46\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:14:\"[your-subject]\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:15:\"your-subject-93\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-09 00:18:46\";s:17:\"post_modified_gmt\";s:19:\"2019-10-09 00:18:46\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_inbound&p=2863\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_inbound\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2864;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-10 17:42:33\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2864;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2864;s:11:\"post_author\";s:1:\"3\";s:9:\"post_date\";s:19:\"2019-10-10 17:42:33\";s:13:\"post_date_gmt\";s:19:\"0000-00-00 00:00:00\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:10:\"Auto Draft\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:10:\"auto-draft\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:0:\"\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-10 17:42:33\";s:17:\"post_modified_gmt\";s:19:\"0000-00-00 00:00:00\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=2864\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2865;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-10 17:48:23\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2865;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2865;s:11:\"post_author\";s:1:\"3\";s:9:\"post_date\";s:19:\"2019-10-10 17:48:23\";s:13:\"post_date_gmt\";s:19:\"0000-00-00 00:00:00\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:10:\"Auto Draft\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:10:\"auto-draft\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:0:\"\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-10 17:48:23\";s:17:\"post_modified_gmt\";s:19:\"0000-00-00 00:00:00\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=2865\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2867;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-11 16:56:16\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2867;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2867;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-11 16:56:16\";s:13:\"post_date_gmt\";s:19:\"2019-10-11 16:56:16\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:105:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:102:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-39\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-11 16:56:16\";s:17:\"post_modified_gmt\";s:19:\"2019-10-11 16:56:16\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:146:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-39/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2868;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-11 16:56:16\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2868;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2868;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-11 16:56:16\";s:13:\"post_date_gmt\";s:19:\"2019-10-11 16:56:16\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:18:\"jocelynr79@msn.com\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"jocelynr79-msn-com\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-11 16:56:16\";s:17:\"post_modified_gmt\";s:19:\"2019-10-11 16:56:16\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_contact&p=2868\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_contact\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2869;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-11 16:56:16\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2869;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2869;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-11 16:56:16\";s:13:\"post_date_gmt\";s:19:\"2019-10-11 16:56:16\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:14:\"[your-subject]\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:15:\"your-subject-94\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-11 16:56:16\";s:17:\"post_modified_gmt\";s:19:\"2019-10-11 16:56:16\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_inbound&p=2869\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_inbound\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2870;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-14 21:01:20\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2870;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2870;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-14 21:01:20\";s:13:\"post_date_gmt\";s:19:\"2019-10-14 21:01:20\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:105:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:102:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-40\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-14 21:01:20\";s:17:\"post_modified_gmt\";s:19:\"2019-10-14 21:01:20\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:146:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-40/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2871;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-14 21:01:20\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2871;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2871;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-14 21:01:20\";s:13:\"post_date_gmt\";s:19:\"2019-10-14 21:01:20\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:20:\"bikeinfo27@gmail.com\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:20:\"bikeinfo27-gmail-com\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-14 21:01:20\";s:17:\"post_modified_gmt\";s:19:\"2019-10-14 21:01:20\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_contact&p=2871\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_contact\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2872;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-14 21:01:20\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2872;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2872;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-14 21:01:20\";s:13:\"post_date_gmt\";s:19:\"2019-10-14 21:01:20\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:14:\"[your-subject]\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:15:\"your-subject-95\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-14 21:01:20\";s:17:\"post_modified_gmt\";s:19:\"2019-10-14 21:01:20\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_inbound&p=2872\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_inbound\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2873;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-15 06:30:59\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2873;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2873;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-15 06:30:59\";s:13:\"post_date_gmt\";s:19:\"2019-10-15 06:30:59\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:105:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:102:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-41\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-15 06:30:59\";s:17:\"post_modified_gmt\";s:19:\"2019-10-15 06:30:59\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:146:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-41/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2874;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-15 06:30:59\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2874;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2874;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-15 06:30:59\";s:13:\"post_date_gmt\";s:19:\"2019-10-15 06:30:59\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:26:\"cherylsyphus2007@yahoo.com\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:26:\"cherylsyphus2007-yahoo-com\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-15 06:30:59\";s:17:\"post_modified_gmt\";s:19:\"2019-10-15 06:30:59\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_contact&p=2874\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_contact\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2875;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-15 06:31:00\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2875;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2875;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-15 06:30:59\";s:13:\"post_date_gmt\";s:19:\"2019-10-15 06:30:59\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:14:\"[your-subject]\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:15:\"your-subject-96\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-15 06:30:59\";s:17:\"post_modified_gmt\";s:19:\"2019-10-15 06:30:59\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_inbound&p=2875\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_inbound\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2876;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-15 21:52:14\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2876;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2876;s:11:\"post_author\";s:1:\"6\";s:9:\"post_date\";s:19:\"2019-10-15 21:52:14\";s:13:\"post_date_gmt\";s:19:\"0000-00-00 00:00:00\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:10:\"Auto Draft\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:10:\"auto-draft\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:0:\"\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-15 21:52:14\";s:17:\"post_modified_gmt\";s:19:\"0000-00-00 00:00:00\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=2876\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2877;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-15 21:57:32\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2877;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2877;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-15 21:57:32\";s:13:\"post_date_gmt\";s:19:\"2019-10-15 21:57:32\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:105:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:102:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-42\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-15 21:57:32\";s:17:\"post_modified_gmt\";s:19:\"2019-10-15 21:57:32\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:146:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-42/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2878;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-15 21:57:33\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2878;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2878;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-15 21:57:33\";s:13:\"post_date_gmt\";s:19:\"2019-10-15 21:57:33\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:26:\"noah@chiromarketinginc.org\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:26:\"noah-chiromarketinginc-org\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-15 21:57:33\";s:17:\"post_modified_gmt\";s:19:\"2019-10-15 21:57:33\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_contact&p=2878\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_contact\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2879;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-15 21:57:33\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2879;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2879;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-15 21:57:33\";s:13:\"post_date_gmt\";s:19:\"2019-10-15 21:57:33\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:14:\"[your-subject]\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:15:\"your-subject-97\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-15 21:57:33\";s:17:\"post_modified_gmt\";s:19:\"2019-10-15 21:57:33\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_inbound&p=2879\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_inbound\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2880;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-16 18:40:39\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2880;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2880;s:11:\"post_author\";s:1:\"4\";s:9:\"post_date\";s:19:\"2019-10-16 18:40:39\";s:13:\"post_date_gmt\";s:19:\"0000-00-00 00:00:00\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:10:\"Auto Draft\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:10:\"auto-draft\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:0:\"\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-16 18:40:39\";s:17:\"post_modified_gmt\";s:19:\"0000-00-00 00:00:00\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=2880\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2881;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-16 19:16:41\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2881;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2881;s:11:\"post_author\";s:1:\"4\";s:9:\"post_date\";s:19:\"2019-10-16 19:16:41\";s:13:\"post_date_gmt\";s:19:\"2019-10-16 19:16:41\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:32:\"bholcroft@webstractmarketing.com\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:32:\"bholcroft-webstractmarketing-com\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-16 19:16:41\";s:17:\"post_modified_gmt\";s:19:\"2019-10-16 19:16:41\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:59:\"https://www.drfields.com/?post_type=flamingo_contact&p=2881\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_contact\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2882;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-16 19:16:43\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2882;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2882;s:11:\"post_author\";s:1:\"4\";s:9:\"post_date\";s:19:\"2019-10-16 19:16:43\";s:13:\"post_date_gmt\";s:19:\"2019-10-16 19:16:43\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:112:\"[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] New User Registration\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:110:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-new-user-registration-2\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-16 19:16:43\";s:17:\"post_modified_gmt\";s:19:\"2019-10-16 19:16:43\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:154:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-new-user-registration-2/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2883;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-16 19:16:46\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2883;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2883;s:11:\"post_author\";s:1:\"4\";s:9:\"post_date\";s:19:\"2019-10-16 19:16:46\";s:13:\"post_date_gmt\";s:19:\"2019-10-16 19:16:46\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:104:\"[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Login Details\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:102:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-login-details-2\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-16 19:16:46\";s:17:\"post_modified_gmt\";s:19:\"2019-10-16 19:16:46\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:146:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-login-details-2/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2884;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-16 20:02:23\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2884;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2884;s:11:\"post_author\";s:1:\"7\";s:9:\"post_date\";s:19:\"2019-10-16 20:02:23\";s:13:\"post_date_gmt\";s:19:\"0000-00-00 00:00:00\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:10:\"Auto Draft\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:10:\"auto-draft\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:0:\"\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-16 20:02:23\";s:17:\"post_modified_gmt\";s:19:\"0000-00-00 00:00:00\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=2884\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2885;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-17 21:41:55\";s:8:\"modified\";i:2;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2885;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:2885;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-10-17 21:41:55\";s:13:\"post_date_gmt\";s:19:\"2019-10-17 21:41:55\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:32:\"webmaster@webstractmarketing.com\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:32:\"webmaster-webstractmarketing-com\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-17 21:41:55\";s:17:\"post_modified_gmt\";s:19:\"2019-10-17 21:41:55\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:64:\"https://www.drfields.com/?post_type=flamingo_contact&#038;p=2885\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:16:\"flamingo_contact\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2886;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-16 20:17:12\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2886;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2886;s:11:\"post_author\";s:1:\"7\";s:9:\"post_date\";s:19:\"2019-10-16 20:17:12\";s:13:\"post_date_gmt\";s:19:\"2019-10-16 20:17:12\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:112:\"[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] New User Registration\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:110:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-new-user-registration-3\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-16 20:17:12\";s:17:\"post_modified_gmt\";s:19:\"2019-10-16 20:17:12\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:154:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-new-user-registration-3/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:26:\"plugin-iwp-client/init.php\";a:7:{s:4:\"type\";s:6:\"plugin\";s:6:\"action\";s:15:\"activate_plugin\";s:9:\"timestamp\";s:19:\"2019-10-16 20:19:41\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:6:\"plugin\";s:19:\"iwp-client/init.php\";s:11:\"plugin_data\";a:2:{s:4:\"Name\";s:19:\"InfiniteWP - Client\";s:9:\"PluginURI\";s:22:\"http://infinitewp.com/\";}}i:2887;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-16 20:22:28\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2887;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2887;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-10-16 20:22:28\";s:13:\"post_date_gmt\";s:19:\"0000-00-00 00:00:00\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:10:\"Auto Draft\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:10:\"auto-draft\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:0:\"\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-16 20:22:28\";s:17:\"post_modified_gmt\";s:19:\"0000-00-00 00:00:00\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=2887\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2888;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-16 20:24:35\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2888;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2888;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-10-16 20:24:35\";s:13:\"post_date_gmt\";s:19:\"2019-10-16 20:24:35\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:114:\"[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] New Admin Email Address\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:110:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-new-admin-email-address\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-16 20:24:35\";s:17:\"post_modified_gmt\";s:19:\"2019-10-16 20:24:35\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:154:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-new-admin-email-address/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2889;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-16 20:25:01\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2889;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2889;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-10-16 20:25:01\";s:13:\"post_date_gmt\";s:19:\"2019-10-16 20:25:01\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:110:\"[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Admin Email Changed\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:106:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-admin-email-changed\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-16 20:25:01\";s:17:\"post_modified_gmt\";s:19:\"2019-10-16 20:25:01\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:150:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-admin-email-changed/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2892;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-17 08:10:04\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2892;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2892;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-10-17 08:10:04\";s:13:\"post_date_gmt\";s:19:\"0000-00-00 00:00:00\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:10:\"Auto Draft\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:10:\"auto-draft\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:0:\"\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-17 08:10:04\";s:17:\"post_modified_gmt\";s:19:\"0000-00-00 00:00:00\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=2892\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2894;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-17 08:12:09\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2894;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2894;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-10-17 08:12:09\";s:13:\"post_date_gmt\";s:19:\"0000-00-00 00:00:00\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:10:\"Auto Draft\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:10:\"auto-draft\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:0:\"\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-17 08:12:09\";s:17:\"post_modified_gmt\";s:19:\"0000-00-00 00:00:00\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=2894\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2896;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-17 08:13:23\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2896;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2896;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-10-17 08:13:23\";s:13:\"post_date_gmt\";s:19:\"0000-00-00 00:00:00\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:10:\"Auto Draft\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:10:\"auto-draft\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:0:\"\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-17 08:13:23\";s:17:\"post_modified_gmt\";s:19:\"0000-00-00 00:00:00\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=2896\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1401;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-10-17 08:14:40\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1401;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1401;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-06-12 10:57:08\";s:13:\"post_date_gmt\";s:19:\"2019-06-12 10:57:08\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:18:\"Runner\'s Knee Pain\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:17:\"runners-knee-pain\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-17 08:14:39\";s:17:\"post_modified_gmt\";s:19:\"2019-10-17 08:14:39\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=1401\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2898;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-17 08:15:26\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2898;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2898;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-10-17 08:15:26\";s:13:\"post_date_gmt\";s:19:\"0000-00-00 00:00:00\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:10:\"Auto Draft\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:10:\"auto-draft\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:0:\"\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-17 08:15:26\";s:17:\"post_modified_gmt\";s:19:\"0000-00-00 00:00:00\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=2898\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:1397;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-10-17 08:16:55\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:1397;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:1397;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-10-17 10:54:01\";s:13:\"post_date_gmt\";s:19:\"2019-10-17 10:54:01\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:25:\"Meniscus and Labral Tears\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:6:\"future\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:25:\"meniscus-and-labral-tears\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-17 08:16:55\";s:17:\"post_modified_gmt\";s:19:\"2019-10-17 08:16:55\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=1397\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2900;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-17 08:22:04\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2900;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2900;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-10-17 08:22:04\";s:13:\"post_date_gmt\";s:19:\"0000-00-00 00:00:00\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:10:\"Auto Draft\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:10:\"auto-draft\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:0:\"\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-17 08:22:04\";s:17:\"post_modified_gmt\";s:19:\"0000-00-00 00:00:00\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:32:\"https://www.drfields.com/?p=2900\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"post\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:52:\"plugin-wsm-website-settings/wsm-website-settings.php\";a:7:{s:4:\"type\";s:6:\"plugin\";s:6:\"action\";s:15:\"activate_plugin\";s:9:\"timestamp\";s:19:\"2019-10-17 09:24:06\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:6:\"plugin\";s:45:\"wsm-website-settings/wsm-website-settings.php\";s:11:\"plugin_data\";a:2:{s:4:\"Name\";s:16:\"Website Settings\";s:9:\"PluginURI\";s:103:\"http://www.webstractmarketing.com/?utm_source=wpadmin&#038;utm_medium=plugin&#038;utm_campaign=wpplugin\";}}i:29;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:12:\"post_updated\";s:9:\"timestamp\";s:19:\"2019-10-17 09:25:24\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:29;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:29;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-06-07 04:36:03\";s:13:\"post_date_gmt\";s:19:\"2019-06-07 04:36:03\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:7:\"Contact\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:7:\"contact\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-17 09:25:24\";s:17:\"post_modified_gmt\";s:19:\"2019-10-17 09:25:24\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:36:\"https://www.drfields.com/?page_id=29\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:4:\"page\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2904;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-17 17:03:49\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2904;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2904;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-10-17 17:03:49\";s:13:\"post_date_gmt\";s:19:\"2019-10-17 17:03:49\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:21:\"iwp_log_5da89ef536c7e\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"iwp_log_5da89ef536c7e\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-17 17:03:49\";s:17:\"post_modified_gmt\";s:19:\"2019-10-17 17:03:49\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:61:\"https://www.drfields.com/uncategorized/iwp_log_5da89ef536c7e/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"iwp_log\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:42:\"plugin-wpcf7-recaptcha/wpcf7-recaptcha.php\";a:7:{s:4:\"type\";s:6:\"plugin\";s:6:\"action\";s:13:\"update_plugin\";s:9:\"timestamp\";s:19:\"2019-10-17 17:03:49\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:6:\"plugin\";s:35:\"wpcf7-recaptcha/wpcf7-recaptcha.php\";s:11:\"plugin_data\";a:2:{s:4:\"Name\";s:31:\"ReCaptcha v2 for Contact Form 7\";s:9:\"PluginURI\";s:0:\"\";}}i:2905;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-17 17:03:51\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2905;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2905;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-10-17 17:03:51\";s:13:\"post_date_gmt\";s:19:\"2019-10-17 17:03:51\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:21:\"iwp_log_5da89ef770bec\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"iwp_log_5da89ef770bec\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-17 17:03:51\";s:17:\"post_modified_gmt\";s:19:\"2019-10-17 17:03:51\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:61:\"https://www.drfields.com/uncategorized/iwp_log_5da89ef770bec/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"iwp_log\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:28:\"plugin-flamingo/flamingo.php\";a:7:{s:4:\"type\";s:6:\"plugin\";s:6:\"action\";s:13:\"update_plugin\";s:9:\"timestamp\";s:19:\"2019-10-17 17:03:51\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:6:\"plugin\";s:21:\"flamingo/flamingo.php\";s:11:\"plugin_data\";a:2:{s:4:\"Name\";s:8:\"Flamingo\";s:9:\"PluginURI\";s:0:\"\";}}i:2906;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-17 17:03:56\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2906;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2906;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-10-17 17:03:56\";s:13:\"post_date_gmt\";s:19:\"2019-10-17 17:03:56\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:21:\"iwp_log_5da89efc72b74\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"iwp_log_5da89efc72b74\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-17 17:03:56\";s:17:\"post_modified_gmt\";s:19:\"2019-10-17 17:03:56\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:61:\"https://www.drfields.com/uncategorized/iwp_log_5da89efc72b74/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"iwp_log\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:33:\"plugin-post-smtp/postman-smtp.php\";a:7:{s:4:\"type\";s:6:\"plugin\";s:6:\"action\";s:13:\"update_plugin\";s:9:\"timestamp\";s:19:\"2019-10-17 17:03:56\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:6:\"plugin\";s:26:\"post-smtp/postman-smtp.php\";s:11:\"plugin_data\";a:2:{s:4:\"Name\";s:9:\"Post SMTP\";s:9:\"PluginURI\";s:40:\"https://wordpress.org/plugins/post-smtp/\";}}i:2907;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-17 17:04:04\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2907;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2907;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-10-17 17:04:04\";s:13:\"post_date_gmt\";s:19:\"2019-10-17 17:04:04\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:21:\"iwp_log_5da89f040d96e\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"iwp_log_5da89f040d96e\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-17 17:04:04\";s:17:\"post_modified_gmt\";s:19:\"2019-10-17 17:04:04\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:61:\"https://www.drfields.com/uncategorized/iwp_log_5da89f040d96e/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"iwp_log\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:31:\"plugin-wordpress-seo/wp-seo.php\";a:7:{s:4:\"type\";s:6:\"plugin\";s:6:\"action\";s:13:\"update_plugin\";s:9:\"timestamp\";s:19:\"2019-10-17 17:04:04\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"plugin_data\";a:2:{s:4:\"Name\";s:9:\"Yoast SEO\";s:9:\"PluginURI\";s:18:\"https://yoa.st/1uj\";}}i:2908;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-17 17:04:05\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2908;s:4:\"post\";O:8:\"stdClass\":24:{s:2:\"ID\";i:2908;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-10-17 17:04:05\";s:13:\"post_date_gmt\";s:19:\"2019-10-17 17:04:05\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:21:\"iwp_log_5da89f052eba8\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"iwp_log_5da89f052eba8\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-17 17:04:05\";s:17:\"post_modified_gmt\";s:19:\"2019-10-17 17:04:05\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:61:\"https://www.drfields.com/uncategorized/iwp_log_5da89f052eba8/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"iwp_log\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:34:\"plugin-redirection/redirection.php\";a:7:{s:4:\"type\";s:6:\"plugin\";s:6:\"action\";s:13:\"update_plugin\";s:9:\"timestamp\";s:19:\"2019-10-17 17:04:05\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:6:\"plugin\";s:27:\"redirection/redirection.php\";s:11:\"plugin_data\";a:2:{s:4:\"Name\";s:11:\"Redirection\";s:9:\"PluginURI\";s:23:\"https://redirection.me/\";}}i:2909;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-17 21:37:28\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2909;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:2909;s:11:\"post_author\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-10-17 21:37:28\";s:13:\"post_date_gmt\";s:19:\"2019-10-17 21:37:28\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:105:\"[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Password Reset\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:101:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-password-reset\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-17 21:37:28\";s:17:\"post_modified_gmt\";s:19:\"2019-10-17 21:37:28\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:145:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-password-reset/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}i:2910;a:7:{s:4:\"type\";s:4:\"post\";s:6:\"action\";s:11:\"insert_post\";s:9:\"timestamp\";s:19:\"2019-10-17 21:41:58\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:7:\"post_id\";i:2910;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:2910;s:11:\"post_author\";s:1:\"8\";s:9:\"post_date\";s:19:\"2019-10-17 21:41:58\";s:13:\"post_date_gmt\";s:19:\"2019-10-17 21:41:58\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:107:\"[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Password Changed\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"private\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:103:\"stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-password-changed\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2019-10-17 21:41:58\";s:17:\"post_modified_gmt\";s:19:\"2019-10-17 21:41:58\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:147:\"https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-password-changed/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:17:\"postman_sent_mail\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:36:\"plugin-wp-mail-smtp/wp_mail_smtp.php\";a:7:{s:4:\"type\";s:6:\"plugin\";s:6:\"action\";s:15:\"activate_plugin\";s:9:\"timestamp\";s:19:\"2019-10-17 21:42:32\";s:8:\"modified\";i:1;s:8:\"deletion\";b:0;s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"plugin_data\";a:2:{s:4:\"Name\";s:12:\"WP Mail SMTP\";s:9:\"PluginURI\";s:23:\"https://wpmailsmtp.com/\";}}}s:19:\"edits_tracking_mode\";s:5:\"basic\";s:17:\"last_backup_start\";d:1571332499.462038;s:18:\"last_backup_finish\";d:1569617287.115217;s:18:\"last_backup_serial\";s:10:\"2sqk2v3pmn\";s:17:\"last_backup_stats\";a:10:{s:11:\"archiveFile\";s:62:\"backup-www_drfields_com-2019_09_27-08_47pm-full-e1kp3jxvyp.zip\";s:10:\"archiveURL\";s:126:\"https://www.drfields.com/wp-content/uploads/backupbuddy_backups/backup-www_drfields_com-2019_09_27-08_47pm-full-e1kp3jxvyp.zip\";s:11:\"archiveSize\";i:201874705;s:5:\"start\";d:1569617259.188152;s:6:\"finish\";d:1569617287.115217;s:4:\"type\";s:4:\"full\";s:12:\"profileTitle\";s:15:\"Complete Backup\";s:13:\"scheduleTitle\";s:0:\"\";s:15:\"integrityStatus\";b:1;s:12:\"destinations\";a:0:{}}s:21:\"last_error_email_time\";i:0;s:19:\"force_compatibility\";i:0;s:29:\"force_mysqldump_compatibility\";i:0;s:9:\"schedules\";a:0:{}s:9:\"log_level\";s:1:\"1\";s:13:\"high_security\";i:0;s:19:\"next_schedule_index\";i:100;s:13:\"archive_limit\";s:1:\"0\";s:18:\"archive_limit_full\";s:1:\"0\";s:16:\"archive_limit_db\";s:1:\"0\";s:19:\"archive_limit_files\";s:1:\"0\";s:18:\"archive_limit_size\";s:1:\"0\";s:22:\"archive_limit_size_big\";i:50000;s:17:\"archive_limit_age\";s:1:\"0\";s:26:\"delete_archives_pre_backup\";i:0;s:23:\"lock_archives_directory\";s:1:\"0\";s:25:\"set_greedy_execution_time\";i:0;s:28:\"email_notify_scheduled_start\";s:0:\"\";s:36:\"email_notify_scheduled_start_subject\";s:49:\"BackupBuddy Scheduled Backup Started - {home_url}\";s:33:\"email_notify_scheduled_start_body\";s:142:\"A scheduled backup has started with BackupBuddy v{backupbuddy_version} on {current_datetime} for the site {home_url}.\r\n\r\nDetails:\r\n\r\n{message}\";s:31:\"email_notify_scheduled_complete\";s:0:\"\";s:39:\"email_notify_scheduled_complete_subject\";s:50:\"BackupBuddy Scheduled Backup Complete - {home_url}\";s:36:\"email_notify_scheduled_complete_body\";s:144:\"A scheduled backup has completed with BackupBuddy v{backupbuddy_version} on {current_datetime} for the site {home_url}.\r\n\r\nDetails:\r\n\r\n{message}\";s:24:\"email_notify_send_finish\";s:0:\"\";s:32:\"email_notify_send_finish_subject\";s:43:\"BackupBuddy File Send Finished - {home_url}\";s:29:\"email_notify_send_finish_body\";s:170:\"A destination file send of file {backup_file} has finished with BackupBuddy v{backupbuddy_version} on {current_datetime} for the site {home_url}.\r\n\r\nDetails:\r\n\r\n{message}\";s:18:\"email_notify_error\";s:25:\"support@websitesdepot.com\";s:26:\"email_notify_error_subject\";s:37:\"BackupBuddy Server Error - {home_url}\";s:23:\"email_notify_error_body\";s:136:\"BackupBuddy v{backupbuddy_version} encountered a server error on {current_datetime} for the site {home_url}. Error details:\r\n\r\n{message}\";s:12:\"email_return\";s:0:\"\";s:19:\"remote_destinations\";a:0:{}s:27:\"remote_send_timeout_retries\";s:1:\"1\";s:11:\"role_access\";s:16:\"activate_plugins\";s:16:\"dropboxtemptoken\";s:0:\"\";s:16:\"multisite_export\";s:1:\"0\";s:16:\"backup_directory\";s:0:\"\";s:14:\"temp_directory\";s:0:\"\";s:13:\"log_directory\";s:0:\"\";s:10:\"log_serial\";s:15:\"c9ywem7h2ra3w9i\";s:13:\"notifications\";a:0:{}s:19:\"zip_method_strategy\";s:1:\"1\";s:24:\"database_method_strategy\";s:3:\"php\";s:17:\"alternative_zip_2\";s:1:\"0\";s:19:\"ignore_zip_warnings\";s:1:\"1\";s:19:\"ignore_zip_symlinks\";s:1:\"1\";s:18:\"zip_build_strategy\";s:1:\"3\";s:15:\"zip_step_period\";s:2:\"30\";s:13:\"zip_burst_gap\";s:1:\"2\";s:21:\"zip_min_burst_content\";s:2:\"10\";s:21:\"zip_max_burst_content\";s:3:\"100\";s:25:\"disable_zipmethod_caching\";s:1:\"0\";s:19:\"archive_name_format\";s:8:\"datetime\";s:20:\"archive_name_profile\";s:1:\"0\";s:30:\"disable_https_local_ssl_verify\";s:1:\"0\";s:17:\"save_comment_meta\";s:1:\"1\";s:27:\"ignore_command_length_check\";s:1:\"0\";s:18:\"default_backup_tab\";s:1:\"0\";s:18:\"deployment_allowed\";s:1:\"0\";s:9:\"hide_live\";s:1:\"0\";s:21:\"hide_dashboard_widget\";s:1:\"0\";s:16:\"deploy_sslverify\";s:1:\"1\";s:10:\"remote_api\";a:2:{s:4:\"keys\";a:0:{}s:3:\"ips\";a:0:{}}s:20:\"skip_spawn_cron_call\";s:1:\"0\";s:5:\"stats\";a:6:{s:9:\"site_size\";i:0;s:18:\"site_size_excluded\";i:0;s:17:\"site_size_updated\";i:0;s:7:\"db_size\";i:54722560;s:16:\"db_size_excluded\";i:54722560;s:15:\"db_size_updated\";i:1571332346;}s:9:\"disalerts\";a:2:{s:25:\"backupbuddy_version_eight\";i:1562858400;s:32:\"b8da62974555a10def844cc732effcb8\";i:1571332266;}s:15:\"breakout_tables\";s:1:\"1\";s:19:\"include_importbuddy\";s:1:\"1\";s:17:\"max_site_log_size\";s:1:\"3\";s:11:\"compression\";s:1:\"1\";s:25:\"no_new_backups_error_days\";s:2:\"10\";s:15:\"skip_quicksetup\";s:1:\"1\";s:13:\"prevent_flush\";s:1:\"0\";s:17:\"rollback_cleanups\";a:0:{}s:20:\"phpmysqldump_maxrows\";s:0:\"\";s:20:\"disable_localization\";s:1:\"0\";s:18:\"max_execution_time\";s:0:\"\";s:24:\"backup_cron_rescheduling\";s:1:\"0\";s:29:\"backup_cron_passed_force_time\";s:0:\"\";s:20:\"force_single_db_file\";s:1:\"0\";s:11:\"deployments\";a:0:{}s:19:\"max_send_stats_days\";s:1:\"7\";s:20:\"max_send_stats_count\";s:1:\"6\";s:26:\"max_notifications_age_days\";s:2:\"21\";s:19:\"save_backup_sum_log\";s:1:\"1\";s:26:\"limit_single_cron_per_pass\";s:1:\"1\";s:18:\"tested_php_runtime\";d:39;s:17:\"tested_php_memory\";d:128;s:23:\"last_tested_php_runtime\";i:1571003536;s:22:\"last_tested_php_memory\";i:1571003535;s:17:\"use_internal_cron\";s:1:\"0\";s:33:\"php_runtime_test_minimum_interval\";s:6:\"604800\";s:32:\"php_memory_test_minimum_interval\";s:6:\"604800\";s:29:\"cron_request_timeout_override\";s:0:\"\";s:8:\"profiles\";a:6:{i:-3;a:3:{s:4:\"type\";s:6:\"themes\";s:5:\"title\";s:11:\"Themes Only\";s:3:\"tip\";s:17:\"Just your themes.\";}i:-2;a:3:{s:4:\"type\";s:7:\"plugins\";s:5:\"title\";s:12:\"Plugins Only\";s:3:\"tip\";s:18:\"Just your plugins.\";}i:-1;a:3:{s:4:\"type\";s:5:\"media\";s:5:\"title\";s:10:\"Media Only\";s:3:\"tip\";s:16:\"WordPress Media.\";}i:0;a:16:{s:4:\"type\";s:8:\"defaults\";s:5:\"title\";s:15:\"Global Defaults\";s:18:\"skip_database_dump\";s:1:\"0\";s:29:\"mysqldump_additional_includes\";s:0:\"\";s:29:\"mysqldump_additional_excludes\";s:0:\"\";s:19:\"backup_nonwp_tables\";s:1:\"0\";s:8:\"excludes\";s:63:\"/backup-www_drfields_com-2019_07_08-01_26pm-full-j20hehjsvd.zip\";s:19:\"active_plugins_only\";s:1:\"0\";s:15:\"integrity_check\";s:1:\"1\";s:20:\"profile_globaltables\";s:1:\"1\";s:22:\"profile_globalexcludes\";s:1:\"1\";s:11:\"backup_mode\";s:1:\"2\";s:11:\"custom_root\";s:0:\"\";s:13:\"exclude_media\";s:1:\"0\";s:14:\"exclude_themes\";s:1:\"0\";s:15:\"exclude_plugins\";s:1:\"0\";}i:1;a:3:{s:4:\"type\";s:2:\"db\";s:5:\"title\";s:13:\"Database Only\";s:3:\"tip\";s:49:\"Just your database. I like your minimalist style.\";}i:2;a:2:{s:4:\"type\";s:4:\"full\";s:5:\"title\";s:15:\"Complete Backup\";}}s:23:\"show_all_cron_schedules\";i:0;s:29:\"importbuddy_pass_hash_confirm\";s:0:\"\";}','no'),(5528,'ithemes-updater-cache','a:10:{s:18:\"timeout-multiplier\";i:1;s:10:\"expiration\";i:1562139850;s:9:\"timestamp\";i:1562096650;s:8:\"packages\";a:0:{}s:14:\"update_plugins\";a:0:{}s:13:\"update_themes\";a:0:{}s:12:\"use_ca_patch\";b:0;s:7:\"use_ssl\";b:1;s:14:\"quick_releases\";b:0;s:18:\"timeout-mulitplier\";i:1;}','no'),(5531,'ithemes-updater-keys','a:0:{}','no'),(5539,'pb_backupbuddy_notifications','a:1:{i:0;a:7:{s:4:\"time\";i:1569617287;s:4:\"slug\";s:14:\"backup_success\";s:5:\"title\";s:30:\"Backup completed successfully.\";s:7:\"message\";s:56:\"A manual backup has completed successfully on your site.\";s:4:\"data\";a:3:{s:6:\"serial\";s:10:\"e1kp3jxvyp\";s:4:\"type\";s:4:\"full\";s:13:\"profile_title\";s:15:\"Complete Backup\";}s:6:\"urgent\";b:0;s:8:\"syncSent\";b:0;}}','no'),(5669,'updraft_jobdata_7fe17ffe18ae','a:2:{s:8:\"job_type\";s:6:\"delete\";s:11:\"job_time_ms\";d:1562142586.659803;}','no'),(5671,'updraft_jobdata_5d1c67820d77','a:5:{s:8:\"job_type\";s:8:\"download\";s:11:\"job_time_ms\";d:1562142616.286792;s:25:\"dlmessage_1562142594_db_0\";s:92:\"The file was found locally and matched the recorded size from the backup history (1160.3 KB)\";s:7:\"service\";a:1:{i:0;s:4:\"none\";}s:22:\"dlfile_1562142594_db_0\";s:148:\"downloaded:1188134:/home/renaiss2/public_html/drfields/wp-content/updraft/backup_2019-07-03-0829_Stem_Cell_PRP_Prolotherapy_Surge_cf16449576b1-db.gz\";}','no'),(5672,'updraft_jobdata_5d1c6782063d','a:5:{s:8:\"job_type\";s:8:\"download\";s:11:\"job_time_ms\";d:1562143710.741981;s:30:\"dlmessage_1562142594_plugins_0\";s:93:\"The file was found locally and matched the recorded size from the backup history (18598.6 KB)\";s:7:\"service\";a:1:{i:0;s:4:\"none\";}s:27:\"dlfile_1562142594_plugins_0\";s:155:\"downloaded:19044929:/home/renaiss2/public_html/drfields/wp-content/updraft/backup_2019-07-03-0829_Stem_Cell_PRP_Prolotherapy_Surge_cf16449576b1-plugins.zip\";}','no'),(5673,'updraft_jobdata_5d1c67820fe0','a:5:{s:8:\"job_type\";s:8:\"download\";s:11:\"job_time_ms\";d:1562142631.580786;s:29:\"dlmessage_1562142594_themes_0\";s:91:\"The file was found locally and matched the recorded size from the backup history (791.2 KB)\";s:7:\"service\";a:1:{i:0;s:4:\"none\";}s:26:\"dlfile_1562142594_themes_0\";s:152:\"downloaded:810167:/home/renaiss2/public_html/drfields/wp-content/updraft/backup_2019-07-03-0829_Stem_Cell_PRP_Prolotherapy_Surge_cf16449576b1-themes.zip\";}','no'),(5674,'updraft_jobdata_5d1c67820512','a:5:{s:8:\"job_type\";s:8:\"download\";s:11:\"job_time_ms\";d:1562143718.052275;s:30:\"dlmessage_1562142594_uploads_0\";s:94:\"The file was found locally and matched the recorded size from the backup history (162853.6 KB)\";s:7:\"service\";a:1:{i:0;s:4:\"none\";}s:27:\"dlfile_1562142594_uploads_0\";s:156:\"downloaded:166762126:/home/renaiss2/public_html/drfields/wp-content/updraft/backup_2019-07-03-0829_Stem_Cell_PRP_Prolotherapy_Surge_cf16449576b1-uploads.zip\";}','no'),(5675,'updraft_jobdata_5d1c678205e2','a:5:{s:8:\"job_type\";s:8:\"download\";s:11:\"job_time_ms\";d:1562142654.22698;s:29:\"dlmessage_1562142594_others_0\";s:89:\"The file was found locally and matched the recorded size from the backup history (0.3 KB)\";s:7:\"service\";a:1:{i:0;s:4:\"none\";}s:26:\"dlfile_1562142594_others_0\";s:149:\"downloaded:346:/home/renaiss2/public_html/drfields/wp-content/updraft/backup_2019-07-03-0829_Stem_Cell_PRP_Prolotherapy_Surge_cf16449576b1-others.zip\";}','no'),(7009,'flamingo_inbound_channel_children','a:1:{i:36;a:1:{i:0;i:37;}}','yes'),(11146,'wpseo','a:106:{s:8:\"tracking\";b:0;s:16:\"toggled_tracking\";b:0;s:22:\"license_server_version\";s:1:\"2\";s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:0;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:0:\"\";s:29:\"indexables_indexing_completed\";b:1;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"21.2\";s:16:\"previous_version\";s:4:\"21.1\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:0;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1564433027;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:23:\"/%category%/%postname%/\";s:8:\"home_url\";s:24:\"https://www.drfields.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:0:{}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:1;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:3:{i:0;s:18:\"siteRepresentation\";i:1;s:14:\"socialProfiles\";i:2;s:19:\"personalPreferences\";}s:36:\"dismiss_configuration_workout_notice\";b:0;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:5:{s:30:\"aioseo_custom_archive_settings\";b:1;s:31:\"aioseo_default_archive_settings\";b:1;s:23:\"aioseo_general_settings\";b:1;s:32:\"aioseo_posttype_default_settings\";b:1;s:24:\"aioseo_taxonomy_settings\";b:1;}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:28:\"wordproof_integration_active\";b:0;s:29:\"wordproof_integration_changed\";b:0;s:18:\"first_time_install\";b:0;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1652258756;s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:28:\"last_known_public_taxonomies\";a:3:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";}s:23:\"last_known_no_unindexed\";a:4:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1695176808;s:35:\"wpseo_total_unindexed_general_items\";i:1695176808;s:31:\"wpseo_unindexed_post_link_count\";i:1695176808;s:31:\"wpseo_unindexed_term_link_count\";i:1695176808;}s:14:\"new_post_types\";a:0:{}s:14:\"new_taxonomies\";a:0:{}s:34:\"show_new_content_type_notification\";b:0;}','yes'),(11147,'wpseo_titles','a:108:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:0;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:23:\"Peter A. Fields, MD, DC\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:10:\"OrthoRegen\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:23:\"Peter A. Fields, MD, DC\";s:22:\"company_alternate_name\";s:10:\"OrthoRegen\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";i:0;s:17:\"stripcategorybase\";b:1;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";s:1:\"0\";s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";s:1:\"0\";s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:29:\"open_graph_frontpage_image_id\";i:0;s:26:\"taxonomy-category-ptparent\";s:1:\"0\";s:26:\"taxonomy-post_tag-ptparent\";s:1:\"0\";s:29:\"taxonomy-post_format-ptparent\";s:1:\"0\";}','yes'),(11148,'wpseo_social','a:19:{s:13:\"facebook_site\";s:42:\"https://www.facebook.com/PeterAFieldsMDDC/\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:14:\"TheAthleticDoc\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:1:{i:0;s:40:\"https://www.instagram.com/drpeterfields/\";}}','yes'),(16243,'postman_options','a:42:{s:8:\"enc_type\";s:3:\"tls\";s:8:\"hostname\";s:18:\"smtp.office365.com\";s:4:\"port\";i:587;s:12:\"sender_email\";s:17:\"info@drfields.com\";s:15:\"envelope_sender\";s:17:\"info@drfields.com\";s:14:\"transport_type\";s:4:\"smtp\";s:12:\"smtp_mailers\";s:9:\"phpmailer\";s:9:\"auth_type\";s:5:\"login\";s:11:\"sender_name\";s:76:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment\";s:15:\"oauth_client_id\";s:0:\"\";s:19:\"oauth_client_secret\";s:0:\"\";s:19:\"basic_auth_username\";s:17:\"info@drfields.com\";s:19:\"basic_auth_password\";s:12:\"UHJvbG8xMjMh\";s:16:\"mandrill_api_key\";s:0:\"\";s:16:\"sendgrid_api_key\";s:0:\"\";s:15:\"mailgun_api_key\";s:0:\"\";s:19:\"mailgun_domain_name\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:9:\"forced_to\";s:0:\"\";s:9:\"forced_cc\";s:0:\"\";s:10:\"forced_bcc\";s:0:\"\";s:7:\"headers\";s:0:\"\";s:12:\"read_timeout\";i:60;s:18:\"connection_timeout\";i:10;s:9:\"log_level\";i:40000;s:16:\"mail_log_enabled\";s:4:\"true\";s:20:\"mail_log_max_entries\";i:250;s:8:\"run_mode\";s:10:\"production\";s:15:\"transcript_size\";i:128;s:7:\"tmp_dir\";s:4:\"/tmp\";s:20:\"notification_service\";s:7:\"default\";s:13:\"pushover_user\";s:0:\"\";s:14:\"pushover_token\";s:0:\"\";s:11:\"slack_token\";s:0:\"\";s:23:\"notification_chrome_uid\";s:0:\"\";s:22:\"fallback_smtp_hostname\";s:0:\"\";s:18:\"fallback_smtp_port\";i:0;s:22:\"fallback_smtp_security\";s:4:\"none\";s:19:\"fallback_from_email\";s:0:\"\";s:22:\"fallback_smtp_username\";s:0:\"\";s:22:\"fallback_smtp_password\";s:0:\"\";s:21:\"fallback_smtp_enabled\";s:2:\"no\";}','yes'),(16244,'postman_state','a:4:{s:15:\"locking_enabled\";b:1;s:12:\"install_date\";i:1566408032;s:7:\"version\";s:5:\"2.0.6\";s:22:\"delivery_success_total\";i:51;}','yes'),(27843,'manage-multiple-blogs','a:2:{s:5:\"blogs\";a:0:{}s:12:\"current_blog\";a:1:{s:4:\"type\";N;}}','yes'),(27848,'iwp_client_replaced_old_hash_backup_files','1','yes'),(27849,'iwp_backup_table_version','1.1.5','yes'),(27850,'iwp_backup_processed_iterator_version','1.0.0','yes'),(27986,'wpseo_taxonomy_meta','a:1:{s:8:\"category\";a:2:{i:32;a:2:{s:13:\"wpseo_linkdex\";s:2:\"28\";s:19:\"wpseo_content_score\";s:2:\"30\";}i:23;a:3:{s:13:\"wpseo_focuskw\";s:8:\"Honduras\";s:13:\"wpseo_linkdex\";s:2:\"32\";s:19:\"wpseo_content_score\";s:2:\"30\";}}}','yes'),(28030,'wsm_business','Peter A. Fields, MD, DC','yes'),(28031,'wsm_phone','310-453-1234','yes'),(28032,'wsm_phone2','','yes'),(28033,'wsm_phone3','','yes'),(28034,'wsm_phone4','','yes'),(28035,'wsm_fax','','yes'),(28036,'wsm_email','','yes'),(28037,'wsm_address','','yes'),(28038,'wsm_city','','yes'),(28039,'wsm_state','','yes'),(28040,'wsm_zip','','yes'),(28041,'wsm_hours','','yes'),(28042,'wsm_hours2','','yes'),(28043,'wsm_established','','yes'),(28044,'wsm_facebook','','yes'),(28045,'wsm_twitter','','yes'),(28046,'wsm_googleplus','','yes'),(28047,'wsm_linkedin','','yes'),(28048,'wsm_yelp','','yes'),(28049,'wsm_youtube','','yes'),(28050,'wsm_url_misc1','','yes'),(28051,'wsm_url_misc2','','yes'),(28052,'wsm_url_misc3','','yes'),(28053,'wsm_formstack','peter_a_fields_md_dc','yes'),(28054,'wsm_formstack_format','alias','yes'),(28055,'wsm_analytics','','yes'),(28056,'wsm_analytics_library','analytics.js','yes'),(28057,'wsm_source_tracking','','yes'),(28058,'wsm_source_tracking_id','','yes'),(28059,'wsm_subpages',',| in |get_the_title()','yes'),(28060,'wsm_coupon1','','yes'),(28061,'wsm_coupon2','','yes'),(28062,'wsm_coupon3','','yes'),(28063,'wsm_coupon4','','yes'),(28064,'wsm_coupon5','','yes'),(28065,'wsm_disable_updates','','yes'),(28066,'wsm_external_links','','yes'),(28067,'wsm_home_page','','yes'),(28068,'wsm_contact_page','','yes'),(28069,'wsm_blog_page','','yes'),(28070,'wsm_submit','Update Details','yes'),(28176,'wp_mail_smtp_initial_version','1.6.2','no'),(28177,'wp_mail_smtp_version','1.9.0','no'),(28178,'wp_mail_smtp','a:7:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:17:\"info@drfields.com\";s:9:\"from_name\";s:23:\"Peter A. Fields, MD, DC\";s:6:\"mailer\";s:4:\"smtp\";s:11:\"return_path\";b:0;s:16:\"from_email_force\";b:1;s:15:\"from_name_force\";b:0;}s:4:\"smtp\";a:7:{s:7:\"autotls\";b:1;s:4:\"auth\";b:1;s:4:\"host\";s:18:\"smtp.office365.com\";s:10:\"encryption\";s:3:\"tls\";s:4:\"port\";i:587;s:4:\"user\";s:17:\"info@drfields.com\";s:4:\"pass\";s:0:\"\";}s:10:\"sendinblue\";a:1:{s:7:\"api_key\";s:0:\"\";}s:7:\"mailgun\";a:3:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:8:\"sendgrid\";a:1:{s:7:\"api_key\";s:0:\"\";}s:5:\"gmail\";a:2:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";}s:7:\"general\";a:1:{s:29:\"summary_report_email_disabled\";b:1;}}','no'),(28179,'_amn_smtp_last_checked','1576540800','yes'),(28180,'wp_mail_smtp_debug','a:76:{i:0;i:1;i:1;i:2;i:2;i:3;i:3;i:4;i:4;i:5;i:5;i:6;i:6;i:7;i:7;i:8;i:8;i:9;i:9;i:10;i:10;i:11;i:11;i:12;i:12;i:13;i:13;i:14;i:14;i:15;i:15;i:16;i:16;i:17;i:17;i:18;i:18;i:19;i:19;i:20;i:20;i:21;i:21;i:22;i:22;i:23;i:23;i:24;i:24;i:25;i:25;i:26;i:26;i:27;i:27;i:28;i:28;i:29;i:29;i:30;i:30;i:31;i:31;i:32;i:32;i:33;i:33;i:34;i:34;i:35;i:35;i:36;i:36;i:37;i:37;i:38;i:38;i:39;i:39;i:40;i:40;i:41;i:41;i:42;i:42;i:43;i:43;i:44;i:44;i:45;i:45;i:46;i:46;i:47;i:47;i:48;i:48;i:49;i:49;i:50;i:50;i:51;i:51;i:52;i:52;i:53;i:53;i:54;i:54;i:55;i:55;i:56;i:56;i:57;i:57;i:58;i:58;i:59;i:59;i:60;i:60;i:61;i:61;i:62;i:62;i:63;i:63;i:64;i:64;i:65;i:65;i:66;i:66;i:67;i:67;i:68;i:68;i:69;i:69;i:70;i:70;i:71;i:71;i:72;i:72;i:73;i:73;i:74;i:74;i:75;i:75;i:76;}','no'),(28690,'wp_rocket_settings','a:85:{s:12:\"cache_mobile\";i:1;s:19:\"purge_cron_interval\";i:15;s:15:\"purge_cron_unit\";s:14:\"DAY_IN_SECONDS\";s:19:\"minify_google_fonts\";i:1;s:11:\"exclude_css\";a:0:{}s:12:\"critical_css\";s:0:\"\";s:17:\"exclude_inline_js\";a:0:{}s:10:\"exclude_js\";a:0:{}s:17:\"defer_all_js_safe\";i:1;s:16:\"lazyload_iframes\";i:1;s:16:\"lazyload_youtube\";i:1;s:5:\"emoji\";i:1;s:14:\"manual_preload\";i:1;s:8:\"sitemaps\";a:0:{}s:12:\"dns_prefetch\";a:0:{}s:16:\"cache_reject_uri\";a:2:{i:0;s:9:\"/contact/\";i:1;s:61:\"/wp-content/plugins/gravityforms/js/jquery.maskedinput.min.js\";}s:20:\"cache_reject_cookies\";a:0:{}s:15:\"cache_reject_ua\";a:0:{}s:17:\"cache_purge_pages\";a:0:{}s:19:\"cache_query_strings\";a:0:{}s:27:\"automatic_cleanup_frequency\";s:0:\"\";s:10:\"cdn_cnames\";a:0:{}s:8:\"cdn_zone\";a:0:{}s:16:\"cdn_reject_files\";a:0:{}s:24:\"heartbeat_admin_behavior\";s:18:\"reduce_periodicity\";s:25:\"heartbeat_editor_behavior\";s:18:\"reduce_periodicity\";s:23:\"heartbeat_site_behavior\";s:18:\"reduce_periodicity\";s:18:\"cloudflare_api_key\";s:0:\"\";s:16:\"cloudflare_email\";s:0:\"\";s:18:\"cloudflare_zone_id\";s:0:\"\";s:18:\"sucury_waf_api_key\";s:0:\"\";s:12:\"consumer_key\";s:8:\"fe21a8cf\";s:14:\"consumer_email\";s:32:\"webmaster@webstractmarketing.com\";s:10:\"secret_key\";s:8:\"865f5ec5\";s:7:\"license\";s:10:\"1571867480\";s:16:\"secret_cache_key\";s:22:\"5db0cb559bb58589428453\";s:14:\"minify_css_key\";s:22:\"636151bc5db78887753361\";s:13:\"minify_js_key\";s:22:\"636151bc5db80980024759\";s:7:\"version\";s:8:\"3.12.2.1\";s:23:\"cloudflare_old_settings\";s:0:\"\";s:25:\"sitemap_preload_url_crawl\";s:6:\"500000\";s:9:\"cache_ssl\";i:1;s:7:\"do_beta\";i:0;s:17:\"cache_logged_user\";i:0;s:23:\"do_caching_mobile_files\";i:0;s:11:\"minify_html\";i:0;s:10:\"minify_css\";i:0;s:9:\"minify_js\";i:0;s:22:\"minify_concatenate_css\";i:0;s:21:\"minify_concatenate_js\";i:0;s:12:\"defer_all_js\";i:0;s:6:\"embeds\";i:0;s:8:\"lazyload\";i:0;s:20:\"remove_query_strings\";i:0;s:9:\"async_css\";i:0;s:18:\"database_revisions\";i:0;s:20:\"database_auto_drafts\";i:0;s:22:\"database_trashed_posts\";i:0;s:22:\"database_spam_comments\";i:0;s:25:\"database_trashed_comments\";i:0;s:27:\"database_expired_transients\";i:0;s:23:\"database_all_transients\";i:0;s:24:\"database_optimize_tables\";i:0;s:26:\"schedule_automatic_cleanup\";i:0;s:15:\"sitemap_preload\";i:0;s:13:\"do_cloudflare\";i:0;s:18:\"cloudflare_devmode\";i:0;s:24:\"cloudflare_auto_settings\";i:0;s:27:\"cloudflare_protocol_rewrite\";i:0;s:21:\"sucury_waf_cache_sync\";i:0;s:17:\"control_heartbeat\";i:0;s:3:\"cdn\";i:0;s:18:\"varnish_auto_purge\";i:0;s:16:\"async_css_mobile\";i:0;s:8:\"delay_js\";i:0;s:16:\"delay_js_scripts\";a:43:{i:0;s:12:\"getbutton.io\";i:1;s:18:\"/app/js/api.min.js\";i:2;s:67:\"feedbackcompany.com/includes/widgets/feedback-company-widget.min.js\";i:3;s:46:\"snap.licdn.com/li.lms-analytics/insight.min.js\";i:4;s:29:\"static.ads-twitter.com/uwt.js\";i:5;s:31:\"platform.twitter.com/widgets.js\";i:6;s:4:\"twq(\";i:7;s:7:\"/sdk.js\";i:8;s:46:\"static.leadpages.net/leadbars/current/embed.js\";i:9;s:43:\"translate.google.com/translate_a/element.js\";i:10;s:19:\"widget.manychat.com\";i:11;s:21:\"xfbml.customerchat.js\";i:12;s:27:\"static.hotjar.com/c/hotjar-\";i:13;s:27:\"smartsuppchat.com/loader.js\";i:14;s:18:\"grecaptcha.execute\";i:15;s:8:\"Tawk_API\";i:16;s:11:\"shareaholic\";i:17;s:9:\"sharethis\";i:18;s:26:\"simple-share-buttons-adder\";i:19;s:8:\"addtoany\";i:20;s:12:\"font-awesome\";i:21;s:8:\"wpdiscuz\";i:22;s:15:\"cookie-law-info\";i:23;s:8:\"pinit.js\";i:24;s:8:\"/gtag/js\";i:25;s:5:\"gtag(\";i:26;s:7:\"/gtm.js\";i:27;s:5:\"/gtm-\";i:28;s:11:\"fbevents.js\";i:29;s:4:\"fbq(\";i:30;s:33:\"google-analytics.com/analytics.js\";i:31;s:5:\"ga( \'\";i:32;s:4:\"ga(\'\";i:33;s:10:\"ShopifyBuy\";i:34;s:13:\"ft.sdk.min.js\";i:35;s:31:\"apps.elfsight.com/p/platform.js\";i:36;s:27:\"livechatinc.com/tracking.js\";i:37;s:14:\"LiveChatWidget\";i:38;s:27:\"/busting/facebook-tracking/\";i:39;s:5:\"olark\";i:40;s:32:\"pixel-caffeine/build/frontend.js\";i:41;s:31:\"widget.trustpilot.com/bootstrap\";i:42;s:14:\"adsbygoogle.js\";}s:13:\"preload_fonts\";a:0:{}s:16:\"exclude_defer_js\";a:1:{i:0;s:42:\"/jquery-?[0-9.]*(.min|.slim|.slim.min)?.js\";}s:16:\"image_dimensions\";i:0;s:16:\"exclude_lazyload\";a:0:{}s:19:\"delay_js_exclusions\";a:0:{}s:17:\"yoast_xml_sitemap\";i:0;s:17:\"remove_unused_css\";i:0;s:26:\"remove_unused_css_safelist\";a:0:{}s:20:\"preload_excluded_uri\";a:0:{}}','yes'),(28744,'rocket_analytics_notice_displayed','1','yes'),(33543,'admin_email_lifespan','1705433174','yes'),(33544,'db_upgraded','','yes'),(42712,'wpseo_ryte','a:2:{s:6:\"status\";i:1;s:10:\"last_fetch\";i:1600898702;}','yes'),(42728,'iwp_client_backup_tasks','a:1:{s:15:\"backhack_status\";a:2:{s:14:\"adminHistoryID\";i:353945;s:7:\"db_dump\";a:1:{s:5:\"start\";d:1585074635.735691;}}}','yes'),(42770,'_transient_health-check-site-status-result','{\"good\":16,\"recommended\":5,\"critical\":2}','yes'),(42856,'hmbkp_plugin_version','3.13','yes'),(42859,'hmbkp_schedule_1586901034','a:7:{s:11:\"max_backups\";i:7;s:8:\"excludes\";a:0:{}s:4:\"type\";s:8:\"database\";s:12:\"reoccurrence\";s:5:\"daily\";s:19:\"schedule_start_time\";i:1586905200;s:14:\"duration_total\";i:2059686894226;s:16:\"backup_run_count\";i:1255;}','yes'),(42860,'hmbkp_schedule_1586901035','a:8:{s:11:\"max_backups\";i:4;s:8:\"excludes\";a:0:{}s:4:\"type\";s:8:\"complete\";s:12:\"reoccurrence\";s:6:\"weekly\";s:19:\"schedule_start_time\";i:1587438000;s:14:\"duration_total\";i:297030135870;s:16:\"backup_run_count\";i:181;s:5:\"email\";a:1:{s:5:\"email\";s:0:\"\";}}','yes'),(42906,'gf_db_version','2.4.24','no'),(42907,'rg_form_version','2.4.24','no'),(42908,'gform_enable_background_updates','','yes'),(42909,'gform_pending_installation','','yes'),(42910,'widget_gform_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(42911,'gravityformsaddon_gravityformswebapi_version','1.0','yes'),(42912,'gform_version_info','a:10:{s:12:\"is_valid_key\";b:0;s:6:\"reason\";s:16:\"invalid_reseller\";s:7:\"version\";s:6:\"2.7.14\";s:3:\"url\";s:0:\"\";s:15:\"expiration_time\";i:2145916800;s:9:\"offerings\";a:74:{s:12:\"gravityforms\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:6:\"2.7.14\";s:14:\"version_latest\";s:8:\"2.7.14.1\";}s:17:\"gravityforms-beta\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:8:\"2.7-rc-2\";s:14:\"version_latest\";s:8:\"2.7-rc-2\";}s:21:\"gravityforms2checkout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.1\";s:14:\"version_latest\";s:3:\"2.1\";}s:26:\"gravityformsactivecampaign\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";}s:32:\"gravityformsadvancedpostcreation\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";}s:20:\"gravityformsagilecrm\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.4\";s:14:\"version_latest\";s:5:\"1.4.1\";}s:19:\"gravityformsakismet\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:3:\"1.0\";}s:24:\"gravityformsauthorizenet\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:4:\"2.11\";s:14:\"version_latest\";s:4:\"2.11\";}s:18:\"gravityformsaweber\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"4.0.0\";s:14:\"version_latest\";s:5:\"4.0.0\";}s:21:\"gravityformsbatchbook\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";}s:18:\"gravityformsbreeze\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:5:\"1.5.1\";}s:27:\"gravityformscampaignmonitor\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"3.9\";s:14:\"version_latest\";s:5:\"3.9.1\";}s:20:\"gravityformscampfire\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.2.2\";}s:22:\"gravityformscapsulecrm\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.6\";s:14:\"version_latest\";s:5:\"1.6.1\";}s:26:\"gravityformschainedselects\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.6\";s:14:\"version_latest\";s:3:\"1.6\";}s:31:\"gravityformschainedselects-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:12:\"1.0-beta-1.3\";}s:23:\"gravityformscleverreach\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.8\";s:14:\"version_latest\";s:3:\"1.8\";}s:15:\"gravityformscli\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:3:\"1.4\";}s:27:\"gravityformsconstantcontact\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";}s:31:\"gravityformsconversationalforms\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.0.0\";s:14:\"version_latest\";s:5:\"1.0.1\";}s:22:\"gravityformsconvertkit\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:10:\"1.0-beta-1\";}s:19:\"gravityformscoupons\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"3.1\";s:14:\"version_latest\";s:3:\"3.1\";}s:17:\"gravityformsdebug\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:10:\"1.0.beta12\";}s:19:\"gravityformsdropbox\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"3.1\";s:14:\"version_latest\";s:3:\"3.1\";}s:24:\"gravityformsdropbox-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:12:\"2.0-beta-1.1\";}s:24:\"gravityformsemailoctopus\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:5:\"1.2.2\";}s:16:\"gravityformsemma\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:5:\"1.5.2\";}s:22:\"gravityformsfreshbooks\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.8\";s:14:\"version_latest\";s:3:\"2.8\";}s:23:\"gravityformsgeolocation\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.1.0\";s:14:\"version_latest\";s:5:\"1.1.0\";}s:23:\"gravityformsgetresponse\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:5:\"1.7.1\";}s:27:\"gravityformsgoogleanalytics\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.1.0\";s:14:\"version_latest\";s:5:\"2.1.0\";}s:21:\"gravityformsgutenberg\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"1.0-rc-1.4\";s:14:\"version_latest\";s:10:\"1.0-rc-1.5\";}s:21:\"gravityformshelpscout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.1\";s:14:\"version_latest\";s:5:\"2.1.1\";}s:20:\"gravityformshighrise\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";}s:19:\"gravityformshipchat\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";}s:19:\"gravityformshubspot\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.9\";s:14:\"version_latest\";s:3:\"1.9\";}s:20:\"gravityformsicontact\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:5:\"1.5.1\";}s:19:\"gravityformslogging\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";}s:19:\"gravityformsmadmimi\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.4\";s:14:\"version_latest\";s:5:\"1.4.1\";}s:21:\"gravityformsmailchimp\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"5.2\";s:14:\"version_latest\";s:5:\"5.2.1\";}s:19:\"gravityformsmailgun\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";}s:22:\"gravityformsmoderation\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:3:\"1.0\";}s:18:\"gravityformsmollie\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";}s:26:\"gravityformspartialentries\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";}s:18:\"gravityformspaypal\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"3.5\";s:14:\"version_latest\";s:3:\"3.5\";}s:33:\"gravityformspaypalexpresscheckout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";N;}s:29:\"gravityformspaypalpaymentspro\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.7\";s:14:\"version_latest\";s:3:\"2.7\";}s:21:\"gravityformspaypalpro\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"1.8.1\";s:14:\"version_latest\";s:5:\"1.8.4\";}s:20:\"gravityformspicatcha\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";}s:16:\"gravityformspipe\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:5:\"1.3.1\";}s:17:\"gravityformspolls\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"4.1\";s:14:\"version_latest\";s:3:\"4.1\";}s:20:\"gravityformspostmark\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";}s:16:\"gravityformsppcp\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.7.0\";s:14:\"version_latest\";s:5:\"2.7.0\";}s:21:\"gravityformsppcp-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:10:\"2.0-beta-3\";s:14:\"version_latest\";s:10:\"2.0-beta-3\";}s:24:\"gravityformsppcp-release\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.2\";}s:16:\"gravityformsquiz\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"4.1\";s:14:\"version_latest\";s:3:\"4.1\";}s:21:\"gravityformsrecaptcha\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.2.0\";s:14:\"version_latest\";s:5:\"1.2.1\";}s:19:\"gravityformsrestapi\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"2.0-beta-2\";s:14:\"version_latest\";s:10:\"2.0-beta-2\";}s:20:\"gravityformssendgrid\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";}s:21:\"gravityformssignature\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"4.5\";s:14:\"version_latest\";s:3:\"4.5\";}s:17:\"gravityformsslack\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";}s:18:\"gravityformssquare\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"2.0.0\";s:14:\"version_latest\";s:5:\"2.0.0\";}s:18:\"gravityformsstripe\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"5.2.0\";s:14:\"version_latest\";s:5:\"5.2.0\";}s:23:\"gravityformsstripe-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:10:\"5.0-beta-1\";s:14:\"version_latest\";s:10:\"5.0-beta-1\";}s:18:\"gravityformssurvey\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"3.8\";s:14:\"version_latest\";s:3:\"3.8\";}s:18:\"gravityformstrello\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";}s:21:\"gravityformsturnstile\";a:3:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.0.0\";s:14:\"version_latest\";s:5:\"1.0.0\";}s:18:\"gravityformstwilio\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.9\";s:14:\"version_latest\";s:5:\"2.9.1\";}s:28:\"gravityformsuserregistration\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:5:\"5.2.0\";s:14:\"version_latest\";s:5:\"5.2.0\";}s:20:\"gravityformswebhooks\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";}s:18:\"gravityformszapier\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"4.2\";s:14:\"version_latest\";s:5:\"4.2.1\";}s:23:\"gravityformszapier-beta\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:10:\"4.0-beta-2\";s:14:\"version_latest\";s:10:\"4.0-beta-2\";}s:19:\"gravityformszohocrm\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";}s:11:\"gravitysmtp\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:11:\"1.0-alpha-3\";s:14:\"version_latest\";s:11:\"1.0-alpha-3\";}}s:9:\"is_active\";s:1:\"1\";s:12:\"product_code\";s:9:\"GFGODADDY\";s:14:\"version_latest\";s:8:\"2.7.14.1\";s:9:\"timestamp\";i:1695235680;}','no'),(42919,'rg_gforms_key','613a1895d9abc89321ae77da8f576b86','yes'),(42920,'gf_site_key','49ba3ec9-a2dc-43eb-a2dc-0084b44e6548','yes'),(42921,'gf_site_secret','545b7bb0-7684-42b2-81c9-ddad72d3e0ae','yes'),(42922,'rg_gforms_enable_akismet','0','yes'),(42923,'rg_gforms_currency','USD','yes'),(42924,'gform_enable_toolbar_menu','1','yes'),(42978,'rg_gforms_disable_css','','yes'),(42979,'rg_gforms_captcha_public_key','6LeZ5ukUAAAAAKOv3lfz2J5OAI5U6MulNiWo7Czx','yes'),(42980,'rg_gforms_captcha_private_key','6LeZ5ukUAAAAAG9TfBB11k4c1__Ur_XpAVNmDQJp','yes'),(42981,'rg_gforms_captcha_type','checkbox','yes'),(42982,'rg_gforms_message','<!--GFM--><!-- unregistered copy notice -->\r\n<div style=\\\"margin:16px 0 16px 0; border-left:4px solid #AB0400; background-color:#FAFAFA; text-align:center; display:block!important; visibility: visible!important; min-width:880px; box-sizing: border-box;-webkit-box-shadow: 0px 4px 3px 0px rgba(0,0,0,0.05);-moz-box-shadow: 0px 4px 3px 0px rgba(0,0,0,0.05); box-shadow: 0px 4px 3px 0px rgba(0,0,0,0.05);\\\"><a href=\\\"http://www.gravityforms.com/pricing/?utm_source=invalid-key&utm_medium=gf-banner\\\" target=\\\"_blank\\\" style=\\\"width:880px; height:90px;\\\"><img src=\\\"https://gravityforms.s3.amazonaws.com/banners/gravity-forms-unregistered.svg\\\" width=\\\"880\\\" height=\\\"90\\\" alt=\\\"Unlicensed Plugin. Please purchase a Gravity Forms license\\\" title=\\\"Unlicensed Plugin\\\" /></a></div>\r\n<!-- end notice -->','yes'),(43114,'gform_recaptcha_keys_status','1','yes'),(43787,'gform_upload_page_slug','f18d5ce05025321','yes'),(44348,'gform_email_count','1280','yes'),(44573,'duplicate_page_options','a:4:{s:21:\"duplicate_post_status\";s:5:\"draft\";s:23:\"duplicate_post_redirect\";s:7:\"to_list\";s:21:\"duplicate_post_suffix\";s:0:\"\";s:21:\"duplicate_post_editor\";s:7:\"classic\";}','yes'),(46005,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"21.2\";}','yes'),(46221,'gf_previous_db_version','2.4.23','yes'),(46222,'gf_upgrade_lock','','yes'),(46223,'gform_sticky_admin_messages','a:0:{}','yes'),(47296,'gform_enable_noconflict','','yes'),(49735,'action_scheduler_hybrid_store_demarkation','3738','yes'),(49736,'schema-ActionScheduler_StoreSchema','7.0.1693426731','yes'),(49737,'schema-ActionScheduler_LoggerSchema','3.0.1658958144','yes'),(49742,'wp_mail_smtp_migration_version','5','yes'),(49745,'wp_mail_smtp_review_notice','a:2:{s:4:\"time\";i:1591807944;s:9:\"dismissed\";b:0;}','yes'),(49746,'action_scheduler_lock_async-request-runner','1695319313','yes'),(101460,'recovery_mode_email_last_sent','1608500051','yes'),(113762,'rg_gforms_enable_html5','1','yes'),(118259,'disallowed_keys','','no'),(118260,'comment_previously_approved','1','yes'),(118261,'auto_plugin_theme_update_emails','a:0:{}','no'),(118262,'finished_updating_comment_type','1','yes'),(118335,'theme_mods_twentytwenty','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1600901170;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:13:\"custom_html-2\";i:1;s:13:\"custom_html-4\";i:2;s:8:\"search-2\";i:3;s:11:\"tag_cloud-2\";i:4;s:14:\"recent-posts-2\";i:5;s:11:\"tag_cloud-4\";}s:9:\"sidebar-1\";a:1:{i:0;s:13:\"custom_html-3\";}s:9:\"sidebar-2\";a:1:{i:0;s:6:\"text-2\";}}}}','yes'),(118756,'wp_mail_smtp_notifications','a:4:{s:6:\"update\";i:1695250198;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:1:{i:0;s:2:\"29\";}}','yes'),(118765,'emr_news','1','yes'),(179192,'auto_update_core_dev','enabled','yes'),(179193,'auto_update_core_minor','enabled','yes'),(179194,'auto_update_core_major','unset','yes'),(223030,'enable_media_replace','a:4:{s:12:\"replace_type\";s:7:\"replace\";s:17:\"timestamp_replace\";i:2;s:12:\"new_location\";b:0;s:16:\"new_location_dir\";s:7:\"2021/02\";}','no'),(252890,'https_detection_errors','a:0:{}','yes'),(270055,'gf_rest_api_db_version','2.4.24','yes'),(289231,'rewrite_rules','a:161:{s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:45:\"(about)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:28:\"(about)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:10:\"(about)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:48:\"(articles)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:31:\"(articles)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:13:\"(articles)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:63:\"(conditions/chronic-pain)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:46:\"(conditions/chronic-pain)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:28:\"(conditions/chronic-pain)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:50:\"(conditions)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:33:\"(conditions)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:15:\"(conditions)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:85:\"(regenerative-techniques/dextrose-prolotherapy)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:68:\"(regenerative-techniques/dextrose-prolotherapy)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:50:\"(regenerative-techniques/dextrose-prolotherapy)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:60:\"(articles/health-news)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:43:\"(articles/health-news)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:25:\"(articles/health-news)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:67:\"(about/philanthropy/honduras)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"(about/philanthropy/honduras)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"(about/philanthropy/honduras)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:64:\"(articles/magazine-column)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:47:\"(articles/magazine-column)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:29:\"(articles/magazine-column)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:58:\"(about/philanthropy)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:41:\"(about/philanthropy)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:23:\"(about/philanthropy)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:70:\"(articles/prolotherapy-research)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:53:\"(articles/prolotherapy-research)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:35:\"(articles/prolotherapy-research)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:73:\"(articles/regenerative-orthopedics)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:56:\"(articles/regenerative-orthopedics)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:38:\"(articles/regenerative-orthopedics)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:63:\"(regenerative-techniques)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:46:\"(regenerative-techniques)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:28:\"(regenerative-techniques)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:66:\"(conditions/sports-injuries)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:49:\"(conditions/sports-injuries)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:31:\"(conditions/sports-injuries)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:62:\"(about/the-athletic-doc)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:45:\"(about/the-athletic-doc)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:27:\"(about/the-athletic-doc)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:53:\"(uncategorized)/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:36:\"(uncategorized)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:18:\"(uncategorized)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:14:\"category/(.+)$\";s:45:\"index.php?wpseo_category_redirect=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:35:\"iwp_log/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"iwp_log/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"iwp_log/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"iwp_log/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"iwp_log/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"iwp_log/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"iwp_log/([^/]+)/embed/?$\";s:40:\"index.php?iwp_log=$matches[1]&embed=true\";s:28:\"iwp_log/([^/]+)/trackback/?$\";s:34:\"index.php?iwp_log=$matches[1]&tb=1\";s:36:\"iwp_log/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?iwp_log=$matches[1]&paged=$matches[2]\";s:43:\"iwp_log/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?iwp_log=$matches[1]&cpage=$matches[2]\";s:32:\"iwp_log/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?iwp_log=$matches[1]&page=$matches[2]\";s:24:\"iwp_log/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"iwp_log/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"iwp_log/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"iwp_log/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"iwp_log/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"iwp_log/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:41:\"index.php?&page_id=2109&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:31:\".+?/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\".+?/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\".+?/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\".+?/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\".+?/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\".+?/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"(.+?)/([^/]+)/embed/?$\";s:63:\"index.php?category_name=$matches[1]&name=$matches[2]&embed=true\";s:26:\"(.+?)/([^/]+)/trackback/?$\";s:57:\"index.php?category_name=$matches[1]&name=$matches[2]&tb=1\";s:46:\"(.+?)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]\";s:41:\"(.+?)/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]\";s:34:\"(.+?)/([^/]+)/page/?([0-9]{1,})/?$\";s:70:\"index.php?category_name=$matches[1]&name=$matches[2]&paged=$matches[3]\";s:41:\"(.+?)/([^/]+)/comment-page-([0-9]{1,})/?$\";s:70:\"index.php?category_name=$matches[1]&name=$matches[2]&cpage=$matches[3]\";s:30:\"(.+?)/([^/]+)(?:/([0-9]+))?/?$\";s:69:\"index.php?category_name=$matches[1]&name=$matches[2]&page=$matches[3]\";s:20:\".+?/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:30:\".+?/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:50:\".+?/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\".+?/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\".+?/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:26:\".+?/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:33:\"(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:14:\"(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:26:\"(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:33:\"(.+?)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&cpage=$matches[2]\";s:8:\"(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";}','yes'),(566809,'iwp_mu_plugin_version','1.0.1','yes'),(566810,'iwp_client_activate_key','4e1ab32523d7831a10f94629fb19c8f631380096','yes'),(566811,'iwp_client_all_plugins_history','a:10:{s:35:\"backupwordpress/backupwordpress.php\";s:4:\"3.13\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.3\";s:25:\"wc-gallery/wc-gallery.php\";s:4:\"1.67\";s:29:\"gravityforms/gravityforms.php\";s:6:\"2.4.24\";s:45:\"wsm-website-settings/wsm-website-settings.php\";s:3:\"2.2\";s:27:\"wp-pagenavi/wp-pagenavi.php\";s:6:\"2.94.1\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"3.9.0\";s:23:\"wp-rocket/wp-rocket.php\";s:8:\"3.12.2.1\";s:39:\"wp-video-lightbox/wp-video-lightbox.php\";s:6:\"1.9.10\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"21.2\";}','yes'),(566812,'iwp_client_all_themes_history','a:3:{s:8:\"Drfields\";s:3:\"1.0\";s:17:\"twentytwentythree\";s:3:\"1.2\";s:15:\"twentytwentytwo\";s:3:\"1.4\";}','yes'),(566813,'iwp_client_wp_version_old','6.3','yes'),(566815,'iwp_client_public_key','LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUF4aXlwa2doZ2dieFFBUHFKZ2I2YgprUUlzQmVmcnlZV3FTUTd2eFFEUGtXRGhtZDl1Sy9PUnVzcUFON3lqVWw1RFRJazdXWVg2KzhGdWpzMG81T2ZYCnZlK1Zsd3Z4REVuUndWeGNkQ0h2R1lFTXpEZ1gwNEdoemVQWWpobGlzMzN3dlUzVmZzN1FqeEx3R0xVQk52VlQKYmFJV0M5UDR0YTFoY1dRUmhGLzd0WFB0anN3SWJjdFlERWlvb09OVVdBK091b1RsbTNSbzI4MkJhck56U3lCVApWbytWOUxabFE2MlpqL1EyMjJMU09XQ2RpSjZDSHFvcWt4SWtsY2tMT0tOdGVrQ1Q0RThTOWNYM1ZNYTMyeXB2CmhNL3hMNkJjL0lXOTkrOE0zSTRXTXBKR1NxYmxWc2NxTStmUHhZNVZPVnBKK2J6NXVaTERUOUt2azZGNnhlYVMKK1FJREFRQUIKLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0tCg==','yes'),(566816,'iwp_client_action_message_id','238214','yes'),(566817,'is_save_activity_log','1','yes'),(566823,'iwp_client_brand','a:8:{s:4:\"name\";s:17:\"Website Connector\";s:4:\"desc\";s:98:\"Connects your site to our WordPress manager to update, protect, backup, and maintain your website.\";s:6:\"author\";s:9:\"Webstract\";s:10:\"author_url\";s:91:\"https://www.webstract.com/?utm_source=wordpress&utm_medium=referral&utm_campaign=infinitewp\";s:4:\"hide\";N;s:10:\"hideFWPCPB\";i:0;s:12:\"doChangesCPB\";s:1:\"1\";s:14:\"hideUpdatesCPB\";i:0;}','yes'),(566829,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(566831,'wp_force_deactivated_plugins','a:0:{}','yes'),(566832,'user_count','3','no'),(566848,'wpr_rucss_used_css_version','20220920','yes'),(566889,'category_children','a:5:{i:4;a:2:{i:0;i:3;i:1;i:19;}i:17;a:1:{i:0;i:18;}i:20;a:2:{i:0;i:21;i:1;i:22;}i:19;a:1:{i:0;i:23;}i:30;a:4:{i:0;i:32;i:1;i:33;i:2;i:34;i:3;i:35;}}','yes'),(574875,'wp_calendar_block_has_published_posts','1','yes'),(591015,'wc_gallery_current_version','1.67','yes'),(591016,'wc_gallery_icon_size_w','48','yes'),(591017,'wc_gallery_icon_size_h','48','yes'),(591018,'wc_gallery_icon_crop','1','yes'),(591019,'wc_gallery_icon_enable','1','yes'),(591020,'wc_gallery_square_size_w','300','yes'),(591021,'wc_gallery_square_size_h','300','yes'),(591022,'wc_gallery_square_crop','1','yes'),(591023,'wc_gallery_square_enable','1','yes'),(591024,'wc_gallery_small_size_w','250','yes'),(591025,'wc_gallery_small_size_h','9999','yes'),(591026,'wc_gallery_small_enable','1','yes'),(591027,'wc_gallery_standard_size_w','550','yes'),(591028,'wc_gallery_standard_size_h','9999','yes'),(591029,'wc_gallery_standard_enable','1','yes'),(591030,'wc_gallery_big_size_w','800','yes'),(591031,'wc_gallery_big_size_h','9999','yes'),(591032,'wc_gallery_big_enable','1','yes'),(591033,'wc_gallery_fixedheightsmall_size_w','9999','yes'),(591034,'wc_gallery_fixedheightsmall_size_h','180','yes'),(591035,'wc_gallery_fixedheightsmall_enable','1','yes'),(591036,'wc_gallery_fixedheightmedium_size_w','9999','yes'),(591037,'wc_gallery_fixedheightmedium_size_h','300','yes'),(591038,'wc_gallery_fixedheightmedium_enable','1','yes'),(591039,'wc_gallery_fixedheight_size_w','9999','yes'),(591040,'wc_gallery_fixedheight_size_h','500','yes'),(591041,'wc_gallery_fixedheight_enable','1','yes'),(591042,'wc_gallery_carouselsmall_size_w','210','yes'),(591043,'wc_gallery_carouselsmall_size_h','150','yes'),(591044,'wc_gallery_carouselsmall_crop','1','yes'),(591045,'wc_gallery_carouselsmall_enable','1','yes'),(591046,'wc_gallery_carousel_size_w','400','yes'),(591047,'wc_gallery_carousel_size_h','285','yes'),(591048,'wc_gallery_carousel_crop','1','yes'),(591049,'wc_gallery_carousel_enable','1','yes'),(591050,'wc_gallery_slider_size_w','1100','yes'),(591051,'wc_gallery_slider_size_h','500','yes'),(591052,'wc_gallery_slider_crop','1','yes'),(591053,'wc_gallery_slider_enable','1','yes'),(591054,'wc_gallery_enable_gallery_css','1','yes'),(591055,'wc_gallery_enable_image_popup','1','yes'),(593749,'_transient_rocket_preload_complete','60','yes'),(593750,'_transient_rocket_preload_complete_time','July 27, 2022 @ 9:43 pm','yes'),(593752,'wp_mail_smtp_debug_events_db_version','1','yes'),(593767,'gf_dismissed_upgrades','a:1:{i:0;s:5:\"2.6.4\";}','yes'),(595033,'wp_mail_smtp_lite_sent_email_counter','939','yes'),(595034,'wp_mail_smtp_lite_weekly_sent_email_counter','a:12:{i:13;i:14;i:14;i:36;i:15;i:14;i:16;i:16;i:17;i:10;i:18;i:10;i:19;i:10;i:20;i:10;i:21;i:20;i:22;i:18;i:23;i:14;i:24;i:12;}','yes'),(669271,'wpr_rocket_cache_version','20220818','yes'),(669351,'wp_rocket_hide_deactivation_form','1','yes'),(669353,'action_scheduler_migration_status','complete','yes'),(874642,'can_compress_scripts','1','yes'),(886657,'auto_update_plugins','a:7:{i:0;s:19:\"iwp-client/init.php\";i:1;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";i:2;s:27:\"wp-pagenavi/wp-pagenavi.php\";i:3;s:24:\"wordpress-seo/wp-seo.php\";i:10;s:35:\"backupwordpress/backupwordpress.php\";i:11;s:33:\"classic-editor/classic-editor.php\";i:12;s:39:\"wp-video-lightbox/wp-video-lightbox.php\";}','no'),(888334,'_site_transient_timeout_browser_12cff7c401b241581c1f347ece73543d','1695426732','no'),(888335,'_site_transient_browser_12cff7c401b241581c1f347ece73543d','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"116.0.0.0\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(888439,'_site_transient_timeout_browser_22210ca73bf1af2ec2eace74a96ee356','1695440912','no'),(888440,'_site_transient_browser_22210ca73bf1af2ec2eace74a96ee356','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"117.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(889651,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1695286889;s:7:\"checked\";a:3:{s:8:\"Drfields\";s:3:\"1.0\";s:17:\"twentytwentythree\";s:3:\"1.2\";s:15:\"twentytwentytwo\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:2:{s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.2.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.4.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(889652,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.3.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.3.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.3.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.3.1-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.3.1-partial-0.zip\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.3.1\";s:7:\"version\";s:5:\"6.3.1\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:3:\"6.3\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.3.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.3.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.3.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.3.1-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.3.1-partial-0.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.3.1-rollback-0.zip\";}s:7:\"current\";s:5:\"6.3.1\";s:7:\"version\";s:5:\"6.3.1\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:3:\"6.3\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1695287650;s:15:\"version_checked\";s:3:\"6.3\";s:12:\"translations\";a:0:{}}','no'),(890128,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1695286889;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:7:{s:35:\"backupwordpress/backupwordpress.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/backupwordpress\";s:4:\"slug\";s:15:\"backupwordpress\";s:6:\"plugin\";s:35:\"backupwordpress/backupwordpress.php\";s:11:\"new_version\";s:4:\"3.13\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/backupwordpress/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/backupwordpress.3.13.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/backupwordpress/assets/icon-256x256.jpg?rev=1105225\";s:2:\"1x\";s:68:\"https://ps.w.org/backupwordpress/assets/icon-128x128.png?rev=1105225\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/backupwordpress/assets/banner-1544x500.jpg?rev=904756\";s:2:\"1x\";s:69:\"https://ps.w.org/backupwordpress/assets/banner-772x250.jpg?rev=904756\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.9\";}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:19:\"iwp-client/init.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/iwp-client\";s:4:\"slug\";s:10:\"iwp-client\";s:6:\"plugin\";s:19:\"iwp-client/init.php\";s:11:\"new_version\";s:6:\"1.12.3\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/iwp-client/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/iwp-client.1.12.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/iwp-client/assets/icon-256x256.png?rev=1132008\";s:2:\"1x\";s:63:\"https://ps.w.org/iwp-client/assets/icon-128x128.png?rev=1132008\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:64:\"https://ps.w.org/iwp-client/assets/banner-772x250.png?rev=536142\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.1\";}s:27:\"wp-pagenavi/wp-pagenavi.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/wp-pagenavi\";s:4:\"slug\";s:11:\"wp-pagenavi\";s:6:\"plugin\";s:27:\"wp-pagenavi/wp-pagenavi.php\";s:11:\"new_version\";s:6:\"2.94.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-pagenavi/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-pagenavi.2.94.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:55:\"https://ps.w.org/wp-pagenavi/assets/icon.svg?rev=977997\";s:3:\"svg\";s:55:\"https://ps.w.org/wp-pagenavi/assets/icon.svg?rev=977997\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-pagenavi/assets/banner-1544x500.jpg?rev=1206758\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-pagenavi/assets/banner-772x250.jpg?rev=1206758\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.2\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"3.9.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.3.9.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.jpg?rev=2811094\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.jpg?rev=2811094\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:39:\"wp-video-lightbox/wp-video-lightbox.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:31:\"w.org/plugins/wp-video-lightbox\";s:4:\"slug\";s:17:\"wp-video-lightbox\";s:6:\"plugin\";s:39:\"wp-video-lightbox/wp-video-lightbox.php\";s:11:\"new_version\";s:6:\"1.9.10\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/wp-video-lightbox/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-video-lightbox.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/wp-video-lightbox/assets/icon-128x128.png?rev=981252\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/wp-video-lightbox/assets/banner-772x250.png?rev=1803645\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"21.2\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.21.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"6.2\";}}s:7:\"checked\";a:11:{s:35:\"backupwordpress/backupwordpress.php\";s:4:\"3.13\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.3\";s:25:\"wc-gallery/wc-gallery.php\";s:4:\"1.67\";s:29:\"gravityforms/gravityforms.php\";s:6:\"2.4.24\";s:19:\"iwp-client/init.php\";s:6:\"1.12.3\";s:45:\"wsm-website-settings/wsm-website-settings.php\";s:3:\"2.2\";s:27:\"wp-pagenavi/wp-pagenavi.php\";s:6:\"2.94.1\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"3.9.0\";s:23:\"wp-rocket/wp-rocket.php\";s:8:\"3.12.2.1\";s:39:\"wp-video-lightbox/wp-video-lightbox.php\";s:6:\"1.9.10\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"21.2\";}}','no'),(890535,'_transient_timeout_wpseo_total_unindexed_post_type_archives','1695263208','no'),(890536,'_transient_wpseo_total_unindexed_post_type_archives','0','no'),(890537,'_transient_timeout_wpseo_total_unindexed_general_items','1695263208','no'),(890538,'_transient_wpseo_total_unindexed_general_items','0','no'),(890539,'_transient_timeout_wpseo_unindexed_post_link_count','1695263208','no'),(890540,'_transient_wpseo_unindexed_post_link_count','0','no'),(890541,'_transient_timeout_wpseo_unindexed_term_link_count','1695263208','no'),(890542,'_transient_wpseo_unindexed_term_link_count','0','no'),(890543,'_site_transient_timeout_browser_3357fadb0316939352bbdd4d5360a97f','1695781608','no'),(890544,'_site_transient_browser_3357fadb0316939352bbdd4d5360a97f','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"116.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(890545,'_site_transient_timeout_php_check_8fa879a52057541fd4d02aa80888ea2b','1695781608','no'),(890546,'_site_transient_php_check_8fa879a52057541fd4d02aa80888ea2b','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(891034,'_site_transient_timeout_browser_ba27381b33c24b239bc60ccab1aaa8d4','1695842139','no'),(891035,'_site_transient_browser_ba27381b33c24b239bc60ccab1aaa8d4','a:10:{s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:6:\"14.1.2\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.apple.com/safari/\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/safari.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/safari.png?1\";s:15:\"current_version\";s:2:\"11\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(891038,'_transient_timeout_action_scheduler_last_pastdue_actions_check','1695258940','no'),(891039,'_transient_action_scheduler_last_pastdue_actions_check','1695237340','no'),(891044,'_site_transient_timeout_community-events-9311557995e3d87f1910f6b6436962d2','1695280541','no'),(891045,'_site_transient_community-events-9311557995e3d87f1910f6b6436962d2','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"204.154.23.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:43:\"WordPress Houston - No Code App Development\";s:3:\"url\";s:57:\"https://www.meetup.com/houston-wordpress/events/296118706\";s:6:\"meetup\";s:34:\"The Houston WordPress Meetup Group\";s:10:\"meetup_url\";s:41:\"https://www.meetup.com/houston-wordpress/\";s:4:\"date\";s:19:\"2023-10-02 19:00:00\";s:8:\"end_date\";s:19:\"2023-10-02 21:00:00\";s:20:\"start_unix_timestamp\";i:1696291200;s:18:\"end_unix_timestamp\";i:1696298400;s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Houston, TX, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:29.72766299999999972669684211723506450653076171875;s:9:\"longitude\";d:-95.55149000000000114596332423388957977294921875;}}}}','no'),(891046,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1695280542','no'),(891047,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Sep 2023 21:01:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.4-alpha-56633\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WP Briefing: Episode 62: Enterprise Clients and the Business of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wordpress.org/news/2023/09/episode-62-enterprise-clients-and-the-business-of-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Sep 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=15971\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"Join WordPress Executive Director Josepha Haden Chomphosy as she discusses the role WordPress Enterprise plays along with the WordPress community.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://wordpress.org/news/files/2023/09/WPB062.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:16329:\"\n<p>Join WordPress Executive Director Josepha Haden Chomphosy as she discusses the role WordPress Enterprise plays along with the WordPress community.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li>The 2023&nbsp;<a href=\"https://communitysummit.wordcamp.org/2023/\">Community Summit</a>&nbsp;in Washington, DC</li>\n\n\n\n<li><a href=\"https://wordpress.org/enterprise/\">WordPress Enterprise</a></li>\n\n\n\n<li><a href=\"https://beta.nasa.gov/\">NASA Website (beta)</a></li>\n\n\n\n<li><strong>A small list of big things</strong> (SLBT)\n<ul>\n<li><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2023/09/07/evolving-the-fse-outreach-program/\" target=\"_blank\">Evolving the FSE Outreach Program</a>&nbsp;&#8211; With WordPress 6.3 bringing Phase 2 to completion, it’s time for the FSE Outreach Program to evolve alongside the broader WordPress project and needs.</li>\n\n\n\n<li><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2023/08/31/proposal-an-update-to-the-field-guide/\" target=\"_blank\">Proposal: An update to the Field Guide</a>&nbsp;&#8211; This proposal is one step, but not necessarily the only step, at improving communication around WordPress releases and making it easier for WordPress updates to instill confidence.</li>\n\n\n\n<li>We are still looking to receive more&nbsp;<a rel=\"noreferrer noopener\" href=\"https://wordpressdotorg.survey.fm/next-generation-of-wordpress-events\" target=\"_blank\">ideas on the future of WordPress events</a>&nbsp;&#8211; We have brought this up in the past, but there is still time to submit ideas.</li>\n\n\n\n<li><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/support/2023/08/proposal-for-updated-support-guidelines/\" target=\"_blank\">Proposal for updated support guidelines</a> &#8211; As these result from work during WordCamp Us 2023, if you are at the venue and wish to discuss something, please feel free to reach out.</li>\n\n\n\n<li> <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2023/09/05/call-for-testing-performant-translations/\" target=\"_blank\">Call for Testing: Performant Translations</a> &#8211; Provide your feedback; if you encounter any issues or have questions about the plugin, please comment or open a new support topic. In addition to that, <a rel=\"noreferrer noopener\" href=\"https://github.com/swissspidy/performant-translations\" target=\"_blank\">contributions can be made on GitHub</a>.</li>\n\n\n\n<li><a rel=\"noreferrer noopener\" href=\"https://www.eventbrite.com/e/speaker-workshop-for-indian-women-in-the-wordpress-community-sept-23-24-tickets-633636773647\" target=\"_blank\">WordPress Diversity Training</a> &#8211; This is a 2-day workshop for women in India (other countries are welcome to join us, too) who are considering speaking at a WordPress Meetup or WordCamp.</li>\n\n\n\n<li><a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/antelope-valley-wordpress-meetup/events/295817501\" target=\"_blank\">Let&#8217;s talk about WordPress</a>! &#8211; The WordPress Community team is looking for some folks to take the lead in hands-on organizing your Meetups</li>\n\n\n\n<li><a href=\"https://wpincludes.me/\">WP Includes</a></li>\n\n\n\n<li><a href=\"https://www.meetup.com/philadelphia-wordpress-meetup-group/events/296006705\">WordPress Insights</a>: WCUS Recap and WCEU Vision with Ruth Kalinka</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-15971\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello everyone. And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it. And get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>(Intro Music)&nbsp;</p>\n\n\n\n<p>[00:00:29] <strong>Josepha:</strong> In our last episode, we talked about the Community Summit and some trends that I was seeing. I&#8217;ve spent a lot of time since then summarizing the notes from each session, and I was processing notes from the session about aligning WordPress Enterprise and WordPress Community, which is a session that explored the various strengths and weaknesses of WordPress from an enterprise perspective, but especially when it comes to contributing to or communicating about WordPress.</p>\n\n\n\n<p>Now, my vantage point on analyses like these is generally pretty different. Since I work mainly in an operations space for the project, I&#8217;m almost always looking at the health and safety of our ecosystem, product excellence, funding, things like that. So, I especially like to attend sessions that are from the vantage point of people who are much closer to the work than I am.</p>\n\n\n\n<p>[00:01:15] <strong>Josepha:</strong> When I looked at the brainstormed list of things from the session, my first inclination was to catalog the relationships between what we saw as a positive or a negative and the things that we saw as intrinsic to us versus part of the environment. But the more I look at it, the more I see that there&#8217;s confirmation of what I have always known to be true. That WordPress is a valuable starting point for web-based solutions of all sizes and any purpose. Let&#8217;s take a look at some of the biggest themes that shine through from that session. I was able to distill them down to about nine primary themes, but I especially want to focus on some that come up year after year in talking with our community.</p>\n\n\n\n<p>[00:01:57] <strong>Josepha:</strong> The first, of course, is the community and ecosystem. If you&#8217;ve listened to this podcast 62 times, then you&#8217;ve heard me say at least like 60 times that the community is what sets us apart from other open source projects. But, I would encourage you to expand that understanding to include the ecosystem that the community provides.</p>\n\n\n\n<p>The community not only helps to plan and create WordPress, our primary software, but it also makes it distributable through the Polyglots team and Accessibility and Docs and Training. It also makes it extendable through plugins and themes and all of the work that goes into reviewing plugins and themes and the support that&#8217;s provided to people who come to the WordPress.org site, trying to figure out how to make this thing work for them.</p>\n\n\n\n<p>And we also, this community, make it knowable, not only through the community part with our event series but also in marketing and the videos that we provide on WordPress TV and all of the training and learning cohorts that we provide on learn.WordPress.org, all of those teams make WordPress learnable and knowable and easy to use and usable to more people and available across the world, regardless of whether you speak English or not. And so yeah, the community and the ecosystem are some of the things that makes WordPress valuable for enterprise, but also WordPress valuable in general. </p>\n\n\n\n<p>[00:03:24] <strong>Josepha:</strong> The second is the software&#8217;s usability and flexibility. I said at WordCamp US that we exist for as long as people want to use our software, and that&#8217;s a funny little two-sided coin for us. WordPress remains very usable for folks who come to it in the same way that I came to it, which is as a user who is trying to accomplish a goal unrelated to WordPress. I didn&#8217;t start using WordPress because I wanted to figure out how WordPress worked or because I wanted to figure out how to contribute to WordPress. I came to WordPress because I was trying to market something, and WordPress was the best choice for that. But it&#8217;s also flexible for our brilliant developers out there who are doing things like building a suite of sites for NASA or creating bespoke social networks. So, our usability and flexibility, both of those things working together, are certainly one of the things that make me know that WordPress is incredibly valuable for anyone who needs to use it.</p>\n\n\n\n<p>[00:04:22] <strong>Josepha:</strong> But the final thing is WordPress&#8217;s longevity or our resilience. So, I used to work at a marketing agency that served enterprise-level clients. And any time we pitched a new site build to a client, one of the main elements of discussion during decision-making was how long the decision would last. Do you want a page that you can launch in a day, run a six-week campaign through, and then abandon it forever? Or do you want a site that can take up to six weeks to build but can be yours to refine and hone for years after that? I know this seems like a silly example, but when you&#8217;re looking at the potential for a long-term bet, what you&#8217;re worried about, what you&#8217;re asking is, is this a software trusted in my industry? Is it time-tested by those companies I aspire to be? Is the available workforce composed of seasoned professionals or flash-in-the-pan peddlers of the latest craze? And of that workforce, how many will still be doing this in five years? </p>\n\n\n\n<p>The question of how long we&#8217;ve been doing this and why it matters that WordPress has been here for 20 years and has no intention of going anywhere should be so much higher on everyone&#8217;s list of reasons to use this software. Yes, the WordPress software is powerful enough to be everything you might want it to be someday, but the WordPress ecosystem brought to us by this community has shown resilience through major breaking changes in 2008, 2016, 2018, 2020, and probably a lot of things between there that we have forgotten. So, if I were hoping to hedge my bets on a long-term solution, I would absolutely place those bets on this community, this ecosystem, and this software.&nbsp;</p>\n\n\n\n<p>(Music interlude)&nbsp;</p>\n\n\n\n<p>[00:06:17] <strong>Josepha:</strong>&nbsp;</p>\n\n\n\n<p>And now, it&#8217;s time for our small list of big things. I actually have a very big list today, so I&#8217;m just gonna break it out into two chunks. The first chunk is that we actually have a lot of calls for feedback and testing right now. We have six calls for feedback and testing that I really could use your input on.</p>\n\n\n\n<p>The first one is that we still are having that discussion about how to evolve the FSE outreach program. That program started as a way to get faster, more fluid user feedback, specifically about full site editing inside Gutenberg. But there is a question now about where it needs to exist, how it&#8217;s serving current project needs, and what the future project needs will be. And so stop by that one. That should be a good, lively discussion.&nbsp;</p>\n\n\n\n<p>[00:07:06] <strong>Josepha:</strong> Speaking of discussions that are lively, we also have an update to the field guide. We have a proposed update to the field guide. This is not something that we&#8217;re looking to put in place for WordPress 6.4, just because that is coming so quickly. But it is something that we want to look at for future iterations of the field guide that come out with every major release. We want to make sure that we&#8217;re getting valuable information to the right people at the right time without having so much that it&#8217;s overwhelming but also without having so little that we miss really important things.&nbsp;</p>\n\n\n\n<p>[00:07:47] <strong>Josepha:</strong> There is another request for feedback, which is about additional ideas on the future of WordPress events. I brought this up in the past. I think I mentioned it on one other small list of big things, but there&#8217;s still time. So, if you&#8217;ve been shy about sharing your ideas, let this be your sign to get brave. Go share your thoughts on what events of the future should be for us.&nbsp;</p>\n\n\n\n<p>[00:08:03] <strong>Josepha:</strong> There&#8217;s also a proposal for updated support guidelines. This proposal comes out of a discussion that was had at WordCamp US, and so there is a summary of the discussion and then also the proposal that&#8217;s out there. I think that for all guidelines like this, support guidelines, and probably all things that require some review from ourselves, we always could stand to take a look at where those are, what brought us to where we are today, and what we can use to be better and more current in our client&#8217;s needs and our customers needs users needs as we are looking through those guidelines I think that the deadline for feedback on that is around the middle of September as well.&nbsp;</p>\n\n\n\n<p>[00:08:47] <strong>Josepha:</strong> And then the final bit of feedback/call for testing is on performant translations. That is a testing call for feedback. Contributions to that can be made on GitHub as well if that&#8217;s something where you test it and you immediately know how to offer some patches to make things better. That&#8217;s great, but you can always just leave your feedback in a comment or a new support topic.&nbsp;</p>\n\n\n\n<p>[00:09:19] <strong>Josepha:</strong> Okay, so that was the first chunk of the small list of big things. We have the second chunk of the small list of big things, which is to say that if all of that was new to you and sounds a little bit daunting and, you need some support to get started. There are also a couple of kind of group things that you can do in the coming weeks to get you started on that.&nbsp;</p>\n\n\n\n<p>There is a new WordPress diversity training session that&#8217;s happening. It&#8217;s a two-day workshop for women, specifically in India, but other countries are welcome to join us, too. We&#8217;ll be thinking about how to pull together your first presentation proposal, I believe.</p>\n\n\n\n<p>The next one is that the WordPress community team is looking for folks to learn more about organizing meetups. And so, I&#8217;ll include a link to that in the show notes as well, but if you&#8217;ve never done this before and that did not sound like a getting started thing, trust me, organizing meetups not only is something that is easy to do because it&#8217;s kind of casual, you can get people together like in a coffee shop to talk about WordPress, but also the team over there has excellent onboarding. And so give it a try; at the very least, give it a read.&nbsp;</p>\n\n\n\n<p>The third thing on that set of things is that there&#8217;s a new group called WP Includes working to pair women in the WordPress community with one another for support and advice along their career paths. I will include a link to that in the show notes as well.</p>\n\n\n\n<p>And then the final thing is that there is a meetup event that&#8217;s focused on flagship events coming up on September 21st. It will recap WordCamp US and host an open discussion for ideas for WordCamp Europe as well. Like I said, that&#8217;s going to take place on September 21st. I will include a link to that in the show notes as well.</p>\n\n\n\n<p>[00:11:04] <strong>Josepha:</strong> If you don&#8217;t know where the show notes are, if you, sorry, if you&#8217;re listening to this on, like, Pocketcasts or Spotify or any other thingy, and you don&#8217;t know what I mean when I say the show notes, and you&#8217;ve literally never seen them in your life. You can go to WordPress.org/news/podcast, and there are transcripts and show notes with every podcast I put up, and that&#8217;s what I mean when I say that. WordPress.org/news/podcast, and then you get a bunch of links. It&#8217;ll be great.&nbsp;</p>\n\n\n\n<p>That, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.<br></p>\n\n\n\n<p>(Outro music)</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15971\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Openverse Wins the 2023 OEG Open Infrastructure Award\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wordpress.org/news/2023/09/openverse-wins-the-2023-oeg-open-infrastructure-award/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Sep 2023 18:04:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:6:\"Awards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"award\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15967\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:403:\"WordPress is excited to announce that Openverse has been awarded the 2023 Open Education Award for Excellence in the Open Infrastructure category! The Open Education Awards for Excellence, organized by the non-profit organization Open Education Global (OEG), celebrate people, resources, and initiatives that have significantly contributed to the open education field and community. This year, [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Madison Swain-Bowden\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3017:\"\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" fetchpriority=\"high\" width=\"1800\" height=\"1013\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/09/openverse-image.png?resize=1800%2C1013&#038;ssl=1\" alt=\"\" class=\"wp-image-15959\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/09/openverse-image.png?w=1800&amp;ssl=1 1800w, https://i0.wp.com/wordpress.org/news/files/2023/09/openverse-image.png?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/09/openverse-image.png?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/09/openverse-image.png?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/09/openverse-image.png?resize=1536%2C864&amp;ssl=1 1536w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>WordPress is excited to announce that <a href=\"https://openverse.org/\">Openverse</a> has been awarded the <a href=\"https://awards.oeglobal.org/awards/2023/open-infrastructure/openverse/\"><strong>2023 Open Education Award for Excellence</strong></a> in the <strong>Open Infrastructure</strong> category!</p>\n\n\n\n<p>The Open Education Awards for Excellence, organized by the non-profit organization <a href=\"https://www.oeglobal.org/\">Open Education Global (OEG)</a>, celebrate people, resources, and initiatives that have significantly contributed to the open education field and community. This year, they received 172 nominations across 16 award categories, representing individuals and projects from 38 countries.</p>\n\n\n\n<p>This award honors Openverse&#8217;s work to make it easy for everyone to discover and use open educational resources. The award reviewers were particularly impressed by <strong>Openverse&#8217;s <a href=\"https://twitter.com/WordPress/status/1514349743144685577\">one-click attribution feature</a></strong>. Moreover, they highlighted the tool’s ability to filter searches by source collections and other parameters, such as image orientation and specific license, which they noted “provides seekers of open content important affordances to find clearly licensed media they can reuse.”&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><em>“This is an exceptional search engine for the open education community. The one click attribution copy for images makes attribution very straight-forward and easy, even for novice users. The design is excellent; the results are returned fast.”</em> </p>\n<cite>Award reviewer for the 2023 OEG Award for Open Infrastructure </cite></blockquote>\n\n\n\n<p>This recognition not only underscores Openverse and WordPress&#8217;s commitment to open content but also celebrates the work of their dedicated contributors, community, and partners in advancing open education and creative works.</p>\n\n\n\n<p><a href=\"https://awards.oeglobal.org/awards/2023/open-infrastructure/openverse/\">Learn more about this Openverse award on the OEG page</a>.</p>\n\n\n\n<p><strong>Congratulations, Openverse!</strong></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15967\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"The Month in WordPress – August 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2023/09/the-month-in-wordpress-august-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Sep 2023 10:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15933\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:410:\"August 2023 marked another exciting chapter in WordPress, with the Community Summit and WordCamp US bringing the community together for meaningful discussions, knowledge sharing, and learning. This month also welcomed the long-awaited WordPress 6.3 release and offered a glimpse of what&#8217;s to come. Let&#8217;s dive into it. Meet WordPress 6.3 “Lionel” WordPress 6.3 &#8220;Lionel&#8221; was [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:13875:\"\n<p>August 2023 marked another exciting chapter in WordPress, with the Community Summit and WordCamp US bringing the community together for meaningful discussions, knowledge sharing, and learning. This month also welcomed the long-awaited WordPress 6.3 release and offered a glimpse of what&#8217;s to come. Let&#8217;s dive into it.</p>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Meet WordPress 6.3 “Lionel”</h2>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/08/lionel/\"><strong>WordPress 6.3 &#8220;Lionel&#8221;</strong></a> was released on August 8, 2023, and named after the acclaimed vibraphonist, pianist, and jazz percussionist Lionel Hampton.</p>\n\n\n\n<p><strong>This major update makes bringing your vision to life with blocks more intuitive and efficient.</strong> Your content, templates, and patterns are now seamlessly integrated into the Site Editor, enabling you to craft every aspect of your online presence within a single location. You can sharpen your designs with new tools, enjoy fine-tuned control over navigation menus, and work faster with the Command Palette. <a href=\"https://wordpress.org/download/releases/6-3/\">Explore what&#8217;s new</a>.</p>\n\n\n\n<p>WordPress 6.3 features over 500 features and enhancements with a continued emphasis on <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">performance</a> and accessibility. This release was made possible by more than 650 contributors from 52 countries.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/6JhJcOLySLY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>While the Site Editor will continue to be enhanced, this release means a significant milestone as <strong>it marks the conclusion of Gutenberg Phase 2</strong>. Take a moment to watch “<a href=\"https://www.youtube.com/watch?v=FcTLMTyD2DU\">Designed with WordPress</a>”—an ode to this remarkable journey worth celebrating.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 6.3.1</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Roadmap to 6.4</h2>\n\n\n\n<p>Contributors are already working on WordPress 6.4, expected to be released on<strong> November 7, 2023</strong>. This release, led by an <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">underrepresented gender release squad</a>, will focus on enhancing different aspects of the WordPress experience while continuing the foundational work for Gutenberg Phase 3. Users can anticipate features like font management and a new default theme, Twenty Twenty-Four.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\"><strong>Twenty Twenty-Four</strong></a> aims to be a versatile theme, featuring a range of templates and patterns specifically designed for three use cases: entrepreneurs and small businesses, photographers and artists, and writers and bloggers.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/08/22/roadmap-to-6-4/\">Check out the 6.4 roadmap post</a> for a tentative preview of expected features.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Two new versions of Gutenberg shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/10/whats-new-in-gutenberg-16-4-9-august/\"><strong>Gutenberg 16.4</strong></a> was released on August 9, 2023. It introduced a new “auto-inserting blocks” experimental feature, a progress bar component that can be used throughout the interface, and block supports for the Footnotes block.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/23/whats-new-in-gutenberg-16-5-23-august/\"><strong>Gutenberg 16.5</strong></a><strong> </strong>shipped on August 23, 2023, and focused on enhancements to the Command Palette and enabling further customization of blocks.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a>Follow the “<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s new in Gutenberg</a>” posts to stay on top of the latest enhancements.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Next generation of WordPress events, WP Admin redesign, and more</h2>\n\n\n\n<ul>\n<li>The Community team has been busy ushering in the next generation of WordPress events. <a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Four pilot events were successfully held</a> in July and August, with another five planned before the end of the year.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff post</a> elaborates on the concepts explored so far to revitalize the WordPress admin experience.</li>\n\n\n\n<li>In response to <a href=\"https://www.european-cyber-resilience-act.com/\">Europe&#8217;s Cyber Resilience Act</a> (CRA), leaders from Drupal, Joomla!, TYPO3, and WordPress <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">co-authored an open letter</a> addressing concerns about the current CRA definitions and terms and the implications for open source projects.</li>\n\n\n\n<li><a href=\"https://wordpress.org/blocks/\">Check out WordPress.org/blocks</a>—A <a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\" data-type=\"link\" data-id=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">new page</a> that explores the power of blocks within WordPress and as a broader framework.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/21/wordpresscs-3-0-0-is-now-available/\">WordPressCS 3.0.0 is now available</a>. This update to the WordPress Coding Standards introduces improvements in accuracy, performance, stability, and compatibility with modern PHP versions.</li>\n\n\n\n<li>The first cohort of the WordPress Contributor Mentorship Program, which aims to help new contributors onboard to Make teams, <a href=\"https://make.wordpress.org/project/2023/08/11/the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program-has-concluded/\">successfully concluded</a> last month.</li>\n\n\n\n<li><a href=\"https://wordpress.org/remembers/\">WordPress Remembers</a> went live in August to honor contributors who left a lasting impact on the project and have since passed away.</li>\n\n\n\n<li>Core team members proposed to <a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">sync Gutenberg code with core earlier in the release cycle</a> to streamline the integration of new features and reduce risks and delays in major release milestones.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/08/11/blue-note-the-second-community-theme-is-released/\">Blue Note</a>, the second block theme born from the Community Themes initiative, is live on the Theme Directory.</li>\n\n\n\n<li>Every month, the Training team works to expand the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> catalog with new courses, tutorials, online workshops, and more. <a href=\"https://make.wordpress.org/updates/2023/09/02/whats-new-on-learn-wordpress-in-august-2023/\">See what’s new</a>.</li>\n\n\n\n<li>Openverse maintainers met in Copenhagen for an exciting exchange with Statens Museum for Kunst (SMK), Denmark’s largest art museum. <a href=\"https://make.wordpress.org/openverse/2023/08/17/cultivating-collaborative-pathways-with-statens-museum-for-kunst-smk/\">Learn about their discussions and collaboration efforts</a> to advance openly licensed works.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Keen to see new WordPress event formats happening in your local community? <a href=\"https://make.wordpress.org/community/2023/08/30/the-nextgen-event-project-your-ideas-your-wordpress-community/\">Get inspired by these creative concepts</a> and <a href=\"https://wordpressdotorg.survey.fm/next-generation-of-wordpress-events\">share your ideas</a>!</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>Core team members <a href=\"https://make.wordpress.org/core/2023/08/31/proposal-an-update-to-the-field-guide/\">suggested updating the WordPress Field Guide</a> by publishing it earlier in the development cycle and introducing a simplified Field Guide on the WordPress Developer Blog. Feedback is open until September 15, 2023.</li>\n\n\n\n<li>Help test the <a href=\"https://make.wordpress.org/core/2023/09/05/call-for-testing-performant-translations/\">new Performant Translations plugin</a>, which aims to make localized WordPress sites faster.</li>\n\n\n\n<li>A new proposal aims to <a href=\"https://make.wordpress.org/support/2023/08/proposal-for-updated-support-guidelines/\">refine and update WordPress’ support guidelines</a>. You can provide your input by October 1, 2023.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/09/06/mobile-team-update-september-6th-2/\">Version 23.2</a> of the WordPress mobile app for iOS and Android is ready for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Training team seeks feedback on the first learning pathways outlined to improve the Learn WordPress educational experience. <a href=\"https://make.wordpress.org/training/2023/08/24/looking-for-feedback-learning-pathway-outlines/\">Share your thoughts by September 15, 2023</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>On August 22-23, a group of WordPress contributors gathered at the <a href=\"https://communitysummit.wordcamp.org/2023/\"><strong>Community Summit</strong></a> to discuss key topics concerning the project. Read the notes from each session and join the conversations at <a href=\"https://make.wordpress.org/summit/\">make.wordpress.org/summit</a>.</li>\n\n\n\n<li>Following the Summit, Washington, D.C. hosted <a href=\"https://us.wordcamp.org/2023/\"><strong>WordCamp US 2023</strong></a> from August 24-26. This event brought together nearly 2,000 attendees for a Contributor Day and two conference days filled with engaging <a href=\"https://www.youtube.com/playlist?list=PL1pJFUVKQ7EQWcZBkBtb9YQlziKJ7nvpv\">sessions</a>, conversations, and <a href=\"https://twitter.com/WordPress/status/1695145857232904260\">open source art</a>. Saturday’s agenda concluded with keynotes by WordPress co-founder Matt Mullenweg and Executive Director Josepha Haden Chomphosy and a subsequent Q&amp;A session. <a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">Check out the event recap for highlights</a>.</li>\n\n\n\n<li>Join #WPDiversity with a free online <a href=\"https://www.eventbrite.com/e/speaker-workshop-for-indian-women-in-the-wordpress-community-sept-23-24-tickets-633636773647\">speaker workshop for Indian women in the WordPress Community</a>. The event will take place on September 23-24, 2023.</li>\n\n\n\n<li>The WordCamp Asia 2024 organizing team opened calls for <a href=\"https://asia.wordcamp.org/2024/call-for-speakers-is-now-open/\">speakers</a>, <a href=\"https://asia.wordcamp.org/2024/volunteer-registrations-are-open/\">volunteers</a>, <a href=\"https://asia.wordcamp.org/2024/call-for-sponsors/\">sponsors</a>, and <a href=\"https://asia.wordcamp.org/2024/call-for-media-partners-is-now-open/\">media partners</a>.</li>\n\n\n\n<li>Be sure to visit <a href=\"https://central.wordcamp.org/schedule/\">WordCamp Central</a> to find out about upcoming WordCamps.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join Josepha Haden Chomphosy in <a href=\"https://wordpress.org/news/2023/09/episode-61-community-summit-all-at-washington-d-c/\">Episode 61 of WP Briefing</a> as she discusses her takeaways from the Community Summit.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this Month in WordPress: <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15933\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WP Briefing: Episode 61: Community, Summit, all at  Washington D.C.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wordpress.org/news/2023/09/episode-61-community-summit-all-at-washington-d-c/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Sep 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=15911\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:168:\"Join WordPress Executive Director Josepha Haden Chomphosy as she discusses the latest from the Community Summit and her takeaways from the 2023 event in Washington, DC.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:62:\"https://wordpress.org/news/files/2023/09/WP-Briefing-061-1.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:17586:\"\n<p>Join WordPress Executive Director Josepha Haden Chomphosy as she discusses the latest from the Community Summit and her takeaways from the 2023 event in Washington, D.C.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production: <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li>The 2023 <a href=\"https://communitysummit.wordcamp.org/2023/\">Community Summit</a> in Washington, DC</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/02/episode-49-everything-you-need-to-know-about-the-community-summit/\">WP Briefing Episode 49</a>: Everything You Need to Know About the Community Summit!</li>\n\n\n\n<li><a href=\"https://href.li/?https://make.wordpress.org/community/2023/05/08/the-next-generation-of-wordcamps/\">The Next Generation of WordCamps</a></li>\n\n\n\n<li><a href=\"https://href.li/?https://make.wordpress.org/community/2023/05/24/idea-generation-next-gen-wordcamps/\">Idea generation: Next Gen WordCamps!</a></li>\n\n\n\n<li><a href=\"https://pressnomics.com/\">PressNomics</a></li>\n\n\n\n<li><a href=\"https://loopconf.io/\">LoopConf</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/\">WordPress Community Summit</a></li>\n\n\n\n<li><strong>A small list of big things</strong>\n<ul>\n<li><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/community/2023/08/23/call-for-ideas-new-features-for-our-nexgen-wp-events-central-page/\" target=\"_blank\">Call for ideas: new features for our NexGen WP events central page</a>&nbsp;&#8211; Open call for ideas to find the most desirable features for a future homepage that would host a list of all NextGen WordPress events. </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Introducing Twenty Twenty-Four</a>&nbsp;&#8211; Announced at Contributor Day, this new theme will be part of the 6.4 release. </li>\n\n\n\n<li>With the release of 6.3 behind us,&nbsp;<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/6-4/\" target=\"_blank\">we are working hard on bringing 6.4</a>&nbsp;to the community. You can get involved with the development of this important release. </li>\n\n\n\n<li>A successful WCUS is behind us, and if you missed the event, we have you covered. <a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">Here is a recap of the event</a>.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-15911\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong>&nbsp;Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro Music)&nbsp;</p>\n\n\n\n<p>[00:00:39] <strong>Josepha:</strong>&nbsp;We are back and catching up from our midyear break. And in true WordPress fashion, we&#8217;re just going to start off running. The WordPress Community Summit happened a couple of weeks ago. I&#8217;ve been talking about it on this podcast for a few months now, but if you&#8217;ve missed it and you want a refresher, go ahead and give episode 49 a listen.</p>\n\n\n\n<p>At the Community Summit, there were 125 people, if I remember correctly. And we covered a wide array of topics that were brought to us directly from the community itself. While the event is small, it is specifically designed for gathering and sharing information. So, I&#8217;ve got some top-level trends that I noticed that I&#8217;m going to share with you all today, as well as just like a reminder of what happens after a Community Summit.</p>\n\n\n\n<p>[00:01:27] <strong>Josepha:</strong>&nbsp;So there are three, maybe four, big trends that I noticed. The first one that I noticed is that we have a lot of discussions right now about contributor acknowledgment. That also, for what it&#8217;s worth, came with an unresolved question around whether acknowledgment and recognition are the same. I don&#8217;t think they are the same.</p>\n\n\n\n<p>But it also was part of a conversation around whether we treat those two things the same. And if they are not the same, should we treat them differently? And et cetera, et cetera, et cetera. For folks who&#8217;ve been around for a bit, you know, that we spent a lot of time working on our contributor recognition a few years back and had really made quite a bit of difference in just reported feelings about how the community felt they were being recognized for their contributions.</p>\n\n\n\n<p>And so a lot of the conversations that we ended up having were around whether or not the project as a whole has changed the way that we provide that recognition or acknowledgment. Or, as an alternative, if the community that is supporting WordPress has changed how they would like to be recognized.</p>\n\n\n\n<p>[00:02:32] <strong>Josepha:</strong>&nbsp;There were also some questions about whether or not making sure that contributors can see their impact. Like they can say, I contributed 10 hours last month, and these are the two things that I got accomplished over there, and that everyone else can see those things too. So, how we can do that more easily while also not having so many metrics and making the metrics so prevalent that we start to close out the people who are truly just doing this for fun.</p>\n\n\n\n<p>Like many of the problems that we have at the Community Summit, this is a bunch of pretty much unsolved mysteries at the moment. But it did; it came up across probably five or six different sessions that I heard about, quite a few that I went to myself, and so contributor acknowledgment and recognition is on our minds again.</p>\n\n\n\n<p>A second thing that I noticed across multiple sessions, and this one honestly is not a surprise at all, is that there were a lot of questions about what the next big thing is after Gutenberg. I always love when people are asking big questions about what comes next because it means that we all still believe that there will be a next.</p>\n\n\n\n<p>[00:03:43] <strong>Josepha:</strong>&nbsp;And so I never hesitate when I hear these questions to give some ideas about what I think might be coming. But a lot of the discussions that we were having were around, we think this is coming, but now that we think this is coming, what should we do now to make sure that we are ready for it? One of the biggest assumptions that we all had is that for the CMS, for the software itself, probably our next big area after Gutenberg is going to be something about artificial intelligence.</p>\n\n\n\n<p>Matt pointed out in his presentation that he has told us twice to learn something deeply. One was in 2016 when he said, learn JavaScript Deeply. And then one was in 2022 when he said to learn AI deeply. And so we all kind of are guessing that that is our future area. And so that&#8217;s an area for everyone to spend some time in. Make sure you understand it. Make sure you know it a bit.&nbsp;</p>\n\n\n\n<p>The second thing that came up as like a future, where are we going here? It was kind of on the business-y side. It was on a lot of questions about enterprise and are we selling properly to enterprise. Can we sell, can we appeal to enterprise? Whose job is it to sell any of these things? Questions like that. So, lots of business questions again. This is not something that I have any concerns about. I&#8217;m very excited to see that people are talking about it. That&#8217;s been a topic of conversation since, I want to say, February of this year. And so it also wasn&#8217;t a surprise inclusion today. And, and I was excited to see, am excited to see what we get out of those conversations over time.&nbsp;</p>\n\n\n\n<p>[00:05:17] <strong>Josepha:</strong>&nbsp;As far as like questions around what&#8217;s next for the community, I&#8217;m going to address that separately because it was a huge question for everyone. So I&#8217;m going to discuss that as soon as we get finished with this chunk about like the big thing that, that is coming after Gutenberg.</p>\n\n\n\n<p>But, from an ecosystem perspective. Like a WordPress project operations perspective, this came up a couple of times. Never in as clear a word, a set of words as that, but the question about, like, what are we doing with our tools? Are we making sure that we are keeping the tools that our contributors use maintained and still in an excellent space with features that are useful and, necessary, and requested?</p>\n\n\n\n<p>And so that is a big question. I do have a lot of questions about that. Also, there are so many tools that I have wanted in order to make organizing the WordPress community better and easier, but also making contributing better and easier. And hopefully, here soon, we have an opportunity to get to some of those.</p>\n\n\n\n<p>[00:06:16] <strong>Josepha:</strong>&nbsp;So, the third big trend that I kept seeing at the Community Summit is actually about the community itself, specifically about events. So I was part of or listened to many, many, many conversations over the course of the week that were specifically focused on what we&#8217;re going to do with the future of our events. Like are meetups still sustainable? Are WordCamps still sustainable? And that&#8217;s from not only the idea of sustainability that we all tend to know from like an ecological standpoint but also, you know, checking in on the resources. So the kinds of questions that folks had were, is it time to continue having many small events, or is it time to move to a few giant events?</p>\n\n\n\n<p>Should we bring back midsized, WP-adjacent events like PressNomics or LoopConf? And if we are bringing those back, do we want to have them be part of a semi-official thing along with a clearly WordPress event and like do joint sales in there? Try to figure out how to get people from one to the other, so that it&#8217;s not just WordPress people that we&#8217;re talking to, but also business people and advanced developers, things like that.</p>\n\n\n\n<p>There was also a lot of discussion about whether or not we have gotten too big, should we double down on our grassroots efforts? Just go all the way back to, like, BarCamp style, WordPress in a forest kind of thing.&nbsp;</p>\n\n\n\n<p>[00:07:46] <strong>Josepha:</strong>&nbsp;And yeah, and among all of these conversations, there were questions about the resources that we need. Do we have what we need now? Do we have plans for how to maintain those resources in the future? Do we have enough time? Do we have enough money? Do we have an expertise? The people? So many questions, so many questions. And on the community side of things, we also had a lot of questions that are routine in open source. Like, do we have a pipeline for future maintainers, for future team reps, for future leaders in the project? All of the questions.&nbsp;</p>\n\n\n\n<p>So, those are the three slash four, depending on how you break it out, really big trends that I saw across the conversation at the Community Summit. And I don&#8217;t necessarily know the answers to all of these things. Like, I know what my gut tells me, I know what I believe the answer to be. From my own perspective, but as you&#8217;ve been told many times with many eyes, all bugs are shallow. And so here is what happens next with a Community Summit. So we&#8217;ve gathered all of these things together. We&#8217;ve had these conversations, and now all of the notes from every conversation that we had will be put on make.wordpress.org/summit.&nbsp;</p>\n\n\n\n<p>[00:09:10] <strong>Josepha:</strong>&nbsp;There, you can do any of the following three things, but at least do one before we get any further. I think it&#8217;s important to remind everyone that no decisions were made at the Community Summit. There are a few things that will come out of the Community Summit where the answer the way forward is really obvious. And so those probably will get done quickly thereafter because it&#8217;s just an obvious thing to do. It makes sense for everyone in the project. It makes sense for everyone who&#8217;s using WordPress. Whatever reason.&nbsp;</p>\n\n\n\n<p>So those things will probably move quickly, but mostly not even mostly there were no decisions made. And so if it looks like something is moving quickly there, it is because it makes sense after the fact. So there&#8217;s that. But the three things that you can do in order to take part in this information gathering and sharing that happened at the Community Summit.&nbsp;</p>\n\n\n\n<p>Number one, head over to make.wordpress.org/summit and just read the notes. There are a lot of them you can pick and choose based on the teams you contribute to or the topics that are specifically interesting. Or if you have been assigned to read one of these things, obviously, go ahead and read that. But find the notes read them. Take a look at the discussion as far as you can tell it happened and get a sense for what the essential question is.</p>\n\n\n\n<p>The second thing that you can do while you&#8217;re there is that you can join in that discussion right there in the comments if you would like to. You can, if you feel like your perspective is not quite accounted for in that, obviously leave some comments and let folks know. But also, if you feel like your perspective was accounted for, but there&#8217;s also a very specific question that was not necessarily answered or not even brought up, share those as well. That&#8217;s stuff that we would like to know as we are working through this.&nbsp;</p>\n\n\n\n<p>And then the third thing that you can do is you can take those conversations, and if there&#8217;s anything that looks like it&#8217;s particularly relevant to your local WordPress community, absolutely take those there and have those conversations with them.</p>\n\n\n\n<p>[00:11:23] <strong>Josepha:</strong>&nbsp;And once you&#8217;ve had those conversations, let us know what you thought also in those comments, or take it directly into your weekly teams&#8217; chat, either way. We want to hear what you think about the questions that were brought because you brought them to us. And so you should have an opportunity to tell us what you think.</p>\n\n\n\n<p>[00:11:39] (Music Interlude)&nbsp;</p>\n\n\n\n<p>[00:11:48] <strong>Josepha:</strong>&nbsp;That brings us now to our small list of big things. My friends, there&#8217;s nothing but big things left for the rest of the year. And so here we go. Number one, uh, I mentioned it quite a bit. There&#8217;s a conversation, an ongoing conversation about the future of events for our community. Right now, there is an open call for ideas, new features for our NextGen WordPress events, especially on the page that exists on WordCamp Central.</p>\n\n\n\n<p>So, we want to find the most useful and desirable features for a future homepage on central.wordcamp.org that would host a list of all of our upcoming WordPress events. And so we want your opinion there. Please let us know what would be especially useful to you as you are looking for WordPress events to attend.</p>\n\n\n\n<p>The second thing is that we introduced 2024, the default theme that is coming with WordPress 6.4, was announced. We have had, I think, 32 contributors to it at the time of this recording. And yeah, it&#8217;s beautiful. It&#8217;s got a lot of different implementation options, a lot of default patterns, and curated patterns so that you can get exactly what you want out of that theme. I think it&#8217;s going to make a great default theme, a great starter theme for our final release of the year.&nbsp;</p>\n\n\n\n<p>And then, speaking of 6.4, with the release of 6.3 behind us, we are working hard on bringing 6.4 to the community. You can get involved with the development of that. There is a core chat every Wednesday. It happens. I want to say at 21:00 UTC, but I don&#8217;t actually know off the top of my head. I just go when my calendar tells me to go, and I live in the central time zone. And so, my UTC conversion is not the best, but we will leave the actual information about that in the show notes so that you can see it. But you can also go over to make.wordpress.org, and then there&#8217;s a little card on that homepage that tells you exactly when those core meetings are, including the new contributor meeting, which happens every two weeks.&nbsp;</p>\n\n\n\n<p>And then the fourth thing is that there is a successful WordCamp US behind us. That is our final flagship event of the year, which is always exciting. If you missed it, for one, we missed you. And for two, we have you covered. We&#8217;ve got a recap of the event. There is a link to that in the show notes as well.&nbsp;</p>\n\n\n\n<p>[00:14:05] <strong>Josepha:</strong> And that, my friends, is your small list of big things. Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p>[00:14:15] (Music Outro)&nbsp;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15911\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 6.3.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/08/wordpress-6-3-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Aug 2023 14:43:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:14:\"minor-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15886\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"WordPress 6.3.1 is available!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5097:\"\n<h2 class=\"wp-block-heading\">WordPress 6.3.1 is now available!</h2>\n\n\n\n<p>This minor release features&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=6.3.1&amp;group=status&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;col=keywords&amp;order=priority\">4 bug fixes in Core</a>&nbsp;and&nbsp;<a href=\"https://github.com/orgs/WordPress/projects/103/\">6 bug fixes for the block editor</a>. You can review a summary of the maintenance updates in this release by reading the&nbsp;<a href=\"https://make.wordpress.org/core/2023/08/23/wordpress-6-3-1-rc1-is-now-available/\">Release Candidate announcement</a>.</p>\n\n\n\n<p>WordPress 6.3.1 is a short-cycle release. The next major release will be&nbsp;<a href=\"https://make.wordpress.org/core/6-4/\">version 6.4</a>&nbsp;planned for November 2023.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can&nbsp;<a href=\"https://wordpress.org/wordpress-6.3.1.zip\">download WordPress 6.3.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information on this release, please&nbsp;<a href=\"https://wordpress.org/support/wordpress-version/version-6-3-1\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by&nbsp;<a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a> and <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, with the help of <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>&nbsp;on mission control, and <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> who worked on Gutenberg backports.</p>\n\n\n\n<p>WordPress 6.3.1 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-medium\" style=\"font-size:18px\"><a href=\'https://profiles.wordpress.org/antonvlasenko/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>antonvlasenko</a>, <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>, <a href=\'https://profiles.wordpress.org/austinginder/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>austinginder</a>, <a href=\'https://profiles.wordpress.org/azaozz/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>azaozz</a>, <a href=\'https://profiles.wordpress.org/dd32/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dd32</a>, <a href=\'https://profiles.wordpress.org/dlh/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dlh</a>, <a href=\'https://profiles.wordpress.org/frankit/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>frankit</a>, <a href=\'https://profiles.wordpress.org/get_dave/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>get_dave</a>, <a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromTonya</a>, <a href=\'https://profiles.wordpress.org/khokansardar/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>khokansardar</a>, <a href=\'https://profiles.wordpress.org/mathsgrinds/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mathsgrinds</a>, <a href=\'https://profiles.wordpress.org/mukesh27/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mukesh27</a>, <a href=\'https://profiles.wordpress.org/peterwilsoncc/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>peterwilsoncc</a>, <a href=\'https://profiles.wordpress.org/presskopp/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>Presskopp</a>, <a href=\'https://profiles.wordpress.org/rajinsharwar/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rajinsharwar</a>, <a href=\'https://profiles.wordpress.org/ravanh/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>RavanH</a>, <a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a>, and <a href=\'https://profiles.wordpress.org/tmatsuur/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>tmatsuur</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac,&nbsp;<a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the&nbsp;<a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C055Y7FKS7N\">#6-4-release-leads</a> channels. Need help? Check out the&nbsp;<a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Thanks to&nbsp;<a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a> for proofreading.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15886\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"The Future of WordPress &amp; What’s Next for Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 27 Aug 2023 04:50:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15879\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:431:\"Nearly 2,000 attendees gathered for two days of keynotes, sessions, and community-building conversations at the Gaylord National Resort &#38; Convention Center in the largest attended WordCamp US ever. Saturday’s sessions concluded with back-to-back keynotes by WordPress co-founder Matt Mullenweg and Executive Director Josepha Haden Chomphosy.  What’s Next for WordPress Josepha launched her keynote by celebrating [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7491:\"\n<p>Nearly 2,000 attendees gathered for two days of keynotes, sessions, and community-building conversations at the Gaylord National Resort &amp; Convention Center in the largest attended WordCamp US ever. Saturday’s sessions concluded with back-to-back keynotes by WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> and Executive Director <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>. </p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s Next for WordPress</h2>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/3OaypzgzAlw?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Josepha launched her keynote by celebrating 20 years of WordPress and reflecting on its journey from a blogging tool to the world&#8217;s most popular community-driven web platform. On WordPress as a platform for empowerment and change, Josepha shared, “The more people that know about WordPress, the more people can access the incredible opportunities that WordPress can provide.” And that sustaining the platform for future generations ensures these opportunities will persist. She added, “We exist for as long as people want to use our software.”</p>\n\n\n\n<p>The community is the key to sustaining WordPress, and Josepha touched on the importance of WordCamps, workshops, and events that create value, promote inclusivity,&nbsp; and spark inspiration. WordPress can be a catalyst for positive change in the life of a contributor, end user, or site builder.</p>\n\n\n\n<p>Concluding her keynote, Josepha asked the audience to think about the story they’d want to tell about themselves and their time in WordPress; and the story they would want WordPress to tell the world.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s Next for Gutenberg</h2>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/EavRd7PtA0Q?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Matt began his keynote with a touch of nostalgia, referring to a comment on his personal blog in 2003 by WordPress Co-founder <a href=\"https://profiles.wordpress.org/mikelittle/\">Mike Little</a>, and then looked ahead to the most recent release, WordPress 6.3. As this year’s largest release, it includes new features such as the Command Palette, a quick way (⌘+k on Mac or Ctrl+k on Windows) to search your site and access common commands.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://wordpress.org/download/releases/6-3/\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"535\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=1024%2C535&#038;ssl=1\" alt=\"WordPress 6.3 Lionel\" class=\"wp-image-15795\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=1024%2C535&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=300%2C157&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=768%2C401&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=1536%2C802&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=2048%2C1070&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>Matt continued, “WordPress never rests, so right around the corner is <a href=\"https://make.wordpress.org/core/6-4/\">WordPress 6.4</a> on Nov 7… with some cool new features.” He shared that 6.4, like 5.6, will be an underrepresented gender-led release. A new default theme, <a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Twenty Twenty-Four</a>, is tailored for entrepreneurs and small businesses, photographers and artists, and writers and bloggers. Additionally, 6.4 will feature integrated font management and Image block options to expand single images for optimal viewing.</p>\n\n\n\n<p>Looking further into the future, Matt highlighted Phase 3 of the Gutenberg project, which will focus on workflows and collaboration, “moving WordPress from a single-player to a multi-player tool.” In that spirit of collaboration, a new <a href=\"https://wordpress.slack.com/archives/C05PY7QLR5F\">#LMS</a> working group will also bring WordPress learning management systems together to improve the web standards for courses and learning content.</p>\n\n\n\n<p>Beyond Phase 3, Matt shared thoughts about what it means to support WordPress many years from now. A new <a href=\"https://wordpress.com/100-year/\">100-Year Plan</a> from WordPress.com is an exploration into long-term planning for your online presence. He encouraged attendees to be inspired by the region&#8217;s history, reflecting on what it would mean to honor the past while anticipating and planning for the future.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Q&amp;A</h2>\n\n\n\n<p>A Q&amp;A session followed the keynotes, with questions submitted by the in-person audience and live stream viewers.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/3Fa0Q-brSeI?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Additional questions will be answered in a future post on <a href=\"https://make.wordpress.org/project/\">make.WordPress.org/project/</a>. Join the <a href=\"https://make.wordpress.org/\">global community making WordPress</a> and be part of our journey toward a brighter future!</p>\n\n\n\n<p><em>Thank you to </em><a href=\"https://profiles.wordpress.org/angelasjin/\"><em>@angelasjin</em></a><em>, </em><a href=\"https://profiles.wordpress.org/bjmcsherry/\"><em>@bmcsherry</em></a><em>, </em><a href=\"https://profiles.wordpress.org/cbringmann/\"><em>@cbringmann</em></a><em>, </em><a href=\"https://profiles.wordpress.org/dansoschin/\"><em>@dansoschin</em></a><em>, and </em><a href=\"https://profiles.wordpress.org/eidolonnight/\"><em>@eidolonnight</em></a><em> for collaborating on this post.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15879\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:64:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WP20 – A Heartfelt Thanks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2023/08/wp20-a-heartfelt-thanks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Aug 2023 14:54:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"WP20\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15471\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:484:\"Earlier this year, WordPressers around the globe united to celebrate 20 years of community and innovation. There were parties, blogs, videos, and social media posts aplenty. And, of course, the trending hashtag, “#WP20”.\n\nThroughout April and May, community members reflected on their journeys - what brought them to WordPress and its personal meaning. The stories, tweets, and videos were inspiring, nostalgic, and even humorous at times. There was swag, and the cakes were epic.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:68:\"https://wordpress.org/news/files/2023/08/wp20-celebrate-animated.mp4\";s:6:\"length\";s:7:\"2964981\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:38216:\"\n<figure class=\"wp-block-video\"><video autoplay controls loop muted src=\"https://wordpress.org/news/files/2023/08/wp20-celebrate-animated.mp4\" playsinline></video></figure>\n\n\n\n<p>Earlier this year, WordPressers around the globe united to celebrate 20 years of community and innovation. There were parties, blogs, videos, and social media posts aplenty. And, of course, the trending hashtag, “#WP20”.</p>\n\n\n\n<p>Throughout April and May, community members reflected on their journeys &#8211; what brought them to WordPress and its personal meaning. The stories, tweets, and videos were inspiring, nostalgic, and even humorous at times. There was swag, and the cakes were epic.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Let’s take a look!</h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-3 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">On WordPress turning 20, and the Audrey Scholars program: <a href=\"https://t.co/Etwh8H6xh4\">https://t.co/Etwh8H6xh4</a></p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1662582800451776512?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">WordPress celebrates 20 years tomorrow. It&#39;s grown from a comment on a blog post to a web spanning phenomenon. Thanks to an outstanding community and the freedoms of Open Source. Happy Birthday, WordPress! <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://t.co/fght4XMJXb\">pic.twitter.com/fght4XMJXb</a></p>&mdash; Mike Little (@mikelittlezed1) <a href=\"https://twitter.com/mikelittlezed1/status/1662013891856027649?ref_src=twsrc%5Etfw\">May 26, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">Look at this cute <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> cake from <a href=\"https://twitter.com/RicksBakery?ref_src=twsrc%5Etfw\">@RicksBakery</a>! <a href=\"https://t.co/f88H3usR5R\">pic.twitter.com/f88H3usR5R</a></p>&mdash; Josepha Haden Chomphosy (@JosephaHaden) <a href=\"https://twitter.com/JosephaHaden/status/1662562362979676162?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"es\" dir=\"ltr\">Tenemos regalitos para los que vengáis esta tarde a la Meetup.<a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/PSPsbWluv7\">pic.twitter.com/PSPsbWluv7</a></p>&mdash; Meetup WordPress Torrelodones (@WPTorrelodones) <a href=\"https://twitter.com/WPTorrelodones/status/1671918091398258688?ref_src=twsrc%5Etfw\">June 22, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">So <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> is turning 20 years old today! <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <br><br>Happy birthday to WordPress and its entire community! from me and <a href=\"https://twitter.com/MariekeRakt?ref_src=twsrc%5Etfw\">@MariekeRakt</a> <a href=\"https://t.co/9N9T0SnsdL\">pic.twitter.com/9N9T0SnsdL</a></p>&mdash; Joost de Valk (@jdevalk) <a href=\"https://twitter.com/jdevalk/status/1662398779360702465?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">Happy 20th birthday, <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a>! Our Cebu meetup was a success! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f382.png\" alt=\"🎂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><br><br>…and our community is growing. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4af.png\" alt=\"💯\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Thanks to <a href=\"https://twitter.com/hashtag/enspaceCebu?src=hash&amp;ref_src=twsrc%5Etfw\">#enspaceCebu</a> for hosting our party! <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://twitter.com/hashtag/WordPressCebu?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPressCebu</a> <a href=\"https://twitter.com/hashtag/WPCebu?src=hash&amp;ref_src=twsrc%5Etfw\">#WPCebu</a> <a href=\"https://t.co/TUFoKjuoxq\">pic.twitter.com/TUFoKjuoxq</a></p>&mdash; Cebu WordPress Meetup (@WPCebu) <a href=\"https://twitter.com/WPCebu/status/1664957630241189888?ref_src=twsrc%5Etfw\">June 3, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">I&#39;m sure you&#39;ve seen by now, but today is WordPress&#39; 20th birthday! Thank you to <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> and <a href=\"https://twitter.com/mikelittlezed1?ref_src=twsrc%5Etfw\">@mikelittlezed1</a> for following through with a seemingly wild idea. I don&#39;t think anyone could have predicted we&#39;d end up where we are today. Happy birthday <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a>! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f389.png\" alt=\"🎉\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/tAZRlYThuS\">pic.twitter.com/tAZRlYThuS</a></p>&mdash; Jon Desrosiers (@desrosj) <a href=\"https://twitter.com/desrosj/status/1662616708064985088?ref_src=twsrc%5Etfw\">May 28, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"de\" dir=\"ltr\">Hier ist der Recap vom letzten Zürcher <a href=\"https://twitter.com/hashtag/WordPress?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://twitter.com/hashtag/Meetup?src=hash&amp;ref_src=twsrc%5Etfw\">#Meetup</a> im <a href=\"https://twitter.com/westhive?ref_src=twsrc%5Etfw\">@westhive</a> inkl. Audioaufzeichnungen und Slides der Präsentationen, sowie ein paar visuellen Eindrücken des Abends. <a href=\"https://twitter.com/hashtag/BBQ?src=hash&amp;ref_src=twsrc%5Etfw\">#BBQ</a> <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/IycEcb4DQL\">https://t.co/IycEcb4DQL</a></p>&mdash; WordPress Zürich (@wpzurich) <a href=\"https://twitter.com/wpzurich/status/1674695261694701568?ref_src=twsrc%5Etfw\">June 30, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"qme\" dir=\"ltr\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><a href=\"https://twitter.com/hashtag/WCEU?src=hash&amp;ref_src=twsrc%5Etfw\">#WCEU</a> <a href=\"https://twitter.com/hashtag/WCEU2023?src=hash&amp;ref_src=twsrc%5Etfw\">#WCEU2023</a> <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/Uodqd2OotM\">pic.twitter.com/Uodqd2OotM</a></p>&mdash; Osom Studio WordPress &amp; WooCommerce Agency (@OSOM_STUDIO) <a href=\"https://twitter.com/OSOM_STUDIO/status/1667524236406145024?ref_src=twsrc%5Etfw\">June 10, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">Celebrating <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> at <a href=\"https://twitter.com/hashtag/WCEU?src=hash&amp;ref_src=twsrc%5Etfw\">#WCEU</a> with <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> <a href=\"https://twitter.com/JosephaHaden?ref_src=twsrc%5Etfw\">@JosephaHaden</a> <a href=\"https://twitter.com/matias_ventura?ref_src=twsrc%5Etfw\">@matias_ventura</a> <a href=\"https://t.co/9LM9HnEfYn\">pic.twitter.com/9LM9HnEfYn</a></p>&mdash; Felix Arntz (@felixarntz) <a href=\"https://twitter.com/felixarntz/status/1667536517705736193?ref_src=twsrc%5Etfw\">June 10, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n</div>\n</div>\n\n\n\n<p>Want to see more tweets? <a href=\"https://wp20.wordpress.net/live/\">Check out the tweet wall here.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Bits &amp; Bytes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wp20.wordpress.net\">Official website for WP20</a></li>\n\n\n\n<li>The #WP20 hashtag was used at least 18,000 times between March 1 and June 8, 2023 on social peaking on May 27 with at least 2,700+ metions</li>\n\n\n\n<li>165+ meetups took place to celebrate WP20</li>\n\n\n\n<li>At least 4,661 people attended a meetup across six continents</li>\n\n\n\n<li>100+ kits of swag were shipped to meetup organizers</li>\n</ul>\n\n\n\n<p>Want more social media for WordPress? Check out the official accounts here:</p>\n\n\n\n<ul>\n<li><a href=\"https://twitter.com/WordPress\">Twitter</a></li>\n\n\n\n<li><a href=\"https://www.instagram.com/wordpress/\">Instagram</a></li>\n\n\n\n<li><a href=\"https://www.facebook.com/WordPress/\">Facebook</a></li>\n\n\n\n<li><a href=\"https://www.linkedin.com/company/wordpress\">LinkedIn</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/wordpress\">YouTube</a></li>\n\n\n\n<li><a href=\"https://www.pinterest.com/WordPress/\">Pinterest</a></li>\n\n\n\n<li><a href=\"https://www.tumblr.com/wordpress\">Tumblr</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Snapshots from WP20 Celebrations</h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-4 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15527\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15527\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"769\" height=\"1024\" data-id=\"15518\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=769%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15518\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=769%2C1024&amp;ssl=1 769w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=768%2C1023&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=1154%2C1536&amp;ssl=1 1154w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?w=1538&amp;ssl=1 1538w\" sizes=\"(max-width: 769px) 100vw, 769px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"768\" height=\"1024\" data-id=\"15523\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=768%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15523\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?w=1536&amp;ssl=1 1536w\" sizes=\"(max-width: 768px) 100vw, 768px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15516\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15516\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?w=1024&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"828\" height=\"1024\" data-id=\"15517\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?resize=828%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15517\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?w=828&amp;ssl=1 828w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?resize=243%2C300&amp;ssl=1 243w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?resize=768%2C950&amp;ssl=1 768w\" sizes=\"(max-width: 828px) 100vw, 828px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15522\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15522\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=1536%2C1152&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?w=2048&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"768\" height=\"1024\" data-id=\"15524\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr.webp?resize=768%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15524\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?resize=1536%2C2048&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?w=1920&amp;ssl=1 1920w\" sizes=\"(max-width: 768px) 100vw, 768px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15519\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15519\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"941\" data-id=\"15525\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=1024%2C941&#038;ssl=1\" alt=\"\" class=\"wp-image-15525\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=1024%2C941&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=300%2C276&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=768%2C706&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=1536%2C1411&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?w=2047&amp;ssl=1 2047w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15520\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15520\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"851\" data-id=\"15521\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=1024%2C851&#038;ssl=1\" alt=\"\" class=\"wp-image-15521\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=1024%2C851&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=300%2C249&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=768%2C638&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=1536%2C1276&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?w=2048&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"769\" data-id=\"15526\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec.webp?resize=1024%2C769&#038;ssl=1\" alt=\"\" class=\"wp-image-15526\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=1024%2C769&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=768%2C577&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=1536%2C1154&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=2048%2C1538&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n</figure>\n\n\n\n<h2 class=\"wp-block-heading\">Props</h2>\n\n\n\n<p>WP20 celebrations, swag, websites, social media, graphics, and so much more could not have happened without the wonderful contributions of so many. Beyond the organizers of the 165+ events, there were many people working behind the scenes to ensure WordPress got the recognition it deserved. Thank you to everyone who worked behind the scenes to organize the meetups, create swag, and to spread the word. Some of these hardworking folks include: <a href=\"https://profiles.wordpress.org/nomadskateboarding/\">Mark Andrew</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/tinobarreiro/\">Tino Barreiro</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, <a href=\"https://profiles.wordpress.org/mysweetcate/\">Cate DeRosia</a>, <a href=\"https://profiles.wordpress.org/triforcepower/\">Em DeRosia</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/ngreennc/\">Nyasha Green</a>, <a href=\"https://profiles.wordpress.org/nickhamze/\">Nick Hamze</a>, <a href=\"https://profiles.wordpress.org/meaganhanes/\">Meagan Hanes</a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a>, <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a>, <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">Angela Jin</a>, Winston Koone, Megan Marcel, <a href=\"https://profiles.wordpress.org/ninianepress/\">Jenni McKinnon</a>, <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/sereedmedia/\">Se Reed</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a>, <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco Vera</a>, Andrew Wikel, and <a href=\"https://profiles.wordpress.org/adamwood/\">Adam Wood</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Some More Fun</h2>\n\n\n\n<p>A WordPress event is not complete without a Wapuu, and not only was there one, but there was a whole campaign to color it in! Thanks to <a href=\"https://profiles.wordpress.org/triforcepower/\">Em DeRosia</a> for creating the commemorative Wapuu!</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-6 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"737\" height=\"1024\" data-id=\"15532\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=737%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15532\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=737%2C1024&amp;ssl=1 737w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=216%2C300&amp;ssl=1 216w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=768%2C1067&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?w=864&amp;ssl=1 864w\" sizes=\"(max-width: 737px) 100vw, 737px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"737\" height=\"1024\" data-id=\"15528\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=737%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15528\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=737%2C1024&amp;ssl=1 737w, https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=216%2C300&amp;ssl=1 216w, https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=768%2C1067&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?w=864&amp;ssl=1 864w\" sizes=\"(max-width: 737px) 100vw, 737px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"722\" height=\"956\" data-id=\"15531\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Ft8DCn9WcA08xYZ.jpeg?resize=722%2C956&#038;ssl=1\" alt=\"\" class=\"wp-image-15531\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Ft8DCn9WcA08xYZ.jpeg?w=722&amp;ssl=1 722w, https://i0.wp.com/wordpress.org/news/files/2023/07/Ft8DCn9WcA08xYZ.jpeg?resize=227%2C300&amp;ssl=1 227w\" sizes=\"(max-width: 722px) 100vw, 722px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"832\" height=\"1024\" data-id=\"15534\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=832%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15534\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=832%2C1024&amp;ssl=1 832w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=244%2C300&amp;ssl=1 244w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=768%2C945&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?w=975&amp;ssl=1 975w\" sizes=\"(max-width: 832px) 100vw, 832px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"819\" height=\"1024\" data-id=\"15533\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=819%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15533\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=819%2C1024&amp;ssl=1 819w, https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=240%2C300&amp;ssl=1 240w, https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=768%2C960&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?w=960&amp;ssl=1 960w\" sizes=\"(max-width: 819px) 100vw, 819px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"829\" data-id=\"15530\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=1024%2C829&#038;ssl=1\" alt=\"\" class=\"wp-image-15530\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=1024%2C829&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=300%2C243&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=768%2C622&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?w=1121&amp;ssl=1 1121w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"712\" data-id=\"15535\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=1024%2C712&#038;ssl=1\" alt=\"\" class=\"wp-image-15535\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=1024%2C712&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=300%2C209&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=768%2C534&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"709\" height=\"1024\" data-id=\"15536\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=709%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15536\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=709%2C1024&amp;ssl=1 709w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=208%2C300&amp;ssl=1 208w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=768%2C1109&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?w=831&amp;ssl=1 831w\" sizes=\"(max-width: 709px) 100vw, 709px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"737\" height=\"1024\" data-id=\"15529\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=737%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15529\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=737%2C1024&amp;ssl=1 737w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=216%2C300&amp;ssl=1 216w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=768%2C1066&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?w=970&amp;ssl=1 970w\" sizes=\"(max-width: 737px) 100vw, 737px\" data-recalc-dims=\"1\" /></figure>\n</figure>\n\n\n\n<p>The Marketing team ran an interactive campaign, <a href=\"https://make.wordpress.org/marketing/2023/05/02/20-days-to-celebrate-20-years-of-wordpress-from-blogs-to-blocks/\"><em>From Blogs to Blocks</em></a>, a series of prompts across 20 days for WordPress enthusiasts to celebrate all-things WordPress.</p>\n\n\n\n<p>Additional campaigns took place on social media and included prompting folks to share their favorite WordPress memory and most cherished WordPress swag item, to highlight the 21 contributing teams, and even to share a birthday greeting.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">My fav <a href=\"https://twitter.com/hashtag/WordPress?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPress</a> swag, which I use daily! This was the speaker swag from <a href=\"https://twitter.com/hashtag/WCBos?src=hash&amp;ref_src=twsrc%5Etfw\">#WCBos</a> 2019. <a href=\"https://twitter.com/melchoyce?ref_src=twsrc%5Etfw\">@melchoyce</a>, I think you designed this stunning logo? <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/1sEIEMGzM9\">https://t.co/1sEIEMGzM9</a> <a href=\"https://t.co/F0ufF9msqP\">pic.twitter.com/F0ufF9msqP</a></p>&mdash; Angela Jin (@AngelaSJin) <a href=\"https://twitter.com/AngelaSJin/status/1650832707683864578?ref_src=twsrc%5Etfw\">April 25, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<p>We had lots of digital goodies too! From 3D desktop wallpaper, to selfie-props for the celebrations, and more. <a href=\"https://wp20.wordpress.net/swag/\">You can download them here</a>.</p>\n\n\n\n<div class=\"wp-block-jetpack-tiled-gallery aligncenter is-style-rectangular\"><div class=\"tiled-gallery__gallery\"><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\" style=\"flex-basis:37.05595%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=1500&#038;ssl=1 1500w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=1600&#038;ssl=1 1600w\" alt=\"\" data-height=\"900\" data-id=\"15830\" data-link=\"https://wordpress.org/news/?attachment_id=15830\" data-url=\"https://wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png\" data-width=\"1600\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?ssl=1\" data-amp-layout=\"responsive\" /></figure><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg?strip=info&#038;w=825&#038;ssl=1 825w\" alt=\"\" data-height=\"600\" data-id=\"15829\" data-link=\"https://wordpress.org/news/?attachment_id=15829\" data-url=\"https://wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg\" data-width=\"825\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div><div class=\"tiled-gallery__col\" style=\"flex-basis:62.94405%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?strip=info&#038;w=600&#038;ssl=1 600w,https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?strip=info&#038;w=900&#038;ssl=1 900w,https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?strip=info&#038;w=1490&#038;ssl=1 1490w\" alt=\"WP20\" data-height=\"1140\" data-id=\"15854\" data-link=\"https://wordpress.org/news/?attachment_id=15854\" data-url=\"https://wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png\" data-width=\"1490\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?ssl=1\" data-amp-layout=\"responsive\" /></figure></div></div></div></div>\n\n\n\n<h2 class=\"wp-block-heading\">Got Swag? Need Swag?</h2>\n\n\n\n<p>It&#8217;s not too late to order your WP20 commemorative items. <a href=\"https://mercantile.wordpress.org/product-category/wp20/\">Find shirts, stickers, and more, while supplies last</a>!</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>See you in five years for the 25th!</strong></h2>\n\n\n\n<p>Sign up here to stay in the &#8220;know&#8221;!</p>\n\n\n	<div class=\"wp-block-jetpack-subscriptions__supports-newline wp-block-jetpack-subscriptions\">\n		<div class=\"jetpack_subscription_widget\">\n			<div class=\"wp-block-jetpack-subscriptions__container\">\n				<form\n					action=\"#\"\n					method=\"post\"\n					accept-charset=\"utf-8\"\n					data-blog=\"14607090\"\n					data-post_access_level=\"everybody\"\n					id=\"subscribe-blog-1\"\n				>\n					<p id=\"subscribe-email\">\n						<label id=\"jetpack-subscribe-label\"\n							class=\"screen-reader-text\"\n							for=\"subscribe-field-1\">\n							Type your email…						</label>\n						<input type=\"email\" name=\"email\" required=\"required\"\n															class=\"no-border-radius  required\"\n																						style=\"font-size: 16px;padding: 15px 23px 15px 23px;border-radius: 0px;border-width: 1px;\"\n														value=\"\"\n							id=\"subscribe-field-1\"\n							placeholder=\"Type your email…\"\n						/>\n					</p>\n\n					<p id=\"subscribe-submit\"\n											>\n						<input type=\"hidden\" name=\"action\" value=\"subscribe\"/>\n						<input type=\"hidden\" name=\"blog_id\" value=\"14607090\"/>\n						<input type=\"hidden\" name=\"source\" value=\"https://wordpress.org/news/feed/\"/>\n						<input type=\"hidden\" name=\"sub-type\" value=\"subscribe-block\"/>\n						<input type=\"hidden\" name=\"redirect_fragment\" value=\"subscribe-blog-1\"/>\n												<button type=\"submit\"\n															class=\"wp-block-button__link no-border-radius\"\n																						style=\"font-size: 16px;padding: 15px 23px 15px 23px;margin: 0px; margin-left: 10px;border-radius: 0px;border-width: 1px;\"\n														name=\"jetpack_subscriptions_widget\"\n						>\n							Subscribe						</button>\n					</p>\n				</form>\n\n							</div>\n		</div>\n	</div>\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15471\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 6.3 “Lionel”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2023/08/lionel/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 20:03:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15718\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:196:\"WordPress 6.3 \"Lionel\" is here! Named after Lionel Hampton, the prolific jazz musician and bandleader, this release was made possible by over 650 contributors. Download WordPress 6.3 Lionel today.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matias Ventura\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:71634:\"\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-15794\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=2048%2C1365&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Say hello to WordPress 6.3 “Lionel,” named after <a href=\"https://en.wikipedia.org/wiki/Lionel_Hampton\">Lionel Hampton</a>, the celebrated American jazz artist. A prolific jazz vibraphonist, pianist, and percussionist, Hampton gained notoriety working in harmony with greats from <a href=\"https://en.wikipedia.org/wiki/Charles_Mingus\">Charles Mingus</a> to <a href=\"https://en.wikipedia.org/wiki/Quincy_Jones\">Quincy Jones</a> and as bandleader of the eponymous Lionel Hampton Orchestra. His artistry and charitable work have been recognized with a Grammy, a star on the Hollywood Walk of Fame, and the National Medal of Arts.</p>\n\n\n\n<p>Be sure to turn up the volume of the <a href=\"https://www.youtube.com/channel/UCpfWWFslWSapwL_q16AboSg/featured\">musical stylings</a> of Lionel Hampton as you discover all “Lionel” has to offer.</p>\n\n\n\n<p>With “Lionel” you can create beautiful and compelling websites more efficiently than ever. Whether you want to build an entire site without coding or are a developer looking to customize every detail, WordPress 6.3 has something to pique your interest. As you unpack and explore this latest release, you will discover updated functions and navigation designed to help you work and create with less effort, design tools that give you more control over layout, and added functionality enriching the site-building experience.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">&#8220;Lionel&#8221; marks a major chapter in the evolution of WordPress as a tool for expression. It’s the culmination of years of work from hundreds of contributors, bringing a more powerful and cohesive editing experience for crafting websites with blocks. It continues the quest of making web publishing approachable for everyone—so it’s also just a new beginning!</p>\n<cite>Matías Ventura, WordPress 6.3 Release Lead</cite></blockquote>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/wordpress-6.3.zip\">Download WordPress 6.3 &#8220;Lionel&#8221; today</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside</h2>\n\n\n\n<p>This momentous release opens new possibilities for the creative expression of designers, creators, and builders. Powerful tools and refined controls give users confidence and allow them to easily manage their sites.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Do everything in the Site Editor</h3>\n\n\n\n<p>WordPress 6.3 brings your content, templates, and patterns together in the Site Editor for the first time. Add pages, browse style variations, create synced patterns, and enjoy fine-tuned control over navigation menus. Spend less time switching across different site areas—so you can focus on what matters most. Creation to completion, all in one place.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image titled: &quot;Do everything in the Site Editor&quot;\" class=\"wp-image-15808\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Do everything in the Site Editor</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Preview Block themes</h3>\n\n\n\n<p>Experience block themes before you switch and preview the Site Editor, with options to customize directly before committing to a new theme.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image about previewing block themes titled Previewing Themes depicting &quot;Previewing: Organizer&quot;\" class=\"wp-image-15769\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Preview a new block theme before you switch and commit</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Create and sync patterns</h3>\n\n\n\n<p>Arrange blocks and save them to the ‘My Patterns’ section for use throughout your site. You can even specify whether to sync your patterns (previously referred to as “Reusable blocks”) so that one change applies to all parts of your site. Or, utilize patterns as a starting point with the ability to customize each instance.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image showing the new My Patterns section in the CMS.\" class=\"wp-image-15768\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>My patterns: All your patterns in one place</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Work faster with the Command Palette</h3>\n\n\n\n<p>Switch to a specific template or open your editor preferences with a new tool that helps you quickly access expanded functionality. With simple keyboard shortcuts (⌘+k on Mac or Ctrl+k on Windows), clicking the sidebar search icon in Site View, or clicking the Title Bar, get where you need to go and do what you need to do in seconds.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Command Palette\" class=\"wp-image-15763\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Get to know the new Command Palette </em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Sharpen your designs with new tools</h3>\n\n\n\n<p>New design controls bring more versatility for fine-tuning, starting with the ability to customize your captions from the Styles interface without coding. You can manage your duotone filters in Styles for supported blocks and pick from the options provided by your theme or disable them entirely. The Cover block gets added settings for text color, layout controls, and border options, making this powerful block even more handy.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image representing the new design tools in the Site Editor\" class=\"wp-image-15764\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>New design tools</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Track design changes with Style revisions</h3>\n\n\n\n<p>With a new audit trail, you can now see how your site looked at a specific time. Visualize these revisions in a timeline and access a one-click option to restore prior styles.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image titled &quot;Style Revisions&quot;\" class=\"wp-image-15770\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Style revisions: See your style revision history </em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Annotate with the Footnotes block</h3>\n\n\n\n<p>Footnotes add convenient annotations throughout your content. Now you can add and link footnotes for any paragraph.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Footnotes Block\" class=\"wp-image-15766\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Add footnotes effortlessly with the new Footnotes Block</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Show or hide content with the Details block</h3>\n\n\n\n<p>Use the Details block to avoid spoiling a surprise, create an interactive Q&amp;A section, or hide a long paragraph under a heading.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Details Block\" class=\"wp-image-15765\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Display or hide content with the new Details Block</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Performance gets a boost</h3>\n\n\n\n<p>WordPress 6.3 has <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">170+ performance updates</a>, including defer and async support for the Scripts API and fetchpriority support for images. These improvements, along with block template resolution, image lazy-loading, and the emoji loader, can dramatically improve your website’s perceived load time.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility remains a core focus</h3>\n\n\n\n<p>Incorporating more than 50 accessibility improvements across the platform, WordPress 6.3 is more accessible than ever. Improved labeling, optimized tab and arrow-key navigation, revised heading hierarchy, and new controls in the admin image editor allow those using assistive technologies to navigate more easily.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other highlights</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Set aspect ratio on images</h4>\n\n\n\n<p>Specify your aspect ratios and ensure design integrity, especially when using images in patterns.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build your site distraction-free</h4>\n\n\n\n<p>Distraction-free designing is now available in the Site Editor.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Rediscover the Top Toolbar</h4>\n\n\n\n<p>A revamped Top Toolbar offers parent selectors for nested blocks, options when selecting multiple blocks, and an interface embedded into the title bar with new functionality in mind.</p>\n\n\n\n<h4 class=\"wp-block-heading\">List View improvements</h4>\n\n\n\n<p>Drag and drop to every content layer and delete any block you would like in the updated List View.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build templates with Patterns</h4>\n\n\n\n<p>Create unique patterns to jumpstart template creation with a new modal enabling access to pattern selection.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Changes in PHP support</h4>\n\n\n\n<p>Support for PHP 5 is discontinued. The&nbsp;new minimum supported version&nbsp;of PHP is 7.0.0.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Failed update safeguards</h4>\n\n\n\n<p>WordPress will now auto-restore the previously installed version of plugins or themes if something goes wrong during a failed manual update.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress and 6.3</h2>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/tutorials/\">Learn WordPress</a> for quick how-to videos, <a href=\"https://learn.wordpress.org/social-learning/\">online workshops</a>, and other resources to level up your knowledge of the latest features in WordPress.&nbsp;</p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a> for detailed developer notes to help you build with WordPress and get the most out of the latest release. Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-3/\">6.3 release notes</a> for additional technical details about this release, including feature recaps, installation information, file changes, fixes, and updates.</p>\n\n\n\n<p>Read and subscribe to the <a href=\"https://developer.wordpress.org/news/\">Developer Blog</a> for even more helpful WordPress content.&nbsp;</p>\n\n\n\n<p>To accompany this release, a new <a href=\"https://wordpress.org/download/releases/6-3/\">web experience</a> has been created to provide a more visual way of getting acquainted with the many improvements and new features of WordPress 6.3. </p>\n\n\n\n<p>Seeing WordPress 6.3 in action doesn&#8217;t stop there! Be sure to watch this brief <a href=\"https://www.youtube.com/watch?v=6JhJcOLySLY\">overview video</a> to get a taste of the many things &#8220;Lionel&#8221; has to offer.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/6JhJcOLySLY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress is a global software platform</h2>\n\n\n\n<p><a href=\"https://translate.wordpress.org/stats/\">61 locales have translated 90 percent</a> or more of WordPress 6.3 into their language. Community translators are working hard to ensure more translations are on their way. Thank you, gracias, ありがとう, धन्यवाद, and ευχαριστώ to everyone who helps to make WordPress available in 200 languages.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"Contributing-to-WordPress\">Contributing to WordPress</h2>\n\n\n\n<p>WordPress believes in democratizing publishing and <a href=\"https://opensource.org/osd-annotated\">the freedoms that come with open source</a>. Supporting this idea is a large community of people collaborating to strengthen the software. A big thank you to everyone who makes WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">Our community of contributors has always been what makes WordPress wonderful. You are what makes sure our project continues to thrive, and our software remains secure, usable, and impactful. Thank you so much for joining together to make the web (and the world) a better place!</p>\n<cite>Josepha Haden Chomphosy, Executive Director, WordPress.org</cite></blockquote>\n\n\n\n<p>WordPress 6.3 arrives thanks to more than 650 contributors&#8217; collective passion and effort in at least 52 countries. This release also includes over 205 first-time contributors!&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">The 6.3 release squad</h3>\n\n\n\n<p>The 6.3 release was led from start to launch by an active set of contributors from across many disciplines. Over several weeks, they kept the release on track and moving forward by connecting ideas, resolving issues, and removing roadblocks.</p>\n\n\n\n<ul>\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a></li>\n\n\n\n<li>Release Coordinators: <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a></li>\n\n\n\n<li>Editor Tech Leads:&nbsp; <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon Dodd</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Glecker</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a>, <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a>, <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a></li>\n\n\n\n<li>Marketing &amp; Communications Leads: <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a></li>\n\n\n\n<li>Test Leads: <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a>, <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>, <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a></li>\n\n\n\n<li>Design Leads: <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a></li>\n\n\n\n<li>Performance Leads: <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">6.3 contributors</h3>\n\n\n\n<p>Complimenting the release squad is a diverse group of contributors whose global collaboration delivered hundreds of enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress community.&nbsp;</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/zgrkaralar/\">&#214;zg&#252;r KARALAR</a> · <a href=\"https://profiles.wordpress.org/6adminit/\">6adminit</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abhi3315/\">abhi3315</a> · <a href=\"https://profiles.wordpress.org/softwortech/\">Abhishek Sharma</a> · <a href=\"https://profiles.wordpress.org/ababir/\">Abir</a> · <a href=\"https://profiles.wordpress.org/abitofmind/\">abitofmind</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/awarner20/\">Adam W. Warner</a> · <a href=\"https://profiles.wordpress.org/adarshposimyth/\">Adarsh Akshat</a> · <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a> · <a href=\"https://profiles.wordpress.org/adi3890/\">Aditya Jain</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> · <a href=\"https://profiles.wordpress.org/ahsannayem/\">Ahsan Chowdhury</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/akmelias/\">akmelias</a> · <a href=\"https://profiles.wordpress.org/wpfy/\">Akramul Hasan</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/xavortm/\">Alex Dimitrov</a> · <a href=\"https://profiles.wordpress.org/cawa-93/\">Alex Kozack</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alexandrelara/\">Alexandre Lara</a> · <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro G&#243;mez</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/akrocks/\">Amaan Khan</a> · <a href=\"https://profiles.wordpress.org/amansurov/\">amansurov</a> · <a href=\"https://profiles.wordpress.org/amin7/\">amin</a> · <a href=\"https://profiles.wordpress.org/sabreuse/\">Amy Hendrix (sabreuse)</a> · <a href=\"https://profiles.wordpress.org/anatoliyav/\">Anatoliy</a> · <a href=\"https://profiles.wordpress.org/anatolikkk/\">Anatoliy Dovgun</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/andizer/\">Andy Meerwaldt</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/anilvaza/\">Anil Vaza</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/reputeinfosystems/\">Ankur Chotai</a> · <a href=\"https://profiles.wordpress.org/annashopina/\">Anna</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/annziel/\">annziel</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonyagrios/\">Antony Agrios</a> · <a href=\"https://profiles.wordpress.org/anver/\">anver</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/arafatjamil01/\">Arafat Jamil</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/ideag/\">Arunas Liuiza</a> · <a href=\"https://profiles.wordpress.org/iamasadpolash/\">Asad Polash</a> · <a href=\"https://profiles.wordpress.org/mrasharirfan/\">Ashar Irfan</a> · <a href=\"https://profiles.wordpress.org/ashikurwp/\">Ashikur Rahman</a> · <a href=\"https://profiles.wordpress.org/nant82/\">Atanas Antonov</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/austinginder/\">Austin Ginder</a> · <a href=\"https://profiles.wordpress.org/filosofo/\">Austin Matzko</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azizantoun/\">azizantoun</a> · <a href=\"https://profiles.wordpress.org/aznadesign/\">Aznadesign</a> · <a href=\"https://profiles.wordpress.org/bangank36/\">bangank36</a> · <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a> · <a href=\"https://profiles.wordpress.org/empireoflight/\">Ben Dunkle</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benlk/\">Ben Keith</a> · <a href=\"https://profiles.wordpress.org/benjgrolleau/\">Benjamin Grolleau</a> · <a href=\"https://profiles.wordpress.org/benjibee/\">benjibee</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/albatross10/\">Bhavik Kalpesh</a> · <a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a> · <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/bitnissen/\">bitnissen</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/wpe_bdurette/\">Brandon DuRette</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a> · <a href=\"https://profiles.wordpress.org/brasofilo/\">brasofilo</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/fischfood/\">Brian Fischer</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bridgetwillard/\">Bridget Willard</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">Bronson Quick</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/caraffande/\">caraffande</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a> · <a href=\"https://profiles.wordpress.org/ceer/\">ceer</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/mrflannagan/\">Chris Flannagan</a> · <a href=\"https://profiles.wordpress.org/clubkert/\">Chris Lubkert</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/ckoerner/\">ckoerner</a> · <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/corentingautier/\">corentingautier</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/crixu/\">Crixu</a> · <a href=\"https://profiles.wordpress.org/crs1138/\">crs1138</a> · <a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a> · <a href=\"https://profiles.wordpress.org/cshark/\">cshark</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/dbernar1/\">Dan Bernardic</a> · <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/danyk4/\">danyk4</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidmusnik/\">davidmusnik</a> · <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dennysdionigi/\">Dennys Dionigi</a> · <a href=\"https://profiles.wordpress.org/densityapps/\">densityapps</a> · <a href=\"https://profiles.wordpress.org/sccr410/\">Derek Ashauer</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">Derek Blank</a> · <a href=\"https://profiles.wordpress.org/shagors/\">devshagor</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruvishah2203/\">Dhruvi Shah</a> · <a href=\"https://profiles.wordpress.org/digtek/\">DigTek</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dimijazz/\">dimijazz</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/doems/\">doems</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/dsar/\">dsar</a> · <a href=\"https://profiles.wordpress.org/dustyreagan/\">dustyreagan</a> · <a href=\"https://profiles.wordpress.org/ebai4/\">ebai4</a> · <a href=\"https://profiles.wordpress.org/ecorica/\">ecorica</a> · <a href=\"https://profiles.wordpress.org/beckej/\">Ed Beck</a> · <a href=\"https://profiles.wordpress.org/eduwass/\">eduwass</a> · <a href=\"https://profiles.wordpress.org/wpnook/\">Edward</a> · <a href=\"https://profiles.wordpress.org/worldomonation/\">Edwin Takahashi</a> · <a href=\"https://profiles.wordpress.org/ehsanakhgari/\">ehsanakhgari</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a> · <a href=\"https://profiles.wordpress.org/emirpprime/\">emirpprime</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/eric7186/\">eric.7186</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/ernest35/\">Ernest Behinov</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/falgunihdesai/\">Falguni Desai</a> · <a href=\"https://profiles.wordpress.org/iamfarhan09/\">Farhan Ahmed</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a> · <a href=\"https://profiles.wordpress.org/frankit/\">frankit</a> · <a href=\"https://profiles.wordpress.org/franrosa/\">franrosa</a> · <a href=\"https://profiles.wordpress.org/gaeldenysiak/\">gaeldenysiak</a> · <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> · <a href=\"https://profiles.wordpress.org/ecgan/\">Gan Eng Chin</a> · <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a> · <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/wtower/\">George</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gilles66/\">gilles66</a> · <a href=\"https://profiles.wordpress.org/mokagio/\">Gio Lodi</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/grandslambert/\">GrandSlambert</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Zi&#243;łkowski</a> · <a href=\"https://profiles.wordpress.org/gudmdharalds/\">Gudmundur Haraldsson</a> · <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/hrdelwar/\">Habibur Rahman Delwar</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">Hanzala Taifun</a> · <a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/haritpanchal/\">Harit Panchal</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/hasanmisbah/\">Hasan Misbah</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/heiko_mamerow/\">Heiko Mamerow</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/panchalhimani711/\">Himani Panchal</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/hrrarya/\">Hridoy Mozumder</a> · <a href=\"https://profiles.wordpress.org/hugobaeta/\">Hugo Baeta</a> · <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a> · <a href=\"https://profiles.wordpress.org/hberberoglu/\">Huseyin Berberoglu</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/polevaultweb/\">Iain Poulson</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ibrahimmonir/\">Ibrahim Khalil</a> · <a href=\"https://profiles.wordpress.org/shuvoaftab/\">Ibrahim Sharif</a> · <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> · <a href=\"https://profiles.wordpress.org/imanish003/\">imanish003</a> · <a href=\"https://profiles.wordpress.org/intoxination/\">intoxination</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/jacknotman/\">jacknotman</a> · <a href=\"https://profiles.wordpress.org/jahidcse/\">Jahid Hasan</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/james0r/\">james0r</a> · <a href=\"https://profiles.wordpress.org/janboddez/\">Jan Boddez</a> · <a href=\"https://profiles.wordpress.org/jane/\">jane</a> · <a href=\"https://profiles.wordpress.org/jankyz/\">jankyz</a> · <a href=\"https://profiles.wordpress.org/janpaulkleijn/\">janpaulkleijn</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/pbking/\">Jason Crist</a> · <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jbcouton/\">jbcouton</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffmora/\">jeffmora</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jenmylo/\">Jen</a> · <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">Jerry Jones</a> · <a href=\"https://profiles.wordpress.org/jhnstn/\">jhnstn</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/bitmachina/\">John Hooks</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/jomonthomaslobo1/\">Jomon Thomas Lobo</a> · <a href=\"https://profiles.wordpress.org/akbigdog/\">Jon Bourne</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a> · <a href=\"https://profiles.wordpress.org/n2erjo00/\">Joni Erkkil&#228;</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> · <a href=\"https://profiles.wordpress.org/josepmoran/\">Josep Mor&#225;n</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a> · <a href=\"https://profiles.wordpress.org/jhabdas/\">Josh Habdas</a> · <a href=\"https://profiles.wordpress.org/shelob9/\">Josh Pollock</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jqz/\">jqz</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juzar/\">Juzar</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn P.</a> · <a href=\"https://profiles.wordpress.org/kamplugins/\">Kausar Al Mamun</a> · <a href=\"https://profiles.wordpress.org/kausaralm/\">Kausar Alam</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kenwins/\">kenwins</a> · <a href=\"https://profiles.wordpress.org/kevinb/\">Kevin Behrens</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/khokansardar/\">Khokan Sardar</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/koenschipper/\">koenschipper</a> · <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a> · <a href=\"https://profiles.wordpress.org/krishneup/\">Krishna Neupane</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kutsu/\">kutsu</a> · <a href=\"https://profiles.wordpress.org/kzeni/\">KZeni</a> · <a href=\"https://profiles.wordpress.org/leamcaleese/\">L&#233;a McAleese</a> · <a href=\"https://profiles.wordpress.org/lgadzhev/\">Lachezar Gadzhev</a> · <a href=\"https://profiles.wordpress.org/lanacodes/\">Lana Codes</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a> · <a href=\"https://profiles.wordpress.org/wplmillet/\">Laurent MILLET</a> · <a href=\"https://profiles.wordpress.org/laurentmagnin/\">laurentmagnin</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a> · <a href=\"https://profiles.wordpress.org/lessbloat/\">lessbloat</a> · <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a> · <a href=\"https://profiles.wordpress.org/wplindavantol/\">Linda van Tol</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/lowlydev/\">lowlydev</a> · <a href=\"https://profiles.wordpress.org/lphoumpakka/\">lphk</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/madejackson/\">madejackson</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mehdi01/\">Mahdi Hasan</a> · <a href=\"https://profiles.wordpress.org/mahendra0029/\">Mahendra Bishnoi</a> · <a href=\"https://profiles.wordpress.org/nadimcse/\">Mahmudul Haque Nadim</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/majaloncar/\">Maja Loncar</a> · <a href=\"https://profiles.wordpress.org/malae/\">Malae</a> · <a href=\"https://profiles.wordpress.org/malavvasita/\">Malav Vasita</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/maniu/\">maniu</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/marcguay/\">MarcGuay</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a> · <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> · <a href=\"https://profiles.wordpress.org/marianne38/\">marianne38</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a> · <a href=\"https://profiles.wordpress.org/markdoliner/\">markdoliner</a> · <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a> · <a href=\"https://profiles.wordpress.org/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">masteradhoc</a> · <a href=\"https://profiles.wordpress.org/mastrup/\">mastrup</a> · <a href=\"https://profiles.wordpress.org/mat-lipe/\">Mat Lipe</a> · <a href=\"https://profiles.wordpress.org/mathsgrinds/\">mathsgrinds</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matmoe/\">matmoe</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mwtsn/\">Matt Watson</a> · <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a> · <a href=\"https://profiles.wordpress.org/matt_fw/\">matt_fw</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a> · <a href=\"https://profiles.wordpress.org/azouamauriac/\">Mauriac AZOUA</a> · <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> · <a href=\"https://profiles.wordpress.org/cadic/\">Max Lyuchin</a> · <a href=\"https://profiles.wordpress.org/maxcgparis/\">maxcgparis</a> · <a href=\"https://profiles.wordpress.org/maysi/\">maysi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/mcalyster/\">McAlyster</a> · <a href=\"https://profiles.wordpress.org/mcliwanow/\">mcliwanow</a> · <a href=\"https://profiles.wordpress.org/mahamudur78/\">Md Mahamudur Rahaman</a> · <a href=\"https://profiles.wordpress.org/fencermonir/\">Md Monir Hossain</a> · <a href=\"https://profiles.wordpress.org/shuvo247/\">MD Shakibul Islam</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/menakas/\">Menaka S.</a> · <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a> · <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> · <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/mikeday/\">Michael Day</a> · <a href=\"https://profiles.wordpress.org/michaelh/\">MichaelH</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikecho/\">mikecho</a> · <a href=\"https://profiles.wordpress.org/mikeyzm/\">mikeyzm</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/gonzomir/\">Milen Petrinski - Gonzo</a> · <a href=\"https://profiles.wordpress.org/studionashvegas/\">Mitch Canter</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/mitchoyoshitaka/\">mitcho (Michael Yoshitaka Erlewine)</a> · <a href=\"https://profiles.wordpress.org/moinrrahmed/\">Moe</a> · <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a> · <a href=\"https://profiles.wordpress.org/mohanrajp/\">Mohan Raj</a> · <a href=\"https://profiles.wordpress.org/patelmohip/\">Mohip Patel</a> · <a href=\"https://profiles.wordpress.org/mohiuddinomran/\">Mohiuddin Omran</a> · <a href=\"https://profiles.wordpress.org/boemedia/\">Monique Dubbelman</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a> · <a href=\"https://profiles.wordpress.org/mrinal013/\">Mrinal Haque</a> · <a href=\"https://profiles.wordpress.org/mtxz/\">mtxz</a> · <a href=\"https://profiles.wordpress.org/thisisyeasin/\">Muhammad Yeasin</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/tushar284/\">Nahid Hasan</a> · <a href=\"https://profiles.wordpress.org/narthur/\">Narthur</a> · <a href=\"https://profiles.wordpress.org/nataliat2004/\">nataliat2004</a> · <a href=\"https://profiles.wordpress.org/nateallen/\">Nate Allen</a> · <a href=\"https://profiles.wordpress.org/nazgul/\">Nazgul</a> · <a href=\"https://profiles.wordpress.org/nazmul111/\">Nazmul Hosen</a> · <a href=\"https://profiles.wordpress.org/nazmulhudadev/\">Nazmul Huda</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/nickpap/\">nickpap</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a> · <a href=\"https://profiles.wordpress.org/dhrupo/\">Niluthpal Purkayastha</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/njsamsatli/\">njsamsatli</a> · <a href=\"https://profiles.wordpress.org/nkeller15/\">nkeller15</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> · <a href=\"https://profiles.wordpress.org/orestissam/\">Orestis Samaras</a> · <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a> · <a href=\"https://profiles.wordpress.org/owi/\">owi</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pamprn/\">Pamela Ribeiro</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pateljaymin/\">Patel Jaymin</a> · <a href=\"https://profiles.wordpress.org/patriciahillebrandt/\">patriciahillebrandt</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/strategio/\">Pierre Sylvestre</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/pitamdey/\">Pitam Dey</a> · <a href=\"https://profiles.wordpress.org/piyushtekwani/\">Piyush Tekwani</a> · <a href=\"https://profiles.wordpress.org/pkbhatt/\">pkbhatt</a> · <a href=\"https://profiles.wordpress.org/platonkristinin/\">Platon Kristinin</a> · <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pouicpouic/\">pouicpouic</a> · <a href=\"https://profiles.wordpress.org/prashantbhivsane/\">Prashant</a> · <a href=\"https://profiles.wordpress.org/prashantvatsh/\">Prashant Singh</a> · <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prikari/\">Priyanka Adhikari</a> · <a href=\"https://profiles.wordpress.org/przemekhernik/\">Przemek Hernik</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/bi0xid/\">Rafa Poveda</a> · <a href=\"https://profiles.wordpress.org/rfischmann/\">Rafael Fischmann</a> · <a href=\"https://profiles.wordpress.org/rajanpanchal2028/\">Rajan Panchal</a> · <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ratneshsonar/\">Ratnesh Sonar</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/rembem/\">rembem</a> · <a href=\"https://profiles.wordpress.org/renyot/\">ren</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/richards1052/\">richards1052</a> · <a href=\"https://profiles.wordpress.org/richiecarey/\">Richie Carey</a> · <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a> · <a href=\"https://profiles.wordpress.org/rob1n/\">rob1n</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a> · <a href=\"https://profiles.wordpress.org/algorithmsunlocks/\">Ruman Ahmed</a> · <a href=\"https://profiles.wordpress.org/rutviksavsani/\">Rutvik Savsani</a> · <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a> · <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a> · <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">S&#233; Reed</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/suleymankenar/\">S&#252;leyman Kenar</a> · <a href=\"https://profiles.wordpress.org/andy786/\">Sahil B.</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a> · <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/samnajian/\">SamNajian</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarequl/\">Sarequl Basar</a> · <a href=\"https://profiles.wordpress.org/saxonfletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/sdavis2702/\">Sean Davis</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/enchiridion/\">Shannon Little</a> · <a href=\"https://profiles.wordpress.org/shiponkarmakar/\">Shipon Karmakar</a> · <a href=\"https://profiles.wordpress.org/shreyasikhar26/\">Shreyas Ikhar</a> · <a href=\"https://profiles.wordpress.org/shubhamsedani/\">shubhamsedani</a> · <a href=\"https://profiles.wordpress.org/shuvo586/\">shuvo586</a> · <a href=\"https://profiles.wordpress.org/shvv/\">shvv</a> · <a href=\"https://profiles.wordpress.org/shwetabathani2312/\">Shweta Bathani</a> · <a href=\"https://profiles.wordpress.org/siddhantwadhwani/\">Siddhant Wadhwani</a> · <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth ravikumar</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/10upsimon/\">Simon Dowdles</a> · <a href=\"https://profiles.wordpress.org/simonemanfre/\">Simone</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/sirajummahdi/\">Sirajum Mahdi</a> · <a href=\"https://profiles.wordpress.org/sboerrigter/\">Sjoerd Boerrigter</a> · <a href=\"https://profiles.wordpress.org/sjoerdlinders/\">Sjoerd Linders</a> · <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> · <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a> · <a href=\"https://profiles.wordpress.org/enderandpeter/\">Spencer</a> · <a href=\"https://profiles.wordpress.org/sque/\">sque</a> · <a href=\"https://profiles.wordpress.org/srikanthmeenakshi/\">srikanthmeenakshi</a> · <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/vanaf1979/\">Stephan Nijman</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/supersoju/\">supersoju</a> · <a href=\"https://profiles.wordpress.org/codemonksuvro/\">Suvro</a> · <a href=\"https://profiles.wordpress.org/mt_suzette/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/suzettefranck/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/nuhel/\">Syed Nuhel</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/tahmina1du/\">Tahmina Jahan</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/takshil/\">Takshil Kunadia</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tanner-m/\">Tanner Moushey</a> · <a href=\"https://profiles.wordpress.org/thakordarshil/\">Thakor Darshil</a> · <a href=\"https://profiles.wordpress.org/thomask/\">thomask</a> · <a href=\"https://profiles.wordpress.org/thunderdw/\">thunder rumbles</a> · <a href=\"https://profiles.wordpress.org/tijmensmit/\">Tijmen Smit</a> · <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Kr&#252;ss</a> · <a href=\"https://profiles.wordpress.org/tb1909/\">Tim Brath&#228;rig</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/thomasdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/r0uter/\">tonythomas01</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a> · <a href=\"https://profiles.wordpress.org/scep/\">Tryon</a> · <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> · <a href=\"https://profiles.wordpress.org/tyb/\">TyB</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/umeshmcakadi/\">Umesh Patel</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul</a> · <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> · <a href=\"https://profiles.wordpress.org/uxtremist/\">uxtremist</a> · <a href=\"https://profiles.wordpress.org/eboxnet/\">Vagelis</a> · <a href=\"https://profiles.wordpress.org/valterlorran/\">valterlorran</a> · <a href=\"https://profiles.wordpress.org/vasilism/\">Vasilis Manthos</a> · <a href=\"https://profiles.wordpress.org/victoranto/\">victoranto</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vivekawsm/\">vivekawsm</a> · <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> · <a href=\"https://profiles.wordpress.org/wlindley/\">wlindley</a> · <a href=\"https://profiles.wordpress.org/wojtekszkutnik/\">Wojtek Szkutnik</a> · <a href=\"https://profiles.wordpress.org/xerpa43/\">xerpa43</a> · <a href=\"https://profiles.wordpress.org/xmarcos/\">xmarcos</a> · <a href=\"https://profiles.wordpress.org/yaniiliev/\">Yani Iliev</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/zdrobau/\">Zdrobau</a> · <a href=\"https://profiles.wordpress.org/zebaafiashama/\">Zeba Afia Shama</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/zenaulislam/\">Zenaul Islam</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a></p>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress support forums</h3>\n\n\n\n<p>Many thanks to the community volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved today</h3>\n\n\n\n<p>If contributing to WordPress appeals to you, learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and explore the product roadmap on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>. You can also use this <a href=\"https://make.wordpress.org/contribute/\">interactive tool</a> to help you decide which team is right for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking toward the future</h2>\n\n\n\n<p>20 years ago this past May, <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">WordPress shipped the very first version, 0.7</a>. What started with a blog post from co-founder Matt Mullenweg and a subsequent comment by co-founder Mike Little eventually evolved into the world’s most popular web publishing platform.</p>\n\n\n\n<p>WordPress software continues to evolve and iterate based on the needs and desires of its robust and diverse user community. This release is the capstone of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a> along the WordPress <a href=\"https://wordpress.org/about/roadmap/\">development roadmap</a>. As the community looks to the future, all efforts turn to <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">6.4</a> and, subsequently, the transition into <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3</a>, which is expected to introduce powerful collaboration tools to the website creation and management experience.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">6.3 Haiku</h2>\n\n\n\n<p>A capstone release<br>Ships tools for building great sites<br>Collaboration</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15718\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Concerns over the European Union’s Cyber Resilience Act (CRA)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 14:25:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"cra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15686\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:216:\"\"Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation.\" Learn more about the Cyber Resilience Act and its impact on open source.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4334:\"\n<p>As the world’s most popular open source content management system, WordPress acknowledges the European Union&#8217;s initiative to bolster the cybersecurity of digital hardware and software products with the <a href=\"https://www.european-cyber-resilience-act.com/\">Cyber Resilience Act (CRA)</a>. The Act’s effort to counter the increasing threat of cyberattacks and promote informed usage of digital products with increased security updates and transparency is commendable.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>While we wholly endorse the objectives of the CRA, we are apprehensive about the Act&#8217;s implications on open source software due to unclear terms and definitions. </p>\n</blockquote>\n\n\n\n<p>Specifically, the Act’s prohibition on &#8220;unfinished software&#8221; and ambiguous definition of &#8220;commercial activity&#8221; could inadvertently inhibit innovation and economic participation in the European digital landscape.</p>\n\n\n\n<p>Open source projects, like WordPress, often rely on continual updates and improvements—a process that may technically fall under the label of &#8220;unfinished.&#8221; Furthermore, the ambiguous definition of &#8220;commercial activity&#8221; could unintentionally encompass open source projects that are largely driven by communities and operate on a not-for-profit basis.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Our letter to the EU Commission</h2>\n\n\n\n<p>We have jointly authored an open letter addressing these concerns alongside fellow open source projects Drupal, Joomla!, and TYPO3<sup data-fn=\"eb28afbc-3487-447f-9af9-8b0418310a00\" class=\"fn\"><a href=\"#eb28afbc-3487-447f-9af9-8b0418310a00\" id=\"eb28afbc-3487-447f-9af9-8b0418310a00-link\">1</a></sup>. The letter emphasizes the significant contribution of Free and Open Source Software (FOSS) to the EU&#8217;s economy and how the proposed regulations might undermine these efforts. Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation inherent to both the open source community and the <a href=\"https://european-union.europa.eu/principles-countries-history/principles-and-values/aims-and-values_en\">EU’s Aims and Values</a>.</p>\n\n\n\n<p>The letter invites the EU Commission and interested parties to participate in a seminar in Brussels to discuss how we can align the objectives of the CRA with the realities and needs of the FOSS community. We are optimistic that, with mutual understanding and cooperation, we can achieve secure digital products without limiting the vital contributions of open source projects.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-9 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://wordpress.org/news/files/2023/08/Open_Letter_on_the_Significance_of_Free_and_Open_Source_Software_in_the_EU_s_Proposed_Cyber_Resilience_Act.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Read the letter</a></div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\"><ol class=\"wp-block-footnotes\"><li id=\"eb28afbc-3487-447f-9af9-8b0418310a00\"><a href=\"https://www.drupal.org/\">Drupal</a>, <a href=\"https://www.joomla.org/\">Joomla!</a>, <a href=\"https://typo3.com/\">TYPO3</a>, and <a href=\"https://wordpress.org/\">WordPress</a> are the most popular FOSS content management systems on the web today. While all are based on the PHP programming language and distributed under the GPL open source license, each platform takes a different approach to website publishing. With strength in diversity, they form the Inter-CMS Working Group, promoting the values and benefits of free and open source software. <a href=\"#eb28afbc-3487-447f-9af9-8b0418310a00-link\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/21a9.png\" alt=\"↩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />︎</a></li></ol></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15686\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.3 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2023 16:55:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15615\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:226:\"WordPress 6.3 Release Candidate 3 is now available for download and testing.\n\nThe WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general release. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6221:\"\n<p>WordPress 6.3 RC3 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC3 on a test server and site.&nbsp;</p>\n\n\n\n<p>The WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general release.&nbsp;</p>\n\n\n\n<p>For a deeper look into this release, read this overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new since RC2</h2>\n\n\n\n<p>Since the RC2 release on July 25, 2023, there have been approximately 14 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Github</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=07%2F25%2F2023..08%2F01%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a>. To prepare for 6.3 general availability, RC3 also addresses several <a href=\"https://github.com/WordPress/gutenberg/pull/53089\">bugs</a> and adds fixes for retrieving templates (<a href=\"https://github.com/WordPress/wordpress-develop/pull/4940\">#4940</a>) and resolving child theme issues (<a href=\"https://github.com/WordPress/gutenberg/issues/53138\">#53138</a>). Thank you for testing, WordPressers!</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Ways to contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by the community of people collaborating on and contributing to its development. The resources below outline a variety of ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Download RC3 for testing</h3>\n\n\n\n<p>You can test WordPress 6.3 RC3 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2:</strong> Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC3.zip\">RC3 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3: </strong>Use the following WP-CLI command:<br><code>wp core update --version=6.3-RC3</code></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Keep WordPress bug-free—help with testing</h3>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes or plugins? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>This is your final opportunity to test your latest versions against RC3. You will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a>&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p>Phase two, soon complete<br>A monumental release<br>Then onto six-four.</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/meher/\">@Meher</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, and <a href=\"https://profiles.wordpress.org/jpantani/\">@jpantani</a></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15615\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 20 Sep 2023 19:15:42 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Mon, 18 Sep 2023 12:00:00 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 4\";}}s:5:\"build\";s:14:\"20220629225143\";}','no'),(891048,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1695280542','no'),(891049,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1695237342','no'),(891050,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1695280542','no'),(891051,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WPTavern: #91 – Vagelis Papaioannou on How to Learn to Use WordPress and Help With Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=148915\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://wptavern.com/podcast/91-vagelis-papaioannou-on-how-to-learn-to-use-wordpress-and-help-with-events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49609:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast. From WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how to learn to use WordPress and help with events.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox.</p>\n\n\n\n<p>So on the podcast today, we have a Vagelis Papaioannou. Vagelis is a software engineer from Greece. His journey with coding began during his elementary school years. In an experimental coding class. This sparked a lifelong passion within him.</p>\n\n\n\n<p>His love for WordPress dates back to the early versions. For the last eight to nine years, he has actively participated in the Greek WordPress community, engaging in various roles, such as organizing WordCamps and meetups. Vagelis also contributes to multiple teams, cherishing the small contributions that allow everyone to make a difference. He also serves as the project translation lead for the Greek language.</p>\n\n\n\n<p>Vagelis, although a self-confessed introvert, shares his initial struggles with being a part of the community and attending local meetups. He encourages people to step outside their comfort zones, and attend events like WordCamps and meetups, where they&#8217;re likely to discover a welcoming and friendly atmosphere. Vagelis recounts his own experience of attending such events, initially feeling scared, but eventually having an enjoyable time, making many lasting friendships along the way.</p>\n\n\n\n<p>He talks about how local meetups are more casual gatherings than WordCamps. People come together to talk about WordPress, learn, and spend time with like-minded individuals. From meetups by the sea to forest walks, these events offer opportunities for both education and social engagement.</p>\n\n\n\n<p>On the subject of WordCamps, Vagelis unravels the magic behind these larger multi-day events, with presentations and a contributor day. He emphasizes that contribution to the community doesn&#8217;t necessarily require coding skills, and encourages more people to get involved. WordCamps are not only platforms for learning and exchanging ideas, but they also provide a space for attendees to have fun, network, and explore all manner of other opportunities.</p>\n\n\n\n<p>We talk about the importance of the code of conduct at WordCamps. This code ensures that participants know that they&#8217;re going to have a safe and inclusive experience. With attendees joining from all corners of the globe, these events attract a diverse range of individuals who are passionate about the software and the community.</p>\n\n\n\n<p>We then talk about the effort required to organize these events. Vagelis explains why he&#8217;s willing to dedicate his time and energy to be a part of such complex projects. He talks about the benefits participants gain from taking an active role, whether as an organizer, speaker or volunteer.</p>\n\n\n\n<p>As Vagelis shares his personal experiences in organizing and participating in events like WordCamp, Athens, he strongly advocates for more community involvement, and highlights the need for new organizers to get involved, to allow the community to meet up once again.</p>\n\n\n\n<p>We then get into a discussion of other ways that you can be involved. This time in the Learn project, which is making freely available materials so that people can learn about WordPress at a time that suits them. Vagelis talks about what the Learn team does, and how you can join them. He discusses how the team works using GitHub for collaboration and accommodating individuals with various skills and abilities.</p>\n\n\n\n<p>From the educational content available on the learn.wordpress.org website., To the valuable connections made through hallway chats, Vagelis emphasizes the power and importance of the WordPress community.</p>\n\n\n\n<p>If you&#8217;re a seasoned WordPress enthusiast, or just starting your journey in contributions, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading over to WPTavern.com forward slash podcast. Where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Vagelis Papaioannou.</p>\n\n\n\n<p>I am joined on the podcast today by Vagelis Papaioannou. Hello Vagelis!</p>\n\n\n\n<p>[00:05:27] <strong>Vagelis Papaioannou:</strong> Hello Nathan. Hello.</p>\n\n\n\n<p>[00:05:28] <strong>Nathan Wrigley:</strong> Very nice to have you on the podcast today. Just to give you a little bit of orientation, right at the outset we&#8217;re going to be talking about WordPress events. We might well dip our toes into WordCamp Europe. We might talk about local meetups and WordCamps in general. And then we might also pivot to talk about something which Vagelis is interested in, the training team.</p>\n\n\n\n<p>But before that, just to paint a picture of who you are and what your experience is with WordPress. I wonder Vagelis if you wouldn&#8217;t mind just giving us your bio. You can start as early as you like. Anything you want to say about you and WordPress.</p>\n\n\n\n<p>[00:06:04] <strong>Vagelis Papaioannou:</strong> Yeah of course. My name is Vagelis, I&#8217;m from Greece. I was raised and born in Athens and I live in Thessaloniki for the last 21 years. I&#8217;m a software engineer and my journey with coding started at elementary school where we had this experimental class of coding and I got really into it. And then that just made my passion.</p>\n\n\n\n<p>So regarding WordPress, I&#8217;ve been using WordPress since the version one point something, I can&#8217;t really remember. I was using b2 and then I jumped over to WordPress. The last eight, nine years I&#8217;ve been part of the Greek community of WordPress. I&#8217;m trying to go to build as much as possible I can.</p>\n\n\n\n<p>And I&#8217;m a WordCamp organiser. I&#8217;m a meetup organiser. I do contribute across multiple teams like training, testing or photos and all that small bits that everyone can do. I&#8217;m also the P.T. for the Greek language translation. Yeah that&#8217;s pretty much it I guess.</p>\n\n\n\n<p>[00:07:14] <strong>Nathan Wrigley:</strong> Yeah that&#8217;s a lot. That really is a lot. It&#8217;s an absolute pleasure to have you on. We didn&#8217;t discuss this in our pre recording chat, but I&#8217;m just wondering if you could paint the picture for us of what the state of the WordPress community in Greece is like. Just judging by my accent you can probably tell that I&#8217;m from the UK, and we might have a very different complexion here.</p>\n\n\n\n<p>We&#8217;ve obviously just this year had a huge WordPress event in Greece. WordCamp Europe was held in Athens earlier this year. If I&#8217;m looking at it from the outside I get the impression that the Greek community is thriving because they put on events like WordCamp Europe, but I don&#8217;t know if that&#8217;s the case.</p>\n\n\n\n<p>How is it being a Greek WordPress user? Are there plenty of events? Is the community thriving or is it in a different state?</p>\n\n\n\n<p>[00:07:59] <strong>Vagelis Papaioannou:</strong> Well the community is pretty big. We have a huge Facebook group with almost 20,000 people. We do two major events, two WordCamps, one in Athens and one in Thessaloniki. Sadly COVID 19 hit us really hard, so we had to stop for a while. We also stopped the meetups but we&#8217;re getting back to it. We&#8217;ve done like 10, 11 meetups the last year in Thessaloniki, and I know there are plans to do more meetups in other areas of Greece.</p>\n\n\n\n<p>We also in planning of a special WordCamp. We try to figure out where to do that and how to plan it so we can apply for it on WordCamp Central. And yeah we have a lot of users, lots of people trying to translate, we have a lot of coders.</p>\n\n\n\n<p>We also have a lot of people actually working in key companies regarding to WordPress, like Automattic and stuff like that. So yeah, we&#8217;re doing good I guess. But because I&#8217;m that kind of person, I know we could do better in some fields, but that&#8217;s a whole different story.</p>\n\n\n\n<p>[00:09:10] <strong>Nathan Wrigley:</strong> Yeah I guess there&#8217;s always room for improvement. I can completely sympathise though with the whole COVID thing. I think it&#8217;s fair to say that it put the brakes on in the UK and I don&#8217;t think the community has quite got back to where it was. Things are beginning again. There are various different WordCamps and meetups and things like that which are coming back from being online.</p>\n\n\n\n<p>Broadly speaking I think a lot of them carried on in an online way, but I&#8217;m not sure that the interest was maintained. And so a lot of them are now coming back and hoping to be in the real world once more. But the flagship event, one of the bigger events that we had in the UK was WordCamp London and, as yet, it has not re emerged. So fingers crossed.</p>\n\n\n\n<p>[00:09:52] <strong>Vagelis Papaioannou:</strong> Yeah. I&#8217;ve been on the last WordCamp London and I had a blast. It was a great event. We had great fun and I really hope that it&#8217;s coming back.</p>\n\n\n\n<p>[00:10:01] <strong>Nathan Wrigley:</strong> Yeah fingers crossed for that as well. We&#8217;re going to talk a little bit about local meetups and what have you, and WordCamp Europe in particular. Let&#8217;s begin there. Let&#8217;s begin with WordCamp Europe and paint a picture.</p>\n\n\n\n<p>Prior to that though I wouldn&#8217;t mind having a conversation around the fact that it&#8217;s very obvious to somebody like you and somebody like me, who probably obsess more than is healthy for us about WordPress, but we know that there&#8217;s a community. We&#8217;re well aware that these events take place. There was a time though when I was a user of WordPress, I was using nothing else, it was probably about two years into my journey with WordPress that I actually noticed that there was a community at all.</p>\n\n\n\n<p>Prior to that I was simply going to the .org websites, downloading the software, using that software, and then you know rinse and repeat, building websites and so on. And then I can&#8217;t remember where, it was possibly on social media or something, I remember seeing a picture. The collection of people with WordPress T-shirts on standing in a hallway or something. And I was thinking well that&#8217;s curious, what are they doing?</p>\n\n\n\n<p>And then obviously as time went on, it occurred to me oh there are these events. So given that the listenership to this podcast could be anybody, do you want to just talk a little bit about what WordPress events are? What they endeavor to do? How they are organised? Whether that be big events, little events, meetups and so on.</p>\n\n\n\n<p>[00:11:21] <strong>Vagelis Papaioannou:</strong> Definitely. Well first of all I need to reassure everyone that&#8217;s listening to this that I&#8217;m an introvert. So it wasn&#8217;t easy for me to be a part of a community, any community. Or just go in a random place in a local meetup, open the door and just stay there with a bunch of random folks.</p>\n\n\n\n<p>So if you feel like that, just come to any event even if it&#8217;s a WordCamp, a meetup, gathering, whatever. Just come, say hi and we&#8217;re all really welcoming and friendly. And you&#8217;re going to find someone who can really make you feel comfortable.</p>\n\n\n\n<p>I was aware of the community for a long time before I even managed to go on a local meetup here in Thessaloniki. And I remember me being there, just sitting on a chair, and I didn&#8217;t feel like talking to anyone. I was kind of scared. Scared grown up man, just in a strange place with other folks talking about software, which I love.</p>\n\n\n\n<p>So the next time was better and I actually had fun. I made a few contacts which I can now call friends. And that&#8217;s pretty much what a local meetup is. It&#8217;s just a gathering. We just get a soda, we talk about WordPress. We may have a presentation, we may have snacks. It&#8217;s a cool two hours spending with friends around WordPress. That&#8217;s pretty much it.</p>\n\n\n\n<p>I remember our last meetup, it was a month ago and we did it on Thessaloniki seaside. So we had like this beautiful sea view and we were just 20 people talking about random stuff. And then the idea struck, and someone said, shall we do another one? But like in Naousa, which is a different place, a different town. There&#8217;s a forest there. We can walk through the forest and go eat and do some stuff. And we agreed to do that. So that&#8217;s our next meetup. It&#8217;s on September the 2nd. So it&#8217;s pretty informal.</p>\n\n\n\n<p>And the same goes for WorldCamps, but WorldCamp is a bigger event. It&#8217;s usually like a couple of days event. There&#8217;s the presentation day and then there&#8217;s a contributor day where we gather and contribute.</p>\n\n\n\n<p>Just a side note, you don&#8217;t have to code to be a contributor. You can contribute in so many ways and we do need more contributors to help in so many teams.</p>\n\n\n\n<p>So yeah WordCamps, like I said, WordCamps are informal. You can come to learn something but if you feel that you can&#8217;t learn anything you can just come and have fun with us. Have a nice lunch, meet new people, exchange ideas. And maybe at the end of the day you learn something new. I don&#8217;t want to digress so that&#8217;s pretty much it.</p>\n\n\n\n<p>[00:14:11] <strong>Nathan Wrigley:</strong> No I think that&#8217;s great. That was a really nice summary. And I think a really important point that you made there, especially for people who&#8217;ve never been to these events before, is the no code piece. That is to say, you really genuinely don&#8217;t need to know a line of code, you don&#8217;t need to know any of that whatsoever to enjoy the event.</p>\n\n\n\n<p>Because usually, especially at the larger events, there&#8217;s a whole broad range of things that are being presented, workshops that are being given. Yeah, some of it will be about the code but a lot of it will be about other aspects of life on the internet. So it may be SEO, or marketing, or design, or something like that. So there&#8217;s definitely something for everybody.</p>\n\n\n\n<p>And also, I&#8217;ll throw into the mix, the somewhat undermentioned but very important hallway track. And this is simply when you&#8217;re not at a presentation. This is just hanging out, being in the corridor, chatting to people. And my understanding from chatting to people over the years is that quite a lot of serendipitous things happen during those hallway chats. You know friendships are created, businesses are formed, partnerships are made during those kinds of hallway random meetups. And it&#8217;s those things in particular are really nice.</p>\n\n\n\n<p>[00:15:24] <strong>Vagelis Papaioannou:</strong> And you also get the vibe of the market. So if you&#8217;re into that market, you get the vibe of where are we heading to? And that&#8217;s a good thing to always stay up to date.</p>\n\n\n\n<p>[00:15:36] <strong>Nathan Wrigley:</strong> I think also it might be worth mentioning that there is an enforced code of conduct. So there really are kind of rules and guidelines around what is acceptable. So if you have any fears or worries around that, what your participation would look like? How you would feel? How comfortable you would be or what have you, there are definite guidelines to make sure that your experience is as friendly as possible. Let&#8217;s put it that way.</p>\n\n\n\n<p>So WordCamps are the big ones. Then we&#8217;ve got these more ad hoc local meetups where really you&#8217;re probably just capturing people from the local area. Maybe a few miles around, as opposed to people getting on aeroplanes. They typically happen more like once a month or something like that.</p>\n\n\n\n<p>Why have you been so keen to contribute to these things though? Because my understanding is, especially an event like WordCamp Europe, you only have to attend to realise how breathtakingly large that undertaking is. The enterprise of putting on an event for several thousand people, coming from all over the globe.</p>\n\n\n\n<p>The fact that it&#8217;s, the catering is done, the internet is provided, there&#8217;s AV, there&#8217;s translations, there&#8217;s people standing around with the correct T-shirt on, helpfully guiding people all over. What I&#8217;m trying to paint a picture of is just how breathtakingly large these things are, and complex are. So I&#8217;m just wondering, why do you give up your time in this way? What do you gain from it?</p>\n\n\n\n<p>[00:16:57] <strong>Vagelis Papaioannou:</strong> It is indeed a massive event especially the Europe, US and Asia. I mean it&#8217;s about giving back I guess, to the community because we all get something out of it. I&#8217;m that kind of person that I believe we should always try to give back, even if we don&#8217;t get enough. We should give more than we get. This is how I work.</p>\n\n\n\n<p>However, about WordCamp Europe, yes it was a massive thing. It required so many hours of work. Oh and I forgot to say that most of the times it is fun to get involved in these kind of stuff. And WordCamp Europe was fun for most of the time.</p>\n\n\n\n<p>At the end of the day it is a massive event. It&#8217;s our country and we&#8217;re a bunch of people that we had to help to organise a good event, if you know what I mean. It&#8217;s always about giving back. I don&#8217;t have something specific in my mind. I never go out to try to find contacts. I never try to go out and do business or whatever. I just want to give back.</p>\n\n\n\n<p>[00:18:01] <strong>Nathan Wrigley:</strong> Certain sense of pleasure from being there, helping, making sure that it all runs smoothly. I can totally empathise with that.</p>\n\n\n\n<p>Okay so again, thinking about the listeners who have never been to such an event as that. I described the kind of things that might be on offer. You talked about the fact that volunteers, community members, helping out at these events are a crucial part of that puzzle.</p>\n\n\n\n<p>Are you able to just tell us some of the different roles? Now you might just cherry pick some that you know top of your mind. But just to give a flavor of the kind of things that you could be doing should you dip your toes into the water and offer your time at one of these events. What are the kind of things that you might find yourself involved with?</p>\n\n\n\n<p>[00:18:45] <strong>Vagelis Papaioannou:</strong> Well it&#8217;s easy to find something to do on these kinds of events. I mean if you can use Gutenberg you can join the website team. If you can design you can go with the design team. That&#8217;s pretty straightforward.</p>\n\n\n\n<p>But if you just want to volunteer and that means that you will be there at the three days of the event, and you will all be spending time for the event while being there. Which is a different thing than being an organiser, because we had to work like months, several months before the event. So if you just want to be a volunteer you can do so many things from registration, or from helping the sponsors, from making sure everything is okay. From sitting on a corner and waiting for someone to ask you something.</p>\n\n\n\n<p>There are so many roles, and I believe that volunteers are a huge part of any event, even if it&#8217;s WordCamp Europe or a local WordCamp. Without the volunteers we can do nothing. And also we need to make clear that the organisers are also volunteers. I had a chat with multiple people, and it looks like some folks believe that we&#8217;re getting paid or we get something like a benefit or I don&#8217;t know, whatever. But we don&#8217;t, we&#8217;re just volunteers just like the rest of the volunteers and we are all equal during this event.</p>\n\n\n\n<p>[00:20:08] <strong>Nathan Wrigley:</strong> As one of the lead organisers, given that you probably have months and months of work involved in it, well probably years is more the correct way of describing it. But given that you&#8217;ve probably got to make trips to the event, now you mentioned that you don&#8217;t get paid, but is there a system whereby, if you&#8217;re at that level and you&#8217;re organising things and you have to, I don&#8217;t know, let&#8217;s say for example you don&#8217;t live in Greece so you needed to make a journey to Athens. Are there any scenarios in which those things are paid for? Or are you always dipping into your own reserves for the WordCamp organising endeavor?</p>\n\n\n\n<p>[00:20:42] <strong>Vagelis Papaioannou:</strong> I guess you can just look for a sponsor for a company that would like to sponsor you to do that. But in my case I covered everything. I&#8217;m in Greece, I&#8217;m just 500 kilometers away from Athens, so that wasn&#8217;t a big thing. But for other people coming from other countries, and if you consider that this is during summertime, and summertime in Greece the prices are going high, because of the tourism and all that stuff. They have to book hotels just like did, so it&#8217;s a big expense to be fair. I mean, it&#8217;s a few thousand euros to be able to go to venue visits and then go to the event, and stay for a week.</p>\n\n\n\n<p>[00:21:24] <strong>Nathan Wrigley:</strong> Yeah that&#8217;s interesting. I certainly have met people who have been sponsored to attend these events. Yeah thank you for that.</p>\n\n\n\n<p>We should probably also talk about the affordable nature of these events, because typically if you were to go to a three day conference, well in WordCamp&#8217;s case it&#8217;s often two days, and then there&#8217;s something called a contributor day which we&#8217;ll get onto in a minute.</p>\n\n\n\n<p>The cost of these tickets is really low. If you were to attend an event of similar size and scope elsewhere, I feel that you might have a very high ticket price. But WordCamps don&#8217;t have this ticket price. Now I understand that some of the money is offset from the sponsors, but typically they&#8217;re very affordable to attend in the region of, I don&#8217;t know 40, 50, 60 euros, something along those lines.</p>\n\n\n\n<p>So I just wanted to raise that as a point. You don&#8217;t need to have deep pockets if you want to attend. And if you&#8217;ve got local WordCamps it&#8217;s very likely that the cost will be low as well. In fact, in many cases, I think it would be true to say that the cost of your ticket probably wouldn&#8217;t even cover the food.</p>\n\n\n\n<p>[00:22:27] <strong>Vagelis Papaioannou:</strong> You always get your money back. And I mean our local WordCamps cost 25 euros. And you get lunch, you get swag, which swag is really, really important. And when someone goes to WordCamp Europe for the first time and you travel abroad, just bring an extra bag with you. You&#8217;re going to need it. I&#8217;m always bringing an extra bag when I go to WordCamp abroad.</p>\n\n\n\n<p>So yeah you always get your money back. You get coffees, you get refreshments, lunch. WordCamp Europe was 50 euros. It&#8217;s really cheap because if you consider other events of that scale, the ticket could be like 600 euros easily. So yeah these are really cheap events.</p>\n\n\n\n<p>[00:23:09] <strong>Nathan Wrigley:</strong> I&#8217;ll also point out the fact that there are, there&#8217;s quite a few initiatives. Many of them actually I believe begun by a previous WordCamp Europe over many years. So for example, if you have children that you need to be taking with you, that is also something which at WordCamp Europe at least, I can&#8217;t speak about the other ones, there are facilities provided for that.</p>\n\n\n\n<p>And also great lengths have been gone to, to make sure that the events are accessible as possible. So by that I might mean that for example, if you need the use of a wheelchair or something like that, great lengths have gone to to make sure that you can access all of the different parts of the event.</p>\n\n\n\n<p>But also that things like live translations are done, and not by an AI robot sitting in the corner but by a bank of real human beings, and all of those things really, they&#8217;re amazing. I&#8217;m quite proud in a sense that the WordPress community sees those things as important enough to spend the money on, to spend the time on, to get right.</p>\n\n\n\n<p>[00:24:13] <strong>Vagelis Papaioannou:</strong> Yeah that&#8217;s really great. And this is again done by volunteers, so we should just sit back and realise how much work we need to do in order to get these done. This year in Europe we had childcare and we also had workshops for children, which was really great. Every event should be inclusive, and accessibility should be our first concern.</p>\n\n\n\n<p>However this is something that brings a lot of drama into the community for numerous reasons. But yeah we should all help everybody, everyone, every single one to come to WordCamp and have fun.</p>\n\n\n\n<p>[00:24:56] <strong>Nathan Wrigley:</strong> Yeah nice. So I think we&#8217;ve painted a picture there hopefully of an event which is not only affordable, if you can make it there. The cost of the ticket is affordable, but also inclusive. There&#8217;s a whole variety of different things, you don&#8217;t need to be into one particular thing aka code.</p>\n\n\n\n<p>If you want to attend, it&#8217;s very likely that you&#8217;ll meet some people, make some friendships. And in my case I think it&#8217;s fair to say that quite a lot of real, proper, genuine friendships have been built up from chatting to people who were stood next to me that I never knew just five minutes before.</p>\n\n\n\n<p>So they&#8217;re the big events. Now I can&#8217;t remember whether you mentioned whether you&#8217;re a part of a more local meetup, but I think if we could just get into that quickly.</p>\n\n\n\n<p>[00:25:42] <strong>Vagelis Papaioannou:</strong> I&#8217;m organising me and a few friends, I&#8217;m going to call them friends because after all these years I consider them to be my friends. We&#8217;re organising the Thessaloniki meetups, which is a monthly meetup. We try to do presentations. We also have a workshop going on about creating what we called the first community block theme, but we didn&#8217;t do it fast enough. Someone else did that, but that&#8217;s fine. And we also tried to do a few outdoors meetups. The next one is in a month or so in the city near Thessaloniki.</p>\n\n\n\n<p>Local meetups are great. We just have a beautiful small place, sponsored by a local business here in Thessaloniki. We gather once a month, we have some snacks, we have some refreshments, we exchange ideas, we have a laugh, we do the presentation and then everyone goes home. And then we just wait for the next one.</p>\n\n\n\n<p>It&#8217;s really hard to organise these kind of events. It really needs some time to get them done correctly, and it&#8217;s always done by our personal time, so it&#8217;s not that easy. But it&#8217;s fun, and people really like these kind of events.</p>\n\n\n\n<p>Oh, I forgot to mention, these events are free, so anyone can just come and join us. There&#8217;s no ticket or whatever. We do have a sponsor which helps a lot for snacks and refreshments, and we do have another sponsor for the venue, so we&#8217;re pretty much covered and yeah, it&#8217;s fun.</p>\n\n\n\n<p>[00:27:22] <strong>Nathan Wrigley:</strong> Yeah so much more frequent. The cadence is typically I think once a month, something like that. Much more local, so there&#8217;s no accommodation requirements. You just make your way there. Often in the evening when the work day is over. A couple of hours of presentation, like you said a few snacks and that&#8217;s the way it goes.</p>\n\n\n\n<p>So a real nice way to keep up to date with your local WordPressers. And I think these things, once they kickstart themselves after the pandemic, I think really just events like that really do underpin the whole community. Without them I don&#8217;t know where we&#8217;d be in all honesty.</p>\n\n\n\n<p>[00:27:55] <strong>Vagelis Papaioannou:</strong> It&#8217;s an important part of the community, the meetups, I believe.</p>\n\n\n\n<p>[00:27:59] <strong>Nathan Wrigley:</strong> Yeah I think so too. Let&#8217;s move on. Let&#8217;s pivot because we&#8217;ve got something else to talk about. So this is something called the training team. Obviously it&#8217;s connected with WordPress but I wouldn&#8217;t really say that I know too much about this. During the process of this interview hopefully I will be learning a lot about it as well.</p>\n\n\n\n<p>Let&#8217;s just lay the bedrock. What is the training team? What&#8217;s its purpose? How long has it been around? Any place you want to begin there really.</p>\n\n\n\n<p>[00:28:23] <strong>Vagelis Papaioannou:</strong> Well the training team is brilliant. There&#8217;s so much content for anyone and everyone in there. And how I met the training team. A year ago I wanted some resources about our local meetup, and I was talking with someone from the marketing team, and they told me just go to the training team and get some content.</p>\n\n\n\n<p>What&#8217;s a training team? I&#8217;ve never heard of it. And then I joined the training team and I&#8217;ve seen that there are so much good content in there. There are courses, there are lesson plans, there is so much content for all different levels of WordPress users or developers. For the last year it grew so much.</p>\n\n\n\n<p>There are two main things in training team, tutorials and lesson plans. You can follow a tutorial and then something new, or you can get a lesson plan and use it on a local meetup, or on your class and teach the others something new. And in order to do that there are a bunch of volunteers working day and night creating content.</p>\n\n\n\n<p>But most importantly keeping the content up to date, because that&#8217;s the most important thing. Whenever a new version of WordPress comes out and there are changes, we have to go back, review the content and do the appropriate edits. And also because we&#8217;re trying to be inclusive, we want to translate that content, and this is where I fit in. I try to translate as much content as possible in Greek. And I also have on the website in order to do some patterns, to do that translation easier for the translators.</p>\n\n\n\n<p>And now we&#8217;re in the state where we&#8217;re trying to find more people to contribute in translations because if we manage to translate all that content then there is no excuse for someone to say, I don&#8217;t know how to do that because everything is in there. So you can really learn something new every day from the training team. Which, by the way, can be found, this is confusing, at learn.wordpress.org. So training team is a team, but the website is learn, and this is where you go to learn WordPress. That&#8217;s the idea.</p>\n\n\n\n<p>[00:30:41] <strong>Nathan Wrigley:</strong> Do you know if there was a reason if you like, why the team was given a lot more focus and attention more recently? What I&#8217;m wondering is, we spoke a little while ago about the effect of things like the pandemic, and effect that that had on the community. I don&#8217;t know if it&#8217;s coincidental or if it&#8217;s intentional that more effort seems to be being put recently into things like providing training materials.</p>\n\n\n\n<p>There seems to be a lot more of that being created, but I see a lot more of it being mentioned in different parts of the WordPress ecosystem. So I didn&#8217;t know if it was an endeavor just to bolster what we&#8217;ve already got, or if it was trying to react to, I don&#8217;t know, community dwindling, something like that.</p>\n\n\n\n<p>[00:31:21] <strong>Vagelis Papaioannou:</strong> It&#8217;s probably both. I also think that training team has more resources now. By saying resources I mean more people, and more people join every day, and the more people we get the more content we have. And it looks like it&#8217;s getting a lot of support from the community and also the team leads.</p>\n\n\n\n<p>The previous ones,, and the ones we currently have did a really great job. I&#8217;m not going to get into names because I&#8217;m going to forget someone and it&#8217;s not fair. But they&#8217;re all great, and they all did so much about the training team. And I think this is part of the success of the team. It&#8217;s going to get better, I&#8217;m pretty sure about it.</p>\n\n\n\n<p>[00:32:02] <strong>Nathan Wrigley:</strong> Yeah so obviously it&#8217;s putting out content, it&#8217;s keeping that content up to date. WordPress is going through, well certainly in the last several years has gone through some real transformational changes. And it does feel like we&#8217;re with the advent of WordPress 6.2 and 6.3 and probably 6.4, there&#8217;s going to be a lot of changes, made and so communicating those changes is going to be really important.</p>\n\n\n\n<p>You mentioned that the team leads have been great. You also mentioned that there seems to be a steady trickle of people heading in your direction, wanting to help out with the team. How does that team organise itself? How do you come to decisions about, okay, we&#8217;ll make this piece of content, but we won&#8217;t make that piece of content just yet? Where do you meet? How often do you meet? What platforms are you using? And so on.</p>\n\n\n\n<p>[00:32:47] <strong>Vagelis Papaioannou:</strong> Well there&#8217;s a weekly meeting happening in the Make Slack of the training team. If anyone listening to this and doesn&#8217;t use Slack, just download Slack and join. How do we even call that? It&#8217;s always confusing. Well the Make Slack which is where all the WordPress folks are gathering around, and all the teams and all the info. And you can get really mad really quickly because of the massive amount of the information. But don&#8217;t worry about it just join training team. There&#8217;s a weekly meeting there.</p>\n\n\n\n<p>And then we do use GitHub, but don&#8217;t be scared if you hear of GitHub. We don&#8217;t really use it only for coding, we also use it to raise issues. And by raising an issue it can be a lesson plan idea, or a content idea. And this is where all the review is going on, and all of the conversation. And then all of a sudden the content is getting published into the website. It&#8217;s really easy. Everyone can contribute.</p>\n\n\n\n<p>I forgot to mention that I&#8217;m dyslexic. So it&#8217;s really hard for me to do many things related to languages and stuff, but I do manage to contribute successfully on those teams without any problem. And whenever I need a hand, a helping hand, there&#8217;s always someone to help you.</p>\n\n\n\n<p>You can also facilitate an online meetup in training team. That&#8217;s another great thing training team does. We do online meetups, and you can learn how to code custom Gutenberg block using React or JSX. Or you can just learn how to use a block, like the very first steps and one to do using Gutenberg.</p>\n\n\n\n<p>[00:34:29] <strong>Nathan Wrigley:</strong> Yeah I think it&#8217;s really remarkable the rate at which I&#8217;m seeing content being produced. And also a shame in a sense that it doesn&#8217;t get mentioned quite as much as I wish it did. I have to sometimes go looking for these things or subscribe to an RSS feed. But if everybody in the WordPress community was just familiar with that URL, learn.wordpress.org, I think you&#8217;d be hard pressed to find nothing there which should be of interest to you.</p>\n\n\n\n<p>Whether you&#8217;re kind of an expert in building blocks, or whether you just want some primer, some kind of 101 of how to begin using WordPress. It is increasingly an amazing resource. And so bravo for all of the things that are being done there.</p>\n\n\n\n<p>I&#8217;m just curious about the kind of jobs that might be needed, because I&#8217;ve seen video content. So obviously at some point somebody needed to sit down with a screen and record that stuff. But presumably there was some kind of script that was created for that. I&#8217;ve seen lots of written tutorials. I&#8217;ve seen things which you could describe as courses, where you know one thing leads onto another thing, there is isolated bits of content. What kind of tasks are in need of being done to keep that initiative going?</p>\n\n\n\n<p>[00:35:43] <strong>Vagelis Papaioannou:</strong> That&#8217;s a really hard one. I mean everyone can find something to do. You can do the meeting notes, which I can&#8217;t because I&#8217;m dyslexic, but you can. You can do a translation. You can get a lesson plan and translate it. You can create a lesson plan if you have an expertise, or you can create a tutorial. Or if you can create a video tutorial you can get the video and do the transcript.</p>\n\n\n\n<p>You can review the content and test what the lesson plan guides you to do and see if it&#8217;s correct or not. And then provide feedback for the author to correct it, or say, yeah it&#8217;s great just publish it. There&#8217;s so many things from the smallest to the biggest one. And it&#8217;s really easy, even with an hour per week you can really make the difference.</p>\n\n\n\n<p>[00:36:33] <strong>Nathan Wrigley:</strong> I guess the whole imposter syndrome thing may be something that people are concerned about. You know they&#8217;re listening to this and think, do you know what I think I&#8217;ve got something that I want to share, but there&#8217;s probably somebody out there who&#8217;s better at it than me. You know they&#8217;re a better writer or they&#8217;ve got skills for putting videos out there.</p>\n\n\n\n<p>I guess we should address that. Are there any barriers to entry here in terms of the quality of what you&#8217;ve got to produce, or the level of expertise? You know if you are going to be writing or producing materials around, let&#8217;s say, something in WordPress Core, you probably do need to have some decent understanding of how that all works so that the content is actually useful.</p>\n\n\n\n<p>[00:37:09] <strong>Vagelis Papaioannou:</strong> Yeah definitely. Well if you get into coding, I mean if you do a coding tutorial I guess you should just follow the coding standards and all that stuff. But again, if you do a mistake it&#8217;s not the end of the world. Someone will point you out to the right direction and you&#8217;re going to figure it out.</p>\n\n\n\n<p>And as you may already know, and I&#8217;m sure you do, the best way to learn something really deeply is by writing or teaching it. This is the best way if you want to master a craft. If you try to teach it to somewhere else, you get really deep into it. And at the end of the day you will realise your weaknesses and you get better. Or you will realise that you shouldn&#8217;t have that imposter syndrome, which I have really bad.</p>\n\n\n\n<p>[00:37:55] <strong>Nathan Wrigley:</strong> Amazing. You&#8217;ve come on this podcast. Thank you for that. Takes a lot of effort.</p>\n\n\n\n<p>[00:37:59] <strong>Vagelis Papaioannou:</strong> I have to say it&#8217;s not an easy thing, but I mean I&#8217;m dyslexic it&#8217;s not something terrible. It&#8217;s just, okay I may read half your email and I may respond to half of it, or I may mess a few characters. But other people may get these as a weakness and step back because they have something like that. We have people in WordPress community that they can&#8217;t even see and they code daily, which is a massive thing.</p>\n\n\n\n<p>If you consider that there&#8217;s a person without sight who can create some kind of code which is what they do for a living. Why should I stay back because I have that minor thing? And people shouldn&#8217;t just stay back. Just join the community. If you know one thing to do just say, yeah I&#8217;m good at it, and you&#8217;ll find someone to pair with and create something really good and helpful for others.</p>\n\n\n\n<p>[00:38:56] <strong>Nathan Wrigley:</strong> What a cheery episode this has been. I really enjoyed this. And we talked about these fabulous events which you can get yourself involved in. Potentially make some real meaningful friendships and learn lots of things. But also pivoted to talk about the learn.wordpress.org, the training team if you like, and all of the free resources that are over there. A sort of sub community, if you like, of people there that you can also make friends with, and become part of the training team setup.</p>\n\n\n\n<p>If somebody has been listening to this today and has thought to themselves, do you know what, maybe that&#8217;s for me, I&#8217;m going to give it a go. Whether that&#8217;s organising an event or becoming interested in training and all of that kind of thing. Let&#8217;s tackle the training team bit first. Where would you advise people to go? You mentioned obviously Slack but I wondered if there was somewhere else that you wanted to mention as well.</p>\n\n\n\n<p>[00:39:44] <strong>Vagelis Papaioannou:</strong> If you don&#8217;t want to join Slack yet, just go to learn.wordpress.org, and this is the main website. And at the very bottom of your screen you&#8217;ll find the CTA. Have an idea for your content? Let us know. Apply to present a tutorial. Submit the topic idea. Just click any of those buttons. And on top of that there&#8217;s another block which says get involved, learn how to contribute. And you get all the info from there. It&#8217;s really easy. And there&#8217;s nothing scary into the process of being part of the team. There are all really welcoming and we&#8217;re really all good people. Well most of us.</p>\n\n\n\n<p>[00:40:24] <strong>Nathan Wrigley:</strong> Yeah thank you. And then pivot that to events, meetups and WordCamps. Where would you point people if they want to begin that journey?</p>\n\n\n\n<p>[00:40:32] <strong>Vagelis Papaioannou:</strong> Well I guess from their local community. Also be aware that you may see that there are a few faces that are again and again on the same event. An example, I&#8217;ve done a presentation at WordCamp Athens 2022. I&#8217;ve done one in 2021 I guess. I can&#8217;t remember. And then I did one in 19.</p>\n\n\n\n<p>This is not because I&#8217;m special or something. This is because you didn&#8217;t apply. If you apply. You may get up there. We need help. We need more people. We need more organisers. We need more people to do presentations, more speakers if you want to. Don&#8217;t block yourself, just find your local community, get in touch with them, apply to facilitate an event, apply as a speaker.</p>\n\n\n\n<p>It&#8217;s really easy. And even if you don&#8217;t get approved at the first time you apply as a speaker just do it again. Try again. It&#8217;s not the end of the world and it&#8217;s not personal. It&#8217;s probably because that specific event had too many applications, or maybe your presentation was too specific to something.</p>\n\n\n\n<p>I mean I&#8217;m a coder but I&#8217;m not going to do a really deep, deep coding presentation because I know most folks are not coming for that on a local WordCamp, and they kind of get bored and we need to sell these tickets. So we had to do some funny presentations coding wise, but not just open your terminal people, type npm install and do that stuff. Yeah you know what I mean?</p>\n\n\n\n<p>[00:42:09] <strong>Nathan Wrigley:</strong> If somebody has been listening to this podcast, this is more particular to you, where, if you wish to share that is, where would people be able to contact you? Perhaps you&#8217;ve got a website that you want to mention or a, I don&#8217;t know, a social media handle that you feel is a good way for people to get in touch.</p>\n\n\n\n<p>[00:42:25] <strong>Vagelis Papaioannou:</strong> I do have a website which I made at WordCamp Athens some year. I can&#8217;t remember. It was a presentation about headless WordPress, which was really good back then when people started to freak out about Gutenberg. And I don&#8217;t use it at all, so there&#8217;s no content in there, so don&#8217;t use that.</p>\n\n\n\n<p>Find me on GitHub. My username is vagelisp. Or on Twitter, and my handle on Twitter, it&#8217;s VagPapDev. Yeah that&#8217;s hard. V A G P A P D E V. That&#8217;s my Twitter handle. You can find me there. And of course on any of the Make Slack channels as Vagelis. And on Greek community Facebook and Slack channels as Vagelis as well.</p>\n\n\n\n<p>Some may spot it that my name is spelled wrong and you may seen this with an n, Vangelis. I just don&#8217;t like it with a name. It&#8217;s my name. I&#8217;ll write it however I want.</p>\n\n\n\n<p>[00:43:20] <strong>Nathan Wrigley:</strong> Thank you so much for joining us on the podcast today. I do hope that you get some people reaching out. That would be really great. I appreciate it. Thank you so much.</p>\n\n\n\n<p>[00:43:27] <strong>Vagelis Papaioannou:</strong> Thanks for having me. It was really fun. And I really hope someone got something out of it, and someone got the boost, they may wanted to join their local community.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/VagPapDev\">Vagelis Papaioannou</a>.</p>\n\n\n\n<p>Vagelis is a software engineer from Greece. His journey with coding began during his elementary school years, in an experimental coding class. This sparked a lifelong passion within him. His love for WordPress dates back to the early versions. For the last eight to nine years, he has actively participated in the Greek WordPress community, engaging in various roles such as organising WordCamps and meetups. Vagelis also contributes to multiple teams, cherishing the small contributions that allow everyone to make a difference. He also serves as the Project Translation lead for the Greek language.</p>\n\n\n\n<p>Vagelis, although a self confessed introvert, shares his initial struggles with being a part of the community and attending local meetups. He encourages people to step outside their comfort zones and attend events like WordCamps and meetups, where they’re likely to discover a welcoming and friendly atmosphere.</p>\n\n\n\n<p>Vagelis recounts his own experience of attending such events, initially feeling scared, but eventually having an enjoyable time, making many lasting friendships along the way. He talks about how local meetups are more casual gatherings than WordCamps. People come together to talk about WordPress, learn, and spend time with like-minded individuals. From meetups by the sea to forest walks, these events offer opportunities for both education and social engagement.</p>\n\n\n\n<p>On the subject of WordCamps, Vagelis unravels the magic behind these larger, multi-day events with presentations and a contributor day. He emphasises that contribution to the community doesn&#8217;t necessarily require coding skills, and encourages more people to get involved. WordCamps are not only platforms for learning and exchanging ideas, but they also provide a space for attendees to have fun, network, and explore all manner of other opportunities.</p>\n\n\n\n<p>We talk about the importance of the code of conduct at WordCamps. This code ensures that participants know that they are going to have a safe and inclusive experience. With attendees joining from all corners of the globe, these events attract a diverse range of individuals who are passionate about the software and the community.</p>\n\n\n\n<p>We then talk about the effort required to organise these events, Vagelis explains why he’s willing to dedicate his time and energy to be part of such complex projects. He talks about the benefits participants gain from taking an active role, whether as organisers, speakers, or volunteer. As Vagelis shares his personal experiences in organising and participating in events like WordCamp Athens, he strongly advocates for more community involvement and highlights the need for new organisers to get involved to allow the community to meet up once again.</p>\n\n\n\n<p>We then get into a discussion of other ways that you can be involved, this time in the Learn project, which is making freely available materials so that people can learn about WordPress at a time that suits them.</p>\n\n\n\n<p>Vagelis talks about what the Learn team does and how you can join them. He discusses how the team works, using GitHub for collaboration and accommodating individuals with various skills and abilities. From the educational content available on the learn.wordpress.org website, to the valuable connections made through hallway chats, Vagelis emphasises the power and importance of the WordPress community.</p>\n\n\n\n<p>If you&#8217;re a seasoned WordPress enthusiast or just starting your journey in contributions, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a></p>\n\n\n\n<p><a href=\"https://github.com/vagelisp\">Vagelis&#8217; GitHub</a></p>\n\n\n\n<p><a href=\"https://twitter.com/VagPapDev\">Vagelis&#8217; Twitter</a></p>\n\n\n\n<p><a href=\"https://www.facebook.com/groups/WordPressGreekCommunity/\">Greek Community Facebook Group</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Sep 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WPTavern: WP Tavern Launches Forums\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148993\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wptavern.com/wp-tavern-launches-forums\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2617:\"<p>WP Tavern is <a href=\"https://wptavern.com/forums\">launching forums</a> today. If you have ever sat up all night with a feverish infant, searching for answers on a mommy messaging board, hunted down solutions for obscure bugs, or wasted an entire afternoon on a subreddit, then you know that forums are not dead. </p>\n\n\n\n<p>Since the early days of BBSes (<a href=\"https://en.wikipedia.org/wiki/Bulletin_board_system\">Wikipedia link</a> for you young whippersnappers), which housed prototypical forums before the advent of the World Wide Web, modern forums have evolved and established themselves as a stalwart, timeless medium for asynchronous communication, fostering communities, and sharing knowledge among individuals with diverse interests and needs.<br /><br />Today we will begin exploring how forums can help expand conversations that originate on the Tavern, especially within the comments of a post. Our new forums are powered by bbPress, which enables readers to create discussions by visiting the comment section of an article and clicking on “Create forum topic from comment” based on comments that you find particularly insightful.</p>\n\n\n\n<p>Under the forum called “<a href=\"https://wptavern.com/forums/forum/discussions\">Discussion</a>” you will find topics that have been created based on article comments. This offers readers a way to engage further with comments that spark larger discussions, long after the article has been published and comments have closed. This feature is available alongside traditional bbPress forums where logged-in users can create topics.</p>\n\n\n\n<p>If a forum topic already exists for a comment, a link labeled “Continue Discussion in Forum” will appear on that topic, leading to the ongoing forum discussion. This prevents people from creating multiple forum topics from a single comment. These topics will include a link back to the original comment at the top of the thread. It is also still possible to add regular (non-forum) replies to comments as usual.</p>\n\n\n\n<p>Readers must be <a href=\"https://wptavern.com/register\">registered and logged in</a> order to post on the forums. At this time, topics and replies will continue to be moderated before they are published. We have tried wild west commenting style in the past and it doesn&#8217;t work well for raising the level of discourse and engagement that we hope to have in our forums. Come <a href=\"https://wptavern.com/register\">join us</a>, <a href=\"https://wptavern.com/forums/forum/introductions\">introduce yourself</a>, and <a href=\"https://wptavern.com/forums\">start some new topics</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Sep 2023 17:48:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Do The Woo Community: Elevating the Entrepreneurial Spirit with Colin Daniels\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76563\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://dothewoo.io/elevating-the-entrepreneurial-spirit-with-colin-daniels/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:433:\"<p>Colin, co-founder of FooSales and FooEvents, walks us through the product journey with his WordPress and WooCommerce plugins.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/elevating-the-entrepreneurial-spirit-with-colin-daniels/\">Elevating the Entrepreneurial Spirit with Colin Daniels</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Sep 2023 09:48:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WPTavern: Openverse Wins 2023 Open Education Award, Seeks Community Feedback for 2024 Roadmap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148845\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/openverse-wins-2023-open-education-award-seeks-community-feedback-for-2024-roadmap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3060:\"<p>Openverse has landed an <a href=\"https://awards.oeglobal.org/awards/2023/open-infrastructure/openverse/\">Open Education Award for Excellence</a> in the Open Infrastructure category. <a href=\"https://www.oeglobal.org/\">Open Education Global (OEG)</a> is a non-profit organization that supports the use of open education to expand education access and affordability. Its annual awards recognize outstanding contributions to the Open Education community and its network of resources.</p>\n\n\n\n<p>Openverse is one of 16 winners selected from more than 170 applicants. The award reviewers suggested Openverse &#8220;should be the primary recommended search for OER development,&#8221; due to its clear licensing and easy, one-click attribution, among other features:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>That easy attribution feature (one-click copy for a full formed Creative Commons attribution) might be reason enough for an award, but the features to filter searches by source collections and other parameters (image orientation, specific license) provides seekers of open content important affordances to find clearly licensed media they can reuse.</p>\n\n\n\n<p>Openverse should be the primary recommended search for OER development, as the licensing is explicitly clear, not subject to third party owners writing their own license), being of great value for projects that mix content from multiple sources. </p>\n</blockquote>\n\n\n\n<p>Openverse has made significant progress since coming under the WordPress project&#8217;s umbrella. In the past year, the team has <a href=\"https://github.com/WordPress/openverse/issues/394\">added usage analytics</a>, <a href=\"https://github.com/WordPress/openverse/issues/415\">made major improvements to its user interface</a>, <a href=\"https://github.com/WordPress/openverse/issues/386\">moved Openverse out of an iFrame</a>, <a href=\"https://github.com/WordPress/openverse/issues/377\">added filtering and blurring of sensitive results</a> (nearing completion), among many other technical improvements. The team is requesting feedback as they begin planning the 2024 roadmap.</p>\n\n\n\n<p>&#8220;This project thrives on collaboration, and as we begin plotting our course for 2024, we want to hear from <em>you</em>,&#8221; Automattic-sponsored Openverse data engineer Madison Swain-Bowden said. &#8220;Have an idea that could improve Openverse? Noticed a feature gap we haven’t addressed? Have suggestions to improve existing features? We are eager to hear all about it!&#8221;</p>\n\n\n\n<p>Anyone who wants to contribute a proposal regarding Openverse&#8217;s future can publish a comment to the team&#8217;s blog <a href=\"https://make.wordpress.org/openverse/2023/09/15/openverse-2024-planning-we-want-your-ideas/\">post requesting feedback</a>. For more information about Openverse&#8217;s current projects and those that are on hold, check out the <a href=\"https://make.wordpress.org/openverse/2023/08/28/openverse-monthly-priorities-meeting-2023-09-06/\">notes</a> from the team&#8217;s most recent monthly meeting.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Sep 2023 22:00:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: New Plugin Adds Citations and Bibliography Block to WordPress Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148756\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/new-plugin-adds-citations-and-bibliography-block-to-wordpress-editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2984:\"<p><a href=\"https://wordpress.org/plugins/citations/\">Citations</a> is a new plugin created by <a href=\"http://www.wp-munich.com/\">WP Munich</a> and the team at <a href=\"http://www.luehrsen-heinrich.de/\">Luehrsen // Heinrich</a>, a German WordPress agency. It makes it easy to create in-text citations and assign them a specific source. Most of the existing plugins that do this are for older versions of WordPress. This one is created specifically for those using the block editor.</p>\n\n\n\n<p>Citations introduces a new menu item to the rich text formatting toolbar. Users can highlight the text they want to cite, click &#8216;Cite&#8217; in the toolbar, and then define the source in the pop-up by inputting the source information into the fields provided.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1920\" height=\"1080\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/citations-plugin.png\" alt=\"\" class=\"wp-image-148946\" />\n\n\n\n<p>The Citations plugin includes one Bibliography block, which will be automatically populated with all the sources of the in-text citations added in the content. Citations are linked to the corresponding source inside the Bibliography block. The block can be positioned anywhere in the document, although readers likely expect it at the bottom.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1920\" height=\"1080\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/bibliography-block.png\" alt=\"\" class=\"wp-image-148949\" />\n\n\n\n<p>Users can edit the citations and the sources in the Bibliography block by clicking on them.</p>\n\n\n\n<p>What&#8217;s the difference between citations and WordPress&#8217; core Footnotes block?  Although both are used in academic and scholarly writing to provide references and additional information about sources used in a document, there are a few key differences. </p>\n\n\n\n<p>Citations credit the original source of the information with all the source details in the bibliography at the end of the document. Footnotes are  more flexible in that they can include additional context or comments at the bottom of the document, to keep the text from becoming too cluttered with explanatory notes. They may also be used to source citations with the author, title, and publication details, but do not always follow the bibliography format.</p>\n\n\n\n<p>The Citations plugin also includes a pattern that will insert some Lorem Ipsum paragraphs with citations and a sample bibliography with sources at the bottom. This gives users an idea of how the plugin can be used to structure a document for citing sources, if they are just getting started. Users can search for &#8220;Citations Demo&#8221; in the pattern search bar to find it.</p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/citations/\">Download the plugin</a> for free from WordPress.org, or give it a <a href=\"https://playground.wordpress.net/?plugin=citations\">test drive using WordPress Playground</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Sep 2023 17:43:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WordPress.org blog: WP Briefing: Episode 62: Enterprise Clients and the Business of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=15971\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wordpress.org/news/2023/09/episode-62-enterprise-clients-and-the-business-of-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16337:\"<p>Join WordPress Executive Director Josepha Haden Chomphosy as she discusses the role WordPress Enterprise plays along with the WordPress community.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br />Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br />Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li>The 2023&nbsp;<a href=\"https://communitysummit.wordcamp.org/2023/\">Community Summit</a>&nbsp;in Washington, DC</li>\n\n\n\n<li><a href=\"https://wordpress.org/enterprise/\">WordPress Enterprise</a></li>\n\n\n\n<li><a href=\"https://beta.nasa.gov/\">NASA Website (beta)</a></li>\n\n\n\n<li><strong>A small list of big things</strong> (SLBT)\n<ul>\n<li><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2023/09/07/evolving-the-fse-outreach-program/\" target=\"_blank\">Evolving the FSE Outreach Program</a>&nbsp;&#8211; With WordPress 6.3 bringing Phase 2 to completion, it’s time for the FSE Outreach Program to evolve alongside the broader WordPress project and needs.</li>\n\n\n\n<li><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2023/08/31/proposal-an-update-to-the-field-guide/\" target=\"_blank\">Proposal: An update to the Field Guide</a>&nbsp;&#8211; This proposal is one step, but not necessarily the only step, at improving communication around WordPress releases and making it easier for WordPress updates to instill confidence.</li>\n\n\n\n<li>We are still looking to receive more&nbsp;<a rel=\"noreferrer noopener\" href=\"https://wordpressdotorg.survey.fm/next-generation-of-wordpress-events\" target=\"_blank\">ideas on the future of WordPress events</a>&nbsp;&#8211; We have brought this up in the past, but there is still time to submit ideas.</li>\n\n\n\n<li><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/support/2023/08/proposal-for-updated-support-guidelines/\" target=\"_blank\">Proposal for updated support guidelines</a> &#8211; As these result from work during WordCamp Us 2023, if you are at the venue and wish to discuss something, please feel free to reach out.</li>\n\n\n\n<li> <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2023/09/05/call-for-testing-performant-translations/\" target=\"_blank\">Call for Testing: Performant Translations</a> &#8211; Provide your feedback; if you encounter any issues or have questions about the plugin, please comment or open a new support topic. In addition to that, <a rel=\"noreferrer noopener\" href=\"https://github.com/swissspidy/performant-translations\" target=\"_blank\">contributions can be made on GitHub</a>.</li>\n\n\n\n<li><a rel=\"noreferrer noopener\" href=\"https://www.eventbrite.com/e/speaker-workshop-for-indian-women-in-the-wordpress-community-sept-23-24-tickets-633636773647\" target=\"_blank\">WordPress Diversity Training</a> &#8211; This is a 2-day workshop for women in India (other countries are welcome to join us, too) who are considering speaking at a WordPress Meetup or WordCamp.</li>\n\n\n\n<li><a rel=\"noreferrer noopener\" href=\"https://www.meetup.com/antelope-valley-wordpress-meetup/events/295817501\" target=\"_blank\">Let&#8217;s talk about WordPress</a>! &#8211; The WordPress Community team is looking for some folks to take the lead in hands-on organizing your Meetups</li>\n\n\n\n<li><a href=\"https://wpincludes.me/\">WP Includes</a></li>\n\n\n\n<li><a href=\"https://www.meetup.com/philadelphia-wordpress-meetup-group/events/296006705\">WordPress Insights</a>: WCUS Recap and WCEU Vision with Ruth Kalinka</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-15971\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello everyone. And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it. And get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>(Intro Music)&nbsp;</p>\n\n\n\n<p>[00:00:29] <strong>Josepha:</strong> In our last episode, we talked about the Community Summit and some trends that I was seeing. I&#8217;ve spent a lot of time since then summarizing the notes from each session, and I was processing notes from the session about aligning WordPress Enterprise and WordPress Community, which is a session that explored the various strengths and weaknesses of WordPress from an enterprise perspective, but especially when it comes to contributing to or communicating about WordPress.</p>\n\n\n\n<p>Now, my vantage point on analyses like these is generally pretty different. Since I work mainly in an operations space for the project, I&#8217;m almost always looking at the health and safety of our ecosystem, product excellence, funding, things like that. So, I especially like to attend sessions that are from the vantage point of people who are much closer to the work than I am.</p>\n\n\n\n<p>[00:01:15] <strong>Josepha:</strong> When I looked at the brainstormed list of things from the session, my first inclination was to catalog the relationships between what we saw as a positive or a negative and the things that we saw as intrinsic to us versus part of the environment. But the more I look at it, the more I see that there&#8217;s confirmation of what I have always known to be true. That WordPress is a valuable starting point for web-based solutions of all sizes and any purpose. Let&#8217;s take a look at some of the biggest themes that shine through from that session. I was able to distill them down to about nine primary themes, but I especially want to focus on some that come up year after year in talking with our community.</p>\n\n\n\n<p>[00:01:57] <strong>Josepha:</strong> The first, of course, is the community and ecosystem. If you&#8217;ve listened to this podcast 62 times, then you&#8217;ve heard me say at least like 60 times that the community is what sets us apart from other open source projects. But, I would encourage you to expand that understanding to include the ecosystem that the community provides.</p>\n\n\n\n<p>The community not only helps to plan and create WordPress, our primary software, but it also makes it distributable through the Polyglots team and Accessibility and Docs and Training. It also makes it extendable through plugins and themes and all of the work that goes into reviewing plugins and themes and the support that&#8217;s provided to people who come to the WordPress.org site, trying to figure out how to make this thing work for them.</p>\n\n\n\n<p>And we also, this community, make it knowable, not only through the community part with our event series but also in marketing and the videos that we provide on WordPress TV and all of the training and learning cohorts that we provide on learn.WordPress.org, all of those teams make WordPress learnable and knowable and easy to use and usable to more people and available across the world, regardless of whether you speak English or not. And so yeah, the community and the ecosystem are some of the things that makes WordPress valuable for enterprise, but also WordPress valuable in general. </p>\n\n\n\n<p>[00:03:24] <strong>Josepha:</strong> The second is the software&#8217;s usability and flexibility. I said at WordCamp US that we exist for as long as people want to use our software, and that&#8217;s a funny little two-sided coin for us. WordPress remains very usable for folks who come to it in the same way that I came to it, which is as a user who is trying to accomplish a goal unrelated to WordPress. I didn&#8217;t start using WordPress because I wanted to figure out how WordPress worked or because I wanted to figure out how to contribute to WordPress. I came to WordPress because I was trying to market something, and WordPress was the best choice for that. But it&#8217;s also flexible for our brilliant developers out there who are doing things like building a suite of sites for NASA or creating bespoke social networks. So, our usability and flexibility, both of those things working together, are certainly one of the things that make me know that WordPress is incredibly valuable for anyone who needs to use it.</p>\n\n\n\n<p>[00:04:22] <strong>Josepha:</strong> But the final thing is WordPress&#8217;s longevity or our resilience. So, I used to work at a marketing agency that served enterprise-level clients. And any time we pitched a new site build to a client, one of the main elements of discussion during decision-making was how long the decision would last. Do you want a page that you can launch in a day, run a six-week campaign through, and then abandon it forever? Or do you want a site that can take up to six weeks to build but can be yours to refine and hone for years after that? I know this seems like a silly example, but when you&#8217;re looking at the potential for a long-term bet, what you&#8217;re worried about, what you&#8217;re asking is, is this a software trusted in my industry? Is it time-tested by those companies I aspire to be? Is the available workforce composed of seasoned professionals or flash-in-the-pan peddlers of the latest craze? And of that workforce, how many will still be doing this in five years? </p>\n\n\n\n<p>The question of how long we&#8217;ve been doing this and why it matters that WordPress has been here for 20 years and has no intention of going anywhere should be so much higher on everyone&#8217;s list of reasons to use this software. Yes, the WordPress software is powerful enough to be everything you might want it to be someday, but the WordPress ecosystem brought to us by this community has shown resilience through major breaking changes in 2008, 2016, 2018, 2020, and probably a lot of things between there that we have forgotten. So, if I were hoping to hedge my bets on a long-term solution, I would absolutely place those bets on this community, this ecosystem, and this software.&nbsp;</p>\n\n\n\n<p>(Music interlude)&nbsp;</p>\n\n\n\n<p>[00:06:17] <strong>Josepha:</strong>&nbsp;</p>\n\n\n\n<p>And now, it&#8217;s time for our small list of big things. I actually have a very big list today, so I&#8217;m just gonna break it out into two chunks. The first chunk is that we actually have a lot of calls for feedback and testing right now. We have six calls for feedback and testing that I really could use your input on.</p>\n\n\n\n<p>The first one is that we still are having that discussion about how to evolve the FSE outreach program. That program started as a way to get faster, more fluid user feedback, specifically about full site editing inside Gutenberg. But there is a question now about where it needs to exist, how it&#8217;s serving current project needs, and what the future project needs will be. And so stop by that one. That should be a good, lively discussion.&nbsp;</p>\n\n\n\n<p>[00:07:06] <strong>Josepha:</strong> Speaking of discussions that are lively, we also have an update to the field guide. We have a proposed update to the field guide. This is not something that we&#8217;re looking to put in place for WordPress 6.4, just because that is coming so quickly. But it is something that we want to look at for future iterations of the field guide that come out with every major release. We want to make sure that we&#8217;re getting valuable information to the right people at the right time without having so much that it&#8217;s overwhelming but also without having so little that we miss really important things.&nbsp;</p>\n\n\n\n<p>[00:07:47] <strong>Josepha:</strong> There is another request for feedback, which is about additional ideas on the future of WordPress events. I brought this up in the past. I think I mentioned it on one other small list of big things, but there&#8217;s still time. So, if you&#8217;ve been shy about sharing your ideas, let this be your sign to get brave. Go share your thoughts on what events of the future should be for us.&nbsp;</p>\n\n\n\n<p>[00:08:03] <strong>Josepha:</strong> There&#8217;s also a proposal for updated support guidelines. This proposal comes out of a discussion that was had at WordCamp US, and so there is a summary of the discussion and then also the proposal that&#8217;s out there. I think that for all guidelines like this, support guidelines, and probably all things that require some review from ourselves, we always could stand to take a look at where those are, what brought us to where we are today, and what we can use to be better and more current in our client&#8217;s needs and our customers needs users needs as we are looking through those guidelines I think that the deadline for feedback on that is around the middle of September as well.&nbsp;</p>\n\n\n\n<p>[00:08:47] <strong>Josepha:</strong> And then the final bit of feedback/call for testing is on performant translations. That is a testing call for feedback. Contributions to that can be made on GitHub as well if that&#8217;s something where you test it and you immediately know how to offer some patches to make things better. That&#8217;s great, but you can always just leave your feedback in a comment or a new support topic.&nbsp;</p>\n\n\n\n<p>[00:09:19] <strong>Josepha:</strong> Okay, so that was the first chunk of the small list of big things. We have the second chunk of the small list of big things, which is to say that if all of that was new to you and sounds a little bit daunting and, you need some support to get started. There are also a couple of kind of group things that you can do in the coming weeks to get you started on that.&nbsp;</p>\n\n\n\n<p>There is a new WordPress diversity training session that&#8217;s happening. It&#8217;s a two-day workshop for women, specifically in India, but other countries are welcome to join us, too. We&#8217;ll be thinking about how to pull together your first presentation proposal, I believe.</p>\n\n\n\n<p>The next one is that the WordPress community team is looking for folks to learn more about organizing meetups. And so, I&#8217;ll include a link to that in the show notes as well, but if you&#8217;ve never done this before and that did not sound like a getting started thing, trust me, organizing meetups not only is something that is easy to do because it&#8217;s kind of casual, you can get people together like in a coffee shop to talk about WordPress, but also the team over there has excellent onboarding. And so give it a try; at the very least, give it a read.&nbsp;</p>\n\n\n\n<p>The third thing on that set of things is that there&#8217;s a new group called WP Includes working to pair women in the WordPress community with one another for support and advice along their career paths. I will include a link to that in the show notes as well.</p>\n\n\n\n<p>And then the final thing is that there is a meetup event that&#8217;s focused on flagship events coming up on September 21st. It will recap WordCamp US and host an open discussion for ideas for WordCamp Europe as well. Like I said, that&#8217;s going to take place on September 21st. I will include a link to that in the show notes as well.</p>\n\n\n\n<p>[00:11:04] <strong>Josepha:</strong> If you don&#8217;t know where the show notes are, if you, sorry, if you&#8217;re listening to this on, like, Pocketcasts or Spotify or any other thingy, and you don&#8217;t know what I mean when I say the show notes, and you&#8217;ve literally never seen them in your life. You can go to WordPress.org/news/podcast, and there are transcripts and show notes with every podcast I put up, and that&#8217;s what I mean when I say that. WordPress.org/news/podcast, and then you get a bunch of links. It&#8217;ll be great.&nbsp;</p>\n\n\n\n<p>That, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.<br /></p>\n\n\n\n<p>(Outro music)</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Sep 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Do The Woo Community: AI, WordPress and Woo with Alain Schlesser, Bud Kraus and Mark Westguard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76557\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://dothewoo.io/ai-wordpress-and-woo-with-alain-schlesser-bud-kraus-and-mark-westguard/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:469:\"<p>Bud Kraus and Mark Westguard chat with Alain Schlesser about his story, and a look at AI, from coding to ecommerce to the ethics.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/ai-wordpress-and-woo-with-alain-schlesser-bud-kraus-and-mark-westguard/\">AI, WordPress and Woo with Alain Schlesser, Bud Kraus and Mark Westguard</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Sep 2023 09:07:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"Gutenberg Times: Block Art and Attributes, Gato GraphQL and Command Palette – Weekend Edition 268\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25616\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://gutenbergtimes.com/block-art-and-attributes-gato-graphql-and-command-palette-weekend-edition-268/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15713:\"<p>Howdy, </p>\n\n\n\n<p>Are you also enjoying that last few weeks of summer-like weather in Europe? How is the weather in your part of the world? After I finish this newsletter, I&#8217;ll take a walk through the forest. I haven&#8217;t done this for a long time: <em>shinrin-yoku</em> (<a href=\"https://www.nationalgeographic.com/travel/article/forest-bathing-nature-walk-health\">Forest bathing</a>) is good for the soul.  The forest behind my mother&#8217;s house has been familiar and hardly changed since I was a kid and lived with my grandmother in the same house. What is your favorite ritual to recover from many hours of screen time during the week? <a href=\"mailto:pauli@gutenbergtimes.com\">Hit reply</a> or share in the comments.</p>\n\n\n\n<p>Today&#8217;s newsletter has a little bit about WordPress 6.4 and, block building, much more about theme building and also looking a little bit beyond WordPress with GraphQL and Transformer. </p>\n\n\n\n<p>I hope you enjoy it all this week again! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Anne McCarthy</strong> held a Hallway Hangout: To <a href=\"https://make.wordpress.org/test/2023/09/13/hallway-hangout-lets-chat-about-the-wordpress-6-4-evolving-the-fse-outreach-program/\">chat about the WordPress 6.4 &amp; Evolving the FSE Outreach Program</a> and published a summary with the recording. She goes over the roadmap 6.4 post and identifies the state of the features. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his fortnightly updates, <strong>Joen Asmussen</strong> lists the work by the WordPress Design team. In <a href=\"https://make.wordpress.org/design/2023/09/11/design-share-aug-28-sep8/\"><strong>Design Share: Aug 28-Sep8</strong></a> he highlighted: </p>\n\n\n\n<ul>\n<li>Interface for unlinking a style from inherited source&nbsp;</li>\n\n\n\n<li>Refresh of the Hosting page</li>\n\n\n\n<li>Sketch of a dismissible notification that lets you install missing fonts from the library.&nbsp;</li>\n\n\n\n<li>Templates table</li>\n</ul>\n\n\n\n<img width=\"652\" height=\"367\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/09/Screenshot-2023-09-16-at-12.58.25.png?resize=652%2C367&ssl=1\" alt=\"\" class=\"wp-image-25631\" />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>🎙️ </strong> Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-89-gutenberg-16-6-font-library-default-theme/\">Gutenberg Changelog #89 – Gutenberg 16.6, default theme and Font Library</a> with Nadia Maya Ardiani  as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<p>In her post on <a href=\"https://make.wordpress.org/core/2023/09/12/core-editor-improvement-commanding-the-command-palette/\"><strong>Core Editor Improvement: Commanding the Command Palette</strong></a> <strong>Anne McCarthy</strong>&nbsp;dives deep into the latest updates to the Command Palette, a new tool available with WordPress 6.3 designed to speed up your workflow.&nbsp;With work underway for WordPress 6.4, she gave a peek preview of what&#8217;s in store for the next iteration of this new option in your WordPress creation experience and a reminder of what it’s capable of already.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Anne McCarthy</strong> takes a behind the scence stroll on how the Museum for Block Art collaborated with the organizers of WordCamps to highlight some of the art. <a href=\"https://block-museum.com/2023/09/11/from-pixels-to-reality-celebrating-wordcamp-eu-wordcamp-us-exhibits/\">From Pixels to Reality: Celebrating WordCamp EU &amp; WordCamp US Exhibits</a></p>\n\n\n\n<img width=\"652\" height=\"326\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/09/you-are-getting-sleepy_screenshot.png?resize=652%2C326&ssl=1\" alt=\"You are getting sleepy by Ramon James\" class=\"wp-image-25624\" /><a href=\"https://block-museum.com/2022/03/10/you-are-getting-sleepy/\">You are getting sleepy by Ramon James</a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>My long-time friend <a href=\"https://twitter.com/JenSwish\">Jen Swisher </a>takes you along the journey of <a href=\"https://jetpack.com/blog/wordpress-switch-from-classic-to-block-theme/\"><strong>How to Switch from a Classic Theme to a Block Theme in&nbsp;WordPress</strong></a>. She explains first the option you have, and more importantly why you might consider switching. Then she goes into more practical steps on how to accomplish a migration from your current classic theme to a block theme. Eventually, I will have to follow on a similar path when converting Gutenberg Times to a block theme. At the moment I am unable to focus on such a task, but maybe I can sequester myself for a weekend and get it done. Have you made the jump yet? What did you encounter, are there any pitfalls, that surprised you? </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Munir Kamal </strong>of Gutenberg Hub released the new <a href=\"https://shop.gutenberghub.com/query-taxonomy-filter-block/\"><strong>Query Taxonomy Filter Block</strong></a> to provide users and theme builders a way to extend the functionality of the core query loop. It&#8217;s a premium plugin that expands the capabilities of the core query block for more complex layouts and multiple filter options. It also offers a variety of display controls or facets and customization features.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>On his podcast, <em><a href=\"https://podcasts.apple.com/us/podcast/within-wordpress/id1684480798\">Within WordPress</a></em>, <strong>Remkus De Vries</strong> had a chat with <strong>Ian Svoboda</strong> about creating courses for the WordPress ecosystem and a lot more: <strong><a href=\"https://www.youtube.com/watch?v=17KJ5TLfuVY\">On Block Themes, Custom Block development and a whole lotta WP CLI</a>. </strong>The conversation about Block Themes starts at the <a href=\"https://youtu.be/17KJ5TLfuVY?feature=shared&t=788\">13:04 timestamp</a> (On the YouTube version.) Happy to hear the shout-outs to Fabian Kägy and Aurooba Ahmed, as well as the HTML Processor. The discussion of static vs. dynamic blocks, nothing new, but always interesting to hear other developer perspectives. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong> announced the next phase for the Theme builders documentation overhaul: <a href=\"https://make.wordpress.org/themes/2023/09/15/theme-handbook-overhaul-phase-3-publishing-content/\"><strong>Theme Handbook Overhaul: Phase 3 (Publishing Content)</strong></a> and asked for public review of the last drafts of chapters. The <a href=\"https://github.com/WordPress/Documentation-Issue-Tracker/issues/816\">tracking ticket </a>leads you to the single chapters for your perusal. Helping improve documentation is an excellent way to take a deep dive into building block themes. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On this week&#8217;s Loop podcast, host <strong><a href=\"https://twitter.com/cr0ybot\">Cory Hughart</a></strong> talked to Justin Tadlock on <strong><a href=\"https://blackbird.digital/podcast/28-writing-block-themes-with-justin-tadlock/\">Writing Block Themes</a></strong> about his series of articles on the WordPress developer blog about adding custom controls to core blocks, theme scaffolding, and workflow scripts. They also discuss above mentioned Theme Documentation overhaul. The show notes provide a ton of resources for theme developers</p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>Save the date: <a href=\"https://make.wordpress.org/core/2023/09/14/hallway-hangout-whats-new-for-developers-in-wordpress-6-4/\"><strong>Hallway Hangout: What’s new for developers in WordPress 6.4</strong></a>. On <strong>Thursday, October 12, 2023, at18:00 UTC, </strong>Nick Diego, Ryan Welcher and Justin Tadlock will host a casual conversation about the most important and exciting developer-related changes coming soon in WordPress 6.4. From Block&nbsp;Hooks&nbsp;and the Font Library to improved Editor flows and the new Twenty Twenty-Four theme, there is just so much to talk about.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>This month&#8217;s <em>Developer Hours</em> will cover: <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/295482707/\"><strong>Building better blocks with the &#8216;create-block&#8217; package</strong></a>. Nick Diego and Ryan Welcher will host the event and it will take place on <strong>September 27 at 14:00 UTC.</strong> The two developers will take a deep dive into the functionalities of the&nbsp;<a href=\"https://developer.wordpress.org/block-editor/reference-guides/packages/packages-create-block/#available-commands\" target=\"_blank\" rel=\"noreferrer noopener\">create-block</a>&nbsp;package. Developed to simplify and accelerate the process of building custom WordPress blocks, this package has become an indispensable tool for developers of all levels.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter.com/losoviz\"><strong>Leonardo Losoviz</strong></a>, released version 1.0 of the<a href=\"http://gatographql.com\"> Gato GraphQL</a> plugin. It&#8217;s a rebranded version of GraphQL for WordPress plugin. It brings plenty of improvements, including </p>\n\n\n\n<ul>\n<li>the&nbsp;integration with the (Gutenberg) block editor, </li>\n\n\n\n<li>support for&nbsp;private and password-protected endpoints, and </li>\n\n\n\n<li>the&nbsp;availability of (commercial) extensions&nbsp;to extend the GraphQL schema and provide further functionality.</li>\n</ul>\n\n\n\n<p>This version Gato GraphQL is also on its way to the WordPress plugin repository. On the <a href=\"https://github.com/GatoGraphQL/GatoGraphQL/releases/tag/1.0.6\">GitHub space</a>, Losoviz shared that he based part of the block feature on the <em>WordPress VIP team&#8217;s <a href=\"https://github.com/Automattic/vip-block-data-api/\">Block Data API</a>. </em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Michael Burridge</strong> created a step-by-step tutorial on <a href=\"https://developer.wordpress.org/news/2023/09/understanding-block-attributes/\"><strong>Understanding block attributes</strong></a>. There’s more to block attributes than meets the eye. Attributes contain data needed by your block, and that data can be retrieved from numerous locations, not just the block delimiter. This post shows you the ways.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>If you work in React and JSX you might enjoy this very nifty tool: <a href=\"https://transform.tools/html-to-jsx\"><strong>Transform HTML to JSX</strong></a> by <a href=\"https://twitter.com/ritz078\">Ritesh Kumar</a>. Just paste the HTML of your designs into one box and get well formatted JSX in the second box. </p>\n\n\n\n<p>Kumar and 30+ other contributors created transform tools for all kinds of purposes, ie: JSON to JSDocs, JSON to GraphQL, CSS to JS Objects. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Lego building block  <a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/366646a25b/\">photo</a> by <a href=\"https://wordpress.org/photos/author/ekodesign/\">ekodesign</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Sep 2023 11:17:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: Developers Claim Damaged Trust Following Public Confrontations with WordPress Leadership\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148825\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wptavern.com/developers-claim-damaged-trust-following-public-confrontations-with-wordpress-leadership\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13901:\"<p>The WordPress community is ending two days of heated discussions that rapidly descended into a mire of unbridled emotional confrontations across multiple social channels, following a tweet from John Blackbourn that <a href=\"https://wptavern.com/developers-raise-concerns-about-wordpress-com-plugin-listings-outranking-wordpress-org-on-google\">raised concerns about WordPress.com plugin listings outranking WordPress.org on Google Search</a>.</p>\n\n\n\n<p>Developers expressed concerns about the SEO impact of the practice of cloning WordPress.org&#8217;s plugin directory for use on WordPress.com, with no backlinks to the original plugin. Another concern is that it perpetuates the longstanding confusion between WordPress.org and WordPress.com.</p>\n\n\n\n<p>&#8220;I don&#8217;t think the SEO concern is real, and by that I mean that besides John&#8217;s screenshot, which I think is related to the .org en-gb subdomain decision/bug,&#8221; Matt Mullenweg told the Tavern when asked whether WordPress.com is considering not indexing these pages that duplicate content from WordPress.org. </p>\n\n\n\n<p>&#8220;For general searches I&#8217;m seeing .com 5 pages down,&#8221; he said. &#8220;Just looking at traffic to those pages, they don&#8217;t seem to be getting much if any from search engines! So I&#8217;m not really concerned about SEO of those pages.</p>\n\n\n\n<p>&#8220;The vast majority of the traffic to those is to logged in users. When they click &#8216;manage&#8217; they can easily install it across multiple sites or see where it&#8217;s already installed, which actually works across .com and Jetpack sites.&#8221;</p>\n\n\n\n<p>He offered a similar explanation to Freemius founder Vova Feldman on X, who claimed that WordPress.com has an SEO advantage over independent plugins.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I think you\'re built on an assumption which is easily testable and false in my tests so far: \"DOT com has an SEO advantage&#8230;\"<br /><br />As an easy one to look at, I did a logged-out search for [seo plugin for wordpress]. First page of results is now ads, from WP Engine, SEMRush, AIOSEO,…</p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1702346538339459518?ref_src=twsrc%5Etfw\">September 14, 2023</a></blockquote>\n</div>\n\n\n\n<p>Plugin developers also expressed concerns about new users arriving to a plugin&#8217;s duplicated page on WordPress.com and seeing that the plugin is Free only on the (paid) Business plan. This gives the visitor the impression that the plugin isn&#8217;t available for free elsewhere, because there is no link back to WordPress.org with an explanation.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2402\" height=\"1118\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-15-at-10.26.00-AM.png\" alt=\"\" class=\"wp-image-148876\" />\n\n\n\n<p>Many WordPress.org plugin authors were not aware until recently that their plugin pages are being scraped for use on WordPress.com. Yesterday, <a href=\"https://patchstack.com/articles/patchstack-is-free-on-the-official-wordpress-repository/\">Patchstack updated its readme file</a> to ensure that WordPress.com users and visitors are made aware that the plugin is available for free in the official WordPress plugin repository, using the following text: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>This plugin can be downloaded for free without any paid subscription from&nbsp;<a rel=\"noreferrer noopener\" href=\"https://wordpress.org/\" target=\"_blank\">the official WordPress repository.</a></p>\n</blockquote>\n\n\n\n<p>&#8220;I was at a Python conference last week and a guy came to our booth and said he has a WordPress site but he hasen’t been able to purchase any plugins yet,&#8221; Patchstack CEO Oliver Sild said. &#8220;I told him that they are all free, and then it turned out he had a WordPress.com site where he has to pay to install any plugins. These people think that THIS IS the WordPress.&#8221;</p>\n\n\n\n<p>When asked if WordPress.com could at least link back to the .org plugin for logged-out views to eliminate some of the confusion, Mullenweg confirmed that he told Sild that WordPress.com would work on adding links to the .org equivalent page this week.</p>\n\n\n\n<p>&#8220;But that confusion that people claim is causing huge issues for WordPress isn&#8217;t supported by the numbers or growth of non-.com solutions over 17 years now,&#8221; Mullenweg said. </p>\n\n\n\n<p>&#8220;So at some point we should stop accepting it as within our top 100 issues for WordPress.</p>\n\n\n\n<p>&#8220;It&#8217;s much more likely like a road bump for some newbies, than an actual blocker, not unlike learning the difference between categories and tags, or how to identify a normal-looking comment that&#8217;s actually spam.&#8221;</p>\n\n\n\n<p>In <a href=\"https://twitter.com/photomatt/status/1702391616764289222\">response</a> to WordPress developer Daniel Schutzsmith saying that WordPress.com is causing confusion for OSS, Mullenweg contended that it &#8220;creates a false dichotomy between WP on .com and &#8216;open source software.&#8217; Every site on .com is part of the OSS community as much as on any other host. </p>\n\n\n\n<p>&#8220;When there is confusion, it assumes that it&#8217;s a top issue for WordPress. Nothing about WP&#8217;s growth, including vis a vis other projects, indicates that the existence of a .com and .org with the same name has held us back.&#8221;</p>\n\n\n\n<p>In support of his claims about the growth of non-WordPress.com solutions, he cited a W3Techs report on hosting company usage stats with extrapolated revenue on <a href=\"https://poststatus.com/\">Post Status</a> Slack.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1226\" height=\"1634\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/image.png\" alt=\"\" class=\"wp-image-148881\" />\n\n\n\n<p>&#8220;On revenue: If you extrapolate out public domain numbers with plan pricing, and look at public filings like the amount GoDaddy makes from hosting and what % of that hosting is WP-powered, you pretty quickly see that GoDaddy, Newfold/Bluehost, Siteground, Hostinger, and WP Engine make more than .com from WordPress hosting.,&#8221; Mullenweg said. &#8220;You can check out those companies on the&nbsp;<a rel=\"noreferrer noopener\" href=\"https://wordpress.org/five-for-the-future/pledges/?order=hours\" target=\"_blank\">five for the future page</a>.&#8221;</p>\n\n\n\n<p>Mullenweg has <a href=\"https://wptavern.com/matt-mullenweg-identifies-godaddy-as-a-parasitic-company-and-an-existential-threat-to-wordpress-future\">previously criticized large hosting companies</a> for what he perceives to be a lack of support for the open source WordPress and WooCommerce projects in proportion to how much they benefit from the use of these platforms. His comments in Post Status yesterday indicate that while he is still unsatisfied with their core contributions, he acknowledges these companies as important to WordPress&#8217; overall growth.</p>\n\n\n\n<p>&#8220;By the way, despite not looking great for core contributions, I think each of those companies has been&nbsp;<em>essential</em>&nbsp;for the growth of WordPress, and particularly the work they invest into upgrade PHP, MySQL, core auto-updates, plugin auto-updates, and security are crucial for the health of our ecosystem,&#8221; Mullenweg said.  </p>\n\n\n\n<p>&#8220;It&#8217;s &#8216;cynically cool&#8217; to hate on some of the bigger ones, but it&#8217;s a free and open market, none of their WP users are locked in and could easily switch to other hosts if they weren&#8217;t happy with the price and value they were getting. In fact by that measure, you could argue they&#8217;ve all done a much better job than .com at connecting with customers. Maybe I spend too much of .com&#8217;s engineering and investment on things like 2fa/passkeys, reader/notifications, stats, the mobile apps, Gutenberg, and Calypso and not enough on marketing or paying off affiliate host review sites.&#8221;</p>\n\n\n\n<h3 class=\"wp-block-heading\">The Damaging Community Impact of Public Confrontations</h3>\n\n\n\n<p>Mullenweg continued to be active on Post Status Slack and X (Twitter) throughout the day, attempting to <a href=\"https://twitter.com/photomatt/status/1702341579850055809\">debunk claims</a> that Automattic is exploiting open source contributors for profit. These interactions included <a href=\"https://twitter.com/photomatt/status/1702403896562352285\">personal attacks</a> which followed after Mullenweg blocked WordPress Marketing Team co-rep Sé Reed who <a href=\"https://twitter.com/sereedmedia/status/1702032589287211305\">claimed</a> that he is standing in the way of contributors improving the open source project and that he was &#8220;vilifying, dismissing, and insulting&#8221; the WordPress community. </p>\n\n\n\n<p>Some perceived him blocking Reed as him shutting down criticism, despite the fact that he said this is the first person he has ever blocked on Twitter. Although her comments were tangential to the original issue (the impact of the WordPress.com plugin listings), they became a focal point after Mullenweg lashed out at developer and product owner Dan Cameron who accused him of &#8220;actively doing more harm than good.&#8221;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Dan, you\'ve built the Search Everything plugin which was popular early on, at some point got sold to Zemanta and abandoned. Hasn\'t been updated in 6 years.<br /><br />You did \"Smart eCart\" for five years which lost to WP-eCommerce and Woo.<br /><br />You did Sprout Apps / Invoices which has 2k…</p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1702403896562352285?ref_src=twsrc%5Etfw\">September 14, 2023</a></blockquote>\n</div>\n\n\n\n<p>I reached out to Automattic-sponsored WordPress Executive Director Josepha Haden-Chomphosy who said she did not have additional comments about what has happened with the recent confrontational exchanges, nor the impact on the community. </p>\n\n\n\n<p>&#8220;I find it kinda refreshing to see Matt throw an elbow or two and stick up for himself,&#8221; WP All Import Product Manager Joe Guilmette said in Post Status Slack.</p>\n\n\n\n<p>&#8220;It’s not the greatest look, but that’s for his PR people to sort out. I don’t have any idea how I’d handle being criticized so heavily for years by the people who built businesses and careers on a project that I helped bring in to the world, but it probably would be a lot worse than calling a few people out on Twitter.&#8221;</p>\n\n\n\n<p>Others who gathered in various Slack instances, watching things play out on Twitter, felt collectively traumatized by witnessing the interactions between Mullenweg and different community members.</p>\n\n\n\n<p>&#8220;I think Matt did way more damage this time than ever before,&#8221; one prominent WordPress consultant said, requesting to remain anonymous.  &#8220;It generated good but quite wearied and sad expressions of grief and anguish in my company Slack and no doubt many others.</p>\n\n\n\n<p>&#8220;The instantly and deeply (however crudely researched) personal nature of Matt’s attacks leads people to paranoid fears that he has a shitlist of enemies who are just regular people, not giant companies etc. It’s a fearsome kind of punching down where the community gets stuck in the psychological position of the children of an abusive parent. Different personalities and different perspectives based on our own experiences lead us to different coping responses. But it’s very ugly now to have the paranoia confirmed as Matt basically taunted the fact that he feeds on what he’s told second or third hand about things others say about him in private.&#8221;</p>\n\n\n\n<p>Matt Cromwell, Senior Director of Customer Experience at StellarWP, said that discussions that start and stay on X/Twitter generally have very little fruit, especially when resolving something as complicated as the WordPress.com plugins SEO issue. </p>\n\n\n\n<p>&#8220;The community keeps leaning on this platform for these discussions but things like the impact of duplicate content on two sites both called &#8216;WordPress&#8217; requires more nuanced and trusting conversations which Twitter can&#8217;t provide,&#8221; Cromwell said. </p>\n\n\n\n<p>&#8220;Mullenweg used the whole thing as an excuse to make so many of the plugin owners that drive WP adoption feel small. It was extremely hurtful to the trust product owners put into the leadership of the WP project. I expect to see more product owners prefer to build SaaS integrations with WP rather than dedicated products because they don&#8217;t trust that Mullenweg has their mutual interest in mind at all anymore – and I don&#8217;t see a way for him to ever put that genie back in the bottle after this behavior both on Twitter and in Post Status Slack.&#8221;</p>\n\n\n\n<p>WordPress developer and contributor Alex Standiford said Mullenweg&#8217;s public confrontations yesterday are &#8220;a bad look for WordPress, and deflate the passionate contributors who genuinely believe in WordPress.&#8221; Despite recent events, he continues to believe in the larger impact of people building open source software together.</p>\n\n\n\n<p>&#8220;I believe that WordPress isn&#8217;t software,&#8221; Standiford <a href=\"https://alexstandiford.com/micro/2294\">wrote on his blog</a>. &#8220;It&#8217;s not community. It&#8217;s not a single person, no matter how significant that person thinks they are. I believe that WordPress is the manifestation of a belief that the web is at its best when it&#8217;s open. If I genuinely believed that forking WordPress would be good for WordPress, and the web, I&#8217;d contribute to it over the existing platform in a heartbeat.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Sep 2023 21:34:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:4:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Post Status: Community Summit Recaps, Multilingual Documentation, Performant Translations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://poststatus.com/community-summit-recaps-multilingual-documentation-performant-translations/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://poststatus.com/community-summit-recaps-multilingual-documentation-performant-translations/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Sep 2023 19:00:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"Post Status: Accessibility in Site Editor, Openverse Wins an Award, What’s New for Devs in WP 6.4, Fields API Summary\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=154835\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://poststatus.com/openverse-wins-an-award-whats-new-for-devs-in-wp-6-4-fields-api-summary/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18820:\"<h2 class=\"wp-block-heading alignfull\" id=\"h-this-week-at-wordpress-org-september-11-2023\">This Week at WordPress.org (September 11, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Openverse Wins the 2023 OEG Open Infrastructure Award. Get a sneak peek into the exciting developments for developers in the upcoming WordPress 6.4 release. </p></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n<div class=\"gb-container gb-container-5e804289\">\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n</div>\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/09/openverse-wins-the-2023-oeg-open-infrastructure-award/\">Openverse Wins the 2023 OEG Open Infrastructure Award</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community-summit-notes\"><a href=\"https://make.wordpress.org/summit\">Community Summit Notes</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/summit/2023/09/15/community-summit-discussion-notes-increasing-contributor-recognition-and-celebration/\">Community Summit Discussion Notes: Increasing contributor recognition and celebration</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/09/06/community-summit-discussion-notes-iterating-on-the-team-rep-role/\">Community Summit Discussion Notes: Iterating on the Team Rep role</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/09/04/community-summit-discussion-notes-open-source-participation-in-global-legislation/\">Community Summit Discussion Notes: Open Source participation in global legislation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/09/03/community-summit-discussion-notes-communication-and-collaboration-finding-your-way-around-wordpress/\">Community Summit Discussion Notes: Communication and Collaboration – Finding Your Way Around WordPress</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-2 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/14/hallway-hangout-whats-new-for-developers-in-wordpress-6-4/\">Hallway Hangout: What’s new for developers in WordPress 6.4</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-5 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/09/14/xpost-hallway-hangout-lets-chat-about-improving-accessibility-in-the-site-editor/\">X-post: Hallway Hangout: Let’s chat about improving accessibility in the Site Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/accessibility/2023/09/13/accessibility-team-meeting-agenda-september-15-2023/\">Accessibility Team Meeting Agenda: September 15, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/accessibility/2023/09/13/accessibility-office-hours/\">Accessibility office hours</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/09/13/report-wpdiversity-inclusion-and-diverse-speaker-workshops-july-to-august-2023/\">Report: #WPDiversity Inclusion and Diverse Speaker Workshops July to August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/09/11/report-wpdiversity-inclusion-workshops-april-to-june-2023/\">Report: #WPDiversity Inclusion Workshops April to June 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/09/07/resource-and-handbook-updates-in-q3/\">Resource and Handbook Updates in Q3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/09/06/community-team-meeting-agenda-for-7-september-2023/\">Community Team Meeting Agenda for 7 September, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/14/hallway-hangout-whats-new-for-developers-in-wordpress-6-4/\">Hallway Hangout: What’s new for developers in WordPress 6.4</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/09/understanding-block-attributes/\">Understanding block attributes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/09/whats-new-for-developers-september-2023/\">What’s new for developers? (September 2023)</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/14/fields-api-progress-summary-wcus-contributor-day-2023-2/\">Fields API Chat Summary: September 13, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/12/default-theme-chat-agenda-september-13th-2023/\">Default Theme Chat Agenda: September 13th, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/12/dev-chat-agenda-september-13-2023/\">Dev Chat agenda, September 13, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/12/dev-chat-summary-september-06-2023/\">Dev Chat Summary, September 06, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/12/editor-chat-agenda-september-13th-2023/\">Editor Chat Agenda: September 13th 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/08/28/design-share-aug-14-aug-25/\">Design Share: Aug 14-Aug 25</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/18/design-specific-triage/\">Bringing Back the Weekly Design Triage</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/09/11/documentation-team-update-september-11-2023/\">Documentation Team Update – September 11, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/23/introducing-the-wordpress-org-github-invite-tool/\">Introducing the WordPress.org GitHub Invite tool</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/09/15/openverse-2024-planning-we-want-your-ideas/\">Openverse 2024 Planning: We Want Your Ideas!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/09/13/openverse-wins-open-infrastructure-award-from-oe-global/\">Openverse wins Open Infrastructure award from OE Global</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/09/12/community-meeting-recap-2023-09-12/\">Community Meeting Recap (2023-09-12)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/12/performance-chat-summary-12-september-2023/\">Performance Chat Summary: 12 September 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-photos\"><a href=\"https://make.wordpress.org/photos\">Photos</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/photos/2023/08/28/august-photo-directory-update/\">August Photo Directory Update</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/08/21/xpost-wordpresscs-3-0-0-is-now-available/\">WordPressCS 3.0.0 is now available</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/09/13/agenda-weekly-polyglots-chat-september-13-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – September 13, 2023 (13:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/09/06/documentation-translation-localization/\">Proposal: Documentation translation/localization</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/09/agenda-for-september-14th-support-meeting-2/\">Agenda for September 14th Support Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/08/proposal-for-updated-support-guidelines/\">Proposal for updated support guidelines</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/09/15/sustainability-chat-summary-september-15-2023/\">Sustainability Chat Summary, September 15, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/sustainability/2023/09/13/sustainability-team-in-the-wordpress-community-summit-2023/\">Sustainability Team in the WordPress Community Summit 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/09/14/hallway-hangout-lets-chat-about-improving-accessibility-in-the-site-editor/\">Hallway Hangout: Let’s chat about improving accessibility in the Site Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/09/13/hallway-hangout-lets-chat-about-the-wordpress-6-4-evolving-the-fse-outreach-program/\">Hallway Hangout: Let’s chat about the WordPress 6.4 &amp; Evolving the FSE Outreach Program</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/09/11/test-team-update-11-september-2023/\">Test Team Update: 11 September 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/09/13/themes-team-meeting-notes-september-12-2023/\">Themes Team Meeting Notes –&nbsp;September 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/09/13/themes-team-update-september-13-2023/\">Themes team update September 13, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/09/11/training-team-meeting-recap-5th-september-2023/\">Training Team Meeting Recap – 5th September 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/09/05/wordcamp-us-2023-contributor-day-recap/\">WordCamp US 2023 Contributor Day Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/09/05/lets-share-our-notes-from-the-community-summit/\">Let’s share our notes from the Community Summit</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/24/information-sources-for-wordpress-6-4/\">Information Sources for WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/24/looking-for-feedback-learning-pathway-outlines/\">Looking for feedback: Learning pathway outlines</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/the-wordpress-database/\">The WordPress Database</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/creating-your-own-custom-synced-or-non-synced-patterns/\">Creating your own custom synced or non-synced patterns</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/scheduling-posts-and-pages/\">Scheduling posts and pages</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=common-apis-options\">Common APIs – Options</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-whats-new-for-developers-in-wordpress-6-4\">Hallway Hangout: What’s new for developers in WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-http-request-api\">Common WordPress APIs – HTTP Request API</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=apac-creating-custom-patterns-synced-or-non-synced\">APAC: Creating custom patterns: synced or non-synced</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=creating-custom-patterns-synced-or-non-synced\">Creating custom patterns: synced or non-synced</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=getting-started-with-a-wordpress-org-account-4\">Getting Started with a WordPress.org Account</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=getting-started-with-a-wordpress-org-account-3\">Getting Started with a WordPress.org Account</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-contribute-to-wordpress-by-just-being-helpful\">How to contribute to WordPress by just being helpful</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/wordpress-community-team-supporter-basics/\">WordPress Community Team Supporter Basics</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/08/28/jquery-3-7-1-released-reliable-table-row-dimensions/\">jQuery 3.7.1 Released: Reliable Table Row Dimensions</a></li>\n\n\n\n<li><a href=\"https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V20.md#20.6.1\">Node v20.6.1released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-09-14-1\">PHP 8.3.0 RC 2 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-08-31-2\">PHP 8.2.10 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-08-31-3\">PHP 8.1.23 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.1\">PHPMailer 6.8.1</a></li>\n\n\n\n<li><a href=\"https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-35.html\">Changes in MySQL 8.0.35 (Not yet released, General Availability)</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases\">Composer <a href=\"https://github.com/composer/composer/releases/tag/2.6.3\">2.6.3</a></a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong>   <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and your whole team can <a href=\"https://poststatus.com/join/\">join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Sep 2023 18:54:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"Do The Woo Community: WooBits, the First Look into the Do the Woo Network and WooSesh is Live\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76541\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://dothewoo.io/first-look-at-do-the-woo-network-and-woosesh/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:428:\"<p>This week I focus on giving you a bit more news around our new Do the Woo network and our partnership with WooSesh.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/first-look-at-do-the-woo-network-and-woosesh/\">WooBits, the First Look into the Do the Woo Network and WooSesh is Live</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Sep 2023 14:00:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: WooSesh 2023 Publishes Speaker Lineup, Launches Seshies Awards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148773\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/woosesh-2023-publishes-speaker-lineup-launches-seshies-awards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2446:\"<p><a href=\"https://woosesh.com/\">WooSesh 2023</a>, the virtual conference for WooCommerce store builders, will be broadcast live on October 10-12. This year&#8217;s theme is &#8220;Next Generation Commerce.&#8221; Registration is not yet open, but the speaker lineup and broadcast schedule have just been published. Over the course of three days, WooSesh will feature 31 speakers across 23 sessions.</p>\n\n\n\n<p>The event will kick off with the State of the Woo address, delivered by WooCommerce CEO Paul Maiorana and other product leaders from the company. Speakers will cover a wide range of topics like complexities of sales tax and product taxability, accessibility, block themes, security, AI tools, and automation, with case studies and workshops mixed in.</p>\n\n\n\n<h2 class=\"wp-block-heading\">New in 2023: The Seshies</h2>\n\n\n\n<p>WooSesh organizer Brian Richards is launching &#8220;<a href=\"https://woosesh.com/seshies\">The Seshies</a>&#8221; this year, a community awards ceremony that will recognize the best examples of the WooCommerce ecosystem across six categories: Innovation, Store, Extension, Agency, Developer, and Community Advocate.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1414\" height=\"596\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-14-at-11.00.46-PM.png\" alt=\"\" class=\"wp-image-148855\" />\n\n\n\n<p><br />The Seshies will include a community awards ceremony that will celebrate the winners. Anyone can <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSfobtJGqOszioOSTM4IMkdDbiIi44OhTZgFg1PXidnwWksEsQ/viewform\">nominate</a> candidates for the awards, and participants can even nominate themselves and their own WooCommerce projects. </p>\n\n\n\n<p>&#8220;These awards are something that have been on my heart for quite some time,&#8221; Richards said. &#8220;And now, after 6 years of hosting WooSesh and 10 years of running WPSessions, I think I&#8217;ve amassed enough authority and (critically) a wide enough reach to deliver awards, on your behalf, that have real meaning.&#8221;</p>\n\n\n\n<p>The week before the event, Richards plans to publish the top three nominees in each category. The community will vote throughout the first two days of WooSesh and the winners will be announced on the final day. Winners will receive a digital badge of recognition and Richards said he is also working on producing physical awards to ship to winners anywhere in the world.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Sep 2023 03:34:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: ActivityPub 1.0.0 Released, Introducing Blog-Wide Accounts and New Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148817\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/activitypub-1-0-0-released-introducing-blog-wide-accounts-and-new-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3149:\"<p>Version 1.0.0 of the <a href=\"https://wordpress.org/plugins/activitypub/\">ActivityPub plugin</a> was released this week with major updates that make it possible to have a blog-wide account, instead of just individual author accounts, where followers receive updates from all authors. This new feature allows people to follow blogs on decentralized platforms like Mastodon (and many others) with replies automatically published back to the blog as comments. </p>\n\n\n\n<p>In the ActivityPub plugin settings, users can check &#8220;Enable blog&#8221; to have the blog become an ActivityPub profile. Authors can be enabled at the same time as a blog-wide profile.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1662\" height=\"914\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-14-at-3.15.41-PM.png\" alt=\"\" class=\"wp-image-148831\" />\n\n\n\n<p>Activities originating from a Blog profile can be further customized through the existing post content and image settings. Users can also set the activity object type to default, article, or WordPress post format which maps the post format to the ActivityPub object type. Supported post types include posts, pages, and media. Note that the blog-wide profile only works with sites that have rewrite rules enabled. </p>\n\n\n\n<img width=\"1590\" height=\"920\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-14-at-3.33.58-PM.png\" alt=\"\" class=\"wp-image-148832\" />\n\n\n\n<p>An experimental hashtags setting is also available, which adds hashtags in the content as native tags and replaces the #tag with the tag link. Users should be aware that it may still produce HTML or CSS errors.</p>\n\n\n\n<p>ActivityPub 1.0.0 introduces two new blocks &#8211; one for displaying Fediverse Followers and the other for displaying a &#8220;Follow&#8221; button to allow people to follow the blog or author on the Fediverse. The Follower system has also gotten a complete rewrite based on Custom Post Types.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1096\" height=\"782\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-14-at-3.57.41-PM.png\" alt=\"\" class=\"wp-image-148835\" />\n\n\n\n<p>Other notable updates in this release include the following: </p>\n\n\n\n<ul>\n<li>Signature Verification: https://docs.joinmastodon.org/spec/security/</li>\n\n\n\n<li>Simple caching</li>\n\n\n\n<li>Collection endpoints for Featured Tags and Featured Posts</li>\n\n\n\n<li>Better handling of Hashtags in mobile apps</li>\n\n\n\n<li>Update: Improved linter (PHPCS)</li>\n\n\n\n<li>Fixed: Load the plugin later in the WordPress code lifecycle to avoid errors in some requests</li>\n\n\n\n<li>Fixed: Updating posts</li>\n\n\n\n<li>Fixed: Hashtag now support CamelCase and UTF-8</li>\n</ul>\n\n\n\n<p>Automattic acquired the plugin in March 2023 from German developer <a href=\"https://profiles.wordpress.org/pfefferle/\">Matthias Pfefferle</a>, who joined the company to continue improving support for federated platforms. Next on the roadmap for the ActivityPub plugin is threaded comments support and replacing shortcodes with blocks for layout.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Sep 2023 22:43:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WordPress.org blog: Openverse Wins the 2023 OEG Open Infrastructure Award\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15967\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wordpress.org/news/2023/09/openverse-wins-the-2023-oeg-open-infrastructure-award/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2336:\"<img width=\"1800\" height=\"1013\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/09/openverse-image.png?resize=1800%2C1013&ssl=1\" alt=\"\" class=\"wp-image-15959\" />\n\n\n\n<p>WordPress is excited to announce that <a href=\"https://openverse.org/\">Openverse</a> has been awarded the <a href=\"https://awards.oeglobal.org/awards/2023/open-infrastructure/openverse/\"><strong>2023 Open Education Award for Excellence</strong></a> in the <strong>Open Infrastructure</strong> category!</p>\n\n\n\n<p>The Open Education Awards for Excellence, organized by the non-profit organization <a href=\"https://www.oeglobal.org/\">Open Education Global (OEG)</a>, celebrate people, resources, and initiatives that have significantly contributed to the open education field and community. This year, they received 172 nominations across 16 award categories, representing individuals and projects from 38 countries.</p>\n\n\n\n<p>This award honors Openverse&#8217;s work to make it easy for everyone to discover and use open educational resources. The award reviewers were particularly impressed by <strong>Openverse&#8217;s <a href=\"https://twitter.com/WordPress/status/1514349743144685577\">one-click attribution feature</a></strong>. Moreover, they highlighted the tool’s ability to filter searches by source collections and other parameters, such as image orientation and specific license, which they noted “provides seekers of open content important affordances to find clearly licensed media they can reuse.”&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><em>“This is an exceptional search engine for the open education community. The one click attribution copy for images makes attribution very straight-forward and easy, even for novice users. The design is excellent; the results are returned fast.”</em> </p>\n<cite>Award reviewer for the 2023 OEG Award for Open Infrastructure </cite></blockquote>\n\n\n\n<p>This recognition not only underscores Openverse and WordPress&#8217;s commitment to open content but also celebrates the work of their dedicated contributors, community, and partners in advancing open education and creative works.</p>\n\n\n\n<p><a href=\"https://awards.oeglobal.org/awards/2023/open-infrastructure/openverse/\">Learn more about this Openverse award on the OEG page</a>.</p>\n\n\n\n<p><strong>Congratulations, Openverse!</strong></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Sep 2023 18:04:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Madison Swain-Bowden\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Do The Woo Community: Always Practicing and Learning with Artemy Kaydash\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76517\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://dothewoo.io/always-practicing-and-learning-with-artemy-kaydash/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:418:\"<p>Backend WordPress and WooCommerce developer, Artemy Kaydash, shares his dev story and the importance of always learning.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/always-practicing-and-learning-with-artemy-kaydash/\">Always Practicing and Learning with Artemy Kaydash</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Sep 2023 13:05:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Do The Woo Community: A WCUS Recap with Topher DeRosia, Raquel Manriquez and Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76507\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://dothewoo.io/wcus-2023-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:363:\"<p>Our final recap of WordCamp US with Topher DeRosia, Raquel Manriquez and Cory Miller</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wcus-2023-recap/\">A WCUS Recap with Topher DeRosia, Raquel Manriquez and Cory Miller</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Sep 2023 07:15:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"WPTavern: Developers Raise Concerns About WordPress.com Plugin Listings Outranking WordPress.org on Google Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148759\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://wptavern.com/developers-raise-concerns-about-wordpress-com-plugin-listings-outranking-wordpress-org-on-google\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12039:\"<p>WordPress core developer John Blackbourn sparked a heated discussion yesterday when he posted an image of his WordPress User Switching plugin ranking higher for the WordPress.com listing than the page on WordPress.org.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Why has <a href=\"https://twitter.com/wordpressdotcom?ref_src=twsrc%5Etfw\">@wordpressdotcom</a> replicated the entire <a href=\"https://t.co/oTA9NDVkFk\">https://t.co/oTA9NDVkFk</a> plugin directory on its .com domain name? Searching for some plugin names now results in the .com page ranking higher than .org. Fuck the long term health of the FOSS project, let\'s make some money, right? <a href=\"https://t.co/UD40BN3Z6g\">pic.twitter.com/UD40BN3Z6g</a></p>&mdash; John Blackbourn (@johnbillion) <a href=\"https://twitter.com/johnbillion/status/1701765939534893475?ref_src=twsrc%5Etfw\">September 13, 2023</a></blockquote>\n</div>\n\n\n\n<p>Blackbourn later apologized for the inflammatory wording of the original post, but maintains that .com plugin listings being displayed higher in search results is not healthy for the open source project.</p>\n\n\n\n<p>&#8220;This was a frustrated 2AM tweet so I could have worded it better, but the point still stands,&#8221; he said. &#8220;The plugin pages on dotcom are little more than marketing landing pages for the dotcom service and they&#8217;re strongly competing with the canonical dotorg pages. That&#8217;s not healthy.&#8221;</p>\n\n\n\n<p>Several others <a href=\"https://twitter.com/konstruktors/status/1701851307454185628\">commented</a> about having <a href=\"https://poststatus.slack.com/archives/CHNM7Q7T8/p1693475484734239\">similar experiences</a> when searching for plugins, finding that the WordPress.com often ranks higher, although many others still see WordPress.org pages ranked highest. </p>\n\n\n\n<p>Blackbourn <a href=\"https://twitter.com/johnbillion/status/1702035969237504140\">said</a> his chief concern &#8220;is the process that introduced the directory clone on .com either disregarded its potential impact on .org in favor of inbounds or never considered it in the first place &#8211; both very concerning given the ranking power of .com.&#8221;</p>\n\n\n\n<p>The tweet highlighted the frustration some members of the open source community feel due to the perennial branding confusion between WordPress.com and WordPress.org. Nothing short of renaming WordPress.com will eliminate the longstanding confusion, but this is unlikely as Automattic benefits from tightly coupling its products to WordPress’ name recognition.</p>\n\n\n\n<p>&#8220;Duplicate content confuses the human + search engines,&#8221; SEO consultant Rebecca Gill <a href=\"https://twitter.com/rebeccagill/status/1702022257533493726\">said</a>. &#8220;Search engines won&#8217;t like it, nor will humans trying to find solutions to their problems. There is already enough confusion w/ .org + .com for non-tech folks. This amplifies it. Noindex .com content or canonical it to .org.&#8221;</p>\n\n\n\n<p>Participants in the discussion maintain that the duplication of the open source project&#8217;s plugin directory &#8220;<a href=\"https://twitter.com/pedro_gaspar/status/1701907080997707966\">creates ambiguity and confusion</a>&#8221; but WordPress co-creator and Automattic CEO Matt Mullenweg contends it also gives plugin authors greater distribution.</p>\n\n\n\n<p>&#8220;It&#8217;s providing distribution to the plugin authors, literally millions and millions of installs,&#8221; Mullenweg <a href=\"https://twitter.com/photomatt/status/1701973661110915205\">said</a>. He elaborated on how the cloned plugin directory is integrated with Calypso, WordPress.com&#8217;s admin interface:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>.com has its own plugin directory which includes the .org one, it provides more installs and distribution to the plugin authors, which helps their usage and for commercial ones gets them more sales. The plugins are not altered. .com takes no cut for the distribution.</p>\n</blockquote>\n\n\n\n<p>When participants in the discussion suggested that other hosts doing the same thing would create a wild west situation for plugin rankings, Mullenweg said he would not mind if the plugins were &#8220;duplicated and distributed by every host and site on the planet,&#8221; as they are all licensed under the GPL.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">If people are providing more distribution to unaltered plugins, I think that\'s great. Happy for all our plugins to be duplicated and distributed by every host and site on the planet.</p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1701983671832441290?ref_src=twsrc%5Etfw\">September 13, 2023</a></blockquote>\n</div>\n\n\n\n<p>Outrage against distributing WordPress.org plugins in this fashion was not universal in the discussion. A few commenters support this strategy and see it as beneficial for the long-term health of the open source project.</p>\n\n\n\n<p>&#8220;I&#8217;m all for it to be honest,&#8221; WordPress developer Cristian Raiber <a href=\"https://twitter.com/CristianRaiber/status/1701993257717096738\">said</a>. &#8220;Anyone could scrape those pages but not everyone gives back to WordPress and makes sure it&#8217;s here to stay for the next decades. Controversial, I know. But I prefer we build together instead of alone.</p>\n\n\n\n<p>&#8220;I fail to see how this is not an advantage to anyone who hosts their plugins (for FREE) on w[dot]org ?&#8221; Raiber continued in a separate <a href=\"https://twitter.com/CristianRaiber/status/1701991457412767913\">response</a>. &#8220;Is it about being outranked in Google&#8217;s SERPs for brand kws? Why has this generated so much outcry when the intent is clearly beneficial?</p>\n\n\n\n<p>&#8220;This FINALLY solves a friction point for potential buyers. Streamlined plugin installation and usage vs &#8216;here&#8217;s a list of 55 steps you have to take to install my plugin.&#8217; Users want options, different uses cases and all. I want <a rel=\"noreferrer noopener\" href=\"https://t.co/lvD51DFwBI\" target=\"_blank\">wp.com</a> to make money so they keep growing this product.&#8221;</p>\n\n\n\n<p>XWP Director of Engineering Francesca Marano suggested that WordPress.com has benefitted from the branding and reputation of .org, which is built by volunteers. She also <a href=\"https://twitter.com/FrancescaMarano/status/1701928039599219066\">proposed</a> that Automattic &#8220;has the resources to do a whole rebranding which would ultimately benefit both projects.&#8221;</p>\n\n\n\n<p>Mullenweg <a href=\"https://twitter.com/photomatt/status/1701978533239640196\">responded</a> to these comments, defending WordPress.com&#8217;s efforts in fending off early WordPress competitors and cited Automattic&#8217;s preeminence in contributing back to core, despite taking in less revenue than some larger companies making money from the software:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Since its foundation, .org has benefitted from the branding and reputation of having a robust SaaS version available from .com, including a free version, something basically no other host does. Over 200M people have used it, and countless started on .com and then migrated to another host. The shared branding made it very difficult for services like Typepad to compete. You want to see what WP would look like without it? Go to Joomla. </p>\n\n\n\n<p>.com has also been the source of countless performance improvements, we deploy pre-release versions of core to millions of sites to find bugs and do testing, making WP releases way more stable for regular users and hosts. <strong><em>No company contributes more, even though many make more from WP than .com&#8217;s revenue.</em></strong> It would have been way easier to fork the software, not merge MU. Most hosts (and many community members) bad-mouth .com while not contributing a fraction back to core. Hosts spend tens of millions a year on ads against .com. I get attacked constantly.</p>\n</blockquote>\n\n\n\n<p>In 2010, when the WordPress Foundation was created, <a href=\"https://wordpress.org/book/2015/11/the-wordpress-foundation/#:~:text=Automattic%20had%20always%20intended%20to,company\'s%20investors%20at%20the%20outset.\">Automattic transferred the WordPress trademarks to the Foundation</a>, after having been the temporary custodian of the trademarks until that time. As part of the transfer, the Foundation granted Mullenweg use of the WordPress trademark for WordPress.com.</p>\n\n\n\n<p>This trademark was deliberately secured, and the company does not appear to be open to renaming the platform. This doesn&#8217;t mean WordPress.com can&#8217;t do anything to mitigate the confusion that scraping the WordPress.org plugin directory creates. Participants in the discussion suggested that WordPress.com forego indexing the pages they created for plugins that developers submitted to the open source project.</p>\n\n\n\n<p>&#8220;You can control SEO by telling search engines to not index those pages of open source software developed for .org on the .com domain,&#8221; WordPress plugin developer Marco Almeida <a href=\"https://twitter.com/Wonderm00n/status/1701905853165551802\">said</a>.</p>\n\n\n\n<p>&#8220;I have 20 free plugins on the repository and I don&#8217;t see how my plugins will benefit if we open this pandora box and normalize cloning these pages and diluting the WordPress.org importance on search engines.&#8221;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Dotcom can help by using schema markup that points to dotorg as the authority (using the \"about\" and/or \"sameAs\" properties). The dotorg pages already have the schema markup in place, you\'ll just need to point to it from dotcom.<br /><br />This is helpful for dotcom too. Although Google…</p>&mdash; Jeff Matson <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f47e.png\" alt=\"👾\" class=\"wp-smiley\" /> (@TheJeffMatson) <a href=\"https://twitter.com/TheJeffMatson/status/1701935427672764641?ref_src=twsrc%5Etfw\">September 13, 2023</a></blockquote>\n</div>\n\n\n\n<p>Developers who are just now discovering their WordPress.org plugins cloned to WordPress.com listings are also wanting to know how many of their installs come from WordPress.com so they can better understand their user bases. Mullenweg <a href=\"https://twitter.com/photomatt/status/1702001800520343848\">suggested</a> developers who want a different listing for WordPress.com users can <a href=\"https://developer.wordpress.com/wordpress-com-marketplace/\">sign up for the .com marketplace</a>.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">well, this could be true, but as plugin author I don’t know how many installations are on .com or .org, or how to show the plugin description/features in a different way to a .com user. I think that the main issue here is the directory cloning</p>&mdash; Simone Maranzana (@simo_m) <a href=\"https://twitter.com/simo_m/status/1701996397338190088?ref_src=twsrc%5Etfw\">September 13, 2023</a></blockquote>\n</div>\n\n\n\n<p>Tensions remained high as the heated discussion continued throughout the day and into the evening with criticism flowing across X (Twitter), Post Status Slack, and other social channels, as many developers learned for the first time that their plugin listings have been cloned on WordPress.com.  As long as a commercial entity shares the open source project&#8217;s branding, these types of clashes and friction will continue popping up.</p>\n\n\n\n<p>&#8220;Personally, I can’t help but empathize with plugin authors that chose to support OSS and find the directory cloned in a commercial service, albeit free, with no access to stats,&#8221; Francesca Marano <a href=\"https://twitter.com/FrancescaMarano/status/1702001376442700283\">said</a>. &#8220;As I mentioned before, the main issue is the confusion around the two projects.&#8221; </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Sep 2023 04:05:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Akismet: Version 5.3 of the Akismet WordPress plugin is now available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=281046\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://akismet.com/blog/version-5-3-of-the-akismet-wordpress-plugin-is-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1120:\"<p>Version 5.3 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n\n\n\n<p>The updated plugin has new easy-to-read notices. These are the messages shown when Akismet is successfully set up or there is an issue with your install.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/09/image.png?w=1024\" alt=\"\" class=\"wp-image-281050\" />\n\n\n\n<p>We have improved support for RTL (right-to-left) languages like Hebrew and Arabic, and have made some accessibility improvements to help users enter their API key more easily. </p>\n\n\n\n<p>Users of the <a href=\"https://fluentforms.com/\">Fluent Forms</a> plugin will be pleased to know that the latest version of Akismet is now compatible with <a href=\"https://fluentforms.com/fluent-forms-5-0/\">Fluent Forms v5</a> and above.</p>\n\n\n\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Sep 2023 20:31:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Chris Rosser 🏔\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: #90 – Olga Gleckler on How Anyone Can Contribute to the WordPress Project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=148683\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wptavern.com/podcast/90-olga-gleckler-on-how-anyone-can-contribute-to-the-wordpress-project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:40576:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how you can assist the WordPress project by contributing.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you, and hopefully get you all your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Olga Gleckler. Olga is a self-taught developer with many years of experience. After initially pursuing a career in marketing, she turned back to her passion for programming and became a full-time developer. She has been contributing to WordPress for four years, and is currently serving as the Core triaged lead for version 6.4.</p>\n\n\n\n<p>In addition, Olga is a maintainer for two components in Core, and actively participates in various teams within the WordPress community.</p>\n\n\n\n<p>Outside of work, she&#8217;s also writing a fantasy book, which has a significant personal project for her.</p>\n\n\n\n<p>Olga has tried her hand in various teams within the WordPress community, ranging from Polyglots to Training, Support and more. She challenges the commonly held misconception that only coders can contribute to the WordPress project, highlighting the many different ways individuals can contribute without coding skills.</p>\n\n\n\n<p>During our conversation, Olga shares some examples of non-coding contributions that can be made to the WordPress project. We talk about the process of submitting patches and contributions to WordPress, discussing the schedule for releases, and the importance of understanding the processes and deadlines.</p>\n\n\n\n<p>Olga also emphasizes the essential steps of testing, reviewing for coding standards and ensuring correct documentation in order to make impactful contributions.</p>\n\n\n\n<p>Olga&#8217;s journey and the WordPress community has been very varied. She discusses how being part of this ecosystem has improved her career prospects, and gained her trust from others. However she acknowledges that not everyone finds their place immediately and may struggle to get started.</p>\n\n\n\n<p>She explores how to contribute without becoming discouraged, and shares her experiences in the mentorship program that paired mentors with mentees in navigating the WordPress community.</p>\n\n\n\n<p>Throughout the conversation Olga shows a deep passion for the WordPress project and the collaborative nature of the community. She reminds us that contributing to open source projects requires patience and persistence and shares her insights on learning methods, seeking guidance and asking questions in order to make progress.</p>\n\n\n\n<p>If you&#8217;ve thought about contributing to WordPress, but are not sure where to begin, this episode is for you. If you&#8217;re interested</p>\n\n\n\n<p>in finding out more, you can find all of the links in the show notes by heading over to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Olga Gleckler.</p>\n\n\n\n<p>I am joined on the podcast today by Olga Gleckler. Hello, Olga!</p>\n\n\n\n<p>[00:04:08] <strong>Olga Gleckler:</strong> Hi.</p>\n\n\n\n<p>[00:04:09] <strong>Nathan Wrigley:</strong> Very nice to have you with us. Olga is going to be chatting to us today about contributing to WordPress, probably specifically around WordPress Core, but we will no doubt in the introduction discover that Olga&#8217;s done a lot more in the WordPress space.</p>\n\n\n\n<p>Olga, just before we begin, let&#8217;s orientate our listeners a little bit about you. This is a chance to give us your biography. Tell us who you are, how long you&#8217;ve been working with code and computers and in the WordPress space more specifically. You can go as far back as you like.</p>\n\n\n\n<p>[00:04:43] <strong>Olga Gleckler:</strong> Sounds great. I wanted to be a programmer at school, but I messed up with my education and turned out to be a marketer. Then I was a bit disappointed in marketing because you cannot promise to deliver something and actually deliver it. And I switched back to my previous passion to development, and become a developer like a self taught.</p>\n\n\n\n<p>And already nine years I&#8217;m working full time as a developer. And four years I&#8217;m contributing to WordPress. To find the WordPress community, it was a big discovery for me, and actually turning point for the whole experience, because WordPress is good, is great, and I liked it.</p>\n\n\n\n<p>When I discovered the community, I started to love it. And since Berlin in 2019, I joined marketing team and several other teams. I contributed to polyglots team, to training team, to support, I love support. And some other teams. And right now I am Core triage lead for 6.4. I was Core triage co-lead for 6.3 as well.</p>\n\n\n\n<p>I&#8217;m a maintainer for two components in Core, so I think I know a bit about how you can actually contribute to Core, and I still enjoying all the process.</p>\n\n\n\n<p>Apart from full time job and contribution, I also want to mention that I&#8217;m writing a fantasy book. It&#8217;s like a big deal for me. It&#8217;s a draft, but it&#8217;s another passion I carry on with myself all around the world.</p>\n\n\n\n<p>[00:06:25] <strong>Nathan Wrigley:</strong> That&#8217;s really interesting. So you&#8217;ve been involved in all sorts of different sides of WordPress. You mentioned there specifically that you joined the marketing team, obviously based upon your past history with studying marketing and things like that. But you found that that maybe wasn&#8217;t the best fit for you. And I guess that&#8217;s going to be part of the conversation today, is that there&#8217;s a lot of different places that you can contribute. And if you join a team and it doesn&#8217;t seem to be the right fit first time, that&#8217;s not a reason to give up, because there are just multiple different ways that you can contribute to WordPress, right?</p>\n\n\n\n<p>[00:07:02] <strong>Olga Gleckler:</strong> I love marketing. I cannot kick it out of me, and I still deeply involved in marketing team activities and most of my efforts I am making are between teams. For example, between marketing and mobile team, between marketing and Core team. It&#8217;s something inside me and I cannot kick it out, and I&#8217;m looking at Core tickets from the marketing point of view, and trying to find something significant, something to change, something to improve user experience, to deliver improvement and make a difference and impact.</p>\n\n\n\n<p>So, yes. I joined marketing team first and I&#8217;m still there, part of the marketing team, but I tried different things like in support, in polyglots. They are all very different and very important as well. So I poke around a lot, and finally I pluck up the courage, with help, and starting to contribute to Core team.</p>\n\n\n\n<p>[00:08:06] <strong>Nathan Wrigley:</strong> It sounds like on your journey you have dabbled in, you said, poking around, you&#8217;ve had a go at various different teams and you&#8217;ve obviously enjoyed that. In some of the show notes that you shared with me, you list out some of the different things. So you&#8217;ve been involved in several different teams, for example, polyglots, training, and you mentioned support and TV actually, which is kind of an interesting one.</p>\n\n\n\n<p>That gives us an idea of the different things that you can be involved in. There&#8217;s a whole range there, but I want to drive this message home. The idea that if you&#8217;re in the WordPress community, I think there is a perception that if you don&#8217;t code, you&#8217;re probably not going to be able to contribute. And I think it&#8217;s fair to say that you really don&#8217;t believe that. That&#8217;s just not true. You don&#8217;t have to have any coding skills at all.</p>\n\n\n\n<p>Now, clearly, if you&#8217;re tackling contributions where code is required, that&#8217;s probably different, but there&#8217;s loads of different ways that you can contribute. And I wonder if you wouldn&#8217;t mind just telling us about some of those different things. Some of the things that teach us that you don&#8217;t need to be a coder to contribute to the project.</p>\n\n\n\n<p>[00:09:17] <strong>Olga Gleckler:</strong> For example, Community team. Community team is handling all the organization processes for meetups, WordCamps, other events and supporting people. It&#8217;s a great and a big job for managers. People who are taking care about things. You don&#8217;t need to be a developer at all. You just need to manage things.</p>\n\n\n\n<p>And this is only one team, and we have more than 22 teams. We have security team. It&#8217;s a bit obscure because obvious reasons, but you can contribute to all other teams. For example, if you are teacher, you can contribute to training team. If you are purely WordPress user, you can contribute to a lot of teams.</p>\n\n\n\n<p>For example documentation and checking if things are clear, and documentation is actually following the actual result or not, or something needs to be changed.</p>\n\n\n\n<p>And users, just users without any experience in development can bring a huge value because developers are, we have such flaw because everything is working for us. We know how it should go, and it&#8217;s going in the right direction. And if you don&#8217;t know how it&#8217;s supposed to work, you can poke around a bit and discover some flaws, some doubts, some things which are unclear, and bring a huge value for the code itself.</p>\n\n\n\n<p>And apart from it translation. Polyglot team is your goal if you like to translate. And this is the way to improve your own understanding of English and your own language. Because if you are starting to translate, it&#8217;s become apparent, obvious that it isn&#8217;t easy to do. And you need to put your brain, your heart to this task at hand.</p>\n\n\n\n<p>And support also a good point for people who want to learn. Because if you, for example, can answer like one question from ten, you can make someone else&#8217;s day better.</p>\n\n\n\n<p>And in the process, you can learn more and more, and answer more questions, and improve your own skills this way. Just helping other people. And. This is only few teams you can contribute.</p>\n\n\n\n<p>And also TV. You can edit videos for other people. You can translate and make subtitles for these videos. You can of course review them.</p>\n\n\n\n<p>And the team everyone is just love right now is photo team. You can contribute your photos to photo directory and contribute this way. If you are a photographer you can contribute to WordPress your ideas in pictures. And of course, if you like looking at pictures, you can go and review these contributions. Because there are some rules, for example, people not, should not be present on these images, et cetera. So there are some rules about quality, et cetera.</p>\n\n\n\n<p>So we have a lot more abilities. It&#8217;s just top of things and we have a lot more.</p>\n\n\n\n<p>[00:12:37] <strong>Nathan Wrigley:</strong> There are, from everything you&#8217;ve just said, so many different avenues that you could go down. And I know, even though you gave us quite a list there, you&#8217;ve still probably only scratched the surface, and if you were to get into the weeds of those teams, I&#8217;m sure there&#8217;d be something for everybody.</p>\n\n\n\n<p>I have a question. It&#8217;s a bit of a personal question. And I&#8217;m really wondering why you do this. And the reason I&#8217;m asking that is because a couple of times in what you just said, you mentioned how it was good for your, your heart. If you like, it made you feel better. But also you said that it was helping other people.</p>\n\n\n\n<p>And so let&#8217;s, for example, say that you answer a support ticket, you&#8217;ve helped somebody out. You&#8217;ve taken them from a place of not knowing, to a place of knowing. So, why do you give up your time? What is it that you get out of it? That may be simply that it makes you feel good, you want the project to be better, so that you can be employed from working with WordPress.</p>\n\n\n\n<p>It may be that you just enjoy it, that you get to meet new people, attend events, go in any direction you like. I&#8217;m really curious.</p>\n\n\n\n<p>[00:13:37] <strong>Olga Gleckler:</strong> I think I love everything. I put my trust in WordPress. This is best choice there is. I believe in it, and of course I&#8217;m going to improve, to put back this Five For The Future of myself. To be able to work and use WordPress continuously, and improve it like it&#8217;s obvious choice for people who are working on it. And this is only one way.</p>\n\n\n\n<p>The second, I love all this gathering, all these people with passion. Open minded people and everyone is curious and want to learn and want to do something. And everyone is open and this is a safe environment. We&#8217;re all following code of conduct. So, it&#8217;s completely different space. Open source project. It&#8217;s blow minded. I think how it can change your mind and your perspective.</p>\n\n\n\n<p>And of course I got job proposal, previous one, because people know me in the community. And this one is also partly because what I&#8217;m doing, because I&#8217;m well known, a developer. So I was wondering, where is the technical interview? And I was told that there is no need for you, because we know that you are up to scratch already. So it was a good point.</p>\n\n\n\n<p>So people are amazing. You are improving your skills. You are getting understanding of your level in comparison to other people&#8217;s level. You can learn on their efforts and, for example, patches, examples, documentation, etc. So you are continuously improving yourself. A lot of reasons.</p>\n\n\n\n<p>[00:15:26] <strong>Nathan Wrigley:</strong> Yeah, there are a lot of reasons. Really interesting though. There&#8217;s obviously a lot of desire from you. You obviously enjoy the whole ecosystem and all of the different tendrils and spokes on the wheel. But also interesting to note that you&#8217;ve also done your career prospects no harm by contributing, because you get to the point where you&#8217;ve contributed enough that people are going to start looking for you as somebody that they can trust and rely on. So you kind of jumped over the hurdle of job interviews a little bit there as well. So that&#8217;s really interesting.</p>\n\n\n\n<p>Okay. Let&#8217;s move on to the, another part of the conversation, which is beginning contributing, how you might do that. Because I&#8217;m guessing that for some people, it may be that you hit the ground running and you decide, okay, I&#8217;d like to be part of the contribution community and you find the right project and you find the right thing to do immediately. But I&#8217;m also fairly sure that other people will get discouraged. They&#8217;ll perhaps jump in to the wrong part of the project, or maybe tackle something which is a little bit difficult. They can&#8217;t find the people to help them and so on. So I wonder if you&#8217;ve got any advice about that? Trying to contribute without getting discouraged.</p>\n\n\n\n<p>[00:16:40] <strong>Olga Gleckler:</strong> Firstly, you need to know what is your learning curve, what is best for you. Sometimes it takes some time to figure it out. For example, some people are purely reading documentation and they are fine with it. But some people need video recording, or they need like a leg up from mentor or just little help for like facilitators.</p>\n\n\n\n<p>And we are trying to provide all this to make it really easy. Right now, there is a barrier, yeah. But if you want to start to contribute to Core, for example, you need to go to new contributor chat. This is like bi-weekly meeting before the main dev chat. And it&#8217;s better to ask questions. For example, we are like going through the usual script, we are highlighting several documents and links you&#8217;re supposed to browse, but you can be stuck at any moment and actually these meetings are for providing help and we are there.</p>\n\n\n\n<p>I&#8217;m mostly present there to help if people are stuck. And you need to understand that asking questions, it&#8217;s normal state for everyone. We all are continuously asking questions, and there is no stupid questions, because everyone knows that sometimes it&#8217;s hard to begin. Or even you can miss something obvious, even if you are the smartest person in the world, you can miss something obvious, because it&#8217;s obvious for someone else.</p>\n\n\n\n<p>So, this is how you can start. But in addition to this, we started a contribute mentorship channel in the Slack. This is dedicated channel for contributor mentorship program. We just finished first pilot program when we took 13 people and they got their own mentors. But everyone else was hanging around, and facilitators like me was providing help for people and answering questions. Specific questions, like how to start, how to pick up ticket, what I should do etc. And if I am like with such background, what is better fit for me, etc.</p>\n\n\n\n<p>But as well, apart from this, you can just poke around and be present in usual developers chats, but it can take time. So to make things quickly, you need some help from people. And we are actually ready for help. And in the documentation, there is a list of people whom you can ask if you have questions and difficulties. I&#8217;m listed there as well. So people are actually writing for me in DM if they don&#8217;t like comfortable enough to write openly, and asking such questions.</p>\n\n\n\n<p>But if you want your question answered sooner, you can just go to Core channel in the Slack and ask this question openly for everyone to see. And this way you can contribute to other people&#8217;s success as well, because some people not ready to answer this, the same question, and they can see your question and pick up what was written to you. But you don&#8217;t need to jump in the middle of usual, regular chats. You need to wait until open floor if there is like a dev chat going on. So your question can be like, just be flooded with everything else which is happening. Or this is a release going on, no one will be able to answer your questions properly.</p>\n\n\n\n<p>[00:20:27] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s a good point. Timing is crucial. I&#8217;m just going to circle back to the mentorship program because I think that&#8217;s really interesting. So this is a new initiative, and it may be of interest to people who perhaps have thought about contributing, but have been a little bit unwilling or discouraged, or they had some bumps in the road and decided not to continue.</p>\n\n\n\n<p>Can you just tell us what that is, how that process works? And I know it&#8217;s new and I know you&#8217;re trying to figure it all out, but what is it? How does it work? My understanding is that you will be partnered, in certain teams, at least anyway, with people who have done the role that you&#8217;re hoping to do and can therefore sort of shepherd you for a period of weeks. Set the expectations for you, give you some advice about where to go for help and all of that kind of stuff. Have I more or less got that right?</p>\n\n\n\n<p>[00:21:17] <strong>Olga Gleckler:</strong> Yeah, it was a pilot, so we were just trying things. The plan for people was decided, how they can proceed. And we received 50 applications, but was able to take 13 people to partner them with mentors. Mentors were people with wide knowledge inside the community and contribution, but not exactly the match on person&#8217;s interests. This person was providing like general support. And actually it&#8217;s works great.</p>\n\n\n\n<p>They make contribution plans and providing feedback, what&#8217;s working, what is not working. And first two weeks mentees was doing learn courses. And I think 11 of them finished all courses. And then we started sessions, introductory sessions, for many WordPress teams. I had one introduction session for Core. It was also training team, polyglot team, support team, community team, and several other teams.</p>\n\n\n\n<p>So we put a lot of efforts and most of these sessions are recorded, so you can rewatch them. And this was only the first pilot try. So I think the next time we will do better. And we actually scheduled this to be finished next day after release. So our mentees was able to see the whole process of the release alongside with us, and take part in this.</p>\n\n\n\n<p>And several people actually contribute to Core. They made patches, they tested things. From our point of view, it&#8217;s a real success and we provided people ability to start quickly, and when there are dedicated people, it&#8217;s much easier to ask questions and get answers, and be oriented in this huge area. And because this mentees got an overview of the whole project, like general.</p>\n\n\n\n<p>They was easy to understand what will fit them better. If they like Core, or if they want to translate things, or if they are going to support. Actually, I think one guy answered 200 questions on the support, on the spot, yeah. I have much difference in answering questions. It&#8217;s actually takes time, but he went passionate about this, and it&#8217;s great.</p>\n\n\n\n<p>[00:23:43] <strong>Nathan Wrigley:</strong> You mentioned in the shared show notes that we&#8217;ve got together for this podcast episode well, I just think this is a lovely phrase, so I&#8217;m going to read it out. You wanted to talk about setting the right expectations and understanding of processes, and the fact that these are the key points to, this is the bit that I really like, joyful contribution. So I wonder if you could outline some of those things, some of the wrinkles, some of the expectations that you need to, not only have set for you, but need to set yourself. Because it may be that there are going to be bumps in the road, things that don&#8217;t quite work out.</p>\n\n\n\n<p>You may tackle something which ultimately never gets used, or you may think that you&#8217;ve created a solution, I&#8217;m thinking about coding in Core in this particular case, which then has an impact on something else. And so it needs to be iterated on over and over again. So I guess what we&#8217;re trying to say is, it&#8217;s not always going to be plain sailing. Not every contribution that you make might be used or suitable. But there are things that you think you can do to make sure that the process is more likely to work in your favour.</p>\n\n\n\n<p>[00:24:46] <strong>Olga Gleckler:</strong> Yeah, because it&#8217;s open source. We have a huge community and we are working together. And if you did something like your part, it&#8217;s a bit naive to expect that someone else will pick immediately, like next day. And everything will be done until Friday. It&#8217;s not happening. So if you know that things are taking time and can be more complicated than they look like in the first place, you can adjust your expectations and don&#8217;t expect your shiny new Core Contributor badge next morning on your profile.</p>\n\n\n\n<p>You will get this badge, but only when you&#8217;re patch, or testing involvement, or other contribution will be going to release. So you will get this batch after the release, right after. But still it takes time. So if you are like in a hurry, you need to adjust.</p>\n\n\n\n<p>And of course, sometimes people are creating a patch, like I&#8217;ve done everything and it&#8217;s not going anywhere. And they are becoming disappointing and interest is going away for contribution. So, what you should do if you did something and no one is paying attention, at least it looks like it. You need to understand that we have more than 8,000 open tickets. So, it&#8217;s a huge thing and we are continuously triaging these tickets. This is why we need continuously triage and component maintainers in the first place.</p>\n\n\n\n<p>So if you did something and no one is bothering about it, you should look if this ticket has an owner. Owner is not a person who is doing the patch. This is person who should care, who supposed to care, about this ticket and push it forward. If this ticket has an owner, ping this owner right in the ticket. I did this, please take a look and how we can proceed.</p>\n\n\n\n<p>And this ticket has no owner, you can&#8217;t ping component maintainer. Some components don&#8217;t have maintainers because we have a lot of components and a bit short in maintainers. What should you do? You can turn up on regular dev chat, wait until open floor, and ask about your ticket and what you want to do about this. There will be a lot of seasoned Core contributors around at this point, and your ticket will be noticed. If it will be like good to go further or you need to rework, it will be seen. But at least you will be starting in the right direction forward. So, you need to be a bit pushy about things to make them happen.</p>\n\n\n\n<p>[00:27:31] <strong>Nathan Wrigley:</strong> Yeah, I guess that&#8217;s a really interesting lesson, isn&#8217;t it? If you contribute something and it doesn&#8217;t either immediately get noticed, or you feel that it&#8217;s not being noticed, I think that&#8217;s interesting advice. There are different ways that you can make your voice heard, shall we say, and you&#8217;ve mentioned some of those there.</p>\n\n\n\n<p>You also wanted to point out that there are roadblocks in the timeline of WordPress, where if you submit, let&#8217;s say a patch to something, there are periods in the calendar where things are frozen. And so there are periods, for example, just prior to a release, when we get to release candidate one or beta one, where really, you&#8217;re probably best doing something else because there are freezes. You say that the polyglots team needs to be able to translate strings and things like that. So don&#8217;t know if you want to talk about that.</p>\n\n\n\n<p>[00:28:19] <strong>Olga Gleckler:</strong> Yes, sometimes people made something and turn it up, right before the release. And they are disappointed because their patch will not go to this release. Because we have schedule and schedule for the next release, you can easily look on the make wordpress dot org slash core slash 6 hyphen four, for example, right now for this release, and understand the process.</p>\n\n\n\n<p>So if, for example, you are working on enhancement or a feature, they need to be in the trunk before better one. Because it&#8217;s like a significant changes, and they need good testing coverage, et cetera. Big things needs to be, go first. If ticket has a keyword early, it should be even before beta one, like right after the previous release. It should be done quickly, because these things can impact a lot.</p>\n\n\n\n<p>And then there&#8217;s a release candidate one. If you are working on a bug or if you are anything have content change, it should be in the trunk for release candidate one. Because with release candidate one, we have strings freeze. This is time before release candidate one and actual release for Polyglot&#8217;s team to be able to translate this new, or changed strings, to their own languages and make WordPress great in their own language.</p>\n\n\n\n<p>People need time for this, and we have a huge amount of strings. If you will be starting to contribute to Polyglot&#8217;s team, you will start to understand that it&#8217;s also a big deal and a big job. So if you&#8217;re working on something, you need to fit your patch in this right moment and not after.</p>\n\n\n\n<p>And of course, your patch needs to be tested, your patch needs to be reviewed from coding standards, for possible regressions. Possibly you will need to rework some things, or make changes in supporting documentation. For example, each function has this description, yeah, documentation for this function.</p>\n\n\n\n<p>This is why WordPress is so great. It&#8217;s clear, good written documentation inside code. So everything should be fine before it will go to trunk, even if the thing is working itself. Sometimes you need to cover this code with unit tests and you need to take into account these things as well. Sometimes, most of the time, people are surprised about unit tests.</p>\n\n\n\n<p>And we have a huge coverage of the code and it&#8217;s actually great. It makes things robust. So if you fix some bug, you are covering this part of the code with unit test to be sure that this will not be happening again. And it&#8217;s actually great.</p>\n\n\n\n<p>[00:31:09] <strong>Nathan Wrigley:</strong> There are some places, probably it&#8217;s fair to say, which are better places to start. And again, in the show notes that you&#8217;ve shared, you&#8217;ve alerted me to the fact that it may be that you think something is going to be relatively straightforward. So again, we&#8217;re talking about bug fixes here. So we are talking about the code.</p>\n\n\n\n<p>But it may be that you submit something and it turns out to be more difficult. So what you suggest then is that there are some recommendations for where a new contributor might start. So perhaps not the best idea to find the most difficult and challenging thing first time around. And there is some guidance that you can give in terms of where to look and tickets that are marked in a certain way. So yeah, I wonder if you could get into that.</p>\n\n\n\n<p>[00:31:53] <strong>Olga Gleckler:</strong> Yes, sometimes ticket can be, look very simple, but can turn into a rabbit hole. For example, my best example so far is changing double equal to triple equal. It can bring a lot of regressions, and you will be browsing, trying to fix other things. And most likely this change will not be worth it. And it will be very difficult to convince everyone else that it&#8217;s actually worth doing. And, we will not have ten more bugs because of this one.</p>\n\n\n\n<p>So sometimes good new patch, like a feature or enhancement, works better. And robust piece of code, when you have like head or tail, it&#8217;s great. And we have tickets which are marked as good first bugs. So if you are browsing tickets in Core track, you can see these tickets by this keyword, by search, custom search. And you can even subscribe to this good first bug hashtag on Twitter and following these tickets.</p>\n\n\n\n<p>For example, if some ticket is not good for you. If you don&#8217;t like it or you don&#8217;t want to work on UI, for example, or you prefer some other stuff, you can be subscribed to this hashtag, and following along and see what is actually working for you. And start when there will be like right ticket for you.</p>\n\n\n\n<p>But this can be like a bit shock, because a lot of people are subscribed to this good first bugs, they can be taken and already someone else can make a patch. But another thing is that if there is a patch, it does not mean that you cannot contribute because you can review this patch, you can make improvement to this patch.</p>\n\n\n\n<p>You can collaborate with other people on this ticket and make it work, and be great and quick. So, don&#8217;t abandon some ticket if there is a patch. Work is not done with the patch, it&#8217;s just the beginning.</p>\n\n\n\n<p>[00:34:01] <strong>Nathan Wrigley:</strong> You also make a recommendation to look out for, I guess, if you&#8217;re beginning at least anyway, to look out for tickets where the scope is really clear. And you&#8217;ve also got channels for feedback.</p>\n\n\n\n<p>[00:34:13] <strong>Olga Gleckler:</strong> Yes, definitely. Because sometimes scope isn&#8217;t clear and it also can turn rabbit hole. So if you have any doubts about tickets, just any, like a tickling feeling inside your head that something is not actually right, you can turn up into the Core channel on Slack, and ask about this ticket.</p>\n\n\n\n<p>Seasoned contributors will look through and clarify things for you. It&#8217;s actually better than put up a lot of work and then turn out that something was wrong in the beginning with the ticket and approach is not working. So don&#8217;t waste your time, and be ready to collaborate on the ticket from the beginning with other people. And it&#8217;s what actually is working.</p>\n\n\n\n<p>If you are like staying alone and doing something, you can feel lonely and a bit abandoned, and then disappointed. But if you are open to conversation to other people and can receive help, you can provide this help as well. And we are all working on the final result, on WordPress, and it&#8217;s great.</p>\n\n\n\n<p>[00:35:23] <strong>Nathan Wrigley:</strong> I like the way that you&#8217;ve rounded off the show notes, because you make the point that whole process of improving WordPress is a continuous learning process. And you may feel that you&#8217;ve just provided lots of your time. Maybe your patch wasn&#8217;t used, or you ran up against something which you couldn&#8217;t work out for yourself, and you needed additional help.</p>\n\n\n\n<p>But you make the point that it&#8217;s okay, you know. It wouldn&#8217;t be wise to view that as a waste of time because even negative experiences, when you view them from a distance can often be helpful. You may learn something along the way. So negative results, negative experiences may also turn out with time to be positive experiences. And so I guess that&#8217;s kind of a nice way to frame it.</p>\n\n\n\n<p>[00:36:05] <strong>Olga Gleckler:</strong> Yeah, you can like cut out things that are not working and to make clear paths to things which are working. And then the result, everyone&#8217;s contributions count. No matter if you make patch and it wasn&#8217;t working, and someone else went and improved your patch and make some additional things. And another iteration, another approach discovered some other possibilities. Upon your negative result, they will be going forward.</p>\n\n\n\n<p>[00:36:37] <strong>Nathan Wrigley:</strong> Just before we round it off, I do wonder what your thoughts are. It&#8217;s very clear from everything that you&#8217;ve said that you&#8217;re very committed, you&#8217;re very keen. You love all this stuff. I wonder what the state of contributions is? I&#8217;m particularly thinking about things like the pandemic, for example. And whether or not that had an impact in the amount of time that people were able to give.</p>\n\n\n\n<p>My understanding is that contributions may have taken a little bit of a dip. I don&#8217;t know where we&#8217;re at right now. Obviously the program that you mentioned for mentoring earlier is a great way to encourage people, to get people back in. But I don&#8217;t know what the situation is. Are people contributing this year in the same way that they were, let&#8217;s say, five years ago? I don&#8217;t know if you have any data on that at all.</p>\n\n\n\n<p>[00:37:24] <strong>Olga Gleckler:</strong> I don&#8217;t think any data, but yeah, we had a drop in contribution when pandemic started, because everyone was distressed and we need to take care about our family, our health. So we went through this and not once, but several times having this thing.</p>\n\n\n\n<p>But right now I think we are on the right track. It comes down and we used to new things, and it&#8217;s actually turned to be better for everyone. Because, for example, employers understand that people are able to work remotely. And many people right now are working remotely. They got more time. They are saving time on this road to work and back at home.</p>\n\n\n\n<p>So they are keeping this time and they can contribute more easily. I&#8217;m an example for this because I&#8217;m working remotely all these nine years. This is why I was able to contribute at the beginning, because otherwise I wouldn&#8217;t have time. So I think pandemic, it was horrible, yeah, but it&#8217;s turned for the better. And right now we can do more. We can contribute more and we can be more flexible in what we are doing.</p>\n\n\n\n<p>[00:38:45] <strong>Nathan Wrigley:</strong> Olga, I think we&#8217;ll wrap it up there. But before we do, obviously, you&#8217;re very keen, and if your passion for contributing has rubbed off on somebody else, and perhaps they would like to talk to you before they jump in with both feet. I wonder if you wouldn&#8217;t mind telling us a little bit about where we can find you. That might be a website or a Twitter handle, whatever you like.</p>\n\n\n\n<p>[00:39:07] <strong>Olga Gleckler:</strong> I think best place to find me is on Slack. Why my name? Because there are several channels, I can put people in the right direction straight away. And because I&#8217;m almost always there. I just want everyone to join. But, yes, if you have problems with Slack, and it can happen, then you can reach me on Twitter, and I will be able to help you join WordPress org, create an account, etc. But, probably you can try it yourself.</p>\n\n\n\n<p>[00:39:42] <strong>Nathan Wrigley:</strong> Olga Gleckler, thank you very much for joining us on the podcast today. I really appreciate it.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/Glekler/\">Olga Gleckler</a>.</p>\n\n\n\n<p>Olga is a self-taught developer with many years experience. After initially pursuing a career in marketing, she turned back to her passion for programming and became a full-time developer. She has been contributing to WordPress for four years and is currently serving as the Core triage lead for version 6.4. In addition, Olga is a maintainer for two components in Core, and actively participates in various teams within the WordPress community. Outside of work, she is also writing a fantasy book, which is a significant personal project for her.</p>\n\n\n\n<p>Olga has tried her hand in various teams within the community, ranging from Polyglots to Training, Support, and more. She challenges the commonly held misconception that only coders can contribute to the WordPress project, highlighting the many different ways individuals can contribute without coding skills.</p>\n\n\n\n<p>During our conversation, Olga shares some examples of non-coding contributions that can be made to the WordPress project. We talk about the process of submitting patches and contributions to WordPress, discussing the schedule for releases, and the importance of understanding the processes and deadlines.</p>\n\n\n\n<p>Olga also emphasises the essential steps of testing, reviewing for coding standards, and ensuring correct documentation in order to make impactful contributions.</p>\n\n\n\n<p>Olga&#8217;s journey in the WordPress community has been very varied. She discusses how being a part of this ecosystem has improved her career prospects and gained her trust from others. However, she acknowledges that not everyone finds their place immediately, and may struggle to get started. She explores how to contribute without becoming discouraged, and shares her experiences in the mentorship program that paired mentors with mentees in navigating the WordPress community.</p>\n\n\n\n<p>Throughout the conversation, Olga shows a deep passion for the WordPress project and the collaborative nature of the community. She reminds us that contributing to open-source projects requires patience and persistence, and shares her insights on learning methods, seeking guidance, and asking questions in order to make progress.</p>\n\n\n\n<p>If you’ve thought about contributing to WordPress, but are not sure where to begin, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/project/2023/06/23/launch-your-wordpress-contributor-journey-through-the-mentorship-program-pilot/\">Contribute Mentorship Program</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/6-4/\">WordPress 6.4 Development Cycle</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/polyglots/handbook/about/\">Polyglots Team</a></p>\n\n\n\n<p><a href=\"https://core.trac.wordpress.org/\">WordPress Core Trac</a></p>\n\n\n\n<p><a href=\"https://twitter.com/Glekler/\">Olga&#8217;s Twitter</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Sep 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"Do The Woo Community: La Comunidad de WordPress en Español / WordPress Community in Spanish\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76497\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://dothewoo.io/spanish-latin-america-wordpress-community/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:454:\"<p>Únete a Juan Hernando, Ericka Barboza y Javier Casares en una animada conversación sobre la comunidad de WordPress en España y Latinoamérica.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/spanish-latin-america-wordpress-community/\">La Comunidad de WordPress en Español / WordPress Community in Spanish</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Sep 2023 09:23:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"HeroPress: My Journey and Travels with WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=5811\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"https://heropress.com/essays/my-journey-and-travels-with-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=my-journey-and-travels-with-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12098:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/09/091223-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress has given me a wealth opportunity, freedom, and some fabulous friendships.\" /><p>I love WordPress!&#8230;</p>\n\n\n\n<p>For many years I opened and operated Irish pubs for investors across Europe &#8211; it was lots of fun, it was also exhausting! I was itching to do something that wasn&#8217;t so physically demanding and very restricting on my time. </p>\n\n\n\n<h2 class=\"kt-adv-heading5811_803067-d3 wp-block-kadence-advancedheading\">The Journey Begins</h2>\n\n\n\n<p>I began to learn WordPress. WordPress gave me the freedom I was craving. After a couple of years playing with it I began to build sites for other people, eventually leaving the hospitality industry to build websites.</p>\n\n\n\n<p>Back then I had recently moved from Bruges in Belgium to Brittany region of France where I&#8217;d bought an old granite 4 story house built in 1860 to renovate. I was asked by a local French / English association if I would run some in person workshops for some of their members. These people who wanted to build and maintain a simple website themselves.</p>\n\n\n\n<p>Most attendees were English speaking Ex Pats from start-up businesses with tiny budgets. Some were French speakers, from local French sports teams and associations, who were wanting to create an information point for their clubs. The clubs and associations had even less budget</p>\n\n\n\n<p>I agreed to run a pilot workshop, which I called &#8216;Build a Simple Website by Teatime Today&#8217; to see how things went. The uptake was for the first workshop was phenomenal. We were limited by room capacity and safe power points to 25 participants.</p>\n\n\n\n<p>All slots were taken in under 24 hours. A few days later the association got in touch again saying, &#8220;We know you said lets run a pilot and take things from there&#8221; however we have had another 43 people enquiring so we have opened a waiting list.&#8221;</p>\n\n\n\n<p>&#8220;Ooooh la la&#8221; I said &#8220;I&#8217;d better work on my presentation skills!&#8221;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-being-a-teacher\">Being A Teacher</h2>\n\n\n\n<p>It was the first of many WordPress workshops over the three years that I lived in Brittany, I regularly presented to several organisations and associations and I really enjoyed it.</p>\n\n\n\n<p>As a happy accident, it was also the start of me offering website hosting and maintenance too. Initially this was offering very low cost shared hosting space on my server for the workshop participants giving each their own Cpanel. Domains were obtained for each participant prior to the workshops in their own names and I created their hosting accounts prior to the workshops too again with their prior consent. I had also asked each participant to prepare initial pages texts, images and logos if they had one saved in a file on their laptops ready for the workshop.</p>\n\n\n\n<p>Each workshop began with a quick peak at Cpanel for the purpose of creating an email account and to load WordPress on to the domain using Fantastico &#8211; remember Fantastico? Fantastico was superseded by Softaculous and for people people with very little tech experience, wanting to build a website DIY [as a do it yourself project] it offered an easier route than loading WordPress via FTP.</p>\n\n\n\n<p>From there we covered logging into their WordPress dashboards loading a theme, adding pages adding content to the pages including logo and images from the participants pre prepared folders.<br />For the ease of the workshop we all used the same theme. It was the beginning of the participants WordPress journey. I was delighted;- all of them had a thirst for more in depth learning as a result more workshops followed. Within a couple of years I was super busy again feeling my time was not my own again!</p>\n\n\n\n<h2 class=\"kt-adv-heading5811_c67890-71 wp-block-kadence-advancedheading\">Moving On</h2>\n\n\n\n<p>Working with WordPress meant I could work from anywhere as long as I had an internet connection.<br />It was time for another adventure! This time relocating from France to England where my partner Simon, an international touring musician, and I lived on a narrowboat. I spent several years traveling with the band when they toured, mostly taking photos and keeping the tour bus spic and span! With a regular job that wouldn&#8217;t have been possible.</p>\n\n\n\n<p>In January 2017, after a very busy 2016, we took a quick spur of the moment holiday to Ullapool in the Scottish Highlands, seeking snow! We extended our trip by a week, then another week and then decided we wanted to stay, and stay we did! We took a 6 month Winter let on a holiday cottage, popping off on tour from our new location. Towards the end of the 6 months, we found a cottage on the edge of Strathgarve Forest between Ullapool and Inverness and moved in between tour dates.</p>\n\n\n\n<p>It&#8217;s a stunning, extremely rural location and we love it. Here I have an office in our cottage which benefits from superfast broadband despite our very rural location. After over 30 years of touring Simon trying his best to retire from life on the road.</p>\n\n\n\n<p>I have a bunch of clients that keep me as busy as I want to be, some of whom I have worked with for many years, some are new to me since coming to Scotland.</p>\n\n\n\n<p>I have been lucky in that lovely clients seem to find me, through word of mouth really. I don&#8217;t advertise and I haven&#8217;t had the capacity to take on new clients for some time. I really don&#8217;t want to expand which may seem strange to many. I have no interest in taking on employees, I have been there and done that in my pub life days. These days I like an easy life enabling me to enjoy where I live and indulging my passion for open spaces and photography.</p>\n\n\n\n<p>WordPress has an amazing community around the World, it has brought so many opportunities and so many friendships into my life from all around the world. I love the collaboration.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-giving-back\">Giving Back</h2>\n\n\n\n<p>Just last week I was on a Zoom call with a group hosted from the USA. Nathan, the guy hosting the call said to me, &#8221; Hey Sadie, I saw a photograph on display at WordCamp USA last week that you&#8217;d taken. Did you know about that?&#8221;</p>\n\n\n\n<p>Truth was I didn&#8217;t. Nathan said &#8220;I&#8217;ll email it to you I took a photo of your photo!&#8221;</p>\n\n\n\n<p>The next morning I received an email from Nathan and attached was his photo of my photo in a frame with my name and a QR code attached. It was a&nbsp; Fly Agaric photo which I had taken and submitted as a creative commons contribution to the WordPress Photo Directory which is part of the Make WordPress project. I read an article a few weeks ago which was all about getting involved in the WordPress community for the growth and benefit of the community and the future of WordPress.</p>\n\n\n\n<p>&#8220;Five for the Future&#8217; which is an initiative promoting the WordPress community’s contribution to the platform’s growth. It&#8217;s an open source project, WordPress is created by a diverse collection of people from around the world. The purpose of the project is to encourages organisations to contribute five percent of their resources to WordPress development.</p>\n\n\n\n<p>Next I read about the Make WordPress initiative and loved everything about it. There are lots of ways for WordPress advocates to get involved and give something back to the fantastic community that WordPress is.</p>\n\n\n\n<p>The Photo Directory grabbed my attention because I am a prolific snapper!! I immediately began to submitting photographs.&nbsp; All photos are submitted to the WordPress Photo Directory are submitted on the basis that they are gifted in to the public domain for anyone to use, anywhere, for any purpose, without the need for attribution. I recently join the Photos team as a moderator too.</p>\n\n\n\n<p>Whilst WordPress hasn&#8217;t made me a millionaire yet! It has given me a wealth opportunity, freedom, and some fabulous friendships. WordPress is a huge part of my life. I love WordPress!</p>\n\n\n<div class=\"kb-gallery-wrap-id-5811_02d44e-72 alignnone wp-block-kadence-advancedgallery\"><ul class=\"kb-gallery-ul kb-gallery-non-static kb-gallery-type-grid kb-gallery-id-5811_02d44e-72 kb-gallery-caption-style-bottom-hover kb-gallery-filter-none kb-gallery-magnific-init\"><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/09/1264b7706fd91b16.42330373-1024x683.jpeg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/09/1264b7706fd91b16.42330373-scaled.jpeg\" width=\"2560\" height=\"1707\" alt=\"\" class=\"wp-image-5829\" /></div></div></a></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/09/12564c782f823ef03.11650285-1024x768.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/09/12564c782f823ef03.11650285-scaled.jpg\" width=\"2560\" height=\"1920\" alt=\"\" class=\"wp-image-5834\" /></div></div></a></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/09/20564b2aed3c07247.22900210-1024x768.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/09/20564b2aed3c07247.22900210-scaled.jpg\" width=\"2560\" height=\"1920\" alt=\"\" class=\"wp-image-5830\" /></div></div></a></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/09/32764bfc861947853.44027496-1024x683.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/09/32764bfc861947853.44027496-scaled.jpg\" width=\"2560\" height=\"1707\" alt=\"\" class=\"wp-image-5832\" /></div></div></a></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/09/49264fb52266dd038.07548553-1024x683.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/09/49264fb52266dd038.07548553-scaled.jpg\" width=\"2560\" height=\"1707\" alt=\"\" class=\"wp-image-5833\" /></div></div></a></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/09/83264b2ae3eb55005.15218256-1024x768.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/09/83264b2ae3eb55005.15218256-scaled.jpg\" width=\"2560\" height=\"1920\" alt=\"\" class=\"wp-image-5831\" /></div></div></a></div></li></ul></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/my-journey-and-travels-with-wordpress/\">My Journey and Travels with WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Sep 2023 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Sadie-Michaela Harris\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: WordPress Plugin Developers Renew Demands for Better Plugin Metrics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148726\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/wordpress-org-plugin-developers-renew-demands-for-better-plugin-metrics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9497:\"<p>It has be nearly one year since <a href=\"https://wptavern.com/wordpress-org-removes-active-install-growth-data-for-plugins\">WordPress silently turned off active install growth data for plugins</a> hosted in the official plugin repository, a key metric that many developers rely on for accurate tracking and product decision-making. “Insufficient data obfuscation” was cited as the reason for the charts’ removal, but this opaque decision landed without any communication from those who had made the call in a private discussion.</p>\n\n\n\n<p>In a ticket originally titled “<a href=\"https://meta.trac.wordpress.org/ticket/6511\">Bring back the active install growth chart,</a>” RebelCode CEO Mark Zahra made the opening plea for thousands of plugin developers who were asking for the return of this data. From those who simply host hobby plugins and enjoy the thrill of watching people use software they made to business owners who need this data to make critical decisions, the overwhelming consensus was that this data is valuable and should be available to those who are contributing to WordPress through plugins.</p>\n\n\n\n<p>In an appearance on the&nbsp;<a href=\"https://wpwatercooler.com/wpwatercooler/ep432-solutions-to-the-active-growth-problem/\">WPwatercooler podcast</a> last year, Audrey Capital-sponsored meta contributor Samuel &#8220;Otto&#8221; Wood confirmed the decision was made through private channels via Slack DMs in a discussion initiated by Matt Mullenweg. He also revealed that the active install growth chart was removed because it was giving inaccurate data and that the data one could derive from it was inaccurate:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I read through all that discussion and we worked, they worked on it for a long, Scott and several people tried various things before removing it. They adjusted the values, they adjusted numbers. They, they went through a ridiculous amount of iteration and in the end, none of it worked. People were still using it even though it was giving them basically garbage. So finally removing it was the only thing to do. We did have a plan for replacing it. We just didn’t have a plan for replacing it immediately. Nevertheless, giving them active install count numbers that are wrong is more harmful, we felt, to both users and developers interests than simply not giving them at all.&nbsp;</p>\n</blockquote>\n\n\n\n<p>Wood offered an explanation on the podcast that should have been delivered weeks earlier by those involved in the discussion on official channels. Despite the earlier data being flawed and &#8220;insufficiently obfuscated,&#8221; developers still want access to the raw data, not interpretations of that data. </p>\n\n\n\n<p>These are the posts that track the history and development of developers&#8217; pleas to reinstate access to the data:</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<ul>\n<li><a href=\"https://wptavern.com/wordpress-org-removes-active-install-growth-data-for-plugins\">WordPress.org Removes Active Install Growth Data for Plugins</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/wordpress-org-plugin-developers-demand-transparency-regarding-the-removal-of-active-install-growth-data\">WordPress.org Plugin Developers Demand Transparency Regarding the Removal of Active Install Growth Data</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/discussion-on-replacing-plugin-active-install-growth-data-continues-behind-closed-doors\">Discussion on Replacing Plugin Active Install Growth Data Continues Behind Closed Doors</a></li>\n</ul>\n\n\n\n<p>During the height of this discussion, developers made many suggestions for different data points that would be meaningful for tracking their efforts, and Matt Mullenweg responded that he was amenable to showing more stats to plugin authors about their plugins. No progress on this effort has been reported since then.</p>\n\n\n\n<p>&nbsp;StellarWP&nbsp;Product Marketing Director&nbsp;Taylor Waldon has <a href=\"https://twitter.com/tElizaRose/status/1699134532199538877\">reopened this discussion</a> nearly a year later, calling on Mullenweg to stop restricting access to plugin data from people who are hosting themes and plugins on WordPress.org.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Dear <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> <br /><br />Without (real) Active Install data, we are not able to measure the success of our free product. Downloads is not the right KPI. Please bring it back. <br /><br />Sincerely,<br />All WP Marketers with free products on .org. <br /><br />If you agree, please RT, reply, etc. <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a></p>&mdash; Taylor Elizabeth Rose | Find me on Bluesky (@tElizaRose) <a href=\"https://twitter.com/tElizaRose/status/1699134532199538877?ref_src=twsrc%5Etfw\">September 5, 2023</a></blockquote>\n</div>\n\n\n\n<p>&#8220;I talked to a bunch of folks at [WCUS] contributor day,&#8221; Paid Memberships Pro co-founder and CEO Jason Coleman said in response to Waldon&#8217;s tweet. &#8220;As far as I know, there isn&#8217;t any other current effort to update or replace the install count numbers or old &#8216;growth&#8217; chart.\'&#8221;</p>\n\n\n\n<p>Coleman put together a <a href=\"https://docs.google.com/document/d/1RSNUTdFk3XA-u8Y0-NUe7iaM5zBz0KVM--JdXjBp6iE/edit\">draft proposal</a> with some ideas from his conversations. The document describes a common scenario where plugin developers are left in the dark about the growth or decline of their plugins&#8217; active installations:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Imagine a developer with a plugin with 150k active installations. That developer has effectively 0 quantitative feedback on whether users of his plugin are growing or falling. The download count has a trend, but there is no separation between new downloads and updates. The download count tracks developmental pace as much as user growth. A bump in downloads could be due to a security vulnerability being patched or an influx of new users. The current active installations count is severely rounded and offers no feedback until such a plugin either gains or loses 33% of its users, which are drastically different outcomes.</p>\n</blockquote>\n\n\n\n<p>Coleman contends that plugins hosted outside of WordPress.org are able to gather more meaningful metrics. Popular plugins have resorted to including features in non-WordPress.org add-ons or simply removing their extensions altogether from the repository for lack of data. </p>\n\n\n\n<p>His proposal includes a few metrics that would help developers better track their plugins, even if that data is only shown to the authors themselves:</p>\n\n\n\n<ul>\n<li>Share a more accurate active installations count with the owners of a plugin.</li>\n\n\n\n<li>Share more accurate version number counts with the owners of a plugin.</li>\n\n\n\n<li>Differentiate the download count by type: website downloads, dashboard installs, dashboard downloads, updates, other (hits to the zip file).</li>\n\n\n\n<li>Allow plugin developers to define custom event triggers to be tallied and displayed to the plugin owners on the plugins .org profile page.</li>\n</ul>\n\n\n\n<p>Coleman&#8217;s draft is still in progress and so far he is the only one who has authored the document. If the recommended actions gain any traction, he said he hopes to be part of the contributor team that implements the changes. </p>\n\n\n\n<p>&#8220;The intention was to write something that could be proposed to meta team,&#8221; Coleman said. &#8220;But honestly, I thought I would write it up, it would get shot down, and then I could move on with my life. Even if nothing got updated, it would be more clear to me and others which parts of the .org code were in public repositories and which were in the private repositories. It would be more clear what the real issues are with the active installs count.</p>\n\n\n\n<p>&#8220;The communication around the removal of the active install growth chart caused many to lose trust in parts of the WordPress .org project. I thought some clarity around how things work and the real reasons around the changes would help to rebuild some of that trust that was lost.&#8221;</p>\n\n\n\n<p>WordPress.org has always been the most popular distribution channel for the most widely used plugins, but the data available has not kept pace with developer and business needs. Releasing the raw data, while respecting any privacy limitations, would allow developers to extract their own interpretations of that data and allow services to present it in creative ways.</p>\n\n\n\n<p>At the very least, this data should be available to developers (even if it&#8217;s not public) to help them better track the trajectory of their plugins and the efficacy of their marketing efforts. More data can only serve to improve the WordPress ecosystem&#8217;s ability to continue powering a multi-billion dollar economy. There are undoubtedly many technical requirements for supporting the release of this data, and they need to be prioritized if WordPress.org is to continue attracting the best products for distribution.</p>\n\n\n\n<p>&#8220;This is not about vanity metrics or inflating numbers for marketing purposes,&#8221; Coleman said. &#8220;This is about getting valuable feedback on the relative use of a plugin hosted in the .org repository so developers can make informed decisions and investments in those plugins.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Sep 2023 20:24:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"Do The Woo Community: More WCUS Insights from Matt, Seth, Shambi, Jeremy, Mike, Patrick, Bud and Katie\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76485\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://dothewoo.io/more-wcus-insights-from-matt-seth-shambi-jeremy-mike-patrick-bud-and-katie/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:520:\"<p>Reflections and highlights of WordCamp US 2023 from Matt Medeiros, Seth Goldstein, Shambi Broome, Bud Kraus, Jeremy Freemont, Mike Demo, Patrick Rauland and Katie Keith</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/more-wcus-insights-from-matt-seth-shambi-jeremy-mike-patrick-bud-and-katie/\">More WCUS Insights from Matt, Seth, Shambi, Jeremy, Mike, Patrick, Bud and Katie</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Sep 2023 09:03:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: WordPress Training Team Seeks Community Feedback on Learning Pathways\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148690\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/wordpress-training-team-seeks-community-feedback-on-learning-pathways\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2845:\"<p>Earlier this year, the WordPress Training Team published the <a href=\"https://make.wordpress.org/training/2023/05/30/analysis-of-the-individual-learner-survey-results/\">results from the Individual Learner Survey</a> completed in 2022. The goal of the survey was to identify the most useful and high-impact resources and content for <a href=\"https://learn.wordpress.org/\">Learn.WordPress.org</a> and guide the future development of this community learning tool.</p>\n\n\n\n<p>One of the main takeaways of this survey was the need for a clear, structured, and user-friendly approach to presenting Learn WordPress content. This need was also confirmed by feedback from WordCamp Europe Contributor Day attendees.</p>\n\n\n\n<p>As a result, the training team launched the <a href=\"https://make.wordpress.org/training/2023/07/07/project-thread-learning-pathways-on-learn-wordpress/\">Learning Pathways on Learn WordPress project</a> in July of this year. The objective of this project is to create and launch progressive user-friendly learning pathways tailored to different types of Learners on Learn WordPress. The training team anticipates that this project will be a year-long effort, working collaboratively with multiple different teams, including the Meta and Marketing teams. </p>\n\n\n\n<p>Since WordCamp Europe, the Training Team has started the process of drafting rough outlines for learning pathways intended for Users, Designers, and Developers.</p>\n\n\n\n<p>In August, Automattic-sponsored training team contributor Wes Theron published a post on the training team blog, <a href=\"https://make.wordpress.org/training/2023/08/24/looking-for-feedback-learning-pathway-outlines/\">asking for community feedback</a> on the proposed learning pathways. </p>\n\n\n\n<p>I asked Theron why he feels this project is so important, and what feedback he would like from the community:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The Learning Pathways project focuses on improving the educational experience on Learn WordPress by creating personalized learning journeys for various learner profiles. These tailored pathways aim to enhance the Learn WordPress platform&#8217;s effectiveness and user-friendliness.</p>\n\n\n\n<p>We have drafted the rough outlines for learning pathways intended for Users, Designers, and Developers. We&#8217;re excited to get the community&#8217;s thoughts and ideas to help shape them further before moving forward.</p>\n</blockquote>\n\n\n\n<p></p>\n\n\n\n<p>The Training Team has set the deadline for feedback for the 15th of September 2023. If you would like to review the proposed learning pathways and provide your feedback, you can do so from the <a href=\"https://make.wordpress.org/training/2023/08/24/looking-for-feedback-learning-pathway-outlines/\">Looking for feedback: Learning pathway outlines post</a> on the Training Team blog.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Sep 2023 03:24:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Jonathan Bossenger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: 10up Merges With Fueled, Backed by Insignia Capital\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148679\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wptavern.com/10up-merges-with-fueled-backed-by-insignia-capital\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9330:\"<p><a href=\"https://10up.com/\">10up</a>, a leading development agency and contributor to the WordPress project, has <a href=\"https://10up.com/blog/2023/10up-joins-forces-with-fueled-digital-media/\">merged</a> with <a href=\"https://fueled.com/\">Fueled</a>, a technology consultancy that specializes in mobile and web application development. Together, the companies now employ more than 400 full time team members, forming a digital powerhouse with expanded market reach across mobile and publishing sectors.</p>\n\n\n\n<p>&#8220;Fueled has built stand out iOS and Android apps – several of which I’ve personally used – for clients like <a href=\"https://fueled.com/projects/warby-parker\">Warby Parker</a>, <a href=\"https://fueled.com/projects/verizon/\">Verizon</a>, the United Nations, and even Apple themselves,&#8221; 10up President Jake Goldman said. &#8220;Just as 10up has <a href=\"https://wildsymphony.com/\">built some great mobile applications</a>, Fueled has executed notable works in the web application space for clients like <a href=\"https://fueled.com/projects/wsj\">Wall Street Journal</a> and <a href=\"https://fueled.com/projects/wirecutter\">The New York Times</a> – but content management systems and editorial experience has never been a core focus and strength. Until now.&#8221;</p>\n\n\n\n<p>The merger transaction was made possible by investment  from <a href=\"https://www.insigniacap.com/\">Insignia Capital</a>, a firm that previously invested in Fueled. Insignia has made Fueled&#8217;s merger with 10up its first major growth investment, paying to restructure the companies&#8217; ownership model. All parties invested in the merger hold meaningful shares, with none of them holding a majority share.</p>\n\n\n\n<p>Goldman said 10up owners rolled over meaningful equity into the joint business, &#8220;but there was also a very healthy purchase of 10up equity to make this possible.&#8221;</p>\n\n\n\n<p>10up&#8217;s announcement hinted at more acquisitions in the newly combined companies&#8217; future.</p>\n\n\n\n<p>&#8220;Insignia brings a whole new class of financial and investment capabilities to 10up and Fueled, with an appetite for responsibly paced growth through acquisition,&#8221; Goldman said. &#8220;They don’t just bring capital – they also bring expertise and impressive connections.&#8221;</p>\n\n\n\n<p>He further elaborated on their acquisition strategy as seeking to expand their combined capabilities &#8220;to compete with the biggest digital transformation agencies:&#8221;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>In the broadest of terms, I think that we’re pretty open minded to what we find in the market, but opportunities that meaningfully expand what we can offer &#8211; shoring up weaker spots in our capabilities &#8211; are going to be the most attractive. As examples, while we’ve each done CRM and CDP integration work and strategy, I’d imagine a first rate CRM and/or CDP consultancy with some great case studies and clients would be the kind of opportunity that would be particularly interesting.</p>\n</blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Open Source Contribution Will Continue To Be a Priority at 10up</h2>\n\n\n\n<p>Nearly 12 years after Goldman started 10up with what he said was &#8220;a small personal savings account and the sweat equity of more than a decade making websites and other media,&#8221; he is no longer the sole leader of the organization and will take on the role of Partner in the merged companies. Integral to the success of 10up, which Goldman has scaled to $40M+ in annual revenue, is its consistent commitment to supporting the open source ecosystem from which it has derived millions of dollars in value. Fueled acknowledged this in its <a href=\"https://fueled.com/blog/fueled-merges-with-10up/\">announcement</a> about the merger:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>10up has long held a commitment to the open web, and open source contributions as a core value. This will remain a priority, especially towards the WordPress community, and will be further strengthened by the additional market reach gained from the merger.</p>\n</blockquote>\n\n\n\n<p>Fueled shares this same ethos, which they intend to continue cultivating following the merger.</p>\n\n\n\n<p>&#8220;Fueled has always been supportive of open source, even if their part of the market (mobile apps) hasn&#8217;t embraced that model in the way web CMS has,&#8221; Goldman said. &#8220;They have open sourced projects (in fact, we incidentally found that we were using one!), and, like 10up, have fully embraced and focused on open technology solutions like NodeJS and React for web applications.&#8221;</p>\n\n\n\n<p>For the most recent WordPress 6.3 release, <a href=\"https://jeanbaptisteaudras.com/2023/08/contribution-stats-for-wordpress-6-3-lionel/#:~:text=WordPress%206.3%20overall%20stats,which%20is%20a%20great%20ratio!\">10up had the second most contributions by company</a>, with 290 contributions from 16 people, superseded only by Automattic, which boasts 83 contributors. </p>\n\n\n\n<p> </p>\n\n\n\n<img src=\"https://jeanbaptisteaudras.com/2019/wp-content/uploads/2023/08/wp63-contributor-company.svg\" alt=\"\" />image credit: <a href=\"https://jeanbaptisteaudras.com/2023/08/contribution-stats-for-wordpress-6-3-lionel/#:~:text=WordPress%206.3%20overall%20stats,which%20is%20a%20great%20ratio!\">WordPress 6.3 contribution stats</a>\n\n\n\n<p>10up has consistently been among the top contributors to the software, which has been essential to the world-class publishing experiences the company has built for its clients.</p>\n\n\n\n<p>&#8220;That commitment to giving back to the web, making sure there&#8217;s a ladder for the next generation of developers to climb, and helping open technologies thrive remains with us,&#8221; Goldman said. &#8220;Our new business partners understand that this is deeply intertwined with 10up&#8217;s identity, and perhaps more importantly, our <em>success</em>. It&#8217;s not <em>just</em> a generosity thing – it&#8217;s also good business.</p>\n\n\n\n<p>&#8220;Merging with and investing in 10up would be pretty foolish if you aren&#8217;t comfortable with the tools and platforms we use and prefer, most especially the web&#8217;s most popular open source CMS, and you can bet that being comfortable with that, and researching that question, was essential to their comfort with merging. In many ways, that&#8217;s a validation for WordPress.&#8221;</p>\n\n\n\n<h3 class=\"wp-block-heading\">10up and Fueled Will Gradually Merge Services and Administration, Pursuing Large Scale Digital Transformation Clients</h3>\n\n\n\n<p>10up and Fueled will largely operate as two companies and close partners for the time being, sharing leads and pursuing customer growth together. Goldman said the vision is not to simply have web publishing/WordPress customers and separate mobile app customers but rather to go after large scale digital transformation projects.</p>\n\n\n\n<p>&#8220;That means having a fully integrated way to deliver everything from the mobile apps, to the website and CMS, to advanced e-commerce and CRM integrations (even if we may only provide one of those services to some clients),&#8221; he said. &#8220;That means we&#8217;re not just operating as separate companies in the <em>future</em>, but truly merging and unifying our companies from leadership and sales on down through project and product management, user research and design, and engineering delivery.&#8221;</p>\n\n\n\n<p>Given that both brands hold considerable weight and influence in their respective markets, Goldman said they agreed &#8220;it would be incredibly foolish to discount that and rush to a single brand.&#8221; Instead, they plan to explore how the companies can work together.</p>\n\n\n\n<p>&#8220;We honestly don&#8217;t know where we&#8217;ll land on the external brand question, and didn&#8217;t think it was fundamental to the question of merging,&#8221; Goldman said. &#8220;We&#8217;ll be exploring and researching that question together, and any change would, again, be gradual and planned.</p>\n\n\n\n<p>&#8220;We all similarly agree that when we think out into the future, whether that&#8217;s 12 or 24 months from now (probably something in between), that we probably don&#8217;t want two separate, external, top line company brands competing for attention and oxygen in the space, to say nothing of competing for internal focus and resources.&#8221;</p>\n\n\n\n<p>He said that could play out in a number of ways, and may be a data driven decision. For example, 10up could evolve to be the brand name for the WordPress engineering services team or the company&#8217;s open source and productized solutions. Nothing has been predetermined about the branding.</p>\n\n\n\n<p>In the meantime, it appears to that the combination of companies will be a more gradual merging of services and administration.</p>\n\n\n\n<p>&#8220;In the mid term, maybe the next year, we want to focus on building a highly collaborative world class sales and growth operation, unifying back office (benefits management, financial operations, recruiting ops, etc), and looking at where some of our smaller capabilities and disciplines that aren&#8217;t very specific to 10up or Fueled delivery might benefit from joining forces and achieving some economy of scale,&#8221; Goldman said.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Sep 2023 21:12:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WordPress.org blog: The Month in WordPress – August 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15933\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2023/09/the-month-in-wordpress-august-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12997:\"<p>August 2023 marked another exciting chapter in WordPress, with the Community Summit and WordCamp US bringing the community together for meaningful discussions, knowledge sharing, and learning. This month also welcomed the long-awaited WordPress 6.3 release and offered a glimpse of what&#8217;s to come. Let&#8217;s dive into it.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Meet WordPress 6.3 “Lionel”</h2>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/08/lionel/\"><strong>WordPress 6.3 &#8220;Lionel&#8221;</strong></a> was released on August 8, 2023, and named after the acclaimed vibraphonist, pianist, and jazz percussionist Lionel Hampton.</p>\n\n\n\n<p><strong>This major update makes bringing your vision to life with blocks more intuitive and efficient.</strong> Your content, templates, and patterns are now seamlessly integrated into the Site Editor, enabling you to craft every aspect of your online presence within a single location. You can sharpen your designs with new tools, enjoy fine-tuned control over navigation menus, and work faster with the Command Palette. <a href=\"https://wordpress.org/download/releases/6-3/\">Explore what&#8217;s new</a>.</p>\n\n\n\n<p>WordPress 6.3 features over 500 features and enhancements with a continued emphasis on <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">performance</a> and accessibility. This release was made possible by more than 650 contributors from 52 countries.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>While the Site Editor will continue to be enhanced, this release means a significant milestone as <strong>it marks the conclusion of Gutenberg Phase 2</strong>. Take a moment to watch “<a href=\"https://www.youtube.com/watch?v=FcTLMTyD2DU\">Designed with WordPress</a>”—an ode to this remarkable journey worth celebrating.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 6.3.1</a>.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Roadmap to 6.4</h2>\n\n\n\n<p>Contributors are already working on WordPress 6.4, expected to be released on<strong> November 7, 2023</strong>. This release, led by an <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">underrepresented gender release squad</a>, will focus on enhancing different aspects of the WordPress experience while continuing the foundational work for Gutenberg Phase 3. Users can anticipate features like font management and a new default theme, Twenty Twenty-Four.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\"><strong>Twenty Twenty-Four</strong></a> aims to be a versatile theme, featuring a range of templates and patterns specifically designed for three use cases: entrepreneurs and small businesses, photographers and artists, and writers and bloggers.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/08/22/roadmap-to-6-4/\">Check out the 6.4 roadmap post</a> for a tentative preview of expected features.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Two new versions of Gutenberg shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/10/whats-new-in-gutenberg-16-4-9-august/\"><strong>Gutenberg 16.4</strong></a> was released on August 9, 2023. It introduced a new “auto-inserting blocks” experimental feature, a progress bar component that can be used throughout the interface, and block supports for the Footnotes block.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/23/whats-new-in-gutenberg-16-5-23-august/\"><strong>Gutenberg 16.5</strong></a><strong> </strong>shipped on August 23, 2023, and focused on enhancements to the Command Palette and enabling further customization of blocks.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a>Follow the “<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s new in Gutenberg</a>” posts to stay on top of the latest enhancements.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Next generation of WordPress events, WP Admin redesign, and more</h2>\n\n\n\n<ul>\n<li>The Community team has been busy ushering in the next generation of WordPress events. <a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Four pilot events were successfully held</a> in July and August, with another five planned before the end of the year.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff post</a> elaborates on the concepts explored so far to revitalize the WordPress admin experience.</li>\n\n\n\n<li>In response to <a href=\"https://www.european-cyber-resilience-act.com/\">Europe&#8217;s Cyber Resilience Act</a> (CRA), leaders from Drupal, Joomla!, TYPO3, and WordPress <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">co-authored an open letter</a> addressing concerns about the current CRA definitions and terms and the implications for open source projects.</li>\n\n\n\n<li><a href=\"https://wordpress.org/blocks/\">Check out WordPress.org/blocks</a>—A <a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">new page</a> that explores the power of blocks within WordPress and as a broader framework.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/21/wordpresscs-3-0-0-is-now-available/\">WordPressCS 3.0.0 is now available</a>. This update to the WordPress Coding Standards introduces improvements in accuracy, performance, stability, and compatibility with modern PHP versions.</li>\n\n\n\n<li>The first cohort of the WordPress Contributor Mentorship Program, which aims to help new contributors onboard to Make teams, <a href=\"https://make.wordpress.org/project/2023/08/11/the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program-has-concluded/\">successfully concluded</a> last month.</li>\n\n\n\n<li><a href=\"https://wordpress.org/remembers/\">WordPress Remembers</a> went live in August to honor contributors who left a lasting impact on the project and have since passed away.</li>\n\n\n\n<li>Core team members proposed to <a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">sync Gutenberg code with core earlier in the release cycle</a> to streamline the integration of new features and reduce risks and delays in major release milestones.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/08/11/blue-note-the-second-community-theme-is-released/\">Blue Note</a>, the second block theme born from the Community Themes initiative, is live on the Theme Directory.</li>\n\n\n\n<li>Every month, the Training team works to expand the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> catalog with new courses, tutorials, online workshops, and more. <a href=\"https://make.wordpress.org/updates/2023/09/02/whats-new-on-learn-wordpress-in-august-2023/\">See what’s new</a>.</li>\n\n\n\n<li>Openverse maintainers met in Copenhagen for an exciting exchange with Statens Museum for Kunst (SMK), Denmark’s largest art museum. <a href=\"https://make.wordpress.org/openverse/2023/08/17/cultivating-collaborative-pathways-with-statens-museum-for-kunst-smk/\">Learn about their discussions and collaboration efforts</a> to advance openly licensed works.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Keen to see new WordPress event formats happening in your local community? <a href=\"https://make.wordpress.org/community/2023/08/30/the-nextgen-event-project-your-ideas-your-wordpress-community/\">Get inspired by these creative concepts</a> and <a href=\"https://wordpressdotorg.survey.fm/next-generation-of-wordpress-events\">share your ideas</a>!</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>Core team members <a href=\"https://make.wordpress.org/core/2023/08/31/proposal-an-update-to-the-field-guide/\">suggested updating the WordPress Field Guide</a> by publishing it earlier in the development cycle and introducing a simplified Field Guide on the WordPress Developer Blog. Feedback is open until September 15, 2023.</li>\n\n\n\n<li>Help test the <a href=\"https://make.wordpress.org/core/2023/09/05/call-for-testing-performant-translations/\">new Performant Translations plugin</a>, which aims to make localized WordPress sites faster.</li>\n\n\n\n<li>A new proposal aims to <a href=\"https://make.wordpress.org/support/2023/08/proposal-for-updated-support-guidelines/\">refine and update WordPress’ support guidelines</a>. You can provide your input by October 1, 2023.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/09/06/mobile-team-update-september-6th-2/\">Version 23.2</a> of the WordPress mobile app for iOS and Android is ready for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Training team seeks feedback on the first learning pathways outlined to improve the Learn WordPress educational experience. <a href=\"https://make.wordpress.org/training/2023/08/24/looking-for-feedback-learning-pathway-outlines/\">Share your thoughts by September 15, 2023</a>.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>On August 22-23, a group of WordPress contributors gathered at the <a href=\"https://communitysummit.wordcamp.org/2023/\"><strong>Community Summit</strong></a> to discuss key topics concerning the project. Read the notes from each session and join the conversations at <a href=\"https://make.wordpress.org/summit/\">make.wordpress.org/summit</a>.</li>\n\n\n\n<li>Following the Summit, Washington, D.C. hosted <a href=\"https://us.wordcamp.org/2023/\"><strong>WordCamp US 2023</strong></a> from August 24-26. This event brought together nearly 2,000 attendees for a Contributor Day and two conference days filled with engaging <a href=\"https://www.youtube.com/playlist?list=PL1pJFUVKQ7EQWcZBkBtb9YQlziKJ7nvpv\">sessions</a>, conversations, and <a href=\"https://twitter.com/WordPress/status/1695145857232904260\">open source art</a>. Saturday’s agenda concluded with keynotes by WordPress co-founder Matt Mullenweg and Executive Director Josepha Haden Chomphosy and a subsequent Q&amp;A session. <a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">Check out the event recap for highlights</a>.</li>\n\n\n\n<li>Join #WPDiversity with a free online <a href=\"https://www.eventbrite.com/e/speaker-workshop-for-indian-women-in-the-wordpress-community-sept-23-24-tickets-633636773647\">speaker workshop for Indian women in the WordPress Community</a>. The event will take place on September 23-24, 2023.</li>\n\n\n\n<li>The WordCamp Asia 2024 organizing team opened calls for <a href=\"https://asia.wordcamp.org/2024/call-for-speakers-is-now-open/\">speakers</a>, <a href=\"https://asia.wordcamp.org/2024/volunteer-registrations-are-open/\">volunteers</a>, <a href=\"https://asia.wordcamp.org/2024/call-for-sponsors/\">sponsors</a>, and <a href=\"https://asia.wordcamp.org/2024/call-for-media-partners-is-now-open/\">media partners</a>.</li>\n\n\n\n<li>Be sure to visit <a href=\"https://central.wordcamp.org/schedule/\">WordCamp Central</a> to find out about upcoming WordCamps.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join Josepha Haden Chomphosy in <a href=\"https://wordpress.org/news/2023/09/episode-61-community-summit-all-at-washington-d-c/\">Episode 61 of WP Briefing</a> as she discusses her takeaways from the Community Summit.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this Month in WordPress: <a href=\"https://profiles.wordpress.org/rmartinezduque/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>laurlittle</a></em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Sep 2023 10:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"Do The Woo Community: Wearing Attendee and Sponsor Hats at WCUS with Adam Warner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76476\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://dothewoo.io/wearing-the-attendee-and-sponsor-hat-wordcamp-us-adam-warner/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:430:\"<p>Adam joins me for a candid conversation about WCUS and some reflections from being both an attendee and a sponsor.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wearing-the-attendee-and-sponsor-hat-wordcamp-us-adam-warner/\">Wearing Attendee and Sponsor Hats at WCUS with Adam Warner</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Sep 2023 09:09:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"Gutenberg Times: Gutenberg Changelog #89 – Gutenberg 16.6, default theme and Font Library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=25552\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-89-gutenberg-16-6-font-library-default-theme/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:42696:\"<p>Nadia Maya Ardiani and Birgit Pauli-Haack discuss Gutenberg 16.6, the new default theme Twenty-Twenty-Four, the Font Library and other upcoming features.</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-89-gutenberg-16-6-font-library-default-theme#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-89-gutenberg-16-6-font-library-default-theme/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Nadia Maya Ardiani</strong>&nbsp;</h2>\n\n\n\n<p><em>contributor on the training team and WordCamp Asia, and content writer in Hostinger.</em></p>\n\n\n\n<ul>\n<li><a href=\"https://twitter.com/inyongski\">Follow on Twitter</a></li>\n\n\n\n<li><a href=\"https://www.instagram.com/sebutsajamaya/\">Follow on Instagram</a></li>\n\n\n\n<li><a href=\"https://www.linkedin.com/in/nadiamayaardiani/\">On LInkedIn</a></li>\n\n\n\n<li>WordPress.org: <a href=\"https://profiles.wordpress.org/ardianimaya/\">@ardianimaya</a>&nbsp;</li>\n</ul>\n\n\n\n<p><strong>Hostinger Experts series: </strong></p>\n\n\n\n<ul>\n<li><a href=\"https://www.hostinger.com/blog/michelle-frechette\">Michelle Frechette: From an Active Volunteer to a Diversity Advocate</a></li>\n\n\n\n<li><a href=\"https://www.hostinger.com/blog/birgit-pauli-haack\">Birgit Pauli-Haack: Fostering Community Spirit Through Knowledge Sharing</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Community Contributions</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Introducing Twenty Twenty-Four</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/top-agencies-join-forces-to-publish-free-guide-on-wordpress-for-enterprise\">Free Guide on WordPress for Enterprise</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Gutenberg 16.6</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/06/whats-new-in-gutenberg-16-6-06-september/\">What’s new in Gutenberg 16.6? (06 September)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-16-6-introduces-block-hooks-improvements-to-toolbars-on-nested-blocks\">Gutenberg 16.6 Introduces Block Hooks, Improvements to Toolbars on Nested Blocks</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Documentation updates: </h2>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/\"><strong>Documentation for Block Variations</strong></a>&nbsp;</li>\n\n\n\n<li>&nbsp;<a href=\"https://developer.wordpress.org/block-editor/how-to-guides/enqueueing-assets-in-the-editor/\"><strong>Enqueuing assets in the Editor</strong></a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">In the works</h2>\n\n\n\n<ul>\n<li><a href=\"https://gutenbergtimes.com/call-for-testing-of-the-new-font-library/\">Call for testing of the new Font Library</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/53934\">Block Supports: Add background image support to Group block</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, hello and welcome to our 89th episode of the Gutenberg Changelog Podcast. In today&#8217;s episode, we will talk about Gutenberg&#8217;s 16.6 and some community contributions as well as features that are still in the works, that we wanted to highlight today. I&#8217;m your host Birgit Pauli-Haack, curator at the Gutenberg Times and WordPress developer advocate, and a full-time core contributor for the WordPress open source project. A special guest today is Nadia Maya Ardiani, contributor on the training team and WordCamp Asia, and that&#8217;s where we met for a chat at dinner, a lunch, and we did&#8230; Yeah, it was just fabulous to meet Maya and we always found a topic to talk about and to laugh as well. I&#8217;m so happy you join me today to review the Gutenberg plugin release and connect about WordPress. So greetings to Indonesia. How are you today?</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Thank you, Birgit, for having me. It&#8217;s so good to be here, and thank you as well for being the first WordPresser ever to be featured in Hostinger&#8217;s WordPress Expert Article Series.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, thank you for having me. Yeah, it was a fun interview.</p>\n\n\n\n<p><em>Nadia Maya Ardiani:</em> Because it&#8217;s only fitting to start the series with one of the people who have been doing such significant contribution to the platform, and that&#8217;s you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Thank you. So what else do you contribute to on WordPress?</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Okay. So yeah, I&#8217;m a contributor on the training team and in the team I&#8217;m also a translator coordinator for Indonesian locale. And yeah, I love contributing for the training team because I enjoy sharing complex information in a more accessible way, making the knowledge more accessible for a wider audience, which is also related to my day job as a content writer in Hostinger. And yeah, in my day job, I write WordPress tutorials in the form of WordPress website articles and script for YouTube videos. And I also write about WordPress community activities like Word camps and about WordPress journeys of awesome WordPress community members, that&#8217;s like you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you. Thank you. I know that another interview was with Michelle Frechette on the Experts Series. Yeah, great job there as well. It&#8217;s really fabulous to kind of follow up on that. Yeah, I&#8217;m so glad we stayed in touch after WordCamp Asia and you just returned from WordCamp US. So how was it and what are your takeaways for that?</p>\n\n\n\n<p><em>Nadia Maya Ardiani:</em> So yeah, it&#8217;s my first word WordCamp US, so it&#8217;s very new to me. And I also volunteered this time, and I didn&#8217;t get to attend a lot of sessions, but it always awesome to meet and have a chat with fellow WordPress enthusiasts because you don&#8217;t get to meet them every day. And I think it&#8217;s one of the WordCamp’s struggle to decide between attending the session or talking and catching up with everyone.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I know I have this every time that I have my sessions checked off to say, &#8220;This I want to do,&#8221; and I put them in my calendar and then I stay in the moment with talking with somebody and then whoosh, the time is gone and I have to catch the livestream. Totally get it. And for WordCamp US, there is a lot of FOMO that I had to endure.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Yeah, yeah. There are actually lots of interesting sessions, but as we know, we can just catch up with the sessions in WordPress YouTube channel or WordPress.tv. But yeah, I actually really want to see the one with NASA and the White House because we get to see WordPress implementation in those two websites. Because for me, it&#8217;s the most interesting thing about the session is we can see how WordPress is really for everyone because many of us in the end users, we think WordPress is only for hobbyists, but it&#8217;s actually can be for big organizations like this that require fairly customized website and high level security.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So true, so true. Yeah, the bandwidth is really broad. I&#8217;m glad you got to see that.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: And I also really love about the contributors day because as always, it&#8217;s the time for us to work together with other contributors who we usually only meet on screen. And so far the WordCamp US is kind of unique because usually we all gather in one big room, all of the teams are gathering in the same place. But this time teams which works closely related, were spread in multiple rooms. I actually love the comradery of being in the same room as all contributors, but this time I also love it because there was no confusion about which table belongs to which team, and also more space or creating breakout room. For example, in training team, after onboarding the new team members, we can split into this is the people who are interested to be content insider. This is for people who are interested to be content creator. And also since the training team is in the same room with the Docs team, there we can discuss more about cross collaboration effort regarding how to better work together with the backlink material and each other.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, that&#8217;s interesting. Yeah, I can see that there&#8217;s some overlap between the Docs team and the training team, and the more we can streamline the processes between the two, I think the better it is for WordPress users to find the right material at the right time. Awesome. Well, thank you so much for this report back from WordCamp US and how you found it from a contributor point of view. Yeah.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Announcements</h3>\n\n\n\n<p>Dear listeners, we have one announcement that we wanted to share with you is about WordPress 6.4. So WordPress 6.4 is in less than three weeks away. WordPress 6.4 beta is only three weeks away. Don&#8217;t get scared. The last Gutenberg version for features will be 16.7. Today we are talking about 16.6, so there&#8217;s only one more Gutenberg plugin release to go and release candidate for 16.7 is scheduled for September 20th.</p>\n\n\n\n<p>That&#8217;s one week longer than the usual two-week schedule. And so all the new features will need to be merged by that time. And after that, only bug fixes and fixes for blast features can be added to the WordPress release. So it&#8217;s the time to test all the Gutenberg plugins versions that go into, it will be 16.2 all the way to 16.7 and whatever bug fixes come in 16.8 and nine.&nbsp;</p>\n\n\n\n<p>The final release or the release for 6.4 is scheduled for November 7th, and so that&#8217;s still about a month and a half away, two months away. So just so you&#8217;ll get the timeline a little bit, we will repeat this on the next shows as well when we&#8230; Next time is with Tammy Lister. She&#8217;s on the editor tech lead, so we will have some more information about 16.4.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: It&#8217;s my first time to see how many improvements that come with one version of Gutenberg. So it&#8217;s like, &#8220;Oh my God.&#8221; So every time we release one version of WordPress, that must be a huge improvement. So by seeing the rundown, that&#8217;s the first time I realized that how much is the improvements.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Community Contributions</h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s a change log and that can be overwhelming indeed. And the last five versions kind of go into WordPress. So yes, so 16.2 and three had major jumps in improvements to the site editor and to the block editor. Especially because 6.3 and 6.4 wrap up the phase two of site editing. But 6.4 also will ship with the new default theme and amply named 2024, and it&#8217;s also expected to be in early November together with the 6.4 release, the designs are already available and you can follow up on the introduction post on the Make WordPress core website. We mentioned it on one of the previous episodes as well, but I really like to talk to you about, Maya, you looked at it and what do you think about the new theme?</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: As an end-user, I&#8217;m really excited to use this theme because this one is aimed to be a multi-purpose team, right? I sold three use cases in the Make WordPress website, one specifically tailored for entrepreneurs and small business, one for photographers and artists, and one for writers and bloggers. So it provide a better look into how the theme would look like when it is used to display lots of images, when it&#8217;s used to show multiple chunks of text and how it may look like as a landing page, which is so cool because I can instantly imagine, &#8220;Oh, this is the stuff that I can do with this theme.&#8221; Since it&#8217;s a collection of templates and patterns which combine into a theme, it&#8217;s even cooler because the patterns include in it, it has various home templates or different use cases such as out page and then project overview are SVPs. So yeah, it&#8217;s basically very handy for no-code people because we can just&#8230; Yeah, I want to make this, I want to make this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I think that&#8217;s exactly what you&#8217;re saying is that it gives you a vision or an inspiration of what your website could look like when you use that theme and then gives you all the tools. I like that it also thinks about&#8230; Or the creators think about the full page templates so you don&#8217;t have to assemble all the things.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Yeah, it&#8217;s very nice to not have to create everything from scratch because sometimes it can be intimidating to start from a pure blank slate like that. At least that&#8217;s for no code people like me. But this one is the default color and typography style are already versatile and very timeless. It gives professional and elegant flare in general with the understated color and the sunset of point variation. So it can be used for any, many needs.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And with the site editor providing all the design tools, you can really make it your own in terms of the look and feel. And I really like that. I think it&#8217;s the first default theme that&#8217;s not very opinionated about the design that is only for a niche or for a certain topic or so. It&#8217;s more really that is actually the purpose that you just said is that many people can see themselves building with that theme, and I am really happy that comes out of it also for you. Yeah, there is the Figma I can share in the show notes. I&#8217;ll share also the link to the Figma file where you can kind of browse the designs. It&#8217;s right now in development, the report from the leads of Jessica Lishick and Maggie Cabrera and they both were at WordPress US Contributor Day and they had about 31 contributors at the theme table who wanted to work on the theme.</p>\n\n\n\n<p>So there is some rapid development going on, and I will also share the GitHub report link where it&#8217;s all happening with the issues and the PRs and everything, and where you can see all the discussions. The GitHub report will closer to release candidate, it will disappear and then it will be on track because that&#8217;s just for development. Default themes are then housed with the core files on a track. Yes, in the repo, yes. Another community contribution gets you all the way from that no-code site builder, single site builder, private person to all the way to the enterprise level of using WordPress. And there is a new guide for WordPress for Enterprise Together.</p>\n\n\n\n<p>So where the major WordPress agencies that deal with enterprise clients and there are Big Bite and 10Up and Alley, Human made Inpsyde and XWP and they got together and in WordCamp Europe as well to think about can WordPress be advertised or shape the conversation with enterprise IT people and CEOs about using WordPress for content management system on their large scale organizations. And they came together and created a free guide for WordPress for enterprise. It highlights all the high profile companies like CNN, Vogue, Google, Spotify, the White House, and many more, now NASA and also responds to some of the misconceptions that are still out there. Mainly the one that it&#8217;s not secure that it&#8217;s only for blogging and all that kind of thing. So it&#8217;s a really good guide that you as a small agency can certainly also use in parts for talking to your clients and to your customers about things.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: I like it that this guide is easy to read because sometimes people from big enterprises are not really tech-savvy. So having it with layman&#8217;s term, it can deliver the knowledge better to a wider audience about the possibilities for creating a customized platform to fit any organization. And yeah, I checked the chapters in good discussion about platform security, scalability, internationalization, solution, cost and value. Those are the stuff that enterprise really cares about. I think it shows one of the beauty of the WordPress community, everyone&#8217;s coming together for it, but to constantly improve the platform and to share to others that this is a solution you can use. And it&#8217;s really nice to see how these agencies provide insights related to aspects that are important for enterprises.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I also like that they kind of highlight the open source part, which scares enterprise, but the open source part that there are hundreds of contributors that are actually maintaining the code and doing all the performance testing. We have this awesome performance team that has brought down the load times of WordPress out of the box just for 6.3, around 20%, which is huge when you think of the millions and millions of websites that use WordPress. And I saw a statistic that already 50% of WordPress is now 6.3 installations. So the community has really reacted fast to the new versions and that will also be for 6.4. So we will share of course the article from WP Tavern that talks about it. We also share the blog post about it and with a link to download it. You don&#8217;t need an email address to download it, so it&#8217;s all free out there for you to use and to contemplate. Yes.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s Released &#8211; Gutenberg 16.6</h3>\n\n\n\n<p>Which brings us to the section what&#8217;s released and right now, we&#8217;re talking about Gutenberg 16.6 that was released earlier this week and Vincente Canales was the release manager for this. And in his release post he shared the change log and as well as some highlighted things. And we follow suit of course, and the first thing that we wanted&#8230; Most of it, there&#8217;s not really some big stuff coming in 16.6, but it was some great quality of life changes that make working in it much smoother and less confusing and more consistent together. But there are few highlights that we wanted you to know about.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p>So the first one is it says I needed to read through the PRs and look at the videos to try it out myself to actually actually know what it means. So it says, &#8220;Capture toolbars,&#8221; in the quote block or navigation block. What it means is that the toolbars for child blocks or inner blocks are now seamless attached to their parent block and offering a more intuitive and organized editing experience. They don&#8217;t jump around that much, which is sometimes a little disconcerting and distracts you from the work that you actually wanted to do. Right now they are in place for the navigation block, the list block, and the quote block.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Yeah, I think this one makes the publishing experience way more enjoyable. Because sometimes you just move a little and the block will follow through like, &#8220;Oh my god, can you just stay right there?&#8221; And I publish articles in daily basis, but it&#8217;s only recently that I discovered the top toolbar feature that we can activate by clicking, what&#8217;s the name?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The options.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: In the right panel. Yeah, the block tool work can be annoying sometimes. So having this improvement capture toolbars, this will be&#8230; And making the toolbar staying at the same nearby spot like this, I will definitely prefer this one than the following.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, me too. I found that some users are actually struggling with the concept that depending on which block is focused, that they have a different toolbar from the parent block. And to get to the parent block, you have to know that you need to click on the leftmost kind of button to get to the parent block again. And I think I haven&#8217;t found a better way to get to it to kind of imagine a better UI for that. But I think with tying both toolbars together and just switch in place and not also move it, it&#8217;s a much better experience. Yes, definitely. Another one is that for the query pagination block, it was that you only had one or two&#8230; The pagination block is the block that you have underneath your loop block or the query loop where it says, &#8220;Okay, get me next pages,&#8221; from that query from that loop of next pages of articles.</p>\n\n\n\n<p>And when you look at it, there were only two&#8230; You only saw the first two ones, and then the last two ones. But you couldn&#8217;t click to, if you say, the third one or the fourth page because you knew it was things on there you had to click on next, next, next to&#8230; You didn&#8217;t find a&#8230; And now a user can determine how those numbers in the pagination block are actually organized. You can say, &#8220;Okay, give me four numbers in between.&#8221; That&#8217;s a really good improvement considering that that was possible before in the classic theme very much so. But this is kind of getting it all feature priority and it really is a good improvement. It&#8217;s such a small thing, you would think, but navigating a list of posts deeper into it, they&#8217;re not just the first page, sometimes is really needs some support, some better support there.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Sometimes more like things that at the front end it seems like a very simple change, but I believe that under the hood that there must be many things going on, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And then now you have in the sidebar, you have additional fields where you can put in numbers and some more explanation, if my explanation wasn&#8217;t helpful at all. And the next part is that the list view now has a keyboard shortcut for duplicating blocks. So if you are working through a list view by keyboard and you now don&#8217;t need to change controls to duplicate a block, you can just use command shift and D, and then that block that was just focused is duplicated. This definitely helps with rapid content creation and laying out some articles.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: As a content writer, I definitely agree with this one. This will be very time-saving.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Super, yeah. 16.6 Gutenberg also adds a custom taxonomy for user created patterns. So WordPress 6.3 came with the feature that you now could create synced and unsynced patterns, but if you have three or four or 15 of those, it was hard to sort through them. So now you can use some taxonomy labels for your creative patterns. So you can give other editors on your site a little bit more help with what are those patterns that Birgit created and now you can help them to be a little bit more organized here.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: So this can be for the synced and unsynced patterns?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Yeah, this will be&#8230; Having a feature to organize it, it definitely will be beneficial for the content creators also because we can easily choose which one we want to use.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, and you can drill down because I can see that an organization has created at least 10, 20 patterns depending on how the different content they provide. And the beauty of it is, it&#8217;s actually based on the default taxonomy patterns, not patterns, API that comes with WordPress because the patterns are custom post type. So the built-in taxonomy is now just surfacing on the editor. There was not a whole lot of&#8230; There was development being done just to make it into the site editor, but the underlying backend was already there. So it&#8217;s good to have a fallback like that.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Bug Fixes</h3>\n\n\n\n<p>So now we are coming to the bug fixes and there&#8217;s just a few that we wanted to point out. Maybe just one, no, maybe two or so. Do you want to take that?</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Okay. So for the bug fixes, I like this one about the post notification link, which is the remove unnecessary space between rows and label. I think for some end users this might look like a very simple improvement that almost unseen, but I believe for those who work around design a lot will be happy with this. &#8220;Finally, I already feel it sometime ago.&#8221; Because it&#8217;s only a very tiny character, isn&#8217;t it like the space between the arrows and labels? But once it removes it, it&#8217;s like, &#8220;Yeah, this is how it should look.&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it gives you a consistent look and don&#8217;t really get that. That&#8217;s fixed now. And then also for the block styles, there&#8217;s the preview of the popover is now working also with right to left sites.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Yeah, I think this is also one of the great examples of a form of striving for inclusivity and equality in WordPress because it makes a site building experience equal for everyone, whatever language you use, including the right to left languages like this. So when your site using the right to left languages, you will have the exact same experience as everyone in the world.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And sometimes that kind of falls a little bit through the cracks. So some head bubble for those who record those issues on the GitHub report so they can be fixed if they are not working right. In the site editor, there&#8217;s one bug fix.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: About the unified delete button style in the dropdown menu and making it red. So I think it&#8217;s also a nice improvement, especially for end users who still learn to use WordPress for the first time because it&#8217;s easier to tell the effect of clicking this button. When you see it previously it&#8217;s blue. So people might just, &#8220;Okay, I will just try to delete this,&#8221; and turns out it delete all the stuff that they actually don&#8217;t want to delete. But by making it red, it&#8217;s making&#8230; I think it&#8217;s related to psychology of color, people can be more considerate when they offer this button. This one will do a significant effect to my content.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s kind of, &#8220;Stop. Think what you&#8217;re doing.&#8221;</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Oh, what is it? What is it? It&#8217;s red. I will avoid doing something with this because it can avoid accidental deletion.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Experiments</h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And that&#8217;s part of really the small changes that have big outcomes. So the Gutenberg 16.6 also brings a new feature, new API and that&#8217;s called lock hooks. It was introduced one or two Gutenberg versions earlier and labeled as order inserting blocks. And the PRs that are accompanying it are still referring to that, but it&#8217;s on activation plugins now can have the capability to order insert blocks, enhancing the integration and automation between the plugins and the Gutenberg editor. So the examples that you see in the PRs&#8230; And I would recommend to look through the PRs to kind of see how it all works. And the change log has the list of the PRs in there. So what is it useful&#8230; And I think we talked with Ellen about it, Ellen Bauer on the previous episode about it. So you can add a like button to a comment section or a card icon to the header with this API and any other thing that you want to add to a block that&#8217;s automatically added for the user.</p>\n\n\n\n<p>The user now also has with the&#8230; They created now the block inspector panel and have a plugin section there. So it identifies the plugin that added a block and you can toggle the appearance or disappearance of it on your templates and on your posts. So depending on what the use case is for this plugin that you installed on your site. So this very much expands the capabilities of the block editor for plugin developers outside of adding custom blocks or adding additional features in the sidebar. Now you can add a few content as well. So this is a really good new feature and it will come to 6.4. It definitely needs some major testing. So if you are having a test site and you want to check it out and yeah, please report back on what your findings are and if you tripped up by things.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: So here in the PR, the example is log in logout, card and checkout, but it&#8217;ll be different for each plugin? For different plugins?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, so there&#8217;s an API where a plugin developer can say, &#8220;Okay, I want this content or this particular feature added to a columns block.&#8221; Or to a paragraph block. For instance, just an anchor link to every paragraph. You can write a plugin and say, &#8220;Okay, for each paragraph add this anchor link on the right-hand side.&#8221; And then a user can install that plugin and then automatically has that on their blog and can now reference certain paragraphs. So some people do blogging more like a diary where they have all the sorts of a day in little paragraphs or in a cluster of paragraphs and say, &#8220;Okay, today I wrote also about my adventure of riding the bike down the hill on a certain hill,&#8221; and then want to link to that through Twitter or through Instagram because there&#8217;s also a picture to it.</p>\n\n\n\n<p>So you can go back to the blog and read a little bit about it. So that&#8217;s one tiny use case. Another one is, as I said, the like button for comments. Normally comments don&#8217;t come with like buttons. But you can build a plugin that says, &#8220;Okay, every comment gets a like button for me and I want it at the top of it or on the bottom of it.&#8221; And that&#8217;s all in the API controls. And then when it&#8217;s installed and the user wants to use it can also say, &#8220;For this paragraph, I want to toggle in and off. I want to disable that particular added block for this particular paragraph. And then for the next block I want it again.&#8221; So it&#8217;s kind of a beginning of a new interface or a new way to customize the block editor.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p>Speaking of development, 6.3 brought a few pickups to the surface that with the&#8230; Enqueuing of assets in the editor and the CSS and Nick Diego updated the documentation and how to guide to and queue assets in the editor and best practice or how it&#8217;s actually supposed to work, especially now with the iFrame editor in the post editor as well. There were some early adopters of the block editor created a few workarounds, the early restrictions that were there. And now with 6.3 or the iFraming of the post editor, some of those don&#8217;t work anymore as one would hope. So here&#8217;s a how to guide on how to enqueue assets in the editor after 6.3.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: So this how to guide is targeted for developers? Or for everyone who wants to learn about Gutenberg in general can also try to learn this?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh yeah, sure, sure. It&#8217;s a website, so the website doesn&#8217;t know who&#8217;s coming in. So it&#8217;s on the developer&#8230; The link goes right now to the Gutenberg repo where the pages, but I will share the link in the show notes where the actual documentation page was created. So it&#8217;s in the realm of the other documentation of the block editor. Yeah, it&#8217;s definitely helpful when you start out thinking about your theme development or your plugin development and you have additional assets like JavaScript files, CSS files to go with those entities and how to do it to control your iFrame editor. There has also been an update on the block variations API, and that has been&#8230; Block variations have been around since the beginning of the block editor where you can modify in a core block that then add additional feature sets or styles or just kind of different behavior to it.</p>\n\n\n\n<p>And the block variations FPI had been updated, but this goes well with a new article on the developer blog called An Introduction to Block Variations where Nick Diego walks you through certain use cases on how to use it. So how to create a block variation, how to unregister. So you could use the block variation. So if a simple example is you have a button, you want the button to have a certain style, you can certainly do this through the theme.</p>\n\n\n\n<p>But you can also say, &#8220;Okay, I want to unregister the core button and I want my block variations for the core button to be the default.&#8221; So it shows up in the inserter as a core button, but it will always have the right color on the border or the background or the right font size that you have decided on the design of it. And the user doesn&#8217;t have to select between the two they just have one. Same could be with a code block or a verse block. You can really have quite a few methods and attributes that you can use to create those lock variations. Yeah, I learned quite a bit from the article.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: No, I just wanted to say that this resource is pretty comprehensive. We can learn many stuff about the block variations from the basic to the putting it all together and everything. We can check it here. So yeah, it&#8217;s great.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it also helps you how to control the icons for it or how the sidebar is behaving. So yes, it&#8217;s a really good article. All the articles on the developer blog, that&#8217;s actually a very rather new entity on the wordpress.org site. It only has been around for eight months, give or take. Official launch was actually March, so it&#8217;s only been around for five months officially, but we started in November with it. And there are quite a few blog posts now that are tutorials and go a little bit deeper on then documentation help you picks up the developer from a different place, from a beginner place and go all the way to advanced. Or say, &#8220;Okay, this is your use case.&#8221; There are a series of blog posts as well as standalone posts. And you can also learn about the slot fields. What&#8217;s slot fields? Well, it&#8217;s the spaces in the sidebar of a block where you can add additional features, fields and all that.</p>\n\n\n\n<p>So the developer block is definitely something to check out if you are a developer and extending the block editor. And yeah, this concludes the change log for 16.6. We are through that.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s in Active Development or Discussed</h3>\n\n\n\n<p>And as I said at the beginning, we also wanted to discuss a few things, or two things. No, actually three that are in active development. And the first one is a big feature that is announced slated for 6.4. The contributors have been working on it for quite a while, almost a whole year to get font management into WordPress. Meaning upload funds, make them available for blocks, make them available for templates, and then also delete funds, and have them across themes. So you are not depending on a theme developer to provide you with the right fonts. You can as a site owner also make different choices there. And I will share with you a link to a PR that kind of puts it all together, how it all works.</p>\n\n\n\n<p>And Jeffrey Pearce also just made a call for testing on Twitter where he provided a link to a WordPress playground site with the configuration to test this successfully already in place. Because you need to make changes to the WP-config file and then you need to enable the plugin for it, the experiment for it and all that. So there&#8217;s kind of a set-up manually to be done, but this link to the WordPress playground gives you the PR, or the version of Gutenberg that has the PR in it as well as the right setup. And then you can test it, you can upload fonts, you make them available through the interface. You can use them on pages, on posts and on templates and see if the font on front end and editor actually would display correctly. And anything that you find that&#8217;s not working right, report that back to the PR so they can go and fix it.</p>\n\n\n\n<p>Once it&#8217;s merged, so right now the PRs are still in the works and a lot of people are testing it, but it could use some more testing. If you listen to this and the PR has already been merged, it will be available through the Gutenberg nightly plugin version that you get on the Gutenberg Times, and then you can start testing it on your normal, like any Gutenberg plugin version on your test site. And my favorite tool for testing is actually local WP from the WP Engine and Flywheel folks. That has been a tremendous help to go through all those testing. So font library is a big, big step forward for WordPress and any help you can give to testing it would be really appreciated.</p>\n\n\n\n<p><em>Nadia Maya Ardiani:</em> So we can also use font library in playground?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: With the link that&#8230; The link is a Bitly link. It&#8217;s shortened because it&#8217;s actually 15 lines long. It&#8217;s bit.ly/text-font-library, and then it gives you a new WordPress site and then you can use it and test it. You cannot install other plugins there. You cannot install themes. So you would have to test it with the default theme Twenty Twenty Three. And the second part&#8230; It&#8217;s only two things, is a lot of people, especially content creators were really waiting for this, it&#8217;s the adding a background image to a group block. It&#8217;s coming, it&#8217;s already available in the Gutenberg nightly because the feature has already been merged with trunk. It&#8217;ll be released with 16.7 Gutenberg plugin. And if you can provide user feedback, that will be really great. And if the provided user feedback doesn&#8217;t reveal any big issues with that new feature, it will also arrive in WordPress 6.4 with the next upgrade on November 7th, 2023. How do you like that, Maya?</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: I will definitely use this. I can see myself using this, I don&#8217;t know, for my company, for my day job, I don&#8217;t know about that. But so I have a website that is just to play around, my test site. I really like it. So I think I will definitely use this because it&#8217;s like, yeah, adding more creativity fuel to my toolkit.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I can see that there are some very, very subtle backgrounds that could happen on different paragraphs, like wallpaper in a house or something like that where you can change that for a different group of posts or for&#8230; If you wrap a quote post into a group block, then you can add a background image to it, and that background image could have a photo of the person who gives the quote. So you don&#8217;t have to use backgrounds and fiddle around with all the blocks, you can just put it on the background image and then upload that to the quote block. And yeah, I really like it.&nbsp;</p>\n\n\n\n<p>So we are at the end of the show. I just wanted to make sure people, when they want to connect with you, what would be a good place to meet you online, Maya?</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: So I&#8217;m on Twitter and also I&#8217;m on Instagram. So yeah, I think I will&#8230; And on LinkedIn also, so in three places. So yeah, I will share the link to you so we can put it in the show notes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Awesome. Awesome. Thank you so much. As always, the show notes will be published on Gutenbergtimes.com/podcast and this is the episode 89. And if you have questions, suggestions, or news that you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. And there was a time when we had quite a few people add reviews about the podcast on different podcast websites like Stitcher or Apple or Google. It would be time to do another round of reviews. If you like what you hear and get value out of this podcast, please submit a review to Apple, that&#8217;s probably the most prominent one, to iTunes or podcast, and that would be really lovely. And as a bonus, we will read them in our next show. So yeah, come on then.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Give a little shout-out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Give a little shout-out. Yeah. So Maya, thank you so much for joining me today. It was lovely to have you on the show and give your input and have opinions will travel that&#8217;s always beneficial at WordPress. Yeah, and I thank you all for listening and I&#8217;ll hear you in two weeks. We won&#8217;t have a 16.7 then, but we will have Tammy Lister on the show and we will talk about WordPress 6.4 and the whole process. And I wish you all well, take care and goodbye.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Thank you, Birgit. Forget the pleasure is all mine.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Thank you.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Sep 2023 08:35:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"Gutenberg Times: Font Library call for testing, Gutenberg 16.6, OmniForm and WooCommerce Blocks 11.0—Weekend Edition 267\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"https://gutenbergtimes.com/font-library-call-for-testing-gutenberg-16-6-omniform-and-woocommerce-blocks-11-0-weekend-edition-267/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15030:\"<p>Howdy, </p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/6-4/\">WordPress 6.4 release</a> is fast approaching. This week I tested two new features. I am excited about that content creators and designers will be able to <a href=\"https://github.com/WordPress/gutenberg/pull/53934\">add a background image to group blocks</a>.  I see a few more decorative, wall paper like backgrounds for quotes, or call out paragraphs in our future. Furthermore, site owners and theme builders can look forward to a new Font library with font management capabilities via the Global Styles sidebar. </p>\n\n\n\n<p>You can upload fonts and server them to visitors locally and keep within privacy guidelines. <strong>Jeffrey Pearce</strong> posted <a href=\"https://twitter.com/jeffikus/status/1699864919628202063\">A call for testing</a> on X (formerly Twitter). For more information, I added some details in this<a href=\"https://gutenbergtimes.com/call-for-testing-of-the-new-font-library/\"> post on this site.</a></p>\n\n\n\n<p>For novices to the intricacies of Typography, <a href=\"https://developer.wordpress.org/news/2023/07/make-your-sites-typography-make-a-statement/\"><strong>Mary Baum</strong> started an exciting series </a>on the Developer Blog. </p>\n\n\n\n<p>Hope all is well. Cu you on the Interwebs. </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-developing-gutenberg-and-word-press\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-gutenberg-16-6\">Gutenberg 16.6 </a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<p>Last Monday, I was part of <a href=\"https://wpbuilds.com/2023/09/05/this-week-in-wordpress-266/\"><strong>This Week in WordPress #266 &#8211; &#8220;Weirdy bespoke CMS&#8221;</strong> </a>with <strong>Katie Keith</strong> and <strong>Bob Dunn</strong>, hosted by the fabulous <strong>Nathan Wrigley</strong>.  We talked about last week&#8217;s news around the WordPress space. Gutenberg updates, about LMS Working group, and Automattic&#8217;s <a href=\"https://ma.tt/2023/08/one-hundy\">One Hundy </a>(100-year plan) Bob&#8217;s booth take-over and Joost de Valk and Marieke van de Rakt joining Post Status, <a href=\"https://bigbite.net/wordpress-for-enterprise/\" target=\"_blank\" rel=\"noreferrer noopener\">Enterprise Guide to WordPress</a> and a lot more. It was great fun and quite enlightening. </p>\n\n\n\n<a href=\"https://wpbuilds.com/2023/09/05/this-week-in-wordpress-266/\"><img width=\"652\" height=\"367\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/09/266-This-Week-in-WordPress-Bob-Dunn-Katie-Keith-Nathan-Wrigley-Birgit-Pauli-Haack.jpeg?resize=652%2C367&ssl=1\" alt=\"Screenshot of This week in WordPress 266 with Bob Dunn, Katie Keith, Birgit Pauli-Haack and Nathan Wrigley\" class=\"wp-image-25466\" /></a>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-developing-gutenberg-and-word-press\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Joen Asmussen</strong> again shared the work of the WordPress design team in his post <a href=\"https://make.wordpress.org/design/2023/08/28/design-share-aug-14-aug-25/\"><strong>Design Share: Aug 14-Aug 25</strong></a>.  You&#8217;ll find illustrations and links on </p>\n\n\n\n<ul>\n<li>the iterations on the new design for the themes directory, </li>\n\n\n\n<li>the way how to list user patterns by category</li>\n\n\n\n<li>the workflow to control styling nested elements through inheritance</li>\n\n\n\n<li>Better display for the audio component  and search results for the Openverse site. </li>\n\n\n\n<li>User interface to control the Lightbox feature for Image block</li>\n\n\n\n<li>Font Management for Google Fonts</li>\n\n\n\n<li>First round of designs for List views for the Admin space. </li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>After nearly  3.5 years of feedback loops, knowledge sharing, and community building and WordPress 6.3 concluding the Phase 2, <strong>Anne McCarthy</strong> outlines in her blog post <strong><a href=\"https://make.wordpress.org/core/2023/09/07/evolving-the-fse-outreach-program/\">Evolving the FSE Outreach Program</a>,</strong> what will happen next. Details on the timeline, the shift from new feature to adoption and the hand-off of future calls for testing to the WordPress test team, are all explained in the post. Anne McCarthy has been a fantastic community builder and communicator running this first of a kind outreach program.  Their work was groundbreaking and provided a blueprint future outreach programs can build on. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-gutenberg-16-6\">Gutenberg 16.6 </h3>\n\n\n\n<p>In his release post, <a href=\"https://make.wordpress.org/core/2023/09/06/whats-new-in-gutenberg-16-6-06-september/\">What’s new in Gutenberg 16.6? (06 September)</a>, <strong>Vicente Canales</strong> highlighted the new Block hooks, formerly known as Auto-inserted blocks, and improvements to the block toolbars by tieing the toolbars of child blocks to the parent block&#8217;s toolbar. </p>\n\n\n\n<p><strong>Sarah Gooding</strong> also reported on the Gutenberg 16.7 release in her article <a href=\"https://wptavern.com/gutenberg-16-6-introduces-block-hooks-improvements-to-toolbars-on-nested-blocks\">Gutenberg 16.6 Introduces Block Hooks, Improvements to Toolbars on Nested Blocks</a></p>\n\n\n\n<p>For this week&#8217;s <strong>Gutenberg Changelog episode 89</strong>, I had the great pleasure of welcoming <strong><a href=\"https://twitter.com/inyongski\">Nadia Maya Ardiani</a></strong> and my special guest. Ardiani is a content creator at Hostinger and contributor on training and documentation teams working on translations. We have been in touch since we met in person at WordCamp Asia. In this new episode, we tackled the Gutenberg 16.6 release and talked about more features in the works. The episode will drop into your favorite podcast app over the weekend. </p>\n\n\n\n<img width=\"652\" height=\"184\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/09/Screenshot-2023-09-08-at-13.46.21.png?resize=652%2C184&ssl=1\" alt=\"\" class=\"wp-image-25503\" />\n\n\n\n<p>TIL: The diner in Maya&#8217;s background is called <em>warkop/warmindo</em>, which is the short for <em>warung kopi </em>(coffee tavern) or <em>warung indomie</em> (instant noodle diner)</p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>🎙️ </strong> Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-89-gutenberg-16-6-font-library-default-theme/\">Gutenberg Changelog #89 – Gutenberg 16.6, default theme and Font Library</a> with Nadia Maya Ardiani  as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><a href=\"https://twitter.com/jrtashjian\"><strong>JR Tashjian</strong></a>, senior developer at GoDaddy, has been working on <strong>OmniForm </strong>for a while, and he just released it in the <a href=\"https://wordpress.org/plugins/omniform/\">WordPress plugins directory</a>. OmniForm specializes in essential form types, such as contact and feedback forms. The feature list includes: </p>\n\n\n\n<ul>\n<li>20+ form fields blocks, including text fields, checkboxes, radio buttons, and more</li>\n\n\n\n<li>Pre-built form templates or create your own from scratch</li>\n\n\n\n<li>Manage form submissions within the admin dashboard</li>\n\n\n\n<li>Email notifications for new form submissions</li>\n\n\n\n<li>Customize form styling</li>\n\n\n\n<li>Spam protection with Cloudflare Turnstile, hCaptcha, and Google reCAPTCHA.</li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Patricia Hillebrandt</strong>, code wrangler at WooCommerce, published the release notes for <a href=\"https://developer.woocommerce.com/2023/08/31/woocommerce-blocks-11-0-0-release-notes/\"><strong>WooCommerce Blocks version 11.0.0</strong> </a>With the latest release of WooCommerce Blocks, users can leverage the Product Collection Block and the improved interactivity of the Product Button to create appealing product displays and enhance the shopping experience on their websites. </p>\n\n\n\n<p><strong>Sarah Gooding</strong> reported on the new release for the WPTavern: <a href=\"https://wptavern.com/woocommerce-blocks-11-0-0-adds-product-collection-block-in-beta-10-9-0-integrates-product-button-with-the-interactivity-api\"><strong>WooCommerce Blocks 11.0.0 Adds Product Collection Block in Beta, 10.9.0 Integrates Product Button with the Interactivity API</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The <em>Torque Magazine</em> published <strong><a href=\"https://twitter.com/nschaeferhoff\">Nick Schäferhoff</a>&#8216;</strong>s post about <strong><a href=\"https://torquemag.io/2023/09/mastodon-and-wordpress/\">Mastodon and WordPress: 8 Ways to Make Them Work Together</a>.</strong> From site verification and social icons over displaying your feed on your site or your client&#8217;s sites, to automatically posting from WordPress to Mastodon, Schäferhoff gives comprehensive instructions and illustrations for a complete integration of WordPress and Mastodon. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On Learn.WordPress you can now watch the new tutorial:  <strong><a href=\"https://learn.wordpress.org/tutorial/intro-to-the-site-editor-and-template-editor/\">Intro to the Site Editor</a>. </strong>You can create and launch your entire site within the Site Editor. In this video tutorial, <strong>Wes Theron</strong>, provides you with an overview of accessing and using the Site Editor and you learn about all the tools you need. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/SteveJBurge\">Steve Burge</a></strong> published for KinshiPress the tutorial on how to <a href=\"https://kinshipress.com/time-to-read-block-wordpress/\"><strong>use a Time to Read Block in WordPress</strong></a>, via the Gutenberg plugin. </p>\n\n\n\n\n<p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong>Anton Plauche</strong> has published a detailed tutorial for responsive design implementation by extending the core columns block. In <a href=\"https://fullstackdigital.io/blog/how-to-build-responsive-designs-in-the-wordpress-editor-by-extending-the-core-columns-block/\"><strong>How to Build Responsive Designs in the WordPress Editor by Extending the Core Columns Block</strong></a>, Plauche shares example code to add our additional breakpoint functionality.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>With Gutenberg 16.6, <strong>Nick Diego</strong> updated the <a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/\"><strong>documentation for Block Variations</strong></a> to clarify different properties and to add notes regarding implementation.  He also merged the new page on <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/enqueueing-assets-in-the-editor/\"><strong>enqueuing assets in the Editor</strong></a></p>\n\n\n\n<p></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Ekodesign: Creatif Building block found in WordPress photo directory</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Sep 2023 08:00:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Gutenberg Times: Call for testing of the new Font Library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25529\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://gutenbergtimes.com/call-for-testing-of-the-new-font-library/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2795:\"<p>Update: September 18, 2023</p>\n\n\n\n<p>The Font Library is a new WordPress feature that will come to WordPress 6.4. Your help is needed to test the feature that allows you to manage fonts and their variants for your website. You can find the PR on GitHub <a href=\"https://github.com/WordPress/gutenberg/pull/53884\">Font Library: Frontend [Stage 1] #53884</a> and has been merged on September 15, 2023</p>\n\n\n\n<h2 class=\"wp-block-heading\">Use WordPress playground</h2>\n\n\n\n<p>The WordPress Playground link was updated to https://bit.ly/font-lib-latest-test You can use the WordPress playground tool that is already prepped for your test. </p>\n\n\n\n<h2 class=\"wp-block-heading\">Test with your test site using Gutenberg Nightly</h2>\n\n\n\n<p>If you need  to use your own test site setup with LocalWP or any other tools because you are curious how the font library works with your set of plugins,  use the <a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Gutenberg Nightly version</a> and start testing on your test site. </p>\n\n\n\n<h2 class=\"wp-block-heading\">How do you find the Font Manager? </h2>\n\n\n\n<p>No matter the tool you use, testing an undocumented feature is like jumping into the deep end of the pool and try to learn how to swim. </p>\n\n\n\n<p>Here are the steps. </p>\n\n\n\n<ul>\n<li>From your Dashboard </li>\n\n\n\n<li>select Appearance &gt; Editor &gt; </li>\n\n\n\n<li>Click into the canvas side of the screen to enable Edit Mode</li>\n\n\n\n<li>Use the Style icon to open it in the right sidebar</li>\n\n\n\n<li>You might already see some fonts listed in the Fonts section </li>\n\n\n\n<li>Click on the Ab icon on the left to the section header. </li>\n\n\n\n<li>It opens the Font Manger modal. </li>\n</ul>\n\n\n\n<p>Below is a short video how you can find the Font Manager. </p>\n\n\n\nVideo: <em>How to find the Font Manager</em>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-what-should-you-test\">What should you test? </h2>\n\n\n\n<ul>\n<li>You can download font from Google or other free font sites</li>\n\n\n\n<li>Upload the fonts via Drag and Drop or selecting the files from your computer</li>\n\n\n\n<li>They should land in the wp-contents/fonts folder.<br /> <img width=\"568\" height=\"326\" class=\"wp-image-25532\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/09/Screenshot-2023-09-10-at-09.11.37.png?resize=568%2C326&ssl=1\" alt=\"New /fonts folder in wp-content directory\" /></li>\n\n\n\n<li>See that they show up in the Typography section of the Global Styles when enabling Font Family. </li>\n\n\n\n<li>Delete fonts you don&#8217;t need. </li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Where to report issues?</h2>\n\n\n\n<p>Report all finding in a comment on the PR on GitHub <a href=\"https://github.com/WordPress/gutenberg/pull/53884\">Font Library: Frontend [Stage 1]&nbsp;#53884</a>, or comment below. </p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Sep 2023 07:24:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: WP Includes Launches Women in WordPress Mentorship Program\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148596\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/wp-includes-launches-women-in-wordpress-mentorship-program\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3008:\"<img width=\"500\" height=\"333\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/women-working-500x333.jpeg\" alt=\"\" class=\"wp-image-148656\" />photo credit: <a href=\"https://stocksnap.io/photo/people-girls-N444PJYUP9\">Brodie Vissers</a>\n\n\n\n<p><a href=\"https://wpincludes.me/\">WP Includes</a> is a new initiative that launched this week with the goal of improving equal representation of women at global WordPress companies. It was founded by Human Made COO Siobhan McKeown and XWP Director of Engineering Francesco Marano.</p>\n\n\n\n<p>&#8220;I&#8217;ve been in WordPress a long time and I&#8217;ve met a lot of talented women but not enough in leadership roles. It&#8217;s time to change that,&#8221; McKeown said.</p>\n\n\n\n<p>The website states the founders&#8217; mission in launching the initiative:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Disappointed by the lack of representation of women in leadership roles at companies in the WordPress ecosystem we’ve decided to do something about it.</p>\n\n\n\n<p>We want to drastically increase representation of women in leadership roles at WordPress companies. We will do this by mentoring and supporting women to take the next step in their careers.</p>\n</blockquote>\n\n\n\n<p>WP Includes is recruiting women leaders who are C-Level or Directors <br />at a WordPress company to volunteer as mentors and build a supportive network of mentees.</p>\n\n\n\n<p>The mentorship program lasts five months and calls for mentees/mentors goes out twice a year in September and March. Mentors commit to meet with mentees for a 1:1 on a regular basis and support them in achieving their goals. Mentee applicants are required to be working at a business in the WordPress ecosystem and actively developing their careers.</p>\n\n\n\n<p>WP Includes is accepting sponsorships from companies with some rigorous requirements:</p>\n\n\n\n<ul>\n<li>Acknowledge gender disparity and a lack of representation in your organization, wherever it exists.</li>\n\n\n\n<li>Proactively address gender disparity in your leadership and executive roles.</li>\n\n\n\n<li>When senior roles become available, actively seek to place women within those roles.</li>\n\n\n\n<li>Support women within their career in your organization, working to ensure that any gender-related barriers are removed.</li>\n\n\n\n<li>Create opportunities to showcase women leaders in your organisation so that they can act as role models for future leaders.</li>\n</ul>\n\n\n\n<p>Supporting organizations can also contribute by sharing open roles within the network and by providing mentorship to future leaders who may potentially be considered for leadership roles in the sponsoring organizations. This is effectively changing representation from the inside out with cooperating organizations contributing to the cultivation of the leaders they need in order to purse more diverse leadership teams.</p>\n\n\n\n<p>Prospective mentees, mentors, and sponsors can apply on the <a href=\"https://wpincludes.me/\">WP Includes website</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Sep 2023 02:31:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"WPTavern: ACF’s 2023 Annual Survey Results Reinforce Plugin’s Focus on Improving the Block Building Experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148573\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"https://wptavern.com/acfs-2023-annual-survey-results-reinforce-plugins-focus-on-improving-the-block-building-experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3017:\"<p>Advanced Custom Fields (<a href=\"https://wordpress.org/plugins/advanced-custom-fields/\">ACF</a>), one of the plugins WP Engine <a href=\"https://wptavern.com/wp-engine-acquires-5-plugins-from-delicious-brains\">acquired from Delicious Brains</a> in 2022, has published the <a href=\"https://www.advancedcustomfields.com/annual-survey/2023-results/\">results if its first annual survey</a>. Although ACF reports more than 4.5 million active users, including PRO site installs, the survey only gathered feedback from 2,031 respondents. </p>\n\n\n\n<p>These results are more representative of the plugin&#8217;s developer community, as 81% of respondents are developers who maintain between 11-50 websites. 63% use version control for their codebase, and 27% manage dependencies with Composer.</p>\n\n\n\n<p>The survey showed that ACF is still an important tool for its early adopters, as 50% said they have been using it since its early days and 70% of all respondents use the plugin on all the websites they build.</p>\n\n\n\n<p>When asked what type of sites they are building, respondents had the option to choose multiple answers. Sites using Classic WordPress themes are the most popular followed by Hybrid themes, Block themes, and page builders. Surveying those who use the block editor, 56% report that they build blocks using ACF blocks.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1358\" height=\"1030\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-08-at-10.35.34-AM.png\" alt=\"\" class=\"wp-image-148627\" />\n\n\n\n<p>&#8220;It was cool to see the strong representation of hybrid and block themes,&#8221; WP Engine Product Marketing Manager Rob Stinson said. &#8220;It shows us that there is growing adoption of the modern WP editor experience amongst the PHP friendly crowd that is the ACF user base. </p>\n\n\n\n<p>&#8220;We had this scoped for upcoming releases anyway, but it reinforces our focus on improving the block building experience in ACF.&#8221;</p>\n\n\n\n<p>Among those ACF users building sites with page builders, the most popular selections include Elementor, Divi, Beaver Builder, and WPBakery Page Builder.  Naturally, ACF Extended is the most popular extension used with ACF, followed by Gravity Forms, Yoast SEO, and ACF Better Search.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2110\" height=\"1168\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-08-at-12.46.15-PM.png\" alt=\"\" class=\"wp-image-148636\" />\n\n\n\n<p>Respondents demonstrated high confidence in those maintaining the plugin, as 98% of them are comfortable updating ACF to the latest version. They are also confident in continuing to build on top of WordPress, as 91% of survey participants said they are likely to continue with the platform. For a more detailed look at the questions and responses, check out the <a href=\"https://www.advancedcustomfields.com/annual-survey/2023-results/\">2023 annual survey results</a> on the ACF website.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Sep 2023 17:27:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Do The Woo Community: WooBits About WordCampUS, WP Includes, WP for Enterprise, Swag and Avalara Next\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76427\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://dothewoo.io/woobits-newsletter-episode-one/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:440:\"<p>In WooBits this week, recapping WCUS, launch of WP Includes, WordPress for Enterprise, future of swag and Avalara Next virtual event.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woobits-newsletter-episode-one/\">WooBits About WordCampUS, WP Includes, WP for Enterprise, Swag and Avalara Next</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Sep 2023 11:55:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: Gutenberg 16.6 Introduces Block Hooks, Improvements to Toolbars on Nested Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148577\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wptavern.com/gutenberg-16-6-introduces-block-hooks-improvements-to-toolbars-on-nested-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3551:\"<p><a href=\"https://make.wordpress.org/core/2023/09/06/whats-new-in-gutenberg-16-6-06-september/\">Gutenberg 16.6</a> is available with progress on a feature that was formerly called auto-inserting blocks but has now been renamed to block hooks.  </p>\n\n\n\n<p>In a previous release (<a href=\"https://wptavern.com/gutenberg-16-4-introduces-experimental-auto-inserting-blocks\">16.4</a>), Gutenberg introduced auto-inserting blocks as an experimental feature that allows plugin developers to specify a location in which the block will be automatically inserted, such as before or after a template. Users can then reposition the blocks after insertion using the editor tools.</p>\n\n\n\n<p>Gutenberg lead architect Matias Ventura <a href=\"https://github.com/WordPress/gutenberg/issues/53987#issuecomment-1695915874\">proposed</a> <a href=\"https://github.com/WordPress/gutenberg/pull/54147\">renaming</a> the feature to block hooks to help developers understand how they work. </p>\n\n\n\n<p>&#8220;I&#8217;ve seen anecdotal feedback that <code>autoInsert</code> is not the clearest of descriptions,&#8221; Ventura said. &#8220;I&#8217;d like to propose renaming to the more familiar <code>hooks</code> terminology—and &#8216;block hooks&#8217; in more general terms—to help folks understand the mechanics and purpose more rapidly.&#8221;</p>\n\n\n\n<p>This release also <a href=\"https://github.com/WordPress/gutenberg/pull/52969\">adds an inspector panel for block hooks</a>, tentatively named &#8220;Plugins,&#8221; that displays blocks available for auto-insertion. It includes toggles to insert or remove them. The updated version of the feature also includes block icons (not shown below) to help differentiate the toggles. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1443\" height=\"438\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/block-hooks.gif\" alt=\"\" class=\"wp-image-148604\" />image source: <a href=\"https://github.com/WordPress/gutenberg/pull/52969#issuecomment-1669889491\">Gutenberg repository PR #52969</a>\n\n\n\n<p>Gutenberg 16.6 brings improvements to toolbars on nested blocks, where the toolbar now stays attached to the parent block. This change is part of a broader effort to improve nested block experiences. Previously, the toolbar would move around when clicking inside the nested blocks, but this change makes it stay in place for a less chaotic editing experience. The updated toolbar behavior has been rolled out to Navigation, List, and Quote blocks so far.</p>\n\n\n\nvideo credit: Gutenberg GitHub repository <a href=\"https://github.com/WordPress/gutenberg/pull/53699\">PR #53699</a>\n\n\n\n<p>This release includes a new keyboard shortcut for duplicating blocks within the List View: (<code>CMD+Shift+d</code>). It enables users to do more from the keyboard while navigating around the List View, instead of having to jump back into the block settings menu or editor canvas. Users can now click twice on the selected (or focused) block or multiple blocks to quickly duplicate them all in one go.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\nvideo credit: Gutenberg GitHub repository <a href=\"https://github.com/WordPress/gutenberg/pull/53559\">PR #53559</a>\n\n\n\n<p>These highlighted features and more will be landing in the upcoming WordPress 6.4 release. Check out the <a href=\"https://make.wordpress.org/core/2023/09/06/whats-new-in-gutenberg-16-6-06-september/\">Gutenberg 16.6 release post</a> for the full list of new features, enhancements, bug fixes, and improvements to performance and code quality.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Sep 2023 02:59:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"BuddyPress: BuddyPress 12.0.0-beta2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=331167\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://buddypress.org/2023/09/buddypress-12-0-0-beta2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3276:\"<p>Hello BuddyPress contributors!</p>\n\n\n\n<p>If you haven&#8217;t tested our first <a href=\"https://buddypress.org/2023/08/buddypress-12-0-0-beta1/\">12.0.0 beta release</a> (<img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f448.png\" alt=\"👈\" class=\"wp-smiley\" /> <strong>please read this post</strong>), here&#8217;s another opportunity to help us make sure it will fit perfectly into your WordPress / BuddyPress specific configuration. Beta testing is very important and more then any other BuddyPress major release, we need you all, whether you&#8217;re a regular or advanced user, a theme designer or a plugin author: <strong>please contribute!</strong></p>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-white-background-color has-text-color has-background wp-element-button\" href=\"https://downloads.wordpress.org/plugin/buddypress.12.0.0-beta2.zip\">Test BuddyPress 12.0.0-beta2</a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s new since beta1?</h2>\n\n\n\n<p>We&#8217;ve been working on improving documentation about 12.0.0 changes and giving advanced users some more customization options about the coming visibility feature.</p>\n\n\n\n<p>We&#8217;ve fixed 8 bugs, the most important one was about the BuddyPress menu items we are making available in the WP Nav Menu management interfaces (Administration screen and customizer). We took this opportunity to <a href=\"https://github.com/buddypress/buddypress/tree/master/docs/user/administration/navigations\">document how BuddyPress is dealing with these interfaces</a>.</p>\n\n\n\n<p>The final release is slated to October 30 and&nbsp;<strong>we need you to get there</strong>: do test this beta release of BuddyPress <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" />.</p>\n\n\n\n<p>You can test <a href=\"https://downloads.wordpress.org/plugin/buddypress.12.0.0-beta2.zip\">BuddyPress 12.0.0-beta2</a> in 4 ways :</p>\n\n\n\n<ul>\n<li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/bp-beta-tester/\">BP Beta Tester</a>&nbsp;plugin.</li>\n\n\n\n<li><a href=\"https://downloads.wordpress.org/plugin/buddypress.12.0.0-beta2.zip\">Download the beta here (zip file)</a>.</li>\n\n\n\n<li>Check out our SVN repository:&nbsp;<code>svn co https://buddypress.svn.wordpress.org/trunk/</code></li>\n\n\n\n<li>Clone our read-only Git repository:&nbsp;<code>git clone git://buddypress.git.wordpress.org/</code></li>\n</ul>\n\n\n\n<p>If you find something weird, please report it on&nbsp;<a rel=\"noreferrer noopener\" href=\"https://buddypress.trac.wordpress.org/newticket\" target=\"_blank\">BuddyPress Trac</a>, post a reply to&nbsp;<a href=\"https://buddypress.org/support/topic/lets-prepare-the-buddypress-12-0-0-next-major-release/\">this support topic</a>&nbsp;or get in touch with us on our&nbsp;<a rel=\"noreferrer noopener\" href=\"https://wordpress.slack.com/messages/buddypress\" target=\"_blank\">WordPress.org Slack channel</a>.</p>\n\n\n\n<p>Thanks in advance for your contributions <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f91d.png\" alt=\"🤝\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Sep 2023 20:27:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"Do The Woo Community: Woo AgencyChat Live with Mitch Callahan and Ash Shaw\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76387\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://dothewoo.io/woo-agencychat-live-with-mitch-callahan-and-ash-shaw/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:406:\"<p>From tools they use, a bit of AI, remote work and lots of insights into their teams and their companies.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woo-agencychat-live-with-mitch-callahan-and-ash-shaw/\">Woo AgencyChat Live with Mitch Callahan and Ash Shaw</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Sep 2023 08:34:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WPTavern: GoDaddy Retires Media Temple Brand\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148575\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wptavern.com/godaddy-retires-media-temple-brand\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4655:\"<p>Media Temple (MT) is closing its doors after 24 years in the hosting industry, with the brand now retired and customers fully migrated to GoDaddy. In 2013, GoDaddy acquired MT &#8220;to win the hearts and minds of developers,&#8221; as then-CEO Blake Irving told <a href=\"https://venturebeat.com/business/godaddy-ceo-we-bought-media-temple-to-win-the-hearts-and-minds-of-developers/\">VentureBeat</a> at the time. When it was purchased, the highly regarded brand was focusing on advanced technical services that GoDaddy had not yet adapted, and the plan was to have MT operate independently with no changes for employees or customers.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Thanks for allowing us to serve you for 24 years. The time has come to say goodbye. We will miss you. Keep building amazing things!</p>&mdash; Media Temple (@mediatemple) <a href=\"https://twitter.com/mediatemple/status/1699116917900894315?ref_src=twsrc%5Etfw\">September 5, 2023</a></blockquote>\n</div>\n\n\n\n<p>The year following the acquisition, <a href=\"https://wptavern.com/mediatemple-launches-wordpress-managed-hosting-package\">Media Temple launched its managed WordPress hosting product</a>, joining the ranks of Flywheel, Page.ly, WordPress.com, WP Engine, and a handful of other companies that were working to elevate the hosting experience for WordPress users.</p>\n\n\n\n<p>In December 2022, MT <a href=\"https://origin-blog.mediatemple.net/news/a-new-chapter-for-media-temple/\">announced</a> it would be retiring the Media Temple brand and transitioning accounts to GoDaddy, while subtly acknowledging the sentimental place MT holds in many of its customers&#8217; hearts:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Since joining GoDaddy, we worked hand-in-hand with them to incorporate the best of Media Temple into offerings, including improving GoDaddy’s customer experience and leveraging Media Temple’s unique expertise on what it truly means to run a world-class hosting organization. If you closely examine GoDaddy’s hosting offerings, you will find Media Temple’s fingerprints all around. From specialized teams who deal with complex hosting issues to programs like GoDaddy Pro specifically targeting creatives, Media Temple made its mark on GoDaddy.</p>\n</blockquote>\n\n\n\n<p>Fans bid the brand farewell on Twitter, as its retirement marks the end of a chapter in web hosting history.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Basically the entire design community was sponsored by Media Temple back in the day.<br /><br />I can’t imagine a more omnipresent brand at the time. <a href=\"https://t.co/mmhdxEIHVy\">https://t.co/mmhdxEIHVy</a></p>&mdash; Josh Pigford (@Shpigford) <a href=\"https://twitter.com/Shpigford/status/1699464913595290066?ref_src=twsrc%5Etfw\">September 6, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">When I got started circa 2003, it felt like every respected web designer was hosted by Media Temple.<br /><br />They made being hosted by them feel cooler (really) than anywhere else. Geniuses.<br /><br />I was a (mt) customer from 2007–2020 until <a href=\"https://twitter.com/laravelforge?ref_src=twsrc%5Etfw\">@laravelforge</a> made deploying magnitudes easier. <a href=\"https://t.co/HyhBxz5PZs\">https://t.co/HyhBxz5PZs</a></p>&mdash; Brendan Falkowski (@Falkowski) <a href=\"https://twitter.com/Falkowski/status/1699543478169112971?ref_src=twsrc%5Etfw\">September 6, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Woah. Somehow Media Temple always seemed so cool, the first “aspirational” software in a way, where you’d move when your blog was successful.<br /><br />End of an era. <a href=\"https://t.co/tJobBqEPQf\">https://t.co/tJobBqEPQf</a></p>&mdash; Matthew Guay (@maguay) <a href=\"https://twitter.com/maguay/status/1699446005568270700?ref_src=twsrc%5Etfw\">September 6, 2023</a></blockquote>\n</div>\n\n\n\n<p>In February 2023, Media Temple began migrating accounts to GoDaddy, with no action required from customers. Many of the products and services were already fulfilled through GoDaddy, decreasing the number needing to be migrated. </p>\n\n\n\n<p>Now that the process is complete, the brand will discontinue operations and move current resources into supporting customers inside GoDaddy. The company assured former MT customers that they will retain their current products and pricing for equivalent products with access to more tools.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Sep 2023 03:36:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Post Status: Community Summit Recaps, Multilingual Documentation, Performant Translations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=154280\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://poststatus.com/community-summit-recaps-multilingual-documentation-performant-translations/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21140:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-september-4-2023\">This Week at WordPress.org (September 4, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Discover the latest from the WordPress community. From the future of WordPress &amp; Gutenberg&#8217;s next steps to intriguing discussions at the Community Summit. Plus, get a sneak peek into WordPress 6.4&#8217;s development cycle. Stay updated, stay involved! </p></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n<div class=\"gb-container gb-container-5e804289\">\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><h2><a href=\"https://wordpress.org/news\">News</a></h2></h2>\n\n</div>\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/09/episode-61-community-summit-all-at-washington-d-c/\">WP Briefing: Episode 61: Community, Summit, all at Washington D.C.</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/wordpress-6-3-1-maintenance-release/\">WordPress 6.3.1 Maintenance Release</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">The Future of WordPress &amp; What’s Next for Gutenberg</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/wp20-a-heartfelt-thanks/\">WP20 – A Heartfelt Thanks</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community-summit-notes\"><a href=\"https://make.wordpress.org/summit\">Community Summit Notes</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/summit/2023/09/06/community-summit-discussion-notes-iterating-on-the-team-rep-role/\">Community Summit Discussion Notes: Iterating on the Team Rep role</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/09/04/community-summit-discussion-notes-open-source-participation-in-global-legislation/\">Community Summit Discussion Notes: Open Source participation in global legislation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/09/03/community-summit-discussion-notes-communication-and-collaboration-finding-your-way-around-wordpress/\">Community Summit Discussion Notes: Communication and Collaboration – Finding Your Way Around WordPress</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/09/01/understanding-contributor-leadership-roles-in-the-wordpress-open-source-project/\">Understanding contributor leadership roles in the WordPress open source project</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/31/part-i-ii-communicating/\">Part I &amp; II: Communicating…</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/31/invisible-and-under-appreciated-bolstering-behind-the-scenes-contributions/\">Invisible and under-appreciated: bolstering “behind the scenes” contributions</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/30/community-summit-discussion-notes-revitalizing-contributor-teams-leadership-pipeline/\">Community summit discussion notes: Revitalizing contributor teams’ leadership pipeline</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/30/community-summit-discussion-notes-php-version-support/\">Community Summit Discussion Notes: PHP version support</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/28/community-summit-discussion-notes-can-wordpress-become-the-household-name-it-deserves-to-be/\">Community Summit Discussion Notes: Can WordPress become the household name it deserves to be?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/27/community-summit-discussion-notes-refreshing-the-contributor-pipeline/\">Community Summit Discussion Notes: Refreshing the contributor pipeline</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-2 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-5 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/30/accessibility-team-meeting-agenda-september-1-2023/\">Accessibility Team Meeting Agenda: September 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/28/wcus-2023-contributor-day-summary/\">WCUS 2023 Contributor Day Summary</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/09/01/wordcamp-mentors-september-check-in/\">WordCamp Mentors’ September check-in!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/30/the-nextgen-event-project-your-ideas-your-wordpress-community/\">The NextGen Event Project: Your Ideas, Your WordPress Community!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/23/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-august-23-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on August 23, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/23/call-for-ideas-new-features-for-our-nexgen-wp-events-central-page/\">Call for ideas: new features for our NexGen WP events central page</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/21/meetup-organizer-newsletter-august-2023/\">Meetup Organizer Newsletter: August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/06/a-week-in-core-september-4-2023/\">Two Weeks in Core – September 4, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/05/call-for-testing-performant-translations/\">Call for Testing: Performant Translations</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/31/proposal-an-update-to-the-field-guide/\">Proposal: An update to the Field Guide</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/adding-and-using-custom-settings-in-theme-json/\">Adding and using custom settings in theme.json</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/08/exploring-the-future-of-web-development-with-webassembly-and-php/\">Exploring the future of web development with WebAssembly and PHP</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/08/an-introduction-to-block-variations/\">An introduction to block variations</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/08/the-anatomy-of-a-letterform/\">The anatomy of a letterform</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/06/default-theme-chat-summary-august-30th-2023-2/\">Default Theme chat summary: September 6, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/05/dev-chat-agenda-september-6-2023/\">Dev Chat agenda, September 6, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/04/editor-chat-agenda-06-september-2023/\">Editor Chat Agenda: 06 September 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/08/28/design-share-aug-14-aug-25/\">Design Share: Aug 14-Aug 25</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/18/design-specific-triage/\">Bringing Back the Weekly Design Triage</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/09/01/agenda-for-docs-team-bi-weekly-meeting-05-sep-2023/\">Agenda for Docs Team Biweekly Meeting (05-Sep-2023)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/09/04/documentation-team-update-september-4-2023/\">Documentation Team Update – September 4, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/09/06/hosting-team-meeting-agenda-2023-09-06/\">Hosting Team meeting agenda 2023-09-06</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/09/03/xpost-community-summit-discussion-notes-php-version-support/\">X-post: Community Summit Discussion Notes: PHP version support</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/08/24/wordcamp-us-2023-contributor-day/\">WordCamp US 2023 Contributor Day</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/23/introducing-the-wordpress-org-github-invite-tool/\">Introducing the WordPress.org GitHub Invite tool</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/09/04/last-week-openverse-2023-08-28-2023-09-04/\">A week in Openverse: 2023-08-28 – 2023-09-04</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/05/performance-chat-summary-05-september-2023/\">Performance Chat Summary: 5 September 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/09/04/plugin-review-team-4-september-2023/\">Plugin Review Team: 4 September 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/09/06/agenda-weekly-polyglots-chat-september-06-2023-0700-utc/\">Agenda: Weekly Polyglots Chat- September 06, 2023 (07:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/09/04/improving-translation-suggestions-from-other-languages/\">Improving Translation Suggestions from Other Languages</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/09/06/documentation-translation-localization/\">Proposal: Documentation translation/localization</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/08/proposal-for-updated-support-guidelines/\">Proposal for updated support guidelines</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/09/06/how-the-wordpress-sustainability-team-was-born-during-wordcamp-europe-2023/\">How the WordPress Sustainability Team was born during WordCamp Europe 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/sustainability/2023/09/05/sustainability-chat-agenda-september-8-2023/\">Sustainability Chat Agenda, September 8, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/08/31/test-chat-summary-29-august-2023/\">Test Chat Summary: 29 August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/08/29/fse-program-lets-start-from-the-beginning-summary/\">FSE Program Let’s Start From The Beginning Summary</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/08/15/test-team-reps-call-for-nominations-3/\">Test Team Reps: Call for Nominations</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/09/04/test-team-update-4-september-2023/\">Test Team Update: 4 September 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/09/05/themes-team-update-september-5-2023/\">Themes team update September 5, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/09/02/whats-new-on-learn-wordpress-in-august-2023/\">What’s new on Learn WordPress in August 2023</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/learn-wordpress-newsletter-september-2023/\">Learn WordPress Newsletter – September 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/09/05/wordcamp-us-2023-contributor-day-recap/\">WordCamp US 2023 Contributor Day Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/09/05/lets-share-our-notes-from-the-community-summit/\">Let’s share our notes from the Community Summit</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/24/information-sources-for-wordpress-6-4/\">Information Sources for WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/24/looking-for-feedback-learning-pathway-outlines/\">Looking for feedback: Learning pathway outlines</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/intro-to-the-site-editor-and-template-editor/\">Intro to the Site Editor</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/gu-how-to-start-using-wordpress-playground/\">વર્ડપ્રેસ પ્લેગ્રાઉન્ડનો ઉપયોગ કેવી રીતે શરૂ કરવો</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/common-apis-dashboard-widgets/\">Common APIs – Dashboard Widgets</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-create-a-video-tutorial-for-learn-wordpress-org/\">How to create a video tutorial for learn.wordpress.org</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-3\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=speaker-workshop-for-indian-women-in-the-wordpress-community-part-2\">Speaker Workshop for Indian Women in the WordPress Community Part 2</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=speaker-workshop-for-indian-women-in-the-wordpress-community-part-1\">Speaker Workshop for Indian Women in the WordPress Community Part 1</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-metadata-2\">Common WordPress APIs: Metadata</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-13\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=apac-using-the-navigation-block\">APAC: Using the navigation block</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=using-the-navigation-block-3\">Using the navigation block</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-metadata\">Common WordPress APIs: Metadata</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=41489\">WP dev livestream: Sendig block theme</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/wordpress-community-team-supporter-basics/\">WordPress Community Team Supporter Basics</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/08/28/jquery-3-7-1-released-reliable-table-row-dimensions/\">jQuery 3.7.1 Released: Reliable Table Row Dimensions</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-08-31-1\">PHP 8.3.0 RC 1 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-08-31-2\">PHP 8.2.10 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-08-31-3\">PHP 8.1.23 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.1\">PHPMailer 6.8.1</a></li>\n\n\n\n<li><a href=\"https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-35.html\">Changes in MySQL 8.0.35 (Not yet released, General Availability)</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases\">Composer 2.6.2</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong>   <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 19:31:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: #89 – Scott Kingsley Clark on Why the Time Is Right for the Fields API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=148568\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/podcast/89-scott-kingsley-clark-on-why-the-time-is-right-for-the-fields-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47790:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, why the time might be right for the Fields API.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you, and hopefully get you all your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox. And use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Scott Kingsley, Clark.</p>\n\n\n\n<p>Scott is a WordPress developer who has been working with WordPress since 2007. He&#8217;s well-known for his work on the Pods Framework, a popular content and custom fields plugin.</p>\n\n\n\n<p>Scott&#8217;s goal is to find ways to enhance the WordPress experience, particularly in terms of working with different types of data. He&#8217;s currently involved in the WordPress Fields API project, which aims to provide a better solution for developers looking to wrangle their data. And that is the focus of the podcast today. As you&#8217;ll hear, Scott is determined to contribute to the continual growth and improvement of WordPress, and to make the Fields API a reality.</p>\n\n\n\n<p>Scott came from a background using Drupal, which is an alternative CMS. When he first ventured into WordPress, he found certain features were lacking. Things which were baked into Drupal Core were not available in WordPress, a notable example being custom fields.</p>\n\n\n\n<p>We know that WordPress has a myriad of plugins, which can take on the burden of creating custom fields, but Scott has concerns about the interoperability of these plugins, and he wants to create a more solid structure within WordPress itself. Wouldn&#8217;t it be nice if there were ways for developers to create custom field plugins so that you weren&#8217;t locked into one or the other. Scott imagines a future in which you could move from ACF, Metabox Toolset and more. A future built on top of the Fields API.</p>\n\n\n\n<p>Throughout the conversation, scott talks about his passion for incorporating the block editor, React and other technologies into WordPress. He shares insights on controlling block settings, making them extensible through PHP.</p>\n\n\n\n<p>You might know Scott from his work on the popular Pods Framework plugin. This plugin allows users to create custom content types and fields in WordPress, and certainly speaks to his credentials in trying to push the Fields API project forward.</p>\n\n\n\n<p>We talk about what the Fields API might become. The aim is to simplify the process of working with custom fields and content types in WordPress. With the Fields API, Scott hopes to unify the different methods and APIs for managing custom fields, making it easier for developers and non-developers alike to add their fields to different screens within WordPress.</p>\n\n\n\n<p>It&#8217;s a complicated undertaking and we get into some of the areas of WordPress, which might benefit from his work. Scott sheds light on the challenges faced during the development of the Fields API, the need for shared storage standards among plugins, and the potential for better integration with the WordPress Admin UI.</p>\n\n\n\n<p>Towards the end of the podcast we talk about the future of the Fields API project, and how gaining support from people in the WordPress community will be crucial to its success.</p>\n\n\n\n<p>If you&#8217;re interested in how WordPress can be used as a fully featured CMS, this podcast is for you.</p>\n\n\n\n<p>If you want to find out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Scott Kingsley Clark.</p>\n\n\n\n<p>I am joined on the podcast today by Scott Kingsley Clark. Hello Scott.</p>\n\n\n\n<p>[00:04:53] <strong>Scott Kingsley Clark:</strong> Hey Nathan, how&#8217;s it going?</p>\n\n\n\n<p>[00:04:55] <strong>Nathan Wrigley:</strong> Yeah really good. Thank you for joining us on the podcast today. We&#8217;re going to get into the weeds a little bit with WordPress code and all sorts of things. We haven&#8217;t had one of these episodes for a little while so this will be nice and refreshing.</p>\n\n\n\n<p>Scott, given that we&#8217;re going to be talking about something technical I suppose it would be a good thing right at the beginning to learn about your technical expertise. The various different projects that you&#8217;ve touched in the WordPress space during the time that you&#8217;ve been in that. So just yeah a little moment for you to offer up your bio really. So over to you.</p>\n\n\n\n<p>[00:05:24] <strong>Scott Kingsley Clark:</strong> Well sure. I started working with WordPress in about 2007 or 8. I used it briefly once before with a one click install from cPanel before that, but I didn&#8217;t really like it at the time. And I was doing many other things.</p>\n\n\n\n<p>But ever since that point I have been really involved with trying to make WordPress the best that it can be. And that has evolved through plugin development. One of the plugins I&#8217;m more known for is the Pods Framework. And that is a content type, a custom field plugin for WordPress. But I&#8217;ve also tried to find ways to make it easier for other developers to build things without needing a plugin. Because a plugin like Pods existed before custom post types had a real API.</p>\n\n\n\n<p>But now that it has a real API you don&#8217;t really need a plugin like Pods to just make a custom post type. And the goal for me is, I&#8217;d love to see a better way to work with those types of objects inside of WordPress that have very different APIs, or in some cases no API at all. You just have to output your own markup and hook into some hooks. And it&#8217;s not really great.</p>\n\n\n\n<p>Especially in this day where we have everything exposed to the Rest APIs. And you want to build really cool blocks, but you can&#8217;t leverage some data from different structures that don&#8217;t exist. So that&#8217;s where I&#8217;d love to find ways for WordPress to level up.</p>\n\n\n\n<p>In this particular project of mine, is the WordPress Fields API. There is a group of us who have kind of rebooted it, but it existed in 2000 and, I want to say 14, 15, 16, 2017, all through those years. And we had made some progress, made a few different proposals and it just got stuck up in the process of getting the block editor and Rest API.</p>\n\n\n\n<p>And there was just so many more bigger features that were getting the priority, and it kind of burned me out. And I didn&#8217;t find anyone else to carry the torch so it just went away. And just the start of this year we started up again.</p>\n\n\n\n<p>[00:07:30] <strong>Nathan Wrigley:</strong> What was the reason that it went away? You mentioned there that there were a whole variety of different things going on at the same time. So was it that the community&#8217;s focus just seemed to be more interested on other things? And so despite the fact that you were putting in the time, and you obviously just described that it burnt you out a little bit. There just wasn&#8217;t enough interest because attention was being put elsewhere.</p>\n\n\n\n<p>[00:07:53] <strong>Scott Kingsley Clark:</strong> Right. Well Fields API owes so much to WebDevStudios and 10up who offered a lot of my time on the clock. They donated my time towards developing the Fields API and pushing it forward. And at 10up we were really, really close. We got the closest we had been at that point because at 10up we had a really awesome contributor for WordPress. A core committer, Helen Hou-Sandi.</p>\n\n\n\n<p>And that got us really close, but I think it just was that I was practically speaking for Fields API and saying, we should do this, we should do that, and it just wasn&#8217;t hitting. It wasn&#8217;t hitting right for them. Or the people who were involved in making decisions on what was going to make it, or what was going to get the attention or whatever, just didn&#8217;t feel it yet.</p>\n\n\n\n<p>And I can understand that. I mean there&#8217;s so much that everyone is trying to do for each release. And I kind of assumed that if I built as much as possible and showed it as a really thoroughly working prototype with tests and everything else. And I just handed it to them and said hey here it is. Can you help me make this part of WordPress Core? Do you have any feedback? And when I did that I guess the biggest problem was I hadn&#8217;t really involved all those same voices at that point prior to actually doing the development of it.</p>\n\n\n\n<p>So I had some input from a few different core contributors and committers and such. But as soon as I pushed out that final proposal in 2017 we got so many detractors and people saying, oh we should have done this differently or, why is it like this? And I would have done it this way. And it kind of did not get the consensus that I was needing for it to gain further traction. So we&#8217;ve kind of approached it differently in this reboot.</p>\n\n\n\n<p>[00:09:42] <strong>Nathan Wrigley:</strong> Okay, right. So you did a lot of the work, you put it out there but the feedback that came back didn&#8217;t exactly encourage you, let&#8217;s put it that way. There were people who just would rather it had been done in their way. I&#8217;m guessing that that&#8217;s because there are loads of different ways that this type of problem has been tackled I guess on a more or less on a per plugin basis. There&#8217;s probably hundreds of plugins out there that do something similar. They do it their way. And so they presumably think that their way is the way that it should be done.</p>\n\n\n\n<p>[00:10:15] <strong>Scott Kingsley Clark:</strong> Right. I mean there&#8217;s so many plugins like ACF and Pods and Toolset, so many more at comparewp.org slash cck. Which is like a really cool comparison list of all these different types of plugins. But there&#8217;s so many that each one has their own baked in API for managing fields in WordPress.</p>\n\n\n\n<p>And it&#8217;s just bonkers that everyone has to build all these APIs, and in the end they&#8217;re almost it&#8217;s forcing the need of having to build their own APIs because they won&#8217;t accept anything else other than the one that they built. And I think that it&#8217;s tricky with developers and egos and everything else. We all have to kind of find a way to, you know, what is the minimum bare essentials API that we could build for this and find a consensus on that.</p>\n\n\n\n<p>[00:11:01] <strong>Nathan Wrigley:</strong> So I guess this time around the community involvement is going to be there. You&#8217;re going to do this much more in the open. So that as you are going along presumably ideas are chipped in, rather than it just being one great big release at the end where everybody gets to either agree or disagree.</p>\n\n\n\n<p>[00:11:18] <strong>Scott Kingsley Clark:</strong> Right yeah. We tried to do that before but I think the challenge was we moved so quickly. I built so much code and I had made a specification ahead of time. But really the time wasn&#8217;t spent in the research specification side to get a consensus at that point, with not just the people who were involved but everyone else. Making sure everyone else had a moment to do that.</p>\n\n\n\n<p>I guess when people just look at a specification like oh, I&#8217;ll just look at it later on when he has something for me to look at. And so it just gets delayed. And I&#8217;m hoping that this time I can find ways to intuitively make it so people will actively and proactively be part of that process and give feedback</p>\n\n\n\n<p>[00:12:01] <strong>Nathan Wrigley:</strong> So given that you&#8217;ve restarted it, what reinvigorated it for you? Where did your curiosity for something that has been dormant for quite a number of years now. What on earth was it that brought you back to seeing this as a worthwhile use of your time?</p>\n\n\n\n<p>[00:12:16] <strong>Scott Kingsley Clark:</strong> Since 2017 I&#8217;ve had kind of dark years in my contributing to WordPress Core, and just feeling like, well I can&#8217;t get anything big done so maybe I shouldn&#8217;t spend my time on it. And just the amount of time I&#8217;d spent on it had taken away from my full time work and my side projects.</p>\n\n\n\n<p>I&#8217;m just like, well if I&#8217;m going to do this I really need it to be something I believe in. And up until the start of the year I just didn&#8217;t really feel like it was going to be possible. And then Joe Dolson, from the accessibility team was talking about how their team was looking at trying to revitalize the settings screens.</p>\n\n\n\n<p>And one of the biggest challenges were their setting screens are hard coded in a lot of ways. And there&#8217;s not really an easy way to just like, here let&#8217;s try out this different interface. Let&#8217;s try this interface, this markup. We&#8217;ll change this markup here. And it&#8217;s very difficult to produce different markup inside of WordPress Core right now for a lot of screens really.</p>\n\n\n\n<p>And more importantly for them, it&#8217;s not even using the Settings API the same way as most people are building things with the Settings API. And they hooked up with me because Courtney Robertson, a really awesome Dev Rel person, has just connected me with Joe at the end of last year I believe. And we just started talking about it, like hey this would be really cool if we had this Fields API stuff that you were thinking about before.</p>\n\n\n\n<p>And I was like well I don&#8217;t know. And then as they discussed it with really the focus on accessibility I was like, you know what accessibility is such a big priority to me that I think it kind of overrides my initial thoughts about well I don&#8217;t know if I can get this into Core. Because I thoroughly believe in spending more time on accessibility for lots of different plugins. Especially for WordPress Core and the block editor. And if I can help push that forward I feel like I&#8217;ve done something better with my time.</p>\n\n\n\n<p>And at that point I was like yeah I&#8217;m in. We&#8217;ll focus on the Settings API, just on that. And we&#8217;re not going to like build all the different screens and API prototype that we had done before. Until we get the Settings API, let&#8217;s focus all of our energy on doing that for the Settings API itself.</p>\n\n\n\n<p>[00:14:26] <strong>Nathan Wrigley:</strong> So that all kicked off again at the beginning of this year, 2023. And I&#8217;m staring at a page on the Make WordPress Core blog, which you wrote right at the beginning of the year, january the 9th. You&#8217;ve posted a video there of you, and I think the four other people on the call. So right at the very start of this year, five people involved at the very least.</p>\n\n\n\n<p>How has the project been growing? Has it caught the attention in the way that you&#8217;d hoped? Have there been people coming along to assist? One of the enterprises of this podcast episode is obviously to swell the number of people, but it would be quite nice to know how it&#8217;s going just prior to that.</p>\n\n\n\n<p>[00:15:04] <strong>Scott Kingsley Clark:</strong> So as with a lot of these kinds of initiatives it all depends on the time you put in, as someone who has the vision and leads it. And my time on the Fields API had been kind of reduced, just right after this. The economy started having some challenges in the tech space, and job security was a concern in a lot of areas for a lot of people, especially me.</p>\n\n\n\n<p>And so I didn&#8217;t have as much free time to focus on that. I was focused on my work, keeping my head down and making sure I was doing all my things. And I just didn&#8217;t have enough headspace for it. But I knew that if I could really spend a great deal of time this summer on the Fields API, getting it prepared, getting it to the next phase, so that we have something solid. By the time it is time for Community Summit contributor day for WordCamp US we have a solid chance.</p>\n\n\n\n<p>And then something came out of nowhere. On the Make WordPress dot org core, blog I saw a post come through. And I&#8217;ve been watching posts there all the time and sometimes I&#8217;ll provide feedback. But this one was unique. This one was talking about revamping the Admin UI. And now I&#8217;m getting all sorts of excited and I&#8217;m thinking to myself, oh this is my time.</p>\n\n\n\n<p>Like, if I can get the Admin UI perspective on the Fields API, I think this could even help us further, pushing this forward. Because if you want to approach redoing the Admin UI you have to expose these kinds of fields and forms and screens in a way that is more dynamic than it is right now. And that is a sweet spot for the Fields API.</p>\n\n\n\n<p>So I posted on that blog post. I asked Matias, hey can we have Fields API? Please, please, please be part of this conversation. I would love to talk to you more about it. And so we&#8217;re probably going to talk about it at WordCamp US, some time during that week. And my hope is we&#8217;ll get this really pushed further. Because it takes buy in from the vocal people in WordPress. And I think I&#8217;m beginning to see more buy in. And that is really a positive thing for me.</p>\n\n\n\n<p>[00:17:12] <strong>Nathan Wrigley:</strong> Sounds like a really nice bit of serendipity there. Couple of things happened, and the chance of the Admin UI being overhauled kind of sits perfectly doesn&#8217;t it. That really would be the moment.</p>\n\n\n\n<p>It is a dramatic change that&#8217;s being proposed. And so I guess if you&#8217;re going to go all in on changing the Admin UI, well now would be the time to get all of the fields work done as well.</p>\n\n\n\n<p>It just occurs to me that given the audience that listen to this podcast, there&#8217;s a fair smattering of developers no doubt. But also there&#8217;s people who are just into WordPress. You know, it&#8217;s a hobby. They perhaps do it as a side gig or something.</p>\n\n\n\n<p>So maybe we should rewind and do some explanations about what on earth an API for fields would even do. Why is it even needed? I&#8217;m suspecting that many people log in to their WordPress website, certainly since the advent of Gutenberg. And more or less everything that they want to do, publish posts, schedule posts, that&#8217;s possibly the extent of it all. It functions.</p>\n\n\n\n<p>So I&#8217;m imagining there&#8217;s a proportion of people listening to this going, well, what even would this be needed for? Describe a scenario where this would be useful. So, let&#8217;s cover that out. What is the Fields API? How would it change what WordPress does?</p>\n\n\n\n<p>[00:18:25] <strong>Scott Kingsley Clark:</strong> Sure. So let me preface my answer with, there&#8217;s a reason why there&#8217;s so many plugins out there doing content types and custom fields. There&#8217;s a reason why Advanced Custom Fields has millions of active installs. And tons of people have paid for the pro premium versions of these kinds of plugins.</p>\n\n\n\n<p>Now I&#8217;ll get into the real answer. This is an incredibly complicated dance. Whenever you want to go add a custom field to a post, or let&#8217;s say you&#8217;re building a site, a hobby site. I use the book analogy a lot, but let&#8217;s talk about music, because I love music too.</p>\n\n\n\n<p>So you&#8217;re setting up a site for your music and maybe you&#8217;re an artist, a solo artist or a band. And you&#8217;re trying to set up a list of albums. And so you&#8217;re like well, how do I add albums? You could add that in the block editor. No problem, no issues there. But then what if you wanted to make it more data oriented.</p>\n\n\n\n<p>So if you wanted to do that you&#8217;d have to go register a custom post type for album, for instance. Maybe a custom post type for tracks, if you want to relate them to albums in some way. And maybe a custom post type for other things. Maybe custom taxonomies for other items that you want. But the challenge there is not really in the content type. It&#8217;s in the custom fields you want to add to that.</p>\n\n\n\n<p>Inside of WordPress, I counted it up recently, there&#8217;s somewhere between 16 to 17 different APIs and hooks that are totally different from each other, to add custom fields or settings to different areas on all the different screens, and different objects inside of WordPress. That is a lot. So adding a custom field means you have to go add an action inside of PHP.</p>\n\n\n\n<p>First of all you have to know PHP and kind of know where to put it. Second of all you have to then go add action to add a meta box. Then you have to add your code to render all of your fields markup. So you have to add your HTML in there and have it do that. Then you have to add an action to handle the saving.</p>\n\n\n\n<p>And then at that point you&#8217;re probably going to be looking at doing more things for taxonomies possibly. So you have to work with another action there. You have to add things there and it doesn&#8217;t look great. So then you have to add more markup. And it&#8217;s a lot for someone who just wants to build.</p>\n\n\n\n<p>So you just mentioned that there&#8217;s a number of developers listening to this right now. But there&#8217;s a lot of people who aren&#8217;t really considering themselves developers. They&#8217;re just people building sites and they don&#8217;t really have time to dig into the code. Or they don&#8217;t want to tell their client they can do this if they can&#8217;t build it custom, they would have to pay someone else to do that. And they want to avoid that cost. So they&#8217;re going to use one of these off the shelf plugins, like Advanced Custom Fields.</p>\n\n\n\n<p>Why would you spend five hours building your albums and tracks and things like that in PHP? The trial and error and figuring out the markup and, why is this not working? And then coming back to it later on and spending another few hours trying to debug something that happens. And then displaying it all on the front end. Why spend all that time when you can just install a plugin and just click a few buttons? And boom, you have another post type and then you have your fields already displayed. And by the way they look really nice. Why would you spend that time?</p>\n\n\n\n<p>So this is more of a feature, or more of a project geared towards developers so that it makes them spend less time on their side of things. And it unifies all 16, 17 of these methods and APIs to work with all these different screens.</p>\n\n\n\n<p>But what the end result would be is anyone using WordPress could then be using a plugin, or potentially use code snippets very easily without having to have a whole lot of knowledge. And be able to add a field to different screens without a whole lot of code, or whole lot of PHP experience. And these types of plugins like ACF, and Pods, and Toolset and various others, they could then leverage the Fields API if they&#8217;re supporting that WordPress version that includes it. They could leverage this Fields API in a way that reduces the code that they actually have to have inside their own plugins.</p>\n\n\n\n<p>And at the same time that makes it so WordPress itself, the REST APIs, everything that talks with the Fields API, then knows about the structures you&#8217;re registering.</p>\n\n\n\n<p>It&#8217;s a hand in hand, win-win scenario for end users who benefit from the stability, and the flexibility, and extensibility of those APIs in place. And developers who want to be able to utilize those things.</p>\n\n\n\n<p>[00:22:54] <strong>Nathan Wrigley:</strong> Have you any experience with other CMSs? We could probably list off half a dozen or more other CMSs. But certainly some that I have used in the past, a lot of these kind of features are baked into the core product. So the ability to add custom fields to, well it may not be called a custom post type over on that particular platform but you get the idea. It is already built in, if you like.</p>\n\n\n\n<p>You mentioned that you want to have this pushed to Core. Do you see that other CMSs are potentially stealing a march on WordPress? WordPress has traditionally been very good at giving 80% of the people what they want. So there is some argument as to whether or not some things should be added or some shouldn&#8217;t. But do you feel its been lacking this? And really a lot of other rival CMSs have been doing this for years.</p>\n\n\n\n<p>[00:23:42] <strong>Scott Kingsley Clark:</strong> That&#8217;s a very good point. The plugin Pods was one of the first ones that did custom content types and custom fields for WordPress in a way that mimicked, and this is in 2008, the end of 2008. It mimicked Drupal at the time.</p>\n\n\n\n<p>Drupal has a major feature called, what they called CCK, which was Content Construction Kit. I think that was what it was.</p>\n\n\n\n<p>And so what value that API had for Drupal was that it would let you do the kinds of things you&#8217;re seeing be possible with plugins like Metabox or whatever else, you can use code, and ACF to register your groups and fields, and you can use code to register custom post types.</p>\n\n\n\n<p>So you don&#8217;t have to use the UIs. You don&#8217;t have to provide a bunch of JSON. You can just register those things through PHP. And Drupal has had this for many, many years. It&#8217;s coming up on almost 20 years now that it&#8217;s had a feature like CCK. And that is not really that Drupal is ahead of WordPress, it&#8217;s that WordPress is severely behind. Because it hasn&#8217;t really prioritized these kinds of unifying APIs for its screens. I mean obviously WordPress hasn&#8217;t.</p>\n\n\n\n<p>If you look at it, it really hasn&#8217;t changed a whole lot until block editor. The interfaces and screens really kind of have been what they are. The structure of where things are has been mostly the same outside the block editor.</p>\n\n\n\n<p>Multisite was a big thing, but the screens themselves they really haven&#8217;t changed a whole lot. And I think that is just because we&#8217;ve been focused as a project on building features and not looking back at what we&#8217;ve done, and finding a better way to represent that. A project like the Admin UI revamp, or even accessibility revamp, could give us that time to kind of be introspective. What are we doing with these screens, and how do we make these things better?</p>\n\n\n\n<p>And backward compatibility doesn&#8217;t have to be a hindrance in the Fields API because it can be backward compatible too. It&#8217;s just if you want to register the new way you can do that and that is the officially the way that we recommend you do it. It&#8217;s just, it works. I really hope that more people see things like Drupal, and there&#8217;s so many other plugins, or so many other CMSs out there that have their own kind of CCK situations.</p>\n\n\n\n<p>Because it&#8217;s just, you&#8217;re building a CMS? Well you&#8217;re not going to want to do that the way the WordPress did it way back when. No one&#8217;s going to want to do that on purpose. And I think that they all already have their own forms and Fields API processing abilities, because that&#8217;s the bare minimum. As a developer, when you&#8217;re building something like this you build that. You don&#8217;t build all the markup and everything hard coded anymore.</p>\n\n\n\n<p>[00:26:24] <strong>Nathan Wrigley:</strong> Yeah I was a big fan of Drupal, and I used Drupal exclusively more or less for many years. My first interaction with WordPress was an endeavor to move away from Drupal for a variety of different reasons. And I do remember opening up WordPress and almost being incredulous that I couldn&#8217;t achieve some of the things that I was simply able to achieve with a vanilla install of Drupal.</p>\n\n\n\n<p>So custom fields was just trivially easy. It was there, it was baked in. And so I had this expectation, well everybody&#8217;s using WordPress it must have, you know, a similar feature set. And so, just flabbergasted that it didn&#8217;t exist.</p>\n\n\n\n<p>Of course very quickly found out exactly what you just said. That commercial and also free, there&#8217;s plenty of free options as well, Pods being one. That you had to go and find a solution for that. So rather than it being baked into core you&#8217;d go out and you&#8217;d purchase ACF or you would download Pods or whatever it may be.</p>\n\n\n\n<p>But this sort of feeling that well that&#8217;s interesting because I wonder how they&#8217;re doing that and if they&#8217;re doing it differently than the other one, so if ACF is doing it differently to how Pods is doing it, you could make that spaghetti go in any direction. How am I going to be stuck in the future? You know things that I create with Pods, is that interoperable? Could I start using ACF at a future date on the same website?</p>\n\n\n\n<p>So there&#8217;s all of that thrown into it as well. And I guess the endeavor here is to create that basic structure so that everybody can approach it and everybody can start creating these things without the reliance necessarily on a third party plugin.</p>\n\n\n\n<p>[00:28:03] <strong>Scott Kingsley Clark:</strong> Right. Like if you&#8217;re using a plugin like that and the Fields API comes out, there could be a migration thing, or exporting plugin created that exports from Pods or ACF or whatever into the Fields API structure. Much like ACF and some of these other plugins have the ability to kind of export. Maybe the biggest one is Custom Post Type UI. Where it&#8217;s just simple. Add custom post types, you add custom taxonomies and you can export that to code.</p>\n\n\n\n<p>And that code works without the plugin. So it just tells it, here is what you tell WordPress to do what you want to do here. That kind of ability to export into just a Fields API code would take your code, your plugin usage of ACF or Pods or whatever, and you could easily switch out into just pure WordPress.</p>\n\n\n\n<p>But also because if it has that ability to use the Fields API at that point you have more interoperability. So you can go between these different plugins more easily because there&#8217;s a similar structure we&#8217;re all using. And when you&#8217;re registering through Fields API you can potentially set like a source, like this is coming from ACF, or whatever you want.</p>\n\n\n\n<p>And then a Pods plugin could say oh hey I recognize you had these ACF fields, do you want to bring them over? The Fields API opens up the door because everyone&#8217;s talking the same talk. And we can all talk about things in the same conversation instead of like I need to know the ACF APIs to work with getting the fields out, and I need to know this and then that. And there&#8217;s that side.</p>\n\n\n\n<p>But there&#8217;s also the storage side. So we&#8217;re talking about the way that ACF stores their content. For repeatable fields that can be quite tricky. Flexible content, anything that has to do with data that&#8217;s not just a simple single value gets a little bit tricky depending on how you choose to store it in ACF.</p>\n\n\n\n<p>So those sorts of things are more based off of the plugin developers preference. So ACF was developed in a specific kind of point of view, for how they should store the storage. Pods is the same way, we have a specific point of view where it should be stored a certain way. Every plugin will have their own points of view. But if we can settle on the structure of the content fields, the custom fields for each of these objects, and how they&#8217;re going to be specified to WordPress, that&#8217;s really half the battle.</p>\n\n\n\n<p>Then we can start talking about, okay now that we have this common language let&#8217;s work on bringing everyone to the same storage, so anyone can switch between these different plugins and they won&#8217;t have to deal with any extra work. We could all agree on a shared set of storage, kind of specification standards really.</p>\n\n\n\n<p>[00:30:35] <strong>Nathan Wrigley:</strong> The breadth of this project feels like it could be truly enormous because there are fields in all sorts of unexpected places in WordPress. I mean you may not be thinking about them all the time but you know we&#8217;ve got post types, and terms, and comments, and settings, and users, and navigation, and the media library and all sorts of different places.</p>\n\n\n\n<p>How are you breaking it down? Is there an order in which you&#8217;re going to knock those dominoes over? Are you going for, I don&#8217;t know, probably the low hanging fruit of custom post types first, or is the intention to try and get everything done all at once? You did mention accessibility. Perhaps that&#8217;s come first because of Joe Dolson&#8217;s interactions with you.</p>\n\n\n\n<p>[00:31:17] <strong>Scott Kingsley Clark:</strong> Yeah. So accessibility is going to be the main driving point for us right now. So we&#8217;re focused on the Settings API. If we can get this right and potentially the goal is to get it to the point where we can actually merge it just for the Settings API. Just for the Settings API.</p>\n\n\n\n<p>We have an inside person now, inside of WordPress itself. So now we can start expanding it, and say okay now here&#8217;s the proposal to add this to the post types, and to the terms and everywhere else to be powered by the Fields API. And once you have those things powered by the Fields API, the full Admin UI revamp is becoming much more approachable for people who want to switch out the markup there.</p>\n\n\n\n<p>They don&#8217;t have to modify core as much to make it happen. They don&#8217;t have to duplicate all the code and deal with merge conflicts. It&#8217;s just so much more easier when you&#8217;re working with data structures that are defined as data structures, and not purely as markup and save handlers like they are in many areas of WordPress.</p>\n\n\n\n<p>[00:32:13] <strong>Nathan Wrigley:</strong> You&#8217;ve been doing this kind of work for years with Pods. So you know you&#8217;re incredibly familiar with this. Is there anything during your time working with Pods where you thought, I wish WordPress had this?</p>\n\n\n\n<p>So I&#8217;m just wondering if you might try to smuggle into this some unique new feature, not something which we&#8217;re already familiar with. You know post types and comments and users. Really that question might go nowhere but I just wondered if there was something innovative that you&#8217;ve got. Really I&#8217;d love to try this.</p>\n\n\n\n<p>[00:32:40] <strong>Scott Kingsley Clark:</strong> So I do have something but it&#8217;s going to be interesting to see if we can make it happen. So the way that this has been focused on has been replacing existing screens that are kind of hard coded and all that. But we haven&#8217;t really talked about, what about the block editor? What about React and all those things?</p>\n\n\n\n<p>And the cool part about that is that if you look at the screen, if you go to the block editor right now, you&#8217;re looking at editing a post and you insert a block, like let&#8217;s talk about the paragraph block or even a group block. On the right hand side, if you have it open, the inspector control sidebar there. That allows you to control what the block settings are, on margins and adding extra classes if you want to add them to the block.</p>\n\n\n\n<p>And many different blocks have many different settings. And then also you can click over and if you&#8217;re looking at the post type, or page post type you&#8217;ll see the word post or page up there and there&#8217;s a little kind of a tab, and you click that and then you are looking at the object controls.</p>\n\n\n\n<p>So this controls what is going on with the page or post like attributes for the parent, or maybe the date, or the many different things like slug and all that. So both of these areas are areas I would love, not really to sneak in, but I want to get buy in from people. I want to find a way to build these screens, these sets of fields and have them extensible through PHP.</p>\n\n\n\n<p>If we can do this in a way with the Fields API where you could register new sections and controls inside of React, it&#8217;s possible. We&#8217;re doing this right now. Pods is doing this, ACF, many other block builders are doing this with their blocks, their own blocks APIs. The way that we&#8217;re doing it right now is too much. It&#8217;s going down the same road of we&#8217;re locking ourselves in.</p>\n\n\n\n<p>I want these sections and these controls to be extensible. I want someone to be able to override stuff. I want someone to be able to add new things to them. I want to add something ahead of it or after it. I don&#8217;t want to have to know any JavaScript to be able to do the bare minimum for basic controls.</p>\n\n\n\n<p>You can still, with the Fields API even, you could still at that point do all the JavaScript or React stuff you want to build up your own custom controls, and the ways that you want them to display, and special handling for how to work with the blocks and all that. But really the bare minimum ought to be the way that we lower the bar towards developers, new people, new developers.</p>\n\n\n\n<p>But especially at this point, PHP is not getting the love it needs as an API source for WordPress, especially with a block editor. We need to expand that. I think there&#8217;s so much potential.</p>\n\n\n\n<p>[00:35:27] <strong>Nathan Wrigley:</strong> Given everything that you&#8217;ve just said, and we&#8217;ve now got a real nice full round picture of what it is that you&#8217;re trying to achieve, are there any significant roadblocks? I mean obviously hours and coding, the amount of time that it&#8217;s going to take you to do all these things, and the amount of people who jump on board the project, that&#8217;s a given. Are there any technical obstacles that are in the way that you foresee being problematic?</p>\n\n\n\n<p>[00:35:52] <strong>Scott Kingsley Clark:</strong> So before, when we built all this stuff in the earlier versions, and I just read, we actually started working on the kind of Fields API idea in 2013. That&#8217;s even earlier than I remember. That was back in Freenode, Freenode IRC stuff.</p>\n\n\n\n<p>I think one of the challenges was when we built all the different screens we had to modify WordPress Core files and override them. And as new versions of WordPress would be released we&#8217;d have to merge those changes into ours. It&#8217;s a headache to keep it up, and keep it updated for every release. And for even maintenance releases to make sure that you&#8217;re not breaking something that was changed or fixed inside of WordPress release, and having it so that my prototype should always work with latest WordPress.</p>\n\n\n\n<p>Well that&#8217;s difficult because latest WordPress is always changing. I think that&#8217;s the challenge is trying to focus not on, like we did before, we had posts, we had terms, we had settings, we had users, we had comments, we had media, we had the customizer. All those different areas were covered.</p>\n\n\n\n<p>We already had those things covered inside of the Fields API code we had before. You could use the Fields API actively to add things to those screens. But that was a lot. That was a lot to deal with. So if we focus on settings, that&#8217;s why I&#8217;m hoping this reduced focus on setting screens will reduce the amount of pain we have to deal with. Because when we&#8217;re merging things we only have to worry about just those settings screens that we&#8217;re overriding for WordPress Core. That&#8217;s it. And we don&#8217;t have to worry about all the different screens and all the different files that we&#8217;ve been overriding.</p>\n\n\n\n<p>[00:37:16] <strong>Nathan Wrigley:</strong> Yeah thank you for that. I mean obviously you would be very warmly welcoming anybody who has listened to this and is intrigued by what you&#8217;ve said and thinks, okay I&#8217;ve got some technical expertise that I could apply to this project. If that&#8217;s the case, where are you hanging out most with this? I&#8217;m guessing the Slack channel is probably a good place to start. But maybe there&#8217;s some other places too.</p>\n\n\n\n<p>[00:37:39] <strong>Scott Kingsley Clark:</strong> I really deeply would love to have more contributors. Anyone who can think about things in different points of view for how a Fields API should be built. Things like someone who&#8217;s involved with other plugins that do this type of thing. It&#8217;s a big plus if you&#8217;ve built a Fields API yourself for one of these plugins.</p>\n\n\n\n<p>It&#8217;s also a big thing to think about you know just someone who&#8217;s not been building those things but maybe someone coming from outside of WordPress, or someone with heavier PHP structure experience. How do we structure the Fields API? And how is that going to look?</p>\n\n\n\n<p>There&#8217;s also plenty of room for people who can help write tutorials, or help us write. I think one of my big deficiencies is having time to write up all the great text that we&#8217;re going to need for make.wordpress.org core posts about how do we describe what we&#8217;re building here, and get people involved and excited?</p>\n\n\n\n<p>What is the proposal going to look like? And how do we lay this out nicely? And those types of things would be also very helpful to have. And you can find all of our efforts inside of Slack right now. So if you go into the WordPress Slack you&#8217;ll find us in the core dash fields channel.</p>\n\n\n\n<p>We also have a GitHub that has been totally revamped from the old ones. We now have two different archive repos from the past versions that we had. And now we have this third repo that we&#8217;re using that is refreshed and ready to go. It already has some more research already in it and we&#8217;re going to start working from that repo now.</p>\n\n\n\n<p>[00:39:03] <strong>Nathan Wrigley:</strong> That&#8217;s perfect. I will make sure to link to those in the show notes. Everything that you&#8217;ve mentioned I&#8217;ll make sure that it gets a link. But it sounds like not just technical people. There&#8217;s also room for people who have skills in, I don&#8217;t know, documentation or something that you&#8217;ve described. So the door is wide open. This feels like really important work. It would be lovely to get this over the wire. To get some more buy in, and more thoughts from different community members.</p>\n\n\n\n<p>So yeah we&#8217;ll round it off there. Scott Kingsley Clark. Thank you so much for chatting to me today. I wish you all the best in getting this into Core in the, well, let&#8217;s say near future.</p>\n\n\n\n<p>[00:39:35] <strong>Scott Kingsley Clark:</strong> I really appreciate you including me and this project in your efforts here to get the word out. I can&#8217;t say how much I&#8217;m excited. I&#8217;m just extremely excited to get this finally pushed up and hopefully emerged into Core. And I am working my behind off this entire month, just to make sure that we can try to get that traction and get it across that finish line.</p>\n\n\n\n<p>[00:39:58] <strong>Nathan Wrigley:</strong> Well very much appreciated, because everything that you do and achieve will certainly make our WordPress lives a lot better. So thank you, Scott. I really appreciate it.</p>\n\n\n\n<p>[00:40:07] <strong>Scott Kingsley Clark:</strong> No problem.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.scottkclark.com/\">Scott Kingsley Clark</a>.</p>\n\n\n\n<p>Scott is a WordPress developer who has been working with WordPress since 2007. He is well-known for his work on the <a href=\"https://pods.io/\">Pods Framework</a>, a popular content and custom fields plugin. Scott&#8217;s goal is to find ways to enhance the WordPress experience, particularly in terms of working with different types of data. He is currently involved in the WordPress Fields API project, which aims to provide a better solution for developers looking to wrangle their data, and that is the focus of the podcast today. As you’ll hear Scott is determined to contribute to the continual growth and improvement of WordPress and try to make the Fields API a reality.</p>\n\n\n\n<p>Scott came from a background using Drupal, which is an alternative CMS. When he first ventured into WordPress, he found certain features were lacking. Things which were baked into Drupal Core were not available in WordPress, a notable example being custom fields.</p>\n\n\n\n<p>We know that WordPress has a myriad of plugins which can take on the burden of creating custom fields, but Scott has concerns about the interoperability of these plugins, and he wants to create a more solid structure within WordPress itself. Wouldn’t it be nice if there were ways for developers to create custom field plugins so that you weren’t locked into one or the other? Scott imagines a future in which you could move from ACF, Metabox, Toolset and more; a future built on top of the Fields API.</p>\n\n\n\n<p>Throughout the conversation, Scott talks about his passion for incorporating the block editor, React, and other technologies into WordPress. He shares insights on controlling block settings, making them extensible through PHP.</p>\n\n\n\n<p>You might know Scott from his work on the popular Pods Framework plugin. This plugin allows users to create custom content types and fields in WordPress, and certainly speaks to his credentials in trying to push the Fields API project forward.</p>\n\n\n\n<p>We talk about what the Fields API might become. The aim is to simplify the process of working with custom fields and content types in WordPress. With the Fields API, Scott hopes to unify the different methods and APIs for managing custom fields, making it easier for developers and non-developers alike to add fields to different screens within WordPress. It’s a complicated undertaking and we get into some of the areas of WordPress which might benefit from this work.</p>\n\n\n\n<p>Scott sheds light on the challenges faced during the development of Fields API, the need for shared storage standards among plugins, and the potential for better integration with the WordPress Admin UI.&nbsp;</p>\n\n\n\n<p>Towards the end of the podcast we talk about the future of the Fields API project and how gaining support from people in the WordPress community will be crucial to its success.</p>\n\n\n\n<p>If you’re interested in how WordPress can be used as a fully featured CMS, this podcast is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://pods.io/\">Pods Framework</a></p>\n\n\n\n<p><a href=\"https://developer.wordpress.org/rest-api/\">REST API documentation</a></p>\n\n\n\n<p><a href=\"https://docs.google.com/spreadsheets/d/1mSqienVYxLopTFGLPK0lGCJst2knKzXDtLQRgwjeBN8/edit#gid=3\">Compare WP &#8211; Plugin Comparison &#8211; Content Types / Custom Fields</a></p>\n\n\n\n<p><a href=\"https://communitysummit.wordcamp.org/2023/\">WordPress Community Summit 2023</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/advanced-custom-fields/\">ACF</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/meta-box/\">Meta Box</a></p>\n\n\n\n<p><a href=\"https://toolset.com/\">Toolset</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/custom-post-type-ui/\">Custom Post Type UI</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 15:10:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Akismet: 25 Ways to Increase Your Online Form Conversion Rates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=236608\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://akismet.com/blog/form-conversion-rate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23794:\"<p>Running a successful website is no small feat. It requires a great deal of hard work, dedication, and knowledge from a team of experts all working symbiotically toward a common goal. There are so many different aspects to consider — from designing the perfect user experience to maintaining an effective web hosting infrastructure.</p>\n\n\n\n<p>But one of the most critical aspects that can make or break success is the conversion rate of your forms. Your form conversion rate is the percentage of visitors who successfully complete a form on your website. The higher this rate, the more successful your site will be at generating new leads, sales, and other desired outcomes.</p>\n\n\n\n<p>Whether it&#8217;s a contact form, a <a href=\"https://akismet.com/blog/how-to-enable-or-disable-user-registration-in-wordpress/\">sign-up form</a>, or a checkout form, the ease and convenience of these for users directly impact business.&nbsp;</p>\n\n\n\n<p>That&#8217;s why, today, we&#8217;ll explore 25 ways to increase your online form conversion rates and, in turn, boost the effectiveness of your website.</p>\n\n\n\n<span id=\"more-236608\"></span>\n\n\n\n<h2 class=\"wp-block-heading\">1. Keep forms short and simple</h2>\n\n\n\n<p>The first rule of thumb, when it comes to increasing your form conversion rate, is to keep your forms short and simple. The less time and effort it takes for a user to complete a form, the more likely they are to do so.</p>\n\n\n\n<p>According to the <a href=\"https://contentsquare.com/insights/digital-experience-benchmark/\">Contentsquare 2023 Digital Experience Benchmark report</a>, the average internet user spends less than 5.6 minutes on a website they&#8217;re actively engaged with. Think reading a blog post or trying to make a purchase.&nbsp;</p>\n\n\n\n<p>At first glance, that seems like a decent amount of time, but when you consider session duration has <a href=\"https://contentsquare.com/blog/average-time-spent-on-websites-is-dropping/\">decreased by 7.5%</a> since 2021, it&#8217;s clear that user behavior indicates less patience.</p>\n\n\n\n<p>And that&#8217;s not a lot of time to capture their attention and get them to fill out a form. By keeping your forms short and straightforward, you&#8217;re making it as easy as possible for users to engage with your site and, ultimately, convert.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image4.png\" alt=\"example of email list signup for WooCommerce\" class=\"wp-image-236610\" />\n\n\n\n<p>Consider only asking for the most essential information. If you&#8217;re collecting leads from potential event sponsors, you really only need the representative&#8217;s name and email. Your sales team may also want you to ask for a phone number, company name, and budget information, but each of these questions will reduce the number of top-of-funnel submissions you receive. So, you’ll have to consider this balance and optimize your forms accordingly.</p>\n\n\n\n<h2 class=\"wp-block-heading\">2. Place your forms above the fold</h2>\n\n\n\n<p>&#8220;Above the fold&#8221; is a term borrowed from the newspaper industry that refers to the upper half of the front page. The term &#8220;above the fold&#8221; in web design is the part of a webpage that’s visible without the need to scroll. Placing your lead generation forms above the fold on their landing page makes them immediately visible to visitors, increasing the likelihood that they&#8217;ll be filled out.</p>\n\n\n\n<p>A <a href=\"https://www.nngroup.com/articles/scrolling-and-attention/\" target=\"_blank\" rel=\"noreferrer noopener\">study by Nielsen Norman Group</a> found that user attention drops dramatically below the fold. By placing your form above, you&#8217;re ensuring that it&#8217;s one of the first things a user sees when they land on your page.</p>\n\n\n\n<p>The goal is to make it as easy as possible for people to convert. By strategically placing your web forms, you&#8217;re removing one more barrier between the user and a conversion.</p>\n\n\n\n<h2 class=\"wp-block-heading\">3. Limit the use of CAPTCHAs</h2>\n\n\n\n<p>CAPTCHAs, those little tests that ask you to identify traffic lights or crosswalks in a series of images, are a common method of <a href=\"https://akismet.com/blog/how-to-stop-contact-form-spam-on-wordpress/\">preventing form spam</a>. However, they can also be a significant barrier to web form completion.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image10.png\" alt=\"example of a CAPTCHA with red spheres\" class=\"wp-image-236611\" />\n\n\n\n<p><a href=\"https://akismet.com/blog/wordpress-captcha/\">CAPTCHAs</a> can be frustrating and time-consuming for users, especially if they&#8217;re difficult to solve. And they can also pose accessibility issues for those with impairments. While CAPTCHAs can be effective at preventing bots from submitting forms, they can also deter legitimate users.</p>\n\n\n\n<p>Instead of relying on CAPTCHAs, consider other methods of spam prevention that are less intrusive and more user-friendly…</p>\n\n\n\n<h2 class=\"wp-block-heading\">4. Use non-intrusive spam protection</h2>\n\n\n\n<p>Non-intrusive spam protection methods can be a great alternative to CAPTCHAs. These methods work behind the scenes to prevent spam without disrupting the user&#8217;s experience.</p>\n\n\n\n<p>For example, the <a href=\"https://akismet.com/features/\">Akismet anti-spam plugin</a> for WordPress sites offers powerful spam protection without the need for CAPTCHAs. It automatically checks and filters out <a href=\"https://akismet.com/blog/how-to-stop-contact-form-spam-on-wordpress/\">spam submissions</a>, allowing you to focus on managing your site.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image1.png\" alt=\"Akismet homepage\" class=\"wp-image-236612\" />\n\n\n\n<p>Through prioritizing non-intrusive spam protection methods, you can improve the user experience and accessibility of your forms, leading to higher conversion rates.</p>\n\n\n\n<h2 class=\"wp-block-heading\">5. Group related fields together</h2>\n\n\n\n<p>Organization is key when it comes to designing user-friendly forms. Grouping related fields together can make your forms easier to navigate and understand, leading to higher completion rates.</p>\n\n\n\n<p>You might wish to group contact information fields (like name, email, and phone number) together, separate from billing information fields (like credit card number, expiration date, and CVV).</p>\n\n\n\n<p>This not only makes your form more visually organized, but it also helps users understand what kind of information is expected in each section.</p>\n\n\n\n<h2 class=\"wp-block-heading\">6. Use clear and descriptive field labels</h2>\n\n\n\n<p>Clear and descriptive field labels are crucial for ensuring that people know exactly what information they need to provide. Ambiguous or confusing labels can lead to errors, frustration, and ultimately, form abandonment.</p>\n\n\n\n<p>For instance, if you&#8217;re asking for a user&#8217;s phone number, specify whether it&#8217;s a home, work, or mobile number.</p>\n\n\n\n<p>If you&#8217;re asking for a date, indicate the format you want it in (e.g., MM/DD/YYYY).</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image3.png\" alt=\"name, email, and date fields grouped together\" class=\"wp-image-236613\" />\n\n\n\n<p>The goal is to make it as easy as possible for users to complete your form. Clear, descriptive labels go a long way towards achieving this and improving your form conversions.</p>\n\n\n\n<h2 class=\"wp-block-heading\">7. Optimize for mobile devices</h2>\n\n\n\n<p>With more than <a href=\"https://www.statista.com/statistics/277125/share-of-website-traffic-coming-from-mobile-devices/\" target=\"_blank\" rel=\"noreferrer noopener\">half of all web traffic</a> now coming from mobile devices, it&#8217;s more important than ever to ensure your forms are mobile-friendly.</p>\n\n\n\n<p>This means performing a series of form optimization tasks, including:</p>\n\n\n\n<ul>\n<li>Making sure your web forms are fully responsive and easy to navigate on smaller screens</li>\n\n\n\n<li>Ensuring fields are large enough to tap</li>\n\n\n\n<li>Making it easy for users to switch between fields</li>\n\n\n\n<li>Avoiding the use of elements that don&#8217;t work well on mobile, like hover tooltips.</li>\n</ul>\n\n\n\n<p>Mobile users are on the go, so they are even less patient than desktop users. By optimizing your forms for mobile, you can make it easier for users to convert and boost your conversion rate.</p>\n\n\n\n<h2 class=\"wp-block-heading\">8. Use progress indicators</h2>\n\n\n\n<p>If your form is long or divided into multiple sections, using progress indicators can be a great way to keep site visitors engaged. Progress indicators show people how far they&#8217;ve come and how much further they have to go to complete the form.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image6.png\" alt=\"form with a progress bar\" class=\"wp-image-236614\" />\n\n\n\n<p>This can be particularly useful for complex forms, like multistep checkout processes or lengthy surveys. When you show users their progress, you&#8217;re giving them a sense of accomplishment and encouraging them to go all the way.</p>\n\n\n\n<h2 class=\"wp-block-heading\">9. Use autofill and auto-suggest features</h2>\n\n\n\n<p>Autofill and auto-suggest features can significantly speed up the form completion process and improve the user experience. These features automatically populate fields with relevant information, saving users time and effort.</p>\n\n\n\n<p>For example, an autofill feature might populate a user&#8217;s address based on their IP location, while an auto-suggest feature might suggest relevant options as someone begins typing into a field.</p>\n\n\n\n<p>When you reduce the amount of typing and decision-making required, these features can make your forms quicker and easier to complete, leading to higher conversion rates.</p>\n\n\n\n<h2 class=\"wp-block-heading\">10. Use inline validation</h2>\n\n\n\n<p>Inline validation involves checking each field for errors as the user fills out the form, rather than waiting until they hit the &#8220;submit&#8221; button. If a user makes a mistake, they&#8217;re immediately alerted and can correct the error on the spot.</p>\n\n\n\n<p>This can prevent frustration and confusion that can occur when a user completes a form, only to be told they&#8217;ve made multiple errors. It also helps users learn as they go, improving the overall experience.</p>\n\n\n\n<h2 class=\"wp-block-heading\">11. Use conditional logic</h2>\n\n\n\n<p>Conditional logic, also known as &#8220;if-this-then-that&#8221; logic, can make your forms more interactive and user-friendly. It involves showing or hiding fields based on the user&#8217;s previous responses.</p>\n\n\n\n<p>So, if someone indicates that they&#8217;re from the United States, you might show a field asking for their state. If they indicate they&#8217;re from another country, that field would be hidden.</p>\n\n\n\n<p>By tailoring your form to each user&#8217;s responses, you can make the form-filling process more relevant and less overwhelming, leading to higher conversion rates.</p>\n\n\n\n<h2 class=\"wp-block-heading\">12. Limit the use of mandatory fields</h2>\n\n\n\n<p>While it&#8217;s important to gather as much relevant information as possible, too many form fields can deter people from completing your form. Try to make fewer form fields mandatory and only require the most essential information.</p>\n\n\n\n<p>If a field isn&#8217;t absolutely necessary, consider making it optional. Users who are in a hurry or who value their privacy will appreciate the option to skip non-essential fields.</p>\n\n\n\n<h2 class=\"wp-block-heading\">13. Use smart defaults</h2>\n\n\n\n<p>Smart defaults involve pre-populating form fields with the most likely response. This can save users time and effort, making your form quicker and easier to complete.</p>\n\n\n\n<p>For example, if most of your site visitors are from the United States, you might set &#8220;United States&#8221; as the default option in the &#8220;Country&#8221; field. Users from other countries can still select their country from the dropdown menu, but U.S. users won&#8217;t have to.</p>\n\n\n\n<h2 class=\"wp-block-heading\">14. Break long forms into multiple pages</h2>\n\n\n\n<p>Long forms can be overwhelming and may deter users from starting. By breaking these forms into smaller, more manageable steps, you can make the form-filling process less daunting and more user-friendly.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image2.png\" alt=\"Page 2 of a multi-step form\" class=\"wp-image-236615\" />\n\n\n\n<p>Multipage forms also give users a sense of progress, which can motivate them to complete the form. Just remember to include a progress indicator, as we already mentioned, so users know how far they&#8217;ve come and how much further they have to go.</p>\n\n\n\n<h2 class=\"wp-block-heading\">15. Ensure accessibility for all users</h2>\n\n\n\n<p>Accessibility should be a priority when designing your forms. This means ensuring that all users, including those with impairments or disabilities, can easily navigate and complete your web forms.</p>\n\n\n\n<p>This might involve using larger text sizes, providing alternative text for images, and ensuring your forms are compatible with screen readers. The <a href=\"https://www.w3.org/WAI/standards-guidelines/wcag/\">Web Content Accessibility Guidelines (WCAG)</a> offers all the details about making web content more accessible.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image5.png\" alt=\"W3C homepage\" class=\"wp-image-236616\" />\n\n\n\n<p>By making your forms accessible, you&#8217;re not only complying with legal requirements and ethical best practices, but you&#8217;re also expanding your user base and increasing your potential conversion rates.</p>\n\n\n\n<h2 class=\"wp-block-heading\">16. Use contrasting colors and clear typography</h2>\n\n\n\n<p>The design of your forms can have a significant impact on their usability and, consequently, your conversion rates. Using contrasting colors can make your forms more visually appealing and easier to read.</p>\n\n\n\n<p>Similarly, clear typography can improve readability and reduce the likelihood of errors. Choose fonts that are easy to read and large enough to be seen on all devices.</p>\n\n\n\n<h2 class=\"wp-block-heading\">17. Eliminate unnecessary distractions</h2>\n\n\n\n<p>When a user is filling out a form, you want their focus to be on the form and nothing else. This means eliminating any unnecessary distractions, like pop-ups, excessive text, or irrelevant images.</p>\n\n\n\n<p>The simpler and more focused your form page is, the more likely people are to complete the form. Remember, the goal is to make it as easy as possible for users to convert.</p>\n\n\n\n<h2 class=\"wp-block-heading\">18. Display trust signals and social proof</h2>\n\n\n\n<p>Trust signals and social proof can significantly increase your form conversion rates by building trust with your potential customers and site visitors. This might involve displaying security badges, testimonials, or the number of satisfied customers you have.</p>\n\n\n\n<p>For example, if you&#8217;re asking for sensitive information like credit card details, displaying a security badge can reassure users that their information will be safe.</p>\n\n\n\n<p>Similarly, testimonials can show people that others have had positive experiences with your company.</p>\n\n\n\n<p>On the Akismet homepage, there’s a prominent display of how many pieces of spam have been blocked, how many websites have been protected, and the spam detection accuracy.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image9.png\" alt=\"amount of spam blocked by Akismet\" class=\"wp-image-236617\" />\n\n\n\n<h2 class=\"wp-block-heading\">19. Clearly state your privacy policy</h2>\n\n\n\n<p>In an era where data privacy is a major concern, you need to clearly state your privacy policy on your forms. Let visitors know exactly how their information will be used and stored. This transparency can build trust and increase the likelihood of people completing your form.</p>\n\n\n\n<p>Consider adding a link to your full privacy policy for those who want more detailed information. Also, reassure users that their information will not be shared with third parties without their consent.</p>\n\n\n\n<h2 class=\"wp-block-heading\">20. Provide instructions and help text</h2>\n\n\n\n<p>While your form should be intuitive and easy to understand, providing additional instructions and help text can guide users through the process and prevent errors. This can be particularly useful for complex fields that require specific formats or information.</p>\n\n\n\n<p>Help text should be concise and clearly visible, ideally placed directly under the field it refers to. Providing this extra guidance can improve the user experience and increase form completion rates.</p>\n\n\n\n<h2 class=\"wp-block-heading\">21. Offer live chat assistance</h2>\n\n\n\n<p>Offering live chat assistance can provide immediate help to users who are having trouble with your form. This real-time support can resolve issues quickly, preventing them from abandoning the form out of frustration.</p>\n\n\n\n<p>Live chat can also provide valuable insights into common issues or obstacles, allowing you to continually improve your form based on feedback.</p>\n\n\n\n<h2 class=\"wp-block-heading\">22. Use action-oriented submit buttons</h2>\n\n\n\n<p>The text on your submit button can influence whether users complete your form. Just as you work to refine your call to action copy in other areas, you should pay careful attention to the language used on form buttons. Instead of using a generic term like &#8220;Submit,&#8221; consider a more action-oriented and specific term that tells users what they&#8217;re accomplishing by clicking the button.</p>\n\n\n\n<p>For instance, if your form is for a newsletter sign-up, your button call to action might say &#8220;Join our community.&#8221;&nbsp;</p>\n\n\n\n<p>Or, if it&#8217;s a purchase form, it might say &#8220;Complete my purchase.&#8221; This small tweak can make your form more engaging and motivate users to take action.</p>\n\n\n\n<p>Another example is on the Akismet checkout form, which confirms how much a customer will pay:</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image7.png\" alt=\"Akismet checkout form\" class=\"wp-image-236618\" />\n\n\n\n<h2 class=\"wp-block-heading\">23. Make your buttons stand out</h2>\n\n\n\n<p>The design of your submit button can significantly increase conversions on your forms. Your button should stand out from the rest of the form, making it clear where someone needs to click to submit the form.</p>\n\n\n\n<p>Consider using a contrasting color for your button and placing it in a prominent location. The size of the button also matters — it should be large enough to be easily tapped on a mobile device, but not so large that it overwhelms the rest of the form.</p>\n\n\n\n<h2 class=\"wp-block-heading\">24. Use friendly and descriptive error messages</h2>\n\n\n\n<p>Error messages matter a great deal in form design as well. They guide users in correcting mistakes, but if they&#8217;re not handled well, they can frustrate users and lead to form abandonment.</p>\n\n\n\n<p>Ensure that your error messages are friendly, descriptive, and helpful. Instead of simply saying &#8220;Invalid input,&#8221; explain what the error is and how to fix it.</p>\n\n\n\n<p>For example, &#8220;The email address you entered is not in the correct format. Please enter a valid email address.&#8221;</p>\n\n\n\n<h2 class=\"wp-block-heading\">25. A/B test form elements</h2>\n\n\n\n<p>Finally, one of the most effective ways to increase your form conversion rates is to continually test and optimize your forms. A/B testing involves creating two versions of your form, each with a different element, and seeing which one performs better.</p>\n\n\n\n<p>You can A/B test almost any aspect of your form, from the color of your submission button to the wording of your field labels. There are several WordPress plugins that can help you A/B test your forms easily, like <a href=\"https://wordpress.org/plugins/nelio-ab-testing/\" target=\"_blank\" rel=\"noreferrer noopener\">Nelio A/B Testing</a>.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image8.png\" alt=\"Nelio Testing homepage\" class=\"wp-image-236619\" />\n\n\n\n<h2 class=\"wp-block-heading\">Increase your online form conversion rate with careful planning</h2>\n\n\n\n<p>Increasing the conversion rates of your sign up form, lead generation forms or other web forms is a multifaceted process that involves thoughtful design, user-friendly features, and continuous optimization. By implementing the strategies discussed in this article, you can create a web form that not only provides a seamless user experience but also effectively drives conversions.</p>\n\n\n\n<p>One key aspect of this process is ensuring your forms are protected from spam in a non-intrusive way. That&#8217;s where Akismet has a role to play. With its robust, <a href=\"https://akismet.com/pricing/\">conversion-friendly spam protection</a>, Akismet allows you to maintain the integrity of your forms and protect the user experience — without the need for CAPTCHA.</p>\n\n\n\n<p>So, as you work on optimizing all the forms on your site, consider Akismet as your partner in creating a more secure, user-friendly, and conversion-optimized form experience.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions</h2>\n\n\n\n<p>Let&#8217;s now turn our attention to some frequently asked questions about form design and conversion rate optimization.</p>\n\n\n\n<h3 class=\"wp-block-heading\">1. How do I decide which form fields are essential and which can be removed?</h3>\n\n\n\n<p>Deciding which form fields are essential depends on the purpose of your web form. While it’s best to limit required fields, If it&#8217;s a contact form conversion rate you’re working on, for example, you&#8217;ll likely still need fields for the user&#8217;s name, email address, and message .</p>\n\n\n\n<p>Any additional fields should be carefully considered. Ask yourself if the information is necessary to achieve the purpose of the form. If not, it might be best to remove the field to keep the form short and simple.</p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Why should I avoid using CAPTCHA on my contact forms?</h3>\n\n\n\n<p>While CAPTCHA can be effective at preventing spam, it can also deter legitimate users. CAPTCHAs can be frustrating and time-consuming, especially if they&#8217;re difficult to solve. They can also pose accessibility issues for users with impairments. Instead, consider using non-intrusive spam protection methods, like Akismet, that provide a better user experience.</p>\n\n\n\n<h3 class=\"wp-block-heading\">3. What is Akismet, and how can it help with form conversion rates?</h3>\n\n\n\n<p><a href=\"https://akismet.com/\">Akismet</a> is an anti-spam plugin for WordPress sites. It automatically checks and filters out spam comments, allowing you to focus on managing your site. By preventing spam without the need for CAPTCHAs or other intrusive methods, Akismet can improve the user experience and increase form conversion rates.</p>\n\n\n\n<h3 class=\"wp-block-heading\">4. What types of companies generally use Akismet?</h3>\n\n\n\n<p>Akismet is used by a wide range of companies, from small businesses to <a href=\"https://akismet.com/enterprise/\">large enterprises</a>. It&#8217;s particularly popular among companies that rely heavily on their online presence, such as ecommerce businesses and content creators.&nbsp;</p>\n\n\n\n<p>With over 100 million sites using Akismet, it&#8217;s clear that this tool is trusted by many. Notable enterprise brands such as Microsoft, <a href=\"https://akismet.com/blog/convertkit-customerstory/\">ConvertKit</a>, and Bluehost rely on Akismet to protect their sites from spam and improve their user experience.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Kathryn Marr\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Do The Woo Community: Live From WCUS, It’s the Robbie and Robert Show\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76369\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://dothewoo.io/live-from-wcus-its-the-robbie-and-robert-show/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:416:\"<p>It\'s filled with laughs, insights and simply good times when co-hosts Robbie and Robert take over the mics at WCUS 2023.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/live-from-wcus-its-the-robbie-and-robert-show/\">Live From WCUS, It&#8217;s the Robbie and Robert Show</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"HeroPress: WordPress Is My Ball And Chain\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=5792\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://heropress.com/essays/wordpress-is-my-ball-and-chain/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-is-my-ball-and-chain\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9056:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/09/essay-cover-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"WordPress, and its inclusive community, led me down a path of redemption and acceptance.\" />\nHere is Justin&#8217;s story read aloud by artificial intelligence.\n\n\n\n\n\n\n<p>This month marks the 22nd anniversary of the terrorist attacked on the World Trade Center in the United States. I can still remember exactly where I was that morning, as I had an argument with my girlfriend the night before, and was sleeping on the couch of someone with whom I used drugs.</p>\n\n\n\n<p>It had only been four months since graduating high school, but I was already an addict. As a matter of fact, I was using drugs heavily at the end of my senior year, and the first summer after high school is when my life really started to spiral out of control.</p>\n\n\n\n<p>By the end of 2001 I was selling any drug I could get my hands on to make some money and feed my addiction (except heroin — that is always were I drew the line). Within a couple years I was the goto person for many substances, but primarily methamphetamine.</p>\n\n\n\n<p>Then I got caught, arrested, and thrown in jail. The prosecutor wanted to throw the book at me, recommending a 15 year sentence. But with my family supporting me in the courtroom and my lawyer fighting for me, the judge recognized that with this support, I did not deserve the full 15, and gave me 7 years, with 8 years probation instead. With good behavior, I did just under 3 years in prison.</p>\n\n\n\n<p>While in prison, I focused on my restoration. Learning new things, studying for certification in motor vehicle mechanics, and even starting work with accredited college courses funded by my tribe (Comanche Nation).</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p> I knew I had let down my family, and had something to prove.</p>\n</blockquote>\n\n\n\n<p>Through it all, my addiction, prison, and restoration, my family was always there for me. They knew the real me, not the person addicted to drugs and not the dealer feeding his addiction by providing for other addicts. That’s the person I know I needed to be again, for both myself and for them.</p>\n\n\n\n<p>Right after my release in January 2008, I immediately started working in a warehouse and attending college. At the company where I worked, the CEO gave me some excellent advice that I needed to control my narrative on the web (e.g. Google), so I built my first website using WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-pivoting\">Pivoting</h2>\n\n\n\n<p>At a young age, I was always fascinated by technology. I remember dabbling with computers in grade school, and tinkering on the internet in my teens. While I never did any kind of coding back then, the marketing aspect of web technologies did pique my interest. Then, drugs pulled me away from all that and sent me down a different path.</p>\n\n\n\n<p>When I found WordPress around April of 2008, all of that excitement started to come back. I would work my warehouse job during the day, drive to University of Central Oklahoma in the evening for a couple of college courses, then play around with WordPress themes (HTML, CSS, and some PHP) well into the night all that summer. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>This was the beginning of my love for WordPress. I was instantly addicted, and simply could not put down my computer, often getting little sleep before the next day (that’s okay, I was in my early 20s <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f609.png\" alt=\"😉\" class=\"wp-smiley\" /> ).</p>\n</blockquote>\n\n\n\n<p>By late 2010, I was taking on WordPress side projects, building websites, and even making online tutorials about WordPress. All this despite still working in the warehouse and taking night courses at college.</p>\n\n\n\n<p>In 2011, my work caught the eye of <a href=\"https://corymiller.com/\">Cory Miller</a>, who I had previously met at a marketing event in Oklahoma City. Cory owned and operated <a href=\"https://ithemes.com/\">iThemes</a>, a WordPress theme and plugin product company based out of Edmond Oklahoma. Although I was still working in the warehouse and taking college courses, Cory offered me a job working at iThemes as a web developer for WordPress themes and plugins. My major in college was marketing, and I still has a few more courses to complete before graduating, but I took the offer anyway and little did I know it was the beginning of a career in software development that led me where I am today.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-and-then-wordcamp\">And Then WordCamp&#8230;</h2>\n\n\n\n<p>My first WordCamp to both attend and speak was Fayetteville in 2011. That’s actually when I first met <a href=\"https://josepha.blog/\">Josepha Haden Chomphosy</a> (along with her <a href=\"https://heropress.com/essays/wordpress-tool-success/\">mother</a> and sister too). Of course, we went different ways in life but it is a marker that I like to remember as it helps me understand the different paths each of us take in this world. While I only spoke at a few other WordCamps, I attended many more over the years. The WordPress community, and its inclusiveness, was simply impossible for me to ignore.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I know my experiences are different, and to understand this I also have to mention that I joined a few other communities through the years, but none ever fully accepted me, and one even did not let me keep coming when they found out I was a former convict.</p>\n</blockquote>\n\n\n\n<p>Although most people in the WordPress community never knew about my past, I never felt they would kick me out even if they did find out. Actually, I felt the community leaders honestly didn’t care at all about your past, culture, identity, etc., but rather just wanted you to love (or at least like) WordPress.</p>\n\n\n\n<p>And I did love WordPress. Still do.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Redemption and Acceptance</h2>\n\n\n\n<p>WordPress unexpectedly led me down a path of redemption and acceptance. For a long time I was angry at the world (especially corporate America) for not accepting me, and in those times of anger I would seek out WordPress people. No one even knew, but they were helping me nonetheless, always there when I needed, always a shiny light in the darkness.</p>\n\n\n\n<p>I’ve traveled the world with WordPress. Making WordPress friends in Asia, Australia, Europe, North &amp; South America and beyond. I love the WordPress community, and want to continue watching it flourish and grow. Every time I visit a WordCamp, I get to make new friends, see new faces, and meet awesome people of WordPress. I was able to build meaningful business and personal relationships, joining WordPress communities, attending and hosting WordPress events, and even speaking at several WordCamps across the World.</p>\n\n\n\n<p>Most of the WordPress companies for which I have worked had such amazing leaders, knowing about my past yet still giving me the opportunity to continue to demonstrate my new self. Two of which deserve an honorable mention: Cory Miller of Post Status (formerly iThemes) and <a href=\"https://10up.com/blog/author/10up/\">Jake Goldman</a> of <a href=\"https://10up.com/\">10up</a>. Both of these leaders embraced me wholly, and the things Jake said to when I mentioned my criminal past before my background check continue to give me confidence in knowing there are amazing leaders working in WordPress.</p>\n\n\n\n<p>The WordPress Community has proven itself to be more than just a platform for a tool. In my personal journey, I discovered that it represents a beacon of hope, a testament to what can be achieved when diverse minds come together under the banner of openness and collaboration. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Albeit unknowingly, this community handed me a new lease on life, providing me with opportunities to learn, grow, and reinvent myself.</p>\n</blockquote>\n\n\n\n<p>Its core values of openness and inclusiveness aren&#8217;t just buzzwords but are deeply rooted in the ethos of every member who contributes, either by writing code, designing themes, or even just by sharing experiences. It&#8217;s a reminder that every individual, irrespective of their background or skillset, has the potential to add value to this thriving ecosystem. As beneficiaries of this incredible community, it falls upon us to ensure that we not only appreciate these values but also embody them. We must commit to fostering an environment where every decision we make, every action we undertake, further deepens the culture of inclusivity and collaboration.</p>\n\n\n\n<p>Thank you WordPress, and the WordPress Community. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2764.png\" alt=\"❤\" class=\"wp-smiley\" /></p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-is-my-ball-and-chain/\">WordPress Is My Ball And Chain</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 12:26:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Justin Kopepasah\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:136:\"WPTavern: WooCommerce Blocks 11.0.0 Adds Product Collection Block in Beta, 10.9.0 Integrates Product Button with the Interactivity API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148515\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"https://wptavern.com/woocommerce-blocks-11-0-0-adds-product-collection-block-in-beta-10-9-0-integrates-product-button-with-the-interactivity-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4015:\"<p>WooCommerce is experimenting with improving the store experience through the <a href=\"https://github.com/woocommerce/woocommerce-blocks/issues/8219\">addition of the Interactivity API</a> to the WooCommerce Blocks plugin. The new API, which was announced earlier this year, will allow developers to build interactive blocks that support frontend experiences where visitors can interact with content without having to refresh the page. The WordPress contributors working on the API are <a href=\"https://wptavern.com/start-testing-wordpress-new-interactivity-api\">encouraging developers to test it</a> with their own blocks.</p>\n\n\n\n<p><a href=\"https://developer.woocommerce.com/2023/08/16/woocommerce-blocks-10-9-0-release-notes/?mc_cid=b50d0ff43c&mc_eid=68ffa9a210\">WooCommerce Blocks 10.9.0</a>, released in mid-August, integrated the Product Button with the Interactivity API to support real-time counter updates for the mini-cart, smoother animations, and better transitions from ‘Add to Cart’ to ‘Loading’ status to show the quantity in the cart when a product is added. </p>\n\n\n\nWooCommerce Blocks <a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/10006\">PR #10006</a>\n\n\n\n<p>The difference is subtle but creates a much smoother shopping experience with nearly instantaneous feedback for the user. Contributors are also exploring how the Interactivity API can be used to improve frontend filters, including the rating, price, stock, and attributes filters. The API will eventually land in Gutenberg and WordPress in the future, but in the meantime WooCommerce is experimenting to see how the plugin&#8217;s blocks can benefit from it.</p>\n\n\n\n<p><a href=\"https://developer.woocommerce.com/2023/08/31/woocommerce-blocks-11-0-0-release-notes/\">Version 11.0.0</a> was released last week introducing the new Product Collection block in beta:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Like the Products block, you can choose what criteria affect the list of blocks displayed to shoppers and control the product layout in the list/grid by the various element blocks.</p>\n\n\n\n<p>Unlike the Products block, which is a Query loop block variation, this block is a standalone block, enabling us to tailor the block further to better meet the merchant’s needs.</p>\n</blockquote>\n\n\n\n<p>The Product Collection block is very similar to the Products block from which it was forked, except it is not built as a variation of the Query Loop. It comes with improvements around Inspector controls as compared to the current Products block, as well as a basic set of patterns. The block already has the <a href=\"https://github.com/woocommerce/woocommerce-blocks/issues/10328\">Interactivity API integrated</a> for the same improved frontend performance.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2047\" height=\"1584\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/product-collection.webp\" alt=\"\" class=\"wp-image-148556\" />Product Collection block &#8211; image source: <a href=\"https://developer.woocommerce.com/2023/08/31/woocommerce-blocks-11-0-0-release-notes/\">WooCommerce Blocks 11.0.0 release post</a>\n\n\n\n<p>Version 11.0.0 also enables manual migration of Products to Product Collection. An upgrade notice will appear in the Inspector Controls, informing users that they will get more features with the Product Collection block:</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"500\" height=\"466\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/products-update-to-product-collection-500x466.png\" alt=\"\" class=\"wp-image-148557\" />\n\n\n\n<p>As the Product Collection block is still in beta, WooCommerce Blocks has not yet changed existing templates that have Product blocks. The development team is looking for more feedback on this block before moving it out of beta. Check out the <a href=\"https://developer.woocommerce.com/2023/08/31/woocommerce-blocks-11-0-0-release-notes/\">release post</a> for more enhancements and bug fixes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 03:59:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WPTavern: Human Made to Host “AI: The Next Chapter” Virtual Conference on September 14, 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148507\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wptavern.com/human-made-to-host-ai-the-next-chapter-virtual-conference-on-september-14-2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3753:\"<p>Human Made, a leading enterprise WordPress agency, is organizing a followup event to the community&#8217;s first ever <a href=\"https://wptavern.com/human-made-to-host-ai-for-wordpress-event-may-25-2023\">AI for WordPress</a> virtual conference that it hosted in May 2023. The second edition is called &#8220;<a href=\"https://hello.humanmade.com/ai-the-next-chapter\">AI: The Next Chapter</a>&#8221; and will take place online on September 14, 2023, at 10AM EST.</p>\n\n\n\n<p>The first event had 13 speakers and drew more than 600 attendees. It focused on WordPress and AI tools that people are building with the emerging technology. (Videos of all the sessions are <a href=\"https://www.youtube.com/playlist?list=PL1H81eN4d97iRNVivTvkWBdEr_3YTzZLc\">available on YouTube</a>.) This next edition will explore some of the wider societal, ethical, and tech issues related to the subject. </p>\n\n\n\n<p>The keynote and intro will feature Matt Mullenweg on &#8220;AI and the future of WordPress,&#8221; along with Human Made CEO Tom Willmot. Dr. Eleanor Drage, a senior research fellow at the University of Cambridge and co-host of The Good Robot podcast, will be speaking about AI and gender. Open source LLM researchers from Georgian will also join for a panel discussion on why they believe open source AI is the best way for companies to leverage this technology.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1956\" height=\"1310\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-05-at-5.44.14-PM.png\" alt=\"\" class=\"wp-image-148538\" />\n\n\n\n<p><a href=\"https://hello.humanmade.com/ai-the-next-chapter\">Registration</a> is free and participants can sign up on the event&#8217;s website. A confirmation email is sent out to registrants and more information will follow via email.</p>\n\n\n\n<p>Human Made has developed a keen interest in fostering exploratory dialogue through these events, as the company is working on AI products and <a href=\"https://humanmade.com/ai-for-wordpress/\">custom implementations for clients</a>. At the first event, the agency showcased some early work in the <a href=\"https://www.altis-dxp.com/accelerate/\">Altis Accelerate</a> plugin and have been working with clients to determine how AI can augment existing marketing and editorial workflows. </p>\n\n\n\n<p>&#8220;The progress and innovation we’re seeing in AI is so rapid at the moment that it kind of demands you stay close to it, keep following what’s happening, and keep learning,&#8221; Human Made Marketing Director Alex Aspinall said. &#8220;AI is one of our core areas of focus, across all parts of the business, so we’ll definitely be building, sharing, and hosting more in the space in the months to come. Doing all this in the open is really important to us, so the events are a great platform.&#8221;</p>\n\n\n\n<p>During the first event, Aspinall reports that Human Made saw registrations and participation across a wide range of business verticals and role disciplines, with conversations continuing months after the first event. <br /><br />&#8220;While there are a few businesses and individuals building things, experimenting, and commercializing their work in the area, the vast majority are still finding their way through, figuring out how best to implement AI to deliver tangible benefit to their companies, their clients, their teams, and their day-to-day lives,&#8221; Aspinall said.<br /><br />&#8220;Despite the level of advancement we’ve already seen, we’re still right at the start of this thing, which is really exciting. There’s a lot to learn, and considerable edge available for those experimenting and putting things in place. Imagine what we’ll be talking about this time next year!&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Sep 2023 22:09:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Do The Woo Community: WordCamp US, the First Recap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76362\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://dothewoo.io/wordcamp-us-the-first-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:362:\"<p>BobWP and some attendees share a few highlights of WordCamp US 2023 as well as some WordPress origin stories.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wordcamp-us-the-first-recap/\">WordCamp US, the First Recap</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Sep 2023 13:23:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Matt: Techcrunch with Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=96577\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://ma.tt/2023/09/techcrunch-with-gutenberg/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:245:\"<p>Jamie Marsland has this great YouTube video where he rebuilds <a href=\"https://techcrunch.com/\">TechCrunch.com</a> just using core blocks in WordPress 6.3 in 30 minutes. Worth checking out!</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Sep 2023 06:59:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=96532\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"https://ma.tt/2023/09/fear/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:358:\"<p>Zeynep Tufekci has a great article, <a href=\"https://www.nytimes.com/2023/09/03/opinion/columnists/burning-man-rain-mud.html\">One Thing Not to Fear at Burning Man</a>, that covers well what I have experienced as well growing up in Houston through hurricanes and other natural disasters—that in times of need people help each other in ingenious ways.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Sep 2023 21:18:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WordPress.org blog: WP Briefing: Episode 61: Community, Summit, all at  Washington D.C.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=15911\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wordpress.org/news/2023/09/episode-61-community-summit-all-at-washington-d-c/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17592:\"<p>Join WordPress Executive Director Josepha Haden Chomphosy as she discusses the latest from the Community Summit and her takeaways from the 2023 event in Washington, D.C.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br />Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo: <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production: <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br />Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li>The 2023 <a href=\"https://communitysummit.wordcamp.org/2023/\">Community Summit</a> in Washington, DC</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/02/episode-49-everything-you-need-to-know-about-the-community-summit/\">WP Briefing Episode 49</a>: Everything You Need to Know About the Community Summit!</li>\n\n\n\n<li><a href=\"https://href.li/?https://make.wordpress.org/community/2023/05/08/the-next-generation-of-wordcamps/\">The Next Generation of WordCamps</a></li>\n\n\n\n<li><a href=\"https://href.li/?https://make.wordpress.org/community/2023/05/24/idea-generation-next-gen-wordcamps/\">Idea generation: Next Gen WordCamps!</a></li>\n\n\n\n<li><a href=\"https://pressnomics.com/\">PressNomics</a></li>\n\n\n\n<li><a href=\"https://loopconf.io/\">LoopConf</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/\">WordPress Community Summit</a></li>\n\n\n\n<li><strong>A small list of big things</strong>\n<ul>\n<li><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/community/2023/08/23/call-for-ideas-new-features-for-our-nexgen-wp-events-central-page/\" target=\"_blank\">Call for ideas: new features for our NexGen WP events central page</a>&nbsp;&#8211; Open call for ideas to find the most desirable features for a future homepage that would host a list of all NextGen WordPress events. </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Introducing Twenty Twenty-Four</a>&nbsp;&#8211; Announced at Contributor Day, this new theme will be part of the 6.4 release. </li>\n\n\n\n<li>With the release of 6.3 behind us,&nbsp;<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/6-4/\" target=\"_blank\">we are working hard on bringing 6.4</a>&nbsp;to the community. You can get involved with the development of this important release. </li>\n\n\n\n<li>A successful WCUS is behind us, and if you missed the event, we have you covered. <a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">Here is a recap of the event</a>.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-15911\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong>&nbsp;Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro Music)&nbsp;</p>\n\n\n\n<p>[00:00:39] <strong>Josepha:</strong>&nbsp;We are back and catching up from our midyear break. And in true WordPress fashion, we&#8217;re just going to start off running. The WordPress Community Summit happened a couple of weeks ago. I&#8217;ve been talking about it on this podcast for a few months now, but if you&#8217;ve missed it and you want a refresher, go ahead and give episode 49 a listen.</p>\n\n\n\n<p>At the Community Summit, there were 125 people, if I remember correctly. And we covered a wide array of topics that were brought to us directly from the community itself. While the event is small, it is specifically designed for gathering and sharing information. So, I&#8217;ve got some top-level trends that I noticed that I&#8217;m going to share with you all today, as well as just like a reminder of what happens after a Community Summit.</p>\n\n\n\n<p>[00:01:27] <strong>Josepha:</strong>&nbsp;So there are three, maybe four, big trends that I noticed. The first one that I noticed is that we have a lot of discussions right now about contributor acknowledgment. That also, for what it&#8217;s worth, came with an unresolved question around whether acknowledgment and recognition are the same. I don&#8217;t think they are the same.</p>\n\n\n\n<p>But it also was part of a conversation around whether we treat those two things the same. And if they are not the same, should we treat them differently? And et cetera, et cetera, et cetera. For folks who&#8217;ve been around for a bit, you know, that we spent a lot of time working on our contributor recognition a few years back and had really made quite a bit of difference in just reported feelings about how the community felt they were being recognized for their contributions.</p>\n\n\n\n<p>And so a lot of the conversations that we ended up having were around whether or not the project as a whole has changed the way that we provide that recognition or acknowledgment. Or, as an alternative, if the community that is supporting WordPress has changed how they would like to be recognized.</p>\n\n\n\n<p>[00:02:32] <strong>Josepha:</strong>&nbsp;There were also some questions about whether or not making sure that contributors can see their impact. Like they can say, I contributed 10 hours last month, and these are the two things that I got accomplished over there, and that everyone else can see those things too. So, how we can do that more easily while also not having so many metrics and making the metrics so prevalent that we start to close out the people who are truly just doing this for fun.</p>\n\n\n\n<p>Like many of the problems that we have at the Community Summit, this is a bunch of pretty much unsolved mysteries at the moment. But it did; it came up across probably five or six different sessions that I heard about, quite a few that I went to myself, and so contributor acknowledgment and recognition is on our minds again.</p>\n\n\n\n<p>A second thing that I noticed across multiple sessions, and this one honestly is not a surprise at all, is that there were a lot of questions about what the next big thing is after Gutenberg. I always love when people are asking big questions about what comes next because it means that we all still believe that there will be a next.</p>\n\n\n\n<p>[00:03:43] <strong>Josepha:</strong>&nbsp;And so I never hesitate when I hear these questions to give some ideas about what I think might be coming. But a lot of the discussions that we were having were around, we think this is coming, but now that we think this is coming, what should we do now to make sure that we are ready for it? One of the biggest assumptions that we all had is that for the CMS, for the software itself, probably our next big area after Gutenberg is going to be something about artificial intelligence.</p>\n\n\n\n<p>Matt pointed out in his presentation that he has told us twice to learn something deeply. One was in 2016 when he said, learn JavaScript Deeply. And then one was in 2022 when he said to learn AI deeply. And so we all kind of are guessing that that is our future area. And so that&#8217;s an area for everyone to spend some time in. Make sure you understand it. Make sure you know it a bit.&nbsp;</p>\n\n\n\n<p>The second thing that came up as like a future, where are we going here? It was kind of on the business-y side. It was on a lot of questions about enterprise and are we selling properly to enterprise. Can we sell, can we appeal to enterprise? Whose job is it to sell any of these things? Questions like that. So, lots of business questions again. This is not something that I have any concerns about. I&#8217;m very excited to see that people are talking about it. That&#8217;s been a topic of conversation since, I want to say, February of this year. And so it also wasn&#8217;t a surprise inclusion today. And, and I was excited to see, am excited to see what we get out of those conversations over time.&nbsp;</p>\n\n\n\n<p>[00:05:17] <strong>Josepha:</strong>&nbsp;As far as like questions around what&#8217;s next for the community, I&#8217;m going to address that separately because it was a huge question for everyone. So I&#8217;m going to discuss that as soon as we get finished with this chunk about like the big thing that, that is coming after Gutenberg.</p>\n\n\n\n<p>But, from an ecosystem perspective. Like a WordPress project operations perspective, this came up a couple of times. Never in as clear a word, a set of words as that, but the question about, like, what are we doing with our tools? Are we making sure that we are keeping the tools that our contributors use maintained and still in an excellent space with features that are useful and, necessary, and requested?</p>\n\n\n\n<p>And so that is a big question. I do have a lot of questions about that. Also, there are so many tools that I have wanted in order to make organizing the WordPress community better and easier, but also making contributing better and easier. And hopefully, here soon, we have an opportunity to get to some of those.</p>\n\n\n\n<p>[00:06:16] <strong>Josepha:</strong>&nbsp;So, the third big trend that I kept seeing at the Community Summit is actually about the community itself, specifically about events. So I was part of or listened to many, many, many conversations over the course of the week that were specifically focused on what we&#8217;re going to do with the future of our events. Like are meetups still sustainable? Are WordCamps still sustainable? And that&#8217;s from not only the idea of sustainability that we all tend to know from like an ecological standpoint but also, you know, checking in on the resources. So the kinds of questions that folks had were, is it time to continue having many small events, or is it time to move to a few giant events?</p>\n\n\n\n<p>Should we bring back midsized, WP-adjacent events like PressNomics or LoopConf? And if we are bringing those back, do we want to have them be part of a semi-official thing along with a clearly WordPress event and like do joint sales in there? Try to figure out how to get people from one to the other, so that it&#8217;s not just WordPress people that we&#8217;re talking to, but also business people and advanced developers, things like that.</p>\n\n\n\n<p>There was also a lot of discussion about whether or not we have gotten too big, should we double down on our grassroots efforts? Just go all the way back to, like, BarCamp style, WordPress in a forest kind of thing.&nbsp;</p>\n\n\n\n<p>[00:07:46] <strong>Josepha:</strong>&nbsp;And yeah, and among all of these conversations, there were questions about the resources that we need. Do we have what we need now? Do we have plans for how to maintain those resources in the future? Do we have enough time? Do we have enough money? Do we have an expertise? The people? So many questions, so many questions. And on the community side of things, we also had a lot of questions that are routine in open source. Like, do we have a pipeline for future maintainers, for future team reps, for future leaders in the project? All of the questions.&nbsp;</p>\n\n\n\n<p>So, those are the three slash four, depending on how you break it out, really big trends that I saw across the conversation at the Community Summit. And I don&#8217;t necessarily know the answers to all of these things. Like, I know what my gut tells me, I know what I believe the answer to be. From my own perspective, but as you&#8217;ve been told many times with many eyes, all bugs are shallow. And so here is what happens next with a Community Summit. So we&#8217;ve gathered all of these things together. We&#8217;ve had these conversations, and now all of the notes from every conversation that we had will be put on make.wordpress.org/summit.&nbsp;</p>\n\n\n\n<p>[00:09:10] <strong>Josepha:</strong>&nbsp;There, you can do any of the following three things, but at least do one before we get any further. I think it&#8217;s important to remind everyone that no decisions were made at the Community Summit. There are a few things that will come out of the Community Summit where the answer the way forward is really obvious. And so those probably will get done quickly thereafter because it&#8217;s just an obvious thing to do. It makes sense for everyone in the project. It makes sense for everyone who&#8217;s using WordPress. Whatever reason.&nbsp;</p>\n\n\n\n<p>So those things will probably move quickly, but mostly not even mostly there were no decisions made. And so if it looks like something is moving quickly there, it is because it makes sense after the fact. So there&#8217;s that. But the three things that you can do in order to take part in this information gathering and sharing that happened at the Community Summit.&nbsp;</p>\n\n\n\n<p>Number one, head over to make.wordpress.org/summit and just read the notes. There are a lot of them you can pick and choose based on the teams you contribute to or the topics that are specifically interesting. Or if you have been assigned to read one of these things, obviously, go ahead and read that. But find the notes read them. Take a look at the discussion as far as you can tell it happened and get a sense for what the essential question is.</p>\n\n\n\n<p>The second thing that you can do while you&#8217;re there is that you can join in that discussion right there in the comments if you would like to. You can, if you feel like your perspective is not quite accounted for in that, obviously leave some comments and let folks know. But also, if you feel like your perspective was accounted for, but there&#8217;s also a very specific question that was not necessarily answered or not even brought up, share those as well. That&#8217;s stuff that we would like to know as we are working through this.&nbsp;</p>\n\n\n\n<p>And then the third thing that you can do is you can take those conversations, and if there&#8217;s anything that looks like it&#8217;s particularly relevant to your local WordPress community, absolutely take those there and have those conversations with them.</p>\n\n\n\n<p>[00:11:23] <strong>Josepha:</strong>&nbsp;And once you&#8217;ve had those conversations, let us know what you thought also in those comments, or take it directly into your weekly teams&#8217; chat, either way. We want to hear what you think about the questions that were brought because you brought them to us. And so you should have an opportunity to tell us what you think.</p>\n\n\n\n<p>[00:11:39] (Music Interlude)&nbsp;</p>\n\n\n\n<p>[00:11:48] <strong>Josepha:</strong>&nbsp;That brings us now to our small list of big things. My friends, there&#8217;s nothing but big things left for the rest of the year. And so here we go. Number one, uh, I mentioned it quite a bit. There&#8217;s a conversation, an ongoing conversation about the future of events for our community. Right now, there is an open call for ideas, new features for our NextGen WordPress events, especially on the page that exists on WordCamp Central.</p>\n\n\n\n<p>So, we want to find the most useful and desirable features for a future homepage on central.wordcamp.org that would host a list of all of our upcoming WordPress events. And so we want your opinion there. Please let us know what would be especially useful to you as you are looking for WordPress events to attend.</p>\n\n\n\n<p>The second thing is that we introduced 2024, the default theme that is coming with WordPress 6.4, was announced. We have had, I think, 32 contributors to it at the time of this recording. And yeah, it&#8217;s beautiful. It&#8217;s got a lot of different implementation options, a lot of default patterns, and curated patterns so that you can get exactly what you want out of that theme. I think it&#8217;s going to make a great default theme, a great starter theme for our final release of the year.&nbsp;</p>\n\n\n\n<p>And then, speaking of 6.4, with the release of 6.3 behind us, we are working hard on bringing 6.4 to the community. You can get involved with the development of that. There is a core chat every Wednesday. It happens. I want to say at 21:00 UTC, but I don&#8217;t actually know off the top of my head. I just go when my calendar tells me to go, and I live in the central time zone. And so, my UTC conversion is not the best, but we will leave the actual information about that in the show notes so that you can see it. But you can also go over to make.wordpress.org, and then there&#8217;s a little card on that homepage that tells you exactly when those core meetings are, including the new contributor meeting, which happens every two weeks.&nbsp;</p>\n\n\n\n<p>And then the fourth thing is that there is a successful WordCamp US behind us. That is our final flagship event of the year, which is always exciting. If you missed it, for one, we missed you. And for two, we have you covered. We&#8217;ve got a recap of the event. There is a link to that in the show notes as well.&nbsp;</p>\n\n\n\n<p>[00:14:05] <strong>Josepha:</strong> And that, my friends, is your small list of big things. Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p>[00:14:15] (Music Outro)&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Sep 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Gutenberg Times: Talks at WordCamp US, Notes from the Community summit. A wishlist, reflections and a preview –Weekend Edition 266\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25401\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"https://gutenbergtimes.com/talks-at-wordcamp-us-notes-from-the-community-summit-a-wishlist-reflections-and-a-preview-weekend-edition-266/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20666:\"<p>Howdy, </p>\n\n\n\n<p>Apart from <a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">The Future of WordPress &amp; What’s Next for Gutenberg</a> with the keynotes by Josepha Haden Chomphosy and Matt Mullenweg, including Q &amp; A, I still haven&#8217;t caught up with the videos from WordCamp US. Below is a list with links to the talks I want to see and hopefully catch up over this weekend. </p>\n\n\n\n<p>Then the <a href=\"https://make.wordpress.org/summit/\">Community Summit discussion notes</a> are also posted, I haven&#8217;t digested any of them yet. This part of my todo-list is also below. </p>\n\n\n\n<p>And I hear you say: Who has time for all this? Well, that is a good question. The project has some great teams, that do outstanding work! And that&#8217;s the underlying reason why I only curate news about the block editor. No one can keep track of it all. 🤣</p>\n\n\n\n<p>And I leave you to the rest of the newsletter. Enjoy, learn and share! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-camp-us-talks\">WordCamp US Gutenberg Talks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#2-community-summit\">Community Summit</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-camp-us-talks\">WordCamp US Gutenberg Talks</h2>\n\n\n\n<p>The full playlist of recorded talks is available on YouTube: <a href=\"https://www.youtube.com/playlist?list=PL4KP0VZtEI8rBpssGbR0E0wcBqeNeGEWT\"><strong>WordCamp US 2023</strong></a></p>\n\n\n\n<p>🎥 <a href=\"https://www.youtube.com/watch?v=ZZq9WBqlKW8\">The Independent Theme Developer’s Field Guide to Modern WordPress</a> with <a href=\"https://us.wordcamp.org/2023/speaker/michelle-schulp-hunt/\">Michelle Schlup Hunt</a> (<a href=\"https://us.wordcamp.org/2023/session/the-independent-theme-developers-field-guide-to-modern-wordpress/\">Session description</a>, <a href=\"https://speakerdeck.com/marktimemedia/field-guide-2023\">slides</a>) </p>\n\n\n\n<p>🎥 <a href=\"https://www.youtube.com/watch?v=9UYzZzb-LaU\"><strong>Building a thoughtful block editing experience</strong></a> with Aurooba Ahmed (<a href=\"https://us.wordcamp.org/2023/session/building-a-thoughtful-block-editing-experience/\">Session description</a>)</p>\n\n\n\n<p>🎥 <strong><a href=\"https://www.youtube.com/watch?v=c0BbXaZqQAo&\">For All Userkind: NASA Web Modernization and WordPress</a></strong> with <a href=\"https://us.wordcamp.org/2023/speaker/abby-bowman/\">Abby Bowman</a><a href=\"https://us.wordcamp.org/2023/speaker/j-j-toothman/\">J.J. Toothman</a> (<a href=\"https://us.wordcamp.org/2023/session/friday-keynote/\">Session description</a>)</p>\n\n\n\n<p>🎥 <strong><a href=\"https://www.youtube.com/watch?v=581pE25vAGQ\">Hands on with NASA’s new digital platform NASA Workshop</a></strong> with <a href=\"https://us.wordcamp.org/2023/speaker/abby-bowman/\">Abby Bowman</a> and <a href=\"https://us.wordcamp.org/2023/speaker/j-j-toothman/\">J.J. Toothman</a> (<a href=\"https://us.wordcamp.org/2023/session/hands-on-with-nasas-new-digital-platform/\">Session description</a>)</p>\n\n\n\n<p>🎥 <strong><a href=\"https://www.youtube.com/watch?v=O8r06QETAlw\">Ford Foundation: Audio Described Video Plugin</a></strong> with <a href=\"https://us.wordcamp.org/2023/speaker/vajaah-e-parker/\">Vajaah E Parker</a><a href=\"https://us.wordcamp.org/2023/speaker/kurtis-shaner/\">Kurtis Shaner</a> (<a href=\"https://us.wordcamp.org/2023/session/ford-foundation-audio-described-video-plugin/\">Session description</a>)</p>\n\n\n\n<p>🎥 <a href=\"https://www.youtube.com/watch?v=bbQNheCHjTk\"><strong>All the President&#8217;s Websites </strong></a>with <a href=\"https://us.wordcamp.org/2023/speaker/andrew-nacin-helen-hou-sandi/\">Andrew Nacin, Helen Hou-Sandí</a></p>\n\n\n\n<p>🎥 <strong><a href=\"https://www.youtube.com/watch?v=8DbEsBzMaWA\">Anatomy of an Accessible Navigation Menu</a></strong> with <a href=\"https://us.wordcamp.org/2023/speaker/steve-jones/\">Steve Jones</a> (<a href=\"https://us.wordcamp.org/2023/session/anatomy-of-an-accessible-navigation-menu/\">session description)</a></p>\n\n\n\n<p>🎥 <a href=\"https://www.youtube.com/watch?v=uehAKO6zwkQ\"><strong>The Headless Block Editor</strong></a> with <a href=\"https://us.wordcamp.org/2023/speaker/sean-blakeley/\">Sean Blakeley</a> (<a href=\"https://us.wordcamp.org/2023/session/the-headless-block-editor/\">session description</a>)</p>\n\n\n\n<p>🎥 <a href=\"https://www.youtube.com/watch?v=gDi7n9XcVKM\"><strong>The Future of WordPress</strong></a> with <a href=\"https://us.wordcamp.org/2023/speaker/josepha-haden-chomphosy/\">Josepha Haden Chomphosy</a> (<a href=\"https://us.wordcamp.org/2023/session/josepha-haden-chomphosy-on-the-future-of-wordpress/\">Session description</a>)</p>\n\n\n\n<p>🎥 <a href=\"https://www.youtube.com/watch?v=yDbASG9KOaE\"><strong>Gutenberg Next</strong> </a>with <a href=\"https://us.wordcamp.org/2023/speaker/matt-mullenweg/\">Matt Mullenweg</a> </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><a href=\"https://github.com/WordPress/gutenberg/releases/tag/v16.6.0-rc.1\"><strong>Gutenberg 16.6 RC</strong></a> is available now for testing, and the stable release is scheduled for September 6th, 2023. I took a peak at the <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v16.6.0-rc.1\">changelog</a> to prepare for the next episode of the Gutenberg Changelog #89 with <strong>Nadia Maya Ardiani</strong> as a special guest. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>🎙️ </strong> Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-89-gutenberg-16-6-font-library-default-theme/\">Gutenberg Changelog #89 – Gutenberg 16.6, default theme and Font Library</a> with Nadia Maya Ardiani  as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"2-community-summit\">Community Summit</h3>\n\n\n\n<p>Below you find a short list of discussion notes from the <strong>Community Summit</strong> directly connected with contributing to core and Gutenberg. When you read notes on the Make Summit blog, keep in mind that two important guidelines governed the Community Summit:  <a href=\"https://make.wordpress.org/summit/2023/08/16/non-attribution/\">no attribution</a> and no decisions. </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/summit/2023/08/23/community-summit-discussion-notes-addressing-backwards-compatibility-in-gutenberg/\">Addressing backwards compatibility in Gutenberg</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/22/community-summit-discussion-notes-aligning-processes-and-contributions-between-wordpress-core-and-gutenberg/\">Aligning processes and contributions between WordPress Core and Gutenberg</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/22/community-summit-discussion-notes-accessibility-in-the-wordpress-project/\">Accessibility in the WordPress Project</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Jamie Marsland</strong> recreated TechCrunch&#8217;s Website in 30 minutes and shows you in <a href=\"https://www.youtube.com/watch?v=RghKQZmYwYI\">this 15-minute video</a> how he did it. <a href=\"https://www.youtube.com/watch?v=RghKQZmYwYI\"><strong>WOW! I rebuilt TechCrunch.com in only 30 mins with WordPress</strong></a>. You&#8217;ll also learn a few things: How to have a sticky header, how to create pro-post layouts, how to change your Global style, how image ratio features work and how to use templates. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/JMartellaWebDev\">Jacob Martella</a> </strong> posted his <a href=\"https://jacobmartella.me/web-development/wordpress/wishlist-for-the-wordpress-site-editor-as-it-heads-to-phase-3/\"><strong>Wishlist for the WordPress Site Editor as it Heads to Phase 3</strong></a>. He explains a few missing items in broad strokes: better responsive controls, more inline options, continued improvement on accessibility and more of the Block Visibility plugin features. The latter is a nice shoutout to <a href=\"https://wordpress.org/plugins/block-visibility/\">Nick Diego&#8217;s plugin </a>that has been available in the plugin repo for three years, and shows 10,000 + active installations. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/karmatosed\">Tammie Lister</a>,</strong> co-tech lead for WordPress 6.4 had thoughts and published them: <strong><a href=\"https://presselements.com/reflections-on-the-admin-design-proposal/\">Reflections on the admin design proposal</a>.</strong> On the way from old to new, it needs opinions, listening, documenting, and considering accessibility and extensibility. Implementation of the proposal requires all WordPress teams to become part of the revamp. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/codenex\">Niels Lange</a> </strong>published the <a href=\"https://developer.woocommerce.com/2023/08/16/woocommerce-blocks-10-9-0-release-notes/\"><strong>WooCommerce Blocks 10.9.0 Release&nbsp;Notes</strong></a>. He listed as notable that the team uses the Interactivity API together with the Product Button block and Pagination, which improves user experience considerably.  In this version, the team continued making  performance improvement to the plugin. You can also find improvements to patterns for footer and features products, and with every release fixed a few bugs. The <a href=\"https://wordpress.org/plugins/woo-gutenberg-products-block/\">WooCommerce Blocks plugin </a>is available in the WordPress repository</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/mattmedeiros\">Matt Medeiros</a></strong> took a peak at the early version of the new default theme and shared his thoughts in <strong><a href=\"https://thewpminute.com/previewing-the-upcoming-twenty-twenty-four-theme-for-wordpress/\">Previewing the Upcoming Twenty Twenty-Four Theme for WordPress</a></strong>. &#8220;With a focus on versatility, ease of use, and multiple website types, Twenty Twenty-Four is shaping up to be one of the best and most flexible default starter themes WordPress has released in years&#8221; he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/karks88\">Eric Karkovack</a></strong> asked <strong>Brian Gardner </strong>in his interview &#8220;<a href=\"https://thewpminute.com/will-there-ever-be-a-market-for-commercial-block-themes/\"><strong>Will There Ever Be a Market for Commercial Block Themes?</strong></a>&#8221; Tl:DR: &#8220;I’m incredibly optimistic. Having been instrumental in molding the premium WordPress theme market in the late 2000s, we stand at the precipice of a new renaissance, much like before.&#8221; was Brian Gardner&#8217;s answer. Read more about the challenges and opportunities of Block Themes in WordPress. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong>&#8216;s latest tutorial covers  <a href=\"https://developer.wordpress.org/news/2023/08/adding-and-using-custom-settings-in-theme-json/\"><strong>Adding and using custom settings in theme.json</strong></a>. Custom settings are &#8220;one of the most powerful ways to build on top of the block system but is often underutilized by the theming community.&#8221; he wrote. </p>\n\n\n\n<a href=\"https://developer.wordpress.org/news/2023/08/adding-and-using-custom-settings-in-theme-json/\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/09/Screenshot-2023-09-02-at-17.30.53.png?resize=652%2C242&ssl=1\" alt=\"\" class=\"wp-image-25421\" width=\"652\" height=\"242\" /></a>Code example of custom settings in theme.json. <a href=\"https://developer.wordpress.org/news/2023/08/adding-and-using-custom-settings-in-theme-json/\">Read what happens then </a>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><a href=\"https://twitter.com/aurooba\"><strong>Aurooba Ahmed</strong> </a>and <strong><a href=\"https://twitter.com/briancoords\">Brian Coords</a></strong> created a couple of tools for block development and made them publically available: </p>\n\n\n\n<ul>\n<li>The <strong><a href=\"https://wphelpers.dev/blocks\">WordPress Core Blocks Explorer</a></strong> is a searchable guide to all the&nbsp;core blocks&nbsp;and their properties. You can also obtain a complete&nbsp;<a href=\"https://wphelpers.dev/api/core-blocks\">JSON object of all the core blocks</a>&nbsp;and their properties instead. </li>\n\n\n\n<li>The <a href=\"https://wphelpers.dev/icons\"><strong>WordPress Icon Library,</strong></a> a searchable guide to the complete&nbsp;WordPress Icon Library&nbsp;package from the Gutenberg repository </li>\n</ul>\n\n\n\n<p>Both worth a browser bookmark 🙂 Ahmed and Coords also finished their first season of their <a href=\"https://viewsource.fm/\">ViewSource</a> podcast. If you want to give it a binge listen, just search for View Source on your favorite podcast app or download it from the <a href=\"https://viewsource.fm/\">website</a>. </p>\n\n\n\n<img width=\"652\" height=\"443\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/09/Screenshot-2023-09-02-at-17.41.25.png?resize=652%2C443&ssl=1\" alt=\"\" class=\"wp-image-25423\" />Example:<a href=\"https://wphelpers.dev/icons/blockDefault\"> Icon information for blockDefault</a> \n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>If you missed last week&#8217;s Developer Hours, the recording is now available on WordPressTV: <a href=\"https://wordpress.tv/2023/08/31/developer-hours-introduction-to-the-html-api/\"><strong>Developer Hours: Introduction to the HTML&nbsp;API</strong></a> with <strong>Michael Burridge</strong> and <strong>Dennis Snell</strong>. The show started with some quick demos of using the new HTML APIs, then briefly discussed the limits of the new systems, and finished with a time for questions and discussion with participants. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/vmwocto\">Angel De Miguel</a></strong>, staff engineer at VM ware working on the WebAssembly, his colleague <strong><a href=\"https://twitter.com/ereslibre\">Rafael Fernández López</a></strong> and Automattic&#8217;s <strong><a href=\"https://twitter.com/adamzielin\">Adam Zieliński</a></strong> co-authored  this post for the WordPress Developer blog: <a href=\"https://developer.wordpress.org/news/2023/08/exploring-the-future-of-web-development-with-webassembly-and-php/\"><strong>Exploring the future of web development with WebAssembly and PHP</strong></a>. &#8220;Imagine that you can now&nbsp;run PHP code in a new set of environments like a browser, serverless, edge, and even embedded&nbsp;in a different application. That opens a new set of possibilities for PHP.&nbsp; At this point is when PHP meets WebAssembly.&#8221; the wrote. You&#8217;ll learn what WebAssembly is, how it makes PHP portable like JavaScript, how it is the foundation of WordPress Playground, about sharing libraries across languages and so much more. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/Gtarafdarr\">Gobinda Tarafdar</a> </strong>started a new project, <strong><a href=\"http://csscrafter.com\">CSS Crafter</a> </strong>&#8211; a CSS Library for Gutenberg Blocks with premade CSS-styled blocks. Select the style and copy/paste the CSS + Block code for patterns or your custom blocks. Some of them also include pure CSS animations. It&#8217;s a fun project, that might shorten the creation time considerably. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>You don&#8217;t have to create custom blocks to customize the editor for your clients. <strong>Nick Diego</strong> posted an<a href=\"https://developer.wordpress.org/news/2023/08/an-introduction-to-block-variations/\"> </a><strong><a href=\"https://developer.wordpress.org/news/2023/08/an-introduction-to-block-variations/\">introduction to block variations</a>,</strong> and you will learn how to create block variations effectively and discover ways to incorporate them into your workflows. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Roof of the Stefan&#8217;s Cathedral in Vienna 2023 &#8211; Photo by Birgit Pauli-Haack</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 Sep 2023 10:16:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 20 Sep 2023 19:15:42 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Wed, 20 Sep 2023 19:00:29 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 7\";}}s:5:\"build\";s:14:\"20220629225143\";}','no'),(891052,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1695280542','no'),(891053,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1695237342','no'),(891054,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1695280542','no'),(891055,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/09/episode-62-enterprise-clients-and-the-business-of-wordpress/\'>WP Briefing: Episode 62: Enterprise Clients and the Business of WordPress</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/09/openverse-wins-the-2023-oeg-open-infrastructure-award/\'>Openverse Wins the 2023 OEG Open Infrastructure Award</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/podcast/91-vagelis-papaioannou-on-how-to-learn-to-use-wordpress-and-help-with-events\'>WPTavern: #91 – Vagelis Papaioannou on How to Learn to Use WordPress and Help With Events</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wp-tavern-launches-forums\'>WPTavern: WP Tavern Launches Forums</a></li><li><a class=\'rsswidget\' href=\'https://dothewoo.io/elevating-the-entrepreneurial-spirit-with-colin-daniels/\'>Do The Woo Community: Elevating the Entrepreneurial Spirit with Colin Daniels</a></li></ul></div>','no'),(891089,'_transient_timeout_GFCache_8a97a5d2913e2bc209690cb85964d56b','1695238494','no'),(891090,'_transient_GFCache_8a97a5d2913e2bc209690cb85964d56b','a:1:{i:0;O:8:\"stdClass\":2:{s:7:\"form_id\";s:1:\"1\";s:11:\"entry_count\";s:4:\"1279\";}}','no'),(891091,'_transient_timeout_GFCache_bce9825903f778eeb058b8378c393e96','1695238494','no'),(891092,'_transient_GFCache_bce9825903f778eeb058b8378c393e96','a:1:{i:0;O:8:\"stdClass\":2:{s:7:\"form_id\";s:1:\"1\";s:10:\"view_count\";s:5:\"24657\";}}','no'),(891185,'_transient_timeout_wpseo_total_unindexed_posts_limited','1695251021','no'),(891186,'_transient_wpseo_total_unindexed_posts_limited','0','no'),(891187,'_transient_timeout_wpseo_total_unindexed_terms_limited','1695251021','no'),(891188,'_transient_wpseo_total_unindexed_terms_limited','0','no'),(891189,'_transient_timeout_wp_mail_smtp_initiators_data','1695253721','no'),(891190,'_transient_wp_mail_smtp_initiators_data','a:1:{s:68:\"/home/drfiel5/public_html/wp-content/plugins/gravityforms/common.php\";a:3:{s:4:\"name\";s:13:\"Gravity Forms\";s:4:\"slug\";s:29:\"gravityforms/gravityforms.php\";s:4:\"type\";s:6:\"plugin\";}}','no'),(891191,'_transient_timeout_wp_mail_smtp_error_debug_events_transient_30-days','1695253721','no'),(891192,'_transient_wp_mail_smtp_error_debug_events_transient_30-days','30','no'),(891193,'_transient_timeout_wpseo-statistics-totals','1695336522','no'),(891194,'_transient_wpseo-statistics-totals','a:1:{i:8;a:2:{s:6:\"scores\";a:3:{i:0;a:4:{s:8:\"seo_rank\";s:2:\"ok\";s:5:\"label\";s:45:\"Posts with the SEO score: <strong>OK</strong>\";s:5:\"count\";i:2;s:4:\"link\";s:101:\"https://www.drfields.com/wp-admin/edit.php?post_status=publish&#038;post_type=post&#038;seo_filter=ok\";}i:1;a:4:{s:8:\"seo_rank\";s:4:\"good\";s:5:\"label\";s:47:\"Posts with the SEO score: <strong>Good</strong>\";s:5:\"count\";i:170;s:4:\"link\";s:103:\"https://www.drfields.com/wp-admin/edit.php?post_status=publish&#038;post_type=post&#038;seo_filter=good\";}i:2;a:4:{s:8:\"seo_rank\";s:2:\"na\";s:5:\"label\";s:48:\"Posts <strong>without</strong> a focus keyphrase\";s:5:\"count\";i:19;s:4:\"link\";s:101:\"https://www.drfields.com/wp-admin/edit.php?post_status=publish&#038;post_type=post&#038;seo_filter=na\";}}s:8:\"division\";a:5:{s:3:\"bad\";i:0;s:2:\"ok\";d:0.0104712041884816760284326875307669979520142078399658203125;s:4:\"good\";d:0.89005235602094245894733148816158063709735870361328125;s:2:\"na\";d:0.099476439790575910127046199704636819660663604736328125;s:7:\"noindex\";i:0;}}}','no'),(891195,'_site_transient_timeout_community-events-60bcd32d15dec418b174d5b372c4cbd1','1695293322','no'),(891196,'_site_transient_community-events-60bcd32d15dec418b174d5b372c4cbd1','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"47.155.28.0\";}s:6:\"events\";a:5:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:27:\"Let\'s talk about WordPress!\";s:3:\"url\";s:72:\"https://www.meetup.com/antelope-valley-wordpress-meetup/events/295817501\";s:6:\"meetup\";s:32:\"Antelope Valley WordPress Meetup\";s:10:\"meetup_url\";s:56:\"https://www.meetup.com/Antelope-Valley-WordPress-Meetup/\";s:4:\"date\";s:19:\"2023-09-20 19:00:00\";s:8:\"end_date\";s:19:\"2023-09-20 21:00:00\";s:20:\"start_unix_timestamp\";i:1695261600;s:18:\"end_unix_timestamp\";i:1695268800;s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Palmdale, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:34.59872399999999714736986788921058177947998046875;s:9:\"longitude\";d:-118.148055999999996856786310672760009765625;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:19:\"OC WordPress Meetup\";s:3:\"url\";s:58:\"https://www.meetup.com/oc-wordpress-group/events/295315044\";s:6:\"meetup\";s:18:\"OC WordPress Group\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/OC-Wordpress-Group/\";s:4:\"date\";s:19:\"2023-10-02 19:00:00\";s:8:\"end_date\";s:19:\"2023-10-02 21:00:00\";s:20:\"start_unix_timestamp\";i:1696298400;s:18:\"end_unix_timestamp\";i:1696305600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.67999999999999971578290569595992565155029296875;s:9:\"longitude\";d:-118.0100000000000051159076974727213382720947265625;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:37:\"#IEWP Monthly Meetup (General Meetup)\";s:3:\"url\";s:54:\"https://www.meetup.com/inlandempirewp/events/296095395\";s:6:\"meetup\";s:36:\"Inland Empire WordPress Meetup Group\";s:10:\"meetup_url\";s:38:\"https://www.meetup.com/inlandempirewp/\";s:4:\"date\";s:19:\"2023-10-03 19:00:00\";s:8:\"end_date\";s:19:\"2023-10-03 21:00:00\";s:20:\"start_unix_timestamp\";i:1696384800;s:18:\"end_unix_timestamp\";i:1696392000;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Riverside, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:33.98194500000000317641024594195187091827392578125;s:9:\"longitude\";d:-117.3693999999999988403942552395164966583251953125;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:33:\"WordPress Developer Night - #IEWP\";s:3:\"url\";s:54:\"https://www.meetup.com/inlandempirewp/events/292287684\";s:6:\"meetup\";s:36:\"Inland Empire WordPress Meetup Group\";s:10:\"meetup_url\";s:38:\"https://www.meetup.com/inlandempirewp/\";s:4:\"date\";s:19:\"2023-10-10 19:00:00\";s:8:\"end_date\";s:19:\"2023-10-10 21:00:00\";s:20:\"start_unix_timestamp\";i:1696989600;s:18:\"end_unix_timestamp\";i:1696996800;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.99000000000000198951966012828052043914794921875;s:9:\"longitude\";d:-117.3700000000000045474735088646411895751953125;}}i:4;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:33:\"WordPress Developer Night - #IEWP\";s:3:\"url\";s:54:\"https://www.meetup.com/inlandempirewp/events/292287683\";s:6:\"meetup\";s:36:\"Inland Empire WordPress Meetup Group\";s:10:\"meetup_url\";s:38:\"https://www.meetup.com/inlandempirewp/\";s:4:\"date\";s:19:\"2023-10-10 19:00:00\";s:8:\"end_date\";s:19:\"2023-10-10 21:00:00\";s:20:\"start_unix_timestamp\";i:1696989600;s:18:\"end_unix_timestamp\";i:1696996800;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.99000000000000198951966012828052043914794921875;s:9:\"longitude\";d:-117.3700000000000045474735088646411895751953125;}}}}','no'),(891464,'_site_transient_timeout_theme_roots','1695288688','no'),(891465,'_site_transient_theme_roots','a:3:{s:8:\"Drfields\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(891470,'_transient_timeout_hmbkp_schedules','1695892452','no'),(891471,'_transient_hmbkp_schedules','a:2:{i:0;s:25:\"hmbkp_schedule_1586901034\";i:1;s:25:\"hmbkp_schedule_1586901035\";}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=14863 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (2,3,'_wp_page_template','default'),(11,7,'_wp_attached_file','2019/06/OrthoRegen-Logo-R.png'),(12,7,'_wp_attachment_image_alt','Logo Dr Fields'),(13,7,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:413;s:6:\"height\";i:119;s:4:\"file\";s:29:\"2019/06/OrthoRegen-Logo-R.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"OrthoRegen-Logo-R-200x119.png\";s:5:\"width\";i:200;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16,9,'_wp_attached_file','2019/06/social-icon-youtube.png'),(17,9,'_wp_attachment_image_alt','Social Icon Youtube'),(18,9,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:21;s:4:\"file\";s:31:\"2019/06/social-icon-youtube.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19,10,'_wp_attached_file','2019/06/social-icon-facebook.png'),(20,10,'_wp_attachment_image_alt','Social Icon Facebook'),(21,10,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:21;s:6:\"height\";i:21;s:4:\"file\";s:32:\"2019/06/social-icon-facebook.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22,11,'_wp_attached_file','2019/06/social-icon-twitter.png'),(23,11,'_wp_attachment_image_alt','Social Icon Twitter'),(24,11,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:21;s:4:\"file\";s:31:\"2019/06/social-icon-twitter.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25,12,'_wp_attached_file','2019/06/social-icon-instagram.png'),(26,12,'_wp_attachment_image_alt','Social Icon Instagram'),(27,12,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:398;s:6:\"height\";i:398;s:4:\"file\";s:33:\"2019/06/social-icon-instagram.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"social-icon-instagram-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28,13,'_wp_attached_file','2019/06/Logo-Athletic-Doc.png'),(29,13,'_wp_attachment_image_alt','Logo Athletic Doc'),(30,13,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:95;s:6:\"height\";i:24;s:4:\"file\";s:29:\"2019/06/Logo-Athletic-Doc.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(40,15,'_wp_attached_file','2019/06/header-orthoregen-4.jpg'),(41,15,'_wp_attachment_image_alt','Header Orthoregen 4'),(42,15,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2550;s:6:\"height\";i:779;s:4:\"file\";s:31:\"2019/06/header-orthoregen-4.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"header-orthoregen-4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"header-orthoregen-4-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"header-orthoregen-4-768x235.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(43,16,'_wp_attached_file','2019/06/Kili-top-header.jpg'),(44,16,'_wp_attachment_image_alt','Kili Top Header'),(45,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1141;s:6:\"height\";i:349;s:4:\"file\";s:27:\"2019/06/Kili-top-header.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Kili-top-header-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Kili-top-header-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Kili-top-header-768x235.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(46,17,'_wp_attached_file','2019/06/dr-fields.png'),(47,17,'_wp_attachment_image_alt','Dr Fields'),(48,17,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:737;s:4:\"file\";s:21:\"2019/06/dr-fields.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"dr-fields-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"dr-fields-312x500.png\";s:5:\"width\";i:312;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(49,18,'_wp_attached_file','2019/06/icon-ironman.png'),(50,18,'_wp_attachment_image_alt','Icon Ironman'),(51,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:70;s:6:\"height\";i:70;s:4:\"file\";s:24:\"2019/06/icon-ironman.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(52,19,'_wp_attached_file','2019/06/icon-info.png'),(53,19,'_wp_attachment_image_alt','Icon Info'),(54,19,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:70;s:6:\"height\";i:70;s:4:\"file\";s:21:\"2019/06/icon-info.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(63,29,'_edit_last','11'),(64,29,'_edit_lock','1617665004:11'),(65,31,'_menu_item_type','post_type'),(66,31,'_menu_item_menu_item_parent','0'),(67,31,'_menu_item_object_id','29'),(68,31,'_menu_item_object','page'),(69,31,'_menu_item_target',''),(70,31,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(71,31,'_menu_item_xfn',''),(72,31,'_menu_item_url',''),(110,36,'_menu_item_type','custom'),(111,36,'_menu_item_menu_item_parent','0'),(112,36,'_menu_item_object_id','36'),(113,36,'_menu_item_object','custom'),(114,36,'_menu_item_target',''),(115,36,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(116,36,'_menu_item_xfn',''),(117,36,'_menu_item_url',''),(148,43,'_wp_attached_file','2019/06/ironman-cozumel-logo.jpg'),(149,43,'_wp_attachment_image_alt','Ironman Cozumel Logo'),(150,43,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:220;s:6:\"height\";i:90;s:4:\"file\";s:32:\"2019/06/ironman-cozumel-logo.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"ironman-cozumel-logo-200x90.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(151,53,'_wp_attached_file','2019/06/cozumel-2011-swim.jpg'),(152,53,'_wp_attachment_image_alt','Cozumel 2011 Swim'),(153,53,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:213;s:4:\"file\";s:29:\"2019/06/cozumel-2011-swim.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"cozumel-2011-swim-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(154,56,'_wp_attached_file','2019/06/cozumel-2011-bike.jpg'),(155,56,'_wp_attachment_image_alt','Cozumel 2011 Bike'),(156,56,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:196;s:4:\"file\";s:29:\"2019/06/cozumel-2011-bike.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(157,59,'_wp_attached_file','2019/06/cozumel-2011-finish2.jpg'),(158,59,'_wp_attachment_image_alt','Cozumel 2011 Finish2'),(159,59,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:268;s:4:\"file\";s:32:\"2019/06/cozumel-2011-finish2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"cozumel-2011-finish2-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160,60,'_wp_attached_file','2019/06/cozumel-2011-run.jpg'),(161,60,'_wp_attachment_image_alt','Cozumel 2011 Run'),(162,60,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:215;s:4:\"file\";s:28:\"2019/06/cozumel-2011-run.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cozumel-2011-run-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(163,64,'_wp_attached_file','2019/06/cozumel-2011-finish.jpg'),(164,64,'_wp_attachment_image_alt','Cozumel 2011 Finish'),(165,64,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:215;s:4:\"file\";s:31:\"2019/06/cozumel-2011-finish.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"cozumel-2011-finish-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(166,92,'_edit_lock','1621379962:9'),(167,92,'_edit_last','9'),(258,104,'_edit_last','2'),(259,104,'_edit_lock','1600103969:11'),(260,106,'_wp_attached_file','2019/06/drfields-bio-img.jpg'),(261,106,'_wp_attachment_image_alt','Drfields Bio Img'),(262,106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:216;s:4:\"file\";s:28:\"2019/06/drfields-bio-img.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"drfields-bio-img-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(306,119,'_menu_item_type','post_type'),(307,119,'_menu_item_menu_item_parent','273'),(308,119,'_menu_item_object_id','92'),(309,119,'_menu_item_object','post'),(310,119,'_menu_item_target',''),(311,119,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(312,119,'_menu_item_xfn',''),(313,119,'_menu_item_url',''),(321,120,'_edit_lock','1621383179:9'),(322,120,'_edit_last','9'),(327,123,'_wp_attached_file','2019/06/cozumel-2012-swim.jpg'),(328,123,'_wp_attachment_image_alt','Cozumel 2012 Swim'),(329,123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:213;s:4:\"file\";s:29:\"2019/06/cozumel-2012-swim.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"cozumel-2012-swim-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(331,125,'_wp_attached_file','2019/06/cozumel-2012-bike.jpg'),(332,125,'_wp_attachment_image_alt','Cozumel 2012 Bike'),(333,125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:196;s:4:\"file\";s:29:\"2019/06/cozumel-2012-bike.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(335,127,'_wp_attached_file','2019/06/cozumel-2012-run.jpg'),(336,127,'_wp_attachment_image_alt','Cozumel 2012 Run'),(337,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:215;s:4:\"file\";s:28:\"2019/06/cozumel-2012-run.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cozumel-2012-run-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(338,128,'_wp_attached_file','2019/06/cozumel-2012-finish2.jpg'),(339,128,'_wp_attachment_image_alt','Cozumel 2012 Finish2'),(340,128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:268;s:4:\"file\";s:32:\"2019/06/cozumel-2012-finish2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"cozumel-2012-finish2-150x200.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(342,130,'_menu_item_type','post_type'),(343,130,'_menu_item_menu_item_parent','273'),(344,130,'_menu_item_object_id','120'),(345,130,'_menu_item_object','post'),(346,130,'_menu_item_target',''),(347,130,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(348,130,'_menu_item_xfn',''),(349,130,'_menu_item_url',''),(351,131,'_edit_lock','1622688477:9'),(352,131,'_edit_last','9'),(355,134,'_wp_attached_file','2019/06/ironman-canada-logo.jpg'),(356,134,'_wp_attachment_image_alt','Ironman Canada Logo'),(357,134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:220;s:6:\"height\";i:97;s:4:\"file\";s:31:\"2019/06/ironman-canada-logo.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"ironman-canada-logo-200x97.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(360,138,'_wp_attached_file','2019/06/cozumel-2013-pre-race.jpg'),(361,138,'_wp_attachment_image_alt','Cozumel 2013 Pre Race'),(362,138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:213;s:4:\"file\";s:33:\"2019/06/cozumel-2013-pre-race.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"cozumel-2013-pre-race-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(364,140,'_wp_attached_file','2019/06/cozumel-2013-swim.jpg'),(365,140,'_wp_attachment_image_alt','Cozumel 2013 Swim'),(366,140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:213;s:4:\"file\";s:29:\"2019/06/cozumel-2013-swim.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"cozumel-2013-swim-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(368,142,'_wp_attached_file','2019/06/cozumel-2013-bike.jpg'),(369,142,'_wp_attachment_image_alt','Cozumel 2013 Bike'),(370,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:213;s:4:\"file\";s:29:\"2019/06/cozumel-2013-bike.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"cozumel-2013-bike-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(371,143,'_wp_attached_file','2019/06/cozumel-2013-run.jpg'),(372,143,'_wp_attachment_image_alt','Cozumel 2013 Run'),(373,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:213;s:4:\"file\";s:28:\"2019/06/cozumel-2013-run.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cozumel-2013-run-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(374,144,'_wp_attached_file','2019/06/cozumel-2013-finish2.jpg'),(375,144,'_wp_attachment_image_alt','Cozumel 2013 Finish2'),(376,144,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:268;s:4:\"file\";s:32:\"2019/06/cozumel-2013-finish2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"cozumel-2013-finish2-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(385,153,'_edit_lock','1622770636:9'),(386,153,'_edit_last','9'),(387,154,'_wp_attached_file','2019/06/ironman-austria-logo.jpg'),(388,154,'_wp_attachment_image_alt','Ironman Austria Logo'),(389,154,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:220;s:6:\"height\";i:82;s:4:\"file\";s:32:\"2019/06/ironman-austria-logo.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"ironman-austria-logo-200x82.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(403,170,'_wp_attached_file','2019/06/bike-race2014.jpg'),(404,170,'_wp_attachment_image_alt','Bike Race2014'),(405,170,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:382;s:6:\"height\";i:512;s:4:\"file\";s:25:\"2019/06/bike-race2014.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bike-race2014-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bike-race2014-373x500.jpg\";s:5:\"width\";i:373;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(409,174,'_wp_attached_file','2019/06/running-smile.jpg'),(410,174,'_wp_attachment_image_alt','Running Smile'),(411,174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:335;s:6:\"height\";i:504;s:4:\"file\";s:25:\"2019/06/running-smile.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"running-smile-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"running-smile-332x500.jpg\";s:5:\"width\";i:332;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(418,180,'_menu_item_type','post_type'),(419,180,'_menu_item_menu_item_parent','273'),(420,180,'_menu_item_object_id','153'),(421,180,'_menu_item_object','post'),(422,180,'_menu_item_target',''),(423,180,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(424,180,'_menu_item_xfn',''),(425,180,'_menu_item_url',''),(427,181,'_menu_item_type','post_type'),(428,181,'_menu_item_menu_item_parent','273'),(429,181,'_menu_item_object_id','131'),(430,181,'_menu_item_object','post'),(431,181,'_menu_item_target',''),(432,181,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(433,181,'_menu_item_xfn',''),(434,181,'_menu_item_url',''),(438,184,'_edit_lock','1593539555:11'),(439,184,'_edit_last','11'),(440,185,'_wp_attached_file','2019/06/ironman-brazil-logo.png'),(441,185,'_wp_attachment_image_alt','Ironman Brazil Logo'),(442,185,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:220;s:6:\"height\";i:130;s:4:\"file\";s:31:\"2019/06/ironman-brazil-logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"ironman-brazil-logo-200x130.png\";s:5:\"width\";i:200;s:6:\"height\";i:130;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(444,187,'_wp_attached_file','2019/06/ironman-brazil-swim-2.jpg'),(445,187,'_wp_attachment_image_alt','Ironman Brazil Swim 2'),(446,187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:314;s:4:\"file\";s:33:\"2019/06/ironman-brazil-swim-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"ironman-brazil-swim-2-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(449,190,'_wp_attached_file','2019/06/ironman-brazil-swim.jpg'),(450,190,'_wp_attachment_image_alt','Ironman Brazil Swim'),(451,190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:450;s:4:\"file\";s:31:\"2019/06/ironman-brazil-swim.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"ironman-brazil-swim-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:24:\"Copyright: Webrun.com.br\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(452,191,'_wp_attached_file','2019/06/ironman-brazil-bike.jpg'),(453,191,'_wp_attachment_image_alt','Ironman Brazil Bike'),(454,191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:516;s:4:\"file\";s:31:\"2019/06/ironman-brazil-bike.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"ironman-brazil-bike-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"ironman-brazil-bike-266x500.jpg\";s:5:\"width\";i:266;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:16:\"GUSTAVO EPIFANIO\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(462,197,'_wp_attached_file','2019/06/ironman-brazil-running.jpg'),(463,197,'_wp_attachment_image_alt','Ironman Brazil Running'),(464,197,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:579;s:4:\"file\";s:34:\"2019/06/ironman-brazil-running.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"ironman-brazil-running-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"ironman-brazil-running-237x500.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(466,199,'_wp_attached_file','2019/06/ironman-brazil-finish.jpg'),(467,199,'_wp_attachment_image_alt','Ironman Brazil Finish'),(468,199,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:363;s:4:\"file\";s:33:\"2019/06/ironman-brazil-finish.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"ironman-brazil-finish-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:19:\"All rights reserved\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(471,202,'_edit_lock','1611619137:11'),(472,202,'_edit_last','11'),(477,207,'_edit_lock','1691379940:8'),(478,207,'_edit_last','8'),(481,213,'_edit_lock','1615520925:9'),(482,213,'_edit_last','9'),(485,216,'_edit_lock','1641430779:9'),(486,216,'_edit_last','9'),(487,217,'_edit_lock','1593539597:11'),(488,217,'_edit_last','11'),(494,221,'_menu_item_type','post_type'),(495,221,'_menu_item_menu_item_parent','273'),(496,221,'_menu_item_object_id','217'),(497,221,'_menu_item_object','post'),(498,221,'_menu_item_target',''),(499,221,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(500,221,'_menu_item_xfn',''),(501,221,'_menu_item_url',''),(503,222,'_menu_item_type','post_type'),(504,222,'_menu_item_menu_item_parent','273'),(505,222,'_menu_item_object_id','184'),(506,222,'_menu_item_object','post'),(507,222,'_menu_item_target',''),(508,222,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(509,222,'_menu_item_xfn',''),(510,222,'_menu_item_url',''),(513,224,'_wp_attached_file','2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg'),(514,224,'_wp_attachment_image_alt','Ironman Cozumel Mexico 2015 Logo'),(515,224,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:126;s:4:\"file\";s:44:\"2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Ironman-Cozumel-Mexico-2015-Logo-200x126.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(525,229,'_edit_lock','1615335202:11'),(526,229,'_edit_last','11'),(528,231,'_wp_attached_file','2019/06/cozumel-2015-initials-115.jpg'),(529,231,'_wp_attachment_image_alt','Cozumel 2015 Initials 115'),(530,231,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:115;s:6:\"height\";i:241;s:4:\"file\";s:37:\"2019/06/cozumel-2015-initials-115.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"cozumel-2015-initials-115-115x200.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(544,243,'_wp_attached_file','2019/06/cozumel-2015-swim-275.jpg'),(545,243,'_wp_attachment_image_alt','Cozumel 2015 Swim 275'),(546,243,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:450;s:4:\"file\";s:33:\"2019/06/cozumel-2015-swim-275.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"cozumel-2015-swim-275-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(551,248,'_wp_attached_file','2019/06/cozumel-2015-bike-2-275.jpg'),(552,248,'_wp_attachment_image_alt','Cozumel 2015 Bike 2 275'),(553,248,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:450;s:4:\"file\";s:35:\"2019/06/cozumel-2015-bike-2-275.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"cozumel-2015-bike-2-275-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(567,263,'_wp_attached_file','2019/06/cozumel-2015-run-160.jpg'),(568,263,'_wp_attachment_image_alt','Cozumel 2015 Run 160'),(569,263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:352;s:4:\"file\";s:32:\"2019/06/cozumel-2015-run-160.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"cozumel-2015-run-160-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(633,266,'_edit_lock','1594512606:9'),(634,266,'_edit_last','9'),(635,273,'_menu_item_type','custom'),(636,273,'_menu_item_menu_item_parent','36'),(637,273,'_menu_item_object_id','273'),(638,273,'_menu_item_object','custom'),(639,273,'_menu_item_target',''),(640,273,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(641,273,'_menu_item_xfn',''),(642,273,'_menu_item_url','#'),(663,280,'_menu_item_type','post_type'),(664,280,'_menu_item_menu_item_parent','2535'),(665,280,'_menu_item_object_id','216'),(666,280,'_menu_item_object','post'),(667,280,'_menu_item_target',''),(668,280,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(669,280,'_menu_item_xfn',''),(670,280,'_menu_item_url',''),(690,283,'_menu_item_type','post_type'),(691,283,'_menu_item_menu_item_parent','2535'),(692,283,'_menu_item_object_id','229'),(693,283,'_menu_item_object','post'),(694,283,'_menu_item_target',''),(695,283,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(696,283,'_menu_item_xfn',''),(697,283,'_menu_item_url',''),(721,288,'_wp_attached_file','2019/06/mother-child-reading.jpg'),(722,288,'_wp_attachment_image_alt','Mother Child Reading'),(723,288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:32:\"2019/06/mother-child-reading.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"mother-child-reading-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(732,292,'_edit_lock','1619468108:9'),(733,292,'_edit_last','9'),(749,302,'_edit_lock','1593539924:11'),(750,302,'_edit_last','11'),(753,306,'_edit_lock','1645904677:9'),(754,306,'_edit_last','9'),(757,308,'_menu_item_type','post_type'),(758,308,'_menu_item_menu_item_parent','273'),(759,308,'_menu_item_object_id','306'),(760,308,'_menu_item_object','post'),(761,308,'_menu_item_target',''),(762,308,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(763,308,'_menu_item_xfn',''),(764,308,'_menu_item_url',''),(766,309,'_menu_item_type','post_type'),(767,309,'_menu_item_menu_item_parent','273'),(768,309,'_menu_item_object_id','302'),(769,309,'_menu_item_object','post'),(770,309,'_menu_item_target',''),(771,309,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(772,309,'_menu_item_xfn',''),(773,309,'_menu_item_url',''),(775,311,'_wp_attached_file','2019/06/ironman-switzerland-logo.jpg'),(776,311,'_wp_attachment_image_alt','Ironman Switzerland Logo'),(777,311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:120;s:4:\"file\";s:36:\"2019/06/ironman-switzerland-logo.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"ironman-switzerland-logo-200x120.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(779,313,'_wp_attached_file','2019/06/Switzerland-Swim-2016-275.jpg'),(780,313,'_wp_attachment_image_alt','Switzerland Swim 2016 275'),(781,313,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:463;s:4:\"file\";s:37:\"2019/06/Switzerland-Swim-2016-275.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Switzerland-Swim-2016-275-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(784,316,'_wp_attached_file','2019/06/Switzerland-Bike-2016-275.jpg'),(785,316,'_wp_attachment_image_alt','Switzerland Bike 2016 275'),(786,316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:748;s:4:\"file\";s:37:\"2019/06/Switzerland-Bike-2016-275.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Switzerland-Bike-2016-275-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Switzerland-Bike-2016-275-184x500.jpg\";s:5:\"width\";i:184;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(788,318,'_wp_attached_file','2019/06/Switzerland-Run-2016-275.jpg'),(789,318,'_wp_attachment_image_alt','Switzerland Run 2016 275'),(790,318,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:550;s:4:\"file\";s:36:\"2019/06/Switzerland-Run-2016-275.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Switzerland-Run-2016-275-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Switzerland-Run-2016-275-250x500.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(791,319,'_wp_attached_file','2019/06/Switzerland-Finish-Line-2016-275.jpg'),(792,319,'_wp_attachment_image_alt','Switzerland Finish Line 2016 275'),(793,319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:473;s:4:\"file\";s:44:\"2019/06/Switzerland-Finish-Line-2016-275.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Switzerland-Finish-Line-2016-275-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(799,326,'_wp_attached_file','2019/06/Cozumel-Logo.jpg'),(800,326,'_wp_attachment_image_alt','Cozumel Logo'),(801,326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:139;s:6:\"height\";i:85;s:4:\"file\";s:24:\"2019/06/Cozumel-Logo.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(802,327,'_wp_attached_file','2019/06/Cozumel-2016-Swim-2-160.jpg'),(803,327,'_wp_attachment_image_alt','Cozumel 2016 Swim 2 160'),(804,327,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:286;s:4:\"file\";s:35:\"2019/06/Cozumel-2016-Swim-2-160.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Cozumel-2016-Swim-2-160-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(805,328,'_wp_attached_file','2019/06/Cozumel-2016-Bike-160.jpg'),(806,328,'_wp_attachment_image_alt','Cozumel 2016 Bike 160'),(807,328,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:209;s:4:\"file\";s:33:\"2019/06/Cozumel-2016-Bike-160.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Cozumel-2016-Bike-160-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(808,329,'_wp_attached_file','2019/06/Cozumel-2016-Run-160.jpg'),(809,329,'_wp_attachment_image_alt','Cozumel 2016 Run 160'),(810,329,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:288;s:4:\"file\";s:32:\"2019/06/Cozumel-2016-Run-160.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Cozumel-2016-Run-160-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(815,332,'_wp_attached_file','2019/06/Cozumel-2016-Finish-160.jpg'),(816,332,'_wp_attachment_image_alt','Cozumel 2016 Finish 160'),(817,332,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:295;s:4:\"file\";s:35:\"2019/06/Cozumel-2016-Finish-160.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Cozumel-2016-Finish-160-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(834,348,'_edit_lock','1645833043:9'),(835,348,'_edit_last','9'),(836,349,'_wp_attached_file','2019/06/ironman-santa-rosa-logo-blue.jpg'),(837,349,'_wp_attachment_image_alt','Ironman Santa Rosa Logo Blue'),(838,349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:230;s:6:\"height\";i:120;s:4:\"file\";s:40:\"2019/06/ironman-santa-rosa-logo-blue.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"ironman-santa-rosa-logo-blue-200x120.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(839,350,'_wp_attached_file','2019/06/cozumel-2011-finish-1.jpg'),(840,350,'_wp_attachment_image_alt','Cozumel 2011 Finish'),(841,350,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:215;s:4:\"file\";s:33:\"2019/06/cozumel-2011-finish-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"cozumel-2011-finish-1-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(842,351,'_wp_attached_file','2019/06/Ironman-Santa-Rosa-Finishline-3.jpg'),(843,351,'_wp_attachment_image_alt','Ironman Santa Rosa Finishline 3'),(844,351,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:288;s:4:\"file\";s:43:\"2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Ironman-Santa-Rosa-Finishline-3-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(845,352,'_wp_attached_file','2019/06/Ironman-Santa-Rosa-Run-2.jpg'),(846,352,'_wp_attachment_image_alt','Ironman Santa Rosa Run 2'),(847,352,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:288;s:4:\"file\";s:36:\"2019/06/Ironman-Santa-Rosa-Run-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Ironman-Santa-Rosa-Run-2-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(848,353,'_wp_attached_file','2019/06/Ironman-Santa-Rosa-Bike-3.jpg'),(849,353,'_wp_attachment_image_alt','Ironman Santa Rosa Bike 3'),(850,353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:288;s:4:\"file\";s:37:\"2019/06/Ironman-Santa-Rosa-Bike-3.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Ironman-Santa-Rosa-Bike-3-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(851,354,'_wp_attached_file','2019/06/Ironman-Santa-Rosa-Swim.jpg'),(852,354,'_wp_attachment_image_alt','Ironman Santa Rosa Swim'),(853,354,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:240;s:4:\"file\";s:35:\"2019/06/Ironman-Santa-Rosa-Swim.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Ironman-Santa-Rosa-Swim-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(854,355,'_wp_attached_file','2019/06/Ironman-Santa-Rosa-Snoopy.jpg'),(855,355,'_wp_attachment_image_alt','Ironman Santa Rosa Snoopy'),(856,355,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:240;s:4:\"file\";s:37:\"2019/06/Ironman-Santa-Rosa-Snoopy.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Ironman-Santa-Rosa-Snoopy-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(861,361,'_edit_lock','1645830659:9'),(862,361,'_edit_last','9'),(863,362,'_wp_attached_file','2019/06/Ironman-Maryland.jpg'),(864,362,'_wp_attachment_image_alt','Ironman Maryland'),(865,362,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2019/06/Ironman-Maryland.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Ironman-Maryland-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(866,363,'_wp_attached_file','2019/06/swim-400.jpg'),(867,363,'_wp_attachment_image_alt','Swim 400'),(868,363,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:676;s:4:\"file\";s:20:\"2019/06/swim-400.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"swim-400-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"swim-400-296x500.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(869,364,'_wp_attached_file','2019/06/bike2-600.jpg'),(870,364,'_wp_attachment_image_alt','Bike2 600'),(871,364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:498;s:4:\"file\";s:21:\"2019/06/bike2-600.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"bike2-600-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"bike2-600-500x415.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(872,365,'_wp_attached_file','2019/06/run1-400.jpg'),(873,365,'_wp_attachment_image_alt','Run1 400'),(874,365,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:722;s:4:\"file\";s:20:\"2019/06/run1-400.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"run1-400-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"run1-400-277x500.jpg\";s:5:\"width\";i:277;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(875,366,'_wp_attached_file','2019/06/finish-line-C-400.jpg'),(876,366,'_wp_attachment_image_alt','Finish Line C 400'),(877,366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:451;s:4:\"file\";s:29:\"2019/06/finish-line-C-400.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"finish-line-C-400-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(883,373,'_edit_lock','1691793158:9'),(884,373,'_edit_last','9'),(885,374,'_wp_attached_file','2019/06/dr-fields-pete-jacobs-small.jpg'),(886,374,'_wp_attachment_image_alt','Dr Fields Pete Jacobs Small'),(887,374,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:185;s:4:\"file\";s:39:\"2019/06/dr-fields-pete-jacobs-small.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"dr-fields-pete-jacobs-small-200x185.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(894,382,'_edit_lock','1663214114:8'),(895,382,'_edit_last','8'),(900,385,'_wp_attached_file','2019/06/Cozumel-Finish-2015-275.jpg'),(901,385,'_wp_attachment_image_alt','Cozumel Finish 2015 275'),(902,385,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:465;s:4:\"file\";s:35:\"2019/06/Cozumel-Finish-2015-275.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Cozumel-Finish-2015-275-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(903,386,'_wp_attached_file','2019/06/ironman2014-large.jpg'),(904,386,'_wp_attachment_image_alt','Ironman2014 Large'),(905,386,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:321;s:6:\"height\";i:547;s:4:\"file\";s:29:\"2019/06/ironman2014-large.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"ironman2014-large-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"ironman2014-large-293x500.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(916,395,'_edit_lock','1629675312:9'),(917,395,'_edit_last','9'),(921,400,'_menu_item_type','post_type'),(922,400,'_menu_item_menu_item_parent','273'),(923,400,'_menu_item_object_id','373'),(924,400,'_menu_item_object','post'),(925,400,'_menu_item_target',''),(926,400,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(927,400,'_menu_item_xfn',''),(928,400,'_menu_item_url',''),(930,401,'_menu_item_type','post_type'),(931,401,'_menu_item_menu_item_parent','273'),(932,401,'_menu_item_object_id','361'),(933,401,'_menu_item_object','post'),(934,401,'_menu_item_target',''),(935,401,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(936,401,'_menu_item_xfn',''),(937,401,'_menu_item_url',''),(939,402,'_menu_item_type','post_type'),(940,402,'_menu_item_menu_item_parent','273'),(941,402,'_menu_item_object_id','348'),(942,402,'_menu_item_object','post'),(943,402,'_menu_item_target',''),(944,402,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(945,402,'_menu_item_xfn',''),(946,402,'_menu_item_url',''),(952,395,'_wp_old_slug','395'),(955,408,'_edit_lock','1611865416:11'),(956,408,'_edit_last','11'),(961,414,'_edit_lock','1615334806:11'),(962,414,'_edit_last','11'),(972,416,'_edit_lock','1667325740:8'),(973,416,'_edit_last','8'),(974,417,'_wp_attached_file','2019/06/Dr.-Fields-his-staff-and-a-patient1.jpg'),(975,417,'_wp_attachment_image_alt','Dr. Fields His Staff And A Patient1'),(976,417,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:150;s:4:\"file\";s:47:\"2019/06/Dr.-Fields-his-staff-and-a-patient1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Dr.-Fields-his-staff-and-a-patient1-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(977,418,'_wp_attached_file','2019/06/Dr-Fields-and-two-aides.jpg'),(978,418,'_wp_attachment_image_alt','Dr Fields And Two Aides'),(979,418,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:150;s:4:\"file\";s:35:\"2019/06/Dr-Fields-and-two-aides.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Dr-Fields-and-two-aides-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(980,419,'_wp_attached_file','2019/06/Steven-Liza-and-Peter.jpg'),(981,419,'_wp_attachment_image_alt','Steven, Liza And Peter'),(982,419,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:150;s:4:\"file\";s:33:\"2019/06/Steven-Liza-and-Peter.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Steven-Liza-and-Peter-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(983,420,'_wp_attached_file','2019/06/The-gang-at-dinner.jpg'),(984,420,'_wp_attachment_image_alt','The Gang At Dinner'),(985,420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:150;s:4:\"file\";s:30:\"2019/06/The-gang-at-dinner.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"The-gang-at-dinner-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(994,431,'_edit_lock','1667431447:9'),(995,431,'_edit_last','9'),(996,432,'_edit_lock','1560923724:2'),(997,432,'_edit_last','2'),(998,433,'_wp_attached_file','2019/06/Drs-Fields-and-Cavalino-with-the-owner-of-a-local-market.jpg'),(999,433,'_wp_attachment_image_alt','Dr\'s Fields And Cavalino With The Owner Of A Local Market'),(1000,433,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:176;s:4:\"file\";s:68:\"2019/06/Drs-Fields-and-Cavalino-with-the-owner-of-a-local-market.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"Drs-Fields-and-Cavalino-with-the-owner-of-a-local-market-200x176.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1001,434,'_wp_attached_file','2019/06/Dr.-Fields-and-two-Honduran-translators.jpg'),(1002,434,'_wp_attachment_image_alt','Dr. Fields And Two Honduran Translators'),(1003,434,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:128;s:4:\"file\";s:51:\"2019/06/Dr.-Fields-and-two-Honduran-translators.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Dr.-Fields-and-two-Honduran-translators-200x128.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1004,435,'_wp_attached_file','2019/06/Taking-a-break-after-a-long-day.jpg'),(1005,435,'_wp_attachment_image_alt','Taking A Break After A Long Day'),(1006,435,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:169;s:4:\"file\";s:43:\"2019/06/Taking-a-break-after-a-long-day.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Taking-a-break-after-a-long-day-200x169.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1007,436,'_wp_attached_file','2019/06/Dr.s-Fields-and-Cavalino-at-work.jpg'),(1008,436,'_wp_attachment_image_alt','Dr.s Fields And Cavalino At Work'),(1009,436,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:228;s:4:\"file\";s:44:\"2019/06/Dr.s-Fields-and-Cavalino-at-work.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Dr.s-Fields-and-Cavalino-at-work-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1017,444,'_wp_attached_file','2019/06/Attending-a-noon-lecture.jpg'),(1018,444,'_wp_attachment_image_alt','Attending A Noon Lecture'),(1019,444,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:150;s:4:\"file\";s:36:\"2019/06/Attending-a-noon-lecture.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Attending-a-noon-lecture-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1020,445,'_wp_attached_file','2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg'),(1021,445,'_wp_attachment_image_alt','Dr.. Fields And The Owner Of A Local Restaurant'),(1022,445,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:150;s:4:\"file\";s:59:\"2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Dr..-Fields-and-the-owner-of-a-local-restaurant-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1023,446,'_wp_attached_file','2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg'),(1024,446,'_wp_attachment_image_alt','Dr. Fields, A Colleague And Two Translators1'),(1025,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:150;s:4:\"file\";s:55:\"2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Dr.-Fields-a-colleague-and-two-translators1-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1026,447,'_wp_attached_file','2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg'),(1027,447,'_wp_attachment_image_alt','Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School'),(1028,447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:150;s:4:\"file\";s:89:\"2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:89:\"Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1029,448,'_wp_attached_file','2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg'),(1030,448,'_wp_attachment_image_alt','Dr. Patterson Giving A Noon Time Lecture'),(1031,448,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:150;s:4:\"file\";s:52:\"2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Dr.-Patterson-giving-a-noon-time-lecture-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1032,449,'_wp_attached_file','2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg'),(1033,449,'_wp_attachment_image_alt','Dr. Timmerman Instructs A New Physician'),(1034,449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:150;s:4:\"file\";s:51:\"2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Dr.-Timmerman-instructs-a-new-physician-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1035,450,'_wp_attached_file','2019/06/Local-transport.jpg'),(1036,450,'_wp_attachment_image_alt','Local Transport!'),(1037,450,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:150;s:4:\"file\";s:27:\"2019/06/Local-transport.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Local-transport-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1038,451,'_wp_attached_file','2019/06/One-of-the-treatment-rooms.jpg'),(1039,451,'_wp_attachment_image_alt','One Of The Treatment Rooms'),(1040,451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:150;s:4:\"file\";s:38:\"2019/06/One-of-the-treatment-rooms.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"One-of-the-treatment-rooms-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1041,452,'_wp_attached_file','2019/06/Our-make-shift-treatment-area.jpg'),(1042,452,'_wp_attachment_image_alt','Our Make Shift Treatment Area'),(1043,452,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:150;s:4:\"file\";s:41:\"2019/06/Our-make-shift-treatment-area.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Our-make-shift-treatment-area-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1044,453,'_edit_lock','1661198758:9'),(1046,453,'_edit_last','8'),(1061,469,'_edit_lock','1681927134:9'),(1062,469,'_edit_last','9'),(1086,475,'_menu_item_type','post_type'),(1087,475,'_menu_item_menu_item_parent','485'),(1088,475,'_menu_item_object_id','408'),(1089,475,'_menu_item_object','post'),(1090,475,'_menu_item_target',''),(1091,475,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1092,475,'_menu_item_xfn',''),(1093,475,'_menu_item_url',''),(1095,476,'_menu_item_type','post_type'),(1096,476,'_menu_item_menu_item_parent','485'),(1097,476,'_menu_item_object_id','395'),(1098,476,'_menu_item_object','post'),(1099,476,'_menu_item_target',''),(1100,476,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1101,476,'_menu_item_xfn',''),(1102,476,'_menu_item_url',''),(1104,477,'_menu_item_type','post_type'),(1105,477,'_menu_item_menu_item_parent','485'),(1106,477,'_menu_item_object_id','382'),(1107,477,'_menu_item_object','post'),(1108,477,'_menu_item_target',''),(1109,477,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1110,477,'_menu_item_xfn',''),(1111,477,'_menu_item_url',''),(1113,478,'_menu_item_type','post_type'),(1114,478,'_menu_item_menu_item_parent','481'),(1115,478,'_menu_item_object_id','414'),(1116,478,'_menu_item_object','post'),(1117,478,'_menu_item_target',''),(1118,478,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1119,478,'_menu_item_xfn',''),(1120,478,'_menu_item_url',''),(1122,479,'_menu_item_type','post_type'),(1123,479,'_menu_item_menu_item_parent','481'),(1124,479,'_menu_item_object_id','431'),(1125,479,'_menu_item_object','post'),(1126,479,'_menu_item_target',''),(1127,479,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1128,479,'_menu_item_xfn',''),(1129,479,'_menu_item_url',''),(1132,481,'_menu_item_type','custom'),(1133,481,'_menu_item_menu_item_parent','0'),(1134,481,'_menu_item_object_id','481'),(1135,481,'_menu_item_object','custom'),(1136,481,'_menu_item_target',''),(1137,481,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1138,481,'_menu_item_xfn',''),(1139,481,'_menu_item_url',''),(1141,483,'_menu_item_type','custom'),(1142,483,'_menu_item_menu_item_parent','0'),(1143,483,'_menu_item_object_id','483'),(1144,483,'_menu_item_object','custom'),(1145,483,'_menu_item_target',''),(1146,483,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1147,483,'_menu_item_xfn',''),(1148,483,'_menu_item_url',''),(1151,485,'_menu_item_type','custom'),(1152,485,'_menu_item_menu_item_parent','481'),(1153,485,'_menu_item_object_id','485'),(1154,485,'_menu_item_object','custom'),(1155,485,'_menu_item_target',''),(1156,485,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1157,485,'_menu_item_xfn',''),(1158,485,'_menu_item_url',''),(1161,486,'_edit_lock','1627327237:9'),(1162,486,'_edit_last','9'),(1165,488,'_wp_attached_file','2019/06/Drs-Peter-and-Matt.jpg'),(1166,488,'_wp_attachment_image_alt','Dr\'s Peter And Matt'),(1167,488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:30:\"2019/06/Drs-Peter-and-Matt.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Drs-Peter-and-Matt-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1168,489,'_wp_attached_file','2019/06/Dr-F.-Lecturing-1.jpg'),(1169,489,'_wp_attachment_image_alt','Dr F. Lecturing 1'),(1170,489,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:29:\"2019/06/Dr-F.-Lecturing-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Dr-F.-Lecturing-1-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1171,490,'_wp_attached_file','2019/06/DSCN1562.jpg'),(1172,490,'_wp_attachment_image_alt','Dscn1562'),(1173,490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:192;s:4:\"file\";s:20:\"2019/06/DSCN1562.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN1562-200x192.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1174,491,'_wp_attached_file','2019/06/DSCN1727.jpg'),(1175,491,'_wp_attachment_image_alt','Dscn1727'),(1176,491,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:20:\"2019/06/DSCN1727.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN1727-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1177,492,'_wp_attached_file','2019/06/DSCN1739.jpg'),(1178,492,'_wp_attachment_image_alt','Dscn1739'),(1179,492,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:20:\"2019/06/DSCN1739.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN1739-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1180,493,'_wp_attached_file','2019/06/DSCN1760.jpg'),(1181,493,'_wp_attachment_image_alt','Dscn1760'),(1182,493,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:20:\"2019/06/DSCN1760.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN1760-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1183,494,'_wp_attached_file','2019/06/DSCN1761.jpg'),(1184,494,'_wp_attachment_image_alt','Dscn1761'),(1185,494,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:20:\"2019/06/DSCN1761.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN1761-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1186,495,'_wp_attached_file','2019/06/DSCN1790.jpg'),(1187,495,'_wp_attachment_image_alt','Dscn1790'),(1188,495,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:20:\"2019/06/DSCN1790.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN1790-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1189,496,'_wp_attached_file','2019/06/DSCN1796.jpg'),(1190,496,'_wp_attachment_image_alt','Dscn1796'),(1191,496,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:20:\"2019/06/DSCN1796.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN1796-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1192,497,'_wp_attached_file','2019/06/Dr-Fields-adjusts-a-patient.jpg'),(1193,497,'_wp_attachment_image_alt','Dr Fields Adjusts A Patient'),(1194,497,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:39:\"2019/06/Dr-Fields-adjusts-a-patient.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Dr-Fields-adjusts-a-patient-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1195,498,'_wp_attached_file','2019/06/Dr-Fields-instructs.jpg'),(1196,498,'_wp_attachment_image_alt','Dr Fields Instructs'),(1197,498,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:31:\"2019/06/Dr-Fields-instructs.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Dr-Fields-instructs-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1198,499,'_wp_attached_file','2019/06/Drs-Peter-Bill-Joe-and-patient.jpg'),(1199,499,'_wp_attachment_image_alt','Dr\'s Peter, Bill, Joe And Patient'),(1200,499,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:42:\"2019/06/Drs-Peter-Bill-Joe-and-patient.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Drs-Peter-Bill-Joe-and-patient-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1201,500,'_wp_attached_file','2019/06/Dr-Fields-giving-a-lecture.jpg'),(1202,500,'_wp_attachment_image_alt','Dr Fields Giving A Lecture'),(1203,500,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:217;s:6:\"height\";i:255;s:4:\"file\";s:38:\"2019/06/Dr-Fields-giving-a-lecture.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Dr-Fields-giving-a-lecture-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1204,501,'_wp_attached_file','2019/06/Dr-F-and-skeleton.jpg'),(1205,501,'_wp_attachment_image_alt','Dr F And Skeleton'),(1206,501,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:255;s:4:\"file\";s:29:\"2019/06/Dr-F-and-skeleton.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Dr-F-and-skeleton-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1207,502,'_wp_attached_file','2019/06/Dinner-at-the-hotel.jpg'),(1208,502,'_wp_attachment_image_alt','Dinner At The Hotel'),(1209,502,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:31:\"2019/06/Dinner-at-the-hotel.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Dinner-at-the-hotel-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1210,503,'_wp_attached_file','2019/06/horse.jpg'),(1211,503,'_wp_attachment_image_alt','Horse'),(1212,503,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:202;s:4:\"file\";s:17:\"2019/06/horse.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"horse-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1213,504,'_edit_lock','1661198846:9'),(1214,504,'_edit_last','8'),(1219,509,'_edit_lock','1661550641:9'),(1220,509,'_edit_last','8'),(1222,511,'_edit_lock','1678908661:9'),(1223,511,'_edit_last','9'),(1224,512,'_menu_item_type','custom'),(1225,512,'_menu_item_menu_item_parent','36'),(1226,512,'_menu_item_object_id','512'),(1227,512,'_menu_item_object','custom'),(1228,512,'_menu_item_target',''),(1229,512,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1230,512,'_menu_item_xfn',''),(1231,512,'_menu_item_url',''),(1242,514,'_menu_item_type','post_type'),(1243,514,'_menu_item_menu_item_parent','512'),(1244,514,'_menu_item_object_id','453'),(1245,514,'_menu_item_object','post'),(1246,514,'_menu_item_target',''),(1247,514,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1248,514,'_menu_item_xfn',''),(1249,514,'_menu_item_url',''),(1251,515,'_menu_item_type','post_type'),(1252,515,'_menu_item_menu_item_parent','512'),(1253,515,'_menu_item_object_id','432'),(1254,515,'_menu_item_object','post'),(1255,515,'_menu_item_target',''),(1256,515,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1257,515,'_menu_item_xfn',''),(1258,515,'_menu_item_url',''),(1260,516,'_menu_item_type','post_type'),(1261,516,'_menu_item_menu_item_parent','512'),(1262,516,'_menu_item_object_id','416'),(1263,516,'_menu_item_object','post'),(1264,516,'_menu_item_target',''),(1265,516,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1266,516,'_menu_item_xfn',''),(1267,516,'_menu_item_url',''),(1278,524,'_edit_lock','1611703810:11'),(1279,524,'_edit_last','11'),(1283,528,'_edit_lock','1615335258:11'),(1284,528,'_edit_last','11'),(1289,533,'_edit_lock','1641435753:9'),(1290,533,'_edit_last','9'),(1292,536,'_edit_lock','1630664663:9'),(1293,536,'_edit_last','9'),(1303,545,'_edit_lock','1627591106:9'),(1304,543,'_edit_lock','1667325523:8'),(1305,545,'_edit_last','9'),(1306,546,'_wp_attached_file','2019/06/With-Disbel-Mansilla-DDS-and-her-staff.jpg'),(1307,546,'_wp_attachment_image_alt','With Disbel Mansilla, Dds And Her Staff'),(1308,546,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:191;s:4:\"file\";s:50:\"2019/06/With-Disbel-Mansilla-DDS-and-her-staff.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"With-Disbel-Mansilla-DDS-and-her-staff-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1309,547,'_wp_attached_file','2019/06/With-a-local-translator.jpg'),(1310,547,'_wp_attachment_image_alt','With A Local Translator'),(1311,547,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:35:\"2019/06/With-a-local-translator.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"With-a-local-translator-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1312,548,'_wp_attached_file','2019/06/Treating-a-patient-with-a-student-doc.jpg'),(1313,548,'_wp_attachment_image_alt','Treating A Patient With A Student Doc'),(1314,548,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:49:\"2019/06/Treating-a-patient-with-a-student-doc.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Treating-a-patient-with-a-student-doc-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1315,549,'_wp_attached_file','2019/06/The-bigger-city.jpg'),(1316,549,'_wp_attachment_image_alt','The Bigger City'),(1317,549,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:27:\"2019/06/The-bigger-city.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"The-bigger-city-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1318,550,'_wp_attached_file','2019/06/Local-street-scene-in-the-main-city.jpg'),(1319,550,'_wp_attachment_image_alt','Local Street Scene In The Main City'),(1320,550,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:47:\"2019/06/Local-street-scene-in-the-main-city.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Local-street-scene-in-the-main-city-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1321,551,'_wp_attached_file','2019/06/Having-dinner-in-Olanchito.jpg'),(1322,551,'_wp_attachment_image_alt','Having Dinner In Olanchito'),(1323,551,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:38:\"2019/06/Having-dinner-in-Olanchito.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Having-dinner-in-Olanchito-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1324,552,'_wp_attached_file','2019/06/Dr-Fields-a-helper-and-Dr-Bones.jpg'),(1325,552,'_wp_attachment_image_alt','Dr Fields, A Helper And Dr Bones!'),(1326,552,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:43:\"2019/06/Dr-Fields-a-helper-and-Dr-Bones.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Dr-Fields-a-helper-and-Dr-Bones-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1327,553,'_wp_attached_file','2019/06/Dr-Fields-with-other-docs-at-the-final-dinner.jpg'),(1328,553,'_wp_attachment_image_alt','Dr Fields With Other Docs At The Final Dinner'),(1329,553,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:166;s:4:\"file\";s:57:\"2019/06/Dr-Fields-with-other-docs-at-the-final-dinner.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Dr-Fields-with-other-docs-at-the-final-dinner-200x166.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1330,554,'_wp_attached_file','2019/06/Dr-Fields-with-another-doc-our-translator-and-a-patient.jpg'),(1331,554,'_wp_attachment_image_alt','Dr Fields With Another Doc, Our Translator And A Patient'),(1332,554,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:67:\"2019/06/Dr-Fields-with-another-doc-our-translator-and-a-patient.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"Dr-Fields-with-another-doc-our-translator-and-a-patient-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1333,555,'_wp_attached_file','2019/06/Dr-Fields-with-another-doc-and-a-helper.jpg'),(1334,555,'_wp_attachment_image_alt','Dr Fields With Another Doc And A Helper'),(1335,555,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:51:\"2019/06/Dr-Fields-with-another-doc-and-a-helper.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Dr-Fields-with-another-doc-and-a-helper-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1336,543,'_edit_last','8'),(1337,556,'_wp_attached_file','2019/06/Dr-Fields-with-a-student-doc-and-a-patient.jpg'),(1338,556,'_wp_attachment_image_alt','Dr Fields With A Student Doc And A Patient'),(1339,556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:54:\"2019/06/Dr-Fields-with-a-student-doc-and-a-patient.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"Dr-Fields-with-a-student-doc-and-a-patient-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1340,557,'_wp_attached_file','2019/06/Dr-Fields-helps-out-the-dentist.jpg'),(1341,557,'_wp_attachment_image_alt','Dr Fields Helps Out The Dentist!'),(1342,557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:43:\"2019/06/Dr-Fields-helps-out-the-dentist.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Dr-Fields-helps-out-the-dentist-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1343,558,'_wp_attached_file','2019/06/The-Olanchito-group.jpg'),(1344,558,'_wp_attachment_image_alt','The Olanchito Group'),(1345,558,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:31:\"2019/06/The-Olanchito-group.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"The-Olanchito-group-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1346,559,'_wp_attached_file','2019/06/Dr-Fields-and-Mary-Doherty-HHF-Operations-Director.jpg'),(1347,559,'_wp_attachment_image_alt','Dr Fields And Mary Doherty, Hhf Operations Director'),(1348,559,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:62:\"2019/06/Dr-Fields-and-Mary-Doherty-HHF-Operations-Director.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Dr-Fields-and-Mary-Doherty-HHF-Operations-Director-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1349,560,'_wp_attached_file','2019/06/Dr-Fields-with-the-dentist-Dr-Mansilla.jpg'),(1350,560,'_wp_attachment_image_alt','Dr Fields With The Dentist, Dr Mansilla'),(1351,560,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:191;s:6:\"height\";i:191;s:4:\"file\";s:50:\"2019/06/Dr-Fields-with-the-dentist-Dr-Mansilla.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1352,561,'_wp_attached_file','2019/06/Teaching-a-doc.jpg'),(1353,561,'_wp_attachment_image_alt','Teaching A Doc'),(1354,561,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:26:\"2019/06/Teaching-a-doc.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Teaching-a-doc-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1355,562,'_wp_attached_file','2019/06/With-a-local-translator-a-student-doc-from-Italy-and-a-patient.jpg'),(1356,562,'_wp_attachment_image_alt','With A Local Translator, A Student Doc From Italy And A Patient'),(1357,562,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:74:\"2019/06/With-a-local-translator-a-student-doc-from-Italy-and-a-patient.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:74:\"With-a-local-translator-a-student-doc-from-Italy-and-a-patient-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1358,563,'_wp_attached_file','2019/06/With-two-other-student-docs-and-a-patient.jpg'),(1359,563,'_wp_attachment_image_alt','With Two Other Student Docs And A Patient'),(1360,563,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:53:\"2019/06/With-two-other-student-docs-and-a-patient.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"With-two-other-student-docs-and-a-patient-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1364,567,'_edit_lock','1625686142:9'),(1365,567,'_edit_last','9'),(1370,572,'_edit_lock','1625699033:9'),(1371,572,'_edit_last','8'),(1392,577,'_menu_item_type','post_type'),(1393,577,'_menu_item_menu_item_parent','512'),(1394,577,'_menu_item_object_id','543'),(1395,577,'_menu_item_object','post'),(1396,577,'_menu_item_target',''),(1397,577,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1398,577,'_menu_item_xfn',''),(1399,577,'_menu_item_url',''),(1401,578,'_menu_item_type','post_type'),(1402,578,'_menu_item_menu_item_parent','512'),(1403,578,'_menu_item_object_id','504'),(1404,578,'_menu_item_object','post'),(1405,578,'_menu_item_target',''),(1406,578,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1407,578,'_menu_item_xfn',''),(1408,578,'_menu_item_url',''),(1420,582,'_edit_lock','1623436134:9'),(1421,582,'_edit_last','9'),(1422,583,'_edit_lock','1625698962:9'),(1423,583,'_edit_last','9'),(1425,585,'_edit_lock','1625698930:9'),(1426,585,'_edit_last','9'),(1428,587,'_edit_lock','1625698898:9'),(1429,587,'_edit_last','9'),(1431,589,'_edit_lock','1625698870:9'),(1432,589,'_edit_last','9'),(1434,591,'_edit_lock','1625698825:9'),(1435,591,'_edit_last','9'),(1440,595,'_edit_lock','1611705271:11'),(1442,595,'_edit_last','11'),(1461,609,'_edit_lock','1625699879:9'),(1462,609,'_edit_last','9'),(1464,611,'_menu_item_type','post_type'),(1465,611,'_menu_item_menu_item_parent','512'),(1466,611,'_menu_item_object_id','609'),(1467,611,'_menu_item_object','post'),(1468,611,'_menu_item_target',''),(1469,611,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1470,611,'_menu_item_xfn',''),(1471,611,'_menu_item_url',''),(1476,616,'_wp_attached_file','2019/06/DSCN1059.jpg'),(1477,616,'_wp_attachment_image_alt','Dscn1059'),(1478,616,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:20:\"2019/06/DSCN1059.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN1059-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1480,618,'_wp_attached_file','2019/06/DSCN1053.jpg'),(1481,618,'_wp_attachment_image_alt','Dscn1053'),(1482,618,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:20:\"2019/06/DSCN1053.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN1053-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1483,619,'_wp_attached_file','2019/06/DSCN1150.jpg'),(1484,619,'_wp_attachment_image_alt','Dscn1150'),(1485,619,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:191;s:6:\"height\";i:255;s:4:\"file\";s:20:\"2019/06/DSCN1150.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN1150-191x200.jpg\";s:5:\"width\";i:191;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1486,620,'_wp_attached_file','2019/06/DSCN1154.jpg'),(1487,620,'_wp_attachment_image_alt','Dscn1154'),(1488,620,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:191;s:6:\"height\";i:255;s:4:\"file\";s:20:\"2019/06/DSCN1154.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN1154-191x200.jpg\";s:5:\"width\";i:191;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1489,621,'_wp_attached_file','2019/06/DSCN0947.jpg'),(1490,621,'_wp_attachment_image_alt','Dscn0947'),(1491,621,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:20:\"2019/06/DSCN0947.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN0947-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1492,622,'_wp_attached_file','2019/06/DSCN0938.jpg'),(1493,622,'_wp_attachment_image_alt','Dscn0938'),(1494,622,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:20:\"2019/06/DSCN0938.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN0938-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1495,615,'_edit_lock','1678908294:9'),(1496,615,'_edit_last','9'),(1499,623,'_wp_attached_file','2019/06/DSCN1032.jpg'),(1500,623,'_wp_attachment_image_alt','Dscn1032'),(1501,623,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:20:\"2019/06/DSCN1032.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN1032-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1502,624,'_wp_attached_file','2019/06/DSCN1134.jpg'),(1503,624,'_wp_attachment_image_alt','Dscn1134'),(1504,624,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:20:\"2019/06/DSCN1134.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN1134-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1505,625,'_wp_attached_file','2019/06/DSCN1029.jpg'),(1506,625,'_wp_attachment_image_alt','Dscn1029'),(1507,625,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:20:\"2019/06/DSCN1029.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN1029-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1508,626,'_wp_attached_file','2019/06/DSCN0961.jpg'),(1509,626,'_wp_attachment_image_alt','Dscn0961'),(1510,626,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:20:\"2019/06/DSCN0961.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSCN0961-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1511,627,'_edit_lock','1667325743:8'),(1512,627,'_edit_last','8'),(1514,629,'_menu_item_type','post_type'),(1515,629,'_menu_item_menu_item_parent','512'),(1516,629,'_menu_item_object_id','627'),(1517,629,'_menu_item_object','post'),(1518,629,'_menu_item_target',''),(1519,629,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1520,629,'_menu_item_xfn',''),(1521,629,'_menu_item_url',''),(1525,632,'_edit_lock','1624305866:9'),(1526,632,'_edit_last','9'),(1540,642,'_wp_attached_file','2019/06/running.jpg'),(1541,642,'_wp_attachment_image_alt','Running'),(1542,642,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:265;s:4:\"file\";s:19:\"2019/06/running.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"running-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1544,644,'_wp_attached_file','2019/06/couple1.jpg'),(1545,644,'_wp_attachment_image_alt','Couple1'),(1546,644,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:298;s:4:\"file\";s:19:\"2019/06/couple1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"couple1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1548,646,'_menu_item_type','custom'),(1549,646,'_menu_item_menu_item_parent','483'),(1550,646,'_menu_item_object_id','646'),(1551,646,'_menu_item_object','custom'),(1552,646,'_menu_item_target',''),(1553,646,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1554,646,'_menu_item_xfn',''),(1555,646,'_menu_item_url',''),(1557,647,'_menu_item_type','custom'),(1558,647,'_menu_item_menu_item_parent','483'),(1559,647,'_menu_item_object_id','647'),(1560,647,'_menu_item_object','custom'),(1561,647,'_menu_item_target',''),(1562,647,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1563,647,'_menu_item_xfn',''),(1564,647,'_menu_item_url',''),(1566,648,'_menu_item_type','post_type'),(1567,648,'_menu_item_menu_item_parent','646'),(1568,648,'_menu_item_object_id','524'),(1569,648,'_menu_item_object','post'),(1570,648,'_menu_item_target',''),(1571,648,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1572,648,'_menu_item_xfn',''),(1573,648,'_menu_item_url',''),(1575,649,'_menu_item_type','post_type'),(1576,649,'_menu_item_menu_item_parent','646'),(1577,649,'_menu_item_object_id','486'),(1578,649,'_menu_item_object','post'),(1579,649,'_menu_item_target',''),(1580,649,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1581,649,'_menu_item_xfn',''),(1582,649,'_menu_item_url',''),(1584,650,'_menu_item_type','post_type'),(1585,650,'_menu_item_menu_item_parent','646'),(1586,650,'_menu_item_object_id','509'),(1587,650,'_menu_item_object','post'),(1588,650,'_menu_item_target',''),(1589,650,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1590,650,'_menu_item_xfn',''),(1591,650,'_menu_item_url',''),(1593,651,'_menu_item_type','post_type'),(1594,651,'_menu_item_menu_item_parent','646'),(1595,651,'_menu_item_object_id','469'),(1596,651,'_menu_item_object','post'),(1597,651,'_menu_item_target',''),(1598,651,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1599,651,'_menu_item_xfn',''),(1600,651,'_menu_item_url',''),(1602,652,'_menu_item_type','post_type'),(1603,652,'_menu_item_menu_item_parent','646'),(1604,652,'_menu_item_object_id','511'),(1605,652,'_menu_item_object','post'),(1606,652,'_menu_item_target',''),(1607,652,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1608,652,'_menu_item_xfn',''),(1609,652,'_menu_item_url',''),(1611,653,'_menu_item_type','post_type'),(1612,653,'_menu_item_menu_item_parent','647'),(1613,653,'_menu_item_object_id','567'),(1614,653,'_menu_item_object','post'),(1615,653,'_menu_item_target',''),(1616,653,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1617,653,'_menu_item_xfn',''),(1618,653,'_menu_item_url',''),(1620,654,'_menu_item_type','post_type'),(1621,654,'_menu_item_menu_item_parent','647'),(1622,654,'_menu_item_object_id','582'),(1623,654,'_menu_item_object','post'),(1624,654,'_menu_item_target',''),(1625,654,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1626,654,'_menu_item_xfn',''),(1627,654,'_menu_item_url',''),(1629,655,'_menu_item_type','post_type'),(1630,655,'_menu_item_menu_item_parent','647'),(1631,655,'_menu_item_object_id','595'),(1632,655,'_menu_item_object','post'),(1633,655,'_menu_item_target',''),(1634,655,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1635,655,'_menu_item_xfn',''),(1636,655,'_menu_item_url',''),(1638,656,'_menu_item_type','post_type'),(1639,656,'_menu_item_menu_item_parent','647'),(1640,656,'_menu_item_object_id','615'),(1641,656,'_menu_item_object','post'),(1642,656,'_menu_item_target',''),(1643,656,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1644,656,'_menu_item_xfn',''),(1645,656,'_menu_item_url',''),(1647,657,'_menu_item_type','post_type'),(1648,657,'_menu_item_menu_item_parent','647'),(1649,657,'_menu_item_object_id','528'),(1650,657,'_menu_item_object','post'),(1651,657,'_menu_item_target',''),(1652,657,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1653,657,'_menu_item_xfn',''),(1654,657,'_menu_item_url',''),(1656,658,'_menu_item_type','post_type'),(1657,658,'_menu_item_menu_item_parent','647'),(1658,658,'_menu_item_object_id','533'),(1659,658,'_menu_item_object','post'),(1660,658,'_menu_item_target',''),(1661,658,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1662,658,'_menu_item_xfn',''),(1663,658,'_menu_item_url',''),(1665,659,'_menu_item_type','post_type'),(1666,659,'_menu_item_menu_item_parent','647'),(1667,659,'_menu_item_object_id','536'),(1668,659,'_menu_item_object','post'),(1669,659,'_menu_item_target',''),(1670,659,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1671,659,'_menu_item_xfn',''),(1672,659,'_menu_item_url',''),(1674,660,'_menu_item_type','post_type'),(1675,660,'_menu_item_menu_item_parent','647'),(1676,660,'_menu_item_object_id','545'),(1677,660,'_menu_item_object','post'),(1678,660,'_menu_item_target',''),(1679,660,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1680,660,'_menu_item_xfn',''),(1681,660,'_menu_item_url',''),(1683,661,'_menu_item_type','post_type'),(1684,661,'_menu_item_menu_item_parent','647'),(1685,661,'_menu_item_object_id','632'),(1686,661,'_menu_item_object','post'),(1687,661,'_menu_item_target',''),(1688,661,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1689,661,'_menu_item_xfn',''),(1690,661,'_menu_item_url',''),(1696,665,'_edit_lock','1560412228:2'),(1697,665,'_edit_last','2'),(1754,680,'_edit_lock','1600102560:11'),(1755,680,'_edit_last','2'),(1762,689,'_edit_lock','1600103299:11'),(1763,689,'_edit_last','2'),(1768,698,'_wp_attached_file','2019/06/prolotherapy-3.jpg'),(1769,698,'_wp_attachment_image_alt','Prolotherapy 3'),(1770,698,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:306;s:4:\"file\";s:26:\"2019/06/prolotherapy-3.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"prolotherapy-3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1773,703,'_edit_lock','1600103967:11'),(1774,703,'_edit_last','2'),(1788,712,'_wp_attached_file','2019/06/fully_body_joints.jpg'),(1789,712,'_wp_attachment_image_alt','Fully Body Joints'),(1790,712,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:376;s:4:\"file\";s:29:\"2019/06/fully_body_joints.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"fully_body_joints-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1809,732,'_wp_attached_file','2019/06/Stem-Cell1.jpg'),(1810,732,'_wp_attachment_image_alt','Stem Cell1'),(1811,732,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:215;s:6:\"height\";i:167;s:4:\"file\";s:22:\"2019/06/Stem-Cell1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Stem-Cell1-200x167.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1814,735,'_wp_attached_file','2019/06/Stem-Cell2.jpg'),(1815,735,'_wp_attachment_image_alt','Stem Cell2'),(1816,735,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:267;s:4:\"file\";s:22:\"2019/06/Stem-Cell2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Stem-Cell2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1837,763,'_edit_lock','1600103980:11'),(1838,763,'_edit_last','2'),(1839,764,'_wp_attached_file','2019/06/MASIVO-PROLOTERAPIA.jpg'),(1840,764,'_wp_attachment_image_alt','Masivo Proloterapia'),(1841,764,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:1849;s:4:\"file\";s:31:\"2019/06/MASIVO-PROLOTERAPIA.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"MASIVO-PROLOTERAPIA-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"MASIVO-PROLOTERAPIA-149x500.jpg\";s:5:\"width\";i:149;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1874,803,'_wp_attached_file','2019/06/testimonial-thumb-larry.png'),(1875,803,'_wp_attachment_image_alt','Testimonial Thumb Larry'),(1876,803,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:68;s:6:\"height\";i:68;s:4:\"file\";s:35:\"2019/06/testimonial-thumb-larry.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1877,806,'_wp_attached_file','2019/06/woman-eating-fruit.jpg'),(1878,806,'_wp_attachment_image_alt','Woman Eating Fruit'),(1879,806,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:253;s:4:\"file\";s:30:\"2019/06/woman-eating-fruit.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"woman-eating-fruit-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1884,812,'_wp_attached_file','2019/06/header-orthoregen-1.jpg'),(1885,812,'_wp_attachment_image_alt','Header Orthoregen 1'),(1886,812,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2550;s:6:\"height\";i:778;s:4:\"file\";s:31:\"2019/06/header-orthoregen-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"header-orthoregen-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"header-orthoregen-1-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"header-orthoregen-1-768x234.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1887,816,'_wp_attached_file','2019/06/header-orthoregen-9.jpg'),(1888,816,'_wp_attachment_image_alt','Header Orthoregen 9'),(1889,816,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2550;s:6:\"height\";i:779;s:4:\"file\";s:31:\"2019/06/header-orthoregen-9.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"header-orthoregen-9-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"header-orthoregen-9-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"header-orthoregen-9-768x235.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1890,817,'_wp_attached_file','2019/06/header-orthoregen-11.jpg'),(1891,817,'_wp_attachment_image_alt','Header Orthoregen 11'),(1892,817,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1141;s:6:\"height\";i:349;s:4:\"file\";s:32:\"2019/06/header-orthoregen-11.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"header-orthoregen-11-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"header-orthoregen-11-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"header-orthoregen-11-768x235.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1899,825,'_wp_attached_file','2019/06/media-placeholder.jpg'),(1900,825,'_wp_attachment_image_alt','Media Placeholder'),(1901,825,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:262;s:4:\"file\";s:29:\"2019/06/media-placeholder.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"media-placeholder-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1904,830,'_wp_attached_file','2019/06/tv-show-logo.png'),(1905,830,'_wp_attachment_image_alt','Tv Show Logo'),(1906,830,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:166;s:6:\"height\";i:53;s:4:\"file\";s:24:\"2019/06/tv-show-logo.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1911,838,'_wp_attached_file','2019/06/Logo-OrthoRegen.png'),(1912,838,'_wp_attachment_image_alt','Logo Orthoregen'),(1913,838,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:119;s:4:\"file\";s:27:\"2019/06/Logo-OrthoRegen.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Logo-OrthoRegen-200x119.png\";s:5:\"width\";i:200;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1916,842,'_wp_attached_file','2019/06/Maryland-finish-line-C-160.jpg'),(1917,842,'_wp_attachment_image_alt','Maryland Finish Line C 160'),(1918,842,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:38:\"2019/06/Maryland-finish-line-C-160.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1919,843,'_wp_attached_file','2019/06/Santa-Rosa-2017-Finish-Square.jpg'),(1920,843,'_wp_attachment_image_alt','Santa Rosa 2017 Finish Square'),(1921,843,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:41:\"2019/06/Santa-Rosa-2017-Finish-Square.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1922,844,'_wp_attached_file','2019/06/Switzerland-Finish-Line-2016-Square.jpg'),(1923,844,'_wp_attachment_image_alt','Switzerland Finish Line 2016 Square'),(1924,844,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:47:\"2019/06/Switzerland-Finish-Line-2016-Square.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1925,845,'_wp_attached_file','2019/06/cozumel-2011-finish-Square.jpg'),(1926,845,'_wp_attachment_image_alt','Cozumel 2011 Finish Square'),(1927,845,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:38:\"2019/06/cozumel-2011-finish-Square.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1928,846,'_wp_attached_file','2019/06/Cozumel-2016-Finish-Square.jpg'),(1929,846,'_wp_attachment_image_alt','Cozumel 2016 Finish Square'),(1930,846,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:38:\"2019/06/Cozumel-2016-Finish-Square.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1931,847,'_wp_attached_file','2019/06/Cozumel-Finish-2015-Square.jpg'),(1932,847,'_wp_attachment_image_alt','Cozumel Finish 2015 Square'),(1933,847,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:38:\"2019/06/Cozumel-Finish-2015-Square.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1934,848,'_wp_attached_file','2019/06/finish_2012-Square.jpg'),(1935,848,'_wp_attachment_image_alt','Finish 2012 Square'),(1936,848,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:30:\"2019/06/finish_2012-Square.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1937,849,'_wp_attached_file','2019/06/finish_2013-Square.jpg'),(1938,849,'_wp_attachment_image_alt','Finish 2013 Square'),(1939,849,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:30:\"2019/06/finish_2013-Square.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1940,850,'_wp_attached_file','2019/06/ironman2014-large-Square.jpg'),(1941,850,'_wp_attachment_image_alt','Ironman2014 Large Square'),(1942,850,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:36:\"2019/06/ironman2014-large-Square.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1943,851,'_wp_attached_file','2019/06/ironman-brazil-finish-Square.jpg'),(1944,851,'_wp_attachment_image_alt','Ironman Brazil Finish Square'),(1945,851,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:40:\"2019/06/ironman-brazil-finish-Square.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1987,3,'_edit_lock','1600103971:11'),(2000,888,'_wp_attached_file','2019/06/cells-blue-thumb.jpg'),(2001,888,'_wp_attachment_image_alt','Cells Blue Thumb'),(2002,888,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:62;s:6:\"height\";i:62;s:4:\"file\";s:28:\"2019/06/cells-blue-thumb.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2006,890,'_wp_attached_file','2019/06/blood-cell.jpg'),(2007,890,'_wp_attachment_image_alt','Blood Cell'),(2008,890,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:75;s:6:\"height\";i:75;s:4:\"file\";s:22:\"2019/06/blood-cell.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2009,891,'_wp_attached_file','2019/06/stem-cells-green-2-small.jpg'),(2010,891,'_wp_attachment_image_alt','Stem Cells Green 2 Small'),(2011,891,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:75;s:6:\"height\";i:75;s:4:\"file\";s:36:\"2019/06/stem-cells-green-2-small.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2040,945,'_wp_attached_file','2019/06/drfields-Prolo-Spanish-1.jpg'),(2041,945,'_wp_attachment_image_alt','Drfields Prolo Spanish 1'),(2042,945,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:124;s:6:\"height\";i:167;s:4:\"file\";s:36:\"2019/06/drfields-Prolo-Spanish-1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2043,946,'_wp_attached_file','2019/06/drfields-Prolo-Spanish-2.jpg'),(2044,946,'_wp_attachment_image_alt','Drfields Prolo Spanish 2'),(2045,946,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:123;s:6:\"height\";i:165;s:4:\"file\";s:36:\"2019/06/drfields-Prolo-Spanish-2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2046,947,'_wp_attached_file','2019/06/drfields-Prolo-Spanish-3.jpg'),(2047,947,'_wp_attachment_image_alt','Drfields Prolo Spanish 3'),(2048,947,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:127;s:6:\"height\";i:164;s:4:\"file\";s:36:\"2019/06/drfields-Prolo-Spanish-3.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2051,951,'_wp_attached_file','2019/06/testimonial-thumb-christopher.png'),(2052,951,'_wp_attachment_image_alt','Testimonial Thumb Christopher'),(2053,951,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:68;s:6:\"height\";i:68;s:4:\"file\";s:41:\"2019/06/testimonial-thumb-christopher.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2054,953,'_wp_attached_file','2019/06/drfields-Prolo-Spanish-6.jpg'),(2055,953,'_wp_attachment_image_alt','Drfields Prolo Spanish 6'),(2056,953,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:162;s:6:\"height\";i:215;s:4:\"file\";s:36:\"2019/06/drfields-Prolo-Spanish-6.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"drfields-Prolo-Spanish-6-162x200.jpg\";s:5:\"width\";i:162;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2057,954,'_wp_attached_file','2019/06/drfields-Prolo-Spanish-7.jpg'),(2058,954,'_wp_attachment_image_alt','Drfields Prolo Spanish 7'),(2059,954,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:235;s:6:\"height\";i:200;s:4:\"file\";s:36:\"2019/06/drfields-Prolo-Spanish-7.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"drfields-Prolo-Spanish-7-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2060,955,'_wp_attached_file','2019/06/drfields-bio-img-1.jpg'),(2061,955,'_wp_attachment_image_alt','Drfields Bio Img'),(2062,955,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:216;s:4:\"file\";s:30:\"2019/06/drfields-bio-img-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"drfields-bio-img-1-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2063,956,'_wp_attached_file','2019/06/drfields-Prolo-Spanish-4.jpg'),(2064,956,'_wp_attachment_image_alt','Drfields Prolo Spanish 4'),(2065,956,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:230;s:6:\"height\";i:152;s:4:\"file\";s:36:\"2019/06/drfields-Prolo-Spanish-4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"drfields-Prolo-Spanish-4-200x152.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2066,957,'_wp_attached_file','2019/06/drfields-Prolo-Spanish-5.jpg'),(2067,957,'_wp_attachment_image_alt','Drfields Prolo Spanish 5'),(2068,957,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:179;s:6:\"height\";i:297;s:4:\"file\";s:36:\"2019/06/drfields-Prolo-Spanish-5.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"drfields-Prolo-Spanish-5-179x200.jpg\";s:5:\"width\";i:179;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2083,3,'_edit_last','11'),(2085,977,'_edit_lock','1600104069:11'),(2086,977,'_edit_last','11'),(2090,1003,'_wp_attached_file','2019/06/man-knee-pain.jpg'),(2091,1003,'_wp_attachment_image_alt','Man Knee Pain'),(2092,1003,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:195;s:4:\"file\";s:25:\"2019/06/man-knee-pain.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"man-knee-pain-200x195.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2093,1007,'_wp_attached_file','2019/06/Prolotherapy_lecture.pdf'),(2094,1012,'_edit_lock','1600104357:11'),(2095,1012,'_edit_last','2'),(2096,1013,'_wp_attached_file','2019/06/Dr.-Fields-interviewed.jpg'),(2097,1013,'_wp_attachment_image_alt','Dr. Fields Interviewed'),(2098,1013,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:34:\"2019/06/Dr.-Fields-interviewed.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Dr.-Fields-interviewed-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2100,1027,'_wp_attached_file','2019/06/Dextrose-Prolotherapy-Overview.jpg'),(2101,1027,'_wp_attachment_image_alt','Dextrose Prolotherapy Overview'),(2102,1027,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:42:\"2019/06/Dextrose-Prolotherapy-Overview.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dextrose-Prolotherapy-Overview-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2141,1045,'_edit_lock','1600102568:11'),(2142,1045,'_edit_last','2'),(2152,1048,'_wp_attached_file','2019/06/elbow-pain.png'),(2153,1048,'_wp_attachment_image_alt','Elbow Pain'),(2154,1048,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:75;s:6:\"height\";i:75;s:4:\"file\";s:22:\"2019/06/elbow-pain.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2155,1049,'_wp_attached_file','2019/06/neck-pain.png'),(2156,1049,'_wp_attachment_image_alt','Neck Pain'),(2157,1049,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:75;s:6:\"height\";i:75;s:4:\"file\";s:21:\"2019/06/neck-pain.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2158,1050,'_wp_attached_file','2019/06/shoulder-pain.png'),(2159,1050,'_wp_attachment_image_alt','Shoulder Pain'),(2160,1050,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:75;s:6:\"height\";i:75;s:4:\"file\";s:25:\"2019/06/shoulder-pain.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2161,1051,'_wp_attached_file','2019/06/knee-pain.png'),(2162,1051,'_wp_attachment_image_alt','Knee Pain'),(2163,1051,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:75;s:6:\"height\";i:75;s:4:\"file\";s:21:\"2019/06/knee-pain.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2166,1056,'_wp_attached_file','2019/06/leg-extended.jpg'),(2167,1056,'_wp_attachment_image_alt','Leg Extended'),(2168,1056,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:266;s:4:\"file\";s:24:\"2019/06/leg-extended.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"leg-extended-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2170,1061,'_wp_attached_file','2019/06/PDF_icon_large.jpg'),(2171,1061,'_wp_attachment_image_alt','Pdf Icon Large'),(2172,1061,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:192;s:6:\"height\";i:192;s:4:\"file\";s:26:\"2019/06/PDF_icon_large.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2173,1063,'_wp_attached_file','2019/06/hip-pain.png'),(2174,1063,'_wp_attachment_image_alt','Hip Pain'),(2175,1063,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:75;s:6:\"height\";i:75;s:4:\"file\";s:20:\"2019/06/hip-pain.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2176,1064,'_wp_attached_file','2019/06/back-pain.png'),(2177,1064,'_wp_attachment_image_alt','Back Pain'),(2178,1064,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:75;s:6:\"height\";i:75;s:4:\"file\";s:21:\"2019/06/back-pain.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2179,1065,'_wp_attached_file','2019/06/finger-pain.png'),(2180,1065,'_wp_attachment_image_alt','Finger Pain'),(2181,1065,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:75;s:6:\"height\";i:75;s:4:\"file\";s:23:\"2019/06/finger-pain.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2182,1066,'_wp_attached_file','2019/06/foot-pain.png'),(2183,1066,'_wp_attachment_image_alt','Foot Pain'),(2184,1066,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:75;s:6:\"height\";i:75;s:4:\"file\";s:21:\"2019/06/foot-pain.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2185,1068,'_wp_attached_file','2019/06/Drfields-skiier.jpg'),(2186,1068,'_wp_attachment_image_alt','Drfields Skiier'),(2187,1068,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:283;s:4:\"file\";s:27:\"2019/06/Drfields-skiier.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Drfields-skiier-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2188,1070,'_wp_attached_file','2019/06/woman-jumping-silhouette.jpg'),(2189,1070,'_wp_attachment_image_alt','Woman Jumping Silhouette'),(2190,1070,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:301;s:4:\"file\";s:36:\"2019/06/woman-jumping-silhouette.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"woman-jumping-silhouette-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2191,1075,'_wp_attached_file','2019/06/knee-pain.jpg'),(2192,1075,'_wp_attachment_image_alt','Knee Pain'),(2193,1075,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:233;s:4:\"file\";s:21:\"2019/06/knee-pain.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"knee-pain-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2194,1078,'_wp_attached_file','2019/06/woman-smiling.jpg'),(2195,1078,'_wp_attachment_image_alt','Woman Smiling'),(2196,1078,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:184;s:4:\"file\";s:25:\"2019/06/woman-smiling.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"woman-smiling-200x184.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2197,1081,'_wp_attached_file','2019/06/shoulder-joint-pain.jpg'),(2198,1081,'_wp_attachment_image_alt','Shoulder Joint Pain'),(2199,1081,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:199;s:4:\"file\";s:31:\"2019/06/shoulder-joint-pain.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"shoulder-joint-pain-200x199.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2200,1084,'_wp_attached_file','2019/06/older-man-pain.jpg'),(2201,1084,'_wp_attachment_image_alt','Older Man Pain'),(2202,1084,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2019/06/older-man-pain.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"older-man-pain-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2203,1086,'_wp_attached_file','2019/06/joint-x-ray.jpeg'),(2204,1086,'_wp_attachment_image_alt','Joint X Ray'),(2205,1086,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:267;s:4:\"file\";s:24:\"2019/06/joint-x-ray.jpeg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"joint-x-ray-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2206,1088,'_wp_attached_file','2019/06/woman-pain.jpeg'),(2207,1088,'_wp_attachment_image_alt','Woman Pain'),(2208,1088,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2019/06/woman-pain.jpeg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"woman-pain-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2209,1090,'_wp_attached_file','2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg'),(2210,1090,'_wp_attachment_image_alt','Dr. Fields Lectures In Las Vegas To 400+ Physicians'),(2211,1090,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:62:\"2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2238,1102,'_wp_attached_file','2019/06/Peter-A.-Fields-MD-DC.jpg'),(2239,1102,'_wp_attachment_image_alt','Peter A. Fields, Md, Dc'),(2240,1102,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:33:\"2019/06/Peter-A.-Fields-MD-DC.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Peter-A.-Fields-MD-DC-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2241,1103,'_wp_attached_file','2019/06/A4M-Lecture-Las-Vegas.jpg'),(2242,1103,'_wp_attachment_image_alt','A4m Lecture Las Vegas'),(2243,1103,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:224;s:4:\"file\";s:33:\"2019/06/A4M-Lecture-Las-Vegas.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"A4M-Lecture-Las-Vegas-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2244,1107,'_wp_attached_file','2019/06/Antioxidants.jpg'),(2245,1107,'_wp_attachment_image_alt','Antioxidants'),(2246,1107,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:301;s:4:\"file\";s:24:\"2019/06/Antioxidants.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Antioxidants-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:20:\"andreaobzerova/123RF\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2247,1115,'_wp_attached_file','2019/06/Santa-Monica-Daily-Press-Article-2.jpg'),(2248,1115,'_wp_attachment_image_alt','Santa Monica Daily Press Article 2'),(2249,1115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:650;s:6:\"height\";i:2079;s:4:\"file\";s:46:\"2019/06/Santa-Monica-Daily-Press-Article-2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Santa-Monica-Daily-Press-Article-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Santa-Monica-Daily-Press-Article-2-156x500.jpg\";s:5:\"width\";i:156;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2250,1116,'_wp_attached_file','2019/06/Stem-Cell1-small.jpg'),(2251,1116,'_wp_attachment_image_alt','Stem Cell1 Small'),(2252,1116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:62;s:6:\"height\";i:62;s:4:\"file\";s:28:\"2019/06/Stem-Cell1-small.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2253,1123,'_wp_attached_file','2019/06/man-heart-attack-200.jpg'),(2254,1123,'_wp_attachment_image_alt','Man Heart Attack 200'),(2255,1123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:32:\"2019/06/man-heart-attack-200.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"man-heart-attack-200-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2256,1125,'_wp_attached_file','2019/06/knee-illustration-200.jpg'),(2257,1125,'_wp_attachment_image_alt','Knee Illustration 200'),(2258,1125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:266;s:4:\"file\";s:33:\"2019/06/knee-illustration-200.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"knee-illustration-200-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2259,1129,'_wp_attached_file','2019/06/health-insurance.jpg'),(2260,1129,'_wp_attachment_image_alt','Health Insurance'),(2261,1129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2019/06/health-insurance.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"health-insurance-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2262,1133,'_wp_attached_file','2019/06/almonds-heart.jpg'),(2263,1133,'_wp_attachment_image_alt','Almonds Heart'),(2264,1133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:25:\"2019/06/almonds-heart.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"almonds-heart-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2265,1138,'_wp_attached_file','2019/06/hands-holding-heart.jpg'),(2266,1138,'_wp_attachment_image_alt','Hands Holding Heart'),(2267,1138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:31:\"2019/06/hands-holding-heart.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"hands-holding-heart-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2268,1142,'_wp_attached_file','2019/06/Healthy-Breakfast.jpg'),(2269,1142,'_wp_attachment_image_alt','Healthy Breakfast'),(2270,1142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2019/06/Healthy-Breakfast.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Healthy-Breakfast-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2271,1144,'_wp_attached_file','2019/06/Body-Cleansing-Foods.jpg'),(2272,1144,'_wp_attachment_image_alt','Body Cleansing Foods'),(2273,1144,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:32:\"2019/06/Body-Cleansing-Foods.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Body-Cleansing-Foods-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2277,1159,'_wp_attached_file','2019/06/Soft-Drinks.jpg'),(2278,1159,'_wp_attachment_image_alt','Soft Drinks'),(2279,1159,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:261;s:4:\"file\";s:23:\"2019/06/Soft-Drinks.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Soft-Drinks-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2280,1162,'_wp_attached_file','2019/06/Supplementation.jpg'),(2281,1162,'_wp_attachment_image_alt','Supplementation'),(2282,1162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2019/06/Supplementation.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Supplementation-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2284,1166,'_wp_attached_file','2019/06/LATC-Logo.jpg'),(2285,1166,'_wp_attachment_image_alt','Latc Logo'),(2286,1166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:88;s:4:\"file\";s:21:\"2019/06/LATC-Logo.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2287,1174,'_wp_attached_file','2019/06/Napping.jpg'),(2288,1174,'_wp_attachment_image_alt','Napping'),(2289,1174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:19:\"2019/06/Napping.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Napping-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2290,1178,'_wp_attached_file','2019/06/Vitamin-D.jpg'),(2291,1178,'_wp_attachment_image_alt','Vitamin D'),(2292,1178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2019/06/Vitamin-D.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Vitamin-D-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2293,1181,'_wp_attached_file','2019/06/Sleeping.jpg'),(2294,1181,'_wp_attachment_image_alt','Sleeping'),(2295,1181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2019/06/Sleeping.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Sleeping-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2296,1183,'_wp_attached_file','2019/06/Exercise-Energy.jpg'),(2297,1183,'_wp_attachment_image_alt','Exercise Energy'),(2298,1183,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:285;s:4:\"file\";s:27:\"2019/06/Exercise-Energy.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Exercise-Energy-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2299,1185,'_wp_attached_file','2019/06/Foods-That-Burn-Fat.jpg'),(2300,1185,'_wp_attachment_image_alt','Foods That Burn Fat'),(2301,1185,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:313;s:4:\"file\";s:31:\"2019/06/Foods-That-Burn-Fat.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Foods-That-Burn-Fat-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2302,1187,'_wp_attached_file','2019/06/Woman-Fruit.jpg'),(2303,1187,'_wp_attachment_image_alt','Woman Fruit'),(2304,1187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2019/06/Woman-Fruit.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Woman-Fruit-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2306,1194,'_wp_attached_file','2019/06/townsend-july2014.jpg'),(2307,1194,'_wp_attachment_image_alt','Townsend July2014'),(2308,1194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:201;s:6:\"height\";i:259;s:4:\"file\";s:29:\"2019/06/townsend-july2014.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"townsend-july2014-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2309,1195,'_wp_attached_file','2019/06/townsend-feb-mar-2014.jpg'),(2310,1195,'_wp_attachment_image_alt','Townsend Feb Mar 2014'),(2311,1195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:287;s:4:\"file\";s:33:\"2019/06/townsend-feb-mar-2014.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"townsend-feb-mar-2014-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2312,1196,'_wp_attached_file','2019/06/townsend-january-2014.jpg'),(2313,1196,'_wp_attachment_image_alt','Townsend January 2014'),(2314,1196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:287;s:4:\"file\";s:33:\"2019/06/townsend-january-2014.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"townsend-january-2014-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2315,1197,'_wp_attached_file','2019/06/townsend-december-2013.jpg'),(2316,1197,'_wp_attachment_image_alt','Townsend December 2013'),(2317,1197,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:287;s:4:\"file\";s:34:\"2019/06/townsend-december-2013.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"townsend-december-2013-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2318,1198,'_wp_attached_file','2019/06/townsend-october-2013.jpg'),(2319,1198,'_wp_attachment_image_alt','Townsend October 2013'),(2320,1198,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:287;s:4:\"file\";s:33:\"2019/06/townsend-october-2013.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"townsend-october-2013-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2321,1199,'_wp_attached_file','2019/06/townsend-august-2013.jpg'),(2322,1199,'_wp_attachment_image_alt','Townsend August 2013'),(2323,1199,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:287;s:4:\"file\";s:32:\"2019/06/townsend-august-2013.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"townsend-august-2013-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2324,1200,'_wp_attached_file','2019/06/townsend-july-2013.jpg'),(2325,1200,'_wp_attachment_image_alt','Townsend July 2013'),(2326,1200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:287;s:4:\"file\";s:30:\"2019/06/townsend-july-2013.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"townsend-july-2013-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2327,1201,'_wp_attached_file','2019/06/towesend_letter.jpg'),(2328,1201,'_wp_attachment_image_alt','Towesend Letter'),(2329,1201,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:287;s:4:\"file\";s:27:\"2019/06/towesend_letter.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"towesend_letter-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2332,1207,'_wp_attached_file','2019/06/Fields-July-article-2014_Page_1.jpg'),(2333,1207,'_wp_attachment_image_alt','Fields July Article 2014 Page 1'),(2334,1207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1244;s:4:\"file\";s:43:\"2019/06/Fields-July-article-2014_Page_1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Fields-July-article-2014_Page_1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Fields-July-article-2014_Page_1-384x500.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Fields-July-article-2014_Page_1-768x1000.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2335,1208,'_wp_attached_file','2019/06/Fields-July-article2014_Page_2.jpg'),(2336,1208,'_wp_attachment_image_alt','Fields July Article2014 Page 2'),(2337,1208,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1650;s:6:\"height\";i:2150;s:4:\"file\";s:42:\"2019/06/Fields-July-article2014_Page_2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Fields-July-article2014_Page_2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Fields-July-article2014_Page_2-384x500.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Fields-July-article2014_Page_2-768x1001.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1001;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2340,1212,'_wp_attached_file','2019/06/townsend-article-feb-mar-2014-1.gif'),(2341,1212,'_wp_attachment_image_alt','Townsend Article Feb Mar 2014 1'),(2342,1212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1249;s:4:\"file\";s:43:\"2019/06/townsend-article-feb-mar-2014-1.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"townsend-article-feb-mar-2014-1-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"townsend-article-feb-mar-2014-1-382x500.gif\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"townsend-article-feb-mar-2014-1-768x1004.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2343,1213,'_wp_attached_file','2019/06/townsend-article-feb-mar-2014-2.gif'),(2344,1213,'_wp_attachment_image_alt','Townsend Article Feb Mar 2014 2'),(2345,1213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1249;s:4:\"file\";s:43:\"2019/06/townsend-article-feb-mar-2014-2.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"townsend-article-feb-mar-2014-2-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"townsend-article-feb-mar-2014-2-382x500.gif\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"townsend-article-feb-mar-2014-2-768x1004.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2348,1219,'_wp_attached_file','2019/06/townsend-article-jan-2014-1.gif'),(2349,1219,'_wp_attachment_image_alt','Townsend Article Jan 2014 1'),(2350,1219,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1249;s:4:\"file\";s:39:\"2019/06/townsend-article-jan-2014-1.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"townsend-article-jan-2014-1-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"townsend-article-jan-2014-1-382x500.gif\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"townsend-article-jan-2014-1-768x1004.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2351,1220,'_wp_attached_file','2019/06/townsend-article-jan-2014-2.gif'),(2352,1220,'_wp_attachment_image_alt','Townsend Article Jan 2014 2'),(2353,1220,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1249;s:4:\"file\";s:39:\"2019/06/townsend-article-jan-2014-2.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"townsend-article-jan-2014-2-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"townsend-article-jan-2014-2-382x500.gif\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"townsend-article-jan-2014-2-768x1004.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2354,1221,'_wp_attached_file','2019/06/townsend-article-jan-2014-3.gif'),(2355,1221,'_wp_attachment_image_alt','Townsend Article Jan 2014 3'),(2356,1221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1249;s:4:\"file\";s:39:\"2019/06/townsend-article-jan-2014-3.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"townsend-article-jan-2014-3-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"townsend-article-jan-2014-3-382x500.gif\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"townsend-article-jan-2014-3-768x1004.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2368,1230,'_wp_attached_file','2019/06/townsend-article-dec-2013-1.jpg'),(2369,1230,'_wp_attachment_image_alt','Townsend Article Dec 2013 1'),(2370,1230,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1249;s:4:\"file\";s:39:\"2019/06/townsend-article-dec-2013-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"townsend-article-dec-2013-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"townsend-article-dec-2013-1-382x500.jpg\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"townsend-article-dec-2013-1-768x1004.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2371,1231,'_wp_attached_file','2019/06/townsend-article-dec-2013-2.gif'),(2372,1231,'_wp_attachment_image_alt','Townsend Article Dec 2013 2'),(2373,1231,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1249;s:4:\"file\";s:39:\"2019/06/townsend-article-dec-2013-2.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"townsend-article-dec-2013-2-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"townsend-article-dec-2013-2-382x500.gif\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"townsend-article-dec-2013-2-768x1004.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2374,1232,'_wp_attached_file','2019/06/townsend-article-dec-2013-3.gif'),(2375,1232,'_wp_attachment_image_alt','Townsend Article Dec 2013 3'),(2376,1232,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1249;s:4:\"file\";s:39:\"2019/06/townsend-article-dec-2013-3.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"townsend-article-dec-2013-3-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"townsend-article-dec-2013-3-382x500.gif\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"townsend-article-dec-2013-3-768x1004.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2379,1235,'_wp_attached_file','2019/06/townsend-article-october-2013-1.gif'),(2380,1235,'_wp_attachment_image_alt','Townsend Article October 2013 1'),(2381,1235,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1241;s:4:\"file\";s:43:\"2019/06/townsend-article-october-2013-1.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"townsend-article-october-2013-1-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"townsend-article-october-2013-1-385x500.gif\";s:5:\"width\";i:385;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"townsend-article-october-2013-1-768x998.gif\";s:5:\"width\";i:768;s:6:\"height\";i:998;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2382,1236,'_wp_attached_file','2019/06/townsend-article-october-2013-2.gif'),(2383,1236,'_wp_attachment_image_alt','Townsend Article October 2013 2'),(2384,1236,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1251;s:4:\"file\";s:43:\"2019/06/townsend-article-october-2013-2.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"townsend-article-october-2013-2-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"townsend-article-october-2013-2-382x500.gif\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"townsend-article-october-2013-2-768x1006.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1006;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2387,1240,'_wp_attached_file','2019/06/townsend-article-august-2013-1.gif'),(2388,1240,'_wp_attachment_image_alt','Townsend Article August 2013 1'),(2389,1240,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1249;s:4:\"file\";s:42:\"2019/06/townsend-article-august-2013-1.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"townsend-article-august-2013-1-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"townsend-article-august-2013-1-382x500.gif\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"townsend-article-august-2013-1-768x1004.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2390,1241,'_wp_attached_file','2019/06/townsend-article-august-2013-2.gif'),(2391,1241,'_wp_attachment_image_alt','Townsend Article August 2013 2'),(2392,1241,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1241;s:4:\"file\";s:42:\"2019/06/townsend-article-august-2013-2.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"townsend-article-august-2013-2-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"townsend-article-august-2013-2-385x500.gif\";s:5:\"width\";i:385;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"townsend-article-august-2013-2-768x998.gif\";s:5:\"width\";i:768;s:6:\"height\";i:998;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2395,1244,'_wp_attached_file','2019/06/townsend-article-july-2013-1.gif'),(2396,1244,'_wp_attachment_image_alt','Townsend Article July 2013 1'),(2397,1244,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1252;s:4:\"file\";s:40:\"2019/06/townsend-article-july-2013-1.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"townsend-article-july-2013-1-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"townsend-article-july-2013-1-381x500.gif\";s:5:\"width\";i:381;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"townsend-article-july-2013-1-768x1007.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1007;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2398,1245,'_wp_attached_file','2019/06/townsend-article-july-2013-2.gif'),(2399,1245,'_wp_attachment_image_alt','Townsend Article July 2013 2'),(2400,1245,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1249;s:4:\"file\";s:40:\"2019/06/townsend-article-july-2013-2.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"townsend-article-july-2013-2-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"townsend-article-july-2013-2-382x500.gif\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"townsend-article-july-2013-2-768x1004.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2403,1248,'_wp_attached_file','2019/06/townsend-article-june-2013-2.gif'),(2404,1248,'_wp_attachment_image_alt','Townsend Article June 2013 2'),(2405,1248,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1248;s:4:\"file\";s:40:\"2019/06/townsend-article-june-2013-2.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"townsend-article-june-2013-2-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"townsend-article-june-2013-2-383x500.gif\";s:5:\"width\";i:383;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"townsend-article-june-2013-2-768x1004.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2406,1249,'_wp_attached_file','2019/06/townsend-article-june-2013-3.gif'),(2407,1249,'_wp_attachment_image_alt','Townsend Article June 2013 3'),(2408,1249,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1241;s:4:\"file\";s:40:\"2019/06/townsend-article-june-2013-3.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"townsend-article-june-2013-3-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"townsend-article-june-2013-3-385x500.gif\";s:5:\"width\";i:385;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"townsend-article-june-2013-3-768x998.gif\";s:5:\"width\";i:768;s:6:\"height\";i:998;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2409,1254,'_wp_attached_file','2019/06/chronic-pain-video0.jpg'),(2410,1254,'_wp_attachment_image_alt','Chronic Pain Video0'),(2411,1254,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:31:\"2019/06/chronic-pain-video0.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"chronic-pain-video0-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2412,1255,'_wp_attached_file','2019/06/chronic-pain-video1.jpg'),(2413,1255,'_wp_attachment_image_alt','Chronic Pain Video1'),(2414,1255,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:31:\"2019/06/chronic-pain-video1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"chronic-pain-video1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2419,1260,'_wp_attached_file','2019/06/Mark-neck-pain.jpg'),(2420,1260,'_wp_attachment_image_alt','Mark Neck Pain'),(2421,1260,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:26:\"2019/06/Mark-neck-pain.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Mark-neck-pain-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2423,1262,'_wp_attached_file','2019/06/Wilbur-Shoulder.jpg'),(2424,1262,'_wp_attachment_image_alt','Wilbur Shoulder'),(2425,1262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:27:\"2019/06/Wilbur-Shoulder.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Wilbur-Shoulder-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2427,1264,'_wp_attached_file','2019/06/Jennifer-Elbow.jpg'),(2428,1264,'_wp_attachment_image_alt','Jennifer Elbow'),(2429,1264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:26:\"2019/06/Jennifer-Elbow.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Jennifer-Elbow-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2433,1268,'_edit_last','2'),(2434,1268,'_edit_lock','1600104360:11'),(2453,1272,'_menu_item_type','post_type'),(2454,1272,'_menu_item_menu_item_parent','1852'),(2455,1272,'_menu_item_object_id','1012'),(2456,1272,'_menu_item_object','page'),(2457,1272,'_menu_item_target',''),(2458,1272,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2459,1272,'_menu_item_xfn',''),(2460,1272,'_menu_item_url',''),(2463,1274,'_wp_attached_file','2019/06/Chris-Hip-injury.jpg'),(2464,1274,'_wp_attachment_image_alt','Chris Hip Injury'),(2465,1274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:28:\"2019/06/Chris-Hip-injury.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Chris-Hip-injury-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2468,1278,'_wp_attached_file','2019/06/Adam-Knee.jpg'),(2469,1278,'_wp_attachment_image_alt','Adam Knee'),(2470,1278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:21:\"2019/06/Adam-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Adam-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2471,1279,'_wp_attached_file','2019/06/Christa-Knee.jpg'),(2472,1279,'_wp_attachment_image_alt','Christa Knee'),(2473,1279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:24:\"2019/06/Christa-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Christa-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2481,1285,'_wp_attached_file','2019/06/Dr.Doug-–-Headaches-Shoulder.jpg'),(2482,1285,'_wp_attachment_image_alt','Dr.doug – Headaches & Shoulder'),(2483,1285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:42:\"2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dr.Doug-–-Headaches-Shoulder-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2490,1293,'_wp_attached_file','2019/06/Foot-Injury-Treatment-Joel.jpg'),(2491,1293,'_wp_attachment_image_alt','Foot Injury Treatment Joel'),(2492,1293,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:38:\"2019/06/Foot-Injury-Treatment-Joel.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Foot-Injury-Treatment-Joel-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2497,1299,'_wp_attached_file','2019/06/Suzie-Wrist.jpg'),(2498,1299,'_wp_attachment_image_alt','Suzie Wrist'),(2499,1299,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:23:\"2019/06/Suzie-Wrist.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Suzie-Wrist-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2505,1307,'_wp_attached_file','2019/06/Knee-Small.jpg'),(2506,1307,'_wp_attachment_image_alt','Knee Small'),(2507,1307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2019/06/Knee-Small.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Knee-Small-150x200.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2529,1340,'_edit_lock','1615334902:11'),(2530,1340,'_edit_last','11'),(2531,1342,'_menu_item_type','post_type'),(2532,1342,'_menu_item_menu_item_parent','1852'),(2533,1342,'_menu_item_object_id','1340'),(2534,1342,'_menu_item_object','page'),(2535,1342,'_menu_item_target',''),(2536,1342,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2537,1342,'_menu_item_xfn',''),(2538,1342,'_menu_item_url',''),(2541,1347,'_wp_attached_file','2019/06/stem-videotestimonial.jpg'),(2542,1347,'_wp_attachment_image_alt','Stem Videotestimonial'),(2543,1347,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:33:\"2019/06/stem-videotestimonial.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"stem-videotestimonial-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2544,1340,'_wp_page_template','default'),(2545,1349,'_wp_attached_file','2019/06/hip-pain-medium.png'),(2546,1349,'_wp_attachment_image_alt','Hip Pain Medium'),(2547,1349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:27:\"2019/06/hip-pain-medium.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2548,1350,'_wp_attached_file','2019/06/finger-pain-medium.png'),(2549,1350,'_wp_attachment_image_alt','Finger Pain Medium'),(2550,1350,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:30:\"2019/06/finger-pain-medium.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2551,1351,'_wp_attached_file','2019/06/elbow-pain-medium.png'),(2552,1351,'_wp_attachment_image_alt','Elbow Pain Medium'),(2553,1351,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:29:\"2019/06/elbow-pain-medium.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2554,1352,'_wp_attached_file','2019/06/back-pain-medium.png'),(2555,1352,'_wp_attachment_image_alt','Back Pain Medium'),(2556,1352,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:28:\"2019/06/back-pain-medium.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2557,1353,'_wp_attached_file','2019/06/knee-pain-medium.png'),(2558,1353,'_wp_attachment_image_alt','Knee Pain Medium'),(2559,1353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:28:\"2019/06/knee-pain-medium.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2560,1354,'_wp_attached_file','2019/06/foot-pain-medium.png'),(2561,1354,'_wp_attachment_image_alt','Foot Pain Medium'),(2562,1354,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:28:\"2019/06/foot-pain-medium.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2584,1371,'_wp_attached_file','2019/06/Interview-with-Dr.-Fields.jpg'),(2585,1371,'_wp_attachment_image_alt','Interview With Dr. Fields'),(2586,1371,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:37:\"2019/06/Interview-with-Dr.-Fields.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Interview-with-Dr.-Fields-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2587,1372,'_edit_lock','1560518289:2'),(2588,1372,'_edit_last','2'),(2590,1374,'_edit_lock','1600104064:11'),(2591,1374,'_edit_last','2'),(2596,1374,'_wp_page_template','default'),(2597,1376,'_edit_lock','1619569221:9'),(2598,1376,'_edit_last','9'),(2605,1379,'_edit_lock','1618952058:9'),(2606,1379,'_edit_last','9'),(2611,1381,'_edit_lock','1618539484:9'),(2612,1381,'_edit_last','9'),(2623,1385,'_menu_item_type','custom'),(2624,1385,'_menu_item_menu_item_parent','0'),(2625,1385,'_menu_item_object_id','1385'),(2626,1385,'_menu_item_object','custom'),(2627,1385,'_menu_item_target',''),(2628,1385,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2629,1385,'_menu_item_xfn',''),(2630,1385,'_menu_item_url',''),(2648,1372,'_wp_old_slug','prolo-news2'),(2649,1388,'_menu_item_type','taxonomy'),(2650,1388,'_menu_item_menu_item_parent','1385'),(2651,1388,'_menu_item_object_id','32'),(2652,1388,'_menu_item_object','category'),(2653,1388,'_menu_item_target',''),(2654,1388,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2655,1388,'_menu_item_xfn',''),(2656,1388,'_menu_item_url',''),(2658,1389,'_edit_lock','1617665192:9'),(2659,1389,'_edit_last','9'),(2661,689,'_wp_page_template','default'),(2662,1391,'_edit_lock','1620855952:9'),(2663,1391,'_edit_last','9'),(2666,703,'_wp_page_template','default'),(2667,1393,'_edit_lock','1618451452:9'),(2668,1393,'_edit_last','9'),(2670,1395,'_edit_lock','1617227540:9'),(2671,1395,'_edit_last','9'),(2673,1397,'_edit_lock','1598409902:9'),(2675,1397,'_edit_last','9'),(2678,1399,'_edit_lock','1616458470:9'),(2679,1399,'_edit_last','9'),(2682,1401,'_edit_lock','1616453541:9'),(2683,1401,'_edit_last','9'),(2686,1403,'_edit_lock','1617230276:9'),(2687,1403,'_edit_last','9'),(2690,1406,'_edit_lock','1614041029:9'),(2691,1406,'_edit_last','9'),(2693,1408,'_edit_lock','1649117597:9'),(2694,1408,'_edit_last','9'),(2698,1410,'_edit_lock','1648310955:9'),(2699,1410,'_edit_last','9'),(2702,1412,'_edit_lock','1614125147:9'),(2703,1412,'_edit_last','9'),(2706,1414,'_edit_lock','1612318614:9'),(2707,1414,'_edit_last','9'),(2710,1416,'_edit_lock','1627081571:9'),(2711,1416,'_edit_last','9'),(2714,1419,'_edit_lock','1595729655:9'),(2715,1419,'_edit_last','9'),(2717,763,'_wp_page_template','default'),(2722,1423,'_edit_lock','1670041935:8'),(2723,1423,'_edit_last','8'),(2733,1429,'_edit_lock','1595726458:9'),(2735,1429,'_edit_last','9'),(2742,1434,'_edit_lock','1653711754:9'),(2743,1434,'_edit_last','9'),(2745,1436,'_edit_lock','1602526052:9'),(2746,1436,'_edit_last','9'),(2769,1450,'_edit_lock','1628197025:9'),(2770,1450,'_edit_last','9'),(2772,1452,'_edit_lock','1615518469:9'),(2774,1452,'_edit_last','9'),(2777,1454,'_edit_lock','1613519100:9'),(2778,1454,'_edit_last','9'),(2781,1457,'_edit_lock','1630016380:9'),(2782,1457,'_edit_last','9'),(2785,1459,'_edit_lock','1611961660:9'),(2786,1459,'_edit_last','9'),(2789,1461,'_edit_lock','1602525801:9'),(2790,1461,'_edit_last','9'),(2793,1463,'_edit_lock','1593549349:11'),(2794,1463,'_edit_last','11'),(2801,1468,'_menu_item_type','taxonomy'),(2802,1468,'_menu_item_menu_item_parent','1385'),(2803,1468,'_menu_item_object_id','33'),(2804,1468,'_menu_item_object','category'),(2805,1468,'_menu_item_target',''),(2806,1468,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2807,1468,'_menu_item_xfn',''),(2808,1468,'_menu_item_url',''),(2810,1469,'_edit_lock','1560357814:2'),(2811,1469,'_edit_last','2'),(2814,1471,'_edit_lock','1661198999:9'),(2816,1471,'_edit_last','9'),(2818,1473,'_edit_lock','1669963283:8'),(2819,1473,'_edit_last','8'),(2822,1475,'_edit_lock','1611187405:9'),(2823,1475,'_edit_last','9'),(2831,1480,'_edit_lock','1632609965:9'),(2832,1480,'_edit_last','9'),(2834,1482,'_edit_lock','1600983233:9'),(2836,1482,'_edit_last','2'),(2838,1484,'_edit_lock','1560406017:2'),(2839,1484,'_edit_last','2'),(2843,1486,'_edit_lock','1639537886:9'),(2844,1486,'_edit_last','9'),(2847,1488,'_edit_lock','1560406161:2'),(2848,1488,'_edit_last','2'),(2851,1490,'_edit_lock','1560406348:2'),(2852,1490,'_edit_last','2'),(2854,1492,'_edit_lock','1611456741:9'),(2855,1492,'_edit_last','9'),(2858,1494,'_edit_lock','1608418675:9'),(2859,1494,'_edit_last','9'),(2862,1496,'_edit_lock','1608083869:9'),(2863,1496,'_edit_last','9'),(2866,1498,'_edit_lock','1608073078:9'),(2867,1498,'_edit_last','9'),(2871,1500,'_edit_lock','1611958550:9'),(2872,1500,'_edit_last','11'),(2875,1502,'_edit_lock','1610762171:9'),(2876,1502,'_edit_last','9'),(2878,1504,'_edit_lock','1610589247:9'),(2880,1504,'_edit_last','9'),(2882,1506,'_edit_lock','1609458075:9'),(2883,1506,'_edit_last','9'),(2887,1508,'_edit_lock','1606788618:9'),(2888,1508,'_edit_last','9'),(2891,1510,'_edit_lock','1592782599:9'),(2892,1510,'_edit_last','9'),(2895,1512,'_edit_lock','1604805599:9'),(2896,1512,'_edit_last','9'),(2899,1514,'_edit_lock','1604550955:9'),(2900,1514,'_edit_last','9'),(2903,1516,'_edit_lock','1600207137:9'),(2904,1516,'_edit_last','9'),(2907,1518,'_edit_lock','1616453938:9'),(2908,1518,'_edit_last','9'),(2910,1520,'_edit_lock','1602525412:9'),(2911,1520,'_edit_last','9'),(3038,1524,'_edit_lock','1669963480:8'),(3039,1524,'_edit_last','8'),(3040,1524,'_thumbnail_id','1194'),(3043,1526,'_edit_lock','1669963946:8'),(3044,1526,'_edit_last','8'),(3047,1528,'_menu_item_type','taxonomy'),(3048,1528,'_menu_item_menu_item_parent','1385'),(3049,1528,'_menu_item_object_id','34'),(3050,1528,'_menu_item_object','category'),(3051,1528,'_menu_item_target',''),(3052,1528,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3053,1528,'_menu_item_xfn',''),(3054,1528,'_menu_item_url',''),(3057,1530,'_edit_lock','1669964097:8'),(3058,1526,'_thumbnail_id','1195'),(3061,1530,'_edit_last','8'),(3062,1530,'_thumbnail_id','1196'),(3064,1532,'_edit_lock','1669964194:8'),(3065,1532,'_edit_last','8'),(3066,1532,'_thumbnail_id','1197'),(3069,1535,'_edit_lock','1669966252:8'),(3070,1535,'_edit_last','8'),(3071,1535,'_thumbnail_id','1198'),(3075,1537,'_edit_lock','1669966125:8'),(3076,1537,'_edit_last','8'),(3077,1537,'_thumbnail_id','1199'),(3080,1539,'_edit_lock','1669966135:8'),(3081,1539,'_edit_last','8'),(3082,1539,'_thumbnail_id','1200'),(3084,1541,'_edit_lock','1669966277:8'),(3085,1541,'_edit_last','8'),(3086,1541,'_thumbnail_id','1201'),(3224,1547,'_edit_lock','1560411894:2'),(3225,1547,'_edit_last','2'),(3235,1557,'_wp_attached_file','2019/06/testimonial-thumb-mary.png'),(3236,1557,'_wp_attachment_image_alt','Testimonial Thumb Mary'),(3237,1557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:68;s:6:\"height\";i:68;s:4:\"file\";s:34:\"2019/06/testimonial-thumb-mary.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3238,1558,'_edit_lock','1602098070:9'),(3239,1558,'_edit_last','9'),(3242,1562,'_wp_attached_file','2019/06/Lecture-Mexico-City-1.jpg'),(3243,1562,'_wp_attachment_image_alt','Lecture Mexico City 1'),(3244,1562,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:499;s:4:\"file\";s:33:\"2019/06/Lecture-Mexico-City-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Lecture-Mexico-City-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3245,1563,'_wp_attached_file','2019/06/Lecture-Mexico-City-2.jpg'),(3246,1563,'_wp_attachment_image_alt','Lecture Mexico City 2'),(3247,1563,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:499;s:4:\"file\";s:33:\"2019/06/Lecture-Mexico-City-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Lecture-Mexico-City-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3248,1564,'_wp_attached_file','2019/06/Lecture-Mexico-City-3.jpg'),(3249,1564,'_wp_attachment_image_alt','Lecture Mexico City 3'),(3250,1564,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:499;s:4:\"file\";s:33:\"2019/06/Lecture-Mexico-City-3.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Lecture-Mexico-City-3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3253,1567,'_edit_lock','1600103294:11'),(3254,1567,'_edit_last','11'),(3255,1567,'_wp_page_template','default'),(3256,1571,'_wp_attached_file','2019/06/drfields-extra-interview.jpg'),(3257,1571,'_wp_attachment_image_alt','Drfields Extra Interview'),(3258,1571,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:36:\"2019/06/drfields-extra-interview.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"drfields-extra-interview-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3259,1584,'_edit_last','3'),(3260,1584,'_wp_page_template','default'),(3261,1584,'_edit_lock','1600103291:11'),(3262,1587,'_wp_attached_file','2019/06/Attitude-Adjustment-Regenrative-Techniques.mp3'),(3263,1587,'_wp_attachment_metadata','a:19:{s:10:\"dataformat\";s:3:\"mp3\";s:8:\"channels\";i:2;s:11:\"sample_rate\";i:22050;s:7:\"bitrate\";i:56000;s:11:\"channelmode\";s:12:\"joint stereo\";s:12:\"bitrate_mode\";s:3:\"cbr\";s:8:\"lossless\";b:0;s:15:\"encoder_options\";s:5:\"CBR56\";s:17:\"compression_ratio\";d:0.07936507936507936;s:10:\"fileformat\";s:3:\"mp3\";s:8:\"filesize\";i:12654193;s:9:\"mime_type\";s:10:\"audio/mpeg\";s:6:\"length\";i:1807;s:16:\"length_formatted\";s:5:\"30:07\";s:5:\"title\";s:12:\"Attitude New\";s:7:\"comment\";s:1:\"0\";s:10:\"encoded_by\";s:16:\"iTunes 12.0.1.26\";s:6:\"artist\";s:0:\"\";s:5:\"album\";s:0:\"\";}'),(3264,1588,'_wp_attached_file','2019/06/The-Natural-Health-Show-Prolotherapy-and-Hormone-Therapy.mp3'),(3265,1588,'_wp_attachment_metadata','a:16:{s:10:\"dataformat\";s:3:\"mp3\";s:8:\"channels\";i:2;s:11:\"sample_rate\";i:44100;s:7:\"bitrate\";i:256000;s:11:\"channelmode\";s:6:\"stereo\";s:12:\"bitrate_mode\";s:3:\"cbr\";s:8:\"lossless\";b:0;s:15:\"encoder_options\";s:6:\"CBR256\";s:17:\"compression_ratio\";d:0.18140589569160998;s:10:\"fileformat\";s:3:\"mp3\";s:8:\"filesize\";i:45063523;s:9:\"mime_type\";s:10:\"audio/mpeg\";s:6:\"length\";i:1408;s:16:\"length_formatted\";s:5:\"23:28\";s:6:\"artist\";s:0:\"\";s:5:\"album\";s:0:\"\";}'),(3266,1589,'_wp_attached_file','2019/06/Triathlon-Show-Prolotherapy.mp3'),(3267,1589,'_wp_attachment_metadata','a:19:{s:10:\"dataformat\";s:3:\"mp3\";s:8:\"channels\";i:1;s:11:\"sample_rate\";i:22050;s:7:\"bitrate\";i:128000;s:11:\"channelmode\";s:4:\"mono\";s:12:\"bitrate_mode\";s:3:\"cbr\";s:5:\"codec\";s:4:\"LAME\";s:7:\"encoder\";s:9:\"LAME3.98r\";s:8:\"lossless\";b:0;s:15:\"encoder_options\";s:6:\"CBR128\";s:17:\"compression_ratio\";d:0.36281179138321995;s:10:\"fileformat\";s:3:\"mp3\";s:8:\"filesize\";i:14412119;s:9:\"mime_type\";s:10:\"audio/mpeg\";s:6:\"length\";i:901;s:16:\"length_formatted\";s:5:\"15:01\";s:5:\"title\";s:9:\"Dr Fields\";s:6:\"artist\";s:11:\"Simon Gowen\";s:5:\"album\";s:22:\"Dr Fields on the radio\";}'),(3270,29,'_wp_page_template','default'),(3276,1614,'_edit_lock','1602359133:9'),(3277,1614,'_edit_last','9'),(3280,1618,'_wp_attached_file','2019/06/prolotherapyimg1.jpg'),(3281,1618,'_wp_attachment_image_alt','Prolotherapyimg1'),(3282,1618,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:28:\"2019/06/prolotherapyimg1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"prolotherapyimg1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3283,1619,'_wp_attached_file','2019/06/prolotherapyimg2.jpg'),(3284,1619,'_wp_attachment_image_alt','Prolotherapyimg2'),(3285,1619,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:28:\"2019/06/prolotherapyimg2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"prolotherapyimg2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3286,1620,'_wp_attached_file','2019/06/prolotherapyimg3.jpg'),(3287,1620,'_wp_attachment_image_alt','Prolotherapyimg3'),(3288,1620,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:28:\"2019/06/prolotherapyimg3.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"prolotherapyimg3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3289,1621,'_wp_attached_file','2019/06/prolotherapyimg4.jpg'),(3290,1621,'_wp_attachment_image_alt','Prolotherapyimg4'),(3291,1621,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:28:\"2019/06/prolotherapyimg4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"prolotherapyimg4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3303,1633,'_wp_attached_file','2019/06/stemcell.jpg'),(3304,1633,'_wp_attachment_image_alt','Stemcell'),(3305,1633,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:20:\"2019/06/stemcell.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"stemcell-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3306,1634,'_wp_attached_file','2019/06/stemcell1.jpg'),(3307,1634,'_wp_attachment_image_alt','Stemcell1'),(3308,1634,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:21:\"2019/06/stemcell1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"stemcell1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3344,1667,'_edit_lock','1602094339:9'),(3345,1667,'_edit_last','9'),(3347,1669,'_edit_lock','1615332967:11'),(3348,1669,'_edit_last','9'),(3363,1682,'_edit_lock','1613512135:9'),(3364,1682,'_edit_last','9'),(3365,1682,'_wp_page_template','default'),(3367,1685,'_wp_attached_file','2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg'),(3368,1685,'_wp_attachment_image_alt','Stem Cell Doctor Peter Fields Md Dc'),(3369,1685,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:474;s:6:\"height\";i:752;s:4:\"file\";s:47:\"2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Stem-Cell-Doctor-Peter-Fields-MD-DC-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\";s:5:\"width\";i:315;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3377,1700,'_edit_lock','1607722792:11'),(3378,1700,'_edit_last','11'),(3379,1700,'_wp_page_template','default'),(3380,1702,'_edit_last','3'),(3381,1702,'_wp_page_template','default'),(3382,1702,'_edit_lock','1600104087:11'),(3383,1704,'_edit_lock','1607722365:11'),(3384,1704,'_edit_last','11'),(3385,1704,'_wp_page_template','default'),(3386,1706,'_edit_last','11'),(3387,1706,'_wp_page_template','default'),(3388,1706,'_edit_lock','1607722341:11'),(3389,1708,'_edit_last','3'),(3390,1708,'_wp_page_template','default'),(3391,1708,'_edit_lock','1600103314:11'),(3392,1711,'_edit_last','11'),(3393,1711,'_wp_page_template','default'),(3394,1711,'_edit_lock','1607721987:11'),(3395,1713,'_edit_lock','1607722318:11'),(3396,1713,'_edit_last','11'),(3397,1713,'_wp_page_template','default'),(3398,1715,'_edit_last','3'),(3399,1715,'_wp_page_template','default'),(3400,1715,'_edit_lock','1600104075:11'),(3401,1717,'_edit_lock','1607722229:11'),(3402,1717,'_edit_last','11'),(3403,1717,'_wp_page_template','default'),(3404,1719,'_edit_last','11'),(3405,1719,'_wp_page_template','default'),(3406,1719,'_edit_lock','1607722298:11'),(3407,1721,'_edit_last','3'),(3408,1721,'_wp_page_template','default'),(3409,1721,'_edit_lock','1600104102:11'),(3410,1723,'_edit_last','3'),(3411,1723,'_wp_page_template','default'),(3412,1723,'_edit_lock','1600104100:11'),(3413,1725,'_edit_last','3'),(3414,1725,'_wp_page_template','default'),(3415,1725,'_edit_lock','1600104082:11'),(3416,1727,'_edit_last','11'),(3417,1727,'_wp_page_template','default'),(3418,1727,'_edit_lock','1607722037:11'),(3419,1729,'_edit_last','11'),(3420,1729,'_wp_page_template','default'),(3421,1729,'_edit_lock','1607722110:11'),(3461,1750,'_menu_item_type','post_type'),(3462,1750,'_menu_item_menu_item_parent','2535'),(3463,1750,'_menu_item_object_id','266'),(3464,1750,'_menu_item_object','post'),(3465,1750,'_menu_item_target',''),(3466,1750,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3467,1750,'_menu_item_xfn',''),(3468,1750,'_menu_item_url',''),(3470,1751,'_menu_item_type','post_type'),(3471,1751,'_menu_item_menu_item_parent','2535'),(3472,1751,'_menu_item_object_id','292'),(3473,1751,'_menu_item_object','post'),(3474,1751,'_menu_item_target',''),(3475,1751,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3476,1751,'_menu_item_xfn',''),(3477,1751,'_menu_item_url',''),(3480,977,'_wp_page_template','default'),(3481,1758,'_edit_lock','1645830285:9'),(3482,1758,'_edit_last','9'),(3483,1759,'_wp_attached_file','2019/06/event-logo-im-hamburg.jpg'),(3484,1759,'_wp_attachment_image_alt','Event Logo Im Hamburg'),(3485,1759,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:740;s:6:\"height\";i:316;s:4:\"file\";s:33:\"2019/06/event-logo-im-hamburg.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"event-logo-im-hamburg-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"event-logo-im-hamburg-500x214.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3486,1758,'_wp_page_template','default'),(3488,1773,'_edit_lock','1600103977:11'),(3489,1773,'_edit_last','2'),(3490,1774,'_wp_attached_file','2019/06/recomment-sites.jpg'),(3491,1774,'_wp_attachment_image_alt','Recomment Sites'),(3492,1774,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:306;s:4:\"file\";s:27:\"2019/06/recomment-sites.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"recomment-sites-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3493,1775,'_wp_attached_file','2019/06/Barrys-Butterfly-Sun-logo-1.jpg'),(3494,1775,'_wp_attachment_image_alt','Barrys Butterfly Sun Logo 1'),(3495,1775,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:83;s:4:\"file\";s:39:\"2019/06/Barrys-Butterfly-Sun-logo-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Barrys-Butterfly-Sun-logo-1-200x83.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:83;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3496,1776,'_wp_attached_file','2019/06/HH_logo.gif'),(3497,1776,'_wp_attachment_image_alt','Hh Logo'),(3498,1776,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:36;s:4:\"file\";s:19:\"2019/06/HH_logo.gif\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"HH_logo-200x36.gif\";s:5:\"width\";i:200;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3499,1777,'_wp_attached_file','2019/06/HM_logo_small.gif'),(3500,1777,'_wp_attachment_image_alt','Hm Logo Small'),(3501,1777,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:84;s:4:\"file\";s:25:\"2019/06/HM_logo_small.gif\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"HM_logo_small-200x84.gif\";s:5:\"width\";i:200;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3502,1778,'_wp_attached_file','2019/06/Homes_small.gif'),(3503,1778,'_wp_attachment_image_alt','Homes Small'),(3504,1778,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:55;s:4:\"file\";s:23:\"2019/06/Homes_small.gif\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Homes_small-200x55.gif\";s:5:\"width\";i:200;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3505,1773,'_wp_page_template','default'),(3506,1789,'_edit_lock','1658982451:8'),(3507,1789,'_edit_last','8'),(3508,1789,'_wp_page_template','default'),(3509,1791,'_wp_attached_file','2019/06/finalhiking-1.jpg'),(3510,1791,'_wp_attachment_image_alt','Finalhiking (1)'),(3511,1791,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:157;s:6:\"height\";i:279;s:4:\"file\";s:25:\"2019/06/finalhiking-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"finalhiking-1-157x200.jpg\";s:5:\"width\";i:157;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3512,1792,'_wp_attached_file','2019/06/finalhiking-2.jpg'),(3513,1792,'_wp_attachment_image_alt','Finalhiking (2)'),(3514,1792,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:157;s:6:\"height\";i:279;s:4:\"file\";s:25:\"2019/06/finalhiking-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"finalhiking-2-157x200.jpg\";s:5:\"width\";i:157;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3515,1793,'_wp_attached_file','2019/06/finalhiking-3.jpg'),(3516,1793,'_wp_attachment_image_alt','Finalhiking (3)'),(3517,1793,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:157;s:6:\"height\";i:279;s:4:\"file\";s:25:\"2019/06/finalhiking-3.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"finalhiking-3-157x200.jpg\";s:5:\"width\";i:157;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3518,1794,'_wp_attached_file','2019/06/finalhiking-4.jpg'),(3519,1794,'_wp_attachment_image_alt','Finalhiking (4)'),(3520,1794,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:158;s:6:\"height\";i:280;s:4:\"file\";s:25:\"2019/06/finalhiking-4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"finalhiking-4-158x200.jpg\";s:5:\"width\";i:158;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3521,1795,'_wp_attached_file','2019/06/finalhiking-5.jpg'),(3522,1795,'_wp_attachment_image_alt','Finalhiking (5)'),(3523,1795,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:210;s:6:\"height\";i:280;s:4:\"file\";s:25:\"2019/06/finalhiking-5.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"finalhiking-5-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3524,1796,'_wp_attached_file','2019/06/finalhiking-6.jpg'),(3525,1796,'_wp_attachment_image_alt','Finalhiking (6)'),(3526,1796,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:210;s:6:\"height\";i:280;s:4:\"file\";s:25:\"2019/06/finalhiking-6.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"finalhiking-6-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3527,1797,'_wp_attached_file','2019/06/finalhiking-7.jpg'),(3528,1797,'_wp_attachment_image_alt','Finalhiking (7)'),(3529,1797,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:158;s:6:\"height\";i:280;s:4:\"file\";s:25:\"2019/06/finalhiking-7.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"finalhiking-7-158x200.jpg\";s:5:\"width\";i:158;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3530,1798,'_wp_attached_file','2019/06/finalhiking-8.jpg'),(3531,1798,'_wp_attachment_image_alt','Finalhiking (8)'),(3532,1798,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:158;s:6:\"height\";i:280;s:4:\"file\";s:25:\"2019/06/finalhiking-8.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"finalhiking-8-158x200.jpg\";s:5:\"width\";i:158;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3533,1799,'_wp_attached_file','2019/06/finalhiking-9.jpg'),(3534,1799,'_wp_attachment_image_alt','Finalhiking (9)'),(3535,1799,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:146;s:6:\"height\";i:260;s:4:\"file\";s:25:\"2019/06/finalhiking-9.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"finalhiking-9-146x200.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3536,1800,'_wp_attached_file','2019/06/finalhiking-10.jpg'),(3537,1800,'_wp_attachment_image_alt','Finalhiking (10)'),(3538,1800,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:146;s:6:\"height\";i:260;s:4:\"file\";s:26:\"2019/06/finalhiking-10.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"finalhiking-10-146x200.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3541,1817,'_edit_lock','1600103983:11'),(3542,1817,'_edit_last','2'),(3543,1817,'_wp_page_template','default'),(3544,1820,'_edit_lock','1601942090:9'),(3545,1820,'_edit_last','9'),(3553,1827,'_wp_attached_file','2019/06/IV-Nutritional-Therapy.jpg'),(3554,1827,'_wp_attachment_image_alt','Iv Nutritional Therapy'),(3555,1827,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:324;s:4:\"file\";s:34:\"2019/06/IV-Nutritional-Therapy.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"IV-Nutritional-Therapy-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3559,1831,'_edit_lock','1601941977:9'),(3560,1831,'_edit_last','9'),(3561,1832,'_wp_attached_file','2019/06/Bio-Identical-Hormones.jpg'),(3562,1832,'_wp_attachment_image_alt','Bio Identical Hormones'),(3563,1832,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:171;s:4:\"file\";s:34:\"2019/06/Bio-Identical-Hormones.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Bio-Identical-Hormones-200x171.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3564,1833,'_wp_attached_file','2019/06/fields-hormone-level-quiz.jpg'),(3565,1833,'_wp_attachment_image_alt','Fields Hormone Level Quiz'),(3566,1833,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:50;s:4:\"file\";s:37:\"2019/06/fields-hormone-level-quiz.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"fields-hormone-level-quiz-200x50.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3570,1835,'_wp_attached_file','2019/06/Contact_us2.jpg'),(3571,1835,'_wp_attachment_image_alt','Contact Us2'),(3572,1835,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:50;s:4:\"file\";s:23:\"2019/06/Contact_us2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Contact_us2-200x50.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3574,1837,'_edit_lock','1601941951:9'),(3575,1837,'_edit_last','9'),(3579,1843,'_wp_attached_file','2019/06/self_test.pdf'),(3581,1845,'_edit_lock','1601938095:9'),(3582,1845,'_edit_last','9'),(3583,1846,'_wp_attached_file','2019/06/Integrative-Medicine.jpg'),(3584,1846,'_wp_attachment_image_alt','Integrative Medicine'),(3585,1846,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:174;s:4:\"file\";s:32:\"2019/06/Integrative-Medicine.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Integrative-Medicine-200x174.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3589,1849,'_wp_attached_file','2019/06/Nutrition.jpg'),(3590,1849,'_wp_attachment_image_alt','Nutrition'),(3591,1849,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:313;s:4:\"file\";s:21:\"2019/06/Nutrition.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Nutrition-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3594,1852,'_menu_item_type','custom'),(3595,1852,'_menu_item_menu_item_parent','0'),(3596,1852,'_menu_item_object_id','1852'),(3597,1852,'_menu_item_object','custom'),(3598,1852,'_menu_item_target',''),(3599,1852,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3600,1852,'_menu_item_xfn',''),(3601,1852,'_menu_item_url',''),(3603,1857,'_wp_attached_file','2019/06/Priscilla.jpg'),(3604,1857,'_wp_attachment_image_alt','Priscilla'),(3605,1857,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:21:\"2019/06/Priscilla.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Priscilla-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3606,1859,'_wp_attached_file','2019/06/Andy-Stem-Cell-Knee.jpg'),(3607,1859,'_wp_attachment_image_alt','Andy Stem Cell Knee'),(3608,1859,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:31:\"2019/06/Andy-Stem-Cell-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Andy-Stem-Cell-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3609,1861,'_wp_attached_file','2019/06/Claire-Stem-Cell-Knee-.jpg'),(3610,1861,'_wp_attachment_image_alt','Claire Stem Cell Knee '),(3611,1861,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:34:\"2019/06/Claire-Stem-Cell-Knee-.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Claire-Stem-Cell-Knee--200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3612,1864,'_wp_attached_file','2019/06/Mark-Back.jpg'),(3613,1864,'_wp_attachment_image_alt','Mark Back'),(3614,1864,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:21:\"2019/06/Mark-Back.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Mark-Back-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3615,1865,'_wp_attached_file','2019/06/Glenn-Stem-Cell-Knee.jpg'),(3616,1865,'_wp_attachment_image_alt','Glenn Stem Cell Knee'),(3617,1865,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:32:\"2019/06/Glenn-Stem-Cell-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Glenn-Stem-Cell-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3618,1866,'_wp_attached_file','2019/06/Tony-PRP-Shoulder-Ankle.jpg'),(3619,1866,'_wp_attachment_image_alt','Tony Prp Shoulder & Ankle'),(3620,1866,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:35:\"2019/06/Tony-PRP-Shoulder-Ankle.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Tony-PRP-Shoulder-Ankle-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3621,1867,'_wp_attached_file','2019/06/Jerry-Stem-Cell-Knee.jpg'),(3622,1867,'_wp_attachment_image_alt','Jerry Stem Cell Knee'),(3623,1867,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:32:\"2019/06/Jerry-Stem-Cell-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Jerry-Stem-Cell-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3624,1868,'_wp_attached_file','2019/06/Athena-Wrist.jpg'),(3625,1868,'_wp_attachment_image_alt','Athena Wrist'),(3626,1868,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:24:\"2019/06/Athena-Wrist.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Athena-Wrist-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3627,1869,'_wp_attached_file','2019/06/Tom-Stem-Cell-Knee.jpg'),(3628,1869,'_wp_attachment_image_alt','Tom Stem Cell Knee'),(3629,1869,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:30:\"2019/06/Tom-Stem-Cell-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Tom-Stem-Cell-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3630,1870,'_wp_attached_file','2019/06/Larry-Stem-Cell-Knee.jpg'),(3631,1870,'_wp_attachment_image_alt','Larry Stem Cell Knee'),(3632,1870,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:32:\"2019/06/Larry-Stem-Cell-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Larry-Stem-Cell-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3633,1871,'_wp_attached_file','2019/06/Jeff-Stem-Cell-Shoulder.jpg'),(3634,1871,'_wp_attachment_image_alt','Jeff Stem Cell Shoulder'),(3635,1871,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:35:\"2019/06/Jeff-Stem-Cell-Shoulder.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Jeff-Stem-Cell-Shoulder-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3636,1886,'_wp_attached_file','2019/06/Mike-stem-cell.jpg'),(3637,1886,'_wp_attachment_image_alt','Mike Stem Cell'),(3638,1886,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:26:\"2019/06/Mike-stem-cell.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Mike-stem-cell-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3639,1887,'_wp_attached_file','2019/06/Tisha-Stem-Cell-Hip.jpg'),(3640,1887,'_wp_attachment_image_alt','Tisha Stem Cell Hip'),(3641,1887,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:31:\"2019/06/Tisha-Stem-Cell-Hip.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Tisha-Stem-Cell-Hip-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3642,1888,'_wp_attached_file','2019/06/Robert-B.-Stem-Cell-Knee.jpg'),(3643,1888,'_wp_attachment_image_alt','Robert B. Stem Cell Knee'),(3644,1888,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:36:\"2019/06/Robert-B.-Stem-Cell-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Robert-B.-Stem-Cell-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3645,1889,'_wp_attached_file','2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg'),(3646,1889,'_wp_attachment_image_alt','Dr. Barry Leonard Prp Knee'),(3647,1889,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:38:\"2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Dr.-Barry-Leonard-PRP-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3648,1890,'_wp_attached_file','2019/06/Christopher-PRP-Knee.jpg'),(3649,1890,'_wp_attachment_image_alt','Christopher Prp Knee'),(3650,1890,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:32:\"2019/06/Christopher-PRP-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Christopher-PRP-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3651,1891,'_wp_attached_file','2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg'),(3652,1891,'_wp_attachment_image_alt','Dr. Eric (chiropractor) Low Back'),(3653,1891,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:42:\"2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dr.-Eric-Chiropractor-Low-Back-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3654,1892,'_wp_attached_file','2019/06/Nanette-Hip.jpg'),(3655,1892,'_wp_attachment_image_alt','Nanette Hip'),(3656,1892,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:23:\"2019/06/Nanette-Hip.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Nanette-Hip-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3657,1893,'_wp_attached_file','2019/06/Tim-Shoulder.jpg'),(3658,1893,'_wp_attachment_image_alt','Tim Shoulder'),(3659,1893,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:24:\"2019/06/Tim-Shoulder.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Tim-Shoulder-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3660,1894,'_wp_attached_file','2019/06/May-Knee.jpg'),(3661,1894,'_wp_attachment_image_alt','May Knee'),(3662,1894,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:20:\"2019/06/May-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"May-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3663,1895,'_wp_attached_file','2019/06/Gayle-Low-Back.jpg'),(3664,1895,'_wp_attachment_image_alt','Gayle Low Back'),(3665,1895,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:26:\"2019/06/Gayle-Low-Back.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Gayle-Low-Back-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3666,1901,'_wp_attached_file','2019/06/Dan-Shoulder.jpg'),(3667,1901,'_wp_attachment_image_alt','Dan Shoulder'),(3668,1901,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:24:\"2019/06/Dan-Shoulder.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Dan-Shoulder-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3669,1902,'_wp_attached_file','2019/06/Patrick-Low-Back.jpg'),(3670,1902,'_wp_attachment_image_alt','Patrick Low Back'),(3671,1902,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:28:\"2019/06/Patrick-Low-Back.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Patrick-Low-Back-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3672,1904,'_wp_attached_file','2019/06/Sam-Sports-Hernia.jpg'),(3673,1904,'_wp_attachment_image_alt','Sam Sports Hernia'),(3674,1904,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:29:\"2019/06/Sam-Sports-Hernia.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Sam-Sports-Hernia-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3675,1906,'_wp_attached_file','2019/06/Gayle-Shoulder.jpg'),(3676,1906,'_wp_attachment_image_alt','Gayle Shoulder'),(3677,1906,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:26:\"2019/06/Gayle-Shoulder.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Gayle-Shoulder-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3678,1907,'_wp_attached_file','2019/06/Jeremy-Ankle.jpg'),(3679,1907,'_wp_attachment_image_alt','Jeremy Ankle'),(3680,1907,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:24:\"2019/06/Jeremy-Ankle.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Jeremy-Ankle-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3681,1908,'_wp_attached_file','2019/06/Rich-Low-Back.jpg'),(3682,1908,'_wp_attachment_image_alt','Rich Low Back'),(3683,1908,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:25:\"2019/06/Rich-Low-Back.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Rich-Low-Back-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3684,1909,'_wp_attached_file','2019/06/Benjamin-Shoulder.jpg'),(3685,1909,'_wp_attachment_image_alt','Benjamin Shoulder'),(3686,1909,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:29:\"2019/06/Benjamin-Shoulder.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Benjamin-Shoulder-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3687,1910,'_wp_attached_file','2019/06/Patrick-Hamstring.jpg'),(3688,1910,'_wp_attachment_image_alt','Patrick Hamstring'),(3689,1910,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:29:\"2019/06/Patrick-Hamstring.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Patrick-Hamstring-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3690,1911,'_wp_attached_file','2019/06/Michael-Ganglion-Cyst.jpg'),(3691,1911,'_wp_attachment_image_alt','Michael Ganglion Cyst'),(3692,1911,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:33:\"2019/06/Michael-Ganglion-Cyst.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Michael-Ganglion-Cyst-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3693,1912,'_wp_attached_file','2019/06/Josh-Knee.jpg'),(3694,1912,'_wp_attachment_image_alt','Josh Knee'),(3695,1912,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:21:\"2019/06/Josh-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Josh-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3696,1913,'_wp_attached_file','2019/06/Jamie-Neck.jpg'),(3697,1913,'_wp_attachment_image_alt','Jamie Neck'),(3698,1913,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:22:\"2019/06/Jamie-Neck.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Jamie-Neck-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3699,1914,'_wp_attached_file','2019/06/Ryan-Shoulder.jpg'),(3700,1914,'_wp_attachment_image_alt','Ryan Shoulder'),(3701,1914,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:25:\"2019/06/Ryan-Shoulder.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Ryan-Shoulder-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3702,1915,'_wp_attached_file','2019/06/Jennifer-Low-Back.jpg'),(3703,1915,'_wp_attachment_image_alt','Jennifer Low Back'),(3704,1915,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:29:\"2019/06/Jennifer-Low-Back.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Jennifer-Low-Back-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3705,1916,'_wp_attached_file','2019/06/Cheryl-Shoulder.jpg'),(3706,1916,'_wp_attachment_image_alt','Cheryl Shoulder'),(3707,1916,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:27:\"2019/06/Cheryl-Shoulder.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Cheryl-Shoulder-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3708,1921,'_wp_attached_file','2019/06/Alex-Knee.jpg'),(3709,1921,'_wp_attachment_image_alt','Alex Knee'),(3710,1921,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:21:\"2019/06/Alex-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Alex-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3711,1922,'_wp_attached_file','2019/06/Moira-Knee.jpg'),(3712,1922,'_wp_attachment_image_alt','Moira Knee'),(3713,1922,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:22:\"2019/06/Moira-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Moira-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3714,1923,'_wp_attached_file','2019/06/Keith-Shoulder.jpg'),(3715,1923,'_wp_attachment_image_alt','Keith Shoulder'),(3716,1923,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:26:\"2019/06/Keith-Shoulder.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Keith-Shoulder-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3717,1924,'_wp_attached_file','2019/06/Nick-Ankle.jpg'),(3718,1924,'_wp_attachment_image_alt','Nick Ankle'),(3719,1924,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:22:\"2019/06/Nick-Ankle.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Nick-Ankle-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3720,1925,'_wp_attached_file','2019/06/Jan-Hip.jpg'),(3721,1925,'_wp_attachment_image_alt','Jan Hip'),(3722,1925,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:19:\"2019/06/Jan-Hip.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Jan-Hip-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3723,1926,'_wp_attached_file','2019/06/Elan-Shoulder.jpg'),(3724,1926,'_wp_attachment_image_alt','Elan Shoulder'),(3725,1926,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:25:\"2019/06/Elan-Shoulder.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Elan-Shoulder-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3726,1927,'_wp_attached_file','2019/06/Sam-Back-Spanish.jpg'),(3727,1927,'_wp_attachment_image_alt','Sam Back (spanish)'),(3728,1927,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:28:\"2019/06/Sam-Back-Spanish.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Sam-Back-Spanish-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3729,1928,'_wp_attached_file','2019/06/Yelena-Knee.jpg'),(3730,1928,'_wp_attachment_image_alt','Yelena Knee'),(3731,1928,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:23:\"2019/06/Yelena-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Yelena-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3732,1929,'_wp_attached_file','2019/06/Jun-Shoulder.jpg'),(3733,1929,'_wp_attachment_image_alt','Jun Shoulder'),(3734,1929,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:24:\"2019/06/Jun-Shoulder.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Jun-Shoulder-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3735,1930,'_wp_attached_file','2019/06/Dale-Knee.jpg'),(3736,1930,'_wp_attachment_image_alt','Dale Knee'),(3737,1930,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:21:\"2019/06/Dale-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Dale-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3738,1931,'_wp_attached_file','2019/06/Bob-Shoulder.jpg'),(3739,1931,'_wp_attachment_image_alt','Bob Shoulder'),(3740,1931,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:24:\"2019/06/Bob-Shoulder.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Bob-Shoulder-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3741,1932,'_wp_attached_file','2019/06/Willie-Knee.jpg'),(3742,1932,'_wp_attachment_image_alt','Willie Knee'),(3743,1932,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:23:\"2019/06/Willie-Knee.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Willie-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3763,2009,'_edit_lock','1601252495:9'),(3764,2009,'_edit_last','9'),(3775,2012,'_edit_lock','1601089846:9'),(3776,2012,'_edit_last','9'),(3778,2014,'_edit_lock','1613512480:9'),(3779,2014,'_edit_last','9'),(3784,2020,'_edit_lock','1599945803:9'),(3785,2020,'_edit_last','9'),(3788,2020,'_wp_old_slug','2020'),(3789,2023,'_wp_attached_file','2019/06/the-doctors-tv-show.jpg'),(3790,2023,'_wp_attachment_image_alt','The Doctors Tv Show'),(3791,2023,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:337;s:4:\"file\";s:31:\"2019/06/the-doctors-tv-show.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"the-doctors-tv-show-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"the-doctors-tv-show-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3792,2024,'_edit_lock','1599943708:9'),(3793,2024,'_edit_last','9'),(3796,2028,'_edit_lock','1599940729:9'),(3797,2028,'_edit_last','9'),(3800,2033,'_wp_attached_file','2019/06/The-Doctors.mp4'),(3801,2033,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:55004009;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:177;s:16:\"length_formatted\";s:4:\"2:57\";s:5:\"width\";i:960;s:6:\"height\";i:540;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1496336786;}'),(3802,2033,'_edit_lock','1560598381:1'),(3803,416,'_wp_page_template','custom-single-post.php'),(3805,432,'_wp_page_template','custom-single-post.php'),(3807,627,'_wp_page_template','custom-single-post.php'),(3809,453,'_wp_page_template','custom-single-post.php'),(3811,504,'_wp_page_template','custom-single-post.php'),(3813,543,'_wp_page_template','custom-single-post.php'),(3818,609,'_wp_page_template','custom-single-post.php'),(3820,585,'_wp_page_template','default'),(3822,2043,'_wp_attached_file','2019/06/cozumel-2013-finish.jpg'),(3823,2043,'_wp_attachment_image_alt','Cozumel 2013 Finish'),(3824,2043,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:213;s:4:\"file\";s:31:\"2019/06/cozumel-2013-finish.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"cozumel-2013-finish-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3825,131,'_wp_page_template','default'),(3828,92,'_wp_page_template','default'),(3830,2047,'_wp_attached_file','2019/06/cozumel-2011-finish-2.jpg'),(3831,2047,'_wp_attachment_image_alt','Cozumel 2011 Finish'),(3832,2047,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:215;s:4:\"file\";s:33:\"2019/06/cozumel-2011-finish-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"cozumel-2011-finish-2-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3834,2049,'_wp_attached_file','2019/06/cozumel-2012-finish.jpg'),(3835,2049,'_wp_attachment_image_alt','Cozumel 2012 Finish'),(3836,2049,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:215;s:4:\"file\";s:31:\"2019/06/cozumel-2012-finish.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"cozumel-2012-finish-160x200.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3837,120,'_wp_page_template','default'),(3839,2052,'_wp_attached_file','2019/06/ironman2014-large-1.jpg'),(3840,2052,'_wp_attachment_image_alt','Ironman2014 Large'),(3841,2052,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:321;s:6:\"height\";i:547;s:4:\"file\";s:31:\"2019/06/ironman2014-large-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"ironman2014-large-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"ironman2014-large-1-293x500.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3842,153,'_wp_page_template','default'),(3845,2055,'_wp_attached_file','2019/06/ironman-brazil-finish-1.jpg'),(3846,2055,'_wp_attachment_image_alt','Ironman Brazil Finish'),(3847,2055,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:363;s:4:\"file\";s:35:\"2019/06/ironman-brazil-finish-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"ironman-brazil-finish-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:19:\"All rights reserved\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3848,184,'_wp_page_template','default'),(3850,2057,'_wp_attached_file','2019/06/Cozumel-Finish-2015-275-1.jpg'),(3851,2057,'_wp_attachment_image_alt','Cozumel Finish 2015 275'),(3852,2057,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:465;s:4:\"file\";s:37:\"2019/06/Cozumel-Finish-2015-275-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Cozumel-Finish-2015-275-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3853,217,'_wp_page_template','default'),(3856,2060,'_wp_attached_file','2019/06/Switzerland-Finish-2016-275.jpg'),(3857,2060,'_wp_attachment_image_alt','Switzerland Finish 2016 275'),(3858,2060,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:488;s:4:\"file\";s:39:\"2019/06/Switzerland-Finish-2016-275.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Switzerland-Finish-2016-275-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3859,302,'_wp_page_template','default'),(3862,306,'_wp_page_template','default'),(3864,2064,'_wp_attached_file','2019/06/Cozumel-2016-Finisher-275.jpg'),(3865,2064,'_wp_attachment_image_alt','Cozumel 2016 Finisher 275'),(3866,2064,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:391;s:4:\"file\";s:37:\"2019/06/Cozumel-2016-Finisher-275.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Cozumel-2016-Finisher-275-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3868,2066,'_wp_attached_file','2019/06/Ironman-Santa-Rosa-Finisher-2.jpg'),(3869,2066,'_wp_attachment_image_alt','Ironman Santa Rosa Finisher 2'),(3870,2066,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:378;s:4:\"file\";s:41:\"2019/06/Ironman-Santa-Rosa-Finisher-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Ironman-Santa-Rosa-Finisher-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3871,348,'_wp_page_template','default'),(3873,2068,'_wp_attached_file','2019/06/post-finish-400b.jpg'),(3874,2068,'_wp_attachment_image_alt','Post Finish 400b'),(3875,2068,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:491;s:4:\"file\";s:28:\"2019/06/post-finish-400b.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"post-finish-400b-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3876,361,'_wp_page_template','default'),(3880,373,'_wp_page_template','default'),(3892,2082,'_edit_lock','1599791061:9'),(3893,2082,'_edit_last','9'),(3894,2082,'_wp_page_template','default'),(3896,382,'_wp_page_template','default'),(3897,2009,'_wp_page_template','default'),(3899,2014,'_wp_page_template','default'),(3905,2020,'_wp_page_template','default'),(3907,2024,'_wp_page_template','default'),(3909,2028,'_wp_page_template','default'),(3918,216,'_wp_page_template','default'),(3920,216,'_wp_old_slug','bio-dr-fields'),(3921,266,'_wp_page_template','default'),(3933,207,'_wp_page_template','default'),(3935,202,'_wp_page_template','default'),(3943,2109,'_edit_lock','1695176881:8'),(3944,2109,'_edit_last','8'),(3945,2109,'_wp_page_template','Homepage.php'),(3946,2117,'_edit_lock','1600103254:11'),(3947,2117,'_edit_last','1'),(3948,2117,'_wp_page_template','default'),(3959,213,'_wp_page_template','default'),(3961,1667,'_wp_page_template','default'),(3963,1669,'_wp_page_template','default'),(3966,229,'_wp_page_template','default'),(3969,414,'_wp_page_template','default'),(3971,431,'_wp_page_template','default'),(3973,469,'_wp_page_template','default'),(3975,486,'_wp_page_template','default'),(3977,511,'_wp_page_template','default'),(3979,524,'_wp_page_template','default'),(3981,528,'_wp_page_template','default'),(3983,533,'_wp_page_template','default'),(3985,545,'_wp_page_template','default'),(3987,536,'_wp_page_template','default'),(3990,567,'_wp_page_template','default'),(3992,582,'_wp_page_template','default'),(3994,595,'_wp_page_template','default'),(3996,615,'_wp_page_template','default'),(3998,632,'_wp_page_template','default'),(4000,1012,'_wp_page_template','default'),(4001,2176,'_edit_lock','1600102679:11'),(4002,2176,'_edit_last','2'),(4003,2176,'_wp_page_template','default'),(4004,2181,'_wp_attached_file','2019/06/hip-injury.png'),(4005,2181,'_wp_attachment_image_alt','Hip Injury'),(4006,2181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:22:\"2019/06/hip-injury.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"hip-injury-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"hip-injury-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"hip-injury-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4046,2176,'_aioseop_description','Repair hip labral tears without surgery by choosing Regenerative Orthopedics and return quickly to sports and the activities you love.'),(4050,2198,'_wp_attached_file','2019/06/labral-tear.png'),(4051,2198,'_wp_attachment_image_alt','Labral Tear'),(4052,2198,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1351;s:4:\"file\";s:23:\"2019/06/labral-tear.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"labral-tear-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"labral-tear-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"labral-tear-768x961.png\";s:5:\"width\";i:768;s:6:\"height\";i:961;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4053,92,'_aioseop_title','2011 Ironman Cozumel Finisher'),(4054,92,'_aioseop_description','The Athletic DocÂ® On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman. In Cozumel, Mexico at 9:04:07 pm to be exact.'),(4055,120,'_aioseop_description','The Athletic DocÂ® Ironman Cozumel November 25, 2012 2.4 mile swim, 112 mile bike, 26.2 mile run. After finishing this race last year, I was back again...'),(4056,120,'_aioseop_title','2012 Ironman Cozumel Finisher'),(4057,131,'_aioseop_description','The Athletic DocÂ® Ironman Canada, Sunday August 25, 2013 2.4 mile swim, 112 mile bike, 26.2 mile run. Quote for the day: One cannot achieve higher goa...'),(4058,131,'_aioseop_title','2013 Ironman Cozumel Finisher'),(4059,153,'_aioseop_description','2014 Austria IronmanMy time was 13:32:36. A new PR for me. For the details, please read the story below.Thank youÂ GETTING THEREIt started with a 12 ho...'),(4060,153,'_aioseop_title','2014 Ironman Austria Finisher'),(4061,184,'_aioseop_title','2015 Ironman Brazil'),(4062,202,'_aioseop_title','Fees Policies, Prolotherapy Consultation without Treatment, Payment Policy'),(4063,202,'_aioseop_description','Read our fee policies for Prolotherapy consultation without treatment, and our Payment Policy - we accept Visa, MasterCard, checks, or cash for payment of services.'),(4064,207,'_aioseop_description','Find Common Questions in Feeâ€™s and Payment, Insurance Policies, necessity of medical records , MRIâ€™s, X-rays, period of each visit, Prolotherapy treatment on initial visit, etc.'),(4065,207,'_aioseop_title','Common Questions, Fees and Payment, Insurance Policies, Prolotherapy Treatment'),(4066,213,'_aioseop_title','Our Philosophy - The Future of Your Health - Your Best Investment'),(4067,213,'_aioseop_description','Our Philosophy is the Future of Your Health â€“ Your Best Investment. We want to help you to achieve your goals of optimal health and sustained wellness.'),(4068,217,'_aioseop_description','Dr. Fields had the opportunity to participate in his 6th Ironman Competition, which was held on November 29, 2015, and he recounts his experiences in this race report.'),(4069,217,'_aioseop_title','2015 Ironman Cozumel'),(4070,216,'_aioseop_title','Bio: Dr. Fields'),(4071,216,'_aioseop_description','Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees. He integrates conventional medicin...'),(4072,302,'_aioseop_title','2016 Ironman Switzerland'),(4073,302,'_aioseop_description','Dr. Fields is known as &quot;The Athletic Doc,&quot; and you can read his personal experiences as he shares his race report for his 7th Ironman Competition from July 27, 2016.'),(4074,306,'_aioseop_title','2016 Ironman Cozumel'),(4075,348,'_aioseop_title','2017 Ironman Santa Rosa'),(4076,2208,'_edit_lock','1658982330:8'),(4077,348,'_aioseop_description','Dr. Fields recounts his personal experiences with his detailed race report for his 9th Iron Man competition, which was held in Santa Rosa on July 29, 2017.'),(4078,2208,'_edit_last','8'),(4079,373,'_aioseop_title','The Athletic Doc, Dr. Peter A. Fields, Treats Athletes, Train Hard But Smart'),(4080,373,'_aioseop_description','Dr. Peter A. Fields is also known as The Athletic Doc as he not only treats athletes in his practice but is an athlete himself. His motto is not only train hard but smart â€“ as if your body depended on it.'),(4081,395,'_aioseop_title','Prolotherapy FAQ, Treatment for Joint Pain and Injury'),(4082,395,'_aioseop_description','PRP or PRP Prolotherapy is a treatment for acute or chronic musculoskeletal injury or pain. If healing is not attained with Prolotherapy, then PRP would be next choice.'),(4083,408,'_aioseop_title','Post Treatment, Stiffness, Soreness, Driving, Working, Pain Medication'),(4084,408,'_aioseop_description','What to expect post treatment â€“ you can feel stiff, sore or numb, can drive and work, can take prescribed pain medicine, bruising is good as it has growth factors in it.'),(4085,416,'_aioseop_description','Dr. Fields and two aides Dr.-Fields, his staff and a patient Steven, Liza and Dr. Fields The-gang-at-dinner'),(4086,416,'_aioseop_title','Guadalajara 2006'),(4087,2209,'_wp_attached_file','2019/06/klimanjaro-1.jpg'),(4088,2209,'_wp_attachment_image_alt','Klimanjaro (1)'),(4089,2209,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:228;s:4:\"file\";s:24:\"2019/06/klimanjaro-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"klimanjaro-1-128x200.jpg\";s:5:\"width\";i:128;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4090,2210,'_wp_attached_file','2019/06/klimanjaro-2.jpg'),(4091,2210,'_wp_attachment_image_alt','Klimanjaro (2)'),(4092,2210,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:170;s:4:\"file\";s:24:\"2019/06/klimanjaro-2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4093,2211,'_wp_attached_file','2019/06/klimanjaro-3.jpg'),(4094,2211,'_wp_attachment_image_alt','Klimanjaro (3)'),(4095,2211,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:170;s:4:\"file\";s:24:\"2019/06/klimanjaro-3.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4096,2212,'_wp_attached_file','2019/06/klimanjaro-4.jpg'),(4097,2212,'_wp_attachment_image_alt','Klimanjaro (4)'),(4098,2212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:136;s:6:\"height\";i:106;s:4:\"file\";s:24:\"2019/06/klimanjaro-4.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4099,2213,'_wp_attached_file','2019/06/klimanjaro-5.jpg'),(4100,2213,'_wp_attachment_image_alt','Klimanjaro (5)'),(4101,2213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:24:\"2019/06/klimanjaro-5.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4102,2214,'_wp_attached_file','2019/06/klimanjaro-6.jpg'),(4103,2214,'_wp_attachment_image_alt','Klimanjaro (6)'),(4104,2214,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:227;s:4:\"file\";s:24:\"2019/06/klimanjaro-6.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"klimanjaro-6-128x200.jpg\";s:5:\"width\";i:128;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4105,2215,'_wp_attached_file','2019/06/klimanjaro-7.jpg'),(4106,2215,'_wp_attachment_image_alt','Klimanjaro (7)'),(4107,2215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:246;s:6:\"height\";i:246;s:4:\"file\";s:24:\"2019/06/klimanjaro-7.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"klimanjaro-7-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4108,2216,'_wp_attached_file','2019/06/klimanjaro-8.jpg'),(4109,2216,'_wp_attachment_image_alt','Klimanjaro (8)'),(4110,2216,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:157;s:4:\"file\";s:24:\"2019/06/klimanjaro-8.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4111,2217,'_wp_attached_file','2019/06/klimanjaro-9.jpg'),(4112,2217,'_wp_attachment_image_alt','Klimanjaro (9)'),(4113,2217,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:170;s:4:\"file\";s:24:\"2019/06/klimanjaro-9.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4114,2208,'_wp_page_template','default'),(4115,2219,'_edit_lock','1658814713:8'),(4116,2219,'_edit_last','8'),(4117,2220,'_wp_attached_file','2019/06/DrfieldDay1Kilimanaro-2.jpg'),(4118,2220,'_wp_attachment_image_alt','Drfieldday1kilimanaro (2)'),(4119,2220,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:228;s:6:\"height\";i:280;s:4:\"file\";s:35:\"2019/06/DrfieldDay1Kilimanaro-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"DrfieldDay1Kilimanaro-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4120,2221,'_wp_attached_file','2019/06/DrfieldDay1Kilimanaro-3.jpg'),(4121,2221,'_wp_attachment_image_alt','Drfieldday1kilimanaro (3)'),(4122,2221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:498;s:6:\"height\";i:280;s:4:\"file\";s:35:\"2019/06/DrfieldDay1Kilimanaro-3.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"DrfieldDay1Kilimanaro-3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4123,2222,'_wp_attached_file','2019/06/DrfieldDay1Kilimanaro-4.jpg'),(4124,2222,'_wp_attachment_image_alt','Drfieldday1kilimanaro (4)'),(4125,2222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:498;s:6:\"height\";i:280;s:4:\"file\";s:35:\"2019/06/DrfieldDay1Kilimanaro-4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"DrfieldDay1Kilimanaro-4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4126,2223,'_wp_attached_file','2019/06/DrfieldDay1Kilimanaro-5.jpg'),(4127,2223,'_wp_attachment_image_alt','Drfieldday1kilimanaro (5)'),(4128,2223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:626;s:6:\"height\";i:352;s:4:\"file\";s:35:\"2019/06/DrfieldDay1Kilimanaro-5.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"DrfieldDay1Kilimanaro-5-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"DrfieldDay1Kilimanaro-5-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4129,2224,'_wp_attached_file','2019/06/DrfieldDay1Kilimanaro-6.jpg'),(4130,2224,'_wp_attachment_image_alt','Drfieldday1kilimanaro (6)'),(4131,2224,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:198;s:6:\"height\";i:352;s:4:\"file\";s:35:\"2019/06/DrfieldDay1Kilimanaro-6.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"DrfieldDay1Kilimanaro-6-198x200.jpg\";s:5:\"width\";i:198;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4132,2225,'_wp_attached_file','2019/06/DrfieldDay1Kilimanaro-7.jpg'),(4133,2225,'_wp_attachment_image_alt','Drfieldday1kilimanaro (7)'),(4134,2225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:198;s:6:\"height\";i:352;s:4:\"file\";s:35:\"2019/06/DrfieldDay1Kilimanaro-7.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"DrfieldDay1Kilimanaro-7-198x200.jpg\";s:5:\"width\";i:198;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4135,2226,'_wp_attached_file','2019/06/DrfieldDay1Kilimanaro-8.jpg'),(4136,2226,'_wp_attachment_image_alt','Drfieldday1kilimanaro (8)'),(4137,2226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:198;s:6:\"height\";i:352;s:4:\"file\";s:35:\"2019/06/DrfieldDay1Kilimanaro-8.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"DrfieldDay1Kilimanaro-8-198x200.jpg\";s:5:\"width\";i:198;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4138,2227,'_wp_attached_file','2019/06/DrfieldDay1Kilimanaro-1.jpg'),(4139,2227,'_wp_attachment_image_alt','Drfieldday1kilimanaro (1)'),(4140,2227,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1232;s:6:\"height\";i:333;s:4:\"file\";s:35:\"2019/06/DrfieldDay1Kilimanaro-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"DrfieldDay1Kilimanaro-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"DrfieldDay1Kilimanaro-1-500x135.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"DrfieldDay1Kilimanaro-1-768x208.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4141,2219,'_wp_page_template','default'),(4142,2232,'_edit_lock','1658982676:8'),(4143,2232,'_edit_last','8'),(4144,2232,'_wp_page_template','default'),(4145,2234,'_wp_attached_file','2019/06/killi-trailhead-1.jpg'),(4146,2234,'_wp_attachment_image_alt','Killi Trailhead (1)'),(4147,2234,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:142;s:6:\"height\";i:253;s:4:\"file\";s:29:\"2019/06/killi-trailhead-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"killi-trailhead-1-142x200.jpg\";s:5:\"width\";i:142;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4148,2235,'_wp_attached_file','2019/06/killi-trailhead-2.jpg'),(4149,2235,'_wp_attachment_image_alt','Killi Trailhead (2)'),(4150,2235,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:142;s:6:\"height\";i:253;s:4:\"file\";s:29:\"2019/06/killi-trailhead-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"killi-trailhead-2-142x200.jpg\";s:5:\"width\";i:142;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4151,2236,'_wp_attached_file','2019/06/killi-trailhead-3.jpg'),(4152,2236,'_wp_attachment_image_alt','Killi Trailhead (3)'),(4153,2236,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:253;s:4:\"file\";s:29:\"2019/06/killi-trailhead-3.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"killi-trailhead-3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4154,2237,'_wp_attached_file','2019/06/killi-trailhead-4.jpg'),(4155,2237,'_wp_attachment_image_alt','Killi Trailhead (4)'),(4156,2237,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:142;s:6:\"height\";i:253;s:4:\"file\";s:29:\"2019/06/killi-trailhead-4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"killi-trailhead-4-142x200.jpg\";s:5:\"width\";i:142;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4157,2238,'_wp_attached_file','2019/06/killi-trailhead-5.jpg'),(4158,2238,'_wp_attachment_image_alt','Killi Trailhead (5)'),(4159,2238,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:337;s:6:\"height\";i:253;s:4:\"file\";s:29:\"2019/06/killi-trailhead-5.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"killi-trailhead-5-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4160,2239,'_edit_lock','1658982881:8'),(4161,2239,'_edit_last','8'),(4162,2239,'_wp_page_template','default'),(4163,2241,'_wp_attached_file','2019/06/Kilihiking15000-1.jpg'),(4164,2241,'_wp_attachment_image_alt','Kilihiking15000 (1)'),(4165,2241,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:237;s:6:\"height\";i:316;s:4:\"file\";s:29:\"2019/06/Kilihiking15000-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Kilihiking15000-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4166,2242,'_wp_attached_file','2019/06/Kilihiking15000-2.jpg'),(4167,2242,'_wp_attachment_image_alt','Kilihiking15000 (2)'),(4168,2242,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:423;s:6:\"height\";i:317;s:4:\"file\";s:29:\"2019/06/Kilihiking15000-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Kilihiking15000-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4169,2243,'_wp_attached_file','2019/06/Kilihiking15000-3.jpg'),(4170,2243,'_wp_attachment_image_alt','Kilihiking15000 (3)'),(4171,2243,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:564;s:6:\"height\";i:317;s:4:\"file\";s:29:\"2019/06/Kilihiking15000-3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Kilihiking15000-3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Kilihiking15000-3-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4172,2244,'_wp_attached_file','2019/06/Kilihiking15000-4.jpg'),(4173,2244,'_wp_attachment_image_alt','Kilihiking15000 (4)'),(4174,2244,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:253;s:4:\"file\";s:29:\"2019/06/Kilihiking15000-4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Kilihiking15000-4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4175,2245,'_wp_attached_file','2019/06/Kilihiking15000-5.jpg'),(4176,2245,'_wp_attachment_image_alt','Kilihiking15000 (5)'),(4177,2245,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:142;s:6:\"height\";i:253;s:4:\"file\";s:29:\"2019/06/Kilihiking15000-5.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Kilihiking15000-5-142x200.jpg\";s:5:\"width\";i:142;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4178,2246,'_wp_attached_file','2019/06/Kilihiking15000-6.jpg'),(4179,2246,'_wp_attachment_image_alt','Kilihiking15000 (6)'),(4180,2246,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:142;s:6:\"height\";i:253;s:4:\"file\";s:29:\"2019/06/Kilihiking15000-6.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Kilihiking15000-6-142x200.jpg\";s:5:\"width\";i:142;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4181,2247,'_wp_attached_file','2019/06/Kilihiking15000-7.jpg'),(4182,2247,'_wp_attachment_image_alt','Kilihiking15000 (7)'),(4183,2247,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:337;s:6:\"height\";i:253;s:4:\"file\";s:29:\"2019/06/Kilihiking15000-7.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Kilihiking15000-7-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4184,2248,'_wp_attached_file','2019/06/Kilihiking15000-8.jpg'),(4185,2248,'_wp_attachment_image_alt','Kilihiking15000 (8)'),(4186,2248,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:142;s:6:\"height\";i:253;s:4:\"file\";s:29:\"2019/06/Kilihiking15000-8.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Kilihiking15000-8-142x200.jpg\";s:5:\"width\";i:142;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4187,2249,'_wp_attached_file','2019/06/Kilihiking15000-9.jpg'),(4188,2249,'_wp_attachment_image_alt','Kilihiking15000 (9)'),(4189,2249,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:402;s:6:\"height\";i:226;s:4:\"file\";s:29:\"2019/06/Kilihiking15000-9.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Kilihiking15000-9-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4190,2250,'_wp_attached_file','2019/06/Kilihiking15000-10.jpg'),(4191,2250,'_wp_attachment_image_alt','Kilihiking15000 (10)'),(4192,2250,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:826;s:6:\"height\";i:226;s:4:\"file\";s:30:\"2019/06/Kilihiking15000-10.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Kilihiking15000-10-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Kilihiking15000-10-500x137.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Kilihiking15000-10-768x210.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4193,2251,'_wp_attached_file','2019/06/Kilihiking15000-11.jpg'),(4194,2251,'_wp_attachment_image_alt','Kilihiking15000 (11)'),(4195,2251,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:146;s:6:\"height\";i:260;s:4:\"file\";s:30:\"2019/06/Kilihiking15000-11.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Kilihiking15000-11-146x200.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4196,2252,'_wp_attached_file','2019/06/Kilihiking15000-12.jpg'),(4197,2252,'_wp_attachment_image_alt','Kilihiking15000 (12)'),(4198,2252,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:146;s:6:\"height\";i:260;s:4:\"file\";s:30:\"2019/06/Kilihiking15000-12.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Kilihiking15000-12-146x200.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4199,2253,'_wp_attached_file','2019/06/Kilihiking15000-13.jpg'),(4200,2253,'_wp_attachment_image_alt','Kilihiking15000 (13)'),(4201,2253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:464;s:6:\"height\";i:261;s:4:\"file\";s:30:\"2019/06/Kilihiking15000-13.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Kilihiking15000-13-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4202,2254,'_wp_attached_file','2019/06/Kilihiking15000-14.jpg'),(4203,2254,'_wp_attachment_image_alt','Kilihiking15000 (14)'),(4204,2254,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:464;s:6:\"height\";i:261;s:4:\"file\";s:30:\"2019/06/Kilihiking15000-14.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Kilihiking15000-14-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4205,2255,'_wp_attached_file','2019/06/Kilihiking15000-15.jpg'),(4206,2255,'_wp_attachment_image_alt','Kilihiking15000 (15)'),(4207,2255,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:464;s:6:\"height\";i:261;s:4:\"file\";s:30:\"2019/06/Kilihiking15000-15.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Kilihiking15000-15-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4208,2256,'_wp_attached_file','2019/06/Kilihiking15000-16.jpg'),(4209,2256,'_wp_attachment_image_alt','Kilihiking15000 (16)'),(4210,2256,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:237;s:6:\"height\";i:316;s:4:\"file\";s:30:\"2019/06/Kilihiking15000-16.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Kilihiking15000-16-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4211,2257,'_edit_lock','1658982856:8'),(4212,2257,'_edit_last','8'),(4213,2257,'_wp_page_template','default'),(4214,2259,'_wp_attached_file','2019/06/16500-18400-14.jpg'),(4215,2259,'_wp_attachment_image_alt','16500 18400 (14)'),(4216,2259,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:369;s:6:\"height\";i:277;s:4:\"file\";s:26:\"2019/06/16500-18400-14.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"16500-18400-14-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4217,2260,'_wp_attached_file','2019/06/16500-18400-15.jpg'),(4218,2260,'_wp_attachment_image_alt','16500 18400 (15)'),(4219,2260,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:356;s:6:\"height\";i:267;s:4:\"file\";s:26:\"2019/06/16500-18400-15.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"16500-18400-15-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4220,2261,'_wp_attached_file','2019/06/16500-18400-1.jpg'),(4221,2261,'_wp_attachment_image_alt','16500 18400 (1)'),(4222,2261,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:25:\"2019/06/16500-18400-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"16500-18400-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"16500-18400-1-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4223,2262,'_wp_attached_file','2019/06/16500-18400-2.jpg'),(4224,2262,'_wp_attachment_image_alt','16500 18400 (2)'),(4225,2262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:25:\"2019/06/16500-18400-2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"16500-18400-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"16500-18400-2-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4226,2263,'_wp_attached_file','2019/06/16500-18400-3.jpg'),(4227,2263,'_wp_attachment_image_alt','16500 18400 (3)'),(4228,2263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:683;s:6:\"height\";i:911;s:4:\"file\";s:25:\"2019/06/16500-18400-3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"16500-18400-3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"16500-18400-3-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4229,2264,'_wp_attached_file','2019/06/16500-18400-4.jpg'),(4230,2264,'_wp_attachment_image_alt','16500 18400 (4)'),(4231,2264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:505;s:6:\"height\";i:284;s:4:\"file\";s:25:\"2019/06/16500-18400-4.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"16500-18400-4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"16500-18400-4-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4232,2265,'_wp_attached_file','2019/06/16500-18400-5.jpg'),(4233,2265,'_wp_attachment_image_alt','16500 18400 (5)'),(4234,2265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:213;s:6:\"height\";i:284;s:4:\"file\";s:25:\"2019/06/16500-18400-5.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"16500-18400-5-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4235,2266,'_wp_attached_file','2019/06/16500-18400-6.jpg'),(4236,2266,'_wp_attachment_image_alt','16500 18400 (6)'),(4237,2266,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:187;s:6:\"height\";i:249;s:4:\"file\";s:25:\"2019/06/16500-18400-6.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"16500-18400-6-187x200.jpg\";s:5:\"width\";i:187;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4238,2267,'_wp_attached_file','2019/06/16500-18400-7.jpg'),(4239,2267,'_wp_attachment_image_alt','16500 18400 (7)'),(4240,2267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:446;s:6:\"height\";i:251;s:4:\"file\";s:25:\"2019/06/16500-18400-7.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"16500-18400-7-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4241,2268,'_wp_attached_file','2019/06/16500-18400-8.jpg'),(4242,2268,'_wp_attachment_image_alt','16500 18400 (8)'),(4243,2268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:267;s:4:\"file\";s:25:\"2019/06/16500-18400-8.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"16500-18400-8-150x200.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4244,2269,'_wp_attached_file','2019/06/16500-18400-9.jpg'),(4245,2269,'_wp_attachment_image_alt','16500 18400 (9)'),(4246,2269,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:356;s:6:\"height\";i:267;s:4:\"file\";s:25:\"2019/06/16500-18400-9.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"16500-18400-9-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4247,2270,'_wp_attached_file','2019/06/16500-18400-10.jpg'),(4248,2270,'_wp_attachment_image_alt','16500 18400 (10)'),(4249,2270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:296;s:4:\"file\";s:26:\"2019/06/16500-18400-10.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"16500-18400-10-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"16500-18400-10-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4250,2271,'_wp_attached_file','2019/06/16500-18400-11.jpg'),(4251,2271,'_wp_attachment_image_alt','16500 18400 (11)'),(4252,2271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:203;s:6:\"height\";i:277;s:4:\"file\";s:26:\"2019/06/16500-18400-11.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"16500-18400-11-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4253,2272,'_wp_attached_file','2019/06/16500-18400-12.jpg'),(4254,2272,'_wp_attachment_image_alt','16500 18400 (12)'),(4255,2272,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:156;s:6:\"height\";i:277;s:4:\"file\";s:26:\"2019/06/16500-18400-12.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"16500-18400-12-156x200.jpg\";s:5:\"width\";i:156;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4256,2273,'_wp_attached_file','2019/06/16500-18400-13.jpg'),(4257,2273,'_wp_attachment_image_alt','16500 18400 (13)'),(4258,2273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:492;s:6:\"height\";i:277;s:4:\"file\";s:26:\"2019/06/16500-18400-13.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"16500-18400-13-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4259,432,'_aioseop_description','Dr. Fields and two Honduran translators Taking a break after a long day Dr.s Fields and Cavalino at work Dr&#039;s Fields and Cavalino with the owner...'),(4260,432,'_aioseop_title','Honduras 2006'),(4261,453,'_aioseop_title','Honduras 2007'),(4262,453,'_aioseop_description','Attening a noon lecture Dr. Timmerman instructs a new physician Dr. Fields, a colleague and two translators Dr.-Fields, two-young translators and the...'),(4263,469,'_aioseop_title','Treat Your Chronic Pain with Prolotherapy'),(4264,469,'_aioseop_description','Are you suffering from a back injury, a work related injury or a sports injury? Find out how Dr. Fields can Treat your chronic pain with Prolotherapy.'),(4265,2274,'_edit_lock','1658982912:8'),(4266,2274,'_edit_last','8'),(4267,2274,'_wp_page_template','default'),(4268,509,'_aioseop_description','Consider Prolotherapy for chronic neck pain, a non-surgical treatment that does more than alleviate the pain, it fixes the real cause of the pain. Contact Dr. Fields for a consultation or a second opinion before surgery (310) 453-1234.'),(4269,509,'_aioseop_title','Prolotherapy for Chronic Neck Pain'),(4270,511,'_aioseop_description','Now Available: Prolotherapy for Chronic Shoulder Pain due to dislocation and attendant injury, or rotator cuff injury. Are you a candidate? Call (310) 453-1234 for a consultation or second opinion before surgery.'),(4271,511,'_aioseop_title','Prolotherapy for Chronic Shoulder Pain, Dislocation, Attendant Injury, Rotator Cuff Injury'),(4272,504,'_aioseop_title','Honduras 2009'),(4273,504,'_aioseop_description','Dr. Fields instructs Dr. Matt Dr. Fields lecturing Dr&#039;s Bill, Saul and Peter Dr. Fields and his student Dr. Laurent Dr. Fields and the La Ceiba R...'),(4274,2276,'_wp_attached_file','2019/06/summit-19341-1.jpg'),(4275,2276,'_wp_attachment_image_alt','Summit 19,341 (1)'),(4276,2276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:367;s:6:\"height\";i:275;s:4:\"file\";s:26:\"2019/06/summit-19341-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summit-19341-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4277,2277,'_wp_attached_file','2019/06/summit-19341-2.jpg'),(4278,2277,'_wp_attachment_image_alt','Summit 19,341 (2)'),(4279,2277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:367;s:6:\"height\";i:275;s:4:\"file\";s:26:\"2019/06/summit-19341-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summit-19341-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4280,524,'_aioseop_description','Prolotherapy for Chronic Elbow Pain treats the real problem, not just the symptom, which leads to permanent relief. Call Dr. Fields on (310) 4563-1234 for consultation or a second opinion before elbow surgery.'),(4281,2278,'_wp_attached_file','2019/06/summit-19341-3.jpg'),(4282,2278,'_wp_attachment_image_alt','Summit 19,341 (3)'),(4283,2278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:489;s:6:\"height\";i:275;s:4:\"file\";s:26:\"2019/06/summit-19341-3.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summit-19341-3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4284,524,'_aioseop_title','Prolotherapy for Chronic Elbow Pain'),(4285,2279,'_wp_attached_file','2019/06/summit-19341-4.jpg'),(4286,2279,'_wp_attachment_image_alt','Summit 19,341 (4)'),(4287,2279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1232;s:6:\"height\";i:333;s:4:\"file\";s:26:\"2019/06/summit-19341-4.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summit-19341-4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"summit-19341-4-500x135.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"summit-19341-4-768x208.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4288,2280,'_wp_attached_file','2019/06/summit-19341-5.jpg'),(4289,2280,'_wp_attachment_image_alt','Summit 19,341 (5)'),(4290,2280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:414;s:6:\"height\";i:310;s:4:\"file\";s:26:\"2019/06/summit-19341-5.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summit-19341-5-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4291,2281,'_wp_attached_file','2019/06/summit-19341-6.jpg'),(4292,2281,'_wp_attachment_image_alt','Summit 19,341 (6)'),(4293,2281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:413;s:6:\"height\";i:310;s:4:\"file\";s:26:\"2019/06/summit-19341-6.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summit-19341-6-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4294,2282,'_wp_attached_file','2019/06/summit-19341-7.jpg'),(4295,2282,'_wp_attachment_image_alt','Summit 19,341 (7)'),(4296,2282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:397;s:6:\"height\";i:310;s:4:\"file\";s:26:\"2019/06/summit-19341-7.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"summit-19341-7-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4297,543,'_aioseop_title','Honduras 2011'),(4298,543,'_aioseop_description','With two other student docs and a patient With a local translator, a student doc from Italy and a patient Teaching a doc Dr. Fields with the dentist,...'),(4299,2283,'_edit_lock','1658895651:8'),(4300,2283,'_edit_last','8'),(4303,572,'_aioseop_title','Honduras 2013 Photos - Final Party, Olanchito - The Town, In the Clinic Pictures'),(4304,572,'_aioseop_description','Find the links for Honduras 2013 pictures - The final party, Olanchito- the town, mid weekend, In the Clinic and before &amp; after pictures.'),(4305,2283,'_wp_page_template','default'),(4306,2285,'_wp_attached_file','2019/06/Sunriseuptop-1.jpg'),(4307,2285,'_wp_attachment_image_alt','Sunriseuptop (1)'),(4308,2285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:355;s:6:\"height\";i:200;s:4:\"file\";s:26:\"2019/06/Sunriseuptop-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sunriseuptop-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4309,2286,'_wp_attached_file','2019/06/Sunriseuptop-2.jpg'),(4310,2286,'_wp_attachment_image_alt','Sunriseuptop (2)'),(4311,2286,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:200;s:4:\"file\";s:26:\"2019/06/Sunriseuptop-2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sunriseuptop-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Sunriseuptop-2-500x139.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4312,2287,'_wp_attached_file','2019/06/Sunriseuptop-3.jpg'),(4313,2287,'_wp_attachment_image_alt','Sunriseuptop (3)'),(4314,2287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:704;s:6:\"height\";i:396;s:4:\"file\";s:26:\"2019/06/Sunriseuptop-3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sunriseuptop-3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Sunriseuptop-3-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4315,2288,'_wp_attached_file','2019/06/Sunriseuptop-4.jpg'),(4316,2288,'_wp_attachment_image_alt','Sunriseuptop (4)'),(4317,2288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:223;s:6:\"height\";i:396;s:4:\"file\";s:26:\"2019/06/Sunriseuptop-4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sunriseuptop-4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4318,2289,'_wp_attached_file','2019/06/Sunriseuptop-5.jpg'),(4319,2289,'_wp_attachment_image_alt','Sunriseuptop (5)'),(4320,2289,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:297;s:6:\"height\";i:396;s:4:\"file\";s:26:\"2019/06/Sunriseuptop-5.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sunriseuptop-5-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4321,2290,'_wp_attached_file','2019/06/Sunriseuptop-6.jpg'),(4322,2290,'_wp_attachment_image_alt','Sunriseuptop (6)'),(4323,2290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:202;s:6:\"height\";i:359;s:4:\"file\";s:26:\"2019/06/Sunriseuptop-6.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sunriseuptop-6-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4324,2291,'_wp_attached_file','2019/06/Sunriseuptop-7.jpg'),(4325,2291,'_wp_attachment_image_alt','Sunriseuptop (7)'),(4326,2291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:269;s:6:\"height\";i:359;s:4:\"file\";s:26:\"2019/06/Sunriseuptop-7.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sunriseuptop-7-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4327,2292,'_wp_attached_file','2019/06/Sunriseuptop-8.jpg'),(4328,2292,'_wp_attachment_image_alt','Sunriseuptop (8)'),(4329,2292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:479;s:6:\"height\";i:359;s:4:\"file\";s:26:\"2019/06/Sunriseuptop-8.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sunriseuptop-8-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4330,2293,'_wp_attached_file','2019/06/Sunriseuptop-9.jpg'),(4331,2293,'_wp_attachment_image_alt','Sunriseuptop (9)'),(4332,2293,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:269;s:6:\"height\";i:359;s:4:\"file\";s:26:\"2019/06/Sunriseuptop-9.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sunriseuptop-9-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4333,609,'_aioseop_title','Philanthropy - Dr. Fields - Medical Physician, Hackett-Hemwall Foundation'),(4334,609,'_aioseop_description','Dr. Fields volunteers, his time as a medical physician to help those in need, with the Hackett-Hemwall Foundation, the worldâ€™s largest teaching and education organization for Prolotherapy.'),(4335,2294,'_edit_lock','1658981744:8'),(4336,2294,'_edit_last','8'),(4337,2294,'_wp_page_template','default'),(4338,2296,'_wp_attached_file','2019/06/final-goodbyes-7.jpg'),(4339,2296,'_wp_attachment_image_alt','Final Goodbyes (7)'),(4340,2296,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:615;s:6:\"height\";i:348;s:4:\"file\";s:28:\"2019/06/final-goodbyes-7.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"final-goodbyes-7-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"final-goodbyes-7-500x283.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4341,2297,'_wp_attached_file','2019/06/final-goodbyes-8.jpg'),(4342,2297,'_wp_attachment_image_alt','Final Goodbyes (8)'),(4343,2297,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:334;s:6:\"height\";i:445;s:4:\"file\";s:28:\"2019/06/final-goodbyes-8.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"final-goodbyes-8-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4347,2299,'_wp_attached_file','2019/06/final-goodbyes-1.jpg'),(4348,2299,'_wp_attachment_image_alt','Final Goodbyes (1)'),(4349,2299,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:683;s:6:\"height\";i:279;s:4:\"file\";s:28:\"2019/06/final-goodbyes-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"final-goodbyes-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"final-goodbyes-1-500x204.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4350,2300,'_wp_attached_file','2019/06/final-goodbyes-2.jpg'),(4351,2300,'_wp_attachment_image_alt','Final Goodbyes (2)'),(4352,2300,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:157;s:6:\"height\";i:279;s:4:\"file\";s:28:\"2019/06/final-goodbyes-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"final-goodbyes-2-157x200.jpg\";s:5:\"width\";i:157;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4353,2301,'_wp_attached_file','2019/06/final-goodbyes-3.jpg'),(4354,2301,'_wp_attachment_image_alt','Final Goodbyes (3)'),(4355,2301,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:157;s:6:\"height\";i:279;s:4:\"file\";s:28:\"2019/06/final-goodbyes-3.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"final-goodbyes-3-157x200.jpg\";s:5:\"width\";i:157;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4356,2302,'_wp_attached_file','2019/06/final-goodbyes-4.jpg'),(4357,2302,'_wp_attachment_image_alt','Final Goodbyes (4)'),(4358,2302,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:223;s:6:\"height\";i:279;s:4:\"file\";s:28:\"2019/06/final-goodbyes-4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"final-goodbyes-4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4359,2303,'_wp_attached_file','2019/06/final-goodbyes-5.jpg'),(4360,2303,'_wp_attachment_image_alt','Final Goodbyes (5)'),(4361,2303,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:348;s:6:\"height\";i:348;s:4:\"file\";s:28:\"2019/06/final-goodbyes-5.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"final-goodbyes-5-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4362,2304,'_wp_attached_file','2019/06/final-goodbyes-6.jpg'),(4363,2304,'_wp_attachment_image_alt','Final Goodbyes (6)'),(4364,2304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:261;s:6:\"height\";i:348;s:4:\"file\";s:28:\"2019/06/final-goodbyes-6.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"final-goodbyes-6-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4365,2306,'_wp_attached_file','2019/06/final-goodbyes-9.jpg'),(4366,2306,'_wp_attachment_image_alt','Final Goodbyes (9)'),(4367,2306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:445;s:6:\"height\";i:445;s:4:\"file\";s:28:\"2019/06/final-goodbyes-9.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"final-goodbyes-9-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4369,2309,'_edit_lock','1600103989:11'),(4370,2309,'_edit_last','1'),(4371,2310,'_wp_attached_file','2019/06/SantaMonicaSeminar3.png'),(4372,2310,'_wp_attachment_image_alt','Santamonicaseminar3'),(4373,2310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:499;s:6:\"height\";i:156;s:4:\"file\";s:31:\"2019/06/SantaMonicaSeminar3.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"SantaMonicaSeminar3-200x156.png\";s:5:\"width\";i:200;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4374,2309,'_wp_page_template','default'),(4375,2312,'_edit_lock','1600103961:11'),(4376,2312,'_edit_last','8'),(4377,2312,'_wp_page_template','default'),(4378,2314,'_edit_lock','1600103287:11'),(4379,2314,'_edit_last','1'),(4383,2314,'_wp_page_template','default'),(4384,2317,'_wp_attached_file','2019/06/Disclamer-img.jpg'),(4385,2317,'_wp_attachment_image_alt','Disclamer Img'),(4386,2317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:313;s:4:\"file\";s:25:\"2019/06/Disclamer-img.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Disclamer-img-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4387,414,'_aioseop_title','PRP Treatment in Los Angeles, Santa Monica'),(4388,414,'_aioseop_description','PRP treatment is a non-surgical treatment for joint repair. PRP helps you avoid surgery, heal arthritis and heal sports injuries. Learn More. Call Dr. Fields today.'),(4389,2319,'_edit_lock','1600103964:11'),(4390,2319,'_edit_last','1'),(4391,2319,'_wp_page_template','default'),(4392,2321,'_edit_last','1'),(4393,2321,'_wp_page_template','default'),(4394,2321,'_edit_lock','1600104349:11'),(4395,2324,'_wp_attached_file','2019/06/walking15000feet-1.jpg'),(4396,2324,'_wp_attachment_image_alt','Walking15000+feet (1)'),(4397,2324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:187;s:6:\"height\";i:333;s:4:\"file\";s:30:\"2019/06/walking15000feet-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"walking15000feet-1-187x200.jpg\";s:5:\"width\";i:187;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4398,2325,'_wp_attached_file','2019/06/walking15000feet-2.jpg'),(4399,2325,'_wp_attachment_image_alt','Walking15000+feet (2)'),(4400,2325,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:444;s:6:\"height\";i:333;s:4:\"file\";s:30:\"2019/06/walking15000feet-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"walking15000feet-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4401,2326,'_wp_attached_file','2019/06/walking15000feet-3.jpg'),(4402,2326,'_wp_attachment_image_alt','Walking15000+feet (3)'),(4403,2326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:592;s:6:\"height\";i:333;s:4:\"file\";s:30:\"2019/06/walking15000feet-3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"walking15000feet-3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"walking15000feet-3-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4404,2327,'_wp_attached_file','2019/06/walking15000feet-4.jpg'),(4405,2327,'_wp_attachment_image_alt','Walking15000+feet (4)'),(4406,2327,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:452;s:6:\"height\";i:339;s:4:\"file\";s:30:\"2019/06/walking15000feet-4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"walking15000feet-4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4407,2328,'_wp_attached_file','2019/06/walking15000feet-5.jpg'),(4408,2328,'_wp_attachment_image_alt','Walking15000+feet (5)'),(4409,2328,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:191;s:6:\"height\";i:339;s:4:\"file\";s:30:\"2019/06/walking15000feet-5.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"walking15000feet-5-191x200.jpg\";s:5:\"width\";i:191;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4410,2329,'_wp_attached_file','2019/06/walking15000feet-6.jpg'),(4411,2329,'_wp_attachment_image_alt','Walking15000+feet (6)'),(4412,2329,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:191;s:6:\"height\";i:339;s:4:\"file\";s:30:\"2019/06/walking15000feet-6.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"walking15000feet-6-191x200.jpg\";s:5:\"width\";i:191;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4413,2330,'_wp_attached_file','2019/06/walking15000feet-7.jpg'),(4414,2330,'_wp_attachment_image_alt','Walking15000+feet (7)'),(4415,2330,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:191;s:6:\"height\";i:339;s:4:\"file\";s:30:\"2019/06/walking15000feet-7.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"walking15000feet-7-191x200.jpg\";s:5:\"width\";i:191;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4416,2331,'_wp_attached_file','2019/06/walking15000feet-8.jpg'),(4417,2331,'_wp_attachment_image_alt','Walking15000+feet (8)'),(4418,2331,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:463;s:6:\"height\";i:260;s:4:\"file\";s:30:\"2019/06/walking15000feet-8.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"walking15000feet-8-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4419,2332,'_wp_attached_file','2019/06/walking15000feet-9.jpg'),(4420,2332,'_wp_attachment_image_alt','Walking15000+feet (9)'),(4421,2332,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:463;s:6:\"height\";i:260;s:4:\"file\";s:30:\"2019/06/walking15000feet-9.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"walking15000feet-9-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4422,2333,'_wp_attached_file','2019/06/walking15000feet-10.jpg'),(4423,2333,'_wp_attachment_image_alt','Walking15000+feet (10)'),(4424,2333,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:147;s:6:\"height\";i:261;s:4:\"file\";s:31:\"2019/06/walking15000feet-10.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"walking15000feet-10-147x200.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4425,2334,'_wp_attached_file','2019/06/walking15000feet-11.jpg'),(4426,2334,'_wp_attachment_image_alt','Walking15000+feet (11)'),(4427,2334,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:147;s:6:\"height\";i:261;s:4:\"file\";s:31:\"2019/06/walking15000feet-11.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"walking15000feet-11-147x200.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4428,486,'_aioseop_title','Prolotherapy for Chronic Knee Pain'),(4429,2335,'_edit_lock','1654390757:9'),(4430,2335,'_edit_last','9'),(4431,486,'_aioseop_description','Suffering from knee pain due to Arthritis, Osteoarthritis or ligament or tendon damage? Prolotherapy for chronic knee pain by Dr. Fields can relieve you of your suffering.'),(4432,2335,'_wp_page_template','default'),(4433,2337,'_wp_attached_file','2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg'),(4434,2337,'_wp_attachment_image_alt','Stem Cell Doctor Peter Fields Md Dc'),(4435,2337,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:474;s:6:\"height\";i:752;s:4:\"file\";s:49:\"2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Stem-Cell-Doctor-Peter-Fields-MD-DC-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\";s:5:\"width\";i:315;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4436,2339,'_edit_lock','1600102565:11'),(4437,2339,'_edit_last','8'),(4438,2339,'_wp_page_template','default'),(4439,528,'_aioseop_title','Prolotherapy Hip Treatment'),(4440,528,'_aioseop_description','Prolotherapy hip treatment helps you to avoid hip surgery, steroids and strong pain medicine to treat and repair hip injuries and groin pain. Call Dr. Fields Today!'),(4441,533,'_aioseop_title','Prolotherapy Knee Treatment'),(4442,533,'_aioseop_description','Prolotherapy knee treatment helps you to avoid knee surgery, steroids and strong pain medicine to treat and repair knee injuries and leg pain. Call Dr. Fields Today!'),(4443,536,'_aioseop_title','Prolotherapy Neck Treatment'),(4444,536,'_aioseop_description','Prolotherapy Neck treatment helps you to avoid neck surgery, steroids and strong pain medicine to treat and repair neck injuries and head pain. Call Dr. Fields Today!'),(4445,545,'_aioseop_description','Prolotherapy shoulder treatment helps you to avoid shoulder surgery, steroids and strong pain medicine to treat and repair shoulder injuries and shoulder pain. Call Dr. Fields Today!'),(4446,545,'_aioseop_title','Prolotherapy Shoulder Treatment'),(4447,567,'_aioseop_description','Prolotherapy back treatment helps you to avoid back surgery, steroids and strong pain medicine to treat and repair back injuries and neck pain. Call Dr. Fields Today!'),(4448,567,'_aioseop_title','Prolotherapy Back Treatment'),(4453,2343,'_wp_attached_file','2019/06/Dr-Fields-Fix-Your-Joints-Banner.jpg'),(4454,2343,'_wp_attachment_image_alt','Dr Fields Fix Your Joints Banner'),(4455,2343,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:672;s:6:\"height\";i:276;s:4:\"file\";s:44:\"2019/06/Dr-Fields-Fix-Your-Joints-Banner.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Dr-Fields-Fix-Your-Joints-Banner-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Dr-Fields-Fix-Your-Joints-Banner-500x205.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4456,2344,'_wp_attached_file','2019/06/CCA-Cal-Chiro-Logo.jpg'),(4457,2344,'_wp_attachment_image_alt','Cca Cal Chiro Logo'),(4458,2344,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:207;s:4:\"file\";s:30:\"2019/06/CCA-Cal-Chiro-Logo.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"CCA-Cal-Chiro-Logo-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"CCA-Cal-Chiro-Logo-500x135.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"CCA-Cal-Chiro-Logo-768x207.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4459,2345,'_edit_lock','1599788754:9'),(4460,2345,'_edit_last','9'),(4461,2345,'_wp_page_template','default'),(4463,2347,'_edit_lock','1623886800:9'),(4464,2347,'_edit_last','9'),(4465,2347,'_wp_page_template','default'),(4471,2353,'_edit_lock','1599513540:9'),(4472,2353,'_edit_last','9'),(4473,2353,'_wp_page_template','default'),(4475,2355,'_edit_lock','1561710711:1'),(4476,2355,'_edit_last','1'),(4477,2355,'_wp_page_template','default'),(4479,627,'_aioseop_title','Honduras 2008'),(4480,627,'_aioseop_description','prolotherapy, joint injury surgery alternative, orthopedic and sports medicine, sports injury treatment, platelet rich plasma Los Angeles, platelet rich plasma,DotNetNuke,DNN'),(4481,615,'_aioseop_title','Prolotherapy Hand Treatment'),(4482,615,'_aioseop_description','Prolotherapy hand treatment helps you to avoid hip surgery, steroids and strong pain medicine to treat and repair hand injuries and wrist pain. Call Dr. Fields Today!'),(4483,632,'_aioseop_title','Sports Injuries'),(4484,632,'_aioseop_description','Pacific Prolotherapy and Medical Wellness Center specializes in Prolotherapy, PRP, Sports Medicine, Arthritis Treatment, IV Therapy in Los Angeles and Santa Monica, CA.'),(4485,2357,'_wp_attached_file','2019/06/knee-pain-man.jpg'),(4486,2357,'_wp_attachment_image_alt','Knee Pain Man'),(4487,2357,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:375;s:4:\"file\";s:25:\"2019/06/knee-pain-man.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"knee-pain-man-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"thamkc/123RF\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4490,1520,'_aioseop_title','Foods that Fight Fat'),(4491,1520,'_aioseop_description','Nutrition, Foods that Fight Fat. Looking to burn fat? Learn how you can inscrease you body&#039;s fat burning abilities.'),(4492,1518,'_aioseop_title','Bursts of Activity, Learn How Exercise Can Give You Energy'),(4493,1518,'_aioseop_description','Read how activity and exercise can give you more energy'),(4494,1516,'_aioseop_title','To Improve Fitness, Try Sleep'),(4495,1516,'_aioseop_description','A good nights sleep may lead to better fitness'),(4496,1514,'_aioseop_title','Vitamin D: It’s Not Just For Bones Anymore'),(4497,1514,'_aioseop_description','New research around vitamin D is showing that those deficient in the vitamin may have more far reaching implications than just bone health. According...'),(4498,1512,'_aioseop_title','Napping at the Office May Help Your Heart'),(4499,1512,'_aioseop_description','Napping at the Office May Help Your Heart. New research shows that taking a midday nap may reduce the risk of fatal heart problems.'),(4500,1510,'_aioseop_title','Dr. Fields Completes His 7th Half Ironman Triathlon'),(4501,1510,'_aioseop_description','Dr. Fields completes his 7th half Ironman triathlon in Santa Cruz, CA. Pacific Prolotherapy and Wellness Center provides services in the areas of Prolotherapy, sports medicine, arthritis treatment, nutrition, chiropractic treatment, natural hormone therapy and Holistic or Integrative Medicine'),(4502,1508,'_aioseop_title','The Importance of Supplementation'),(4503,1508,'_aioseop_description','A recent study published in the Journal of the American Dietetic Association, August 2007, reports that a substantial proportion of people 51 years of...'),(4504,1506,'_aioseop_title','American Heart Association: Soft Drinks, Diet or Regular, Increase Risk for Heart Disease'),(4505,1506,'_aioseop_description','American Heart Association: Soft Drinks, Diet or Regular, Increase Risk for Heart Disease The Framingham Heart Study released the results of an observational study that associates the consumption of soft drinks to an increased risk for coronary vascular disease. The results were published in the July, 2007 issue of Circulation: Journal of the American Heart Association.'),(4506,1504,'_aioseop_title','Dr. Fields interviewed on KCAL/CBS about &#039;Prolotherapy&#039;'),(4507,1504,'_aioseop_description','Dr Fields interviewed on KCAL/CBS about &#039;Prolotherapy. Pacific Prolotherapy and Wellness Center provides services in the areas of Prolotherapy, sports medicine, arthritis treatment, nutrition, chiropractic treatment, natural hormone therapy and Holistic or Integrative Medicine'),(4508,1500,'_aioseop_title','Dr. Sinatra&#039;s List of Top Doctors List'),(4509,1500,'_aioseop_description','Peter A. Fields, M.D., D.C. (Prolotherapy, Holistic Medicine, Sports Medicine) Pacific Prolotherapy &amp;amp;amp; Medical Wellness Center 1919 Santa Monic...'),(4510,1498,'_aioseop_title','Body Cleansing Foods'),(4511,1498,'_aioseop_description','What to Ask When Looking for a Prolotherapist. Pacific Prolotherapy and Wellness Center provides services in the areas of Prolotherapy, sports medicine, arthritis treatment, nutrition, chiropractic treatment, natural hormone therapy and Holistic or Integrative Medicine'),(4512,1496,'_aioseop_title','Healthy Breakfast'),(4513,1496,'_aioseop_description','Protein-Rich Breakfast Prompts Healthy Brain Signals By eating a breakfast high in protein, not only does one increase satiety and reduce hunger throu...'),(4514,1494,'_aioseop_title','Is it a Good Supplement'),(4515,1494,'_aioseop_description','Read useful articles written by Dr. Fields on various topics like - Los Angeles PRP Prolotherapy, Chelation Therapy, Health Concerns about Dairy Products, etc.'),(4516,1490,'_aioseop_title','Delicious Meat Alternatives'),(4517,1490,'_aioseop_description','Read useful articles written by Dr. Fields on various topics like - Los Angeles PRP Prolotherapy, Chelation Therapy, Health Concerns about Dairy Products, etc.'),(4518,1488,'_aioseop_title','Improve Sports Performance With Co-Q'),(4519,1488,'_aioseop_description','Read useful articles written by Dr. Fields on various topics like - Los Angeles PRP Prolotherapy, Chelation Therapy, Health Concerns about Dairy Products, etc.'),(4520,1486,'_aioseop_title','YOUR BEST HEALTH INSURANCE'),(4521,1486,'_aioseop_description','Read useful articles written by Dr. Fields on various topics like - Los Angeles PRP Prolotherapy, Chelation Therapy, Health Concerns about Dairy Products, etc'),(4522,1484,'_aioseop_title','Dementia - Diet, Exercise and Supplements Can Help'),(4523,1484,'_aioseop_description','Read useful articles written by Dr. Fields on various topics like - Los Angeles PRP Prolotherapy, Chelation Therapy, Health Concerns about Dairy Products, etc.'),(4524,1482,'_aioseop_title','Health Concerns about Dairy Products'),(4526,1482,'_aioseop_description','Read useful articles written by Dr. Fields on various topics like - Los Angeles PRP Prolotherapy, Chelation Therapy, Health Concerns about Dairy Products, etc.'),(4528,1469,'_aioseop_description','Specific sub-populations may benefit from antioxidant intakes to support healthy aging, with men particularly seen as an ‘at-risk’ group, says a new paper published in the American Journal of Epidemiolog.'),(4529,1480,'_aioseop_title','Knee and hip replacements increase heart attack risk briefly'),(4530,1469,'_aioseop_title','An adequate supply of antioxidant nutrients may have a beneficial role for healthy aging'),(4531,1480,'_aioseop_description','Knee and hip replacements increase heart attack risk briefly'),(4532,1471,'_aioseop_title','A4M Conference Florida 2016'),(4534,1471,'_aioseop_description',',DotNetNuke,DNN'),(4536,1475,'_aioseop_title','Needles, Not Knives, to Treat Sports Injuries and Degeneration'),(4537,1475,'_aioseop_description','Read useful articles written by Dr. Fields on various topics like - Los Angeles PRP Prolotherapy, Chelation Therapy, Health Concerns about Dairy Products, etc.'),(4538,1473,'_aioseop_description','Dr. Fields shares a personal story about how he helped a woman during a disastrous event and turned what could have been a tragedy into a wonderful event.'),(4539,1473,'_aioseop_title','A wonderful ending to an almost disastrous event'),(4540,1524,'_aioseop_title','Stem Cell Prolotherapy - July 2014 Townsend Article'),(4541,1524,'_aioseop_description','prolotherapy, joint injury surgery alternative, orthopedic and sports medicine, sports injury treatment, platelet rich plasma Los Angeles, platelet rich plasma,DotNetNuke,DNN'),(4542,1526,'_aioseop_title','Elbow Injuries: What To Do About Them - February / March 2014'),(4543,1526,'_aioseop_description',',DotNetNuke,DNN'),(4544,1530,'_aioseop_title','Low Back: Why Surgery May Not Be The Best Choice - January 2014'),(4545,1530,'_aioseop_description','prolotherapy, joint injury surgery alternative, orthopedic and sports medicine, sports injury treatment, platelet rich plasma Los Angeles, platelet rich plasma,DotNetNuke,DNN'),(4546,1340,'_aioseop_description','Watch video testimonials of our satisfied customers who have got Prolotherapy treatment from Dr. Fields.'),(4547,1340,'_aioseop_title','Video Testimonials, Satisfied Customers, Prolotherapy'),(4548,1532,'_aioseop_title','The Hip Joint: Do You Really Need It Replaced? - December 2013'),(4549,1532,'_aioseop_description','prolotherapy, joint injury surgery alternative, orthopedic and sports medicine, sports injury treatment, platelet rich plasma Los Angeles, platelet rich plasma,DotNetNuke,DNN'),(4550,1700,'_aioseop_description','Watch video testimonials of our satisfied customers who have got Prolotherapy treatment from Dr. Fields.'),(4551,1700,'_aioseop_title','Cellular Regeneration Testimonials, Satisfied Customers, Prolotherapy'),(4552,1535,'_aioseop_title','MRI: Why Get One? - October 2013'),(4553,1535,'_aioseop_description','prolotherapy, joint injury surgery alternative, orthopedic and sports medicine, sports injury treatment, platelet rich plasma Los Angeles, platelet rich plasma,DotNetNuke,DNN'),(4554,1539,'_aioseop_title','Knee Pain &amp; Dysfunction - July 2013'),(4555,1539,'_aioseop_description','prolotherapy, joint injury surgery alternative, orthopedic and sports medicine, sports injury treatment, platelet rich plasma Los Angeles, platelet rich plasma,DotNetNuke,DNN'),(4556,1537,'_aioseop_title','Rotator Cuff Shoulder Injuries - August 2013'),(4557,1537,'_aioseop_description','prolotherapy, joint injury surgery alternative, orthopedic and sports medicine, sports injury treatment, platelet rich plasma Los Angeles, platelet rich plasma,DotNetNuke,DNN'),(4558,1541,'_aioseop_title','How to Avoid Joint &amp; Spine Surgery and Live Pain Free - June 2013'),(4559,1541,'_aioseop_description','prolotherapy, joint injury surgery alternative, orthopedic and sports medicine, sports injury treatment, platelet rich plasma Los Angeles, platelet rich plasma,DotNetNuke,DNN'),(4560,1012,'_aioseop_description','Read written testimonials from our satisfied customers who have recieved Prolotherapy treatment from Dr. Fields'),(4561,1012,'_aioseop_title','Written Testimonials, Satisfied Customers, Prolotherapy'),(4562,29,'_aioseop_title','Contact Us'),(4563,29,'_aioseop_description','Pacific Prolotherapy and Medical Wellness Center specializes in Prolotherapy, PRP, Sports Medicine, Arthritis Treatment, IV Therapy in Los Angeles and Santa Monica, CA.'),(4564,977,'_aioseop_title','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields'),(4565,977,'_aioseop_description','OrthoRegen specializes in Stem Cell, PRP, Prolotherapy, Arthritis Treatment, in Los Angeles and Santa Monica, CA.'),(4569,583,'_aioseop_description','Find the links for Honduras 2013 pictures - The final party, Olanchito- the town, mid weekend, In the Clinic and before &amp; after pictures.'),(4570,583,'_aioseop_title','Honduras 2013 Photos - Final Party, Olanchito - The Town, In the Clinic Pictures'),(4571,585,'_aioseop_title','	Honduras 2013 - Olanchito - The Town'),(4572,585,'_aioseop_description','Call today to learn about our joint injury surgery alternatives and treatments. Call 310 453-1234'),(4573,587,'_aioseop_title','Honduras 2013 - Mid Weekend'),(4574,587,'_aioseop_description','Call today to learn about our joint injury surgery alternatives and treatments. Call 310 453-1234'),(4575,589,'_aioseop_title','Honduras 2013 - In the Clinic'),(4576,589,'_aioseop_description','Call today to learn about our joint injury surgery alternatives and treatments. Call 310 453-1234'),(4577,591,'_aioseop_description','Call today to learn about our joint injury surgery alternatives and treatments. Call 310 453-1234'),(4578,591,'_aioseop_title','Honduras 2013 - Before and After'),(4579,1773,'_aioseop_title','Recommended Sites'),(4580,582,'_aioseop_title','Elbow Injuries, Elbow Pain, Prolotherapy and Treatment for Elbow Injuries'),(4581,1773,'_aioseop_description','What to Expect Post ProlotherapyTreatment. Pacific Prolotherapy and Wellness Center provides services in the areas of Prolotherapy, sports medicine, arthritis treatment, nutrition, chiropractic treatment, natural hormone therapy and Holistic or Integrative Medicine'),(4582,582,'_aioseop_description','We treat elbow pain and injuries with comprehensive Prolotherapy. We offer our patients experience and knowledgeable treatment for their elbow pain and injuries'),(4583,3,'_aioseop_title','Privacy Policy'),(4584,3,'_aioseop_description','What information do we collect? We collect information from you when you subscribe to our newsletter or fill out a form. Any data we request that is n...'),(4585,595,'_aioseop_title','Foot and Ankle Injuries Pain, Prolotherapy, Relief from Foot Pain'),(4586,595,'_aioseop_description','Looking for relief from your foot pain that does not include surgery? We treat foot and ankle pain and injuries with comprehensive Prolotherapy.'),(4587,1820,'_aioseop_title','	Chelation Therapy, Overload of Metals, Optimal Health, Sustained Wellness'),(4588,1820,'_aioseop_description','Chelation Therapy has been successfully used for overload of various metals from the body. To ensure absolute safety, Chelation Therapy should be done by a qualified, licensed physician.'),(4589,104,'_aioseop_title','Office Move'),(4590,104,'_aioseop_description',',DotNetNuke,DNN'),(4593,1831,'_aioseop_title','Bio-Identical Hormone Therapy, Supplement, Personal Hormone Consultation'),(4594,1831,'_aioseop_description','Our hormone production decreases with our age due to stresses of life. Call Dr. Fields now for your personal hormone consultation. We use Bio-Identical Hormones to supplement what is out of balance in your body.'),(4597,1845,'_aioseop_title','Integrative Medicine, Holistic Medicine, Reaching Higher Levels of Wellness'),(4598,1845,'_aioseop_description','Holistic or Integrative Medicine is a multi-faceted approach to wellness that supports reaching higher levels of wellness as well as preventing illness.'),(4599,1837,'_aioseop_title','Laser Therapy, Class Four Laser Therapy, Deep Tissue Penetration'),(4600,1758,'_aioseop_title','Ironman'),(4601,1837,'_aioseop_description','Laser therapy is a new and cutting edge treatment in which powerful deep tissue penetration safely and effectively treats more conditions than traditional low level laser therapy. To learn more contact us today.'),(4602,1758,'_aioseop_description',',DotNetNuke,DNN'),(4645,2009,'_aioseop_description','Prolotherapy, Prolotherapy Research on Ankle and Foot Pain. Cure your joint pain with prolotherapy.'),(4646,2009,'_aioseop_title','Prolotherapy Research - Ankle Foot'),(4647,2012,'_aioseop_title','Prolotherapy Research - Low Back'),(4648,2012,'_aioseop_description','Prolotherapy, Prolotherapy Research on Lower Back Pain. Is Prolotherapy Right for you?.'),(4649,2014,'_aioseop_title','Prolotherapy Research - Finger'),(4650,2014,'_aioseop_description','Prolotherapy, Prolotherapy Research on Finger Pain and More. Prolotherapy may be the right cure for finger pain'),(4651,2020,'_aioseop_title','Prolotherapy Research - Knee'),(4652,2020,'_aioseop_description','Prolotherapy, Prolotherapy Research on Knee Pain Prolotherapy might be right for you.'),(4653,2024,'_aioseop_title','Prolotherapy Research - Elbow'),(4654,2024,'_aioseop_description','Prolotherapy, Prolotherapy Research on Elbow Pain. Fix your elbow pain with prolotherapy'),(4655,2028,'_aioseop_title','Prolotherapy Research - Groin Pelvis'),(4656,2028,'_aioseop_description','Prolotherapy, Prolotherapy Research on Groin and Pelvis Pain. Prolotherapy may be right for you'),(4657,382,'_aioseop_description','Avoid Joint Surgery with Prolotherapy treatment,  a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. Call Dr. Fields to see if Prolotherapy will work for you.'),(4658,382,'_aioseop_title','Prolotherapy Treatment in Los Angeles, Santa Monica'),(4659,431,'_aioseop_title','Stem Cell Orthopedics, Alternative to Joint Replacement Surgery'),(4660,431,'_aioseop_description','For help with prolotherapy knee treatment in Los Angeles call 310 453-1234.'),(4666,2362,'_edit_lock','1599512418:9'),(4667,2362,'_edit_last','9'),(4668,2362,'_wp_page_template','default'),(4674,2366,'_edit_lock','1645830193:9'),(4675,2366,'_edit_last','9'),(4676,2366,'_wp_page_template','default'),(4677,2369,'_wp_attached_file','2019/07/image1-1.png'),(4678,2369,'_wp_attachment_image_alt','Image1 (1)'),(4679,2369,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2019/07/image1-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image1-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4680,2370,'_wp_attached_file','2019/07/image2-1.jpeg'),(4681,2370,'_wp_attachment_image_alt','Image2 (1)'),(4682,2370,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2019/07/image2-1.jpeg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"image2-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4683,2373,'_wp_attached_file','2019/07/11th-ironman.png'),(4684,2373,'_wp_attachment_image_alt','11th Ironman'),(4685,2373,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:437;s:6:\"height\";i:175;s:4:\"file\";s:24:\"2019/07/11th-ironman.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"11th-ironman-200x175.png\";s:5:\"width\";i:200;s:6:\"height\";i:175;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4686,2379,'_email','admin@dentalimplantsmalibu.com'),(4687,2379,'_name','fb6ph'),(4688,2379,'_props','a:2:{s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";}'),(4689,2379,'_last_contacted','2019-07-09 21:34:29'),(4690,2380,'_email','brinkerd@yahoo.com'),(4691,2380,'_name','Debi33445'),(4692,2380,'_props','a:2:{s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";}'),(4693,2380,'_last_contacted','2019-07-09 21:34:29'),(4694,2381,'_email','support@websitesdepot.com'),(4695,2381,'_name','wddevelopers'),(4696,2381,'_props','a:2:{s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";}'),(4697,2381,'_last_contacted','2019-07-09 21:34:29'),(4707,2383,'_email','suzaun@hotmail.com'),(4708,2383,'_name','JamesDut'),(4709,2383,'_props','a:0:{}'),(4710,2383,'_last_contacted','2019-07-10 03:01:19'),(4712,2384,'_subject','[your-subject]'),(4713,2384,'_from','JamesDut <suzaun@hotmail.com>'),(4714,2384,'_from_name','JamesDut'),(4715,2384,'_from_email','suzaun@hotmail.com'),(4716,2384,'_field_your-name','JamesDut'),(4717,2384,'_field_your-email','suzaun@hotmail.com'),(4718,2384,'_field_phone','83522332935'),(4719,2384,'_field_service','11am-1pm'),(4720,2384,'_field_your-message','Paid Surveys: Earn $30,000 Or More Per Week: http://bit.do/eYLcr?XhgjDpc'),(4721,2384,'_field_otherquestion','Paid Surveys: Earn $30,000 Or More Per Week: http://bit.do/eYLcr?XhgjDpc'),(4722,2384,'_field_submit','Send'),(4723,2384,'_fields','a:7:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;s:6:\"submit\";N;}'),(4724,2384,'_meta','a:19:{s:13:\"serial_number\";i:1;s:9:\"remote_ip\";s:15:\"185.212.171.150\";s:10:\"user_agent\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 10, 2019\";s:4:\"time\";s:7:\"3:01 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(4725,2384,'_akismet',NULL),(4726,2384,'_recaptcha','a:0:{}'),(4727,2384,'_spam_log','a:0:{}'),(4728,2384,'_consent','a:0:{}'),(4738,2391,'_wp_attached_file','2019/07/dr-fields-11th-triathlon.jpg'),(4739,2391,'_wp_attachment_image_alt','Dr Fields 11th Triathlon'),(4740,2391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:36:\"2019/07/dr-fields-11th-triathlon.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"dr-fields-11th-triathlon-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"dr-fields-11th-triathlon-500x130.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"dr-fields-11th-triathlon-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4750,2419,'_edit_lock','1600103952:11'),(4751,2419,'_edit_last','2'),(4752,2419,'_wp_page_template','default'),(4756,2423,'_wp_attached_file','2019/07/Vitoria-Gazteiz-banner.png'),(4757,2423,'_wp_attachment_image_alt','Vitoria Gazteiz Banner'),(4758,2423,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1640;s:6:\"height\";i:624;s:4:\"file\";s:34:\"2019/07/Vitoria-Gazteiz-banner.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Vitoria-Gazteiz-banner-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Vitoria-Gazteiz-banner-500x190.png\";s:5:\"width\";i:500;s:6:\"height\";i:190;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Vitoria-Gazteiz-banner-768x292.png\";s:5:\"width\";i:768;s:6:\"height\";i:292;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4759,2425,'_wp_attached_file','2019/07/homepage-banner.jpg'),(4760,2425,'_wp_attachment_image_alt','Homepage Banner'),(4761,2425,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2019/07/homepage-banner.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"homepage-banner-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"homepage-banner-500x130.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"homepage-banner-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4762,2428,'_email','melaniewadefitness@gmail.com'),(4763,2428,'_name','Melanie Wade'),(4764,2428,'_props','a:0:{}'),(4765,2428,'_last_contacted','2019-07-12 21:03:51'),(4766,2429,'_subject','[your-subject]'),(4767,2429,'_from','Melanie Wade <melaniewadefitness@gmail.com>'),(4768,2429,'_from_name','Melanie Wade'),(4769,2429,'_from_email','melaniewadefitness@gmail.com'),(4770,2429,'_field_your-name','Melanie Wade'),(4771,2429,'_field_your-email','melaniewadefitness@gmail.com'),(4772,2429,'_field_phone','4083008330'),(4773,2429,'_field_service','1pm-3pm'),(4774,2429,'_field_your-message','Hi. I was referred by my friend/chiropractor Marv who had stem cell therapy done by Dr. Fields. \r\n\r\nI injured my right knee at work while stepping off the fire engine.  The step off the engine is usually about 1-2 feet high.  We were parked on a high angle slope which created a 3-4 foot step. I instantly felt a pop and fell to the ground. I was rushed to ER where i found i had a fractured tibia and a torn meniscus. I was off duty for 8 months while recovering from a meniscectomy. I’ve had 2 PRP’s performed and i think it helped but I’m not too sure. I’ve heard amazing things about your practice and would appreciate an evaluation. \r\n\r\nMy goal is to return to the active lifestyle i had. I’m a full time firefighter for San Francisco fire department. Sports are my life. I’ve been a Crossfit games competitor and college softball player/ cross county runner and my dream is to stay active and not settle for more knee surgeries. Thank you '),(4775,2429,'_field_otherquestion',''),(4776,2429,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(4777,2429,'_meta','a:19:{s:13:\"serial_number\";i:2;s:9:\"remote_ip\";s:13:\"174.214.13.67\";s:10:\"user_agent\";s:139:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 12, 2019\";s:4:\"time\";s:7:\"9:03 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(4778,2429,'_akismet',NULL),(4779,2429,'_recaptcha','a:0:{}'),(4780,2429,'_spam_log','a:0:{}'),(4781,2429,'_consent','a:0:{}'),(4782,2430,'_email','geneva.holliday@gmail.com'),(4783,2430,'_name','Geneva Holliday'),(4784,2430,'_props','a:0:{}'),(4785,2430,'_last_contacted','2019-07-13 12:47:55'),(4786,2431,'_subject','[your-subject]'),(4787,2431,'_from','Geneva Holliday <geneva.holliday@gmail.com>'),(4788,2431,'_from_name','Geneva Holliday'),(4789,2431,'_from_email','geneva.holliday@gmail.com'),(4790,2431,'_field_your-name','Geneva Holliday'),(4791,2431,'_field_your-email','geneva.holliday@gmail.com'),(4792,2431,'_field_phone','06-94050720'),(4793,2431,'_field_service','9am-11am'),(4794,2431,'_field_your-message','Hello\r\n\r\nI want to say what a beautiful webshop you have made.\r\nI am a regular customer of your shop.\r\nI had visited your store last month, and I saw a very nice item i wanne order.\r\nBut I have a question! today I wanted to order it, but can not find the product anymore in your store.\r\nThe item looks like the first picture on this shop.  http://bit.ly/CellphoneScreenshot4635\r\nI hope you will sell it again soon.\r\nI\'ll wait.\r\n\r\nRegards'),(4795,2431,'_field_otherquestion','Hi\r\n\r\nI want to say what a nice site you have made.\r\nI am a regular customer of your shop.\r\nI had visited your webshop last month, and I saw a very nice item i wanne buy.\r\nBut I have a question! today I wanted to order it, but can not find the product anymore in your store.\r\nThe item looks like the first picture on this webshop.  http://bit.ly/CellphonePicture8362\r\nI hope you will sell it again soon.\r\nI\'ll wait.\r\n\r\nSincerely'),(4796,2431,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(4797,2431,'_meta','a:19:{s:13:\"serial_number\";i:3;s:9:\"remote_ip\";s:13:\"78.154.180.12\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 13, 2019\";s:4:\"time\";s:8:\"12:47 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(4798,2431,'_akismet',NULL),(4799,2431,'_recaptcha','a:0:{}'),(4800,2431,'_spam_log','a:0:{}'),(4801,2431,'_consent','a:0:{}'),(4802,2432,'_email','arthur.escobedo@gmail.com'),(4803,2432,'_name','Arthur Escobedo'),(4804,2432,'_props','a:0:{}'),(4805,2432,'_last_contacted','2019-07-13 19:02:25'),(4806,2433,'_subject','[your-subject]'),(4807,2433,'_from','Arthur Escobedo <arthur.escobedo@gmail.com>'),(4808,2433,'_from_name','Arthur Escobedo'),(4809,2433,'_from_email','arthur.escobedo@gmail.com'),(4810,2433,'_field_your-name','Arthur Escobedo'),(4811,2433,'_field_your-email','arthur.escobedo@gmail.com'),(4812,2433,'_field_phone','030 74 48 30'),(4813,2433,'_field_service','1pm-3pm'),(4814,2433,'_field_your-message','For less than $49 every month I can get hundreds of qualified buyers to visit your site. Would you be interested in finding out more? Just send a reply to this email address to get more details: morevisitors4you@gmail.com'),(4815,2433,'_field_otherquestion','For less than $40 per month I can get tons of high converting visitors to visit your site. Interested in how this works? Just reply to this email address for more information: morevisitors4you@gmail.com'),(4816,2433,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(4817,2433,'_meta','a:19:{s:13:\"serial_number\";i:4;s:9:\"remote_ip\";s:13:\"104.245.145.4\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 13, 2019\";s:4:\"time\";s:7:\"7:02 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(4818,2433,'_akismet',NULL),(4819,2433,'_recaptcha','a:0:{}'),(4820,2433,'_spam_log','a:0:{}'),(4821,2433,'_consent','a:0:{}'),(4822,2435,'_email','pamela.spann@gmail.com'),(4823,2435,'_name','Pamela Spann'),(4824,2435,'_props','a:0:{}'),(4825,2435,'_last_contacted','2019-07-16 07:31:58'),(4826,2436,'_subject','[your-subject]'),(4827,2436,'_from','Pamela Spann <pamela.spann@gmail.com>'),(4828,2436,'_from_name','Pamela Spann'),(4829,2436,'_from_email','pamela.spann@gmail.com'),(4830,2436,'_field_your-name','Pamela Spann'),(4831,2436,'_field_your-email','pamela.spann@gmail.com'),(4832,2436,'_field_phone','418 7453'),(4833,2436,'_field_service','3pm-5pm'),(4834,2436,'_field_your-message','For less than $39 per month I can get thousands of high converting visitors to come to your site. Want to learn more? Send a reply here for info: morevisitors4you@gmail.com'),(4835,2436,'_field_otherquestion','For less than $39 per month I can get hundreds of people who are ready to buy to come to your site. Interested in how this works? Reply here for details: morevisitors4you@gmail.com'),(4836,2436,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(4837,2436,'_meta','a:19:{s:13:\"serial_number\";i:5;s:9:\"remote_ip\";s:14:\"184.75.211.148\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 16, 2019\";s:4:\"time\";s:7:\"7:31 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(4838,2436,'_akismet',NULL),(4839,2436,'_recaptcha','a:0:{}'),(4840,2436,'_spam_log','a:0:{}'),(4841,2436,'_consent','a:0:{}'),(4842,2441,'_email','rachel@explainmybusiness.com'),(4843,2441,'_name','Rachel Winter'),(4844,2441,'_props','a:0:{}'),(4845,2441,'_last_contacted','2019-07-17 17:22:04'),(4846,2442,'_subject','[your-subject]'),(4847,2442,'_from','Rachel Winter <rachel@explainmybusiness.com>'),(4848,2442,'_from_name','Rachel Winter'),(4849,2442,'_from_email','rachel@explainmybusiness.com'),(4850,2442,'_field_your-name','Rachel Winter'),(4851,2442,'_field_your-email','rachel@explainmybusiness.com'),(4852,2442,'_field_phone','917-675-5528'),(4853,2442,'_field_service','11am-1pm'),(4854,2442,'_field_your-message','Hey, I checked out your site and it looks great- but I noticed you\'re missing a promotional/explainer video, something that clearly defines what makes your business unique and stand out. \r\n\r\nWithout an Explainer Video potential customers bounce right off your page! \r\n\r\nMy team located in Israel creates these clear 30-60 second promotional style videos at affordable rates. \r\n\r\nCheck out our site www.explainmybusiness.com\r\n'),(4855,2442,'_field_otherquestion','Hey, I checked out your site and it looks great- but I noticed you\'re missing a promotional/explainer video, something that clearly defines what makes your business unique and stand out. \r\n\r\nWithout an Explainer Video potential customers bounce right off your page! \r\n\r\nMy team located in Israel creates these clear 30-60 second promotional style videos at affordable rates. \r\n\r\nCheck out our site www.explainmybusiness.com\r\n'),(4856,2442,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(4857,2442,'_meta','a:19:{s:13:\"serial_number\";i:6;s:9:\"remote_ip\";s:15:\"107.167.229.126\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 17, 2019\";s:4:\"time\";s:7:\"5:22 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(4858,2442,'_akismet',NULL),(4859,2442,'_recaptcha','a:0:{}'),(4860,2442,'_spam_log','a:0:{}'),(4861,2442,'_consent','a:0:{}'),(4862,2443,'_email','nimmo.claudia@gmail.com'),(4863,2443,'_name','Claudia Nimmo'),(4864,2443,'_props','a:0:{}'),(4865,2443,'_last_contacted','2019-07-19 02:08:22'),(4866,2444,'_subject','[your-subject]'),(4867,2444,'_from','Claudia Nimmo <nimmo.claudia@gmail.com>'),(4868,2444,'_from_name','Claudia Nimmo'),(4869,2444,'_from_email','nimmo.claudia@gmail.com'),(4870,2444,'_field_your-name','Claudia Nimmo'),(4871,2444,'_field_your-email','nimmo.claudia@gmail.com'),(4872,2444,'_field_phone','(19) 8210-3712'),(4873,2444,'_field_service','9am-11am'),(4874,2444,'_field_your-message','Starting at just $39 monthly I can get hundreds of high converting visitors to come to your website. Interested in how this works? Send a reply here for info: grace5764wil@gmail.com'),(4875,2444,'_field_otherquestion','Starting at just $49 per month I can get tons of people who are ready to buy to visit your site. Would you be interested in finding out more? Reply here for details: grace5764wil@gmail.com'),(4876,2444,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(4877,2444,'_meta','a:19:{s:13:\"serial_number\";i:7;s:9:\"remote_ip\";s:14:\"104.245.145.26\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 19, 2019\";s:4:\"time\";s:7:\"2:08 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(4878,2444,'_akismet',NULL),(4879,2444,'_recaptcha','a:0:{}'),(4880,2444,'_spam_log','a:0:{}'),(4881,2444,'_consent','a:0:{}'),(4882,2445,'_email','albertbudnitskiy90@gmail.com'),(4883,2445,'_name','Albert'),(4884,2445,'_props','a:0:{}'),(4885,2445,'_last_contacted','2019-07-19 16:15:12'),(4886,2446,'_subject','[your-subject]'),(4887,2446,'_from','Albert <albertbudnitskiy90@gmail.com>'),(4888,2446,'_from_name','Albert'),(4889,2446,'_from_email','albertbudnitskiy90@gmail.com'),(4890,2446,'_field_your-name','Albert'),(4891,2446,'_field_your-email','albertbudnitskiy90@gmail.com'),(4892,2446,'_field_phone','2482078718'),(4893,2446,'_field_service','3pm-5pm'),(4894,2446,'_field_your-message','\r\nHi There, \r\n\r\nMy fiance has Spondylolisthesis.  In the past 6 months it has become very painful for her and we are looking to explore non-surgical options.  Have you dealt with Spondylolisthesis before in your practice? What kind of results have you seen?  Also, do you accept insurance?\r\n\r\nThanks,\r\nAlbert\r\n'),(4895,2446,'_field_otherquestion',''),(4896,2446,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(4897,2446,'_meta','a:19:{s:13:\"serial_number\";i:8;s:9:\"remote_ip\";s:12:\"148.87.23.14\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 19, 2019\";s:4:\"time\";s:7:\"4:15 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(4898,2446,'_akismet',NULL),(4899,2446,'_recaptcha','a:0:{}'),(4900,2446,'_spam_log','a:0:{}'),(4901,2446,'_consent','a:0:{}'),(4902,2448,'_email','alan@websitedepot.com'),(4903,2448,'_name','Test'),(4904,2448,'_props','a:0:{}'),(4905,2448,'_last_contacted','2019-08-16 17:45:27'),(4906,2449,'_subject','[your-subject]'),(4907,2449,'_from','Test <alan@websitedepot.com>'),(4908,2449,'_from_name','Test'),(4909,2449,'_from_email','alan@websitedepot.com'),(4910,2449,'_field_your-name','Test'),(4911,2449,'_field_your-email','alan@websitedepot.com'),(4912,2449,'_field_phone','1231231234'),(4913,2449,'_field_service','9am-11am'),(4914,2449,'_field_your-message','Test'),(4915,2449,'_field_otherquestion','Test'),(4916,2449,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(4917,2449,'_meta','a:19:{s:13:\"serial_number\";i:9;s:9:\"remote_ip\";s:15:\"172.118.143.212\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 19, 2019\";s:4:\"time\";s:7:\"7:26 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(4918,2449,'_akismet',NULL),(4919,2449,'_recaptcha','a:0:{}'),(4920,2449,'_spam_log','a:0:{}'),(4921,2449,'_consent','a:0:{}'),(4922,2450,'_edit_lock','1600103309:11'),(4923,2450,'_edit_last','2'),(4924,2450,'_wp_page_template','default'),(4925,2454,'_email','google@websitesdepot.com'),(4926,2454,'_name','wdeditor'),(4927,2454,'_props','a:2:{s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";}'),(4928,2454,'_last_contacted','2019-07-25 21:05:29'),(4929,2458,'_email','mimioverjoyed@gmail.com'),(4930,2458,'_name','Leann Leonard'),(4931,2458,'_props','a:0:{}'),(4932,2458,'_last_contacted','2019-07-24 13:41:51'),(4933,2459,'_subject','[your-subject]'),(4934,2459,'_from','Leann Leonard <mimioverjoyed@gmail.com>'),(4935,2459,'_from_name','Leann Leonard'),(4936,2459,'_from_email','mimioverjoyed@gmail.com'),(4937,2459,'_field_your-name','Leann Leonard'),(4938,2459,'_field_your-email','mimioverjoyed@gmail.com'),(4939,2459,'_field_phone','(310) 990-0691'),(4940,2459,'_field_service','9am-11am'),(4941,2459,'_field_your-message','Significant inflammation and tendinosis in left rotator cuff.'),(4942,2459,'_field_otherquestion','I had a MRI and can have results sent to you for evaluation.'),(4943,2459,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(4944,2459,'_meta','a:19:{s:13:\"serial_number\";i:10;s:9:\"remote_ip\";s:12:\"70.93.159.40\";s:10:\"user_agent\";s:83:\"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; EIE10;ENUSMCM; rv:11.0) like Gecko\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 24, 2019\";s:4:\"time\";s:7:\"1:41 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(4945,2459,'_akismet',NULL),(4946,2459,'_recaptcha','a:0:{}'),(4947,2459,'_spam_log','a:0:{}'),(4948,2459,'_consent','a:0:{}'),(4949,2460,'_email','yi.ronald@gmail.com'),(4950,2460,'_name','Ronald Yi'),(4951,2460,'_props','a:0:{}'),(4952,2460,'_last_contacted','2019-07-24 14:49:46'),(4953,2461,'_subject','[your-subject]'),(4954,2461,'_from','Ronald Yi <yi.ronald@gmail.com>'),(4955,2461,'_from_name','Ronald Yi'),(4956,2461,'_from_email','yi.ronald@gmail.com'),(4957,2461,'_field_your-name','Ronald Yi'),(4958,2461,'_field_your-email','yi.ronald@gmail.com'),(4959,2461,'_field_phone','06-26294896'),(4960,2461,'_field_service','11am-1pm'),(4961,2461,'_field_your-message','Would you like to promote your ad on thousands of advertising sites every month? One tiny investment every month will get you virtually unlimited traffic to your site forever!To find out more check out our site here: http://post1000sofads.webhop.me'),(4962,2461,'_field_otherquestion','Would you like to submit your business on thousands of advertising sites every month? One tiny investment every month will get you virtually unlimited traffic to your site forever!Get more info by visiting: http://post1000sofads.webhop.me'),(4963,2461,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(4964,2461,'_meta','a:19:{s:13:\"serial_number\";i:11;s:9:\"remote_ip\";s:14:\"184.75.211.148\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 24, 2019\";s:4:\"time\";s:7:\"2:49 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(4965,2461,'_akismet',NULL),(4966,2461,'_recaptcha','a:0:{}'),(4967,2461,'_spam_log','a:0:{}'),(4968,2461,'_consent','a:0:{}'),(4971,2462,'_email','kgarden248@gmail.com'),(4972,2462,'_name','Kimberly'),(4973,2462,'_props','a:0:{}'),(4974,2462,'_last_contacted','2019-07-24 19:38:49'),(4975,2463,'_subject','[your-subject]'),(4976,2463,'_from','Kimberly <kgarden248@gmail.com>'),(4977,2463,'_from_name','Kimberly'),(4978,2463,'_from_email','kgarden248@gmail.com'),(4979,2463,'_field_your-name','Kimberly'),(4980,2463,'_field_your-email','kgarden248@gmail.com'),(4981,2463,'_field_phone','8054508253'),(4982,2463,'_field_service','3pm-5pm'),(4983,2463,'_field_your-message','Hello - I was diagnosed with hip dysplasia in 2016 (46 years old) while training for a half marathon. As active individual who loved running, my Dr. advised me not to run and try other exercises which I did. I was given a script for PT to help me with severe pain and it helped, however after doing exercises on my own the pain would come back so I had a cortesione shot which lasted for about a year then another which lasted 6 months and then more PT to manage the pain. Things have gotten progressively worse and I walk with a limp, I in in constant pain walking, sitting, standing, sleeping. \r\n\r\nOn June 16/17 I had two contrast MRIs of my hips and it showed left side labrum tear, gluteal tear of the minimus and medius and excess fluid in the bursa and on the right tears in the gluetal minimus and medius. I also had a terrible reaction to the dye in the MRI ( so they say) which created terrible pain and I was not able to walk on my left side so used crutches for a month. I was given steroids to help with inflammation and pain.'),(4984,2463,'_field_otherquestion','I left a message but would be curious in potentially speaking with you. Do you take insurance? Please contact me so I can discuss further at 805-450-8253. I do appreciate your time and attention. Thank you, Kim '),(4985,2463,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(4986,2463,'_meta','a:19:{s:13:\"serial_number\";i:12;s:9:\"remote_ip\";s:12:\"206.190.77.2\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 24, 2019\";s:4:\"time\";s:7:\"7:38 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(4987,2463,'_akismet',NULL),(4988,2463,'_recaptcha','a:0:{}'),(4989,2463,'_spam_log','a:0:{}'),(4990,2463,'_consent','a:0:{}'),(4994,1461,'_wp_page_template','default'),(5004,1463,'_wp_page_template','default'),(5027,1463,'_aioseop_description','What to Ask When Looking for a Prolotherapist. Pacific Prolotherapy and Wellness Center provides services in the areas of Prolotherapy, sports medicine, arthritis treatment, nutrition, chiropractic treatment, natural hormone therapy and Holistic or Integrative Medicine'),(5028,1463,'_aioseop_title','Joint Surgery? Think Again! Learn About Prolotherapy'),(5036,1461,'_aioseop_description','What to Ask When Looking for a Prolotherapist. Pacific Prolotherapy and Wellness Center provides services in the areas of Prolotherapy, sports medicine, arthritis treatment, nutrition, chiropractic treatment, natural hormone therapy and Holistic or Integrative Medicine'),(5037,1461,'_aioseop_title','Chronic Pain? - Prolotherapy May be the Answer'),(5038,1459,'_wp_page_template','default'),(5046,1459,'_aioseop_description','Prolotherapy Injections to Kick-Start Tissue Repair. Pacific Prolotherapy and Wellness Center provides services in the areas of Prolotherapy, sports medicine, arthritis treatment, nutrition, chiropractic treatment, natural hormone therapy and Holistic or Integrative Medicine'),(5047,1459,'_aioseop_title','Cortisone - Is it Really Good for You'),(5048,1457,'_wp_page_template','default'),(5056,1457,'_aioseop_description','Chronic Pain or Injuries? Prolotherapy Might be the Answer. Pacific Prolotherapy and Wellness Center provides services in the areas of Prolotherapy, sports medicine, arthritis treatment, nutrition, chiropractic treatment, natural hormone therapy and Holistic or Integrative Medicine'),(5057,1457,'_aioseop_title','Prolotherapy for Shoulder'),(5058,1454,'_wp_page_template','default'),(5066,1454,'_aioseop_description','Chronic Pain or Injuries? Prolotherapy Might be the Answer. Pacific Prolotherapy and Wellness Center provides services in the areas of Prolotherapy, sports medicine, arthritis treatment, nutrition, chiropractic treatment, natural hormone therapy and Holistic or Integrative Medicine'),(5067,1454,'_aioseop_title','Prolotherapy - Is It For You'),(5068,1452,'_wp_page_template','default'),(5076,1452,'_aioseop_description','Chronic Pain or Injuries? Prolotherapy Might be the Answer. Pacific Prolotherapy and Wellness Center provides services in the areas of Prolotherapy, sports medicine, arthritis treatment, nutrition, chiropractic treatment, natural hormone therapy and Holistic or Integrative Medicine'),(5077,1452,'_aioseop_title','	Chronic Pain or Injuries? Prolotherapy Might be the Answer'),(5078,1450,'_wp_page_template','default'),(5103,1436,'_wp_page_template','default'),(5111,1436,'_aioseop_description','Dr Fields interviewed on KCAL/CBS about \'Prolotherapy. Pacific Prolotherapy and Wellness Center provides services in the areas of Prolotherapy, sports medicine, arthritis treatment, nutrition, chiropractic treatment, natural hormone therapy and Holistic or Integrative Medicine'),(5112,1436,'_aioseop_title','Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\''),(5113,1434,'_wp_page_template','default'),(5121,1434,'_aioseop_description','Download Dr. Fields Prolotherapy Lecture Today! 2/22/2009'),(5122,1434,'_aioseop_title','Download Dr. Fields Prolotherapy Lecture Today'),(5126,1429,'_wp_page_template','default'),(5143,1429,'_aioseop_description','FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections ROCKVILLE, Md -- April 23, 2014 -- The US Food and Drug Administrati...'),(5144,1429,'_aioseop_title','FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections'),(5145,1423,'_wp_page_template','default'),(5151,1423,'_aioseop_description','Introduction Prolotherapy is a natural nonsurgical method of assisting the body to heal injured tendons and ligaments. Prolotherapy helps your body ma...'),(5152,1423,'_aioseop_title','How to Avoid Joint &amp; Spine Surgery and Live Pain Free - June 2013'),(5156,1419,'_wp_page_template','default'),(5164,1419,'_aioseop_description','prolotherapy, joint injury surgery alternative, orthopedic and sports medicine, sports injury treatment, platelet rich plasma Los Angeles, platelet rich plasma,DotNetNuke,DNN'),(5165,1419,'_aioseop_title','REGENERATIVE MEDICINE LECTURE IN MEXICO CITY'),(5173,1450,'_aioseop_description','What to Ask When Looking for a Prolotherapist. Pacific Prolotherapy and Wellness Center provides services in the areas of Prolotherapy, sports medicine, arthritis treatment, nutrition, chiropractic treatment, natural hormone therapy and Holistic or Integrative Medicine'),(5174,1450,'_aioseop_title','What to Ask When Looking for a Prolotherapist'),(5175,2484,'_email','apelina@hotmail.com'),(5176,2484,'_name','JamesDut'),(5177,2484,'_props','a:0:{}'),(5178,2484,'_last_contacted','2019-07-25 17:11:57'),(5179,2485,'_subject','[your-subject]'),(5180,2485,'_from','JamesDut <apelina@hotmail.com>'),(5181,2485,'_from_name','JamesDut'),(5182,2485,'_from_email','apelina@hotmail.com'),(5183,2485,'_field_your-name','JamesDut'),(5184,2485,'_field_your-email','apelina@hotmail.com'),(5185,2485,'_field_phone','84842773733'),(5186,2485,'_field_service','3pm-5pm'),(5187,2485,'_field_your-message','How to earn on investments in Bitcoin from $ 3000 per day: http://v.ht/KWLKru?jVatoeNafVcEJQ'),(5188,2485,'_field_otherquestion','How to earn on investments in Bitcoin from $ 3000 per day: http://v.ht/KWLKru?jVatoeNafVcEJQ'),(5189,2485,'_field_submit','Send'),(5190,2485,'_fields','a:7:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;s:6:\"submit\";N;}'),(5191,2485,'_meta','a:19:{s:13:\"serial_number\";i:13;s:9:\"remote_ip\";s:11:\"31.7.57.246\";s:10:\"user_agent\";s:114:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 25, 2019\";s:4:\"time\";s:7:\"5:11 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5192,2485,'_akismet',NULL),(5193,2485,'_recaptcha','a:0:{}'),(5194,2485,'_spam_log','a:0:{}'),(5195,2485,'_consent','a:0:{}'),(5199,2487,'_wp_attached_file','2019/07/yelp.png'),(5200,2487,'_wp_attachment_image_alt','Yelp'),(5201,2487,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:21;s:4:\"file\";s:16:\"2019/07/yelp.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5202,2454,'_wp_old_date','2019-07-23'),(5203,2488,'_email','tami_goldsmith@earthlink.net'),(5204,2488,'_name','Tami Goldsmith'),(5205,2488,'_props','a:0:{}'),(5206,2488,'_last_contacted','2019-07-25 22:20:35'),(5207,2489,'_subject','[your-subject]'),(5208,2489,'_from','Tami Goldsmith <tami_goldsmith@earthlink.net>'),(5209,2489,'_from_name','Tami Goldsmith'),(5210,2489,'_from_email','tami_goldsmith@earthlink.net'),(5211,2489,'_field_your-name','Tami Goldsmith'),(5212,2489,'_field_your-email','tami_goldsmith@earthlink.net'),(5213,2489,'_field_phone','310-880-3945'),(5214,2489,'_field_service','3pm-5pm'),(5215,2489,'_field_your-message','Recurring ganglion cyst - Dr. Altchuler suggested treatment from you'),(5216,2489,'_field_otherquestion','Do you have any availability tomorrow or Monday?'),(5217,2489,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5218,2489,'_meta','a:19:{s:13:\"serial_number\";i:14;s:9:\"remote_ip\";s:13:\"64.203.54.140\";s:10:\"user_agent\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:66.0) Gecko/20100101 Firefox/66.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 25, 2019\";s:4:\"time\";s:8:\"10:20 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5219,2489,'_akismet',NULL),(5220,2489,'_recaptcha','a:0:{}'),(5221,2489,'_spam_log','a:0:{}'),(5222,2489,'_consent','a:0:{}'),(5223,2490,'_email','marriott.lillie@hotmail.com'),(5224,2490,'_name','Lillie Marriott'),(5225,2490,'_props','a:0:{}'),(5226,2490,'_last_contacted','2019-07-26 02:15:28'),(5227,2491,'_subject','[your-subject]'),(5228,2491,'_from','Lillie Marriott <marriott.lillie@hotmail.com>'),(5229,2491,'_from_name','Lillie Marriott'),(5230,2491,'_from_email','marriott.lillie@hotmail.com'),(5231,2491,'_field_your-name','Lillie Marriott'),(5232,2491,'_field_your-email','marriott.lillie@hotmail.com'),(5233,2491,'_field_phone','05074 68 42 08'),(5234,2491,'_field_service','9am-11am'),(5235,2491,'_field_your-message','Enjoy thousands of qualified buyers sent directly to your site starting at only $37. Would you be interested in how this works? Simply reply to this email address for more information: isla7996gre@gmail.com'),(5236,2491,'_field_otherquestion','Receive hundreds of people who are ready to buy delivered to your website for less than $39. Would you be interested in how this works? Just send us a reply to this email address for more details: isla7996gre@gmail.com'),(5237,2491,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5238,2491,'_meta','a:19:{s:13:\"serial_number\";i:15;s:9:\"remote_ip\";s:14:\"104.245.144.43\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 26, 2019\";s:4:\"time\";s:7:\"2:15 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5239,2491,'_akismet',NULL),(5240,2491,'_recaptcha','a:0:{}'),(5241,2491,'_spam_log','a:0:{}'),(5242,2491,'_consent','a:0:{}'),(5243,2492,'_email','janet@explainmybusiness.com'),(5244,2492,'_name','Janet Baker'),(5245,2492,'_props','a:0:{}'),(5246,2492,'_last_contacted','2019-07-26 16:36:17'),(5247,2493,'_subject','[your-subject]'),(5248,2493,'_from','Janet Baker <janet@explainmybusiness.com>'),(5249,2493,'_from_name','Janet Baker'),(5250,2493,'_from_email','janet@explainmybusiness.com'),(5251,2493,'_field_your-name','Janet Baker'),(5252,2493,'_field_your-email','janet@explainmybusiness.com'),(5253,2493,'_field_phone','917-675-5528'),(5254,2493,'_field_service','3pm-5pm'),(5255,2493,'_field_your-message','Hi there,\r\n\r\nI  was just checking out your website, and was very impressed with the quality, look and feel.\r\n\r\nI’m sure you have seen a lot of companies are starting to add animated videos to their websites, social media, and YouTube pages to help explain & promote their services in a fun, clear, and engaging way. I think a 60-90 second animated video would be a perfect way for you to get your company\'s message across to more potential clients.\r\n\r\nMy team, located Both in Israel and USA, helps businesses create quality customized Character Animation, Motion Graphics, & Whiteboard videos at affordable rates.\r\n\r\nI would be happy to set up a call for a consultation and price quote.\r\n\r\nLet\'s speak soon.\r\n\r\nBest Regards,\r\n\r\nJanet\r\nBusiness Manager\r\nExplainMyBusiness.com'),(5256,2493,'_field_otherquestion','Hi there,\r\n\r\nI  was just checking out your website, and was very impressed with the quality, look and feel.\r\n\r\nI’m sure you have seen a lot of companies are starting to add animated videos to their websites, social media, and YouTube pages to help explain & promote their services in a fun, clear, and engaging way. I think a 60-90 second animated video would be a perfect way for you to get your company\'s message across to more potential clients.\r\n\r\nMy team, located Both in Israel and USA, helps businesses create quality customized Character Animation, Motion Graphics, & Whiteboard videos at affordable rates.\r\n\r\nI would be happy to set up a call for a consultation and price quote.\r\n\r\nLet\'s speak soon.\r\n\r\nBest Regards,\r\n\r\nJanet\r\nBusiness Manager\r\nExplainMyBusiness.com'),(5257,2493,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5258,2493,'_meta','a:19:{s:13:\"serial_number\";i:16;s:9:\"remote_ip\";s:13:\"89.187.164.81\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 26, 2019\";s:4:\"time\";s:7:\"4:36 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5259,2493,'_akismet',NULL),(5260,2493,'_recaptcha','a:0:{}'),(5261,2493,'_spam_log','a:0:{}'),(5262,2493,'_consent','a:0:{}'),(5263,2494,'_email','jilllevy07@comcast.net'),(5264,2494,'_name','JamesDut'),(5265,2494,'_props','a:0:{}'),(5266,2494,'_last_contacted','2019-07-27 07:01:06'),(5267,2495,'_subject','[your-subject]'),(5268,2495,'_from','JamesDut <jilllevy07@comcast.net>'),(5269,2495,'_from_name','JamesDut'),(5270,2495,'_from_email','jilllevy07@comcast.net'),(5271,2495,'_field_your-name','JamesDut'),(5272,2495,'_field_your-email','jilllevy07@comcast.net'),(5273,2495,'_field_phone','82819563155'),(5274,2495,'_field_service','11am-1pm'),(5275,2495,'_field_your-message','Cryptocurrency Trading & Investing Strategy for 2019. Receive passive income of $ 70,000 per month: http://v.ht/WwJCQ?&fujpf=o2g1ufle'),(5276,2495,'_field_otherquestion','Cryptocurrency Trading & Investing Strategy for 2019. Receive passive income of $ 70,000 per month: http://v.ht/WwJCQ?&fujpf=o2g1ufle'),(5277,2495,'_field_submit','Send'),(5278,2495,'_fields','a:7:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;s:6:\"submit\";N;}'),(5279,2495,'_meta','a:19:{s:13:\"serial_number\";i:17;s:9:\"remote_ip\";s:12:\"84.39.112.90\";s:10:\"user_agent\";s:102:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 27, 2019\";s:4:\"time\";s:7:\"7:01 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5280,2495,'_akismet',NULL),(5281,2495,'_recaptcha','a:0:{}'),(5282,2495,'_spam_log','a:0:{}'),(5283,2495,'_consent','a:0:{}'),(5284,2496,'_email','no3world@outlook.com'),(5285,2496,'_name','Brent Smith'),(5286,2496,'_props','a:0:{}'),(5287,2496,'_last_contacted','2019-07-27 07:06:31'),(5288,2497,'_subject','[your-subject]'),(5289,2497,'_from','Brent Smith <no3world@outlook.com>'),(5290,2497,'_from_name','Brent Smith'),(5291,2497,'_from_email','no3world@outlook.com'),(5292,2497,'_field_your-name','Brent Smith'),(5293,2497,'_field_your-email','no3world@outlook.com'),(5294,2497,'_field_phone','5592604174'),(5295,2497,'_field_service','11am-1pm'),(5296,2497,'_field_your-message','Up till last year I have raced bmx competitively on and off since I was 12. I have multiple spots where I have degenerative discs. Pretty sure the vertebrae are trying to connect. Shows on X-ray a tail growing towards the other. I’d love to see what you could do to help me with my discomfort/pain and to get these episodes where I end up on the floor behind me.'),(5297,2497,'_field_otherquestion',''),(5298,2497,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5299,2497,'_meta','a:19:{s:13:\"serial_number\";i:18;s:9:\"remote_ip\";s:15:\"209.218.208.186\";s:10:\"user_agent\";s:144:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_3_1 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) CriOS/66.0.3359.122 Mobile/16F203 Safari/604.1\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 27, 2019\";s:4:\"time\";s:7:\"7:06 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5300,2497,'_akismet',NULL),(5301,2497,'_recaptcha','a:0:{}'),(5302,2497,'_spam_log','a:0:{}'),(5303,2497,'_consent','a:0:{}'),(5304,2498,'_email','lindsey.cahill@msn.com'),(5305,2498,'_name','Lindsey Cahill'),(5306,2498,'_props','a:0:{}'),(5307,2498,'_last_contacted','2019-07-27 10:11:00'),(5308,2499,'_subject','[your-subject]'),(5309,2499,'_from','Lindsey Cahill <lindsey.cahill@msn.com>'),(5310,2499,'_from_name','Lindsey Cahill'),(5311,2499,'_from_email','lindsey.cahill@msn.com'),(5312,2499,'_field_your-name','Lindsey Cahill'),(5313,2499,'_field_your-email','lindsey.cahill@msn.com'),(5314,2499,'_field_phone','0707-4823077'),(5315,2499,'_field_service','9am-11am'),(5316,2499,'_field_your-message','Boost to your website rankings! All in one premium SEO package for 5$\r\n\r\nOrder now: http://bit.ly/google-rocket'),(5317,2499,'_field_otherquestion','Boost to your website rankings! All in one premium SEO package for 5$\r\n\r\nOrder now: http://bit.ly/google-rocket'),(5318,2499,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5319,2499,'_meta','a:19:{s:13:\"serial_number\";i:19;s:9:\"remote_ip\";s:15:\"151.237.179.214\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 27, 2019\";s:4:\"time\";s:8:\"10:11 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5320,2499,'_akismet',NULL),(5321,2499,'_recaptcha','a:0:{}'),(5322,2499,'_spam_log','a:0:{}'),(5323,2499,'_consent','a:0:{}'),(5324,2501,'_edit_lock','1626060258:9'),(5325,2501,'_edit_last','9'),(5326,2501,'_wp_page_template','default'),(5328,2503,'_edit_lock','1599510372:9'),(5330,2503,'_edit_last','9'),(5331,2503,'_wp_page_template','default'),(5334,2509,'_email','cdyarber@gmail.com'),(5335,2509,'_name','CHRIS'),(5336,2509,'_props','a:0:{}'),(5337,2509,'_last_contacted','2019-07-29 15:12:19'),(5338,2510,'_subject','[your-subject]'),(5339,2510,'_from','CHRIS <cdyarber@gmail.com>'),(5340,2510,'_from_name','CHRIS'),(5341,2510,'_from_email','cdyarber@gmail.com'),(5342,2510,'_field_your-name','CHRIS'),(5343,2510,'_field_your-email','cdyarber@gmail.com'),(5344,2510,'_field_phone','6156185370'),(5345,2510,'_field_service','3pm-5pm'),(5346,2510,'_field_your-message','Hey guys, I was recently made aware of you by a current patient who had great things to say. I\'m also an Ironman Triathlete and I live in Nashville, TN. Do you know of anyone in my area who is also athletic and doing similar work? I could travel to California to see you, but thought I would ask if you know of anyone you trust in the Nashville area?  I don\'t currently require anything medically, but in our sport you never know, so I thought I\'d reach out and ask.\r\n\r\nThanks for your time!\r\n\r\nChris\r\n615-618-5370'),(5347,2510,'_field_otherquestion',''),(5348,2510,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5349,2510,'_meta','a:19:{s:13:\"serial_number\";i:20;s:9:\"remote_ip\";s:13:\"68.52.137.195\";s:10:\"user_agent\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:13:\"July 29, 2019\";s:4:\"time\";s:7:\"3:12 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5350,2510,'_akismet',NULL),(5351,2510,'_recaptcha','a:0:{}'),(5352,2510,'_spam_log','a:0:{}'),(5353,2510,'_consent','a:0:{}'),(5355,229,'_yoast_wpseo_focuskw','Prolotherapy Doctor'),(5356,229,'_yoast_wpseo_title','Prolotherapy Doctor Peter A. Fields | Prolotherapy Doctors in Los Angeles'),(5357,229,'_yoast_wpseo_metadesc','A Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. For more information call us at (310) 453-1234.'),(5358,229,'_yoast_wpseo_linkdex','79'),(5359,229,'_yoast_wpseo_content_score','60'),(5360,229,'_yoast_wpseo_primary_category',''),(5362,216,'_yoast_wpseo_focuskw','dr fields'),(5363,216,'_yoast_wpseo_title','Dr Fields | PRP, Prolotherapy and Stem Cell Doctor in Los Angeles'),(5364,216,'_yoast_wpseo_metadesc','Dr Fields is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor. Make a consultation online or calling (310) 453-1234.'),(5365,216,'_yoast_wpseo_linkdex','79'),(5366,216,'_yoast_wpseo_content_score','90'),(5367,216,'_yoast_wpseo_primary_category',''),(5369,266,'_yoast_wpseo_focuskw','prp los angeles'),(5370,266,'_yoast_wpseo_title','PRP Los Angeles | Prolotherapy Knee & Shoulder | PRP ACL Repair'),(5371,266,'_yoast_wpseo_metadesc','PRP Los Angeles with Peter A. Fields, MD, DC is a fast and effective treatment to resolve your painful joint or sports injury. Call now at (310) 453-1234.'),(5372,266,'_yoast_wpseo_linkdex','75'),(5373,266,'_yoast_wpseo_content_score','90'),(5374,266,'_yoast_wpseo_primary_category',''),(5377,414,'_yoast_wpseo_focuskw','Platelet Rich Plasma Treatments'),(5378,414,'_yoast_wpseo_title','Platelet Rich Plasma Treatments: How Do They Differ from Prolotherapy?'),(5379,414,'_yoast_wpseo_metadesc','Platelet Rich Plasma Treatments effectively treat soft tissue injuries. But how are these non-surgical treatments different from Prolotherapy?'),(5380,414,'_yoast_wpseo_linkdex','76'),(5381,414,'_yoast_wpseo_content_score','30'),(5382,414,'_yoast_wpseo_primary_category',''),(5384,431,'_yoast_wpseo_focuskw','stem cell treatment Los Angeles'),(5385,431,'_yoast_wpseo_title','Stem Cell Treatment Los Angeles | Alternative To Joint Replacement'),(5386,431,'_yoast_wpseo_metadesc','OrthoRegen provides non-surgical stem cell treatment in Los Angeles to help you Avoid Joint Replacement Surgery. Call us at (310) 453-1234.'),(5387,431,'_yoast_wpseo_linkdex','76'),(5388,431,'_yoast_wpseo_content_score','30'),(5389,431,'_yoast_wpseo_primary_category',''),(5391,524,'_yoast_wpseo_focuskw','Prolotherapy for elbow'),(5392,524,'_yoast_wpseo_title','Prolotherapy for Elbow Pain | Prolotherapy and PRP Injections'),(5393,524,'_yoast_wpseo_metadesc','Prolotherapy for elbow pain effectively treats ligament, tendon, and many other pain causing elbow injuries joints. Call us at (310) 453-1234.'),(5394,524,'_yoast_wpseo_linkdex','76'),(5395,524,'_yoast_wpseo_content_score','30'),(5396,524,'_yoast_wpseo_primary_category',''),(5398,382,'_yoast_wpseo_focuskw','prolotherapy treatments'),(5399,382,'_yoast_wpseo_title','Prolotherapy Treatments Overview | Hip Injury Treatment'),(5400,382,'_yoast_wpseo_metadesc','Prolotherapy treatments non-surgically assist the body to heal injured or weakened joints, ligaments, and tendons. Call today at 310-453-1234.'),(5401,382,'_yoast_wpseo_linkdex','80'),(5402,382,'_yoast_wpseo_content_score','30'),(5403,382,'_yoast_wpseo_primary_category',''),(5405,528,'_yoast_wpseo_focuskw','Prolotherapy for hip'),(5406,528,'_yoast_wpseo_title','Prolotherapy for Hip and Groin Injuries by Peter A. Fields, MD, DC'),(5407,528,'_yoast_wpseo_metadesc','OrthoRegen offers Prolotherapy for hip injuries so you can avoid pain medication, surgery or extended time away from the sport you love.'),(5408,528,'_yoast_wpseo_linkdex','81'),(5409,528,'_yoast_wpseo_content_score','60'),(5410,528,'_yoast_wpseo_primary_category',''),(5412,486,'_yoast_wpseo_focuskw','knee pain'),(5413,486,'_yoast_wpseo_title','Knee Pain that Won\'t Go Away? Try Prolotherapy at OrthoRegen'),(5414,486,'_yoast_wpseo_metadesc','Do you have knee pain that won\'t go away? Regenerative Orthopedics repairs the knee and resolves the pain. Call us at (310) 453-1234.'),(5415,486,'_yoast_wpseo_linkdex','78'),(5416,486,'_yoast_wpseo_content_score','30'),(5417,486,'_yoast_wpseo_primary_category',''),(5419,595,'_yoast_wpseo_focuskw','prolotherapy for foot'),(5420,595,'_yoast_wpseo_title','Prolotherapy for Foot Injury Treatment by Dr. Fields | Prolotherapy in LA'),(5421,595,'_yoast_wpseo_metadesc','Every day at OrthoRegen® we use Prolotherapy for foot and ankle injuries and get people back to enjoying a painfree lifestyle.'),(5422,595,'_yoast_wpseo_linkdex','81'),(5423,595,'_yoast_wpseo_content_score','60'),(5424,595,'_yoast_wpseo_primary_category',''),(5426,2526,'_wp_attached_file','2019/07/headaches.jpg'),(5427,2526,'_wp_attachment_image_alt','Headaches'),(5428,2526,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2550;s:6:\"height\";i:778;s:4:\"file\";s:21:\"2019/07/headaches.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"headaches-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"headaches-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"headaches-768x234.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5430,2501,'_yoast_wpseo_content_score','90'),(5431,2501,'_yoast_wpseo_primary_category','32'),(5432,2530,'_email','chad@websitedepot.com'),(5433,2530,'_name','webdepotdev'),(5434,2530,'_props','a:2:{s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";}'),(5435,2530,'_last_contacted','2019-09-27 20:08:05'),(5436,2532,'_email','support@monkeydigital.co'),(5437,2532,'_name','Gracenix'),(5438,2532,'_props','a:0:{}'),(5439,2532,'_last_contacted','2019-08-16 22:14:40'),(5440,2533,'_subject','[your-subject]'),(5441,2533,'_from','Gracenix <support@monkeydigital.co>'),(5442,2533,'_from_name','Gracenix'),(5443,2533,'_from_email','support@monkeydigital.co'),(5444,2533,'_field_your-name','Gracenix'),(5445,2533,'_field_your-email','support@monkeydigital.co'),(5446,2533,'_field_phone','84527282788'),(5447,2533,'_field_service','1pm-3pm'),(5448,2533,'_field_your-message','Hi there \r\nHave your website been affected by all the google updates that kept coming on and on, week after week? \r\nWe have the right solution for you, to recover all your ranks and put your keywords on a positive trend \r\n \r\nFind more about our plan, here \r\nhttps://monkeydigital.co/product/ranks-recovery-seo-plan/ \r\n \r\nContact us for more info at \r\nmonkeydigital.co@gmail.com'),(5449,2533,'_field_otherquestion','Hi there \r\nHave your website been affected by all the google updates that kept coming on and on, week after week? \r\nWe have the right solution for you, to recover all your ranks and put your keywords on a positive trend \r\n \r\nFind more about our plan, here \r\nhttps://monkeydigital.co/product/ranks-recovery-seo-plan/ \r\n \r\nContact us for more info at \r\nmonkeydigital.co@gmail.com'),(5450,2533,'_field_submit','Send'),(5451,2533,'_fields','a:7:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;s:6:\"submit\";N;}'),(5452,2533,'_meta','a:19:{s:13:\"serial_number\";i:21;s:9:\"remote_ip\";s:12:\"185.93.3.114\";s:10:\"user_agent\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:14:\"August 1, 2019\";s:4:\"time\";s:7:\"7:48 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5453,2533,'_akismet',NULL),(5454,2533,'_recaptcha','a:0:{}'),(5455,2533,'_spam_log','a:0:{}'),(5456,2533,'_consent','a:0:{}'),(5457,2534,'_menu_item_type','post_type'),(5458,2534,'_menu_item_menu_item_parent','0'),(5459,2534,'_menu_item_object_id','2109'),(5460,2534,'_menu_item_object','page'),(5461,2534,'_menu_item_target',''),(5462,2534,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5463,2534,'_menu_item_xfn',''),(5464,2534,'_menu_item_url',''),(5466,2535,'_menu_item_type','custom'),(5467,2535,'_menu_item_menu_item_parent','36'),(5468,2535,'_menu_item_object_id','2535'),(5469,2535,'_menu_item_object','custom'),(5470,2535,'_menu_item_target',''),(5471,2535,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5472,2535,'_menu_item_xfn',''),(5473,2535,'_menu_item_url',''),(5475,2536,'_edit_lock','1679542640:8'),(5476,2536,'_edit_last','8'),(5477,2536,'_wp_page_template','default'),(5478,2536,'_yoast_wpseo_content_score','30'),(5479,2540,'_menu_item_type','post_type'),(5480,2540,'_menu_item_menu_item_parent','36'),(5481,2540,'_menu_item_object_id','2536'),(5482,2540,'_menu_item_object','page'),(5483,2540,'_menu_item_target',''),(5484,2540,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5485,2540,'_menu_item_xfn',''),(5486,2540,'_menu_item_url',''),(5488,2544,'_menu_item_type','custom'),(5489,2544,'_menu_item_menu_item_parent','479'),(5490,2544,'_menu_item_object_id','2544'),(5491,2544,'_menu_item_object','custom'),(5492,2544,'_menu_item_target',''),(5493,2544,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5494,2544,'_menu_item_xfn',''),(5495,2544,'_menu_item_url','https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/'),(5497,2545,'_edit_lock','1600104351:11'),(5498,2545,'_edit_last','3'),(5500,2503,'_yoast_wpseo_primary_category','32'),(5501,2503,'_yoast_wpseo_content_score','60'),(5503,2549,'_email','lenora_long@yahoo.com'),(5504,2549,'_name','JamesDut'),(5505,2549,'_props','a:0:{}'),(5506,2549,'_last_contacted','2019-08-03 17:02:38'),(5507,2550,'_subject','[your-subject]'),(5508,2550,'_from','JamesDut <lenora_long@yahoo.com>'),(5509,2550,'_from_name','JamesDut'),(5510,2550,'_from_email','lenora_long@yahoo.com'),(5511,2550,'_field_your-name','JamesDut'),(5512,2550,'_field_your-email','lenora_long@yahoo.com'),(5513,2550,'_field_phone','85898232848'),(5514,2550,'_field_service','11am-1pm'),(5515,2550,'_field_your-message','Forex trader makes $10,000 in minutes: http://comitime.tk/ku30?&jscnx=F7zOJoUAnuM'),(5516,2550,'_field_otherquestion','Forex trader makes $10,000 in minutes: http://comitime.tk/ku30?&jscnx=F7zOJoUAnuM'),(5517,2550,'_field_submit','Send'),(5518,2550,'_fields','a:7:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;s:6:\"submit\";N;}'),(5519,2550,'_meta','a:19:{s:13:\"serial_number\";i:22;s:9:\"remote_ip\";s:15:\"185.206.224.213\";s:10:\"user_agent\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:14:\"August 3, 2019\";s:4:\"time\";s:7:\"5:02 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5520,2550,'_akismet',NULL),(5521,2550,'_recaptcha','a:0:{}'),(5522,2550,'_spam_log','a:0:{}'),(5523,2550,'_consent','a:0:{}'),(5524,2551,'_email','shalbert@webtraffic.icu'),(5525,2551,'_name','Sara Halbert'),(5526,2551,'_props','a:0:{}'),(5527,2551,'_last_contacted','2019-08-04 01:11:38'),(5528,2552,'_subject','[your-subject]'),(5529,2552,'_from','Sara Halbert <shalbert@webtraffic.icu>'),(5530,2552,'_from_name','Sara Halbert'),(5531,2552,'_from_email','shalbert@webtraffic.icu'),(5532,2552,'_field_your-name','Sara Halbert'),(5533,2552,'_field_your-email','shalbert@webtraffic.icu'),(5534,2552,'_field_phone','573-738-8918'),(5535,2552,'_field_service','1pm-3pm'),(5536,2552,'_field_your-message','I see your doing great things with your website, but like I said if you had more traffic, could you handle it? \r\n\r\nWe run a global advertising network that can drive more targeted traffic for you.  \r\n\r\nDo you want more targeted traffic?\r\n\r\nhttps://webtraffic.icu/up?=drfields.com\r\n\r\nSara\r\nwebtraffic.icu\r\n\r\n\r\n\r\n\r\n\r\n361 Southwest Drive Suite #731 Jones boro, Arkansas 7 2 4 0 1\r\n\r\nIf you don\'t want to receive future marketing messages about traffic, you can avoid them here:  https://webtraffic.icu/unsubscribe.php?site=drfields.com \r\n\r\n\r\n\r\n\r\n\r\n\r\n'),(5537,2552,'_field_otherquestion','I see your doing great things with your website, but like I said if you had more traffic, could you handle it? \r\n\r\nWe run a global advertising network that can drive more targeted traffic for you.  \r\n\r\nDo you want more targeted traffic?\r\n\r\nhttps://webtraffic.icu/up?=drfields.com\r\n\r\nSara\r\nwebtraffic.icu\r\n\r\n\r\n\r\n\r\n\r\n361 Southwest Drive Suite #731 Jones boro, Arkansas 7 2 4 0 1\r\n\r\nIf you don\'t want to receive future marketing messages about traffic, you can avoid them here:  https://webtraffic.icu/unsubscribe.php?site=drfields.com \r\n\r\n\r\n\r\n\r\n\r\n\r\n'),(5538,2552,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5539,2552,'_meta','a:19:{s:13:\"serial_number\";i:23;s:9:\"remote_ip\";s:13:\"104.223.79.23\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:14:\"August 4, 2019\";s:4:\"time\";s:7:\"1:11 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5540,2552,'_akismet',NULL),(5541,2552,'_recaptcha','a:0:{}'),(5542,2552,'_spam_log','a:0:{}'),(5543,2552,'_consent','a:0:{}'),(5544,2553,'_email','spongetom19@yahoo.com'),(5545,2553,'_name','JamesDut'),(5546,2553,'_props','a:0:{}'),(5547,2553,'_last_contacted','2019-08-05 09:35:50'),(5548,2554,'_subject','[your-subject]'),(5549,2554,'_from','JamesDut <spongetom19@yahoo.com>'),(5550,2554,'_from_name','JamesDut'),(5551,2554,'_from_email','spongetom19@yahoo.com'),(5552,2554,'_field_your-name','JamesDut'),(5553,2554,'_field_your-email','spongetom19@yahoo.com'),(5554,2554,'_field_phone','87369519234'),(5555,2554,'_field_service','1pm-3pm'),(5556,2554,'_field_your-message','Invest $ 5,000 in cryptocurrency once and get $ 70,000 passive income per month: http://itreacapdu.tk/2tj4?QY9yDYHttGKDNh'),(5557,2554,'_field_otherquestion','Invest $ 5,000 in cryptocurrency once and get $ 70,000 passive income per month: http://itreacapdu.tk/2tj4?QY9yDYHttGKDNh'),(5558,2554,'_field_submit','Send'),(5559,2554,'_fields','a:7:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;s:6:\"submit\";N;}'),(5560,2554,'_meta','a:19:{s:13:\"serial_number\";i:24;s:9:\"remote_ip\";s:15:\"185.206.224.213\";s:10:\"user_agent\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:14:\"August 5, 2019\";s:4:\"time\";s:7:\"9:35 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5561,2554,'_akismet',NULL),(5562,2554,'_recaptcha','a:0:{}'),(5563,2554,'_spam_log','a:0:{}'),(5564,2554,'_consent','a:0:{}'),(5565,2555,'_edit_lock','1620440738:9'),(5566,2555,'_edit_last','9'),(5567,2555,'_wp_page_template','default'),(5568,2555,'_yoast_wpseo_content_score','60'),(5569,2555,'_yoast_wpseo_primary_category','32'),(5570,2557,'_email','perez.duane42@gmail.com'),(5571,2557,'_name','Duane Perez'),(5572,2557,'_props','a:0:{}'),(5573,2557,'_last_contacted','2019-08-05 18:00:27'),(5574,2558,'_subject','[your-subject]'),(5575,2558,'_from','Duane Perez <perez.duane42@gmail.com>'),(5576,2558,'_from_name','Duane Perez'),(5577,2558,'_from_email','perez.duane42@gmail.com'),(5578,2558,'_field_your-name','Duane Perez'),(5579,2558,'_field_your-email','perez.duane42@gmail.com'),(5580,2558,'_field_phone','06-71404090'),(5581,2558,'_field_service','9am-11am'),(5582,2558,'_field_your-message','Hi there! \r\n \r\nYou Need Leads, Sales, Conversions, Traffic for drfields.com ?   Will Findet...\r\n\r\nI WILL SEND 5 MILLION MESSAGES VIA WEBSITE CONTACT FORM\r\n \r\nDon\'t believe me?  Since you\'re reading this message then you\'re living proof that contact form advertising works! \r\nWe can send your ad to people via their Website Contact Form. \r\n\r\nIF YOU ARE INTERESTED, Contact us =>  lisaf2zw526@gmail.com\r\n \r\nRegards,\r\nPerez\r\n\r\n'),(5583,2558,'_field_otherquestion','Howdy! \r\n \r\nYou Need Leads, Sales, Conversions, Traffic for drfields.com ?   Will Findet...\r\n\r\nI WILL SEND 5 MILLION MESSAGES VIA WEBSITE CONTACT FORM\r\n \r\nDon\'t believe me?  Since you\'re reading this message then you\'re living proof that contact form advertising works! \r\nWe can send your ad to people via their Website Contact Form. \r\n\r\nIF YOU ARE INTERESTED, Contact us =>  lisaf2zw526@gmail.com\r\n \r\nRegards,\r\nPerez\r\n\r\n'),(5584,2558,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5585,2558,'_meta','a:19:{s:13:\"serial_number\";i:25;s:9:\"remote_ip\";s:14:\"23.254.226.105\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:14:\"August 5, 2019\";s:4:\"time\";s:7:\"6:00 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5586,2558,'_akismet',NULL),(5587,2558,'_recaptcha','a:0:{}'),(5588,2558,'_spam_log','a:0:{}'),(5589,2558,'_consent','a:0:{}'),(5590,2559,'_email','gewertzmd@yahoo.com'),(5591,2559,'_name','Gregory J Ewertz, MD.'),(5592,2559,'_props','a:0:{}'),(5593,2559,'_last_contacted','2019-08-05 18:16:54'),(5594,2560,'_subject','[your-subject]'),(5595,2560,'_from','Gregory J Ewertz, MD. <gewertzmd@yahoo.com>'),(5596,2560,'_from_name','Gregory J Ewertz, MD.'),(5597,2560,'_from_email','gewertzmd@yahoo.com'),(5598,2560,'_field_your-name','Gregory J Ewertz, MD.'),(5599,2560,'_field_your-email','gewertzmd@yahoo.com'),(5600,2560,'_field_phone','310-968-0143'),(5601,2560,'_field_service','11am-1pm'),(5602,2560,'_field_your-message','Throwing a ball without warming up \"tweaked\" my right shoulder about a month ago.  Shortly afterwards, while doing push-ups, I felt something like a tearing in that shoulder.  Now I have pain with raising my arm, especially laterally, associated with weakness.  Being a physician, I looked up rotator cuff injury, and I seem to have every symptom and sign.  I was contemplating a visit with an orthopedic surgeon and probable surgery, but Nadine Terheggen, whose son had prolotherapy for an hip injury, told me to consult with Dr. Fields. '),(5603,2560,'_field_otherquestion',''),(5604,2560,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5605,2560,'_meta','a:19:{s:13:\"serial_number\";i:26;s:9:\"remote_ip\";s:14:\"69.238.162.225\";s:10:\"user_agent\";s:102:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:14:\"August 5, 2019\";s:4:\"time\";s:7:\"6:16 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5606,2560,'_akismet',NULL),(5607,2560,'_recaptcha','a:0:{}'),(5608,2560,'_spam_log','a:0:{}'),(5609,2560,'_consent','a:0:{}'),(5610,2561,'_edit_lock','1571389073:8'),(5611,2561,'_edit_last','8'),(5612,2562,'_wp_attached_file','2019/08/Regenerative-Orthopedics.jpg'),(5613,2562,'_wp_attachment_image_alt','Regenerative Orthopedics'),(5614,2562,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:542;s:4:\"file\";s:36:\"2019/08/Regenerative-Orthopedics.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Regenerative-Orthopedics-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Regenerative-Orthopedics-500x339.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Regenerative-Orthopedics-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(5615,2563,'_wp_attached_file','2019/08/Regenerative-Orthopedics-.jpg'),(5616,2563,'_wp_attachment_image_alt','Regenerative Orthopedics '),(5617,2563,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:544;s:4:\"file\";s:37:\"2019/08/Regenerative-Orthopedics-.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Regenerative-Orthopedics--200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Regenerative-Orthopedics--500x340.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Regenerative-Orthopedics--768x522.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(5618,2561,'_thumbnail_id','2562'),(5619,2561,'_wp_page_template','default'),(5620,2561,'_yoast_wpseo_focuskw','Regenerative Orthopedics'),(5621,2561,'_yoast_wpseo_title','Regenerative Orthopedics: A Rejuvenated You | PRP Los Angeles'),(5622,2561,'_yoast_wpseo_metadesc','Regenerative Orthopedics can help your ligaments, tendons and heal your painful joint. A non-invasive alternative to surgery, our Regenerative Orthopedic clinicians in Santa Monica can help you to live a pain-free life. Whether you need treatment for knee, hip, shoulder or back pain, contact us at (310) 453-1234.'),(5623,2561,'_yoast_wpseo_linkdex','82'),(5624,2561,'_yoast_wpseo_content_score','90'),(5625,2561,'_yoast_wpseo_primary_category','17'),(5626,2565,'_edit_lock','1641431427:9'),(5627,2565,'_edit_last','9'),(5628,2566,'_wp_attached_file','2019/08/Regenerative-Orthopedic...jpg'),(5629,2566,'_wp_attachment_image_alt','Regenerative Orthopedic..'),(5630,2566,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:37:\"2019/08/Regenerative-Orthopedic...jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Regenerative-Orthopedic..-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Regenerative-Orthopedic..-500x334.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Regenerative-Orthopedic..-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(5631,2567,'_wp_attached_file','2019/08/Regenerative-Orthopedic..jpg'),(5632,2567,'_wp_attachment_image_alt','Regenerative Orthopedic.'),(5633,2567,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:648;s:4:\"file\";s:36:\"2019/08/Regenerative-Orthopedic..jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Regenerative-Orthopedic.-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Regenerative-Orthopedic.-500x405.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Regenerative-Orthopedic.-768x622.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(5634,2565,'_thumbnail_id','2566'),(5635,2565,'_wp_page_template','default'),(5636,2565,'_yoast_wpseo_focuskw','Regenerative Orthopedic'),(5637,2565,'_yoast_wpseo_title','Regenerative Orthopedic Treatment Options | PRP in Los Angeles Area'),(5638,2565,'_yoast_wpseo_metadesc','Prolotherapy foot treatment is just one of the many different kinds of ways that our regenerative orthopedic treatments can help. Hip injury treatment methods don’t get any more non-invasive than our prolotherapy injections. For the right prolotherapy doctors, contact us at: (310) 453-1234'),(5639,2565,'_yoast_wpseo_linkdex','76'),(5640,2565,'_yoast_wpseo_content_score','30'),(5641,2565,'_yoast_wpseo_primary_category','17'),(5644,1340,'_yoast_wpseo_focuskw','Prolotherapy'),(5645,1340,'_yoast_wpseo_linkdex','52'),(5646,1340,'_yoast_wpseo_content_score','90'),(5647,2573,'_email','euro75pc@outlook.com'),(5648,2573,'_name','H. Roenne'),(5649,2573,'_props','a:0:{}'),(5650,2573,'_last_contacted','2019-08-07 19:38:30'),(5651,2574,'_subject','[your-subject]'),(5652,2574,'_from','H. Roenne <euro75pc@outlook.com>'),(5653,2574,'_from_name','H. Roenne'),(5654,2574,'_from_email','euro75pc@outlook.com'),(5655,2574,'_field_your-name','H. Roenne'),(5656,2574,'_field_your-email','euro75pc@outlook.com'),(5657,2574,'_field_phone','83468493663'),(5658,2574,'_field_service','3pm-5pm'),(5659,2574,'_field_your-message','Have you ever wanted to start a solid, \"real-deal\" \r\nsuccessful online business but didn’t know how? \r\n \r\nPerhaps you’ve TRIED any of the these: \r\n \r\n- Affiliate marketing \r\n- Biz Opps & MLM \r\n- E-Commerce \r\n- Product creation \r\n \r\n... only to struggle and never getting any results? \r\n \r\nIf you’re looking for the simplest way of \"getting \r\ninto the money\" - then I invite you to attend this \r\nadvanced Live training: \r\n \r\nhttp://trck.me/FREE_Affiliate_Training/ \r\n \r\nBest regards \r\nH. Roenne'),(5660,2574,'_field_otherquestion','Have you ever wanted to start a solid, \"real-deal\" \r\nsuccessful online business but didn’t know how? \r\n \r\nPerhaps you’ve TRIED any of the these: \r\n \r\n- Affiliate marketing \r\n- Biz Opps & MLM \r\n- E-Commerce \r\n- Product creation \r\n \r\n... only to struggle and never getting any results? \r\n \r\nIf you’re looking for the simplest way of \"getting \r\ninto the money\" - then I invite you to attend this \r\nadvanced Live training: \r\n \r\nhttp://trck.me/FREE_Affiliate_Training/ \r\n \r\nBest regards \r\nH. Roenne'),(5661,2574,'_field_submit','Send'),(5662,2574,'_fields','a:7:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;s:6:\"submit\";N;}'),(5663,2574,'_meta','a:19:{s:13:\"serial_number\";i:27;s:9:\"remote_ip\";s:15:\"199.115.117.108\";s:10:\"user_agent\";s:132:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.106\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:14:\"August 7, 2019\";s:4:\"time\";s:7:\"7:38 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5664,2574,'_akismet',NULL),(5665,2574,'_recaptcha','a:0:{}'),(5666,2574,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:8:\"flamingo\";s:6:\"reason\";s:41:\"wdeditor has marked this message as spam.\";}}'),(5667,2574,'_consent','a:0:{}'),(5673,2578,'_email','mircgyhaelskymn@gmail.com'),(5674,2578,'_name','Michaelcauct'),(5675,2578,'_props','a:0:{}'),(5676,2578,'_last_contacted','2019-08-08 18:43:58'),(5677,2579,'_subject','[your-subject]'),(5678,2579,'_from','Michaelcauct <mircgyhaelskymn@gmail.com>'),(5679,2579,'_from_name','Michaelcauct'),(5680,2579,'_from_email','mircgyhaelskymn@gmail.com'),(5681,2579,'_field_your-name','Michaelcauct'),(5682,2579,'_field_your-email','mircgyhaelskymn@gmail.com'),(5683,2579,'_field_phone','87896874373'),(5684,2579,'_field_service','1pm-3pm'),(5685,2579,'_field_your-message','Descry is  an prominent  profit seeking your team. drfields.com  http://anesbreeddis.tk/5co0'),(5686,2579,'_field_otherquestion','Descry is  an prominent  profit seeking your team. drfields.com  http://anesbreeddis.tk/5co0'),(5687,2579,'_field_submit','Send'),(5688,2579,'_fields','a:7:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;s:6:\"submit\";N;}'),(5689,2579,'_meta','a:19:{s:13:\"serial_number\";i:28;s:9:\"remote_ip\";s:12:\"85.206.165.5\";s:10:\"user_agent\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:14:\"August 8, 2019\";s:4:\"time\";s:7:\"6:43 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5690,2579,'_akismet',NULL),(5691,2579,'_recaptcha','a:0:{}'),(5692,2579,'_spam_log','a:0:{}'),(5693,2579,'_consent','a:0:{}'),(5694,2580,'_email','georgeperez83@gmail.com'),(5695,2580,'_name','Jorge Perez'),(5696,2580,'_props','a:0:{}'),(5697,2580,'_last_contacted','2019-08-08 23:46:05'),(5698,2581,'_subject','[your-subject]'),(5699,2581,'_from','Jorge Perez <georgeperez83@gmail.com>'),(5700,2581,'_from_name','Jorge Perez'),(5701,2581,'_from_email','georgeperez83@gmail.com'),(5702,2581,'_field_your-name','Jorge Perez'),(5703,2581,'_field_your-email','georgeperez83@gmail.com'),(5704,2581,'_field_phone','3239159765'),(5705,2581,'_field_service','9am-11am'),(5706,2581,'_field_your-message','I had a spinal fusion. T2-L2. \r\nI have endured 3 years of pain. Perhaps one of your treatment options can help?'),(5707,2581,'_field_otherquestion',''),(5708,2581,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5709,2581,'_meta','a:19:{s:13:\"serial_number\";i:29;s:9:\"remote_ip\";s:13:\"172.116.85.84\";s:10:\"user_agent\";s:127:\"Mozilla/5.0 (Linux; Android 8.1.0; LM-X410(FG)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:14:\"August 8, 2019\";s:4:\"time\";s:8:\"11:46 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5710,2581,'_akismet',NULL),(5711,2581,'_recaptcha','a:0:{}'),(5712,2581,'_spam_log','a:0:{}'),(5713,2581,'_consent','a:0:{}'),(5714,2582,'_email','edwardm@lioncourtcrypto.net'),(5715,2582,'_name','HarryEmold'),(5716,2582,'_props','a:0:{}'),(5717,2582,'_last_contacted','2019-08-09 05:38:39'),(5718,2583,'_subject','[your-subject]'),(5719,2583,'_from','HarryEmold <edwardm@lioncourtcrypto.net>'),(5720,2583,'_from_name','HarryEmold'),(5721,2583,'_from_email','edwardm@lioncourtcrypto.net'),(5722,2583,'_field_your-name','HarryEmold'),(5723,2583,'_field_your-email','edwardm@lioncourtcrypto.net'),(5724,2583,'_field_phone','86634886923'),(5725,2583,'_field_service','1pm-3pm'),(5726,2583,'_field_your-message','We buy all crypto currencies at good rate, with reasonable commission between sellers and the mandates. \r\n \r\nContact us with the informations below if you are or have a potential seller. \r\n \r\nTel: +353 1 4378345 \r\nFax: +353 1 6865354 \r\nEmail: edwardm@lioncourtcrypto.com \r\n \r\nThank you, \r\nCrypto currencies Purchase Department, \r\nEdward Molina.'),(5727,2583,'_field_otherquestion','We buy all crypto currencies at good rate, with reasonable commission between sellers and the mandates. \r\n \r\nContact us with the informations below if you are or have a potential seller. \r\n \r\nTel: +353 1 4378345 \r\nFax: +353 1 6865354 \r\nEmail: edwardm@lioncourtcrypto.com \r\n \r\nThank you, \r\nCrypto currencies Purchase Department, \r\nEdward Molina.'),(5728,2583,'_field_submit','Send'),(5729,2583,'_fields','a:7:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;s:6:\"submit\";N;}'),(5730,2583,'_meta','a:19:{s:13:\"serial_number\";i:30;s:9:\"remote_ip\";s:12:\"84.17.47.133\";s:10:\"user_agent\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:14:\"August 9, 2019\";s:4:\"time\";s:7:\"5:38 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5731,2583,'_akismet',NULL),(5732,2583,'_recaptcha','a:0:{}'),(5733,2583,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:8:\"flamingo\";s:6:\"reason\";s:41:\"wdeditor has marked this message as spam.\";}}'),(5734,2583,'_consent','a:0:{}'),(5735,2584,'_email','hunancy168@gmail.com'),(5736,2584,'_name','Nancy  Hu'),(5737,2584,'_props','a:0:{}'),(5738,2584,'_last_contacted','2019-08-09 10:28:33'),(5739,2585,'_subject','[your-subject]'),(5740,2585,'_from','Nancy  Hu <hunancy168@gmail.com>'),(5741,2585,'_from_name','Nancy  Hu'),(5742,2585,'_from_email','hunancy168@gmail.com'),(5743,2585,'_field_your-name','Nancy  Hu'),(5744,2585,'_field_your-email','hunancy168@gmail.com'),(5745,2585,'_field_phone','3106639067'),(5746,2585,'_field_service','11am-1pm'),(5747,2585,'_field_your-message','Degenerating 5-6.....'),(5748,2585,'_field_otherquestion','Wondering and hoping stem cells can help my condition'),(5749,2585,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5750,2585,'_meta','a:19:{s:13:\"serial_number\";i:31;s:9:\"remote_ip\";s:13:\"107.77.230.26\";s:10:\"user_agent\";s:139:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:14:\"August 9, 2019\";s:4:\"time\";s:8:\"10:28 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5751,2585,'_akismet',NULL),(5752,2585,'_recaptcha','a:0:{}'),(5753,2585,'_spam_log','a:0:{}'),(5754,2585,'_consent','a:0:{}'),(5755,2586,'_edit_lock','1571389253:8'),(5756,2586,'_edit_last','8'),(5757,2587,'_wp_attached_file','2019/08/Stem-Cell-Doctor-in-Santa-Monica-.jpg'),(5758,2587,'_wp_attachment_image_alt','Stem Cell Doctor in Santa Monica'),(5759,2587,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:525;s:4:\"file\";s:45:\"2019/08/Stem-Cell-Doctor-in-Santa-Monica-.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Stem-Cell-Doctor-in-Santa-Monica--200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Stem-Cell-Doctor-in-Santa-Monica--500x328.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Stem-Cell-Doctor-in-Santa-Monica--768x504.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:193:\"muscular male with beard. happy man isolated on white. sportsman with athletic body. coach in fitness gym. after workout. man athlete in blue sport tshirt. sportswear fashion. happy smiling man\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:64:\"Muscular Male With Beard. Happy Man Isolated On White. Sportsman\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:47:{i:0;s:8:\"activity\";i:1;s:7:\"aerobic\";i:2;s:5:\"after\";i:3;s:7:\"athlete\";i:4;s:8:\"athletic\";i:5;s:5:\"beard\";i:6;s:4:\"blue\";i:7;s:4:\"body\";i:8;s:11:\"bodybuilder\";i:9;s:5:\"coach\";i:10;s:4:\"diet\";i:11;s:7:\"dieting\";i:12;s:9:\"endurance\";i:13;s:9:\"energetic\";i:14;s:6:\"energy\";i:15;s:7:\"fashion\";i:16;s:7:\"fitness\";i:17;s:3:\"gym\";i:18;s:5:\"happy\";i:19;s:6:\"health\";i:20;s:7:\"healthy\";i:21;s:8:\"isolated\";i:22;s:4:\"legs\";i:23;s:4:\"male\";i:24;s:3:\"man\";i:25;s:10:\"meditation\";i:26;s:8:\"muscular\";i:27;s:4:\"pace\";i:28;s:7:\"players\";i:29;s:8:\"position\";i:30;s:12:\"recreational\";i:31;s:5:\"rehab\";i:32;s:5:\"relax\";i:33;s:7:\"rupture\";i:34;s:4:\"shoe\";i:35;s:5:\"split\";i:36;s:5:\"sport\";i:37;s:9:\"sportsman\";i:38;s:10:\"sportswear\";i:39;s:9:\"sprinting\";i:40;s:7:\"trainer\";i:41;s:8:\"training\";i:42;s:6:\"tshirt\";i:43;s:6:\"weight\";i:44;s:5:\"white\";i:45;s:7:\"winners\";i:46;s:7:\"workout\";}}}'),(5760,2588,'_wp_attached_file','2019/08/Stem-Cell-Doctor-in-Santa-Monica.jpg'),(5761,2588,'_wp_attachment_image_alt','A Doctor Injects A Medical Injection Of Chondroprotector And Hya'),(5762,2588,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:44:\"2019/08/Stem-Cell-Doctor-in-Santa-Monica.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Stem-Cell-Doctor-in-Santa-Monica-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Stem-Cell-Doctor-in-Santa-Monica-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Stem-Cell-Doctor-in-Santa-Monica-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"Canon EOS 600D\";s:7:\"caption\";s:167:\"A doctor injects a medical injection of chondroprotector and hyaluronic acid into the knee of a woman to restore the knee joint, cartilage and synovial fluid, close-up\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:64:\"A Doctor Injects A Medical Injection Of Chondroprotector And Hya\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:40:{i:0;s:14:\"Glucocorticoid\";i:1;s:5:\"adult\";i:2;s:10:\"anesthetic\";i:3;s:9:\"arthritis\";i:4;s:9:\"arthrosis\";i:5;s:13:\"biotechnology\";i:6;s:6:\"bureit\";i:7;s:16:\"chondroprotector\";i:8;s:8:\"close-up\";i:9;s:7:\"disease\";i:10;s:6:\"doctor\";i:11;s:4:\"drug\";i:12;s:5:\"elbow\";i:13;s:6:\"female\";i:14;s:4:\"genu\";i:15;s:11:\"glucosamine\";i:16;s:7:\"illness\";i:17;s:12:\"inflammation\";i:18;s:6:\"injury\";i:19;s:4:\"knee\";i:20;s:10:\"knee-joint\";i:21;s:3:\"leg\";i:22;s:4:\"limb\";i:23;s:5:\"medic\";i:24;s:7:\"medical\";i:25;s:9:\"medicinal\";i:26;s:11:\"orthopedics\";i:27;s:11:\"orthopedist\";i:28;s:4:\"pain\";i:29;s:7:\"patient\";i:30;s:9:\"procedure\";i:31;s:12:\"professional\";i:32;s:8:\"sickness\";i:33;s:12:\"stifle-joint\";i:34;s:7:\"syringe\";i:35;s:10:\"tendinitis\";i:36;s:7:\"therapy\";i:37;s:6:\"trauma\";i:38;s:5:\"white\";i:39;s:5:\"woman\";}}}'),(5763,2586,'_thumbnail_id','2587'),(5764,2586,'_wp_page_template','default'),(5766,2586,'_yoast_wpseo_focuskw','Stem Cell Doctor in Santa Monica'),(5767,2586,'_yoast_wpseo_title','The Gold Standard Stem Cell Doctor in Santa Monica | PRP Los Angeles'),(5768,2586,'_yoast_wpseo_metadesc','A Stem Cell Doctor in Santa Monica that can help you with Regenerative Orthopedics. That’s what you’ll find here at OrthoRegen and Peter A. Fields, MD, DC. Our Gold Standard in Stem Cell Therapy is your non-surgical alternative to joint replacement. For an experienced regenerative medicine clinic with success in repairing joints with stem cells, prp, and prolotherapy, call (310) 453-1234.'),(5769,2586,'_yoast_wpseo_linkdex','74'),(5770,2586,'_yoast_wpseo_content_score','90'),(5771,2586,'_wp_old_date','2019-08-10'),(5772,2586,'_yoast_wpseo_primary_category','17'),(5773,2590,'_email','raphaeIcosecoerics@gmail.com'),(5774,2590,'_name','MarioGebra'),(5775,2590,'_props','a:0:{}'),(5776,2590,'_last_contacted','2019-09-01 09:01:10'),(5777,2591,'_subject','[your-subject]'),(5778,2591,'_from','MarioGebra <raphaeIcosecoerics@gmail.com>'),(5779,2591,'_from_name','MarioGebra'),(5780,2591,'_from_email','raphaeIcosecoerics@gmail.com'),(5781,2591,'_field_your-name','MarioGebra'),(5782,2591,'_field_your-email','raphaeIcosecoerics@gmail.com'),(5783,2591,'_field_phone','82282429462'),(5784,2591,'_field_service','11am-1pm'),(5785,2591,'_field_your-message','Ciao!  drfields.com \r\n \r\nWe present \r\n \r\nSending your message through the feedback form which can be found on the sites in the Communication partition. Feedback forms are filled in by our program and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This technique raise the probability that your message will be open. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com'),(5786,2591,'_field_otherquestion','Ciao!  drfields.com \r\n \r\nWe present \r\n \r\nSending your message through the feedback form which can be found on the sites in the Communication partition. Feedback forms are filled in by our program and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This technique raise the probability that your message will be open. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com'),(5787,2591,'_field_submit','Send'),(5788,2591,'_fields','a:7:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;s:6:\"submit\";N;}'),(5789,2591,'_meta','a:19:{s:13:\"serial_number\";i:32;s:9:\"remote_ip\";s:12:\"83.97.23.233\";s:10:\"user_agent\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 11, 2019\";s:4:\"time\";s:7:\"9:14 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5790,2591,'_akismet',NULL),(5791,2591,'_recaptcha','a:0:{}'),(5792,2591,'_spam_log','a:0:{}'),(5793,2591,'_consent','a:0:{}'),(5794,2592,'_edit_lock','1639528895:9'),(5795,2592,'_edit_last','9'),(5796,2592,'_wp_page_template','default'),(5798,2592,'_yoast_wpseo_content_score','90'),(5799,2592,'_yoast_wpseo_primary_category','32'),(5800,2595,'_email','mike@monkeydigital.co'),(5801,2595,'_name','Javier Langlands'),(5802,2595,'_props','a:0:{}'),(5803,2595,'_last_contacted','2019-08-13 12:34:23'),(5804,2596,'_subject','[your-subject]'),(5805,2596,'_from','Javier Langlands <mike@monkeydigital.co>'),(5806,2596,'_from_name','Javier Langlands'),(5807,2596,'_from_email','mike@monkeydigital.co'),(5808,2596,'_field_your-name','Javier Langlands'),(5809,2596,'_field_your-email','mike@monkeydigital.co'),(5810,2596,'_field_phone','077 0044 7981'),(5811,2596,'_field_service','3pm-5pm'),(5812,2596,'_field_your-message','What will we do to increase your DA?\r\n\r\nOur Plan is very simple yet very effective. We have researched all available sources and gained access to thousands of High DA domains that are directly indexed and re-crawled by Moz Robots on each update. So, we will build and index:\r\n\r\n- 5000 DA30+ backlinks\r\n- 4000 TF10+ backlinks\r\n- 1000 EDU and Gov links\r\n\r\nstart boosting ranks and SEO metrics with our plan today:\r\nhttps://monkeydigital.co/product/moz-da-seo-plan/\r\n\r\nBest regards\r\nMike\r\nmonkeydigital.co@gmail.com'),(5813,2596,'_field_otherquestion','What will we do to increase your DA?\r\n\r\nOur Plan is very simple yet very effective. We have researched all available sources and gained access to thousands of High DA domains that are directly indexed and re-crawled by Moz Robots on each update. So, we will build and index:\r\n\r\n- 5000 DA30+ backlinks\r\n- 4000 TF10+ backlinks\r\n- 1000 EDU and Gov links\r\n\r\nstart boosting ranks and SEO metrics with our plan today:\r\nhttps://monkeydigital.co/product/moz-da-seo-plan/\r\n\r\nBest regards\r\nMike\r\nmonkeydigital.co@gmail.com'),(5814,2596,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5815,2596,'_meta','a:19:{s:13:\"serial_number\";i:33;s:9:\"remote_ip\";s:13:\"46.243.221.36\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 13, 2019\";s:4:\"time\";s:8:\"12:34 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5816,2596,'_akismet',NULL),(5817,2596,'_recaptcha','a:0:{}'),(5818,2596,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:8:\"flamingo\";s:6:\"reason\";s:41:\"wdeditor has marked this message as spam.\";}}'),(5819,2596,'_consent','a:0:{}'),(5820,2598,'_email','emma@bestcontent.top'),(5821,2598,'_name','Emma Wilson'),(5822,2598,'_props','a:0:{}'),(5823,2598,'_last_contacted','2019-08-14 06:04:54'),(5824,2599,'_subject','[your-subject]'),(5825,2599,'_from','Emma Wilson <emma@bestcontent.top>'),(5826,2599,'_from_name','Emma Wilson'),(5827,2599,'_from_email','emma@bestcontent.top'),(5828,2599,'_field_your-name','Emma Wilson'),(5829,2599,'_field_your-email','emma@bestcontent.top'),(5830,2599,'_field_phone','805-372-1751'),(5831,2599,'_field_service','9am-11am'),(5832,2599,'_field_your-message','I\'ve received a few of your emails recently and it looks like you could use a little help with your copywriting.  I did too.  \r\n \r\nI recently started using CopyTemplates.com for my business so I can easily copy, paste and fill in the blanks using proven email, website copy and more.  I figured you could improve your copy as I did.  They have free email copy here too: \r\nhttps://bestcontent.top/best/?=drfields.com\r\n \r\nHave a great day!\r\n \r\n\r\n \r\nRegards,\r\nEmma\r\n\r\nP.S. - If you decide to get unlimited access to their copy portal, then you can use coupon code GREATCOPY to get an extra $50 off.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n500 Westover Dr #12733\r\nSanford, NC 27330\r\n\r\nThis is a marketing message. You can avoid future messages here:\r\nhttps://bestcontent.top/out.php?site=drfields.com\r\n'),(5833,2599,'_field_otherquestion','I\'ve received a few of your emails recently and it looks like you could use a little help with your copywriting.  I did too.  \r\n \r\nI recently started using CopyTemplates.com for my business so I can easily copy, paste and fill in the blanks using proven email, website copy and more.  I figured you could improve your copy as I did.  They have free email copy here too: \r\nhttps://bestcontent.top/best/?=drfields.com\r\n \r\nHave a great day!\r\n \r\n\r\n \r\nRegards,\r\nEmma\r\n\r\nP.S. - If you decide to get unlimited access to their copy portal, then you can use coupon code GREATCOPY to get an extra $50 off.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n500 Westover Dr #12733\r\nSanford, NC 27330\r\n\r\nThis is a marketing message. You can avoid future messages here:\r\nhttps://bestcontent.top/out.php?site=drfields.com\r\n'),(5834,2599,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5835,2599,'_meta','a:19:{s:13:\"serial_number\";i:34;s:9:\"remote_ip\";s:14:\"191.101.199.10\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 14, 2019\";s:4:\"time\";s:7:\"6:04 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5836,2599,'_akismet',NULL),(5837,2599,'_recaptcha','a:0:{}'),(5838,2599,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:8:\"flamingo\";s:6:\"reason\";s:41:\"wdeditor has marked this message as spam.\";}}'),(5839,2599,'_consent','a:0:{}'),(5840,2600,'_email','nino22oran@gmail.com'),(5841,2600,'_name','http://cort.as/-MrBS'),(5842,2600,'_props','a:0:{}'),(5843,2600,'_last_contacted','2019-08-14 21:34:17'),(5844,2601,'_subject','[your-subject]'),(5845,2601,'_from','http://cort.as/-MrBS <nino22oran@gmail.com>'),(5846,2601,'_from_name','http://cort.as/-MrBS'),(5847,2601,'_from_email','nino22oran@gmail.com'),(5848,2601,'_field_your-name','http://cort.as/-MrBS'),(5849,2601,'_field_your-email','nino22oran@gmail.com'),(5850,2601,'_field_phone','85757896357'),(5851,2601,'_field_service','11am-1pm'),(5852,2601,'_field_your-message','https://hideuri.com/K0XB81'),(5853,2601,'_field_otherquestion','https://hideuri.com/K0XB81'),(5854,2601,'_field_submit','Send'),(5855,2601,'_fields','a:7:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;s:6:\"submit\";N;}'),(5856,2601,'_meta','a:19:{s:13:\"serial_number\";i:35;s:9:\"remote_ip\";s:15:\"185.180.222.171\";s:10:\"user_agent\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 14, 2019\";s:4:\"time\";s:7:\"9:34 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5857,2601,'_akismet',NULL),(5858,2601,'_recaptcha','a:0:{}'),(5859,2601,'_spam_log','a:0:{}'),(5860,2601,'_consent','a:0:{}'),(5861,2602,'_email','laura@explainmybusiness.com'),(5862,2602,'_name','Laura Wiess'),(5863,2602,'_props','a:0:{}'),(5864,2602,'_last_contacted','2019-08-15 05:03:09'),(5865,2603,'_subject','[your-subject]'),(5866,2603,'_from','Laura Wiess <laura@explainmybusiness.com>'),(5867,2603,'_from_name','Laura Wiess'),(5868,2603,'_from_email','laura@explainmybusiness.com'),(5869,2603,'_field_your-name','Laura Wiess'),(5870,2603,'_field_your-email','laura@explainmybusiness.com'),(5871,2603,'_field_phone','917-675-5528'),(5872,2603,'_field_service','11am-1pm'),(5873,2603,'_field_your-message','Hey - I was checking out your site and I’m impressed with how clean and professional it looks. \r\n\r\nAdding video to your website has become an absolute MUST. Even something basic that clearly defines exactly what it is you\'re offering & why work with your company vs competitors...\r\n\r\nMy team, based out of Jerusalem and California, creates quality animated explainer videos.  Our award-winning videos are proven to increase customer engagement and decrease user bounce rate. \r\n\r\nEmail me back for some explainer video samples, pricing, or just to say hi!\r\n\r\n-Laura\r\n\r\nEmail: Laura@explainmybusiness.com\r\nWebsite: www.explainmybusiness.com'),(5874,2603,'_field_otherquestion','Hey - I was checking out your site and I’m impressed with how clean and professional it looks. \r\n\r\nAdding video to your website has become an absolute MUST. Even something basic that clearly defines exactly what it is you\'re offering & why work with your company vs competitors...\r\n\r\nMy team, based out of Jerusalem and California, creates quality animated explainer videos.  Our award-winning videos are proven to increase customer engagement and decrease user bounce rate. \r\n\r\nEmail me back for some explainer video samples, pricing, or just to say hi!\r\n\r\n-Laura\r\n\r\nEmail: Laura@explainmybusiness.com\r\nWebsite: www.explainmybusiness.com'),(5875,2603,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5876,2603,'_meta','a:19:{s:13:\"serial_number\";i:36;s:9:\"remote_ip\";s:14:\"89.187.164.159\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 15, 2019\";s:4:\"time\";s:7:\"5:03 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5877,2603,'_akismet',NULL),(5878,2603,'_recaptcha','a:0:{}'),(5879,2603,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:8:\"flamingo\";s:6:\"reason\";s:41:\"wdeditor has marked this message as spam.\";}}'),(5880,2603,'_consent','a:0:{}'),(5882,2448,'_wp_old_date','2019-07-19'),(5883,2604,'_subject','[your-subject]'),(5884,2604,'_from','Alan <alan@websitedepot.com>'),(5885,2604,'_from_name','Alan'),(5886,2604,'_from_email','alan@websitedepot.com'),(5887,2604,'_field_your-name','Alan'),(5888,2604,'_field_your-email','alan@websitedepot.com'),(5889,2604,'_field_phone','3235078034'),(5890,2604,'_field_service','1pm-3pm'),(5891,2604,'_field_your-message','Test'),(5892,2604,'_field_otherquestion','Test'),(5893,2604,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5894,2604,'_meta','a:19:{s:13:\"serial_number\";i:37;s:9:\"remote_ip\";s:12:\"23.243.83.13\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 16, 2019\";s:4:\"time\";s:7:\"5:45 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5895,2604,'_akismet',NULL),(5896,2604,'_recaptcha','a:0:{}'),(5897,2604,'_spam_log','a:0:{}'),(5898,2604,'_consent','a:0:{}'),(5899,2532,'_wp_old_date','2019-08-01'),(5900,2605,'_subject','[your-subject]'),(5901,2605,'_from','Austincitly <support@monkeydigital.co>'),(5902,2605,'_from_name','Austincitly'),(5903,2605,'_from_email','support@monkeydigital.co'),(5904,2605,'_field_your-name','Austincitly'),(5905,2605,'_field_your-email','support@monkeydigital.co'),(5906,2605,'_field_phone','89759344515'),(5907,2605,'_field_service','1pm-3pm'),(5908,2605,'_field_your-message','Dropped in website’s rankings? Try our new Slow Link building Service. \r\nWe will run a slow & steady link building campaign for 7 days and send you a report with 140 live Social posts \r\n \r\nMore info and more variations in posts: \r\nhttps://monkeydigital.co/product/daily-social-posting-service/ \r\n \r\nThanks and regards \r\nMike \r\nmonkeydigital.co@gmail.com'),(5909,2605,'_field_otherquestion','Dropped in website’s rankings? Try our new Slow Link building Service. \r\nWe will run a slow & steady link building campaign for 7 days and send you a report with 140 live Social posts \r\n \r\nMore info and more variations in posts: \r\nhttps://monkeydigital.co/product/daily-social-posting-service/ \r\n \r\nThanks and regards \r\nMike \r\nmonkeydigital.co@gmail.com'),(5910,2605,'_field_submit','Send'),(5911,2605,'_fields','a:7:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;s:6:\"submit\";N;}'),(5912,2605,'_meta','a:19:{s:13:\"serial_number\";i:38;s:9:\"remote_ip\";s:12:\"84.17.51.125\";s:10:\"user_agent\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 16, 2019\";s:4:\"time\";s:8:\"10:14 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5913,2605,'_akismet',NULL),(5914,2605,'_recaptcha','a:0:{}'),(5915,2605,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:8:\"flamingo\";s:6:\"reason\";s:41:\"wdeditor has marked this message as spam.\";}}'),(5916,2605,'_consent','a:0:{}'),(5917,2606,'_email','sodersten.ricky@googlemail.com'),(5918,2606,'_name','Ricky Sodersten'),(5919,2606,'_props','a:0:{}'),(5920,2606,'_last_contacted','2019-08-17 07:06:30'),(5921,2607,'_subject','[your-subject]'),(5922,2607,'_from','Ricky Sodersten <sodersten.ricky@googlemail.com>'),(5923,2607,'_from_name','Ricky Sodersten'),(5924,2607,'_from_email','sodersten.ricky@googlemail.com'),(5925,2607,'_field_your-name','Ricky Sodersten'),(5926,2607,'_field_your-email','sodersten.ricky@googlemail.com'),(5927,2607,'_field_phone','(61) 3664-5020'),(5928,2607,'_field_service','3pm-5pm'),(5929,2607,'_field_your-message','Would you like to submit your business on 1000\'s of Advertising sites every month? One tiny investment every month will get you virtually unlimited traffic to your site forever!To find out more check out our site here: http://moreadsposted.sytes.net'),(5930,2607,'_field_otherquestion','Do you want to submit your ad on 1000\'s of Advertising sites monthly? Pay one low monthly fee and get virtually unlimited traffic to your site forever!To find out more check out our site here: http://moreadsposted.sytes.net'),(5931,2607,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5932,2607,'_meta','a:19:{s:13:\"serial_number\";i:39;s:9:\"remote_ip\";s:13:\"104.245.145.5\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 17, 2019\";s:4:\"time\";s:7:\"7:06 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5933,2607,'_akismet',NULL),(5934,2607,'_recaptcha','a:0:{}'),(5935,2607,'_spam_log','a:0:{}'),(5936,2607,'_consent','a:0:{}'),(5937,2608,'_email','brookecvsulsmith@aol.com'),(5938,2608,'_name','Brooke Smith'),(5939,2608,'_props','a:0:{}'),(5940,2608,'_last_contacted','2019-08-19 01:05:22'),(5941,2609,'_subject','[your-subject]'),(5942,2609,'_from','Brooke Smith <brookecvsulsmith@aol.com>'),(5943,2609,'_from_name','Brooke Smith'),(5944,2609,'_from_email','brookecvsulsmith@aol.com'),(5945,2609,'_field_your-name','Brooke Smith'),(5946,2609,'_field_your-email','brookecvsulsmith@aol.com'),(5947,2609,'_field_phone','(805) 372-1751'),(5948,2609,'_field_service','9am-11am'),(5949,2609,'_field_your-message','Hi,\r\n  You have a great website.  May I ask how your SEO is doing?\r\n\r\nDo you have enough people coming to your website?\r\n\r\nWe can help improve your SEO.  \r\n\r\nhttps://businessseo.top/wal/?=drfields.com\r\n\r\nRegards,\r\nBrooke\r\nSEO Expert\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n500 Westover Dr #12733\r\nSanford, NC 27330\r\n\r\nIf you prefer not to receive commercial messages regarding seo for your business, please remove yourself here: https://www.businessseo.top/out.php/?site=drfields.com\r\n'),(5950,2609,'_field_otherquestion','Hi,\r\n  You have a great website.  May I ask how your SEO is doing?\r\n\r\nDo you have enough people coming to your website?\r\n\r\nWe can help improve your SEO.  \r\n\r\nhttps://businessseo.top/wal/?=drfields.com\r\n\r\nRegards,\r\nBrooke\r\nSEO Expert\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n500 Westover Dr #12733\r\nSanford, NC 27330\r\n\r\nIf you prefer not to receive commercial messages regarding seo for your business, please remove yourself here: https://www.businessseo.top/out.php/?site=drfields.com\r\n'),(5951,2609,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5952,2609,'_meta','a:19:{s:13:\"serial_number\";i:40;s:9:\"remote_ip\";s:13:\"196.196.47.32\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 19, 2019\";s:4:\"time\";s:7:\"1:05 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5953,2609,'_akismet',NULL),(5954,2609,'_recaptcha','a:0:{}'),(5955,2609,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:8:\"flamingo\";s:6:\"reason\";s:41:\"wdeditor has marked this message as spam.\";}}'),(5956,2609,'_consent','a:0:{}'),(5957,2611,'_edit_lock','1629676552:9'),(5958,2611,'_edit_last','9'),(5959,2611,'_wp_page_template','default'),(5960,2611,'_yoast_wpseo_content_score','60'),(5961,2611,'_yoast_wpseo_primary_category','32'),(5964,469,'_yoast_wpseo_content_score','30'),(5965,469,'_yoast_wpseo_primary_category',''),(5968,2618,'_email','alejandra@websitedepot.com'),(5969,2618,'_name','Alejandra'),(5970,2618,'_props','a:0:{}'),(5971,2618,'_last_contacted','2019-08-19 21:37:36'),(5972,2619,'_subject','[your-subject]'),(5973,2619,'_from','Alejandra <alejandra@websitedepot.com>'),(5974,2619,'_from_name','Alejandra'),(5975,2619,'_from_email','alejandra@websitedepot.com'),(5976,2619,'_field_your-name','Alejandra'),(5977,2619,'_field_your-email','alejandra@websitedepot.com'),(5978,2619,'_field_phone','0000000000'),(5979,2619,'_field_service','9am-11am'),(5980,2619,'_field_your-message','TEST. Please respond if you received this email.'),(5981,2619,'_field_otherquestion',''),(5982,2619,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(5983,2619,'_meta','a:19:{s:13:\"serial_number\";i:34;s:9:\"remote_ip\";s:15:\"172.118.143.212\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 19, 2019\";s:4:\"time\";s:7:\"9:37 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(5984,2619,'_akismet',NULL),(5985,2619,'_recaptcha','a:0:{}'),(5986,2619,'_spam_log','a:0:{}'),(5987,2619,'_consent','a:0:{}'),(5989,2621,'_email','ezekiel@websitedepot.com'),(5990,2621,'_name','Zeke'),(5991,2621,'_props','a:0:{}'),(5992,2621,'_last_contacted','2019-08-21 16:46:36'),(5993,2622,'_subject','[your-subject]'),(5994,2622,'_from','Zeke <ezekiel@websitedepot.com>'),(5995,2622,'_from_name','Zeke'),(5996,2622,'_from_email','ezekiel@websitedepot.com'),(5997,2622,'_field_your-name','Zeke'),(5998,2622,'_field_your-email','ezekiel@websitedepot.com'),(5999,2622,'_field_phone','213-332-9255'),(6000,2622,'_field_service','9am-11am'),(6001,2622,'_field_your-message','This is a test of contact form and email recipients'),(6002,2622,'_field_otherquestion','None.   '),(6003,2622,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6004,2622,'_meta','a:19:{s:13:\"serial_number\";i:35;s:9:\"remote_ip\";s:15:\"172.118.143.212\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 21, 2019\";s:4:\"time\";s:7:\"4:46 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6005,2622,'_akismet',NULL),(6006,2622,'_recaptcha','a:0:{}'),(6007,2622,'_spam_log','a:0:{}'),(6008,2622,'_consent','a:0:{}'),(6009,2624,'success','1'),(6010,2624,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6011,2624,'to_header','support@websitesdepot.com'),(6012,2624,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6013,2624,'original_to','support@websitesdepot.com'),(6014,2624,'original_subject','Postman SMTP Test (www.drfields.com)'),(6015,2624,'original_message','Content-Type: text/plain; charset = \"UTF-8\"\r\nContent-Transfer-Encoding: 8bit\r\n\r\nHello!\r\n\r\nSent by Postman 2.0.3 - https://wordpress.org/plugins/post-smtp/\r\n\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\" media=\"all\">\r\n.wporg-notification .im {\r\n	color: #888;\r\n} /* undo a GMail-inserted style */\r\n</style>\r\n</head>\r\n<body class=\"wporg-notification\">\r\n	<div style=\"background: #e8f6fe; font-family: &amp; quot; Helvetica Neue&amp;quot; , Helvetica ,Arial,sans-serif; font-size: 14px; color: #666; text-align: center; margin: 0; padding: 0\">\r\n		<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#e8f6fe\"	style=\"background: #e8f6fe; width: 100%;\">\r\n			<tbody>\r\n				<tr>\r\n					<td>\r\n						<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"padding: 0px; width: 100%;\"\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n										<div style=\"max-width: 600px; height: 400px; margin: 0 auto; overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/assets/email/poofytoo.png\');background-repeat: no-repeat;\">\r\n											<div style=\"margin:50px 0 0 300px; width:300px; font-size:2em;\">Hello! - &#20320;&#22909; - Bonjour! - &#2344;&#2350;&#2360;&#2381;&#2340;&#2375; - ¡Hola! - Ol&#225; - &#1055;&#1088;&#1080;&#1074;&#1077;&#1090;! - &#20170;&#26085;&#12399;</div>\r\n											<div style=\"text-align:right;font-size: 1.4em; color:black;margin:150px 0 0 200px;\">Sent by Postman 2.0.3\r\n												<br/><span style=\"font-size: 0.8em\"><a style=\"color:#3f73b9\" href=\"https://wordpress.org/plugins/post-smtp/\">https://wordpress.org/plugins/post-smtp/</a></span>\r\n											</div>\r\n										</div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						<br><span style=\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=\"color:#94c0dc\" href=\"http://poofytoo.com\">poofytoo.com</a> - Used with permission</span>\r\n					</td>\r\n				</tr>\r\n			</tbody>\r\n		</table>\r\n</body>\r\n</html>'),(6016,2624,'original_headers','a:0:{}'),(6017,2624,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR20CA0026.outlook.office365.com Microsoft ESMTP MAIL Service ready at Wed, 21 Aug 2019 18:11:04 +0000\r\nEHLO drfields.com\r\n250-MN2PR20CA0026.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR20CA0026.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<support@websitesdepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: support@websitesdepot.com\r\nMessage-Id: <b6b7d2688fa9b88c216aa49a05d8a971@www.drfields.com>\r\nSubject: Postman SMTP Test (www.drfields.com)\r\nDate: Wed, 21 Aug 2019 18:11:04 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nContent-Type: text/plain; charset =3D \"UTF-8\"=0D=0AContent-Transfer-Enco=\r\nding: 8bit=0D=0A=0D=0AHello!=0D=0A=0D=0ASent by Postman 2.0.3 - https://=\r\nwordpress.org/plugins/post-smtp/=0D=0A=0D=0AContent-Type: text/html; cha=\r\nrset=3DUTF-8=0D=0AContent-Transfer-Encoding: quoted-printable=0D=0A=0D=\r\n=0A<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http:=\r\n//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">=0D=0A<html xmlns=3D=\r\n\"http://www.w3.org/1999/xhtml\">=0D=0A<head>=0D=0A<meta http-equiv=3D\"Con=\r\ntent-Type\" content=3D\"text/html; charset=3Dutf-8\" />=0D=0A<style type=3D=\r\n\"text/css\" media=3D\"all\">=0D=0A.wporg-notification .im {=0D=0A=09color:=\r\n #888;=0D=0A} /* undo a GMail-inserted style */=0D=0A</style>=0D=0A</hea=\r\nd>=0D=0A<body class=3D\"wporg-notification\">=0D=0A=09<div style=3D\"backgr=\r\nound: #e8f6fe; font-family: &amp; quot; Helvetica Neue&amp;quot; , Helve=\r\ntica ,Arial,sans-serif; font-size: 14px; color: #666; text-align: center=\r\n; margin: 0; padding: 0\">=0D=0A=09=09<table border=3D\"0\" cellspacing=3D\"=\r\n0\" cellpadding=3D\"0\" bgcolor=3D\"#e8f6fe\"=09style=3D\"background: #e8f6fe;=\r\n width: 100%;\">=0D=0A=09=09=09<tbody>=0D=0A=09=09=09=09<tr>=0D=0A=09=09=\r\n=09=09=09<td>=0D=0A=09=09=09=09=09=09<table border=3D\"0\" cellspacing=3D\"=\r\n0\" cellpadding=3D\"0\" align=3D\"center\" style=3D\"padding: 0px; width: 100%=\r\n;\"\">=0D=0A=09=09=09=09=09=09=09<tbody>=0D=0A=09=09=09=09=09=09=09=09<tr>=\r\n=0D=0A=09=09=09=09=09=09=09=09=09<td>=0D=0A=09=09=09=09=09=09=09=09=09=\r\n=09<div style=3D\"max-width: 600px; height: 400px; margin: 0 auto; overfl=\r\now: hidden;background-image:url(\'https://ps.w.org/postman-smtp/assets/em=\r\nail/poofytoo.png\');background-repeat: no-repeat;\">=0D=0A=09=09=09=09=09=\r\n=09=09=09=09=09=09<div style=3D\"margin:50px 0 0 300px; width:300px; font=\r\n-size:2em;\">Hello! - &#20320;&#22909; - Bonjour! - &#2344;&#2350;&#2360;=\r\n&#2381;&#2340;&#2375; - =C2=A1Hola! - Ol&#225; - &#1055;&#1088;&#1080;&#=\r\n1074;&#1077;&#1090;! - &#20170;&#26085;&#12399;</div>=0D=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09<div style=3D\"text-align:right;font-size: 1.4em; co=\r\nlor:black;margin:150px 0 0 200px;\">Sent by Postman 2.0.3=0D=0A=09=09=09=\r\n=09=09=09=09=09=09=09=09=09<br/><span style=3D\"font-size: 0.8em\"><a styl=\r\ne=3D\"color:#3f73b9\" href=3D\"https://wordpress.org/plugins/post-smtp/\">ht=\r\ntps://wordpress.org/plugins/post-smtp/</a></span>=0D=0A=09=09=09=09=09=\r\n=09=09=09=09=09=09</div>=0D=0A=09=09=09=09=09=09=09=09=09=09</div>=0D=0A=\r\n=09=09=09=09=09=09=09=09=09</td>=0D=0A=09=09=09=09=09=09=09=09</tr>=0D=\r\n=0A=09=09=09=09=09=09=09</tbody>=0D=0A=09=09=09=09=09=09</table>=0D=0A=\r\n=09=09=09=09=09=09<br><span style=3D\"font-size:0.9em;color:#94c0dc;\">Ima=\r\nge source: <a style=3D\"color:#94c0dc\" href=3D\"http://poofytoo.com\">poofy=\r\ntoo.com</a> - Used with permission</span>=0D=0A=09=09=09=09=09</td>=0D=\r\n=0A=09=09=09=09</tr>=0D=0A=09=09=09</tbody>=0D=0A=09=09</table>=0D=0A</b=\r\nody>=0D=0A</html>\r\n.\r\n250 2.0.0 OK <b6b7d2688fa9b88c216aa49a05d8a971@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6018,2625,'success','1'),(6019,2625,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6020,2625,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6021,2625,'reply_to_header','chad@websitesdepot.com'),(6022,2625,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6023,2625,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6024,2625,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6025,2625,'original_message','From: chad \nEmail: chad@websitesdepot.com\nPhone: 3237418490\n\nService:11am-1pm\n\nMessage Body:\ntest\n\nAny Other Comments:\ntest\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6026,2625,'original_headers','a:0:{}'),(6027,2625,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BN6PR03CA0056.outlook.office365.com Microsoft ESMTP MAIL Service ready at Wed, 21 Aug 2019 18:11:57 +0000\r\nEHLO drfields.com\r\n250-BN6PR03CA0056.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BN6PR03CA0056.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: chad@websitesdepot.com\r\nMessage-Id: <259d8cf409e6a454f25885ab5d9989c4@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Wed, 21 Aug 2019 18:11:58 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: chad =0AEmail: chad@websitesdepot.com=0APhone: 3237418490=0A=0ASer=\r\nvice:11am-1pm=0A=0AMessage Body:=0Atest=0A=0AAny Other Comments:=0Atest=\r\n=0A=0A-- =0AThis e-mail was sent from a contact form on Stem Cell PRP Pr=\r\nolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields=\r\n (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <259d8cf409e6a454f25885ab5d9989c4@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6028,2626,'_email','chad@websitesdepot.com'),(6029,2626,'_name','chad'),(6030,2626,'_props','a:0:{}'),(6031,2626,'_last_contacted','2019-09-04 20:11:23'),(6032,2627,'_subject','[your-subject]'),(6033,2627,'_from','chad <chad@websitesdepot.com>'),(6034,2627,'_from_name','chad'),(6035,2627,'_from_email','chad@websitesdepot.com'),(6036,2627,'_field_your-name','chad'),(6037,2627,'_field_your-email','chad@websitesdepot.com'),(6038,2627,'_field_phone','3237418490'),(6039,2627,'_field_service','11am-1pm'),(6040,2627,'_field_your-message','test'),(6041,2627,'_field_otherquestion','test'),(6042,2627,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6043,2627,'_meta','a:19:{s:13:\"serial_number\";i:36;s:9:\"remote_ip\";s:15:\"208.251.181.122\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 21, 2019\";s:4:\"time\";s:7:\"6:11 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6044,2627,'_akismet',NULL),(6045,2627,'_recaptcha','a:0:{}'),(6046,2627,'_spam_log','a:0:{}'),(6047,2627,'_consent','a:0:{}'),(6048,2628,'success','1'),(6049,2628,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6050,2628,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6051,2628,'reply_to_header','ezekiel@websitesdepot.com'),(6052,2628,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6053,2628,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6054,2628,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6055,2628,'original_message','From: Danny Star PR Group \nEmail: ezekiel@websitesdepot.com\nPhone: 3237725204\n\nService:3pm-5pm\n\nMessage Body:\nTEST\n\nAny Other Comments:\nTEST\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6056,2628,'original_headers','a:0:{}'),(6057,2628,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BN7PR05CA0023.outlook.office365.com Microsoft ESMTP MAIL Service ready at Wed, 21 Aug 2019 18:20:16 +0000\r\nEHLO drfields.com\r\n250-BN7PR05CA0023.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BN7PR05CA0023.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: ezekiel@websitesdepot.com\r\nMessage-Id: <f7ec83e3dc970c5865466bac7aed906c@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Wed, 21 Aug 2019 18:20:16 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Danny Star PR Group =0AEmail: ezekiel@websitesdepot.com=0APhone: 3=\r\n237725204=0A=0AService:3pm-5pm=0A=0AMessage Body:=0ATEST=0A=0AAny Other=\r\n Comments:=0ATEST=0A=0A-- =0AThis e-mail was sent from a contact form on=\r\n Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Trea=\r\ntment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <f7ec83e3dc970c5865466bac7aed906c@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6058,2629,'_email','ezekiel@websitesdepot.com'),(6059,2629,'_name','Danny Star PR Group'),(6060,2629,'_props','a:0:{}'),(6061,2629,'_last_contacted','2019-08-21 18:20:18'),(6062,2630,'_subject','[your-subject]'),(6063,2630,'_from','Danny Star PR Group <ezekiel@websitesdepot.com>'),(6064,2630,'_from_name','Danny Star PR Group'),(6065,2630,'_from_email','ezekiel@websitesdepot.com'),(6066,2630,'_field_your-name','Danny Star PR Group'),(6067,2630,'_field_your-email','ezekiel@websitesdepot.com'),(6068,2630,'_field_phone','3237725204'),(6069,2630,'_field_service','3pm-5pm'),(6070,2630,'_field_your-message','TEST'),(6071,2630,'_field_otherquestion','TEST'),(6072,2630,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6073,2630,'_meta','a:19:{s:13:\"serial_number\";i:37;s:9:\"remote_ip\";s:15:\"172.118.143.212\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 21, 2019\";s:4:\"time\";s:7:\"6:20 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6074,2630,'_akismet',NULL),(6075,2630,'_recaptcha','a:0:{}'),(6076,2630,'_spam_log','a:0:{}'),(6077,2630,'_consent','a:0:{}'),(6078,2631,'success','1'),(6079,2631,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6080,2631,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6081,2631,'reply_to_header','karen@primeconversions.top'),(6082,2631,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6083,2631,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6084,2631,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6085,2631,'original_message','From: Karen Siles \nEmail: karen@primeconversions.top\nPhone: 323-129-2755\n\nService:1pm-3pm\n\nMessage Body:\nGreetings, after seeing your website I wanted to let you know that we work with businesses like yours to publish a custom marketing & promotional video, featuring your business online.\r\n\r\nThe short video below shows you what this custom made video can do for your business:\r\n\r\nVisit the website below to learn more:\r\nhttps://www.primeconversions.top/success/?=drfields.com\r\n\r\nAlso, we will send you a free marketing report for your company – simply visit https://www.primeconversions.top/success/?=drfields.com\r\n \r\nThank you.\r\n\r\n-Karen\r\nAccount Manger\r\nvideoenhance1.com\r\n\r\n\r\n \r\n- This commercial message sent from PJLK Marketing LC\r\n4470 W Sunset Blvd #91359\r\nLos Angeles, CA 90027\r\n \r\nTo unsubscribe click here:\r\nhttps://primeconversions.top/out.php/?site=drfields.com\n\nAny Other Comments:\nGreetings, after seeing your website I wanted to let you know that we work with businesses like yours to publish a custom marketing & promotional video, featuring your business online.\r\n\r\nThe short video below shows you what this custom made video can do for your business:\r\n\r\nVisit the website below to learn more:\r\nhttps://www.primeconversions.top/success/?=drfields.com\r\n\r\nAlso, we will send you a free marketing report for your company – simply visit https://www.primeconversions.top/success/?=drfields.com\r\n \r\nThank you.\r\n\r\n-Karen\r\nAccount Manger\r\nvideoenhance1.com\r\n\r\n\r\n \r\n- This commercial message sent from PJLK Marketing LC\r\n4470 W Sunset Blvd #91359\r\nLos Angeles, CA 90027\r\n \r\nTo unsubscribe click here:\r\nhttps://primeconversions.top/out.php/?site=drfields.com\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6086,2631,'original_headers','a:0:{}'),(6087,2631,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BL0PR0102CA0010.outlook.office365.com Microsoft ESMTP MAIL Service ready at Wed, 21 Aug 2019 22:56:03 +0000\r\nEHLO drfields.com\r\n250-BL0PR0102CA0010.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BL0PR0102CA0010.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: karen@primeconversions.top\r\nMessage-Id: <d9db4b7744a393aed91353cbd796195f@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Wed, 21 Aug 2019 22:56:04 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Karen Siles =0AEmail: karen@primeconversions.top=0APhone: 323-129-=\r\n2755=0A=0AService:1pm-3pm=0A=0AMessage Body:=0AGreetings, after seeing y=\r\nour website I wanted to let you know that we work with businesses like y=\r\nours to publish a custom marketing & promotional video, featuring your b=\r\nusiness online.=0D=0A=0D=0AThe short video below shows you what this cus=\r\ntom made video can do for your business:=0D=0A=0D=0AVisit the website be=\r\nlow to learn more:=0D=0Ahttps://www.primeconversions.top/success/?=3Ddrf=\r\nields.com=0D=0A=0D=0AAlso, we will send you a free marketing report for=\r\n your company =E2=80=93 simply visit https://www.primeconversions.top/su=\r\nccess/?=3Ddrfields.com=0D=0A =0D=0AThank you.=0D=0A=0D=0A-Karen=0D=0AAcc=\r\nount Manger=0D=0Avideoenhance1.com=0D=0A=0D=0A=0D=0A =0D=0A- This commer=\r\ncial message sent from PJLK Marketing LC=0D=0A4470 W Sunset Blvd #91359=\r\n=0D=0ALos Angeles, CA 90027=0D=0A =0D=0ATo unsubscribe click here:=0D=0A=\r\nhttps://primeconversions.top/out.php/?site=3Ddrfields.com=0A=0AAny Other=\r\n Comments:=0AGreetings, after seeing your website I wanted to let you kn=\r\now that we work with businesses like yours to publish a custom marketing=\r\n & promotional video, featuring your business online.=0D=0A=0D=0AThe sho=\r\nrt video below shows you what this custom made video can do for your bus=\r\niness:=0D=0A=0D=0AVisit the website below to learn more:=0D=0Ahttps://ww=\r\nw.primeconversions.top/success/?=3Ddrfields.com=0D=0A=0D=0AAlso, we will=\r\n send you a free marketing report for your company =E2=80=93 simply visi=\r\nt https://www.primeconversions.top/success/?=3Ddrfields.com=0D=0A =0D=0A=\r\nThank you.=0D=0A=0D=0A-Karen=0D=0AAccount Manger=0D=0Avideoenhance1.com=\r\n=0D=0A=0D=0A=0D=0A =0D=0A- This commercial message sent from PJLK Market=\r\ning LC=0D=0A4470 W Sunset Blvd #91359=0D=0ALos Angeles, CA 90027=0D=0A=\r\n =0D=0ATo unsubscribe click here:=0D=0Ahttps://primeconversions.top/out.=\r\nphp/?site=3Ddrfields.com=0A=0A-- =0AThis e-mail was sent from a contact=\r\n form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medic=\r\nine Treatment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <d9db4b7744a393aed91353cbd796195f@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6088,2632,'_email','karen@primeconversions.top'),(6089,2632,'_name','Karen Siles'),(6090,2632,'_props','a:0:{}'),(6091,2632,'_last_contacted','2019-08-21 22:56:06'),(6092,2633,'_subject','[your-subject]'),(6093,2633,'_from','Karen Siles <karen@primeconversions.top>'),(6094,2633,'_from_name','Karen Siles'),(6095,2633,'_from_email','karen@primeconversions.top'),(6096,2633,'_field_your-name','Karen Siles'),(6097,2633,'_field_your-email','karen@primeconversions.top'),(6098,2633,'_field_phone','323-129-2755'),(6099,2633,'_field_service','1pm-3pm'),(6100,2633,'_field_your-message','Greetings, after seeing your website I wanted to let you know that we work with businesses like yours to publish a custom marketing & promotional video, featuring your business online.\r\n\r\nThe short video below shows you what this custom made video can do for your business:\r\n\r\nVisit the website below to learn more:\r\nhttps://www.primeconversions.top/success/?=drfields.com\r\n\r\nAlso, we will send you a free marketing report for your company – simply visit https://www.primeconversions.top/success/?=drfields.com\r\n \r\nThank you.\r\n\r\n-Karen\r\nAccount Manger\r\nvideoenhance1.com\r\n\r\n\r\n \r\n- This commercial message sent from PJLK Marketing LC\r\n4470 W Sunset Blvd #91359\r\nLos Angeles, CA 90027\r\n \r\nTo unsubscribe click here:\r\nhttps://primeconversions.top/out.php/?site=drfields.com\r\n\r\n\r\n\r\n\r\n\r\n\r\n'),(6101,2633,'_field_otherquestion','Greetings, after seeing your website I wanted to let you know that we work with businesses like yours to publish a custom marketing & promotional video, featuring your business online.\r\n\r\nThe short video below shows you what this custom made video can do for your business:\r\n\r\nVisit the website below to learn more:\r\nhttps://www.primeconversions.top/success/?=drfields.com\r\n\r\nAlso, we will send you a free marketing report for your company – simply visit https://www.primeconversions.top/success/?=drfields.com\r\n \r\nThank you.\r\n\r\n-Karen\r\nAccount Manger\r\nvideoenhance1.com\r\n\r\n\r\n \r\n- This commercial message sent from PJLK Marketing LC\r\n4470 W Sunset Blvd #91359\r\nLos Angeles, CA 90027\r\n \r\nTo unsubscribe click here:\r\nhttps://primeconversions.top/out.php/?site=drfields.com\r\n\r\n\r\n\r\n\r\n\r\n\r\n'),(6102,2633,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6103,2633,'_meta','a:19:{s:13:\"serial_number\";i:38;s:9:\"remote_ip\";s:13:\"45.120.51.140\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 21, 2019\";s:4:\"time\";s:8:\"10:56 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6104,2633,'_akismet',NULL),(6105,2633,'_recaptcha','a:0:{}'),(6106,2633,'_spam_log','a:0:{}'),(6107,2633,'_consent','a:0:{}'),(6108,2634,'success','1'),(6109,2634,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6110,2634,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6111,2634,'reply_to_header','george1@georgemartinjr.com'),(6112,2634,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6113,2634,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6114,2634,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6115,2634,'original_message','From: George Martin \nEmail: george1@georgemartinjr.com\nPhone: (61) 4861-9780\n\nService:9am-11am\n\nMessage Body:\nWould you be interested in submitting a guest post on georgemartjr.com or possibly allowing us to submit a post to drfields.com ? Maybe you know by now that links are essential\r\nto building a brand online? If you are interested in submitting a post and obtaining a link to drfields.com , let me know and we will get it published in a speedy manner to our blog.\r\n\r\nHope to hear from you soon\r\nGeorge\n\nAny Other Comments:\nWould you be interested in submitting a guest post on georgemartjr.com or possibly allowing us to submit a post to drfields.com ? Maybe you know by now that links are essential\r\nto building a brand online? If you are interested in submitting a post and obtaining a link to drfields.com , let me know and we will get it published in a speedy manner to our blog.\r\n\r\nHope to hear from you soon\r\nGeorge\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6116,2634,'original_headers','a:0:{}'),(6117,2634,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR07CA0011.outlook.office365.com Microsoft ESMTP MAIL Service ready at Fri, 23 Aug 2019 04:06:40 +0000\r\nEHLO drfields.com\r\n250-MN2PR07CA0011.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR07CA0011.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: george1@georgemartinjr.com\r\nMessage-Id: <068d3994bdc52c3fef945e294e4abfe8@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Fri, 23 Aug 2019 04:06:40 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: George Martin =0AEmail: george1@georgemartinjr.com=0APhone: (61) 4=\r\n861-9780=0A=0AService:9am-11am=0A=0AMessage Body:=0AWould you be interes=\r\nted in submitting a guest post on georgemartjr.com or possibly allowing=\r\n us to submit a post to drfields.com ? Maybe you know by now that links=\r\n are essential=0D=0Ato building a brand online? If you are interested in=\r\n submitting a post and obtaining a link to drfields.com , let me know an=\r\nd we will get it published in a speedy manner to our blog.=0D=0A=0D=0AHo=\r\npe to hear from you soon=0D=0AGeorge=0A=0AAny Other Comments:=0AWould yo=\r\nu be interested in submitting a guest post on georgemartjr.com or possib=\r\nly allowing us to submit a post to drfields.com ? Maybe you know by now=\r\n that links are essential=0D=0Ato building a brand online? If you are in=\r\nterested in submitting a post and obtaining a link to drfields.com , let=\r\n me know and we will get it published in a speedy manner to our blog.=0D=\r\n=0A=0D=0AHope to hear from you soon=0D=0AGeorge=0A=0A-- =0AThis e-mail w=\r\nas sent from a contact form on Stem Cell PRP Prolotherapy Surgery Altern=\r\native Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.co=\r\nm)\r\n.\r\n250 2.0.0 OK <068d3994bdc52c3fef945e294e4abfe8@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6118,2635,'_email','george1@georgemartinjr.com'),(6119,2635,'_name','George Martin'),(6120,2635,'_props','a:0:{}'),(6121,2635,'_last_contacted','2019-08-23 04:06:43'),(6122,2636,'_subject','[your-subject]'),(6123,2636,'_from','George Martin <george1@georgemartinjr.com>'),(6124,2636,'_from_name','George Martin'),(6125,2636,'_from_email','george1@georgemartinjr.com'),(6126,2636,'_field_your-name','George Martin'),(6127,2636,'_field_your-email','george1@georgemartinjr.com'),(6128,2636,'_field_phone','(61) 4861-9780'),(6129,2636,'_field_service','9am-11am'),(6130,2636,'_field_your-message','Would you be interested in submitting a guest post on georgemartjr.com or possibly allowing us to submit a post to drfields.com ? Maybe you know by now that links are essential\r\nto building a brand online? If you are interested in submitting a post and obtaining a link to drfields.com , let me know and we will get it published in a speedy manner to our blog.\r\n\r\nHope to hear from you soon\r\nGeorge'),(6131,2636,'_field_otherquestion','Would you be interested in submitting a guest post on georgemartjr.com or possibly allowing us to submit a post to drfields.com ? Maybe you know by now that links are essential\r\nto building a brand online? If you are interested in submitting a post and obtaining a link to drfields.com , let me know and we will get it published in a speedy manner to our blog.\r\n\r\nHope to hear from you soon\r\nGeorge'),(6132,2636,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6133,2636,'_meta','a:19:{s:13:\"serial_number\";i:39;s:9:\"remote_ip\";s:12:\"2.38.135.103\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 23, 2019\";s:4:\"time\";s:7:\"4:06 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6134,2636,'_akismet',NULL),(6135,2636,'_recaptcha','a:0:{}'),(6136,2636,'_spam_log','a:0:{}'),(6137,2636,'_consent','a:0:{}'),(6138,2637,'success','1'),(6139,2637,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6140,2637,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6141,2637,'reply_to_header','pearline.barreiro@yahoo.com'),(6142,2637,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6143,2637,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6144,2637,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6145,2637,'original_message','From: Pearline Barreiro \nEmail: pearline.barreiro@yahoo.com\nPhone: 415 39 540\n\nService:9am-11am\n\nMessage Body:\nWe will increase your Website TF in 30 days (Majestic SEO – Trust Flow) or we will refund you every cent. 100% Money back guarantee\r\n\r\nWe offer Guaranteed TF 20 and TF 30\r\n\r\nMajestic Trust Flow is the most important SEO metric since the dissapearance of Google Page Rank.\r\nEnsure confidence and trust in your website having a high Trust Flow score\r\n\r\nMore details about our service can be found here:\r\nhttps://monkeydigital.co/product/trust-flow-seo-package/\r\n\r\nBest regards\r\nMike\r\nmonkeydigital.co@gmail.com\n\nAny Other Comments:\nWe will increase your Website TF in 30 days (Majestic SEO – Trust Flow) or we will refund you every cent. 100% Money back guarantee\r\n\r\nWe offer Guaranteed TF 20 and TF 30\r\n\r\nMajestic Trust Flow is the most important SEO metric since the dissapearance of Google Page Rank.\r\nEnsure confidence and trust in your website having a high Trust Flow score\r\n\r\nMore details about our service can be found here:\r\nhttps://monkeydigital.co/product/trust-flow-seo-package/\r\n\r\nBest regards\r\nMike\r\nmonkeydigital.co@gmail.com\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6146,2637,'original_headers','a:0:{}'),(6147,2637,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR01CA0033.outlook.office365.com Microsoft ESMTP MAIL Service ready at Fri, 23 Aug 2019 12:13:32 +0000\r\nEHLO drfields.com\r\n250-MN2PR01CA0033.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR01CA0033.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: pearline.barreiro@yahoo.com\r\nMessage-Id: <b2c45993d1513413bc0cc3a69352237f@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Fri, 23 Aug 2019 12:13:33 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Pearline Barreiro =0AEmail: pearline.barreiro@yahoo.com=0APhone: 4=\r\n15 39 540=0A=0AService:9am-11am=0A=0AMessage Body:=0AWe will increase yo=\r\nur Website TF in 30 days (Majestic SEO =E2=80=93 Trust Flow) or we will=\r\n refund you every cent. 100% Money back guarantee=0D=0A=0D=0AWe offer Gu=\r\naranteed TF 20 and TF 30=0D=0A=0D=0AMajestic Trust Flow is the most impo=\r\nrtant SEO metric since the dissapearance of Google Page Rank.=0D=0AEnsur=\r\ne confidence and trust in your website having a high Trust Flow score=0D=\r\n=0A=0D=0AMore details about our service can be found here:=0D=0Ahttps://=\r\nmonkeydigital.co/product/trust-flow-seo-package/=0D=0A=0D=0ABest regards=\r\n=0D=0AMike=0D=0Amonkeydigital.co@gmail.com=0A=0AAny Other Comments:=0AWe=\r\n will increase your Website TF in 30 days (Majestic SEO =E2=80=93 Trust=\r\n Flow) or we will refund you every cent. 100% Money back guarantee=0D=0A=\r\n=0D=0AWe offer Guaranteed TF 20 and TF 30=0D=0A=0D=0AMajestic Trust Flow=\r\n is the most important SEO metric since the dissapearance of Google Page=\r\n Rank.=0D=0AEnsure confidence and trust in your website having a high Tr=\r\nust Flow score=0D=0A=0D=0AMore details about our service can be found he=\r\nre:=0D=0Ahttps://monkeydigital.co/product/trust-flow-seo-package/=0D=0A=\r\n=0D=0ABest regards=0D=0AMike=0D=0Amonkeydigital.co@gmail.com=0A=0A-- =0A=\r\nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy S=\r\nurgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://ww=\r\nw.drfields.com)\r\n.\r\n250 2.0.0 OK <b2c45993d1513413bc0cc3a69352237f@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6148,2638,'_email','pearline.barreiro@yahoo.com'),(6149,2638,'_name','Pearline Barreiro'),(6150,2638,'_props','a:0:{}'),(6151,2638,'_last_contacted','2019-08-23 12:13:35'),(6152,2639,'_subject','[your-subject]'),(6153,2639,'_from','Pearline Barreiro <pearline.barreiro@yahoo.com>'),(6154,2639,'_from_name','Pearline Barreiro'),(6155,2639,'_from_email','pearline.barreiro@yahoo.com'),(6156,2639,'_field_your-name','Pearline Barreiro'),(6157,2639,'_field_your-email','pearline.barreiro@yahoo.com'),(6158,2639,'_field_phone','415 39 540'),(6159,2639,'_field_service','9am-11am'),(6160,2639,'_field_your-message','We will increase your Website TF in 30 days (Majestic SEO – Trust Flow) or we will refund you every cent. 100% Money back guarantee\r\n\r\nWe offer Guaranteed TF 20 and TF 30\r\n\r\nMajestic Trust Flow is the most important SEO metric since the dissapearance of Google Page Rank.\r\nEnsure confidence and trust in your website having a high Trust Flow score\r\n\r\nMore details about our service can be found here:\r\nhttps://monkeydigital.co/product/trust-flow-seo-package/\r\n\r\nBest regards\r\nMike\r\nmonkeydigital.co@gmail.com\r\n'),(6161,2639,'_field_otherquestion','We will increase your Website TF in 30 days (Majestic SEO – Trust Flow) or we will refund you every cent. 100% Money back guarantee\r\n\r\nWe offer Guaranteed TF 20 and TF 30\r\n\r\nMajestic Trust Flow is the most important SEO metric since the dissapearance of Google Page Rank.\r\nEnsure confidence and trust in your website having a high Trust Flow score\r\n\r\nMore details about our service can be found here:\r\nhttps://monkeydigital.co/product/trust-flow-seo-package/\r\n\r\nBest regards\r\nMike\r\nmonkeydigital.co@gmail.com\r\n'),(6162,2639,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6163,2639,'_meta','a:19:{s:13:\"serial_number\";i:40;s:9:\"remote_ip\";s:14:\"172.111.129.38\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 23, 2019\";s:4:\"time\";s:8:\"12:13 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6164,2639,'_akismet',NULL),(6165,2639,'_recaptcha','a:0:{}'),(6166,2639,'_spam_log','a:0:{}'),(6167,2639,'_consent','a:0:{}'),(6168,2640,'success','1'),(6169,2640,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6170,2640,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6171,2640,'reply_to_header','sales@besttrafficpros.com'),(6172,2640,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6173,2640,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6174,2640,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6175,2640,'original_message','From: Jim Anthony \nEmail: sales@besttrafficpros.com\nPhone: 480-331-6775\n\nService:3pm-5pm\n\nMessage Body:\nHello, my name is Jim and I was just looking your website drfields.com\r\nover and thought I would message you on your contact form and offer\r\nsome help. I really like your site but I noticed you weren’t getting a\r\nlot of traffic and your Alexa ranking isn’t as strong as it could be.\r\n\r\n>>>https://besttrafficpros.com\r\n\r\nFortunately, I may have an answer for you. I can get you 1,000’s of\r\nvisitors looking at drfields.com ready to buy your product, service or\r\nsign up for an offer and fast. Our advertising network of over 9000\r\nwebsites provides a low cost and effective online marketing solutions\r\nthat actually works. I can help your business get more online quality\r\ntraffic by advertising your business on websites that are targeted to\r\nyour specific market. The Internet is vast but you don’t have to spend\r\nhuge amounts of cash to jump start your business. I can get you 10,000\r\nhighly targeted visitors directly to your website for as little as\r\n$39.00 for a 30 day trial run.\r\n\r\n>>>https://besttrafficpros.com\r\n\r\nIt has taken us 12 years to perfect our system and in addition to\r\nbeing exciting, it works!! We also have a special offer of 200,000\r\nTargeted visitors  spread over 60 days for a special one time charge\r\nof $299.00.\r\n\r\nIf you would like to talk personally and have specific questions, call\r\nme @ 480-331-6775 from 9am to 5pm MST. Also check out the short video\r\nhere and see how everything works.\r\n\r\nBest Regards,\r\nJim\r\nsupport@besttrafficpros.com\r\nBestTrafficPros.com\r\nhttps://besttrafficpros.com\r\n\r\nOur apologies if this reached you in error. If you\'d like to be placed on our removal list please visit here:\r\nhttps://zfrmz.com/vTN2gJq4qHlWtaZ1YFQO\n\nAny Other Comments:\nHello, my name is Jim and I was just looking your website drfields.com\r\nover and thought I would message you on your contact form and offer\r\nsome help. I really like your site but I noticed you weren’t getting a\r\nlot of traffic and your Alexa ranking isn’t as strong as it could be.\r\n\r\n>>>https://besttrafficpros.com\r\n\r\nFortunately, I may have an answer for you. I can get you 1,000’s of\r\nvisitors looking at drfields.com ready to buy your product, service or\r\nsign up for an offer and fast. Our advertising network of over 9000\r\nwebsites provides a low cost and effective online marketing solutions\r\nthat actually works. I can help your business get more online quality\r\ntraffic by advertising your business on websites that are targeted to\r\nyour specific market. The Internet is vast but you don’t have to spend\r\nhuge amounts of cash to jump start your business. I can get you 10,000\r\nhighly targeted visitors directly to your website for as little as\r\n$39.00 for a 30 day trial run.\r\n\r\n>>>https://besttrafficpros.com\r\n\r\nIt has taken us 12 years to perfect our system and in addition to\r\nbeing exciting, it works!! We also have a special offer of 200,000\r\nTargeted visitors  spread over 60 days for a special one time charge\r\nof $299.00.\r\n\r\nIf you would like to talk personally and have specific questions, call\r\nme @ 480-331-6775 from 9am to 5pm MST. Also check out the short video\r\nhere and see how everything works.\r\n\r\nBest Regards,\r\nJim\r\nsupport@besttrafficpros.com\r\nBestTrafficPros.com\r\nhttps://besttrafficpros.com\r\n\r\nOur apologies if this reached you in error. If you\'d like to be placed on our removal list please visit here:\r\nhttps://zfrmz.com/vTN2gJq4qHlWtaZ1YFQO\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6176,2640,'original_headers','a:0:{}'),(6177,2640,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR12CA0001.outlook.office365.com Microsoft ESMTP MAIL Service ready at Sun, 25 Aug 2019 10:30:08 +0000\r\nEHLO drfields.com\r\n250-MN2PR12CA0001.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR12CA0001.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: sales@besttrafficpros.com\r\nMessage-Id: <4b83fe8143707e6bebab56d4da3cecd1@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Sun, 25 Aug 2019 10:30:09 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Jim Anthony =0AEmail: sales@besttrafficpros.com=0APhone: 480-331-6=\r\n775=0A=0AService:3pm-5pm=0A=0AMessage Body:=0AHello, my name is Jim and=\r\n I was just looking your website drfields.com=0D=0Aover and thought I wo=\r\nuld message you on your contact form and offer=0D=0Asome help. I really=\r\n like your site but I noticed you weren=E2=80=99t getting a=0D=0Alot of=\r\n traffic and your Alexa ranking isn=E2=80=99t as strong as it could be.=\r\n=0D=0A=0D=0A>>>https://besttrafficpros.com=0D=0A=0D=0AFortunately, I may=\r\n have an answer for you. I can get you 1,000=E2=80=99s of=0D=0Avisitors=\r\n looking at drfields.com ready to buy your product, service or=0D=0Asign=\r\n up for an offer and fast. Our advertising network of over 9000=0D=0Aweb=\r\nsites provides a low cost and effective online marketing solutions=0D=0A=\r\nthat actually works. I can help your business get more online quality=0D=\r\n=0Atraffic by advertising your business on websites that are targeted to=\r\n=0D=0Ayour specific market. The Internet is vast but you don=E2=80=99t h=\r\nave to spend=0D=0Ahuge amounts of cash to jump start your business. I ca=\r\nn get you 10,000=0D=0Ahighly targeted visitors directly to your website=\r\n for as little as=0D=0A$39.00 for a 30 day trial run.=0D=0A=0D=0A>>>http=\r\ns://besttrafficpros.com=0D=0A=0D=0AIt has taken us 12 years to perfect o=\r\nur system and in addition to=0D=0Abeing exciting, it works!! We also hav=\r\ne a special offer of 200,000=0D=0ATargeted visitors  spread over 60 days=\r\n for a special one time charge=0D=0Aof $299.00.=0D=0A=0D=0AIf you would=\r\n like to talk personally and have specific questions, call=0D=0Ame @ 480=\r\n-331-6775 from 9am to 5pm MST. Also check out the short video=0D=0Ahere=\r\n and see how everything works.=0D=0A=0D=0ABest Regards,=0D=0AJim=0D=0Asu=\r\npport@besttrafficpros.com=0D=0ABestTrafficPros.com=0D=0Ahttps://besttraf=\r\nficpros.com=0D=0A=0D=0AOur apologies if this reached you in error. If yo=\r\nu\'d like to be placed on our removal list please visit here:=0D=0Ahttps:=\r\n//zfrmz.com/vTN2gJq4qHlWtaZ1YFQO=0A=0AAny Other Comments:=0AHello, my na=\r\nme is Jim and I was just looking your website drfields.com=0D=0Aover and=\r\n thought I would message you on your contact form and offer=0D=0Asome he=\r\nlp. I really like your site but I noticed you weren=E2=80=99t getting a=\r\n=0D=0Alot of traffic and your Alexa ranking isn=E2=80=99t as strong as i=\r\nt could be.=0D=0A=0D=0A>>>https://besttrafficpros.com=0D=0A=0D=0AFortuna=\r\ntely, I may have an answer for you. I can get you 1,000=E2=80=99s of=0D=\r\n=0Avisitors looking at drfields.com ready to buy your product, service o=\r\nr=0D=0Asign up for an offer and fast. Our advertising network of over 90=\r\n00=0D=0Awebsites provides a low cost and effective online marketing solu=\r\ntions=0D=0Athat actually works. I can help your business get more online=\r\n quality=0D=0Atraffic by advertising your business on websites that are=\r\n targeted to=0D=0Ayour specific market. The Internet is vast but you don=\r\n=E2=80=99t have to spend=0D=0Ahuge amounts of cash to jump start your bu=\r\nsiness. I can get you 10,000=0D=0Ahighly targeted visitors directly to y=\r\nour website for as little as=0D=0A$39.00 for a 30 day trial run.=0D=0A=\r\n=0D=0A>>>https://besttrafficpros.com=0D=0A=0D=0AIt has taken us 12 years=\r\n to perfect our system and in addition to=0D=0Abeing exciting, it works!=\r\n! We also have a special offer of 200,000=0D=0ATargeted visitors  spread=\r\n over 60 days for a special one time charge=0D=0Aof $299.00.=0D=0A=0D=0A=\r\nIf you would like to talk personally and have specific questions, call=\r\n=0D=0Ame @ 480-331-6775 from 9am to 5pm MST. Also check out the short vi=\r\ndeo=0D=0Ahere and see how everything works.=0D=0A=0D=0ABest Regards,=0D=\r\n=0AJim=0D=0Asupport@besttrafficpros.com=0D=0ABestTrafficPros.com=0D=0Aht=\r\ntps://besttrafficpros.com=0D=0A=0D=0AOur apologies if this reached you i=\r\nn error. If you\'d like to be placed on our removal list please visit her=\r\ne:=0D=0Ahttps://zfrmz.com/vTN2gJq4qHlWtaZ1YFQO=0A=0A-- =0AThis e-mail wa=\r\ns sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alterna=\r\ntive Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com=\r\n)\r\n.\r\n250 2.0.0 OK <4b83fe8143707e6bebab56d4da3cecd1@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6178,2641,'_email','sales@besttrafficpros.com'),(6179,2641,'_name','Jim Anthony'),(6180,2641,'_props','a:0:{}'),(6181,2641,'_last_contacted','2019-08-25 10:30:12'),(6182,2642,'_subject','[your-subject]'),(6183,2642,'_from','Jim Anthony <sales@besttrafficpros.com>'),(6184,2642,'_from_name','Jim Anthony'),(6185,2642,'_from_email','sales@besttrafficpros.com'),(6186,2642,'_field_your-name','Jim Anthony'),(6187,2642,'_field_your-email','sales@besttrafficpros.com'),(6188,2642,'_field_phone','480-331-6775'),(6189,2642,'_field_service','3pm-5pm'),(6190,2642,'_field_your-message','Hello, my name is Jim and I was just looking your website drfields.com\r\nover and thought I would message you on your contact form and offer\r\nsome help. I really like your site but I noticed you weren’t getting a\r\nlot of traffic and your Alexa ranking isn’t as strong as it could be.\r\n\r\n>>>https://besttrafficpros.com\r\n\r\nFortunately, I may have an answer for you. I can get you 1,000’s of\r\nvisitors looking at drfields.com ready to buy your product, service or\r\nsign up for an offer and fast. Our advertising network of over 9000\r\nwebsites provides a low cost and effective online marketing solutions\r\nthat actually works. I can help your business get more online quality\r\ntraffic by advertising your business on websites that are targeted to\r\nyour specific market. The Internet is vast but you don’t have to spend\r\nhuge amounts of cash to jump start your business. I can get you 10,000\r\nhighly targeted visitors directly to your website for as little as\r\n$39.00 for a 30 day trial run.\r\n\r\n>>>https://besttrafficpros.com\r\n\r\nIt has taken us 12 years to perfect our system and in addition to\r\nbeing exciting, it works!! We also have a special offer of 200,000\r\nTargeted visitors  spread over 60 days for a special one time charge\r\nof $299.00.\r\n\r\nIf you would like to talk personally and have specific questions, call\r\nme @ 480-331-6775 from 9am to 5pm MST. Also check out the short video\r\nhere and see how everything works.\r\n\r\nBest Regards,\r\nJim\r\nsupport@besttrafficpros.com\r\nBestTrafficPros.com\r\nhttps://besttrafficpros.com\r\n\r\nOur apologies if this reached you in error. If you\'d like to be placed on our removal list please visit here:\r\nhttps://zfrmz.com/vTN2gJq4qHlWtaZ1YFQO'),(6191,2642,'_field_otherquestion','Hello, my name is Jim and I was just looking your website drfields.com\r\nover and thought I would message you on your contact form and offer\r\nsome help. I really like your site but I noticed you weren’t getting a\r\nlot of traffic and your Alexa ranking isn’t as strong as it could be.\r\n\r\n>>>https://besttrafficpros.com\r\n\r\nFortunately, I may have an answer for you. I can get you 1,000’s of\r\nvisitors looking at drfields.com ready to buy your product, service or\r\nsign up for an offer and fast. Our advertising network of over 9000\r\nwebsites provides a low cost and effective online marketing solutions\r\nthat actually works. I can help your business get more online quality\r\ntraffic by advertising your business on websites that are targeted to\r\nyour specific market. The Internet is vast but you don’t have to spend\r\nhuge amounts of cash to jump start your business. I can get you 10,000\r\nhighly targeted visitors directly to your website for as little as\r\n$39.00 for a 30 day trial run.\r\n\r\n>>>https://besttrafficpros.com\r\n\r\nIt has taken us 12 years to perfect our system and in addition to\r\nbeing exciting, it works!! We also have a special offer of 200,000\r\nTargeted visitors  spread over 60 days for a special one time charge\r\nof $299.00.\r\n\r\nIf you would like to talk personally and have specific questions, call\r\nme @ 480-331-6775 from 9am to 5pm MST. Also check out the short video\r\nhere and see how everything works.\r\n\r\nBest Regards,\r\nJim\r\nsupport@besttrafficpros.com\r\nBestTrafficPros.com\r\nhttps://besttrafficpros.com\r\n\r\nOur apologies if this reached you in error. If you\'d like to be placed on our removal list please visit here:\r\nhttps://zfrmz.com/vTN2gJq4qHlWtaZ1YFQO'),(6192,2642,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6193,2642,'_meta','a:19:{s:13:\"serial_number\";i:41;s:9:\"remote_ip\";s:12:\"62.24.109.83\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 25, 2019\";s:4:\"time\";s:8:\"10:30 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6194,2642,'_akismet',NULL),(6195,2642,'_recaptcha','a:0:{}'),(6196,2642,'_spam_log','a:0:{}'),(6197,2642,'_consent','a:0:{}'),(6198,2643,'success','1'),(6199,2643,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6200,2643,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6201,2643,'reply_to_header','ecommerce.1a@outlook.com'),(6202,2643,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6203,2643,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6204,2643,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6205,2643,'original_message','From: Diane Harrel \nEmail: ecommerce.1a@outlook.com\nPhone: 555-555-5555\n\nService:9am-11am\n\nMessage Body:\nHi,\r\n\r\nThis is Diane from DSI are you familiar with us?\r\n \r\nWe are the supplier of ready made dropshipping business websites\r\nand digital services sites. \r\n\r\nThe average markup is 300% on each product and service.\r\nYou keep the profit on every sale.\r\nWe design ready made business sites for $295 - $395 that is all we do.\r\n\r\nFree hosting permanantly, domain and social media marketing plan are included. \r\n\r\nTo see our latest available websites please visit us at https://dropshippingincome.com\r\n\r\nWe look forward to seing you there. \r\n\r\n\r\nBest,\r\nDiane\r\nDSI\n\nAny Other Comments:\nHi,\r\n\r\nThis is Diane from DSI are you familiar with us?\r\n \r\nWe are the supplier of ready made dropshipping business websites\r\nand digital services sites. \r\n\r\nThe average markup is 300% on each product and service.\r\nYou keep the profit on every sale.\r\nWe design ready made business sites for $295 - $395 that is all we do.\r\n\r\nFree hosting permanantly, domain and social media marketing plan are included. \r\n\r\nTo see our latest available websites please visit us at https://dropshippingincome.com\r\n\r\nWe look forward to seing you there. \r\n\r\n\r\nBest,\r\nDiane\r\nDSI\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6206,2643,'original_headers','a:0:{}'),(6207,2643,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BN6PR0101CA0027.outlook.office365.com Microsoft ESMTP MAIL Service ready at Mon, 26 Aug 2019 15:01:19 +0000\r\nEHLO drfields.com\r\n250-BN6PR0101CA0027.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BN6PR0101CA0027.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: ecommerce.1a@outlook.com\r\nMessage-Id: <258de30ff62137b58afa0488c534c458@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Mon, 26 Aug 2019 15:01:20 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Diane Harrel =0AEmail: ecommerce.1a@outlook.com=0APhone: 555-555-5=\r\n555=0A=0AService:9am-11am=0A=0AMessage Body:=0AHi,=0D=0A=0D=0AThis is Di=\r\nane from DSI are you familiar with us?=0D=0A =0D=0AWe are the supplier o=\r\nf ready made dropshipping business websites=0D=0Aand digital services si=\r\ntes. =0D=0A=0D=0AThe average markup is 300% on each product and service.=\r\n=0D=0AYou keep the profit on every sale.=0D=0AWe design ready made busin=\r\ness sites for $295 - $395 that is all we do.=0D=0A=0D=0AFree hosting per=\r\nmanantly, domain and social media marketing plan are included. =0D=0A=0D=\r\n=0ATo see our latest available websites please visit us at https://drops=\r\nhippingincome.com=0D=0A=0D=0AWe look forward to seing you there. =0D=0A=\r\n=0D=0A=0D=0ABest,=0D=0ADiane=0D=0ADSI=0A=0AAny Other Comments:=0AHi,=0D=\r\n=0A=0D=0AThis is Diane from DSI are you familiar with us?=0D=0A =0D=0AWe=\r\n are the supplier of ready made dropshipping business websites=0D=0Aand=\r\n digital services sites. =0D=0A=0D=0AThe average markup is 300% on each=\r\n product and service.=0D=0AYou keep the profit on every sale.=0D=0AWe de=\r\nsign ready made business sites for $295 - $395 that is all we do.=0D=0A=\r\n=0D=0AFree hosting permanantly, domain and social media marketing plan a=\r\nre included. =0D=0A=0D=0ATo see our latest available websites please vis=\r\nit us at https://dropshippingincome.com=0D=0A=0D=0AWe look forward to se=\r\ning you there. =0D=0A=0D=0A=0D=0ABest,=0D=0ADiane=0D=0ADSI=0A=0A-- =0ATh=\r\nis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Sur=\r\ngery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.=\r\ndrfields.com)\r\n.\r\n250 2.0.0 OK <258de30ff62137b58afa0488c534c458@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6208,2644,'_email','ecommerce.1a@outlook.com'),(6209,2644,'_name','Diane Harrel'),(6210,2644,'_props','a:0:{}'),(6211,2644,'_last_contacted','2019-08-26 15:01:22'),(6212,2645,'_subject','[your-subject]'),(6213,2645,'_from','Diane Harrel <ecommerce.1a@outlook.com>'),(6214,2645,'_from_name','Diane Harrel'),(6215,2645,'_from_email','ecommerce.1a@outlook.com'),(6216,2645,'_field_your-name','Diane Harrel'),(6217,2645,'_field_your-email','ecommerce.1a@outlook.com'),(6218,2645,'_field_phone','555-555-5555'),(6219,2645,'_field_service','9am-11am'),(6220,2645,'_field_your-message','Hi,\r\n\r\nThis is Diane from DSI are you familiar with us?\r\n \r\nWe are the supplier of ready made dropshipping business websites\r\nand digital services sites. \r\n\r\nThe average markup is 300% on each product and service.\r\nYou keep the profit on every sale.\r\nWe design ready made business sites for $295 - $395 that is all we do.\r\n\r\nFree hosting permanantly, domain and social media marketing plan are included. \r\n\r\nTo see our latest available websites please visit us at https://dropshippingincome.com\r\n\r\nWe look forward to seing you there. \r\n\r\n\r\nBest,\r\nDiane\r\nDSI\r\n\r\n\r\n'),(6221,2645,'_field_otherquestion','Hi,\r\n\r\nThis is Diane from DSI are you familiar with us?\r\n \r\nWe are the supplier of ready made dropshipping business websites\r\nand digital services sites. \r\n\r\nThe average markup is 300% on each product and service.\r\nYou keep the profit on every sale.\r\nWe design ready made business sites for $295 - $395 that is all we do.\r\n\r\nFree hosting permanantly, domain and social media marketing plan are included. \r\n\r\nTo see our latest available websites please visit us at https://dropshippingincome.com\r\n\r\nWe look forward to seing you there. \r\n\r\n\r\nBest,\r\nDiane\r\nDSI\r\n\r\n\r\n'),(6222,2645,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6223,2645,'_meta','a:19:{s:13:\"serial_number\";i:42;s:9:\"remote_ip\";s:14:\"104.223.92.138\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 26, 2019\";s:4:\"time\";s:7:\"3:01 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6224,2645,'_akismet',NULL),(6225,2645,'_recaptcha','a:0:{}'),(6226,2645,'_spam_log','a:0:{}'),(6227,2645,'_consent','a:0:{}'),(6228,2646,'success','1'),(6229,2646,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6230,2646,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6231,2646,'reply_to_header','dennisecatto@yahoo.com'),(6232,2646,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6233,2646,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6234,2646,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6235,2646,'original_message','From: dennise e catto \nEmail: dennisecatto@yahoo.com\nPhone: 8182510473\n\nService:9am-11am\n\nMessage Body:\nI have 3 buldged discs in my neck. with pain in the a.m. and some intermittent numbness in the arm. \r\n\r\nI have spoken to Dr Fields before regarding my issues and wanted to get his opinion.  Also my office number is 805-921-3213\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6236,2646,'original_headers','a:0:{}'),(6237,2646,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BN6PR14CA0048.outlook.office365.com Microsoft ESMTP MAIL Service ready at Mon, 26 Aug 2019 16:29:36 +0000\r\nEHLO drfields.com\r\n250-BN6PR14CA0048.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BN6PR14CA0048.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: dennisecatto@yahoo.com\r\nMessage-Id: <ffa79107ad691f576859b804e81a3de8@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Mon, 26 Aug 2019 16:29:37 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: dennise e catto =0AEmail: dennisecatto@yahoo.com=0APhone: 81825104=\r\n73=0A=0AService:9am-11am=0A=0AMessage Body:=0AI have 3 buldged discs in=\r\n my neck. with pain in the a.m. and some intermittent numbness in the ar=\r\nm. =0D=0A=0D=0AI have spoken to Dr Fields before regarding my issues and=\r\n wanted to get his opinion.  Also my office number is 805-921-3213=0A=0A=\r\nAny Other Comments:=0A=0A=0A-- =0AThis e-mail was sent from a contact fo=\r\nrm on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine=\r\n Treatment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <ffa79107ad691f576859b804e81a3de8@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6238,2647,'_email','dennisecatto@yahoo.com'),(6239,2647,'_name','dennise e catto'),(6240,2647,'_props','a:0:{}'),(6241,2647,'_last_contacted','2019-08-26 16:29:39'),(6242,2648,'_subject','[your-subject]'),(6243,2648,'_from','dennise e catto <dennisecatto@yahoo.com>'),(6244,2648,'_from_name','dennise e catto'),(6245,2648,'_from_email','dennisecatto@yahoo.com'),(6246,2648,'_field_your-name','dennise e catto'),(6247,2648,'_field_your-email','dennisecatto@yahoo.com'),(6248,2648,'_field_phone','8182510473  '),(6249,2648,'_field_service','9am-11am'),(6250,2648,'_field_your-message','I have 3 buldged discs in my neck. with pain in the a.m. and some intermittent numbness in the arm. \r\n\r\nI have spoken to Dr Fields before regarding my issues and wanted to get his opinion.  Also my office number is 805-921-3213'),(6251,2648,'_field_otherquestion',''),(6252,2648,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6253,2648,'_meta','a:19:{s:13:\"serial_number\";i:43;s:9:\"remote_ip\";s:13:\"199.76.61.202\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 26, 2019\";s:4:\"time\";s:7:\"4:29 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6254,2648,'_akismet',NULL),(6255,2648,'_recaptcha','a:0:{}'),(6256,2648,'_spam_log','a:0:{}'),(6257,2648,'_consent','a:0:{}'),(6258,2650,'_edit_lock','1599072067:9'),(6259,2650,'_edit_last','9'),(6260,2650,'_wp_page_template','default'),(6262,2650,'_yoast_wpseo_content_score','60'),(6263,2650,'_yoast_wpseo_primary_category','32'),(6264,2653,'success','1'),(6265,2653,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6266,2653,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6267,2653,'reply_to_header','edwina.hambleton@gmail.com'),(6268,2653,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6269,2653,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6270,2653,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6271,2653,'original_message','From: Edwina Hambleton \nEmail: edwina.hambleton@gmail.com\nPhone: 51 901 08 84\n\nService:11am-1pm\n\nMessage Body:\nHi\r\n\r\nI don\'t want to ruin your day,\r\nbut I have a few pictures of your employees, http://item.pictures/employees\r\nI don\'t think they are doing a good job.\r\n\r\nRegards\r\n\r\n \"Sent from my iPhone\"\n\nAny Other Comments:\nHi\r\n\r\nI don\'t want to ruin your day,\r\nbut I have a few pictures of your employees, http://item.pictures/employees\r\nI don\'t think they are doing a good job.\r\n\r\nYours truly\r\n\r\n \"Sent from my iPhone\"\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6272,2653,'original_headers','a:0:{}'),(6273,2653,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BN6PR11CA0057.outlook.office365.com Microsoft ESMTP MAIL Service ready at Tue, 27 Aug 2019 12:57:04 +0000\r\nEHLO drfields.com\r\n250-BN6PR11CA0057.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BN6PR11CA0057.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: edwina.hambleton@gmail.com\r\nMessage-Id: <49a617cdedf97565f89f092fd6edeb9b@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Tue, 27 Aug 2019 12:57:04 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Edwina Hambleton =0AEmail: edwina.hambleton@gmail.com=0APhone: 51=\r\n 901 08 84=0A=0AService:11am-1pm=0A=0AMessage Body:=0AHi=0D=0A=0D=0AI do=\r\nn\'t want to ruin your day,=0D=0Abut I have a few pictures of your employ=\r\nees, http://item.pictures/employees=0D=0AI don\'t think they are doing a=\r\n good job.=0D=0A=0D=0ARegards=0D=0A=0D=0A \"Sent from my iPhone\"=0A=0AAny=\r\n Other Comments:=0AHi=0D=0A=0D=0AI don\'t want to ruin your day,=0D=0Abut=\r\n I have a few pictures of your employees, http://item.pictures/employees=\r\n=0D=0AI don\'t think they are doing a good job.=0D=0A=0D=0AYours truly=0D=\r\n=0A=0D=0A \"Sent from my iPhone\"=0A=0A-- =0AThis e-mail was sent from a c=\r\nontact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic=\r\n Medicine Treatment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <49a617cdedf97565f89f092fd6edeb9b@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6274,2654,'_email','edwina.hambleton@gmail.com'),(6275,2654,'_name','Edwina Hambleton'),(6276,2654,'_props','a:0:{}'),(6277,2654,'_last_contacted','2019-08-27 12:57:06'),(6278,2655,'_subject','[your-subject]'),(6279,2655,'_from','Edwina Hambleton <edwina.hambleton@gmail.com>'),(6280,2655,'_from_name','Edwina Hambleton'),(6281,2655,'_from_email','edwina.hambleton@gmail.com'),(6282,2655,'_field_your-name','Edwina Hambleton'),(6283,2655,'_field_your-email','edwina.hambleton@gmail.com'),(6284,2655,'_field_phone','51 901 08 84'),(6285,2655,'_field_service','11am-1pm'),(6286,2655,'_field_your-message','Hi\r\n\r\nI don\'t want to ruin your day,\r\nbut I have a few pictures of your employees, http://item.pictures/employees\r\nI don\'t think they are doing a good job.\r\n\r\nRegards\r\n\r\n \"Sent from my iPhone\"'),(6287,2655,'_field_otherquestion','Hi\r\n\r\nI don\'t want to ruin your day,\r\nbut I have a few pictures of your employees, http://item.pictures/employees\r\nI don\'t think they are doing a good job.\r\n\r\nYours truly\r\n\r\n \"Sent from my iPhone\"'),(6288,2655,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6289,2655,'_meta','a:19:{s:13:\"serial_number\";i:44;s:9:\"remote_ip\";s:12:\"111.223.3.83\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 27, 2019\";s:4:\"time\";s:8:\"12:57 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6290,2655,'_akismet',NULL),(6291,2655,'_recaptcha','a:0:{}'),(6292,2655,'_spam_log','a:0:{}'),(6293,2655,'_consent','a:0:{}'),(6294,2656,'success','1'),(6295,2656,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6296,2656,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6297,2656,'reply_to_header','noreply@thewordpressclub6874.space'),(6298,2656,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6299,2656,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6300,2656,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6301,2656,'original_message','From: Emmanuel Myles \nEmail: noreply@thewordpressclub6874.space\nPhone: (08) 8314 4686\n\nService:11am-1pm\n\nMessage Body:\nHello,\r\n\r\nAre you currently utilizing Wordpress/Woocommerce or maybe do you actually want to implement it later on ? We offer much more than 2500 premium plugins along with themes totally free to download : http://shriink.xyz/tKDHy\r\n\r\nThanks,\r\n\r\nEmmanuel\n\nAny Other Comments:\nHi,\r\n\r\nAre you presently operating Wordpress/Woocommerce or do you plan to use it as time goes by ? We offer over 2500 premium plugins and themes absolutely free to download : http://shriink.xyz/tKDHy\r\n\r\nRegards,\r\n\r\nEmmanuel\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6302,2656,'original_headers','a:0:{}'),(6303,2656,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BL0PR1501CA0014.outlook.office365.com Microsoft ESMTP MAIL Service ready at Tue, 27 Aug 2019 14:29:05 +0000\r\nEHLO drfields.com\r\n250-BL0PR1501CA0014.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BL0PR1501CA0014.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: noreply@thewordpressclub6874.space\r\nMessage-Id: <9bc77c9d4be2c07fcc4dc392467a8a57@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Tue, 27 Aug 2019 14:29:05 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Emmanuel Myles =0AEmail: noreply@thewordpressclub6874.space=0APhon=\r\ne: (08) 8314 4686=0A=0AService:11am-1pm=0A=0AMessage Body:=0AHello,=0D=\r\n=0A=0D=0AAre you currently utilizing Wordpress/Woocommerce or maybe do y=\r\nou actually want to implement it later on ? We offer much more than 2500=\r\n premium plugins along with themes totally free to download : http://shr=\r\niink.xyz/tKDHy=0D=0A=0D=0AThanks,=0D=0A=0D=0AEmmanuel=0A=0AAny Other Com=\r\nments:=0AHi,=0D=0A=0D=0AAre you presently operating Wordpress/Woocommerc=\r\ne or do you plan to use it as time goes by ? We offer over 2500 premium=\r\n plugins and themes absolutely free to download : http://shriink.xyz/tKD=\r\nHy=0D=0A=0D=0ARegards,=0D=0A=0D=0AEmmanuel=0A=0A-- =0AThis e-mail was se=\r\nnt from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative=\r\n Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <9bc77c9d4be2c07fcc4dc392467a8a57@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6304,2657,'_email','noreply@thewordpressclub6874.space'),(6305,2657,'_name','Emmanuel Myles'),(6306,2657,'_props','a:0:{}'),(6307,2657,'_last_contacted','2019-08-27 14:29:07'),(6308,2658,'_subject','[your-subject]'),(6309,2658,'_from','Emmanuel Myles <noreply@thewordpressclub6874.space>'),(6310,2658,'_from_name','Emmanuel Myles'),(6311,2658,'_from_email','noreply@thewordpressclub6874.space'),(6312,2658,'_field_your-name','Emmanuel Myles'),(6313,2658,'_field_your-email','noreply@thewordpressclub6874.space'),(6314,2658,'_field_phone','(08) 8314 4686'),(6315,2658,'_field_service','11am-1pm'),(6316,2658,'_field_your-message','Hello,\r\n\r\nAre you currently utilizing Wordpress/Woocommerce or maybe do you actually want to implement it later on ? We offer much more than 2500 premium plugins along with themes totally free to download : http://shriink.xyz/tKDHy\r\n\r\nThanks,\r\n\r\nEmmanuel'),(6317,2658,'_field_otherquestion','Hi,\r\n\r\nAre you presently operating Wordpress/Woocommerce or do you plan to use it as time goes by ? We offer over 2500 premium plugins and themes absolutely free to download : http://shriink.xyz/tKDHy\r\n\r\nRegards,\r\n\r\nEmmanuel'),(6318,2658,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6319,2658,'_meta','a:19:{s:13:\"serial_number\";i:45;s:9:\"remote_ip\";s:13:\"68.65.221.152\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 27, 2019\";s:4:\"time\";s:7:\"2:29 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6320,2658,'_akismet',NULL),(6321,2658,'_recaptcha','a:0:{}'),(6322,2658,'_spam_log','a:0:{}'),(6323,2658,'_consent','a:0:{}'),(6324,2659,'success','1'),(6325,2659,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6326,2659,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6327,2659,'reply_to_header','dr.joelle@gmail.com'),(6328,2659,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6329,2659,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6330,2659,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6331,2659,'original_message','From: Joelle Osias \nEmail: dr.joelle@gmail.com\nPhone: 6504448804\n\nService:9am-11am\n\nMessage Body:\nWant to refer my son. He has knee pain and partial patellar tendon tear.  Interested in prolo therapy, prp.\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6332,2659,'original_headers','a:0:{}'),(6333,2659,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BN6PR2201CA0001.outlook.office365.com Microsoft ESMTP MAIL Service ready at Wed, 28 Aug 2019 19:34:52 +0000\r\nEHLO drfields.com\r\n250-BN6PR2201CA0001.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BN6PR2201CA0001.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: dr.joelle@gmail.com\r\nMessage-Id: <61120a48d49e124d4499a761908013f8@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Wed, 28 Aug 2019 19:34:53 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Joelle Osias =0AEmail: dr.joelle@gmail.com=0APhone: 6504448804=0A=\r\n=0AService:9am-11am=0A=0AMessage Body:=0AWant to refer my son. He has kn=\r\nee pain and partial patellar tendon tear.  Interested in prolo therapy,=\r\n prp.=0A=0AAny Other Comments:=0A=0A=0A-- =0AThis e-mail was sent from a=\r\n contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthoped=\r\nic Medicine Treatment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <61120a48d49e124d4499a761908013f8@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6334,2660,'_email','dr.joelle@gmail.com'),(6335,2660,'_name','Joelle Osias'),(6336,2660,'_props','a:0:{}'),(6337,2660,'_last_contacted','2019-08-28 19:34:55'),(6338,2661,'_subject','[your-subject]'),(6339,2661,'_from','Joelle Osias <dr.joelle@gmail.com>'),(6340,2661,'_from_name','Joelle Osias'),(6341,2661,'_from_email','dr.joelle@gmail.com'),(6342,2661,'_field_your-name','Joelle Osias'),(6343,2661,'_field_your-email','dr.joelle@gmail.com'),(6344,2661,'_field_phone','6504448804'),(6345,2661,'_field_service','9am-11am'),(6346,2661,'_field_your-message','Want to refer my son. He has knee pain and partial patellar tendon tear.  Interested in prolo therapy, prp. '),(6347,2661,'_field_otherquestion',''),(6348,2661,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6349,2661,'_meta','a:19:{s:13:\"serial_number\";i:46;s:9:\"remote_ip\";s:11:\"5.38.69.208\";s:10:\"user_agent\";s:142:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/76.0.3809.123 Mobile/15E148 Safari/605.1\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 28, 2019\";s:4:\"time\";s:7:\"7:34 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6350,2661,'_akismet',NULL),(6351,2661,'_recaptcha','a:0:{}'),(6352,2661,'_spam_log','a:0:{}'),(6353,2661,'_consent','a:0:{}'),(6354,2662,'success','1'),(6355,2662,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6356,2662,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6357,2662,'reply_to_header','Formato87881@outlook.com'),(6358,2662,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6359,2662,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6360,2662,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6361,2662,'original_message','From: Ella \nEmail: Formato87881@outlook.com\nPhone: (219) 477-0619\n\nService:11am-1pm\n\nMessage Body:\nDo you have any Facebook page,YouTube video, Instagram profile or simply a Website? Do you want to get more likes/fans,followers,views or votes fast. We can promote and increase your social media presence affoardably and fast. \r\n \r\nPackages: \r\n \r\n1) 4,000 Facebook Fans/Likes($99)    = Order at:- https://reputationbunker.com/facebook.html \r\n2) 25,000 YouTube Views($50)         = Order at:- https://reputationbunker.com/ytviews.html \r\n3) 1,000 Instagram Followers($30)    = Order at:- https://reputationbunker.com/instagram.html \r\n \r\n \r\nYou can also order smaller or bigger package from our official website. \r\n \r\nDon\'t reply to this mail.We don\'t monitor inbox. \r\n \r\nThank You \r\n \r\n \r\nNote: - If this is not your interest, don\'t worry, we will not email you again.\n\nAny Other Comments:\nDo you have any Facebook page,YouTube video, Instagram profile or simply a Website? Do you want to get more likes/fans,followers,views or votes fast. We can promote and increase your social media presence affoardably and fast. \r\n \r\nPackages: \r\n \r\n1) 4,000 Facebook Fans/Likes($99)    = Order at:- https://reputationbunker.com/facebook.html \r\n2) 25,000 YouTube Views($50)         = Order at:- https://reputationbunker.com/ytviews.html \r\n3) 1,000 Instagram Followers($30)    = Order at:- https://reputationbunker.com/instagram.html \r\n \r\n \r\nYou can also order smaller or bigger package from our official website. \r\n \r\nDon\'t reply to this mail.We don\'t monitor inbox. \r\n \r\nThank You \r\n \r\n \r\nNote: - If this is not your interest, don\'t worry, we will not email you again.\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6362,2662,'original_headers','a:0:{}'),(6363,2662,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR07CA0002.outlook.office365.com Microsoft ESMTP MAIL Service ready at Wed, 28 Aug 2019 22:28:17 +0000\r\nEHLO drfields.com\r\n250-MN2PR07CA0002.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR07CA0002.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: Formato87881@outlook.com\r\nMessage-Id: <1b2a3f325f1b11895fbfcaf817add522@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Wed, 28 Aug 2019 22:28:17 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Ella =0AEmail: Formato87881@outlook.com=0APhone: (219) 477-0619=0A=\r\n=0AService:11am-1pm=0A=0AMessage Body:=0ADo you have any Facebook page,Y=\r\nouTube video, Instagram profile or simply a Website? Do you want to get=\r\n more likes/fans,followers,views or votes fast. We can promote and incre=\r\nase your social media presence affoardably and fast. =0D=0A =0D=0APackag=\r\nes: =0D=0A =0D=0A1) 4,000 Facebook Fans/Likes($99)    =3D Order at:- htt=\r\nps://reputationbunker.com/facebook.html =0D=0A2) 25,000 YouTube Views($5=\r\n0)         =3D Order at:- https://reputationbunker.com/ytviews.html =0D=\r\n=0A3) 1,000 Instagram Followers($30)    =3D Order at:- https://reputatio=\r\nnbunker.com/instagram.html =0D=0A =0D=0A =0D=0AYou can also order smalle=\r\nr or bigger package from our official website. =0D=0A =0D=0ADon\'t reply=\r\n to this mail.We don\'t monitor inbox. =0D=0A =0D=0AThank You =0D=0A =0D=\r\n=0A =0D=0ANote: - If this is not your interest, don\'t worry, we will not=\r\n email you again.=0A=0AAny Other Comments:=0ADo you have any Facebook pa=\r\nge,YouTube video, Instagram profile or simply a Website? Do you want to=\r\n get more likes/fans,followers,views or votes fast. We can promote and i=\r\nncrease your social media presence affoardably and fast. =0D=0A =0D=0APa=\r\nckages: =0D=0A =0D=0A1) 4,000 Facebook Fans/Likes($99)    =3D Order at:-=\r\n https://reputationbunker.com/facebook.html =0D=0A2) 25,000 YouTube View=\r\ns($50)         =3D Order at:- https://reputationbunker.com/ytviews.html=\r\n =0D=0A3) 1,000 Instagram Followers($30)    =3D Order at:- https://reput=\r\nationbunker.com/instagram.html =0D=0A =0D=0A =0D=0AYou can also order sm=\r\naller or bigger package from our official website. =0D=0A =0D=0ADon\'t re=\r\nply to this mail.We don\'t monitor inbox. =0D=0A =0D=0AThank You =0D=0A=\r\n =0D=0A =0D=0ANote: - If this is not your interest, don\'t worry, we will=\r\n not email you again.=0A=0A-- =0AThis e-mail was sent from a contact for=\r\nm on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine=\r\n Treatment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <1b2a3f325f1b11895fbfcaf817add522@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6364,2663,'_email','Formato87881@outlook.com'),(6365,2663,'_name','Ella'),(6366,2663,'_props','a:0:{}'),(6367,2663,'_last_contacted','2019-08-28 22:28:19'),(6368,2664,'_subject','[your-subject]'),(6369,2664,'_from','Ella <Formato87881@outlook.com>'),(6370,2664,'_from_name','Ella'),(6371,2664,'_from_email','Formato87881@outlook.com'),(6372,2664,'_field_your-name','Ella'),(6373,2664,'_field_your-email','Formato87881@outlook.com'),(6374,2664,'_field_phone','(219) 477-0619'),(6375,2664,'_field_service','11am-1pm'),(6376,2664,'_field_your-message','Do you have any Facebook page,YouTube video, Instagram profile or simply a Website? Do you want to get more likes/fans,followers,views or votes fast. We can promote and increase your social media presence affoardably and fast. \r\n \r\nPackages: \r\n \r\n1) 4,000 Facebook Fans/Likes($99)    = Order at:- https://reputationbunker.com/facebook.html \r\n2) 25,000 YouTube Views($50)         = Order at:- https://reputationbunker.com/ytviews.html \r\n3) 1,000 Instagram Followers($30)    = Order at:- https://reputationbunker.com/instagram.html \r\n \r\n \r\nYou can also order smaller or bigger package from our official website. \r\n \r\nDon\'t reply to this mail.We don\'t monitor inbox. \r\n \r\nThank You \r\n \r\n \r\nNote: - If this is not your interest, don\'t worry, we will not email you again.'),(6377,2664,'_field_otherquestion','Do you have any Facebook page,YouTube video, Instagram profile or simply a Website? Do you want to get more likes/fans,followers,views or votes fast. We can promote and increase your social media presence affoardably and fast. \r\n \r\nPackages: \r\n \r\n1) 4,000 Facebook Fans/Likes($99)    = Order at:- https://reputationbunker.com/facebook.html \r\n2) 25,000 YouTube Views($50)         = Order at:- https://reputationbunker.com/ytviews.html \r\n3) 1,000 Instagram Followers($30)    = Order at:- https://reputationbunker.com/instagram.html \r\n \r\n \r\nYou can also order smaller or bigger package from our official website. \r\n \r\nDon\'t reply to this mail.We don\'t monitor inbox. \r\n \r\nThank You \r\n \r\n \r\nNote: - If this is not your interest, don\'t worry, we will not email you again.'),(6378,2664,'_field_submit','Send'),(6379,2664,'_fields','a:7:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;s:6:\"submit\";N;}'),(6380,2664,'_meta','a:19:{s:13:\"serial_number\";i:47;s:9:\"remote_ip\";s:15:\"216.169.110.198\";s:10:\"user_agent\";s:101:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 28, 2019\";s:4:\"time\";s:8:\"10:28 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6381,2664,'_akismet',NULL),(6382,2664,'_recaptcha','a:0:{}'),(6383,2664,'_spam_log','a:0:{}'),(6384,2664,'_consent','a:0:{}'),(6386,2665,'_edit_lock','1611703854:11'),(6387,2665,'_edit_last','11'),(6388,2665,'_wp_page_template','default'),(6390,2665,'_yoast_wpseo_content_score','60'),(6391,2665,'_yoast_wpseo_primary_category','21'),(6404,2665,'_wp_old_slug','regenerative-orthopedics-for-chronic-persistent-hip-pain'),(6406,2670,'_menu_item_type','post_type'),(6407,2670,'_menu_item_menu_item_parent','646'),(6408,2670,'_menu_item_object_id','2665'),(6409,2670,'_menu_item_object','post'),(6410,2670,'_menu_item_target',''),(6411,2670,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6412,2670,'_menu_item_xfn',''),(6413,2670,'_menu_item_url',''),(6415,2671,'success','1'),(6416,2671,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6417,2671,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6418,2671,'reply_to_header','john.onlineleadsandtraffic.com@gmail.com'),(6419,2671,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6420,2671,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6421,2671,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6422,2671,'original_message','From: The Rudie\'s \nEmail: john.onlineleadsandtraffic.com@gmail.com\nPhone: 4044047812\n\nService:3pm-5pm\n\nMessage Body:\nHelping families make money is what this 32 year old company does.\n\nhttps://www.DidYouHearAboutThis.net\n\nIf you have a website, they increase your sales.\n\nIf you don\'t have a website, you can earn a living simply by referring people to websites.\n\nEither way, you win.\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6423,2671,'original_headers','a:0:{}'),(6424,2671,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BL0PR0102CA0065.outlook.office365.com Microsoft ESMTP MAIL Service ready at Sat, 31 Aug 2019 14:29:13 +0000\r\nEHLO drfields.com\r\n250-BL0PR0102CA0065.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BL0PR0102CA0065.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: john.onlineleadsandtraffic.com@gmail.com\r\nMessage-Id: <89ed00410f22630342bada2707b931d8@drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Sat, 31 Aug 2019 14:29:13 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: The Rudie\'s =0AEmail: john.onlineleadsandtraffic.com@gmail.com=0AP=\r\nhone: 4044047812=0A=0AService:3pm-5pm=0A=0AMessage Body:=0AHelping famil=\r\nies make money is what this 32 year old company does.=0A=0Ahttps://www.D=\r\nidYouHearAboutThis.net=0A=0AIf you have a website, they increase your sa=\r\nles.=0A=0AIf you don\'t have a website, you can earn a living simply by r=\r\neferring people to websites.=0A=0AEither way, you win.=0A=0AAny Other Co=\r\nmments:=0A=0A=0A-- =0AThis e-mail was sent from a contact form on Stem C=\r\nell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment -=\r\n Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <89ed00410f22630342bada2707b931d8@drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6425,2672,'_email','john.onlineleadsandtraffic.com@gmail.com'),(6426,2672,'_name','The Rudie\'s'),(6427,2672,'_props','a:0:{}'),(6428,2672,'_last_contacted','2019-08-31 14:29:15'),(6429,2673,'_subject','[your-subject]'),(6430,2673,'_from','The Rudie\'s <john.onlineleadsandtraffic.com@gmail.com>'),(6431,2673,'_from_name','The Rudie\'s'),(6432,2673,'_from_email','john.onlineleadsandtraffic.com@gmail.com'),(6433,2673,'_field_your-name','The Rudie\'s'),(6434,2673,'_field_your-email','john.onlineleadsandtraffic.com@gmail.com'),(6435,2673,'_field_phone','4044047812'),(6436,2673,'_field_service','3pm-5pm'),(6437,2673,'_field_your-message','\nHelping families make money is what this 32 year old company does.\n\nhttps://www.DidYouHearAboutThis.net\n\nIf you have a website, they increase your sales.\n\nIf you don\'t have a website, you can earn a living simply by referring people to websites.\n\nEither way, you win.'),(6438,2673,'_field_otherquestion',''),(6439,2673,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6440,2673,'_meta','a:19:{s:13:\"serial_number\";i:48;s:9:\"remote_ip\";s:15:\"204.246.159.170\";s:10:\"user_agent\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1 Safari/605.1.15\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 31, 2019\";s:4:\"time\";s:7:\"2:29 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6441,2673,'_akismet',NULL),(6442,2673,'_recaptcha','a:0:{}'),(6443,2673,'_spam_log','a:0:{}'),(6444,2673,'_consent','a:0:{}'),(6445,2674,'success','1'),(6446,2674,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6447,2674,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6448,2674,'reply_to_header','noreplymonkeydigital@gmail.com'),(6449,2674,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6450,2674,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6451,2674,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6452,2674,'original_message','From: Keesha Peak \nEmail: noreplymonkeydigital@gmail.com\nPhone: 06578 93 62 32\n\nService:3pm-5pm\n\nMessage Body:\nFastest and Most Effective Way to Dominate the Web. Dominate search engines and be on the top position for Google. EDU backlinks are considered more trustworthy therefore are harder to get\r\n\r\nYou will have backlinks on old EDU pages with high PA values, Actual page high authority, which makes it very valuable for your SEO efforts.\r\n\r\nRead more\r\nhttps://monkeydigital.co/product/edu-backlinks/\r\n\r\nregards\r\nMike\r\nmonkeydigital.co@gmail.com\n\nAny Other Comments:\nFastest and Most Effective Way to Dominate the Web. Dominate search engines and be on the top position for Google. EDU backlinks are considered more trustworthy therefore are harder to get\r\n\r\nYou will have backlinks on old EDU pages with high PA values, Actual page high authority, which makes it very valuable for your SEO efforts.\r\n\r\nRead more\r\nhttps://monkeydigital.co/product/edu-backlinks/\r\n\r\nregards\r\nMike\r\nmonkeydigital.co@gmail.com\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6453,2674,'original_headers','a:0:{}'),(6454,2674,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR10CA0001.outlook.office365.com Microsoft ESMTP MAIL Service ready at Sat, 31 Aug 2019 17:00:07 +0000\r\nEHLO drfields.com\r\n250-MN2PR10CA0001.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR10CA0001.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: noreplymonkeydigital@gmail.com\r\nMessage-Id: <f66d934303f7680e8569c8cbf5906f0e@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Sat, 31 Aug 2019 17:00:08 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Keesha Peak =0AEmail: noreplymonkeydigital@gmail.com=0APhone: 0657=\r\n8 93 62 32=0A=0AService:3pm-5pm=0A=0AMessage Body:=0AFastest and Most Ef=\r\nfective Way to Dominate the Web. Dominate search engines and be on the t=\r\nop position for Google. EDU backlinks are considered more trustworthy th=\r\nerefore are harder to get=0D=0A=0D=0AYou will have backlinks on old EDU=\r\n pages with high PA values, Actual page high authority, which makes it v=\r\nery valuable for your SEO efforts.=0D=0A=0D=0ARead more=0D=0Ahttps://mon=\r\nkeydigital.co/product/edu-backlinks/=0D=0A=0D=0Aregards=0D=0AMike=0D=0Am=\r\nonkeydigital.co@gmail.com=0A=0AAny Other Comments:=0AFastest and Most Ef=\r\nfective Way to Dominate the Web. Dominate search engines and be on the t=\r\nop position for Google. EDU backlinks are considered more trustworthy th=\r\nerefore are harder to get=0D=0A=0D=0AYou will have backlinks on old EDU=\r\n pages with high PA values, Actual page high authority, which makes it v=\r\nery valuable for your SEO efforts.=0D=0A=0D=0ARead more=0D=0Ahttps://mon=\r\nkeydigital.co/product/edu-backlinks/=0D=0A=0D=0Aregards=0D=0AMike=0D=0Am=\r\nonkeydigital.co@gmail.com=0A=0A-- =0AThis e-mail was sent from a contact=\r\n form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medic=\r\nine Treatment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <f66d934303f7680e8569c8cbf5906f0e@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6455,2675,'_email','noreplymonkeydigital@gmail.com'),(6456,2675,'_name','Keesha Peak'),(6457,2675,'_props','a:0:{}'),(6458,2675,'_last_contacted','2019-08-31 17:00:10'),(6459,2676,'_subject','[your-subject]'),(6460,2676,'_from','Keesha Peak <noreplymonkeydigital@gmail.com>'),(6461,2676,'_from_name','Keesha Peak'),(6462,2676,'_from_email','noreplymonkeydigital@gmail.com'),(6463,2676,'_field_your-name','Keesha Peak'),(6464,2676,'_field_your-email','noreplymonkeydigital@gmail.com'),(6465,2676,'_field_phone','06578 93 62 32'),(6466,2676,'_field_service','3pm-5pm'),(6467,2676,'_field_your-message','Fastest and Most Effective Way to Dominate the Web. Dominate search engines and be on the top position for Google. EDU backlinks are considered more trustworthy therefore are harder to get\r\n\r\nYou will have backlinks on old EDU pages with high PA values, Actual page high authority, which makes it very valuable for your SEO efforts.\r\n\r\nRead more\r\nhttps://monkeydigital.co/product/edu-backlinks/\r\n\r\nregards\r\nMike\r\nmonkeydigital.co@gmail.com\r\n'),(6468,2676,'_field_otherquestion','Fastest and Most Effective Way to Dominate the Web. Dominate search engines and be on the top position for Google. EDU backlinks are considered more trustworthy therefore are harder to get\r\n\r\nYou will have backlinks on old EDU pages with high PA values, Actual page high authority, which makes it very valuable for your SEO efforts.\r\n\r\nRead more\r\nhttps://monkeydigital.co/product/edu-backlinks/\r\n\r\nregards\r\nMike\r\nmonkeydigital.co@gmail.com\r\n'),(6469,2676,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6470,2676,'_meta','a:19:{s:13:\"serial_number\";i:49;s:9:\"remote_ip\";s:15:\"192.253.253.126\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 31, 2019\";s:4:\"time\";s:7:\"5:00 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6471,2676,'_akismet',NULL),(6472,2676,'_recaptcha','a:0:{}'),(6473,2676,'_spam_log','a:0:{}'),(6474,2676,'_consent','a:0:{}'),(6475,2677,'success','1'),(6476,2677,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6477,2677,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6478,2677,'reply_to_header','elizaengle@gmail.com'),(6479,2677,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6480,2677,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6481,2677,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6482,2677,'original_message','From: Lisa (Eliza) Engle \nEmail: elizaengle@gmail.com\nPhone: 323-206-0122\n\nService:9am-11am\n\nMessage Body:\nI was referred to Dr Fields by my chiropractor, Dr Douglas Davis (Burbank). I have been diagnosed (by X-ray and MRI) with severe arthritus and degenerative disease in my lower back (L5-S1) I am 47 and have trouble sleeping due to pain and am somewhat limited in daily activities. I am interested in finding out if I am a stem cell candidate and what the costs and recovery time would be.\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6483,2677,'original_headers','a:0:{}'),(6484,2677,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR16CA0011.outlook.office365.com Microsoft ESMTP MAIL Service ready at Sat, 31 Aug 2019 17:02:39 +0000\r\nEHLO drfields.com\r\n250-MN2PR16CA0011.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR16CA0011.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: elizaengle@gmail.com\r\nMessage-Id: <4f529cc70e342b104a3d148ce2885ba0@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Sat, 31 Aug 2019 17:02:39 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Lisa (Eliza) Engle =0AEmail: elizaengle@gmail.com=0APhone: 323-206=\r\n-0122=0A=0AService:9am-11am=0A=0AMessage Body:=0AI was referred to Dr Fi=\r\nelds by my chiropractor, Dr Douglas Davis (Burbank). I have been diagnos=\r\ned (by X-ray and MRI) with severe arthritus and degenerative disease in=\r\n my lower back (L5-S1) I am 47 and have trouble sleeping due to pain and=\r\n am somewhat limited in daily activities. I am interested in finding out=\r\n if I am a stem cell candidate and what the costs and recovery time woul=\r\nd be.=0A=0AAny Other Comments:=0A=0A=0A-- =0AThis e-mail was sent from a=\r\n contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthoped=\r\nic Medicine Treatment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <4f529cc70e342b104a3d148ce2885ba0@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6485,2678,'_email','elizaengle@gmail.com'),(6486,2678,'_name','Lisa (Eliza) Engle'),(6487,2678,'_props','a:0:{}'),(6488,2678,'_last_contacted','2019-08-31 17:02:41'),(6489,2679,'_subject','[your-subject]'),(6490,2679,'_from','Lisa (Eliza) Engle <elizaengle@gmail.com>'),(6491,2679,'_from_name','Lisa (Eliza) Engle'),(6492,2679,'_from_email','elizaengle@gmail.com'),(6493,2679,'_field_your-name','Lisa (Eliza) Engle'),(6494,2679,'_field_your-email','elizaengle@gmail.com'),(6495,2679,'_field_phone','323-206-0122'),(6496,2679,'_field_service','9am-11am'),(6497,2679,'_field_your-message','I was referred to Dr Fields by my chiropractor, Dr Douglas Davis (Burbank). I have been diagnosed (by X-ray and MRI) with severe arthritus and degenerative disease in my lower back (L5-S1) I am 47 and have trouble sleeping due to pain and am somewhat limited in daily activities. I am interested in finding out if I am a stem cell candidate and what the costs and recovery time would be.'),(6498,2679,'_field_otherquestion',''),(6499,2679,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6500,2679,'_meta','a:19:{s:13:\"serial_number\";i:50;s:9:\"remote_ip\";s:14:\"47.232.184.236\";s:10:\"user_agent\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"August 31, 2019\";s:4:\"time\";s:7:\"5:02 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6501,2679,'_akismet',NULL),(6502,2679,'_recaptcha','a:0:{}'),(6503,2679,'_spam_log','a:0:{}'),(6504,2679,'_consent','a:0:{}'),(6505,2680,'success','1'),(6506,2680,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6507,2680,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6508,2680,'reply_to_header','zulma.polk@hotmail.com'),(6509,2680,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6510,2680,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6511,2680,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6512,2680,'original_message','From: Zulma Polk \nEmail: zulma.polk@hotmail.com\nPhone: 033-5661909\n\nService:11am-1pm\n\nMessage Body:\nAre You interested in an advertising service that charges less than $50 monthly and delivers thousands of people who are ready to buy directly to your website? Send a reply to: lily5885mil@gmail.com to find out how this works.\n\nAny Other Comments:\nWould you be interested in an advertising service that charges less than $39 every month and sends tons of people who are ready to buy directly to your website? Send a reply to: lily5885mil@gmail.com to find out how this works.\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6513,2680,'original_headers','a:0:{}'),(6514,2680,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BL0PR01CA0018.outlook.office365.com Microsoft ESMTP MAIL Service ready at Sun, 1 Sep 2019 05:01:47 +0000\r\nEHLO drfields.com\r\n250-BL0PR01CA0018.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BL0PR01CA0018.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: zulma.polk@hotmail.com\r\nMessage-Id: <a52dcb832463f5f4d3987e491b2b8a3c@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Sun, 01 Sep 2019 05:01:47 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Zulma Polk =0AEmail: zulma.polk@hotmail.com=0APhone: 033-5661909=\r\n=0A=0AService:11am-1pm=0A=0AMessage Body:=0AAre You interested in an adv=\r\nertising service that charges less than $50 monthly and delivers thousan=\r\nds of people who are ready to buy directly to your website? Send a reply=\r\n to: lily5885mil@gmail.com to find out how this works.=0A=0AAny Other Co=\r\nmments:=0AWould you be interested in an advertising service that charges=\r\n less than $39 every month and sends tons of people who are ready to buy=\r\n directly to your website? Send a reply to: lily5885mil@gmail.com to fin=\r\nd out how this works.=0A=0A-- =0AThis e-mail was sent from a contact for=\r\nm on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine=\r\n Treatment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <a52dcb832463f5f4d3987e491b2b8a3c@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6515,2681,'_email','zulma.polk@hotmail.com'),(6516,2681,'_name','Zulma Polk'),(6517,2681,'_props','a:0:{}'),(6518,2681,'_last_contacted','2019-09-01 05:01:50'),(6519,2682,'_subject','[your-subject]'),(6520,2682,'_from','Zulma Polk <zulma.polk@hotmail.com>'),(6521,2682,'_from_name','Zulma Polk'),(6522,2682,'_from_email','zulma.polk@hotmail.com'),(6523,2682,'_field_your-name','Zulma Polk'),(6524,2682,'_field_your-email','zulma.polk@hotmail.com'),(6525,2682,'_field_phone','033-5661909'),(6526,2682,'_field_service','11am-1pm'),(6527,2682,'_field_your-message','Are You interested in an advertising service that charges less than $50 monthly and delivers thousands of people who are ready to buy directly to your website? Send a reply to: lily5885mil@gmail.com to find out how this works.'),(6528,2682,'_field_otherquestion','Would you be interested in an advertising service that charges less than $39 every month and sends tons of people who are ready to buy directly to your website? Send a reply to: lily5885mil@gmail.com to find out how this works.'),(6529,2682,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6530,2682,'_meta','a:19:{s:13:\"serial_number\";i:51;s:9:\"remote_ip\";s:14:\"104.245.145.21\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 1, 2019\";s:4:\"time\";s:7:\"5:01 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6531,2682,'_akismet',NULL),(6532,2682,'_recaptcha','a:0:{}'),(6533,2682,'_spam_log','a:0:{}'),(6534,2682,'_consent','a:0:{}'),(6535,2683,'success','1'),(6536,2683,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6537,2683,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6538,2683,'reply_to_header','raphaeIcosecoerics@gmail.com'),(6539,2683,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6540,2683,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6541,2683,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6542,2683,'original_message','From: Larryfus \nEmail: raphaeIcosecoerics@gmail.com\nPhone: 83555198965\n\nService:3pm-5pm\n\nMessage Body:\nHi!  drfields.com \r\n \r\nWe present oneself \r\n \r\nSending your business proposition through the feedback form which can be found on the sites in the contact partition. Contact form are filled in by our application and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This technique raise the chances that your message will be read. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com\n\nAny Other Comments:\nHi!  drfields.com \r\n \r\nWe present oneself \r\n \r\nSending your business proposition through the feedback form which can be found on the sites in the contact partition. Contact form are filled in by our application and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This technique raise the chances that your message will be read. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6543,2683,'original_headers','a:0:{}'),(6544,2683,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR10CA0023.outlook.office365.com Microsoft ESMTP MAIL Service ready at Sun, 1 Sep 2019 09:01:07 +0000\r\nEHLO drfields.com\r\n250-MN2PR10CA0023.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR10CA0023.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: raphaeIcosecoerics@gmail.com\r\nMessage-Id: <b2031f193d65dd3a92f80a0e0c22b5a8@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Sun, 01 Sep 2019 09:01:08 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Larryfus =0AEmail: raphaeIcosecoerics@gmail.com=0APhone: 835551989=\r\n65=0A=0AService:3pm-5pm=0A=0AMessage Body:=0AHi!  drfields.com =0D=0A=\r\n =0D=0AWe present oneself =0D=0A =0D=0ASending your business proposition=\r\n through the feedback form which can be found on the sites in the contac=\r\nt partition. Contact form are filled in by our application and the captc=\r\nha is solved. The advantage of this method is that messages sent through=\r\n feedback forms are whitelisted. This technique raise the chances that y=\r\nour message will be read. =0D=0A =0D=0AOur database contains more than 2=\r\n5 million sites around the world to which we can send your message. =0D=\r\n=0A =0D=0AThe cost of one million messages 49 USD =0D=0A =0D=0AFREE TEST=\r\n mailing of 50,000 messages to any country of your choice. =0D=0A =0D=0A=\r\n =0D=0AThis message is automatically generated to use our contacts for c=\r\nommunication. =0D=0A =0D=0A =0D=0A =0D=0AContact us. =0D=0ATelegram - @F=\r\needbackFormEU =0D=0ASkype  FeedbackForm2019 =0D=0AEmail - FeedbackForm@m=\r\nake-success.com=0A=0AAny Other Comments:=0AHi!  drfields.com =0D=0A =0D=\r\n=0AWe present oneself =0D=0A =0D=0ASending your business proposition thr=\r\nough the feedback form which can be found on the sites in the contact pa=\r\nrtition. Contact form are filled in by our application and the captcha i=\r\ns solved. The advantage of this method is that messages sent through fee=\r\ndback forms are whitelisted. This technique raise the chances that your=\r\n message will be read. =0D=0A =0D=0AOur database contains more than 25 m=\r\nillion sites around the world to which we can send your message. =0D=0A=\r\n =0D=0AThe cost of one million messages 49 USD =0D=0A =0D=0AFREE TEST ma=\r\niling of 50,000 messages to any country of your choice. =0D=0A =0D=0A=\r\n =0D=0AThis message is automatically generated to use our contacts for c=\r\nommunication. =0D=0A =0D=0A =0D=0A =0D=0AContact us. =0D=0ATelegram - @F=\r\needbackFormEU =0D=0ASkype  FeedbackForm2019 =0D=0AEmail - FeedbackForm@m=\r\nake-success.com=0A=0A-- =0AThis e-mail was sent from a contact form on S=\r\ntem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatm=\r\nent - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <b2031f193d65dd3a92f80a0e0c22b5a8@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6545,2590,'_wp_old_date','2019-08-11'),(6546,2684,'_subject','[your-subject]'),(6547,2684,'_from','Larryfus <raphaeIcosecoerics@gmail.com>'),(6548,2684,'_from_name','Larryfus'),(6549,2684,'_from_email','raphaeIcosecoerics@gmail.com'),(6550,2684,'_field_your-name','Larryfus'),(6551,2684,'_field_your-email','raphaeIcosecoerics@gmail.com'),(6552,2684,'_field_phone','83555198965'),(6553,2684,'_field_service','3pm-5pm'),(6554,2684,'_field_your-message','Hi!  drfields.com \r\n \r\nWe present oneself \r\n \r\nSending your business proposition through the feedback form which can be found on the sites in the contact partition. Contact form are filled in by our application and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This technique raise the chances that your message will be read. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com'),(6555,2684,'_field_otherquestion','Hi!  drfields.com \r\n \r\nWe present oneself \r\n \r\nSending your business proposition through the feedback form which can be found on the sites in the contact partition. Contact form are filled in by our application and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This technique raise the chances that your message will be read. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com'),(6556,2684,'_field_submit','Send'),(6557,2684,'_fields','a:7:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;s:6:\"submit\";N;}'),(6558,2684,'_meta','a:19:{s:13:\"serial_number\";i:52;s:9:\"remote_ip\";s:11:\"108.62.5.91\";s:10:\"user_agent\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 1, 2019\";s:4:\"time\";s:7:\"9:01 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6559,2684,'_akismet',NULL),(6560,2684,'_recaptcha','a:0:{}'),(6561,2684,'_spam_log','a:0:{}'),(6562,2684,'_consent','a:0:{}'),(6563,2685,'success','1'),(6564,2685,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6565,2685,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6566,2685,'reply_to_header','daniel_hernandez22@live.com'),(6567,2685,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6568,2685,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6569,2685,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6570,2685,'original_message','From: Ronaldthozy \nEmail: daniel_hernandez22@live.com\nPhone: 84393729964\n\nService:1pm-3pm\n\nMessage Body:\nPrefer note a kindoffer in place of you. http://geouticneutsel.tk/9r9us\n\nAny Other Comments:\nPrefer note a kindoffer in place of you. http://geouticneutsel.tk/9r9us\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6571,2685,'original_headers','a:0:{}'),(6572,2685,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR15CA0008.outlook.office365.com Microsoft ESMTP MAIL Service ready at Mon, 2 Sep 2019 08:28:53 +0000\r\nEHLO drfields.com\r\n250-MN2PR15CA0008.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR15CA0008.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: daniel_hernandez22@live.com\r\nMessage-Id: <5452370c4e265796207b03ed176cffdd@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Mon, 02 Sep 2019 08:28:53 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Ronaldthozy =0AEmail: daniel_hernandez22@live.com=0APhone: 8439372=\r\n9964=0A=0AService:1pm-3pm=0A=0AMessage Body:=0APrefer note a kindoffer i=\r\nn place of you. http://geouticneutsel.tk/9r9us=0A=0AAny Other Comments:=\r\n=0APrefer note a kindoffer in place of you. http://geouticneutsel.tk/9r9=\r\nus=0A=0A-- =0AThis e-mail was sent from a contact form on Stem Cell PRP=\r\n Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fie=\r\nlds (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <5452370c4e265796207b03ed176cffdd@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6573,2686,'_email','daniel_hernandez22@live.com'),(6574,2686,'_name','Ronaldthozy'),(6575,2686,'_props','a:0:{}'),(6576,2686,'_last_contacted','2019-09-02 08:28:56'),(6577,2687,'_subject','[your-subject]'),(6578,2687,'_from','Ronaldthozy <daniel_hernandez22@live.com>'),(6579,2687,'_from_name','Ronaldthozy'),(6580,2687,'_from_email','daniel_hernandez22@live.com'),(6581,2687,'_field_your-name','Ronaldthozy'),(6582,2687,'_field_your-email','daniel_hernandez22@live.com'),(6583,2687,'_field_phone','84393729964'),(6584,2687,'_field_service','1pm-3pm'),(6585,2687,'_field_your-message','Prefer note a kindoffer in place of you. http://geouticneutsel.tk/9r9us'),(6586,2687,'_field_otherquestion','Prefer note a kindoffer in place of you. http://geouticneutsel.tk/9r9us'),(6587,2687,'_field_submit','Send'),(6588,2687,'_fields','a:7:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;s:6:\"submit\";N;}'),(6589,2687,'_meta','a:19:{s:13:\"serial_number\";i:53;s:9:\"remote_ip\";s:13:\"85.206.165.15\";s:10:\"user_agent\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 2, 2019\";s:4:\"time\";s:7:\"8:28 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6590,2687,'_akismet',NULL),(6591,2687,'_recaptcha','a:0:{}'),(6592,2687,'_spam_log','a:0:{}'),(6593,2687,'_consent','a:0:{}'),(6594,2688,'success','1'),(6595,2688,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6596,2688,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6597,2688,'reply_to_header','eric@talkwithcustomer.com'),(6598,2688,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6599,2688,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6600,2688,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6601,2688,'original_message','From: Eric \nEmail: eric@talkwithcustomer.com\nPhone: 416-385-3200\n\nService:9am-11am\n\nMessage Body:\nHello drfields.com,\r\n\r\nPeople ask, “why does TalkWithCustomer work so well?”\r\n\r\nIt’s simple.\r\n\r\nTalkWithCustomer enables you to connect with a prospective customer at EXACTLY the Perfect Time.\r\n\r\n- NOT one week, two weeks, three weeks after they’ve checked out your website drfields.com.\r\n- NOT with a form letter style email that looks like it was written by a bot.\r\n- NOT with a robocall that could come at any time out of the blue.\r\n\r\nTalkWithCustomer connects you to that person within seconds of THEM asking to hear from YOU.\r\n\r\nThey kick off the conversation.\r\n\r\nThey take that first step.\r\n\r\nThey ask to hear from you regarding what you have to offer and how it can make their life better. \r\n\r\nAnd it happens almost immediately. In real time. While they’re still looking over your website drfields.com, trying to make up their mind whether you are right for them.\r\n\r\nWhen you connect with them at that very moment it’s the ultimate in Perfect Timing – as one famous marketer put it, “you’re entering the conversation already going on in their mind.”\r\n\r\nYou can’t find a better opportunity than that.\r\n\r\nAnd you can’t find an easier way to seize that chance than TalkWithCustomer. \r\n\r\nCLICK HERE http://www.talkwithcustomer.com now to take a free, 14-day test drive and see what a difference “Perfect Timing” can make to your business.\r\n\r\nSincerely,\r\nEric\r\n\r\nPS:  If you’re wondering whether NOW is the perfect time to try TalkWithCustomer, ask yourself this:\r\n“Will doing what I’m already doing now produce up to 100X more leads?”\r\nBecause those are the kinds of results we know TalkWithCustomer can deliver.  \r\nIt shouldn’t even be a question, especially since it will cost you ZERO to give it a try. \r\nCLICK HERE http://www.talkwithcustomer.com to start your free 14-day test drive today.\r\n\r\nIf you\'d like to unsubscribe click here http://liveserveronline.com/talkwithcustomer.aspx?d=drfields.com\n\nAny Other Comments:\nHello drfields.com,\r\n\r\nPeople ask, “why does TalkWithCustomer work so well?”\r\n\r\nIt’s simple.\r\n\r\nTalkWithCustomer enables you to connect with a prospective customer at EXACTLY the Perfect Time.\r\n\r\n- NOT one week, two weeks, three weeks after they’ve checked out your website drfields.com.\r\n- NOT with a form letter style email that looks like it was written by a bot.\r\n- NOT with a robocall that could come at any time out of the blue.\r\n\r\nTalkWithCustomer connects you to that person within seconds of THEM asking to hear from YOU.\r\n\r\nThey kick off the conversation.\r\n\r\nThey take that first step.\r\n\r\nThey ask to hear from you regarding what you have to offer and how it can make their life better. \r\n\r\nAnd it happens almost immediately. In real time. While they’re still looking over your website drfields.com, trying to make up their mind whether you are right for them.\r\n\r\nWhen you connect with them at that very moment it’s the ultimate in Perfect Timing – as one famous marketer put it, “you’re entering the conversation already going on in their mind.”\r\n\r\nYou can’t find a better opportunity than that.\r\n\r\nAnd you can’t find an easier way to seize that chance than TalkWithCustomer. \r\n\r\nCLICK HERE http://www.talkwithcustomer.com now to take a free, 14-day test drive and see what a difference “Perfect Timing” can make to your business.\r\n\r\nSincerely,\r\nEric\r\n\r\nPS:  If you’re wondering whether NOW is the perfect time to try TalkWithCustomer, ask yourself this:\r\n“Will doing what I’m already doing now produce up to 100X more leads?”\r\nBecause those are the kinds of results we know TalkWithCustomer can deliver.  \r\nIt shouldn’t even be a question, especially since it will cost you ZERO to give it a try. \r\nCLICK HERE http://www.talkwithcustomer.com to start your free 14-day test drive today.\r\n\r\nIf you\'d like to unsubscribe click here http://liveserveronline.com/talkwithcustomer.aspx?d=drfields.com\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6602,2688,'original_headers','a:0:{}'),(6603,2688,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR20CA0019.outlook.office365.com Microsoft ESMTP MAIL Service ready at Tue, 3 Sep 2019 05:35:08 +0000\r\nEHLO drfields.com\r\n250-MN2PR20CA0019.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR20CA0019.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: eric@talkwithcustomer.com\r\nMessage-Id: <4d90fc5e67cd19e1bb7f939ec0af181a@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Tue, 03 Sep 2019 05:35:08 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Eric =0AEmail: eric@talkwithcustomer.com=0APhone: 416-385-3200=0A=\r\n=0AService:9am-11am=0A=0AMessage Body:=0AHello drfields.com,=0D=0A=0D=0A=\r\nPeople ask, =E2=80=9Cwhy does TalkWithCustomer work so well?=E2=80=9D=0D=\r\n=0A=0D=0AIt=E2=80=99s simple.=0D=0A=0D=0ATalkWithCustomer enables you to=\r\n connect with a prospective customer at EXACTLY the Perfect Time.=0D=0A=\r\n=0D=0A- NOT one week, two weeks, three weeks after they=E2=80=99ve check=\r\ned out your website drfields.com.=0D=0A- NOT with a form letter style em=\r\nail that looks like it was written by a bot.=0D=0A- NOT with a robocall=\r\n that could come at any time out of the blue.=0D=0A=0D=0ATalkWithCustome=\r\nr connects you to that person within seconds of THEM asking to hear from=\r\n YOU.=0D=0A=0D=0AThey kick off the conversation.=0D=0A=0D=0AThey take th=\r\nat first step.=0D=0A=0D=0AThey ask to hear from you regarding what you h=\r\nave to offer and how it can make their life better. =0D=0A=0D=0AAnd it h=\r\nappens almost immediately. In real time. While they=E2=80=99re still loo=\r\nking over your website drfields.com, trying to make up their mind whethe=\r\nr you are right for them.=0D=0A=0D=0AWhen you connect with them at that=\r\n very moment it=E2=80=99s the ultimate in Perfect Timing =E2=80=93 as on=\r\ne famous marketer put it, =E2=80=9Cyou=E2=80=99re entering the conversat=\r\nion already going on in their mind.=E2=80=9D=0D=0A=0D=0AYou can=E2=80=99=\r\nt find a better opportunity than that.=0D=0A=0D=0AAnd you can=E2=80=99t=\r\n find an easier way to seize that chance than TalkWithCustomer. =0D=0A=\r\n=0D=0ACLICK HERE http://www.talkwithcustomer.com now to take a free, 14-=\r\nday test drive and see what a difference =E2=80=9CPerfect Timing=E2=80=\r\n=9D can make to your business.=0D=0A=0D=0ASincerely,=0D=0AEric=0D=0A=0D=\r\n=0APS:  If you=E2=80=99re wondering whether NOW is the perfect time to t=\r\nry TalkWithCustomer, ask yourself this:=0D=0A=E2=80=9CWill doing what I=\r\n=E2=80=99m already doing now produce up to 100X more leads?=E2=80=9D=0D=\r\n=0ABecause those are the kinds of results we know TalkWithCustomer can d=\r\neliver.  =0D=0AIt shouldn=E2=80=99t even be a question, especially since=\r\n it will cost you ZERO to give it a try. =0D=0ACLICK HERE http://www.tal=\r\nkwithcustomer.com to start your free 14-day test drive today.=0D=0A=0D=\r\n=0AIf you\'d like to unsubscribe click here http://liveserveronline.com/t=\r\nalkwithcustomer.aspx?d=3Ddrfields.com=0A=0AAny Other Comments:=0AHello d=\r\nrfields.com,=0D=0A=0D=0APeople ask, =E2=80=9Cwhy does TalkWithCustomer w=\r\nork so well?=E2=80=9D=0D=0A=0D=0AIt=E2=80=99s simple.=0D=0A=0D=0ATalkWit=\r\nhCustomer enables you to connect with a prospective customer at EXACTLY=\r\n the Perfect Time.=0D=0A=0D=0A- NOT one week, two weeks, three weeks aft=\r\ner they=E2=80=99ve checked out your website drfields.com.=0D=0A- NOT wit=\r\nh a form letter style email that looks like it was written by a bot.=0D=\r\n=0A- NOT with a robocall that could come at any time out of the blue.=0D=\r\n=0A=0D=0ATalkWithCustomer connects you to that person within seconds of=\r\n THEM asking to hear from YOU.=0D=0A=0D=0AThey kick off the conversation=\r\n..=0D=0A=0D=0AThey take that first step.=0D=0A=0D=0AThey ask to hear from=\r\n you regarding what you have to offer and how it can make their life bet=\r\nter. =0D=0A=0D=0AAnd it happens almost immediately. In real time. While=\r\n they=E2=80=99re still looking over your website drfields.com, trying to=\r\n make up their mind whether you are right for them.=0D=0A=0D=0AWhen you=\r\n connect with them at that very moment it=E2=80=99s the ultimate in Perf=\r\nect Timing =E2=80=93 as one famous marketer put it, =E2=80=9Cyou=E2=80=\r\n=99re entering the conversation already going on in their mind.=E2=80=9D=\r\n=0D=0A=0D=0AYou can=E2=80=99t find a better opportunity than that.=0D=0A=\r\n=0D=0AAnd you can=E2=80=99t find an easier way to seize that chance than=\r\n TalkWithCustomer. =0D=0A=0D=0ACLICK HERE http://www.talkwithcustomer.co=\r\nm now to take a free, 14-day test drive and see what a difference =E2=80=\r\n=9CPerfect Timing=E2=80=9D can make to your business.=0D=0A=0D=0ASincere=\r\nly,=0D=0AEric=0D=0A=0D=0APS:  If you=E2=80=99re wondering whether NOW is=\r\n the perfect time to try TalkWithCustomer, ask yourself this:=0D=0A=E2=\r\n=80=9CWill doing what I=E2=80=99m already doing now produce up to 100X m=\r\nore leads?=E2=80=9D=0D=0ABecause those are the kinds of results we know=\r\n TalkWithCustomer can deliver.  =0D=0AIt shouldn=E2=80=99t even be a que=\r\nstion, especially since it will cost you ZERO to give it a try. =0D=0ACL=\r\nICK HERE http://www.talkwithcustomer.com to start your free 14-day test=\r\n drive today.=0D=0A=0D=0AIf you\'d like to unsubscribe click here http://=\r\nliveserveronline.com/talkwithcustomer.aspx?d=3Ddrfields.com=0A=0A-- =0AT=\r\nhis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Su=\r\nrgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www=\r\n..drfields.com)\r\n.\r\n250 2.0.0 OK <4d90fc5e67cd19e1bb7f939ec0af181a@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6604,2689,'_email','eric@talkwithcustomer.com'),(6605,2689,'_name','Eric'),(6606,2689,'_props','a:0:{}'),(6607,2689,'_last_contacted','2019-09-03 05:35:11'),(6608,2690,'_subject','[your-subject]'),(6609,2690,'_from','Eric <eric@talkwithcustomer.com>'),(6610,2690,'_from_name','Eric'),(6611,2690,'_from_email','eric@talkwithcustomer.com'),(6612,2690,'_field_your-name','Eric'),(6613,2690,'_field_your-email','eric@talkwithcustomer.com'),(6614,2690,'_field_phone','416-385-3200'),(6615,2690,'_field_service','9am-11am'),(6616,2690,'_field_your-message','Hello drfields.com,\r\n\r\nPeople ask, “why does TalkWithCustomer work so well?”\r\n\r\nIt’s simple.\r\n\r\nTalkWithCustomer enables you to connect with a prospective customer at EXACTLY the Perfect Time.\r\n\r\n- NOT one week, two weeks, three weeks after they’ve checked out your website drfields.com.\r\n- NOT with a form letter style email that looks like it was written by a bot.\r\n- NOT with a robocall that could come at any time out of the blue.\r\n\r\nTalkWithCustomer connects you to that person within seconds of THEM asking to hear from YOU.\r\n\r\nThey kick off the conversation.\r\n\r\nThey take that first step.\r\n\r\nThey ask to hear from you regarding what you have to offer and how it can make their life better. \r\n\r\nAnd it happens almost immediately. In real time. While they’re still looking over your website drfields.com, trying to make up their mind whether you are right for them.\r\n\r\nWhen you connect with them at that very moment it’s the ultimate in Perfect Timing – as one famous marketer put it, “you’re entering the conversation already going on in their mind.”\r\n\r\nYou can’t find a better opportunity than that.\r\n\r\nAnd you can’t find an easier way to seize that chance than TalkWithCustomer. \r\n\r\nCLICK HERE http://www.talkwithcustomer.com now to take a free, 14-day test drive and see what a difference “Perfect Timing” can make to your business.\r\n\r\nSincerely,\r\nEric\r\n\r\nPS:  If you’re wondering whether NOW is the perfect time to try TalkWithCustomer, ask yourself this:\r\n“Will doing what I’m already doing now produce up to 100X more leads?”\r\nBecause those are the kinds of results we know TalkWithCustomer can deliver.  \r\nIt shouldn’t even be a question, especially since it will cost you ZERO to give it a try. \r\nCLICK HERE http://www.talkwithcustomer.com to start your free 14-day test drive today.\r\n\r\nIf you\'d like to unsubscribe click here http://liveserveronline.com/talkwithcustomer.aspx?d=drfields.com\r\n'),(6617,2690,'_field_otherquestion','Hello drfields.com,\r\n\r\nPeople ask, “why does TalkWithCustomer work so well?”\r\n\r\nIt’s simple.\r\n\r\nTalkWithCustomer enables you to connect with a prospective customer at EXACTLY the Perfect Time.\r\n\r\n- NOT one week, two weeks, three weeks after they’ve checked out your website drfields.com.\r\n- NOT with a form letter style email that looks like it was written by a bot.\r\n- NOT with a robocall that could come at any time out of the blue.\r\n\r\nTalkWithCustomer connects you to that person within seconds of THEM asking to hear from YOU.\r\n\r\nThey kick off the conversation.\r\n\r\nThey take that first step.\r\n\r\nThey ask to hear from you regarding what you have to offer and how it can make their life better. \r\n\r\nAnd it happens almost immediately. In real time. While they’re still looking over your website drfields.com, trying to make up their mind whether you are right for them.\r\n\r\nWhen you connect with them at that very moment it’s the ultimate in Perfect Timing – as one famous marketer put it, “you’re entering the conversation already going on in their mind.”\r\n\r\nYou can’t find a better opportunity than that.\r\n\r\nAnd you can’t find an easier way to seize that chance than TalkWithCustomer. \r\n\r\nCLICK HERE http://www.talkwithcustomer.com now to take a free, 14-day test drive and see what a difference “Perfect Timing” can make to your business.\r\n\r\nSincerely,\r\nEric\r\n\r\nPS:  If you’re wondering whether NOW is the perfect time to try TalkWithCustomer, ask yourself this:\r\n“Will doing what I’m already doing now produce up to 100X more leads?”\r\nBecause those are the kinds of results we know TalkWithCustomer can deliver.  \r\nIt shouldn’t even be a question, especially since it will cost you ZERO to give it a try. \r\nCLICK HERE http://www.talkwithcustomer.com to start your free 14-day test drive today.\r\n\r\nIf you\'d like to unsubscribe click here http://liveserveronline.com/talkwithcustomer.aspx?d=drfields.com\r\n'),(6618,2690,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6619,2690,'_meta','a:19:{s:13:\"serial_number\";i:54;s:9:\"remote_ip\";s:14:\"155.94.129.119\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 3, 2019\";s:4:\"time\";s:7:\"5:35 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6620,2690,'_akismet',NULL),(6621,2690,'_recaptcha','a:0:{}'),(6622,2690,'_spam_log','a:0:{}'),(6623,2690,'_consent','a:0:{}'),(6624,2692,'_wp_attached_file','2019/09/Logo-OrthoRegen.png'),(6625,2692,'_wp_attachment_image_alt','Logo Orthoregen'),(6626,2692,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:119;s:4:\"file\";s:27:\"2019/09/Logo-OrthoRegen.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Logo-OrthoRegen-200x119.png\";s:5:\"width\";i:200;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6627,2693,'_wp_attached_file','2019/09/cropped-Logo-OrthoRegen.png'),(6628,2693,'_wp_attachment_context','custom-logo'),(6629,2693,'_wp_attachment_image_alt','Cropped Logo Orthoregen.png'),(6630,2693,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:119;s:4:\"file\";s:35:\"2019/09/cropped-Logo-OrthoRegen.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"cropped-Logo-OrthoRegen-200x119.png\";s:5:\"width\";i:200;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6635,2697,'_edit_lock','1598995280:9'),(6636,2697,'_edit_last','9'),(6637,2697,'_wp_page_template','default'),(6639,2697,'_yoast_wpseo_content_score','30'),(6640,2697,'_yoast_wpseo_primary_category','33'),(6641,2701,'_subject','[your-subject]'),(6642,2701,'_from','Bea Heller <DrBHeller@yahoo.com>'),(6643,2701,'_from_name','Bea Heller'),(6644,2701,'_from_email','DrBHeller@yahoo.com'),(6645,2701,'_field_your-name','Bea Heller'),(6646,2701,'_field_your-email','DrBHeller@yahoo.com'),(6647,2701,'_field_phone','7148980515'),(6648,2701,'_field_service','1pm-3pm'),(6649,2701,'_field_your-message','Left and right Proximal fibular heads and interosseous ligaments injured during 2 MVAs. Left head seems very subluxated. It sticks out. Makes me look bowlegged.\r\n\r\nMy ortho would not do a pain injection at the lat head on left. Severely painful when walking. Seems like nerve pinched? He thought the injection could hurt the nerve.\r\n\r\nI cannot find a DC who adjusts extremities. March Charette DC is o linger doing the Foot Leveler seminars in California.\r\n\r\nAny way you can do an a adjustment to the fibular heads?\r\n\r\nThanks.\r\n\r\nBea Heller, DC'),(6650,2701,'_field_otherquestion',''),(6651,2701,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6652,2701,'_meta','a:19:{s:13:\"serial_number\";i:55;s:9:\"remote_ip\";s:13:\"98.148.136.25\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 4, 2019\";s:4:\"time\";s:7:\"7:00 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6653,2701,'_akismet',NULL),(6654,2701,'_recaptcha','a:0:{}'),(6655,2701,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:34:\"reCAPTCHA response token is empty.\";}}'),(6656,2701,'_consent','a:0:{}'),(6657,2702,'_subject','[your-subject]'),(6658,2702,'_from','Bea Heller <DrBHeller@yahoo.com>'),(6659,2702,'_from_name','Bea Heller'),(6660,2702,'_from_email','DrBHeller@yahoo.com'),(6661,2702,'_field_your-name','Bea Heller'),(6662,2702,'_field_your-email','DrBHeller@yahoo.com'),(6663,2702,'_field_phone','7148980515'),(6664,2702,'_field_service','1pm-3pm'),(6665,2702,'_field_your-message','Left and right Proximal fibular heads and interosseous ligaments injured during 2 MVAs. Left head seems very subluxated. It sticks out. Makes me look bowlegged.\r\n\r\nMy ortho would not do a pain injection at the lat head on left. Severely painful when walking. Seems like nerve pinched? He thought the injection could hurt the nerve.\r\n\r\nI cannot find a DC who adjusts extremities. March Charette DC is no longer doing the Foot Leveler seminars in California.\r\n\r\nAny way you can do an a adjustment to the fibular heads?\r\n\r\nThanks.\r\n\r\nBea Heller, DC'),(6666,2702,'_field_otherquestion',''),(6667,2702,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6668,2702,'_meta','a:19:{s:13:\"serial_number\";i:55;s:9:\"remote_ip\";s:13:\"98.148.136.25\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 4, 2019\";s:4:\"time\";s:7:\"7:01 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6669,2702,'_akismet',NULL),(6670,2702,'_recaptcha','a:0:{}'),(6671,2702,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:34:\"reCAPTCHA response token is empty.\";}}'),(6672,2702,'_consent','a:0:{}'),(6673,2703,'_subject','[your-subject]'),(6674,2703,'_from','test <pcc@drfields.com>'),(6675,2703,'_from_name','test'),(6676,2703,'_from_email','pcc@drfields.com'),(6677,2703,'_field_your-name','test'),(6678,2703,'_field_your-email','pcc@drfields.com'),(6679,2703,'_field_phone','3238612243'),(6680,2703,'_field_service','9am-11am'),(6681,2703,'_field_your-message','test'),(6682,2703,'_field_otherquestion','test'),(6683,2703,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6684,2703,'_meta','a:19:{s:13:\"serial_number\";i:55;s:9:\"remote_ip\";s:15:\"206.192.206.237\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 4, 2019\";s:4:\"time\";s:7:\"7:21 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6685,2703,'_akismet',NULL),(6686,2703,'_recaptcha','a:0:{}'),(6687,2703,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:34:\"reCAPTCHA response token is empty.\";}}'),(6688,2703,'_consent','a:0:{}'),(6689,2704,'_subject','[your-subject]'),(6690,2704,'_from','test <pcc@drfields.com>'),(6691,2704,'_from_name','test'),(6692,2704,'_from_email','pcc@drfields.com'),(6693,2704,'_field_your-name','test'),(6694,2704,'_field_your-email','pcc@drfields.com'),(6695,2704,'_field_phone','3238612243'),(6696,2704,'_field_service','9am-11am'),(6697,2704,'_field_your-message','test'),(6698,2704,'_field_otherquestion','test'),(6699,2704,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6700,2704,'_meta','a:19:{s:13:\"serial_number\";i:55;s:9:\"remote_ip\";s:15:\"206.192.206.237\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 4, 2019\";s:4:\"time\";s:7:\"7:40 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6701,2704,'_akismet',NULL),(6702,2704,'_recaptcha','a:0:{}'),(6703,2704,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:34:\"reCAPTCHA response token is empty.\";}}'),(6704,2704,'_consent','a:0:{}'),(6705,2705,'_subject','[your-subject]'),(6706,2705,'_from','Peter Fields MD DC <info@DrFields.com>'),(6707,2705,'_from_name','Peter Fields MD DC'),(6708,2705,'_from_email','info@DrFields.com'),(6709,2705,'_field_your-name','Peter Fields MD DC'),(6710,2705,'_field_your-email','info@DrFields.com'),(6711,2705,'_field_phone','3104531234'),(6712,2705,'_field_service','9am-11am'),(6713,2705,'_field_your-message','jjj'),(6714,2705,'_field_otherquestion',''),(6715,2705,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6716,2705,'_meta','a:19:{s:13:\"serial_number\";i:55;s:9:\"remote_ip\";s:13:\"23.242.74.137\";s:10:\"user_agent\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 4, 2019\";s:4:\"time\";s:7:\"7:40 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6717,2705,'_akismet',NULL),(6718,2705,'_recaptcha','a:0:{}'),(6719,2705,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:34:\"reCAPTCHA response token is empty.\";}}'),(6720,2705,'_consent','a:0:{}'),(6721,2706,'_subject','[your-subject]'),(6722,2706,'_from','test <pcc@drfields.com>'),(6723,2706,'_from_name','test'),(6724,2706,'_from_email','pcc@drfields.com'),(6725,2706,'_field_your-name','test'),(6726,2706,'_field_your-email','pcc@drfields.com'),(6727,2706,'_field_phone','3238612243'),(6728,2706,'_field_service','9am-11am'),(6729,2706,'_field_your-message','test'),(6730,2706,'_field_otherquestion','test'),(6731,2706,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6732,2706,'_meta','a:19:{s:13:\"serial_number\";i:55;s:9:\"remote_ip\";s:15:\"206.192.206.237\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 4, 2019\";s:4:\"time\";s:7:\"7:40 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6733,2706,'_akismet',NULL),(6734,2706,'_recaptcha','a:0:{}'),(6735,2706,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:34:\"reCAPTCHA response token is empty.\";}}'),(6736,2706,'_consent','a:0:{}'),(6737,2707,'_subject','[your-subject]'),(6738,2707,'_from','Peter Fields MD DC <info@DrFields.com>'),(6739,2707,'_from_name','Peter Fields MD DC'),(6740,2707,'_from_email','info@DrFields.com'),(6741,2707,'_field_your-name','Peter Fields MD DC'),(6742,2707,'_field_your-email','info@DrFields.com'),(6743,2707,'_field_phone','3104531234'),(6744,2707,'_field_service','9am-11am'),(6745,2707,'_field_your-message','jjj'),(6746,2707,'_field_otherquestion',''),(6747,2707,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6748,2707,'_meta','a:19:{s:13:\"serial_number\";i:55;s:9:\"remote_ip\";s:13:\"23.242.74.137\";s:10:\"user_agent\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 4, 2019\";s:4:\"time\";s:7:\"7:40 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6749,2707,'_akismet',NULL),(6750,2707,'_recaptcha','a:0:{}'),(6751,2707,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:34:\"reCAPTCHA response token is empty.\";}}'),(6752,2707,'_consent','a:0:{}'),(6753,2708,'_subject','[your-subject]'),(6754,2708,'_from','Zeke <ezekiel@websitedepot.com>'),(6755,2708,'_from_name','Zeke'),(6756,2708,'_from_email','ezekiel@websitedepot.com'),(6757,2708,'_field_your-name','Zeke '),(6758,2708,'_field_your-email','ezekiel@websitedepot.com'),(6759,2708,'_field_phone','213-332-9255'),(6760,2708,'_field_service','9am-11am'),(6761,2708,'_field_your-message','This is a test of the contact form.'),(6762,2708,'_field_otherquestion','Comments for test of contact inquiries'),(6763,2708,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6764,2708,'_meta','a:19:{s:13:\"serial_number\";i:55;s:9:\"remote_ip\";s:15:\"172.118.143.212\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 4, 2019\";s:4:\"time\";s:7:\"7:44 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6765,2708,'_akismet',NULL),(6766,2708,'_recaptcha','a:0:{}'),(6767,2708,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:34:\"reCAPTCHA response token is empty.\";}}'),(6768,2708,'_consent','a:0:{}'),(6769,2709,'_subject','[your-subject]'),(6770,2709,'_from','Alan Rakin INSURANCE SERVICES <ezekiel@websitesdepot.com>'),(6771,2709,'_from_name','Alan Rakin INSURANCE SERVICES'),(6772,2709,'_from_email','ezekiel@websitesdepot.com'),(6773,2709,'_field_your-name','Alan Rakin INSURANCE SERVICES'),(6774,2709,'_field_your-email','ezekiel@websitesdepot.com'),(6775,2709,'_field_phone','8002549164'),(6776,2709,'_field_service','11am-1pm'),(6777,2709,'_field_your-message','test'),(6778,2709,'_field_otherquestion','test'),(6779,2709,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6780,2709,'_meta','a:19:{s:13:\"serial_number\";i:55;s:9:\"remote_ip\";s:15:\"172.118.143.212\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 4, 2019\";s:4:\"time\";s:7:\"7:48 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6781,2709,'_akismet',NULL),(6782,2709,'_recaptcha','a:0:{}'),(6783,2709,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:34:\"reCAPTCHA response token is empty.\";}}'),(6784,2709,'_consent','a:0:{}'),(6785,2710,'_subject','[your-subject]'),(6786,2710,'_from','Peter Fields MD DC <info@DrFields.com>'),(6787,2710,'_from_name','Peter Fields MD DC'),(6788,2710,'_from_email','info@DrFields.com'),(6789,2710,'_field_your-name','Peter Fields MD DC'),(6790,2710,'_field_your-email','info@DrFields.com'),(6791,2710,'_field_phone','3104531234'),(6792,2710,'_field_service','9am-11am'),(6793,2710,'_field_your-message','jjj'),(6794,2710,'_field_otherquestion',''),(6795,2710,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6796,2710,'_meta','a:19:{s:13:\"serial_number\";i:55;s:9:\"remote_ip\";s:13:\"23.242.74.137\";s:10:\"user_agent\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 4, 2019\";s:4:\"time\";s:7:\"7:54 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6797,2710,'_akismet',NULL),(6798,2710,'_recaptcha','a:0:{}'),(6799,2710,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:34:\"reCAPTCHA response token is empty.\";}}'),(6800,2710,'_consent','a:0:{}'),(6801,2711,'_subject','[your-subject]'),(6802,2711,'_from','Peter Fields MD DC <info@DrFields.com>'),(6803,2711,'_from_name','Peter Fields MD DC'),(6804,2711,'_from_email','info@DrFields.com'),(6805,2711,'_field_your-name','Peter Fields MD DC'),(6806,2711,'_field_your-email','info@DrFields.com'),(6807,2711,'_field_phone','3104531234'),(6808,2711,'_field_service','9am-11am'),(6809,2711,'_field_your-message','jjj'),(6810,2711,'_field_otherquestion',''),(6811,2711,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6812,2711,'_meta','a:19:{s:13:\"serial_number\";i:55;s:9:\"remote_ip\";s:13:\"23.242.74.137\";s:10:\"user_agent\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 4, 2019\";s:4:\"time\";s:7:\"7:54 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6813,2711,'_akismet',NULL),(6814,2711,'_recaptcha','a:0:{}'),(6815,2711,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:34:\"reCAPTCHA response token is empty.\";}}'),(6816,2711,'_consent','a:0:{}'),(6817,2712,'_subject','[your-subject]'),(6818,2712,'_from','chad <chad@websitesdepot.com>'),(6819,2712,'_from_name','chad'),(6820,2712,'_from_email','chad@websitesdepot.com'),(6821,2712,'_field_your-name','chad'),(6822,2712,'_field_your-email','chad@websitesdepot.com'),(6823,2712,'_field_phone','3237418490'),(6824,2712,'_field_service','11am-1pm'),(6825,2712,'_field_your-message','test'),(6826,2712,'_field_otherquestion','test'),(6827,2712,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6828,2712,'_meta','a:19:{s:13:\"serial_number\";i:55;s:9:\"remote_ip\";s:15:\"208.251.181.122\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 4, 2019\";s:4:\"time\";s:7:\"8:10 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6829,2712,'_akismet',NULL),(6830,2712,'_recaptcha','a:0:{}'),(6831,2712,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:34:\"reCAPTCHA response token is empty.\";}}'),(6832,2712,'_consent','a:0:{}'),(6833,2713,'success','1'),(6834,2713,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6835,2713,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6836,2713,'reply_to_header','chad@websitesdepot.com'),(6837,2713,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6838,2713,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6839,2713,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6840,2713,'original_message','From: chad \nEmail: chad@websitesdepot.com\nPhone: 3237418490\n\nService:1pm-3pm\n\nMessage Body:\ntest\n\nAny Other Comments:\ntest\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6841,2713,'original_headers','a:0:{}'),(6842,2713,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR13CA0016.outlook.office365.com Microsoft ESMTP MAIL Service ready at Wed, 4 Sep 2019 20:11:20 +0000\r\nEHLO drfields.com\r\n250-MN2PR13CA0016.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR13CA0016.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: chad@websitesdepot.com\r\nMessage-Id: <4abfb80160eb769c3c02d2342c44cead@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Wed, 04 Sep 2019 20:11:20 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: chad =0AEmail: chad@websitesdepot.com=0APhone: 3237418490=0A=0ASer=\r\nvice:1pm-3pm=0A=0AMessage Body:=0Atest=0A=0AAny Other Comments:=0Atest=\r\n=0A=0A-- =0AThis e-mail was sent from a contact form on Stem Cell PRP Pr=\r\nolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields=\r\n (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <4abfb80160eb769c3c02d2342c44cead@www.drfields.com> [Hostname=MWHPR12MB1374.namprd12.prod.outlook.com]\r\n'),(6843,2626,'_wp_old_date','2019-08-21'),(6844,2714,'_subject','[your-subject]'),(6845,2714,'_from','chad <chad@websitesdepot.com>'),(6846,2714,'_from_name','chad'),(6847,2714,'_from_email','chad@websitesdepot.com'),(6848,2714,'_field_your-name','chad'),(6849,2714,'_field_your-email','chad@websitesdepot.com'),(6850,2714,'_field_phone','3237418490'),(6851,2714,'_field_service','1pm-3pm'),(6852,2714,'_field_your-message','test'),(6853,2714,'_field_otherquestion','test'),(6854,2714,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6855,2714,'_meta','a:19:{s:13:\"serial_number\";i:55;s:9:\"remote_ip\";s:15:\"208.251.181.122\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 4, 2019\";s:4:\"time\";s:7:\"8:11 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6856,2714,'_akismet',NULL),(6857,2714,'_recaptcha','a:0:{}'),(6858,2714,'_spam_log','a:0:{}'),(6859,2714,'_consent','a:0:{}'),(6860,2715,'success','1'),(6861,2715,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6862,2715,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6863,2715,'reply_to_header','ezekiel@seoexpertdanny.com'),(6864,2715,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6865,2715,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6866,2715,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6867,2715,'original_message','From: Zeke \nEmail: ezekiel@seoexpertdanny.com\nPhone: 3239121105\n\nService:11am-1pm\n\nMessage Body:\nThis is a test\n\nAny Other Comments:\nThis is only a test\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6868,2715,'original_headers','a:0:{}'),(6869,2715,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR17CA0012.outlook.office365.com Microsoft ESMTP MAIL Service ready at Wed, 4 Sep 2019 20:47:12 +0000\r\nEHLO drfields.com\r\n250-MN2PR17CA0012.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR17CA0012.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: ezekiel@seoexpertdanny.com\r\nMessage-Id: <60ceaac31b95aa0f8d530d205e326add@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Wed, 04 Sep 2019 20:47:12 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Zeke =0AEmail: ezekiel@seoexpertdanny.com=0APhone: 3239121105=0A=\r\n=0AService:11am-1pm=0A=0AMessage Body:=0AThis is a test=0A=0AAny Other C=\r\nomments:=0AThis is only a test=0A=0A-- =0AThis e-mail was sent from a co=\r\nntact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic=\r\n Medicine Treatment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <60ceaac31b95aa0f8d530d205e326add@www.drfields.com> [Hostname=MWHPR12MB1374.namprd12.prod.outlook.com]\r\n'),(6870,2716,'_email','ezekiel@seoexpertdanny.com'),(6871,2716,'_name','Zeke'),(6872,2716,'_props','a:0:{}'),(6873,2716,'_last_contacted','2019-09-04 20:47:17'),(6874,2717,'_subject','[your-subject]'),(6875,2717,'_from','Zeke <ezekiel@seoexpertdanny.com>'),(6876,2717,'_from_name','Zeke'),(6877,2717,'_from_email','ezekiel@seoexpertdanny.com'),(6878,2717,'_field_your-name','Zeke'),(6879,2717,'_field_your-email','ezekiel@seoexpertdanny.com'),(6880,2717,'_field_phone','3239121105'),(6881,2717,'_field_service','11am-1pm'),(6882,2717,'_field_your-message','This is a test'),(6883,2717,'_field_otherquestion','This is only a test'),(6884,2717,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6885,2717,'_meta','a:19:{s:13:\"serial_number\";i:56;s:9:\"remote_ip\";s:15:\"172.118.143.212\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 4, 2019\";s:4:\"time\";s:7:\"8:47 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6886,2717,'_akismet',NULL),(6887,2717,'_recaptcha','a:0:{}'),(6888,2717,'_spam_log','a:0:{}'),(6889,2717,'_consent','a:0:{}'),(6890,2718,'success','1'),(6891,2718,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6892,2718,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6893,2718,'reply_to_header','jezcolin@mac.com'),(6894,2718,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6895,2718,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6896,2718,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6897,2718,'original_message','From: Jeremy Colin \nEmail: jezcolin@mac.com\nPhone: 323 3504437\n\nService:9am-11am\n\nMessage Body:\nI am a 55 year old male with an arthritic right hip. Labral tear, and FAI conditions have caused pain for several years, but ramping up now. I\'ve used P.T with varying degrees of success. I\'m attempting to delay surgery (hip replacement) as long as possible.\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6898,2718,'original_headers','a:0:{}'),(6899,2718,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR20CA0002.outlook.office365.com Microsoft ESMTP MAIL Service ready at Thu, 5 Sep 2019 00:15:49 +0000\r\nEHLO drfields.com\r\n250-MN2PR20CA0002.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR20CA0002.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: jezcolin@mac.com\r\nMessage-Id: <6c93e196e54962d2d138477a129c046a@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Thu, 05 Sep 2019 00:15:50 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Jeremy Colin =0AEmail: jezcolin@mac.com=0APhone: 323 3504437=0A=0A=\r\nService:9am-11am=0A=0AMessage Body:=0AI am a 55 year old male with an ar=\r\nthritic right hip. Labral tear, and FAI conditions have caused pain for=\r\n several years, but ramping up now. I\'ve used P.T with varying degrees o=\r\nf success. I\'m attempting to delay surgery (hip replacement) as long as=\r\n possible.=0A=0AAny Other Comments:=0A=0A=0A-- =0AThis e-mail was sent f=\r\nrom a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Ort=\r\nhopedic Medicine Treatment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <6c93e196e54962d2d138477a129c046a@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6900,2719,'_email','jezcolin@mac.com'),(6901,2719,'_name','Jeremy Colin'),(6902,2719,'_props','a:0:{}'),(6903,2719,'_last_contacted','2019-09-05 00:15:52'),(6904,2720,'_subject','[your-subject]'),(6905,2720,'_from','Jeremy Colin <jezcolin@mac.com>'),(6906,2720,'_from_name','Jeremy Colin'),(6907,2720,'_from_email','jezcolin@mac.com'),(6908,2720,'_field_your-name','Jeremy Colin'),(6909,2720,'_field_your-email','jezcolin@mac.com'),(6910,2720,'_field_phone','323 3504437'),(6911,2720,'_field_service','9am-11am'),(6912,2720,'_field_your-message','I am a 55 year old male with an arthritic right hip. Labral tear, and FAI conditions have caused pain for several years, but ramping up now. I\'ve used P.T with varying degrees of success. I\'m attempting to delay surgery (hip replacement) as long as possible.'),(6913,2720,'_field_otherquestion',''),(6914,2720,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6915,2720,'_meta','a:19:{s:13:\"serial_number\";i:57;s:9:\"remote_ip\";s:13:\"47.156.155.79\";s:10:\"user_agent\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 5, 2019\";s:4:\"time\";s:8:\"12:15 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6916,2720,'_akismet',NULL),(6917,2720,'_recaptcha','a:0:{}'),(6918,2720,'_spam_log','a:0:{}'),(6919,2720,'_consent','a:0:{}'),(6920,2721,'success','1'),(6921,2721,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6922,2721,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6923,2721,'reply_to_header','dmost8@gmail.com'),(6924,2721,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6925,2721,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6926,2721,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6927,2721,'original_message','From: Don Most \nEmail: dmost8@gmail.com\nPhone: 8052086329\n\nService:9am-11am\n\nMessage Body:\nI’ve had lower back problems for over 35 years as a result of a spondilolisthesis.\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6928,2721,'original_headers','a:0:{}'),(6929,2721,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BN8PR07CA0030.outlook.office365.com Microsoft ESMTP MAIL Service ready at Thu, 5 Sep 2019 15:47:58 +0000\r\nEHLO drfields.com\r\n250-BN8PR07CA0030.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BN8PR07CA0030.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: dmost8@gmail.com\r\nMessage-Id: <1e025e3b484332751eeac2f0cf8ba6dd@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Thu, 05 Sep 2019 15:47:58 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Don Most =0AEmail: dmost8@gmail.com=0APhone: 8052086329=0A=0AServi=\r\nce:9am-11am=0A=0AMessage Body:=0AI=E2=80=99ve had lower back problems fo=\r\nr over 35 years as a result of a spondilolisthesis.=0A=0AAny Other Comme=\r\nnts:=0A=0A=0A-- =0AThis e-mail was sent from a contact form on Stem Cell=\r\n PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr=\r\n Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <1e025e3b484332751eeac2f0cf8ba6dd@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6930,2722,'_email','dmost8@gmail.com'),(6931,2722,'_name','Don Most'),(6932,2722,'_props','a:0:{}'),(6933,2722,'_last_contacted','2019-09-05 15:48:00'),(6934,2723,'_subject','[your-subject]'),(6935,2723,'_from','Don Most <dmost8@gmail.com>'),(6936,2723,'_from_name','Don Most'),(6937,2723,'_from_email','dmost8@gmail.com'),(6938,2723,'_field_your-name','Don Most'),(6939,2723,'_field_your-email','dmost8@gmail.com'),(6940,2723,'_field_phone','8052086329'),(6941,2723,'_field_service','9am-11am'),(6942,2723,'_field_your-message','I’ve had lower back problems for over 35 years as a result of a spondilolisthesis.'),(6943,2723,'_field_otherquestion',''),(6944,2723,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(6945,2723,'_meta','a:19:{s:13:\"serial_number\";i:58;s:9:\"remote_ip\";s:15:\"107.185.220.140\";s:10:\"user_agent\";s:139:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_3_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 5, 2019\";s:4:\"time\";s:7:\"3:47 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6946,2723,'_akismet',NULL),(6947,2723,'_recaptcha','a:0:{}'),(6948,2723,'_spam_log','a:0:{}'),(6949,2723,'_consent','a:0:{}'),(6950,2724,'_wp_attached_file','2019/09/raymond.jpg'),(6951,2724,'_wp_attachment_image_alt','Raymond'),(6952,2724,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:19:\"2019/09/raymond.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"raymond-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(6953,2725,'_wp_attached_file','2019/09/stefan.jpg'),(6954,2725,'_wp_attachment_image_alt','Stefan'),(6955,2725,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:18:\"2019/09/stefan.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"stefan-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(6956,2726,'_wp_attached_file','2019/09/tom.jpg'),(6957,2726,'_wp_attachment_image_alt','Tom'),(6958,2726,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/09/tom.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"tom-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(6959,2727,'_wp_attached_file','2019/09/bob.jpg'),(6960,2727,'_wp_attachment_image_alt','Bob'),(6961,2727,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/09/bob.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bob-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(6962,2728,'_wp_attached_file','2019/09/dave.jpg'),(6963,2728,'_wp_attachment_image_alt','Dave'),(6964,2728,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:16:\"2019/09/dave.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"dave-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(6965,2729,'_wp_attached_file','2019/09/kelsey.jpg'),(6966,2729,'_wp_attachment_image_alt','Kelsey'),(6967,2729,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:18:\"2019/09/kelsey.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"kelsey-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(6968,2735,'_wp_attached_file','2019/09/Peter-Neck.jpg'),(6969,2735,'_wp_attachment_image_alt','Peter Neck'),(6970,2735,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:22:\"2019/09/Peter-Neck.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Peter-Neck-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(6971,2738,'_wp_attached_file','2019/09/dr-doug.jpg'),(6972,2738,'_wp_attachment_image_alt','Dr Doug'),(6973,2738,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:19:\"2019/09/dr-doug.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"dr-doug-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(6974,2739,'_wp_attached_file','2019/09/dr-doug-1.jpg'),(6975,2739,'_wp_attachment_image_alt','Dr Doug'),(6976,2739,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:21:\"2019/09/dr-doug-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"dr-doug-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(6977,2743,'success','1'),(6978,2743,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(6979,2743,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(6980,2743,'reply_to_header','toddfrankum@me.com'),(6981,2743,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(6982,2743,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(6983,2743,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(6984,2743,'original_message','From: Todd Frankum \nEmail: toddfrankum@me.com\nPhone: 3109104317\n\nService:9am-11am\n\nMessage Body:\nFor tax purposes can I please get a summary for charges from 2016-2017 when I was patient of Dr. Fields?  I had right sciata.\r\n\r\nThank you\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(6985,2743,'original_headers','a:0:{}'),(6986,2743,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR02CA0006.outlook.office365.com Microsoft ESMTP MAIL Service ready at Mon, 9 Sep 2019 15:22:10 +0000\r\nEHLO drfields.com\r\n250-MN2PR02CA0006.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR02CA0006.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: toddfrankum@me.com\r\nMessage-Id: <c2dd84e70920063ae33b8e784227c72a@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Mon, 09 Sep 2019 15:22:10 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Todd Frankum =0AEmail: toddfrankum@me.com=0APhone: 3109104317=0A=\r\n=0AService:9am-11am=0A=0AMessage Body:=0AFor tax purposes can I please g=\r\net a summary for charges from 2016-2017 when I was patient of Dr. Fields=\r\n?  I had right sciata.=0D=0A=0D=0AThank you=0A=0AAny Other Comments:=0A=\r\n=0A=0A-- =0AThis e-mail was sent from a contact form on Stem Cell PRP Pr=\r\nolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields=\r\n (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <c2dd84e70920063ae33b8e784227c72a@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(6987,2744,'_email','toddfrankum@me.com'),(6988,2744,'_name','Todd Frankum'),(6989,2744,'_props','a:0:{}'),(6990,2744,'_last_contacted','2019-09-09 15:22:13'),(6991,2745,'_subject','[your-subject]'),(6992,2745,'_from','Todd Frankum <toddfrankum@me.com>'),(6993,2745,'_from_name','Todd Frankum'),(6994,2745,'_from_email','toddfrankum@me.com'),(6995,2745,'_field_your-name','Todd Frankum'),(6996,2745,'_field_your-email','toddfrankum@me.com'),(6997,2745,'_field_phone','3109104317'),(6998,2745,'_field_service','9am-11am'),(6999,2745,'_field_your-message','For tax purposes can I please get a summary for charges from 2016-2017 when I was patient of Dr. Fields?  I had right sciata.\r\n\r\nThank you'),(7000,2745,'_field_otherquestion',''),(7001,2745,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7002,2745,'_meta','a:19:{s:13:\"serial_number\";i:59;s:9:\"remote_ip\";s:13:\"47.144.139.62\";s:10:\"user_agent\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 9, 2019\";s:4:\"time\";s:7:\"3:22 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7003,2745,'_akismet',NULL),(7004,2745,'_recaptcha','a:0:{}'),(7005,2745,'_spam_log','a:0:{}'),(7006,2745,'_consent','a:0:{}'),(7007,2746,'_email','info@drfields.com'),(7008,2746,'_name','DrFields'),(7009,2746,'_props','a:2:{s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";}'),(7010,2746,'_last_contacted','2019-09-09 20:05:00'),(7011,2747,'success','1'),(7012,2747,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7013,2747,'to_header','admin@dentalimplantsmalibu.com'),(7014,2747,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7015,2747,'original_to','admin@dentalimplantsmalibu.com'),(7016,2747,'original_subject','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] New User Registration'),(7017,2747,'original_message','New user registration on your site Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields:\r\n\r\nUsername: DrFields\r\n\r\nEmail: info@drfields.com\r\n'),(7018,2747,'original_headers','a:0:{}'),(7019,2747,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BL0PR1501CA0014.outlook.office365.com Microsoft ESMTP MAIL Service ready at Mon, 9 Sep 2019 19:40:05 +0000\r\nEHLO drfields.com\r\n250-BL0PR1501CA0014.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BL0PR1501CA0014.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<admin@dentalimplantsmalibu.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: admin@dentalimplantsmalibu.com\r\nMessage-Id: <7787004f3b4c44056a345bd2e21673b4@www.drfields.com>\r\nSubject: [Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] New User Registration\r\nDate: Mon, 09 Sep 2019 19:40:05 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nNew user registration on your site Stem Cell PRP Prolotherapy Surgery Al=\r\nternative Orthopedic Medicine Treatment - Dr Fields:=0D=0A=0D=0AUsername=\r\n: DrFields=0D=0A=0D=0AEmail: info@drfields.com=0D=0A\r\n.\r\n250 2.0.0 OK <7787004f3b4c44056a345bd2e21673b4@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7020,2748,'success','1'),(7021,2748,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7022,2748,'to_header','info@drfields.com'),(7023,2748,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7024,2748,'original_to','info@drfields.com'),(7025,2748,'original_subject','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Login Details'),(7026,2748,'original_message','Username: DrFields\r\n\r\nTo set your password, visit the following address:\r\n\r\n<https://www.drfields.com/wp-login.php?action=rp&key=DOxNzWzmnpcScj9ROpF6&login=DrFields>\r\n\r\nhttps://www.drfields.com/wp-login.php\r\n'),(7027,2748,'original_headers','a:0:{}'),(7028,2748,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR13CA0028.outlook.office365.com Microsoft ESMTP MAIL Service ready at Mon, 9 Sep 2019 19:40:07 +0000\r\nEHLO drfields.com\r\n250-MN2PR13CA0028.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR13CA0028.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: info@drfields.com\r\nMessage-Id: <7ed8d9bef801f0914d942a018b1c332d@www.drfields.com>\r\nSubject: [Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Login Details\r\nDate: Mon, 09 Sep 2019 19:40:07 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nUsername: DrFields=0D=0A=0D=0ATo set your password, visit the following=\r\n address:=0D=0A=0D=0A<https://www.drfields.com/wp-login.php?action=3Drp&=\r\nkey=3DDOxNzWzmnpcScj9ROpF6&login=3DDrFields>=0D=0A=0D=0Ahttps://www.drfi=\r\nelds.com/wp-login.php=0D=0A\r\n.\r\n250 2.0.0 OK <7ed8d9bef801f0914d942a018b1c332d@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7029,2750,'_wp_attached_file','2019/09/Fields_RegenB.mp3'),(7030,2750,'_wp_attachment_metadata','a:19:{s:10:\"dataformat\";s:3:\"mp3\";s:8:\"channels\";i:2;s:11:\"sample_rate\";i:44100;s:7:\"bitrate\";i:128000;s:11:\"channelmode\";s:12:\"joint stereo\";s:12:\"bitrate_mode\";s:3:\"cbr\";s:8:\"lossless\";b:0;s:15:\"encoder_options\";s:6:\"CBR128\";s:17:\"compression_ratio\";d:0.09070294784580499;s:10:\"fileformat\";s:3:\"mp3\";s:8:\"filesize\";i:940850;s:9:\"mime_type\";s:10:\"audio/mpeg\";s:6:\"length\";i:58;s:16:\"length_formatted\";s:4:\"0:58\";s:4:\"year\";s:4:\"2019\";s:4:\"date\";s:4:\"2708\";s:4:\"time\";s:4:\"1321\";s:6:\"artist\";s:0:\"\";s:5:\"album\";s:0:\"\";}'),(7031,2751,'_wp_attached_file','2019/09/Fields_PRPC.mp3'),(7032,2751,'_wp_attachment_metadata','a:19:{s:10:\"dataformat\";s:3:\"mp3\";s:8:\"channels\";i:2;s:11:\"sample_rate\";i:44100;s:7:\"bitrate\";i:128000;s:11:\"channelmode\";s:12:\"joint stereo\";s:12:\"bitrate_mode\";s:3:\"cbr\";s:8:\"lossless\";b:0;s:15:\"encoder_options\";s:6:\"CBR128\";s:17:\"compression_ratio\";d:0.09070294784580499;s:10:\"fileformat\";s:3:\"mp3\";s:8:\"filesize\";i:922500;s:9:\"mime_type\";s:10:\"audio/mpeg\";s:6:\"length\";i:57;s:16:\"length_formatted\";s:4:\"0:57\";s:4:\"year\";s:4:\"2019\";s:4:\"date\";s:4:\"2708\";s:4:\"time\";s:4:\"1322\";s:6:\"artist\";s:0:\"\";s:5:\"album\";s:0:\"\";}'),(7033,2752,'_wp_attached_file','2019/09/Fields_StemA1.mp3'),(7034,2752,'_wp_attachment_metadata','a:19:{s:10:\"dataformat\";s:3:\"mp3\";s:8:\"channels\";i:2;s:11:\"sample_rate\";i:44100;s:7:\"bitrate\";i:128000;s:11:\"channelmode\";s:12:\"joint stereo\";s:12:\"bitrate_mode\";s:3:\"cbr\";s:8:\"lossless\";b:0;s:15:\"encoder_options\";s:6:\"CBR128\";s:17:\"compression_ratio\";d:0.09070294784580499;s:10:\"fileformat\";s:3:\"mp3\";s:8:\"filesize\";i:989337;s:9:\"mime_type\";s:10:\"audio/mpeg\";s:6:\"length\";i:61;s:16:\"length_formatted\";s:4:\"1:01\";s:4:\"year\";s:4:\"2019\";s:4:\"date\";s:4:\"2708\";s:4:\"time\";s:4:\"1319\";s:6:\"artist\";s:0:\"\";s:5:\"album\";s:0:\"\";}'),(7035,1584,'_yoast_wpseo_content_score','60'),(7036,2754,'success','1'),(7037,2754,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7038,2754,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7039,2754,'reply_to_header','Asher@thechatsinc.org'),(7040,2754,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7041,2754,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7042,2754,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7043,2754,'original_message','From: Asher Collins \nEmail: Asher@thechatsinc.org\nPhone: 0000000000\n\nService:11am-1pm\n\nMessage Body:\nHi,\r\n\r\nThis is Asher Collins from The Chats Inc. I have visited your website and noticed good traffic. We can convert that traffic into you client lead by equipping your website with 24-7 live chat service with live attendant availability which will increase your website conversion up to 35% and generate 3 times more leads from your visitor traffic, ensuring you don’t lose a single client visiting your website.\r\n\r\nPer Lead billing – No setup charges- Free non-qualified chats.\r\n\r\nYou can test the potential with $300 worth of free lead credit and continue if you see the results.\r\n\r\n\r\nIf you would like to explore this further - please let me know and we can take it from there!\r\n\r\nFor more info or to try the service, please reply or you can call me directly.\r\n\r\nBest,\r\nAsher Collins\r\nClient Relations\r\nAsher@thechatsinc.org\r\nwww.thechatsinc.net\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7044,2754,'original_headers','a:0:{}'),(7045,2754,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR17CA0031.outlook.office365.com Microsoft ESMTP MAIL Service ready at Mon, 9 Sep 2019 22:04:18 +0000\r\nEHLO drfields.com\r\n250-MN2PR17CA0031.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR17CA0031.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: Asher@thechatsinc.org\r\nMessage-Id: <746b08f02fbaf9686159eafd73622fe9@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Mon, 09 Sep 2019 22:04:19 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Asher Collins =0AEmail: Asher@thechatsinc.org=0APhone: 0000000000=\r\n=0A=0AService:11am-1pm=0A=0AMessage Body:=0AHi,=0D=0A=0D=0AThis is Asher=\r\n Collins from The Chats Inc. I have visited your website and noticed goo=\r\nd traffic. We can convert that traffic into you client lead by equipping=\r\n your website with 24-7 live chat service with live attendant availabili=\r\nty which will increase your website conversion up to 35% and generate 3=\r\n times more leads from your visitor traffic, ensuring you don=E2=80=99t=\r\n lose a single client visiting your website.=0D=0A=0D=0APer Lead billing=\r\n =E2=80=93 No setup charges- Free non-qualified chats.=0D=0A=0D=0AYou ca=\r\nn test the potential with $300 worth of free lead credit and continue if=\r\n you see the results.=0D=0A=0D=0A=0D=0AIf you would like to explore this=\r\n further - please let me know and we can take it from there!=0D=0A=0D=0A=\r\nFor more info or to try the service, please reply or you can call me dir=\r\nectly.=0D=0A=0D=0ABest,=0D=0AAsher Collins=0D=0AClient Relations=0D=0AAs=\r\nher@thechatsinc.org=0D=0Awww.thechatsinc.net=0A=0AAny Other Comments:=0A=\r\n=0A=0A-- =0AThis e-mail was sent from a contact form on Stem Cell PRP Pr=\r\nolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields=\r\n (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <746b08f02fbaf9686159eafd73622fe9@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7046,2755,'_email','Asher@thechatsinc.org'),(7047,2755,'_name','Asher Collins'),(7048,2755,'_props','a:0:{}'),(7049,2755,'_last_contacted','2019-09-09 22:04:21'),(7050,2756,'_subject','[your-subject]'),(7051,2756,'_from','Asher Collins <Asher@thechatsinc.org>'),(7052,2756,'_from_name','Asher Collins'),(7053,2756,'_from_email','Asher@thechatsinc.org'),(7054,2756,'_field_your-name','Asher Collins'),(7055,2756,'_field_your-email','Asher@thechatsinc.org'),(7056,2756,'_field_phone','0000000000'),(7057,2756,'_field_service','11am-1pm'),(7058,2756,'_field_your-message','Hi,\r\n\r\nThis is Asher Collins from The Chats Inc. I have visited your website and noticed good traffic. We can convert that traffic into you client lead by equipping your website with 24-7 live chat service with live attendant availability which will increase your website conversion up to 35% and generate 3 times more leads from your visitor traffic, ensuring you don’t lose a single client visiting your website.\r\n\r\nPer Lead billing – No setup charges- Free non-qualified chats.\r\n\r\nYou can test the potential with $300 worth of free lead credit and continue if you see the results.\r\n\r\n\r\nIf you would like to explore this further - please let me know and we can take it from there!\r\n\r\nFor more info or to try the service, please reply or you can call me directly.\r\n\r\nBest,\r\nAsher Collins\r\nClient Relations\r\nAsher@thechatsinc.org\r\nwww.thechatsinc.net'),(7059,2756,'_field_otherquestion',''),(7060,2756,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7061,2756,'_meta','a:19:{s:13:\"serial_number\";i:60;s:9:\"remote_ip\";s:13:\"69.167.12.196\";s:10:\"user_agent\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:17:\"September 9, 2019\";s:4:\"time\";s:8:\"10:04 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7062,2756,'_akismet',NULL),(7063,2756,'_recaptcha','a:0:{}'),(7064,2756,'_spam_log','a:0:{}'),(7065,2756,'_consent','a:0:{}'),(7066,2760,'_edit_lock','1624052933:9'),(7067,2760,'_edit_last','9'),(7068,2760,'_wp_page_template','default'),(7070,2760,'_yoast_wpseo_content_score','90'),(7071,2760,'_yoast_wpseo_primary_category','21'),(7078,2760,'_wp_old_slug','stop-the-back-pain-cycle__trashed'),(7091,2760,'_wp_old_slug','stop-the-back-pain-cycle'),(7092,2764,'_menu_item_type','post_type'),(7093,2764,'_menu_item_menu_item_parent','646'),(7094,2764,'_menu_item_object_id','2760'),(7095,2764,'_menu_item_object','post'),(7096,2764,'_menu_item_target',''),(7097,2764,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7098,2764,'_menu_item_xfn',''),(7099,2764,'_menu_item_url',''),(7101,2765,'success','1'),(7102,2765,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7103,2765,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7104,2765,'reply_to_header','janetcolley789@gmail.com'),(7105,2765,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7106,2765,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7107,2765,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7108,2765,'original_message','From: Janet Colley \nEmail: janetcolley789@gmail.com\nPhone: 6266469330\n\nService:11am-1pm\n\nMessage Body:\nI am on a cruise ship without any phone service. I have an appointment for this Tuesday the 17th at 1:30 pm for a recheck for stem cells. Our cruise ship had an oil spill upon refueling in Vancouver and we were delayed 5 1/2 hour for departure, thus our arrival into Los Angeles will be delayed with a best case scenario of arrival into Long Beach of 1:00 pm. By the time I get off the ship which will be a mad house, get my luggage, Uber to LAX to get my rental car, I am worried I will not get there before you close for the day.\r\nCurrently their is a good chance I will be staying in town for a few more days for business so this is my plan, as soon as I am able to get phone service I will call you and maybe we can reschedule for Thursday. I am so very very sorry to inconvenience you. I will call you Tuesday morning. Janet Colley\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7109,2765,'original_headers','a:0:{}'),(7110,2765,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR12CA0021.outlook.office365.com Microsoft ESMTP MAIL Service ready at Mon, 16 Sep 2019 00:06:28 +0000\r\nEHLO drfields.com\r\n250-MN2PR12CA0021.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR12CA0021.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: janetcolley789@gmail.com\r\nMessage-Id: <b8a08581dcb0a6a01e3be4aab89b9c0c@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Mon, 16 Sep 2019 00:06:28 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Janet Colley =0AEmail: janetcolley789@gmail.com=0APhone: 626646933=\r\n0=0A=0AService:11am-1pm=0A=0AMessage Body:=0AI am on a cruise ship witho=\r\nut any phone service. I have an appointment for this Tuesday the 17th at=\r\n 1:30 pm for a recheck for stem cells. Our cruise ship had an oil spill=\r\n upon refueling in Vancouver and we were delayed 5 1/2 hour for departur=\r\ne, thus our arrival into Los Angeles will be delayed with a best case sc=\r\nenario of arrival into Long Beach of 1:00 pm. By the time I get off the=\r\n ship which will be a mad house, get my luggage, Uber to LAX to get my r=\r\nental car, I am worried I will not get there before you close for the da=\r\ny.=0D=0ACurrently their is a good chance I will be staying in town for a=\r\n few more days for business so this is my plan, as soon as I am able to=\r\n get phone service I will call you and maybe we can reschedule for Thurs=\r\nday. I am so very very sorry to inconvenience you. I will call you Tuesd=\r\nay morning. Janet Colley=0A=0AAny Other Comments:=0A=0A=0A-- =0AThis e-m=\r\nail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery A=\r\nlternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfiel=\r\nds.com)\r\n.\r\n250 2.0.0 OK <b8a08581dcb0a6a01e3be4aab89b9c0c@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7111,2766,'_email','janetcolley789@gmail.com'),(7112,2766,'_name','Janet Colley'),(7113,2766,'_props','a:0:{}'),(7114,2766,'_last_contacted','2019-09-16 00:06:30'),(7115,2767,'_subject','[your-subject]'),(7116,2767,'_from','Janet Colley <janetcolley789@gmail.com>'),(7117,2767,'_from_name','Janet Colley'),(7118,2767,'_from_email','janetcolley789@gmail.com'),(7119,2767,'_field_your-name','Janet Colley'),(7120,2767,'_field_your-email','janetcolley789@gmail.com'),(7121,2767,'_field_phone','6266469330'),(7122,2767,'_field_service','11am-1pm'),(7123,2767,'_field_your-message','I am on a cruise ship without any phone service. I have an appointment for this Tuesday the 17th at 1:30 pm for a recheck for stem cells. Our cruise ship had an oil spill upon refueling in Vancouver and we were delayed 5 1/2 hour for departure, thus our arrival into Los Angeles will be delayed with a best case scenario of arrival into Long Beach of 1:00 pm. By the time I get off the ship which will be a mad house, get my luggage, Uber to LAX to get my rental car, I am worried I will not get there before you close for the day.\r\nCurrently their is a good chance I will be staying in town for a few more days for business so this is my plan, as soon as I am able to get phone service I will call you and maybe we can reschedule for Thursday. I am so very very sorry to inconvenience you. I will call you Tuesday morning. Janet Colley'),(7124,2767,'_field_otherquestion',''),(7125,2767,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7126,2767,'_meta','a:19:{s:13:\"serial_number\";i:61;s:9:\"remote_ip\";s:15:\"162.249.178.141\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:18:\"September 16, 2019\";s:4:\"time\";s:8:\"12:06 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7127,2767,'_akismet',NULL),(7128,2767,'_recaptcha','a:0:{}'),(7129,2767,'_spam_log','a:0:{}'),(7130,2767,'_consent','a:0:{}'),(7131,2768,'_subject','[your-subject]'),(7132,2768,'_from','Richard Baeza <richardbaeza@sbcglobal.net>'),(7133,2768,'_from_name','Richard Baeza'),(7134,2768,'_from_email','richardbaeza@sbcglobal.net'),(7135,2768,'_field_your-name','Richard Baeza'),(7136,2768,'_field_your-email','richardbaeza@sbcglobal.net'),(7137,2768,'_field_phone','9515005103'),(7138,2768,'_field_service','9am-11am'),(7139,2768,'_field_your-message','I had surgery to repair a torn labrum, bursitis, and bone spurs removal. I’ve been told that I no longer have cartilage in my shoulder. I have constant pain and can no longer enjoy things like lifting weights and playing baseball. Is there anything you can do for bone on bone shoulders? '),(7140,2768,'_field_otherquestion',''),(7141,2768,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7142,2768,'_meta','a:19:{s:13:\"serial_number\";i:62;s:9:\"remote_ip\";s:14:\"174.195.205.12\";s:10:\"user_agent\";s:139:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:18:\"September 17, 2019\";s:4:\"time\";s:7:\"9:19 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7143,2768,'_akismet',NULL),(7144,2768,'_recaptcha','a:0:{}'),(7145,2768,'_spam_log','a:0:{}'),(7146,2768,'_consent','a:0:{}'),(7147,2769,'success','1'),(7148,2769,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7149,2769,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7150,2769,'reply_to_header','richardbaeza@sbcglobal.net'),(7151,2769,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7152,2769,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7153,2769,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7154,2769,'original_message','From: Richard Baeza \nEmail: richardbaeza@sbcglobal.net\nPhone: 9515005103\n\nService:9am-11am\n\nMessage Body:\nI had surgery to repair a torn labrum, bursitis, and bone spurs removal. I’ve been told that I no longer have cartilage in my shoulder. I have constant pain and can no longer enjoy things like lifting weights and playing baseball. Is there anything you can do for bone on bone shoulders?\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7155,2769,'original_headers','a:0:{}'),(7156,2769,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR01CA0021.outlook.office365.com Microsoft ESMTP MAIL Service ready at Tue, 17 Sep 2019 21:19:15 +0000\r\nEHLO drfields.com\r\n250-MN2PR01CA0021.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR01CA0021.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: richardbaeza@sbcglobal.net\r\nMessage-Id: <58020337cdc83ae159bd4b5b88939343@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Tue, 17 Sep 2019 21:19:16 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Richard Baeza =0AEmail: richardbaeza@sbcglobal.net=0APhone: 951500=\r\n5103=0A=0AService:9am-11am=0A=0AMessage Body:=0AI had surgery to repair=\r\n a torn labrum, bursitis, and bone spurs removal. I=E2=80=99ve been told=\r\n that I no longer have cartilage in my shoulder. I have constant pain an=\r\nd can no longer enjoy things like lifting weights and playing baseball.=\r\n Is there anything you can do for bone on bone shoulders?=0A=0AAny Other=\r\n Comments:=0A=0A=0A-- =0AThis e-mail was sent from a contact form on Ste=\r\nm Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatmen=\r\nt - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <58020337cdc83ae159bd4b5b88939343@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7157,2770,'_email','richardbaeza@sbcglobal.net'),(7158,2770,'_name','Richard Baeza'),(7159,2770,'_props','a:0:{}'),(7160,2770,'_last_contacted','2019-09-17 21:19:18'),(7161,2771,'_subject','[your-subject]'),(7162,2771,'_from','Richard Baeza <richardbaeza@sbcglobal.net>'),(7163,2771,'_from_name','Richard Baeza'),(7164,2771,'_from_email','richardbaeza@sbcglobal.net'),(7165,2771,'_field_your-name','Richard Baeza'),(7166,2771,'_field_your-email','richardbaeza@sbcglobal.net'),(7167,2771,'_field_phone','9515005103'),(7168,2771,'_field_service','9am-11am'),(7169,2771,'_field_your-message','I had surgery to repair a torn labrum, bursitis, and bone spurs removal. I’ve been told that I no longer have cartilage in my shoulder. I have constant pain and can no longer enjoy things like lifting weights and playing baseball. Is there anything you can do for bone on bone shoulders? '),(7170,2771,'_field_otherquestion',''),(7171,2771,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7172,2771,'_meta','a:19:{s:13:\"serial_number\";i:62;s:9:\"remote_ip\";s:14:\"174.195.205.12\";s:10:\"user_agent\";s:139:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:18:\"September 17, 2019\";s:4:\"time\";s:7:\"9:19 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7173,2771,'_akismet',NULL),(7174,2771,'_recaptcha','a:0:{}'),(7175,2771,'_spam_log','a:0:{}'),(7176,2771,'_consent','a:0:{}'),(7177,2773,'_edit_lock','1598922942:9'),(7178,2773,'_edit_last','9'),(7179,2773,'_wp_page_template','default'),(7180,2773,'_yoast_wpseo_content_score','60'),(7181,2773,'_yoast_wpseo_primary_category','32'),(7182,2775,'_edit_lock','1602367319:9'),(7183,2775,'_edit_last','9'),(7184,2775,'_wp_page_template','default'),(7185,2775,'_yoast_wpseo_content_score','30'),(7186,2775,'_yoast_wpseo_primary_category','32'),(7187,977,'_yoast_wpseo_content_score','30'),(7188,2208,'_yoast_wpseo_content_score','30'),(7191,2773,'_wp_old_date','2019-09-24'),(7194,2786,'success','1'),(7195,2786,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7196,2786,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7197,2786,'reply_to_header','housedoctor911@yahoo.com'),(7198,2786,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7199,2786,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7200,2786,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7201,2786,'original_message','From: Mike Ivanov \n\nEmail: housedoctor911@yahoo.com\n\nPhone: 3233100609\n\nService:9am-11am\n\nMessage Body:\nHi dr. field\'s team!\r\nMy name is Mike Ivanov. I am a handyman with 30 years experience. A proud father of two children, and a believer. All the guys who work with me are my friends and partners. We do all repairs and remodeling quickly and efficiently: \r\n\r\nFurniture assembly, TV mounting, drywall holes repairs, leaking or clogged faucets, sinks and toilets, curtain hanging, security cameras, window replacement, door installation, flooring, tiling, painting and odd tasks - we do them all. \r\n\r\nWe proudly serve Los Angeles for 9 years and have no complaints. We serve during daytime, evenings, on weekends, on holidays and even at night to feed our families and give our children the good education.\r\n\r\nFor Service call or text 323-310-0609 and we come by and estimate.\r\n\r\nFrom an office chair assembly for $20 to a whole exterior painting for $$$ - you could rely your project with us. We don\'t take money up front (except for special order items). We are local so we buy local and can handle just about anything around your house or business. We usually can get to your job within hours, not weeks later!\r\n\r\nWe don\'t charge trip charges or service charges for estimates. If it\'s a small job, we often can quote those over the phone instantly. A lot of our competitors don\'t tell you what they charge and you have to pay just to find out! \r\n\r\nLook at our past projects\r\nhttps://www.instagram.com/westsidehandyman/\r\n(Email us housedoctor911@yahoo.com)\r\n\r\nMaterials can be pre-purchased and available on site or for smaller items we carry many materials needed for any job and we can provide them for a nominal fee. (tape, plastic, caulk, drywall, mud, screws, nails, etc)\r\n\r\nCall or text 323-310-0609 for estimate. I look forward to doing great work for you.\r\n\r\nThank you,\r\nMike\n\nAny Other Comments:\nHi dr. field\'s team!\r\nMy name is Mike Ivanov. I am a handyman with 30 years experience. A proud father of two children, and a believer. All the guys who work with me are my friends and partners. We do all repairs and remodeling quickly and efficiently: \r\n\r\nFurniture assembly, TV mounting, drywall holes repairs, leaking or clogged faucets, sinks and toilets, curtain hanging, security cameras, window replacement, door installation, flooring, tiling, painting and odd tasks - we do them all. \r\n\r\nWe proudly serve Los Angeles for 9 years and have no complaints. We serve during daytime, evenings, on weekends, on holidays and even at night to feed our families and give our children the good education.\r\n\r\nFor Service call or text 323-310-0609 and we come by and estimate.\r\n\r\nFrom an office chair assembly for $20 to a whole exterior painting for $$$ - you could rely your project with us. We don\'t take money up front (except for special order items). We are local so we buy local and can handle just about anything around your house or business. We usually can get to your job within hours, not weeks later!\r\n\r\nWe don\'t charge trip charges or service charges for estimates. If it\'s a small job, we often can quote those over the phone instantly. A lot of our competitors don\'t tell you what they charge and you have to pay just to find out! \r\n\r\nLook at our past projects\r\nhttps://www.instagram.com/westsidehandyman/\r\n(Email us housedoctor911@yahoo.com)\r\n\r\nMaterials can be pre-purchased and available on site or for smaller items we carry many materials needed for any job and we can provide them for a nominal fee. (tape, plastic, caulk, drywall, mud, screws, nails, etc)\r\n\r\nCall or text 323-310-0609 for estimate. I look forward to doing great work for you.\r\n\r\nThank you,\r\nMike\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7202,2786,'original_headers','a:0:{}'),(7203,2786,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BL0PR02CA0012.outlook.office365.com Microsoft ESMTP MAIL Service ready at Tue, 24 Sep 2019 04:42:45 +0000\r\nEHLO drfields.com\r\n250-BL0PR02CA0012.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BL0PR02CA0012.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: housedoctor911@yahoo.com\r\nMessage-Id: <5151f16e636cb443db80cfed1c4a4349@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Tue, 24 Sep 2019 04:42:45 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Mike Ivanov =0A=0AEmail: housedoctor911@yahoo.com=0A=0APhone: 3233=\r\n100609=0A=0AService:9am-11am=0A=0AMessage Body:=0AHi dr. field\'s team!=\r\n=0D=0AMy name is Mike Ivanov. I am a handyman with 30 years experience.=\r\n A proud father of two children, and a believer. All the guys who work w=\r\nith me are my friends and partners. We do all repairs and remodeling qui=\r\nckly and efficiently: =0D=0A=0D=0AFurniture assembly, TV mounting, drywa=\r\nll holes repairs, leaking or clogged faucets, sinks and toilets, curtain=\r\n hanging, security cameras, window replacement, door installation, floor=\r\ning, tiling, painting and odd tasks - we do them all. =0D=0A=0D=0AWe pro=\r\nudly serve Los Angeles for 9 years and have no complaints. We serve duri=\r\nng daytime, evenings, on weekends, on holidays and even at night to feed=\r\n our families and give our children the good education.=0D=0A=0D=0AFor S=\r\nervice call or text 323-310-0609 and we come by and estimate.=0D=0A=0D=\r\n=0AFrom an office chair assembly for $20 to a whole exterior painting fo=\r\nr $$$ - you could rely your project with us. We don\'t take money up fron=\r\nt (except for special order items). We are local so we buy local and can=\r\n handle just about anything around your house or business. We usually ca=\r\nn get to your job within hours, not weeks later!=0D=0A=0D=0AWe don\'t cha=\r\nrge trip charges or service charges for estimates. If it\'s a small job,=\r\n we often can quote those over the phone instantly. A lot of our competi=\r\ntors don\'t tell you what they charge and you have to pay just to find ou=\r\nt! =0D=0A=0D=0ALook at our past projects=0D=0Ahttps://www.instagram.com/=\r\nwestsidehandyman/=0D=0A(Email us housedoctor911@yahoo.com)=0D=0A=0D=0AMa=\r\nterials can be pre-purchased and available on site or for smaller items=\r\n we carry many materials needed for any job and we can provide them for=\r\n a nominal fee. (tape, plastic, caulk, drywall, mud, screws, nails, etc)=\r\n=0D=0A=0D=0ACall or text 323-310-0609 for estimate. I look forward to do=\r\ning great work for you.=0D=0A=0D=0AThank you,=0D=0AMike=0A=0AAny Other C=\r\nomments:=0AHi dr. field\'s team!=0D=0AMy name is Mike Ivanov. I am a hand=\r\nyman with 30 years experience. A proud father of two children, and a bel=\r\niever. All the guys who work with me are my friends and partners. We do=\r\n all repairs and remodeling quickly and efficiently: =0D=0A=0D=0AFurnitu=\r\nre assembly, TV mounting, drywall holes repairs, leaking or clogged fauc=\r\nets, sinks and toilets, curtain hanging, security cameras, window replac=\r\nement, door installation, flooring, tiling, painting and odd tasks - we=\r\n do them all. =0D=0A=0D=0AWe proudly serve Los Angeles for 9 years and h=\r\nave no complaints. We serve during daytime, evenings, on weekends, on ho=\r\nlidays and even at night to feed our families and give our children the=\r\n good education.=0D=0A=0D=0AFor Service call or text 323-310-0609 and we=\r\n come by and estimate.=0D=0A=0D=0AFrom an office chair assembly for $20=\r\n to a whole exterior painting for $$$ - you could rely your project with=\r\n us. We don\'t take money up front (except for special order items). We a=\r\nre local so we buy local and can handle just about anything around your=\r\n house or business. We usually can get to your job within hours, not wee=\r\nks later!=0D=0A=0D=0AWe don\'t charge trip charges or service charges for=\r\n estimates. If it\'s a small job, we often can quote those over the phone=\r\n instantly. A lot of our competitors don\'t tell you what they charge and=\r\n you have to pay just to find out! =0D=0A=0D=0ALook at our past projects=\r\n=0D=0Ahttps://www.instagram.com/westsidehandyman/=0D=0A(Email us housedo=\r\nctor911@yahoo.com)=0D=0A=0D=0AMaterials can be pre-purchased and availab=\r\nle on site or for smaller items we carry many materials needed for any j=\r\nob and we can provide them for a nominal fee. (tape, plastic, caulk, dry=\r\nwall, mud, screws, nails, etc)=0D=0A=0D=0ACall or text 323-310-0609 for=\r\n estimate. I look forward to doing great work for you.=0D=0A=0D=0AThank=\r\n you,=0D=0AMike=0A=0A-- =0AThis e-mail was sent from a contact form on S=\r\ntem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatm=\r\nent - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <5151f16e636cb443db80cfed1c4a4349@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7204,2787,'_email','housedoctor911@yahoo.com'),(7205,2787,'_name','Mike Ivanov'),(7206,2787,'_props','a:0:{}'),(7207,2787,'_last_contacted','2019-09-24 04:42:48'),(7208,2788,'_subject','[your-subject]'),(7209,2788,'_from','Mike Ivanov <housedoctor911@yahoo.com>'),(7210,2788,'_from_name','Mike Ivanov'),(7211,2788,'_from_email','housedoctor911@yahoo.com'),(7212,2788,'_field_your-name','Mike Ivanov'),(7213,2788,'_field_your-email','housedoctor911@yahoo.com'),(7214,2788,'_field_phone','3233100609'),(7215,2788,'_field_service','9am-11am'),(7216,2788,'_field_your-message','Hi dr. field\'s team!\r\nMy name is Mike Ivanov. I am a handyman with 30 years experience. A proud father of two children, and a believer. All the guys who work with me are my friends and partners. We do all repairs and remodeling quickly and efficiently: \r\n\r\nFurniture assembly, TV mounting, drywall holes repairs, leaking or clogged faucets, sinks and toilets, curtain hanging, security cameras, window replacement, door installation, flooring, tiling, painting and odd tasks - we do them all. \r\n\r\nWe proudly serve Los Angeles for 9 years and have no complaints. We serve during daytime, evenings, on weekends, on holidays and even at night to feed our families and give our children the good education.\r\n\r\nFor Service call or text 323-310-0609 and we come by and estimate.\r\n\r\nFrom an office chair assembly for $20 to a whole exterior painting for $$$ - you could rely your project with us. We don\'t take money up front (except for special order items). We are local so we buy local and can handle just about anything around your house or business. We usually can get to your job within hours, not weeks later!\r\n\r\nWe don\'t charge trip charges or service charges for estimates. If it\'s a small job, we often can quote those over the phone instantly. A lot of our competitors don\'t tell you what they charge and you have to pay just to find out! \r\n\r\nLook at our past projects\r\nhttps://www.instagram.com/westsidehandyman/\r\n(Email us housedoctor911@yahoo.com)\r\n\r\nMaterials can be pre-purchased and available on site or for smaller items we carry many materials needed for any job and we can provide them for a nominal fee. (tape, plastic, caulk, drywall, mud, screws, nails, etc)\r\n\r\nCall or text 323-310-0609 for estimate. I look forward to doing great work for you.\r\n\r\nThank you,\r\nMike'),(7217,2788,'_field_otherquestion','Hi dr. field\'s team!\r\nMy name is Mike Ivanov. I am a handyman with 30 years experience. A proud father of two children, and a believer. All the guys who work with me are my friends and partners. We do all repairs and remodeling quickly and efficiently: \r\n\r\nFurniture assembly, TV mounting, drywall holes repairs, leaking or clogged faucets, sinks and toilets, curtain hanging, security cameras, window replacement, door installation, flooring, tiling, painting and odd tasks - we do them all. \r\n\r\nWe proudly serve Los Angeles for 9 years and have no complaints. We serve during daytime, evenings, on weekends, on holidays and even at night to feed our families and give our children the good education.\r\n\r\nFor Service call or text 323-310-0609 and we come by and estimate.\r\n\r\nFrom an office chair assembly for $20 to a whole exterior painting for $$$ - you could rely your project with us. We don\'t take money up front (except for special order items). We are local so we buy local and can handle just about anything around your house or business. We usually can get to your job within hours, not weeks later!\r\n\r\nWe don\'t charge trip charges or service charges for estimates. If it\'s a small job, we often can quote those over the phone instantly. A lot of our competitors don\'t tell you what they charge and you have to pay just to find out! \r\n\r\nLook at our past projects\r\nhttps://www.instagram.com/westsidehandyman/\r\n(Email us housedoctor911@yahoo.com)\r\n\r\nMaterials can be pre-purchased and available on site or for smaller items we carry many materials needed for any job and we can provide them for a nominal fee. (tape, plastic, caulk, drywall, mud, screws, nails, etc)\r\n\r\nCall or text 323-310-0609 for estimate. I look forward to doing great work for you.\r\n\r\nThank you,\r\nMike'),(7218,2788,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7219,2788,'_meta','a:19:{s:13:\"serial_number\";i:63;s:9:\"remote_ip\";s:11:\"74.82.60.95\";s:10:\"user_agent\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:18:\"September 24, 2019\";s:4:\"time\";s:7:\"4:42 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7220,2788,'_akismet',NULL),(7221,2788,'_recaptcha','a:0:{}'),(7222,2788,'_spam_log','a:0:{}'),(7223,2788,'_consent','a:0:{}'),(7224,2789,'success','1'),(7225,2789,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7226,2789,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7227,2789,'reply_to_header','gaye.cayot@gmail.com'),(7228,2789,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7229,2789,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7230,2789,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7231,2789,'original_message','From: Gaye Cayot \n\nEmail: gaye.cayot@gmail.com\n\nPhone: 562-743-5151\n\nService:1pm-3pm\n\nMessage Body:\nMy daughter is 21 years old and has been in chronic pain since she was 9 years old. For most of her life we believed that the illness affecting her was Reflex Sympathetic Dystrophy, however, that diagnosis did not really explain many of her symptoms. About two years ago we began to suspect that she actually has Hypermobility Ehlers-Danlos Syndrome. The National Institute of Health lists 59 possible symptoms of which Anna has 27.  Anna\'s right shoulder is the loosest joint in her body and is causing constant and intense pain.  This summer we tried to get her into Mayo Clinic, but they refused to see her because there is no treatment for H-EDS.  We are seeking some alternative treatments right now, but we need to be very careful not to make her worse. I would appreciate very much if you would respond whether you think you can help her or not. Thank you very much for your time.\n\nAny Other Comments:\nWe have used chiropractic and acupuncture treatment for years. However, the last couple of times the chiro treatment seemed to make her worse and the last few acupuncture  appointments had no effect.  Deep tissue massage makes her feel better, but only for a few hours.\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7232,2789,'original_headers','a:0:{}'),(7233,2789,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BL0PR1501CA0021.outlook.office365.com Microsoft ESMTP MAIL Service ready at Wed, 25 Sep 2019 04:14:09 +0000\r\nEHLO drfields.com\r\n250-BL0PR1501CA0021.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BL0PR1501CA0021.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: gaye.cayot@gmail.com\r\nMessage-Id: <178392581c30963a8b4f4cdf79278f24@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Wed, 25 Sep 2019 04:14:10 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Gaye Cayot =0A=0AEmail: gaye.cayot@gmail.com=0A=0APhone: 562-743-5=\r\n151=0A=0AService:1pm-3pm=0A=0AMessage Body:=0AMy daughter is 21 years ol=\r\nd and has been in chronic pain since she was 9 years old. For most of he=\r\nr life we believed that the illness affecting her was Reflex Sympathetic=\r\n Dystrophy, however, that diagnosis did not really explain many of her s=\r\nymptoms. About two years ago we began to suspect that she actually has H=\r\nypermobility Ehlers-Danlos Syndrome. The National Institute of Health li=\r\nsts 59 possible symptoms of which Anna has 27.  Anna\'s right shoulder is=\r\n the loosest joint in her body and is causing constant and intense pain.=\r\n  This summer we tried to get her into Mayo Clinic, but they refused to=\r\n see her because there is no treatment for H-EDS.  We are seeking some a=\r\nlternative treatments right now, but we need to be very careful not to m=\r\nake her worse. I would appreciate very much if you would respond whether=\r\n you think you can help her or not. Thank you very much for your time.=\r\n=0A=0AAny Other Comments:=0AWe have used chiropractic and acupuncture tr=\r\neatment for years. However, the last couple of times the chiro treatment=\r\n seemed to make her worse and the last few acupuncture  appointments had=\r\n no effect.  Deep tissue massage makes her feel better, but only for a f=\r\new hours.=0A=0A-- =0AThis e-mail was sent from a contact form on Stem Ce=\r\nll PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment -=\r\n Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <178392581c30963a8b4f4cdf79278f24@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7234,2790,'_email','gaye.cayot@gmail.com'),(7235,2790,'_name','Gaye Cayot'),(7236,2790,'_props','a:0:{}'),(7237,2790,'_last_contacted','2019-09-25 04:14:12'),(7238,2791,'_subject','[your-subject]'),(7239,2791,'_from','Gaye Cayot <gaye.cayot@gmail.com>'),(7240,2791,'_from_name','Gaye Cayot'),(7241,2791,'_from_email','gaye.cayot@gmail.com'),(7242,2791,'_field_your-name','Gaye Cayot'),(7243,2791,'_field_your-email','gaye.cayot@gmail.com'),(7244,2791,'_field_phone','562-743-5151'),(7245,2791,'_field_service','1pm-3pm'),(7246,2791,'_field_your-message','My daughter is 21 years old and has been in chronic pain since she was 9 years old. For most of her life we believed that the illness affecting her was Reflex Sympathetic Dystrophy, however, that diagnosis did not really explain many of her symptoms. About two years ago we began to suspect that she actually has Hypermobility Ehlers-Danlos Syndrome. The National Institute of Health lists 59 possible symptoms of which Anna has 27.  Anna\'s right shoulder is the loosest joint in her body and is causing constant and intense pain.  This summer we tried to get her into Mayo Clinic, but they refused to see her because there is no treatment for H-EDS.  We are seeking some alternative treatments right now, but we need to be very careful not to make her worse. I would appreciate very much if you would respond whether you think you can help her or not. Thank you very much for your time.'),(7247,2791,'_field_otherquestion','We have used chiropractic and acupuncture treatment for years. However, the last couple of times the chiro treatment seemed to make her worse and the last few acupuncture  appointments had no effect.  Deep tissue massage makes her feel better, but only for a few hours.'),(7248,2791,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7249,2791,'_meta','a:19:{s:13:\"serial_number\";i:64;s:9:\"remote_ip\";s:14:\"75.142.100.245\";s:10:\"user_agent\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:18:\"September 25, 2019\";s:4:\"time\";s:7:\"4:14 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7250,2791,'_akismet',NULL),(7251,2791,'_recaptcha','a:0:{}'),(7252,2791,'_spam_log','a:0:{}'),(7253,2791,'_consent','a:0:{}'),(7254,2792,'success','1'),(7255,2792,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7256,2792,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7257,2792,'reply_to_header','dorthy.bright@gmail.com'),(7258,2792,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7259,2792,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7260,2792,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7261,2792,'original_message','From: Dorthy Bright \n\nEmail: dorthy.bright@gmail.com\n\nPhone: 3107957135\n\nService:3pm-5pm\n\nMessage Body:\nI have chronic hip pain and have been researching stem cell injections. I have been told I am a good candidate.\n\nAny Other Comments:\nWhat is the cost per injection and how many injection are typical for treatment?\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7262,2792,'original_headers','a:0:{}'),(7263,2792,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR20CA0020.outlook.office365.com Microsoft ESMTP MAIL Service ready at Thu, 26 Sep 2019 21:56:29 +0000\r\nEHLO drfields.com\r\n250-MN2PR20CA0020.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR20CA0020.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: dorthy.bright@gmail.com\r\nMessage-Id: <8d54401bbdf7c6e030a809603b75fd2d@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Thu, 26 Sep 2019 21:56:29 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Dorthy Bright =0A=0AEmail: dorthy.bright@gmail.com=0A=0APhone: 310=\r\n7957135=0A=0AService:3pm-5pm=0A=0AMessage Body:=0AI have chronic hip pai=\r\nn and have been researching stem cell injections. I have been told I am=\r\n a good candidate.=0A=0AAny Other Comments:=0AWhat is the cost per injec=\r\ntion and how many injection are typical for treatment?=0A=0A-- =0AThis e=\r\n-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery=\r\n Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfi=\r\nelds.com)\r\n.\r\n250 2.0.0 OK <8d54401bbdf7c6e030a809603b75fd2d@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7264,2793,'_email','dorthy.bright@gmail.com'),(7265,2793,'_name','Dorthy Bright'),(7266,2793,'_props','a:0:{}'),(7267,2793,'_last_contacted','2019-09-26 21:56:32'),(7268,2794,'_subject','[your-subject]'),(7269,2794,'_from','Dorthy Bright <dorthy.bright@gmail.com>'),(7270,2794,'_from_name','Dorthy Bright'),(7271,2794,'_from_email','dorthy.bright@gmail.com'),(7272,2794,'_field_your-name','Dorthy Bright'),(7273,2794,'_field_your-email','dorthy.bright@gmail.com'),(7274,2794,'_field_phone','3107957135'),(7275,2794,'_field_service','3pm-5pm'),(7276,2794,'_field_your-message','I have chronic hip pain and have been researching stem cell injections. I have been told I am a good candidate.'),(7277,2794,'_field_otherquestion','What is the cost per injection and how many injection are typical for treatment?\r\n'),(7278,2794,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7279,2794,'_meta','a:19:{s:13:\"serial_number\";i:65;s:9:\"remote_ip\";s:13:\"47.176.27.178\";s:10:\"user_agent\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:18:\"September 26, 2019\";s:4:\"time\";s:7:\"9:56 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7280,2794,'_akismet',NULL),(7281,2794,'_recaptcha','a:0:{}'),(7282,2794,'_spam_log','a:0:{}'),(7283,2794,'_consent','a:0:{}'),(7284,2795,'_edit_lock','1600104355:11'),(7285,2795,'_edit_last','8'),(7286,2795,'_wp_page_template','default'),(7287,2795,'_yoast_wpseo_content_score','90'),(7288,2797,'success','1'),(7289,2797,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7290,2797,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7291,2797,'reply_to_header','chad@websitedepot.com'),(7292,2797,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7293,2797,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7294,2797,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7295,2797,'original_message','From: chad \n\nEmail: chad@websitedepot.com\n\nPhone: 3237418490\n\nService:3pm-5pm\n\nMessage Body:\nTEST\n\nAny Other Comments:\nTEST 123\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7296,2797,'original_headers','a:0:{}'),(7297,2797,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR01CA0033.outlook.office365.com Microsoft ESMTP MAIL Service ready at Fri, 27 Sep 2019 20:08:01 +0000\r\nEHLO drfields.com\r\n250-MN2PR01CA0033.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR01CA0033.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: chad@websitedepot.com\r\nMessage-Id: <22595e634269f87021533c0efe708d26@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Fri, 27 Sep 2019 20:08:02 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: chad =0A=0AEmail: chad@websitedepot.com=0A=0APhone: 3237418490=0A=\r\n=0AService:3pm-5pm=0A=0AMessage Body:=0ATEST=0A=0AAny Other Comments:=0A=\r\nTEST 123=0A=0A-- =0AThis e-mail was sent from a contact form on Stem Cel=\r\nl PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - D=\r\nr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <22595e634269f87021533c0efe708d26@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7298,2530,'_wp_old_date','2019-08-01'),(7299,2798,'_subject','[your-subject]'),(7300,2798,'_from','chad <chad@websitedepot.com>'),(7301,2798,'_from_name','chad'),(7302,2798,'_from_email','chad@websitedepot.com'),(7303,2798,'_field_your-name','chad'),(7304,2798,'_field_your-email','chad@websitedepot.com'),(7305,2798,'_field_phone','3237418490'),(7306,2798,'_field_service','3pm-5pm'),(7307,2798,'_field_your-message','TEST'),(7308,2798,'_field_otherquestion','TEST 123'),(7309,2798,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7310,2798,'_meta','a:19:{s:13:\"serial_number\";i:66;s:9:\"remote_ip\";s:15:\"208.251.181.122\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:18:\"September 27, 2019\";s:4:\"time\";s:7:\"8:08 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7311,2798,'_akismet',NULL),(7312,2798,'_recaptcha','a:0:{}'),(7313,2798,'_spam_log','a:0:{}'),(7314,2798,'_consent','a:0:{}'),(7315,2799,'success','1'),(7316,2799,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7317,2799,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7318,2799,'reply_to_header','chad@me.com'),(7319,2799,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7320,2799,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7321,2799,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7322,2799,'original_message','From: chad \n\nEmail: chad@me.com\n\nPhone: 8185614999\n\nService:9am-11am\n\nMessage Body:\ntest\n\nAny Other Comments:\ntest new\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7323,2799,'original_headers','a:0:{}'),(7324,2799,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR02CA0006.outlook.office365.com Microsoft ESMTP MAIL Service ready at Fri, 27 Sep 2019 20:15:52 +0000\r\nEHLO drfields.com\r\n250-MN2PR02CA0006.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR02CA0006.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: chad@me.com\r\nMessage-Id: <3ccf9be35c4029c3fb084de4c2091f71@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Fri, 27 Sep 2019 20:15:53 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: chad =0A=0AEmail: chad@me.com=0A=0APhone: 8185614999=0A=0AService:=\r\n9am-11am=0A=0AMessage Body:=0Atest=0A=0AAny Other Comments:=0Atest new=\r\n=0A=0A-- =0AThis e-mail was sent from a contact form on Stem Cell PRP Pr=\r\nolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields=\r\n (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <3ccf9be35c4029c3fb084de4c2091f71@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7325,2800,'_email','chad@me.com'),(7326,2800,'_name','chad'),(7327,2800,'_props','a:0:{}'),(7328,2800,'_last_contacted','2019-09-27 20:15:55'),(7329,2801,'_subject','[your-subject]'),(7330,2801,'_from','chad <chad@me.com>'),(7331,2801,'_from_name','chad'),(7332,2801,'_from_email','chad@me.com'),(7333,2801,'_field_your-name','chad'),(7334,2801,'_field_your-email','chad@me.com'),(7335,2801,'_field_phone','8185614999'),(7336,2801,'_field_service','9am-11am'),(7337,2801,'_field_your-message','test'),(7338,2801,'_field_otherquestion','test new'),(7339,2801,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7340,2801,'_meta','a:19:{s:13:\"serial_number\";i:67;s:9:\"remote_ip\";s:15:\"208.251.181.122\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:18:\"September 27, 2019\";s:4:\"time\";s:7:\"8:15 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7341,2801,'_akismet',NULL),(7342,2801,'_recaptcha','a:0:{}'),(7343,2801,'_spam_log','a:0:{}'),(7344,2801,'_consent','a:0:{}'),(7345,1704,'_yoast_wpseo_content_score','90'),(7346,1700,'_yoast_wpseo_content_score','90'),(7347,1702,'_yoast_wpseo_content_score','90'),(7348,1706,'_yoast_wpseo_content_score','60'),(7349,1708,'_yoast_wpseo_content_score','60'),(7350,1711,'_yoast_wpseo_content_score','60'),(7351,1713,'_yoast_wpseo_content_score','60'),(7352,1715,'_yoast_wpseo_content_score','60'),(7353,1717,'_yoast_wpseo_content_score','60'),(7354,1719,'_yoast_wpseo_content_score','60'),(7355,1721,'_yoast_wpseo_content_score','60'),(7356,1723,'_yoast_wpseo_content_score','60'),(7357,1725,'_yoast_wpseo_content_score','60'),(7358,1727,'_yoast_wpseo_content_score','60'),(7359,1729,'_yoast_wpseo_content_score','60'),(7360,2833,'_edit_lock','1607722138:11'),(7361,2833,'_edit_last','11'),(7362,2833,'_wp_page_template','default'),(7363,2833,'_yoast_wpseo_content_score','60'),(7364,2835,'success','1'),(7365,2835,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7366,2835,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7367,2835,'reply_to_header','patriciapdsmith@gmail.com'),(7368,2835,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7369,2835,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7370,2835,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7371,2835,'original_message','From: Patricia Smith \n\nEmail: patriciapdsmith@gmail.com\n\nPhone: 08016862141\n\nService:9am-11am\n\nMessage Body:\ngoogle\n\nAny Other Comments:\nHello,\r\n \r\nHow are you? Hope you are fine.\r\n \r\nI have been checking your website quite often. It has seen that the main keywords are still not in top 10 rank. You know things of working;  I mean the procedure of working has changed a lot.\r\n \r\nSo I would like to have opportunity to work for you and this time we will bring the keywords to the top 10 spot with guaranteed period.\r\n \r\nThere is no wondering that it is possible now cause, I have found out that there are few things need to be done for better performances (Some we Discuss, in this email). Let me tell you some of them -\r\n \r\n1. Title Tag Optimization\r\n2. Meta Tag Optimization (Description, keyword and etc)\r\n3. Heading Tags Optimization\r\n4. Targeted keywords are not placed into tags\r\n5. Alt / Image tags Optimization\r\n6. Google Publisher is missing\r\n7. Custom 404 Page is missing\r\n8. The Products are not following Structured markup data\r\n9.  Website Speed Development (Both Mobile and Desktop)\r\n10. Off –Page SEO work\r\n \r\nLots are pending……………..\r\n \r\nYou can see these are the things that need to be done properly to make the keywords others to get into the top 10 spot in Google Search & your sales Increase.\r\n \r\nAlso there is one more thing to mention that you did thousands of links that time for your website, which are considered as spam after Google roll outs several updates of Panda and penguin. We need to remove them too.\r\n \r\nSir/Madam, please give us a chance to fix these errors and we will give you rank on these keywords.\r\n \r\nPlease let me know if you encounter any problems or if there is anything you need. If this email has reached you by mistake or if you do not wish to take advantage of this advertising opportunity, please accept my apology for any inconvenience caused and rest assured that you will not be contacted again.\r\n \r\nMany thanks for your time and consideration,\r\n \r\nLooking forward\r\n             \r\nRegards\r\nPatricia Smith\r\n\r\nIf you did not wish to receive this, please reply with \"unsubscribe\" in the subject line.\r\n \r\nDisclaimer: This is an advertisement and a promotional mail strictly on the guidelines of CAN-SPAM Act of 2003. We have clearly mentioned the source mail-id of this mail and the subject lines and they are in no way misleading in any form. We have found your mail address through our own efforts on the web search and not through any illegal way. If you find this mail unsolicited, please reply with \"unsubscribe\" in the subject line and we will take care that you do not receive any further promotional mail.\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7372,2835,'original_headers','a:0:{}'),(7373,2835,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BL0PR02CA0144.outlook.office365.com Microsoft ESMTP MAIL Service ready at Mon, 30 Sep 2019 11:34:07 +0000\r\nEHLO drfields.com\r\n250-BL0PR02CA0144.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BL0PR02CA0144.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: patriciapdsmith@gmail.com\r\nMessage-Id: <68a98eee800083539a9025c6e1533e01@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Mon, 30 Sep 2019 11:34:07 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Patricia Smith =0A=0AEmail: patriciapdsmith@gmail.com=0A=0APhone:=\r\n 08016862141=0A=0AService:9am-11am=0A=0AMessage Body:=0Agoogle=0A=0AAny=\r\n Other Comments:=0AHello,=0D=0A =0D=0AHow are you? Hope you are fine.=0D=\r\n=0A =0D=0AI have been checking your website quite often. It has seen tha=\r\nt the main keywords are still not in top 10 rank. You know things of wor=\r\nking;  I mean the procedure of working has changed a lot.=0D=0A =0D=0ASo=\r\n I would like to have opportunity to work for you and this time we will=\r\n bring the keywords to the top 10 spot with guaranteed period.=0D=0A =0D=\r\n=0AThere is no wondering that it is possible now cause, I have found out=\r\n that there are few things need to be done for better performances (Some=\r\n we Discuss, in this email). Let me tell you some of them -=0D=0A =0D=0A=\r\n1. Title Tag Optimization=0D=0A2. Meta Tag Optimization (Description, ke=\r\nyword and etc)=0D=0A3. Heading Tags Optimization=0D=0A4. Targeted keywor=\r\nds are not placed into tags=0D=0A5. Alt / Image tags Optimization=0D=0A6=\r\n.. Google Publisher is missing=0D=0A7. Custom 404 Page is missing=0D=0A8.=\r\n The Products are not following Structured markup data=0D=0A9.  Website=\r\n Speed Development (Both Mobile and Desktop)=0D=0A10. Off =E2=80=93Page=\r\n SEO work=0D=0A =0D=0ALots are pending=E2=80=A6=E2=80=A6=E2=80=A6=E2=80=\r\n=A6=E2=80=A6..=0D=0A =0D=0AYou can see these are the things that need to=\r\n be done properly to make the keywords others to get into the top 10 spo=\r\nt in Google Search & your sales Increase.=0D=0A =0D=0AAlso there is one=\r\n more thing to mention that you did thousands of links that time for you=\r\nr website, which are considered as spam after Google roll outs several u=\r\npdates of Panda and penguin. We need to remove them too.=0D=0A =0D=0ASir=\r\n/Madam, please give us a chance to fix these errors and we will give you=\r\n rank on these keywords.=0D=0A =0D=0APlease let me know if you encounter=\r\n any problems or if there is anything you need. If this email has reache=\r\nd you by mistake or if you do not wish to take advantage of this adverti=\r\nsing opportunity, please accept my apology for any inconvenience caused=\r\n and rest assured that you will not be contacted again.=0D=0A =0D=0AMany=\r\n thanks for your time and consideration,=0D=0A =0D=0ALooking forward=0D=\r\n=0A             =0D=0ARegards=0D=0APatricia Smith=0D=0A=0D=0AIf you did=\r\n not wish to receive this, please reply with \"unsubscribe\" in the subjec=\r\nt line.=0D=0A =0D=0ADisclaimer: This is an advertisement and a promotion=\r\nal mail strictly on the guidelines of CAN-SPAM Act of 2003. We have clea=\r\nrly mentioned the source mail-id of this mail and the subject lines and=\r\n they are in no way misleading in any form. We have found your mail addr=\r\ness through our own efforts on the web search and not through any illega=\r\nl way. If you find this mail unsolicited, please reply with \"unsubscribe=\r\n\" in the subject line and we will take care that you do not receive any=\r\n further promotional mail.=0A=0A-- =0AThis e-mail was sent from a contac=\r\nt form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medi=\r\ncine Treatment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <68a98eee800083539a9025c6e1533e01@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7374,2836,'_email','patriciapdsmith@gmail.com'),(7375,2836,'_name','Patricia Smith'),(7376,2836,'_props','a:0:{}'),(7377,2836,'_last_contacted','2019-09-30 11:34:10'),(7378,2837,'_subject','[your-subject]'),(7379,2837,'_from','Patricia Smith <patriciapdsmith@gmail.com>'),(7380,2837,'_from_name','Patricia Smith'),(7381,2837,'_from_email','patriciapdsmith@gmail.com'),(7382,2837,'_field_your-name','Patricia Smith'),(7383,2837,'_field_your-email','patriciapdsmith@gmail.com'),(7384,2837,'_field_phone','08016862141'),(7385,2837,'_field_service','9am-11am'),(7386,2837,'_field_your-message','google'),(7387,2837,'_field_otherquestion','Hello,\r\n \r\nHow are you? Hope you are fine.\r\n \r\nI have been checking your website quite often. It has seen that the main keywords are still not in top 10 rank. You know things of working;  I mean the procedure of working has changed a lot.\r\n \r\nSo I would like to have opportunity to work for you and this time we will bring the keywords to the top 10 spot with guaranteed period.\r\n \r\nThere is no wondering that it is possible now cause, I have found out that there are few things need to be done for better performances (Some we Discuss, in this email). Let me tell you some of them -\r\n \r\n1. Title Tag Optimization\r\n2. Meta Tag Optimization (Description, keyword and etc)\r\n3. Heading Tags Optimization\r\n4. Targeted keywords are not placed into tags\r\n5. Alt / Image tags Optimization\r\n6. Google Publisher is missing\r\n7. Custom 404 Page is missing\r\n8. The Products are not following Structured markup data\r\n9.  Website Speed Development (Both Mobile and Desktop)\r\n10. Off –Page SEO work\r\n \r\nLots are pending……………..\r\n \r\nYou can see these are the things that need to be done properly to make the keywords others to get into the top 10 spot in Google Search & your sales Increase.\r\n \r\nAlso there is one more thing to mention that you did thousands of links that time for your website, which are considered as spam after Google roll outs several updates of Panda and penguin. We need to remove them too.\r\n \r\nSir/Madam, please give us a chance to fix these errors and we will give you rank on these keywords.\r\n \r\nPlease let me know if you encounter any problems or if there is anything you need. If this email has reached you by mistake or if you do not wish to take advantage of this advertising opportunity, please accept my apology for any inconvenience caused and rest assured that you will not be contacted again.\r\n \r\nMany thanks for your time and consideration,\r\n \r\nLooking forward\r\n             \r\nRegards\r\nPatricia Smith\r\n\r\nIf you did not wish to receive this, please reply with \"unsubscribe\" in the subject line.\r\n \r\nDisclaimer: This is an advertisement and a promotional mail strictly on the guidelines of CAN-SPAM Act of 2003. We have clearly mentioned the source mail-id of this mail and the subject lines and they are in no way misleading in any form. We have found your mail address through our own efforts on the web search and not through any illegal way. If you find this mail unsolicited, please reply with \"unsubscribe\" in the subject line and we will take care that you do not receive any further promotional mail.'),(7388,2837,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7389,2837,'_meta','a:19:{s:13:\"serial_number\";i:68;s:9:\"remote_ip\";s:15:\"103.218.236.199\";s:10:\"user_agent\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:18:\"September 30, 2019\";s:4:\"time\";s:8:\"11:34 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7390,2837,'_akismet',NULL),(7391,2837,'_recaptcha','a:0:{}'),(7392,2837,'_spam_log','a:0:{}'),(7393,2837,'_consent','a:0:{}'),(7394,2838,'success','1'),(7395,2838,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7396,2838,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7397,2838,'reply_to_header','jasondwebster@me.com'),(7398,2838,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7399,2838,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7400,2838,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7401,2838,'original_message','From: Jason Webster \n\nEmail: jasondwebster@me.com\n\nPhone: 9492460791\n\nService:3pm-5pm\n\nMessage Body:\nMulti level herniation and stinosis.\n\nAny Other Comments:\nAetna ppo coverage?\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7402,2838,'original_headers','a:0:{}'),(7403,2838,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BN7PR05CA0017.outlook.office365.com Microsoft ESMTP MAIL Service ready at Mon, 30 Sep 2019 15:20:20 +0000\r\nEHLO drfields.com\r\n250-BN7PR05CA0017.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BN7PR05CA0017.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: jasondwebster@me.com\r\nMessage-Id: <b7e445d84841e196d106fe55fb6d138b@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Mon, 30 Sep 2019 15:20:21 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Jason Webster =0A=0AEmail: jasondwebster@me.com=0A=0APhone: 949246=\r\n0791=0A=0AService:3pm-5pm=0A=0AMessage Body:=0AMulti level herniation an=\r\nd stinosis.=0A=0AAny Other Comments:=0AAetna ppo coverage?=0A=0A-- =0ATh=\r\nis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Sur=\r\ngery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.=\r\ndrfields.com)\r\n.\r\n250 2.0.0 OK <b7e445d84841e196d106fe55fb6d138b@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7404,2839,'_email','jasondwebster@me.com'),(7405,2839,'_name','Jason Webster'),(7406,2839,'_props','a:0:{}'),(7407,2839,'_last_contacted','2019-09-30 15:20:23'),(7408,2840,'_subject','[your-subject]'),(7409,2840,'_from','Jason Webster <jasondwebster@me.com>'),(7410,2840,'_from_name','Jason Webster'),(7411,2840,'_from_email','jasondwebster@me.com'),(7412,2840,'_field_your-name','Jason Webster'),(7413,2840,'_field_your-email','jasondwebster@me.com'),(7414,2840,'_field_phone','9492460791'),(7415,2840,'_field_service','3pm-5pm'),(7416,2840,'_field_your-message','Multi level herniation and stinosis. '),(7417,2840,'_field_otherquestion','Aetna ppo coverage?'),(7418,2840,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7419,2840,'_meta','a:19:{s:13:\"serial_number\";i:69;s:9:\"remote_ip\";s:13:\"172.58.27.132\";s:10:\"user_agent\";s:137:\"Mozilla/5.0 (iPhone; CPU iPhone OS 13_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:18:\"September 30, 2019\";s:4:\"time\";s:7:\"3:20 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7420,2840,'_akismet',NULL),(7421,2840,'_recaptcha','a:0:{}'),(7422,2840,'_spam_log','a:0:{}'),(7423,2840,'_consent','a:0:{}'),(7426,2848,'success','1'),(7427,2848,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7428,2848,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7429,2848,'reply_to_header','info@healthybynaturemed.com'),(7430,2848,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7431,2848,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7432,2848,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7433,2848,'original_message','From: Dr. Stacey Kupperman \n\nEmail: info@healthybynaturemed.com\n\nPhone: 3103109717\n\nService:3pm-5pm\n\nMessage Body:\nI am a Naturopathic Doctor, and have referred some patients to Dr. Fields.  I wanted to request that you send me some business cards and/or brochure to keep in my waiting room.  Office address:  Healthy By Nature  7250 Beverly Blvd Suite 101  Los Angeles, CA 90036\r\nThank you so much!\r\nDr. Stacey Kupperman\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7434,2848,'original_headers','a:0:{}'),(7435,2848,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BN7PR02CA0008.outlook.office365.com Microsoft ESMTP MAIL Service ready at Wed, 2 Oct 2019 19:55:16 +0000\r\nEHLO drfields.com\r\n250-BN7PR02CA0008.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BN7PR02CA0008.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: info@healthybynaturemed.com\r\nMessage-Id: <ae63b17fcedfe0601343606042f9802a@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Wed, 02 Oct 2019 19:55:16 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Dr. Stacey Kupperman =0A=0AEmail: info@healthybynaturemed.com=0A=\r\n=0APhone: 3103109717=0A=0AService:3pm-5pm=0A=0AMessage Body:=0AI am a Na=\r\nturopathic Doctor, and have referred some patients to Dr. Fields.  I wan=\r\nted to request that you send me some business cards and/or brochure to k=\r\neep in my waiting room.  Office address:  Healthy By Nature  7250 Beverl=\r\ny Blvd Suite 101  Los Angeles, CA 90036=0D=0AThank you so much!=0D=0ADr.=\r\n Stacey Kupperman=0A=0AAny Other Comments:=0A=0A=0A-- =0AThis e-mail was=\r\n sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternat=\r\nive Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <ae63b17fcedfe0601343606042f9802a@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7436,2849,'_email','info@healthybynaturemed.com'),(7437,2849,'_name','Dr. Stacey Kupperman'),(7438,2849,'_props','a:0:{}'),(7439,2849,'_last_contacted','2019-10-02 19:55:19'),(7440,2850,'_subject','[your-subject]'),(7441,2850,'_from','Dr. Stacey Kupperman <info@healthybynaturemed.com>'),(7442,2850,'_from_name','Dr. Stacey Kupperman'),(7443,2850,'_from_email','info@healthybynaturemed.com'),(7444,2850,'_field_your-name','Dr. Stacey Kupperman'),(7445,2850,'_field_your-email','info@healthybynaturemed.com'),(7446,2850,'_field_phone','3103109717'),(7447,2850,'_field_service','3pm-5pm'),(7448,2850,'_field_your-message','I am a Naturopathic Doctor, and have referred some patients to Dr. Fields.  I wanted to request that you send me some business cards and/or brochure to keep in my waiting room.  Office address:  Healthy By Nature  7250 Beverly Blvd Suite 101  Los Angeles, CA 90036\r\nThank you so much!\r\nDr. Stacey Kupperman'),(7449,2850,'_field_otherquestion',''),(7450,2850,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7451,2850,'_meta','a:19:{s:13:\"serial_number\";i:70;s:9:\"remote_ip\";s:14:\"104.175.55.149\";s:10:\"user_agent\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Safari/605.1.15\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"October 2, 2019\";s:4:\"time\";s:7:\"7:55 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7452,2850,'_akismet',NULL),(7453,2850,'_recaptcha','a:0:{}'),(7454,2850,'_spam_log','a:0:{}'),(7455,2850,'_consent','a:0:{}'),(7456,2852,'success','1'),(7457,2852,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7458,2852,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7459,2852,'reply_to_header','richard.m.whitley@gmail.com'),(7460,2852,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7461,2852,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7462,2852,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7463,2852,'original_message','From: RICHARD M WHITLEY \n\nEmail: richard.m.whitley@gmail.com\n\nPhone: (818)357-7282\n\nService:3pm-5pm\n\nMessage Body:\nWhile hiking in October, 2015, I suffered a medial meniscus tear in my left knee.  Over time it worsened, and I had arthroscopic surgery in January, 2016.  I had a quick recovery and am again running a couple times a week.  I still get an occasional stabbing pain in the knee while running, but then I slow down and change my stride a little bit and after a minute or two the pain is gone and I resume my normal running.  This happens in BOTH knees, and was occurring for many years before the tear, so it\'s not necessarily related to the tear.   Since I know I have less of my meniscus in my left knee, I was wondering if prolotherapy would be able to increase the cartilage there, or whether the fact that it was cut away surgically means that the amount lost is too great to be significantly changed by prolotherapy.  Do you have any experience with the effect of prolotherapy on joints where the cartilage had been surgically trimmed  back to remove the torn portions?\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7464,2852,'original_headers','a:0:{}'),(7465,2852,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BN6PR2201CA0019.outlook.office365.com Microsoft ESMTP MAIL Service ready at Fri, 4 Oct 2019 18:05:59 +0000\r\nEHLO drfields.com\r\n250-BN6PR2201CA0019.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BN6PR2201CA0019.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: richard.m.whitley@gmail.com\r\nMessage-Id: <c3418e71ed09806c928ee3199bbf4347@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Fri, 04 Oct 2019 18:06:00 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: RICHARD M WHITLEY =0A=0AEmail: richard.m.whitley@gmail.com=0A=0APh=\r\none: (818)357-7282=0A=0AService:3pm-5pm=0A=0AMessage Body:=0AWhile hikin=\r\ng in October, 2015, I suffered a medial meniscus tear in my left knee. =\r\n Over time it worsened, and I had arthroscopic surgery in January, 2016.=\r\n  I had a quick recovery and am again running a couple times a week.  I=\r\n still get an occasional stabbing pain in the knee while running, but th=\r\nen I slow down and change my stride a little bit and after a minute or t=\r\nwo the pain is gone and I resume my normal running.  This happens in BOT=\r\nH knees, and was occurring for many years before the tear, so it\'s not n=\r\necessarily related to the tear.   Since I know I have less of my meniscu=\r\ns in my left knee, I was wondering if prolotherapy would be able to incr=\r\nease the cartilage there, or whether the fact that it was cut away surgi=\r\ncally means that the amount lost is too great to be significantly change=\r\nd by prolotherapy.  Do you have any experience with the effect of prolot=\r\nherapy on joints where the cartilage had been surgically trimmed  back t=\r\no remove the torn portions?=0A=0AAny Other Comments:=0A=0A=0A-- =0AThis=\r\n e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surge=\r\nry Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.dr=\r\nfields.com)\r\n.\r\n250 2.0.0 OK <c3418e71ed09806c928ee3199bbf4347@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7466,2853,'_email','richard.m.whitley@gmail.com'),(7467,2853,'_name','RICHARD M WHITLEY'),(7468,2853,'_props','a:0:{}'),(7469,2853,'_last_contacted','2019-10-04 18:06:02'),(7470,2854,'_subject','[your-subject]'),(7471,2854,'_from','RICHARD M WHITLEY <richard.m.whitley@gmail.com>'),(7472,2854,'_from_name','RICHARD M WHITLEY'),(7473,2854,'_from_email','richard.m.whitley@gmail.com'),(7474,2854,'_field_your-name','RICHARD M WHITLEY'),(7475,2854,'_field_your-email','richard.m.whitley@gmail.com'),(7476,2854,'_field_phone','(818)357-7282'),(7477,2854,'_field_service','3pm-5pm'),(7478,2854,'_field_your-message','While hiking in October, 2015, I suffered a medial meniscus tear in my left knee.  Over time it worsened, and I had arthroscopic surgery in January, 2016.  I had a quick recovery and am again running a couple times a week.  I still get an occasional stabbing pain in the knee while running, but then I slow down and change my stride a little bit and after a minute or two the pain is gone and I resume my normal running.  This happens in BOTH knees, and was occurring for many years before the tear, so it\'s not necessarily related to the tear.   Since I know I have less of my meniscus in my left knee, I was wondering if prolotherapy would be able to increase the cartilage there, or whether the fact that it was cut away surgically means that the amount lost is too great to be significantly changed by prolotherapy.  Do you have any experience with the effect of prolotherapy on joints where the cartilage had been surgically trimmed  back to remove the torn portions?'),(7479,2854,'_field_otherquestion',''),(7480,2854,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7481,2854,'_meta','a:19:{s:13:\"serial_number\";i:71;s:9:\"remote_ip\";s:14:\"76.219.184.129\";s:10:\"user_agent\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"October 4, 2019\";s:4:\"time\";s:7:\"6:06 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7482,2854,'_akismet',NULL),(7483,2854,'_recaptcha','a:0:{}'),(7484,2854,'_spam_log','a:0:{}'),(7485,2854,'_consent','a:0:{}'),(7486,2855,'success','1'),(7487,2855,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7488,2855,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7489,2855,'reply_to_header','shantishu30@gmail.com'),(7490,2855,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7491,2855,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7492,2855,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7493,2855,'original_message','From: Sharon  Doheny \n\nEmail: shantishu30@gmail.com\n\nPhone: 310-476-1518\n\nService:9am-11am\n\nMessage Body:\nI had one knee replacement with dr. Yun about 7 years ago.  I have arthritis  bone on bone. Quit tennis after that surgery. Didn’t want to go through it again. My bad knee was in same condition as the one that was replaced. Now after one fall have been doing laser therapy with Dr. kraft. Has helped if I go consistently. Back to hurting and cannot bend knee too far and don’t want it to atrophy. My friend Deborah Johnson recommended you.\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7494,2855,'original_headers','a:0:{}'),(7495,2855,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR17CA0002.outlook.office365.com Microsoft ESMTP MAIL Service ready at Fri, 4 Oct 2019 21:40:52 +0000\r\nEHLO drfields.com\r\n250-MN2PR17CA0002.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR17CA0002.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: shantishu30@gmail.com\r\nMessage-Id: <99cac5081ae52d0d6d994cc38ea50732@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Fri, 04 Oct 2019 21:40:53 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Sharon  Doheny =0A=0AEmail: shantishu30@gmail.com=0A=0APhone: 310-=\r\n476-1518=0A=0AService:9am-11am=0A=0AMessage Body:=0AI had one knee repla=\r\ncement with dr. Yun about 7 years ago.  I have arthritis  bone on bone.=\r\n Quit tennis after that surgery. Didn=E2=80=99t want to go through it ag=\r\nain. My bad knee was in same condition as the one that was replaced. Now=\r\n after one fall have been doing laser therapy with Dr. kraft. Has helped=\r\n if I go consistently. Back to hurting and cannot bend knee too far and=\r\n don=E2=80=99t want it to atrophy. My friend Deborah Johnson recommended=\r\n you.=0A=0AAny Other Comments:=0A=0A=0A-- =0AThis e-mail was sent from a=\r\n contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthoped=\r\nic Medicine Treatment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <99cac5081ae52d0d6d994cc38ea50732@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7496,2856,'_email','shantishu30@gmail.com'),(7497,2856,'_name','Sharon  Doheny'),(7498,2856,'_props','a:0:{}'),(7499,2856,'_last_contacted','2019-10-04 21:40:56'),(7500,2857,'_subject','[your-subject]'),(7501,2857,'_from','Sharon  Doheny <shantishu30@gmail.com>'),(7502,2857,'_from_name','Sharon  Doheny'),(7503,2857,'_from_email','shantishu30@gmail.com'),(7504,2857,'_field_your-name','Sharon  Doheny '),(7505,2857,'_field_your-email','shantishu30@gmail.com'),(7506,2857,'_field_phone','310-476-1518'),(7507,2857,'_field_service','9am-11am'),(7508,2857,'_field_your-message','I had one knee replacement with dr. Yun about 7 years ago.  I have arthritis  bone on bone. Quit tennis after that surgery. Didn’t want to go through it again. My bad knee was in same condition as the one that was replaced. Now after one fall have been doing laser therapy with Dr. kraft. Has helped if I go consistently. Back to hurting and cannot bend knee too far and don’t want it to atrophy. My friend Deborah Johnson recommended you.'),(7509,2857,'_field_otherquestion',''),(7510,2857,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7511,2857,'_meta','a:19:{s:13:\"serial_number\";i:72;s:9:\"remote_ip\";s:13:\"45.49.242.142\";s:10:\"user_agent\";s:130:\"Mozilla/5.0 (iPad; CPU OS 12_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"October 4, 2019\";s:4:\"time\";s:7:\"9:40 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7512,2857,'_akismet',NULL),(7513,2857,'_recaptcha','a:0:{}'),(7514,2857,'_spam_log','a:0:{}'),(7515,2857,'_consent','a:0:{}'),(7516,2858,'_edit_lock','1598476671:9'),(7517,2858,'_edit_last','9'),(7518,2858,'_wp_page_template','default'),(7520,2858,'_yoast_wpseo_content_score','30'),(7521,2858,'_yoast_wpseo_primary_category','32'),(7522,2861,'success','1'),(7523,2861,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7524,2861,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7525,2861,'reply_to_header','danny@websitesdepot.com'),(7526,2861,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7527,2861,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7528,2861,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7529,2861,'original_message','From: Danny Star \n\nEmail: danny@websitesdepot.com\n\nPhone: 8182359440\n\nService:9am-11am\n\nMessage Body:\nTest WD\n\nAny Other Comments:\nTest WD\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7530,2861,'original_headers','a:0:{}'),(7531,2861,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BL0PR1501CA0025.outlook.office365.com Microsoft ESMTP MAIL Service ready at Wed, 9 Oct 2019 00:18:43 +0000\r\nEHLO drfields.com\r\n250-BL0PR1501CA0025.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BL0PR1501CA0025.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: danny@websitesdepot.com\r\nMessage-Id: <c81088631ab8de321a2307879bb47ec2@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Wed, 09 Oct 2019 00:18:43 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Danny Star =0A=0AEmail: danny@websitesdepot.com=0A=0APhone: 818235=\r\n9440=0A=0AService:9am-11am=0A=0AMessage Body:=0ATest WD=0A=0AAny Other C=\r\nomments:=0ATest WD=0A=0A-- =0AThis e-mail was sent from a contact form o=\r\nn Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Tre=\r\natment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <c81088631ab8de321a2307879bb47ec2@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7532,2862,'_email','danny@websitesdepot.com'),(7533,2862,'_name','Danny Star'),(7534,2862,'_props','a:0:{}'),(7535,2862,'_last_contacted','2019-10-09 00:18:46'),(7536,2863,'_subject','[your-subject]'),(7537,2863,'_from','Danny Star <danny@websitesdepot.com>'),(7538,2863,'_from_name','Danny Star'),(7539,2863,'_from_email','danny@websitesdepot.com'),(7540,2863,'_field_your-name','Danny Star'),(7541,2863,'_field_your-email','danny@websitesdepot.com'),(7542,2863,'_field_phone','8182359440'),(7543,2863,'_field_service','9am-11am'),(7544,2863,'_field_your-message','Test WD'),(7545,2863,'_field_otherquestion','Test WD'),(7546,2863,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7547,2863,'_meta','a:19:{s:13:\"serial_number\";i:73;s:9:\"remote_ip\";s:15:\"172.118.143.212\";s:10:\"user_agent\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:15:\"October 9, 2019\";s:4:\"time\";s:8:\"12:18 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7548,2863,'_akismet',NULL),(7549,2863,'_recaptcha','a:0:{}'),(7550,2863,'_spam_log','a:0:{}'),(7551,2863,'_consent','a:0:{}'),(7552,2865,'_edit_lock','1598463576:9'),(7553,2865,'_edit_last','9'),(7554,2865,'_wp_page_template','default'),(7555,2865,'_yoast_wpseo_content_score','60'),(7556,2865,'_yoast_wpseo_primary_category','32'),(7557,2867,'success','1'),(7558,2867,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7559,2867,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7560,2867,'reply_to_header','jocelynr79@msn.com'),(7561,2867,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7562,2867,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7563,2867,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7564,2867,'original_message','From: Jocelyn Sherman Falcioni \n\nEmail: jocelynr79@msn.com\n\nPhone: 9092625193\n\nService:3pm-5pm\n\nMessage Body:\nMy left knee has dislocated 30+ times since I was a child (I am now 40). I am currently considering Medial patellofemoral ligament reconstruction surgery, but was wondering if stem cell therapy might help to treat/cure the problem.\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7565,2867,'original_headers','a:0:{}'),(7566,2867,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BL0PR02CA0119.outlook.office365.com Microsoft ESMTP MAIL Service ready at Fri, 11 Oct 2019 16:56:13 +0000\r\nEHLO drfields.com\r\n250-BL0PR02CA0119.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BL0PR02CA0119.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: jocelynr79@msn.com\r\nMessage-Id: <683bd3681ce083f4bfbb765eca3774ff@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Fri, 11 Oct 2019 16:56:13 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Jocelyn Sherman Falcioni =0A=0AEmail: jocelynr79@msn.com=0A=0APhon=\r\ne: 9092625193=0A=0AService:3pm-5pm=0A=0AMessage Body:=0AMy left knee has=\r\n dislocated 30+ times since I was a child (I am now 40). I am currently=\r\n considering Medial patellofemoral ligament reconstruction surgery, but=\r\n was wondering if stem cell therapy might help to treat/cure the problem=\r\n..=0A=0AAny Other Comments:=0A=0A=0A-- =0AThis e-mail was sent from a con=\r\ntact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic M=\r\nedicine Treatment - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <683bd3681ce083f4bfbb765eca3774ff@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7567,2868,'_email','jocelynr79@msn.com'),(7568,2868,'_name','Jocelyn Sherman Falcioni'),(7569,2868,'_props','a:0:{}'),(7570,2868,'_last_contacted','2019-10-11 16:56:16'),(7571,2869,'_subject','[your-subject]'),(7572,2869,'_from','Jocelyn Sherman Falcioni <jocelynr79@msn.com>'),(7573,2869,'_from_name','Jocelyn Sherman Falcioni'),(7574,2869,'_from_email','jocelynr79@msn.com'),(7575,2869,'_field_your-name','Jocelyn Sherman Falcioni'),(7576,2869,'_field_your-email','jocelynr79@msn.com'),(7577,2869,'_field_phone','9092625193'),(7578,2869,'_field_service','3pm-5pm'),(7579,2869,'_field_your-message','My left knee has dislocated 30+ times since I was a child (I am now 40). I am currently considering Medial patellofemoral ligament reconstruction surgery, but was wondering if stem cell therapy might help to treat/cure the problem.'),(7580,2869,'_field_otherquestion',''),(7581,2869,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7582,2869,'_meta','a:19:{s:13:\"serial_number\";i:74;s:9:\"remote_ip\";s:12:\"159.115.9.80\";s:10:\"user_agent\";s:121:\"Mozilla/5.0 (Linux; Android 9; Pixel 3a) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.101 Mobile Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:16:\"October 11, 2019\";s:4:\"time\";s:7:\"4:56 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7583,2869,'_akismet',NULL),(7584,2869,'_recaptcha','a:0:{}'),(7585,2869,'_spam_log','a:0:{}'),(7586,2869,'_consent','a:0:{}'),(7588,2870,'success','1'),(7589,2870,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7590,2870,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7591,2870,'reply_to_header','bikeinfo27@gmail.com'),(7592,2870,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7593,2870,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7594,2870,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7595,2870,'original_message','From: brian erbe \n\nEmail: bikeinfo27@gmail.com\n\nPhone: 831-345-4213\n\nService:3pm-5pm\n\nMessage Body:\nThe following is the findings of my last MRI (Nov 2018).  I am a 44 year old male.  \r\n\r\nMild multilevel degenerative changes of the cervical intervertebral disc and facets including 3mm mild annular disc bulges at C5-C6 and C6-C7\r\n\r\nSevere left C5-C6 neural foraminal narrowing. \r\n\r\nMild C6-C7 central canal stenosis.\n\nAny Other Comments:\nMy back goes out on me once or twice a month, causing me to not be able to work for a day or so.\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7596,2870,'original_headers','a:0:{}'),(7597,2870,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BL0PR0102CA0023.outlook.office365.com Microsoft ESMTP MAIL Service ready at Mon, 14 Oct 2019 21:01:17 +0000\r\nEHLO drfields.com\r\n250-BL0PR0102CA0023.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BL0PR0102CA0023.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: bikeinfo27@gmail.com\r\nMessage-Id: <a29b378db56e746d500c8e997990d8c2@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Mon, 14 Oct 2019 21:01:18 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: brian erbe =0A=0AEmail: bikeinfo27@gmail.com=0A=0APhone: 831-345-4=\r\n213=0A=0AService:3pm-5pm=0A=0AMessage Body:=0AThe following is the findi=\r\nngs of my last MRI (Nov 2018).  I am a 44 year old male.  =0D=0A=0D=0AMi=\r\nld multilevel degenerative changes of the cervical intervertebral disc a=\r\nnd facets including 3mm mild annular disc bulges at C5-C6 and C6-C7=0D=\r\n=0A=0D=0ASevere left C5-C6 neural foraminal narrowing. =0D=0A=0D=0AMild=\r\n C6-C7 central canal stenosis.=0A=0AAny Other Comments:=0AMy back goes o=\r\nut on me once or twice a month, causing me to not be able to work for a=\r\n day or so.=0A=0A-- =0AThis e-mail was sent from a contact form on Stem=\r\n Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment=\r\n - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <a29b378db56e746d500c8e997990d8c2@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7598,2871,'_email','bikeinfo27@gmail.com'),(7599,2871,'_name','brian erbe'),(7600,2871,'_props','a:0:{}'),(7601,2871,'_last_contacted','2019-10-14 21:01:20'),(7602,2872,'_subject','[your-subject]'),(7603,2872,'_from','brian erbe <bikeinfo27@gmail.com>'),(7604,2872,'_from_name','brian erbe'),(7605,2872,'_from_email','bikeinfo27@gmail.com'),(7606,2872,'_field_your-name','brian erbe'),(7607,2872,'_field_your-email','bikeinfo27@gmail.com'),(7608,2872,'_field_phone','831-345-4213'),(7609,2872,'_field_service','3pm-5pm'),(7610,2872,'_field_your-message','The following is the findings of my last MRI (Nov 2018).  I am a 44 year old male.  \r\n\r\nMild multilevel degenerative changes of the cervical intervertebral disc and facets including 3mm mild annular disc bulges at C5-C6 and C6-C7\r\n\r\nSevere left C5-C6 neural foraminal narrowing. \r\n\r\nMild C6-C7 central canal stenosis. \r\n\r\n'),(7611,2872,'_field_otherquestion','My back goes out on me once or twice a month, causing me to not be able to work for a day or so.  '),(7612,2872,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7613,2872,'_meta','a:19:{s:13:\"serial_number\";i:75;s:9:\"remote_ip\";s:13:\"75.140.157.77\";s:10:\"user_agent\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.2 Safari/605.1.15\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:16:\"October 14, 2019\";s:4:\"time\";s:7:\"9:01 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7614,2872,'_akismet',NULL),(7615,2872,'_recaptcha','a:0:{}'),(7616,2872,'_spam_log','a:0:{}'),(7617,2872,'_consent','a:0:{}'),(7618,2873,'success','1'),(7619,2873,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7620,2873,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7621,2873,'reply_to_header','cherylsyphus2007@yahoo.com'),(7622,2873,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7623,2873,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7624,2873,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7625,2873,'original_message','From: Cheryl S Syphus \n\nEmail: cherylsyphus2007@yahoo.com\n\nPhone: 9512056968\n\nService:11am-1pm\n\nMessage Body:\nI have been told I need a knee replacement.I would like to have a less invasive repair.\n\nAny Other Comments:\nWhat alternatives does Dr Fields have & what is the cost.\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7626,2873,'original_headers','a:0:{}'),(7627,2873,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR20CA0030.outlook.office365.com Microsoft ESMTP MAIL Service ready at Tue, 15 Oct 2019 06:30:56 +0000\r\nEHLO drfields.com\r\n250-MN2PR20CA0030.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR20CA0030.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: cherylsyphus2007@yahoo.com\r\nMessage-Id: <9fc5dcbf653eff38544ebabc5e55baa5@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Tue, 15 Oct 2019 06:30:57 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Cheryl S Syphus =0A=0AEmail: cherylsyphus2007@yahoo.com=0A=0APhone=\r\n: 9512056968=0A=0AService:11am-1pm=0A=0AMessage Body:=0AI have been told=\r\n I need a knee replacement.I would like to have a less invasive repair.=\r\n=0A=0AAny Other Comments:=0AWhat alternatives does Dr Fields have & what=\r\n is the cost.=0A=0A-- =0AThis e-mail was sent from a contact form on Ste=\r\nm Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatmen=\r\nt - Dr Fields (https://www.drfields.com)\r\n.\r\n250 2.0.0 OK <9fc5dcbf653eff38544ebabc5e55baa5@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7628,2874,'_email','cherylsyphus2007@yahoo.com'),(7629,2874,'_name','Cheryl S Syphus'),(7630,2874,'_props','a:0:{}'),(7631,2874,'_last_contacted','2019-10-15 06:30:59'),(7632,2875,'_subject','[your-subject]'),(7633,2875,'_from','Cheryl S Syphus <cherylsyphus2007@yahoo.com>'),(7634,2875,'_from_name','Cheryl S Syphus'),(7635,2875,'_from_email','cherylsyphus2007@yahoo.com'),(7636,2875,'_field_your-name','Cheryl S Syphus'),(7637,2875,'_field_your-email','cherylsyphus2007@yahoo.com'),(7638,2875,'_field_phone','9512056968'),(7639,2875,'_field_service','11am-1pm'),(7640,2875,'_field_your-message','I have been told I need a knee replacement.I would like to have a less invasive repair.'),(7641,2875,'_field_otherquestion','What alternatives does Dr Fields have & what is the cost.'),(7642,2875,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7643,2875,'_meta','a:19:{s:13:\"serial_number\";i:76;s:9:\"remote_ip\";s:12:\"45.51.156.29\";s:10:\"user_agent\";s:141:\"Mozilla/5.0 (iPhone; CPU iPhone OS 13_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/84.0.271182770 Mobile/15E148 Safari/605.1\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:16:\"October 15, 2019\";s:4:\"time\";s:7:\"6:30 am\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7644,2875,'_akismet',NULL),(7645,2875,'_recaptcha','a:0:{}'),(7646,2875,'_spam_log','a:0:{}'),(7647,2875,'_consent','a:0:{}'),(7648,2877,'success','1'),(7649,2877,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7650,2877,'to_header','pcc@drfields.com, info@drfields.com, alan@websitedepot.com.. +1 more'),(7651,2877,'reply_to_header','noah@chiromarketinginc.org'),(7652,2877,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7653,2877,'original_to','pcc@drfields.com,info@drfields.com,alan@websitedepot.com,ezekiel@websitedepot.com'),(7654,2877,'original_subject','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"'),(7655,2877,'original_message','From: Noah Carter \n\nEmail: noah@chiromarketinginc.org\n\nPhone: 000-000-0000\n\nService:11am-1pm\n\nMessage Body:\nHi,\r\nAre You Struggling to Grow Your Chiropractic Clinic? With 24,000 Google Searches for Chiropractors EVERY SINGLE DAY, Are YOU Making Sure to Keep Your Clinic in front of People Who Want Your Services?\r\n\r\nnoah@chiromarketinginc.org is an agency for Chiropractors focused on getting you 3X more patients by using the power of Social Media & Google Ads. 1000+ Chiro Clinics are using these proven methods to generate more patients online. We have a 14-day free trial to give you the confidence you need.\r\n\r\nThe internet is filled with an audience who can be in your next patient list. Will you take action?\r\n\r\nPlease email me at noah@chiromarketinginc.org & we will get on a quick call to set up your Free Trial.\r\n\r\nClient relation\r\nNoah Carter\r\nnoah@chiromarketinginc.org\r\nwww.chiromarketinginc.org\n\nAny Other Comments:\nHi,\r\nAre You Struggling to Grow Your Chiropractic Clinic? With 24,000 Google Searches for Chiropractors EVERY SINGLE DAY, Are YOU Making Sure to Keep Your Clinic in front of People Who Want Your Services?\r\n\r\nnoah@chiromarketinginc.org is an agency for Chiropractors focused on getting you 3X more patients by using the power of Social Media & Google Ads. 1000+ Chiro Clinics are using these proven methods to generate more patients online. We have a 14-day free trial to give you the confidence you need.\r\n\r\nThe internet is filled with an audience who can be in your next patient list. Will you take action?\r\n\r\nPlease email me at noah@chiromarketinginc.org & we will get on a quick call to set up your Free Trial.\r\n\r\nClient relation\r\nNoah Carter\r\nnoah@chiromarketinginc.org\r\nwww.chiromarketinginc.org\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)'),(7656,2877,'original_headers','a:0:{}'),(7657,2877,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BL0PR0102CA0031.outlook.office365.com Microsoft ESMTP MAIL Service ready at Tue, 15 Oct 2019 21:57:30 +0000\r\nEHLO drfields.com\r\n250-BL0PR0102CA0031.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BL0PR0102CA0031.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<pcc@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<info@drfields.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<alan@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nRCPT TO:<ezekiel@websitedepot.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: pcc@drfields.com,\r\n info@drfields.com,\r\n alan@websitedepot.com,\r\n ezekiel@websitedepot.com\r\nReply-To: noah@chiromarketinginc.org\r\nMessage-Id: <5193573a4e43577ae2ac3f6305021a09@www.drfields.com>\r\nSubject: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"\r\nDate: Tue, 15 Oct 2019 21:57:30 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nFrom: Noah Carter =0A=0AEmail: noah@chiromarketinginc.org=0A=0APhone: 00=\r\n0-000-0000=0A=0AService:11am-1pm=0A=0AMessage Body:=0AHi,=0D=0AAre You S=\r\ntruggling to Grow Your Chiropractic Clinic? With 24,000 Google Searches=\r\n for Chiropractors EVERY SINGLE DAY, Are YOU Making Sure to Keep Your Cl=\r\ninic in front of People Who Want Your Services?=0D=0A=0D=0Anoah@chiromar=\r\nketinginc.org is an agency for Chiropractors focused on getting you 3X m=\r\nore patients by using the power of Social Media & Google Ads. 1000+ Chir=\r\no Clinics are using these proven methods to generate more patients onlin=\r\ne. We have a 14-day free trial to give you the confidence you need.=0D=\r\n=0A=0D=0AThe internet is filled with an audience who can be in your next=\r\n patient list. Will you take action?=0D=0A=0D=0APlease email me at noah@=\r\nchiromarketinginc.org & we will get on a quick call to set up your Free=\r\n Trial.=0D=0A=0D=0AClient relation=0D=0ANoah Carter=0D=0Anoah@chiromarke=\r\ntinginc.org=0D=0Awww.chiromarketinginc.org=0A=0AAny Other Comments:=0AHi=\r\n,=0D=0AAre You Struggling to Grow Your Chiropractic Clinic? With 24,000=\r\n Google Searches for Chiropractors EVERY SINGLE DAY, Are YOU Making Sure=\r\n to Keep Your Clinic in front of People Who Want Your Services?=0D=0A=0D=\r\n=0Anoah@chiromarketinginc.org is an agency for Chiropractors focused on=\r\n getting you 3X more patients by using the power of Social Media & Googl=\r\ne Ads. 1000+ Chiro Clinics are using these proven methods to generate mo=\r\nre patients online. We have a 14-day free trial to give you the confiden=\r\nce you need.=0D=0A=0D=0AThe internet is filled with an audience who can=\r\n be in your next patient list. Will you take action?=0D=0A=0D=0APlease e=\r\nmail me at noah@chiromarketinginc.org & we will get on a quick call to s=\r\net up your Free Trial.=0D=0A=0D=0AClient relation=0D=0ANoah Carter=0D=0A=\r\nnoah@chiromarketinginc.org=0D=0Awww.chiromarketinginc.org=0A=0A-- =0AThi=\r\ns e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surg=\r\nery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.d=\r\nrfields.com)\r\n.\r\n250 2.0.0 OK <5193573a4e43577ae2ac3f6305021a09@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7658,2878,'_email','noah@chiromarketinginc.org'),(7659,2878,'_name','Noah Carter'),(7660,2878,'_props','a:0:{}'),(7661,2878,'_last_contacted','2019-10-15 21:57:33'),(7662,2879,'_subject','[your-subject]'),(7663,2879,'_from','Noah Carter <noah@chiromarketinginc.org>'),(7664,2879,'_from_name','Noah Carter'),(7665,2879,'_from_email','noah@chiromarketinginc.org'),(7666,2879,'_field_your-name','Noah Carter'),(7667,2879,'_field_your-email','noah@chiromarketinginc.org'),(7668,2879,'_field_phone','000-000-0000'),(7669,2879,'_field_service','11am-1pm'),(7670,2879,'_field_your-message','Hi,\r\nAre You Struggling to Grow Your Chiropractic Clinic? With 24,000 Google Searches for Chiropractors EVERY SINGLE DAY, Are YOU Making Sure to Keep Your Clinic in front of People Who Want Your Services?\r\n\r\nnoah@chiromarketinginc.org is an agency for Chiropractors focused on getting you 3X more patients by using the power of Social Media & Google Ads. 1000+ Chiro Clinics are using these proven methods to generate more patients online. We have a 14-day free trial to give you the confidence you need.\r\n\r\nThe internet is filled with an audience who can be in your next patient list. Will you take action?\r\n\r\nPlease email me at noah@chiromarketinginc.org & we will get on a quick call to set up your Free Trial.\r\n\r\nClient relation\r\nNoah Carter\r\nnoah@chiromarketinginc.org\r\nwww.chiromarketinginc.org'),(7671,2879,'_field_otherquestion','Hi,\r\nAre You Struggling to Grow Your Chiropractic Clinic? With 24,000 Google Searches for Chiropractors EVERY SINGLE DAY, Are YOU Making Sure to Keep Your Clinic in front of People Who Want Your Services?\r\n\r\nnoah@chiromarketinginc.org is an agency for Chiropractors focused on getting you 3X more patients by using the power of Social Media & Google Ads. 1000+ Chiro Clinics are using these proven methods to generate more patients online. We have a 14-day free trial to give you the confidence you need.\r\n\r\nThe internet is filled with an audience who can be in your next patient list. Will you take action?\r\n\r\nPlease email me at noah@chiromarketinginc.org & we will get on a quick call to set up your Free Trial.\r\n\r\nClient relation\r\nNoah Carter\r\nnoah@chiromarketinginc.org\r\nwww.chiromarketinginc.org'),(7672,2879,'_fields','a:6:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:5:\"phone\";N;s:7:\"service\";N;s:12:\"your-message\";N;s:13:\"otherquestion\";N;}'),(7673,2879,'_meta','a:19:{s:13:\"serial_number\";i:77;s:9:\"remote_ip\";s:11:\"69.167.15.1\";s:10:\"user_agent\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:3:\"url\";s:33:\"https://www.drfields.com/contact/\";s:4:\"date\";s:16:\"October 15, 2019\";s:4:\"time\";s:7:\"9:57 pm\";s:7:\"post_id\";s:2:\"29\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:33:\"https://www.drfields.com/contact/\";s:11:\"post_author\";s:9:\"Debi33445\";s:17:\"post_author_email\";s:18:\"brinkerd@yahoo.com\";s:10:\"site_title\";s:88:\"Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\";s:16:\"site_description\";s:0:\"\";s:8:\"site_url\";s:24:\"https://www.drfields.com\";s:16:\"site_admin_email\";s:30:\"admin@dentalimplantsmalibu.com\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(7674,2879,'_akismet',NULL),(7675,2879,'_recaptcha','a:0:{}'),(7676,2879,'_spam_log','a:0:{}'),(7677,2879,'_consent','a:0:{}'),(7678,2881,'_email','bholcroft@webstractmarketing.com'),(7679,2881,'_name','Bill Holcroft'),(7680,2881,'_props','a:2:{s:10:\"first_name\";s:4:\"Bill\";s:9:\"last_name\";s:8:\"Holcroft\";}'),(7681,2881,'_last_contacted','2019-10-16 20:00:23'),(7682,2882,'success','1'),(7683,2882,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7684,2882,'to_header','admin@dentalimplantsmalibu.com'),(7685,2882,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7686,2882,'original_to','admin@dentalimplantsmalibu.com'),(7687,2882,'original_subject','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] New User Registration'),(7688,2882,'original_message','New user registration on your site Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields:\r\n\r\nUsername: BillH\r\n\r\nEmail: bholcroft@webstractmarketing.com\r\n'),(7689,2882,'original_headers','a:0:{}'),(7690,2882,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BN6PR2201CA0028.outlook.office365.com Microsoft ESMTP MAIL Service ready at Wed, 16 Oct 2019 19:16:40 +0000\r\nEHLO drfields.com\r\n250-BN6PR2201CA0028.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BN6PR2201CA0028.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<admin@dentalimplantsmalibu.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: admin@dentalimplantsmalibu.com\r\nMessage-Id: <f123fe584f8c87659c3a145ec6bc283b@www.drfields.com>\r\nSubject: [Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] New User Registration\r\nDate: Wed, 16 Oct 2019 19:16:41 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nNew user registration on your site Stem Cell PRP Prolotherapy Surgery Al=\r\nternative Orthopedic Medicine Treatment - Dr Fields:=0D=0A=0D=0AUsername=\r\n: BillH=0D=0A=0D=0AEmail: bholcroft@webstractmarketing.com=0D=0A\r\n.\r\n250 2.0.0 OK <f123fe584f8c87659c3a145ec6bc283b@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7691,2883,'success','1'),(7692,2883,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7693,2883,'to_header','bholcroft@webstractmarketing.com'),(7694,2883,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7695,2883,'original_to','bholcroft@webstractmarketing.com'),(7696,2883,'original_subject','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Login Details'),(7697,2883,'original_message','Username: BillH\r\n\r\nTo set your password, visit the following address:\r\n\r\n<https://www.drfields.com/wp-login.php?action=rp&key=oJ4FgtLzPfNhpgz8LlCb&login=BillH>\r\n\r\nhttps://www.drfields.com/wp-login.php\r\n'),(7698,2883,'original_headers','a:0:{}'),(7699,2883,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BN6PR04CA0038.outlook.office365.com Microsoft ESMTP MAIL Service ready at Wed, 16 Oct 2019 19:16:43 +0000\r\nEHLO drfields.com\r\n250-BN6PR04CA0038.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BN6PR04CA0038.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<bholcroft@webstractmarketing.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: bholcroft@webstractmarketing.com\r\nMessage-Id: <d9a2d09ccec2fe6328a9dea99ea22298@www.drfields.com>\r\nSubject: [Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Login Details\r\nDate: Wed, 16 Oct 2019 19:16:43 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nUsername: BillH=0D=0A=0D=0ATo set your password, visit the following add=\r\nress:=0D=0A=0D=0A<https://www.drfields.com/wp-login.php?action=3Drp&key=\r\n=3DoJ4FgtLzPfNhpgz8LlCb&login=3DBillH>=0D=0A=0D=0Ahttps://www.drfields.c=\r\nom/wp-login.php=0D=0A\r\n.\r\n250 2.0.0 OK <d9a2d09ccec2fe6328a9dea99ea22298@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7700,2885,'_email','webmaster@webstractmarketing.com'),(7701,2885,'_name','website-admin'),(7702,2885,'_props','a:2:{s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";}'),(7703,2885,'_last_contacted','2019-10-17 21:41:55'),(7704,2886,'success','1'),(7705,2886,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7706,2886,'to_header','admin@dentalimplantsmalibu.com'),(7707,2886,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7708,2886,'original_to','admin@dentalimplantsmalibu.com'),(7709,2886,'original_subject','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] New User Registration'),(7710,2886,'original_message','New user registration on your site Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields:\r\n\r\nUsername: website-admin\r\n\r\nEmail: webmaster@webstractmarketing.com\r\n'),(7711,2886,'original_headers','a:0:{}'),(7712,2886,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR05CA0002.outlook.office365.com Microsoft ESMTP MAIL Service ready at Wed, 16 Oct 2019 20:17:10 +0000\r\nEHLO drfields.com\r\n250-MN2PR05CA0002.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR05CA0002.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<admin@dentalimplantsmalibu.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: admin@dentalimplantsmalibu.com\r\nMessage-Id: <a3d14530e488e9c7f086a990d3790b5f@www.drfields.com>\r\nSubject: [Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] New User Registration\r\nDate: Wed, 16 Oct 2019 20:17:10 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nNew user registration on your site Stem Cell PRP Prolotherapy Surgery Al=\r\nternative Orthopedic Medicine Treatment - Dr Fields:=0D=0A=0D=0AUsername=\r\n: website-admin=0D=0A=0D=0AEmail: webmaster@webstractmarketing.com=0D=0A\r\n.\r\n250 2.0.0 OK <a3d14530e488e9c7f086a990d3790b5f@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7713,2888,'success','1'),(7714,2888,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7715,2888,'to_header','webmaster@webstractmarketing.com'),(7716,2888,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7717,2888,'original_to','webmaster@webstractmarketing.com'),(7718,2888,'original_subject','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] New Admin Email Address'),(7719,2888,'original_message','Howdy website-admin,\n\nYou recently requested to have the administration email address on\nyour site changed.\n\nIf this is correct, please click on the following link to change it:\nhttps://www.drfields.com/wp-admin/options.php?adminhash=a21f55abe5d250a739b017142ef53c27\n\nYou can safely ignore and delete this email if you do not want to\ntake this action.\n\nThis email has been sent to webmaster@webstractmarketing.com\n\nRegards,\nAll at Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com'),(7720,2888,'original_headers','a:0:{}'),(7721,2888,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR07CA0012.outlook.office365.com Microsoft ESMTP MAIL Service ready at Wed, 16 Oct 2019 20:24:33 +0000\r\nEHLO drfields.com\r\n250-MN2PR07CA0012.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR07CA0012.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<webmaster@webstractmarketing.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: webmaster@webstractmarketing.com\r\nMessage-Id: <dc4d3c40f961e48e478a9e9114d72bbd@www.drfields.com>\r\nSubject: [Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] New Admin Email Address\r\nDate: Wed, 16 Oct 2019 20:24:34 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy website-admin,=0A=0AYou recently requested to have the administrat=\r\nion email address on=0Ayour site changed.=0A=0AIf this is correct, pleas=\r\ne click on the following link to change it:=0Ahttps://www.drfields.com/w=\r\np-admin/options.php?adminhash=3Da21f55abe5d250a739b017142ef53c27=0A=0AYo=\r\nu can safely ignore and delete this email if you do not want to=0Atake t=\r\nhis action.=0A=0AThis email has been sent to webmaster@webstractmarketin=\r\ng.com=0A=0ARegards,=0AAll at Stem Cell PRP Prolotherapy Surgery Alternat=\r\nive Orthopedic Medicine Treatment - Dr Fields=0Ahttps://www.drfields.com\r\n.\r\n250 2.0.0 OK <dc4d3c40f961e48e478a9e9114d72bbd@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7722,2889,'success','1'),(7723,2889,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7724,2889,'to_header','admin@dentalimplantsmalibu.com'),(7725,2889,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7726,2889,'original_to','admin@dentalimplantsmalibu.com'),(7727,2889,'original_subject','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Admin Email Changed'),(7728,2889,'original_message','Hi,\n\nThis notice confirms that the admin email address was changed on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields.\n\nThe new admin email address is webmaster@webstractmarketing.com.\n\nThis email has been sent to admin@dentalimplantsmalibu.com\n\nRegards,\nAll at Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com'),(7729,2889,'original_headers','a:0:{}'),(7730,2889,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR10CA0025.outlook.office365.com Microsoft ESMTP MAIL Service ready at Wed, 16 Oct 2019 20:24:59 +0000\r\nEHLO drfields.com\r\n250-MN2PR10CA0025.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR10CA0025.outlook.office365.com Hello [3.16.241.180]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<admin@dentalimplantsmalibu.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.3 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: admin@dentalimplantsmalibu.com\r\nMessage-Id: <a7a55bca7b02cfec653ada3055e31904@www.drfields.com>\r\nSubject: [Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Admin Email Changed\r\nDate: Wed, 16 Oct 2019 20:24:59 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHi,=0A=0AThis notice confirms that the admin email address was changed o=\r\nn Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Tre=\r\natment - Dr Fields.=0A=0AThe new admin email address is webmaster@webstr=\r\nactmarketing.com.=0A=0AThis email has been sent to admin@dentalimplantsm=\r\nalibu.com=0A=0ARegards,=0AAll at Stem Cell PRP Prolotherapy Surgery Alte=\r\nrnative Orthopedic Medicine Treatment - Dr Fields=0Ahttps://www.drfields=\r\n..com\r\n.\r\n250 2.0.0 OK <a7a55bca7b02cfec653ada3055e31904@www.drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7731,2892,'_edit_last','9'),(7732,2892,'_edit_lock','1598404977:9'),(7733,2892,'_wp_page_template','default'),(7735,2892,'_yoast_wpseo_content_score','30'),(7736,2892,'_yoast_wpseo_primary_category','32'),(7737,2894,'_edit_last','9'),(7738,2894,'_edit_lock','1648246960:9'),(7739,2894,'_wp_page_template','default'),(7741,2894,'_yoast_wpseo_content_score','60'),(7742,2894,'_yoast_wpseo_primary_category','32'),(7746,1401,'_wp_page_template','default'),(7748,1401,'_yoast_wpseo_primary_category','32'),(7749,1401,'_yoast_wpseo_content_score','60'),(7751,2894,'_wp_old_slug','runners-knee-pain-2__trashed'),(7752,2898,'_edit_last','8'),(7753,2898,'_edit_lock','1592778222:9'),(7754,1397,'_wp_page_template','default'),(7755,1397,'_yoast_wpseo_primary_category',''),(7756,1397,'_yoast_wpseo_content_score','60'),(7758,1397,'_wp_old_date','2019-10-17'),(7761,29,'_yoast_wpseo_content_score','90'),(7762,2904,'iwp_log_type','plugins'),(7763,2904,'iwp_log_action','update'),(7764,2904,'iwp_log_activities_type','direct'),(7765,2904,'iwp_log_actions','plugins-updated'),(7766,2904,'iwp_log_details','a:4:{s:4:\"name\";s:31:\"ReCaptcha v2 for Contact Form 7\";s:4:\"slug\";s:35:\"wpcf7-recaptcha/wpcf7-recaptcha.php\";s:11:\"old_version\";s:5:\"1.2.0\";s:15:\"updated_version\";s:5:\"1.2.2\";}'),(7767,2905,'iwp_log_type','plugins'),(7768,2905,'iwp_log_action','update'),(7769,2905,'iwp_log_activities_type','direct'),(7770,2905,'iwp_log_actions','plugins-updated'),(7771,2905,'iwp_log_details','a:4:{s:4:\"name\";s:8:\"Flamingo\";s:4:\"slug\";s:21:\"flamingo/flamingo.php\";s:11:\"old_version\";s:3:\"2.0\";s:15:\"updated_version\";s:3:\"2.1\";}'),(7772,2906,'iwp_log_type','plugins'),(7773,2906,'iwp_log_action','update'),(7774,2906,'iwp_log_activities_type','direct'),(7775,2906,'iwp_log_actions','plugins-updated'),(7776,2906,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Post SMTP\";s:4:\"slug\";s:26:\"post-smtp/postman-smtp.php\";s:11:\"old_version\";s:5:\"2.0.3\";s:15:\"updated_version\";s:5:\"2.0.6\";}'),(7777,2907,'iwp_log_type','plugins'),(7778,2907,'iwp_log_action','update'),(7779,2907,'iwp_log_activities_type','direct'),(7780,2907,'iwp_log_actions','plugins-updated'),(7781,2907,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"11.7\";s:15:\"updated_version\";s:4:\"12.3\";}'),(7782,2908,'iwp_log_type','plugins'),(7783,2908,'iwp_log_action','update'),(7784,2908,'iwp_log_activities_type','direct'),(7785,2908,'iwp_log_actions','plugins-updated'),(7786,2908,'iwp_log_details','a:4:{s:4:\"name\";s:11:\"Redirection\";s:4:\"slug\";s:27:\"redirection/redirection.php\";s:11:\"old_version\";s:5:\"4.3.1\";s:15:\"updated_version\";s:5:\"4.4.2\";}'),(7787,2909,'success','1'),(7788,2909,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7789,2909,'to_header','webmaster@webstractmarketing.com'),(7790,2909,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7791,2909,'original_to','webmaster@webstractmarketing.com'),(7792,2909,'original_subject','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Password Reset'),(7793,2909,'original_message','Someone has requested a password reset for the following account:\r\n\r\nSite Name: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\r\n\r\nUsername: website-admin\r\n\r\nIf this was a mistake, just ignore this email and nothing will happen.\r\n\r\nTo reset your password, visit the following address:\r\n\r\n<https://www.drfields.com/wp-login.php?action=rp&key=74wo5NwnLK0SemoTSwvL&login=website-admin>\r\n'),(7794,2909,'original_headers','[]'),(7795,2909,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 BN6PR21CA0014.outlook.office365.com Microsoft ESMTP MAIL Service ready at Thu, 17 Oct 2019 21:37:25 +0000\r\nEHLO drfields.com\r\n250-BN6PR21CA0014.outlook.office365.com Hello [50.28.36.143]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-BN6PR21CA0014.outlook.office365.com Hello [50.28.36.143]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<webmaster@webstractmarketing.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.6 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: webmaster@webstractmarketing.com\r\nMessage-Id: <ea8c6d4f5d01569389c970610f39f1ec@drfields.com>\r\nSubject: [Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Password Reset\r\nDate: Thu, 17 Oct 2019 21:37:25 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nSomeone has requested a password reset for the following account:=0D=0A=\r\n=0D=0ASite Name: Stem Cell PRP Prolotherapy Surgery Alternative Orthoped=\r\nic Medicine Treatment - Dr Fields=0D=0A=0D=0AUsername: website-admin=0D=\r\n=0A=0D=0AIf this was a mistake, just ignore this email and nothing will=\r\n happen.=0D=0A=0D=0ATo reset your password, visit the following address:=\r\n=0D=0A=0D=0A<https://www.drfields.com/wp-login.php?action=3Drp&key=3D74w=\r\no5NwnLK0SemoTSwvL&login=3Dwebsite-admin>=0D=0A\r\n.\r\n250 2.0.0 OK <ea8c6d4f5d01569389c970610f39f1ec@drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7796,2885,'_wp_old_date','2019-10-16'),(7797,2910,'success','1'),(7798,2910,'from_header','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>'),(7799,2910,'to_header','webmaster@webstractmarketing.com'),(7800,2910,'transport_uri','smtp:tls:login://smtp.office365.com:587'),(7801,2910,'original_to','webmaster@webstractmarketing.com'),(7802,2910,'original_subject','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Password Changed'),(7803,2910,'original_message','Hi website-admin,\n\nThis notice confirms that your password was changed on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields.\n\nIf you did not change your password, please contact the Site Administrator at\nwebmaster@webstractmarketing.com\n\nThis email has been sent to webmaster@webstractmarketing.com\n\nRegards,\nAll at Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com'),(7804,2910,'original_headers','[]'),(7805,2910,'session_transcript','smtp:tls:login://smtp.office365.com:587\n\n220 MN2PR02CA0003.outlook.office365.com Microsoft ESMTP MAIL Service ready at Thu, 17 Oct 2019 21:41:55 +0000\r\nEHLO drfields.com\r\n250-MN2PR02CA0003.outlook.office365.com Hello [50.28.36.143]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-STARTTLS\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 SMTP server ready\r\nEHLO drfields.com\r\n250-MN2PR02CA0003.outlook.office365.com Hello [50.28.36.143]\r\n250-SIZE 157286400\r\n250-PIPELINING\r\n250-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-AUTH LOGIN XOAUTH2\r\n250-8BITMIME\r\n250-BINARYMIME\r\n250-CHUNKING\r\n250 SMTPUTF8\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\naW5mb0BkcmZpZWxkcy5jb20=\r\n334 UGFzc3dvcmQ6\r\nUHJvbG8xMjMh\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<info@drfields.com>\r\n250 2.1.0 Sender OK\r\nRCPT TO:<webmaster@webstractmarketing.com>\r\n250 2.1.5 Recipient OK\r\nDATA\r\n354 Start mail input; end with <CRLF>.<CRLF>\r\nX-Mailer: Postman SMTP 2.0.6 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment <info@drfields.com>\r\nSender: info@drfields.com\r\nTo: webmaster@webstractmarketing.com\r\nMessage-Id: <197f0a04422385bd362cce2fcd4415c7@drfields.com>\r\nSubject: [Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Password Changed\r\nDate: Thu, 17 Oct 2019 21:41:55 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHi website-admin,=0A=0AThis notice confirms that your password was chang=\r\ned on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine=\r\n Treatment - Dr Fields.=0A=0AIf you did not change your password, please=\r\n contact the Site Administrator at=0Awebmaster@webstractmarketing.com=0A=\r\n=0AThis email has been sent to webmaster@webstractmarketing.com=0A=0AReg=\r\nards,=0AAll at Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic=\r\n Medicine Treatment - Dr Fields=0Ahttps://www.drfields.com\r\n.\r\n250 2.0.0 OK <197f0a04422385bd362cce2fcd4415c7@drfields.com> [Hostname=CY4PR12MB1367.namprd12.prod.outlook.com]\r\n'),(7806,2911,'iwp_log_type','core'),(7807,2911,'iwp_log_action','update'),(7808,2911,'iwp_log_activities_type','direct'),(7809,2911,'iwp_log_actions','core-updated'),(7810,2911,'iwp_log_details','a:2:{s:11:\"old_version\";s:5:\"5.2.2\";s:15:\"updated_version\";s:5:\"5.2.4\";}'),(7811,2912,'_edit_last','9'),(7812,2912,'_edit_lock','1598374991:9'),(7813,2912,'_wp_page_template','default'),(7815,2912,'_yoast_wpseo_content_score','60'),(7816,2912,'_yoast_wpseo_primary_category','32'),(7818,2915,'_edit_last','9'),(7819,2915,'_edit_lock','1599943109:9'),(7820,2915,'_wp_page_template','default'),(7822,2915,'_yoast_wpseo_content_score','60'),(7823,2915,'_yoast_wpseo_primary_category','32'),(7826,1669,'_yoast_wpseo_content_score','90'),(7827,1669,'_yoast_wpseo_primary_category',''),(7829,1667,'_yoast_wpseo_content_score','30'),(7830,1667,'_yoast_wpseo_primary_category',''),(7832,615,'_yoast_wpseo_content_score','90'),(7833,615,'_yoast_wpseo_primary_category',''),(7837,582,'_yoast_wpseo_content_score','60'),(7838,582,'_yoast_wpseo_primary_category',''),(7840,536,'_yoast_wpseo_content_score','60'),(7841,536,'_yoast_wpseo_primary_category',''),(7843,509,'_wp_page_template','default'),(7845,509,'_yoast_wpseo_content_score','90'),(7846,509,'_yoast_wpseo_primary_category',''),(7850,2335,'_yoast_wpseo_content_score','60'),(7855,2339,'_yoast_wpseo_content_score','60'),(7856,2312,'_yoast_wpseo_content_score','30'),(7857,1820,'_wp_page_template','default'),(7859,1820,'_yoast_wpseo_content_score','30'),(7860,1820,'_yoast_wpseo_primary_category',''),(7861,1682,'_yoast_wpseo_content_score','90'),(7862,292,'_wp_page_template','default'),(7864,292,'_yoast_wpseo_content_score','60'),(7865,292,'_yoast_wpseo_primary_category',''),(7868,511,'_yoast_wpseo_content_score','90'),(7869,511,'_yoast_wpseo_primary_category',''),(7872,207,'_yoast_wpseo_content_score','60'),(7873,207,'_yoast_wpseo_primary_category',''),(7876,1500,'_wp_page_template','default'),(7878,1500,'_yoast_wpseo_content_score','60'),(7879,1500,'_yoast_wpseo_primary_category',''),(7881,632,'_yoast_wpseo_content_score','30'),(7882,632,'_yoast_wpseo_primary_category',''),(7884,567,'_yoast_wpseo_content_score','60'),(7885,567,'_yoast_wpseo_primary_category',''),(7887,545,'_yoast_wpseo_content_score','30'),(7888,545,'_yoast_wpseo_primary_category',''),(7890,533,'_yoast_wpseo_content_score','60'),(7891,533,'_yoast_wpseo_primary_category',''),(7914,2912,'_wp_old_slug','does-jumpers-knee-have-you-sidelined'),(7916,2915,'_wp_old_slug','cortisone-injections-may-not-be-as-safe-as-you-think'),(7917,2975,'iwp_log_type','plugins'),(7918,2975,'iwp_log_action','update'),(7919,2975,'iwp_log_activities_type','direct'),(7920,2975,'iwp_log_actions','plugins-updated'),(7921,2975,'iwp_log_details','a:4:{s:4:\"name\";s:11:\"WP-PageNavi\";s:4:\"slug\";s:27:\"wp-pagenavi/wp-pagenavi.php\";s:11:\"old_version\";s:4:\"2.93\";s:15:\"updated_version\";s:6:\"2.93.1\";}'),(8088,3063,'_edit_last','8'),(8089,3063,'_edit_lock','1572515690:8'),(8344,3134,'_edit_last','9'),(8345,3134,'_edit_lock','1598324513:9'),(8346,3134,'_wp_page_template','default'),(8348,3134,'_yoast_wpseo_content_score','90'),(8349,3134,'_yoast_wpseo_primary_category','32'),(8453,3199,'_edit_last','9'),(8454,3199,'_edit_lock','1598314678:9'),(8455,3199,'_wp_page_template','default'),(8457,3199,'_yoast_wpseo_content_score','90'),(8458,3199,'_yoast_wpseo_primary_category','32'),(8666,3297,'_edit_last','9'),(8667,3297,'_edit_lock','1598308332:9'),(8668,3297,'_wp_page_template','default'),(8670,3297,'_yoast_wpseo_content_score','60'),(8671,3297,'_yoast_wpseo_primary_category','32'),(8672,3301,'_edit_last','9'),(8673,3301,'_edit_lock','1615259053:9'),(8674,3301,'_wp_page_template','default'),(8676,3301,'_yoast_wpseo_content_score','60'),(8677,3301,'_yoast_wpseo_primary_category','32'),(8680,3306,'_edit_last','9'),(8681,3306,'_edit_lock','1597354002:9'),(8682,3306,'_wp_page_template','default'),(8684,3306,'_yoast_wpseo_content_score','30'),(8685,3306,'_yoast_wpseo_primary_category','32'),(8686,3310,'_wp_attached_file','2019/11/Cervivcal-Instability-v271119.png'),(8687,3310,'_wp_attachment_image_alt','An Answer for Life Altering Neck Pain and Instability'),(8688,3310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:41:\"2019/11/Cervivcal-Instability-v271119.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Cervivcal-Instability-v271119-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Cervivcal-Instability-v271119-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Cervivcal-Instability-v271119-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8689,3311,'_wp_attached_file','2019/11/Cervivcal-Instability-v271119-1.png'),(8690,3311,'_wp_attachment_image_alt','An Answer for Life Altering Neck Pain and Instability'),(8691,3311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:43:\"2019/11/Cervivcal-Instability-v271119-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Cervivcal-Instability-v271119-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Cervivcal-Instability-v271119-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Cervivcal-Instability-v271119-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8844,3377,'_wp_attached_file','2019/12/Gayle.-Low-back-cycle-Copy.png'),(8845,3377,'_wp_attachment_image_alt','Gayle. Low Back Cycle Copy'),(8846,3377,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2019/12/Gayle.-Low-back-cycle-Copy.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Gayle.-Low-back-cycle-Copy-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Gayle.-Low-back-cycle-Copy-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"Gayle.-Low-back-cycle-Copy-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8847,3378,'_wp_attached_file','2019/12/Wilbur.-back.png'),(8848,3378,'_wp_attachment_image_alt','Wilbur. Back'),(8849,3378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:24:\"2019/12/Wilbur.-back.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Wilbur.-back-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Wilbur.-back-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Wilbur.-back-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8851,3306,'_yoast_wpseo_metadesc','Regenerative Orthopedics provides a non-surgical solution for back and neck pain due to degenerative disc disease. Please call us at (310)453-1234.'),(8852,3379,'_wp_attached_file','2019/12/Gayle.-Low-back-cycle-Copy-1.png'),(8853,3379,'_wp_attachment_image_alt','Gayle. Low Back Cycle Copy'),(8854,3379,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:40:\"2019/12/Gayle.-Low-back-cycle-Copy-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Gayle.-Low-back-cycle-Copy-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Gayle.-Low-back-cycle-Copy-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Gayle.-Low-back-cycle-Copy-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8855,3380,'_wp_attached_file','2019/12/Wilbur.-back-1.png'),(8856,3380,'_wp_attachment_image_alt','Wilbur. Back'),(8857,3380,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:26:\"2019/12/Wilbur.-back-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Wilbur.-back-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Wilbur.-back-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Wilbur.-back-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8859,3382,'_wp_attached_file','2019/11/Gayle.-Low-back-cycle-Copy.png'),(8860,3382,'_wp_attachment_image_alt','Gayle. Low Back Cycle Copy'),(8861,3382,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2019/11/Gayle.-Low-back-cycle-Copy.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Gayle.-Low-back-cycle-Copy-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Gayle.-Low-back-cycle-Copy-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"Gayle.-Low-back-cycle-Copy-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8865,591,'_wp_page_template','default'),(8867,591,'_yoast_wpseo_content_score','90'),(8868,591,'_yoast_wpseo_primary_category',''),(8870,627,'_yoast_wpseo_content_score','30'),(8871,627,'_yoast_wpseo_primary_category',''),(8872,589,'_wp_page_template','default'),(8874,589,'_yoast_wpseo_content_score','90'),(8875,589,'_yoast_wpseo_primary_category',''),(8880,543,'_yoast_wpseo_content_score','90'),(8881,543,'_yoast_wpseo_primary_category',''),(8885,373,'_yoast_wpseo_content_score','90'),(8886,373,'_yoast_wpseo_primary_category',''),(8890,3397,'_wp_attached_file','2019/11/Wilbur-back.png'),(8891,3397,'_wp_attachment_image_alt','Degenerative Disc Disease: Proper Diagnosis and Treatment'),(8892,3397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:23:\"2019/11/Wilbur-back.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Wilbur-back-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Wilbur-back-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Wilbur-back-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8893,3398,'_wp_attached_file','2019/11/Gayle-Low-back-cycle-1.png'),(8894,3398,'_wp_attachment_image_alt','Degenerative Disc Disease: Proper Diagnosis and Treatment'),(8895,3398,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2019/11/Gayle-Low-back-cycle-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Gayle-Low-back-cycle-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Gayle-Low-back-cycle-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Gayle-Low-back-cycle-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8904,3403,'_wp_attached_file','2019/12/Sider-01-V4.jpg'),(8905,3403,'_wp_attachment_image_alt','Sider 01 V4'),(8906,3403,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2550;s:6:\"height\";i:778;s:4:\"file\";s:23:\"2019/12/Sider-01-V4.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Sider-01-V4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Sider-01-V4-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Sider-01-V4-768x234.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8910,3407,'_wp_attached_file','2019/12/Slider-01-V4-new.jpg'),(8911,3407,'_wp_attachment_image_alt','Slider 01 V4 New'),(8912,3407,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2550;s:6:\"height\";i:778;s:4:\"file\";s:28:\"2019/12/Slider-01-V4-new.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Slider-01-V4-new-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Slider-01-V4-new-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Slider-01-V4-new-768x234.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8913,3409,'_edit_lock','1597347765:9'),(8914,3409,'_edit_last','9'),(8915,3410,'_wp_attached_file','2019/12/Josh-knee-v101219.png'),(8916,3410,'_wp_attachment_image_alt','Knee Tendonitis Treatment'),(8917,3410,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:29:\"2019/12/Josh-knee-v101219.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Josh-knee-v101219-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Josh-knee-v101219-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Josh-knee-v101219-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8918,3411,'_wp_attached_file','2019/12/May-Athlete-Knee-v101219.jpg'),(8919,3411,'_wp_attachment_image_alt','Knee Tendonitis Treatment'),(8920,3411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:36:\"2019/12/May-Athlete-Knee-v101219.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"May-Athlete-Knee-v101219-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"May-Athlete-Knee-v101219-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"May-Athlete-Knee-v101219-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8921,3409,'_wp_page_template','default'),(8923,3409,'_yoast_wpseo_content_score','30'),(8924,3409,'_yoast_wpseo_primary_category','32'),(8927,3416,'_edit_lock','1667624836:8'),(8928,3416,'_edit_last','9'),(8929,3418,'_wp_attached_file','2019/12/Fields-cover.jpg'),(8930,3418,'_wp_attachment_image_alt','Fields Cover'),(8931,3418,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:287;s:4:\"file\";s:24:\"2019/12/Fields-cover.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Fields-cover-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8932,3416,'_thumbnail_id','3418'),(8933,3416,'_wp_page_template','default'),(8934,3416,'_yoast_wpseo_content_score','30'),(8935,3416,'_yoast_wpseo_primary_category','34'),(8937,3416,'_wp_old_date','2019-12-10'),(9098,3462,'_wp_attached_file','2019/12/Page-01.jpg'),(9099,3462,'_wp_attachment_image_alt','Page 01'),(9100,3462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1249;s:4:\"file\";s:19:\"2019/12/Page-01.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Page-01-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Page-01-382x500.jpg\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Page-01-768x1004.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9101,3465,'_wp_attached_file','2019/12/Page-02.jpg'),(9102,3465,'_wp_attachment_image_alt','Page 02'),(9103,3465,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1249;s:4:\"file\";s:19:\"2019/12/Page-02.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Page-02-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Page-02-382x500.jpg\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Page-02-768x1004.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9104,3466,'_wp_attached_file','2019/12/page-3.jpg'),(9105,3466,'_wp_attachment_image_alt','Page 3'),(9106,3466,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1249;s:4:\"file\";s:18:\"2019/12/page-3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"page-3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"page-3-382x500.jpg\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"page-3-768x1004.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9107,3467,'_wp_attached_file','2019/12/page-04.jpg'),(9108,3467,'_wp_attachment_image_alt','Page 04'),(9109,3467,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1249;s:4:\"file\";s:19:\"2019/12/page-04.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"page-04-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"page-04-382x500.jpg\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"page-04-768x1004.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9111,1526,'_wp_page_template','default'),(9113,1526,'_yoast_wpseo_content_score','90'),(9114,1526,'_yoast_wpseo_primary_category',''),(9115,3470,'_wp_attached_file','2019/12/Sider-01-V7.jpg'),(9116,3470,'_wp_attachment_image_alt','11th Ironman Completed'),(9117,3470,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2550;s:6:\"height\";i:778;s:4:\"file\";s:23:\"2019/12/Sider-01-V7.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Sider-01-V7-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Sider-01-V7-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Sider-01-V7-768x234.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9118,3472,'_wp_attached_file','2019/12/Sider-01-V8.jpg'),(9119,3472,'_wp_attachment_image_alt','11th Ironman Completed'),(9120,3472,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2550;s:6:\"height\";i:778;s:4:\"file\";s:23:\"2019/12/Sider-01-V8.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Sider-01-V8-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Sider-01-V8-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Sider-01-V8-768x234.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9122,3416,'_wp_old_slug','magazine-article-on-stem-cell'),(9134,3484,'_edit_lock','1597347213:9'),(9135,3484,'_edit_last','9'),(9136,3484,'_wp_page_template','default'),(9138,3484,'_yoast_wpseo_content_score','60'),(9139,3484,'_yoast_wpseo_primary_category','32'),(9140,3487,'_edit_last','8'),(9141,3487,'_wp_page_template','default'),(9142,3487,'_yoast_wpseo_content_score','30'),(9143,3487,'_edit_lock','1600103958:11'),(9144,3490,'_edit_lock','1600103987:11'),(9145,3490,'_edit_last','8'),(9146,3490,'_wp_page_template','default'),(9147,3490,'_yoast_wpseo_content_score','30'),(9148,3492,'_menu_item_type','post_type'),(9149,3492,'_menu_item_menu_item_parent','36'),(9150,3492,'_menu_item_object_id','3490'),(9151,3492,'_menu_item_object','page'),(9152,3492,'_menu_item_target',''),(9153,3492,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9154,3492,'_menu_item_xfn',''),(9155,3492,'_menu_item_url',''),(9157,3493,'_wp_attached_file','2019/12/yelp-v141219.jpg'),(9158,3493,'_wp_attachment_image_alt','Yelp V141219'),(9159,3493,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:380;s:6:\"height\";i:200;s:4:\"file\";s:24:\"2019/12/yelp-v141219.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"yelp-v141219-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9160,3494,'_wp_attached_file','2019/12/youtube-v141219.jpg'),(9161,3494,'_wp_attachment_image_alt','Youtube V141219'),(9162,3494,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:380;s:6:\"height\";i:200;s:4:\"file\";s:27:\"2019/12/youtube-v141219.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"youtube-v141219-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9163,3495,'_wp_attached_file','2019/12/facebook-v141219.jpg'),(9164,3495,'_wp_attachment_image_alt','Facebook V141219'),(9165,3495,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:380;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2019/12/facebook-v141219.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"facebook-v141219-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9166,3496,'_wp_attached_file','2019/12/google-v141219.jpg'),(9167,3496,'_wp_attachment_image_alt','Google V141219'),(9168,3496,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:380;s:6:\"height\";i:200;s:4:\"file\";s:26:\"2019/12/google-v141219.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"google-v141219-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9169,3493,'_edit_lock','1576573708:8'),(9170,3494,'_edit_lock','1576573719:8'),(9171,3495,'_edit_lock','1576573732:8'),(9172,3496,'_edit_lock','1576573745:8'),(9173,3499,'iwp_log_type','core'),(9174,3499,'iwp_log_action','update'),(9175,3499,'iwp_log_activities_type','direct'),(9176,3499,'iwp_log_actions','core-updated'),(9177,3499,'iwp_log_details','a:2:{s:11:\"old_version\";s:5:\"5.2.4\";s:15:\"updated_version\";s:5:\"5.3.1\";}'),(9178,3500,'iwp_log_type','plugins'),(9179,3500,'iwp_log_action','update'),(9180,3500,'iwp_log_activities_type','direct'),(9181,3500,'iwp_log_actions','plugins-updated'),(9182,3500,'iwp_log_details','a:4:{s:4:\"name\";s:12:\"WP Mail SMTP\";s:4:\"slug\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"old_version\";s:5:\"1.6.2\";s:15:\"updated_version\";s:5:\"1.8.1\";}'),(9183,3501,'iwp_log_type','plugins'),(9184,3501,'iwp_log_action','update'),(9185,3501,'iwp_log_activities_type','direct'),(9186,3501,'iwp_log_actions','plugins-updated'),(9187,3501,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:7:\"3.3.5.2\";s:15:\"updated_version\";s:7:\"3.4.2.2\";}'),(9188,3502,'iwp_log_type','plugins'),(9189,3502,'iwp_log_action','update'),(9190,3502,'iwp_log_activities_type','direct'),(9191,3502,'iwp_log_actions','plugins-updated'),(9192,3502,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"12.3\";s:15:\"updated_version\";s:6:\"12.7.1\";}'),(9193,3504,'_wp_attached_file','2019/12/OrthoRegen-Logo-R.png'),(9194,3504,'_wp_attachment_image_alt','Orthoregen'),(9195,3504,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:413;s:6:\"height\";i:119;s:4:\"file\";s:29:\"2019/12/OrthoRegen-Logo-R.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"OrthoRegen-Logo-R-200x119.png\";s:5:\"width\";i:200;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9198,3506,'iwp_log_type','core'),(9199,3506,'iwp_log_action','update'),(9200,3506,'iwp_log_activities_type','iwp_log'),(9201,3506,'iwp_log_actions','core-updated'),(9202,3506,'iwp_log_details','a:2:{s:11:\"old_version\";s:5:\"5.3.1\";s:15:\"updated_version\";s:5:\"5.3.2\";}'),(9203,3511,'_edit_lock','1596932411:9'),(9204,3511,'_edit_last','9'),(9205,3511,'_wp_page_template','default'),(9207,3511,'_yoast_wpseo_content_score','30'),(9208,3511,'_yoast_wpseo_primary_category','32'),(9211,3520,'_wp_attached_file','2020/01/Cozumel-finish-line-C-160.jpg'),(9212,3520,'_wp_attachment_image_alt','Cozumel Finish Line C 160'),(9213,3520,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:37:\"2020/01/Cozumel-finish-line-C-160.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9217,3522,'_wp_attached_file','2020/01/sm-cca-lecture.jpg'),(9218,3522,'_wp_attachment_image_alt','Sm Cca Lecture'),(9219,3522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:26:\"2020/01/sm-cca-lecture.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"sm-cca-lecture-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9220,3526,'_edit_lock','1596928158:9'),(9221,3526,'_edit_last','9'),(9222,3526,'_wp_page_template','default'),(9224,3526,'_yoast_wpseo_content_score','90'),(9225,3526,'_yoast_wpseo_primary_category','32'),(9226,3531,'iwp_log_type','plugins'),(9227,3531,'iwp_log_action','update'),(9228,3531,'iwp_log_activities_type','direct'),(9229,3531,'iwp_log_actions','plugins-updated'),(9230,3531,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:7:\"3.4.2.2\";s:15:\"updated_version\";s:5:\"3.4.4\";}'),(9231,3532,'iwp_log_type','plugins'),(9232,3532,'iwp_log_action','update'),(9233,3532,'iwp_log_activities_type','direct'),(9234,3532,'iwp_log_actions','plugins-updated'),(9235,3532,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:6:\"12.7.1\";s:15:\"updated_version\";s:4:\"13.1\";}'),(9237,3533,'_wp_attached_file','2020/02/medical-education.jpg'),(9238,3533,'_wp_attachment_image_alt','Medical Education'),(9239,3533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:29:\"2020/02/medical-education.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"medical-education-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9246,1419,'_yoast_wpseo_content_score','30'),(9247,3540,'_edit_lock','1628287234:9'),(9248,3540,'_edit_last','9'),(9249,3540,'_wp_page_template','default'),(9251,3540,'_yoast_wpseo_content_score','30'),(9252,3540,'_yoast_wpseo_primary_category','32'),(9255,3547,'_edit_lock','1671534109:8'),(9256,3547,'_edit_last','9'),(9257,3547,'_wp_page_template','default'),(9259,3547,'_yoast_wpseo_content_score','30'),(9260,3547,'_yoast_wpseo_primary_category','30'),(9263,1414,'_wp_page_template','default'),(9265,1414,'_yoast_wpseo_content_score','60'),(9267,3557,'_wp_attached_file','2019/06/sports-injuries.png'),(9268,3557,'_wp_attachment_image_alt','Sports Injuries'),(9269,3557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:27:\"2019/06/sports-injuries.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"sports-injuries-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"sports-injuries-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"sports-injuries-768x960.png\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9275,3564,'_wp_attached_file','2020/03/2020-REHAB-SYMPOSIUM-Slider-11-1-1.jpg'),(9276,3564,'_wp_attachment_image_alt','2020 Rehab Symposium Slider 11 (1) (1)'),(9277,3564,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2550;s:6:\"height\";i:778;s:4:\"file\";s:46:\"2020/03/2020-REHAB-SYMPOSIUM-Slider-11-1-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"2020-REHAB-SYMPOSIUM-Slider-11-1-1-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"2020-REHAB-SYMPOSIUM-Slider-11-1-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"2020-REHAB-SYMPOSIUM-Slider-11-1-1-768x234.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"2020-REHAB-SYMPOSIUM-Slider-11-1-1-1536x469.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"2020-REHAB-SYMPOSIUM-Slider-11-1-1-2048x625.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9278,3570,'_wp_attached_file','2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_.jpg'),(9279,3570,'_wp_attachment_image_alt','2020 Rehab Symposium Slider 11.mar'),(9280,3570,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2550;s:6:\"height\";i:778;s:4:\"file\";s:47:\"2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"2020-REHAB-SYMPOSIUM-Slider-11.MAR_-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"2020-REHAB-SYMPOSIUM-Slider-11.MAR_-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"2020-REHAB-SYMPOSIUM-Slider-11.MAR_-768x234.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1536x469.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"2020-REHAB-SYMPOSIUM-Slider-11.MAR_-2048x625.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9281,3574,'_wp_attached_file','2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg'),(9282,3574,'_wp_attachment_image_alt','2020 Rehab Symposium Slider 11.mar'),(9283,3574,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2550;s:6:\"height\";i:778;s:4:\"file\";s:49:\"2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1-768x234.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1-1536x469.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:50:\"2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1-2048x625.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9284,3584,'_edit_lock','1599786536:9'),(9285,3584,'_edit_last','9'),(9286,3584,'_wp_page_template','default'),(9288,3584,'_yoast_wpseo_content_score','30'),(9289,3584,'_yoast_wpseo_primary_category','32'),(9683,3588,'iwp_log_type','plugins'),(9684,3588,'iwp_log_action','update'),(9685,3588,'iwp_log_activities_type','direct'),(9686,3588,'iwp_log_actions','plugins-updated'),(9687,3588,'iwp_log_details','a:4:{s:4:\"name\";s:17:\"WP Video Lightbox\";s:4:\"slug\";s:39:\"wp-video-lightbox/wp-video-lightbox.php\";s:11:\"old_version\";s:5:\"1.8.8\";s:15:\"updated_version\";s:5:\"1.8.9\";}'),(9689,3592,'iwp_log_type','plugins'),(9690,3592,'iwp_log_action','update'),(9691,3592,'iwp_log_activities_type','direct'),(9692,3592,'iwp_log_actions','plugins-updated'),(9693,3592,'iwp_log_details','a:4:{s:4:\"name\";s:12:\"WP Mail SMTP\";s:4:\"slug\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"old_version\";s:5:\"1.8.1\";s:15:\"updated_version\";s:5:\"1.9.0\";}'),(9694,3593,'iwp_log_type','plugins'),(9695,3593,'iwp_log_action','update'),(9696,3593,'iwp_log_activities_type','direct'),(9697,3593,'iwp_log_actions','plugins-updated'),(9698,3593,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:5:\"3.4.4\";s:15:\"updated_version\";s:5:\"3.5.1\";}'),(9699,3594,'iwp_log_type','plugins'),(9700,3594,'iwp_log_action','update'),(9701,3594,'iwp_log_activities_type','direct'),(9702,3594,'iwp_log_actions','plugins-updated'),(9703,3594,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"13.1\";s:15:\"updated_version\";s:4:\"13.3\";}'),(9710,2082,'_yoast_wpseo_content_score','60'),(9711,1567,'_yoast_wpseo_content_score','60'),(9718,395,'_wp_page_template','default'),(9720,395,'_yoast_wpseo_content_score','60'),(9721,3627,'_wp_attached_file','2020/04/Jim-Mcdermat-PRP-Foot.jpg'),(9722,3627,'_wp_attachment_image_alt','Jim Mcdermat PRP Foot'),(9723,3627,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:33:\"2020/04/Jim-Mcdermat-PRP-Foot.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Jim-Mcdermat-PRP-Foot-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9724,3638,'_edit_lock','1599074325:9'),(9725,3638,'_edit_last','9'),(9726,3638,'_wp_page_template','default'),(9727,3638,'_yoast_wpseo_content_score','90'),(9728,3638,'_yoast_wpseo_primary_category','33'),(9731,3640,'_wp_attached_file','2020/04/b39df3e6-20d0-44a2-93c8-dcf2de3d8272.png'),(9732,3640,'_wp_attachment_image_alt','B39df3e6 20d0 44a2 93c8 Dcf2de3d8272'),(9733,3640,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:48:\"2020/04/b39df3e6-20d0-44a2-93c8-dcf2de3d8272.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"b39df3e6-20d0-44a2-93c8-dcf2de3d8272-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"b39df3e6-20d0-44a2-93c8-dcf2de3d8272-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"b39df3e6-20d0-44a2-93c8-dcf2de3d8272-768x960.png\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9735,2109,'_yoast_wpseo_content_score','90'),(9743,3660,'_wp_attached_file','2020/04/image002.jpg'),(9744,3660,'_wp_attachment_image_alt','Woman Holding Toilet Paper'),(9745,3660,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:20:\"2020/04/image002.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image002-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image002-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"image002-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9749,3664,'_wp_attached_file','2020/04/image0.jpeg'),(9750,3664,'_wp_attachment_image_alt','Woman Holding Toilet Paper'),(9751,3664,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:19:\"2020/04/image0.jpeg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"image0-400x500.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"image0-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"image0-768x960.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9753,3666,'_wp_attached_file','2020/05/header-orthoregen-ocean-mountains.jpg'),(9754,3666,'_wp_attachment_image_alt','Header Orthoregen Ocean Mountains'),(9755,3666,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2400;s:6:\"height\";i:732;s:4:\"file\";s:45:\"2020/05/header-orthoregen-ocean-mountains.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"header-orthoregen-ocean-mountains-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"header-orthoregen-ocean-mountains-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"header-orthoregen-ocean-mountains-768x234.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"header-orthoregen-ocean-mountains-1536x468.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"header-orthoregen-ocean-mountains-2048x625.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9756,3670,'iwp_log_type','core'),(9757,3670,'iwp_log_action','update'),(9758,3670,'iwp_log_activities_type','direct'),(9759,3670,'iwp_log_actions','core-updated'),(9760,3670,'iwp_log_details','a:2:{s:11:\"old_version\";s:5:\"5.3.2\";s:15:\"updated_version\";s:5:\"5.4.1\";}'),(9761,3671,'iwp_log_type','plugins'),(9762,3671,'iwp_log_action','update'),(9763,3671,'iwp_log_activities_type','direct'),(9764,3671,'iwp_log_actions','plugins-updated'),(9765,3671,'iwp_log_details','a:4:{s:4:\"name\";s:12:\"WP Mail SMTP\";s:4:\"slug\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"old_version\";s:5:\"1.9.0\";s:15:\"updated_version\";s:5:\"2.0.0\";}'),(9766,3672,'iwp_log_type','plugins'),(9767,3672,'iwp_log_action','update'),(9768,3672,'iwp_log_activities_type','direct'),(9769,3672,'iwp_log_actions','plugins-updated'),(9770,3672,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:5:\"3.5.1\";s:15:\"updated_version\";s:5:\"3.5.4\";}'),(9771,3673,'iwp_log_type','plugins'),(9772,3673,'iwp_log_action','update'),(9773,3673,'iwp_log_activities_type','direct'),(9774,3673,'iwp_log_actions','plugins-updated'),(9775,3673,'iwp_log_details','a:4:{s:4:\"name\";s:11:\"WP-PageNavi\";s:4:\"slug\";s:27:\"wp-pagenavi/wp-pagenavi.php\";s:11:\"old_version\";s:6:\"2.93.1\";s:15:\"updated_version\";s:6:\"2.93.3\";}'),(9776,3674,'iwp_log_type','plugins'),(9777,3674,'iwp_log_action','update'),(9778,3674,'iwp_log_activities_type','direct'),(9779,3674,'iwp_log_actions','plugins-updated'),(9780,3674,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"13.3\";s:15:\"updated_version\";s:6:\"14.0.4\";}'),(9781,3675,'iwp_log_type','plugins'),(9782,3675,'iwp_log_action','update'),(9783,3675,'iwp_log_activities_type','automatic'),(9784,3675,'iwp_log_actions','plugins-updated'),(9785,3675,'iwp_log_details','a:4:{s:4:\"name\";s:13:\"Gravity Forms\";s:4:\"slug\";s:29:\"gravityforms/gravityforms.php\";s:11:\"old_version\";s:9:\"2.4.17.20\";s:15:\"updated_version\";s:6:\"2.4.18\";}'),(9786,3677,'_edit_lock','1625856028:9'),(9787,3677,'_edit_last','9'),(9788,3678,'_wp_attached_file','2020/05/Look-Forward.png'),(9789,3678,'_wp_attachment_image_alt','Look Forward'),(9790,3678,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:24:\"2020/05/Look-Forward.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Look-Forward-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Look-Forward-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Look-Forward-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9791,3679,'_wp_attached_file','2020/05/Look-Forward-2.png'),(9792,3679,'_wp_attachment_image_alt','Look Forward'),(9793,3679,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:26:\"2020/05/Look-Forward-2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Look-Forward-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Look-Forward-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Look-Forward-2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9794,3677,'_wp_page_template','default'),(9796,3677,'_yoast_wpseo_content_score','60'),(9797,3677,'_yoast_wpseo_primary_category','33'),(9798,3682,'iwp_log_type','plugins'),(9799,3682,'iwp_log_action','update'),(9800,3682,'iwp_log_activities_type','direct'),(9801,3682,'iwp_log_actions','plugins-updated'),(9802,3682,'iwp_log_details','a:4:{s:4:\"name\";s:12:\"WP Mail SMTP\";s:4:\"slug\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"old_version\";s:5:\"2.0.0\";s:15:\"updated_version\";s:5:\"2.0.1\";}'),(9803,3683,'iwp_log_type','plugins'),(9804,3683,'iwp_log_action','update'),(9805,3683,'iwp_log_activities_type','direct'),(9806,3683,'iwp_log_actions','plugins-updated'),(9807,3683,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:6:\"14.0.4\";s:15:\"updated_version\";s:4:\"14.1\";}'),(9810,3677,'_wp_old_slug','my-dads-example-in-dealing-with-adversity'),(9813,3689,'_wp_attached_file','2020/05/header-orthoregen-beach-sunset.jpg'),(9814,3689,'_wp_attachment_image_alt','Header Orthoregen Beach Sunset'),(9815,3689,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2400;s:6:\"height\";i:732;s:4:\"file\";s:42:\"2020/05/header-orthoregen-beach-sunset.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"header-orthoregen-beach-sunset-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"header-orthoregen-beach-sunset-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"header-orthoregen-beach-sunset-768x234.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"header-orthoregen-beach-sunset-1536x468.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:43:\"header-orthoregen-beach-sunset-2048x625.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9817,3695,'_wp_attached_file','2020/05/header-orthoregen-santa-monica-pier.jpg'),(9818,3695,'_wp_attachment_image_alt','Header Orthoregen Santa Monica Pier'),(9819,3695,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2400;s:6:\"height\";i:732;s:4:\"file\";s:47:\"2020/05/header-orthoregen-santa-monica-pier.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"header-orthoregen-santa-monica-pier-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"header-orthoregen-santa-monica-pier-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"header-orthoregen-santa-monica-pier-768x234.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"header-orthoregen-santa-monica-pier-1536x468.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:48:\"header-orthoregen-santa-monica-pier-2048x625.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9857,2362,'_yoast_wpseo_content_score','30'),(9858,3731,'iwp_log_type','plugins'),(9859,3731,'iwp_log_action','update'),(9860,3731,'iwp_log_activities_type','direct'),(9861,3731,'iwp_log_actions','plugins-updated'),(9862,3731,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:5:\"3.5.4\";s:15:\"updated_version\";s:7:\"3.5.5.1\";}'),(9863,3732,'iwp_log_type','plugins'),(9864,3732,'iwp_log_action','update'),(9865,3732,'iwp_log_activities_type','direct'),(9866,3732,'iwp_log_actions','plugins-updated'),(9867,3732,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"14.1\";s:15:\"updated_version\";s:4:\"14.2\";}'),(9868,1518,'_wp_page_template','default'),(9870,1518,'_yoast_wpseo_content_score','90'),(9871,3736,'iwp_log_type','plugins'),(9872,3736,'iwp_log_action','update'),(9873,3736,'iwp_log_activities_type','direct'),(9874,3736,'iwp_log_actions','plugins-updated'),(9875,3736,'iwp_log_details','a:4:{s:4:\"name\";s:12:\"WP Mail SMTP\";s:4:\"slug\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"old_version\";s:5:\"2.0.1\";s:15:\"updated_version\";s:5:\"2.1.1\";}'),(9876,3737,'iwp_log_type','plugins'),(9877,3737,'iwp_log_action','update'),(9878,3737,'iwp_log_activities_type','direct'),(9879,3737,'iwp_log_actions','plugins-updated'),(9880,3737,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"14.2\";s:15:\"updated_version\";s:4:\"14.3\";}'),(9887,3742,'_wp_attached_file','2020/06/Kelsey.-knee.stems-copy.png'),(9888,3742,'_wp_attachment_image_alt','Kelsey. Knee.stems Copy'),(9889,3742,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:35:\"2020/06/Kelsey.-knee.stems-copy.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Kelsey.-knee.stems-copy-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Kelsey.-knee.stems-copy-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"Kelsey.-knee.stems-copy-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9900,2775,'_yoast_wpseo_focuskw','Iliotibial Band'),(9902,2775,'_yoast_wpseo_linkdex','80'),(9915,3677,'_yoast_wpseo_focuskw','my dad\'s'),(9917,3638,'_yoast_wpseo_focuskw','Don\'t Fear'),(9918,1510,'_wp_page_template','default'),(9919,1510,'_yoast_wpseo_content_score','90'),(9920,1520,'_wp_page_template','default'),(9922,1520,'_yoast_wpseo_focuskw','fat fighting foods'),(9923,1520,'_yoast_wpseo_content_score','90'),(9926,1520,'_yoast_wpseo_linkdex','71'),(9927,3766,'_wp_attached_file','2019/06/photo-1559757175-5700dde675bc.jpg'),(9928,3766,'_wp_attachment_image_alt','Photo 1559757175 5700dde675bc'),(9929,3766,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:225;s:4:\"file\";s:41:\"2019/06/photo-1559757175-5700dde675bc.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"photo-1559757175-5700dde675bc-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9930,1516,'_wp_page_template','default'),(9932,1516,'_yoast_wpseo_focuskw','brain fitness'),(9933,1516,'_yoast_wpseo_linkdex','73'),(9934,1516,'_yoast_wpseo_content_score','90'),(9945,1434,'_yoast_wpseo_content_score','30'),(9946,3775,'_wp_attached_file','2019/06/Claire.-pro-triathlete-2-Copy-2.png'),(9947,3775,'_wp_attachment_image_alt','Claire. Pro Triathlete 2 Copy 2'),(9948,3775,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2019/06/Claire.-pro-triathlete-2-Copy-2.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Claire.-pro-triathlete-2-Copy-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Claire.-pro-triathlete-2-Copy-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Claire.-pro-triathlete-2-Copy-2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"Claire.-pro-triathlete-2-Copy-2-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"Claire.-pro-triathlete-2-Copy-2-2048x2048.png\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9950,1463,'_yoast_wpseo_focuskw','joint pain'),(9951,1463,'_yoast_wpseo_linkdex','73'),(9952,1463,'_yoast_wpseo_content_score','30'),(9959,1463,'_yoast_wpseo_metadesc','Have joint pain? Surgery is not always necessary. Non-surgical options, like Regenerative Orthopedics, can effectively reduce pain and improve function.'),(9963,1461,'_yoast_wpseo_focuskw','persistent joint pain'),(9964,1461,'_yoast_wpseo_metadesc','Can\'t get a break from persistent joint pain? Tried all kinds of therapies to no avail? Regenerative Orthopedics just might be your answer!'),(9965,1461,'_yoast_wpseo_linkdex','75'),(9966,1461,'_yoast_wpseo_content_score','90'),(9967,1461,'_wp_old_slug','chronic-pain-prolotherapy-may-be-the-answer'),(9971,3790,'_wp_attached_file','2019/06/Hip-Labral-tear.png'),(9972,3790,'_wp_attachment_image_alt','Hip Labral Tear'),(9973,3790,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:27:\"2019/06/Hip-Labral-tear.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Hip-Labral-tear-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Hip-Labral-tear-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Hip-Labral-tear-768x960.png\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9974,3791,'_wp_attached_file','2019/06/20289349-DMtRu4I7.png'),(9975,3791,'_wp_attachment_image_alt','20289349 Dmtru4i7'),(9976,3791,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:29:\"2019/06/20289349-DMtRu4I7.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20289349-DMtRu4I7-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"20289349-DMtRu4I7-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"20289349-DMtRu4I7-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9977,3792,'_wp_attached_file','2019/06/joint-injury.do-what-you-love-Copy-2-1.png'),(9978,3792,'_wp_attachment_image_alt','Joint Injury.do What You Love Copy 2 (1)'),(9979,3792,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:50:\"2019/06/joint-injury.do-what-you-love-Copy-2-1.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"joint-injury.do-what-you-love-Copy-2-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"joint-injury.do-what-you-love-Copy-2-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"joint-injury.do-what-you-love-Copy-2-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"joint-injury.do-what-you-love-Copy-2-1-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:52:\"joint-injury.do-what-you-love-Copy-2-1-2048x2048.png\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9980,3793,'_wp_attached_file','2019/06/Pain.-OrthoRegen-Copy.png'),(9981,3793,'_wp_attachment_image_alt','Pain. Orthoregen Copy'),(9982,3793,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:33:\"2019/06/Pain.-OrthoRegen-Copy.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Pain.-OrthoRegen-Copy-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Pain.-OrthoRegen-Copy-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Pain.-OrthoRegen-Copy-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9995,153,'_yoast_wpseo_content_score','90'),(9997,184,'_yoast_wpseo_content_score','60'),(9999,217,'_yoast_wpseo_content_score','30'),(10001,302,'_yoast_wpseo_content_score','60'),(10007,306,'_yoast_wpseo_content_score','60'),(10026,3677,'_yoast_wpseo_linkdex','71'),(10028,3638,'_yoast_wpseo_linkdex','71'),(10041,2345,'_yoast_wpseo_content_score','60'),(10044,1406,'_wp_page_template','default'),(10046,1406,'_yoast_wpseo_content_score','60'),(10047,1379,'_wp_page_template','default'),(10049,1379,'_yoast_wpseo_content_score','60'),(10051,1473,'_wp_page_template','default'),(10053,1473,'_yoast_wpseo_content_score','90'),(10054,3,'_yoast_wpseo_content_score','30'),(10055,3504,'_emr_replace_author','11'),(10056,3504,'_wp_old_slug','logo-orthoregen-v181219'),(10057,3504,'_edit_lock','1594243393:11'),(10058,7,'_emr_replace_author','11'),(10059,7,'_wp_old_slug','logo-dr-fields'),(10060,7,'_edit_lock','1594243484:11'),(10061,3866,'_wp_attached_file','2019/12/cropped-OrthoRegen-Logo-R.png'),(10062,3866,'_wp_attachment_context','custom-logo'),(10063,3866,'_wp_attachment_image_alt','Cropped Orthoregen Logo R.png'),(10064,3866,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:413;s:6:\"height\";i:119;s:4:\"file\";s:37:\"2019/12/cropped-OrthoRegen-Logo-R.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"cropped-OrthoRegen-Logo-R-200x119.png\";s:5:\"width\";i:200;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10092,1436,'_yoast_wpseo_content_score','90'),(10094,1436,'_yoast_wpseo_focuskw','Prolotherapy Treatment'),(10095,1436,'_yoast_wpseo_linkdex','73'),(10097,1423,'_yoast_wpseo_content_score','60'),(10105,1423,'_wp_old_slug','how-to-avoid-joint-spine-surgery-and-live-pain-free'),(10106,1423,'_yoast_wpseo_focuskw','Pain'),(10107,1423,'_yoast_wpseo_metadesc','Relieve joint pain with Regenerative Orthopedics without the need for surgery. In this article, we discuss three Regenerative Orthopedic techniques.'),(10108,1423,'_yoast_wpseo_linkdex','73'),(10109,3899,'_wp_attached_file','2019/06/chronic-pain-copy.png');
INSERT INTO `wp_postmeta` VALUES (10110,3899,'_wp_attachment_image_alt','Chronic Pain Copy'),(10111,3899,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:29:\"2019/06/chronic-pain-copy.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"chronic-pain-copy-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"chronic-pain-copy-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"chronic-pain-copy-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10112,3900,'_wp_attached_file','2019/06/Get-rid-of-the-pain.png'),(10113,3900,'_wp_attachment_image_alt','Get Rid Of The Pain'),(10114,3900,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1351;s:4:\"file\";s:31:\"2019/06/Get-rid-of-the-pain.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Get-rid-of-the-pain-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Get-rid-of-the-pain-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Get-rid-of-the-pain-768x961.png\";s:5:\"width\";i:768;s:6:\"height\";i:961;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10125,1436,'_yoast_wpseo_metadesc','In this interview with KCAL/CBS, Peter A. Fields, MD, DC discusses how you can resolve painful joint conditions with Prolotherapy, a non-surgical treatment.'),(10140,266,'_wp_old_slug','prp-doctor'),(10144,3929,'iwp_log_type','plugins'),(10145,3929,'iwp_log_action','update'),(10146,3929,'iwp_log_activities_type','automatic'),(10147,3929,'iwp_log_actions','plugins-updated'),(10148,3929,'iwp_log_details','a:4:{s:4:\"name\";s:13:\"Gravity Forms\";s:4:\"slug\";s:29:\"gravityforms/gravityforms.php\";s:11:\"old_version\";s:6:\"2.4.18\";s:15:\"updated_version\";s:6:\"2.4.19\";}'),(10153,1429,'_yoast_wpseo_focuskw','Corticosteroid injections'),(10154,1429,'_yoast_wpseo_metadesc','In this article, Peter A. Fields, MD, DC talks about problems that may occur with corticosteroid injections, otherwise known as cortisone injections.'),(10155,1429,'_yoast_wpseo_linkdex','73'),(10156,1429,'_yoast_wpseo_content_score','30'),(10157,1429,'_wp_old_slug','fda-warns-of-serious-neurologic-problems-after-epidural-corticosteroid-injections'),(10163,1419,'_yoast_wpseo_focuskw','Regenerative Medicine'),(10164,1419,'_yoast_wpseo_metadesc','Peter A. Fields, MD, DC discusses how Regenerative Medicine techniques like Stem Cell Therapy, PRP, and Dextrose Prolotherapy can help you avoid surgery.'),(10165,1419,'_yoast_wpseo_linkdex','76'),(10168,1416,'_wp_page_template','default'),(10170,1416,'_yoast_wpseo_focuskw','Stem Cell Therapy for Arthritis'),(10171,1416,'_yoast_wpseo_metadesc','Stem Cell Therapy for arthritis offers a non-surgical alternative to effective joint repair and pain relief, without the need for joint replacement.'),(10172,1416,'_yoast_wpseo_linkdex','76'),(10173,1416,'_yoast_wpseo_content_score','60'),(10175,3956,'_wp_attached_file','2020/03/Tony-Shoulder.png'),(10176,3956,'_wp_attachment_image_alt','Tony Shoulder'),(10177,3956,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1284;s:6:\"height\";i:968;s:4:\"file\";s:25:\"2020/03/Tony-Shoulder.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Tony-Shoulder-500x377.png\";s:5:\"width\";i:500;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Tony-Shoulder-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Tony-Shoulder-768x579.png\";s:5:\"width\";i:768;s:6:\"height\";i:579;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10180,3584,'_yoast_wpseo_focuskw','Rotator Cuff Tendonitis'),(10181,3584,'_yoast_wpseo_metadesc','Rotator cuff tendonitis is often related to activities that require repetitive overhead movements. Regenerative Orthopedics can relieve the pain.'),(10182,3584,'_yoast_wpseo_linkdex','78'),(10184,3547,'_yoast_wpseo_focuskw','Allergic reactions to joint replacements'),(10185,3547,'_yoast_wpseo_linkdex','75'),(10189,3547,'_yoast_wpseo_metadesc','Allergic reactions to joint replacements, and the problem of corrosion from their wear and tear are real problems to consider. Find out about alternatives.'),(10191,3964,'iwp_log_type','plugins'),(10192,3964,'iwp_log_action','update'),(10193,3964,'iwp_log_activities_type','automatic'),(10194,3964,'iwp_log_actions','plugins-updated'),(10195,3964,'iwp_log_details','a:4:{s:4:\"name\";s:13:\"Gravity Forms\";s:4:\"slug\";s:29:\"gravityforms/gravityforms.php\";s:11:\"old_version\";s:6:\"2.4.19\";s:15:\"updated_version\";s:6:\"2.4.20\";}'),(10197,3540,'_yoast_wpseo_focuskw','sciatica pain'),(10198,3540,'_yoast_wpseo_linkdex','75'),(10200,3540,'_yoast_wpseo_metadesc','Sciatica pain is a major nuisance that interferes with activities we love. At OrthoRegen, we treat sciatica pain non-surgically. Call us at (310)453-1234.'),(10204,3526,'_yoast_wpseo_focuskw','Stem Cell Therapy'),(10205,3526,'_yoast_wpseo_linkdex','76'),(10207,3526,'_yoast_wpseo_metadesc','Not all Stem Cell Therapy is the same. At OrthoRegen, we are set apart from others because we use the Gold Standard in Stem Cell Therapy.'),(10210,3511,'_yoast_wpseo_focuskw','hip pain from bursitis'),(10211,3511,'_yoast_wpseo_metadesc','In this article, we will discuss hip bursitis,  various treatment options for bursitis, and other reasons for hip pain that cause bursitis like symptoms.'),(10212,3511,'_yoast_wpseo_linkdex','78'),(10218,3979,'_wp_attached_file','2019/12/arthritis.do-what-you-love.png'),(10219,3979,'_wp_attachment_image_alt','Keep Doing What You Love'),(10220,3979,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2019/12/arthritis.do-what-you-love.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"arthritis.do-what-you-love-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"arthritis.do-what-you-love-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"arthritis.do-what-you-love-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"arthritis.do-what-you-love-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:40:\"arthritis.do-what-you-love-2048x2048.png\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10222,3484,'_yoast_wpseo_focuskw','Older athletes'),(10223,3484,'_yoast_wpseo_metadesc','The hope for the older athlete is to be as fit as when in the prime of their athletic careers. Regenerative Orthopedics keeps older athletes in their game.'),(10224,3484,'_yoast_wpseo_linkdex','75'),(10225,3484,'_wp_old_slug','how-arthritis-affects-the-older-athlete'),(10228,3409,'_yoast_wpseo_focuskw','knee tendonitis'),(10229,3409,'_yoast_wpseo_metadesc','Regenerative Orthopedics effectively treats knee tendonitis. Even with tendon degeneration, or tendinosis is present, the condition benefits tremendously.'),(10230,3409,'_yoast_wpseo_linkdex','78'),(10232,3416,'_yoast_wpseo_focuskw','Townsend Letter'),(10233,3416,'_yoast_wpseo_metadesc','Peter A. Fields, MD, DC talks about arthritis in an article in this June 2019 edition of The Townsend Letter. Read the article to find out more.'),(10234,3416,'_yoast_wpseo_linkdex','79'),(10238,3416,'_wp_old_slug','june-2019-townsend-article'),(10243,3306,'_yoast_wpseo_focuskw','Degenerative Disc Disease'),(10244,3306,'_yoast_wpseo_linkdex','82'),(10247,3301,'_yoast_wpseo_focuskw','cervical instability'),(10248,3301,'_yoast_wpseo_metadesc','Cervical instability can result in neck pain & symptoms that alter the ability to live normally. Regenerative Orthopedics can stop the cycle.'),(10249,3301,'_yoast_wpseo_linkdex','75'),(10251,3677,'_yoast_wpseo_metadesc','My dad’s life could be an example for all of us during COVID-19 to encourage us to keep moving forwards and to not look back no matter how bad things are.'),(10254,3677,'_wp_old_slug','dealing-with-covid-19'),(10260,3297,'_yoast_wpseo_focuskw','Elbow pain'),(10261,3297,'_yoast_wpseo_metadesc','In this article, find out what is behind your elbow pain and how to get rid of the pain and get back to what you love without the need for surgery.'),(10262,3297,'_yoast_wpseo_linkdex','71'),(10264,4005,'_wp_attached_file','2020/08/Foot-pain-copy-e1598312240940.png'),(10265,4005,'_wp_attachment_image_alt','Foot Pain Copy'),(10266,4005,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:41:\"2020/08/Foot-pain-copy-e1598312240940.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Foot-pain-copy-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Foot-pain-copy-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Foot-pain-copy-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10267,4005,'_edit_lock','1598312368:9'),(10268,4005,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:18:\"Foot-pain-copy.png\";}}'),(10269,4005,'_edit_last','9'),(10270,4006,'_wp_attached_file','2020/08/Foot-pain-copy.jpg'),(10271,4006,'_wp_attachment_image_alt','Foot Pain Copy'),(10272,4006,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:26:\"2020/08/Foot-pain-copy.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Foot-pain-copy-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Foot-pain-copy-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Foot-pain-copy-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(10273,4006,'_edit_lock','1598312301:9'),(10274,4006,'_edit_last','9'),(10275,4007,'_wp_attached_file','2020/08/Foot-pain-copy-1.jpg'),(10276,4007,'_wp_attachment_image_alt','The Shoes We Wear'),(10277,4007,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:28:\"2020/08/Foot-pain-copy-1.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Foot-pain-copy-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Foot-pain-copy-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Foot-pain-copy-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(10278,4008,'_wp_attached_file','2020/08/Penny.-foot.jpg'),(10279,4008,'_wp_attachment_image_alt','Penny. Foot'),(10280,4008,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:23:\"2020/08/Penny.-foot.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Penny.-foot-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Penny.-foot-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Penny.-foot-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(10282,4010,'_wp_attached_file','2020/08/Foot-pain-copy-2.jpg'),(10283,4010,'_wp_attachment_image_alt','Foot Pain Copy'),(10284,4010,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:28:\"2020/08/Foot-pain-copy-2.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Foot-pain-copy-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Foot-pain-copy-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Foot-pain-copy-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(10287,3199,'_yoast_wpseo_focuskw','Foot and toe pain'),(10288,3199,'_yoast_wpseo_metadesc','Foot and toe pain can really put a damper on simple, daily activities like walking. If you are looking for relief, Regenerative Orthopedics can help.'),(10289,3199,'_yoast_wpseo_linkdex','71'),(10290,3199,'_wp_old_slug','persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics'),(10294,3134,'_yoast_wpseo_focuskw','Ideal sports medicine'),(10295,3134,'_yoast_wpseo_metadesc','Athletes of all ages desire to stay fit and active. Regenerative Orhopedics are the ideal sports medicine to keep you in your game.'),(10296,3134,'_yoast_wpseo_linkdex','71'),(10302,4020,'_wp_attached_file','2020/08/cortisone.png'),(10303,4020,'_wp_attachment_image_alt','Cortisone'),(10304,4020,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1351;s:4:\"file\";s:21:\"2020/08/cortisone.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"cortisone-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"cortisone-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"cortisone-768x961.png\";s:5:\"width\";i:768;s:6:\"height\";i:961;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10305,4020,'_edit_lock','1598369024:9'),(10308,2915,'_yoast_wpseo_focuskw','cortisone injections'),(10309,2915,'_yoast_wpseo_metadesc','Cortisone injections are commonly recommended for arthritis, but research shows how it can actually boost the arthritic process.'),(10310,2915,'_yoast_wpseo_linkdex','78'),(10311,2915,'_wp_old_slug','cortisone-steroid-injections-may-not-be-as-safe-as-you-think'),(10314,2912,'_yoast_wpseo_focuskw','Overuse injuries'),(10315,2912,'_yoast_wpseo_metadesc','Overuse injuries from repetitive activities can sideline you from from being active. Regenerative Orthopedics can repair the injuries non-surgically.'),(10316,2912,'_yoast_wpseo_linkdex','78'),(10319,4027,'_wp_attached_file','2019/10/Runners-Knee.jpg'),(10320,4027,'_wp_attachment_image_alt','Runners Knee'),(10321,4027,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:24:\"2019/10/Runners-Knee.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Runners-Knee-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Runners-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Runners-Knee-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10323,2894,'_yoast_wpseo_focuskw','Runner\'s Knee'),(10324,2894,'_yoast_wpseo_metadesc','Regenerative Orthopedics can relieve Runner\'s Knee and speed up the process of normalizing the patellar tracking, allowing for a quick return to activities.'),(10325,2894,'_yoast_wpseo_linkdex','71'),(10329,4032,'_wp_attached_file','2019/10/Snapping-Hip-Syndrome.png'),(10330,4032,'_wp_attachment_image_alt','Snapping Hip Syndrome'),(10331,4032,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:33:\"2019/10/Snapping-Hip-Syndrome.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Snapping-Hip-Syndrome-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Snapping-Hip-Syndrome-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Snapping-Hip-Syndrome-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10333,2892,'_yoast_wpseo_focuskw','Snapping Hip Syndrome'),(10334,2892,'_yoast_wpseo_metadesc','With Regenerative Orthopedic treatments for Snapping Hip Syndrome, you can return quickly to the sports you enjoy, without the need for surgery.'),(10335,2892,'_yoast_wpseo_linkdex','75'),(10337,4036,'_wp_attached_file','2019/10/meniscus-tears.jpg'),(10338,4036,'_wp_attachment_image_alt','Meniscus Tears'),(10339,4036,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:26:\"2019/10/meniscus-tears.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"meniscus-tears-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"meniscus-tears-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"meniscus-tears-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10340,4038,'_wp_attached_file','2019/10/labral-tear-copy.png'),(10341,4038,'_wp_attachment_image_alt','Labral Tear Copy'),(10342,4038,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1078;s:6:\"height\";i:961;s:4:\"file\";s:28:\"2019/10/labral-tear-copy.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"labral-tear-copy-500x446.png\";s:5:\"width\";i:500;s:6:\"height\";i:446;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"labral-tear-copy-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"labral-tear-copy-768x685.png\";s:5:\"width\";i:768;s:6:\"height\";i:685;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10344,1397,'_yoast_wpseo_focuskw','Meniscus and Labral Tears'),(10345,1397,'_yoast_wpseo_metadesc','Non-Surgical Regenerative Orthopedics is an excellent option to repair knee and hip as a result of meniscus and labral tears.'),(10346,1397,'_yoast_wpseo_linkdex','78'),(10348,2865,'_yoast_wpseo_focuskw','Avoid Joint Replacement'),(10349,2865,'_yoast_wpseo_metadesc','Regenerative Orthopedics is an effective option for those desiring to avoid joint replacement and get back to the level of activities they love.'),(10350,2865,'_yoast_wpseo_linkdex','73'),(10351,2865,'_wp_old_slug','active-and-looking-to-avoid-a-joint-replacement'),(10353,4043,'_wp_attached_file','2019/10/Jun.-Shoulder-injury-Copy.png'),(10354,4043,'_wp_attachment_image_alt','Jun. Shoulder Injury Copy'),(10355,4043,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:37:\"2019/10/Jun.-Shoulder-injury-Copy.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Jun.-Shoulder-injury-Copy-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Jun.-Shoulder-injury-Copy-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Jun.-Shoulder-injury-Copy-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10356,4044,'_wp_attached_file','2019/10/Claire.-pro-triathlete.jpg'),(10357,4044,'_wp_attachment_image_alt','Claire. Pro Triathlete'),(10358,4044,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2019/10/Claire.-pro-triathlete.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Claire.-pro-triathlete-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Claire.-pro-triathlete-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Claire.-pro-triathlete-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"Claire.-pro-triathlete-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:36:\"Claire.-pro-triathlete-2048x2048.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10362,2858,'_yoast_wpseo_focuskw','Medial Collateral Ligament Injuries'),(10363,2858,'_yoast_wpseo_metadesc','In medial collateral ligament injuries, co-injury of ligaments, and other structures may be involved. The goal is whole knee treatment for adequate repair.'),(10364,2858,'_yoast_wpseo_linkdex','78'),(10365,4049,'_wp_attached_file','2019/10/MCL-tears.jpg'),(10366,4049,'_wp_attachment_image_alt','Mcl Tears'),(10367,4049,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:21:\"2019/10/MCL-tears.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"MCL-tears-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"MCL-tears-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"MCL-tears-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10377,2773,'_yoast_wpseo_focuskw','glenoid labrum of the shoulder'),(10378,2773,'_yoast_wpseo_metadesc','When the glenoid labrum of the shoulder is injured, the shoulder is susceptible to dislocations and pain. Non-Surgical Regenerative Orthopedics repairs it.'),(10379,2773,'_yoast_wpseo_linkdex','75'),(10383,2760,'_yoast_wpseo_focuskw','Stop Back Pain'),(10384,2760,'_yoast_wpseo_metadesc','The most common cause of back pain is spinal instability due to weakened ligaments. Regenerative Orthopedics repairs them & can stop back pain.'),(10385,2760,'_yoast_wpseo_linkdex','82'),(10386,2760,'_wp_old_slug','chronic-back-pain'),(10389,2697,'_yoast_wpseo_focuskw','surgery cause strokes'),(10390,2697,'_yoast_wpseo_linkdex','71'),(10392,2697,'_yoast_wpseo_metadesc','Since surgery can cause strokes, and anesthesia adds to the risk, it is great to know Regenerative Orthopedics is an alternative to surgery.'),(10395,2665,'_yoast_wpseo_focuskw','hip pain'),(10396,2665,'_yoast_wpseo_linkdex','77'),(10397,4065,'_wp_attached_file','2019/08/Hip-Pain.-Jan.png'),(10398,4065,'_wp_attachment_image_alt','Hip Pain. Jan'),(10399,4065,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:25:\"2019/08/Hip-Pain.-Jan.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Hip-Pain.-Jan-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Hip-Pain.-Jan-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Hip-Pain.-Jan-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10400,4067,'_wp_attached_file','2019/08/hip.jpg'),(10401,4067,'_wp_attachment_image_alt','Hip'),(10402,4067,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:15:\"2019/08/hip.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"hip-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"hip-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"hip-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10404,2665,'_yoast_wpseo_metadesc','Our goal at OrthoRegen® is for hip pain patients to have an active, healthy, pain-free life. Regenerative Orthopedics offers a safe, affordable solution.'),(10413,2650,'_yoast_wpseo_focuskw','chondromalacia patella'),(10414,2650,'_yoast_wpseo_linkdex','75'),(10415,4075,'_wp_attached_file','2019/08/knee-injury.png'),(10416,4075,'_wp_attachment_image_alt','Knee Injury'),(10417,4075,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:23:\"2019/08/knee-injury.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"knee-injury-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"knee-injury-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"knee-injury-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10419,2650,'_yoast_wpseo_metadesc','Regenerative Orthopedics reduces Chondromalacia Patella symptoms, improves function, fixes patellar tracking, and gets you back to the activities you enjoy. '),(10422,2611,'_yoast_wpseo_focuskw','Amniotic Stem Cell'),(10423,2611,'_yoast_wpseo_linkdex','75'),(10424,4078,'_wp_attached_file','2019/08/Amniotic.jpg'),(10425,4078,'_wp_attachment_image_alt','Amniotic Stem Cells'),(10426,4078,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1351;s:4:\"file\";s:20:\"2019/08/Amniotic.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Amniotic-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Amniotic-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Amniotic-768x961.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:961;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10428,2611,'_yoast_wpseo_metadesc','Amniotic stem cell therapy is being advertised all over the place for joint repair. But the product actually contains NO live stem cells. Read more.'),(10430,3638,'_yoast_wpseo_metadesc','We cannot live our lives in fear. In this article, Peter A. Fields, MD, DC gives some COVID advice about really living your life despite the pandemic.'),(10434,2592,'_yoast_wpseo_focuskw','painful joints'),(10435,2592,'_yoast_wpseo_linkdex','75'),(10436,4086,'_wp_attached_file','2019/08/Sue.-knee.stem_.png'),(10437,4086,'_wp_attachment_image_alt','Stem Cell Therapy for Knee Pain'),(10438,4086,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:27:\"2019/08/Sue.-knee.stem_.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Sue.-knee.stem_-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Sue.-knee.stem_-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Sue.-knee.stem_-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10441,2592,'_yoast_wpseo_metadesc','Regenerative Orthopedics has a greater chance at effectively repairing painful joints as it fixes the root cause of the joint pain problem.'),(10443,2555,'_yoast_wpseo_focuskw','sciatica symptoms'),(10444,2555,'_yoast_wpseo_metadesc','Regenerative Orthopedics is effective at bringing pain relief and return to function for those suffering from sciatica symptoms and lumbar radiculopathy.'),(10445,2555,'_yoast_wpseo_linkdex','80'),(10446,4089,'_wp_attached_file','2019/08/sciatical.png'),(10447,4089,'_wp_attachment_image_alt','Sciatical'),(10448,4089,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:21:\"2019/08/sciatical.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"sciatical-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"sciatical-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"sciatical-768x960.png\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10452,2503,'_yoast_wpseo_focuskw','meniscus tears'),(10453,2503,'_yoast_wpseo_metadesc','Regenerative Orthopedic can safely and effectively treat meniscus tears without the need for surgery, returning you quickly to the activities you enjoy.'),(10454,2503,'_yoast_wpseo_linkdex','75'),(10456,4092,'_wp_attached_file','2019/07/MCL-tears.jpg'),(10457,4092,'_wp_attachment_image_alt','Meniscus Tears'),(10458,4092,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:21:\"2019/07/MCL-tears.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"MCL-tears-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"MCL-tears-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"MCL-tears-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10459,4092,'_edit_lock','1599509769:9'),(10460,4092,'_edit_last','9'),(10461,4093,'_wp_attached_file','2019/07/meniscus-injuries.png'),(10462,4093,'_wp_attachment_image_alt','Meniscus Injuries'),(10463,4093,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:29:\"2019/07/meniscus-injuries.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"meniscus-injuries-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"meniscus-injuries-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"meniscus-injuries-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10469,2501,'_yoast_wpseo_focuskw','headaches'),(10470,2501,'_yoast_wpseo_metadesc','Regenerative Orthopedics is a safe, non-surgical option that stops headache pain, decreases symptoms, and helps you to enjoy life again.'),(10471,2501,'_yoast_wpseo_linkdex','74'),(10472,4099,'_wp_attached_file','2019/07/headaches-1.jpg'),(10473,4099,'_wp_attachment_image_alt','Headaches'),(10474,4099,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:23:\"2019/07/headaches-1.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"headaches-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"headaches-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"headaches-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10478,2362,'_yoast_wpseo_focuskw','Hip Labral Tears'),(10479,2362,'_yoast_wpseo_metadesc','We have treated hip labrum tears successfully for many years at OrthoRegen®, and offer an effective alternative to hip surgery in cases of hip labral tears.'),(10480,2362,'_yoast_wpseo_linkdex','76'),(10484,4105,'_wp_attached_file','2019/06/meniscectomy.png'),(10485,4105,'_wp_attachment_image_alt','Meniscectomy'),(10486,4105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:24:\"2019/06/meniscectomy.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"meniscectomy-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"meniscectomy-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"meniscectomy-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10488,2353,'_yoast_wpseo_focuskw','Meniscus Surgery'),(10489,2353,'_yoast_wpseo_metadesc','Regenerative Orthopedics could save you from having your joint permanently removed and replaced after meniscus surgery, which sometimes can be disastrous.'),(10490,2353,'_yoast_wpseo_linkdex','71'),(10491,2353,'_yoast_wpseo_content_score','60'),(10496,2345,'_yoast_wpseo_focuskw','Joint Replacement'),(10497,2345,'_yoast_wpseo_metadesc','Stem Cell Treatment is a type of Regenerative Orthopedics that offer hope to people suffering from joint pain and those trying to avoid joint replacement.'),(10498,2345,'_yoast_wpseo_linkdex','75'),(10499,4112,'_wp_attached_file','2019/06/stem-cells..png'),(10500,4112,'_wp_attachment_image_alt','Stem Cell Therapy'),(10501,4112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:23:\"2019/06/stem-cells..png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"stem-cells.-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"stem-cells.-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"stem-cells.-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10505,2082,'_yoast_wpseo_focuskw','Avoid Knee Replacement'),(10506,2082,'_yoast_wpseo_metadesc','Regenerative Orthopedics offer hope to knee pain sufferers and they provide an effective, non-surgical option for those trying to avoid knee replacement.'),(10507,2082,'_yoast_wpseo_linkdex','75'),(10508,2082,'_wp_old_slug','avoiding-knee-replacement-with-regenerative-orthopedics'),(10510,4115,'_wp_attached_file','2019/06/knee.-avoid-replacement2.png'),(10511,4115,'_wp_attachment_image_alt','Avoid Knee Replacement'),(10512,4115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:36:\"2019/06/knee.-avoid-replacement2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"knee.-avoid-replacement2-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"knee.-avoid-replacement2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"knee.-avoid-replacement2-768x960.png\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10516,2028,'_yoast_wpseo_focuskw','Groin pain'),(10517,2028,'_yoast_wpseo_metadesc','Athletes with groin pain returned to full elite-level performance in a timely and sustainable manner after regenerative injection therapy using dextrose. '),(10518,2028,'_yoast_wpseo_linkdex','73'),(10519,2028,'_yoast_wpseo_content_score','30'),(10520,2028,'_wp_old_slug','groin-pelvis'),(10521,4120,'_wp_attached_file','2019/06/hip-pain-medium-1.png'),(10522,4120,'_wp_attachment_image_alt','Groin Pain'),(10523,4120,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:29:\"2019/06/hip-pain-medium-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10527,2024,'_yoast_wpseo_focuskw','Prolotherapy or Cortisone'),(10528,2024,'_yoast_wpseo_metadesc','Lateral Epicondylitis patients who received Prolotherapy continued to improve at the 3 month follow-up, but those who received cortisone did not.'),(10529,2024,'_yoast_wpseo_linkdex','71'),(10530,2024,'_yoast_wpseo_content_score','60'),(10531,2024,'_wp_old_slug','elbow'),(10532,4124,'_wp_attached_file','2019/06/elbow-pain-medium-1.png'),(10533,4124,'_wp_attachment_image_alt','Tennis Elbow'),(10534,4124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:31:\"2019/06/elbow-pain-medium-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10543,2020,'_yoast_wpseo_content_score','30'),(10545,2020,'_yoast_wpseo_focuskw','Osgood-Schlatter Disease'),(10546,2020,'_yoast_wpseo_metadesc','Prolotherapy is safe & well tolerated & resulted in rapid achievement of unaltered sport & asymptomatic sport than usual care in Osgood-Schlatter Disease.'),(10547,2020,'_yoast_wpseo_linkdex','80'),(10549,4134,'_wp_attached_file','2019/06/knee-pain-medium-1.png'),(10550,4134,'_wp_attachment_image_alt','Osgood-Schlatter'),(10551,4134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:30:\"2019/06/knee-pain-medium-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10555,2014,'_yoast_wpseo_content_score','30'),(10557,2014,'_yoast_wpseo_focuskw','arthritis pain'),(10558,2014,'_yoast_wpseo_metadesc','Prolotherapy provides a better effect than exercise, local anesthetics, and probably corticosteroids for arthritis pain patients at 6 months follow-up.'),(10559,2014,'_yoast_wpseo_linkdex','71'),(10560,2014,'_wp_old_slug','finger'),(10561,4139,'_wp_attached_file','2019/06/arthritis-symptoms.jpg'),(10562,4139,'_wp_attachment_image_alt','Arthritis Pain'),(10563,4139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:30:\"2019/06/arthritis-symptoms.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"arthritis-symptoms-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"arthritis-symptoms-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"arthritis-symptoms-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10564,2014,'_oembed_fc9b6b462f8d285c0784cfba32c51bb7','<blockquote class=\"wp-embedded-content\" data-secret=\"ZhczBqkE2l\"><a href=\"https://www.drfields.com/articles/magazine-column/townsend-letter-arthritis/\">Townsend Letter: Arthritis</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Townsend Letter: Arthritis&#8221; &#8212; Peter A. Fields, MD, DC\" src=\"https://www.drfields.com/articles/magazine-column/townsend-letter-arthritis/embed/#?secret=ZhczBqkE2l\" data-secret=\"ZhczBqkE2l\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(10565,2014,'_oembed_time_fc9b6b462f8d285c0784cfba32c51bb7','1599948280'),(10567,2014,'_oembed_aec975d15d2f978e5b0ef79042ca5e65','<blockquote class=\"wp-embedded-content\" data-secret=\"DJ2w0WSkA6\"><a href=\"https://www.drfields.com/articles/magazine-column/townsend-letter-arthritis/\">Townsend Letter: Arthritis</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Townsend Letter: Arthritis&#8221; &#8212; Peter A. Fields, MD, DC\" src=\"https://www.drfields.com/articles/magazine-column/townsend-letter-arthritis/embed/#?secret=DJ2w0WSkA6\" data-secret=\"DJ2w0WSkA6\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(10568,2014,'_oembed_time_aec975d15d2f978e5b0ef79042ca5e65','1613512301'),(10569,2014,'_oembed_46cff57b3a506987592f31e6de8aa825','<blockquote class=\"wp-embedded-content\" data-secret=\"jjR8gXtSJw\"><a href=\"https://www.drfields.com/articles/magazine-column/townsend-letter-arthritis/\">Townsend Letter: Arthritis</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Townsend Letter: Arthritis&#8221; &#8212; Peter A. Fields, MD, DC\" src=\"https://www.drfields.com/articles/magazine-column/townsend-letter-arthritis/embed/#?secret=jjR8gXtSJw\" data-secret=\"jjR8gXtSJw\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(10570,2014,'_oembed_time_46cff57b3a506987592f31e6de8aa825','1599948338'),(10575,1516,'_wp_old_slug','to-improve-fitness-try-sleep'),(10577,1516,'_yoast_wpseo_metadesc','Exercise not only keeps our body fit, and muscles strong, it also provides brain fitness and reduces the risk of Parkinson\'s Disease.'),(10581,4147,'_wp_attached_file','2019/06/Screen-Shot-2020-09-15-at-4.52.16-PM.png'),(10582,4147,'_wp_attachment_image_alt','Brain fitness'),(10583,4147,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:266;s:4:\"file\";s:48:\"2019/06/Screen-Shot-2020-09-15-at-4.52.16-PM.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-09-15-at-4.52.16-PM-500x260.png\";s:5:\"width\";i:500;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-09-15-at-4.52.16-PM-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10591,4152,'iwp_log_type','core'),(10592,4152,'iwp_log_action','update'),(10593,4152,'iwp_log_activities_type','direct'),(10594,4152,'iwp_log_actions','core-updated'),(10595,4152,'iwp_log_details','a:2:{s:11:\"old_version\";s:5:\"5.4.1\";s:15:\"updated_version\";s:5:\"5.5.1\";}'),(10597,4154,'iwp_log_type','plugins'),(10598,4154,'iwp_log_action','update'),(10599,4154,'iwp_log_activities_type','direct'),(10600,4154,'iwp_log_actions','plugins-updated'),(10601,4154,'iwp_log_details','a:4:{s:4:\"name\";s:14:\"Classic Editor\";s:4:\"slug\";s:33:\"classic-editor/classic-editor.php\";s:11:\"old_version\";s:3:\"1.5\";s:15:\"updated_version\";s:3:\"1.6\";}'),(10602,4155,'iwp_log_type','plugins'),(10603,4155,'iwp_log_action','update'),(10604,4155,'iwp_log_activities_type','direct'),(10605,4155,'iwp_log_actions','plugins-updated'),(10606,4155,'iwp_log_details','a:4:{s:4:\"name\";s:14:\"Duplicate Page\";s:4:\"slug\";s:32:\"duplicate-page/duplicatepage.php\";s:11:\"old_version\";s:3:\"4.2\";s:15:\"updated_version\";s:3:\"4.3\";}'),(10607,4156,'iwp_log_type','plugins'),(10608,4156,'iwp_log_action','update'),(10609,4156,'iwp_log_activities_type','direct'),(10610,4156,'iwp_log_actions','plugins-updated'),(10611,4156,'iwp_log_details','a:4:{s:4:\"name\";s:20:\"Enable Media Replace\";s:4:\"slug\";s:45:\"enable-media-replace/enable-media-replace.php\";s:11:\"old_version\";s:5:\"3.4.1\";s:15:\"updated_version\";s:5:\"3.4.2\";}'),(10612,4157,'iwp_log_type','plugins'),(10613,4157,'iwp_log_action','update'),(10614,4157,'iwp_log_activities_type','direct'),(10615,4157,'iwp_log_actions','plugins-updated'),(10616,4157,'iwp_log_details','a:4:{s:4:\"name\";s:12:\"WP Mail SMTP\";s:4:\"slug\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"old_version\";s:5:\"2.1.1\";s:15:\"updated_version\";s:5:\"2.4.0\";}'),(10617,4158,'iwp_log_type','plugins'),(10618,4158,'iwp_log_action','update'),(10619,4158,'iwp_log_activities_type','direct'),(10620,4158,'iwp_log_actions','plugins-updated'),(10621,4158,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:7:\"3.5.5.1\";s:15:\"updated_version\";s:7:\"3.7.1.1\";}'),(10622,4159,'iwp_log_type','plugins'),(10623,4159,'iwp_log_action','update'),(10624,4159,'iwp_log_activities_type','direct'),(10625,4159,'iwp_log_actions','plugins-updated'),(10626,4159,'iwp_log_details','a:4:{s:4:\"name\";s:17:\"WP Video Lightbox\";s:4:\"slug\";s:39:\"wp-video-lightbox/wp-video-lightbox.php\";s:11:\"old_version\";s:5:\"1.8.9\";s:15:\"updated_version\";s:5:\"1.9.1\";}'),(10627,2012,'_wp_page_template','default'),(10629,2012,'_yoast_wpseo_focuskw','Dry Needling of tendons'),(10630,2012,'_yoast_wpseo_metadesc','Dry needling alone reduces tendon pain. Regenerative Orthopedics boosts the healing capacity even more & effectively treats tendon injuries.'),(10631,2012,'_yoast_wpseo_linkdex','73'),(10632,2012,'_yoast_wpseo_content_score','60'),(10633,2012,'_wp_old_slug','lower-back'),(10635,4166,'_wp_attached_file','2019/06/Prolo-definition.png'),(10636,4166,'_wp_attachment_image_alt','Prolo Definition'),(10637,4166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1410;s:6:\"height\";i:1060;s:4:\"file\";s:28:\"2019/06/Prolo-definition.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Prolo-definition-500x376.png\";s:5:\"width\";i:500;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Prolo-definition-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Prolo-definition-768x577.png\";s:5:\"width\";i:768;s:6:\"height\";i:577;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10644,2009,'_yoast_wpseo_focuskw','foot pain'),(10645,2009,'_yoast_wpseo_metadesc','What helps foot pain besides surgery? Regenerative Orthopedics like Prolotherapy, PRP, and Stem Cell Therapy.'),(10646,2009,'_yoast_wpseo_linkdex','73'),(10647,2009,'_yoast_wpseo_content_score','60'),(10648,4174,'_wp_attached_file','2019/06/foot-pain.jpg'),(10649,4174,'_wp_attachment_image_alt','Foot Pain'),(10650,4174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:21:\"2019/06/foot-pain.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"foot-pain-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"foot-pain-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"foot-pain-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10659,1845,'_wp_page_template','default'),(10660,1845,'_yoast_wpseo_content_score','30'),(10661,1837,'_wp_page_template','default'),(10662,1837,'_yoast_wpseo_content_score','30'),(10663,1831,'_wp_page_template','default'),(10664,1831,'_yoast_wpseo_content_score','30'),(10665,1524,'_wp_page_template','default'),(10667,1524,'_yoast_wpseo_focuskw','Stem Cell'),(10668,1524,'_yoast_wpseo_metadesc','This article in \"The Townsend Article\" by Peter A. Fields, MD, DC  explains Stem Cell Prolotherapy, a non-surgical alternative, in detail.'),(10669,1524,'_yoast_wpseo_linkdex','79'),(10670,1524,'_yoast_wpseo_content_score','90'),(10671,1524,'_wp_old_slug','july-2014-townsend-article'),(10672,1524,'_oembed_306ef41a21819e9cf4b5f15d76eadd3e','<blockquote class=\"wp-embedded-content\" data-secret=\"foZjg2G3UN\"><a href=\"https://www.townsendletter.com/\">Current Issues</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Current Issues&#8221; &#8212; Townsend Letter\" src=\"https://www.townsendletter.com/embed/#?secret=foZjg2G3UN\" data-secret=\"foZjg2G3UN\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(10673,1524,'_oembed_time_306ef41a21819e9cf4b5f15d76eadd3e','1602091881'),(10676,1669,'_yoast_wpseo_focuskw','PRP Prolotherapy'),(10677,1669,'_yoast_wpseo_metadesc','PRP Prolotherapy can be a miracle when it comes to ending joint damage and muscle pain, especially when compare to invasive surgery.'),(10678,1669,'_yoast_wpseo_linkdex','75'),(10681,1667,'_yoast_wpseo_focuskw','Los Angeles Prolotherapy'),(10682,1667,'_yoast_wpseo_metadesc','Enjoy improved joint mobility and decreased pain levels with Prolotherapy by Peter A. Fields, MD,DC, a Los Angeles Prolotherapy Doctor.'),(10683,1667,'_yoast_wpseo_linkdex','79'),(10686,1558,'_wp_page_template','default'),(10688,1558,'_yoast_wpseo_focuskw','Regenerative Orthopedics in Mexico'),(10689,1558,'_yoast_wpseo_metadesc','Dr. Fields had the opportunity to educate his peers about Regenerative Orthopedics in Mexico at a conference in Mexico City.'),(10690,1558,'_yoast_wpseo_linkdex','77'),(10691,1558,'_yoast_wpseo_content_score','60'),(10692,1558,'_wp_old_slug','mexico-city-lecture-2018'),(10693,1614,'_wp_page_template','default'),(10695,1614,'_yoast_wpseo_focuskw','Prolotherapy Videos'),(10696,1614,'_yoast_wpseo_metadesc','In these Prolotherapy videos, Peter A. Fields, MD,DC answers your questions as he discusses many different aspects of Prolotherapy. '),(10697,1614,'_yoast_wpseo_linkdex','78'),(10698,1614,'_yoast_wpseo_content_score','90'),(10728,1526,'_yoast_wpseo_focuskw','Elbow Injuries'),(10729,1526,'_yoast_wpseo_metadesc','Regenerative Orthopedics for elbow injuries regenerates collagen tissue to repair the injury naturally, fixing both the cause and the effect.'),(10730,1526,'_yoast_wpseo_linkdex','78'),(10731,1526,'_wp_old_slug','february-march-2014-townsend-article'),(10736,2775,'_yoast_wpseo_metadesc','Regenerative Orthopedics offers a non-surgical treatment solution for patients to find healing with persistent iliotibial band syndrome.'),(10737,4233,'_wp_attached_file','2019/10/IT-band.png'),(10738,4233,'_wp_attachment_image_alt','Iliotibial Band Repair'),(10739,4233,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1351;s:4:\"file\";s:19:\"2019/10/IT-band.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"IT-band-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"IT-band-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"IT-band-768x961.png\";s:5:\"width\";i:768;s:6:\"height\";i:961;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10744,1520,'_yoast_wpseo_metadesc','We are bombarded constantly with junk food advertisements. This article helps us learn about fat fighting foods to help combat the onslaught.'),(10745,1520,'_wp_old_slug','foods-that-fight-fat-learn-how-certain-food-can-help-burn-fat'),(10747,1461,'_wp_old_slug','persistent-pain-regenerative-orthopedics-may-be-the-answer'),(10751,595,'_wp_old_slug','foot-injury-treatment'),(10755,528,'_wp_old_slug','hip-injury-treatment'),(10757,1524,'_yoast_wpseo_title','%%page%% %%sep%% %%sitename%%'),(10759,524,'_wp_old_slug','chronic-elbow-pain'),(10764,1530,'_wp_page_template','default'),(10766,1530,'_yoast_wpseo_focuskw','Cause of Back Pain'),(10767,1530,'_yoast_wpseo_metadesc','Want to get to the root cause of back pain? Regenerative Orthopedics relieves your back pain and gets you back to doing what you love.'),(10768,1530,'_yoast_wpseo_linkdex','78'),(10769,1530,'_yoast_wpseo_content_score','90'),(10770,1530,'_wp_old_slug','january-2014-townsend-article'),(10773,486,'_wp_old_slug','chronic-knee-pain'),(10778,4260,'iwp_log_type','plugins'),(10779,4260,'iwp_log_action','update'),(10780,4260,'iwp_log_activities_type','direct'),(10781,4260,'iwp_log_actions','plugins-updated'),(10782,4260,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"14.9\";s:15:\"updated_version\";s:6:\"15.1.1\";}'),(10783,4261,'iwp_log_type','plugins'),(10784,4261,'iwp_log_action','update'),(10785,4261,'iwp_log_activities_type','direct'),(10786,4261,'iwp_log_actions','plugins-updated'),(10787,4261,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:7:\"3.7.1.1\";s:15:\"updated_version\";s:5:\"3.7.3\";}'),(10788,4262,'iwp_log_type','plugins'),(10789,4262,'iwp_log_action','update'),(10790,4262,'iwp_log_activities_type','direct'),(10791,4262,'iwp_log_actions','plugins-updated'),(10792,4262,'iwp_log_details','a:4:{s:4:\"name\";s:13:\"Gravity Forms\";s:4:\"slug\";s:29:\"gravityforms/gravityforms.php\";s:11:\"old_version\";s:6:\"2.4.20\";s:15:\"updated_version\";s:6:\"2.4.21\";}'),(10793,4263,'iwp_log_type','plugins'),(10794,4263,'iwp_log_action','update'),(10795,4263,'iwp_log_activities_type','direct'),(10796,4263,'iwp_log_actions','plugins-updated'),(10797,4263,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:6:\"15.1.1\";s:15:\"updated_version\";s:4:\"15.2\";}'),(10798,4264,'iwp_log_type','plugins'),(10799,4264,'iwp_log_action','update'),(10800,4264,'iwp_log_activities_type','direct'),(10801,4264,'iwp_log_actions','plugins-updated'),(10802,4264,'iwp_log_details','a:4:{s:4:\"name\";s:12:\"WP Mail SMTP\";s:4:\"slug\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"old_version\";s:5:\"2.4.0\";s:15:\"updated_version\";s:5:\"2.5.1\";}'),(10803,4266,'iwp_log_type','plugins'),(10804,4266,'iwp_log_action','update'),(10805,4266,'iwp_log_activities_type','direct'),(10806,4266,'iwp_log_actions','plugins-updated'),(10807,4266,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:5:\"3.7.3\";s:15:\"updated_version\";s:5:\"3.7.4\";}'),(10808,1532,'_oembed_3ea926c21ea7b86feb189177a6d87e87','{{unknown}}'),(10809,1532,'_wp_page_template','default'),(10811,1532,'_yoast_wpseo_focuskw','Hip Replacement'),(10812,1532,'_yoast_wpseo_metadesc','Address the cause, and not just the effect, and avoid hip replacement with . Regenerative Orthopedics, a non-surgical treatment alternative.'),(10813,1532,'_yoast_wpseo_linkdex','65'),(10814,1532,'_yoast_wpseo_content_score','90'),(10815,1532,'_wp_old_slug','december-2013-townsend-article'),(10818,414,'_wp_old_slug','prp-treatment'),(10820,414,'_wp_old_slug','platelet-rich-plasma-treatments'),(10824,382,'_wp_old_slug','prolotherapy-treatment-overview'),(10827,1518,'_yoast_wpseo_focuskw','Exercise Provides Health Benefits'),(10828,1518,'_yoast_wpseo_metadesc','Studies show that increased exercise provides health benefits for all ages of people, and short bursts of activity can help as well.'),(10829,1518,'_yoast_wpseo_linkdex','76'),(10830,1518,'_wp_old_slug','bursts-of-activity-learn-how-exercise-can-give-you-energy'),(10834,4282,'iwp_log_type','plugins'),(10835,4282,'iwp_log_action','update'),(10836,4282,'iwp_log_activities_type','direct'),(10837,4282,'iwp_log_actions','plugins-updated'),(10838,4282,'iwp_log_details','a:4:{s:4:\"name\";s:20:\"Enable Media Replace\";s:4:\"slug\";s:45:\"enable-media-replace/enable-media-replace.php\";s:11:\"old_version\";s:5:\"3.4.2\";s:15:\"updated_version\";s:5:\"3.5.0\";}'),(10839,4283,'iwp_log_type','plugins'),(10840,4283,'iwp_log_action','update'),(10841,4283,'iwp_log_activities_type','direct'),(10842,4283,'iwp_log_actions','plugins-updated'),(10843,4283,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"15.2\";s:15:\"updated_version\";s:6:\"15.2.1\";}'),(10844,1514,'_wp_page_template','default'),(10846,1514,'_yoast_wpseo_focuskw','Vitamin D'),(10847,1514,'_yoast_wpseo_metadesc','The importance of healthy Vitamin D levels continues to expand, and a deficiency may even be implicated in the COVID‐19 prognosis.'),(10848,1514,'_yoast_wpseo_linkdex','82'),(10849,1514,'_yoast_wpseo_content_score','60'),(10851,1512,'_wp_page_template','default'),(10853,1512,'_yoast_wpseo_focuskw','Workplace Napping'),(10854,1512,'_yoast_wpseo_metadesc','New research shows that workplace napping actually improves productivity even for those who are not sleep deprived in the first place.'),(10855,1512,'_yoast_wpseo_linkdex','75'),(10856,1512,'_yoast_wpseo_content_score','60'),(10857,1512,'_wp_old_slug','napping-at-the-office-may-help-your-heart'),(10858,4288,'iwp_log_type','plugins'),(10859,4288,'iwp_log_action','update'),(10860,4288,'iwp_log_activities_type','direct'),(10861,4288,'iwp_log_actions','plugins-updated'),(10862,4288,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:5:\"3.7.4\";s:15:\"updated_version\";s:5:\"3.7.5\";}'),(10863,4290,'iwp_log_type','core'),(10864,4290,'iwp_log_action','update'),(10865,4290,'iwp_log_activities_type','direct'),(10866,4290,'iwp_log_actions','core-updated'),(10867,4290,'iwp_log_details','a:2:{s:11:\"old_version\";s:5:\"5.5.1\";s:15:\"updated_version\";s:5:\"5.5.3\";}'),(10868,4291,'iwp_log_type','plugins'),(10869,4291,'iwp_log_action','update'),(10870,4291,'iwp_log_activities_type','direct'),(10871,4291,'iwp_log_actions','plugins-updated'),(10872,4291,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:6:\"15.2.1\";s:15:\"updated_version\";s:4:\"15.3\";}'),(10873,1508,'_wp_page_template','default'),(10875,1508,'_yoast_wpseo_focuskw','Dietary Supplements'),(10876,1508,'_yoast_wpseo_metadesc','Even in our modern society, people are poorly nourished, especially older adults. Dietary supplements are a way to boost overall health.'),(10877,1508,'_yoast_wpseo_linkdex','73'),(10878,1508,'_yoast_wpseo_content_score','60'),(10879,1508,'_wp_old_slug','the-importance-of-supplementation-upwards-of-half-the-population-51-years-or-older-do-not-get-adequate-nutrition-from-their-diets'),(10881,4300,'iwp_log_type','plugins'),(10882,4300,'iwp_log_action','update'),(10883,4300,'iwp_log_activities_type','direct'),(10884,4300,'iwp_log_actions','plugins-updated'),(10885,4300,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"15.3\";s:15:\"updated_version\";s:4:\"15.4\";}'),(10886,1498,'_wp_page_template','default'),(10888,1498,'_yoast_wpseo_focuskw','Body Cleansing Foods'),(10889,1498,'_yoast_wpseo_title','Body Cleansing Foods to Incorporate in Your Diet for a Healthier You'),(10890,1498,'_yoast_wpseo_metadesc','The liver is a big part of the cleansing process. Here is a list of body cleansing foods that can help your body cleanse itself.'),(10891,1498,'_yoast_wpseo_linkdex','75'),(10892,1498,'_yoast_wpseo_content_score','60'),(10894,4303,'iwp_log_type','plugins'),(10895,4303,'iwp_log_action','update'),(10896,4303,'iwp_log_activities_type','direct'),(10897,4303,'iwp_log_actions','plugins-updated'),(10898,4303,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:5:\"3.7.5\";s:15:\"updated_version\";s:7:\"3.7.6.1\";}'),(10899,4305,'_wp_attached_file','2020/12/Kili-top-header-2.jpg'),(10900,4305,'_wp_attachment_image_alt','Kili Top Header 2'),(10901,4305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1031;s:6:\"height\";i:349;s:4:\"file\";s:29:\"2020/12/Kili-top-header-2.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Kili-top-header-2-500x169.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Kili-top-header-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Kili-top-header-2-768x260.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10902,4308,'_wp_attached_file','2020/12/bob-2.jpg'),(10903,4308,'_wp_attachment_image_alt','Bob 2'),(10904,4308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:17:\"2020/12/bob-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"bob-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10905,4310,'_wp_attached_file','2020/12/Michael-Ganglion-Cyst-2.jpg'),(10906,4310,'_wp_attachment_image_alt','Michael Ganglion Cyst 2'),(10907,4310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:35:\"2020/12/Michael-Ganglion-Cyst-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Michael-Ganglion-Cyst-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10908,4311,'_wp_attached_file','2020/12/Keith-Shoulder-2.jpg'),(10909,4311,'_wp_attachment_image_alt','Keith Shoulder 2'),(10910,4311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:28:\"2020/12/Keith-Shoulder-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Keith-Shoulder-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10911,1496,'_wp_page_template','default'),(10913,1496,'_yoast_wpseo_focuskw','Protein Foods'),(10914,1496,'_yoast_wpseo_metadesc','Whether you are a meat eater or not, a healthy eating pattern will include a variety of high-quality protein foods.'),(10915,1496,'_yoast_wpseo_linkdex','73'),(10916,1496,'_yoast_wpseo_content_score','60'),(10917,1496,'_wp_old_slug','healthy-breakfast'),(10920,1496,'_wp_old_slug','protein-foods-and-your-health'),(10923,4349,'iwp_log_type','core'),(10924,4349,'iwp_log_action','update'),(10925,4349,'iwp_log_activities_type','direct'),(10926,4349,'iwp_log_actions','core-updated'),(10927,4349,'iwp_log_details','a:2:{s:11:\"old_version\";s:5:\"5.5.3\";s:15:\"updated_version\";s:3:\"5.6\";}'),(10928,4350,'iwp_log_type','plugins'),(10929,4350,'iwp_log_action','update'),(10930,4350,'iwp_log_activities_type','direct'),(10931,4350,'iwp_log_actions','plugins-updated'),(10932,4350,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"15.4\";s:15:\"updated_version\";s:4:\"15.5\";}'),(10933,4351,'iwp_log_type','plugins'),(10934,4351,'iwp_log_action','update'),(10935,4351,'iwp_log_activities_type','direct'),(10936,4351,'iwp_log_actions','plugins-updated'),(10937,4351,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:7:\"3.7.6.1\";s:15:\"updated_version\";s:7:\"3.8.0.1\";}'),(10938,1494,'_wp_page_template','default'),(10940,1494,'_yoast_wpseo_content_score','30'),(10942,1494,'_yoast_wpseo_focuskw','quality supplements'),(10943,1494,'_yoast_wpseo_metadesc','Not all supplements are created equally. Taking quality supplements for optimal health during the COVID-19 pandemic is especially important!'),(10944,1494,'_yoast_wpseo_linkdex','78'),(10945,1494,'_wp_old_slug','is-it-a-good-supplement'),(10947,4356,'_wp_attached_file','2019/06/Quality-Supplements.png'),(10948,4356,'_wp_attachment_image_alt','Quality Supplements'),(10949,4356,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2019/06/Quality-Supplements.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Quality-Supplements-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Quality-Supplements-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Quality-Supplements-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10953,1535,'_wp_page_template','default'),(10955,1535,'_yoast_wpseo_content_score','90'),(10957,1535,'_yoast_wpseo_focuskw','Are MRI\'s replacing the Physical Exam?'),(10958,1535,'_yoast_wpseo_title','%%title%% %%page%% %%sep%% %%sitename%% %'),(10959,1535,'_yoast_wpseo_metadesc','Are MRI\'s replacing the physical exam and dictating your treatment? Physical exam and history should be the priority when diagnosing.'),(10960,1535,'_yoast_wpseo_linkdex','76'),(10961,1535,'_wp_old_slug','october-2013-townsend-article'),(10962,1537,'_wp_page_template','default'),(10964,1537,'_yoast_wpseo_focuskw','Rotator Cuff Shoulder Injuries'),(10965,1537,'_yoast_wpseo_metadesc','Rotator Cuff Shoulder Injuries can regenerate with Regenerative Orthopedics & repair can be achieved naturally without the need for surgery.'),(10966,1537,'_yoast_wpseo_linkdex','74'),(10967,1537,'_yoast_wpseo_content_score','90'),(10968,1537,'_wp_old_slug','august-september-2013-townsend-article'),(10976,4372,'_wp_attached_file','2019/06/townsend-article-july-2013-2-1.gif'),(10977,4372,'_wp_attachment_image_alt','Townsend Article July 2013 2'),(10978,4372,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1249;s:4:\"file\";s:42:\"2019/06/townsend-article-july-2013-2-1.gif\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"townsend-article-july-2013-2-1-382x500.gif\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"townsend-article-july-2013-2-1-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"townsend-article-july-2013-2-1-768x1004.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10979,4373,'_wp_attached_file','2019/06/townsend-article-july-2013-2-2.gif'),(10980,4373,'_wp_attachment_image_alt','Townsend Article July 2013 2'),(10981,4373,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:955;s:6:\"height\";i:1249;s:4:\"file\";s:42:\"2019/06/townsend-article-july-2013-2-2.gif\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"townsend-article-july-2013-2-2-382x500.gif\";s:5:\"width\";i:382;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"townsend-article-july-2013-2-2-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"townsend-article-july-2013-2-2-768x1004.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1004;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10982,1539,'_wp_page_template','default'),(10984,1539,'_yoast_wpseo_focuskw','Knee Pain and Dysfunction'),(10985,1539,'_yoast_wpseo_metadesc','Tired of knee pain? Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are excellent non-surgical solutions.'),(10986,1539,'_yoast_wpseo_linkdex','74'),(10987,1539,'_yoast_wpseo_content_score','90'),(10988,1539,'_wp_old_slug','july-2013-townsend-article'),(10990,1541,'_wp_page_template','default'),(10992,1541,'_yoast_wpseo_focuskw','How to Avoid Joint and Spine Surgery'),(10993,1541,'_yoast_wpseo_metadesc','Regenerative Orthopedics help you to avoid joint and spine surgery and to live pain free without the need for invasive surgery.'),(10994,1541,'_yoast_wpseo_linkdex','78'),(10995,1541,'_yoast_wpseo_content_score','90'),(10996,1541,'_wp_old_slug','june-2013-townsend-article'),(10997,1506,'_wp_page_template','default'),(10999,1506,'_wp_old_slug','american-heart-association-soft-drinks-diet-or-regular-increase-risk-for-heart-disease'),(11001,1506,'_yoast_wpseo_focuskw','Soft Drinks Increase Risk for Disease'),(11002,1506,'_yoast_wpseo_metadesc','Both Diet and Regular Soft Drinks Increase Risk for Disease and have been implicated for decades in cardiometabolic diseases.'),(11003,1506,'_yoast_wpseo_linkdex','73'),(11004,1506,'_yoast_wpseo_content_score','30'),(11007,1473,'_yoast_wpseo_focuskw','A Wonderful Ending to An Almost Disastrous Event'),(11008,1473,'_yoast_wpseo_metadesc','A Wonderful Ending to a Most Disastrous Event is an interesting article in the Santa Monica Daily Press by Peter A. Fields, MD, DC.'),(11009,1473,'_yoast_wpseo_linkdex','74'),(11012,4387,'iwp_log_type','plugins'),(11013,4387,'iwp_log_action','update'),(11014,4387,'iwp_log_activities_type','direct'),(11015,4387,'iwp_log_actions','plugins-updated'),(11016,4387,'iwp_log_details','a:4:{s:4:\"name\";s:13:\"Gravity Forms\";s:4:\"slug\";s:29:\"gravityforms/gravityforms.php\";s:11:\"old_version\";s:6:\"2.4.21\";s:15:\"updated_version\";s:6:\"2.4.22\";}'),(11017,4388,'iwp_log_type','plugins'),(11018,4388,'iwp_log_action','update'),(11019,4388,'iwp_log_activities_type','direct'),(11020,4388,'iwp_log_actions','plugins-updated'),(11021,4388,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:7:\"3.8.0.1\";s:15:\"updated_version\";s:5:\"3.8.2\";}'),(11022,4389,'iwp_log_type','plugins'),(11023,4389,'iwp_log_action','update'),(11024,4389,'iwp_log_activities_type','direct'),(11025,4389,'iwp_log_actions','plugins-updated'),(11026,4389,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"15.5\";s:15:\"updated_version\";s:6:\"15.6.2\";}'),(11027,1504,'_wp_page_template','default'),(11029,1504,'_yoast_wpseo_focuskw','Dr. Fields Interviewed on KCAL/CBS about Prolotherapy'),(11030,1504,'_yoast_wpseo_metadesc','In this video, Dr. Fields is Interviewed on KCAL/CBS About Prolotherapy, an effective non-surgical technique to repair joint injuries.'),(11031,1504,'_yoast_wpseo_linkdex','73'),(11032,1504,'_yoast_wpseo_content_score','60'),(11033,1504,'_yoast_wpseo_estimated-reading-time-minutes','2'),(11034,4393,'_wp_attached_file','2021/01/Prolotherapy-copy-2.png'),(11035,4393,'_wp_attachment_image_alt','Prolotherapy Copy 2'),(11036,4393,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2021/01/Prolotherapy-copy-2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Prolotherapy-copy-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Prolotherapy-copy-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Prolotherapy-copy-2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11038,1504,'_yoast_wpseo_title','Dr. Fields Interviewed on KCAL/CBS about Prolotherapy'),(11040,1502,'_wp_page_template','default'),(11042,1502,'_yoast_wpseo_content_score','60'),(11043,1502,'_yoast_wpseo_estimated-reading-time-minutes','2'),(11045,1502,'_wp_old_slug','dr-fields-interviewed-on-kcal-cbs-about-dangers-of-anti-inflammatory-medicines'),(11047,1502,'_yoast_wpseo_focuskw','Dr. Fields Talks About the Dangers of Anti-Inflammatory Medicines'),(11048,1502,'_yoast_wpseo_title','Dr. Fields Talks About the Dangers of Anti-Inflammatory Medicines'),(11049,1502,'_yoast_wpseo_metadesc','Check out this Interview with expert lecturer Peter A. Fields, MD, DC on KCAL/CBS About the Dangers of Anti-Inflammatory Medicines.'),(11050,1502,'_yoast_wpseo_linkdex','78'),(11051,1502,'_wp_old_slug','the-dangers-of-anti-inflammatory-medicines'),(11053,1475,'_wp_page_template','default'),(11055,1475,'_yoast_wpseo_focuskw','Needles Not Knives'),(11056,1475,'_yoast_wpseo_title','Needles, Not Knives, to Treat Sports Injuries and Degeneration'),(11057,1475,'_yoast_wpseo_metadesc','Needles, Not Knives is an article by Nancy Deville explaining her path of maintaining her athletics with the help of Prolotherapy.'),(11058,1475,'_yoast_wpseo_linkdex','73'),(11059,1475,'_yoast_wpseo_content_score','30'),(11060,1475,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11061,4403,'_wp_attached_file','2019/06/Nancy-Deville-with-Dr.-Peter-Fields.png'),(11062,4403,'_wp_attachment_image_alt','Needles Not Knives'),(11063,4403,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:620;s:6:\"height\";i:525;s:4:\"file\";s:47:\"2019/06/Nancy-Deville-with-Dr.-Peter-Fields.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Nancy-Deville-with-Dr.-Peter-Fields-500x423.png\";s:5:\"width\";i:500;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Nancy-Deville-with-Dr.-Peter-Fields-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11066,1492,'_oembed_b097dc89c10d2afd3bab5548d482a044','{{unknown}}'),(11067,1492,'_wp_page_template','default'),(11069,1492,'_wp_old_slug','vitamin-d-deficiency-linked-to-strokes-heart-disease'),(11072,1492,'_yoast_wpseo_focuskw','Benefits of Vitamin Supplementation in COVID-19'),(11073,1492,'_yoast_wpseo_title','The benefits of Vitamin Supplementation in COVID-19'),(11074,1492,'_yoast_wpseo_metadesc','Let\'s take a look at what some of the research is saying about the benefits of vitamin supplementation in COVID-19.'),(11075,1492,'_yoast_wpseo_linkdex','78'),(11076,1492,'_yoast_wpseo_content_score','30'),(11077,1492,'_yoast_wpseo_estimated-reading-time-minutes','5'),(11079,4410,'_wp_attached_file','2019/06/Antioxidants.png'),(11080,4410,'_wp_attachment_image_alt','Antioxidants'),(11081,4410,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:24:\"2019/06/Antioxidants.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Antioxidants-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Antioxidants-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Antioxidants-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11084,2109,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11085,29,'_yoast_wpseo_estimated-reading-time-minutes',''),(11087,202,'_yoast_wpseo_content_score','30'),(11088,202,'_yoast_wpseo_estimated-reading-time-minutes',''),(11091,2536,'_yoast_wpseo_estimated-reading-time-minutes','3'),(11093,469,'_yoast_wpseo_estimated-reading-time-minutes','5'),(11101,486,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11103,509,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11105,511,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11107,524,'_yoast_wpseo_estimated-reading-time-minutes',''),(11110,2665,'_yoast_wpseo_estimated-reading-time-minutes',''),(11112,2760,'_yoast_wpseo_estimated-reading-time-minutes','6'),(11114,528,'_yoast_wpseo_estimated-reading-time-minutes',''),(11117,533,'_yoast_wpseo_estimated-reading-time-minutes','5'),(11119,536,'_yoast_wpseo_estimated-reading-time-minutes','3'),(11121,545,'_yoast_wpseo_estimated-reading-time-minutes','3'),(11123,567,'_yoast_wpseo_estimated-reading-time-minutes','3'),(11125,582,'_yoast_wpseo_estimated-reading-time-minutes','2'),(11127,595,'_yoast_wpseo_estimated-reading-time-minutes',''),(11129,615,'_yoast_wpseo_estimated-reading-time-minutes','2'),(11131,632,'_yoast_wpseo_estimated-reading-time-minutes','5'),(11132,4452,'iwp_log_type','plugins'),(11133,4452,'iwp_log_action','update'),(11134,4452,'iwp_log_activities_type','direct'),(11135,4452,'iwp_log_actions','plugins-updated'),(11136,4452,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:6:\"15.6.2\";s:15:\"updated_version\";s:4:\"15.7\";}'),(11137,4453,'iwp_log_type','plugins'),(11138,4453,'iwp_log_action','update'),(11139,4453,'iwp_log_activities_type','direct'),(11140,4453,'iwp_log_actions','plugins-updated'),(11141,4453,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:5:\"3.8.2\";s:15:\"updated_version\";s:5:\"3.8.3\";}'),(11142,4454,'_wp_attached_file','2021/01/Palm-Tree-View-Preview.jpg'),(11143,4454,'_wp_attachment_image_alt','Palm Tree View Preview'),(11144,4454,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:397;s:4:\"file\";s:34:\"2021/01/Palm-Tree-View-Preview.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Palm-Tree-View-Preview-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Palm-Tree-View-Preview-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Palm-Tree-View-Preview-768x235.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11146,431,'_yoast_wpseo_estimated-reading-time-minutes','7'),(11149,414,'_yoast_wpseo_estimated-reading-time-minutes',''),(11151,382,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11154,395,'_yoast_wpseo_estimated-reading-time-minutes','5'),(11155,408,'_wp_page_template','default'),(11157,408,'_yoast_wpseo_content_score','90'),(11158,408,'_yoast_wpseo_estimated-reading-time-minutes',''),(11160,1459,'_yoast_wpseo_focuskw','Cortisone'),(11161,1459,'_yoast_wpseo_title','Cortisone - Is it Really Good for You?'),(11162,1459,'_yoast_wpseo_metadesc','Cortisone - Is it Really Good for You? Although cortisone injections reduce pain, they do so at the cost of destroying tissue.'),(11163,1459,'_yoast_wpseo_linkdex','76'),(11164,1459,'_yoast_wpseo_content_score','90'),(11165,1459,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11168,1414,'_yoast_wpseo_focuskw','Exercise Injuries'),(11169,1414,'_yoast_wpseo_title','Injured While Exercising? Choose This Non-Surgical Alternative!'),(11170,1414,'_yoast_wpseo_metadesc','Prevent exercise injuries by easing into new exercise routines and gradually building up to heavier weights and more vigorous exercising.'),(11171,1414,'_yoast_wpseo_linkdex','72'),(11172,1414,'_yoast_wpseo_estimated-reading-time-minutes','5'),(11173,1414,'_wp_old_slug','repairing-sports-injuries-with-regenerative-orthopedics'),(11174,4473,'_wp_attached_file','2019/06/Exercising-at-home-1-copy.png'),(11175,4473,'_wp_attachment_image_alt','Exercising At Home (1) Copy'),(11176,4473,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:37:\"2019/06/Exercising-at-home-1-copy.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Exercising-at-home-1-copy-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Exercising-at-home-1-copy-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Exercising-at-home-1-copy-768x960.png\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11181,1414,'_wp_old_slug','injured-while-exercising'),(11183,1682,'_yoast_wpseo_focuskw','Eliminate Joint Pain Without Surgery'),(11184,1682,'_yoast_wpseo_title','How Prolotherapy Can Eliminate Joint Pain Without Surgery'),(11185,1682,'_yoast_wpseo_metadesc','You\'ve tried all kinds of treatments to eliminate your joint pain without surgery, but still have pain. Non-surgical Prolotherapy can help!'),(11186,1682,'_yoast_wpseo_linkdex','76'),(11187,1682,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11188,4483,'_wp_attached_file','2019/06/rotator-cuff-problem.png'),(11189,4483,'_wp_attachment_image_alt','Rotator Cuff Injuries'),(11190,4483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:32:\"2019/06/rotator-cuff-problem.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"rotator-cuff-problem-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"rotator-cuff-problem-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"rotator-cuff-problem-768x960.png\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11192,1457,'_yoast_wpseo_focuskw','Rotator cuff injuries'),(11193,1457,'_yoast_wpseo_title','Rotator Cuff Injuries: Tears, Impingement, and Tendonitis'),(11194,1457,'_yoast_wpseo_metadesc','Rotator cuff injuries are so common that they affect about a quarter of the population over 50 years of age. Find a non-surgical solution!'),(11195,1457,'_yoast_wpseo_linkdex','79'),(11196,1457,'_yoast_wpseo_content_score','90'),(11197,1457,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11198,1457,'_wp_old_slug','prolotherapy-for-shoulder'),(11201,4487,'iwp_log_type','plugins'),(11202,4487,'iwp_log_action','update'),(11203,4487,'iwp_log_activities_type','direct'),(11204,4487,'iwp_log_actions','plugins-updated'),(11205,4487,'iwp_log_details','a:4:{s:4:\"name\";s:12:\"WP Mail SMTP\";s:4:\"slug\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"old_version\";s:5:\"2.5.1\";s:15:\"updated_version\";s:5:\"2.6.0\";}'),(11206,4488,'iwp_log_type','plugins'),(11207,4488,'iwp_log_action','update'),(11208,4488,'iwp_log_activities_type','direct'),(11209,4488,'iwp_log_actions','plugins-updated'),(11210,4488,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"15.7\";s:15:\"updated_version\";s:4:\"15.8\";}'),(11211,4489,'iwp_log_type','plugins'),(11212,4489,'iwp_log_action','update'),(11213,4489,'iwp_log_activities_type','direct'),(11214,4489,'iwp_log_actions','plugins-updated'),(11215,4489,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:5:\"3.8.3\";s:15:\"updated_version\";s:5:\"3.8.4\";}'),(11216,4490,'_wp_attached_file','2019/06/BACK-pain.jpg'),(11217,4490,'_wp_attachment_image_alt','Back Pain'),(11218,4490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:21:\"2019/06/BACK-pain.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"BACK-pain-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"BACK-pain-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"BACK-pain-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11219,4494,'_wp_attached_file','2021/02/carecredit_button_applynow_280x100_a_v1.png'),(11220,4494,'_wp_attachment_image_alt','Carecredit Button Applynow 280x100 A V1'),(11221,4494,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280;s:6:\"height\";i:100;s:4:\"file\";s:51:\"2021/02/carecredit_button_applynow_280x100_a_v1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"carecredit_button_applynow_280x100_a_v1-200x100.png\";s:5:\"width\";i:200;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11222,4494,'_edit_lock','1613084107:11'),(11223,4494,'_edit_last','11'),(11224,1410,'_wp_page_template','default'),(11226,1410,'_yoast_wpseo_focuskw','Unrelenting Back Pain'),(11227,1410,'_yoast_wpseo_title','Unrelenting Back Pain Repaired with Regenerative Orthopedics'),(11228,1410,'_yoast_wpseo_metadesc','For those with unrelenting back pain, we strongly recommend Regenerative Orthopedics, because it\'s helpful for so many back pain conditions.'),(11229,1410,'_yoast_wpseo_linkdex','78'),(11230,1410,'_yoast_wpseo_content_score','60'),(11231,1410,'_yoast_wpseo_estimated-reading-time-minutes','6'),(11232,4498,'_wp_attached_file','2021/02/Palm-Tree-Sky-BG.jpg'),(11233,4498,'_wp_attachment_image_alt','Palm Tree Sky Bg'),(11234,4498,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2508;s:6:\"height\";i:766;s:4:\"file\";s:28:\"2021/02/Palm-Tree-Sky-BG.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Palm-Tree-Sky-BG-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Palm-Tree-Sky-BG-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Palm-Tree-Sky-BG-768x235.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"Palm-Tree-Sky-BG-1536x469.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"Palm-Tree-Sky-BG-2048x626.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:626;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11236,2014,'_yoast_wpseo_estimated-reading-time-minutes','3'),(11239,1454,'_yoast_wpseo_focuskw','Dextrose Prolotherapy'),(11240,1454,'_yoast_wpseo_title','Dextrose Prolotherapy: Is this non-surgical treatment option for you?'),(11241,1454,'_yoast_wpseo_metadesc','Dextrose Prolotherapy is a natural non-surgical method of assisting the body to heal injured joints, ligaments and tendons. Is it for you?'),(11242,1454,'_yoast_wpseo_linkdex','78'),(11243,1454,'_yoast_wpseo_content_score','60'),(11244,1454,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11246,1454,'_wp_old_slug','prolotherapy-is-it-for-you'),(11247,4513,'_wp_attached_file','2019/06/Dextrose-Prolotherapy-1-copy.png'),(11248,4513,'_wp_attachment_image_alt','Dextrose Prolotherapy'),(11249,4513,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:40:\"2019/06/Dextrose-Prolotherapy-1-copy.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Dextrose-Prolotherapy-1-copy-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Dextrose-Prolotherapy-1-copy-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Dextrose-Prolotherapy-1-copy-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11252,4516,'iwp_log_type','plugins'),(11253,4516,'iwp_log_action','update'),(11254,4516,'iwp_log_activities_type','direct'),(11255,4516,'iwp_log_actions','plugins-updated'),(11256,4516,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:5:\"3.8.4\";s:15:\"updated_version\";s:5:\"3.8.5\";}'),(11258,1406,'_yoast_wpseo_focuskw','Joint Replacement Alternative'),(11259,1406,'_yoast_wpseo_title','Ever Wonder If There Is A Joint Replacement Alternative?'),(11260,1406,'_yoast_wpseo_metadesc','Are you experiencing joint pain and wondering about your options...even a joint replacement alternative? This article discusses your options.'),(11261,1406,'_yoast_wpseo_linkdex','75'),(11262,1406,'_yoast_wpseo_estimated-reading-time-minutes','5'),(11263,1406,'_wp_old_slug','avoid-joint-replacement'),(11264,4520,'_wp_attached_file','2019/06/knee.-avoid-replacement2-1.png'),(11265,4520,'_wp_attachment_image_alt','Knee. Avoid Replacement2'),(11266,4520,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:38:\"2019/06/knee.-avoid-replacement2-1.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"knee.-avoid-replacement2-1-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"knee.-avoid-replacement2-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"knee.-avoid-replacement2-1-768x960.png\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11268,1412,'_wp_page_template','default'),(11270,1412,'_yoast_wpseo_focuskw','Painful Knees'),(11271,1412,'_yoast_wpseo_title','Relief From Painful Knees with Regenerative Orthopedics'),(11272,1412,'_yoast_wpseo_metadesc','If painful knees have you side-lined, don’t put up with it! We can help get you back to what you love, without the nuisance of painful knees!'),(11273,1412,'_yoast_wpseo_linkdex','73'),(11274,1412,'_yoast_wpseo_content_score','90'),(11275,1412,'_yoast_wpseo_estimated-reading-time-minutes','6'),(11276,1412,'_wp_old_slug','do-your-knees-hurt'),(11279,4526,'iwp_log_type','plugins'),(11280,4526,'iwp_log_action','update'),(11281,4526,'iwp_log_activities_type','direct'),(11282,4526,'iwp_log_actions','plugins-updated'),(11283,4526,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"15.8\";s:15:\"updated_version\";s:4:\"15.9\";}'),(11284,4527,'iwp_log_type','plugins'),(11285,4527,'iwp_log_action','update'),(11286,4527,'iwp_log_activities_type','direct'),(11287,4527,'iwp_log_actions','plugins-updated'),(11288,4527,'iwp_log_details','a:4:{s:4:\"name\";s:11:\"WP-PageNavi\";s:4:\"slug\";s:27:\"wp-pagenavi/wp-pagenavi.php\";s:11:\"old_version\";s:6:\"2.93.3\";s:15:\"updated_version\";s:6:\"2.93.4\";}'),(11289,1408,'_wp_page_template','default'),(11291,1408,'_yoast_wpseo_focuskw','Stop Pain from Rotator Cuff Injuries'),(11292,1408,'_yoast_wpseo_title','Stop Pain from Rotator Cuff Injuries and Other Shoulder Injuries'),(11293,1408,'_yoast_wpseo_metadesc','Stop Pain from Rotator Cuff Injuries with Non-Surgical Regenerative Orthopedics, such as Stem Cell Therapy, Prolotherapy, and PRP.'),(11294,1408,'_yoast_wpseo_linkdex','76'),(11295,1408,'_yoast_wpseo_content_score','60'),(11296,1408,'_yoast_wpseo_estimated-reading-time-minutes','6'),(11297,1408,'_wp_old_slug','stop-shoulder-pain-from-rotator-cuff-and-other-shoulder-injuries'),(11298,4530,'_wp_attached_file','2019/06/shoulder-copy-2.jpg'),(11299,4530,'_wp_attachment_image_alt','Stop Pain from Rotator Cuff Injuries'),(11300,4530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:27:\"2019/06/shoulder-copy-2.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"shoulder-copy-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"shoulder-copy-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"shoulder-copy-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11303,3301,'_yoast_wpseo_title','Cervical Instability: Neck Pain That Changes Your Life'),(11304,3301,'_yoast_wpseo_estimated-reading-time-minutes','6'),(11305,3301,'_wp_old_slug','an-answer-for-life-altering-neck-pain-and-instability'),(11309,1452,'_yoast_wpseo_focuskw','Staying Out of the Hospital'),(11310,1452,'_yoast_wpseo_title','Staying Out of the Hospital, Avoiding Surgery with Regenerative Orthopedics'),(11311,1452,'_yoast_wpseo_metadesc','If you have pain but are trying to stay out of the hospital and avoiding surgery, Regenerative Orthopedics is your non-surgical alternative.'),(11312,1452,'_yoast_wpseo_linkdex','75'),(11313,1452,'_yoast_wpseo_content_score','30'),(11314,1452,'_yoast_wpseo_estimated-reading-time-minutes','7'),(11315,1452,'_wp_old_slug','chronic-pain-or-injuries-prolotherapy-might-be-the-answer'),(11317,4538,'_wp_attached_file','2019/06/Avoid-the-hospital-1.png'),(11318,4538,'_wp_attachment_image_alt','Avoid The Hospital (1)'),(11319,4538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1077;s:6:\"height\";i:1004;s:4:\"file\";s:32:\"2019/06/Avoid-the-hospital-1.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Avoid-the-hospital-1-500x466.png\";s:5:\"width\";i:500;s:6:\"height\";i:466;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Avoid-the-hospital-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Avoid-the-hospital-1-768x716.png\";s:5:\"width\";i:768;s:6:\"height\";i:716;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11325,213,'_oembed_fa1cc093f8efd01072e227963ac8c50f','<blockquote class=\"wp-embedded-content\" data-secret=\"ijWkmYTngF\"><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen: Why We&#8217;re Different</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Stem Cell Therapy at OrthoRegen: Why We&#8217;re Different&#8221; &#8212; Peter A. Fields, MD, DC\" src=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/embed/#?secret=ijWkmYTngF\" data-secret=\"ijWkmYTngF\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(11326,213,'_oembed_time_fa1cc093f8efd01072e227963ac8c50f','1615315232'),(11327,213,'_yoast_wpseo_content_score','90'),(11328,213,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11329,213,'_yoast_wpseo_focuskw','OrthoRegen®'),(11330,213,'_yoast_wpseo_linkdex','76'),(11332,213,'_yoast_wpseo_metadesc','At OrthoRegen®, we want to help you achieve your goals of optimal health and sustained wellness using the most effective, least invasive path.'),(11333,4549,'_wp_attached_file','2019/06/Why-Choose-OrthoRegen.png'),(11334,4549,'_wp_attachment_image_alt','Why Choose Orthoregen: Our Philosphy'),(11335,4549,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:33:\"2019/06/Why-Choose-OrthoRegen.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Why-Choose-OrthoRegen-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Why-Choose-OrthoRegen-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Why-Choose-OrthoRegen-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11336,4550,'_wp_attached_file','2019/06/Why-Choose-OrthoRegen-copy.png'),(11337,4550,'_wp_attachment_image_alt','Why Choose Orthoregen Copy'),(11338,4550,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:38:\"2019/06/Why-Choose-OrthoRegen-copy.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Why-Choose-OrthoRegen-copy-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Why-Choose-OrthoRegen-copy-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"Why-Choose-OrthoRegen-copy-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11345,2109,'_yoast_wpseo_focuskw','Regenerative Orthopedics'),(11346,2109,'_yoast_wpseo_title','Regenerative Orthopedics - Dr. Peter A. Fields MD, DC'),(11347,2109,'_yoast_wpseo_metadesc','Dr. Peter A. Fields is uniquely degreed as an MD and chiropractor, exclusively practicing Regenerative Orthopedics with no hospitalization.'),(11348,2109,'_yoast_wpseo_linkdex','71'),(11349,4556,'_menu_item_type','post_type'),(11350,4556,'_menu_item_menu_item_parent','36'),(11351,4556,'_menu_item_object_id','213'),(11352,4556,'_menu_item_object','post'),(11353,4556,'_menu_item_target',''),(11354,4556,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(11355,4556,'_menu_item_xfn',''),(11356,4556,'_menu_item_url',''),(11358,4557,'iwp_log_type','plugins'),(11359,4557,'iwp_log_action','update'),(11360,4557,'iwp_log_activities_type','direct'),(11361,4557,'iwp_log_actions','plugins-updated'),(11362,4557,'iwp_log_details','a:4:{s:4:\"name\";s:15:\"BackUpWordPress\";s:4:\"slug\";s:35:\"backupwordpress/backupwordpress.php\";s:11:\"old_version\";s:4:\"3.10\";s:15:\"updated_version\";s:4:\"3.11\";}'),(11363,4558,'iwp_log_type','plugins'),(11364,4558,'iwp_log_action','update'),(11365,4558,'iwp_log_activities_type','direct'),(11366,4558,'iwp_log_actions','plugins-updated'),(11367,4558,'iwp_log_details','a:4:{s:4:\"name\";s:13:\"Gravity Forms\";s:4:\"slug\";s:29:\"gravityforms/gravityforms.php\";s:11:\"old_version\";s:6:\"2.4.22\";s:15:\"updated_version\";s:6:\"2.4.23\";}'),(11368,4559,'iwp_log_type','plugins'),(11369,4559,'iwp_log_action','update'),(11370,4559,'iwp_log_activities_type','direct'),(11371,4559,'iwp_log_actions','plugins-updated'),(11372,4559,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:5:\"3.8.5\";s:15:\"updated_version\";s:5:\"3.8.6\";}'),(11373,4560,'iwp_log_type','plugins'),(11374,4560,'iwp_log_action','update'),(11375,4560,'iwp_log_activities_type','direct'),(11376,4560,'iwp_log_actions','plugins-updated'),(11377,4560,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"15.9\";s:15:\"updated_version\";s:6:\"15.9.1\";}'),(11389,4571,'_wp_attached_file','2019/06/Runners-Knee.jpg'),(11390,4571,'_wp_attachment_image_alt','Runner\'s Knee'),(11391,4571,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:24:\"2019/06/Runners-Knee.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Runners-Knee-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Runners-Knee-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Runners-Knee-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11393,1401,'_yoast_wpseo_focuskw','Runner\'s Knee Pain'),(11394,1401,'_yoast_wpseo_title','Runner\'s Knee Pain: Get Quicker Relief Non-Surgically with this treatment'),(11395,1401,'_yoast_wpseo_metadesc','Experiencing Runner\'s Knee Pain? Get Quicker Relief Non-Surgically with Regenerative Orthopedics and get back to what you love faster!'),(11396,1401,'_yoast_wpseo_linkdex','73'),(11397,1401,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11398,1401,'_wp_old_slug','runners-knee-pain'),(11401,1401,'_wp_old_slug','runners-knee-pain-relief'),(11407,4578,'_wp_attached_file','2019/06/Spinning-class.png'),(11408,4578,'_wp_attachment_image_alt','Exercise Is Good for You'),(11409,4578,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:26:\"2019/06/Spinning-class.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Spinning-class-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Spinning-class-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Spinning-class-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11411,1518,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11413,4581,'_wp_attached_file','2019/06/arthritis-steals.png'),(11414,4581,'_wp_attachment_image_alt','Relieve Arthritis Pain'),(11415,4581,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:28:\"2019/06/arthritis-steals.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"arthritis-steals-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"arthritis-steals-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"arthritis-steals-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11416,1399,'_wp_page_template','default'),(11418,1399,'_yoast_wpseo_focuskw','Help for Arthritis Pain'),(11419,1399,'_yoast_wpseo_title','Is There Help for Arthritis Pain without having to have surgery?'),(11420,1399,'_yoast_wpseo_metadesc','The Gold Standard in Stem Cell Therapy is an amazing help for arthritis pain, slowing the progression & promoting regeneration of cartilage.'),(11421,1399,'_yoast_wpseo_linkdex','78'),(11422,1399,'_yoast_wpseo_content_score','90'),(11423,1399,'_yoast_wpseo_estimated-reading-time-minutes','6'),(11424,1399,'_wp_old_slug','is-there-help-for-arthritis'),(11428,4585,'iwp_log_type','core'),(11429,4585,'iwp_log_action','update'),(11430,4585,'iwp_log_activities_type','direct'),(11431,4585,'iwp_log_actions','core-updated'),(11432,4585,'iwp_log_details','a:2:{s:11:\"old_version\";s:3:\"5.6\";s:15:\"updated_version\";s:3:\"5.7\";}'),(11433,4586,'iwp_log_type','plugins'),(11434,4586,'iwp_log_action','update'),(11435,4586,'iwp_log_activities_type','direct'),(11436,4586,'iwp_log_actions','plugins-updated'),(11437,4586,'iwp_log_details','a:4:{s:4:\"name\";s:14:\"Duplicate Page\";s:4:\"slug\";s:32:\"duplicate-page/duplicatepage.php\";s:11:\"old_version\";s:3:\"4.3\";s:15:\"updated_version\";s:3:\"4.4\";}'),(11438,4587,'iwp_log_type','plugins'),(11439,4587,'iwp_log_action','update'),(11440,4587,'iwp_log_activities_type','direct'),(11441,4587,'iwp_log_actions','plugins-updated'),(11442,4587,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:5:\"3.8.6\";s:15:\"updated_version\";s:5:\"3.8.7\";}'),(11443,4588,'iwp_log_type','plugins'),(11444,4588,'iwp_log_action','update'),(11445,4588,'iwp_log_activities_type','direct'),(11446,4588,'iwp_log_actions','plugins-updated'),(11447,4588,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:6:\"15.9.1\";s:15:\"updated_version\";s:6:\"16.0.2\";}'),(11449,4594,'iwp_log_type','plugins'),(11450,4594,'iwp_log_action','update'),(11451,4594,'iwp_log_activities_type','direct'),(11452,4594,'iwp_log_actions','plugins-updated'),(11453,4594,'iwp_log_details','a:4:{s:4:\"name\";s:12:\"WP Mail SMTP\";s:4:\"slug\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"old_version\";s:5:\"2.6.0\";s:15:\"updated_version\";s:5:\"2.7.0\";}'),(11454,1395,'_wp_page_template','default'),(11456,1395,'_yoast_wpseo_content_score','60'),(11457,1395,'_yoast_wpseo_estimated-reading-time-minutes','5'),(11458,4597,'_wp_attached_file','2019/06/joint-pain.png'),(11459,4597,'_wp_attachment_image_alt','Joint Pain'),(11460,4597,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1351;s:4:\"file\";s:22:\"2019/06/joint-pain.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"joint-pain-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"joint-pain-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"joint-pain-768x961.png\";s:5:\"width\";i:768;s:6:\"height\";i:961;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11462,1395,'_yoast_wpseo_focuskw','joint pain'),(11463,1395,'_yoast_wpseo_title','What is behind joint pain?'),(11464,1395,'_yoast_wpseo_metadesc','Ligaments are one of the most common causes of musculoskeletal joint pain and are an integral part of the proper functioning of the joint.'),(11465,1395,'_yoast_wpseo_linkdex','75'),(11466,4600,'_wp_attached_file','2019/06/hip.jpg'),(11467,4600,'_wp_attachment_image_alt','Hip'),(11468,4600,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:15:\"2019/06/hip.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"hip-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"hip-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"hip-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11469,1403,'_wp_page_template','default'),(11471,1403,'_yoast_wpseo_focuskw','Hip Injury'),(11472,1403,'_yoast_wpseo_title','Is Hip Injury and Pain Getting in Your Way? Treat it non-surgically!'),(11473,1403,'_yoast_wpseo_metadesc','The hip is generally strong and stable. But with more and more required of them, cases of hip injury have increased. Find out more!'),(11474,1403,'_yoast_wpseo_linkdex','75'),(11475,1403,'_yoast_wpseo_content_score','30'),(11476,1403,'_yoast_wpseo_estimated-reading-time-minutes','5'),(11477,1403,'_wp_old_slug','do-you-have-a-hip-injury'),(11479,1403,'_wp_old_slug','is-a-hip-injury-and-pain-getting-in-your-way'),(11480,1389,'_wp_page_template','default'),(11482,1389,'_yoast_wpseo_focuskw','Failed Back Surgery Syndrome'),(11483,1389,'_yoast_wpseo_linkdex','75'),(11484,1389,'_yoast_wpseo_content_score','60'),(11485,1389,'_yoast_wpseo_estimated-reading-time-minutes','7'),(11486,4606,'_wp_attached_file','2019/06/failed-back-surgery.png'),(11487,4606,'_wp_attachment_image_alt','Failed Back Surgery'),(11488,4606,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2019/06/failed-back-surgery.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"failed-back-surgery-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"failed-back-surgery-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"failed-back-surgery-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11490,1389,'_yoast_wpseo_metadesc','Regenerative Orthopedics help you avoid Failed Back Surgery Syndrome by addressing the causes of back pain in a non-surgical manner.'),(11492,1393,'_wp_page_template','default'),(11494,1393,'_yoast_wpseo_focuskw','Neck Pain Relief'),(11495,1393,'_yoast_wpseo_linkdex','75'),(11496,1393,'_yoast_wpseo_content_score','60'),(11497,1393,'_yoast_wpseo_estimated-reading-time-minutes','5'),(11498,4614,'_wp_attached_file','2019/06/Cervivcal-Instability-copy-2.png'),(11499,4614,'_wp_attachment_image_alt','Cervical Instability Copy 2'),(11500,4614,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:40:\"2019/06/Cervivcal-Instability-copy-2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Cervivcal-Instability-copy-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Cervivcal-Instability-copy-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Cervivcal-Instability-copy-2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11502,1393,'_yoast_wpseo_metadesc','Get neck pain relief from Regenerative Orthopedics, an effective non-surgical treatment option to neck and cervical instability.'),(11503,1393,'_wp_old_slug','neck-pain-treatment-and-relief'),(11507,1393,'_yoast_wpseo_title','Neck Pain Relief from Cervical Instability with Regenerative Orthopedics'),(11508,4619,'iwp_log_type','plugins'),(11509,4619,'iwp_log_action','update'),(11510,4619,'iwp_log_activities_type','direct'),(11511,4619,'iwp_log_actions','plugins-updated'),(11512,4619,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:5:\"3.8.7\";s:15:\"updated_version\";s:5:\"3.8.8\";}'),(11513,4620,'iwp_log_type','plugins'),(11514,4620,'iwp_log_action','update'),(11515,4620,'iwp_log_activities_type','direct'),(11516,4620,'iwp_log_actions','plugins-updated'),(11517,4620,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:6:\"16.0.2\";s:15:\"updated_version\";s:6:\"16.1.1\";}'),(11518,4621,'iwp_log_type','plugins'),(11519,4621,'iwp_log_action','update'),(11520,4621,'iwp_log_activities_type','direct'),(11521,4621,'iwp_log_actions','plugins-updated'),(11522,4621,'iwp_log_details','a:4:{s:4:\"name\";s:13:\"Gravity Forms\";s:4:\"slug\";s:29:\"gravityforms/gravityforms.php\";s:11:\"old_version\";s:6:\"2.4.23\";s:15:\"updated_version\";s:6:\"2.4.24\";}'),(11523,1381,'_wp_page_template','default'),(11525,1381,'_yoast_wpseo_focuskw','Relief from Arthritis Pain'),(11526,1381,'_yoast_wpseo_linkdex','76'),(11527,1381,'_yoast_wpseo_content_score','60'),(11528,1381,'_yoast_wpseo_estimated-reading-time-minutes','6'),(11529,4625,'_wp_attached_file','2019/06/avoid-replacement.png'),(11530,4625,'_wp_attachment_image_alt','Avoid Replacement'),(11531,4625,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:29:\"2019/06/avoid-replacement.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"avoid-replacement-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"avoid-replacement-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"avoid-replacement-768x960.png\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11533,1381,'_yoast_wpseo_title','Relief from Arthritis Pain that Lasts with Regenerative Orthopedics'),(11534,1381,'_yoast_wpseo_metadesc','Looking for a reprieve from the pain and disability of arthritis? Get lasting relief from arthritis pain with Regenerative Orthopedics!'),(11535,1381,'_wp_old_slug','relieve-arthritis-pain'),(11542,4633,'_wp_attached_file','2019/06/ACL.png'),(11543,4633,'_wp_attachment_image_alt','ACL Tear'),(11544,4633,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1351;s:4:\"file\";s:15:\"2019/06/ACL.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ACL-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ACL-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"ACL-768x961.png\";s:5:\"width\";i:768;s:6:\"height\";i:961;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11546,1379,'_yoast_wpseo_focuskw','ACL Tears'),(11547,1379,'_yoast_wpseo_metadesc','Avoid unsatisfactory outcome of incomplete ACL tears and repair, and seek a consult with our Regenerative Orthopedics specialists.'),(11548,1379,'_yoast_wpseo_linkdex','75'),(11549,1379,'_yoast_wpseo_estimated-reading-time-minutes','5'),(11551,4637,'_wp_attached_file','2019/06/CalChiro-Sports-Symposium-2-copy-3.png'),(11552,4637,'_wp_attachment_image_alt','Calchiro Sports Symposium (2) Copy 3'),(11553,4637,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:314;s:4:\"file\";s:46:\"2019/06/CalChiro-Sports-Symposium-2-copy-3.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"CalChiro-Sports-Symposium-2-copy-3-500x262.png\";s:5:\"width\";i:500;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"CalChiro-Sports-Symposium-2-copy-3-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11555,1434,'_yoast_wpseo_focuskw','Regenerative Orthopedics Lecture'),(11556,1434,'_yoast_wpseo_metadesc','Join us Sunday, June 5th for a Regenerative Orthopedics Lecture with leading expert Peter A. Fields, MD, DC at 9AM Los Angeles time.'),(11557,1434,'_yoast_wpseo_linkdex','73'),(11558,1434,'_yoast_wpseo_estimated-reading-time-minutes','2'),(11559,1434,'_wp_old_slug','download-dr-fields-prolotherapy-lecture-today'),(11561,292,'_yoast_wpseo_focuskw','Stem Cell Doctor'),(11562,292,'_yoast_wpseo_metadesc','A Stem Cell Doctor like Peter A. Fields, MD, DC provides Regenerative Orthopedics solutions for painful joint conditions.'),(11563,292,'_yoast_wpseo_linkdex','78'),(11564,292,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11566,292,'_yoast_wpseo_title','Stem Cell Doctor in the Los Angeles Area- Peter A. Fields, MD, DC'),(11573,4653,'_wp_attached_file','2019/06/back-stop-the-cycle-.png'),(11574,4653,'_wp_attachment_image_alt','Back Stop The Cycle'),(11575,4653,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:32:\"2019/06/back-stop-the-cycle-.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"back-stop-the-cycle--500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"back-stop-the-cycle--200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"back-stop-the-cycle--768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11576,1376,'_wp_page_template','default'),(11578,1376,'_yoast_wpseo_focuskw','Low Back Pain Treatments'),(11579,1376,'_yoast_wpseo_linkdex','75'),(11580,1376,'_yoast_wpseo_content_score','90'),(11581,1376,'_yoast_wpseo_estimated-reading-time-minutes','7'),(11583,1376,'_yoast_wpseo_title','Low Back Pain Treatments and the Challenges at Finding Relief'),(11584,1376,'_yoast_wpseo_metadesc','Looking for low back pain treatments? Regenerative Orthopedics offers pain relief and healing and repair at the source of the pain.'),(11585,1376,'_wp_old_slug','low-back-pain-challenges-and-treatment'),(11587,1376,'_wp_old_slug','low-back-pain-treatment-and-the-challenges-at-finding-relief'),(11594,4664,'iwp_log_type','core'),(11595,4664,'iwp_log_action','update'),(11596,4664,'iwp_log_activities_type','direct'),(11597,4664,'iwp_log_actions','core-updated'),(11598,4664,'iwp_log_details','a:2:{s:11:\"old_version\";s:3:\"5.7\";s:15:\"updated_version\";s:5:\"5.7.1\";}'),(11599,4665,'iwp_log_type','plugins'),(11600,4665,'iwp_log_action','update'),(11601,4665,'iwp_log_activities_type','direct'),(11602,4665,'iwp_log_actions','plugins-updated'),(11603,4665,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:6:\"16.1.1\";s:15:\"updated_version\";s:4:\"16.2\";}'),(11605,2555,'_yoast_wpseo_estimated-reading-time-minutes','6'),(11611,4672,'_wp_attached_file','2019/06/knee-arthritis.jpg'),(11612,4672,'_wp_attachment_image_alt','Knee Arthritis'),(11613,4672,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:26:\"2019/06/knee-arthritis.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"knee-arthritis-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"knee-arthritis-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"knee-arthritis-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11614,1391,'_wp_page_template','default'),(11616,1391,'_yoast_wpseo_focuskw','Knee Arthritis'),(11617,1391,'_yoast_wpseo_linkdex','73'),(11618,1391,'_yoast_wpseo_content_score','90'),(11619,1391,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11621,1391,'_yoast_wpseo_metadesc','Regenerative Orthopedics give hope to people living with knee arthritis by providing pain relief, joint repair, and improved function.'),(11623,1391,'_yoast_wpseo_title','get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain'),(11625,92,'_yoast_wpseo_focuskw','First Ironman'),(11626,92,'_yoast_wpseo_linkdex','75'),(11627,92,'_yoast_wpseo_content_score','90'),(11628,92,'_yoast_wpseo_estimated-reading-time-minutes','7'),(11630,92,'_yoast_wpseo_metadesc','I crossed the finish line of my first Ironman and something I hadn\'t heard before: \"Peter Fields, you are an Ironman!\"'),(11631,92,'_wp_old_slug','race-report-1st-ironman'),(11633,120,'_yoast_wpseo_focuskw','Second Ironman'),(11634,120,'_yoast_wpseo_linkdex','73'),(11635,120,'_yoast_wpseo_content_score','90'),(11636,120,'_yoast_wpseo_estimated-reading-time-minutes','9'),(11638,120,'_yoast_wpseo_metadesc','Read about my second Ironman race in Cozumel, Mexico where, although difficult, was still able to achieve my goal of coming in under 14 hours.'),(11639,120,'_wp_old_slug','race-report-2nd-ironman'),(11643,131,'_yoast_wpseo_focuskw','Third Ironman'),(11644,131,'_yoast_wpseo_linkdex','71'),(11645,131,'_yoast_wpseo_content_score','90'),(11646,131,'_yoast_wpseo_estimated-reading-time-minutes','10'),(11649,131,'_yoast_wpseo_metadesc','Read the story of my third Ironman which took place in Canada. Although I didn\'t beat my goal, nonetheless it was a very satisfying outcome.'),(11650,131,'_wp_old_slug','race-report-3rd-ironman'),(11653,131,'_yoast_wpseo_title','Achieving Higher Goals at My Third Ironman in Canada'),(11664,153,'_yoast_wpseo_focuskw','Ironman #4'),(11665,153,'_yoast_wpseo_linkdex','77'),(11666,153,'_yoast_wpseo_estimated-reading-time-minutes','17'),(11667,153,'_wp_old_slug','race-report-4th-ironman'),(11670,153,'_yoast_wpseo_metadesc','Ironman #4 meant at time of 13 hours, 32 minutes, and 36 seconds...a new personal best for me by 18 minutes. Interested? Read more here.'),(11692,582,'_yoast_wpseo_focuskw','Elbow Injury Treatment'),(11693,582,'_yoast_wpseo_metadesc','Our comprehensive Regenerative Orthopedic elbow injury treatment offers our patients a non-surgical solution for their elbow pain.'),(11694,582,'_yoast_wpseo_linkdex','78'),(11696,4729,'_wp_attached_file','2021/06/knee-arthritis.jpg'),(11697,4729,'_wp_attachment_image_alt','Knee Arthritis'),(11698,4729,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:26:\"2021/06/knee-arthritis.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"knee-arthritis-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"knee-arthritis-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"knee-arthritis-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11699,2347,'_yoast_wpseo_focuskw','Knee Arthritis Treatment'),(11700,2347,'_yoast_wpseo_metadesc','Regenerative Orthopedics is an effective knee arthritis treatment. Plus, it works for knee injuries, and even an articular cartilage defects.'),(11701,2347,'_yoast_wpseo_linkdex','78'),(11702,2347,'_yoast_wpseo_content_score','90'),(11703,2347,'_yoast_wpseo_estimated-reading-time-minutes','6'),(11704,2347,'_yoast_wpseo_title','Knee Arthritis Treatment That Get sRid of Pain at the Source'),(11705,4733,'_wp_attached_file','2021/06/Slide5.jpeg'),(11706,4733,'_wp_attachment_image_alt','Slide5'),(11707,4733,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1749;s:6:\"height\";i:1312;s:4:\"file\";s:19:\"2021/06/Slide5.jpeg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Slide5-500x375.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Slide5-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"Slide5-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"Slide5-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11708,4734,'_wp_attached_file','2021/06/Stem.Joint_.KW_.jpeg'),(11709,4734,'_wp_attachment_image_alt','Stem.joint.kw'),(11710,4734,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1749;s:6:\"height\";i:1312;s:4:\"file\";s:28:\"2021/06/Stem.Joint_.KW_.jpeg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Stem.Joint_.KW_-500x375.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Stem.Joint_.KW_-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Stem.Joint_.KW_-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"Stem.Joint_.KW_-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11711,4739,'_wp_attached_file','2019/09/Back-Pain.-Prolotherapy.jpeg'),(11712,4739,'_wp_attachment_image_alt','Back Pain. Prolotherapy'),(11713,4739,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1749;s:6:\"height\";i:1312;s:4:\"file\";s:36:\"2019/09/Back-Pain.-Prolotherapy.jpeg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Back-Pain.-Prolotherapy-500x375.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Back-Pain.-Prolotherapy-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Back-Pain.-Prolotherapy-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:38:\"Back-Pain.-Prolotherapy-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11720,4748,'_wp_attached_file','2019/06/tommy-john.jpg'),(11721,4748,'_wp_attachment_image_alt','Tommy John'),(11722,4748,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:22:\"2019/06/tommy-john.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"tommy-john-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"tommy-john-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"tommy-john-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11724,632,'_yoast_wpseo_focuskw','Tommy John Surgery'),(11725,632,'_yoast_wpseo_linkdex','82'),(11727,632,'_yoast_wpseo_title','Tommy John Surgery and All Surgeries Come with Risks'),(11728,632,'_yoast_wpseo_metadesc','Surgeries, like Tommy John surgery, all come with risks. Regenerative Orthopedics are a non-surgical alternative to get you playing again.'),(11729,632,'_wp_old_slug','sports-injuries-treatment-overview'),(11732,632,'_wp_old_slug','tommy-john-surgery-and-all-surgeries-can-come-with-risks'),(11734,207,'_yoast_wpseo_focuskw','Services at OrthoRegen'),(11735,207,'_yoast_wpseo_title','Common Questions for Services at OrthoRegen'),(11736,207,'_yoast_wpseo_metadesc','Common questions patients ask when considering non-surgical services at OrthoRegen to get rid of their joint and spine pain.'),(11737,207,'_yoast_wpseo_linkdex','75'),(11738,207,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11739,207,'_wp_old_slug','common-questions'),(11758,567,'_yoast_wpseo_focuskw','Get Rid of Back Pain'),(11759,567,'_yoast_wpseo_title','Get Rid of Back Pain with Regenerative Orthopedics'),(11760,567,'_yoast_wpseo_metadesc','Get rid of back pain safely with non-surgical Regenerative Orthopedics and enjoy the activities you\'ve been missing.'),(11761,567,'_yoast_wpseo_linkdex','78'),(11762,567,'_wp_old_slug','back-injury-treatment'),(11766,609,'_yoast_wpseo_focuskw','Volunteering'),(11767,609,'_yoast_wpseo_linkdex','73'),(11768,609,'_yoast_wpseo_content_score','30'),(11769,609,'_yoast_wpseo_estimated-reading-time-minutes','3'),(11771,627,'_yoast_wpseo_estimated-reading-time-minutes',''),(11772,4779,'_wp_attached_file','2019/06/DSCN1032-1.jpg'),(11773,4779,'_wp_attachment_image_alt','Dscn1032'),(11774,4779,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:22:\"2019/06/DSCN1032-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"DSCN1032-1-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11775,4780,'_wp_attached_file','2019/06/DSCN0961-1.jpg'),(11776,4780,'_wp_attachment_image_alt','Dscn0961'),(11777,4780,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:22:\"2019/06/DSCN0961-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"DSCN0961-1-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11778,4781,'_wp_attached_file','2019/06/DSCN1029-1.jpg'),(11779,4781,'_wp_attachment_image_alt','Dscn1029'),(11780,4781,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:22:\"2019/06/DSCN1029-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"DSCN1029-1-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11781,4782,'_wp_attached_file','2019/06/DSCN1134-1.jpg'),(11782,4782,'_wp_attachment_image_alt','Dscn1134'),(11783,4782,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:191;s:4:\"file\";s:22:\"2019/06/DSCN1134-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"DSCN1134-1-200x191.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11786,609,'_yoast_wpseo_title','Peter A. Fields, MD, DC Volunteering and Philanthropy Overview'),(11787,609,'_yoast_wpseo_metadesc','Peter A. Fields, MD, DC has had the honor of volunteering with the Hackett-Hemwall Foundation to help those in need.'),(11788,609,'_wp_old_slug','philanthropy-overview'),(11789,416,'_yoast_wpseo_content_score','90'),(11790,416,'_yoast_wpseo_estimated-reading-time-minutes',''),(11791,4785,'_wp_attached_file','2019/06/Guadalajara-Mexico-2006.png'),(11792,4785,'_wp_attachment_image_alt','Guadalajara Mexico 2006'),(11793,4785,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:782;s:6:\"height\";i:614;s:4:\"file\";s:35:\"2019/06/Guadalajara-Mexico-2006.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Guadalajara-Mexico-2006-500x393.png\";s:5:\"width\";i:500;s:6:\"height\";i:393;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Guadalajara-Mexico-2006-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"Guadalajara-Mexico-2006-768x603.png\";s:5:\"width\";i:768;s:6:\"height\";i:603;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11796,591,'_yoast_wpseo_estimated-reading-time-minutes',''),(11797,589,'_yoast_wpseo_estimated-reading-time-minutes',''),(11798,587,'_wp_page_template','default'),(11799,587,'_yoast_wpseo_content_score','90'),(11800,587,'_yoast_wpseo_estimated-reading-time-minutes',''),(11801,585,'_yoast_wpseo_content_score','60'),(11802,585,'_yoast_wpseo_estimated-reading-time-minutes',''),(11803,583,'_wp_page_template','default'),(11804,583,'_yoast_wpseo_content_score','60'),(11805,583,'_yoast_wpseo_estimated-reading-time-minutes',''),(11807,572,'_wp_page_template','default'),(11808,572,'_yoast_wpseo_content_score','30'),(11809,572,'_yoast_wpseo_estimated-reading-time-minutes',''),(11810,4791,'_wp_attached_file','2019/06/Honduras-2011.png'),(11811,4791,'_wp_attachment_image_alt','Honduras 2011'),(11812,4791,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:1234;s:4:\"file\";s:25:\"2019/06/Honduras-2011.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Honduras-2011-186x500.png\";s:5:\"width\";i:186;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Honduras-2011-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11813,4792,'_wp_attached_file','2019/06/Honduras-2011-1.png'),(11814,4792,'_wp_attachment_image_alt','Honduras 2011'),(11815,4792,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:1234;s:4:\"file\";s:27:\"2019/06/Honduras-2011-1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Honduras-2011-1-186x500.png\";s:5:\"width\";i:186;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Honduras-2011-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11821,2501,'_yoast_wpseo_estimated-reading-time-minutes','5'),(11822,2208,'_yoast_wpseo_estimated-reading-time-minutes','15'),(11823,4805,'_wp_attached_file','2019/06/Knee-Stems.jpeg'),(11824,4805,'_wp_attachment_image_alt','Stem Cells'),(11825,4805,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1749;s:6:\"height\";i:1312;s:4:\"file\";s:23:\"2019/06/Knee-Stems.jpeg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Knee-Stems-500x375.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Knee-Stems-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Knee-Stems-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"Knee-Stems-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11827,1416,'_yoast_wpseo_estimated-reading-time-minutes','6'),(11830,4809,'_wp_attached_file','2019/06/Knee.-Prolo.jpeg'),(11831,4809,'_wp_attachment_image_alt','Knee. Prolo'),(11832,4809,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1749;s:6:\"height\";i:1312;s:4:\"file\";s:24:\"2019/06/Knee.-Prolo.jpeg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Knee.-Prolo-500x375.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Knee.-Prolo-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Knee.-Prolo-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"Knee.-Prolo-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11834,4812,'_wp_attached_file','2019/06/Slide17.jpeg'),(11835,4812,'_wp_attachment_image_alt','Slide17'),(11836,4812,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1749;s:6:\"height\";i:1312;s:4:\"file\";s:20:\"2019/06/Slide17.jpeg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Slide17-500x375.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Slide17-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Slide17-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"Slide17-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11838,545,'_yoast_wpseo_focuskw','Shoulder injury'),(11839,545,'_yoast_wpseo_linkdex','74'),(11844,1450,'_yoast_wpseo_content_score','90'),(11845,1450,'_yoast_wpseo_estimated-reading-time-minutes','3'),(11846,4818,'_wp_attached_file','2019/06/Honduras-2011-2.png'),(11847,4818,'_wp_attachment_image_alt','Honduras 2011'),(11848,4818,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:1234;s:4:\"file\";s:27:\"2019/06/Honduras-2011-2.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Honduras-2011-2-186x500.png\";s:5:\"width\";i:186;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Honduras-2011-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11850,1450,'_yoast_wpseo_focuskw','When Looking for a Prolotherapist'),(11851,1450,'_yoast_wpseo_linkdex','73'),(11853,1450,'_yoast_wpseo_title','What Should You Ask When Looking for A Prolotherapist'),(11854,1450,'_yoast_wpseo_metadesc','Looking for a Prolotherapist? Peter A. Fields, MD, DC is an experienced physician dedicated to providing highly effective & safe treatments.'),(11857,4822,'_wp_attached_file','2020/02/Cortisone.jpeg'),(11858,4822,'_wp_attachment_image_alt','Cortisone'),(11859,4822,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1749;s:6:\"height\";i:1312;s:4:\"file\";s:22:\"2020/02/Cortisone.jpeg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Cortisone-500x375.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Cortisone-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Cortisone-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"Cortisone-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11861,3540,'_yoast_wpseo_estimated-reading-time-minutes','3'),(11865,395,'_yoast_wpseo_focuskw','Prolotherapy Treatments'),(11866,395,'_yoast_wpseo_title','Prolotherapy Treatments: Answering Your Questions About Prolotherapy'),(11867,395,'_yoast_wpseo_linkdex','71'),(11868,395,'_wp_old_slug','prolotherapy-faq'),(11871,395,'_yoast_wpseo_metadesc','In this article, we will discuss the answers to some of the questions you may have about Prolotherapy treatments.'),(11873,4832,'_wp_attached_file','2019/06/prolojpg.png'),(11874,4832,'_wp_attachment_image_alt','Prolojpg'),(11875,4832,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:765;s:6:\"height\";i:762;s:4:\"file\";s:20:\"2019/06/prolojpg.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"prolojpg-500x498.png\";s:5:\"width\";i:500;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"prolojpg-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11881,2611,'_yoast_wpseo_estimated-reading-time-minutes','8'),(11882,4837,'_wp_attached_file','2019/06/Rotator-Cuff.jpeg'),(11883,4837,'_wp_attachment_image_alt','Rotator Cuff'),(11884,4837,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1749;s:6:\"height\";i:1312;s:4:\"file\";s:25:\"2019/06/Rotator-Cuff.jpeg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Rotator-Cuff-500x375.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Rotator-Cuff-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Rotator-Cuff-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"Rotator-Cuff-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11891,4843,'_wp_attached_file','2021/08/DANCING-v3.mp4'),(11892,4843,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:55639004;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:61;s:16:\"length_formatted\";s:4:\"1:01\";s:5:\"width\";i:352;s:6:\"height\";i:640;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1626405407;}'),(11893,4843,'_thumbnail_id','4844'),(11894,4844,'_wp_attached_file','2021/08/Dancing.png'),(11895,4844,'_wp_attachment_image_alt','Dancing'),(11896,4844,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:755;s:6:\"height\";i:993;s:4:\"file\";s:19:\"2021/08/Dancing.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Dancing-380x500.png\";s:5:\"width\";i:380;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Dancing-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11897,2208,'_yoast_wpseo_focuskw','Kilimanjaro'),(11898,2208,'_yoast_wpseo_linkdex','69'),(11899,2208,'_yoast_wpseo_metadesc','After waiting over ten years with this on my bucket list, I finally was going to climb Kilimanjaro. Here\'s the story of my Kilimanjaro climb.'),(11900,4856,'_wp_attached_file','2021/08/thumbnail.png'),(11901,4856,'_wp_attachment_image_alt','Thumbnail'),(11902,4856,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:452;s:6:\"height\";i:570;s:4:\"file\";s:21:\"2021/08/thumbnail.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"thumbnail-396x500.png\";s:5:\"width\";i:396;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"thumbnail-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11903,4861,'_wp_attached_file','2021/08/camp-16000ft.mp4'),(11904,4861,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:1963166;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:20;s:16:\"length_formatted\";s:4:\"0:20\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550822736;}'),(11905,4862,'_wp_attached_file','2021/08/camp.png'),(11906,4862,'_wp_attachment_image_alt','Camp'),(11907,4862,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1272;s:6:\"height\";i:950;s:4:\"file\";s:16:\"2021/08/camp.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"camp-500x373.png\";s:5:\"width\";i:500;s:6:\"height\";i:373;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"camp-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"camp-768x574.png\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11908,4861,'_thumbnail_id','4862'),(11909,4864,'_wp_attached_file','2021/08/16500-18400-13.jpg'),(11910,4864,'_wp_attachment_image_alt','16500 18400 13'),(11911,4864,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:492;s:6:\"height\";i:277;s:4:\"file\";s:26:\"2021/08/16500-18400-13.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"16500-18400-13-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11912,4865,'_wp_attached_file','2021/08/16500-18400-12.jpg'),(11913,4865,'_wp_attachment_image_alt','16500 18400 12'),(11914,4865,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:156;s:6:\"height\";i:277;s:4:\"file\";s:26:\"2021/08/16500-18400-12.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"16500-18400-12-156x200.jpg\";s:5:\"width\";i:156;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11915,4866,'_wp_attached_file','2021/08/16000ft.mp4'),(11916,4866,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:3197216;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:31;s:16:\"length_formatted\";s:4:\"0:31\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550595165;}'),(11917,4867,'_wp_attached_file','2021/08/dance-18000.png'),(11918,4867,'_wp_attachment_image_alt','Dance 18000'),(11919,4867,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1257;s:6:\"height\";i:935;s:4:\"file\";s:23:\"2021/08/dance-18000.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"dance-18000-500x372.png\";s:5:\"width\";i:500;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"dance-18000-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"dance-18000-768x571.png\";s:5:\"width\";i:768;s:6:\"height\";i:571;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11920,4866,'_thumbnail_id','4867'),(11922,536,'_yoast_wpseo_focuskw','Neck Injury Treatments'),(11923,536,'_yoast_wpseo_linkdex','75'),(11924,4878,'_wp_attached_file','2019/06/Non-Surgical.png'),(11925,4878,'_wp_attachment_image_alt','Non Surgical'),(11926,4878,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:24:\"2019/06/Non-Surgical.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Non-Surgical-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Non-Surgical-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Non-Surgical-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11930,536,'_wp_old_slug','neck-injury-treatment'),(11931,536,'_yoast_wpseo_metadesc','Regenerative Orthopedic neck injury treatments can resolve neck pain and get you back to what you love without surgery, without medications, and without extended time off.'),(11934,1480,'_wp_page_template','default'),(11936,1480,'_yoast_wpseo_content_score','60'),(11937,1480,'_yoast_wpseo_estimated-reading-time-minutes','3'),(11939,1480,'_wp_old_slug','knee-and-hip-replacements-increase-heart-attack-risk-briefly'),(11940,1480,'_yoast_wpseo_focuskw','heart attack risk'),(11941,1480,'_yoast_wpseo_metadesc','Knee and hip replacements increase heart attack risk and cardiac arrhythmias by boosting the odds of blood clot formation.'),(11942,1480,'_yoast_wpseo_linkdex','73'),(11949,4894,'_wp_attached_file','2019/06/heart-attack-1.png'),(11950,4894,'_wp_attachment_image_alt','Heart Attack (1)'),(11951,4894,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3255;s:6:\"height\";i:4529;s:4:\"file\";s:26:\"2019/06/heart-attack-1.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"heart-attack-1-359x500.png\";s:5:\"width\";i:359;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"heart-attack-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"heart-attack-1-768x1069.png\";s:5:\"width\";i:768;s:6:\"height\";i:1069;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"heart-attack-1-1104x1536.png\";s:5:\"width\";i:1104;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:28:\"heart-attack-1-1472x2048.png\";s:5:\"width\";i:1472;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11957,361,'_yoast_wpseo_focuskw','Ironman Maryland'),(11958,361,'_yoast_wpseo_metadesc','I originally scheduled for Ironman Hamburg, Germany, but it was cancelled. To compete in my 10th Ironman, I then joined Ironman Maryland.'),(11959,361,'_yoast_wpseo_linkdex','74'),(11960,361,'_yoast_wpseo_content_score','30'),(11961,361,'_yoast_wpseo_estimated-reading-time-minutes','7'),(11962,361,'_wp_old_slug','race-report-10th-ironman'),(11964,2592,'_yoast_wpseo_estimated-reading-time-minutes',''),(11968,1486,'_wp_page_template','default'),(11970,1486,'_yoast_wpseo_focuskw','Bio-identical hormones'),(11971,1486,'_yoast_wpseo_metadesc','Natural, bio-identical hormones can help you achieve your health goals without the risks and side effects associated with synthetic hormones.'),(11972,1486,'_yoast_wpseo_linkdex','71'),(11973,1486,'_yoast_wpseo_content_score','30'),(11974,1486,'_yoast_wpseo_estimated-reading-time-minutes','3'),(11977,1486,'_yoast_wpseo_title','Bio-Identical Hormones for a Happier and Healthier Lifestyle'),(11978,1486,'_wp_old_slug','your-best-health-insurance'),(11980,1486,'_wp_old_slug','bio-identical-hormone-replacement-and-aging'),(11988,216,'_yoast_wpseo_estimated-reading-time-minutes','3'),(11991,2565,'_yoast_wpseo_estimated-reading-time-minutes','4'),(11993,4925,'_wp_attached_file','2019/06/knee-stem-cells.jpeg'),(11994,4925,'_wp_attachment_image_alt','Knee Stem Cells'),(11995,4925,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1749;s:6:\"height\";i:1312;s:4:\"file\";s:28:\"2019/06/knee-stem-cells.jpeg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"knee-stem-cells-500x375.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"knee-stem-cells-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"knee-stem-cells-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"knee-stem-cells-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11997,533,'_yoast_wpseo_focuskw','Knee Injuries'),(11998,533,'_yoast_wpseo_linkdex','76'),(11999,533,'_wp_old_slug','knee-injury-treatment'),(12001,533,'_yoast_wpseo_title','Regenerative Orthopedic Treatments for Knee Injuries'),(12002,533,'_yoast_wpseo_metadesc','Regenerative Orthopedics are exciting and new cutting-edge therapies that repair knee injuries by regenerating soft tissue of the knee joint.'),(12011,4936,'_wp_attached_file','2019/06/3eb0e706-aa8b-48ca-af63-fbff5efc5017.jpg'),(12012,4936,'_wp_attachment_image_alt','3eb0e706 Aa8b 48ca Af63 Fbff5efc5017'),(12013,4936,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:48:\"2019/06/3eb0e706-aa8b-48ca-af63-fbff5efc5017.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"3eb0e706-aa8b-48ca-af63-fbff5efc5017-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"3eb0e706-aa8b-48ca-af63-fbff5efc5017-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"3eb0e706-aa8b-48ca-af63-fbff5efc5017-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"3eb0e706-aa8b-48ca-af63-fbff5efc5017-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12014,4937,'_wp_attached_file','2019/06/1d450099-af27-4acb-a887-88c7c66cc238.jpg'),(12015,4937,'_wp_attachment_image_alt','1d450099 Af27 4acb A887 88c7c66cc238'),(12016,4937,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:48:\"2019/06/1d450099-af27-4acb-a887-88c7c66cc238.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"1d450099-af27-4acb-a887-88c7c66cc238-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"1d450099-af27-4acb-a887-88c7c66cc238-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"1d450099-af27-4acb-a887-88c7c66cc238-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12017,4938,'_wp_attached_file','2019/06/3c2609ba-657a-4097-a191-6a009c32f46e.jpg'),(12018,4938,'_wp_attachment_image_alt','The Athletic Doc Scuba Diving'),(12019,4938,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1069;s:6:\"height\";i:1462;s:4:\"file\";s:48:\"2019/06/3c2609ba-657a-4097-a191-6a009c32f46e.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"3c2609ba-657a-4097-a191-6a009c32f46e-366x500.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"3c2609ba-657a-4097-a191-6a009c32f46e-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"3c2609ba-657a-4097-a191-6a009c32f46e-768x1050.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12020,4939,'_wp_attached_file','2019/06/72d6778e-f955-4f11-b690-3a01db6dc538-2.jpg'),(12021,4939,'_wp_attachment_image_alt','72d6778e F955 4f11 B690 3a01db6dc538 2'),(12022,4939,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1640;s:6:\"height\";i:1563;s:4:\"file\";s:50:\"2019/06/72d6778e-f955-4f11-b690-3a01db6dc538-2.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"72d6778e-f955-4f11-b690-3a01db6dc538-2-500x477.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:477;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"72d6778e-f955-4f11-b690-3a01db6dc538-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"72d6778e-f955-4f11-b690-3a01db6dc538-2-768x732.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:732;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"72d6778e-f955-4f11-b690-3a01db6dc538-2-1536x1464.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1464;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12024,373,'_yoast_wpseo_focuskw','The Athletic Doc®'),(12025,373,'_yoast_wpseo_title','The Athletic Doc® Continues to Enjoy Athletic Challenges'),(12026,373,'_yoast_wpseo_metadesc','Dr. Fields, The Athletic Doc®, has completed 11 Ironman races, numerous triathlons, and many half Ironman competitions.'),(12027,373,'_yoast_wpseo_linkdex','76'),(12028,373,'_yoast_wpseo_estimated-reading-time-minutes','5'),(12036,1758,'_yoast_wpseo_content_score','90'),(12037,1758,'_yoast_wpseo_estimated-reading-time-minutes',''),(12038,2366,'_yoast_wpseo_content_score','90'),(12039,2366,'_yoast_wpseo_estimated-reading-time-minutes',''),(12042,348,'_yoast_wpseo_focuskw','Ironman 9'),(12043,348,'_yoast_wpseo_title','Ironman 9 Took Place in My Home State of California'),(12044,348,'_yoast_wpseo_metadesc','Ironman 9 took place in my home State in Santa Rosa, California, which being so close, made it different than all my other races.'),(12045,348,'_yoast_wpseo_linkdex','71'),(12046,348,'_yoast_wpseo_content_score','90'),(12047,348,'_yoast_wpseo_estimated-reading-time-minutes','10'),(12050,4955,'_wp_attached_file','2019/06/Cozumel-Logo-1.jpg'),(12051,4955,'_wp_attachment_image_alt','Cozumel Logo'),(12052,4955,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:139;s:6:\"height\";i:85;s:4:\"file\";s:26:\"2019/06/Cozumel-Logo-1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12054,306,'_yoast_wpseo_focuskw','Ironman 8'),(12055,306,'_yoast_wpseo_title','Ironman 8 Took Place in Beautiful Cozumel, Mexico'),(12056,306,'_yoast_wpseo_metadesc','Ironman 8 Took Place in Beautiful Cozumel, Mexico. Having done this race three times before, I knew that bike course well.'),(12057,306,'_yoast_wpseo_linkdex','71'),(12058,306,'_yoast_wpseo_estimated-reading-time-minutes','8'),(12060,4957,'_wp_attached_file','2019/10/Runners-Knee.PRP_.Stems-4.png'),(12061,4957,'_wp_attachment_image_alt','Runner\'s Knee.prp.stems 4'),(12062,4957,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:37:\"2019/10/Runners-Knee.PRP_.Stems-4.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Runners-Knee.PRP_.Stems-4-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Runners-Knee.PRP_.Stems-4-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Runners-Knee.PRP_.Stems-4-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12064,2894,'_yoast_wpseo_estimated-reading-time-minutes','5'),(12066,4960,'_wp_attached_file','2019/06/Back-Pain.Hauser.png'),(12067,4960,'_wp_attachment_image_alt','Back Pain.hauser'),(12068,4960,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:28:\"2019/06/Back-Pain.Hauser.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Back-Pain.Hauser-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Back-Pain.Hauser-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Back-Pain.Hauser-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12071,4964,'_wp_attached_file','2019/06/Shoulder.-Journal-of-Clinical-Imaging.png'),(12072,4964,'_wp_attachment_image_alt','Shoulder. Journal Of Clinical Imaging'),(12073,4964,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:49:\"2019/06/Shoulder.-Journal-of-Clinical-Imaging.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Shoulder.-Journal-of-Clinical-Imaging-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Shoulder.-Journal-of-Clinical-Imaging-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Shoulder.-Journal-of-Clinical-Imaging-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12075,4967,'_wp_attached_file','2019/06/Dr.-Fields-Zoom-Lecture-poster.png'),(12076,4967,'_wp_attachment_image_alt','Dr. Fields\' Zoom Lecture Poster'),(12077,4967,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1545;s:6:\"height\";i:2000;s:4:\"file\";s:42:\"2019/06/Dr.-Fields-Zoom-Lecture-poster.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Dr.-Fields-Zoom-Lecture-poster-386x500.png\";s:5:\"width\";i:386;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dr.-Fields-Zoom-Lecture-poster-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Dr.-Fields-Zoom-Lecture-poster-768x994.png\";s:5:\"width\";i:768;s:6:\"height\";i:994;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"Dr.-Fields-Zoom-Lecture-poster-1187x1536.png\";s:5:\"width\";i:1187;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12078,4968,'_wp_attached_file','2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2.png'),(12079,4968,'_wp_attachment_image_alt','Dr. Fields\' Zoom Lecture (facebook Post).2'),(12080,4968,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:51:\"2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Dr.-Fields-Zoom-Lecture-Facebook-Post.2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"Dr.-Fields-Zoom-Lecture-Facebook-Post.2-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12082,1434,'_wp_old_slug','cal-chiro-sports-symposium'),(12085,1434,'_wp_old_date','2019-06-12'),(12087,1434,'_yoast_wpseo_title','Regenerative Orthopedics Lecture by Peter A. Fields, MD, DC on Zoom'),(12101,2335,'_yoast_wpseo_focuskw','Non-Surgical'),(12102,2335,'_yoast_wpseo_linkdex','75'),(12103,2335,'_yoast_wpseo_estimated-reading-time-minutes','4'),(12104,2335,'_yoast_wpseo_metadesc','Regenerative Orthopedic treatments using PRP are effective non-surgical options for joint injury repair at OrthoRegen.'),(12105,4992,'_wp_attached_file','2022/06/PRP..jpeg'),(12106,4992,'_wp_attachment_image_alt','Prp.'),(12107,4992,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1749;s:6:\"height\";i:1312;s:4:\"file\";s:17:\"2022/06/PRP..jpeg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"PRP.-500x375.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"PRP.-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"PRP.-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"PRP.-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12108,4999,'iwp_log_type','plugins'),(12109,4999,'iwp_log_action','update'),(12110,4999,'iwp_log_activities_type','direct'),(12111,4999,'iwp_log_actions','plugins-updated'),(12112,4999,'iwp_log_details','a:4:{s:4:\"name\";s:15:\"BackUpWordPress\";s:4:\"slug\";s:35:\"backupwordpress/backupwordpress.php\";s:11:\"old_version\";s:4:\"3.11\";s:15:\"updated_version\";s:4:\"3.13\";}'),(12113,5000,'iwp_log_type','plugins'),(12114,5000,'iwp_log_action','update'),(12115,5000,'iwp_log_activities_type','direct'),(12116,5000,'iwp_log_actions','plugins-updated'),(12117,5000,'iwp_log_details','a:4:{s:4:\"name\";s:14:\"Classic Editor\";s:4:\"slug\";s:33:\"classic-editor/classic-editor.php\";s:11:\"old_version\";s:3:\"1.6\";s:15:\"updated_version\";s:5:\"1.6.2\";}'),(12118,5001,'iwp_log_type','plugins'),(12119,5001,'iwp_log_action','update'),(12120,5001,'iwp_log_activities_type','direct'),(12121,5001,'iwp_log_actions','plugins-updated'),(12122,5001,'iwp_log_details','a:4:{s:4:\"name\";s:14:\"Duplicate Page\";s:4:\"slug\";s:32:\"duplicate-page/duplicatepage.php\";s:11:\"old_version\";s:3:\"4.4\";s:15:\"updated_version\";s:5:\"4.4.8\";}'),(12123,5002,'iwp_log_type','core'),(12124,5002,'iwp_log_action','update'),(12125,5002,'iwp_log_activities_type','direct'),(12126,5002,'iwp_log_actions','core-updated'),(12127,5002,'iwp_log_details','a:2:{s:11:\"old_version\";s:5:\"5.7.1\";s:15:\"updated_version\";s:3:\"6.0\";}'),(12128,5003,'iwp_log_type','plugins'),(12129,5003,'iwp_log_action','update'),(12130,5003,'iwp_log_activities_type','direct'),(12131,5003,'iwp_log_actions','plugins-updated'),(12132,5003,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:5:\"3.8.8\";s:15:\"updated_version\";s:6:\"3.11.3\";}'),(12133,5004,'iwp_log_type','plugins'),(12134,5004,'iwp_log_action','update'),(12135,5004,'iwp_log_activities_type','direct'),(12136,5004,'iwp_log_actions','plugins-updated'),(12137,5004,'iwp_log_details','a:4:{s:4:\"name\";s:17:\"WP Video Lightbox\";s:4:\"slug\";s:39:\"wp-video-lightbox/wp-video-lightbox.php\";s:11:\"old_version\";s:5:\"1.9.1\";s:15:\"updated_version\";s:5:\"1.9.4\";}'),(12138,5005,'iwp_log_type','plugins'),(12139,5005,'iwp_log_action','update'),(12140,5005,'iwp_log_activities_type','direct'),(12141,5005,'iwp_log_actions','plugins-updated'),(12142,5005,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"16.2\";s:15:\"updated_version\";s:4:\"19.2\";}'),(12143,5006,'iwp_log_type','plugins'),(12144,5006,'iwp_log_action','update'),(12145,5006,'iwp_log_activities_type','direct'),(12146,5006,'iwp_log_actions','plugins-updated'),(12147,5006,'iwp_log_details','a:4:{s:4:\"name\";s:11:\"WP-PageNavi\";s:4:\"slug\";s:27:\"wp-pagenavi/wp-pagenavi.php\";s:11:\"old_version\";s:6:\"2.93.4\";s:15:\"updated_version\";s:6:\"2.94.0\";}'),(12673,5139,'_wp_attached_file','2022/07/Slider-v02072022.png'),(12674,5139,'_wp_attachment_image_alt','Slider V02072022'),(12675,5139,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2550;s:6:\"height\";i:778;s:4:\"file\";s:28:\"2022/07/Slider-v02072022.png\";s:8:\"filesize\";i:514681;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Slider-v02072022-500x153.png\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53303;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Slider-v02072022-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31774;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Slider-v02072022-768x234.png\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102483;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"Slider-v02072022-1536x469.png\";s:5:\"width\";i:1536;s:6:\"height\";i:469;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:288102;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"Slider-v02072022-2048x625.png\";s:5:\"width\";i:2048;s:6:\"height\";i:625;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:448026;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12676,2109,'_yoast_wpseo_wordproof_timestamp',''),(12677,5141,'_wp_attached_file','2022/07/Slider-2v02072022.png'),(12678,5141,'_wp_attachment_image_alt','Slider 2v02072022'),(12679,5141,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2550;s:6:\"height\";i:778;s:4:\"file\";s:29:\"2022/07/Slider-2v02072022.png\";s:8:\"filesize\";i:527379;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Slider-2v02072022-500x153.png\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50416;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Slider-2v02072022-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31774;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Slider-2v02072022-768x234.png\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98816;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"Slider-2v02072022-1536x469.png\";s:5:\"width\";i:1536;s:6:\"height\";i:469;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:284606;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"Slider-2v02072022-2048x625.png\";s:5:\"width\";i:2048;s:6:\"height\";i:625;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:449247;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12680,5144,'_wp_attached_file','2019/06/Dr.-Fields.jpg'),(12681,5144,'_wp_attachment_image_alt','Dr. Fields'),(12682,5144,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:315;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2019/06/Dr.-Fields.jpg\";s:8:\"filesize\";i:18352;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Dr.-Fields-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6625;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12683,5145,'_wp_attached_file','2019/06/Fields-in-Mask.jpeg'),(12684,5145,'_wp_attachment_image_alt','Fields In Mask'),(12685,5145,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:634;s:4:\"file\";s:27:\"2019/06/Fields-in-Mask.jpeg\";s:8:\"filesize\";i:58080;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Fields-in-Mask-500x495.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27249;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Fields-in-Mask-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7706;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12686,5146,'_wp_attached_file','2019/06/14th-World-Congress-on-Anti-Aging-and-Longevity-Medicine.png'),(12687,5146,'_wp_attachment_image_alt','14th World Congress On Anti Aging And Longevity Medicine'),(12688,5146,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1364;s:6:\"height\";i:652;s:4:\"file\";s:68:\"2019/06/14th-World-Congress-on-Anti-Aging-and-Longevity-Medicine.png\";s:8:\"filesize\";i:1144616;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"14th-World-Congress-on-Anti-Aging-and-Longevity-Medicine-500x239.png\";s:5:\"width\";i:500;s:6:\"height\";i:239;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:170435;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"14th-World-Congress-on-Anti-Aging-and-Longevity-Medicine-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59568;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:68:\"14th-World-Congress-on-Anti-Aging-and-Longevity-Medicine-768x367.png\";s:5:\"width\";i:768;s:6:\"height\";i:367;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:353633;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12689,5147,'_wp_attached_file','2019/06/Copy-of-Mexico-City-Lecture-2.png'),(12690,5147,'_wp_attachment_image_alt','Copy Of Mexico City Lecture 2'),(12691,5147,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:41:\"2019/06/Copy-of-Mexico-City-Lecture-2.png\";s:8:\"filesize\";i:300924;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Copy-of-Mexico-City-Lecture-2-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146809;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Copy-of-Mexico-City-Lecture-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46486;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Copy-of-Mexico-City-Lecture-2-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:265748;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12692,1471,'_wp_page_template','default'),(12695,1471,'_yoast_wpseo_focuskw','Lecture in Mexico City'),(12696,1471,'_yoast_wpseo_metadesc','Dr. Fields to Lecture in Mexico City on July 9th about Regenerative Medicine, including stem cells, PRP, and Prolotherapy.'),(12697,1471,'_yoast_wpseo_linkdex','69'),(12698,1471,'_yoast_wpseo_content_score','90'),(12699,1471,'_yoast_wpseo_estimated-reading-time-minutes','1'),(12700,1471,'_yoast_wpseo_wordproof_timestamp',''),(12701,1471,'_wp_old_slug','a4m-conference-florida-2016'),(12712,1471,'_wp_old_date','2019-06-12'),(12713,5155,'_wp_attached_file','2022/07/Slider-2v05072022.png'),(12714,5155,'_wp_attachment_image_alt','Slider 2v05072022'),(12715,5155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2550;s:6:\"height\";i:778;s:4:\"file\";s:29:\"2022/07/Slider-2v05072022.png\";s:8:\"filesize\";i:528162;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Slider-2v05072022-500x153.png\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50147;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Slider-2v05072022-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32094;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Slider-2v05072022-768x234.png\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98299;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"Slider-2v05072022-1536x469.png\";s:5:\"width\";i:1536;s:6:\"height\";i:469;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:284773;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"Slider-2v05072022-2048x625.png\";s:5:\"width\";i:2048;s:6:\"height\";i:625;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:449795;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12716,5157,'_edit_lock','1657502740:9'),(12717,5157,'_edit_last','9'),(12718,5158,'_wp_attached_file','2022/07/Meniscectomy.-Cureus.FB-Facebook-Post.png'),(12719,5158,'_wp_attachment_image_alt','Meniscectomy. Cureus.fb (facebook Post)'),(12720,5158,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:49:\"2022/07/Meniscectomy.-Cureus.FB-Facebook-Post.png\";s:8:\"filesize\";i:855838;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Meniscectomy.-Cureus.FB-Facebook-Post-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:266424;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Meniscectomy.-Cureus.FB-Facebook-Post-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64684;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Meniscectomy.-Cureus.FB-Facebook-Post-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:555582;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12721,5157,'_wp_page_template','default'),(12724,5157,'_yoast_wpseo_content_score','90'),(12725,5157,'_yoast_wpseo_estimated-reading-time-minutes','4'),(12726,5157,'_yoast_wpseo_wordproof_timestamp',''),(12727,5157,'_wp_old_date','2022-07-08'),(12730,5157,'_yoast_wpseo_primary_category','32'),(12733,5157,'_yoast_wpseo_focuskw','Treating Knee Pain'),(12734,5157,'_yoast_wpseo_title','Treating Knee Pain and Injuries with Regenerative Orthopedics'),(12735,5157,'_yoast_wpseo_metadesc','Treating Knee Pain and Injuries with Regenerative Orthopedics is an effective non-surgical solution to get you back to doing what you love.'),(12736,5157,'_yoast_wpseo_linkdex','76'),(12747,5169,'_edit_lock','1658365062:9'),(12748,5169,'_edit_last','9'),(12749,5169,'_wp_page_template','default'),(12752,5169,'_yoast_wpseo_content_score','60'),(12753,5169,'_yoast_wpseo_estimated-reading-time-minutes','4'),(12754,5169,'_yoast_wpseo_wordproof_timestamp',''),(12755,5169,'_yoast_wpseo_primary_category','32'),(12756,5171,'_wp_attached_file','2022/07/Back-Pain.Hauser.FB_.png'),(12757,5171,'_wp_attachment_image_alt','Nagging Back Pain'),(12758,5171,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:32:\"2022/07/Back-Pain.Hauser.FB_.png\";s:8:\"filesize\";i:499054;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Back-Pain.Hauser.FB_-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:167578;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Back-Pain.Hauser.FB_-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45369;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Back-Pain.Hauser.FB_-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:351259;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12765,5169,'_yoast_wpseo_focuskw','nagging back pain'),(12766,5169,'_yoast_wpseo_title','Nagging Back Pain Relieved with Regenerative Orthopedics'),(12767,5169,'_yoast_wpseo_metadesc','Regenerative Orthopedics relieves nagging back pain by strengthening the ligaments and their connecting attachments resulting in pain relief.'),(12768,5169,'_yoast_wpseo_linkdex','76'),(12771,5180,'_edit_lock','1662531051:8'),(12772,5180,'_edit_last','9'),(12773,5181,'_wp_attached_file','2022/07/regen.tissue-healing.jpeg'),(12774,5181,'_wp_attachment_image_alt','Regen.tissue Healing'),(12775,5181,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1749;s:6:\"height\";i:1312;s:4:\"file\";s:33:\"2022/07/regen.tissue-healing.jpeg\";s:8:\"filesize\";i:468127;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"regen.tissue-healing-500x375.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46182;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"regen.tissue-healing-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14455;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"regen.tissue-healing-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89055;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"regen.tissue-healing-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:241744;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12776,5180,'_wp_page_template','default'),(12777,5180,'_yoast_wpseo_content_score','90'),(12778,5180,'_yoast_wpseo_estimated-reading-time-minutes','3'),(12779,5180,'_yoast_wpseo_wordproof_timestamp',''),(12780,5180,'_yoast_wpseo_primary_category','32'),(12781,2208,'_yoast_wpseo_wordproof_timestamp',''),(12782,5190,'_edit_last','8'),(12783,5190,'_wp_page_template','default'),(12784,5190,'_yoast_wpseo_estimated-reading-time-minutes','1'),(12785,5190,'_yoast_wpseo_wordproof_timestamp',''),(12786,5190,'_edit_lock','1658983216:8'),(12787,2219,'_yoast_wpseo_content_score','60'),(12788,2219,'_yoast_wpseo_estimated-reading-time-minutes','2'),(12789,2219,'_yoast_wpseo_wordproof_timestamp',''),(12790,5199,'_wp_attached_file','2022/07/20190210_061752.jpg'),(12791,5199,'_wp_attachment_image_alt','20190210 061752'),(12792,5199,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2056;s:6:\"height\";i:2524;s:4:\"file\";s:27:\"2022/07/20190210_061752.jpg\";s:8:\"filesize\";i:551982;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190210_061752-407x500.jpg\";s:5:\"width\";i:407;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37268;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190210_061752-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14943;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190210_061752-768x943.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:943;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100407;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190210_061752-1251x1536.jpg\";s:5:\"width\";i:1251;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:239943;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190210_061752-1668x2048.jpg\";s:5:\"width\";i:1668;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:398249;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190210_061752-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7661;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190210_061752-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22820;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190210_061752-250x307.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20427;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190210_061752-550x675.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58382;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190210_061752-800x982.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:982;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107723;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190210_061752-147x180.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12686;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190210_061752-244x300.jpg\";s:5:\"width\";i:244;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19797;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190210_061752-407x500.jpg\";s:5:\"width\";i:407;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37268;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190210_061752-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14347;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190210_061752-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27227;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190210_061752-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78579;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549776872\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00015243902439024\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12793,5200,'_wp_attached_file','2022/07/20190210_100719-scaled.jpg'),(12794,5200,'_wp_attachment_image_alt','20190210 100719'),(12795,5200,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:691;s:4:\"file\";s:34:\"2022/07/20190210_100719-scaled.jpg\";s:8:\"filesize\";i:155173;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190210_100719-500x135.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16433;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190210_100719-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10140;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190210_100719-768x207.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29084;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190210_100719-1536x415.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75967;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:28:\"20190210_100719-2048x553.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114211;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190210_100719-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4088;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190210_100719-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15862;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:26:\"20190210_100719-250x68.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:68;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7489;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190210_100719-550x149.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18742;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190210_100719-800x216.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30819;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190210_100719-666x180.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24279;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:28:\"20190210_100719-1111x300.jpg\";s:5:\"width\";i:1111;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48731;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:28:\"20190210_100719-1851x500.jpg\";s:5:\"width\";i:1851;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98842;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190210_100719-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9421;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190210_100719-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19409;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190210_100719-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61132;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549781290\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0004180602006689\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190210_100719.jpg\";}'),(12796,5201,'_wp_attached_file','2022/07/20190210_123305-scaled.jpg'),(12797,5201,'_wp_attachment_image_alt','20190210 123305'),(12798,5201,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190210_123305-scaled.jpg\";s:8:\"filesize\";i:309582;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190210_123305-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33705;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190210_123305-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21246;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190210_123305-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52596;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190210_123305-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136553;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190210_123305-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216148;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190210_123305-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15701;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190210_123305-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27296;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123305-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21073;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190210_123305-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36795;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190210_123305-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55502;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123305-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23940;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190210_123305-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35789;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190210_123305-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63543;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123305-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20414;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190210_123305-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30012;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190210_123305-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72892;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549801985\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190210_123305.jpg\";}'),(12799,5202,'_wp_attached_file','2022/07/20190210_123348.jpg'),(12800,5202,'_wp_attachment_image_alt','20190210 123348'),(12801,5202,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:27:\"2022/07/20190210_123348.jpg\";s:8:\"filesize\";i:402369;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190210_123348-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47701;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190210_123348-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24857;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190210_123348-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91240;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190210_123348-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13666;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190210_123348-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38860;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123348-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22534;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190210_123348-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54603;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190210_123348-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97734;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123348-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28225;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190210_123348-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52014;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190210_123348-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117598;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123348-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21974;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190210_123348-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43011;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190210_123348-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150313;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549802028\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12802,5203,'_wp_attached_file','2022/07/20190210_123358-scaled.jpg'),(12803,5203,'_wp_attachment_image_alt','20190210 123358'),(12804,5203,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190210_123358-scaled.jpg\";s:8:\"filesize\";i:417435;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190210_123358-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48707;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190210_123358-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30716;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190210_123358-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77966;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190210_123358-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198081;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190210_123358-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:301620;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190210_123358-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21257;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190210_123358-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41407;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123358-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29072;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190210_123358-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53629;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190210_123358-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82459;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123358-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33581;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190210_123358-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51900;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190210_123358-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94479;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123358-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28749;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190210_123358-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45153;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190210_123358-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105004;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549802038\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190210_123358.jpg\";}'),(12805,5204,'_wp_attached_file','2022/07/20190210_123533-scaled.jpg'),(12806,5204,'_wp_attachment_image_alt','20190210 123533'),(12807,5204,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190210_123533-scaled.jpg\";s:8:\"filesize\";i:274823;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190210_123533-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34636;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190210_123533-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23134;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190210_123533-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107651;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190210_123533-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126690;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190210_123533-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195136;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190210_123533-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16652;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190210_123533-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29501;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123533-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31403;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190210_123533-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69874;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190210_123533-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113835;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123533-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19829;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190210_123533-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24429;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190210_123533-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34636;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123533-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22211;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190210_123533-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32643;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190210_123533-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71924;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549802133\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190210_123533.jpg\";}'),(12808,5205,'_wp_attached_file','2022/07/20190210_123559-scaled.jpg'),(12809,5205,'_wp_attachment_image_alt','20190210 123559'),(12810,5205,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190210_123559-scaled.jpg\";s:8:\"filesize\";i:358901;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190210_123559-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36330;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190210_123559-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22222;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190210_123559-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121137;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190210_123559-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145439;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190210_123559-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:237354;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190210_123559-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16898;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190210_123559-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27562;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123559-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32764;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190210_123559-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76312;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190210_123559-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128675;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123559-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20210;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190210_123559-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25093;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190210_123559-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36330;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123559-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20952;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190210_123559-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28866;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190210_123559-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63723;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549802158\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190210_123559.jpg\";}'),(12811,5206,'_wp_attached_file','2022/07/20190210_123613.jpg'),(12812,5206,'_wp_attachment_image_alt','20190210 123613'),(12813,5206,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:2133;s:4:\"file\";s:27:\"2022/07/20190210_123613.jpg\";s:8:\"filesize\";i:1080513;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190210_123613-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39455;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190210_123613-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20557;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190210_123613-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216735;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190210_123613-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:268929;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190210_123613-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:462190;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190210_123613-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11097;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190210_123613-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33162;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123613-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33188;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190210_123613-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117559;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190210_123613-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:231627;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123613-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14699;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190210_123613-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21386;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190210_123613-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39455;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190210_123613-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19648;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190210_123613-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41221;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190210_123613-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166452;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549802173\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12814,5190,'_yoast_wpseo_content_score','90'),(12817,1789,'_yoast_wpseo_content_score','90'),(12818,1789,'_yoast_wpseo_estimated-reading-time-minutes','1'),(12819,1789,'_yoast_wpseo_wordproof_timestamp',''),(12820,5214,'_wp_attached_file','2022/07/20190211_013855.mp4'),(12821,5214,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:2398536;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:9;s:16:\"length_formatted\";s:4:\"0:09\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550589822;}'),(12822,5215,'_wp_attached_file','2022/07/20190211_014135.mp4'),(12823,5215,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:3247212;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:13;s:16:\"length_formatted\";s:4:\"0:13\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550589879;}'),(12824,5216,'_wp_attached_file','2022/07/20190211_054908.jpg'),(12825,5216,'_wp_attachment_image_alt','20190211 054908'),(12826,5216,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:2238;s:4:\"file\";s:27:\"2022/07/20190211_054908.jpg\";s:8:\"filesize\";i:1630969;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190211_054908-268x500.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53178;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190211_054908-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20875;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190211_054908-768x1432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:380961;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190211_054908-824x1536.jpg\";s:5:\"width\";i:824;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:433812;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190211_054908-1098x2048.jpg\";s:5:\"width\";i:1098;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:729916;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190211_054908-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7089;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190211_054908-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38778;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190211_054908-250x466.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47348;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:28:\"20190211_054908-550x1026.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202320;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190211_054908-800x1492.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1492;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:407775;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:26:\"20190211_054908-97x180.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13053;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190211_054908-161x300.jpg\";s:5:\"width\";i:161;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24016;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190211_054908-268x500.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53178;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190211_054908-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17949;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190211_054908-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43750;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190211_054908-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150351;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549849933\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00064102564102564\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12827,5217,'_wp_attached_file','2022/07/20190211_064549.jpg'),(12828,5217,'_wp_attachment_image_alt','20190211 064549'),(12829,5217,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:2133;s:4:\"file\";s:27:\"2022/07/20190211_064549.jpg\";s:8:\"filesize\";i:889661;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190211_064549-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32672;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190211_064549-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16751;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190211_064549-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176241;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190211_064549-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218803;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190211_064549-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:375049;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190211_064549-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9724;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190211_064549-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26519;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190211_064549-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27897;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190211_064549-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96173;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190211_064549-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188358;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190211_064549-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12645;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190211_064549-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18074;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190211_064549-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32672;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190211_064549-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15569;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190211_064549-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30988;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190211_064549-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116090;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549867549\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:17:\"0.002092050209205\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12830,5218,'_wp_attached_file','2022/07/20190211_064815.jpg'),(12831,5218,'_wp_attachment_image_alt','20190211 064815'),(12832,5218,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:2133;s:4:\"file\";s:27:\"2022/07/20190211_064815.jpg\";s:8:\"filesize\";i:1053310;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190211_064815-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49126;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190211_064815-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22707;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190211_064815-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:275389;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190211_064815-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:332216;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190211_064815-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:520209;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190211_064815-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11409;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190211_064815-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39796;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190211_064815-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40837;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190211_064815-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157379;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190211_064815-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:292162;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190211_064815-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15547;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190211_064815-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24079;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190211_064815-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49126;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190211_064815-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21035;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190211_064815-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48172;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190211_064815-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154910;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549867694\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:17:\"0.002262443438914\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12833,5219,'_wp_attached_file','2022/07/20190211_083321-scaled.jpg'),(12834,5219,'_wp_attachment_image_alt','20190211 083321'),(12835,5219,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190211_083321-scaled.jpg\";s:8:\"filesize\";i:320123;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190211_083321-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62177;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190211_083321-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47197;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190211_083321-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106489;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190211_083321-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167432;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190211_083321-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:239956;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190211_083321-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40249;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190211_083321-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53564;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190211_083321-250x333.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51820;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190211_083321-550x733.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79923;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190211_083321-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111213;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190211_083321-135x180.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44380;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190211_083321-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50201;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190211_083321-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62177;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190211_083321-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46510;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190211_083321-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56867;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190211_083321-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92318;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549874001\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.95\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:17:\"0.083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190211_083321.jpg\";}'),(12836,5220,'_wp_attached_file','2022/07/20190211_083429-scaled.jpg'),(12837,5220,'_wp_attachment_image_alt','20190211 083429'),(12838,5220,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190211_083429-scaled.jpg\";s:8:\"filesize\";i:335266;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190211_083429-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63621;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190211_083429-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47992;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190211_083429-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109310;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190211_083429-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173309;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190211_083429-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:250306;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190211_083429-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40959;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190211_083429-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54300;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190211_083429-250x333.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52981;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190211_083429-550x733.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81654;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190211_083429-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114421;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190211_083429-135x180.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45346;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190211_083429-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51339;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190211_083429-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63621;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190211_083429-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46838;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190211_083429-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56521;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190211_083429-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90530;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549874069\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.95\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:17:\"0.083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190211_083429.jpg\";}'),(12839,5230,'_wp_attached_file','2022/07/20190211_215121-scaled.jpg'),(12840,5230,'_wp_attachment_image_alt','20190211 215121'),(12841,5230,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190211_215121-scaled.jpg\";s:8:\"filesize\";i:934491;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190211_215121-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70116;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190211_215121-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38220;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190211_215121-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:323505;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190211_215121-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:395237;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190211_215121-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:645382;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190211_215121-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27834;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190211_215121-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52081;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190211_215121-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61315;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190211_215121-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185757;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190211_215121-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:346584;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190211_215121-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33097;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190211_215121-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42910;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190211_215121-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70116;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190211_215121-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35411;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190211_215121-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55500;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190211_215121-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144314;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549921881\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:18:\"0.0083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190211_215121.jpg\";}'),(12842,5231,'_wp_attached_file','2022/07/20190211_221519-scaled.jpg'),(12843,5231,'_wp_attachment_image_alt','20190211 221519'),(12844,5231,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190211_221519-scaled.jpg\";s:8:\"filesize\";i:460049;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190211_221519-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43320;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190211_221519-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28487;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190211_221519-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171186;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190211_221519-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206053;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190211_221519-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:325617;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190211_221519-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19409;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190211_221519-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38507;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190211_221519-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38613;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190211_221519-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102753;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190211_221519-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182354;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190211_221519-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22833;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190211_221519-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28812;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190211_221519-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43320;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190211_221519-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26816;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190211_221519-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42051;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190211_221519-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96276;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549923319\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00043497172683776\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190211_221519.jpg\";}'),(12845,5232,'_wp_attached_file','2022/07/20190211_235333.mp4'),(12846,5232,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:1303685;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:8;s:16:\"length_formatted\";s:4:\"0:08\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1549958022;}'),(12847,5233,'_wp_attached_file','2022/07/20190211_235514-scaled.jpg'),(12848,5233,'_wp_attachment_image_alt','20190211 235514'),(12849,5233,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190211_235514-scaled.jpg\";s:8:\"filesize\";i:820699;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190211_235514-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68149;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190211_235514-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39282;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190211_235514-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118020;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190211_235514-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:354825;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190211_235514-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:571549;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190211_235514-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27669;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190211_235514-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53260;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190211_235514-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38628;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190211_235514-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76143;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190211_235514-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125598;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190211_235514-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45057;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190211_235514-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73442;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190211_235514-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147247;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190211_235514-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37359;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190211_235514-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60102;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190211_235514-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171296;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549929314\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0024813895781638\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190211_235514.jpg\";}'),(12850,5234,'_wp_attached_file','2022/07/20190211_235530-scaled.jpg'),(12851,5234,'_wp_attachment_image_alt','20190211 235530'),(12852,5234,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190211_235530-scaled.jpg\";s:8:\"filesize\";i:778184;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190211_235530-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67313;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190211_235530-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39390;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190211_235530-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:283399;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190211_235530-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:342236;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190211_235530-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:545564;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190211_235530-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27562;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190211_235530-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53819;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190211_235530-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59554;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190211_235530-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167655;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190211_235530-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:302316;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190211_235530-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33039;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190211_235530-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42625;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190211_235530-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67313;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190211_235530-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37065;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190211_235530-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59888;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190211_235530-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147995;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549929330\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0026455026455026\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190211_235530.jpg\";}'),(12853,5235,'_wp_attached_file','2022/07/20190211_235530-1-scaled.jpg'),(12854,5235,'_wp_attachment_image_alt','20190211 235530'),(12855,5235,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:36:\"2022/07/20190211_235530-1-scaled.jpg\";s:8:\"filesize\";i:763903;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"20190211_235530-1-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53883;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"20190211_235530-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25976;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"20190211_235530-1-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:269430;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"20190211_235530-1-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:328144;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:31:\"20190211_235530-1-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:530890;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:27:\"20190211_235530-1-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14174;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:29:\"20190211_235530-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40433;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:29:\"20190211_235530-1-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46148;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:29:\"20190211_235530-1-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154051;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:30:\"20190211_235530-1-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:288372;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:29:\"20190211_235530-1-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19661;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:29:\"20190211_235530-1-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29211;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:29:\"20190211_235530-1-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53883;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:29:\"20190211_235530-1-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23666;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:29:\"20190211_235530-1-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46468;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:30:\"20190211_235530-1-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134338;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549929330\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0026455026455026\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"20190211_235530-1.jpg\";}'),(12856,5236,'_wp_attached_file','2022/07/20190212_013444-scaled.jpg'),(12857,5236,'_wp_attachment_image_alt','20190212 013444'),(12858,5236,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190212_013444-scaled.jpg\";s:8:\"filesize\";i:1133974;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190212_013444-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77396;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190212_013444-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43705;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190212_013444-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:374928;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190212_013444-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:461948;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190212_013444-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:771040;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190212_013444-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30394;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190212_013444-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62133;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190212_013444-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67178;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190212_013444-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211795;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190212_013444-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:402709;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190212_013444-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35702;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190212_013444-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46539;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190212_013444-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77396;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190212_013444-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41094;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190212_013444-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70434;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190212_013444-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202809;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549935283\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0029673590504451\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190212_013444.jpg\";}'),(12859,5237,'_wp_attached_file','2022/07/20190212_013459-scaled.jpg'),(12860,5237,'_wp_attachment_image_alt','20190212 013459'),(12861,5237,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190212_013459-scaled.jpg\";s:8:\"filesize\";i:867683;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190212_013459-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52274;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190212_013459-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25116;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190212_013459-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:283442;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190212_013459-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:350449;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190212_013459-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:586530;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190212_013459-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12957;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190212_013459-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40728;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190212_013459-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44109;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190212_013459-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156917;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190212_013459-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:304815;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190212_013459-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17769;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190212_013459-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27060;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190212_013459-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52274;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190212_013459-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22660;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190212_013459-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47583;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190212_013459-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153938;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549935298\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0016611295681063\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190212_013459.jpg\";}'),(12862,5238,'_wp_attached_file','2022/07/20190212_014025-scaled.jpg'),(12863,5238,'_wp_attachment_image_alt','20190212 014025'),(12864,5238,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190212_014025-scaled.jpg\";s:8:\"filesize\";i:1143427;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190212_014025-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84853;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190212_014025-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47154;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190212_014025-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:389734;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190212_014025-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:477244;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190212_014025-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:784040;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190212_014025-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33138;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190212_014025-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65125;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190212_014025-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74165;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190212_014025-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223941;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190212_014025-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:418245;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190212_014025-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39637;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190212_014025-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51778;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190212_014025-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84853;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190212_014025-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44270;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190212_014025-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72468;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190212_014025-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196820;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549935624\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0061728395061728\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190212_014025.jpg\";}'),(12865,5239,'_wp_attached_file','2022/07/20190212_014035-scaled.jpg'),(12866,5239,'_wp_attachment_image_alt','20190212 014035'),(12867,5239,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190212_014035-scaled.jpg\";s:8:\"filesize\";i:424240;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190212_014035-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44456;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190212_014035-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17971;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190212_014035-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114751;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190212_014035-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203761;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190212_014035-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:308497;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190212_014035-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8795;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190212_014035-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27162;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190212_014035-250x333.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27420;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190212_014035-550x733.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73033;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190212_014035-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122150;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190212_014035-135x180.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15128;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190212_014035-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24462;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190212_014035-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44456;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190212_014035-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16110;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190212_014035-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29947;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190212_014035-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75128;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549935635\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.95\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190212_014035.jpg\";}'),(12868,5240,'_wp_attached_file','2022/07/20190212_023336.mp4'),(12869,5240,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:4392034;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:20;s:16:\"length_formatted\";s:4:\"0:20\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550590211;}'),(12870,5241,'_wp_attached_file','2022/07/20190212_054153-scaled.jpg'),(12871,5241,'_wp_attachment_image_alt','20190212 054153'),(12872,5241,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190212_054153-scaled.jpg\";s:8:\"filesize\";i:879298;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190212_054153-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47200;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190212_054153-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21602;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190212_054153-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:274823;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190212_054153-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:342326;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190212_054153-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:587188;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190212_054153-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12264;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190212_054153-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33718;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190212_054153-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39659;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190212_054153-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148240;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190212_054153-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:296379;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190212_054153-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16502;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190212_054153-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24677;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190212_054153-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47200;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190212_054153-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19508;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190212_054153-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38135;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190212_054153-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118333;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549950113\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0055555555555556\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190212_054153.jpg\";}'),(12873,5242,'_wp_attached_file','2022/07/20190212_054153-1-scaled.jpg'),(12874,5242,'_wp_attachment_image_alt','20190212 054153'),(12875,5242,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:36:\"2022/07/20190212_054153-1-scaled.jpg\";s:8:\"filesize\";i:879298;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"20190212_054153-1-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47200;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"20190212_054153-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21602;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"20190212_054153-1-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:274823;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"20190212_054153-1-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:342326;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:31:\"20190212_054153-1-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:587188;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:27:\"20190212_054153-1-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12264;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:29:\"20190212_054153-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33718;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:29:\"20190212_054153-1-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39659;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:29:\"20190212_054153-1-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148240;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:30:\"20190212_054153-1-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:296379;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:29:\"20190212_054153-1-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16502;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:29:\"20190212_054153-1-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24677;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:29:\"20190212_054153-1-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47200;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:29:\"20190212_054153-1-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19508;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:29:\"20190212_054153-1-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38135;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:30:\"20190212_054153-1-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118333;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549950113\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0055555555555556\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"20190212_054153-1.jpg\";}'),(12876,5243,'_wp_attached_file','2022/07/20190212_054205-scaled.jpg'),(12877,5243,'_wp_attachment_image_alt','20190212 054205'),(12878,5243,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190212_054205-scaled.jpg\";s:8:\"filesize\";i:1150133;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190212_054205-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56516;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190212_054205-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24076;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190212_054205-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:355802;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190212_054205-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:446256;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190212_054205-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:769954;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190212_054205-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13096;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190212_054205-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38566;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190212_054205-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47074;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190212_054205-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187992;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190212_054205-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:384979;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190212_054205-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18151;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190212_054205-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28107;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190212_054205-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56516;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190212_054205-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21733;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190212_054205-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43397;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190212_054205-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136799;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549950125\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:18:\"0.0083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190212_054205.jpg\";}'),(12879,5244,'_wp_attached_file','2022/07/20190212_054306-scaled.jpg'),(12880,5244,'_wp_attachment_image_alt','20190212 054306'),(12881,5244,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190212_054306-scaled.jpg\";s:8:\"filesize\";i:313038;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190212_054306-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33128;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190212_054306-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18700;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190212_054306-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122430;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190212_054306-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145007;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190212_054306-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223937;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190212_054306-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11751;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190212_054306-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25675;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190212_054306-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29341;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190212_054306-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76253;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190212_054306-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129998;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190212_054306-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15459;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190212_054306-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20870;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190212_054306-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33128;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190212_054306-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17447;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190212_054306-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28450;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190212_054306-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64644;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549950186\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:18:\"0.0083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190212_054306.jpg\";}'),(12882,5245,'_wp_attached_file','2022/07/20190212_054706-scaled.jpg'),(12883,5245,'_wp_attachment_image_alt','20190212 054706'),(12884,5245,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190212_054706-scaled.jpg\";s:8:\"filesize\";i:938880;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190212_054706-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59767;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190212_054706-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34743;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190212_054706-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108698;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190212_054706-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:369867;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190212_054706-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:630438;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190212_054706-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24116;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190212_054706-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49325;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190212_054706-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33012;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190212_054706-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67136;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190212_054706-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116216;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190212_054706-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38706;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190212_054706-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64512;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190212_054706-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138955;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190212_054706-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32387;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190212_054706-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54321;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190212_054706-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165936;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549950426\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:18:\"0.0083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190212_054706.jpg\";}'),(12885,5246,'_wp_attached_file','2022/07/20190212_054843-scaled.jpg'),(12886,5246,'_wp_attachment_image_alt','20190212 054843'),(12887,5246,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190212_054843-scaled.jpg\";s:8:\"filesize\";i:359577;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190212_054843-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37906;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190212_054843-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20671;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190212_054843-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63178;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190212_054843-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165270;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190212_054843-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:255204;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190212_054843-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12571;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190212_054843-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29081;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190212_054843-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20253;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190212_054843-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42223;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190212_054843-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67082;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190212_054843-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24439;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190212_054843-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40700;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190212_054843-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77460;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190212_054843-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19639;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190212_054843-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33699;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190212_054843-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85910;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1549950523\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190212_054843.jpg\";}'),(12888,2232,'_yoast_wpseo_content_score','90'),(12889,2232,'_yoast_wpseo_estimated-reading-time-minutes','1'),(12890,2232,'_yoast_wpseo_wordproof_timestamp',''),(12891,5252,'_edit_lock','1658982716:8'),(12892,5252,'_edit_last','8'),(12893,5253,'_wp_attached_file','2022/07/20190212_205057-scaled.jpg'),(12894,5253,'_wp_attachment_image_alt','20190212 205057'),(12895,5253,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190212_205057-scaled.jpg\";s:8:\"filesize\";i:941008;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190212_205057-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71407;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190212_205057-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39626;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190212_205057-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:317142;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190212_205057-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:387039;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190212_205057-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:638565;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190212_205057-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28388;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190212_205057-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53454;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190212_205057-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62676;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190212_205057-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:183235;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190212_205057-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:339885;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190212_205057-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34143;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190212_205057-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44453;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190212_205057-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71407;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190212_205057-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37323;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190212_205057-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57789;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190212_205057-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138018;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550004657\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:17:\"0.004950495049505\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190212_205057.jpg\";}'),(12896,5254,'_wp_attached_file','2022/07/20190212_205203-scaled.jpg'),(12897,5254,'_wp_attachment_image_alt','20190212 205203'),(12898,5254,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190212_205203-scaled.jpg\";s:8:\"filesize\";i:1088976;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190212_205203-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59665;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190212_205203-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26372;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190212_205203-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:344563;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190212_205203-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:428612;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190212_205203-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:731329;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190212_205203-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14120;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190212_205203-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42748;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190212_205203-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50005;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190212_205203-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186999;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190212_205203-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:371266;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190212_205203-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19823;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190212_205203-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30483;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190212_205203-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59665;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190212_205203-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23896;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190212_205203-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50078;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190212_205203-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:183064;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550004723\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190212_205203.jpg\";}'),(12899,5255,'_wp_attached_file','2022/07/20190212_225420-scaled.jpg'),(12900,5255,'_wp_attachment_image_alt','20190212 225420'),(12901,5255,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190212_225420-scaled.jpg\";s:8:\"filesize\";i:576192;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190212_225420-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43386;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190212_225420-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25139;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190212_225420-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186541;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190212_225420-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228533;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190212_225420-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:383540;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190212_225420-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18421;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190212_225420-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33287;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190212_225420-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38257;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190212_225420-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108124;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190212_225420-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200035;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190212_225420-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21959;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190212_225420-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27810;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190212_225420-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43386;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190212_225420-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23466;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190212_225420-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35470;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190212_225420-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89553;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550012060\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00048449612403101\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190212_225420.jpg\";}'),(12902,5256,'_wp_attached_file','2022/07/20190213_003717-scaled.jpg'),(12903,5256,'_wp_attachment_image_alt','20190213 003717'),(12904,5256,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190213_003717-scaled.jpg\";s:8:\"filesize\";i:634541;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190213_003717-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42430;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190213_003717-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17240;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190213_003717-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127418;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190213_003717-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256371;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190213_003717-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:427055;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190213_003717-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8073;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190213_003717-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27152;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190213_003717-250x333.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25141;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190213_003717-550x733.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74583;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190213_003717-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136690;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190213_003717-135x180.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13665;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190213_003717-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22385;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190213_003717-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42430;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190213_003717-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15788;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190213_003717-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31674;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190213_003717-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99852;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550018237\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.95\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:18:\"0.0011261261261261\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190213_003717.jpg\";}'),(12905,5257,'_wp_attached_file','2022/07/20190213_012240-scaled.jpg'),(12906,5257,'_wp_attachment_image_alt','20190213 012240'),(12907,5257,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190213_012240-scaled.jpg\";s:8:\"filesize\";i:230614;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190213_012240-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24707;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190213_012240-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15616;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190213_012240-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37172;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190213_012240-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97967;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190213_012240-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159220;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190213_012240-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10483;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190213_012240-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19876;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190213_012240-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15454;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190213_012240-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26756;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190213_012240-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39099;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190213_012240-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17786;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190213_012240-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26015;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190213_012240-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44714;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190213_012240-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14987;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190213_012240-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22002;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190213_012240-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50179;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550020960\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00038109756097561\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190213_012240.jpg\";}'),(12908,5258,'_wp_attached_file','2022/07/20190213_015500.mp4'),(12909,5258,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:1263920;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:20;s:16:\"length_formatted\";s:4:\"0:20\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550590034;}'),(12910,5259,'_wp_attached_file','2022/07/20190213_024020-scaled.jpg'),(12911,5259,'_wp_attachment_image_alt','20190213 024020'),(12912,5259,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190213_024020-scaled.jpg\";s:8:\"filesize\";i:343696;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190213_024020-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30981;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190213_024020-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16745;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190213_024020-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56125;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190213_024020-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161700;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190213_024020-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:248917;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190213_024020-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10463;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190213_024020-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24642;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190213_024020-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15821;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190213_024020-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35103;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190213_024020-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60375;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190213_024020-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19085;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190213_024020-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33667;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190213_024020-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70755;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190213_024020-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15361;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190213_024020-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27467;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190213_024020-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79744;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550025620\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00031595576619273\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190213_024020.jpg\";}'),(12913,5260,'_wp_attached_file','2022/07/20190213_050504-scaled.jpg'),(12914,5260,'_wp_attachment_image_alt','20190213 050504'),(12915,5260,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190213_050504-scaled.jpg\";s:8:\"filesize\";i:839878;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190213_050504-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38102;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190213_050504-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16680;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190213_050504-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232718;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190213_050504-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:294018;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190213_050504-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:531055;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190213_050504-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7154;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190213_050504-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28627;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190213_050504-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31629;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190213_050504-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122895;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190213_050504-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:251882;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190213_050504-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11522;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190213_050504-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18728;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190213_050504-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38102;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190213_050504-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14822;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190213_050504-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34156;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190213_050504-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130719;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550012068\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00046189376443418\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190213_050504.jpg\";}'),(12916,5261,'_wp_attached_file','2022/07/20190213_051720-scaled.jpg'),(12917,5261,'_wp_attachment_image_alt','20190213 051720'),(12918,5261,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1790;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190213_051720-scaled.jpg\";s:8:\"filesize\";i:511252;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190213_051720-350x500.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36255;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190213_051720-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17535;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190213_051720-768x1098.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1098;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102167;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190213_051720-1074x1536.jpg\";s:5:\"width\";i:1074;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184473;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190213_051720-1432x2048.jpg\";s:5:\"width\";i:1432;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:326152;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190213_051720-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8613;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190213_051720-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25320;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190213_051720-250x358.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:358;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25702;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190213_051720-550x787.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:787;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63392;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190213_051720-800x1144.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1144;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108915;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190213_051720-126x180.jpg\";s:5:\"width\";i:126;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14339;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190213_051720-210x300.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21764;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190213_051720-350x500.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36255;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190213_051720-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16033;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190213_051720-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27936;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190213_051720-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80363;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550022816\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00050403225806452\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190213_051720.jpg\";}'),(12919,5252,'_wp_page_template','default'),(12920,5252,'_yoast_wpseo_content_score','60'),(12921,5252,'_yoast_wpseo_estimated-reading-time-minutes','1'),(12922,5252,'_yoast_wpseo_wordproof_timestamp',''),(12923,2239,'_yoast_wpseo_content_score','90'),(12924,2239,'_yoast_wpseo_estimated-reading-time-minutes','1'),(12925,2239,'_yoast_wpseo_wordproof_timestamp',''),(12926,5266,'_wp_attached_file','2022/07/20190214_193726.mp4'),(12927,5266,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:1648579;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:25;s:16:\"length_formatted\";s:4:\"0:25\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550595038;}'),(12928,5267,'_wp_attached_file','2022/07/20190215_053648.jpg'),(12929,5267,'_wp_attachment_image_alt','20190215 053648'),(12930,5267,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:2133;s:4:\"file\";s:27:\"2022/07/20190215_053648.jpg\";s:8:\"filesize\";i:853142;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190215_053648-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35169;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190215_053648-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19669;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190215_053648-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176841;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190215_053648-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219263;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190215_053648-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:373191;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190215_053648-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10371;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190215_053648-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30936;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190215_053648-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30314;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190215_053648-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97460;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190215_053648-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188935;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190215_053648-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13938;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190215_053648-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20020;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190215_053648-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35169;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190215_053648-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18679;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190215_053648-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37931;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190215_053648-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140327;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550209008\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"7.4052132701422E-5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12931,5268,'_wp_attached_file','2022/07/20190215_194441-scaled.jpg'),(12932,5268,'_wp_attachment_image_alt','20190215 194441'),(12933,5268,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190215_194441-scaled.jpg\";s:8:\"filesize\";i:314286;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190215_194441-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29887;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190215_194441-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16576;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190215_194441-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50488;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190215_194441-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139494;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190215_194441-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:220654;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190215_194441-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10679;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190215_194441-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23364;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190215_194441-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16258;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190215_194441-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33432;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190215_194441-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53640;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190215_194441-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19401;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190215_194441-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32086;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190215_194441-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62336;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190215_194441-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15629;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190215_194441-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26363;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190215_194441-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74313;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550259881\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:18:\"0.0083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190215_194441.jpg\";}'),(12934,5269,'_wp_attached_file','2022/07/20190215_195143.jpg'),(12935,5269,'_wp_attachment_image_alt','20190215 195143'),(12936,5269,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:2133;s:4:\"file\";s:27:\"2022/07/20190215_195143.jpg\";s:8:\"filesize\";i:1122732;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190215_195143-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46471;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190215_195143-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20816;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190215_195143-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:247877;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190215_195143-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:305712;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190215_195143-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:510659;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190215_195143-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11096;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190215_195143-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33097;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190215_195143-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39326;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190215_195143-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137452;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190215_195143-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264462;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190215_195143-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15773;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190215_195143-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24374;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190215_195143-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46471;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190215_195143-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18690;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190215_195143-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36009;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190215_195143-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128911;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550260303\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0062893081761006\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12937,5270,'_wp_attached_file','2022/07/20190215_232436-scaled.jpg'),(12938,5270,'_wp_attachment_image_alt','20190215 232436'),(12939,5270,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2022/07/20190215_232436-scaled.jpg\";s:8:\"filesize\";i:583462;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190215_232436-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93949;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190215_232436-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70592;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190215_232436-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127377;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190215_232436-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:276879;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190215_232436-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:417484;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190215_232436-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62391;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190215_232436-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79103;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190215_232436-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72378;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190215_232436-550x413.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99557;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190215_232436-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132026;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190215_232436-240x180.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71691;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190215_232436-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84100;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190215_232436-667x500.jpg\";s:5:\"width\";i:667;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114157;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190215_232436-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69553;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190215_232436-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83448;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190215_232436-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143388;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550273076\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.95\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:18:\"0.0036764705882353\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190215_232436.jpg\";}'),(12940,5271,'_wp_attached_file','2022/07/20190215_234842.jpg'),(12941,5271,'_wp_attachment_image_alt','20190215 234842'),(12942,5271,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:2133;s:4:\"file\";s:27:\"2022/07/20190215_234842.jpg\";s:8:\"filesize\";i:830399;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190215_234842-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36654;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190215_234842-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19426;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190215_234842-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174126;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190215_234842-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:212967;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190215_234842-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:356255;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190215_234842-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10516;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190215_234842-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29821;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190215_234842-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31448;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190215_234842-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98768;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190215_234842-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184738;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190215_234842-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14414;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190215_234842-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20883;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190215_234842-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36654;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190215_234842-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17566;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190215_234842-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32823;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190215_234842-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101235;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550274522\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0010752688172043\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12943,5272,'_wp_attached_file','2022/07/20190215_234955.jpg'),(12944,5272,'_wp_attachment_image_alt','20190215 234955'),(12945,5272,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:2133;s:4:\"file\";s:27:\"2022/07/20190215_234955.jpg\";s:8:\"filesize\";i:830060;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190215_234955-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39594;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190215_234955-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20138;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190215_234955-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192577;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190215_234955-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:234450;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190215_234955-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:382746;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190215_234955-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10944;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190215_234955-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30976;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190215_234955-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33934;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190215_234955-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109547;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190215_234955-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204398;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190215_234955-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14799;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190215_234955-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21863;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190215_234955-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39594;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190215_234955-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18609;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190215_234955-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35313;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190215_234955-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100493;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550274595\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00093196644920783\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12946,5273,'_wp_attached_file','2022/07/20190216_001419.jpg'),(12947,5273,'_wp_attachment_image_alt','20190216 001419'),(12948,5273,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:2133;s:4:\"file\";s:27:\"2022/07/20190216_001419.jpg\";s:8:\"filesize\";i:783636;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190216_001419-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35440;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190216_001419-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18872;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190216_001419-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166883;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190216_001419-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203880;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190216_001419-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:339443;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190216_001419-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10523;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190216_001419-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28525;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190216_001419-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30426;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190216_001419-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95528;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190216_001419-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177415;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190216_001419-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13965;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190216_001419-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20125;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190216_001419-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35440;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190216_001419-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17210;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190216_001419-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31173;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190216_001419-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87734;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550276059\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00080385852090032\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12949,5274,'_wp_attached_file','2022/07/20190216_013949-scaled.jpg'),(12950,5274,'_wp_attachment_image_alt','20190216 013949'),(12951,5274,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190216_013949-scaled.jpg\";s:8:\"filesize\";i:322216;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190216_013949-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30474;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190216_013949-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19439;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190216_013949-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48605;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190216_013949-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137613;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190216_013949-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222567;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190216_013949-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14934;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190216_013949-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25050;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190216_013949-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19237;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190216_013949-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33388;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190216_013949-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51952;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190216_013949-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21681;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190216_013949-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32389;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190216_013949-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59968;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190216_013949-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18731;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190216_013949-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27420;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190216_013949-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66992;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550281189\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00012860082304527\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190216_013949.jpg\";}'),(12952,5275,'_wp_attached_file','2022/07/20190216_014458.jpg'),(12953,5275,'_wp_attachment_image_alt','20190216 014458'),(12954,5275,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:27:\"2022/07/20190216_014458.jpg\";s:8:\"filesize\";i:346137;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190216_014458-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38524;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190216_014458-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20112;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190216_014458-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72357;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190216_014458-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11992;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190216_014458-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30474;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190216_014458-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18807;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190216_014458-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43750;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190216_014458-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77548;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190216_014458-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23216;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190216_014458-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42031;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190216_014458-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93700;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190216_014458-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18240;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190216_014458-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34287;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190216_014458-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114869;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550281498\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00088261253309797\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12955,5276,'_wp_attached_file','2022/07/20190216_015352.jpg'),(12956,5276,'_wp_attachment_image_alt','20190216 015352'),(12957,5276,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:2133;s:4:\"file\";s:27:\"2022/07/20190216_015352.jpg\";s:8:\"filesize\";i:764422;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190216_015352-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41233;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190216_015352-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20211;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190216_015352-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170408;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190216_015352-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204667;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190216_015352-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:327066;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190216_015352-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11180;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190216_015352-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29798;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190216_015352-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35760;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190216_015352-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103153;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190216_015352-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181022;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190216_015352-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16030;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190216_015352-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23496;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190216_015352-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41233;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190216_015352-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17874;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190216_015352-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31272;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190216_015352-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78894;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550282032\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0016025641025641\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12958,5277,'_wp_attached_file','2022/07/20190216_015509.jpg'),(12959,5277,'_wp_attachment_image_alt','20190216 015509'),(12960,5277,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:2133;s:4:\"file\";s:27:\"2022/07/20190216_015509.jpg\";s:8:\"filesize\";i:864459;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190216_015509-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38077;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190216_015509-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19157;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190216_015509-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179158;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190216_015509-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219708;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190216_015509-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:369025;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190216_015509-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10767;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190216_015509-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28163;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190216_015509-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32752;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190216_015509-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102053;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190216_015509-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190659;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190216_015509-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14950;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190216_015509-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21762;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190216_015509-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38077;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190216_015509-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17234;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190216_015509-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30316;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190216_015509-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92398;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550282109\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0018518518518519\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12961,5281,'_wp_attached_file','2022/07/20190216_180726-scaled.jpg'),(12962,5281,'_wp_attachment_image_alt','20190216 180726'),(12963,5281,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190216_180726-scaled.jpg\";s:8:\"filesize\";i:309574;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190216_180726-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59730;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190216_180726-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44542;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190216_180726-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103479;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190216_180726-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162634;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190216_180726-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232417;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190216_180726-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38620;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190216_180726-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50584;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190216_180726-250x333.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49341;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190216_180726-550x733.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77202;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190216_180726-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108059;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190216_180726-135x180.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42173;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190216_180726-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47652;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190216_180726-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59730;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190216_180726-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43326;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190216_180726-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52351;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190216_180726-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82928;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550340446\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.95\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:17:\"0.083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190216_180726.jpg\";}'),(12964,5282,'_wp_attached_file','2022/07/20190216_193521.jpg'),(12965,5282,'_wp_attachment_image_alt','20190216 193521'),(12966,5282,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:27:\"2022/07/20190216_193521.jpg\";s:8:\"filesize\";i:316217;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190216_193521-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39767;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190216_193521-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19621;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190216_193521-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74470;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190216_193521-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12190;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190216_193521-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29137;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190216_193521-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19394;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190216_193521-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45240;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190216_193521-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79378;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190216_193521-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23785;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190216_193521-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43356;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190216_193521-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95707;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190216_193521-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18316;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190216_193521-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33507;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190216_193521-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123839;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550345721\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12967,5283,'_wp_attached_file','2022/07/20190216_193531-scaled.jpg'),(12968,5283,'_wp_attachment_image_alt','20190216 193531'),(12969,5283,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190216_193531-scaled.jpg\";s:8:\"filesize\";i:364318;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190216_193531-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67512;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190216_193531-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50173;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190216_193531-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119259;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190216_193531-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189238;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190216_193531-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:272230;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190216_193531-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43548;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190216_193531-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57189;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190216_193531-250x333.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55667;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190216_193531-550x733.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88181;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190216_193531-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124747;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190216_193531-135x180.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47626;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190216_193531-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53790;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190216_193531-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67512;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190216_193531-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49660;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190216_193531-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61486;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190216_193531-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108364;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550345731\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.95\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190216_193531.jpg\";}'),(12970,5284,'_wp_attached_file','2022/07/20190216_193544-scaled.jpg'),(12971,5284,'_wp_attachment_image_alt','20190216 193544'),(12972,5284,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190216_193544-scaled.jpg\";s:8:\"filesize\";i:523608;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190216_193544-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88795;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190216_193544-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66733;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190216_193544-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164140;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190216_193544-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:267441;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190216_193544-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:388756;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190216_193544-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58295;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190216_193544-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75953;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190216_193544-250x333.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73016;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190216_193544-550x733.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117881;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190216_193544-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172147;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190216_193544-135x180.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63083;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190216_193544-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70622;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190216_193544-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88795;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190216_193544-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65330;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190216_193544-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80606;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190216_193544-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137914;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550345744\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.95\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190216_193544.jpg\";}'),(12973,5285,'_wp_attached_file','2022/07/20190216_221739-scaled.jpg'),(12974,5285,'_wp_attachment_image_alt','20190216 221739'),(12975,5285,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190216_221739-scaled.jpg\";s:8:\"filesize\";i:285291;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190216_221739-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32332;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190216_221739-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21122;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190216_221739-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49284;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190216_221739-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126867;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190216_221739-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199587;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190216_221739-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15822;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190216_221739-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26597;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190216_221739-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20960;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190216_221739-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35271;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190216_221739-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52398;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190216_221739-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23684;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190216_221739-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34236;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190216_221739-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59604;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190216_221739-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20325;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190216_221739-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29128;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190216_221739-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60514;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550355459\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00013888888888889\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190216_221739.jpg\";}'),(12976,5286,'_wp_attached_file','2022/07/20190216_222618-scaled.jpg'),(12977,5286,'_wp_attachment_image_alt','20190216 222618'),(12978,5286,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190216_222618-scaled.jpg\";s:8:\"filesize\";i:441336;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190216_222618-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37056;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190216_222618-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22877;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190216_222618-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59204;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190216_222618-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174411;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190216_222618-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:293659;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190216_222618-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17307;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190216_222618-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29251;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190216_222618-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23104;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190216_222618-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40597;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190216_222618-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63283;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190216_222618-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26303;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190216_222618-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39442;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190216_222618-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73566;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190216_222618-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22160;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190216_222618-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32266;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190216_222618-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77802;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550355978\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0001088850174216\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190216_222618.jpg\";}'),(12979,5287,'_wp_attached_file','2022/07/20190217_001438-scaled.jpg'),(12980,5287,'_wp_attachment_image_alt','20190217 001438'),(12981,5287,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2022/07/20190217_001438-scaled.jpg\";s:8:\"filesize\";i:636864;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190217_001438-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90519;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190217_001438-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61268;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190217_001438-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130721;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190217_001438-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:303821;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190217_001438-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:459198;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190217_001438-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51268;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190217_001438-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71989;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190217_001438-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63210;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190217_001438-550x413.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97115;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190217_001438-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136515;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190217_001438-240x180.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62334;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190217_001438-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78001;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190217_001438-667x500.jpg\";s:5:\"width\";i:667;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114890;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190217_001438-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59565;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190217_001438-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76665;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190217_001438-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142554;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550362478\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.95\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:19:\"0.00089928057553957\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190217_001438.jpg\";}'),(12982,5288,'_wp_attached_file','2022/07/20190217_001448-scaled.jpg'),(12983,5288,'_wp_attachment_image_alt','20190217 001448'),(12984,5288,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2022/07/20190217_001448-scaled.jpg\";s:8:\"filesize\";i:678591;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190217_001448-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96880;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190217_001448-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65759;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190217_001448-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139857;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190217_001448-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:323820;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190217_001448-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:487787;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190217_001448-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55005;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190217_001448-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77383;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190217_001448-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67640;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190217_001448-550x413.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104253;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190217_001448-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146202;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190217_001448-240x180.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66641;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190217_001448-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83624;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190217_001448-667x500.jpg\";s:5:\"width\";i:667;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123017;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190217_001448-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63842;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190217_001448-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82214;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190217_001448-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154180;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550362488\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.95\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:18:\"0.0011764705882353\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190217_001448.jpg\";}'),(12985,5289,'_wp_attached_file','2022/07/20190217_001526-scaled.jpg'),(12986,5289,'_wp_attachment_image_alt','20190217 001526'),(12987,5289,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190217_001526-scaled.jpg\";s:8:\"filesize\";i:546545;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190217_001526-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59179;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190217_001526-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37426;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190217_001526-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210015;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190217_001526-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249291;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190217_001526-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:387195;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190217_001526-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25097;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190217_001526-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51133;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190217_001526-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52917;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190217_001526-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132126;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190217_001526-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222612;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190217_001526-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30248;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190217_001526-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38890;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190217_001526-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59179;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190217_001526-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35412;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190217_001526-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57032;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190217_001526-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134340;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550362526\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00018996960486322\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190217_001526.jpg\";}'),(12988,5290,'_wp_attached_file','2022/07/20190217_005511-scaled.jpg'),(12989,5290,'_wp_attachment_image_alt','20190217 005511'),(12990,5290,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2022/07/20190217_005511-scaled.jpg\";s:8:\"filesize\";i:546237;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190217_005511-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88488;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190217_005511-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67417;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190217_005511-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118070;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190217_005511-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:259261;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190217_005511-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:392260;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190217_005511-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59936;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190217_005511-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74883;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190217_005511-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68767;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190217_005511-550x413.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93358;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190217_005511-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122689;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190217_005511-240x180.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68122;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190217_005511-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79490;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190217_005511-667x500.jpg\";s:5:\"width\";i:667;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106225;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190217_005511-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66246;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190217_005511-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78836;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190217_005511-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138845;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550364911\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.95\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:18:\"0.0011111111111111\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190217_005511.jpg\";}'),(12991,5291,'_wp_attached_file','2022/07/20190217_012500-scaled.jpg'),(12992,5291,'_wp_attachment_image_alt','20190217 012500'),(12993,5291,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2022/07/20190217_012500-scaled.jpg\";s:8:\"filesize\";i:387122;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190217_012500-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64364;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190217_012500-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50360;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190217_012500-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86199;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190217_012500-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189106;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190217_012500-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:282347;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190217_012500-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44868;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190217_012500-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56037;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190217_012500-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50823;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190217_012500-550x413.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67897;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190217_012500-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89238;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190217_012500-240x180.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50382;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190217_012500-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58033;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190217_012500-667x500.jpg\";s:5:\"width\";i:667;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77107;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190217_012500-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49130;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190217_012500-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57525;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190217_012500-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99031;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550366700\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.95\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:19:\"0.00075757575757576\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190217_012500.jpg\";}'),(12994,5292,'_wp_attached_file','2022/07/20190217_012521.jpg'),(12995,5292,'_wp_attachment_image_alt','20190217 012521'),(12996,5292,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:27:\"2022/07/20190217_012521.jpg\";s:8:\"filesize\";i:337883;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190217_012521-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43902;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190217_012521-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22630;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190217_012521-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81767;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190217_012521-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12859;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190217_012521-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34615;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190217_012521-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21159;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190217_012521-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49856;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190217_012521-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86864;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190217_012521-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26123;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190217_012521-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47710;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190217_012521-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103966;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190217_012521-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20622;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190217_012521-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39536;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190217_012521-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132718;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550366721\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"4.8374613003096E-5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(12997,5293,'_wp_attached_file','2022/07/20190217_013139-scaled.jpg'),(12998,5293,'_wp_attachment_image_alt','20190217 013139'),(12999,5293,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190217_013139-scaled.jpg\";s:8:\"filesize\";i:380859;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190217_013139-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38575;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190217_013139-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23993;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190217_013139-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137582;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190217_013139-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164561;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190217_013139-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:261992;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190217_013139-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17706;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190217_013139-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31067;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190217_013139-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34614;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190217_013139-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85043;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190217_013139-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146285;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190217_013139-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20995;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190217_013139-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26235;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190217_013139-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38575;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190217_013139-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22468;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190217_013139-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32851;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190217_013139-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66856;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550367098\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"8.7535014005602E-5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190217_013139.jpg\";}'),(13000,5294,'_wp_attached_file','2022/07/20190217_0228310-scaled.jpg'),(13001,5294,'_wp_attachment_image_alt','20190217 022831(0)'),(13002,5294,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:35:\"2022/07/20190217_0228310-scaled.jpg\";s:8:\"filesize\";i:399382;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"20190217_0228310-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44860;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"20190217_0228310-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27407;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190217_0228310-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70260;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190217_0228310-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180083;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"20190217_0228310-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:280469;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:26:\"20190217_0228310-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19824;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:28:\"20190217_0228310-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35300;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:28:\"20190217_0228310-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27434;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:28:\"20190217_0228310-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49112;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190217_0228310-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74324;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:28:\"20190217_0228310-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31407;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:28:\"20190217_0228310-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47617;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:28:\"20190217_0228310-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85308;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:28:\"20190217_0228310-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26459;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:28:\"20190217_0228310-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39374;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:29:\"20190217_0228310-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99086;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550370511\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00014602803738318\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"20190217_0228310.jpg\";}'),(13003,5295,'_wp_attached_file','2022/07/20190217_072131-scaled.jpg'),(13004,5295,'_wp_attachment_image_alt','20190217 072131'),(13005,5295,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190217_072131-scaled.jpg\";s:8:\"filesize\";i:271917;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190217_072131-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31024;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190217_072131-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19883;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190217_072131-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47544;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190217_072131-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122164;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190217_072131-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191104;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190217_072131-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15243;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190217_072131-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24749;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190217_072131-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19996;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190217_072131-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33742;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190217_072131-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50228;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190217_072131-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22604;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190217_072131-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32793;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190217_072131-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57515;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190217_072131-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19496;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190217_072131-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27829;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190217_072131-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66568;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550388091\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00038819875776398\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190217_072131.jpg\";}'),(13006,5296,'_wp_attached_file','2022/07/20190217_072223-scaled.jpg'),(13007,5296,'_wp_attachment_image_alt','20190217 072223'),(13008,5296,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:691;s:4:\"file\";s:34:\"2022/07/20190217_072223-scaled.jpg\";s:8:\"filesize\";i:182240;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190217_072223-500x135.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12257;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190217_072223-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5866;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190217_072223-768x207.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23286;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190217_072223-1536x415.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74031;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:28:\"20190217_072223-2048x553.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122949;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190217_072223-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1428;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190217_072223-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10767;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:26:\"20190217_072223-250x67.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4743;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190217_072223-550x148.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14244;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190217_072223-800x216.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25034;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190217_072223-667x180.jpg\";s:5:\"width\";i:667;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19039;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:28:\"20190217_072223-1111x300.jpg\";s:5:\"width\";i:1111;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43335;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:28:\"20190217_072223-1852x500.jpg\";s:5:\"width\";i:1852;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104456;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190217_072223-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5804;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190217_072223-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14553;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190217_072223-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63192;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550388142\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190217_072223.jpg\";}'),(13009,5297,'_wp_attached_file','2022/07/20190222_194502-scaled.jpg'),(13010,5297,'_wp_attachment_image_alt','20190222 194502'),(13011,5297,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1873;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190222_194502-scaled.jpg\";s:8:\"filesize\";i:463917;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190222_194502-366x500.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29737;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190222_194502-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9052;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190222_194502-768x1050.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102763;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190222_194502-1124x1536.jpg\";s:5:\"width\";i:1124;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197424;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190222_194502-1498x2048.jpg\";s:5:\"width\";i:1498;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:321527;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190222_194502-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2164;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190222_194502-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16809;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190222_194502-250x342.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16295;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190222_194502-550x752.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:752;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58352;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190222_194502-800x1093.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1093;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110346;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190222_194502-132x180.jpg\";s:5:\"width\";i:132;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6492;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190222_194502-219x300.jpg\";s:5:\"width\";i:219;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13254;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190222_194502-366x500.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29737;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190222_194502-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7439;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190222_194502-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18962;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190222_194502-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61462;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550367180\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"7.7000077000077E-5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190222_194502.jpg\";}'),(13012,2257,'_yoast_wpseo_content_score','90'),(13013,2257,'_yoast_wpseo_estimated-reading-time-minutes','1'),(13014,2257,'_yoast_wpseo_wordproof_timestamp',''),(13015,5299,'_wp_attached_file','2022/07/20190215_194444.mp4'),(13016,5299,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:1963261;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:20;s:16:\"length_formatted\";s:4:\"0:20\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550288707;}'),(13017,5300,'_wp_attached_file','2022/07/20190215_235706.mp4'),(13018,5300,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:3197311;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:31;s:16:\"length_formatted\";s:4:\"0:31\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550303858;}'),(13019,5301,'_wp_attached_file','2022/07/20190216_195500.mp4'),(13020,5301,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:1462900;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:17;s:16:\"length_formatted\";s:4:\"0:17\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550375718;}'),(13021,5302,'_wp_attached_file','2022/07/20190216_195900.mp4'),(13022,5302,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:1888864;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:17;s:16:\"length_formatted\";s:4:\"0:17\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550375958;}'),(13023,5303,'_wp_attached_file','2022/07/20190216_235405.mp4'),(13024,5303,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:1376100;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:8;s:16:\"length_formatted\";s:4:\"0:08\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550390053;}'),(13025,5304,'_wp_attached_file','2022/07/20190217_072234.mp4'),(13026,5304,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:1220590;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:17;s:16:\"length_formatted\";s:4:\"0:17\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550416973;}'),(13027,5310,'_wp_attached_file','2022/07/20190217_072131-1-scaled.jpg'),(13028,5310,'_wp_attachment_image_alt','20190217 072131'),(13029,5310,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:36:\"2022/07/20190217_072131-1-scaled.jpg\";s:8:\"filesize\";i:271917;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"20190217_072131-1-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31024;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"20190217_072131-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19883;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"20190217_072131-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47544;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"20190217_072131-1-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122164;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:31:\"20190217_072131-1-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191104;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:27:\"20190217_072131-1-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15243;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:29:\"20190217_072131-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24749;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:29:\"20190217_072131-1-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19996;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:29:\"20190217_072131-1-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33742;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:29:\"20190217_072131-1-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50228;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:29:\"20190217_072131-1-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22604;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:29:\"20190217_072131-1-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32793;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:29:\"20190217_072131-1-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57515;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:29:\"20190217_072131-1-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19496;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:29:\"20190217_072131-1-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27829;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:30:\"20190217_072131-1-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66568;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550388091\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00038819875776398\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"20190217_072131-1.jpg\";}'),(13030,5311,'_wp_attached_file','2022/07/20190217_072223-1-scaled.jpg'),(13031,5311,'_wp_attachment_image_alt','20190217 072223'),(13032,5311,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:691;s:4:\"file\";s:36:\"2022/07/20190217_072223-1-scaled.jpg\";s:8:\"filesize\";i:185511;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"20190217_072223-1-500x135.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14643;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"20190217_072223-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8275;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"20190217_072223-1-768x207.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25714;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"20190217_072223-1-1536x415.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76475;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"20190217_072223-1-2048x553.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125654;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:27:\"20190217_072223-1-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3830;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:29:\"20190217_072223-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13167;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:28:\"20190217_072223-1-250x67.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7140;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:29:\"20190217_072223-1-550x148.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16660;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:29:\"20190217_072223-1-800x216.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27427;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:29:\"20190217_072223-1-667x180.jpg\";s:5:\"width\";i:667;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21439;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:30:\"20190217_072223-1-1111x300.jpg\";s:5:\"width\";i:1111;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45780;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:30:\"20190217_072223-1-1852x500.jpg\";s:5:\"width\";i:1852;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107023;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:29:\"20190217_072223-1-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8210;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:29:\"20190217_072223-1-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16957;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:30:\"20190217_072223-1-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65649;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550388142\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"20190217_072223-1.jpg\";}'),(13033,5312,'_wp_attached_file','2022/07/20190216_195500-1.mp4'),(13034,5312,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:1462805;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:17;s:16:\"length_formatted\";s:4:\"0:17\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550595177;}'),(13035,5313,'_wp_attached_file','2022/07/20190216_195900-1.mp4'),(13036,5313,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:1888872;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:17;s:16:\"length_formatted\";s:4:\"0:17\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550595098;}'),(13037,5314,'_wp_attached_file','2022/07/20190216_235405-1.mp4'),(13038,5314,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:1376005;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:8;s:16:\"length_formatted\";s:4:\"0:08\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550595097;}'),(13039,5315,'_wp_attached_file','2022/07/20190217_072234-1.mp4'),(13040,5315,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:1220495;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:17;s:16:\"length_formatted\";s:4:\"0:17\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1550595120;}'),(13041,2274,'_yoast_wpseo_content_score','90'),(13042,2274,'_yoast_wpseo_estimated-reading-time-minutes','1'),(13043,2274,'_yoast_wpseo_wordproof_timestamp',''),(13044,5322,'_edit_lock','1658982304:8'),(13045,5322,'_edit_last','8'),(13046,5322,'_wp_page_template','default'),(13048,5322,'_yoast_wpseo_estimated-reading-time-minutes','1'),(13049,5322,'_yoast_wpseo_wordproof_timestamp',''),(13050,5324,'_wp_attached_file','2022/07/20190217_191648-scaled.jpg'),(13051,5324,'_wp_attachment_image_alt','20190217 191648'),(13052,5324,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190217_191648-scaled.jpg\";s:8:\"filesize\";i:200762;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190217_191648-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18983;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190217_191648-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12186;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190217_191648-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30426;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190217_191648-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84229;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190217_191648-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137308;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190217_191648-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9200;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190217_191648-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15264;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190217_191648-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12137;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190217_191648-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20743;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190217_191648-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32085;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190217_191648-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13697;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190217_191648-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20194;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190217_191648-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36818;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190217_191648-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11853;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190217_191648-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16918;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190217_191648-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43598;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550431008\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190217_191648.jpg\";}'),(13053,5325,'_wp_attached_file','2022/07/20190217_192258-scaled.jpg'),(13054,5325,'_wp_attachment_image_alt','20190217 192258'),(13055,5325,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:710;s:4:\"file\";s:34:\"2022/07/20190217_192258-scaled.jpg\";s:8:\"filesize\";i:101303;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190217_192258-500x139.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9567;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190217_192258-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6559;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190217_192258-768x213.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15921;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190217_192258-1536x426.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43609;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:28:\"20190217_192258-2048x568.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69755;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190217_192258-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3242;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190217_192258-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9874;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:26:\"20190217_192258-250x69.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5147;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190217_192258-550x153.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10573;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190217_192258-800x222.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16725;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190217_192258-649x180.jpg\";s:5:\"width\";i:649;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12997;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:28:\"20190217_192258-1081x300.jpg\";s:5:\"width\";i:1081;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25615;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:28:\"20190217_192258-1802x500.jpg\";s:5:\"width\";i:1802;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56785;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190217_192258-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6181;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190217_192258-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11588;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190217_192258-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36755;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550431378\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190217_192258.jpg\";}'),(13056,5326,'_wp_attached_file','2022/07/20190217_194052-scaled.jpg'),(13057,5326,'_wp_attachment_image_alt','20190217 194052'),(13058,5326,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190217_194052-scaled.jpg\";s:8:\"filesize\";i:343688;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190217_194052-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29888;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190217_194052-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16365;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190217_194052-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51133;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190217_194052-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148250;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190217_194052-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:238187;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190217_194052-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10639;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190217_194052-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22564;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190217_194052-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16199;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190217_194052-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33199;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190217_194052-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54620;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190217_194052-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19276;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190217_194052-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32032;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190217_194052-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63962;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190217_194052-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15501;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190217_194052-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25789;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190217_194052-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72387;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550432452\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00058275058275058\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190217_194052.jpg\";}'),(13059,5327,'_wp_attached_file','2022/07/20190217_201950-scaled.jpg'),(13060,5327,'_wp_attachment_image_alt','20190217 201950'),(13061,5327,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190217_201950-scaled.jpg\";s:8:\"filesize\";i:429574;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190217_201950-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39637;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190217_201950-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24036;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190217_201950-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152077;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190217_201950-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:183299;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190217_201950-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:295896;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190217_201950-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17813;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190217_201950-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31314;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190217_201950-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35403;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190217_201950-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91540;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190217_201950-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162333;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190217_201950-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21206;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190217_201950-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26621;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190217_201950-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39637;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190217_201950-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22984;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190217_201950-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34960;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190217_201950-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93476;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550434790\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00013326226012793\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190217_201950.jpg\";}'),(13062,5328,'_wp_attached_file','2022/07/20190217_202018-scaled.jpg'),(13063,5328,'_wp_attachment_image_alt','20190217 202018'),(13064,5328,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190217_202018-scaled.jpg\";s:8:\"filesize\";i:339218;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190217_202018-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57949;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190217_202018-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45443;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190217_202018-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99206;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190217_202018-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163245;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190217_202018-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:246446;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190217_202018-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40482;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190217_202018-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50251;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190217_202018-250x333.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49438;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190217_202018-550x733.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73540;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190217_202018-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104004;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190217_202018-135x180.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43553;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190217_202018-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48128;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190217_202018-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57949;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190217_202018-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44705;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190217_202018-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52456;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190217_202018-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81313;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550434818\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.95\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:19:\"0.00043402777777778\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190217_202018.jpg\";}'),(13065,5329,'_wp_attached_file','2022/07/20190217_224853-scaled.jpg'),(13066,5329,'_wp_attachment_image_alt','20190217 224853'),(13067,5329,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190217_224853-scaled.jpg\";s:8:\"filesize\";i:622192;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190217_224853-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42518;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190217_224853-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16983;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190217_224853-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131185;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190217_224853-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:262046;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190217_224853-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:428172;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190217_224853-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7733;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190217_224853-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27802;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190217_224853-250x333.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24575;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190217_224853-550x733.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76485;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190217_224853-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140777;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190217_224853-135x180.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13019;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190217_224853-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21788;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190217_224853-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42518;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190217_224853-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15988;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190217_224853-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34699;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190217_224853-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111944;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550443732\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.95\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:19:\"0.00068306010928962\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190217_224853.jpg\";}'),(13068,5330,'_wp_attached_file','2022/07/20190217_230834-scaled.jpg'),(13069,5330,'_wp_attachment_image_alt','20190217 230834'),(13070,5330,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2022/07/20190217_230834-scaled.jpg\";s:8:\"filesize\";i:580666;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190217_230834-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48161;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190217_230834-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20071;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190217_230834-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84526;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190217_230834-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:242595;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190217_230834-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:395883;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190217_230834-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9676;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190217_230834-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30519;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190217_230834-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22242;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190217_230834-550x413.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54467;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190217_230834-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89637;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190217_230834-240x180.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21252;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190217_230834-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36473;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190217_230834-667x500.jpg\";s:5:\"width\";i:667;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70549;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190217_230834-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18628;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190217_230834-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35500;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190217_230834-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102891;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550444914\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.95\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:18:\"0.0011441647597254\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190217_230834.jpg\";}'),(13071,5331,'_wp_attached_file','2022/07/20190218_033826-scaled.jpg'),(13072,5331,'_wp_attachment_image_alt','20190218 033826'),(13073,5331,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1999;s:4:\"file\";s:34:\"2022/07/20190218_033826-scaled.jpg\";s:8:\"filesize\";i:534578;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190218_033826-500x390.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52062;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190218_033826-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20245;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190218_033826-768x600.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93253;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190218_033826-1536x1199.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:253930;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190218_033826-2048x1599.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1599;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:387160;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190218_033826-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9846;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190218_033826-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31247;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190218_033826-250x195.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23010;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190218_033826-550x429.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:429;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59140;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190218_033826-800x625.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98673;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190218_033826-231x180.jpg\";s:5:\"width\";i:231;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21254;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190218_033826-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37128;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190218_033826-640x500.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72523;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190218_033826-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18873;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190218_033826-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36954;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190218_033826-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99924;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550430962\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190218_033826.jpg\";}'),(13074,5332,'_wp_attached_file','2022/07/20190306_053640-scaled.jpg'),(13075,5332,'_wp_attachment_image_alt','20190306 053640'),(13076,5332,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190306_053640-scaled.jpg\";s:8:\"filesize\";i:293339;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190306_053640-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24469;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190306_053640-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8174;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190306_053640-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71646;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"20190306_053640-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134704;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190306_053640-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211494;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190306_053640-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1618;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190306_053640-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14796;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190306_053640-250x333.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13410;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190306_053640-550x733.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43230;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190306_053640-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76768;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190306_053640-135x180.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5678;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190306_053640-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11528;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190306_053640-375x500.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24469;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190306_053640-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7170;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190306_053640-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17622;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190306_053640-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54826;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550431330\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.95\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190306_053640.jpg\";}'),(13077,5350,'_edit_lock','1658982828:8'),(13078,5350,'_edit_last','8'),(13079,5351,'_wp_attached_file','2022/07/20190213_203442.jpg'),(13080,5351,'_wp_attachment_image_alt','20190213 203442'),(13081,5351,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:2133;s:4:\"file\";s:27:\"2022/07/20190213_203442.jpg\";s:8:\"filesize\";i:863894;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190213_203442-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40311;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190213_203442-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21638;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190213_203442-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180629;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190213_203442-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:220677;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190213_203442-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:366655;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190213_203442-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11246;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190213_203442-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33051;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190213_203442-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34700;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190213_203442-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104766;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190213_203442-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192149;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190213_203442-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15630;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190213_203442-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22975;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190213_203442-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40311;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190213_203442-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19559;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190213_203442-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37148;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190213_203442-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116611;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550090082\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00051975051975052\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(13082,5352,'_wp_attached_file','2022/07/20190213_205238.jpg'),(13083,5352,'_wp_attachment_image_alt','20190213 205238'),(13084,5352,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:2133;s:4:\"file\";s:27:\"2022/07/20190213_205238.jpg\";s:8:\"filesize\";i:895300;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190213_205238-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42597;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190213_205238-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22039;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190213_205238-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198856;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190213_205238-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:242333;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190213_205238-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:400806;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190213_205238-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11598;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190213_205238-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34074;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190213_205238-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36583;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190213_205238-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114086;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190213_205238-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210942;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190213_205238-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16221;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190213_205238-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23911;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190213_205238-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42597;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190213_205238-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20001;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190213_205238-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37698;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190213_205238-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108544;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550091158\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00090579710144928\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(13085,5353,'_wp_attached_file','2022/07/20190214_010718.jpg'),(13086,5353,'_wp_attachment_image_alt','20190214 010718'),(13087,5353,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:27:\"2022/07/20190214_010718.jpg\";s:8:\"filesize\";i:292617;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190214_010718-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34151;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190214_010718-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17145;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190214_010718-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62429;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190214_010718-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11053;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190214_010718-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24829;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190214_010718-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17224;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190214_010718-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38469;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190214_010718-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67076;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190214_010718-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20930;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190214_010718-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37052;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190214_010718-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80422;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190214_010718-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16312;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190214_010718-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28853;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190214_010718-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98649;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550106438\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00063775510204082\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(13088,5354,'_wp_attached_file','2022/07/20190214_073441-scaled.jpg'),(13089,5354,'_wp_attachment_image_alt','20190214 073441'),(13090,5354,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190214_073441-scaled.jpg\";s:8:\"filesize\";i:322917;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190214_073441-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29380;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190214_073441-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16366;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190214_073441-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49369;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190214_073441-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139754;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190214_073441-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224247;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190214_073441-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10624;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190214_073441-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22591;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190214_073441-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16114;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190214_073441-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32661;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190214_073441-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52682;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190214_073441-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19098;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190214_073441-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31380;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190214_073441-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61211;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190214_073441-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15479;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190214_073441-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25571;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190214_073441-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67092;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550129681\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00078864353312303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190214_073441.jpg\";}'),(13091,5355,'_wp_attached_file','2022/07/20190214_193905-scaled.jpg'),(13092,5355,'_wp_attachment_image_alt','20190214 193905'),(13093,5355,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190214_193905-scaled.jpg\";s:8:\"filesize\";i:281337;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190214_193905-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24237;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190214_193905-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13597;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190214_193905-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41213;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190214_193905-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120508;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190214_193905-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194034;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190214_193905-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9391;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190214_193905-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18556;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190214_193905-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13528;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190214_193905-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26928;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190214_193905-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44434;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190214_193905-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15947;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190214_193905-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26043;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190214_193905-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51703;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190214_193905-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12996;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190214_193905-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21170;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190214_193905-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57303;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550173145\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:17:\"0.005524861878453\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190214_193905.jpg\";}'),(13094,5356,'_wp_attached_file','2022/07/20190214_215727-scaled.jpg'),(13095,5356,'_wp_attachment_image_alt','20190214 215727'),(13096,5356,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190214_215727-scaled.jpg\";s:8:\"filesize\";i:532553;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190214_215727-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36465;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190214_215727-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18351;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190214_215727-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68411;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190214_215727-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224527;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190214_215727-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:368735;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190214_215727-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11264;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190214_215727-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27452;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190214_215727-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17857;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190214_215727-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41430;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190214_215727-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73787;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190214_215727-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21959;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190214_215727-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39773;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190214_215727-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87910;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190214_215727-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17206;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190214_215727-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31693;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190214_215727-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101684;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550181447\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00037693177534866\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190214_215727.jpg\";}'),(13097,5357,'_wp_attached_file','2022/07/20190214_231958.jpg'),(13098,5357,'_wp_attachment_image_alt','20190214 231958'),(13099,5357,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:2133;s:4:\"file\";s:27:\"2022/07/20190214_231958.jpg\";s:8:\"filesize\";i:1165102;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190214_231958-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50400;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190214_231958-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24135;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190214_231958-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264787;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190214_231958-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:326358;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190214_231958-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:543603;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190214_231958-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12012;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190214_231958-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39524;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190214_231958-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42826;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190214_231958-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146908;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190214_231958-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:281696;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190214_231958-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17481;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190214_231958-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26878;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190214_231958-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50400;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190214_231958-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22125;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190214_231958-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45299;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190214_231958-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158838;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550186397\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00037202380952381\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(13100,5358,'_wp_attached_file','2022/07/20190215_001209.jpg'),(13101,5358,'_wp_attachment_image_alt','20190215 001209'),(13102,5358,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:2133;s:4:\"file\";s:27:\"2022/07/20190215_001209.jpg\";s:8:\"filesize\";i:790657;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190215_001209-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34844;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190215_001209-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19394;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190215_001209-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170315;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190215_001209-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:209792;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190215_001209-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:352531;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190215_001209-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10725;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190215_001209-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29803;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190215_001209-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30109;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190215_001209-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95605;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190215_001209-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181749;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190215_001209-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14145;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190215_001209-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20120;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190215_001209-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34844;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190215_001209-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17964;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190215_001209-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34581;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190215_001209-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116579;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550189529\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00051203277009729\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(13103,5359,'_wp_attached_file','2022/07/20190215_064154-scaled.jpg'),(13104,5359,'_wp_attachment_image_alt','20190215 064154'),(13105,5359,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2022/07/20190215_064154-scaled.jpg\";s:8:\"filesize\";i:332553;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190215_064154-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27046;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190215_064154-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15683;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190215_064154-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117664;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190215_064154-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143205;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190215_064154-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230648;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190215_064154-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10289;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190215_064154-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21908;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190215_064154-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23745;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190215_064154-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68641;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190215_064154-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126075;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190215_064154-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12663;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190215_064154-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16665;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190215_064154-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27046;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190215_064154-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14625;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190215_064154-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24896;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190215_064154-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71427;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550212914\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0010162601626016\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190215_064154.jpg\";}'),(13106,5360,'_wp_attached_file','2022/07/20190215_081438-scaled.jpg'),(13107,5360,'_wp_attachment_image_alt','20190215 081438'),(13108,5360,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:34:\"2022/07/20190215_081438-scaled.jpg\";s:8:\"filesize\";i:239894;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190215_081438-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18898;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190215_081438-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12214;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190215_081438-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29556;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190215_081438-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91287;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190215_081438-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158739;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190215_081438-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9429;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190215_081438-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15059;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190215_081438-250x141.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12451;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190215_081438-550x309.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20322;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190215_081438-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31144;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190215_081438-320x180.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13792;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190215_081438-533x300.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19849;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190215_081438-889x500.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36362;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190215_081438-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12016;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190215_081438-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16649;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190215_081438-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42413;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550218478\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190215_081438.jpg\";}'),(13109,5361,'_wp_attached_file','2022/07/20190215_082043-scaled.jpg'),(13110,5361,'_wp_attachment_image_alt','20190215 082043'),(13111,5361,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:701;s:4:\"file\";s:34:\"2022/07/20190215_082043-scaled.jpg\";s:8:\"filesize\";i:193237;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190215_082043-500x137.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10808;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190215_082043-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7053;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"20190215_082043-768x210.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21692;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190215_082043-1536x420.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75653;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:28:\"20190215_082043-2048x561.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:561;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128590;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190215_082043-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2926;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190215_082043-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12474;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:26:\"20190215_082043-250x68.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:68;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4838;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190215_082043-550x151.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:151;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12293;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"20190215_082043-800x219.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23113;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190215_082043-658x180.jpg\";s:5:\"width\";i:658;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16629;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:28:\"20190215_082043-1096x300.jpg\";s:5:\"width\";i:1096;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40821;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:28:\"20190215_082043-1827x500.jpg\";s:5:\"width\";i:1827;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104126;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190215_082043-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6282;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190215_082043-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14969;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190215_082043-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60064;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550218815\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20190215_082043.jpg\";}'),(13112,5362,'_wp_attached_file','2022/07/20190215_082536.jpg'),(13113,5362,'_wp_attachment_image_alt','20190215 082536'),(13114,5362,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:2133;s:4:\"file\";s:27:\"2022/07/20190215_082536.jpg\";s:8:\"filesize\";i:903149;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"20190215_082536-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24797;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"20190215_082536-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12973;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"20190215_082536-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147717;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"20190215_082536-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188293;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"20190215_082536-1152x2048.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:345832;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"20190215_082536-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8681;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"20190215_082536-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19598;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"20190215_082536-250x444.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21105;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"20190215_082536-550x978.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75972;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"20190215_082536-800x1422.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159250;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"20190215_082536-101x180.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10373;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"20190215_082536-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13946;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"20190215_082536-281x500.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24797;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"20190215_082536-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12046;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"20190215_082536-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22656;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:28:\"20190215_082536-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93788;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G950U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550219135\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(13115,5350,'_wp_page_template','default'),(13116,5350,'_yoast_wpseo_content_score','90'),(13117,5350,'_yoast_wpseo_estimated-reading-time-minutes','1'),(13118,5350,'_yoast_wpseo_wordproof_timestamp',''),(13119,5372,'_wp_attached_file','2022/07/img.png'),(13120,5372,'_wp_attachment_image_alt','Img'),(13121,5372,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:642;s:6:\"height\";i:436;s:4:\"file\";s:15:\"2022/07/img.png\";s:8:\"filesize\";i:469939;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"img-500x340.png\";s:5:\"width\";i:500;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:220333;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"img-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61877;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:13:\"img-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4966;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:15:\"img-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125355;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:15:\"img-250x170.png\";s:5:\"width\";i:250;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66077;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:15:\"img-550x374.png\";s:5:\"width\";i:550;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:259006;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:15:\"img-265x180.png\";s:5:\"width\";i:265;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73077;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:15:\"img-442x300.png\";s:5:\"width\";i:442;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:177567;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:15:\"img-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50967;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:15:\"img-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:156383;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13122,2283,'_yoast_wpseo_content_score','60'),(13123,2283,'_yoast_wpseo_estimated-reading-time-minutes','1'),(13124,2283,'_yoast_wpseo_wordproof_timestamp',''),(13126,2294,'_yoast_wpseo_estimated-reading-time-minutes','1'),(13127,2294,'_yoast_wpseo_wordproof_timestamp',''),(13128,5414,'iwp_log_type','plugins'),(13129,5414,'iwp_log_action','update'),(13130,5414,'iwp_log_activities_type','direct'),(13131,5414,'iwp_log_actions','plugins-updated'),(13132,5414,'iwp_log_details','a:4:{s:4:\"name\";s:14:\"Duplicate Page\";s:4:\"slug\";s:32:\"duplicate-page/duplicatepage.php\";s:11:\"old_version\";s:5:\"4.4.8\";s:15:\"updated_version\";s:5:\"4.4.9\";}'),(13133,5415,'iwp_log_type','plugins'),(13134,5415,'iwp_log_action','update'),(13135,5415,'iwp_log_activities_type','direct'),(13136,5415,'iwp_log_actions','plugins-updated'),(13137,5415,'iwp_log_details','a:4:{s:4:\"name\";s:12:\"WP Mail SMTP\";s:4:\"slug\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"old_version\";s:5:\"2.7.0\";s:15:\"updated_version\";s:5:\"3.5.1\";}'),(13138,5416,'iwp_log_type','plugins'),(13139,5416,'iwp_log_action','update'),(13140,5416,'iwp_log_activities_type','direct'),(13141,5416,'iwp_log_actions','plugins-updated'),(13142,5416,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:6:\"3.11.3\";s:15:\"updated_version\";s:8:\"3.11.4.2\";}'),(13143,5417,'iwp_log_type','plugins'),(13144,5417,'iwp_log_action','update'),(13145,5417,'iwp_log_activities_type','direct'),(13146,5417,'iwp_log_actions','plugins-updated'),(13147,5417,'iwp_log_details','a:4:{s:4:\"name\";s:17:\"WP Video Lightbox\";s:4:\"slug\";s:39:\"wp-video-lightbox/wp-video-lightbox.php\";s:11:\"old_version\";s:5:\"1.9.4\";s:15:\"updated_version\";s:5:\"1.9.6\";}'),(13148,5418,'iwp_log_type','plugins'),(13149,5418,'iwp_log_action','update'),(13150,5418,'iwp_log_activities_type','direct'),(13151,5418,'iwp_log_actions','plugins-updated'),(13152,5418,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"19.2\";s:15:\"updated_version\";s:4:\"19.4\";}'),(13153,5419,'iwp_log_type','core'),(13154,5419,'iwp_log_action','update'),(13155,5419,'iwp_log_activities_type','direct'),(13156,5419,'iwp_log_actions','core-updated'),(13157,5419,'iwp_log_details','a:2:{s:11:\"old_version\";s:3:\"6.0\";s:15:\"updated_version\";s:5:\"6.0.1\";}'),(13160,5180,'_yoast_wpseo_focuskw','Hip Pain or Injury'),(13161,5180,'_yoast_wpseo_linkdex','74'),(13164,5180,'_yoast_wpseo_title','Try Regenerative Treatments for Your Hip Pain or Injury'),(13165,5180,'_yoast_wpseo_metadesc','If you are experiencing hip pain or injury seek a non-surgical alternative such as Regenerative Orthopedics.'),(13166,5446,'_edit_lock','1659562000:9'),(13167,5446,'_edit_last','9'),(13168,5446,'_wp_page_template','default'),(13171,5446,'_yoast_wpseo_content_score','90'),(13172,5446,'_yoast_wpseo_estimated-reading-time-minutes','4'),(13173,5446,'_yoast_wpseo_wordproof_timestamp',''),(13174,5446,'_yoast_wpseo_primary_category','32'),(13175,5448,'_wp_attached_file','2022/08/Cortisone.-Jama.png'),(13176,5448,'_wp_attachment_image_alt','Are Cortisone Shots a Good Option?'),(13177,5448,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:27:\"2022/08/Cortisone.-Jama.png\";s:8:\"filesize\";i:601329;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Cortisone.-Jama-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:224227;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Cortisone.-Jama-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61602;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Cortisone.-Jama-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:437721;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"Cortisone.-Jama-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5189;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"Cortisone.-Jama-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118791;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"Cortisone.-Jama-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74402;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"Cortisone.-Jama-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:259645;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"Cortisone.-Jama-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:466325;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"Cortisone.-Jama-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58048;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"Cortisone.-Jama-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132754;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"Cortisone.-Jama-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:294862;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"Cortisone.-Jama-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50608;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"Cortisone.-Jama-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143967;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:27:\"Cortisone.-Jama-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:400780;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13184,5446,'_yoast_wpseo_focuskw','Cortisone Shots'),(13185,5446,'_yoast_wpseo_title','Are Cortisone Shots a Good Option?'),(13186,5446,'_yoast_wpseo_metadesc','Cortisone shots can harm the joint. Don\'t damage the joint! Choose Regenerative Orthopedics instead, and repair it!'),(13187,5446,'_yoast_wpseo_linkdex','72'),(13190,5455,'_wp_attached_file','2022/08/Cortisone.-Jama-1.png'),(13191,5455,'_wp_attachment_image_alt','Cortisone. Jama'),(13192,5455,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:29:\"2022/08/Cortisone.-Jama-1.png\";s:8:\"filesize\";i:609713;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Cortisone.-Jama-1-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:230470;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Cortisone.-Jama-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63407;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Cortisone.-Jama-1-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:449222;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:27:\"Cortisone.-Jama-1-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5261;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:29:\"Cortisone.-Jama-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122088;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:29:\"Cortisone.-Jama-1-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77064;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:29:\"Cortisone.-Jama-1-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:268565;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:29:\"Cortisone.-Jama-1-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:477351;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:29:\"Cortisone.-Jama-1-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59748;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:29:\"Cortisone.-Jama-1-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137019;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:29:\"Cortisone.-Jama-1-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:303478;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:29:\"Cortisone.-Jama-1-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52868;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:29:\"Cortisone.-Jama-1-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149194;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:29:\"Cortisone.-Jama-1-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:409926;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13197,5459,'_edit_lock','1661198599:9'),(13198,5459,'_edit_last','9'),(13199,5460,'_wp_attached_file','2022/08/Rotator-Cuff.-J-Ortho-Surg-Research.jpeg'),(13200,5460,'_wp_attachment_image_alt','Rotator Cuff. J Ortho Surg Research'),(13201,5460,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:983;s:6:\"height\";i:835;s:4:\"file\";s:48:\"2022/08/Rotator-Cuff.-J-Ortho-Surg-Research.jpeg\";s:8:\"filesize\";i:201707;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Rotator-Cuff.-J-Ortho-Surg-Research-500x425.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48487;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Rotator-Cuff.-J-Ortho-Surg-Research-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13351;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"Rotator-Cuff.-J-Ortho-Surg-Research-768x652.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:652;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89544;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:46:\"Rotator-Cuff.-J-Ortho-Surg-Research-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1412;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:48:\"Rotator-Cuff.-J-Ortho-Surg-Research-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25891;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:48:\"Rotator-Cuff.-J-Ortho-Surg-Research-250x212.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16363;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:48:\"Rotator-Cuff.-J-Ortho-Surg-Research-550x467.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55848;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:48:\"Rotator-Cuff.-J-Ortho-Surg-Research-800x680.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95489;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:48:\"Rotator-Cuff.-J-Ortho-Surg-Research-212x180.jpeg\";s:5:\"width\";i:212;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12671;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:48:\"Rotator-Cuff.-J-Ortho-Surg-Research-353x300.jpeg\";s:5:\"width\";i:353;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28354;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:48:\"Rotator-Cuff.-J-Ortho-Surg-Research-589x500.jpeg\";s:5:\"width\";i:589;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60502;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:48:\"Rotator-Cuff.-J-Ortho-Surg-Research-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10424;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:48:\"Rotator-Cuff.-J-Ortho-Surg-Research-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28396;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:48:\"Rotator-Cuff.-J-Ortho-Surg-Research-983x500.jpeg\";s:5:\"width\";i:983;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76895;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(13202,5459,'_wp_page_template','default'),(13203,5459,'_yoast_wpseo_content_score','60'),(13204,5459,'_yoast_wpseo_estimated-reading-time-minutes','5'),(13205,5459,'_yoast_wpseo_wordproof_timestamp',''),(13206,5459,'_yoast_wpseo_primary_category','32'),(13211,5459,'_yoast_wpseo_focuskw','Partial Rotator Cuff Tear'),(13212,5459,'_yoast_wpseo_title','Non-Surgical Partial Rotator Cuff Tear Repair'),(13213,5459,'_yoast_wpseo_metadesc','At OrthoRegen, we often see patients in our office seeking to avoid surgery after being diagnosed with a partial rotator cuff tear.'),(13214,5459,'_yoast_wpseo_linkdex','78'),(13215,453,'_yoast_wpseo_content_score','90'),(13216,453,'_yoast_wpseo_estimated-reading-time-minutes','3'),(13217,453,'_yoast_wpseo_wordproof_timestamp',''),(13218,543,'_yoast_wpseo_estimated-reading-time-minutes','5'),(13219,543,'_yoast_wpseo_wordproof_timestamp',''),(13220,504,'_yoast_wpseo_content_score','90'),(13221,504,'_yoast_wpseo_estimated-reading-time-minutes','4'),(13222,504,'_yoast_wpseo_wordproof_timestamp',''),(13225,1471,'_yoast_wpseo_title','Lecture in Mexico City on July 9th'),(13232,5474,'_edit_lock','1671534110:8'),(13233,5474,'_edit_last','9'),(13234,5475,'_wp_attached_file','2022/08/Sprained-Ankle.png'),(13235,5475,'_wp_attachment_image_alt','Sprained Ankle'),(13236,5475,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:26:\"2022/08/Sprained-Ankle.png\";s:8:\"filesize\";i:1276398;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Sprained-Ankle-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:396395;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Sprained-Ankle-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84675;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Sprained-Ankle-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:849475;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:24:\"Sprained-Ankle-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5560;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:26:\"Sprained-Ankle-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180860;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:26:\"Sprained-Ankle-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108748;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:26:\"Sprained-Ankle-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:471043;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:26:\"Sprained-Ankle-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:908896;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:26:\"Sprained-Ankle-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81241;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:26:\"Sprained-Ankle-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:213496;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:26:\"Sprained-Ankle-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:544936;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:26:\"Sprained-Ankle-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68161;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:26:\"Sprained-Ankle-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:228267;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:26:\"Sprained-Ankle-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:770096;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13237,5474,'_wp_page_template','default'),(13238,5474,'_yoast_wpseo_content_score','60'),(13239,5474,'_yoast_wpseo_estimated-reading-time-minutes','3'),(13240,5474,'_yoast_wpseo_wordproof_timestamp',''),(13241,5474,'_yoast_wpseo_primary_category','32'),(13246,509,'_yoast_wpseo_focuskw','Chronic Neck Pain'),(13247,509,'_yoast_wpseo_title','Chronic Neck Pain'),(13248,509,'_yoast_wpseo_metadesc','Our goal at OrthoRegen® is for patients with chronic neck pain to regain their active and pain-free life. And we do that non-surgically.'),(13249,509,'_yoast_wpseo_linkdex','81'),(13250,509,'_yoast_wpseo_wordproof_timestamp',''),(13265,5488,'_wp_attached_file','2019/06/PRP.-Neck.-Lower-back.jpeg'),(13266,5488,'_wp_attachment_image_alt','Prp. Neck. Lower Back'),(13267,5488,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1749;s:6:\"height\";i:1312;s:4:\"file\";s:34:\"2019/06/PRP.-Neck.-Lower-back.jpeg\";s:8:\"filesize\";i:362448;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"PRP.-Neck.-Lower-back-500x375.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40185;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"PRP.-Neck.-Lower-back-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13291;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"PRP.-Neck.-Lower-back-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76264;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"PRP.-Neck.-Lower-back-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194722;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:32:\"PRP.-Neck.-Lower-back-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1408;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:34:\"PRP.-Neck.-Lower-back-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25163;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:34:\"PRP.-Neck.-Lower-back-250x188.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14236;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:34:\"PRP.-Neck.-Lower-back-550x413.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46701;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:34:\"PRP.-Neck.-Lower-back-800x600.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81294;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:34:\"PRP.-Neck.-Lower-back-240x180.jpeg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13151;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:34:\"PRP.-Neck.-Lower-back-400x300.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29121;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:34:\"PRP.-Neck.-Lower-back-667x500.jpeg\";s:5:\"width\";i:667;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62907;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:34:\"PRP.-Neck.-Lower-back-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10512;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:34:\"PRP.-Neck.-Lower-back-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28584;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:35:\"PRP.-Neck.-Lower-back-1100x500.jpeg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93503;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13272,5491,'_wp_attached_file','2019/06/PRP.-Neck.-Lower-back-1.jpeg'),(13273,5491,'_wp_attachment_image_alt','Prp. Neck. Lower Back'),(13274,5491,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1749;s:6:\"height\";i:1312;s:4:\"file\";s:36:\"2019/06/PRP.-Neck.-Lower-back-1.jpeg\";s:8:\"filesize\";i:362448;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"PRP.-Neck.-Lower-back-1-500x375.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40185;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"PRP.-Neck.-Lower-back-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13291;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"PRP.-Neck.-Lower-back-1-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76264;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:38:\"PRP.-Neck.-Lower-back-1-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194722;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:34:\"PRP.-Neck.-Lower-back-1-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1408;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:36:\"PRP.-Neck.-Lower-back-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25163;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:36:\"PRP.-Neck.-Lower-back-1-250x188.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14236;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:36:\"PRP.-Neck.-Lower-back-1-550x413.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46701;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:36:\"PRP.-Neck.-Lower-back-1-800x600.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81294;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:36:\"PRP.-Neck.-Lower-back-1-240x180.jpeg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13151;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:36:\"PRP.-Neck.-Lower-back-1-400x300.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29121;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:36:\"PRP.-Neck.-Lower-back-1-667x500.jpeg\";s:5:\"width\";i:667;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62907;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:36:\"PRP.-Neck.-Lower-back-1-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10512;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:36:\"PRP.-Neck.-Lower-back-1-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28584;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:37:\"PRP.-Neck.-Lower-back-1-1100x500.jpeg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93503;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13279,5474,'_yoast_wpseo_focuskw','Sprained Ankles'),(13280,5474,'_yoast_wpseo_title','Sprained Ankles? Repair it with Regenerative Orthopedics'),(13281,5474,'_yoast_wpseo_linkdex','76'),(13284,5474,'_yoast_wpseo_metadesc','At OrthoRegen®, our treatment of choice for recurrent sprained ankles is Regenerative Orthopedics for effective repair and strengthening.'),(13289,5474,'_wp_old_slug','sprained-ankle'),(13290,5500,'_edit_lock','1678477899:9'),(13291,5500,'_edit_last','9'),(13292,5501,'_wp_attached_file','2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.png'),(13293,5501,'_wp_attachment_image_alt','Patellar Tendinopathy. Prp. Amer J Of Sports Med'),(13294,5501,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:60:\"2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.png\";s:8:\"filesize\";i:1090053;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:358814;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86778;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:746986;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:58:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6276;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:60:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:176852;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:60:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107257;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:60:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:423712;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:60:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:800264;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:60:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81729;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:60:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:201501;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:60:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:485573;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:60:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69843;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:60:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:217546;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:60:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:736402;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13295,5500,'_wp_page_template','default'),(13298,5500,'_yoast_wpseo_content_score','60'),(13299,5500,'_yoast_wpseo_estimated-reading-time-minutes','5'),(13300,5500,'_yoast_wpseo_wordproof_timestamp',''),(13301,5500,'_wp_old_date','2022-09-07'),(13304,5500,'_yoast_wpseo_primary_category','32'),(13305,5506,'_wp_attached_file','2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng.png'),(13306,5506,'_wp_attachment_image_alt','Patellar Tendinopathy. Prp. Amer J Of Sports Med.2ndpng'),(13307,5506,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:67:\"2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng.png\";s:8:\"filesize\";i:1029123;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:322836;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79612;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:67:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:674792;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:65:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5997;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:67:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158423;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:67:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98989;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:67:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:380722;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:67:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:723124;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:67:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75826;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:67:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:182960;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:67:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:436532;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:67:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65384;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:67:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:197078;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:67:\"Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:656512;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13318,382,'_yoast_wpseo_wordproof_timestamp',''),(13319,5513,'_edit_lock','1665004627:9'),(13320,5513,'_edit_last','9'),(13321,5514,'_wp_attached_file','2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab.png'),(13322,5514,'_wp_attachment_image_alt','Tennis Elbow. Prp. Amer J Of Phys Med & Rehab'),(13323,5514,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:55:\"2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab.png\";s:8:\"filesize\";i:632245;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:226208;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56733;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:467757;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:53:\"Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5043;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:55:\"Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110858;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:55:\"Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71113;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:55:\"Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:266507;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:55:\"Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:500632;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:55:\"Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54729;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:55:\"Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128291;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:55:\"Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:304458;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:55:\"Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48415;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:55:\"Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141990;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:55:\"Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:436319;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13324,5513,'_wp_page_template','default'),(13327,5513,'_yoast_wpseo_content_score','30'),(13328,5513,'_yoast_wpseo_estimated-reading-time-minutes','5'),(13329,5513,'_yoast_wpseo_wordproof_timestamp',''),(13332,5513,'_wp_old_date','2022-09-26'),(13333,5513,'_yoast_wpseo_primary_category','32'),(13338,2536,'_yoast_wpseo_wordproof_timestamp',''),(13339,5522,'_edit_lock','1665006552:9'),(13340,5522,'_edit_last','9'),(13341,5522,'_wp_page_template','default'),(13342,5522,'_yoast_wpseo_content_score','60'),(13343,5522,'_yoast_wpseo_estimated-reading-time-minutes','5'),(13344,5522,'_yoast_wpseo_wordproof_timestamp',''),(13345,5522,'_yoast_wpseo_primary_category','32'),(13350,5513,'_yoast_wpseo_focuskw','Tennis Elbow'),(13351,5513,'_yoast_wpseo_title','Tennis Elbow'),(13352,5513,'_yoast_wpseo_metadesc','Prolotherapy for tennis elbow! Boosts the body’s healing abilities, repairs the injured soft tissue, and reduces or eliminates the symptoms.'),(13353,5513,'_yoast_wpseo_linkdex','80'),(13362,5533,'_wp_attached_file','2022/10/Arthritis.-Jnl-Clinical-OrthoTrauma.png'),(13363,5533,'_wp_attachment_image_alt','Arthritis. Jnl Clinical Ortho&trauma'),(13364,5533,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:47:\"2022/10/Arthritis.-Jnl-Clinical-OrthoTrauma.png\";s:8:\"filesize\";i:593958;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Arthritis.-Jnl-Clinical-OrthoTrauma-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:221350;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Arthritis.-Jnl-Clinical-OrthoTrauma-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57368;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"Arthritis.-Jnl-Clinical-OrthoTrauma-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:436594;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:45:\"Arthritis.-Jnl-Clinical-OrthoTrauma-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5200;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:47:\"Arthritis.-Jnl-Clinical-OrthoTrauma-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109591;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:47:\"Arthritis.-Jnl-Clinical-OrthoTrauma-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72478;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:47:\"Arthritis.-Jnl-Clinical-OrthoTrauma-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:257421;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:47:\"Arthritis.-Jnl-Clinical-OrthoTrauma-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:465224;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:47:\"Arthritis.-Jnl-Clinical-OrthoTrauma-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56783;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:47:\"Arthritis.-Jnl-Clinical-OrthoTrauma-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:129073;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:47:\"Arthritis.-Jnl-Clinical-OrthoTrauma-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:291354;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:47:\"Arthritis.-Jnl-Clinical-OrthoTrauma-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48765;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:47:\"Arthritis.-Jnl-Clinical-OrthoTrauma-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136759;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:47:\"Arthritis.-Jnl-Clinical-OrthoTrauma-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:374064;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13367,5522,'_yoast_wpseo_focuskw','Stem Cells Are Gaining in Popularity'),(13368,5522,'_yoast_wpseo_title','Stem Cells Are Gaining in Popularity'),(13369,5522,'_yoast_wpseo_metadesc','Stem cells are gaining in popularity because they work! At OrthoRegen®, we have used stem cells to treat arthritis for many years.'),(13370,5522,'_yoast_wpseo_linkdex','74'),(13379,5540,'_edit_lock','1671534110:8'),(13380,5540,'_edit_last','8'),(13381,5541,'_wp_attached_file','2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears.jpg'),(13382,5541,'_wp_attachment_image_alt','Copy Of Arthritis. Rthroscopic Surgery For Degenerative Knee Arthritis And Meniscal Tears'),(13383,5541,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:101:\"2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears.jpg\";s:8:\"filesize\";i:123978;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:101:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-500x419.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48725;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:101:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14985;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:101:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-768x644.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89179;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:99:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5020;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:101:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25510;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:101:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-250x210.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18673;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:101:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-550x461.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55464;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:101:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-800x671.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94843;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:101:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-215x180.jpg\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15425;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:101:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-358x300.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29847;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:101:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-596x500.jpg\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62570;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:101:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14391;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:101:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33152;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:101:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-940x500.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90892;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(13384,5540,'_wp_page_template','default'),(13387,5540,'_yoast_wpseo_content_score','60'),(13388,5540,'_yoast_wpseo_estimated-reading-time-minutes','4'),(13389,5540,'_yoast_wpseo_wordproof_timestamp',''),(13390,5540,'_wp_old_date','2022-10-20'),(13393,5540,'_yoast_wpseo_primary_category','32'),(13398,5540,'_yoast_wpseo_title','Avoid Knee Surgery in Middle Age'),(13399,5540,'_yoast_wpseo_metadesc','Regenerative Orthopedics are non-surgical, in-office procedures that help to avoid knee surgery in middle age.'),(13402,5540,'_yoast_wpseo_focuskw','Avoid Knee Surgery'),(13403,5540,'_yoast_wpseo_linkdex','76'),(13414,5540,'_wp_old_slug','avoiding-knee-surgery-in-middle-age'),(13421,5561,'iwp_log_type','plugins'),(13422,5561,'iwp_log_action','update'),(13423,5561,'iwp_log_activities_type','direct'),(13424,5561,'iwp_log_actions','plugins-updated'),(13425,5561,'iwp_log_details','a:4:{s:4:\"name\";s:12:\"WP Mail SMTP\";s:4:\"slug\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"old_version\";s:5:\"3.5.1\";s:15:\"updated_version\";s:5:\"3.6.1\";}'),(13426,5562,'iwp_log_type','plugins'),(13427,5562,'iwp_log_action','update'),(13428,5562,'iwp_log_activities_type','direct'),(13429,5562,'iwp_log_actions','plugins-updated'),(13430,5562,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"old_version\";s:8:\"3.11.4.2\";s:15:\"updated_version\";s:8:\"3.12.2.1\";}'),(13431,5563,'iwp_log_type','plugins'),(13432,5563,'iwp_log_action','update'),(13433,5563,'iwp_log_activities_type','direct'),(13434,5563,'iwp_log_actions','plugins-updated'),(13435,5563,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"19.4\";s:15:\"updated_version\";s:4:\"19.9\";}'),(13436,5564,'iwp_log_type','core'),(13437,5564,'iwp_log_action','update'),(13438,5564,'iwp_log_activities_type','direct'),(13439,5564,'iwp_log_actions','core-updated'),(13440,5564,'iwp_log_details','a:2:{s:11:\"old_version\";s:5:\"6.0.1\";s:15:\"updated_version\";s:5:\"6.0.3\";}'),(13477,5573,'_wp_attached_file','2022/11/0_header-orthoregen-v1-021120.jpeg'),(13478,5573,'_wp_attachment_image_alt','0 Header Orthoregen V1 021120'),(13479,5573,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2550;s:6:\"height\";i:779;s:4:\"file\";s:42:\"2022/11/0_header-orthoregen-v1-021120.jpeg\";s:8:\"filesize\";i:229862;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"0_header-orthoregen-v1-021120-500x153.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24084;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"0_header-orthoregen-v1-021120-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11935;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"0_header-orthoregen-v1-021120-768x235.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53267;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"0_header-orthoregen-v1-021120-1536x469.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:183670;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:43:\"0_header-orthoregen-v1-021120-2048x626.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:626;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:296424;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:40:\"0_header-orthoregen-v1-021120-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1118;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:42:\"0_header-orthoregen-v1-021120-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25350;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:41:\"0_header-orthoregen-v1-021120-250x76.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6649;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:42:\"0_header-orthoregen-v1-021120-550x168.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28379;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:42:\"0_header-orthoregen-v1-021120-800x244.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57362;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:42:\"0_header-orthoregen-v1-021120-589x180.jpeg\";s:5:\"width\";i:589;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32757;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:42:\"0_header-orthoregen-v1-021120-982x300.jpeg\";s:5:\"width\";i:982;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83795;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:43:\"0_header-orthoregen-v1-021120-1637x500.jpeg\";s:5:\"width\";i:1637;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:205374;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:42:\"0_header-orthoregen-v1-021120-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10075;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:42:\"0_header-orthoregen-v1-021120-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31657;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:43:\"0_header-orthoregen-v1-021120-1100x500.jpeg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135750;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13480,5574,'_wp_attached_file','2022/11/0_Kili-top-header-v1-021120.jpeg'),(13481,5574,'_wp_attachment_image_alt','0 Kili Top Header V1 021120'),(13482,5574,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1031;s:6:\"height\";i:349;s:4:\"file\";s:40:\"2022/11/0_Kili-top-header-v1-021120.jpeg\";s:8:\"filesize\";i:26468;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"0_Kili-top-header-v1-021120-500x169.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14618;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"0_Kili-top-header-v1-021120-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6759;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"0_Kili-top-header-v1-021120-768x260.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28807;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:38:\"0_Kili-top-header-v1-021120-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:943;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:40:\"0_Kili-top-header-v1-021120-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12809;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:39:\"0_Kili-top-header-v1-021120-250x85.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4746;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:40:\"0_Kili-top-header-v1-021120-550x186.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16985;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:40:\"0_Kili-top-header-v1-021120-800x271.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30457;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:40:\"0_Kili-top-header-v1-021120-532x180.jpeg\";s:5:\"width\";i:532;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16093;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:40:\"0_Kili-top-header-v1-021120-886x300.jpeg\";s:5:\"width\";i:886;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36100;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:40:\"0_Kili-top-header-v1-021120-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6090;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:40:\"0_Kili-top-header-v1-021120-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16200;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13483,5575,'_wp_attached_file','2022/11/dr-fields-v1-021120.png'),(13484,5575,'_wp_attachment_image_alt','Dr Fields V1 021120'),(13485,5575,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:460;s:6:\"height\";i:737;s:4:\"file\";s:31:\"2022/11/dr-fields-v1-021120.png\";s:8:\"filesize\";i:77814;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"dr-fields-v1-021120-312x500.png\";s:5:\"width\";i:312;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:153297;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"dr-fields-v1-021120-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48781;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:29:\"dr-fields-v1-021120-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4307;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:31:\"dr-fields-v1-021120-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103929;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:31:\"dr-fields-v1-021120-250x401.png\";s:5:\"width\";i:250;s:6:\"height\";i:401;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100564;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:31:\"dr-fields-v1-021120-112x180.png\";s:5:\"width\";i:112;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23730;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:31:\"dr-fields-v1-021120-187x300.png\";s:5:\"width\";i:187;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58661;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:31:\"dr-fields-v1-021120-312x500.png\";s:5:\"width\";i:312;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:153297;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:31:\"dr-fields-v1-021120-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39913;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:31:\"dr-fields-v1-021120-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133383;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:31:\"dr-fields-v1-021120-460x500.png\";s:5:\"width\";i:460;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:169486;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13486,5576,'_wp_attached_file','2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg'),(13487,5576,'_wp_attachment_image_alt','Header Orthoregen Ocean Mountains V1 021120'),(13488,5576,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:732;s:4:\"file\";s:56:\"2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\";s:8:\"filesize\";i:165014;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"header-orthoregen-ocean-mountains-v1-021120-500x153.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14640;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"header-orthoregen-ocean-mountains-v1-021120-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7577;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"header-orthoregen-ocean-mountains-v1-021120-768x234.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33056;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:57:\"header-orthoregen-ocean-mountains-v1-021120-1536x468.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111262;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:57:\"header-orthoregen-ocean-mountains-v1-021120-2048x625.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174107;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:54:\"header-orthoregen-ocean-mountains-v1-021120-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:818;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:56:\"header-orthoregen-ocean-mountains-v1-021120-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15963;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:55:\"header-orthoregen-ocean-mountains-v1-021120-250x76.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4050;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:56:\"header-orthoregen-ocean-mountains-v1-021120-550x168.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17164;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:56:\"header-orthoregen-ocean-mountains-v1-021120-800x244.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36301;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:56:\"header-orthoregen-ocean-mountains-v1-021120-590x180.jpeg\";s:5:\"width\";i:590;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19990;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:56:\"header-orthoregen-ocean-mountains-v1-021120-984x300.jpeg\";s:5:\"width\";i:984;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52048;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:57:\"header-orthoregen-ocean-mountains-v1-021120-1639x500.jpeg\";s:5:\"width\";i:1639;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123848;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:56:\"header-orthoregen-ocean-mountains-v1-021120-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6232;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:56:\"header-orthoregen-ocean-mountains-v1-021120-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20233;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:57:\"header-orthoregen-ocean-mountains-v1-021120-1100x500.jpeg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82354;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13489,5577,'_wp_attached_file','2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg'),(13490,5577,'_wp_attachment_image_alt','Header Orthoregen Santa Monica Pier V1 021120'),(13491,5577,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:732;s:4:\"file\";s:58:\"2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\";s:8:\"filesize\";i:115605;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"header-orthoregen-santa-monica-pier-v1-021120-500x153.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15314;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"header-orthoregen-santa-monica-pier-v1-021120-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6717;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"header-orthoregen-santa-monica-pier-v1-021120-768x234.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29962;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:59:\"header-orthoregen-santa-monica-pier-v1-021120-1536x468.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82356;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:59:\"header-orthoregen-santa-monica-pier-v1-021120-2048x625.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124555;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:56:\"header-orthoregen-santa-monica-pier-v1-021120-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:918;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:58:\"header-orthoregen-santa-monica-pier-v1-021120-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12240;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:57:\"header-orthoregen-santa-monica-pier-v1-021120-250x76.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4870;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:58:\"header-orthoregen-santa-monica-pier-v1-021120-550x168.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17460;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:58:\"header-orthoregen-santa-monica-pier-v1-021120-800x244.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32166;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:58:\"header-orthoregen-santa-monica-pier-v1-021120-590x180.jpeg\";s:5:\"width\";i:590;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19535;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:58:\"header-orthoregen-santa-monica-pier-v1-021120-984x300.jpeg\";s:5:\"width\";i:984;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43504;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:59:\"header-orthoregen-santa-monica-pier-v1-021120-1639x500.jpeg\";s:5:\"width\";i:1639;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90874;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:58:\"header-orthoregen-santa-monica-pier-v1-021120-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6009;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:58:\"header-orthoregen-santa-monica-pier-v1-021120-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15223;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:59:\"header-orthoregen-santa-monica-pier-v1-021120-1100x500.jpeg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59074;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13492,5578,'_wp_attached_file','2022/11/header-orthoregen-v1-021120.jpeg'),(13493,5578,'_wp_attachment_image_alt','Header Orthoregen V1 021120'),(13494,5578,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2550;s:6:\"height\";i:779;s:4:\"file\";s:40:\"2022/11/header-orthoregen-v1-021120.jpeg\";s:8:\"filesize\";i:227992;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"header-orthoregen-v1-021120-500x153.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16425;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"header-orthoregen-v1-021120-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7053;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"header-orthoregen-v1-021120-768x235.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35516;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"header-orthoregen-v1-021120-1536x469.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121048;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:41:\"header-orthoregen-v1-021120-2048x626.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:626;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195187;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:38:\"header-orthoregen-v1-021120-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:711;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:40:\"header-orthoregen-v1-021120-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14979;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:39:\"header-orthoregen-v1-021120-250x76.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4589;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:40:\"header-orthoregen-v1-021120-550x168.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19119;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:40:\"header-orthoregen-v1-021120-800x244.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38288;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:40:\"header-orthoregen-v1-021120-589x180.jpeg\";s:5:\"width\";i:589;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21999;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:40:\"header-orthoregen-v1-021120-982x300.jpeg\";s:5:\"width\";i:982;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55282;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:41:\"header-orthoregen-v1-021120-1637x500.jpeg\";s:5:\"width\";i:1637;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135044;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:40:\"header-orthoregen-v1-021120-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6636;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:40:\"header-orthoregen-v1-021120-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20477;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:41:\"header-orthoregen-v1-021120-1100x500.jpeg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91553;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13495,5579,'_wp_attached_file','2022/11/Sider-01-v1-021120.jpeg'),(13496,5579,'_wp_attachment_image_alt','Sider 01 V1 021120'),(13497,5579,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2550;s:6:\"height\";i:778;s:4:\"file\";s:31:\"2022/11/Sider-01-v1-021120.jpeg\";s:8:\"filesize\";i:129475;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Sider-01-v1-021120-500x153.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9918;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Sider-01-v1-021120-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4189;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Sider-01-v1-021120-768x234.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21555;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"Sider-01-v1-021120-1536x469.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76892;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:32:\"Sider-01-v1-021120-2048x625.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124953;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:29:\"Sider-01-v1-021120-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:611;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:31:\"Sider-01-v1-021120-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8731;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:30:\"Sider-01-v1-021120-250x76.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3087;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:31:\"Sider-01-v1-021120-550x168.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11652;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:31:\"Sider-01-v1-021120-800x244.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23215;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:31:\"Sider-01-v1-021120-590x180.jpeg\";s:5:\"width\";i:590;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13464;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:31:\"Sider-01-v1-021120-983x300.jpeg\";s:5:\"width\";i:983;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33942;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:32:\"Sider-01-v1-021120-1639x500.jpeg\";s:5:\"width\";i:1639;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86025;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:31:\"Sider-01-v1-021120-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4248;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:31:\"Sider-01-v1-021120-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12827;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:32:\"Sider-01-v1-021120-1100x500.jpeg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64688;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13498,5580,'_wp_attached_file','2022/11/Slider-v1-021120.jpg'),(13499,5580,'_wp_attachment_image_alt','Slider V1 021120'),(13500,5580,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2550;s:6:\"height\";i:778;s:4:\"file\";s:28:\"2022/11/Slider-v1-021120.jpg\";s:8:\"filesize\";i:174085;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Slider-v1-021120-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15459;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Slider-v1-021120-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13819;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Slider-v1-021120-768x234.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29384;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"Slider-v1-021120-1536x469.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79629;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"Slider-v1-021120-2048x625.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118817;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:26:\"Slider-v1-021120-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1167;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:28:\"Slider-v1-021120-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24024;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"Slider-v1-021120-250x76.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5147;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:28:\"Slider-v1-021120-550x168.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18157;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"Slider-v1-021120-800x244.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31424;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:28:\"Slider-v1-021120-590x180.jpg\";s:5:\"width\";i:590;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19804;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:28:\"Slider-v1-021120-983x300.jpg\";s:5:\"width\";i:983;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42546;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:29:\"Slider-v1-021120-1639x500.jpg\";s:5:\"width\";i:1639;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86745;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:28:\"Slider-v1-021120-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10677;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:28:\"Slider-v1-021120-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25680;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:29:\"Slider-v1-021120-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79649;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13503,431,'_yoast_wpseo_wordproof_timestamp',''),(13504,431,'_wp_old_slug','stem-cell-treatment'),(13507,5586,'_wp_attached_file','2019/06/stem-cells.1.png'),(13508,5586,'_wp_attachment_image_alt','Stem Cells.1'),(13509,5586,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1351;s:4:\"file\";s:24:\"2019/06/stem-cells.1.png\";s:8:\"filesize\";i:896183;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"stem-cells.1-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:181450;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"stem-cells.1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50721;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"stem-cells.1-768x961.png\";s:5:\"width\";i:768;s:6:\"height\";i:961;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:490257;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:22:\"stem-cells.1-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4983;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:24:\"stem-cells.1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94722;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:24:\"stem-cells.1-250x313.png\";s:5:\"width\";i:250;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88217;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:24:\"stem-cells.1-550x688.png\";s:5:\"width\";i:550;s:6:\"height\";i:688;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:295063;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:25:\"stem-cells.1-800x1001.png\";s:5:\"width\";i:800;s:6:\"height\";i:1001;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:520488;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:24:\"stem-cells.1-144x180.png\";s:5:\"width\";i:144;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37322;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:24:\"stem-cells.1-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82663;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:24:\"stem-cells.1-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:181450;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:24:\"stem-cells.1-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42894;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:24:\"stem-cells.1-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111825;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:25:\"stem-cells.1-1080x500.png\";s:5:\"width\";i:1080;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:312803;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13510,5587,'_wp_attached_file','2019/06/stem-cells.-1.png'),(13511,5587,'_wp_attachment_image_alt','Stem Cells.'),(13512,5587,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:25:\"2019/06/stem-cells.-1.png\";s:8:\"filesize\";i:919899;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"stem-cells.-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:214768;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"stem-cells.-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48045;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"stem-cells.-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:415182;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:23:\"stem-cells.-1-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4576;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:25:\"stem-cells.-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93748;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:25:\"stem-cells.-1-250x250.png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69224;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:25:\"stem-cells.-1-550x550.png\";s:5:\"width\";i:550;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:248732;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:25:\"stem-cells.-1-800x800.png\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:442445;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:25:\"stem-cells.-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39979;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:25:\"stem-cells.-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93748;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:25:\"stem-cells.-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:214768;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:25:\"stem-cells.-1-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38980;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:25:\"stem-cells.-1-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111937;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:26:\"stem-cells.-1-1080x500.png\";s:5:\"width\";i:1080;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:349903;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13515,5589,'_edit_lock','1669961189:8'),(13516,5589,'_edit_last','8'),(13517,5590,'_wp_attached_file','2022/11/Townsend-Letter-page-2.jpg'),(13518,5590,'_wp_attachment_image_alt','Townsend Letter Page 2'),(13519,5590,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:955;s:6:\"height\";i:1252;s:4:\"file\";s:34:\"2022/11/Townsend-Letter-page-2.jpg\";s:8:\"filesize\";i:430433;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-2-381x500.jpg\";s:5:\"width\";i:381;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70211;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15145;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Townsend-Letter-page-2-768x1007.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1007;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:266095;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:32:\"Townsend-Letter-page-2-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1855;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34862;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-2-250x328.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29046;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-2-550x721.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143539;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:35:\"Townsend-Letter-page-2-800x1049.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1049;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:274775;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-2-137x180.jpg\";s:5:\"width\";i:137;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9498;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-2-229x300.jpg\";s:5:\"width\";i:229;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24608;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-2-381x500.jpg\";s:5:\"width\";i:381;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70211;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-2-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12694;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-2-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46359;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-2-955x500.jpg\";s:5:\"width\";i:955;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180165;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13520,5591,'_wp_attached_file','2022/11/Townsend-Letter-Cover-reprint.jpg'),(13521,5591,'_wp_attachment_image_alt','Townsend Letter Cover Reprint'),(13522,5591,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:955;s:6:\"height\";i:1232;s:4:\"file\";s:41:\"2022/11/Townsend-Letter-Cover-reprint.jpg\";s:8:\"filesize\";i:312886;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Townsend-Letter-Cover-reprint-388x500.jpg\";s:5:\"width\";i:388;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67932;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Townsend-Letter-Cover-reprint-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Townsend-Letter-Cover-reprint-768x991.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:991;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:201006;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:39:\"Townsend-Letter-Cover-reprint-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2392;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:41:\"Townsend-Letter-Cover-reprint-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34172;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:41:\"Townsend-Letter-Cover-reprint-250x323.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33052;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:41:\"Townsend-Letter-Cover-reprint-550x710.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:710;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117916;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:42:\"Townsend-Letter-Cover-reprint-800x1032.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1032;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214387;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:41:\"Townsend-Letter-Cover-reprint-140x180.jpg\";s:5:\"width\";i:140;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13358;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:41:\"Townsend-Letter-Cover-reprint-233x300.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29608;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:41:\"Townsend-Letter-Cover-reprint-388x500.jpg\";s:5:\"width\";i:388;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67932;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:41:\"Townsend-Letter-Cover-reprint-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13686;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:41:\"Townsend-Letter-Cover-reprint-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37040;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:41:\"Townsend-Letter-Cover-reprint-955x500.jpg\";s:5:\"width\";i:955;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128271;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13523,5592,'_wp_attached_file','2022/11/Townsend-Letter-page-1.jpg'),(13524,5592,'_wp_attachment_image_alt','Townsend Letter Page 1'),(13525,5592,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:955;s:6:\"height\";i:1277;s:4:\"file\";s:34:\"2022/11/Townsend-Letter-page-1.jpg\";s:8:\"filesize\";i:342898;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-1-374x500.jpg\";s:5:\"width\";i:374;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54172;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14425;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Townsend-Letter-page-1-768x1027.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1027;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206131;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:32:\"Townsend-Letter-page-1-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1964;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31324;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-1-250x334.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24942;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-1-550x735.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:735;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115658;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:35:\"Townsend-Letter-page-1-800x1070.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1070;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224841;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-1-135x180.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8239;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-1-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20137;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-1-374x500.jpg\";s:5:\"width\";i:374;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54172;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-1-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11849;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-1-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41857;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:34:\"Townsend-Letter-page-1-955x500.jpg\";s:5:\"width\";i:955;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173476;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13526,5589,'_wp_page_template','default'),(13529,5589,'_yoast_wpseo_estimated-reading-time-minutes','1'),(13530,5589,'_yoast_wpseo_wordproof_timestamp',''),(13531,5589,'_yoast_wpseo_primary_category','34'),(13532,5589,'_thumbnail_id','5594'),(13535,5594,'_wp_attached_file','2022/11/Townsend-Letter-Cover-reprint-1.jpg'),(13536,5594,'_wp_attachment_image_alt','Townsend Letter'),(13537,5594,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:224;s:6:\"height\";i:289;s:4:\"file\";s:43:\"2022/11/Townsend-Letter-Cover-reprint-1.jpg\";s:8:\"filesize\";i:32611;s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Townsend-Letter-Cover-reprint-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17755;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:41:\"Townsend-Letter-Cover-reprint-1-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2397;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:43:\"Townsend-Letter-Cover-reprint-1-140x180.jpg\";s:5:\"width\";i:140;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13579;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:43:\"Townsend-Letter-Cover-reprint-1-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14164;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:43:\"Townsend-Letter-Cover-reprint-1-224x285.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32456;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13549,2534,'_wp_old_date','2019-08-01'),(13550,36,'_wp_old_date','2019-06-07'),(13551,2535,'_wp_old_date','2019-08-01'),(13552,280,'_wp_old_date','2019-06-07'),(13553,1750,'_wp_old_date','2019-06-14'),(13554,283,'_wp_old_date','2019-06-07'),(13555,1751,'_wp_old_date','2019-06-14'),(13556,2540,'_wp_old_date','2019-08-01'),(13557,273,'_wp_old_date','2019-06-07'),(13558,400,'_wp_old_date','2019-06-08'),(13559,119,'_wp_old_date','2019-06-07'),(13560,130,'_wp_old_date','2019-06-07'),(13561,181,'_wp_old_date','2019-06-07'),(13562,180,'_wp_old_date','2019-06-07'),(13563,222,'_wp_old_date','2019-06-07'),(13564,221,'_wp_old_date','2019-06-07'),(13565,309,'_wp_old_date','2019-06-08'),(13566,308,'_wp_old_date','2019-06-08'),(13567,402,'_wp_old_date','2019-06-08'),(13568,401,'_wp_old_date','2019-06-08'),(13569,4556,'_wp_old_date','2021-03-10'),(13570,512,'_wp_old_date','2019-06-08'),(13571,611,'_wp_old_date','2019-06-08'),(13572,577,'_wp_old_date','2019-06-08'),(13573,578,'_wp_old_date','2019-06-08'),(13574,629,'_wp_old_date','2019-06-08'),(13575,514,'_wp_old_date','2019-06-08'),(13576,515,'_wp_old_date','2019-06-08'),(13577,516,'_wp_old_date','2019-06-08'),(13578,3492,'_wp_old_date','2019-12-17'),(13579,481,'_wp_old_date','2019-06-08'),(13580,479,'_wp_old_date','2019-06-08'),(13581,2544,'_wp_old_date','2019-08-01'),(13582,478,'_wp_old_date','2019-06-08'),(13583,485,'_wp_old_date','2019-06-08'),(13584,477,'_wp_old_date','2019-06-08'),(13585,476,'_wp_old_date','2019-06-08'),(13586,475,'_wp_old_date','2019-06-08'),(13587,483,'_wp_old_date','2019-06-08'),(13588,646,'_wp_old_date','2019-06-08'),(13589,651,'_wp_old_date','2019-06-08'),(13590,649,'_wp_old_date','2019-06-08'),(13591,650,'_wp_old_date','2019-06-08'),(13592,652,'_wp_old_date','2019-06-08'),(13593,648,'_wp_old_date','2019-06-08'),(13594,2670,'_wp_old_date','2019-08-30'),(13595,2764,'_wp_old_date','2019-09-12'),(13596,647,'_wp_old_date','2019-06-08'),(13597,657,'_wp_old_date','2019-06-08'),(13598,658,'_wp_old_date','2019-06-08'),(13599,659,'_wp_old_date','2019-06-08'),(13600,660,'_wp_old_date','2019-06-08'),(13601,653,'_wp_old_date','2019-06-08'),(13602,654,'_wp_old_date','2019-06-08'),(13603,655,'_wp_old_date','2019-06-08'),(13604,656,'_wp_old_date','2019-06-08'),(13605,661,'_wp_old_date','2019-06-08'),(13606,1852,'_wp_old_date','2019-06-14'),(13607,1342,'_wp_old_date','2019-06-12'),(13608,1272,'_wp_old_date','2019-06-12'),(13609,1385,'_wp_old_date','2019-06-12'),(13610,1388,'_wp_old_date','2019-06-12'),(13611,1468,'_wp_old_date','2019-06-12'),(13612,1528,'_wp_old_date','2019-06-13'),(13613,31,'_wp_old_date','2019-06-07'),(13614,5598,'_edit_lock','1677472011:8'),(13615,5598,'_edit_last','9'),(13616,5599,'_wp_attached_file','2022/11/shoulder-pain.-Hauser.png'),(13617,5599,'_wp_attachment_image_alt','Shoulder Pain. Hauser'),(13618,5599,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:33:\"2022/11/shoulder-pain.-Hauser.png\";s:8:\"filesize\";i:674453;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"shoulder-pain.-Hauser-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:230126;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"shoulder-pain.-Hauser-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55190;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"shoulder-pain.-Hauser-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:477313;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:31:\"shoulder-pain.-Hauser-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5020;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:33:\"shoulder-pain.-Hauser-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109334;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:33:\"shoulder-pain.-Hauser-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70572;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:33:\"shoulder-pain.-Hauser-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:271369;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:33:\"shoulder-pain.-Hauser-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:511431;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:33:\"shoulder-pain.-Hauser-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54604;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:33:\"shoulder-pain.-Hauser-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130128;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:33:\"shoulder-pain.-Hauser-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:311579;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:33:\"shoulder-pain.-Hauser-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46990;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:33:\"shoulder-pain.-Hauser-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139115;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:33:\"shoulder-pain.-Hauser-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:439961;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13619,5598,'_wp_page_template','default'),(13622,5598,'_yoast_wpseo_content_score','30'),(13623,5598,'_yoast_wpseo_estimated-reading-time-minutes','6'),(13624,5598,'_yoast_wpseo_wordproof_timestamp',''),(13625,5598,'_wp_old_date','2022-11-09'),(13628,5598,'_yoast_wpseo_primary_category','32'),(13633,5598,'_yoast_wpseo_focuskw','Non-Surgical Shoulder Repair in Los Angeles'),(13634,5598,'_yoast_wpseo_title','Non-Surgical Shoulder Repair in Los Angeles'),(13635,5598,'_yoast_wpseo_metadesc','Regenerative Orthopedics for Non-Surgical Shoulder Repair in Los Angeles is available for pain relief and restoration of function!'),(13636,5598,'_yoast_wpseo_linkdex','72'),(13637,5605,'_edit_lock','1674326549:9'),(13638,5605,'_edit_last','9'),(13639,5606,'_wp_attached_file','2022/11/Non-surgical-arthritis-TX.png'),(13640,5606,'_wp_attachment_image_alt','Non Surgical Arthritis Tx'),(13641,5606,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1059;s:6:\"height\";i:1054;s:4:\"file\";s:37:\"2022/11/Non-surgical-arthritis-TX.png\";s:8:\"filesize\";i:714726;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Non-surgical-arthritis-TX-500x498.png\";s:5:\"width\";i:500;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:182576;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Non-surgical-arthritis-TX-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38530;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Non-surgical-arthritis-TX-768x764.png\";s:5:\"width\";i:768;s:6:\"height\";i:764;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:380695;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:35:\"Non-surgical-arthritis-TX-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3959;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:37:\"Non-surgical-arthritis-TX-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75496;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:37:\"Non-surgical-arthritis-TX-250x249.png\";s:5:\"width\";i:250;s:6:\"height\";i:249;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56309;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:37:\"Non-surgical-arthritis-TX-550x547.png\";s:5:\"width\";i:550;s:6:\"height\";i:547;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:215288;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:37:\"Non-surgical-arthritis-TX-800x796.png\";s:5:\"width\";i:800;s:6:\"height\";i:796;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:408311;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:37:\"Non-surgical-arthritis-TX-181x180.png\";s:5:\"width\";i:181;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33695;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:37:\"Non-surgical-arthritis-TX-301x300.png\";s:5:\"width\";i:301;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75762;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:37:\"Non-surgical-arthritis-TX-502x500.png\";s:5:\"width\";i:502;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:183972;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:37:\"Non-surgical-arthritis-TX-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35220;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:37:\"Non-surgical-arthritis-TX-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105448;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:38:\"Non-surgical-arthritis-TX-1059x500.png\";s:5:\"width\";i:1059;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:493233;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13642,5607,'_wp_attached_file','2022/11/Stem-Cell-Injections-in-Los-Angeles-CA.png'),(13643,5607,'_wp_attachment_image_alt','Stem Cell Injections In Los Angeles, Ca'),(13644,5607,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1039;s:6:\"height\";i:1050;s:4:\"file\";s:50:\"2022/11/Stem-Cell-Injections-in-Los-Angeles-CA.png\";s:8:\"filesize\";i:710919;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Stem-Cell-Injections-in-Los-Angeles-CA-495x500.png\";s:5:\"width\";i:495;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189167;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Stem-Cell-Injections-in-Los-Angeles-CA-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41275;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Stem-Cell-Injections-in-Los-Angeles-CA-768x776.png\";s:5:\"width\";i:768;s:6:\"height\";i:776;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:398653;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:48:\"Stem-Cell-Injections-in-Los-Angeles-CA-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4254;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:50:\"Stem-Cell-Injections-in-Los-Angeles-CA-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80391;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:50:\"Stem-Cell-Injections-in-Los-Angeles-CA-250x253.png\";s:5:\"width\";i:250;s:6:\"height\";i:253;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60139;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:50:\"Stem-Cell-Injections-in-Los-Angeles-CA-550x556.png\";s:5:\"width\";i:550;s:6:\"height\";i:556;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:227147;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:50:\"Stem-Cell-Injections-in-Los-Angeles-CA-800x808.png\";s:5:\"width\";i:800;s:6:\"height\";i:808;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:426240;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:50:\"Stem-Cell-Injections-in-Los-Angeles-CA-178x180.png\";s:5:\"width\";i:178;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35067;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:50:\"Stem-Cell-Injections-in-Los-Angeles-CA-297x300.png\";s:5:\"width\";i:297;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79739;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:50:\"Stem-Cell-Injections-in-Los-Angeles-CA-495x500.png\";s:5:\"width\";i:495;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189167;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:50:\"Stem-Cell-Injections-in-Los-Angeles-CA-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37718;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:50:\"Stem-Cell-Injections-in-Los-Angeles-CA-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114428;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:51:\"Stem-Cell-Injections-in-Los-Angeles-CA-1039x500.png\";s:5:\"width\";i:1039;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:524281;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13645,5605,'_wp_page_template','default'),(13646,5605,'_yoast_wpseo_content_score','90'),(13647,5605,'_yoast_wpseo_estimated-reading-time-minutes','3'),(13648,5605,'_yoast_wpseo_wordproof_timestamp',''),(13649,5605,'_yoast_wpseo_primary_category','32'),(14045,2534,'_wp_old_date','2022-11-05'),(14046,36,'_wp_old_date','2022-11-05'),(14047,2535,'_wp_old_date','2022-11-05'),(14048,280,'_wp_old_date','2022-11-05'),(14049,1750,'_wp_old_date','2022-11-05'),(14050,283,'_wp_old_date','2022-11-05'),(14051,1751,'_wp_old_date','2022-11-05'),(14052,2540,'_wp_old_date','2022-11-05'),(14053,273,'_wp_old_date','2022-11-05'),(14054,400,'_wp_old_date','2022-11-05'),(14055,119,'_wp_old_date','2022-11-05'),(14056,130,'_wp_old_date','2022-11-05'),(14057,181,'_wp_old_date','2022-11-05'),(14058,180,'_wp_old_date','2022-11-05'),(14059,222,'_wp_old_date','2022-11-05'),(14060,221,'_wp_old_date','2022-11-05'),(14061,309,'_wp_old_date','2022-11-05'),(14062,308,'_wp_old_date','2022-11-05'),(14063,402,'_wp_old_date','2022-11-05'),(14064,401,'_wp_old_date','2022-11-05'),(14065,4556,'_wp_old_date','2022-11-05'),(14066,512,'_wp_old_date','2022-11-05'),(14067,611,'_wp_old_date','2022-11-05'),(14068,577,'_wp_old_date','2022-11-05'),(14069,578,'_wp_old_date','2022-11-05'),(14070,629,'_wp_old_date','2022-11-05'),(14071,514,'_wp_old_date','2022-11-05'),(14072,515,'_wp_old_date','2022-11-05'),(14073,516,'_wp_old_date','2022-11-05'),(14074,3492,'_wp_old_date','2022-11-05'),(14075,481,'_wp_old_date','2022-11-05'),(14076,479,'_wp_old_date','2022-11-05'),(14077,2544,'_wp_old_date','2022-11-05'),(14078,478,'_wp_old_date','2022-11-05'),(14079,485,'_wp_old_date','2022-11-05'),(14080,477,'_wp_old_date','2022-11-05'),(14081,476,'_wp_old_date','2022-11-05'),(14082,475,'_wp_old_date','2022-11-05'),(14083,483,'_wp_old_date','2022-11-05'),(14084,646,'_wp_old_date','2022-11-05'),(14085,651,'_wp_old_date','2022-11-05'),(14086,649,'_wp_old_date','2022-11-05'),(14087,650,'_wp_old_date','2022-11-05'),(14088,652,'_wp_old_date','2022-11-05'),(14089,648,'_wp_old_date','2022-11-05'),(14090,2670,'_wp_old_date','2022-11-05'),(14091,2764,'_wp_old_date','2022-11-05'),(14092,647,'_wp_old_date','2022-11-05'),(14093,657,'_wp_old_date','2022-11-05'),(14094,658,'_wp_old_date','2022-11-05'),(14095,659,'_wp_old_date','2022-11-05'),(14096,660,'_wp_old_date','2022-11-05'),(14097,653,'_wp_old_date','2022-11-05'),(14098,654,'_wp_old_date','2022-11-05'),(14099,655,'_wp_old_date','2022-11-05'),(14100,656,'_wp_old_date','2022-11-05'),(14101,661,'_wp_old_date','2022-11-05'),(14102,1852,'_wp_old_date','2022-11-05'),(14103,1342,'_wp_old_date','2022-11-05'),(14104,1272,'_wp_old_date','2022-11-05'),(14105,1385,'_wp_old_date','2022-11-05'),(14106,1388,'_wp_old_date','2022-11-05'),(14107,1468,'_wp_old_date','2022-11-05'),(14108,1528,'_wp_old_date','2022-11-05'),(14109,31,'_wp_old_date','2022-11-05'),(14112,5589,'_wp_old_slug','townsend-letter-essential-fatty-acids-and-inflammation'),(14115,1473,'_yoast_wpseo_estimated-reading-time-minutes','2'),(14116,1473,'_yoast_wpseo_wordproof_timestamp',''),(14121,1524,'_yoast_wpseo_estimated-reading-time-minutes','2'),(14122,1524,'_yoast_wpseo_wordproof_timestamp',''),(14123,1524,'_wp_old_slug','stem-cell-prolotherapy'),(14126,1526,'_yoast_wpseo_estimated-reading-time-minutes','2'),(14127,1526,'_yoast_wpseo_wordproof_timestamp',''),(14128,1526,'_wp_old_slug','elbow-injuries'),(14131,1530,'_yoast_wpseo_estimated-reading-time-minutes','3'),(14132,1530,'_yoast_wpseo_wordproof_timestamp',''),(14133,1530,'_wp_old_slug','cause-of-back-pain'),(14136,1532,'_yoast_wpseo_estimated-reading-time-minutes','3'),(14137,1532,'_yoast_wpseo_wordproof_timestamp',''),(14138,1532,'_wp_old_slug','hip-replacement-is-it-necessary'),(14141,1537,'_yoast_wpseo_estimated-reading-time-minutes','2'),(14142,1537,'_yoast_wpseo_wordproof_timestamp',''),(14143,1537,'_wp_old_slug','rotator-cuff-shoulder-injuries'),(14146,1541,'_yoast_wpseo_estimated-reading-time-minutes','3'),(14147,1541,'_yoast_wpseo_wordproof_timestamp',''),(14148,1541,'_wp_old_slug','how-to-avoid-joint-and-spine-surgery'),(14151,1535,'_yoast_wpseo_estimated-reading-time-minutes','2'),(14152,1535,'_yoast_wpseo_wordproof_timestamp',''),(14153,1535,'_wp_old_slug','are-mris-replacing-the-physical-exam'),(14156,1539,'_yoast_wpseo_estimated-reading-time-minutes','3'),(14157,1539,'_yoast_wpseo_wordproof_timestamp',''),(14158,1539,'_wp_old_slug','knee-pain-and-dysfunction'),(14161,1423,'_yoast_wpseo_estimated-reading-time-minutes','5'),(14162,1423,'_yoast_wpseo_wordproof_timestamp',''),(14163,5633,'_edit_lock','1674535506:8'),(14164,5633,'_edit_last','8'),(14165,5633,'_wp_page_template','default'),(14168,5633,'_yoast_wpseo_content_score','90'),(14169,5633,'_yoast_wpseo_estimated-reading-time-minutes','4'),(14170,5633,'_yoast_wpseo_wordproof_timestamp',''),(14171,5633,'_yoast_wpseo_primary_category','32'),(14172,5635,'_wp_attached_file','2022/12/Cortisone-New-studies.png'),(14173,5635,'_wp_attachment_image_alt','New Studies Reveal Cortisone Injections Make Knee Arthritis Worse'),(14174,5635,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:33:\"2022/12/Cortisone-New-studies.png\";s:8:\"filesize\";i:389524;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Cortisone-New-studies-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152691;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Cortisone-New-studies-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40792;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Cortisone-New-studies-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:301878;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:31:\"Cortisone-New-studies-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3951;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:33:\"Cortisone-New-studies-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78662;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:33:\"Cortisone-New-studies-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50626;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:33:\"Cortisone-New-studies-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:177574;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:33:\"Cortisone-New-studies-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:320961;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:33:\"Cortisone-New-studies-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39523;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:33:\"Cortisone-New-studies-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89933;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:33:\"Cortisone-New-studies-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:201646;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:33:\"Cortisone-New-studies-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34756;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:33:\"Cortisone-New-studies-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98867;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:33:\"Cortisone-New-studies-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:331021;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14179,5640,'iwp_log_type','plugins'),(14180,5640,'iwp_log_action','update'),(14181,5640,'iwp_log_activities_type','direct'),(14182,5640,'iwp_log_actions','plugins-updated'),(14183,5640,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"19.9\";s:15:\"updated_version\";s:5:\"19.11\";}'),(14184,5642,'_wp_attached_file','2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1.jpg'),(14185,5642,'_wp_attachment_image_alt','Copy Of Arthritis. Rthroscopic Surgery For Degenerative Knee Arthritis And Meniscal Tears'),(14186,5642,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:103:\"2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1.jpg\";s:8:\"filesize\";i:123978;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:103:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-500x419.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48725;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:103:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14985;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:103:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-768x644.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89179;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:101:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5020;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:103:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25510;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:103:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-250x210.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18673;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:103:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-550x461.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55464;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:103:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-800x671.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94843;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:103:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-215x180.jpg\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15425;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:103:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-358x300.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29847;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:103:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-596x500.jpg\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62570;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:103:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14391;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:103:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33152;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:103:\"Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-940x500.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90892;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(14191,5646,'_wp_attached_file','2022/12/Slider-2-v261222.jpg'),(14192,5646,'_wp_attachment_image_alt','Slider 2 V261222'),(14193,5646,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2550;s:6:\"height\";i:778;s:4:\"file\";s:28:\"2022/12/Slider-2-v261222.jpg\";s:8:\"filesize\";i:1028794;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Slider-2-v261222-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20663;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Slider-2-v261222-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16159;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Slider-2-v261222-768x234.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41467;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"Slider-2-v261222-1536x469.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116507;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"Slider-2-v261222-2048x625.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:183860;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:26:\"Slider-2-v261222-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1212;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:28:\"Slider-2-v261222-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30832;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"Slider-2-v261222-250x76.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6204;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:28:\"Slider-2-v261222-550x168.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25504;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:28:\"Slider-2-v261222-800x244.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45000;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:28:\"Slider-2-v261222-590x180.jpg\";s:5:\"width\";i:590;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27877;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:28:\"Slider-2-v261222-983x300.jpg\";s:5:\"width\";i:983;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63012;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:29:\"Slider-2-v261222-1639x500.jpg\";s:5:\"width\";i:1639;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131722;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:28:\"Slider-2-v261222-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12607;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:28:\"Slider-2-v261222-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33361;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:29:\"Slider-2-v261222-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103695;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14194,5648,'_wp_attached_file','2022/12/Slider-2-v3-261222.jpg'),(14195,5648,'_wp_attachment_image_alt','Slider 2 V3 261222'),(14196,5648,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2550;s:6:\"height\";i:778;s:4:\"file\";s:30:\"2022/12/Slider-2-v3-261222.jpg\";s:8:\"filesize\";i:1001872;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Slider-2-v3-261222-500x153.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21981;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Slider-2-v3-261222-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16413;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Slider-2-v3-261222-768x234.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41276;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"Slider-2-v3-261222-1536x469.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115438;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:31:\"Slider-2-v3-261222-2048x625.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175794;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:28:\"Slider-2-v3-261222-48x48.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1193;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:30:\"Slider-2-v3-261222-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30434;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:29:\"Slider-2-v3-261222-250x76.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6167;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:30:\"Slider-2-v3-261222-550x168.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24833;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:30:\"Slider-2-v3-261222-800x244.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46242;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:30:\"Slider-2-v3-261222-590x180.jpg\";s:5:\"width\";i:590;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28015;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:30:\"Slider-2-v3-261222-983x300.jpg\";s:5:\"width\";i:983;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61084;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:31:\"Slider-2-v3-261222-1639x500.jpg\";s:5:\"width\";i:1639;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128421;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:30:\"Slider-2-v3-261222-210x150.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12060;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:30:\"Slider-2-v3-261222-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32989;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:31:\"Slider-2-v3-261222-1100x500.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101766;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14197,5651,'_edit_lock','1673645943:9'),(14198,5651,'_edit_last','9'),(14199,5652,'_wp_attached_file','2023/01/PRP-and-BMC.png'),(14200,5652,'_wp_attachment_image_alt','Regenerative Orthopedics'),(14201,5652,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:23:\"2023/01/PRP-and-BMC.png\";s:8:\"filesize\";i:926671;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"PRP-and-BMC-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:304529;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"PRP-and-BMC-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72466;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"PRP-and-BMC-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:630402;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:21:\"PRP-and-BMC-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5717;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:23:\"PRP-and-BMC-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146957;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:23:\"PRP-and-BMC-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92771;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:23:\"PRP-and-BMC-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:360059;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:23:\"PRP-and-BMC-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:675933;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:23:\"PRP-and-BMC-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71312;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:23:\"PRP-and-BMC-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171593;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:23:\"PRP-and-BMC-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:410908;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:23:\"PRP-and-BMC-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60317;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:23:\"PRP-and-BMC-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:184060;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:23:\"PRP-and-BMC-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:665384;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14202,5653,'_wp_attached_file','2023/01/Prolo.knee-OA.jpeg'),(14203,5653,'_wp_attachment_image_alt','Prolotherapy – The Answer for Joint Repair'),(14204,5653,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1749;s:6:\"height\";i:1312;s:4:\"file\";s:26:\"2023/01/Prolo.knee-OA.jpeg\";s:8:\"filesize\";i:245647;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Prolo.knee-OA-500x375.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30893;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Prolo.knee-OA-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11323;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Prolo.knee-OA-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54167;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"Prolo.knee-OA-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135394;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:24:\"Prolo.knee-OA-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1362;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:26:\"Prolo.knee-OA-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19974;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:26:\"Prolo.knee-OA-250x188.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11302;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:26:\"Prolo.knee-OA-550x413.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35258;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:26:\"Prolo.knee-OA-800x600.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57907;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:26:\"Prolo.knee-OA-240x180.jpeg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10578;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:26:\"Prolo.knee-OA-400x300.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22092;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:26:\"Prolo.knee-OA-667x500.jpeg\";s:5:\"width\";i:667;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46113;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:26:\"Prolo.knee-OA-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8688;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:26:\"Prolo.knee-OA-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21548;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:27:\"Prolo.knee-OA-1100x500.jpeg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65591;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14205,5651,'_wp_page_template','default'),(14208,5651,'_yoast_wpseo_content_score','90'),(14209,5651,'_yoast_wpseo_estimated-reading-time-minutes','3'),(14210,5651,'_yoast_wpseo_wordproof_timestamp',''),(14211,5651,'_yoast_wpseo_primary_category','32'),(14214,5657,'_edit_lock','1673643818:9'),(14215,5657,'_edit_last','9'),(14216,5657,'_wp_page_template','default'),(14219,5657,'_yoast_wpseo_content_score','90'),(14220,5657,'_yoast_wpseo_estimated-reading-time-minutes','5'),(14221,5657,'_yoast_wpseo_wordproof_timestamp',''),(14222,5657,'_yoast_wpseo_primary_category','32'),(14225,5657,'_yoast_wpseo_focuskw','Prolotherapy Is the Answer for Joint Repair'),(14226,5657,'_yoast_wpseo_linkdex','73'),(14229,5657,'_yoast_wpseo_title','Prolotherapy Is the Answer for Joint Repair'),(14230,5657,'_yoast_wpseo_metadesc','Prolotherapy is the answer for joint repair, and at OrthoRegen, we have specialized in this regenerative treatment for many years.'),(14231,5657,'_wp_old_slug','prolotherapy-the-answer-for-joint-repair'),(14234,5651,'_yoast_wpseo_focuskw','Bone Marrow Concentrate and Platelet Rich Plasma Are Growing in Popularity'),(14235,5651,'_yoast_wpseo_title','Bone Marrow Concentrate and PRP are Growing in Popularity'),(14236,5651,'_yoast_wpseo_metadesc','Bone Marrow Concentrate and Platelet Rich Plasma are growing in popularity and are effective in treating various joint injuries and arthritis.'),(14237,5651,'_yoast_wpseo_linkdex','72'),(14238,5651,'_wp_old_slug','regenerative-orthopedics'),(14245,5633,'_yoast_wpseo_focuskw','Cortisone Makes Arthritis Worse'),(14246,5633,'_yoast_wpseo_linkdex','75'),(14249,5633,'_yoast_wpseo_title','Cortisone Makes Arthritis Worse'),(14250,5633,'_yoast_wpseo_metadesc','New studies show cortisone injections are \"significantly associated\" with increased progression of arthritis. Cortisone makes arthritis worse'),(14255,5605,'_yoast_wpseo_focuskw','Stem Cell Injections in the Los Angeles Area'),(14256,5605,'_yoast_wpseo_title','Stem Cell Injections in the Los Angeles Area'),(14257,5605,'_yoast_wpseo_metadesc','Our goal at OrthoRegen®, where we provide stem cell injections in the Los Angeles, CA area, is to stimulate the repair of injured joints.'),(14258,5605,'_yoast_wpseo_linkdex','74'),(14259,5605,'_wp_old_slug','stem-cell-injections-in-los-angeles-ca'),(14262,5676,'_edit_lock','1674941682:9'),(14263,5676,'_edit_last','9'),(14264,5676,'_wp_page_template','default'),(14267,5676,'_yoast_wpseo_content_score','90'),(14268,5676,'_yoast_wpseo_estimated-reading-time-minutes','4'),(14269,5676,'_yoast_wpseo_wordproof_timestamp',''),(14270,5676,'_wp_old_date','2023-01-24'),(14271,5678,'_wp_attached_file','2023/01/arthroscopy.png'),(14272,5678,'_wp_attachment_image_alt','Arthroscopy'),(14273,5678,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:993;s:6:\"height\";i:825;s:4:\"file\";s:23:\"2023/01/arthroscopy.png\";s:8:\"filesize\";i:649242;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"arthroscopy-500x415.png\";s:5:\"width\";i:500;s:6:\"height\";i:415;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:219870;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"arthroscopy-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59696;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"arthroscopy-768x638.png\";s:5:\"width\";i:768;s:6:\"height\";i:638;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:416263;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:21:\"arthroscopy-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5153;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:23:\"arthroscopy-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113034;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:23:\"arthroscopy-250x208.png\";s:5:\"width\";i:250;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75584;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:23:\"arthroscopy-550x457.png\";s:5:\"width\";i:550;s:6:\"height\";i:457;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:255181;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:23:\"arthroscopy-800x665.png\";s:5:\"width\";i:800;s:6:\"height\";i:665;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:440483;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:23:\"arthroscopy-217x180.png\";s:5:\"width\";i:217;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60511;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:23:\"arthroscopy-361x300.png\";s:5:\"width\";i:361;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:134669;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:23:\"arthroscopy-602x500.png\";s:5:\"width\";i:602;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:290482;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:23:\"arthroscopy-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49519;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:23:\"arthroscopy-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139302;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:23:\"arthroscopy-993x500.png\";s:5:\"width\";i:993;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:346458;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14276,5676,'_yoast_wpseo_primary_category','32'),(14285,5676,'_yoast_wpseo_focuskw','Stem Cell Therapy in Newport Beach CA'),(14286,5676,'_yoast_wpseo_title','Stem Cell Therapy in Newport Beach, CA'),(14287,5676,'_yoast_wpseo_metadesc','Looking for a surgical alternative? OrthoRegen® offers Stem Cell Therapy in the Newport Beach, CA area to help patients with knee pain.'),(14288,5676,'_yoast_wpseo_linkdex','72'),(14289,5686,'_edit_lock','1679883481:8'),(14290,5686,'_edit_last','9'),(14291,5687,'_wp_attached_file','2023/02/red-knee.png'),(14292,5687,'_wp_attachment_image_alt','Red Knee'),(14293,5687,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:20:\"2023/02/red-knee.png\";s:8:\"filesize\";i:347999;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"red-knee-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:169787;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"red-knee-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52774;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"red-knee-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:297036;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:18:\"red-knee-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4745;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:20:\"red-knee-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96154;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:20:\"red-knee-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63609;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:20:\"red-knee-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:191220;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:20:\"red-knee-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:314356;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:20:\"red-knee-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50372;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:20:\"red-knee-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108143;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:20:\"red-knee-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:212591;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:20:\"red-knee-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44739;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:20:\"red-knee-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114368;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:20:\"red-knee-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:201286;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14294,5686,'_wp_page_template','default'),(14297,5686,'_yoast_wpseo_content_score','90'),(14298,5686,'_yoast_wpseo_estimated-reading-time-minutes','3'),(14299,5686,'_yoast_wpseo_wordproof_timestamp',''),(14300,5686,'_wp_old_date','2023-02-04'),(14303,5686,'_yoast_wpseo_primary_category','32'),(14306,5686,'_yoast_wpseo_focuskw','Red Knees'),(14307,5686,'_yoast_wpseo_title','Red Knees'),(14308,5686,'_yoast_wpseo_linkdex','72'),(14311,5686,'_wp_old_slug','alternatives-for-the-red-knee-non-surgical-candidate-population'),(14312,5686,'_yoast_wpseo_metadesc','Regenerative Orthopedics offers hope for the \"red knee\" population and a non-surgical alternative to knee replacement.'),(14315,5694,'_edit_lock','1677275589:9'),(14316,5694,'_edit_last','9'),(14317,5695,'_wp_attached_file','2023/02/shoulder-degeneration.-Prolotherapy.png'),(14318,5695,'_wp_attachment_image_alt','Shoulder Degeneration. Prolotherapy'),(14319,5695,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:47:\"2023/02/shoulder-degeneration.-Prolotherapy.png\";s:8:\"filesize\";i:1440539;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"shoulder-degeneration.-Prolotherapy-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:406197;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"shoulder-degeneration.-Prolotherapy-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84562;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"shoulder-degeneration.-Prolotherapy-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:909688;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:45:\"shoulder-degeneration.-Prolotherapy-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5474;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:47:\"shoulder-degeneration.-Prolotherapy-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:179164;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:47:\"shoulder-degeneration.-Prolotherapy-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110493;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:47:\"shoulder-degeneration.-Prolotherapy-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:486455;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:47:\"shoulder-degeneration.-Prolotherapy-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:981357;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:47:\"shoulder-degeneration.-Prolotherapy-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82800;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:47:\"shoulder-degeneration.-Prolotherapy-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:215929;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:47:\"shoulder-degeneration.-Prolotherapy-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:565949;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:47:\"shoulder-degeneration.-Prolotherapy-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68244;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:47:\"shoulder-degeneration.-Prolotherapy-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:226073;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:47:\"shoulder-degeneration.-Prolotherapy-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:863570;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14320,5694,'_wp_page_template','default'),(14323,5694,'_yoast_wpseo_content_score','90'),(14324,5694,'_yoast_wpseo_estimated-reading-time-minutes','3'),(14325,5694,'_yoast_wpseo_wordproof_timestamp',''),(14326,5694,'_wp_old_date','2023-02-22'),(14329,5701,'_wp_attached_file','2023/02/shoulder-degeneration.-Prolotherapy-1.png'),(14330,5701,'_wp_attachment_image_alt','Shoulder Degeneration. Prolotherapy'),(14331,5701,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:49:\"2023/02/shoulder-degeneration.-Prolotherapy-1.png\";s:8:\"filesize\";i:1440181;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"shoulder-degeneration.-Prolotherapy-1-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:398416;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"shoulder-degeneration.-Prolotherapy-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81968;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"shoulder-degeneration.-Prolotherapy-1-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:900008;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:47:\"shoulder-degeneration.-Prolotherapy-1-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5226;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:49:\"shoulder-degeneration.-Prolotherapy-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174392;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:49:\"shoulder-degeneration.-Prolotherapy-1-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106682;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:49:\"shoulder-degeneration.-Prolotherapy-1-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:477997;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:49:\"shoulder-degeneration.-Prolotherapy-1-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:971811;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:49:\"shoulder-degeneration.-Prolotherapy-1-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80307;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:49:\"shoulder-degeneration.-Prolotherapy-1-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:210815;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:49:\"shoulder-degeneration.-Prolotherapy-1-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:556052;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:49:\"shoulder-degeneration.-Prolotherapy-1-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65719;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:49:\"shoulder-degeneration.-Prolotherapy-1-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:220966;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:49:\"shoulder-degeneration.-Prolotherapy-1-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:866657;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14334,5694,'_yoast_wpseo_focuskw','Remedies for Shoulder Repair'),(14335,5694,'_yoast_wpseo_metadesc','Regenerative Orthopedics: Non-surgical remedies for shoulder repair that involve no cutting, suturing, sewing, or stapling.'),(14336,5694,'_yoast_wpseo_linkdex','74'),(14339,5704,'_edit_lock','1682738297:8'),(14340,5704,'_edit_last','9'),(14341,5705,'_wp_attached_file','2023/02/Back-Pain-Treatment.png'),(14342,5705,'_wp_attachment_image_alt','Back Pain Treatment'),(14343,5705,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:31:\"2023/02/Back-Pain-Treatment.png\";s:8:\"filesize\";i:545869;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Back-Pain-Treatment-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:198118;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Back-Pain-Treatment-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55925;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Back-Pain-Treatment-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:398977;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:29:\"Back-Pain-Treatment-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4780;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:31:\"Back-Pain-Treatment-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109826;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:31:\"Back-Pain-Treatment-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63472;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:31:\"Back-Pain-Treatment-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:232029;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:31:\"Back-Pain-Treatment-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:425554;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:31:\"Back-Pain-Treatment-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49292;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:31:\"Back-Pain-Treatment-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114597;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:31:\"Back-Pain-Treatment-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:264754;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:31:\"Back-Pain-Treatment-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46438;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:31:\"Back-Pain-Treatment-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:135733;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:31:\"Back-Pain-Treatment-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:474034;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14344,5704,'_wp_page_template','default'),(14347,5704,'_yoast_wpseo_content_score','90'),(14348,5704,'_yoast_wpseo_estimated-reading-time-minutes','4'),(14349,5704,'_yoast_wpseo_wordproof_timestamp',''),(14350,5704,'_wp_old_date','2023-02-27'),(14353,5704,'_yoast_wpseo_focuskw','Back Pain Treatment'),(14354,5704,'_yoast_wpseo_title','Back Pain Treatment: Regenerative Orthopedics'),(14355,5704,'_yoast_wpseo_linkdex','76'),(14358,5704,'_yoast_wpseo_metadesc','What\'s the best back pain treatment for spinal instability? Regenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells.'),(14363,5500,'_yoast_wpseo_focuskw','Patellar Tendinopathy'),(14364,5500,'_yoast_wpseo_title','Patellar Tendinopathy: Treat It With Regenerative Orthopedics'),(14365,5500,'_yoast_wpseo_metadesc','Non-Surgical Regenerative Orthopedics is a successful solution for many knee pain conditions, including patellar tendinopathy.'),(14366,5500,'_yoast_wpseo_linkdex','72'),(14371,5715,'_edit_lock','1680969871:8'),(14372,5715,'_edit_last','9'),(14373,5716,'_wp_attached_file','2023/03/Prolotherapy-Knee-Arthritis-1.png'),(14374,5716,'_wp_attachment_image_alt','Prolotherapy Knee Arthritis (1)'),(14375,5716,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:41:\"2023/03/Prolotherapy-Knee-Arthritis-1.png\";s:8:\"filesize\";i:999211;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Prolotherapy-Knee-Arthritis-1-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:298353;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Prolotherapy-Knee-Arthritis-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67481;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Prolotherapy-Knee-Arthritis-1-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:644861;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:39:\"Prolotherapy-Knee-Arthritis-1-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4519;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:41:\"Prolotherapy-Knee-Arthritis-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141344;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:41:\"Prolotherapy-Knee-Arthritis-1-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83211;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:41:\"Prolotherapy-Knee-Arthritis-1-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:355127;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:41:\"Prolotherapy-Knee-Arthritis-1-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:694327;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:41:\"Prolotherapy-Knee-Arthritis-1-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62350;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:41:\"Prolotherapy-Knee-Arthritis-1-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:161522;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:41:\"Prolotherapy-Knee-Arthritis-1-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:410220;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:41:\"Prolotherapy-Knee-Arthritis-1-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53683;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:41:\"Prolotherapy-Knee-Arthritis-1-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:176182;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:41:\"Prolotherapy-Knee-Arthritis-1-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:626714;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14376,5715,'_wp_page_template','default'),(14379,5715,'_yoast_wpseo_content_score','90'),(14380,5715,'_yoast_wpseo_estimated-reading-time-minutes','4'),(14381,5715,'_yoast_wpseo_wordproof_timestamp',''),(14382,5715,'_wp_old_date','2023-03-13'),(14385,5715,'_yoast_wpseo_focuskw','Arthritis Knee Treatment'),(14386,5715,'_yoast_wpseo_title','Arthritis Knee Treatment'),(14387,5715,'_yoast_wpseo_metadesc','Regenerative Orthopedics are effective Arthritis Knee Treatments even in cases of severe arthritis. Call today at 310-453-1234.'),(14388,5715,'_yoast_wpseo_linkdex','72'),(14391,615,'_yoast_wpseo_focuskw','Hand Injury Treatment'),(14392,615,'_yoast_wpseo_title','Hand Injury Treatment'),(14393,615,'_yoast_wpseo_metadesc','Dr. Fields and our staff at OrthoRegen® offer traditional Dextrose Prolotherapy hand injury treatments to give you pain relief.'),(14394,615,'_yoast_wpseo_linkdex','71'),(14395,615,'_yoast_wpseo_wordproof_timestamp',''),(14398,511,'_yoast_wpseo_focuskw','Chronic Shoulder Pain'),(14399,511,'_yoast_wpseo_metadesc','Our goal at OrthoRegen® is for patients to have an active, healthy, pain-free life instead of chronic shoulder pain.'),(14400,511,'_yoast_wpseo_linkdex','82'),(14401,511,'_yoast_wpseo_wordproof_timestamp',''),(14404,5728,'_edit_lock','1680970055:8'),(14405,5728,'_edit_last','9'),(14406,5729,'_wp_attached_file','2023/03/DDD-Treatment-2.png'),(14407,5729,'_wp_attachment_image_alt','Best Treatments for Low Back Pain'),(14408,5729,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:27:\"2023/03/DDD-Treatment-2.png\";s:8:\"filesize\";i:681627;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"DDD-Treatment-2-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:230070;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"DDD-Treatment-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59481;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"DDD-Treatment-2-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:454198;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:25:\"DDD-Treatment-2-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4625;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:27:\"DDD-Treatment-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114296;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:27:\"DDD-Treatment-2-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75581;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:27:\"DDD-Treatment-2-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:267172;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:27:\"DDD-Treatment-2-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:486767;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:27:\"DDD-Treatment-2-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58431;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:27:\"DDD-Treatment-2-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:135090;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:27:\"DDD-Treatment-2-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:303460;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:27:\"DDD-Treatment-2-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49618;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:27:\"DDD-Treatment-2-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141804;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:27:\"DDD-Treatment-2-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:418596;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14409,5728,'_wp_page_template','default'),(14412,5728,'_yoast_wpseo_content_score','90'),(14413,5728,'_yoast_wpseo_estimated-reading-time-minutes','5'),(14414,5728,'_yoast_wpseo_wordproof_timestamp',''),(14415,5728,'_yoast_wpseo_primary_category','32'),(14418,5728,'_yoast_wpseo_focuskw','Best Treatment for Low Back Pain'),(14419,5728,'_yoast_wpseo_title','Best Treatment for Low Back Pain'),(14420,5728,'_yoast_wpseo_metadesc','The best treatment for low back pain is one that gets to the root of the problem. Regenerative Orthopedics does that!'),(14421,5728,'_yoast_wpseo_linkdex','74'),(14422,5736,'_edit_lock','1683145899:9'),(14423,5736,'_edit_last','9'),(14424,5737,'_wp_attached_file','2023/04/Knee-Replacement-Failures.png'),(14425,5737,'_wp_attachment_image_alt','Knee Replacement Failures'),(14426,5737,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:37:\"2023/04/Knee-Replacement-Failures.png\";s:8:\"filesize\";i:736897;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Knee-Replacement-Failures-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:242791;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Knee-Replacement-Failures-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57416;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Knee-Replacement-Failures-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:512081;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:35:\"Knee-Replacement-Failures-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4958;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:37:\"Knee-Replacement-Failures-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114627;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:37:\"Knee-Replacement-Failures-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72467;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:37:\"Knee-Replacement-Failures-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:285373;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:37:\"Knee-Replacement-Failures-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:549036;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:37:\"Knee-Replacement-Failures-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55342;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:37:\"Knee-Replacement-Failures-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:134631;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:37:\"Knee-Replacement-Failures-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:330309;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:37:\"Knee-Replacement-Failures-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47081;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:37:\"Knee-Replacement-Failures-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143898;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:37:\"Knee-Replacement-Failures-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:484871;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14427,5736,'_wp_page_template','default'),(14428,5736,'_yoast_wpseo_content_score','90'),(14429,5736,'_yoast_wpseo_estimated-reading-time-minutes','4'),(14430,5736,'_yoast_wpseo_wordproof_timestamp',''),(14433,5736,'_wp_old_date','2023-04-10'),(14436,5736,'_yoast_wpseo_focuskw','Knee Replacement Failure'),(14437,5736,'_yoast_wpseo_title','Knee Replacement Failure'),(14438,5736,'_yoast_wpseo_metadesc','We are pleased to offer this alternative to knee replacement when knee replacement failure is a concern. Give us a call 310-453-1234.'),(14439,5736,'_yoast_wpseo_linkdex','76'),(14442,5747,'_edit_lock','1681926585:9'),(14443,5747,'_edit_last','9'),(14444,5748,'_wp_attached_file','2023/04/Cervical-Instability-2.png'),(14445,5748,'_wp_attachment_image_alt','Neck Pain Treatment'),(14446,5748,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:34:\"2023/04/Cervical-Instability-2.png\";s:8:\"filesize\";i:646402;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Cervical-Instability-2-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:245371;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Cervical-Instability-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69440;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Cervical-Instability-2-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:468880;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:32:\"Cervical-Instability-2-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5154;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:34:\"Cervical-Instability-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133572;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:34:\"Cervical-Instability-2-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82849;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:34:\"Cervical-Instability-2-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:282953;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:34:\"Cervical-Instability-2-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:501008;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:34:\"Cervical-Instability-2-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64491;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:34:\"Cervical-Instability-2-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147437;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:34:\"Cervical-Instability-2-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:319758;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:34:\"Cervical-Instability-2-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56031;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:34:\"Cervical-Instability-2-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158259;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:34:\"Cervical-Instability-2-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:421405;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14447,5747,'_wp_page_template','default'),(14450,5747,'_yoast_wpseo_content_score','90'),(14451,5747,'_yoast_wpseo_estimated-reading-time-minutes','4'),(14452,5747,'_yoast_wpseo_wordproof_timestamp',''),(14453,5747,'_yoast_wpseo_primary_category','32'),(14454,5752,'_wp_attached_file','2023/04/Cervical-Instability-2-1.png'),(14455,5752,'_wp_attachment_image_alt','Cervical Instability 2'),(14456,5752,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:36:\"2023/04/Cervical-Instability-2-1.png\";s:8:\"filesize\";i:655580;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Cervical-Instability-2-1-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:246888;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Cervical-Instability-2-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68561;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"Cervical-Instability-2-1-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:473234;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:34:\"Cervical-Instability-2-1-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5059;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:36:\"Cervical-Instability-2-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131914;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:36:\"Cervical-Instability-2-1-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83358;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:36:\"Cervical-Instability-2-1-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:284497;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:36:\"Cervical-Instability-2-1-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:506323;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:36:\"Cervical-Instability-2-1-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64755;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:36:\"Cervical-Instability-2-1-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:148198;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:36:\"Cervical-Instability-2-1-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:322340;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:36:\"Cervical-Instability-2-1-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57154;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:36:\"Cervical-Instability-2-1-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:161144;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:36:\"Cervical-Instability-2-1-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:430259;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14459,5747,'_yoast_wpseo_focuskw','Neck Pain Treatment'),(14460,5747,'_yoast_wpseo_title','Neck Pain Treatment'),(14461,5747,'_yoast_wpseo_metadesc','At OrthoRegen®, we understand cervical instability. For years, our neck pain treatment has helped patients find the relief they seek.'),(14462,5747,'_yoast_wpseo_linkdex','74'),(14465,5755,'_wp_attached_file','2019/06/Back-Pain.-Prolotherapy.jpeg'),(14466,5755,'_wp_attachment_image_alt','Back Pain. Prolotherapy'),(14467,5755,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1749;s:6:\"height\";i:1312;s:4:\"file\";s:36:\"2019/06/Back-Pain.-Prolotherapy.jpeg\";s:8:\"filesize\";i:360006;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Back-Pain.-Prolotherapy-500x375.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42564;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Back-Pain.-Prolotherapy-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13366;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"Back-Pain.-Prolotherapy-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79034;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:38:\"Back-Pain.-Prolotherapy-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198113;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:34:\"Back-Pain.-Prolotherapy-48x48.jpeg\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1332;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:36:\"Back-Pain.-Prolotherapy-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26539;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:36:\"Back-Pain.-Prolotherapy-250x188.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13963;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:36:\"Back-Pain.-Prolotherapy-550x413.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48609;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:36:\"Back-Pain.-Prolotherapy-800x600.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83720;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:36:\"Back-Pain.-Prolotherapy-240x180.jpeg\";s:5:\"width\";i:240;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13022;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:36:\"Back-Pain.-Prolotherapy-400x300.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30219;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:36:\"Back-Pain.-Prolotherapy-667x500.jpeg\";s:5:\"width\";i:667;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64370;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:36:\"Back-Pain.-Prolotherapy-210x150.jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10379;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:36:\"Back-Pain.-Prolotherapy-400x285.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29740;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:37:\"Back-Pain.-Prolotherapy-1100x500.jpeg\";s:5:\"width\";i:1100;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98361;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14470,469,'_yoast_wpseo_focuskw','Chronic Pain'),(14471,469,'_yoast_wpseo_title','Chronic Pain'),(14472,469,'_yoast_wpseo_metadesc','Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? Treat it with Prolotherapy.'),(14473,469,'_yoast_wpseo_linkdex','82'),(14474,469,'_yoast_wpseo_wordproof_timestamp',''),(14475,469,'_wp_old_slug','chronic-pain-overview'),(14480,5760,'_edit_lock','1683147028:9'),(14481,5760,'_edit_last','9'),(14482,5761,'_wp_attached_file','2023/04/meniscectomy.-Osteoarthritis-and-Cartilage.png'),(14483,5761,'_wp_attachment_image_alt','Meniscectomy. Osteoarthritis And Cartilage'),(14484,5761,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:54:\"2023/04/meniscectomy.-Osteoarthritis-and-Cartilage.png\";s:8:\"filesize\";i:507799;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"meniscectomy.-Osteoarthritis-and-Cartilage-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:207523;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"meniscectomy.-Osteoarthritis-and-Cartilage-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59310;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"meniscectomy.-Osteoarthritis-and-Cartilage-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:402854;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:52:\"meniscectomy.-Osteoarthritis-and-Cartilage-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5157;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:54:\"meniscectomy.-Osteoarthritis-and-Cartilage-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112660;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:54:\"meniscectomy.-Osteoarthritis-and-Cartilage-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69882;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:54:\"meniscectomy.-Osteoarthritis-and-Cartilage-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:241855;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:54:\"meniscectomy.-Osteoarthritis-and-Cartilage-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:427805;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:54:\"meniscectomy.-Osteoarthritis-and-Cartilage-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54902;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:54:\"meniscectomy.-Osteoarthritis-and-Cartilage-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122316;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:54:\"meniscectomy.-Osteoarthritis-and-Cartilage-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:273976;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:54:\"meniscectomy.-Osteoarthritis-and-Cartilage-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47413;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:54:\"meniscectomy.-Osteoarthritis-and-Cartilage-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133221;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:54:\"meniscectomy.-Osteoarthritis-and-Cartilage-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:422950;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14485,5760,'_wp_page_template','default'),(14488,5760,'_yoast_wpseo_content_score','90'),(14489,5760,'_yoast_wpseo_estimated-reading-time-minutes','7'),(14490,5760,'_yoast_wpseo_wordproof_timestamp',''),(14491,5760,'_wp_old_date','2023-04-29'),(14494,5760,'_yoast_wpseo_primary_category','30'),(14499,5760,'_wp_old_date','2023-04-14'),(14504,5760,'_yoast_wpseo_focuskw','Meniscus Tear Treatments'),(14505,5760,'_yoast_wpseo_title','Meniscus tear treatments'),(14506,5760,'_yoast_wpseo_metadesc','Regenerative Orthopedics are meniscus tear treatments that strengthen ligaments, repair the meniscus, and stop the breakdown of cartilage.'),(14507,5760,'_yoast_wpseo_linkdex','71'),(14510,5760,'_wp_old_slug','meniscus-tear-treatment'),(14517,5773,'_edit_lock','1683928138:9'),(14518,5773,'_edit_last','9'),(14519,5774,'_wp_attached_file','2023/05/JSES-Reviews-Reports-and-Techniques.-Musculoskeletal.png'),(14520,5774,'_wp_attachment_image_alt','Chronic Pain Management'),(14521,5774,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:64:\"2023/05/JSES-Reviews-Reports-and-Techniques.-Musculoskeletal.png\";s:8:\"filesize\";i:609851;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:224947;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57767;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:64:\"JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:439484;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:62:\"JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4960;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:64:\"JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114008;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:64:\"JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72241;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:64:\"JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:261920;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:64:\"JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:467063;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:64:\"JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55372;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:64:\"JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131295;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:64:\"JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:297107;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:64:\"JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45632;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:64:\"JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133225;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:64:\"JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:398092;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14522,5773,'_wp_page_template','default'),(14525,5773,'_yoast_wpseo_content_score','30'),(14526,5773,'_yoast_wpseo_estimated-reading-time-minutes','5'),(14527,5773,'_yoast_wpseo_wordproof_timestamp',''),(14528,5773,'_yoast_wpseo_primary_category','32'),(14533,5773,'_yoast_wpseo_focuskw','chronic pain management'),(14534,5773,'_yoast_wpseo_title','Chronic Pain Management'),(14535,5773,'_yoast_wpseo_metadesc','Spending your days in chronic pain management? Don\'t just manage musculoskeletal pain; repair the problem with Regenerative Orthopedics.'),(14536,5773,'_yoast_wpseo_linkdex','77'),(14539,5783,'_edit_lock','1685137200:9'),(14540,5783,'_edit_last','9'),(14541,5784,'_wp_attached_file','2023/05/Arthritis.-Orthopedic-Reviews.png'),(14542,5784,'_wp_attachment_image_alt','Arthritis. Orthopedic Reviews'),(14543,5784,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:41:\"2023/05/Arthritis.-Orthopedic-Reviews.png\";s:8:\"filesize\";i:165012;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Arthritis.-Orthopedic-Reviews-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:195791;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Arthritis.-Orthopedic-Reviews-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53402;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Arthritis.-Orthopedic-Reviews-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:406724;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:39:\"Arthritis.-Orthopedic-Reviews-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4492;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:41:\"Arthritis.-Orthopedic-Reviews-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103494;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:41:\"Arthritis.-Orthopedic-Reviews-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61795;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:41:\"Arthritis.-Orthopedic-Reviews-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:230314;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:41:\"Arthritis.-Orthopedic-Reviews-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:435384;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:41:\"Arthritis.-Orthopedic-Reviews-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48042;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:41:\"Arthritis.-Orthopedic-Reviews-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112080;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:41:\"Arthritis.-Orthopedic-Reviews-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:263443;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:41:\"Arthritis.-Orthopedic-Reviews-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42792;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:41:\"Arthritis.-Orthopedic-Reviews-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122668;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:41:\"Arthritis.-Orthopedic-Reviews-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139142;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14544,5783,'_wp_page_template','default'),(14547,5783,'_yoast_wpseo_content_score','90'),(14548,5783,'_yoast_wpseo_estimated-reading-time-minutes','5'),(14549,5783,'_yoast_wpseo_wordproof_timestamp',''),(14550,5783,'_wp_old_date','2023-05-21'),(14553,5783,'_wp_old_slug','5783'),(14556,5783,'_yoast_wpseo_primary_category','32'),(14559,5783,'_yoast_wpseo_focuskw','Alternative Arthritis Treatments'),(14560,5783,'_yoast_wpseo_metadesc','At OrthoRegen,® we have many years of experience in providing regenerative treatments as alternative treatments for arthritis.'),(14561,5783,'_yoast_wpseo_linkdex','72'),(14562,5783,'_wp_old_slug','alternative-treatment-for-arthritis'),(14567,5795,'_edit_lock','1686345596:9'),(14568,5795,'_edit_last','9'),(14569,5796,'_wp_attached_file','2023/06/Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1.png'),(14570,5796,'_wp_attachment_image_alt','Tennis Elbow Treatment'),(14571,5796,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:60:\"2023/06/Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1.png\";s:8:\"filesize\";i:761595;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:256807;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59883;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:525540;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:58:\"Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4976;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:60:\"Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116654;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:60:\"Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80485;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:60:\"Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:300979;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:60:\"Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:562710;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:60:\"Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62477;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:60:\"Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147611;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:60:\"Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:345433;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:60:\"Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50405;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:60:\"Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:148625;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:60:\"Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:415573;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14572,5795,'_wp_page_template','default'),(14575,5795,'_yoast_wpseo_content_score','90'),(14576,5795,'_yoast_wpseo_estimated-reading-time-minutes','7'),(14577,5795,'_yoast_wpseo_wordproof_timestamp',''),(14578,5795,'_yoast_wpseo_primary_category','32'),(14579,5798,'_edit_lock','1686345393:9'),(14580,5798,'_edit_last','9'),(14581,5799,'_wp_attached_file','2023/06/Hip-Arthritis.png'),(14582,5799,'_wp_attachment_image_alt','Hip Arthritis Treatment'),(14583,5799,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:25:\"2023/06/Hip-Arthritis.png\";s:8:\"filesize\";i:722199;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Hip-Arthritis-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:266658;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Hip-Arthritis-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70150;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Hip-Arthritis-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:528527;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:23:\"Hip-Arthritis-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5783;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:25:\"Hip-Arthritis-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133955;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:25:\"Hip-Arthritis-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87452;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:25:\"Hip-Arthritis-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:311495;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:25:\"Hip-Arthritis-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:565769;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:25:\"Hip-Arthritis-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67505;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:25:\"Hip-Arthritis-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:156827;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:25:\"Hip-Arthritis-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:352542;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:25:\"Hip-Arthritis-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57284;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:25:\"Hip-Arthritis-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:161517;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:25:\"Hip-Arthritis-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:428067;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14584,5798,'_wp_page_template','default'),(14587,5798,'_yoast_wpseo_content_score','60'),(14588,5798,'_yoast_wpseo_estimated-reading-time-minutes','7'),(14589,5798,'_yoast_wpseo_wordproof_timestamp',''),(14590,5798,'_yoast_wpseo_primary_category','32'),(14593,5795,'_yoast_wpseo_focuskw','Tennis Elbow Treatment'),(14594,5795,'_yoast_wpseo_linkdex','76'),(14599,5795,'_yoast_wpseo_metadesc','Regenerative Orthopedics stabilize, strengthen, address the instability, and put an end to the pain and symptoms of tennis elbow.'),(14602,5798,'_yoast_wpseo_focuskw','Hip Arthritis Treatment'),(14603,5798,'_yoast_wpseo_title','Hip Arthritis Treatment'),(14604,5798,'_yoast_wpseo_metadesc','Looking for a surgical alternative to hip replacement? Regenerative Orthopedics is a successful hip arthritis treatment. Give us a call!'),(14605,5798,'_yoast_wpseo_linkdex','76'),(14620,5815,'_edit_lock','1688591975:9'),(14621,5815,'_edit_last','9'),(14622,5816,'_wp_attached_file','2023/07/Low-Back-Pain.png'),(14623,5816,'_wp_attachment_image_alt','Low Back Pain'),(14624,5816,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:25:\"2023/07/Low-Back-Pain.png\";s:8:\"filesize\";i:916250;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Low-Back-Pain-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:293989;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Low-Back-Pain-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73618;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Low-Back-Pain-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:605882;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:23:\"Low-Back-Pain-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6022;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:25:\"Low-Back-Pain-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:145856;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:25:\"Low-Back-Pain-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92400;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:25:\"Low-Back-Pain-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:345077;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:25:\"Low-Back-Pain-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:649444;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:25:\"Low-Back-Pain-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71104;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:25:\"Low-Back-Pain-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:168441;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:25:\"Low-Back-Pain-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:395363;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:25:\"Low-Back-Pain-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60706;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:25:\"Low-Back-Pain-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:179110;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:25:\"Low-Back-Pain-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:579191;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14625,5815,'_wp_page_template','default'),(14628,5815,'_yoast_wpseo_content_score','90'),(14629,5815,'_yoast_wpseo_estimated-reading-time-minutes','4'),(14630,5815,'_yoast_wpseo_wordproof_timestamp',''),(14631,5815,'_wp_old_date','2023-07-02'),(14634,5815,'_yoast_wpseo_primary_category','32'),(14637,5815,'_yoast_wpseo_focuskw','Back Pain Specialists'),(14638,5815,'_yoast_wpseo_linkdex','72'),(14641,5815,'_yoast_wpseo_title','Back Pain Specialists'),(14642,5815,'_yoast_wpseo_metadesc','At OrthoRegen®, our back pain specialists effectively use Regenerative Orthopedics to treat lumbar pain and instability.'),(14649,5815,'_wp_old_slug','back-pain-specialist'),(14650,5827,'_edit_lock','1690394588:9'),(14651,5827,'_edit_last','9'),(14652,5828,'_wp_attached_file','2023/07/Neck-Arthritis.png'),(14653,5828,'_wp_attachment_image_alt','Arthritis Neck Treatment'),(14654,5828,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:26:\"2023/07/Neck-Arthritis.png\";s:8:\"filesize\";i:502230;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Neck-Arthritis-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180391;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Neck-Arthritis-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52268;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Neck-Arthritis-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:367289;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:24:\"Neck-Arthritis-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4796;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:26:\"Neck-Arthritis-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99660;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:26:\"Neck-Arthritis-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59044;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:26:\"Neck-Arthritis-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:211700;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:26:\"Neck-Arthritis-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:392496;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:26:\"Neck-Arthritis-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46233;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:26:\"Neck-Arthritis-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104114;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:26:\"Neck-Arthritis-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:241897;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:26:\"Neck-Arthritis-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40885;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:26:\"Neck-Arthritis-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114798;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:26:\"Neck-Arthritis-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:387478;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14655,5827,'_wp_page_template','default'),(14658,5827,'_yoast_wpseo_content_score','90'),(14659,5827,'_yoast_wpseo_estimated-reading-time-minutes','4'),(14660,5827,'_yoast_wpseo_wordproof_timestamp',''),(14661,5827,'_yoast_wpseo_primary_category','32'),(14664,5827,'_yoast_wpseo_focuskw','Arthritis Neck Treatment'),(14665,5827,'_yoast_wpseo_metadesc','Regenerative Orthopedics is an excellent arthritis neck treatment and solution to the puzzle of neck pain and cervical instability.'),(14666,5827,'_yoast_wpseo_linkdex','72'),(14667,5835,'_edit_lock','1690998684:9'),(14668,5835,'_edit_last','9'),(14669,5836,'_wp_attached_file','2023/07/foot-pain-1.png'),(14670,5836,'_wp_attachment_image_alt','Foot Pain Treatment'),(14671,5836,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:23:\"2023/07/foot-pain-1.png\";s:8:\"filesize\";i:576145;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"foot-pain-1-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:216020;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"foot-pain-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63216;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"foot-pain-1-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:412273;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:21:\"foot-pain-1-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5562;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:23:\"foot-pain-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119390;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:23:\"foot-pain-1-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74373;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:23:\"foot-pain-1-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:249173;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:23:\"foot-pain-1-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:438578;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:23:\"foot-pain-1-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58253;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:23:\"foot-pain-1-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130115;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:23:\"foot-pain-1-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:281681;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:23:\"foot-pain-1-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48946;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:23:\"foot-pain-1-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133169;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:23:\"foot-pain-1-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:359273;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14672,5835,'_wp_page_template','default'),(14675,5835,'_yoast_wpseo_content_score','90'),(14676,5835,'_yoast_wpseo_estimated-reading-time-minutes','4'),(14677,5835,'_yoast_wpseo_wordproof_timestamp',''),(14678,5835,'_yoast_wpseo_primary_category','32'),(14681,5835,'_yoast_wpseo_focuskw','Foot Pain Treatment'),(14682,5835,'_yoast_wpseo_metadesc','Regenerative Orthopedics is a foot pain treatment that repairs the problem, increasing the ability to walk, exercise, and work without pain.'),(14683,5835,'_yoast_wpseo_linkdex','76'),(14688,207,'_yoast_wpseo_wordproof_timestamp',''),(14691,373,'_yoast_wpseo_wordproof_timestamp',''),(14692,5847,'_edit_lock','1692221962:9'),(14693,5847,'_edit_last','9'),(14694,5848,'_wp_attached_file','2023/08/ACL-Tearblog.1png.png'),(14695,5848,'_wp_attachment_image_alt','ACL TEAR Repair'),(14696,5848,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:29:\"2023/08/ACL-Tearblog.1png.png\";s:8:\"filesize\";i:479559;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"ACL-Tearblog.1png-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:210185;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"ACL-Tearblog.1png-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61823;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"ACL-Tearblog.1png-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:387915;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:27:\"ACL-Tearblog.1png-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5525;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:29:\"ACL-Tearblog.1png-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113422;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:29:\"ACL-Tearblog.1png-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75721;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:29:\"ACL-Tearblog.1png-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:241350;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:29:\"ACL-Tearblog.1png-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:410954;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:29:\"ACL-Tearblog.1png-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59255;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:29:\"ACL-Tearblog.1png-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:129238;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:29:\"ACL-Tearblog.1png-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:271018;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:29:\"ACL-Tearblog.1png-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49377;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:29:\"ACL-Tearblog.1png-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128853;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:29:\"ACL-Tearblog.1png-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:286686;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14697,5847,'_wp_page_template','default'),(14700,5847,'_yoast_wpseo_content_score','60'),(14701,5847,'_yoast_wpseo_estimated-reading-time-minutes','6'),(14702,5847,'_yoast_wpseo_wordproof_timestamp',''),(14703,5847,'_yoast_wpseo_primary_category','32'),(14708,5847,'_yoast_wpseo_focuskw','ACL Tear'),(14709,5847,'_yoast_wpseo_metadesc','Are you are seeking a non-surgical solution for an ACL injury? Regenerative Orthopedic approaches are effective options for ACL tear repair. '),(14710,5847,'_yoast_wpseo_linkdex','72'),(14715,5856,'iwp_log_type','core'),(14716,5856,'iwp_log_action','update'),(14717,5856,'iwp_log_activities_type','direct'),(14718,5856,'iwp_log_actions','core-updated'),(14719,5856,'iwp_log_details','a:2:{s:11:\"old_version\";s:5:\"6.0.3\";s:15:\"updated_version\";s:3:\"6.3\";}'),(14720,5858,'_edit_lock','1692859852:8'),(14721,5858,'_edit_last','8'),(14722,5858,'_wp_trash_meta_status','draft'),(14723,5858,'_wp_trash_meta_time','1692859872'),(14724,5858,'_wp_desired_post_slug',''),(14725,5860,'_edit_lock','1693810893:8'),(14726,5860,'_edit_last','9'),(14727,5861,'_wp_attached_file','2023/08/hip-replacement-alternative.png'),(14728,5861,'_wp_attachment_image_alt','Hip Replacement Alternative'),(14729,5861,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:851;s:6:\"height\";i:718;s:4:\"file\";s:39:\"2023/08/hip-replacement-alternative.png\";s:8:\"filesize\";i:444338;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"hip-replacement-alternative-500x422.png\";s:5:\"width\";i:500;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:190367;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"hip-replacement-alternative-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51618;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"hip-replacement-alternative-768x648.png\";s:5:\"width\";i:768;s:6:\"height\";i:648;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:371045;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:37:\"hip-replacement-alternative-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4789;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:39:\"hip-replacement-alternative-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100737;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:39:\"hip-replacement-alternative-250x211.png\";s:5:\"width\";i:250;s:6:\"height\";i:211;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62045;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:39:\"hip-replacement-alternative-550x464.png\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:221047;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:39:\"hip-replacement-alternative-800x675.png\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:394579;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:39:\"hip-replacement-alternative-213x180.png\";s:5:\"width\";i:213;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47886;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:39:\"hip-replacement-alternative-356x300.png\";s:5:\"width\";i:356;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110963;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:39:\"hip-replacement-alternative-593x500.png\";s:5:\"width\";i:593;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:248009;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:39:\"hip-replacement-alternative-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43988;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:39:\"hip-replacement-alternative-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126986;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:39:\"hip-replacement-alternative-851x500.png\";s:5:\"width\";i:851;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:320758;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14730,5862,'_wp_attached_file','2023/08/hip-replacement-alternative-1.png'),(14731,5862,'_wp_attachment_image_alt','Hip Replacement Alternative'),(14732,5862,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:851;s:6:\"height\";i:718;s:4:\"file\";s:41:\"2023/08/hip-replacement-alternative-1.png\";s:8:\"filesize\";i:132209;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"hip-replacement-alternative-1-500x422.png\";s:5:\"width\";i:500;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:182306;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"hip-replacement-alternative-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48568;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"hip-replacement-alternative-1-768x648.png\";s:5:\"width\";i:768;s:6:\"height\";i:648;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:362443;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:39:\"hip-replacement-alternative-1-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4317;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:41:\"hip-replacement-alternative-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95006;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:41:\"hip-replacement-alternative-1-250x211.png\";s:5:\"width\";i:250;s:6:\"height\";i:211;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58830;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:41:\"hip-replacement-alternative-1-550x464.png\";s:5:\"width\";i:550;s:6:\"height\";i:464;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:213037;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:41:\"hip-replacement-alternative-1-800x675.png\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:386643;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:41:\"hip-replacement-alternative-1-213x180.png\";s:5:\"width\";i:213;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44953;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:41:\"hip-replacement-alternative-1-356x300.png\";s:5:\"width\";i:356;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105191;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:41:\"hip-replacement-alternative-1-593x500.png\";s:5:\"width\";i:593;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239465;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:41:\"hip-replacement-alternative-1-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41473;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:41:\"hip-replacement-alternative-1-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120724;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:41:\"hip-replacement-alternative-1-851x500.png\";s:5:\"width\";i:851;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123547;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14733,5860,'_wp_page_template','default'),(14736,5860,'_yoast_wpseo_estimated-reading-time-minutes','7'),(14737,5860,'_yoast_wpseo_wordproof_timestamp',''),(14740,5860,'_yoast_wpseo_primary_category','30'),(14747,5860,'_yoast_wpseo_focuskw','Hip Replacement Alternative'),(14748,5860,'_yoast_wpseo_title','Hip Replacement Alternative'),(14749,5860,'_wp_old_slug','hip-replacement-alternatives'),(14752,5860,'_yoast_wpseo_metadesc','Hip surgeries are going through the roof, but non-surgical Regenerative Orthopedics is an effective hip replacement alternative.'),(14757,5871,'iwp_log_type','plugins'),(14758,5871,'iwp_log_action','update'),(14759,5871,'iwp_log_activities_type','direct'),(14760,5871,'iwp_log_actions','plugins-updated'),(14761,5871,'iwp_log_details','a:4:{s:4:\"name\";s:14:\"Classic Editor\";s:4:\"slug\";s:33:\"classic-editor/classic-editor.php\";s:11:\"old_version\";s:5:\"1.6.2\";s:15:\"updated_version\";s:5:\"1.6.3\";}'),(14762,5872,'iwp_log_type','plugins'),(14763,5872,'iwp_log_action','update'),(14764,5872,'iwp_log_activities_type','direct'),(14765,5872,'iwp_log_actions','plugins-updated'),(14766,5872,'iwp_log_details','a:4:{s:4:\"name\";s:11:\"WP-PageNavi\";s:4:\"slug\";s:27:\"wp-pagenavi/wp-pagenavi.php\";s:11:\"old_version\";s:6:\"2.94.0\";s:15:\"updated_version\";s:6:\"2.94.1\";}'),(14767,5873,'iwp_log_type','plugins'),(14768,5873,'iwp_log_action','update'),(14769,5873,'iwp_log_activities_type','direct'),(14770,5873,'iwp_log_actions','plugins-updated'),(14771,5873,'iwp_log_details','a:4:{s:4:\"name\";s:12:\"WP Mail SMTP\";s:4:\"slug\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"old_version\";s:5:\"3.6.1\";s:15:\"updated_version\";s:5:\"3.9.0\";}'),(14772,5874,'iwp_log_type','plugins'),(14773,5874,'iwp_log_action','update'),(14774,5874,'iwp_log_activities_type','direct'),(14775,5874,'iwp_log_actions','plugins-updated'),(14776,5874,'iwp_log_details','a:4:{s:4:\"name\";s:17:\"WP Video Lightbox\";s:4:\"slug\";s:39:\"wp-video-lightbox/wp-video-lightbox.php\";s:11:\"old_version\";s:5:\"1.9.6\";s:15:\"updated_version\";s:6:\"1.9.10\";}'),(14777,5875,'iwp_log_type','plugins'),(14778,5875,'iwp_log_action','update'),(14779,5875,'iwp_log_activities_type','direct'),(14780,5875,'iwp_log_actions','plugins-updated'),(14781,5875,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:5:\"19.11\";s:15:\"updated_version\";s:4:\"21.0\";}'),(14784,5860,'_yoast_wpseo_linkdex','74'),(14785,5860,'_yoast_wpseo_content_score','90'),(14786,5877,'_edit_lock','1694822352:8'),(14787,5877,'_edit_last','8'),(14788,5880,'_wp_attached_file','2023/09/osteoarthritis-knee-treatment-.png'),(14789,5880,'_wp_attachment_image_alt','Osteoarthritis Knee Treatment'),(14790,5880,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:42:\"2023/09/osteoarthritis-knee-treatment-.png\";s:8:\"filesize\";i:536991;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"osteoarthritis-knee-treatment--500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:213498;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"osteoarthritis-knee-treatment--200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55211;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"osteoarthritis-knee-treatment--768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:417769;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:40:\"osteoarthritis-knee-treatment--48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4947;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:42:\"osteoarthritis-knee-treatment--300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106189;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:42:\"osteoarthritis-knee-treatment--250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71290;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:42:\"osteoarthritis-knee-treatment--550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:247834;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:42:\"osteoarthritis-knee-treatment--800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:443569;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:42:\"osteoarthritis-knee-treatment--215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55564;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:42:\"osteoarthritis-knee-treatment--358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126634;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:42:\"osteoarthritis-knee-treatment--596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:282245;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:42:\"osteoarthritis-knee-treatment--210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47255;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:42:\"osteoarthritis-knee-treatment--400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131996;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:42:\"osteoarthritis-knee-treatment--940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:341875;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14791,5877,'_wp_page_template','default'),(14794,5877,'_yoast_wpseo_content_score','90'),(14795,5877,'_yoast_wpseo_estimated-reading-time-minutes','5'),(14796,5877,'_yoast_wpseo_wordproof_timestamp',''),(14797,5877,'_wp_old_date','2023-09-04'),(14798,5877,'_yoast_wpseo_primary_category',''),(14799,5883,'iwp_log_type','plugins'),(14800,5883,'iwp_log_action','update'),(14801,5883,'iwp_log_activities_type','direct'),(14802,5883,'iwp_log_actions','plugins-updated'),(14803,5883,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"21.0\";s:15:\"updated_version\";s:4:\"21.1\";}'),(14806,5877,'_yoast_wpseo_focuskw','Osteoarthritis Knee Treatment'),(14807,5877,'_yoast_wpseo_metadesc','Regenerative Orthopedics are excellent osteoarthritis knee treatments because they address the root cause...the soft tissue damage.'),(14808,5877,'_yoast_wpseo_linkdex','72'),(14811,5877,'_yoast_wpseo_title','Osteoarthritis Knee Treatment'),(14814,5889,'_edit_lock','1694821880:8'),(14815,5889,'_edit_last','8'),(14816,5889,'_wp_page_template','default'),(14817,5889,'_yoast_wpseo_content_score','90'),(14818,5889,'_yoast_wpseo_estimated-reading-time-minutes','4'),(14819,5889,'_yoast_wpseo_wordproof_timestamp',''),(14820,5889,'_yoast_wpseo_primary_category',''),(14823,5889,'_wp_trash_meta_status','publish'),(14824,5889,'_wp_trash_meta_time','1694822027'),(14825,5889,'_wp_desired_post_slug','osteoarthritis-knee-treatment-2'),(14830,5894,'iwp_log_type','plugins'),(14831,5894,'iwp_log_action','update'),(14832,5894,'iwp_log_activities_type','automatic'),(14833,5894,'iwp_log_actions','plugins-updated'),(14834,5894,'iwp_log_details','a:4:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"old_version\";s:4:\"21.1\";s:15:\"updated_version\";s:4:\"21.2\";}'),(14835,5895,'_edit_lock','1695238330:9'),(14836,5895,'_edit_last','9'),(14837,5896,'_wp_attached_file','2023/09/Carpal-tunnel.png'),(14838,5896,'_wp_attachment_image_alt','Carpal Tunnel'),(14839,5896,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:788;s:4:\"file\";s:25:\"2023/09/Carpal-tunnel.png\";s:8:\"filesize\";i:157743;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Carpal-tunnel-500x419.png\";s:5:\"width\";i:500;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:197603;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Carpal-tunnel-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50230;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Carpal-tunnel-768x644.png\";s:5:\"width\";i:768;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:398194;}s:6:\"wcicon\";a:5:{s:4:\"file\";s:23:\"Carpal-tunnel-48x48.png\";s:5:\"width\";i:48;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4343;}s:8:\"wcsquare\";a:5:{s:4:\"file\";s:25:\"Carpal-tunnel-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:97185;}s:7:\"wcsmall\";a:5:{s:4:\"file\";s:25:\"Carpal-tunnel-250x210.png\";s:5:\"width\";i:250;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63808;}s:10:\"wcstandard\";a:5:{s:4:\"file\";s:25:\"Carpal-tunnel-550x461.png\";s:5:\"width\";i:550;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:230152;}s:5:\"wcbig\";a:5:{s:4:\"file\";s:25:\"Carpal-tunnel-800x671.png\";s:5:\"width\";i:800;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:425096;}s:18:\"wcfixedheightsmall\";a:5:{s:4:\"file\";s:25:\"Carpal-tunnel-215x180.png\";s:5:\"width\";i:215;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49589;}s:19:\"wcfixedheightmedium\";a:5:{s:4:\"file\";s:25:\"Carpal-tunnel-358x300.png\";s:5:\"width\";i:358;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:115113;}s:13:\"wcfixedheight\";a:5:{s:4:\"file\";s:25:\"Carpal-tunnel-596x500.png\";s:5:\"width\";i:596;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:263096;}s:15:\"wccarouselsmall\";a:5:{s:4:\"file\";s:25:\"Carpal-tunnel-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44465;}s:10:\"wccarousel\";a:5:{s:4:\"file\";s:25:\"Carpal-tunnel-400x285.png\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127957;}s:8:\"wcslider\";a:5:{s:4:\"file\";s:25:\"Carpal-tunnel-940x500.png\";s:5:\"width\";i:940;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133206;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14840,5895,'_wp_page_template','default'),(14843,5895,'_yoast_wpseo_content_score','60'),(14844,5895,'_yoast_wpseo_estimated-reading-time-minutes','6'),(14845,5895,'_yoast_wpseo_wordproof_timestamp',''),(14846,5895,'_wp_old_date','2023-09-20'),(14847,5895,'_yoast_wpseo_primary_category','30'),(14854,5895,'_yoast_wpseo_focuskw','Carpal tunnel syndrome treatment'),(14855,5895,'_yoast_wpseo_title','Carpal Tunnel Syndrome Treatment'),(14856,5895,'_yoast_wpseo_metadesc','Regenerative Orthopedics works well as a carpal tunnel sydrome treatment to improve the pain, numbness, and associated tingling.'),(14857,5895,'_yoast_wpseo_linkdex','72'),(14858,5895,'_wp_old_slug','non-surgical-carpal-tunnel-treatment');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=5903 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (3,8,'2019-05-28 18:47:49','2019-05-28 18:47:49','<div id=\"dnn_ContentPane\" class=\"span12 contentPane\">\r\n<div class=\"DnnModule DnnModule- DnnModule--1 DnnModule-Admin\">\r\n<div class=\"DNNContainer_noTitle\">\r\n<div id=\"dnn_ctr_ContentPane\">\r\n<div id=\"dnn_ctr_ModuleContent\" class=\"DNNModuleContent ModC\">\r\n<div class=\"dnnPrivacy dnnClear\">\r\n<div align=\"left\">\r\n<p><span id=\"dnn_ctr_Privacy_lblPrivacy\">Dr. Fields</span> is committed to protecting your privacy and developing technology that gives you the most powerful and safe online experience. This Statement of Privacy applies to the Dr. Fields site and governs data collection and usage. By using the Dr. Fields site, you consent to the data practices described in this statement.</p>\r\n<p><span class=\"SubHead\">Collection of your Personal Information</span></p>\r\n<p>Dr. Fields collects personally identifiable information, such as your email address, name, home or work address or telephone number. Dr. Fields also collects anonymous demographic information, which is not unique to you, such as your ZIP code, age, gender, preferences, interests and favorites.</p>\r\n<p>There is also information about your computer hardware and software that is automatically collected by Dr. Fields. This information can include: your IP address, browser type, domain names, access times and referring website addresses. This information is used by Dr. Fields for the operation of the service, to maintain quality of the service, and to provide general statistics regarding use of the Dr. Fields site.</p>\r\n<p>Please keep in mind that if you directly disclose personally identifiable information or personally sensitive data through Dr. Fields public message boards, this information may be collected and used by others. Note: Dr. Fields does not read any of your private online communications.</p>\r\n\r\n<p>Dr. Fields encourages you to review the privacy statements of Web sites you choose to link to from Dr. Fields so that you can understand how those Web sites collect, use and share your information. Dr. Fields is not responsible for the privacy statements or other content on Web sites outside of the Dr. Fields and Dr. Fields family of Web sites.</p>\r\n\r\n<p><span class=\"SubHead\">Use of your Personal Information</span></p>\r\n\r\n<p>Dr. Fields collects and uses your personal information to operate the Dr. Fields Web site and deliver the services you have requested. Dr. Fields also uses your personally identifiable information to inform you of other products or services available from Dr. Fields and its affiliates. Dr. Fields may also contact you via surveys to conduct research about your opinion of current services or of potential new services that may be offered.</p>\r\n\r\n<p>Dr. Fields does not sell, rent or lease its customer lists to third parties. Dr. Fields may, from time to time, contact you on behalf of external business partners about a particular offering that may be of interest to you. In those cases, your unique personally identifiable information (e-mail, name, address, telephone number) is not transferred to the third party. In addition, Dr. Fields may share data with trusted partners to help us perform statistical analysis, send you email or postal mail, provide customer support, or arrange for deliveries. All such third parties are prohibited from using your personal information except to provide these services to Dr. Fields, and they are required to maintain the confidentiality of your information.</p>\r\n\r\n<p>Dr. Fields does not use or disclose sensitive personal information, such as race, religion, or political affiliations, without your explicit consent.</p>\r\n\r\n<p>Dr. Fields keeps track of the Web sites and pages our customers visit within Dr. Fields, in order to determine what Dr. Fields services are the most popular. This data is used to deliver customized content and advertising within Dr. Fields to customers whose behavior indicates that they are interested in a particular subject area.</p>\r\n\r\n<p>Dr. Fields Web sites will disclose your personal information, without notice, only if required to do so by law or in the good faith belief that such action is necessary to: (a) conform to the edicts of the law or comply with legal process served on Dr. Fields or the site; (b) protect and defend the rights or property of Dr. Fields; and, (c) act under exigent circumstances to protect the personal safety of users of Dr. Fields, or the public.</p>\r\n\r\n<p><span class=\"SubHead\">Use of Cookies</span></p>\r\n\r\n<p>The Dr. Fields Web site use \"cookies\" to help you personalize your online experience. A cookie is a text file that is placed on your hard disk by a Web page server. Cookies cannot be used to run programs or deliver viruses to your computer. Cookies are uniquely assigned to you, and can only be read by a web server in the domain that issued the cookie to you.</p>\r\n\r\n<p>One of the primary purposes of cookies is to provide a convenience feature to save you time. The purpose of a cookie is to tell the Web server that you have returned to a specific page. For example, if you personalize Dr. Fields pages, or register with Dr. Fields site or services, a cookie helps Dr. Fields to recall your specific information on subsequent visits. This simplifies the process of recording your personal information, such as billing addresses, shipping addresses, and so on. When you return to the same Dr. Fields Web site, the information you previously provided can be retrieved, so you can easily use the Dr. Fields features that you customized.</p>\r\n\r\n<p>You have the ability to accept or decline cookies. Most Web browsers automatically accept cookies, but you can usually modify your browser setting to decline cookies if you prefer. If you choose to decline cookies, you may not be able to fully experience the interactive features of the Dr. Fields services or Web sites you visit.</p>\r\n\r\n<p><span class=\"SubHead\">Security of your Personal Information</span></p>\r\n\r\n<p>Dr. Fields secures your personal information from unauthorized access, use or disclosure. Dr. Fields secures the personally identifiable information you provide on computer servers in a controlled, secure environment, protected from unauthorized access, use or disclosure. When personal information (such as a credit card number) is transmitted to other Web sites, it is protected through the use of encryption, such as the Secure Socket Layer (SSL) protocol.</p>\r\n\r\n<p><span class=\"SubHead\">Changes to this Statement</span></p>\r\n\r\n<p>Dr. Fields will occasionally update this Statement of Privacy to reflect company and customer feedback. Dr. Fields encourages you to periodically review this Statement to be informed of how Dr. Fields is protecting your information.</p>\r\n\r\n<p><span class=\"SubHead\">Contact Information</span></p>\r\n\r\n<p>Dr. Fields welcomes your comments regarding this Statement of Privacy. If you believe that Dr. Fields has not adhered to this Statement, please contact Dr. Fields at <a href=\"mailto:pcc@drfields.com\">pcc@drfields.com</a>. We will use commercially reasonable efforts to promptly determine and remedy the problem.</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"> </div>\r\n</div>\r\n</div>\r\n</div>','Privacy','','publish','closed','closed','','privacy-policy','','','2020-07-01 17:56:54','2020-07-01 17:56:54','',0,'https://www.drfields.com/?page_id=3',0,'page','',0),(7,8,'2020-07-08 21:24:11','2020-07-08 21:24:11','Logo Dr Fields','OrthoRegen-Logo-R','Logo Dr Fields','inherit','open','closed','','orthoregen-logo-r-2','','','2020-07-08 21:24:11','2020-07-08 21:24:11','',0,'https://www.drfields.com/wp-content/uploads/2019/06/OrthoRegen-Logo-R.png',0,'attachment','image/png',0),(9,8,'2019-06-05 05:02:16','2019-06-05 05:02:16','Social Icon Youtube','Social Icon Youtube','Social Icon Youtube','inherit','open','closed','','social-icon-youtube','','','2019-06-05 05:02:16','2019-06-05 05:02:16','',0,'https://www.drfields.com/wp-content/uploads/2019/06/social-icon-youtube.png',0,'attachment','image/png',0),(10,8,'2019-06-05 05:02:18','2019-06-05 05:02:18','Social Icon Facebook','Social Icon Facebook','Social Icon Facebook','inherit','open','closed','','social-icon-facebook','','','2019-06-05 05:02:18','2019-06-05 05:02:18','',0,'https://www.drfields.com/wp-content/uploads/2019/06/social-icon-facebook.png',0,'attachment','image/png',0),(11,8,'2019-06-05 05:02:18','2019-06-05 05:02:18','Social Icon Twitter','Social Icon Twitter','Social Icon Twitter','inherit','open','closed','','social-icon-twitter','','','2019-06-05 05:02:18','2019-06-05 05:02:18','',0,'https://www.drfields.com/wp-content/uploads/2019/06/social-icon-twitter.png',0,'attachment','image/png',0),(12,8,'2019-06-05 05:02:21','2019-06-05 05:02:21','Social Icon Instagram','Social Icon Instagram','Social Icon Instagram','inherit','open','closed','','social-icon-instagram','','','2019-06-05 05:02:21','2019-06-05 05:02:21','',0,'https://www.drfields.com/wp-content/uploads/2019/06/social-icon-instagram.png',0,'attachment','image/png',0),(13,8,'2019-06-05 05:02:22','2019-06-05 05:02:22','Logo Athletic Doc','Logo Athletic Doc','Logo Athletic Doc','inherit','open','closed','','logo-athletic-doc','','','2019-06-05 05:02:22','2019-06-05 05:02:22','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Logo-Athletic-Doc.png',0,'attachment','image/png',0),(15,8,'2019-06-05 05:25:25','2019-06-05 05:25:25','Header Orthoregen 4','Header Orthoregen 4','Header Orthoregen 4','inherit','open','closed','','header-orthoregen-4','','','2019-06-05 05:25:25','2019-06-05 05:25:25','',0,'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg',0,'attachment','image/jpeg',0),(16,8,'2019-06-05 06:03:43','2019-06-05 06:03:43','Kili Top Header','Kili Top Header','Kili Top Header','inherit','open','closed','','kili-top-header','','','2019-06-05 06:03:43','2019-06-05 06:03:43','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg',0,'attachment','image/jpeg',0),(17,8,'2019-06-05 07:29:21','2019-06-05 07:29:21','Dr Fields','Dr Fields','Dr Fields','inherit','open','closed','','dr-fields','','','2019-06-05 07:29:21','2019-06-05 07:29:21','',0,'https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png',0,'attachment','image/png',0),(18,8,'2019-06-05 07:38:29','2019-06-05 07:38:29','Icon Ironman','Icon Ironman','Icon Ironman','inherit','open','closed','','icon-ironman','','','2019-06-05 07:38:29','2019-06-05 07:38:29','',0,'https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png',0,'attachment','image/png',0),(19,8,'2019-06-05 07:38:33','2019-06-05 07:38:33','Icon Info','Icon Info','Icon Info','inherit','open','closed','','icon-info','','','2019-06-05 07:38:33','2019-06-05 07:38:33','',0,'https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png',0,'attachment','image/png',0),(29,8,'2019-06-07 04:36:03','2019-06-07 04:36:03','<h2 class=\"text-center\">Contact Dr. Fields</h2>\r\n<p style=\"text-align: center;\"><strong>To find out if you are a candidate for Stem Cell, PRP or Prolotherapy, call Dr. Fields office at <a href=\"tel:310-453-1234\">310-453-1234</a>, or fill out the Consultation form here.</strong></p>\r\n<div class=\"contact-frm\">[gravityform id=\"1\" title=\"false\" description=\"false\"]</div>','Contact','','publish','closed','closed','','contact','','','2021-04-05 23:23:22','2021-04-05 23:23:22','',0,'https://www.drfields.com/?page_id=29',0,'page','',0),(30,8,'2019-06-07 04:36:03','2019-06-07 04:36:03','','Contact','','inherit','closed','closed','','29-revision-v1','','','2019-06-07 04:36:03','2019-06-07 04:36:03','',29,'https://www.drfields.com/29-revision-v1/',0,'revision','',0),(31,8,'2022-12-02 06:01:39','2019-06-07 04:37:01',' ','','','publish','closed','closed','','31','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=31',65,'nav_menu_item','',0),(36,8,'2022-12-02 06:01:38','2019-06-07 04:39:01','','About','','publish','closed','closed','','about','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=36',2,'nav_menu_item','',0),(43,8,'2019-06-07 04:49:17','2019-06-07 04:49:17','Ironman Cozumel Logo','Ironman Cozumel Logo','','inherit','open','closed','','ironman-cozumel-logo','','','2019-06-07 04:56:00','2019-06-07 04:56:00','',0,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg',0,'attachment','image/jpeg',0),(53,8,'2019-06-07 04:58:46','2019-06-07 04:58:46','Cozumel 2011 Swim','Cozumel 2011 Swim','','inherit','open','closed','','cozumel-2011-swim','','','2019-06-07 04:58:52','2019-06-07 04:58:52','',0,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg',0,'attachment','image/jpeg',0),(56,8,'2019-06-07 05:01:16','2019-06-07 05:01:16','Cozumel 2011 Bike','Cozumel 2011 Bike','','inherit','open','closed','','cozumel-2011-bike','','','2019-06-07 05:01:23','2019-06-07 05:01:23','',0,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg',0,'attachment','image/jpeg',0),(59,8,'2019-06-07 05:04:03','2019-06-07 05:04:03','Cozumel 2011 Finish2','Cozumel 2011 Finish2','','inherit','open','closed','','cozumel-2011-finish2','','','2019-06-07 05:06:54','2019-06-07 05:06:54','',0,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg',0,'attachment','image/jpeg',0),(60,8,'2019-06-07 05:04:04','2019-06-07 05:04:04','Cozumel 2011 Run','Cozumel 2011 Run','','inherit','open','closed','','cozumel-2011-run','','','2019-06-07 05:04:12','2019-06-07 05:04:12','',0,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg',0,'attachment','image/jpeg',0),(64,8,'2019-06-07 05:20:10','2019-06-07 05:20:10','Cozumel 2011 Finish','Cozumel 2011 Finish','','inherit','open','closed','','cozumel-2011-finish','','','2019-06-07 05:20:15','2019-06-07 05:20:15','',0,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish.jpg',0,'attachment','image/jpeg',0),(92,8,'2019-06-07 06:12:41','2019-06-07 06:12:41','<h2 style=\"text-align: center;\">My First Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_43\" align=\"aligncenter\" width=\"220\"]<img class=\"wp-image-43 size-full\" title=\"My First Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\" width=\"220\" height=\"90\" /> November 27, 2011 2.4-mile swim, 112-mile bike, 26.2-mile run[/caption]\r\n\r\n<strong style=\"font-size: 16px;\">On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong>\r\n\r\n<span style=\"font-size: 16px;\">In Cozumel, Mexico at 9:04:07 pm, to be exact.</span> I began what was to be an epic day in my life. The race included a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused. Because if your mind got the better of you, the day would be over.\r\n\r\nMy day began at 4 am when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.\r\n\r\nIt was a beautiful day; air temp about 80 degrees, clear skies, and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.\r\n\r\n&nbsp;\r\n<h3><img class=\"alignleft size-full wp-image-53\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\" /><strong class=\"subhead\">THE SWIM</strong></h3>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs, and bodies all around me. Sometimes even on top of you! It was a beautiful 2.4-mile swim in the 82 degrees, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus, you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly. And one hour and one minute later, I was climbing the stairs out of the water.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><img class=\"alignleft size-full wp-image-56\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\" /><strong class=\"subhead\">THE BIKE TRANSITION IN MY FIRST IRONMAN</strong></h3>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112-mile ride. It was three times around the Island. And although there weren\'t any hills, the backside of the island gets wind. That meant that about 60 miles of the ride were into the wind.\r\n\r\nThe air temp was now about 85 -87 degrees, with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright.\r\n\r\nAs I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.\r\n\r\nHalfway through the bike ride, I received my special needs bag from the volunteers. With that bag, I reloaded with my own food (water I got from the aid stations).\r\n\r\nHere I was able to alleviate a potentially major problem. About half an hour earlier, I had developed severe pain in my left foot. When I got off the bike, I removed the left shoe support wedge (I have one in each shoe), making the pain bearable. Fortunately, I did not have any mechanical problems on the bike. And best of all, <strong>no flats</strong>!\r\n\r\nWhen I was on the last nine miles, the skies darkened and then opened up with torrential rain. It rained so hard; it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, I was into the change tent to put on running shoes and start the marathon.\r\n<h3><img class=\"alignleft size-full wp-image-60\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\" /><strong class=\"subhead\">THE RUN</strong></h3>\r\nWhen leaving the tent, you cannot think marathon. Since after over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run.\r\n\r\nThe foot pain that I had on the bike disappeared as soon as I started to run. There were puddles everywhere (it was still raining lightly), and my feet did get a bit wet. Then about three miles into the run, there was a street crossing with the water about knee-high.\r\n\r\nSo at that point, the puddles did not matter anymore, and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue but did not let it bother me at least until the race was over.\r\n\r\nI just kept telling myself to keep running. And I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - \"just keep running; do not walk.\" It was a three-lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds were going wild along a two-mile stretch (along with my cheering squad!).\r\n\r\nWith each lap, it became more of a mental game to stay \"in it.\" The third and final lap was the toughest mentally and physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.\r\n<h3><img class=\"alignleft size-full wp-image-59\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\" /><strong class=\"subhead\">THE FINISH</strong></h3>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point, I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful—no pain or exhaustion - only euphoria.\r\n\r\nAs my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nAfter a moment or two of realizing what I had just accomplished, it was time for food, water, and a post-race massage.\r\n<div class=\"clear\"></div>\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\"><img title=\"2011 Cozumel\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish-2.jpg\" alt=\"2011 Cozumel\" width=\"160\" height=\"215\" />\r\n<a href=\"https://photos.app.goo.gl/iYK2GiU2Wy4E6XNY2\" target=\"_blank\" rel=\"noopener noreferrer\">2011 Cozumel\r\nClick For More Photos</a>Click below for Pictures &amp; Stories from my other Ironman races:\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','My First Ironman: Race Report','','publish','open','closed','','my-first-ironman-race-report','','','2021-05-18 23:19:04','2021-05-18 23:19:04','',0,'https://www.drfields.com/?p=92',0,'post','',0),(93,8,'2019-06-07 06:12:41','2019-06-07 06:12:41','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p class=\"text-center\"><strong>On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong>THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong>THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong>THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong>THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong>The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 1st Ironman','','inherit','closed','closed','','92-revision-v1','','','2019-06-07 06:12:41','2019-06-07 06:12:41','',92,'https://www.drfields.com/92-revision-v1/',0,'revision','',0),(104,8,'2019-06-07 06:29:51','2019-06-07 06:29:51','<h2>We have moved!!</h2>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img.jpg\" alt=\"Drfields Bio Img\"  class=\"alignleft size-full wp-image-106\" />\r\n<p>Our new address is:<br>\r\n<strong>\r\n2730 Wilshire Blvd, Suite 220<br>\r\nSanta Monica, Ca 90403</strong><br>\r\nThe phone, fax and email is all the same.</p>\r\n\r\n<p>The bldg. is located on the southwest corner of Wilshire Blvd. and Harvard Street, which is two blocks east of Wilshire and 26th Street in Santa Monica.<br>\r\nThis is only one mile from our old location.</p>\r\n\r\n<p><strong>We will not be able to provide validated parking at this new site.</strong><br>\r\nThere is ample metered parking on Wilshire Blvd.<br>\r\nThere is also metered and non-metered parking on the side streets.<br>\r\nFor those wishing to use the parking garage, they charge $2 per fifteen minutes with a maximum of $16. It is all automated and there is no parking attendant.</p>\r\n\r\n<p>We look forward to seeing everyone soon at our new home.</p>','Office Move','','publish','closed','closed','','office-move','','','2019-06-07 06:32:53','2019-06-07 06:32:53','',0,'https://www.drfields.com/?page_id=104',0,'page','',0),(105,8,'2019-06-07 06:29:51','2019-06-07 06:29:51','','Office Move','','inherit','closed','closed','','104-revision-v1','','','2019-06-07 06:29:51','2019-06-07 06:29:51','',104,'https://www.drfields.com/104-revision-v1/',0,'revision','',0),(106,8,'2019-06-07 06:30:38','2019-06-07 06:30:38','Drfields Bio Img','Drfields Bio Img','','inherit','open','closed','','drfields-bio-img','','','2019-06-07 06:30:50','2019-06-07 06:30:50','',104,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img.jpg',0,'attachment','image/jpeg',0),(107,8,'2019-06-07 06:31:22','2019-06-07 06:31:22','<h2>We have moved!!</h2>\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img.jpg\" alt=\"Drfields Bio Img\"  class=\"alignleft size-full wp-image-106\" />','Office Move','','inherit','closed','closed','','104-autosave-v1','','','2019-06-07 06:31:22','2019-06-07 06:31:22','',104,'https://www.drfields.com/104-autosave-v1/',0,'revision','',0),(108,8,'2019-06-07 06:32:03','2019-06-07 06:32:03','<h2>We have moved!!</h2>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img.jpg\" alt=\"Drfields Bio Img\"  class=\"alignleft size-full wp-image-106\" />\r\n<p>Our new address is:<br>\r\n<strong>\r\n2730 Wilshire Blvd, Suite 220<br>\r\nSanta Monica, Ca 90403</strong><br>\r\nThe phone, fax and email is all the same.</p>\r\n<p>The bldg. is located on the southwest corner of Wilshire Blvd. and Harvard Street, which is two blocks east of Wilshire and 26th Street in Santa Monica.<br>\r\nThis is only one mile from our old location.</p>\r\n<p><strong>We will not be able to provide validated parking at this new site.</strong><br>\r\nThere is ample metered parking on Wilshire Blvd.<br>\r\nThere is also metered and non-metered parking on the side streets.<br>\r\nFor those wishing to use the parking garage, they charge $2 per fifteen minutes with a maximum of $16. It is all automated and there is no parking attendant.</p>\r\n<p>We look forward to seeing everyone soon at our new home.</p>','Office Move','','inherit','closed','closed','','104-revision-v1','','','2019-06-07 06:32:03','2019-06-07 06:32:03','',104,'https://www.drfields.com/104-revision-v1/',0,'revision','',0),(119,8,'2022-12-02 06:01:38','2019-06-07 06:46:10',' ','','','publish','closed','closed','','119','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=119',11,'nav_menu_item','',0),(120,8,'2019-06-07 06:47:57','2019-06-07 06:47:57','<div class=\"col-md-8\">\r\n<h2 style=\"text-align: center;\">My Second Ironman Competition Took Place in Cozumel, Mexico</h2>\r\n[caption id=\"attachment_43\" align=\"aligncenter\" width=\"592\"]<img class=\"wp-image-43\" title=\"My Second Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\" width=\"592\" height=\"242\" /> <strong>                November 25, 2012, 2.4-mile swim, 112-mile bike, 26.2-mile run</strong>[/caption]\r\n\r\nAfter finishing this Ironman race last year, I was back in Cozumel again to try and beat my time of 2011 time of 14 hrs. 4 mins and 7 sec. And with much pride, I am happy to announce that I did. My finishing times were 13hrs, 50 mins, and 27sec.\r\n\r\nIronman competitions are always very challenging, both physically and mentally. My day began at 4 am when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 42 countries.\r\n\r\nOnce again, it was a beautiful day in Cozumel.  The air temp about 74 degrees, with clear skies and not a cloud in sight. Now, after all the months of training, this journey was about to begin.\r\n<h3><img class=\"alignleft size-full wp-image-123\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg\" alt=\"Cozumel 2012 Swim\" width=\"160\" height=\"213\" /><strong class=\"subhead\">THE SWIM IN IRONMAN COZUMEL</strong></h3>\r\nThe water was a bit choppy, and there was a strong current too. This did not bother me as swimming is my best event.\r\n\r\nAfter one last gel, I lined up with the others and then jumped off the pier into the ocean. To get in the water, we all had to jump about 7-10 feet off the pier into the water. I positioned myself in a good spot up front and along the shore.\r\n\r\nThe current would be flowing against us for the first 800 meters.  So it was best to be close to the shore where the current is less. After treading water for 10 minutes or so, the horn went off. I go pretty fast at first to get away from the crowd.\r\n\r\nDue to the chop, I altered my stroke by bringing my arms closer to my body a bit to clear this.  It caused me to develop a bit of an underarm chafe, but this was soon forgotten. Once we turned around the first buoy, the current was with us. And then I could let the current work with me for the next mile or so.\r\n\r\nThe water here is so clear. Schools of fish are visible swimming around. And so are the scuba lifeguards that are positioned on the bottom about 30 feet down. When I got to the final turn, the current was against me again. I had to work a bit harder.\r\n\r\nNo balloon or marker was marking the pier. So I just followed the crowd and sighted off the lifeguard paddlers and boats. Overall I was about 8 minutes slower than last year (one hour and nine minutes this year). But I still felt pretty good.\r\n\r\nLater, I was to learn that most people were 15 to 30 minutes slower than last year. In Ironman races (avg. participants about 2300), there are usually about 10-15 who do not make the 2 hrs. and 20-minute swim cutoff time. This year there were over 240! Very disappointing for them as they take your timing chip away as you exit the water. Some chose to do the race anyway unofficially.\r\n\r\nAs I exited the water, I ran quickly into the change tent. I was determined to cut down my transition time this year – big time. I had opted to wear a Tri Suit under the speed suit I swim in (like in the Olympics). This meant I did not have to change into separate clothing for the bike and run since the Tri suit is a two-piece suit that one can ride and run in.\r\n\r\nOnce inside, I quickly stripped the speed suit off, put on my helmet and bike shoes, and was off to get my bike. There was no need to re-apply sunscreen as they had helpers in the change tent lathering shoulders and upper arms (the exposed areas) with sunscreen. This was a big help.\r\n<h3><img class=\"alignleft size-full wp-image-125\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-bike.jpg\" alt=\"Cozumel 2012 Bike\" width=\"160\" height=\"196\" /><strong class=\"subhead\">NOW FOR THE BIKE SECTION OF MY SECOND IRONMAN</strong></h3>\r\nThe first of three loops on the bike went well. Fortunately, there wasn\'t a lot of wind when we got to the back of the island. I also had changed my nutrition from last year and did not have the dreaded stomach problems that many triathletes have on the bike.\r\n\r\nDuring the second loop, the winds really picked up. It was a tough 15-18 mile section with 15-20 mile an hour wind hitting broadside. I did develop some left foot pain which sometimes happens when I ride over 70 miles. This had happened last year. So I removed my left orthotic. So I removed my orthotics which essentially eliminated the pain.\r\n\r\nAt mile 62, there is a special needs station to leave anything you want. Last year I rested there a bit. But this year, I just grabbed what I needed from my bag and kept going.\r\n\r\nThen in the third loop, the wind got even more brutal. We were all slugging it out on the backside of the island. As I turned to head back into town at the 100-mile marker, I went to slip the orthotics back in as it prevents me from having foot pain on the post-ride run. The left one had fallen out of my bike jersey pocket, but at least I had the right one. All in all, I rode 12 minutes faster than last year.\r\n<h3><img class=\"alignleft size-full wp-image-127\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-run.jpg\" alt=\"Cozumel 2012 Run\" width=\"160\" height=\"215\" /><strong class=\"subhead\">THE RUN</strong></h3>\r\nBack in town, I got off the bike to run to the transition area. I quickly changed and headed off to run the marathon. My legs were a bit heavy, but somehow I was running well. This was especially good since I had a hamstring problem earlier in the year. And even had been running a lot in deep water instead of the land for my training. The heaviness quickly went away within the first mile, and all was going well. I had only slight right hamstring discomfort and no real pain.\r\n\r\nWe do approximately 4. 4 miles out and back for an 8.8-mile loop. The run includes three times around the loop. On the way back to town on the first loop, the foot pain (left and right) started to appear. I did take a Celebrex at 4 am and another one on the third loop of the bike.\r\n\r\nWhen I got to town after 8.8 miles, I asked my good friend Angela (she was my aid throughout the race- and a great one at that) to find ibuprofen (it works on a different pathway than Celebrex). When I got to the second turn around to head back to town (13.1 miles), my hamstring kicked in - big time. It was painful to run, but I kept going. I changed my gait (made it an even shorter stride). There were plenty of people walking by then, but I just dealt with it.\r\n\r\nI knew there was a medic tent at about 15 miles. I pulled in and asked for ice. They ace wrapped my upper thigh with lots of ice. This seemed to reduce the pain. But I was still running slightly slower (the first 13.1 miles had me on a 5+ hr. marathon pace - much better than the 5:35 of last year).\r\n\r\nAs I entered the town, Angela was there and handed me the ibuprofen. I took it, and within minutes I was feeling quite good. Before this, I had calculated my time and distance and knew that I could break 14 hrs. And maybe even by 30 minutes.\r\n\r\nBut the hamstring pain started to return about 19 miles. I got the leg wrapped with more ice again on the way out to the 4.8 final turnaround. Before the last turnaround, I was forced to walk and run. This is something that I had never done before (walk, that is). But the pain was pretty high.\r\n\r\nAt the last three-mile marker, I got even more ice for my hamstring and decided to walk more than run. Soon thereafter, I could not continue a run/walk pace due to pain but figured if I walked fast (walking was painful but not severe), I would break 14 hrs. So at that point, I walked a 14-15 mile pace (off my Garmin wrist computer), which is still pretty fast. There were plenty of walkers, and I was passing them.\r\n\r\nI had to save whatever run I had left in me for the last few hundred meters up to the finish. <strong>No way was I going to walk that!</strong> This is right in the middle of the park, and all lit up with hundreds (if not more) of people yelling and screaming. So as I got close, I began to run. Pain is temporary; finishing is forever! I kept going and reached the last hundred meters to the finish line, where I heard the announcer say, once again, \"<strong class=\"subhead\"><span style=\"text-decoration: underline;\">Peter Fields, you are an Ironman!</span></strong>\"\r\n\r\nMy time was 13:50, not the 13:30 I might have had without the hamstring issue.\r\nBut I did end up breaking the 14 hr. barrier of last year\'s time of 14:04. Mission accomplished.\r\nAs I always say, age is mind over matter. <strong>If you don\'t mind- it does not matter!</strong>\r\n\r\n[caption id=\"attachment_128\" align=\"alignleft\" width=\"150\"]<img class=\"wp-image-128 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" alt=\"Cozumel 2012 Finish2\" width=\"150\" height=\"268\" /> Second Ironman Finish[/caption]\r\n<h3><strong class=\"subhead\">THE FINISH</strong></h3>\r\nImmediately after crossing the finish line, I received a big hug from Angela. I then went into the medical tent to get a one-liter IV bag of fluid. Everyone is dehydrated to some point, and this was much needed.\r\n\r\nThen off to get a post-race massage and some food. Unfortunately, caffeine gels kept me going during the last part of the run, and my stomach did not really want any food. But it was nice just to sit down and cheer on the last finishers trying to make the 17 hr. cut-off at midnight.\r\n\r\nAfter collecting my gear and bike, I finally headed back to the hotel and got to bed at 2 am. Not much success with that after being very revved up all day. So the next day was spent recovering and sleeping\r\n\r\nThank you for allowing me to share this with you and for taking the time to read it. I want to thank everyone that offered me support and wishes. I am very grateful to every one of you.\r\n\r\n&nbsp;\r\n<p class=\"text-center\"><strong class=\"subhead\">Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img style=\"padding-left: 5px;\" title=\"2012 Cozumel\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish.jpg\" alt=\"2012 Cozumel\" width=\"160\" height=\"215\" />\r\n<a href=\"https://photos.app.goo.gl/QCF7CgcEG8uOfLBs1\" target=\"_blank\" rel=\"noopener noreferrer\">2012 Cozumel\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Stories from my other Ironman competitions:\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','My Second Ironman Competition Took Place in Cozumel, Mexico','','publish','open','closed','','my-second-ironman-competition-took-place-in-cozumel-mexico','','','2021-05-19 00:12:57','2021-05-19 00:12:57','',0,'https://www.drfields.com/?p=120',0,'post','',0),(121,8,'2019-06-07 06:47:57','2019-06-07 06:47:57','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">November 25, 2012<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p>After finishing this race last year, I was back again to try and beat my time of 2011 time of 14 hrs. 4 mins and 7 sec. And with much pride, I am happy to announce that I did; finishing in 13hrs, 50 mins and 27sec.</p>\r\n\r\n<p>A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused. If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 42 countries.</p>\r\n<p>It was a beautiful day; air temp about 74 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong>THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong>THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong>THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong>THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong>The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 2nd Ironman','','inherit','closed','closed','','120-revision-v1','','','2019-06-07 06:47:57','2019-06-07 06:47:57','',120,'https://www.drfields.com/120-revision-v1/',0,'revision','',0),(123,8,'2019-06-07 06:49:26','2019-06-07 06:49:26','Cozumel 2012 Swim','Cozumel 2012 Swim','','inherit','open','closed','','cozumel-2012-swim','','','2019-06-07 06:49:35','2019-06-07 06:49:35','',120,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg',0,'attachment','image/jpeg',0),(124,8,'2019-06-07 06:50:39','2019-06-07 06:50:39','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">November 25, 2012<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p>After finishing this race last year, I was back again to try and beat my time of 2011 time of 14 hrs. 4 mins and 7 sec. And with much pride, I am happy to announce that I did; finishing in 13hrs, 50 mins and 27sec.</p>\r\n\r\n<p>A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused. If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 42 countries.</p>\r\n<p>It was a beautiful day; air temp about 74 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg\" alt=\"Cozumel 2012 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-123\" /><strong>THE SWIM</strong></span><br>\r\nThe water was a bit choppy and there was a strong current too. This did not bother me as swimming is my best event. After one last gel, I lined up with the others and then jumped off the pier into the ocean. One has to jump about 7-10 feet off the pier into the water. I positioned myself in a good spot up front and along the shore. The current would be flowing against us for the first 800 meters, so it was best to be close to the shore where the current is less. After treading water for 10 minutes or so, the horn went off. I go pretty fast at first to get away from the crowd. Due to the chop, I altered my stroke a bit to clear this. This brings ones arms slightly closer to the boy and I did develop a bit of an underarm chafe but this was soon forgotten. Once we turned around the first buoy, the current was with us and I let the current work with me for the next mile or so. The water was clear and you could see schools of fish swimming around as well as the scuba lifeguards, positioned on the bottom about 30 feet down. When I got to the final turn, the current was against me again, so I had to work a bit harder. There was no balloon or marker marking the pier so I just followed the crowd and sighted off the lifeguard paddlers and boats. Overall I was about 8 minutes slower than last year (one hour and nine minutes this year) but still felt pretty good. Later I was to learn that most people were 15 to 30 minutes slower than last year. In Ironman races (avg. participants about 2300), there is usually about 10-15 who do not make the 2 hrs. and 20 minute swim cutoff time. This year there was over 240! Very disappointing for them as they take your timing chip away as you exit the water. Some chose to do the race anyway; this was unofficial of course.</p>\r\n<p>As I exited the water, I ran quickly into the change tent (T1). I was determined to cut down my transition time this year – big time. I had opted to wear a Tri Suit under the speed suit (like in the Olympics) I swim in. This meant I did not have to change into separate clothing for the bike and run since the Tri suit is a two piece suit that one can ride and run in.</p>\r\n<p>Once inside, I quickly stripped the speed suit off, put on my helmet and bike shoes and was off to get my bike. You did not have to re-apply sunscreen as they had helpers in the change tent lathering your shoulders and upper arms (the exposed areas) with sunscreen. This was a big help.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong>THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong>THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong>THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong>The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 2nd Ironman','','inherit','closed','closed','','120-revision-v1','','','2019-06-07 06:50:39','2019-06-07 06:50:39','',120,'https://www.drfields.com/uncategorized/120-revision-v1/',0,'revision','',0),(125,8,'2019-06-07 06:51:10','2019-06-07 06:51:10','Cozumel 2012 Bike','Cozumel 2012 Bike','','inherit','open','closed','','cozumel-2012-bike','','','2019-06-07 06:51:14','2019-06-07 06:51:14','',120,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-bike.jpg',0,'attachment','image/jpeg',0),(126,8,'2019-06-07 06:51:40','2019-06-07 06:51:40','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">November 25, 2012<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p>After finishing this race last year, I was back again to try and beat my time of 2011 time of 14 hrs. 4 mins and 7 sec. And with much pride, I am happy to announce that I did; finishing in 13hrs, 50 mins and 27sec.</p>\r\n\r\n<p>A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused. If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 42 countries.</p>\r\n<p>It was a beautiful day; air temp about 74 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg\" alt=\"Cozumel 2012 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-123\" /><strong>THE SWIM</strong></span><br>\r\nThe water was a bit choppy and there was a strong current too. This did not bother me as swimming is my best event. After one last gel, I lined up with the others and then jumped off the pier into the ocean. One has to jump about 7-10 feet off the pier into the water. I positioned myself in a good spot up front and along the shore. The current would be flowing against us for the first 800 meters, so it was best to be close to the shore where the current is less. After treading water for 10 minutes or so, the horn went off. I go pretty fast at first to get away from the crowd. Due to the chop, I altered my stroke a bit to clear this. This brings ones arms slightly closer to the boy and I did develop a bit of an underarm chafe but this was soon forgotten. Once we turned around the first buoy, the current was with us and I let the current work with me for the next mile or so. The water was clear and you could see schools of fish swimming around as well as the scuba lifeguards, positioned on the bottom about 30 feet down. When I got to the final turn, the current was against me again, so I had to work a bit harder. There was no balloon or marker marking the pier so I just followed the crowd and sighted off the lifeguard paddlers and boats. Overall I was about 8 minutes slower than last year (one hour and nine minutes this year) but still felt pretty good. Later I was to learn that most people were 15 to 30 minutes slower than last year. In Ironman races (avg. participants about 2300), there is usually about 10-15 who do not make the 2 hrs. and 20 minute swim cutoff time. This year there was over 240! Very disappointing for them as they take your timing chip away as you exit the water. Some chose to do the race anyway; this was unofficial of course.</p>\r\n<p>As I exited the water, I ran quickly into the change tent (T1). I was determined to cut down my transition time this year – big time. I had opted to wear a Tri Suit under the speed suit (like in the Olympics) I swim in. This meant I did not have to change into separate clothing for the bike and run since the Tri suit is a two piece suit that one can ride and run in.</p>\r\n<p>Once inside, I quickly stripped the speed suit off, put on my helmet and bike shoes and was off to get my bike. You did not have to re-apply sunscreen as they had helpers in the change tent lathering your shoulders and upper arms (the exposed areas) with sunscreen. This was a big help.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-bike.jpg\" alt=\"Cozumel 2012 Bike\" width=\"160\" height=\"196\" class=\"alignleft size-full wp-image-125\" /><strong>THE BIKE</strong></span><br>\r\nThe first loop (it is a three lop ride) on the bike went well as there was not a lot of wind when we got to the back of the island. I also had changed my nutrition from last year and did not have the dreaded stomach problems that many triathletes have on the bike. The second loop, the winds really picked up. It was a tough 15-18 mile section with 15-20 mile an hour wind hitting you broad side. I did develop some left foot pain which happened sometimes when I ride over 70 miles. I wear a special bike shoe orthotics that keeps me from having right foot pain after I run and after riding. This had happened last year. So I removed my left orthotic. But shortly thereafter the right foot also bothered me so I removed that orthotic too. This essentially eliminated the pain. At mile 62 there is a special needs station where one leaves anything that they might want. Last year I rested there a bit but this year just grabbed what I needed from my bag and kept going. The third lap the wind got even more brutal and we were all slugging it out on the backside of the island. As I turned to head back into town at the 100 mile maker I went to slip the orthotics back in as it prevents me from having foot pain on the post ride run. The left one had fallen out of my bike jersey pocket but at least I had the right one. All in all I rode 12 minutes faster than last year.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong>THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong>THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong>The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 2nd Ironman','','inherit','closed','closed','','120-revision-v1','','','2019-06-07 06:51:40','2019-06-07 06:51:40','',120,'https://www.drfields.com/uncategorized/120-revision-v1/',0,'revision','',0),(127,8,'2019-06-07 06:52:20','2019-06-07 06:52:20','Cozumel 2012 Run','Cozumel 2012 Run','','inherit','open','closed','','cozumel-2012-run','','','2019-06-07 06:52:23','2019-06-07 06:52:23','',120,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-run.jpg',0,'attachment','image/jpeg',0),(128,8,'2019-06-07 06:54:44','2019-06-07 06:54:44','Cozumel 2012 Finish2','Cozumel 2012 Finish2','','inherit','open','closed','','cozumel-2012-finish2','','','2019-06-07 06:54:47','2019-06-07 06:54:47','',120,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg',0,'attachment','image/jpeg',0),(129,8,'2019-06-07 06:55:41','2019-06-07 06:55:41','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">November 25, 2012<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p>After finishing this race last year, I was back again to try and beat my time of 2011 time of 14 hrs. 4 mins and 7 sec. And with much pride, I am happy to announce that I did; finishing in 13hrs, 50 mins and 27sec.</p>\r\n\r\n<p>A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused. If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 42 countries.</p>\r\n<p>It was a beautiful day; air temp about 74 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg\" alt=\"Cozumel 2012 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-123\" /><strong>THE SWIM</strong></span><br>\r\nThe water was a bit choppy and there was a strong current too. This did not bother me as swimming is my best event. After one last gel, I lined up with the others and then jumped off the pier into the ocean. One has to jump about 7-10 feet off the pier into the water. I positioned myself in a good spot up front and along the shore. The current would be flowing against us for the first 800 meters, so it was best to be close to the shore where the current is less. After treading water for 10 minutes or so, the horn went off. I go pretty fast at first to get away from the crowd. Due to the chop, I altered my stroke a bit to clear this. This brings ones arms slightly closer to the boy and I did develop a bit of an underarm chafe but this was soon forgotten. Once we turned around the first buoy, the current was with us and I let the current work with me for the next mile or so. The water was clear and you could see schools of fish swimming around as well as the scuba lifeguards, positioned on the bottom about 30 feet down. When I got to the final turn, the current was against me again, so I had to work a bit harder. There was no balloon or marker marking the pier so I just followed the crowd and sighted off the lifeguard paddlers and boats. Overall I was about 8 minutes slower than last year (one hour and nine minutes this year) but still felt pretty good. Later I was to learn that most people were 15 to 30 minutes slower than last year. In Ironman races (avg. participants about 2300), there is usually about 10-15 who do not make the 2 hrs. and 20 minute swim cutoff time. This year there was over 240! Very disappointing for them as they take your timing chip away as you exit the water. Some chose to do the race anyway; this was unofficial of course.</p>\r\n<p>As I exited the water, I ran quickly into the change tent (T1). I was determined to cut down my transition time this year – big time. I had opted to wear a Tri Suit under the speed suit (like in the Olympics) I swim in. This meant I did not have to change into separate clothing for the bike and run since the Tri suit is a two piece suit that one can ride and run in.</p>\r\n<p>Once inside, I quickly stripped the speed suit off, put on my helmet and bike shoes and was off to get my bike. You did not have to re-apply sunscreen as they had helpers in the change tent lathering your shoulders and upper arms (the exposed areas) with sunscreen. This was a big help.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-bike.jpg\" alt=\"Cozumel 2012 Bike\" width=\"160\" height=\"196\" class=\"alignleft size-full wp-image-125\" /><strong>THE BIKE</strong></span><br>\r\nThe first loop (it is a three lop ride) on the bike went well as there was not a lot of wind when we got to the back of the island. I also had changed my nutrition from last year and did not have the dreaded stomach problems that many triathletes have on the bike. The second loop, the winds really picked up. It was a tough 15-18 mile section with 15-20 mile an hour wind hitting you broad side. I did develop some left foot pain which happened sometimes when I ride over 70 miles. I wear a special bike shoe orthotics that keeps me from having right foot pain after I run and after riding. This had happened last year. So I removed my left orthotic. But shortly thereafter the right foot also bothered me so I removed that orthotic too. This essentially eliminated the pain. At mile 62 there is a special needs station where one leaves anything that they might want. Last year I rested there a bit but this year just grabbed what I needed from my bag and kept going. The third lap the wind got even more brutal and we were all slugging it out on the backside of the island. As I turned to head back into town at the 100 mile maker I went to slip the orthotics back in as it prevents me from having foot pain on the post ride run. The left one had fallen out of my bike jersey pocket but at least I had the right one. All in all I rode 12 minutes faster than last year.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-run.jpg\" alt=\"Cozumel 2012 Run\" width=\"160\" height=\"215\" class=\"alignleft size-full wp-image-127\" /><strong>THE RUN</strong></span><br>\r\nBack into town, I got off the bike at the bike to run transition area (T2). I quickly changed; again much quicker than last year and headed off to run the marathon. My legs were a bit heavy but somehow I was running well. This was especially good since I had a hamstring problem earlier in the year and had been running a lot in deep water instead of the land for my training. The heaviness quickly went away within the first mile and all was going good. I had only slight right hamstring discomfort and no real pain.</p>\r\n<p>We do approximately 4. 4 miles out and back for an 8.8 mile loop (three times). On the way back to town on the first loop, the foot pain (left and right) started to appear. I did take a Celebrex at 4am and another one on the third loop of the bike. When I got to town after 8.8 miles, I asked my good friend Angela (she was my aid throughout the race- and a great one at that) to go find ibuprofen (it works on a different pathway than Celebrex). When I got to the second turn around to head back to town (13.1 miles) my hamstring kicked in - big time. It was painful to run but I kept going. I changed my gait (made it an even shorter stride). There were plenty of people walking by then but I just dealt with it. I know there was medic tent at about 15 miles. I pulled in and asked for ice. They ace wrapped my upper thigh with lots of ice. This seemed to reduce the pain but I still was running slightly slower (the first 13.1miles had me on a 5+ hr. marathon pace - much better than the 5:35 of last year). As I entered town, Angela was there and handed me the ibuprofen. I took it and within minutes I was feeling quite good. Prior to this I had calculated my time and distance and knew that I could break 14 hrs. – and maybe by 30 minutes. The hamstring pain started to return about 19 miles. I got the leg wrapped with more ice again on the way out to the 4.8 final turn around. Before the last turn around I was forced to walk and run. This is something that I had never done before (walk that is), but the pain was pretty high. At the last three mile marker I got even more ice for my hamstring and decided to walk more than run. Soon thereafter I could not continue a run/walk pace due to pain but figured if I walked fast (walking was painful but not severe) I would break 14 hrs. So at that point I walked a 14-15 mile pace (off my Garmin wrist computer), which is still pretty fast. There were plenty of walkers and I was passing them. I had to save whatever run I had left in me for last few hundred meters up to the finish (no way was I going to walk that!). This is right in the middle of the park and all lite up with hundreds (if not more) of people yelling and screaming. So as I got close, I began to run (pain is temporary; finishing is forever!) the last hundred meters to the finish line where I heard the announcer say, once again, \"<strong><span style=\"text-decoration: underline;\">Peter Fields, you are an Ironman!</span></strong>\"</p>\r\n\r\n<p>My time was13:50, not the 13:30 I might have had without the hamstring issue. <br>\r\nBut I did end up breaking the 14 hr. barrier (last year\'s time of 14:04), which I had set out to do. Mission accomplished. <br>\r\nAs I always say, age is mind over matter; if you don\'t mind- it does not matter!</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" alt=\"Cozumel 2012 Finish2\" width=\"150\" height=\"268\" class=\"alignleft size-full wp-image-128\" /><strong>THE FINISH</strong></span><br>\r\nImmediately after crossing the finish line, after getting a big hug from Angela. I then went into the medical tent and to get a one liter IV bag of fluid (as a former ER doc I know what to say to get it done without waiting). Everyone is dehydrated to some point and this was much needed. Then off to get a post-race massage and some food. Unfortunately, caffeine gels kept me going during the last part of the run and my stomach did not really want any food. But it was nice just to sit down. Then cheered on the last finishers who are those are trying to make the 17 hr. cut-off at midnight. After collecting my gear and bike, I finally headed back to the hotel and got to bed at 2am. Not much success with that after being very jacked up all day, so the next day was to a big recovery and sleep day.</p>\r\n<p>Thank you for allowing me to share this with you and for taking the\r\n\r\ntime to read it. I want to thank everyone that offered me support and\r\nwishes. I am very grateful to each and every one of you.</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong>The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 2nd Ironman','','inherit','closed','closed','','120-revision-v1','','','2019-06-07 06:55:41','2019-06-07 06:55:41','',120,'https://www.drfields.com/uncategorized/120-revision-v1/',0,'revision','',0),(130,8,'2022-12-02 06:01:38','2019-06-07 06:57:01',' ','','','publish','closed','closed','','130','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=130',12,'nav_menu_item','',0),(131,8,'2019-06-07 07:08:31','2019-06-07 07:08:31','<h2>Achieving Higher Goals at My Third Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_134\" align=\"alignleft\" width=\"528\"]<img class=\"wp-image-134 \" title=\"Third Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"528\" height=\"233\" /> <em> Sunday, August 25, 2013:     2.4-mile swim, 112-mile bike, 26.2-mile run</em>[/caption]\r\n\r\n</div>\r\n<h3><em>Third Ironman Quote:<strong> \"One cannot achieve higher goals in life without some struggle.\"</strong></em></h3>\r\n<div class=\"col-md-8\">\r\n<h3><img class=\"alignleft size-full wp-image-138\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" /><strong class=\"subhead\">Before the Race</strong></h3>\r\nI woke up at 3:30 am so I could have breakfast by 4 am. That way I would have three hours before the start of the race so my food could be properly digested. I already had my gear ready to go plus the two special needs bags for the bike and the run. Then off to the village center to drop off the special needs bags and onto the buses that transported us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.\r\n\r\nWhen we got there it was still dark and about 45 degrees. It was cold! But at least the rain from the previous day had stopped and no more was predicted. Fortunately, I had planned well for the cold.\r\n\r\nThere is always a lot of tension floating around as over 2200 athletes check their gear. Everyone tries their best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\n\r\nThe only thing one brings in the morning is one\'s wetsuit, goggles, and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit, and then down to the waterfront.\r\n<h3><img class=\"alignleft wp-image-140\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"243\" height=\"324\" /><strong class=\"subhead\">The Swim in My Third Ironman</strong></h3>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees. That temperature was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7 am, the gun went off. It would be a long day.\r\n\r\nAs always, I go out fast at the beginning of the swim, since swimming is my best part. I try and get away from the majority of the crowd, and then I try and settle back into a good pace. There were a few turns prior to turning back on the first loop of the two-loop course.\r\n\r\nIt got really jammed and crowded...more jammed than usual, which meant I couldn\'t really get into a good stroke pattern until the second lap. Plus, I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.\r\n<h3>Transition One</h3>\r\nI took a bit longer in the change tent as I put on knee warmers, a wind vest, a riding jacket, a skull cap for under my helmet, and longliner gloves over my riding gloves (I get cold easy!!).\r\n<h3><img class=\"alignleft wp-image-142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"251\" height=\"335\" /><strong class=\"subhead\">The Bike</strong></h3>\r\nThen I was off to the 112-mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views were really spectacular.\r\n\r\n<strong>Riding through the crowds was invigorating.</strong> They really cheered us on. I took off my gloves since it was now above 60. Then some uphills and lots of downhills for the next 20 miles.\r\n\r\nAfter that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use.\r\n\r\nI took off the leg warmers, vest, and skull cap, gave them to one of the volunteers along with the empty bottle I had gone thru. She was very surprised but happy, seeing my name on the bottle, and asked if that was me. When I said yes, she said that she had some knee problems and might call me. <strong>Wow, a business referral in an Ironman!</strong> Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.\r\n\r\nThen back to the hills. <strong>The last part from mile 85 to 112, was essentially all uphill.</strong> The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight downhill riding all the way back to town. It was tough on the legs.\r\n\r\nAs we approached the town, the cheering again kept me going. Needless to say, my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than previously in the <a href=\"https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico/\">Cozumel Ironman</a>. But with the hills here I was not disappointed.\r\n<h3>Transition Two</h3>\r\nAfter handing off my bike to a handler, it was off the change tent to put on my running shoes. No need to change clothing because what I wear under my wetsuit is what I ride and run in. Then a quick restock of a few gel packs. <strong>On the way out, volunteers with grass skirts put sunscreen on the runners.</strong> This would be helpful as it was hot, sunny, and getting warm.\r\n<h3><img class=\"alignleft wp-image-143\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"263\" height=\"350\" /><strong class=\"subhead\">The Run</strong></h3>\r\nThe run had over 1100 feet of climbing. Added to the very hilly ride, making this a hard run. There was constant up and down of hills. Tough on already tired legs. Some of the runs went thru the woods on dirt trails, which was good for the legs.\r\n\r\nWe ran around a lake, over a wooden bridge on a pond, and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.\r\n\r\nAt mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegaderm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse.\r\n\r\nThen, at mile five, I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort. The extra weight got transferred laterally to my third and fourth toes. So, I altered my gait and it became a lot easier to run.\r\n\r\nAt this point, it was actually easier to run (mid-foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually, I was able to keep running and push thru it. As my mom always said, \"C\'est al vie\", (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach.\r\n\r\nThe blister pain I just put in the back of my mind and it never got worse. All in all, <strong>I eventually figured out I would not break 14 hours as I had done last year.</strong> But with the big hills on the ride, the hills on the run, and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny, it was quite warm being at 2200 feet. So the ice at the aid stations was a help.\r\n\r\nI just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.\r\n<h3><img class=\"alignleft wp-image-144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"261\" height=\"437\" /><strong class=\"subhead\">The Finish</strong></h3>\r\nAs I got closer to the finish line, all the aches just started to fade away. The last mile or so I just let it all go and ran at a good pace. And as I entered the final turn, the last 150 meters were jammed with the crowds cheering loudly. At this point,<strong> I knew I had made it. All the months of training were worth it.</strong> And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. The final run time was 5:52 with an overall time of 14:18.\r\n<h3><strong class=\"subhead\">Final Thoughts on My Third Ironman:</strong></h3>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus, it is as much a mental challenge, if not more than a physical one.\r\n\r\nI love the quote by Viktor Frankel, MD; Holocaust survivor and world-famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).\r\n\r\n<em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\".</strong></em>\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Dedication:</strong></h3>\r\nAs many of you know, in each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.\r\n\r\nThanks to everyone for inquiring about me and cheering from near and far. I really appreciated all of it and words cannot say thank you enough.\r\n\r\nYour thoughts and well wishes helped me through my third Ironman.\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n[caption id=\"\" align=\"alignleft\" width=\"274\"]<img style=\"padding-left: 5px;\" title=\"My Third Ironman in 2013 Canada\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Third Ironman \" width=\"274\" height=\"358\" /> My Third Ironman Completed[/caption]\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"col-md-4\"><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">01</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">7 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Achieving Higher Goals at My Third Ironman in Canada','','publish','open','closed','','achieving-higher-goals-at-my-third-ironman','','','2021-06-03 02:47:55','2021-06-03 02:47:55','',0,'https://www.drfields.com/?p=131',0,'post','',0),(132,8,'2019-06-07 07:08:31','2019-06-07 07:08:31','','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-07 07:08:31','2019-06-07 07:08:31','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(133,8,'2019-06-07 07:09:51','2019-06-07 07:09:51','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p class=\"text-center\"><strong>On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong>THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong>THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong>THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong>THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong>The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-07 07:09:51','2019-06-07 07:09:51','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(134,8,'2019-06-07 07:16:29','2019-06-07 07:16:29','Ironman Canada Logo','Ironman Canada Logo','','inherit','open','closed','','ironman-canada-logo','','','2019-06-07 07:16:33','2019-06-07 07:16:33','',131,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg',0,'attachment','image/jpeg',0),(135,8,'2019-06-17 07:40:07','2019-06-17 07:40:07','<div class=\"col-md-8\">\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\n\n<p class=\"text-center\" id=\"athletic-event\">Sunday August 25, 2013<br>\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\n\n<p class=\"text-center\"><em>Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></em></p>\n\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong class=\"subhead\">Pre Race</strong></span><br>\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\n\n\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong class=\"subhead\">The Swim</strong></span><br>\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\n\n\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong class=\"subhead\">The Bike</strong></span><br>\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\n\n\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong class=\"subhead\">The Run</strong></span><br>\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\n\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\n\n\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong class=\"subhead\">The Finish</strong></span><br>\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\n\n<p><strong class=\"subhead\">Final Thoughts:</strong><br>\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\n\n<p><strong class=\"subhead\">Dedication:</strong><br>\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\n\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \nYour thoughts and well wishes helped me through my third Ironman.\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\n\n\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\n</div>\n<div class=\"col-md-4\">\n<img src=\"/portals/0/images/cozumel-2013-finish.jpg\" alt=\"2013 Canada\" title=\"2013 Canada\" style=\"padding-left: 5px;\" width=\"160\" height=\"215\">\n<div style=\"text-align: center;\"><a href=\"https://photos.app.goo.gl/gaPdmofhlbBcBfFx2\" target=\"_blank\" rel=\"noopener noreferrer\">2013 Canada<br>\nClick For More Photos</a><br>\n<br>\n</div>\n<p style=\"text-align: center;\">\nClick below for Pictures &amp; Story</p>\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\n</div>\n</div>\n\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-autosave-v1','','','2019-06-17 07:40:07','2019-06-17 07:40:07','',131,'https://www.drfields.com/uncategorized/131-autosave-v1/',0,'revision','',0),(136,8,'2019-06-07 07:17:22','2019-06-07 07:17:22','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p class=\"text-center\"><strong>On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong>THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong>THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong>THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong>THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong>The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-07 07:17:22','2019-06-07 07:17:22','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(137,8,'2019-06-07 07:17:50','2019-06-07 07:17:50','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p class=\"text-center\">Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong>THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong>THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong>THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong>THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong>The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-07 07:17:50','2019-06-07 07:17:50','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(138,8,'2019-06-07 07:18:40','2019-06-07 07:18:40','Cozumel 2013 Pre Race','Cozumel 2013 Pre Race','','inherit','open','closed','','cozumel-2013-pre-race','','','2019-06-07 07:18:49','2019-06-07 07:18:49','',131,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg',0,'attachment','image/jpeg',0),(139,8,'2019-06-07 07:19:29','2019-06-07 07:19:29','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p class=\"text-center\">Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong>THE SWIM</strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong>THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong>THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong>THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong>The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-07 07:19:29','2019-06-07 07:19:29','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(140,8,'2019-06-07 07:20:22','2019-06-07 07:20:22','Cozumel 2013 Swim','Cozumel 2013 Swim','','inherit','open','closed','','cozumel-2013-swim','','','2019-06-07 07:20:27','2019-06-07 07:20:27','',131,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg',0,'attachment','image/jpeg',0),(141,8,'2019-06-07 07:21:55','2019-06-07 07:21:55','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p class=\"text-center\">Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong>Pre Race</strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong>THE Swim</strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong>THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong>THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong>The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-07 07:21:55','2019-06-07 07:21:55','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(142,8,'2019-06-07 07:34:21','2019-06-07 07:34:21','Cozumel 2013 Bike','Cozumel 2013 Bike','','inherit','open','closed','','cozumel-2013-bike','','','2019-06-07 07:34:28','2019-06-07 07:34:28','',131,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg',0,'attachment','image/jpeg',0),(143,8,'2019-06-07 07:37:01','2019-06-07 07:37:01','Cozumel 2013 Run','Cozumel 2013 Run','','inherit','open','closed','','cozumel-2013-run','','','2019-06-07 07:37:08','2019-06-07 07:37:08','',131,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg',0,'attachment','image/jpeg',0),(144,8,'2019-06-07 07:38:22','2019-06-07 07:38:22','Cozumel 2013 Finish2','Cozumel 2013 Finish2','','inherit','open','closed','','cozumel-2013-finish2','','','2019-06-07 07:38:38','2019-06-07 07:38:38','',131,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg',0,'attachment','image/jpeg',0),(145,8,'2019-06-07 07:40:00','2019-06-07 07:40:00','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p class=\"text-center\">Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong><u>Pre Race</strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong><u>The Swim</strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong><u>The Bike</strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong><u>The Run</strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong><u>The Finish</strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n<p><strong><u>Final Thoughts:</u></strong></p>\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong>The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-07 07:40:00','2019-06-07 07:40:00','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(146,8,'2019-06-07 07:41:07','2019-06-07 07:41:07','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p class=\"text-center\">Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong><u>Pre Race</u></strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong><u>The Swim</u></strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong><u>The Bike</u></strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong><u>The Run</u></strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong><u>The Finish</u></strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n<p><strong><u>Final Thoughts:</u></strong></p>\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong>The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-07 07:41:07','2019-06-07 07:41:07','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(147,8,'2019-06-07 07:45:06','2019-06-07 07:45:06','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p class=\"text-center\">Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong><u>Pre Race</u></strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong><u>The Swim</u></strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong><u>The Bike</u></strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong><u>The Run</u></strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong><u>The Finish</u></strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n\r\n<p><strong><u>Final Thoughts:</u></strong><br>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\r\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\r\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\r\n\r\n<p><strong><u>Dedication:</u></strong><br>\r\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\r\n\r\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \r\nYour thoughts and well wishes helped me through my third Ironman.\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\r\n\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong>The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-07 07:45:06','2019-06-07 07:45:06','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(148,8,'2019-06-07 07:46:21','2019-06-07 07:46:21','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p class=\"text-center\">Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong><u>Pre Race</u></strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong><u>The Swim</u></strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong><u>The Bike</u></strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong><u>The Run</u></strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong><u>The Finish</u></strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n\r\n<p><strong><u>Final Thoughts:</u></strong><br>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\r\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\r\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\r\n\r\n<p><strong><u>Dedication:</u></strong><br>\r\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\r\n\r\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \r\nYour thoughts and well wishes helped me through my third Ironman.\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\r\n\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong>The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-07 07:46:21','2019-06-07 07:46:21','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(149,8,'2019-06-07 07:47:03','2019-06-07 07:47:03','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p class=\"text-center\">Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong><u>Pre Race</u></strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong><u>The Swim</u></strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong><u>The Bike</u></strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong><u>The Run</u></strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong><u>The Finish</u></strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n\r\n<p><strong><u>Final Thoughts:</u></strong><br>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\r\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\r\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\r\n\r\n<p><strong><u>Dedication:</u></strong><br>\r\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\r\n\r\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \r\nYour thoughts and well wishes helped me through my third Ironman.\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\r\n\r\n\r\n<p class=\"text-center\" id=\"athleticdoc\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong>The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-07 07:47:03','2019-06-07 07:47:03','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(150,8,'2019-06-07 07:47:45','2019-06-07 07:47:45','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p class=\"text-center\">Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong><u>Pre Race</u></strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong><u>The Swim</u></strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong><u>The Bike</u></strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong><u>The Run</u></strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong><u>The Finish</u></strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n\r\n<p><strong><u>Final Thoughts:</u></strong><br>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\r\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\r\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\r\n\r\n<p><strong><u>Dedication:</u></strong><br>\r\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\r\n\r\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \r\nYour thoughts and well wishes helped me through my third Ironman.\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-07 07:47:45','2019-06-07 07:47:45','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(151,8,'2019-06-07 07:48:33','2019-06-07 07:48:33','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">November 25, 2012<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p>After finishing this race last year, I was back again to try and beat my time of 2011 time of 14 hrs. 4 mins and 7 sec. And with much pride, I am happy to announce that I did; finishing in 13hrs, 50 mins and 27sec.</p>\r\n\r\n<p>A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused. If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 42 countries.</p>\r\n<p>It was a beautiful day; air temp about 74 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg\" alt=\"Cozumel 2012 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-123\" /><strong>THE SWIM</strong></span><br>\r\nThe water was a bit choppy and there was a strong current too. This did not bother me as swimming is my best event. After one last gel, I lined up with the others and then jumped off the pier into the ocean. One has to jump about 7-10 feet off the pier into the water. I positioned myself in a good spot up front and along the shore. The current would be flowing against us for the first 800 meters, so it was best to be close to the shore where the current is less. After treading water for 10 minutes or so, the horn went off. I go pretty fast at first to get away from the crowd. Due to the chop, I altered my stroke a bit to clear this. This brings ones arms slightly closer to the boy and I did develop a bit of an underarm chafe but this was soon forgotten. Once we turned around the first buoy, the current was with us and I let the current work with me for the next mile or so. The water was clear and you could see schools of fish swimming around as well as the scuba lifeguards, positioned on the bottom about 30 feet down. When I got to the final turn, the current was against me again, so I had to work a bit harder. There was no balloon or marker marking the pier so I just followed the crowd and sighted off the lifeguard paddlers and boats. Overall I was about 8 minutes slower than last year (one hour and nine minutes this year) but still felt pretty good. Later I was to learn that most people were 15 to 30 minutes slower than last year. In Ironman races (avg. participants about 2300), there is usually about 10-15 who do not make the 2 hrs. and 20 minute swim cutoff time. This year there was over 240! Very disappointing for them as they take your timing chip away as you exit the water. Some chose to do the race anyway; this was unofficial of course.</p>\r\n<p>As I exited the water, I ran quickly into the change tent (T1). I was determined to cut down my transition time this year – big time. I had opted to wear a Tri Suit under the speed suit (like in the Olympics) I swim in. This meant I did not have to change into separate clothing for the bike and run since the Tri suit is a two piece suit that one can ride and run in.</p>\r\n<p>Once inside, I quickly stripped the speed suit off, put on my helmet and bike shoes and was off to get my bike. You did not have to re-apply sunscreen as they had helpers in the change tent lathering your shoulders and upper arms (the exposed areas) with sunscreen. This was a big help.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-bike.jpg\" alt=\"Cozumel 2012 Bike\" width=\"160\" height=\"196\" class=\"alignleft size-full wp-image-125\" /><strong>THE BIKE</strong></span><br>\r\nThe first loop (it is a three lop ride) on the bike went well as there was not a lot of wind when we got to the back of the island. I also had changed my nutrition from last year and did not have the dreaded stomach problems that many triathletes have on the bike. The second loop, the winds really picked up. It was a tough 15-18 mile section with 15-20 mile an hour wind hitting you broad side. I did develop some left foot pain which happened sometimes when I ride over 70 miles. I wear a special bike shoe orthotics that keeps me from having right foot pain after I run and after riding. This had happened last year. So I removed my left orthotic. But shortly thereafter the right foot also bothered me so I removed that orthotic too. This essentially eliminated the pain. At mile 62 there is a special needs station where one leaves anything that they might want. Last year I rested there a bit but this year just grabbed what I needed from my bag and kept going. The third lap the wind got even more brutal and we were all slugging it out on the backside of the island. As I turned to head back into town at the 100 mile maker I went to slip the orthotics back in as it prevents me from having foot pain on the post ride run. The left one had fallen out of my bike jersey pocket but at least I had the right one. All in all I rode 12 minutes faster than last year.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-run.jpg\" alt=\"Cozumel 2012 Run\" width=\"160\" height=\"215\" class=\"alignleft size-full wp-image-127\" /><strong>THE RUN</strong></span><br>\r\nBack into town, I got off the bike at the bike to run transition area (T2). I quickly changed; again much quicker than last year and headed off to run the marathon. My legs were a bit heavy but somehow I was running well. This was especially good since I had a hamstring problem earlier in the year and had been running a lot in deep water instead of the land for my training. The heaviness quickly went away within the first mile and all was going good. I had only slight right hamstring discomfort and no real pain.</p>\r\n<p>We do approximately 4. 4 miles out and back for an 8.8 mile loop (three times). On the way back to town on the first loop, the foot pain (left and right) started to appear. I did take a Celebrex at 4am and another one on the third loop of the bike. When I got to town after 8.8 miles, I asked my good friend Angela (she was my aid throughout the race- and a great one at that) to go find ibuprofen (it works on a different pathway than Celebrex). When I got to the second turn around to head back to town (13.1 miles) my hamstring kicked in - big time. It was painful to run but I kept going. I changed my gait (made it an even shorter stride). There were plenty of people walking by then but I just dealt with it. I know there was medic tent at about 15 miles. I pulled in and asked for ice. They ace wrapped my upper thigh with lots of ice. This seemed to reduce the pain but I still was running slightly slower (the first 13.1miles had me on a 5+ hr. marathon pace - much better than the 5:35 of last year). As I entered town, Angela was there and handed me the ibuprofen. I took it and within minutes I was feeling quite good. Prior to this I had calculated my time and distance and knew that I could break 14 hrs. – and maybe by 30 minutes. The hamstring pain started to return about 19 miles. I got the leg wrapped with more ice again on the way out to the 4.8 final turn around. Before the last turn around I was forced to walk and run. This is something that I had never done before (walk that is), but the pain was pretty high. At the last three mile marker I got even more ice for my hamstring and decided to walk more than run. Soon thereafter I could not continue a run/walk pace due to pain but figured if I walked fast (walking was painful but not severe) I would break 14 hrs. So at that point I walked a 14-15 mile pace (off my Garmin wrist computer), which is still pretty fast. There were plenty of walkers and I was passing them. I had to save whatever run I had left in me for last few hundred meters up to the finish (no way was I going to walk that!). This is right in the middle of the park and all lite up with hundreds (if not more) of people yelling and screaming. So as I got close, I began to run (pain is temporary; finishing is forever!) the last hundred meters to the finish line where I heard the announcer say, once again, \"<strong><span style=\"text-decoration: underline;\">Peter Fields, you are an Ironman!</span></strong>\"</p>\r\n\r\n<p>My time was13:50, not the 13:30 I might have had without the hamstring issue. <br>\r\nBut I did end up breaking the 14 hr. barrier (last year\'s time of 14:04), which I had set out to do. Mission accomplished. <br>\r\nAs I always say, age is mind over matter; if you don\'t mind- it does not matter!</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" alt=\"Cozumel 2012 Finish2\" width=\"150\" height=\"268\" class=\"alignleft size-full wp-image-128\" /><strong>THE FINISH</strong></span><br>\r\nImmediately after crossing the finish line, after getting a big hug from Angela. I then went into the medical tent and to get a one liter IV bag of fluid (as a former ER doc I know what to say to get it done without waiting). Everyone is dehydrated to some point and this was much needed. Then off to get a post-race massage and some food. Unfortunately, caffeine gels kept me going during the last part of the run and my stomach did not really want any food. But it was nice just to sit down. Then cheered on the last finishers who are those are trying to make the 17 hr. cut-off at midnight. After collecting my gear and bike, I finally headed back to the hotel and got to bed at 2am. Not much success with that after being very jacked up all day, so the next day was to a big recovery and sleep day.</p>\r\n<p>Thank you for allowing me to share this with you and for taking the\r\n\r\ntime to read it. I want to thank everyone that offered me support and\r\nwishes. I am very grateful to each and every one of you.</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 2nd Ironman','','inherit','closed','closed','','120-revision-v1','','','2019-06-07 07:48:33','2019-06-07 07:48:33','',120,'https://www.drfields.com/uncategorized/120-revision-v1/',0,'revision','',0),(152,8,'2019-06-07 07:48:44','2019-06-07 07:48:44','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p class=\"text-center\"><strong>On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong>THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong>THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong>THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong>THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 1st Ironman','','inherit','closed','closed','','92-revision-v1','','','2019-06-07 07:48:44','2019-06-07 07:48:44','',92,'https://www.drfields.com/uncategorized/92-revision-v1/',0,'revision','',0),(153,8,'2019-06-07 07:52:43','2019-06-07 07:52:43','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"429\" height=\"160\" />\r\n<h3></h3>\r\n<h3><em><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></em></h3>\r\n<p class=\"col-md-8\"><em>    My Ironman #4 experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, </em><em>re-booked my </em><em>ticket, and made my train with 5 minutes to spare!</em></p>\r\n<p class=\"col-md-8\"><em>Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</em></p>\r\n<p class=\"col-md-8\"><em>The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</em></p>\r\n<p class=\"col-md-8\"><em>Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</em></p>\r\n<p class=\"col-md-8\"><em>In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</em></p>\r\n<p class=\"col-md-8\"><em>As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</em></p>\r\n<p class=\"col-md-8\"><em>I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</em></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','publish','open','closed','','ironman-4-and-a-new-pr','','','2021-06-04 01:37:15','2021-06-04 01:37:15','',0,'https://www.drfields.com/?p=153',0,'post','',0),(154,8,'2019-06-07 07:52:01','2019-06-07 07:52:01','Ironman Austria Logo','Ironman Austria Logo','Ironman Austria Logo','inherit','open','closed','','ironman-austria-logo','','','2019-06-07 07:52:02','2019-06-07 07:52:02','',153,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg',0,'attachment','image/jpeg',0),(155,8,'2019-06-07 07:52:43','2019-06-07 07:52:43','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<p class=\"text-center\"><strong style=\"font-size: 18px; line-height: 23px;\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p class=\"text-center\">Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong><u>Pre Race</u></strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong><u>The Swim</u></strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong><u>The Bike</u></strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong><u>The Run</u></strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong><u>The Finish</u></strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n\r\n<p><strong><u>Final Thoughts:</u></strong><br>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\r\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\r\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\r\n\r\n<p><strong><u>Dedication:</u></strong><br>\r\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\r\n\r\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \r\nYour thoughts and well wishes helped me through my third Ironman.\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 07:52:43','2019-06-07 07:52:43','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(156,8,'2019-06-17 08:05:46','2019-06-17 08:05:46','<div class=col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<h6 class=\"text-center\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\nMy time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.\r\n\r\nSaturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.\r\n\r\n\r\n<strong class=\"subhead\">RACE DAY</strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.\r\nOn my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n\r\n<strong class=\"subhead\">THE SWIM</strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<strong class=\"subhead\">THE BIKE</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a180 degree turn again (like at the beginning) so we hat to really slow down But this was good thing as the street leading to this turn was lined with thousands of spectators cheering us on.  Occasionally at this point and other ones where there was an announcer I would hear \"and here is Peter from the United States\".  Always nice to hear to keep one going. My usual time is about 3hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins. I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs is where one can leave a bag that morning of anything they may want or need at that point. It is at the halfway point of the bike and another one at the halfway point of the run.  I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.  When I tossed the bottle away, it rolled to the feet of the small boy about 6 or 7 years old. His mom looked at him.  He just looked at it. I told him, in German, here\'s a present for you.  Take it home and clean it! It is yours. He just smiled at me as he reached for it.\r\nThen 8 miles into the second loop miles drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down.\r\nAll in all, it went well on the second loop.  The crowds were less due to the rain but there were, still crowds out there. At about mile 80 my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. \r\nMy second loop time was a bit slower due to the rain.\r\n It was 3 hours in 25 minutes. All in all I felt strong for the run. This was a good thing.\r\nIn town near T2, the crowds were there cheering loudly.\r\n\r\nGot off my bike in and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles.  Got my running shoes on and started off to run a marathon.\r\n\r\nPS several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n\r\n\r\n<p><strong class=\"subhead\">THE RUN</strong></p>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" class=\"alignleft size-full wp-image-174\" />When one leaves transition area two (T2) in an Ironman, you cannot think marathon. You just say are running from here to there and play this mental games with yourself the whole way. It was warm and sunny and about 75 degrees but not too hot. Plus there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So therefore I would pass the finish line 4 times. In this area were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the end the first turn around about 4.5 miles out. I had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake the beginning of each loop, so although brief, it was a nice view. After only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races).  I trained part of the time in the water for my run (deep water running).  This was very helpful as it took the stress of these two areas.  At this point everything was good and I had no pain.  As we passed through the finish line area (middle of the figure eight), we headed out again along a canal. Then we ran under a small foot bridge and onto a small (in width) cobblestone street lined with houses. We ran along this for about 3/4 of a mile then into the town square. People were sitting in cafes and cheering us on. Lots and lots of people. It was about 6 or 7 o\'clock at night and since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and run back to the starting area. I got back to starting point again and got my special needs bag - some extra nutrition. On the second loop my stomach started to feel little funny.  This is something that is very common with Ironman triathletes. Mine only lasted about again 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration or other things. I felt fairly lucky.  I would cheer these fellow athlete on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\nI just kept telling myself to keep going.  One foot after another...just keep going... Part of the way it was shady so that helped a lot too. The sun stays up until 9 o’clock so it never went down while I was running. Mile 18, I got a second wind. Felt very upbeat and in a good place so I was able to pick up pace.\r\nAt that point I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that you normally he runs a lot faster but not today. He told me to try to stay with him and we could talk so the time with go faster. So for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains one has after racing for over 13 hours. There was a small archway as one entered into the city square. There was a small bell on a string that it was hanging from. If you rung the bell (by tapping it with your hand) they would donate money to charity, so I rang it every time I passed it. At the final turn around, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run. The guy I was running with and I just kept talking. He was from Prague where I was going after the race so we were going to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As one comes with closer to the finish line, the noise level is incredible with cheering, cowbells and more. I then heard the announcer say:\r\n<strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling one has when you hear that never gets old.\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\nAnd at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes\r\nMy friend I met on the run the finished right behind me. I then met his wife and three kids.\r\nAfter a few minutes of walking around it was off to the massage tent and get some food.\r\n\r\nPS I finished around 8:30 pm. At 9 pm the sky opened up and it rained hard for about an hour.\r\n I was very fortunate not to go through that.\r\n\r\nI want to make everybody who took the time and effort to watch the update that were on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.\r\nCollectively, I want to thank massage therapist, my acupuncturist and my chiropractor. You all helped get me through.  And wonderful office staff who always took a great interest in what I was doing and put up with my long workouts that made me late sometimes.\r\n\r\nThere a few individuals that need to be singled out individually.\r\n I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.\r\n\r\nAnd then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race. \r\n\r\nI want to thank my very special friend Angela Past.  Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did).  She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time.  Wow!  Thank you so much for your emotional support when I needed it the most.\r\n\r\nAnd last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day.  My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day.  She has never lost faith in me and my abilities... Thank you mom!\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc®&nbsp;and 4X Ironman Triathlete</strong>\r\n</div></div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n\r\n<img alt=\"Race Report 4th Ironman\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" style=\"text-align: center;\" width=\"204\" height=\"370\">\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-autosave-v1','','','2019-06-17 08:05:46','2019-06-17 08:05:46','',153,'https://www.drfields.com/uncategorized/153-autosave-v1/',0,'revision','',0),(157,8,'2019-06-07 07:55:42','2019-06-07 07:55:42','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\"><strong class=\"athletic-event\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p class=\"text-center\">Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong><u>Pre Race</u></strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong><u>The Swim</u></strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong><u>The Bike</u></strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong><u>The Run</u></strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong><u>The Finish</u></strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n\r\n<p><strong><u>Final Thoughts:</u></strong><br>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\r\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\r\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\r\n\r\n<p><strong><u>Dedication:</u></strong><br>\r\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\r\n\r\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \r\nYour thoughts and well wishes helped me through my third Ironman.\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-07 07:55:42','2019-06-07 07:55:42','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(158,8,'2019-06-07 07:55:50','2019-06-07 07:55:50','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<p class=\"text-center\"><strong class=\"athletic-event\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong></p>\r\n\r\n<p class=\"text-center\">Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong><u>Pre Race</u></strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong><u>The Swim</u></strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong><u>The Bike</u></strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong><u>The Run</u></strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong><u>The Finish</u></strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n\r\n<p><strong><u>Final Thoughts:</u></strong><br>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\r\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\r\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\r\n\r\n<p><strong><u>Dedication:</u></strong><br>\r\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\r\n\r\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \r\nYour thoughts and well wishes helped me through my third Ironman.\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 07:55:50','2019-06-07 07:55:50','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(159,8,'2019-06-07 07:58:53','2019-06-07 07:58:53','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<p class=\"text-center\"><span class=\"athletic-event\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</span></p>\r\n\r\n<p class=\"text-center\">Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong><u>Pre Race</u></strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong><u>The Swim</u></strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong><u>The Bike</u></strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong><u>The Run</u></strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong><u>The Finish</u></strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n\r\n<p><strong><u>Final Thoughts:</u></strong><br>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\r\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\r\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\r\n\r\n<p><strong><u>Dedication:</u></strong><br>\r\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\r\n\r\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \r\nYour thoughts and well wishes helped me through my third Ironman.\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 07:58:53','2019-06-07 07:58:53','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(160,8,'2019-06-07 08:01:33','2019-06-07 08:01:33','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\">Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong><u>Pre Race</u></strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong><u>The Swim</u></strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong><u>The Bike</u></strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong><u>The Run</u></strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong><u>The Finish</u></strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n\r\n<p><strong><u>Final Thoughts:</u></strong><br>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\r\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\r\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\r\n\r\n<p><strong><u>Dedication:</u></strong><br>\r\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\r\n\r\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \r\nYour thoughts and well wishes helped me through my third Ironman.\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-07 08:01:33','2019-06-07 08:01:33','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(161,8,'2019-06-07 08:01:47','2019-06-07 08:01:47','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 25, 2012<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p>After finishing this race last year, I was back again to try and beat my time of 2011 time of 14 hrs. 4 mins and 7 sec. And with much pride, I am happy to announce that I did; finishing in 13hrs, 50 mins and 27sec.</p>\r\n\r\n<p>A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused. If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 42 countries.</p>\r\n<p>It was a beautiful day; air temp about 74 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg\" alt=\"Cozumel 2012 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-123\" /><strong>THE SWIM</strong></span><br>\r\nThe water was a bit choppy and there was a strong current too. This did not bother me as swimming is my best event. After one last gel, I lined up with the others and then jumped off the pier into the ocean. One has to jump about 7-10 feet off the pier into the water. I positioned myself in a good spot up front and along the shore. The current would be flowing against us for the first 800 meters, so it was best to be close to the shore where the current is less. After treading water for 10 minutes or so, the horn went off. I go pretty fast at first to get away from the crowd. Due to the chop, I altered my stroke a bit to clear this. This brings ones arms slightly closer to the boy and I did develop a bit of an underarm chafe but this was soon forgotten. Once we turned around the first buoy, the current was with us and I let the current work with me for the next mile or so. The water was clear and you could see schools of fish swimming around as well as the scuba lifeguards, positioned on the bottom about 30 feet down. When I got to the final turn, the current was against me again, so I had to work a bit harder. There was no balloon or marker marking the pier so I just followed the crowd and sighted off the lifeguard paddlers and boats. Overall I was about 8 minutes slower than last year (one hour and nine minutes this year) but still felt pretty good. Later I was to learn that most people were 15 to 30 minutes slower than last year. In Ironman races (avg. participants about 2300), there is usually about 10-15 who do not make the 2 hrs. and 20 minute swim cutoff time. This year there was over 240! Very disappointing for them as they take your timing chip away as you exit the water. Some chose to do the race anyway; this was unofficial of course.</p>\r\n<p>As I exited the water, I ran quickly into the change tent (T1). I was determined to cut down my transition time this year – big time. I had opted to wear a Tri Suit under the speed suit (like in the Olympics) I swim in. This meant I did not have to change into separate clothing for the bike and run since the Tri suit is a two piece suit that one can ride and run in.</p>\r\n<p>Once inside, I quickly stripped the speed suit off, put on my helmet and bike shoes and was off to get my bike. You did not have to re-apply sunscreen as they had helpers in the change tent lathering your shoulders and upper arms (the exposed areas) with sunscreen. This was a big help.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-bike.jpg\" alt=\"Cozumel 2012 Bike\" width=\"160\" height=\"196\" class=\"alignleft size-full wp-image-125\" /><strong>THE BIKE</strong></span><br>\r\nThe first loop (it is a three lop ride) on the bike went well as there was not a lot of wind when we got to the back of the island. I also had changed my nutrition from last year and did not have the dreaded stomach problems that many triathletes have on the bike. The second loop, the winds really picked up. It was a tough 15-18 mile section with 15-20 mile an hour wind hitting you broad side. I did develop some left foot pain which happened sometimes when I ride over 70 miles. I wear a special bike shoe orthotics that keeps me from having right foot pain after I run and after riding. This had happened last year. So I removed my left orthotic. But shortly thereafter the right foot also bothered me so I removed that orthotic too. This essentially eliminated the pain. At mile 62 there is a special needs station where one leaves anything that they might want. Last year I rested there a bit but this year just grabbed what I needed from my bag and kept going. The third lap the wind got even more brutal and we were all slugging it out on the backside of the island. As I turned to head back into town at the 100 mile maker I went to slip the orthotics back in as it prevents me from having foot pain on the post ride run. The left one had fallen out of my bike jersey pocket but at least I had the right one. All in all I rode 12 minutes faster than last year.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-run.jpg\" alt=\"Cozumel 2012 Run\" width=\"160\" height=\"215\" class=\"alignleft size-full wp-image-127\" /><strong>THE RUN</strong></span><br>\r\nBack into town, I got off the bike at the bike to run transition area (T2). I quickly changed; again much quicker than last year and headed off to run the marathon. My legs were a bit heavy but somehow I was running well. This was especially good since I had a hamstring problem earlier in the year and had been running a lot in deep water instead of the land for my training. The heaviness quickly went away within the first mile and all was going good. I had only slight right hamstring discomfort and no real pain.</p>\r\n<p>We do approximately 4. 4 miles out and back for an 8.8 mile loop (three times). On the way back to town on the first loop, the foot pain (left and right) started to appear. I did take a Celebrex at 4am and another one on the third loop of the bike. When I got to town after 8.8 miles, I asked my good friend Angela (she was my aid throughout the race- and a great one at that) to go find ibuprofen (it works on a different pathway than Celebrex). When I got to the second turn around to head back to town (13.1 miles) my hamstring kicked in - big time. It was painful to run but I kept going. I changed my gait (made it an even shorter stride). There were plenty of people walking by then but I just dealt with it. I know there was medic tent at about 15 miles. I pulled in and asked for ice. They ace wrapped my upper thigh with lots of ice. This seemed to reduce the pain but I still was running slightly slower (the first 13.1miles had me on a 5+ hr. marathon pace - much better than the 5:35 of last year). As I entered town, Angela was there and handed me the ibuprofen. I took it and within minutes I was feeling quite good. Prior to this I had calculated my time and distance and knew that I could break 14 hrs. – and maybe by 30 minutes. The hamstring pain started to return about 19 miles. I got the leg wrapped with more ice again on the way out to the 4.8 final turn around. Before the last turn around I was forced to walk and run. This is something that I had never done before (walk that is), but the pain was pretty high. At the last three mile marker I got even more ice for my hamstring and decided to walk more than run. Soon thereafter I could not continue a run/walk pace due to pain but figured if I walked fast (walking was painful but not severe) I would break 14 hrs. So at that point I walked a 14-15 mile pace (off my Garmin wrist computer), which is still pretty fast. There were plenty of walkers and I was passing them. I had to save whatever run I had left in me for last few hundred meters up to the finish (no way was I going to walk that!). This is right in the middle of the park and all lite up with hundreds (if not more) of people yelling and screaming. So as I got close, I began to run (pain is temporary; finishing is forever!) the last hundred meters to the finish line where I heard the announcer say, once again, \"<strong><span style=\"text-decoration: underline;\">Peter Fields, you are an Ironman!</span></strong>\"</p>\r\n\r\n<p>My time was13:50, not the 13:30 I might have had without the hamstring issue. <br>\r\nBut I did end up breaking the 14 hr. barrier (last year\'s time of 14:04), which I had set out to do. Mission accomplished. <br>\r\nAs I always say, age is mind over matter; if you don\'t mind- it does not matter!</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" alt=\"Cozumel 2012 Finish2\" width=\"150\" height=\"268\" class=\"alignleft size-full wp-image-128\" /><strong>THE FINISH</strong></span><br>\r\nImmediately after crossing the finish line, after getting a big hug from Angela. I then went into the medical tent and to get a one liter IV bag of fluid (as a former ER doc I know what to say to get it done without waiting). Everyone is dehydrated to some point and this was much needed. Then off to get a post-race massage and some food. Unfortunately, caffeine gels kept me going during the last part of the run and my stomach did not really want any food. But it was nice just to sit down. Then cheered on the last finishers who are those are trying to make the 17 hr. cut-off at midnight. After collecting my gear and bike, I finally headed back to the hotel and got to bed at 2am. Not much success with that after being very jacked up all day, so the next day was to a big recovery and sleep day.</p>\r\n<p>Thank you for allowing me to share this with you and for taking the\r\n\r\ntime to read it. I want to thank everyone that offered me support and\r\nwishes. I am very grateful to each and every one of you.</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 2nd Ironman','','inherit','closed','closed','','120-revision-v1','','','2019-06-07 08:01:47','2019-06-07 08:01:47','',120,'https://www.drfields.com/uncategorized/120-revision-v1/',0,'revision','',0),(162,8,'2019-06-07 08:02:22','2019-06-07 08:02:22','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><strong>On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong>THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong>THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong>THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong>THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 1st Ironman','','inherit','closed','closed','','92-revision-v1','','','2019-06-07 08:02:22','2019-06-07 08:02:22','',92,'https://www.drfields.com/uncategorized/92-revision-v1/',0,'revision','',0),(163,8,'2019-06-07 08:02:41','2019-06-07 08:02:41','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\">Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong><u>Pre Race</u></strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong><u>The Swim</u></strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong><u>The Bike</u></strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong><u>The Run</u></strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong><u>The Finish</u></strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n\r\n<p><strong><u>Final Thoughts:</u></strong><br>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\r\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\r\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\r\n\r\n<p><strong><u>Dedication:</u></strong><br>\r\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\r\n\r\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \r\nYour thoughts and well wishes helped me through my third Ironman.\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 08:02:41','2019-06-07 08:02:41','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(165,8,'2019-06-07 08:05:51','2019-06-07 08:05:51','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><strong>On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong>THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong>THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong>THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong>THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 1st Ironman','','inherit','closed','closed','','92-revision-v1','','','2019-06-07 08:05:51','2019-06-07 08:05:51','',92,'https://www.drfields.com/uncategorized/92-revision-v1/',0,'revision','',0),(166,8,'2019-06-07 08:06:14','2019-06-07 08:06:14','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><strong>On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong>THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong>THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong>THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong>THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 1st Ironman','','inherit','closed','closed','','92-revision-v1','','','2019-06-07 08:06:14','2019-06-07 08:06:14','',92,'https://www.drfields.com/uncategorized/92-revision-v1/',0,'revision','',0),(167,8,'2019-06-07 08:08:03','2019-06-07 08:08:03','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><strong>On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong><u>THE SWIM</u></strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong><u>THE BIKE</u></strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong><u>THE RUN</u></strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong><u>THE FINISH</u></strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 1st Ironman','','inherit','closed','closed','','92-revision-v1','','','2019-06-07 08:08:03','2019-06-07 08:08:03','',92,'https://www.drfields.com/uncategorized/92-revision-v1/',0,'revision','',0),(168,8,'2019-06-07 08:12:00','2019-06-07 08:12:00','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p >My time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you</p>\r\n\r\n<p><strong><u>GETTING THERE</u></strong></p>\r\n<p> It started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n\r\n\r\n<p>Saturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n\r\n<p><u>RACE DAY</u></strong></p>\r\n<p>I got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.</p>\r\n\r\n<p>On my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.</p>\r\n\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 08:12:00','2019-06-07 08:12:00','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(169,8,'2019-06-07 08:12:44','2019-06-07 08:12:44','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p >My time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you</p>\r\n\r\n<p><strong><u>GETTING THERE</u></strong></p>\r\n<p> It started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n\r\n\r\n<p>Saturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n\r\n<p><strong><u>RACE DAY</u></strong></p>\r\n<p>I got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.</p>\r\n\r\n<p>On my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.</p>\r\n\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 08:12:44','2019-06-07 08:12:44','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(170,8,'2019-06-07 08:16:00','2019-06-07 08:16:00','Bike Race2014','Bike Race2014','','inherit','open','closed','','bike-race2014','','','2019-06-07 08:16:08','2019-06-07 08:16:08','',153,'https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg',0,'attachment','image/jpeg',0),(171,8,'2019-06-07 08:16:11','2019-06-07 08:16:11','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p >My time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you</p>\r\n\r\n<p><strong><u>GETTING THERE</u></strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n\r\n\r\n<p>Saturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n\r\n<p><strong><u>RACE DAY</u></strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.</p>\r\n\r\n<p>On my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.</p>\r\n\r\n\r\n<p><strong><u>THE SWIM</u></strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<p><strong><u>THE BIKE</u><strong></p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.</p>\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 08:16:11','2019-06-07 08:16:11','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(172,8,'2019-06-07 08:16:30','2019-06-07 08:16:30','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p >My time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you</p>\r\n\r\n<p><strong><u>GETTING THERE</u></strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n\r\n\r\n<p>Saturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n\r\n<p><strong><u>RACE DAY</u></strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.</p>\r\n\r\n<p>On my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.</p>\r\n\r\n\r\n<p><strong><u>THE SWIM</u></strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<p><strong><u>THE BIKE</u></strong></p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.</p>\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 08:16:30','2019-06-07 08:16:30','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(173,8,'2019-06-07 08:18:39','2019-06-07 08:18:39','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p >My time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you</p>\r\n\r\n<p><strong><u>GETTING THERE</u></strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n\r\n\r\n<p>Saturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n\r\n<p><strong><u>RACE DAY</u></strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.</p>\r\n\r\n<p>On my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.</p>\r\n\r\n\r\n<p><strong><u>THE SWIM</u></strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<p><strong><u>THE BIKE</u></strong></p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.</p>\r\n\r\n<p>As we came into town they had us make a180 degree turn again (like at the beginning) so we hat to really slow down But this was good thing as the street leading to this turn was lined with thousands of spectators cheering us on.  Occasionally at this point and other ones where there was an announcer I would hear \"and here is Peter from the United States\".  Always nice to hear to keep one going. My usual time is about 3hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins. I was feeling very good.</p>\r\n\r\n<p>As we started back out on the second loop, I stopped at special needs and refueled myself. Special needs is where one can leave a bag that morning of anything they may want or need at that point. It is at the halfway point of the bike and another one at the halfway point of the run.  I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.  When I tossed the bottle away, it rolled to the feet of the small boy about 6 or 7 years old. His mom looked at him.  He just looked at it. I told him, in German, here\'s a present for you.  Take it home and clean it! It is yours. He just smiled at me as he reached for it.\r\nThen 8 miles into the second loop miles drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down.\r\nAll in all, it went well on the second loop.  The crowds were less due to the rain but there were, still crowds out there. At about mile 80 my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. \r\nMy second loop time was a bit slower due to the rain.\r\n It was 3 hours in 25 minutes. All in all I felt strong for the run. This was a good thing.\r\nIn town near T2, the crowds were there cheering loudly.</p>\r\n\r\n<p>Got off my bike in and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles.  Got my running shoes on and started off to run a marathon.</p>\r\n\r\n<p>PS several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.</p>\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 08:18:39','2019-06-07 08:18:39','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(174,8,'2019-06-07 08:20:29','2019-06-07 08:20:29','Running Smile','Running Smile','','inherit','open','closed','','running-smile','','','2019-06-07 08:20:37','2019-06-07 08:20:37','',153,'https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg',0,'attachment','image/jpeg',0),(175,8,'2019-06-07 08:21:54','2019-06-07 08:21:54','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p >My time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you</p>\r\n\r\n<p><strong><u>GETTING THERE</u></strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n\r\n\r\n<p>Saturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n\r\n<p><strong><u>RACE DAY</u></strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.</p>\r\n\r\n<p>On my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.</p>\r\n\r\n\r\n<p><strong><u>THE SWIM</u></strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<p><strong><u>THE BIKE</u></strong></p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.</p>\r\n\r\n<p>As we came into town they had us make a180 degree turn again (like at the beginning) so we hat to really slow down But this was good thing as the street leading to this turn was lined with thousands of spectators cheering us on.  Occasionally at this point and other ones where there was an announcer I would hear \"and here is Peter from the United States\".  Always nice to hear to keep one going. My usual time is about 3hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins. I was feeling very good.</p>\r\n\r\n<p>As we started back out on the second loop, I stopped at special needs and refueled myself. Special needs is where one can leave a bag that morning of anything they may want or need at that point. It is at the halfway point of the bike and another one at the halfway point of the run.  I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.  When I tossed the bottle away, it rolled to the feet of the small boy about 6 or 7 years old. His mom looked at him.  He just looked at it. I told him, in German, here\'s a present for you.  Take it home and clean it! It is yours. He just smiled at me as he reached for it.\r\nThen 8 miles into the second loop miles drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down.\r\nAll in all, it went well on the second loop.  The crowds were less due to the rain but there were, still crowds out there. At about mile 80 my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. \r\nMy second loop time was a bit slower due to the rain.\r\n It was 3 hours in 25 minutes. All in all I felt strong for the run. This was a good thing.\r\nIn town near T2, the crowds were there cheering loudly.</p>\r\n\r\n<p>Got off my bike in and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles.  Got my running shoes on and started off to run a marathon.</p>\r\n\r\n<p>PS several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.</p>\r\n\r\n\r\n<p><strong><u>THE RUN</u></strong></p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" class=\"alignleft size-full wp-image-174\" />When one leaves transition area two (T2) in an Ironman, you cannot think marathon. You just say are running from here to there and play this mental games with yourself the whole way. It was warm and sunny and about 75 degrees but not too hot. Plus there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So therefore I would pass the finish line 4 times. In this area were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the end the first turn around about 4.5 miles out. I had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake the beginning of each loop, so although brief, it was a nice view. After only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races).  I trained part of the time in the water for my run (deep water running).  This was very helpful as it took the stress of these two areas.  At this point everything was good and I had no pain.  As we passed through the finish line area (middle of the figure eight), we headed out again along a canal. Then we ran under a small foot bridge and onto a small (in width) cobblestone street lined with houses. We ran along this for about 3/4 of a mile then into the town square. People were sitting in cafes and cheering us on. Lots and lots of people. It was about 6 or 7 o\'clock at night and since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and run back to the starting area. I got back to starting point again and got my special needs bag - some extra nutrition. On the second loop my stomach started to feel little funny.  This is something that is very common with Ironman triathletes. Mine only lasted about again 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration or other things. I felt fairly lucky.  I would cheer these fellow athlete on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.</p>\r\n\r\n<p>I just kept telling myself to keep going.  One foot after another...just keep going... Part of the way it was shady so that helped a lot too. The sun stays up until 9 o’clock so it never went down while I was running. Mile 18, I got a second wind. Felt very upbeat and in a good place so I was able to pick up pace.\r\nAt that point I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that you normally he runs a lot faster but not today. He told me to try to stay with him and we could talk so the time with go faster. So for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains one has after racing for over 13 hours. There was a small archway as one entered into the city square. There was a small bell on a string that it was hanging from. If you rung the bell (by tapping it with your hand) they would donate money to charity, so I rang it every time I passed it. At the final turn around, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run. The guy I was running with and I just kept talking. He was from Prague where I was going after the race so we were going to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.</p>\r\n\r\n<p>So at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As one comes with closer to the finish line, the noise level is incredible with cheering, cowbells and more. I then heard the announcer say:\r\n<strong>\"Peter Fields, you are an Ironman!\"</strong></p>\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 08:21:54','2019-06-07 08:21:54','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(176,8,'2019-06-07 08:22:22','2019-06-07 08:22:22','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p >My time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you</p>\r\n\r\n<p><strong><u>GETTING THERE</u></strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n\r\n\r\n<p>Saturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n\r\n<p><strong><u>RACE DAY</u></strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.</p>\r\n\r\n<p>On my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.</p>\r\n\r\n\r\n<p><strong><u>THE SWIM</u></strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<p><strong><u>THE BIKE</u></strong></p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.</p>\r\n\r\n<p>As we came into town they had us make a180 degree turn again (like at the beginning) so we hat to really slow down But this was good thing as the street leading to this turn was lined with thousands of spectators cheering us on.  Occasionally at this point and other ones where there was an announcer I would hear \"and here is Peter from the United States\".  Always nice to hear to keep one going. My usual time is about 3hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins. I was feeling very good.</p>\r\n\r\n<p>As we started back out on the second loop, I stopped at special needs and refueled myself. Special needs is where one can leave a bag that morning of anything they may want or need at that point. It is at the halfway point of the bike and another one at the halfway point of the run.  I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.  When I tossed the bottle away, it rolled to the feet of the small boy about 6 or 7 years old. His mom looked at him.  He just looked at it. I told him, in German, here\'s a present for you.  Take it home and clean it! It is yours. He just smiled at me as he reached for it.\r\nThen 8 miles into the second loop miles drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down.\r\nAll in all, it went well on the second loop.  The crowds were less due to the rain but there were, still crowds out there. At about mile 80 my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. \r\nMy second loop time was a bit slower due to the rain.\r\n It was 3 hours in 25 minutes. All in all I felt strong for the run. This was a good thing.\r\nIn town near T2, the crowds were there cheering loudly.</p>\r\n\r\n<p>Got off my bike in and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles.  Got my running shoes on and started off to run a marathon.</p>\r\n\r\n<p>PS several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.</p>\r\n\r\n\r\n<p><strong><u>THE RUN</u></strong></p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" class=\"alignleft size-full wp-image-174\" />When one leaves transition area two (T2) in an Ironman, you cannot think marathon. You just say are running from here to there and play this mental games with yourself the whole way. It was warm and sunny and about 75 degrees but not too hot. Plus there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So therefore I would pass the finish line 4 times. In this area were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the end the first turn around about 4.5 miles out. I had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake the beginning of each loop, so although brief, it was a nice view. After only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races).  I trained part of the time in the water for my run (deep water running).  This was very helpful as it took the stress of these two areas.  At this point everything was good and I had no pain.  As we passed through the finish line area (middle of the figure eight), we headed out again along a canal. Then we ran under a small foot bridge and onto a small (in width) cobblestone street lined with houses. We ran along this for about 3/4 of a mile then into the town square. People were sitting in cafes and cheering us on. Lots and lots of people. It was about 6 or 7 o\'clock at night and since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and run back to the starting area. I got back to starting point again and got my special needs bag - some extra nutrition. On the second loop my stomach started to feel little funny.  This is something that is very common with Ironman triathletes. Mine only lasted about again 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration or other things. I felt fairly lucky.  I would cheer these fellow athlete on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.</p>\r\n\r\n<p>I just kept telling myself to keep going.  One foot after another...just keep going... Part of the way it was shady so that helped a lot too. The sun stays up until 9 o’clock so it never went down while I was running. Mile 18, I got a second wind. Felt very upbeat and in a good place so I was able to pick up pace.\r\nAt that point I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that you normally he runs a lot faster but not today. He told me to try to stay with him and we could talk so the time with go faster. So for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains one has after racing for over 13 hours. There was a small archway as one entered into the city square. There was a small bell on a string that it was hanging from. If you rung the bell (by tapping it with your hand) they would donate money to charity, so I rang it every time I passed it. At the final turn around, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run. The guy I was running with and I just kept talking. He was from Prague where I was going after the race so we were going to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.</p>\r\n\r\n<p>So at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As one comes with closer to the finish line, the noise level is incredible with cheering, cowbells and more. I then heard the announcer say:\r\n<strong>\"Peter Fields, you are an Ironman!\"</strong></p>\r\n\r\nThe feeling one has when you hear that never gets old.\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\nAnd at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes\r\nMy friend I met on the run the finished right behind me. I then met his wife and three kids.\r\nAfter a few minutes of walking around it was off to the massage tent and get some food.\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 08:22:22','2019-06-07 08:22:22','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(177,8,'2019-06-07 08:23:45','2019-06-07 08:23:45','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p >My time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you</p>\r\n\r\n<p><strong><u>GETTING THERE</u></strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n\r\n\r\n<p>Saturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n\r\n<p><strong><u>RACE DAY</u></strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.</p>\r\n\r\n<p>On my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.</p>\r\n\r\n\r\n<p><strong><u>THE SWIM</u></strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<p><strong><u>THE BIKE</u></strong></p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.</p>\r\n\r\n<p>As we came into town they had us make a180 degree turn again (like at the beginning) so we hat to really slow down But this was good thing as the street leading to this turn was lined with thousands of spectators cheering us on.  Occasionally at this point and other ones where there was an announcer I would hear \"and here is Peter from the United States\".  Always nice to hear to keep one going. My usual time is about 3hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins. I was feeling very good.</p>\r\n\r\n<p>As we started back out on the second loop, I stopped at special needs and refueled myself. Special needs is where one can leave a bag that morning of anything they may want or need at that point. It is at the halfway point of the bike and another one at the halfway point of the run.  I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.  When I tossed the bottle away, it rolled to the feet of the small boy about 6 or 7 years old. His mom looked at him.  He just looked at it. I told him, in German, here\'s a present for you.  Take it home and clean it! It is yours. He just smiled at me as he reached for it.\r\nThen 8 miles into the second loop miles drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down.\r\nAll in all, it went well on the second loop.  The crowds were less due to the rain but there were, still crowds out there. At about mile 80 my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. \r\nMy second loop time was a bit slower due to the rain.\r\n It was 3 hours in 25 minutes. All in all I felt strong for the run. This was a good thing.\r\nIn town near T2, the crowds were there cheering loudly.</p>\r\n\r\n<p>Got off my bike in and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles.  Got my running shoes on and started off to run a marathon.</p>\r\n\r\n<p>PS several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.</p>\r\n\r\n\r\n<p><strong><u>THE RUN</u></strong></p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" class=\"alignleft size-full wp-image-174\" />When one leaves transition area two (T2) in an Ironman, you cannot think marathon. You just say are running from here to there and play this mental games with yourself the whole way. It was warm and sunny and about 75 degrees but not too hot. Plus there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So therefore I would pass the finish line 4 times. In this area were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the end the first turn around about 4.5 miles out. I had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake the beginning of each loop, so although brief, it was a nice view. After only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races).  I trained part of the time in the water for my run (deep water running).  This was very helpful as it took the stress of these two areas.  At this point everything was good and I had no pain.  As we passed through the finish line area (middle of the figure eight), we headed out again along a canal. Then we ran under a small foot bridge and onto a small (in width) cobblestone street lined with houses. We ran along this for about 3/4 of a mile then into the town square. People were sitting in cafes and cheering us on. Lots and lots of people. It was about 6 or 7 o\'clock at night and since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and run back to the starting area. I got back to starting point again and got my special needs bag - some extra nutrition. On the second loop my stomach started to feel little funny.  This is something that is very common with Ironman triathletes. Mine only lasted about again 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration or other things. I felt fairly lucky.  I would cheer these fellow athlete on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.</p>\r\n\r\n<p>I just kept telling myself to keep going.  One foot after another...just keep going... Part of the way it was shady so that helped a lot too. The sun stays up until 9 o’clock so it never went down while I was running. Mile 18, I got a second wind. Felt very upbeat and in a good place so I was able to pick up pace.\r\nAt that point I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that you normally he runs a lot faster but not today. He told me to try to stay with him and we could talk so the time with go faster. So for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains one has after racing for over 13 hours. There was a small archway as one entered into the city square. There was a small bell on a string that it was hanging from. If you rung the bell (by tapping it with your hand) they would donate money to charity, so I rang it every time I passed it. At the final turn around, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run. The guy I was running with and I just kept talking. He was from Prague where I was going after the race so we were going to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.</p>\r\n\r\n<p>So at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As one comes with closer to the finish line, the noise level is incredible with cheering, cowbells and more. I then heard the announcer say:\r\n<strong>\"Peter Fields, you are an Ironman!\"</strong></p>\r\n\r\nThe feeling one has when you hear that never gets old.\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\nAnd at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes\r\nMy friend I met on the run the finished right behind me. I then met his wife and three kids.\r\nAfter a few minutes of walking around it was off to the massage tent and get some food.\r\n\r\nPS I finished around 8:30 pm. At 9 pm the sky opened up and it rained hard for about an hour.\r\n I was very fortunate not to go through that.\r\n\r\nI want to make everybody who took the time and effort to watch the update that were on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.\r\nCollectively, I want to thank massage therapist, my acupuncturist and my chiropractor. You all helped get me through.  And wonderful office staff who always took a great interest in what I was doing and put up with my long workouts that made me late sometimes.\r\n\r\nThere a few individuals that need to be singled out individually.\r\n I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.\r\n\r\nAnd then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race. \r\n\r\nI want to thank my very special friend Angela Past.  Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did).  She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time.  Wow!  Thank you so much for your emotional support when I needed it the most.\r\n\r\nAnd last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day.  My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day.  She has never lost faith in me and my abilities... Thank you mom!\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 08:23:45','2019-06-07 08:23:45','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(178,8,'2019-06-07 08:26:17','2019-06-07 08:26:17','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\nMy time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you\r\n\r\n<strong><u>GETTING THERE</u></strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.\r\n\r\nSaturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.\r\n\r\n\r\n<strong><u>RACE DAY</u></strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.\r\nOn my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n\r\n<strong><u>THE SWIM</u></strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<strong><u>THE BIKE</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a180 degree turn again (like at the beginning) so we hat to really slow down But this was good thing as the street leading to this turn was lined with thousands of spectators cheering us on.  Occasionally at this point and other ones where there was an announcer I would hear \"and here is Peter from the United States\".  Always nice to hear to keep one going. My usual time is about 3hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins. I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs is where one can leave a bag that morning of anything they may want or need at that point. It is at the halfway point of the bike and another one at the halfway point of the run.  I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.  When I tossed the bottle away, it rolled to the feet of the small boy about 6 or 7 years old. His mom looked at him.  He just looked at it. I told him, in German, here\'s a present for you.  Take it home and clean it! It is yours. He just smiled at me as he reached for it.\r\nThen 8 miles into the second loop miles drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down.\r\nAll in all, it went well on the second loop.  The crowds were less due to the rain but there were, still crowds out there. At about mile 80 my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. \r\nMy second loop time was a bit slower due to the rain.\r\n It was 3 hours in 25 minutes. All in all I felt strong for the run. This was a good thing.\r\nIn town near T2, the crowds were there cheering loudly.\r\n\r\nGot off my bike in and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles.  Got my running shoes on and started off to run a marathon.\r\n\r\nPS several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n\r\n\r\n<p><strong><u>THE RUN</u></strong></p>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" class=\"alignleft size-full wp-image-174\" />When one leaves transition area two (T2) in an Ironman, you cannot think marathon. You just say are running from here to there and play this mental games with yourself the whole way. It was warm and sunny and about 75 degrees but not too hot. Plus there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So therefore I would pass the finish line 4 times. In this area were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the end the first turn around about 4.5 miles out. I had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake the beginning of each loop, so although brief, it was a nice view. After only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races).  I trained part of the time in the water for my run (deep water running).  This was very helpful as it took the stress of these two areas.  At this point everything was good and I had no pain.  As we passed through the finish line area (middle of the figure eight), we headed out again along a canal. Then we ran under a small foot bridge and onto a small (in width) cobblestone street lined with houses. We ran along this for about 3/4 of a mile then into the town square. People were sitting in cafes and cheering us on. Lots and lots of people. It was about 6 or 7 o\'clock at night and since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and run back to the starting area. I got back to starting point again and got my special needs bag - some extra nutrition. On the second loop my stomach started to feel little funny.  This is something that is very common with Ironman triathletes. Mine only lasted about again 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration or other things. I felt fairly lucky.  I would cheer these fellow athlete on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\nI just kept telling myself to keep going.  One foot after another...just keep going... Part of the way it was shady so that helped a lot too. The sun stays up until 9 o’clock so it never went down while I was running. Mile 18, I got a second wind. Felt very upbeat and in a good place so I was able to pick up pace.\r\nAt that point I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that you normally he runs a lot faster but not today. He told me to try to stay with him and we could talk so the time with go faster. So for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains one has after racing for over 13 hours. There was a small archway as one entered into the city square. There was a small bell on a string that it was hanging from. If you rung the bell (by tapping it with your hand) they would donate money to charity, so I rang it every time I passed it. At the final turn around, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run. The guy I was running with and I just kept talking. He was from Prague where I was going after the race so we were going to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As one comes with closer to the finish line, the noise level is incredible with cheering, cowbells and more. I then heard the announcer say:\r\n<strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling one has when you hear that never gets old.\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\nAnd at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes\r\nMy friend I met on the run the finished right behind me. I then met his wife and three kids.\r\nAfter a few minutes of walking around it was off to the massage tent and get some food.\r\n\r\nPS I finished around 8:30 pm. At 9 pm the sky opened up and it rained hard for about an hour.\r\n I was very fortunate not to go through that.\r\n\r\nI want to make everybody who took the time and effort to watch the update that were on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.\r\nCollectively, I want to thank massage therapist, my acupuncturist and my chiropractor. You all helped get me through.  And wonderful office staff who always took a great interest in what I was doing and put up with my long workouts that made me late sometimes.\r\n\r\nThere a few individuals that need to be singled out individually.\r\n I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.\r\n\r\nAnd then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race. \r\n\r\nI want to thank my very special friend Angela Past.  Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did).  She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time.  Wow!  Thank you so much for your emotional support when I needed it the most.\r\n\r\nAnd last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day.  My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day.  She has never lost faith in me and my abilities... Thank you mom!\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 08:26:17','2019-06-07 08:26:17','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(179,8,'2019-06-07 08:29:02','2019-06-07 08:29:02','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\nMy time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you\r\n\r\n<strong><u>GETTING THERE</u></strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.\r\n\r\nSaturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.\r\n\r\n\r\n<strong><u>RACE DAY</u></strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.\r\nOn my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n\r\n<strong><u>THE SWIM</u></strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<strong><u>THE BIKE</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a180 degree turn again (like at the beginning) so we hat to really slow down But this was good thing as the street leading to this turn was lined with thousands of spectators cheering us on.  Occasionally at this point and other ones where there was an announcer I would hear \"and here is Peter from the United States\".  Always nice to hear to keep one going. My usual time is about 3hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins. I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs is where one can leave a bag that morning of anything they may want or need at that point. It is at the halfway point of the bike and another one at the halfway point of the run.  I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.  When I tossed the bottle away, it rolled to the feet of the small boy about 6 or 7 years old. His mom looked at him.  He just looked at it. I told him, in German, here\'s a present for you.  Take it home and clean it! It is yours. He just smiled at me as he reached for it.\r\nThen 8 miles into the second loop miles drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down.\r\nAll in all, it went well on the second loop.  The crowds were less due to the rain but there were, still crowds out there. At about mile 80 my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. \r\nMy second loop time was a bit slower due to the rain.\r\n It was 3 hours in 25 minutes. All in all I felt strong for the run. This was a good thing.\r\nIn town near T2, the crowds were there cheering loudly.\r\n\r\nGot off my bike in and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles.  Got my running shoes on and started off to run a marathon.\r\n\r\nPS several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n\r\n\r\n<p><strong><u>THE RUN</u></strong></p>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" class=\"alignleft size-full wp-image-174\" />When one leaves transition area two (T2) in an Ironman, you cannot think marathon. You just say are running from here to there and play this mental games with yourself the whole way. It was warm and sunny and about 75 degrees but not too hot. Plus there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So therefore I would pass the finish line 4 times. In this area were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the end the first turn around about 4.5 miles out. I had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake the beginning of each loop, so although brief, it was a nice view. After only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races).  I trained part of the time in the water for my run (deep water running).  This was very helpful as it took the stress of these two areas.  At this point everything was good and I had no pain.  As we passed through the finish line area (middle of the figure eight), we headed out again along a canal. Then we ran under a small foot bridge and onto a small (in width) cobblestone street lined with houses. We ran along this for about 3/4 of a mile then into the town square. People were sitting in cafes and cheering us on. Lots and lots of people. It was about 6 or 7 o\'clock at night and since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and run back to the starting area. I got back to starting point again and got my special needs bag - some extra nutrition. On the second loop my stomach started to feel little funny.  This is something that is very common with Ironman triathletes. Mine only lasted about again 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration or other things. I felt fairly lucky.  I would cheer these fellow athlete on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\nI just kept telling myself to keep going.  One foot after another...just keep going... Part of the way it was shady so that helped a lot too. The sun stays up until 9 o’clock so it never went down while I was running. Mile 18, I got a second wind. Felt very upbeat and in a good place so I was able to pick up pace.\r\nAt that point I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that you normally he runs a lot faster but not today. He told me to try to stay with him and we could talk so the time with go faster. So for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains one has after racing for over 13 hours. There was a small archway as one entered into the city square. There was a small bell on a string that it was hanging from. If you rung the bell (by tapping it with your hand) they would donate money to charity, so I rang it every time I passed it. At the final turn around, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run. The guy I was running with and I just kept talking. He was from Prague where I was going after the race so we were going to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As one comes with closer to the finish line, the noise level is incredible with cheering, cowbells and more. I then heard the announcer say:\r\n<strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling one has when you hear that never gets old.\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\nAnd at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes\r\nMy friend I met on the run the finished right behind me. I then met his wife and three kids.\r\nAfter a few minutes of walking around it was off to the massage tent and get some food.\r\n\r\nPS I finished around 8:30 pm. At 9 pm the sky opened up and it rained hard for about an hour.\r\n I was very fortunate not to go through that.\r\n\r\nI want to make everybody who took the time and effort to watch the update that were on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.\r\nCollectively, I want to thank massage therapist, my acupuncturist and my chiropractor. You all helped get me through.  And wonderful office staff who always took a great interest in what I was doing and put up with my long workouts that made me late sometimes.\r\n\r\nThere a few individuals that need to be singled out individually.\r\n I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.\r\n\r\nAnd then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race. \r\n\r\nI want to thank my very special friend Angela Past.  Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did).  She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time.  Wow!  Thank you so much for your emotional support when I needed it the most.\r\n\r\nAnd last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day.  My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day.  She has never lost faith in me and my abilities... Thank you mom!\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong><span style=\"font-size: 18px;\">Peter A. Fields, MD DC</span></strong>\r\n<strong><span style=\"font-size: 18px;\">The Athletic Doc®&nbsp;and 4X Ironman Triathlete</span></strong>\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 08:29:02','2019-06-07 08:29:02','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(180,8,'2022-12-02 06:01:38','2019-06-07 08:38:07',' ','','','publish','closed','closed','','180','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=180',14,'nav_menu_item','',0),(181,8,'2022-12-02 06:01:38','2019-06-07 08:38:07',' ','','','publish','closed','closed','','181','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=181',13,'nav_menu_item','',0),(182,8,'2019-06-07 08:59:24','2019-06-07 08:59:24','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<h6 class=\"text-center\" id=\"athletic-event\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\nMy time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you\r\n\r\n<strong><u>GETTING THERE</u></strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.\r\n\r\nSaturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.\r\n\r\n\r\n<strong><u>RACE DAY</u></strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.\r\nOn my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n\r\n<strong><u>THE SWIM</u></strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<strong><u>THE BIKE</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a180 degree turn again (like at the beginning) so we hat to really slow down But this was good thing as the street leading to this turn was lined with thousands of spectators cheering us on.  Occasionally at this point and other ones where there was an announcer I would hear \"and here is Peter from the United States\".  Always nice to hear to keep one going. My usual time is about 3hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins. I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs is where one can leave a bag that morning of anything they may want or need at that point. It is at the halfway point of the bike and another one at the halfway point of the run.  I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.  When I tossed the bottle away, it rolled to the feet of the small boy about 6 or 7 years old. His mom looked at him.  He just looked at it. I told him, in German, here\'s a present for you.  Take it home and clean it! It is yours. He just smiled at me as he reached for it.\r\nThen 8 miles into the second loop miles drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down.\r\nAll in all, it went well on the second loop.  The crowds were less due to the rain but there were, still crowds out there. At about mile 80 my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. \r\nMy second loop time was a bit slower due to the rain.\r\n It was 3 hours in 25 minutes. All in all I felt strong for the run. This was a good thing.\r\nIn town near T2, the crowds were there cheering loudly.\r\n\r\nGot off my bike in and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles.  Got my running shoes on and started off to run a marathon.\r\n\r\nPS several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n\r\n\r\n<p><strong><u>THE RUN</u></strong></p>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" class=\"alignleft size-full wp-image-174\" />When one leaves transition area two (T2) in an Ironman, you cannot think marathon. You just say are running from here to there and play this mental games with yourself the whole way. It was warm and sunny and about 75 degrees but not too hot. Plus there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So therefore I would pass the finish line 4 times. In this area were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the end the first turn around about 4.5 miles out. I had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake the beginning of each loop, so although brief, it was a nice view. After only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races).  I trained part of the time in the water for my run (deep water running).  This was very helpful as it took the stress of these two areas.  At this point everything was good and I had no pain.  As we passed through the finish line area (middle of the figure eight), we headed out again along a canal. Then we ran under a small foot bridge and onto a small (in width) cobblestone street lined with houses. We ran along this for about 3/4 of a mile then into the town square. People were sitting in cafes and cheering us on. Lots and lots of people. It was about 6 or 7 o\'clock at night and since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and run back to the starting area. I got back to starting point again and got my special needs bag - some extra nutrition. On the second loop my stomach started to feel little funny.  This is something that is very common with Ironman triathletes. Mine only lasted about again 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration or other things. I felt fairly lucky.  I would cheer these fellow athlete on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\nI just kept telling myself to keep going.  One foot after another...just keep going... Part of the way it was shady so that helped a lot too. The sun stays up until 9 o’clock so it never went down while I was running. Mile 18, I got a second wind. Felt very upbeat and in a good place so I was able to pick up pace.\r\nAt that point I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that you normally he runs a lot faster but not today. He told me to try to stay with him and we could talk so the time with go faster. So for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains one has after racing for over 13 hours. There was a small archway as one entered into the city square. There was a small bell on a string that it was hanging from. If you rung the bell (by tapping it with your hand) they would donate money to charity, so I rang it every time I passed it. At the final turn around, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run. The guy I was running with and I just kept talking. He was from Prague where I was going after the race so we were going to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As one comes with closer to the finish line, the noise level is incredible with cheering, cowbells and more. I then heard the announcer say:\r\n<strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling one has when you hear that never gets old.\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\nAnd at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes\r\nMy friend I met on the run the finished right behind me. I then met his wife and three kids.\r\nAfter a few minutes of walking around it was off to the massage tent and get some food.\r\n\r\nPS I finished around 8:30 pm. At 9 pm the sky opened up and it rained hard for about an hour.\r\n I was very fortunate not to go through that.\r\n\r\nI want to make everybody who took the time and effort to watch the update that were on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.\r\nCollectively, I want to thank massage therapist, my acupuncturist and my chiropractor. You all helped get me through.  And wonderful office staff who always took a great interest in what I was doing and put up with my long workouts that made me late sometimes.\r\n\r\nThere a few individuals that need to be singled out individually.\r\n I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.\r\n\r\nAnd then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race. \r\n\r\nI want to thank my very special friend Angela Past.  Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did).  She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time.  Wow!  Thank you so much for your emotional support when I needed it the most.\r\n\r\nAnd last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day.  My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day.  She has never lost faith in me and my abilities... Thank you mom!\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<h6><span style=\"font-size: 18px;\">Peter A. Fields, MD DC</span></h6>\r\n<h6><span style=\"font-size: 18px;\">The Athletic Doc®&nbsp;and 4X Ironman Triathlete</span></h6>\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 08:59:24','2019-06-07 08:59:24','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(183,8,'2019-06-07 09:00:30','2019-06-07 09:00:30','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<h6 class=\"text-center\" id=\"athletic-event\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\nMy time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you\r\n\r\n<strong><u>GETTING THERE</u></strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.\r\n\r\nSaturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.\r\n\r\n\r\n<strong><u>RACE DAY</u></strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.\r\nOn my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n\r\n<strong><u>THE SWIM</u></strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<strong><u>THE BIKE</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a180 degree turn again (like at the beginning) so we hat to really slow down But this was good thing as the street leading to this turn was lined with thousands of spectators cheering us on.  Occasionally at this point and other ones where there was an announcer I would hear \"and here is Peter from the United States\".  Always nice to hear to keep one going. My usual time is about 3hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins. I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs is where one can leave a bag that morning of anything they may want or need at that point. It is at the halfway point of the bike and another one at the halfway point of the run.  I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.  When I tossed the bottle away, it rolled to the feet of the small boy about 6 or 7 years old. His mom looked at him.  He just looked at it. I told him, in German, here\'s a present for you.  Take it home and clean it! It is yours. He just smiled at me as he reached for it.\r\nThen 8 miles into the second loop miles drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down.\r\nAll in all, it went well on the second loop.  The crowds were less due to the rain but there were, still crowds out there. At about mile 80 my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. \r\nMy second loop time was a bit slower due to the rain.\r\n It was 3 hours in 25 minutes. All in all I felt strong for the run. This was a good thing.\r\nIn town near T2, the crowds were there cheering loudly.\r\n\r\nGot off my bike in and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles.  Got my running shoes on and started off to run a marathon.\r\n\r\nPS several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n\r\n\r\n<p><strong><u>THE RUN</u></strong></p>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" class=\"alignleft size-full wp-image-174\" />When one leaves transition area two (T2) in an Ironman, you cannot think marathon. You just say are running from here to there and play this mental games with yourself the whole way. It was warm and sunny and about 75 degrees but not too hot. Plus there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So therefore I would pass the finish line 4 times. In this area were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the end the first turn around about 4.5 miles out. I had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake the beginning of each loop, so although brief, it was a nice view. After only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races).  I trained part of the time in the water for my run (deep water running).  This was very helpful as it took the stress of these two areas.  At this point everything was good and I had no pain.  As we passed through the finish line area (middle of the figure eight), we headed out again along a canal. Then we ran under a small foot bridge and onto a small (in width) cobblestone street lined with houses. We ran along this for about 3/4 of a mile then into the town square. People were sitting in cafes and cheering us on. Lots and lots of people. It was about 6 or 7 o\'clock at night and since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and run back to the starting area. I got back to starting point again and got my special needs bag - some extra nutrition. On the second loop my stomach started to feel little funny.  This is something that is very common with Ironman triathletes. Mine only lasted about again 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration or other things. I felt fairly lucky.  I would cheer these fellow athlete on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\nI just kept telling myself to keep going.  One foot after another...just keep going... Part of the way it was shady so that helped a lot too. The sun stays up until 9 o’clock so it never went down while I was running. Mile 18, I got a second wind. Felt very upbeat and in a good place so I was able to pick up pace.\r\nAt that point I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that you normally he runs a lot faster but not today. He told me to try to stay with him and we could talk so the time with go faster. So for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains one has after racing for over 13 hours. There was a small archway as one entered into the city square. There was a small bell on a string that it was hanging from. If you rung the bell (by tapping it with your hand) they would donate money to charity, so I rang it every time I passed it. At the final turn around, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run. The guy I was running with and I just kept talking. He was from Prague where I was going after the race so we were going to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As one comes with closer to the finish line, the noise level is incredible with cheering, cowbells and more. I then heard the announcer say:\r\n<strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling one has when you hear that never gets old.\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\nAnd at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes\r\nMy friend I met on the run the finished right behind me. I then met his wife and three kids.\r\nAfter a few minutes of walking around it was off to the massage tent and get some food.\r\n\r\nPS I finished around 8:30 pm. At 9 pm the sky opened up and it rained hard for about an hour.\r\n I was very fortunate not to go through that.\r\n\r\nI want to make everybody who took the time and effort to watch the update that were on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.\r\nCollectively, I want to thank massage therapist, my acupuncturist and my chiropractor. You all helped get me through.  And wonderful office staff who always took a great interest in what I was doing and put up with my long workouts that made me late sometimes.\r\n\r\nThere a few individuals that need to be singled out individually.\r\n I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.\r\n\r\nAnd then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race. \r\n\r\nI want to thank my very special friend Angela Past.  Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did).  She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time.  Wow!  Thank you so much for your emotional support when I needed it the most.\r\n\r\nAnd last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day.  My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day.  She has never lost faith in me and my abilities... Thank you mom!\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<h6>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc®&nbsp;and 4X Ironman Triathlete</h6>\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 09:00:30','2019-06-07 09:00:30','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(184,8,'2019-06-07 09:06:53','2019-06-07 09:06:53','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong class=\"subhead\">RACE DAY</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n<div class=\"clear\"></div>\r\n<br>\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n<div class=\"clear\"></div>\r\n\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\r\n\r\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\r\n\"Peter Fields, you are an Ironman”,\r\nI knew it was all worthwhile. \r\n\r\n\r\n<strong class=\"subhead\">FINAL THOUGHTS</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg\" alt=\"Ironman Brazil Finish\" width=\"200\" height=\"200\" class=\"alignright size-thumbnail wp-image-199\" />My race may have been slowed down by the problems I had on the run, but I was never discouraged. As my former coach told me, Ironman races are all about damage control. That thought helped me get through this race. I was very pleased that I did not get the two most common problems that affect athletes in an Ironman: stomach problems and/or mechanical problems on the bike.\r\nI felt exhausted and drained but nevertheless very satisfied to have finished my 5th Ironman. Some may ask why I punish my body? I was not punishing it; just challenging it. When one is prepared, it is not a punishment. Plus an Ironman is as much a mental challenge as a physical one.\r\n\r\nI leave you with a quote by the author Viktor Frankl, MD, holocaust survivor and world famous author from his book Man\'s Search For Meaning, which was my dad\'s favorite:\r\n\"Life can be pulled by goals just as surely as it can be pushed by drives.\"\r\n\r\nThere are too many to name, but I want to thank everybody out there who followed me during this race and offered me encouragement. I’d also like to thank everyone else who has written to me and even just thought about me before, during and/or after the race.\r\n\r\nThis race was dedicated to my mother who I lost last year, to my father who I lost 11 years ago and to my uncle who, at 89yo, survived a very tough time recently being in the hospital for 30 days. All three of them have meant a lot to me during my life and have encouraged me to never give up.\r\n\r\nLastly, a big shout out to my brother Norman. No matter where I have raced, he has always followed me the entire race on the computer. I heard him cheering me on the whole way; he has never forgotten his little brother.\r\nThanks bro!\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc<sup>®</sup> and 5X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n\r\n<a class=\"youtube\" href=\"https://www.youtube.com/watch?v=I-qqF2d40Tw\"><img alt=\"2015 Ironman Brazil Finish\" title=\"2015 Ironman Brazil Finish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-1.jpg\"></a>\r\n<strong><em>2015 Ironman Brazil Finish</em></strong>\r\n<br>\r\n<em><strong style=\"color: #3dbc5e;\">Click image above to view video</strong></em></p>\r\n\r\n<div class=\"clear\">\r\n<a href=\"https://photos.app.goo.gl/l3vcnRmnAzjUIFjy1\" target=\"_blank\" rel=\"noopener noreferrer\">2015 Cozumel<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 5th Ironman','','publish','open','closed','','race-report-5th-ironman','','','2020-06-30 17:48:36','2020-06-30 17:48:36','',0,'https://www.drfields.com/?p=184',0,'post','',0),(185,8,'2019-06-07 09:02:48','2019-06-07 09:02:48','Ironman Brazil Logo','Ironman Brazil Logo','Ironman Brazil Logo','inherit','open','closed','','ironman-brazil-logo','','','2019-06-07 09:02:48','2019-06-07 09:02:48','',184,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png',0,'attachment','image/png',0),(186,8,'2019-06-07 09:03:44','2019-06-07 09:03:44','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<h6 class=\"text-center\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\nMy time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you\r\n\r\n<strong><u>GETTING THERE</u></strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.\r\n\r\nSaturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.\r\n\r\n\r\n<strong><u>RACE DAY</u></strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.\r\nOn my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n\r\n<strong><u>THE SWIM</u></strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<strong><u>THE BIKE</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a180 degree turn again (like at the beginning) so we hat to really slow down But this was good thing as the street leading to this turn was lined with thousands of spectators cheering us on.  Occasionally at this point and other ones where there was an announcer I would hear \"and here is Peter from the United States\".  Always nice to hear to keep one going. My usual time is about 3hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins. I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs is where one can leave a bag that morning of anything they may want or need at that point. It is at the halfway point of the bike and another one at the halfway point of the run.  I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.  When I tossed the bottle away, it rolled to the feet of the small boy about 6 or 7 years old. His mom looked at him.  He just looked at it. I told him, in German, here\'s a present for you.  Take it home and clean it! It is yours. He just smiled at me as he reached for it.\r\nThen 8 miles into the second loop miles drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down.\r\nAll in all, it went well on the second loop.  The crowds were less due to the rain but there were, still crowds out there. At about mile 80 my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. \r\nMy second loop time was a bit slower due to the rain.\r\n It was 3 hours in 25 minutes. All in all I felt strong for the run. This was a good thing.\r\nIn town near T2, the crowds were there cheering loudly.\r\n\r\nGot off my bike in and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles.  Got my running shoes on and started off to run a marathon.\r\n\r\nPS several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n\r\n\r\n<p><strong><u>THE RUN</u></strong></p>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" class=\"alignleft size-full wp-image-174\" />When one leaves transition area two (T2) in an Ironman, you cannot think marathon. You just say are running from here to there and play this mental games with yourself the whole way. It was warm and sunny and about 75 degrees but not too hot. Plus there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So therefore I would pass the finish line 4 times. In this area were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the end the first turn around about 4.5 miles out. I had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake the beginning of each loop, so although brief, it was a nice view. After only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races).  I trained part of the time in the water for my run (deep water running).  This was very helpful as it took the stress of these two areas.  At this point everything was good and I had no pain.  As we passed through the finish line area (middle of the figure eight), we headed out again along a canal. Then we ran under a small foot bridge and onto a small (in width) cobblestone street lined with houses. We ran along this for about 3/4 of a mile then into the town square. People were sitting in cafes and cheering us on. Lots and lots of people. It was about 6 or 7 o\'clock at night and since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and run back to the starting area. I got back to starting point again and got my special needs bag - some extra nutrition. On the second loop my stomach started to feel little funny.  This is something that is very common with Ironman triathletes. Mine only lasted about again 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration or other things. I felt fairly lucky.  I would cheer these fellow athlete on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\nI just kept telling myself to keep going.  One foot after another...just keep going... Part of the way it was shady so that helped a lot too. The sun stays up until 9 o’clock so it never went down while I was running. Mile 18, I got a second wind. Felt very upbeat and in a good place so I was able to pick up pace.\r\nAt that point I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that you normally he runs a lot faster but not today. He told me to try to stay with him and we could talk so the time with go faster. So for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains one has after racing for over 13 hours. There was a small archway as one entered into the city square. There was a small bell on a string that it was hanging from. If you rung the bell (by tapping it with your hand) they would donate money to charity, so I rang it every time I passed it. At the final turn around, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run. The guy I was running with and I just kept talking. He was from Prague where I was going after the race so we were going to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As one comes with closer to the finish line, the noise level is incredible with cheering, cowbells and more. I then heard the announcer say:\r\n<strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling one has when you hear that never gets old.\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\nAnd at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes\r\nMy friend I met on the run the finished right behind me. I then met his wife and three kids.\r\nAfter a few minutes of walking around it was off to the massage tent and get some food.\r\n\r\nPS I finished around 8:30 pm. At 9 pm the sky opened up and it rained hard for about an hour.\r\n I was very fortunate not to go through that.\r\n\r\nI want to make everybody who took the time and effort to watch the update that were on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.\r\nCollectively, I want to thank massage therapist, my acupuncturist and my chiropractor. You all helped get me through.  And wonderful office staff who always took a great interest in what I was doing and put up with my long workouts that made me late sometimes.\r\n\r\nThere a few individuals that need to be singled out individually.\r\n I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.\r\n\r\nAnd then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race. \r\n\r\nI want to thank my very special friend Angela Past.  Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did).  She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time.  Wow!  Thank you so much for your emotional support when I needed it the most.\r\n\r\nAnd last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day.  My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day.  She has never lost faith in me and my abilities... Thank you mom!\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<h6>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc®&nbsp;and 4X Ironman Triathlete</h6>\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-07 09:03:44','2019-06-07 09:03:44','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(187,8,'2019-06-07 09:06:24','2019-06-07 09:06:24','Ironman Brazil Swim 2','Ironman Brazil Swim 2','Ironman Brazil Swim 2','inherit','open','closed','','ironman-brazil-swim-2','','','2019-06-07 09:06:24','2019-06-07 09:06:24','',184,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg',0,'attachment','image/jpeg',0),(188,8,'2019-06-07 09:06:53','2019-06-07 09:06:53','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong><u>RACE DAY</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"314\" class=\"alignright size-full wp-image-187\" /> \r\nI woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n\r\n','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-07 09:06:53','2019-06-07 09:06:53','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(189,8,'2019-06-17 08:11:58','2019-06-17 08:11:58','<div class=\"col-md-8\">\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\n\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\n\n<strong class=\"subhead\">GETTING THERE</strong>\n\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\n\n<strong class=\"subhead\">RACE DAY</strong>\n\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\n<div class=\"clear\"></div>\n<br>\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\n\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \n<div class=\"clear\"></div>\n\n&nbsp;\n\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\n\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\n\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\n\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\n\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\n\"Peter Fields, you are an Ironman”,\nI knew it was all worthwhile. \n\n\n<strong class=\"subhead\">FINAL THOUGHTS</strong>\n\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg\" alt=\"Ironman Brazil Finish\" width=\"200\" height=\"200\" class=\"alignright size-thumbnail wp-image-199\" />My race may have been slowed down by the problems I had on the run, but I was never discouraged. As my former coach told me, Ironman races are all about damage control. That thought helped me get through this race. I was very pleased that I did not get the two most common problems that affect athletes in an Ironman: stomach problems and/or mechanical problems on the bike.\nI felt exhausted and drained but nevertheless very satisfied to have finished my 5th Ironman. Some may ask why I punish my body? I was not punishing it; just challenging it. When one is prepared, it is not a punishment. Plus an Ironman is as much a mental challenge as a physical one.\n\nI leave you with a quote by the author Viktor Frankl, MD, holocaust survivor and world famous author from his book Man\'s Search For Meaning, which was my dad\'s favorite:\n\"Life can be pulled by goals just as surely as it can be pushed by drives.\"\n\nThere are too many to name, but I want to thank everybody out there who followed me during this race and offered me encouragement. I’d also like to thank everyone else who has written to me and even just thought about me before, during and/or after the race.\n\nThis race was dedicated to my mother who I lost last year, to my father who I lost 11 years ago and to my uncle who, at 89yo, survived a very tough time recently being in the hospital for 30 days. All three of them have meant a lot to me during my life and have encouraged me to never give up.\n\nLastly, a big shout out to my brother Norman. No matter where I have raced, he has always followed me the entire race on the computer. I heard him cheering me on the whole way; he has never forgotten his little brother.\nThanks bro!\n\n<strong>Peter A. Fields, MD DC<br>\nThe Athletic Doc® and 5X Ironman Triathlete</strong>\n</div>\n<div class','Race Report 5th Ironman','','inherit','closed','closed','','184-autosave-v1','','','2019-06-17 08:11:58','2019-06-17 08:11:58','',184,'https://www.drfields.com/uncategorized/184-autosave-v1/',0,'revision','',0),(190,8,'2019-06-07 09:16:06','2019-06-07 09:16:06','Ironman Brazil Swim','Ironman Brazil Swim','','inherit','open','closed','','ironman-brazil-swim','','','2019-06-07 09:16:11','2019-06-07 09:16:11','',184,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg',0,'attachment','image/jpeg',0),(191,8,'2019-06-07 09:17:29','2019-06-07 09:17:29','Ironman Brazil Bike','Ironman Brazil Bike','','inherit','open','closed','','ironman-brazil-bike','','','2019-06-07 09:17:34','2019-06-07 09:17:34','',184,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg',0,'attachment','image/jpeg',0),(192,8,'2019-06-07 09:17:53','2019-06-07 09:17:53','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong><u>RACE DAY</u></strong>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"314\" class=\"alignright size-full wp-image-187\" /> \r\nI woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</ul></strong>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"275\" height=\"450\" class=\"alignleft size-full wp-image-190\" />\r\nThis was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n\r\n<strong><u>THE BIKE: 112 Miles</ul></strong>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"275\" height=\"516\" class=\"alignright size-full wp-image-191\" />\r\nSince it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-07 09:17:53','2019-06-07 09:17:53','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(193,8,'2019-06-07 09:18:36','2019-06-07 09:18:36','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong><u>RACE DAY</u></strong>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"314\" class=\"alignright size-full wp-image-187\" /> \r\nI woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"275\" height=\"450\" class=\"alignleft size-full wp-image-190\" />\r\nThis was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"275\" height=\"516\" class=\"alignright size-full wp-image-191\" />\r\nSince it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-07 09:18:36','2019-06-07 09:18:36','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(194,8,'2019-06-07 09:20:12','2019-06-07 09:20:12','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong><u>RACE DAY</u></strong>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"314\" class=\"alignright size-full wp-image-187\" /> \r\nI woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"275\" height=\"450\" class=\"alignleft size-full wp-image-190\" />\r\nThis was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />\r\nSince it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-07 09:20:12','2019-06-07 09:20:12','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(195,8,'2019-06-07 09:20:44','2019-06-07 09:20:44','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong><u>RACE DAY</u></strong>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" /> \r\nI woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />\r\nThis was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />\r\nSince it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-07 09:20:44','2019-06-07 09:20:44','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(196,8,'2019-06-07 09:22:10','2019-06-07 09:22:10','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong><u>RACE DAY</u></strong>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-07 09:22:10','2019-06-07 09:22:10','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(197,8,'2019-06-07 09:24:52','2019-06-07 09:24:52','Ironman Brazil Running','Ironman Brazil Running','','inherit','open','closed','','ironman-brazil-running','','','2019-06-07 09:24:57','2019-06-07 09:24:57','',184,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg',0,'attachment','image/jpeg',0),(198,8,'2019-06-07 09:25:30','2019-06-07 09:25:30','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong><u>RACE DAY</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"275\" height=\"579\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\r\n\r\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\r\n\"Peter Fields, you are an Ironman”,\r\nI knew it was all worthwhile. \r\n\r\n\r\n','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-07 09:25:30','2019-06-07 09:25:30','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(199,8,'2019-06-07 09:26:12','2019-06-07 09:26:12','Ironman Brazil Finish','Ironman Brazil Finish','','inherit','open','closed','','ironman-brazil-finish','','','2019-06-07 09:26:16','2019-06-07 09:26:16','',184,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg',0,'attachment','image/jpeg',0),(200,8,'2019-06-07 09:27:16','2019-06-07 09:27:16','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong><u>RACE DAY</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\r\n\r\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\r\n\"Peter Fields, you are an Ironman”,\r\nI knew it was all worthwhile. \r\n\r\n\r\n<strong><u>FINAL THOUGHTS</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg\" alt=\"Ironman Brazil Finish\" width=\"200\" height=\"200\" class=\"alignright size-thumbnail wp-image-199\" />','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-07 09:27:16','2019-06-07 09:27:16','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(201,8,'2019-06-07 09:27:39','2019-06-07 09:27:39','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong><u>RACE DAY</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\r\n\r\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\r\n\"Peter Fields, you are an Ironman”,\r\nI knew it was all worthwhile. \r\n\r\n\r\n<strong><u>FINAL THOUGHTS</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg\" alt=\"Ironman Brazil Finish\" width=\"200\" height=\"200\" class=\"alignright size-thumbnail wp-image-199\" />My race may have been slowed down by the problems I had on the run, but I was never discouraged. As my former coach told me, Ironman races are all about damage control. That thought helped me get through this race. I was very pleased that I did not get the two most common problems that affect athletes in an Ironman: stomach problems and/or mechanical problems on the bike.\r\nI felt exhausted and drained but nevertheless very satisfied to have finished my 5th Ironman. Some may ask why I punish my body? I was not punishing it; just challenging it. When one is prepared, it is not a punishment. Plus an Ironman is as much a mental challenge as a physical one.','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-07 09:27:39','2019-06-07 09:27:39','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(202,8,'2019-06-07 09:42:07','2019-06-07 09:42:07','<h6>Fees</h6>\r\n\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time. \r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" class=\"alignright\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\"/></a>\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you instil pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\nWoman Paying\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>. \r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Fees & Policies','','publish','open','closed','','fees-policies','','','2021-01-25 23:50:27','2021-01-25 23:50:27','',0,'https://www.drfields.com/?p=202',0,'post','',0),(203,8,'2019-06-07 09:42:07','2019-06-07 09:42:07','<strong>Fees</strong>\r\n\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time. \r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n\r\nProlotherapy Charges\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n  <a href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you instil pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\nWoman Paying\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>. \r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a href=\"#\">Schedule Your Appointment Today!</a>','Fees & Policies','','inherit','closed','closed','','202-revision-v1','','','2019-06-07 09:42:07','2019-06-07 09:42:07','',202,'https://www.drfields.com/uncategorized/202-revision-v1/',0,'revision','',0),(204,8,'2019-06-07 09:51:24','2019-06-07 09:51:24','<strong>Fees</strong>\r\n\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time. \r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n\r\nProlotherapy Charges\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n  <a href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you instil pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\nWoman Paying\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>. \r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a href=\"#\">Schedule Your Appointment Today!</a>','Fees & Policies','','inherit','closed','closed','','202-autosave-v1','','','2019-06-07 09:51:24','2019-06-07 09:51:24','',202,'https://www.drfields.com/uncategorized/202-autosave-v1/',0,'revision','',0),(205,8,'2019-06-07 09:43:14','2019-06-07 09:43:14','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong><u>RACE DAY</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\r\n\r\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\r\n\"Peter Fields, you are an Ironman”,\r\nI knew it was all worthwhile. \r\n\r\n\r\n<strong><u>FINAL THOUGHTS</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg\" alt=\"Ironman Brazil Finish\" width=\"200\" height=\"200\" class=\"alignright size-thumbnail wp-image-199\" />My race may have been slowed down by the problems I had on the run, but I was never discouraged. As my former coach told me, Ironman races are all about damage control. That thought helped me get through this race. I was very pleased that I did not get the two most common problems that affect athletes in an Ironman: stomach problems and/or mechanical problems on the bike.\r\nI felt exhausted and drained but nevertheless very satisfied to have finished my 5th Ironman. Some may ask why I punish my body? I was not punishing it; just challenging it. When one is prepared, it is not a punishment. Plus an Ironman is as much a mental challenge as a physical one.\r\n\r\nI leave you with a quote by the author Viktor Frankl, MD, holocaust survivor and world famous author from his book Man\'s Search For Meaning, which was my dad\'s favorite:\r\n\"Life can be pulled by goals just as surely as it can be pushed by drives.\"\r\n\r\nThere are too many to name, but I want to thank everybody out there who followed me during this race and offered me encouragement. I’d also like to thank everyone else who has written to me and even just thought about me before, during and/or after the race.\r\n\r\nThis race was dedicated to my mother who I lost last year, to my father who I lost 11 years ago and to my uncle who, at 89yo, survived a very tough time recently being in the hospital for 30 days. All three of them have meant a lot to me during my life and have encouraged me to never give up.','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-07 09:43:14','2019-06-07 09:43:14','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(206,8,'2019-06-07 09:44:31','2019-06-07 09:44:31','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong><u>RACE DAY</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\r\n\r\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\r\n\"Peter Fields, you are an Ironman”,\r\nI knew it was all worthwhile. \r\n\r\n\r\n<strong><u>FINAL THOUGHTS</u></strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg\" alt=\"Ironman Brazil Finish\" width=\"200\" height=\"200\" class=\"alignright size-thumbnail wp-image-199\" />My race may have been slowed down by the problems I had on the run, but I was never discouraged. As my former coach told me, Ironman races are all about damage control. That thought helped me get through this race. I was very pleased that I did not get the two most common problems that affect athletes in an Ironman: stomach problems and/or mechanical problems on the bike.\r\nI felt exhausted and drained but nevertheless very satisfied to have finished my 5th Ironman. Some may ask why I punish my body? I was not punishing it; just challenging it. When one is prepared, it is not a punishment. Plus an Ironman is as much a mental challenge as a physical one.\r\n\r\nI leave you with a quote by the author Viktor Frankl, MD, holocaust survivor and world famous author from his book Man\'s Search For Meaning, which was my dad\'s favorite:\r\n\"Life can be pulled by goals just as surely as it can be pushed by drives.\"\r\n\r\nThere are too many to name, but I want to thank everybody out there who followed me during this race and offered me encouragement. I’d also like to thank everyone else who has written to me and even just thought about me before, during and/or after the race.\r\n\r\nThis race was dedicated to my mother who I lost last year, to my father who I lost 11 years ago and to my uncle who, at 89yo, survived a very tough time recently being in the hospital for 30 days. All three of them have meant a lot to me during my life and have encouraged me to never give up.\r\n\r\nLastly, a big shout out to my brother Norman. No matter where I have raced, he has always followed me the entire race on the computer. I heard him cheering me on the whole way; he has never forgotten his little brother.\r\nThanks bro!\r\n\r\n<h6>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc® and 5X Ironman Triathlete</h6>','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-07 09:44:31','2019-06-07 09:44:31','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(207,8,'2019-06-07 09:48:41','2019-06-07 09:48:41','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> <em><strong> Non-Surgical Services at OrthoRegen for Joint Pain</strong></em>[/caption]\r\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>What Should I Expect at the First Visit?</h4>\r\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\r\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\r\n[caption id=\"\" align=\"alignright\" width=\"586\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"586\" height=\"434\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3></h3>\r\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\r\nInitial Regenerative Orthopedic Consultation: $550\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $500\r\nMedium Joint (Knee, hip, shoulder, ribs): $600\r\nLarge Joint (Groin, neck, mid-back, or low back): $1600\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><strong>Platelet Rich Plasma:</strong></h4>\r\n<strong> </strong>$550 Plus, the above joint charges\r\n<h4>Stem Cell Therapy:</h4>\r\nPlease call for pricing\r\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n<h3><u><strong>Are You a Medicare of Medi-cal Provider?</strong></u></h3>\r\n<u>No. And since we are not a Medicare or Medi-cal provider, <strong>we cannot bill Medicare or Medi-cal.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n<h3><u><strong>Are Medical Records or MRI’s/X-rays Necessary?</strong></u></h3>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\r\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','publish','open','closed','','common-questions-for-services-at-orthoregen','','','2023-08-07 03:44:39','2023-08-07 03:44:39','',0,'https://www.drfields.com/?p=207',0,'post','',0),(208,8,'2019-06-07 09:47:22','2019-06-07 09:47:22','<h2 class=\"text-center\">Please fill out the form below for your inquiries!<h2>','Contact','','inherit','closed','closed','','29-revision-v1','','','2019-06-07 09:47:22','2019-06-07 09:47:22','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(209,8,'2019-06-07 09:48:41','2019-06-07 09:48:41','<u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\" target=\"_blank\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed (310) 453-1212 to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.\r\n\r\n  <a href=\"#\">Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2019-06-07 09:48:41','2019-06-07 09:48:41','',207,'https://www.drfields.com/uncategorized/207-revision-v1/',0,'revision','',0),(210,8,'2019-06-07 11:18:14','2019-06-07 11:18:14','<p>&nbsp; </p>\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\" target=\"_blank\">Click Here</a>\n\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\nAny pertinent medical records can be faxed (310) 453-1212 to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\n\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\n\n<u><strong>How long is each visit?</strong></u>\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\n\n<p class=\"text-center\"><u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.</p>\n\n  <a class=\"secondaryButton bglight\" href=\"#\">Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-autosave-v1','','','2019-06-07 11:18:14','2019-06-07 11:18:14','',207,'https://www.drfields.com/uncategorized/207-autosave-v1/',0,'revision','',0),(211,8,'2019-06-07 09:50:38','2019-06-07 09:50:38','<h2 class=\"text-center\">Please fill out the form below for your inquiries!<h2>\r\n\r\n[contact-form-7 id=\"4\" title=\"Contact form 1\"]','Contact','','inherit','closed','closed','','29-revision-v1','','','2019-06-07 09:50:38','2019-06-07 09:50:38','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(213,8,'2019-06-07 09:54:45','2019-06-07 09:54:45','<h3>Why Choose OrthoRegen<strong><sup>®</sup></strong>?</h3>\r\nAt OrthoRegen<strong><sup>®</sup></strong>, we want to help you achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. After all, this is your health that we are talking about.\r\n<h4><strong>The Future of Your Health in This Changing World</strong></h4>\r\nInvesting in your health is now more important than ever. Most of us are looking for ways to keep our immune system strong so we don\'t get sick. It is a new world out there! And we all want to do everything we can to avoid the hospital!  Since the future of health care is changing, you must know what choices are available to you.\r\n<h3>OrthoRegen<strong><sup>®</sup></strong> Is Exclusively a Regenerative Orthopedics Medical Office</h3>\r\nThe medical office of OrthoRegen<strong><sup>®</sup></strong> offers Regenerative Orthopedics exclusively. We don\'t do surgery. And we don\'t use anesthesia. Nor do we give out a bunch of medications. Plus, we don\'t just dabble in regenerative medicine or do a procedure once in a while. That\'s all we do. And we have been offering regenerative medicine options for many, many years. So that means your practitioners are very experienced.\r\n\r\nWith that in mind, our goal is to ensure that you will have an exceptional experience throughout your entire process. <strong>We offer safe, expedient, and effective treatments to resolve many painful conditions without the need for surgery.</strong> And when more advanced treatment is needed, such as in cases of very degenerated joints, OrthoRegen<strong><sup>®</sup></strong> offers the state-of-the-art Gold Standard in Stem Cell Therapy. What does that mean? The Gold Standard refers to four different types of regenerative therapies. That\'s four! Most clinics use just one.\r\n\r\nAnd that\'s why many Los Angeles residents choose us as their regenerative medicine alternative to surgery and joint replacement. With all of that regenerative capability, in most cases, we can resolve the majority of painful musculoskeletal conditions and ultimately enhance the quality of your life and get you back to the activities you love.\r\n<h4><em>If You Are An Athlete with an Injury, Peter A. Fields, MD, DC Understands, Because He Is An Athlete Too</em></h4>\r\n[caption id=\"attachment_4550\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4550 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Why-Choose-OrthoRegen-copy-500x500.png\" alt=\"Why Choose OrthoRegen®\" width=\"500\" height=\"500\" /> <em>                             <strong>Why Choose OrthoRegen<sup>®</sup>: Our Philosophy</strong></em>[/caption]\r\n\r\nAs an athlete himself, Peter A. Fields, MD, DC, also understands how important it is to stay in the game.  That, along with his extensive expertise, ensures a higher level of ability and understanding as a regenerative medicine physician because his experience encompasses a much broader knowledge base.\r\n<h3>Peter A. Fields, MD, DC is Dual Degreed as Both a Medical Doctor <strong>and</strong> a Chiropractor</h3>\r\nAs a medical doctor and one of the leaders in regenerative medicine, Peter A. Fields, MD, DC, has years of experience in regenerative therapies. Therefore, he can seek out the best solution, recommend, and perform the optimal type of regenerative therapy that is right for you. And that means you get the treatment that\'s right for you and the best possible therapy to repair your joint.  And all of these regenerative therapies are available right in our clinic.\r\n\r\nPlus, Peter A. Fields, MD, DC, is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor.</em> As a chiropractor, he understands the ins and out of every joint. That helps ensure that you won\'t need all of the imaging that many physicians order due to their lack of experience locating the problem via manual examination. Sure, if further testing is deemed necessary, it can be prescribed. But a chiropractor\'s familiarity with the joints and possible referral pain patterns makes imaging less necessary.\r\n\r\nOrthoRegen<strong><sup>® </sup></strong>has provided hope for patients from all over who are trying to avoid joint surgery. Even if surgery has already been done, Regenerative Orthopedics can provide pain relief. We have many <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">articles</a> on this website that discuss the various conditions you may face and how Regenerative Orthopedics can help. We welcome you to <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">search</a> through them to learn more about our treatments, research, and how we achieve outstanding patient results because of our unique approach. If you are looking for the top pain clinic in the Los Angeles area to actually resolve your pain and not just temporarily cover up the symptoms, let’s talk...<strong>Together, we can turn your case around!</strong>\r\n<h3>Regenerative Orthopedics Is Your Non-Surgical Option When You Injure Yourself?</h3>\r\nWe are thrilled to enable people to live fulfilling and active lives by resolving their joint pain and injury through comprehensive Regenerative Orthopedics. Why choose surgery when there is an alternative?\r\n\r\n<strong>Remember, once surgery is done, it can never be undone.</strong>\r\n\r\nAt OrthoRegen<strong><sup>®</sup></strong>, our team is dedicated to providing highly effective, individualized treatment plans that relieve pain and help you return to sports, work, and activities quickly and safely.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\">Los Angeles Prolotherapy doctor</a> and <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\">PRP Doctor</a> and the founder of OrthoRegen<strong><sup>®</sup></strong>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','OrthoRegen®: Our Philosophy','','publish','open','closed','','orthoregen-our-philosophy','','','2021-03-12 03:48:44','2021-03-12 03:48:44','',0,'https://www.drfields.com/?p=213',0,'post','',0),(214,8,'2019-06-07 09:54:45','2019-06-07 09:54:45','<strong>The Future of Your Health – Your Best Investment</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. Some of the treatments out there promoted by conventional medicine are doing their job- that is getting people better. But some can actually make you worse, or affect different parts of the body in a negative way. What good is it if it cures your specific ailment only to give you a different one.\r\n\r\nWhen you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more. There is an underlying cause for each of your symptoms and that will take time and effort on our part and yours to find out what that may be. For this reason, more and more people are starting to get concerned about and involved in, their own health care. Just treating the symptoms will not make the problem go away; one must get to the cause of the problem and fix that. This approach is what Integrative/Holistic medicine is all about.\r\n\r\nThe U.S. Centers for Disease Control and Prevention reports that the key factors influencing an individual\'s state of health have not changed significantly over the past 20 years. Heredity accounts for 18% and environment is 19%. Everyday lifestyle choices are 53%. The decisions people make about their life and habits are therefore by far the largest factor in determining their state of wellness.\r\n\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy doctor<a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\"></a> and <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">PRP Doctor</a> and the founder of OrthoRegen.\r\n\r\nAt OrthoRegen we want to help you to achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. Only you can decide what is fair and worth this investment when it comes to out-of-pocket costs for your health care. We will make every effort to instill the feeling that what you spend was worth it. After all, this is your health that we are talking about.\r\n\r\n <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\"> Schedule Your Appointment Today! </a>','Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2019-06-07 09:54:45','2019-06-07 09:54:45','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(215,8,'2019-06-07 09:55:35','2019-06-07 09:55:35','<strong>The Future of Your Health – Your Best Investment</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. Some of the treatments out there promoted by conventional medicine are doing their job- that is getting people better. But some can actually make you worse, or affect different parts of the body in a negative way. What good is it if it cures your specific ailment only to give you a different one.\r\n\r\nWhen you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more. There is an underlying cause for each of your symptoms and that will take time and effort on our part and yours to find out what that may be. For this reason, more and more people are starting to get concerned about and involved in, their own health care. Just treating the symptoms will not make the problem go away; one must get to the cause of the problem and fix that. This approach is what Integrative/Holistic medicine is all about.\r\n\r\nThe U.S. Centers for Disease Control and Prevention reports that the key factors influencing an individual\'s state of health have not changed significantly over the past 20 years. Heredity accounts for 18% and environment is 19%. Everyday lifestyle choices are 53%. The decisions people make about their life and habits are therefore by far the largest factor in determining their state of wellness.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">Los Angeles Prolotherapy doctor</a> and <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">PRP Doctor</a> and the founder of OrthoRegen.\r\n\r\nAt OrthoRegen we want to help you to achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. Only you can decide what is fair and worth this investment when it comes to out-of-pocket costs for your health care. We will make every effort to instill the feeling that what you spend was worth it. After all, this is your health that we are talking about.\r\n\r\n <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\"> Schedule Your Appointment Today! </a>','Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2019-06-07 09:55:35','2019-06-07 09:55:35','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(216,8,'2019-06-07 10:06:00','2019-06-07 10:06:00','<img class=\"alignleft wp-image-1685 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc<sup>®</sup></h4>\r\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n<h4>Director of OrthoRegen<sup>®</sup></h4>\r\nDr. Fields is the Director of <a href=\"https://orthoregen.com/\" target=\"_blank\" rel=\"noopener noreferrer\">OrthoRegen<sup>®</sup></a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. Athletes and non-athletes alike come from around the US and the world to receive treatment, because Dr. Fields helps them to avoid unnecessary joint surgeries. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\" rel=\"noopener noreferrer\">Stem Cell Therapy</a> to help people avoid joint replacement.\r\n<h4>Regenerative Medicine Expert</h4>\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. Plus, he writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\">national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n<h4>Hackett-Hemwall Foundation Instructor</h4>\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. And Dr. Fields has volunteered his time for two weeks nine different times on their medical trips to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Also, Dr. Fields was the director of one of only three clinics in Honduras.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Regenerative Orthopedics Doctor</h4>\r\nDr. Fields is a leading expert in the field of Regenerative Orthopedics, which includes Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy. All of these treatments are natural non-surgical methods of assisting the body to heal weakened or injured joints, tendons and ligaments. With Regenerative Orthopedics, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h4>The Athletic Doc<sup>®</sup></h4>\r\nDr. Fields is a very active and competitive triathlete, having completed eleven full <a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as numerous (half) Ironman Triathlons and many other triathlons. The Athletic Doc<sup>®</sup> has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n<div id=\"centrevideo\" class=\"text-center\">[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Bio: Dr. Fields','','publish','open','closed','','dr-fields-bio','','','2022-01-06 00:59:38','2022-01-06 00:59:38','',0,'https://www.drfields.com/?p=216',0,'post','',0),(217,8,'2019-06-07 10:03:28','2019-06-07 10:03:28','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">PROLOGUE</strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p>\r\n<strong class=\"subhead\">RACE DAY</strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_248\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]\r\nI ran as quick as I could with my bike shoes on to my bike. You could carry them but then you end up getting gravel on your feet. I took the bike off the rack and ran towards the exit. You\'re not allowed to get on your bike until you leave the transition area. Immediately upon exiting, the transition area, I mounted my bike and took off to start the 112 mile ride.\r\n\r\nI had my power meet on the bike, which in addition to power, would provide me with my heart rate and speed which are essential when riding long distance. The roads were dry and the sun was shining bright and the temperature was in the low eighties. I felt pretty good on the first lap. As you head towards the back of the island the winds pick up. For this approximately 15 mile stretch the winds were about 20 miles an hour blowing on shore. It was tough but not that bad. As you turn towards town to end your first loop the winds were pushing you forward. This was a much needed relief. As you get to town, there were hundreds, if not more, people yelling and cheering. It was very exciting and invigorating. For lap two you again go by some of the hotels and there were people out there cheering.\r\n\r\nAs I got to the back of the island again, the wind picked up and was close to 30 miles an hour. It was getting pretty tough and you just hung in there. Unfortunately this meant that you were down on your triathlon riding bars ( the extended bars you put your forearms on so you can just about lie flat while riding) all the time so as not to let the wind hit you in the chest. It put a tremendous strain on my neck, which I found out later that everybody had the same. You just kept going and going. During this loop, I also stopped at the special needs station at mile 56. This is where you can pick up your nutritional supplies for the second half of the race so you do not need to carry all of them at once. Again as I looped through town the crowds were cheering and it was very nice to get words of encouragement.\r\n\r\nFor the third loop the temperature has risen towards the upper 80\'s and low 90\'s and the winds really were kicking in. Now they were close to 40 miles an hour. It was really brutal. I had ridden this course three times in the past but this time the winds were the strongest . But somehow I kept going and going and managed to endure it. As I made the last turn to head the 9 miles back to town I knew that I had completed this part. Slightly slower than I expected but with the wind it was a slower time for everyone. \r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-run-160.jpg\" alt=\"Cozumel 2015 Run 160\" width=\"160\" height=\"301\" class=\"size-full wp-image-263\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAs I came into town again the crowds were cheering and yelling loudly. I handed off my bike to one of the volunteers there and quickly grabbed my transition bag and ran into the tent. Off with the biking shoes, on with the running shoes, throw some water over myself to help cool me down, put on my running hat, grab some nutrition, go to the bathroom and I was out the door.\r\n\r\nOf course when you transition out of this tent there are thousands of people out there yelling and screaming. The sun was still up so it was still pretty hot with it being in the 90s, But I felt pretty good. For about the first four point 4.4 miles, which is the length of the course (you do this back and forth 3 times) I was a little tight and not so fluid in my running. Along the way of course there are people cheering for about a mile and a half as you get outside of town and then sporadically there were people at hotels who would come out along the road to cheer us on. When I hit the turn around I felt really good and for the next 8.8 miles my legs and body felt really strong. As I got back to town and finished the first 8.8 mile loop the sun was going down which was a blessing because it had been very hot outside.\r\n\r\nThe next 8.8 loop I felt good but the energy was starting to be drained. The bike had taken a tremendous toll, not only on me but on other runners too. But I persevered and kept going. The best thing was my hamstring was not bothering me which had slowed me down during my last two Ironman races. And in May 2015, I had raced Ironman Brazil, where I had a lot of feet problems. None of this came around this time.\r\n\r\nI saw many people out there that I knew from the Los Angeles area or other races. The camaraderie amongst the athletes is tremendous and it\'s something that we all rely on and count on. As I came into town finishing the second loop I knew I only had one more loop to go. I was tired and drained having been racing for almost 12 hrs., but just kept going. Of course along the way I took lots of nutrition and keep myself as hydrated as much as possible. There was no rain this year, which was also nice since the prior previous time I had done this race we were running through knee high puddles.\r\n\r\nAfter leaving town and getting to the final around, I knew only had 4.4 miles left to go and realized that it was in the bag for me. As I came back into town and saw the crowds again, I felt the exhilarating feeling that one can only feel when finishing an Ironman. At this point I only had about a mile to go and knew I have finally done it. That is not only finish my 6th Ironman but my second one in six months . This was a challenge that I set for myself. Like my parents had always told me, set your goals and go for it.\r\nNever say never.\r\n\r\nThe final 100 meters are unbelievable feeling. All ones aches and pains fade away. As I approached the finish line, which is slightly elevated and bathed in lights, I heard the announcer say for the sixth time,\r\n\"Peter Fields, you are an Ironman\".\r\nIt never gets old.\r\nI finally knew that I had completed my conquest of doing two Ironman races in one year.\r\n\r\nOf course the whole way during the race, I never forgot about my parents. I had my mom’s initials written on my left arm and on my right arm I had my dad\'s initials. Both of these people were so special in my life and I have never forgotten them for even one day since each of them passed. Whenever it got tough, I would place my hand on either forearm and feel their presence within me and hear their words of encouragement telling me never to give up. I know they would have been as proud of me as I am of them.\r\n\r\nI want to thank everybody who sent me good wishes, those who kept me in their thoughts and those who followed me on the internet. All your thoughts and wishes kept me strong the whole race.\r\nThere were a few very special people that never stopped thinking about me the whole race. You know who you are and words cannot say thank you enough. \r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 6X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Ironman Cozumel Mexico\" title=\"Ironman Cozumel Mexico\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-1.jpg\" style=\"width: 204px; height: 345px;\">\r\nDr. Fields at the finish line\r\n<a href=\"https://goo.gl/photos/mMnjj9ioLVRkh56Q9\" target=\"_blank\" rel=\"noopener noreferrer\">2015 Cozumel<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 6th Ironman','','publish','open','closed','','race-report-6th-ironman','','','2020-06-30 17:53:16','2020-06-30 17:53:16','',0,'https://www.drfields.com/?p=217',0,'post','',0),(219,8,'2019-06-07 10:03:28','2019-06-07 10:03:28','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo-200x126.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"200\" height=\"126\" class=\"aligncenter size-thumbnail wp-image-218\" />','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:03:28','2019-06-07 10:03:28','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(220,8,'2019-06-07 10:05:14','2019-06-07 10:05:14','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-218\" />','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:05:14','2019-06-07 10:05:14','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(221,8,'2022-12-02 06:01:38','2019-06-07 10:05:49',' ','','','publish','closed','closed','','221','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=221',16,'nav_menu_item','',0),(222,8,'2022-12-02 06:01:38','2019-06-07 10:05:49',' ','','','publish','closed','closed','','222','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=222',15,'nav_menu_item','',0),(223,8,'2019-06-07 10:06:00','2019-06-07 10:06:00','<h6>Peter A. Fields, MD, DC, The Athletic Doc®</h6>\r\n\r\nPeter A. Fields, MD, DC, <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">The Athletic Doc®</a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n\r\n<h6>Director of OrthoRegen</h6>\r\n\r\nDr. Fields is the Director of <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">OrthoRegen</a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\r\n\r\n<h6>Regenerative Medicine Expert</h6> \r\n\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n\r\n<h6>Hackett-Hemwall Foundation Instructor</h6> \r\n\r\nIn addition, Dr. Fields is a Clinical Instructor with the Hackett-Hemwall Foundation, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.\r\n\r\n<h6>Prolotherapy Doctor</h6>\r\n\r\nDr. Fields is the leading expert in the field or <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h6>The Athletic Doc®</h6>\r\n\r\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc® has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n\r\n  <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">Schedule Your Appointment Today!</a> ','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2019-06-07 10:06:00','2019-06-07 10:06:00','',216,'https://www.drfields.com/uncategorized/216-revision-v1/',0,'revision','',0),(224,8,'2019-06-07 10:07:00','2019-06-07 10:07:00','Ironman Cozumel Mexico 2015 Logo','Ironman Cozumel Mexico 2015 Logo','','inherit','open','closed','','ironman-cozumel-mexico-2015-logo','','','2019-06-07 10:10:06','2019-06-07 10:10:06','',217,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg',0,'attachment','image/jpeg',0),(225,8,'2019-06-17 08:25:31','2019-06-17 08:25:31',',div class=\"col-md-8\">\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\n\n<h6 class=\"text-center\">Sunday November 29, 2015\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\n\n<strong class=\"subhead\">PROLOGUE</strong>\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\nMy parents taught me to never to give up no matter how difficult it may seem.\nThis, and all my races, are dedicated to their memory.\n\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\n<strong><em>Regenerate First; Surgery Last!</em></strong>\n<p>&nbsp;</p>\n<strong class=\"subhead\">RACE DAY</strong>\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \n\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\n\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\n\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\n[caption id=\"attachment_248\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]\nI ran as quick as I could with my bike shoes on to my bike. You could carry them but then you end up getting gravel on your feet. I took the bike off the rack and ran towards the exit. You\'re not allowed to get on your bike until you leave the transition area. Immediately upon exiting, the transition area, I mounted my bike and took off to start the 112 mile ride.\n\nI had my power meet on the bike, which in addition to power, would provide me with my heart rate and speed which are essential when riding long distance. The roads were dry and the sun was shining bright and the temperature was in the low eighties. I felt pretty good on the first lap. As you head towards the back of the island the winds pick up. For this approximately 15 mile stretch the winds were about 20 miles an hour blowing on shore. It was tough but not that bad. As you turn towards town to end your first loop the winds were pushing you forward. This was a much needed relief. As you get to town, there were hundreds, if not more, people yelling and cheering. It was very exciting and invigorating. For lap two you again go by some of the hotels and there were people out there cheering.\n\nAs I got to the back of the island again, the wind picked up and was close to 30 miles an hour. It was getting pretty tough and you just hung in there. Unfortunately this meant that you were down on your triathlon riding bars ( the extended bars you put your forearms on so you can just about lie flat while riding) all the time so as not to let the wind hit you in the chest. It put a tremendous strain on my neck, which I found out later that everybody had the same. You just kept going and going. During this loop, I also stopped at the special needs station at mile 56. This is where you can pick up your nutritional supplies for the second half of the race so you do not need to carry all of them at once. Again as I looped through town the crowds were cheering and it was very nice to get words of encouragement.\n\nFor the third loop the temperature has risen towards the upper 80\'s and low 90\'s and the winds really were kicking in. Now they were close to 40 miles an hour. It was really brutal. I had ridden this course three times in the past but this time the winds were the strongest . But somehow I kept going and going and managed to endure it. As I made the last turn to head the 9 miles back to town I knew that I had completed this part. Slightly slower than I expected but with the wind it was a slower time for everyone. \n\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-run-160.jpg\" alt=\"Cozumel 2015 Run 160\" width=\"160\" height=\"301\" class=\"size-full wp-image-263\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\nAs I came into town again the crowds were cheering and yelling loudly. I handed off my bike to one of the volunteers there and quickly grabbed my transition bag and ran into the tent. Off with the biking shoes, on with the running shoes, throw some water over myself to help cool me down, put on my running hat, grab some nutrition, go to the bathroom and I was out the door.\n\nOf course when you transition out of this tent there are thousands of people out there yelling and screaming. The sun was still up so it was still pretty hot with it being in the 90s, But I felt pretty good. For about the first four point 4.4 miles, which is the length of the course (you do this back and forth 3 times) I was a little tight and not so fluid in my running. Along the way of course there are people cheering for about a mile and a half as you get outside of town and then sporadically there were people at hotels who would come out along the road to cheer us on. When I hit the turn around I felt really good and for the next 8.8 miles my legs and body felt really strong. As I got back to town and finished the first 8.8 mile loop the sun was going down which was a blessing because it had been very hot outside.\n\nThe next 8.8 loop I felt good but the energy was starting to be drained. The bike had taken a tremendous toll, not only on me but on other runners too. But I persevered and kept going. The best thing was my hamstring was not bothering me which had slowed me down during my last two Ironman races. And in May 2015, I had raced Ironman Brazil, where I had a lot of feet problems. None of this came around this time.\n\nI saw many people out there that I knew from the Los Angeles area or other races. The camaraderie amongst the athletes is tremendous and it\'s something that we all rely on and count on. As I came into town finishing the second loop I knew I only had one more loop to go. I was tired and drained having been racing for almost 12 hrs., but just kept going. Of course along the way I took lots of nutrition and keep myself as hydrated as much as possible. There was no rain this year, which was also nice since the prior previous time I had done this race we were running through knee high puddles.\n\nAfter leaving town and getting to the final around, I knew only had 4.4 miles left to go and realized that it was in the bag for me. As I came back into town and saw the crowds again, I felt the exhilarating feeling that one can only feel when finishing an Ironman. At this point I only had about a mile to go and knew I have finally done it. That is not only finish my 6th Ironman but my second one in six months . This was a challenge that I set for myself. Like my parents had always told me, set your goals and go for it.\nNever say never.\n\nThe final 100 meters are unbelievable feeling. All ones aches and pains fade away. As I approached the finish line, which is slightly elevated and bathed in lights, I heard the announcer say for the sixth time,\n\"Peter Fields, you are an Ironman\".\nIt never gets old.\nI finally knew that I had completed my conquest of doing two Ironman races in one year.\n\nOf course the whole way during the race, I never forgot about my parents. I had my mom’s initials written on my left arm and on my right arm I had my dad\'s initials. Both of these people were so special in my life and I have never forgotten them for even one day since each of them passed. Whenever it got tough, I would place my hand on either forearm and feel their presence within me and hear their words of encouragement telling me never to give up. I know they would have been as proud of me as I am of them.\n\nI want to thank everybody who sent me good wishes, those who kept me in their thoughts and those who followed me on the internet. All your thoughts and wishes kept me strong the whole race.\nThere were a few very special people that never stopped thinking about me the whole race. You know who you are and words cannot say thank you enough. \n\n<strong>Peter A. Fields, MD DC\nThe Athletic Doc® and 6X Ironman Triathlete</strong>\n</div>\n<div class=\"col-md-4\" id=\"sidebar2\">\n\n</div>','Race Report 6th Ironman','','inherit','closed','closed','','217-autosave-v1','','','2019-06-17 08:25:31','2019-06-17 08:25:31','',217,'https://www.drfields.com/uncategorized/217-autosave-v1/',0,'revision','',0),(226,8,'2019-06-07 10:07:12','2019-06-07 10:07:12','[caption id=\"attachment_224\" align=\"aligncenter\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"size-full wp-image-224\" /> Ironman Cozumel Mexico 2015 Logo[/caption]','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:07:12','2019-06-07 10:07:12','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(227,8,'2019-06-07 10:10:08','2019-06-07 10:10:08','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:10:08','2019-06-07 10:10:08','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(228,8,'2019-06-07 10:10:42','2019-06-07 10:10:42','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6>Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:10:42','2019-06-07 10:10:42','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(229,8,'2019-06-07 10:35:48','2019-06-07 10:35:48','<img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" />\r\n<h4>Prolotherapy Doctor</h4>\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen<sup>®</sup>. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\r\n<h4>What is a Prolotherapy Doctor?</h4>\r\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h4>How Prolotherapy Treatment Works</h4>\r\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"https://orthoregen.com/\" rel=\"noopener noreferrer\">OrthoRegen<sup>®</sup></a><br />\r\n<br />\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\r\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\r\n<h4>What Conditions Can Dr. Fields Help You With:</h4>\r\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\r\n<ul>\r\n 	<li><strong>Chronic Conditions like…</strong>\r\n<ul>\r\n 	<li>Arthritis Pain</li>\r\n 	<li>Sciatica Pain</li>\r\n 	<li>Pinched Nerves</li>\r\n 	<li>Athletic Injuries</li>\r\n 	<li>Tension Headaches</li>\r\n 	<li>Migraine Headaches</li>\r\n 	<li>Herniated Discs</li>\r\n 	<li>Degenerative Discs</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak Joints</li>\r\n 	<li>Sore Muscles</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Knee Injuries:</strong>\r\n<ul>\r\n 	<li>ACL Tear</li>\r\n 	<li>Runners\' Knee</li>\r\n 	<li>Radial Meniscus Tear</li>\r\n 	<li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Hip Injuries:</strong>\r\n<ul>\r\n 	<li>Torn Labrum</li>\r\n 	<li>Acetabular labrum Tear</li>\r\n 	<li>Labral Tear</li>\r\n 	<li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Neck Injuries:</strong>\r\n<ul>\r\n 	<li>Whiplash</li>\r\n 	<li>TMJ Syndrome</li>\r\n 	<li>Migraine Headaches</li>\r\n 	<li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Shoulder Injuries:</strong>\r\n<ul>\r\n 	<li>Labral Tear</li>\r\n 	<li>Rotator Cuff Tear</li>\r\n 	<li>Swimmers Shoulder</li>\r\n 	<li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Back Injuries:</strong>\r\n<ul>\r\n 	<li>Herniated discs</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>See a complete list of Back Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Elbow Injuries:</strong>\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tennis elbow</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Foot and Ankle Injuries:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle Sprains</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>See a complete list of Foot Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Hand Injuries:</strong>\r\n<ul>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Finger pain</li>\r\n 	<li>See a complete list of Hand Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Prolotherapy Doctor','','publish','open','closed','','prolotherapy-doctor','','','2020-06-30 17:07:16','2020-06-30 17:07:16','',0,'https://www.drfields.com/?p=229',0,'post','',0),(230,8,'2019-06-07 10:14:55','2019-06-07 10:14:55','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6>Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:14:55','2019-06-07 10:14:55','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(231,8,'2019-06-07 10:17:44','2019-06-07 10:17:44','Cozumel 2015 Initials 115','Cozumel 2015 Initials 115','Dr. Fields with his parents initials written on his forearms','inherit','open','closed','','cozumel-2015-initials-115','','','2019-06-07 10:17:58','2019-06-07 10:17:58','',217,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg',0,'attachment','image/jpeg',0),(232,8,'2019-06-07 10:18:36','2019-06-07 10:18:36','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6>Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /> Dr. Fields with his parents initials written on his forearms[/caption]\r\n<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong>Regenerate First; Surgery Last!</strong>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:18:36','2019-06-07 10:18:36','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(233,8,'2019-06-07 10:19:29','2019-06-07 10:19:29','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6>Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /> Dr. Fields with his parents initials written on his forearms[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong>Regenerate First; Surgery Last!</strong>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:19:29','2019-06-07 10:19:29','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(234,8,'2019-06-07 10:20:25','2019-06-07 10:20:25','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /> Dr. Fields with his parents initials written on his forearms[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong>Regenerate First; Surgery Last!</strong>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:20:25','2019-06-07 10:20:25','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(235,8,'2019-06-07 10:20:45','2019-06-07 10:20:45','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /> Dr. Fields with his parents initials written on his forearms[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:20:45','2019-06-07 10:20:45','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(236,8,'2019-06-07 10:21:31','2019-06-07 10:21:31','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /> Dr. Fields with his parents initials written on his forearms[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. ','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:21:31','2019-06-07 10:21:31','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(237,8,'2019-06-07 10:22:39','2019-06-07 10:22:39','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /> Dr. Fields with his parents initials written on his forearms[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n\r\n<p><strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. </p>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:22:39','2019-06-07 10:22:39','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(238,8,'2019-06-07 10:24:06','2019-06-07 10:24:06','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /> Dr. Fields with his parents initials written on his forearms[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. ','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:24:06','2019-06-07 10:24:06','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(239,8,'2019-06-07 10:24:23','2019-06-07 10:24:23','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /> Dr. Fields with his parents initials written on his forearms[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. ','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:24:23','2019-06-07 10:24:23','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(240,8,'2019-06-07 10:24:42','2019-06-07 10:24:42','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /> Dr. Fields with his parents initials written on his forearms[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. ','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:24:42','2019-06-07 10:24:42','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(241,8,'2019-06-07 10:25:20','2019-06-07 10:25:20','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. ','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:25:20','2019-06-07 10:25:20','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(243,8,'2019-06-07 10:27:19','2019-06-07 10:27:19','Cozumel 2015 Swim 275','Cozumel 2015 Swim 275','Dr. Fields after the 2.4 mile swim','inherit','open','closed','','cozumel-2015-swim-275','','','2019-06-07 10:27:46','2019-06-07 10:27:46','',217,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg',0,'attachment','image/jpeg',0),(244,8,'2019-06-07 10:29:06','2019-06-07 10:29:06','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"275\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point. ','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:29:06','2019-06-07 10:29:06','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(245,8,'2019-06-07 10:29:48','2019-06-07 10:29:48','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point. ','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:29:48','2019-06-07 10:29:48','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(246,8,'2019-06-07 10:30:10','2019-06-07 10:30:10','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point. ','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:30:10','2019-06-07 10:30:10','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(247,8,'2019-06-07 10:33:07','2019-06-07 10:33:07','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:33:07','2019-06-07 10:33:07','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(248,8,'2019-06-07 10:34:31','2019-06-07 10:34:31','Cozumel 2015 Bike 2 275','Cozumel 2015 Bike 2 275','Dr. Fields during the 112 mile bike ride','inherit','open','closed','','cozumel-2015-bike-2-275','','','2019-06-07 10:34:47','2019-06-07 10:34:47','',217,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg',0,'attachment','image/jpeg',0),(249,8,'2019-06-07 10:35:23','2019-06-07 10:35:23','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n[caption id=\"attachment_248\" align=\"alignright\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\"  class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]<strong><u>THE BIKE: 112 Miles</u></strong>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:35:23','2019-06-07 10:35:23','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(250,8,'2019-06-07 10:35:48','2019-06-07 10:35:48','<h4>Prolotherapy Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\r\n\r\n<h4>What is a Prolotherapy Doctor?</h4>\r\n\r\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\r\n\r\n<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h4>How Prolotherapy Treatment Works</h4>\r\n\r\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">OrthoRegen</a>\r\n\r\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\r\n\r\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\r\n\r\n<h4>What Conditions Can Dr. Fields  Help You With:</h4>\r\n\r\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\r\n\r\n<ul>\r\n    <strong><li>Chronic Conditions like…</li></strong>\r\n        <ul>\r\n<li>Arthritis Pain</li>\r\n        <li>Sciatica Pain</li>\r\n        <li>Pinched Nerves</li>\r\n        <li>Athletic Injuries</li>\r\n        <li>Tension Headaches</li>\r\n        <li>Migraine Headaches</li>\r\n       <li>Herniated Discs</li>\r\n        <li>Degenerative Discs</li>\r\n        <li>TMJ syndrome</li>\r\n        <li>Weak Joints</li>\r\n        <li>Sore Muscles</li>\r\n</ul>\r\n    <li><strong>Knee Injuries:</strong></li>\r\n        <ul><li>ACL Tear</li>\r\n        <li>Runners\' Knee</li>\r\n        <li>Radial Meniscus Tear</li>\r\n        <li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hip Injuries:</strong></li>\r\n        <ul><li>Torn Labrum</li>\r\n        <li>Acetabular labrum Tear</li>\r\n        <li>Labral Tear</li>\r\n        <li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Neck Injuries:</strong></li>\r\n        <ul><li>Whiplash</li>\r\n       <li>TMJ Syndrome</li>\r\n        <li>Migraine Headaches</li>\r\n        <li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Shoulder Injuries:</strong></li>\r\n        <ul><li>Labral Tear</li>\r\n        <li>Rotator Cuff Tear</li>\r\n        <li>Swimmers Shoulder</li>\r\n        <li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Back Injuries:</strong></li>\r\n        <ul><li>Herniated discs</li>\r\n        <li>Sacroiliac injury</li>\r\n        <li>Lower back pain</li>\r\n        <li>See a complete list of Back Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Elbow Injuries:</strong></li>\r\n        <ul><li>Tendonitis</li>\r\n        <li>Tennis elbow</li>\r\n        <li>Golfers elbow</li>\r\n        <li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Foot and Ankle Injuries:</strong></li>\r\n        <ul><li>Achilles tendinopathy</li>\r\n        <li>Ankle Sprains</li>\r\n        <li>Plantar Fasciitis</li>\r\n        <li>See a complete list of Foot  Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hand Injuries:</strong></li>\r\n       <ul><li>Carpal tunnel</li>\r\n        <li>Overuse injury</li>\r\n        <li>Finger pain</li>\r\n        <li>See a complete list of Hand  Injuries Treated with Prolotherapy here.</li></ul>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\n\r\nCall <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">310-455-8242</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n  Schedule Your Appointment Today! ','Prolotherapy Doctor','','inherit','closed','closed','','229-revision-v1','','','2019-06-07 10:35:48','2019-06-07 10:35:48','',229,'https://www.drfields.com/uncategorized/229-revision-v1/',0,'revision','',0),(251,8,'2019-06-19 05:20:23','2019-06-19 05:20:23','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" class=\"alignleft size-full wp-image-1685\" /><h4>Prolotherapy Doctor</h4>\n\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\n\n<h4>What is a Prolotherapy Doctor?</h4>\n\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\n\n<h4>What is Prolotherapy Treatment?</h4>\n\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\n\n<h4>How Prolotherapy Treatment Works</h4>\n\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"https://orthoregen.com/\" rel=\"noopener noreferrer\" >OrthoRegen</a>\n\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\n\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\n\n<h4>What Conditions Can Dr. Fields  Help You With:</h4>\n\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\n\n<ul><li><strong>Chronic Conditions like…</strong></li>\n<ul><li>Arthritis Pain</li>\n        <li>Sciatica Pain</li>\n        <li>Pinched Nerves</li>\n        <li>Athletic Injuries</li>\n        <li>Tension Headaches</li>\n        <li>Migraine Headaches</li>\n       <li>Herniated Discs</li>\n        <li>Degenerative Discs</li>\n        <li>TMJ syndrome</li>\n        <li>Weak Joints</li>\n        <li>Sore Muscles</li>\n</ul>\n    <li><strong>Knee Injuries:</strong></li>\n        <ul><li>ACL Tear</li>\n        <li>Runners\' Knee</li>\n        <li>Radial Meniscus Tear</li>\n        <li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li></ul>\n    <li><strong>Hip Injuries:</strong></li>\n        <ul><li>Torn Labrum</li>\n        <li>Acetabular labrum Tear</li>\n        <li>Labral Tear</li>\n        <li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li></ul>\n    <li><strong>Neck Injuries:</strong></li>\n        <ul><li>Whiplash</li>\n       <li>TMJ Syndrome</li>\n        <li>Migraine Headaches</li>\n        <li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li></ul>\n    <li><strong>Shoulder Injuries:</strong></li>\n        <ul><li>Labral Tear</li>\n        <li>Rotator Cuff Tear</li>\n        <li>Swimmers Shoulder</li>\n        <li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li></ul>\n    <li><strong>Back Injuries:</strong></li>\n        <ul><li>Herniated discs</li>\n        <li>Sacroiliac injury</li>\n        <li>Lower back pain</li>\n        <li>See a complete list of Back Injuries Treated with Prolotherapy here.</li></ul>\n    <li><strong>Elbow Injuries:</strong></li>\n        <ul><li>Tendonitis</li>\n        <li>Tennis elbow</li>\n        <li>Golfers elbow</li>\n        <li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li></ul>\n    <li><strong>Foot and Ankle Injuries:</strong></li>\n        <ul><li>Achilles tendinopathy</li>\n        <li>Ankle Sprains</li>\n        <li>Plantar Fasciitis</li>\n        <li>See a complete list of Foot  Injuries Treated with Prolotherapy here.</li></ul>\n    <li><strong>Hand Injuries:</strong></li>\n       <ul><li>Carpal tunnel</li>\n        <li>Overuse injury</li>\n        <li>Finger pain</li>\n        <li>See a complete list of Hand  Injuries Treated with Prolotherapy here.</li></ul>\n</ul>\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\n\nCall <a href=\"tel:310-455-8242\" rel=\"noopener noreferrer\" >310-455-8242</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\" >contact Dr. Fields\' office</a> to set up an in-person consultation.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Doctor','','inherit','closed','closed','','229-autosave-v1','','','2019-06-19 05:20:23','2019-06-19 05:20:23','',229,'https://www.drfields.com/uncategorized/229-autosave-v1/',0,'revision','',0),(252,8,'2019-06-07 10:36:09','2019-06-07 10:36:09','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n[caption id=\"attachment_248\" align=\"alignright\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\"  class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n\r\nI ran as quick as I could with my bike shoes on to my bike. You could carry them but then you end up getting gravel on your feet. I took the bike off the rack and ran towards the exit. You\'re not allowed to get on your bike until you leave the transition area. Immediately upon exiting, the transition area, I mounted my bike and took off to start the 112 mile ride.\r\n\r\nI had my power meet on the bike, which in addition to power, would provide me with my heart rate and speed which are essential when riding long distance. The roads were dry and the sun was shining bright and the temperature was in the low eighties. I felt pretty good on the first lap. As you head towards the back of the island the winds pick up. For this approximately 15 mile stretch the winds were about 20 miles an hour blowing on shore. It was tough but not that bad. As you turn towards town to end your first loop the winds were pushing you forward. This was a much needed relief. As you get to town, there were hundreds, if not more, people yelling and cheering. It was very exciting and invigorating. For lap two you again go by some of the hotels and there were people out there cheering.\r\n','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:36:09','2019-06-07 10:36:09','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(253,8,'2019-06-07 10:36:32','2019-06-07 10:36:32','<h4>Prolotherapy Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\r\n\r\n<h4>What is a Prolotherapy Doctor?</h4>\r\n\r\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\r\n\r\n<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h4>How Prolotherapy Treatment Works</h4>\r\n\r\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">OrthoRegen</a>\r\n\r\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\r\n\r\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\r\n\r\n<h4>What Conditions Can Dr. Fields  Help You With:</h4>\r\n\r\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\r\n\r\n<ul>\r\n    <strong><li>Chronic Conditions like…</li></strong>\r\n        <ul><li>Arthritis Pain</li>\r\n        <li>Sciatica Pain</li>\r\n        <li>Pinched Nerves</li>\r\n        <li>Athletic Injuries</li>\r\n        <li>Tension Headaches</li>\r\n        <li>Migraine Headaches</li>\r\n       <li>Herniated Discs</li>\r\n        <li>Degenerative Discs</li>\r\n        <li>TMJ syndrome</li>\r\n        <li>Weak Joints</li>\r\n        <li>Sore Muscles</li>\r\n</ul>\r\n    <li><strong>Knee Injuries:</strong></li>\r\n        <ul><li>ACL Tear</li>\r\n        <li>Runners\' Knee</li>\r\n        <li>Radial Meniscus Tear</li>\r\n        <li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hip Injuries:</strong></li>\r\n        <ul><li>Torn Labrum</li>\r\n        <li>Acetabular labrum Tear</li>\r\n        <li>Labral Tear</li>\r\n        <li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Neck Injuries:</strong></li>\r\n        <ul><li>Whiplash</li>\r\n       <li>TMJ Syndrome</li>\r\n        <li>Migraine Headaches</li>\r\n        <li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Shoulder Injuries:</strong></li>\r\n        <ul><li>Labral Tear</li>\r\n        <li>Rotator Cuff Tear</li>\r\n        <li>Swimmers Shoulder</li>\r\n        <li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Back Injuries:</strong></li>\r\n        <ul><li>Herniated discs</li>\r\n        <li>Sacroiliac injury</li>\r\n        <li>Lower back pain</li>\r\n        <li>See a complete list of Back Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Elbow Injuries:</strong></li>\r\n        <ul><li>Tendonitis</li>\r\n        <li>Tennis elbow</li>\r\n        <li>Golfers elbow</li>\r\n        <li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Foot and Ankle Injuries:</strong></li>\r\n        <ul><li>Achilles tendinopathy</li>\r\n        <li>Ankle Sprains</li>\r\n        <li>Plantar Fasciitis</li>\r\n        <li>See a complete list of Foot  Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hand Injuries:</strong></li>\r\n       <ul><li>Carpal tunnel</li>\r\n        <li>Overuse injury</li>\r\n        <li>Finger pain</li>\r\n        <li>See a complete list of Hand  Injuries Treated with Prolotherapy here.</li></ul>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\n\r\nCall <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">310-455-8242</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n  Schedule Your Appointment Today! ','Prolotherapy Doctor','','inherit','closed','closed','','229-revision-v1','','','2019-06-07 10:36:32','2019-06-07 10:36:32','',229,'https://www.drfields.com/uncategorized/229-revision-v1/',0,'revision','',0),(254,8,'2019-06-07 10:36:35','2019-06-07 10:36:35','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n\r\n[caption id=\"attachment_248\" align=\"alignright\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\"  class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]I ran as quick as I could with my bike shoes on to my bike. You could carry them but then you end up getting gravel on your feet. I took the bike off the rack and ran towards the exit. You\'re not allowed to get on your bike until you leave the transition area. Immediately upon exiting, the transition area, I mounted my bike and took off to start the 112 mile ride.\r\n\r\nI had my power meet on the bike, which in addition to power, would provide me with my heart rate and speed which are essential when riding long distance. The roads were dry and the sun was shining bright and the temperature was in the low eighties. I felt pretty good on the first lap. As you head towards the back of the island the winds pick up. For this approximately 15 mile stretch the winds were about 20 miles an hour blowing on shore. It was tough but not that bad. As you turn towards town to end your first loop the winds were pushing you forward. This was a much needed relief. As you get to town, there were hundreds, if not more, people yelling and cheering. It was very exciting and invigorating. For lap two you again go by some of the hotels and there were people out there cheering.\r\n','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:36:35','2019-06-07 10:36:35','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(255,8,'2019-06-07 10:37:17','2019-06-07 10:37:17','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_248\" align=\"alignright\" width=\"275\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\" width=\"275\" height=\"450\" class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]\r\nI ran as quick as I could with my bike shoes on to my bike. You could carry them but then you end up getting gravel on your feet. I took the bike off the rack and ran towards the exit. You\'re not allowed to get on your bike until you leave the transition area. Immediately upon exiting, the transition area, I mounted my bike and took off to start the 112 mile ride.\r\n\r\nI had my power meet on the bike, which in addition to power, would provide me with my heart rate and speed which are essential when riding long distance. The roads were dry and the sun was shining bright and the temperature was in the low eighties. I felt pretty good on the first lap. As you head towards the back of the island the winds pick up. For this approximately 15 mile stretch the winds were about 20 miles an hour blowing on shore. It was tough but not that bad. As you turn towards town to end your first loop the winds were pushing you forward. This was a much needed relief. As you get to town, there were hundreds, if not more, people yelling and cheering. It was very exciting and invigorating. For lap two you again go by some of the hotels and there were people out there cheering.\r\n','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:37:17','2019-06-07 10:37:17','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(256,8,'2019-06-07 10:37:19','2019-06-07 10:37:19','<h4>Prolotherapy Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\r\n\r\n<h4>What is a Prolotherapy Doctor?</h4>\r\n\r\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\r\n\r\n<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h4>How Prolotherapy Treatment Works</h4>\r\n\r\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">OrthoRegen</a>\r\n\r\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\r\n\r\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\r\n\r\n<h4>What Conditions Can Dr. Fields  Help You With:</h4>\r\n\r\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\r\n\r\n<ul><strong><li>Chronic Conditions like…</li></strong>\r\n        <ul><li>Arthritis Pain</li>\r\n        <li>Sciatica Pain</li>\r\n        <li>Pinched Nerves</li>\r\n        <li>Athletic Injuries</li>\r\n        <li>Tension Headaches</li>\r\n        <li>Migraine Headaches</li>\r\n       <li>Herniated Discs</li>\r\n        <li>Degenerative Discs</li>\r\n        <li>TMJ syndrome</li>\r\n        <li>Weak Joints</li>\r\n        <li>Sore Muscles</li>\r\n</ul>\r\n    <li><strong>Knee Injuries:</strong></li>\r\n        <ul><li>ACL Tear</li>\r\n        <li>Runners\' Knee</li>\r\n        <li>Radial Meniscus Tear</li>\r\n        <li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hip Injuries:</strong></li>\r\n        <ul><li>Torn Labrum</li>\r\n        <li>Acetabular labrum Tear</li>\r\n        <li>Labral Tear</li>\r\n        <li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Neck Injuries:</strong></li>\r\n        <ul><li>Whiplash</li>\r\n       <li>TMJ Syndrome</li>\r\n        <li>Migraine Headaches</li>\r\n        <li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Shoulder Injuries:</strong></li>\r\n        <ul><li>Labral Tear</li>\r\n        <li>Rotator Cuff Tear</li>\r\n        <li>Swimmers Shoulder</li>\r\n        <li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Back Injuries:</strong></li>\r\n        <ul><li>Herniated discs</li>\r\n        <li>Sacroiliac injury</li>\r\n        <li>Lower back pain</li>\r\n        <li>See a complete list of Back Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Elbow Injuries:</strong></li>\r\n        <ul><li>Tendonitis</li>\r\n        <li>Tennis elbow</li>\r\n        <li>Golfers elbow</li>\r\n        <li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Foot and Ankle Injuries:</strong></li>\r\n        <ul><li>Achilles tendinopathy</li>\r\n        <li>Ankle Sprains</li>\r\n        <li>Plantar Fasciitis</li>\r\n        <li>See a complete list of Foot  Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hand Injuries:</strong></li>\r\n       <ul><li>Carpal tunnel</li>\r\n        <li>Overuse injury</li>\r\n        <li>Finger pain</li>\r\n        <li>See a complete list of Hand  Injuries Treated with Prolotherapy here.</li></ul>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\n\r\nCall <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">310-455-8242</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n  Schedule Your Appointment Today! ','Prolotherapy Doctor','','inherit','closed','closed','','229-revision-v1','','','2019-06-07 10:37:19','2019-06-07 10:37:19','',229,'https://www.drfields.com/uncategorized/229-revision-v1/',0,'revision','',0),(257,8,'2019-06-07 10:37:39','2019-06-07 10:37:39','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_248\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]\r\nI ran as quick as I could with my bike shoes on to my bike. You could carry them but then you end up getting gravel on your feet. I took the bike off the rack and ran towards the exit. You\'re not allowed to get on your bike until you leave the transition area. Immediately upon exiting, the transition area, I mounted my bike and took off to start the 112 mile ride.\r\n\r\nI had my power meet on the bike, which in addition to power, would provide me with my heart rate and speed which are essential when riding long distance. The roads were dry and the sun was shining bright and the temperature was in the low eighties. I felt pretty good on the first lap. As you head towards the back of the island the winds pick up. For this approximately 15 mile stretch the winds were about 20 miles an hour blowing on shore. It was tough but not that bad. As you turn towards town to end your first loop the winds were pushing you forward. This was a much needed relief. As you get to town, there were hundreds, if not more, people yelling and cheering. It was very exciting and invigorating. For lap two you again go by some of the hotels and there were people out there cheering.\r\n','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:37:39','2019-06-07 10:37:39','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(258,8,'2019-06-07 10:38:05','2019-06-07 10:38:05','<h4>Prolotherapy Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\r\n\r\n<h4>What is a Prolotherapy Doctor?</h4>\r\n\r\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\r\n\r\n<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h4>How Prolotherapy Treatment Works</h4>\r\n\r\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">OrthoRegen</a>\r\n\r\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\r\n\r\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\r\n\r\n<h4>What Conditions Can Dr. Fields  Help You With:</h4>\r\n\r\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\r\n\r\n<ul><strong><li>Chronic Conditions like…</li></strong>\r\n<ul><li>Arthritis Pain</li>\r\n        <li>Sciatica Pain</li>\r\n        <li>Pinched Nerves</li>\r\n        <li>Athletic Injuries</li>\r\n        <li>Tension Headaches</li>\r\n        <li>Migraine Headaches</li>\r\n       <li>Herniated Discs</li>\r\n        <li>Degenerative Discs</li>\r\n        <li>TMJ syndrome</li>\r\n        <li>Weak Joints</li>\r\n        <li>Sore Muscles</li>\r\n</ul>\r\n    <li><strong>Knee Injuries:</strong></li>\r\n        <ul><li>ACL Tear</li>\r\n        <li>Runners\' Knee</li>\r\n        <li>Radial Meniscus Tear</li>\r\n        <li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hip Injuries:</strong></li>\r\n        <ul><li>Torn Labrum</li>\r\n        <li>Acetabular labrum Tear</li>\r\n        <li>Labral Tear</li>\r\n        <li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Neck Injuries:</strong></li>\r\n        <ul><li>Whiplash</li>\r\n       <li>TMJ Syndrome</li>\r\n        <li>Migraine Headaches</li>\r\n        <li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Shoulder Injuries:</strong></li>\r\n        <ul><li>Labral Tear</li>\r\n        <li>Rotator Cuff Tear</li>\r\n        <li>Swimmers Shoulder</li>\r\n        <li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Back Injuries:</strong></li>\r\n        <ul><li>Herniated discs</li>\r\n        <li>Sacroiliac injury</li>\r\n        <li>Lower back pain</li>\r\n        <li>See a complete list of Back Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Elbow Injuries:</strong></li>\r\n        <ul><li>Tendonitis</li>\r\n        <li>Tennis elbow</li>\r\n        <li>Golfers elbow</li>\r\n        <li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Foot and Ankle Injuries:</strong></li>\r\n        <ul><li>Achilles tendinopathy</li>\r\n        <li>Ankle Sprains</li>\r\n        <li>Plantar Fasciitis</li>\r\n        <li>See a complete list of Foot  Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hand Injuries:</strong></li>\r\n       <ul><li>Carpal tunnel</li>\r\n        <li>Overuse injury</li>\r\n        <li>Finger pain</li>\r\n        <li>See a complete list of Hand  Injuries Treated with Prolotherapy here.</li></ul>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\n\r\nCall <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">310-455-8242</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n  Schedule Your Appointment Today! ','Prolotherapy Doctor','','inherit','closed','closed','','229-revision-v1','','','2019-06-07 10:38:05','2019-06-07 10:38:05','',229,'https://www.drfields.com/uncategorized/229-revision-v1/',0,'revision','',0),(259,8,'2019-06-07 10:38:42','2019-06-07 10:38:42','<h4>Prolotherapy Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\r\n\r\n<h4>What is a Prolotherapy Doctor?</h4>\r\n\r\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\r\n\r\n<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h4>How Prolotherapy Treatment Works</h4>\r\n\r\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">OrthoRegen</a>\r\n\r\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\r\n\r\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\r\n\r\n<h4>What Conditions Can Dr. Fields  Help You With:</h4>\r\n\r\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\r\n\r\n<ul><strong><li>Chronic Conditions like…</strong></li>\r\n<ul><li>Arthritis Pain</li>\r\n        <li>Sciatica Pain</li>\r\n        <li>Pinched Nerves</li>\r\n        <li>Athletic Injuries</li>\r\n        <li>Tension Headaches</li>\r\n        <li>Migraine Headaches</li>\r\n       <li>Herniated Discs</li>\r\n        <li>Degenerative Discs</li>\r\n        <li>TMJ syndrome</li>\r\n        <li>Weak Joints</li>\r\n        <li>Sore Muscles</li>\r\n</ul>\r\n    <li><strong>Knee Injuries:</strong></li>\r\n        <ul><li>ACL Tear</li>\r\n        <li>Runners\' Knee</li>\r\n        <li>Radial Meniscus Tear</li>\r\n        <li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hip Injuries:</strong></li>\r\n        <ul><li>Torn Labrum</li>\r\n        <li>Acetabular labrum Tear</li>\r\n        <li>Labral Tear</li>\r\n        <li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Neck Injuries:</strong></li>\r\n        <ul><li>Whiplash</li>\r\n       <li>TMJ Syndrome</li>\r\n        <li>Migraine Headaches</li>\r\n        <li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Shoulder Injuries:</strong></li>\r\n        <ul><li>Labral Tear</li>\r\n        <li>Rotator Cuff Tear</li>\r\n        <li>Swimmers Shoulder</li>\r\n        <li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Back Injuries:</strong></li>\r\n        <ul><li>Herniated discs</li>\r\n        <li>Sacroiliac injury</li>\r\n        <li>Lower back pain</li>\r\n        <li>See a complete list of Back Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Elbow Injuries:</strong></li>\r\n        <ul><li>Tendonitis</li>\r\n        <li>Tennis elbow</li>\r\n        <li>Golfers elbow</li>\r\n        <li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Foot and Ankle Injuries:</strong></li>\r\n        <ul><li>Achilles tendinopathy</li>\r\n        <li>Ankle Sprains</li>\r\n        <li>Plantar Fasciitis</li>\r\n        <li>See a complete list of Foot  Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hand Injuries:</strong></li>\r\n       <ul><li>Carpal tunnel</li>\r\n        <li>Overuse injury</li>\r\n        <li>Finger pain</li>\r\n        <li>See a complete list of Hand  Injuries Treated with Prolotherapy here.</li></ul>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\n\r\nCall <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">310-455-8242</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n  Schedule Your Appointment Today! ','Prolotherapy Doctor','','inherit','closed','closed','','229-revision-v1','','','2019-06-07 10:38:42','2019-06-07 10:38:42','',229,'https://www.drfields.com/uncategorized/229-revision-v1/',0,'revision','',0),(260,8,'2019-06-07 10:39:30','2019-06-07 10:39:30','<h4>Prolotherapy Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\r\n\r\n<h4>What is a Prolotherapy Doctor?</h4>\r\n\r\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\r\n\r\n<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h4>How Prolotherapy Treatment Works</h4>\r\n\r\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">OrthoRegen</a>\r\n\r\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\r\n\r\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\r\n\r\n<h4>What Conditions Can Dr. Fields  Help You With:</h4>\r\n\r\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\r\n\r\n<ul><li><strong>Chronic Conditions like…</strong></li>\r\n<ul><li>Arthritis Pain</li>\r\n        <li>Sciatica Pain</li>\r\n        <li>Pinched Nerves</li>\r\n        <li>Athletic Injuries</li>\r\n        <li>Tension Headaches</li>\r\n        <li>Migraine Headaches</li>\r\n       <li>Herniated Discs</li>\r\n        <li>Degenerative Discs</li>\r\n        <li>TMJ syndrome</li>\r\n        <li>Weak Joints</li>\r\n        <li>Sore Muscles</li>\r\n</ul>\r\n    <li><strong>Knee Injuries:</strong></li>\r\n        <ul><li>ACL Tear</li>\r\n        <li>Runners\' Knee</li>\r\n        <li>Radial Meniscus Tear</li>\r\n        <li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hip Injuries:</strong></li>\r\n        <ul><li>Torn Labrum</li>\r\n        <li>Acetabular labrum Tear</li>\r\n        <li>Labral Tear</li>\r\n        <li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Neck Injuries:</strong></li>\r\n        <ul><li>Whiplash</li>\r\n       <li>TMJ Syndrome</li>\r\n        <li>Migraine Headaches</li>\r\n        <li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Shoulder Injuries:</strong></li>\r\n        <ul><li>Labral Tear</li>\r\n        <li>Rotator Cuff Tear</li>\r\n        <li>Swimmers Shoulder</li>\r\n        <li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Back Injuries:</strong></li>\r\n        <ul><li>Herniated discs</li>\r\n        <li>Sacroiliac injury</li>\r\n        <li>Lower back pain</li>\r\n        <li>See a complete list of Back Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Elbow Injuries:</strong></li>\r\n        <ul><li>Tendonitis</li>\r\n        <li>Tennis elbow</li>\r\n        <li>Golfers elbow</li>\r\n        <li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Foot and Ankle Injuries:</strong></li>\r\n        <ul><li>Achilles tendinopathy</li>\r\n        <li>Ankle Sprains</li>\r\n        <li>Plantar Fasciitis</li>\r\n        <li>See a complete list of Foot  Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hand Injuries:</strong></li>\r\n       <ul><li>Carpal tunnel</li>\r\n        <li>Overuse injury</li>\r\n        <li>Finger pain</li>\r\n        <li>See a complete list of Hand  Injuries Treated with Prolotherapy here.</li></ul>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\n\r\nCall <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">310-455-8242</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n  Schedule Your Appointment Today! ','Prolotherapy Doctor','','inherit','closed','closed','','229-revision-v1','','','2019-06-07 10:39:30','2019-06-07 10:39:30','',229,'https://www.drfields.com/uncategorized/229-revision-v1/',0,'revision','',0),(261,8,'2019-06-07 10:39:34','2019-06-07 10:39:34','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_248\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]\r\nI ran as quick as I could with my bike shoes on to my bike. You could carry them but then you end up getting gravel on your feet. I took the bike off the rack and ran towards the exit. You\'re not allowed to get on your bike until you leave the transition area. Immediately upon exiting, the transition area, I mounted my bike and took off to start the 112 mile ride.\r\n\r\nI had my power meet on the bike, which in addition to power, would provide me with my heart rate and speed which are essential when riding long distance. The roads were dry and the sun was shining bright and the temperature was in the low eighties. I felt pretty good on the first lap. As you head towards the back of the island the winds pick up. For this approximately 15 mile stretch the winds were about 20 miles an hour blowing on shore. It was tough but not that bad. As you turn towards town to end your first loop the winds were pushing you forward. This was a much needed relief. As you get to town, there were hundreds, if not more, people yelling and cheering. It was very exciting and invigorating. For lap two you again go by some of the hotels and there were people out there cheering.\r\n\r\nAs I got to the back of the island again, the wind picked up and was close to 30 miles an hour. It was getting pretty tough and you just hung in there. Unfortunately this meant that you were down on your triathlon riding bars ( the extended bars you put your forearms on so you can just about lie flat while riding) all the time so as not to let the wind hit you in the chest. It put a tremendous strain on my neck, which I found out later that everybody had the same. You just kept going and going. During this loop, I also stopped at the special needs station at mile 56. This is where you can pick up your nutritional supplies for the second half of the race so you do not need to carry all of them at once. Again as I looped through town the crowds were cheering and it was very nice to get words of encouragement.\r\n\r\nFor the third loop the temperature has risen towards the upper 80\'s and low 90\'s and the winds really were kicking in. Now they were close to 40 miles an hour. It was really brutal. I had ridden this course three times in the past but this time the winds were the strongest . But somehow I kept going and going and managed to endure it. As I made the last turn to head the 9 miles back to town I knew that I had completed this part. Slightly slower than I expected but with the wind it was a slower time for everyone. \r\n','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:39:34','2019-06-07 10:39:34','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(262,8,'2019-06-07 10:40:56','2019-06-07 10:40:56','<h4>Prolotherapy Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\r\n\r\n<h4>What is a Prolotherapy Doctor?</h4>\r\n\r\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\r\n\r\n<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h4>How Prolotherapy Treatment Works</h4>\r\n\r\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">OrthoRegen</a>\r\n\r\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\r\n\r\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\r\n\r\n<h4>What Conditions Can Dr. Fields  Help You With:</h4>\r\n\r\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\r\n\r\n<ul><li><strong>Chronic Conditions like…</strong></li>\r\n<ul><li>Arthritis Pain</li>\r\n        <li>Sciatica Pain</li>\r\n        <li>Pinched Nerves</li>\r\n        <li>Athletic Injuries</li>\r\n        <li>Tension Headaches</li>\r\n        <li>Migraine Headaches</li>\r\n       <li>Herniated Discs</li>\r\n        <li>Degenerative Discs</li>\r\n        <li>TMJ syndrome</li>\r\n        <li>Weak Joints</li>\r\n        <li>Sore Muscles</li>\r\n</ul>\r\n    <li><strong>Knee Injuries:</strong></li>\r\n        <ul><li>ACL Tear</li>\r\n        <li>Runners\' Knee</li>\r\n        <li>Radial Meniscus Tear</li>\r\n        <li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hip Injuries:</strong></li>\r\n        <ul><li>Torn Labrum</li>\r\n        <li>Acetabular labrum Tear</li>\r\n        <li>Labral Tear</li>\r\n        <li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Neck Injuries:</strong></li>\r\n        <ul><li>Whiplash</li>\r\n       <li>TMJ Syndrome</li>\r\n        <li>Migraine Headaches</li>\r\n        <li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Shoulder Injuries:</strong></li>\r\n        <ul><li>Labral Tear</li>\r\n        <li>Rotator Cuff Tear</li>\r\n        <li>Swimmers Shoulder</li>\r\n        <li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Back Injuries:</strong></li>\r\n        <ul><li>Herniated discs</li>\r\n        <li>Sacroiliac injury</li>\r\n        <li>Lower back pain</li>\r\n        <li>See a complete list of Back Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Elbow Injuries:</strong></li>\r\n        <ul><li>Tendonitis</li>\r\n        <li>Tennis elbow</li>\r\n        <li>Golfers elbow</li>\r\n        <li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Foot and Ankle Injuries:</strong></li>\r\n        <ul><li>Achilles tendinopathy</li>\r\n        <li>Ankle Sprains</li>\r\n        <li>Plantar Fasciitis</li>\r\n        <li>See a complete list of Foot  Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hand Injuries:</strong></li>\r\n       <ul><li>Carpal tunnel</li>\r\n        <li>Overuse injury</li>\r\n        <li>Finger pain</li>\r\n        <li>See a complete list of Hand  Injuries Treated with Prolotherapy here.</li></ul>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\n\r\nCall <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">310-455-8242</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n  <a href=\"#\">Schedule Your Appointment Today! </a>','Prolotherapy Doctor','','inherit','closed','closed','','229-revision-v1','','','2019-06-07 10:40:56','2019-06-07 10:40:56','',229,'https://www.drfields.com/uncategorized/229-revision-v1/',0,'revision','',0),(263,8,'2019-06-07 10:41:28','2019-06-07 10:41:28','Cozumel 2015 Run 160','Cozumel 2015 Run 160','Dr. Fields during the 26.2 mile run','inherit','open','closed','','cozumel-2015-run-160','','','2019-06-07 10:41:33','2019-06-07 10:41:33','',217,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-run-160.jpg',0,'attachment','image/jpeg',0),(264,8,'2019-06-07 10:42:55','2019-06-07 10:42:55','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_248\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]\r\nI ran as quick as I could with my bike shoes on to my bike. You could carry them but then you end up getting gravel on your feet. I took the bike off the rack and ran towards the exit. You\'re not allowed to get on your bike until you leave the transition area. Immediately upon exiting, the transition area, I mounted my bike and took off to start the 112 mile ride.\r\n\r\nI had my power meet on the bike, which in addition to power, would provide me with my heart rate and speed which are essential when riding long distance. The roads were dry and the sun was shining bright and the temperature was in the low eighties. I felt pretty good on the first lap. As you head towards the back of the island the winds pick up. For this approximately 15 mile stretch the winds were about 20 miles an hour blowing on shore. It was tough but not that bad. As you turn towards town to end your first loop the winds were pushing you forward. This was a much needed relief. As you get to town, there were hundreds, if not more, people yelling and cheering. It was very exciting and invigorating. For lap two you again go by some of the hotels and there were people out there cheering.\r\n\r\nAs I got to the back of the island again, the wind picked up and was close to 30 miles an hour. It was getting pretty tough and you just hung in there. Unfortunately this meant that you were down on your triathlon riding bars ( the extended bars you put your forearms on so you can just about lie flat while riding) all the time so as not to let the wind hit you in the chest. It put a tremendous strain on my neck, which I found out later that everybody had the same. You just kept going and going. During this loop, I also stopped at the special needs station at mile 56. This is where you can pick up your nutritional supplies for the second half of the race so you do not need to carry all of them at once. Again as I looped through town the crowds were cheering and it was very nice to get words of encouragement.\r\n\r\nFor the third loop the temperature has risen towards the upper 80\'s and low 90\'s and the winds really were kicking in. Now they were close to 40 miles an hour. It was really brutal. I had ridden this course three times in the past but this time the winds were the strongest . But somehow I kept going and going and managed to endure it. As I made the last turn to head the 9 miles back to town I knew that I had completed this part. Slightly slower than I expected but with the wind it was a slower time for everyone. \r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-run-160.jpg\" alt=\"Cozumel 2015 Run 160\" width=\"160\" height=\"301\" class=\"size-full wp-image-263\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAs I came into town again the crowds were cheering and yelling loudly. I handed off my bike to one of the volunteers there and quickly grabbed my transition bag and ran into the tent. Off with the biking shoes, on with the running shoes, throw some water over myself to help cool me down, put on my running hat, grab some nutrition, go to the bathroom and I was out the door.\r\n\r\nOf course when you transition out of this tent there are thousands of people out there yelling and screaming. The sun was still up so it was still pretty hot with it being in the 90s, But I felt pretty good. For about the first four point 4.4 miles, which is the length of the course (you do this back and forth 3 times) I was a little tight and not so fluid in my running. Along the way of course there are people cheering for about a mile and a half as you get outside of town and then sporadically there were people at hotels who would come out along the road to cheer us on. When I hit the turn around I felt really good and for the next 8.8 miles my legs and body felt really strong. As I got back to town and finished the first 8.8 mile loop the sun was going down which was a blessing because it had been very hot outside.\r\n\r\nThe next 8.8 loop I felt good but the energy was starting to be drained. The bike had taken a tremendous toll, not only on me but on other runners too. But I persevered and kept going. The best thing was my hamstring was not bothering me which had slowed me down during my last two Ironman races. And in May 2015, I had raced Ironman Brazil, where I had a lot of feet problems. None of this came around this time.\r\n\r\nI saw many people out there that I knew from the Los Angeles area or other races. The camaraderie amongst the athletes is tremendous and it\'s something that we all rely on and count on. As I came into town finishing the second loop I knew I only had one more loop to go. I was tired and drained having been racing for almost 12 hrs., but just kept going. Of course along the way I took lots of nutrition and keep myself as hydrated as much as possible. There was no rain this year, which was also nice since the prior previous time I had done this race we were running through knee high puddles.\r\n\r\nAfter leaving town and getting to the final around, I knew only had 4.4 miles left to go and realized that it was in the bag for me. As I came back into town and saw the crowds again, I felt the exhilarating feeling that one can only feel when finishing an Ironman. At this point I only had about a mile to go and knew I have finally done it. That is not only finish my 6th Ironman but my second one in six months . This was a challenge that I set for myself. Like my parents had always told me, set your goals and go for it.\r\nNever say never.\r\n\r\nThe final 100 meters are unbelievable feeling. All ones aches and pains fade away. As I approached the finish line, which is slightly elevated and bathed in lights, I heard the announcer say for the sixth time,\r\n\"Peter Fields, you are an Ironman\".\r\nIt never gets old.\r\nI finally knew that I had completed my conquest of doing two Ironman races in one year.\r\n\r\nOf course the whole way during the race, I never forgot about my parents. I had my mom’s initials written on my left arm and on my right arm I had my dad\'s initials. Both of these people were so special in my life and I have never forgotten them for even one day since each of them passed. Whenever it got tough, I would place my hand on either forearm and feel their presence within me and hear their words of encouragement telling me never to give up. I know they would have been as proud of me as I am of them.\r\n\r\nI want to thank everybody who sent me good wishes, those who kept me in their thoughts and those who followed me on the internet. All your thoughts and wishes kept me strong the whole race.\r\nThere were a few very special people that never stopped thinking about me the whole race. You know who you are and words cannot say thank you enough. \r\n','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:42:55','2019-06-07 10:42:55','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(265,8,'2019-06-07 10:43:24','2019-06-07 10:43:24','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong><u>PROLOGUE</u></strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<strong><u>RACE DAY</u></strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_248\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]\r\nI ran as quick as I could with my bike shoes on to my bike. You could carry them but then you end up getting gravel on your feet. I took the bike off the rack and ran towards the exit. You\'re not allowed to get on your bike until you leave the transition area. Immediately upon exiting, the transition area, I mounted my bike and took off to start the 112 mile ride.\r\n\r\nI had my power meet on the bike, which in addition to power, would provide me with my heart rate and speed which are essential when riding long distance. The roads were dry and the sun was shining bright and the temperature was in the low eighties. I felt pretty good on the first lap. As you head towards the back of the island the winds pick up. For this approximately 15 mile stretch the winds were about 20 miles an hour blowing on shore. It was tough but not that bad. As you turn towards town to end your first loop the winds were pushing you forward. This was a much needed relief. As you get to town, there were hundreds, if not more, people yelling and cheering. It was very exciting and invigorating. For lap two you again go by some of the hotels and there were people out there cheering.\r\n\r\nAs I got to the back of the island again, the wind picked up and was close to 30 miles an hour. It was getting pretty tough and you just hung in there. Unfortunately this meant that you were down on your triathlon riding bars ( the extended bars you put your forearms on so you can just about lie flat while riding) all the time so as not to let the wind hit you in the chest. It put a tremendous strain on my neck, which I found out later that everybody had the same. You just kept going and going. During this loop, I also stopped at the special needs station at mile 56. This is where you can pick up your nutritional supplies for the second half of the race so you do not need to carry all of them at once. Again as I looped through town the crowds were cheering and it was very nice to get words of encouragement.\r\n\r\nFor the third loop the temperature has risen towards the upper 80\'s and low 90\'s and the winds really were kicking in. Now they were close to 40 miles an hour. It was really brutal. I had ridden this course three times in the past but this time the winds were the strongest . But somehow I kept going and going and managed to endure it. As I made the last turn to head the 9 miles back to town I knew that I had completed this part. Slightly slower than I expected but with the wind it was a slower time for everyone. \r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-run-160.jpg\" alt=\"Cozumel 2015 Run 160\" width=\"160\" height=\"301\" class=\"size-full wp-image-263\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAs I came into town again the crowds were cheering and yelling loudly. I handed off my bike to one of the volunteers there and quickly grabbed my transition bag and ran into the tent. Off with the biking shoes, on with the running shoes, throw some water over myself to help cool me down, put on my running hat, grab some nutrition, go to the bathroom and I was out the door.\r\n\r\nOf course when you transition out of this tent there are thousands of people out there yelling and screaming. The sun was still up so it was still pretty hot with it being in the 90s, But I felt pretty good. For about the first four point 4.4 miles, which is the length of the course (you do this back and forth 3 times) I was a little tight and not so fluid in my running. Along the way of course there are people cheering for about a mile and a half as you get outside of town and then sporadically there were people at hotels who would come out along the road to cheer us on. When I hit the turn around I felt really good and for the next 8.8 miles my legs and body felt really strong. As I got back to town and finished the first 8.8 mile loop the sun was going down which was a blessing because it had been very hot outside.\r\n\r\nThe next 8.8 loop I felt good but the energy was starting to be drained. The bike had taken a tremendous toll, not only on me but on other runners too. But I persevered and kept going. The best thing was my hamstring was not bothering me which had slowed me down during my last two Ironman races. And in May 2015, I had raced Ironman Brazil, where I had a lot of feet problems. None of this came around this time.\r\n\r\nI saw many people out there that I knew from the Los Angeles area or other races. The camaraderie amongst the athletes is tremendous and it\'s something that we all rely on and count on. As I came into town finishing the second loop I knew I only had one more loop to go. I was tired and drained having been racing for almost 12 hrs., but just kept going. Of course along the way I took lots of nutrition and keep myself as hydrated as much as possible. There was no rain this year, which was also nice since the prior previous time I had done this race we were running through knee high puddles.\r\n\r\nAfter leaving town and getting to the final around, I knew only had 4.4 miles left to go and realized that it was in the bag for me. As I came back into town and saw the crowds again, I felt the exhilarating feeling that one can only feel when finishing an Ironman. At this point I only had about a mile to go and knew I have finally done it. That is not only finish my 6th Ironman but my second one in six months . This was a challenge that I set for myself. Like my parents had always told me, set your goals and go for it.\r\nNever say never.\r\n\r\nThe final 100 meters are unbelievable feeling. All ones aches and pains fade away. As I approached the finish line, which is slightly elevated and bathed in lights, I heard the announcer say for the sixth time,\r\n\"Peter Fields, you are an Ironman\".\r\nIt never gets old.\r\nI finally knew that I had completed my conquest of doing two Ironman races in one year.\r\n\r\nOf course the whole way during the race, I never forgot about my parents. I had my mom’s initials written on my left arm and on my right arm I had my dad\'s initials. Both of these people were so special in my life and I have never forgotten them for even one day since each of them passed. Whenever it got tough, I would place my hand on either forearm and feel their presence within me and hear their words of encouragement telling me never to give up. I know they would have been as proud of me as I am of them.\r\n\r\nI want to thank everybody who sent me good wishes, those who kept me in their thoughts and those who followed me on the internet. All your thoughts and wishes kept me strong the whole race.\r\nThere were a few very special people that never stopped thinking about me the whole race. You know who you are and words cannot say thank you enough. \r\n\r\n<h6>Peter A. Fields, MD DC\r\nThe Athletic Doc® and 6X Ironman Triathlete</h6>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-07 10:43:24','2019-06-07 10:43:24','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(266,8,'2019-06-07 10:53:18','2019-06-07 10:53:18','<img class=\"alignleft wp-image-1685 size-medium\" title=\"prp los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>PRP Doctor</h4>\r\nPeter A. Fields, MD DC, is a PRP Doctor in the Los Angeles area and the founder of OrthoRegen<sup>®</sup>. PRP stands for Platelet Rich Plasma and Dr. Fields is a leading expert in using PRP to resolve painful joint conditions and sports injuries to help people avoid joint replacement. People come from all over the US and even the world because Dr. Fields helps them to avoid unnecessary surgeries.\r\n<h4>What is a PRP Doctor?</h4>\r\nA PRP doctor provides regenerative orthopedics, which means that non-surgical alternative therapies that regenerate the joint and spine are offered. PRP doctors like Dr. Fields use Platelet Rich Plasma Injections (and other regenerative treatments) that help accelerate the normal healing process. And Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of PRP Regenerative Treatments.\r\n<h4>What Does PRP Los Angeles Stand For?</h4>\r\nPRP stands for Platelet Rich Plasma.  And OrthoRegen<sup>®</sup> is located near Los Angeles. The Plasma portion in the name Platelet Rich Plasma refers to the fluid portion of blood which contains cellular components such as platelets, white blood cells, and red cells. Plus, the Harvest method that Dr. Fields uses concentrates the platelets 7-10 times of what is generally found in the blood. Other systems concentrate them, but to a lesser extent.\r\n<h4>What is PRP Treatment?</h4>\r\nPRP treatment, as used in Regenerative Orthopedics, is a non-surgical healing treatment for healing soft tissue performed by a PRP Doctor. And Dr. Fields makes precise injections of your own concentrated blood (PRP) into the affected areas to promote healing of musculoskeletal problems. Not only that, but blood platelets also contain potent growth factors necessary to get your tissue repair active and boost regeneration at the injury site.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Is PRP Treatment Safe?</h4>\r\nPRP treatment is an extremely safe procedure. Plus, the risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. Also, the risks are often less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. But Dr. Fields will discuss these possibilities thoroughly with patients during the pre-treatment consultation.\r\n\r\n<strong>What Does a PRP Doctor Treat?</strong>\r\n\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that Dr. Fields treats. And PRP has been effective in treating arthritis too. However, when arthritis is more severe, Dr. Fields and his team have fount that Stem Cell Therapy provides better results.\r\n\r\nDr. Fields has had great success in treating chronic pain and sports injuries and just some of them include:\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Knee Injuries:</strong> ACL, MCL LCL, Meniscus, Arthritis, Kneecap Instability</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Elbow Injuries:</strong> Tennis Elbow, Medial Epicondylitis, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Shoulder Injuries:</strong> Rotator Cuff Tears, Labrum Tears, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Back Injuries:</strong> Arthritis, Facet Joints, Sacro-Iliac dysfunction</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hip Injuries:</strong> Tendonitis, Bursitis, Labrum</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Foot/Ankle Injuries:</strong> Ankle Sprains, Arthritis, Achilles Dysfunction, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hand/Wrist/ Injuries:</strong> Finger/Joint Tendonitis, Ligament Tears, Arthritis, Carpal Tunnel</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>Are You A Candidate for PRP Treatment?</h4>\r\nDo you have a sports injury or a painful joint? Don\'t put up with it any longer. Call <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with our Regenerative Orthopedic and PRP Los Angeles Doctor to see if PRP can get you pain-free and ‘back in the game’. And we would be more than happy to help you get back to the activities you love and to resume your normal lifestyle. <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">Contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','PRP Doctor in the Los Angeles Area','','publish','open','closed','','prp-los-angeles-doctor','','','2020-07-12 00:09:03','2020-07-12 00:09:03','',0,'https://www.drfields.com/?p=266',0,'post','',0),(273,8,'2022-12-02 06:01:38','2019-06-07 10:51:14','','The Athletic Doc','','publish','closed','closed','','the-athletic-doc','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=273',9,'nav_menu_item','',0),(277,8,'2019-06-07 11:00:48','2019-06-07 11:00:48','<h4>PRP Doctor</h4>\n\nPeter A. Fields, MD DC, is a PRP Doctor in Los Angeles and the founder of OrthoRegen. Dr. Fields is a leading expert in using (PRP) Platelet Rich Plasma therapy to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world. Dr. Fields help people avoid unnecessary orthopedic surgeries whether arthroscopic or full surgery.\n\n<h4>What is a PRP Doctor?</h4>\n\nA PRP Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. PRP Doctors like Dr. Fields use Platelet Rich Plasma Injections that help accelerate the normal healing process. Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of PRP Regenerative Treatments.\n\n<h4>What Does PRP stand for?</h4>\n\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as platelets, white blood cells, and red cells. The Harvest method that Dr. Fields uses concentrates the platelets 7-10 times of what is generally found in blood. Other systems concentrate them, but to a lesser extent.\n\n<h4>What is PRP Treatment?</h4>\n\nPRP treatment, as used in regenerative orthopedics, is a non-surgical healing treatment for healing soft tissue performed by a PRP Doctor. Dr. Fields makes precise injections of your own concentrated blood (PRP) into the affected areas to promote healing of musculoskeletal problems. Blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site.\n\n<h4>Is PRP Treatment Safe?</h4>\n\nPRP treatment is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities thoroughly with patients during the pre-treatment consultation.\nWhat Does a PRP Doctor Treat?\n\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that Dr. Fields treats. PRP has also been effective in treating arthritis, though more severe cases get better results with Dr. Fields’ Stem Cell treatments.\n\nDr. Fields has had great success in treating chronic pain and sports injuries including:\n\n    Knee Injuries: ACL, MCL LCL, Meniscus, Arthritis, Kneecap Instability\n    See a complete list of Knee Injuries Treated with Prolotherapy here\n    Elbow Injuries: Tennis Elbow, Medial Epicondylitis,Tendonitis\n    See a complete list of Elbow Injuries Treated with Prolotherapy here.\n    Shoulder Injuries: Rotator Cuff Tears, Labrum Tears, Tenositis\n    See a complete list of Shoulder Injuries Treated with Prolotherapy here.\n    Back Injuries: Arthritis, Facet Joints, Sacro-Iliac dysfunction\n    See a complete list of Back Injuries Treated with Prolotherapy here.\n    Hip Injuries: Tenositis, Bursitis,Labrum\n    See a complete list of Hip Injuries Treated with Prolotherapy here.\n    Foot/Ankle Injuries: Ankle Sprains, Arthritis, Achilles Dysfunction, Tendonitis\n    See a complete list of Foot/Ankle Injuries Treated with Prolotherapy here.\n    Hand/Wrist/ Injuries: Finger/Joint Tendinitis, Ligament Tears, Arthritis, Carpal tunnel\n    See a complete list of Hand/Wrist Injuries Treated with Prolotherapy here.\n\nAre You A Candidate for PRP Treatment?\n\nCall 310-455-8242 today for a free phone consultation with Dr. Fields our PRP Doctor to see if PRP treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also contact the OrthoRegen\'s office to set up an in-person consultation.\n\n  Schedule Your Appointment Today! ','PRP Doctor','','inherit','closed','closed','','266-revision-v1','','','2019-06-07 11:00:48','2019-06-07 11:00:48','',266,'https://www.drfields.com/uncategorized/266-revision-v1/',0,'revision','',0),(280,8,'2022-12-02 06:01:38','2019-06-07 11:02:31',' ','','','publish','closed','closed','','280','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=280',4,'nav_menu_item','',0),(283,8,'2022-12-02 06:01:38','2019-06-07 11:02:31',' ','','','publish','closed','closed','','283','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=283',6,'nav_menu_item','',0),(288,8,'2019-06-07 11:08:25','2019-06-07 11:08:25','Mother Child Reading','Mother Child Reading','','inherit','open','closed','','mother-child-reading','','','2019-06-07 11:08:29','2019-06-07 11:08:29','',207,'https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg',0,'attachment','image/jpeg',0),(289,8,'2019-06-07 11:08:37','2019-06-07 11:08:37','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" />\r\n<u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\" target=\"_blank\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed (310) 453-1212 to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.\r\n\r\n  <a href=\"#\">Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2019-06-07 11:08:37','2019-06-07 11:08:37','',207,'https://www.drfields.com/uncategorized/207-revision-v1/',0,'revision','',0),(290,8,'2019-06-07 11:09:07','2019-06-07 11:09:07','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\" target=\"_blank\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed (310) 453-1212 to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.\r\n\r\n  <a href=\"#\">Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2019-06-07 11:09:07','2019-06-07 11:09:07','',207,'https://www.drfields.com/uncategorized/207-revision-v1/',0,'revision','',0),(291,8,'2019-06-07 11:10:07','2019-06-07 11:10:07','<h4>PRP Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is a PRP Doctor in Los Angeles and the founder of OrthoRegen. Dr. Fields is a leading expert in using (PRP) Platelet Rich Plasma therapy to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world. Dr. Fields help people avoid unnecessary orthopedic surgeries whether arthroscopic or full surgery.\r\n\r\n<h4>What is a PRP Doctor?</h4>\r\n\r\nA PRP Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. PRP Doctors like Dr. Fields use Platelet Rich Plasma Injections that help accelerate the normal healing process. Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of PRP Regenerative Treatments.\r\n\r\n<h4>What Does PRP stand for?</h4>\r\n\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as platelets, white blood cells, and red cells. The Harvest method that Dr. Fields uses concentrates the platelets 7-10 times of what is generally found in blood. Other systems concentrate them, but to a lesser extent.\r\n\r\n<h4>What is PRP Treatment?</h4>\r\n\r\nPRP treatment, as used in regenerative orthopedics, is a non-surgical healing treatment for healing soft tissue performed by a PRP Doctor. Dr. Fields makes precise injections of your own concentrated blood (PRP) into the affected areas to promote healing of musculoskeletal problems. Blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site.\r\n\r\n<h4>Is PRP Treatment Safe?</h4>\r\n\r\nPRP treatment is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities thoroughly with patients during the pre-treatment consultation.\r\nWhat Does a PRP Doctor Treat?\r\n\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that Dr. Fields treats. PRP has also been effective in treating arthritis, though more severe cases get better results with Dr. Fields’ Stem Cell treatments.\r\n\r\nDr. Fields has had great success in treating chronic pain and sports injuries including:\r\n<ul>\r\n    <li><strong>Knee Injuries:</strong> ACL, MCL LCL, Meniscus, Arthritis, Kneecap Instability</li>\r\n    See a complete list of Knee Injuries Treated with Prolotherapy here\r\n    <li><strong>Elbow Injuries: Tennis Elbow, Medial Epicondylitis,Tendonitis</li>\r\n    See a complete list of Elbow Injuries Treated with Prolotherapy here.\r\n    <li><strong>Shoulder Injuries: Rotator Cuff Tears, Labrum Tears, Tenositis</li>\r\n    See a complete list of Shoulder Injuries Treated with Prolotherapy here.\r\n    <li><strong>Back Injuries: Arthritis, Facet Joints, Sacro-Iliac dysfunction</li>\r\n    See a complete list of Back Injuries Treated with Prolotherapy here.\r\n    <li><strong>Hip Injuries: Tenositis, Bursitis,Labrum</li>\r\n    See a complete list of Hip Injuries Treated with Prolotherapy here.\r\n    <li><strong>Foot/Ankle Injuries: Ankle Sprains, Arthritis, Achilles Dysfunction, Tendonitis</li>\r\n    See a complete list of Foot/Ankle Injuries Treated with Prolotherapy here.\r\n    <li><strong>Hand/Wrist/ Injuries: Finger/Joint Tendinitis, Ligament Tears, Arthritis, Carpal tunnel</li>\r\n    See a complete list of Hand/Wrist Injuries Treated with Prolotherapy here.\r\n\r\n<h4>Are You A Candidate for PRP Treatment?</h4>\r\n\r\nCall <a href=\"#\">310-455-8242</a> today for a free phone consultation with Dr. Fields our PRP Doctor to see if PRP treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"#\">contact the OrthoRegen\'s office </a>to set up an in-person consultation.\r\n\r\n  <a href=\"#\">Schedule Your Appointment Today!</a> ','PRP Doctor','','inherit','closed','closed','','266-revision-v1','','','2019-06-07 11:10:07','2019-06-07 11:10:07','',266,'https://www.drfields.com/uncategorized/266-revision-v1/',0,'revision','',0),(292,8,'2019-06-07 11:19:41','2019-06-07 11:19:41','<h2>Stem Cell Doctor in the Los Angeles Area</h2>\r\nPeter A. Fields, MD DC, is a Stem Cell Doctor in Los Angeles and the founder of OrthoRegen<sup>®</sup>. Dr. Fields is a leading expert in using Stem Cell Treatments for joint and spine regeneration. With the different forms of Regenerative Orthopedics, Dr. Fields helps people avoid unnecessary orthopedic surgeries. That includes arthroscopic procedures and more extensive surgeries. Dr. Fields is passionate about helping his clients by eliminating their joint pain. Many patients enjoy the increased function and optimal long-term results with the use of Stem Cell Regenerative Treatments.\r\n<h3>What is a Stem Cell Doctor?</h3>\r\n[caption id=\"attachment_2337\" align=\"alignright\" width=\"315\"]<img class=\"size-medium wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" /> <strong>     Stem Cell Doctor Peter Fields, MD, DC</strong>[/caption]\r\n\r\nA Stem Cell Doctor like Peter A. Fields, MD, DC, provides Regenerative Orthopedics solutions like Stem Cell Therapy, PRP, and Prolotherapy for painful joint conditions. And all of these techniques are non-surgical alternatives to joint and spine repair. When Stem Cell Therapy is recommended, Dr. Fields utilizes the Gold Standard in Stem Cell therapy.\r\n\r\nWhat makes it the Gold Standard? At OrthoRegen, we use 4 different regenerative techniques to provide the greatest outcomes to regenerate the injured soft tissue. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Click here to find out more about the Gold Standard in Stem Cell Therapy.</a>\r\n\r\n<strong>Regenerative medicine is growing in popularity in the medical world as an alternative to invasive orthopedic surgeries, including joint replacement.</strong> The remarkable thing about Stem Cells is that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, cartilage cells or meniscus cells.\r\n<h3>What Conditions Can a Stem Cell Therapy Help?</h3>\r\nDr. Fields treats weakened, torn, or damaged ligaments. So if you are suffering from tendon tears, ligament tears, worn-out cartilage, a torn meniscus, or injured labrum...Regenerative Orthopedics is the ideal non-surgical treatment for you. And excitingly, Stem Cell Therapy is also very effective at treating arthritic conditions...even severe arthritis.\r\n<h4><strong>Peter A. Fields, MD, DC has had great success in treating joint conditions with Stem Cell Therapy, including: </strong></h4>\r\n<ul>\r\n 	<li>\"Bone-on-Bone\" Arthritis</li>\r\n 	<li>Severe Arthritis</li>\r\n 	<li>Degenerated Joint</li>\r\n 	<li>Torn, Worn, or Missing Cartilage</li>\r\n</ul>\r\n<a href=\"http://Amniotic “Stem Cells”?\">Click here</a> to find out more about Stem Cell Treatments like <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-options-for-arthritis/\">Amniotic “Stem Cells” and One-Shot Magic Cures</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>What is Stem Cell Therapy?</h3>\r\nStem Cell Therapy is an injection treatment of stem cells into the joint or affected area to promote healing. This procedure is usually used in cases such as where a joint replacement has been recommended when patients have been told their joint is \"bone-on-bone,\" in advanced arthritis, and other aggressive injuries.\r\n\r\nAs stated earlier, Stem Cell Therapy is just one type of Regenerative Orthopedics. And at OrthoRegen, we use the Gold Standard in Stem Cell Therapy because it is extremely comprehensive to help you avoid invasive surgery.\r\n\r\nStem Cell Therapy at OrthoRegen is a non-surgical healing treatment to repair soft tissue. Stem Cell Therapy incorporates autologous (your own) culture-expanded bone marrow mesenchymal stem cells and adipose (fat) stem cells in a platelet-rich-fibrin glue. Then, Dextrose Prolotherapy is applied around the entire area. It really is the best way to achieve the greatest possible results without the need for surgery.\r\n<h3>Are Stem Cell Treatments Safe?</h3>\r\nStem Cell Treatments at OrthoRegen are an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects that vary depending on the area being treated. The Stem Cell Doctor will discuss these possibilities fully with patients during the pre-treatment consultation. All Regenerative Orthopedic therapies are only recommended after an extensive history and physical exam.\r\n<h3>Are You A Candidate for Stem Cell Therapy?</h3>\r\nHave you been told you need to have joint replacement surgery -- whether that\'s shoulder replacement surgery, hip replacement surgery, knee replacement surgery (or any other joint)? Or has your doctor said that your condition is bone-on-bone or severely arthritic? Then there is a great possibility that Stem Cell Therapy is for you! And you owe it to yourself to examine all surgical alternatives before going under the knife.\r\n\r\nSpine Surgery and joint replacement surgery are very invasive procedures. And each comes with its own long list of risks and reasons to avoid it at all costs. Surgery comes with hospital stays, long recovery times, potential (dangerous) complications, and the possible need to have the procedure redone at some point.\r\n<h3>Contact Us for An Evaluation for Stem Cell Therapy</h3>\r\nMake an appointment with our Stem Cell Doctor for an evaluation to see if you are a good candidate for the Gold Standard in Stem Cell Therapy for Spine and Joints. Call <a href=\"tel:+[phone_raw]\">[phone] </a>to Schedule Your Appointment Today!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stem Cell Doctor','','publish','open','closed','','stem-cell-doctor','','','2021-04-26 20:14:19','2021-04-26 20:14:19','',0,'https://www.drfields.com/?p=292',0,'post','',0),(293,8,'2019-06-07 11:14:50','2019-06-07 11:14:50','<br>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\" target=\"_blank\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed (310) 453-1212 to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.\r\n\r\n  <a href=\"#\">Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2019-06-07 11:14:50','2019-06-07 11:14:50','',207,'https://www.drfields.com/uncategorized/207-revision-v1/',0,'revision','',0),(294,8,'2019-06-07 11:15:10','2019-06-07 11:15:10','<p>&nbsp; </p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\" target=\"_blank\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed (310) 453-1212 to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.\r\n\r\n  <a href=\"#\">Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2019-06-07 11:15:10','2019-06-07 11:15:10','',207,'https://www.drfields.com/uncategorized/207-revision-v1/',0,'revision','',0),(295,8,'2019-06-07 11:16:47','2019-06-07 11:16:47','<p>&nbsp; </p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\" target=\"_blank\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed (310) 453-1212 to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<p><u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.</p>\r\n\r\n  <a href=\"#\">Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2019-06-07 11:16:47','2019-06-07 11:16:47','',207,'https://www.drfields.com/uncategorized/207-revision-v1/',0,'revision','',0),(296,8,'2019-06-07 11:17:06','2019-06-07 11:17:06','<p>&nbsp; </p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\" target=\"_blank\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed (310) 453-1212 to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<p class=\"text-center\"><u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.</p>\r\n\r\n  <a href=\"#\">Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2019-06-07 11:17:06','2019-06-07 11:17:06','',207,'https://www.drfields.com/uncategorized/207-revision-v1/',0,'revision','',0),(297,8,'2019-06-07 11:18:58','2019-06-07 11:18:58','<p>&nbsp; </p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\" target=\"_blank\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed (310) 453-1212 to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<p class=\"text-center\"><u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.</p>\r\n\r\n  <a class=\"secondaryButton bglight\" href=\"#\">Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2019-06-07 11:18:58','2019-06-07 11:18:58','',207,'https://www.drfields.com/uncategorized/207-revision-v1/',0,'revision','',0),(298,8,'2019-06-07 11:19:41','2019-06-07 11:19:41','<h4>Stem Cell Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is Stem Cell Doctor in Los Angeles and the founder of OrthoRegen. Dr. Fields is a leading expert in using Stem Cell Treatments for joints and Spine Regeneration. Dr. Fields help people avoid unnecessary orthopaedic surgeries whether full surgery or arthroscopic procedure. Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of Stem Cell  Regenerative Treatments.\r\n\r\n<h4>What is a Stem Cell Doctor?</h4>\r\n\r\nA Stem Cell Doctor provides regenerative orthopaedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields uses Stem Cell therapy to regenerate body tissue. Regenerative medicine is growing in popularity in the medical world as an alternative to invasive orthopaedic surgeries including joint replacement. The remarkable thing about Stem Cells is that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example,  cartilage cells or meniscus cells.\r\n\r\n<h4>What Conditions Can a Stem Cell Doctor Help?</h4>\r\n\r\nDr. Fields treats weakened, torn or damaged ligaments, as well as tendons, torn cartilage, muscle tears, menisci or labrums. Stem Cell treatment has also been effective in treating severe arthritis conditions.\r\n\r\n<strong>Dr. Fields has had great success in treating joint conditions with Stem Cell Therapy including:</strong>\r\n<ul>\r\n   <li>Bone-on-Bone</li>\r\n    <li>Severe Arthritis</li>\r\n    <li>Degenerated Joint</li>\r\n    <li>Torn, Worn or Missing Cartilage</li></ul>\r\n\r\nSee more about Stem Cell Treatment.\r\n\r\n<h4>What is Stem Cell Treatment?</h4>\r\n\r\nStem Cell treatment is an injection of stem cells into the joint or affected area to promote healing. This procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries.\r\n\r\nDr. Fields  Stem Cell technique one of the four Gold Standards Regenerative Orthopedics procedures to help you avoid invasive surgery.\r\n\r\nStem Cell Treatment, as used in regenerative orthopaedics, is a non-surgical healing treatment for healing soft tissue performed by a Stem Cell Doctor. Stem Cell treatment is the transplantation of autologous culture-expanded bone marrow mesenchymal stem cells in platelet rich-fibrin glue.\r\n\r\n<h4>Is Stem Cell Treatment Safe?</h4>\r\n\r\nStem Cell treatment is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. The Stem Cell Doctor will discuss these possibilities fully with patients during the pre-treatment consultation. This is only recommended after a very thorough history and physical exam.\r\n\r\n<h4>Are You A Candidate for Stem Cell Treatment?</h4>\r\n\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s shoulder replacement surgery, hip replacement surgery, knee replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to bone-on-bone, arthritis or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nSpine Surgery and Joint Replacement Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, long recovery times, potential (dangerous) complications, and the need to have the procedure redone at some point.\r\n\r\nMake an appointment with our Stem Cell Doctor for an evaluation to see if you are a good candidate for Dr. Fields Gold Standard Stem Cell Treatment for - Spine and Joints. Call <a href=\"#\">310-455-8242</a> to Schedule Your Appointment Today!\r\n\r\n  <a href=\"#\">Schedule Your Appointment Today!</a> ','Stem Cell Doctor','','inherit','closed','closed','','292-revision-v1','','','2019-06-07 11:19:41','2019-06-07 11:19:41','',292,'https://www.drfields.com/uncategorized/292-revision-v1/',0,'revision','',0),(299,8,'2019-06-07 11:19:43','2019-06-07 11:19:43','<p>&nbsp; </p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\" target=\"_blank\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed (310) 453-1212 to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<p class=\"text-center\"><u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.</p>\r\n\r\n  <a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2019-06-07 11:19:43','2019-06-07 11:19:43','',207,'https://www.drfields.com/uncategorized/207-revision-v1/',0,'revision','',0),(300,8,'2019-06-07 11:25:54','2019-06-07 11:25:54','<p>&nbsp; </p>\r\n<strong>Fees</strong>\r\n\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time. \r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n\r\nProlotherapy Charges\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n  <a href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you instil pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\nWoman Paying\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>. \r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a href=\"#\">Schedule Your Appointment Today!</a>','Fees & Policies','','inherit','closed','closed','','202-revision-v1','','','2019-06-07 11:25:54','2019-06-07 11:25:54','',202,'https://www.drfields.com/uncategorized/202-revision-v1/',0,'revision','',0),(301,8,'2019-06-07 11:26:32','2019-06-07 11:26:32','<p>&nbsp; </p>\r\n<strong>Fees</strong>\r\n\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time. \r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n\r\n<strong>Prolotherapy Charges</strong>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n  <a href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you instil pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\nWoman Paying\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>. \r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a href=\"#\">Schedule Your Appointment Today!</a>','Fees & Policies','','inherit','closed','closed','','202-revision-v1','','','2019-06-07 11:26:32','2019-06-07 11:26:32','',202,'https://www.drfields.com/uncategorized/202-revision-v1/',0,'revision','',0),(302,8,'2019-06-07 11:32:37','2019-06-07 11:32:37','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\n[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]After each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 7X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Dr. Fields, The Athletic Doc®, post race\" title=\"Dr. Fields, The Athletic Doc®, post race\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-2016-275.jpg\" style=\"width: 204px;\"><br>\r\n<strong> Dr. Fields,The Athletic Doc<sup>®</sup>, post race</strong>\r\n<a href=\"https://goo.gl/photos/iYRMcML2UYWmW2pQ6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Switzerland<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 7th Ironman','','publish','open','closed','','race-report-7th-ironman','','','2020-06-30 17:58:43','2020-06-30 17:58:43','',0,'https://www.drfields.com/?p=302',0,'post','',0),(303,8,'2019-06-07 11:30:19','2019-06-07 11:30:19','\r\n<h2>We have moved!!</h2>\r\n<img title=\"Dr. Peter Fields\" src=\"https://www.drfields.com/portals/0/Images/drfields-bio-img.jpg\" alt=\"Dr. Peter Fields\" />Our new address is:\r\n<strong> 2730 Wilshire Blvd, Suite 220\r\nSanta Monica, Ca 90403</strong>\r\nThe phone, fax and email is all the same.\r\n\r\nThe bldg. is located on the southwest corner of Wilshire Blvd. and Harvard Street, which is two blocks east of Wilshire and 26th Street in Santa Monica.\r\nThis is only one mile from our old location.\r\n\r\n<strong>We will not be able to provide validated parking at this new site.</strong>\r\nThere is ample metered parking on Wilshire Blvd.\r\nThere is also metered and non-metered parking on the side streets.\r\nFor those wishing to use the parking garage, they charge $2 per fifteen minutes with a maximum of $16. It is all automated and there is no parking attendant.\r\n\r\nWe look forward to seeing everyone soon at our new home.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','','','inherit','closed','closed','','302-revision-v1','','','2019-06-07 11:30:19','2019-06-07 11:30:19','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(304,8,'2019-06-07 11:32:37','2019-06-07 11:32:37','<div id=\"dnn_ctr686_ModuleContent\" class=\"DNNModuleContent ModDNNHTMLC\">\r\n<div id=\"dnn_ctr686_HtmlModule_lblContent\" class=\"Normal\">\r\n<div>\r\n<div class=\"content\">\r\n\r\n<img title=\"ironman switzerland\" src=\"https://www.drfields.com/portals/0/Images/AthleticDoc/ironman-switzerland-logo.jpg\" alt=\"ironman switzerland\" />\r\n\r\n<strong>Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong>\r\n\r\n&nbsp;\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong>GETTING THERE</strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong>RACE DAY MORNING</strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day\r\n<div><img title=\"Dr. Fields after the 2.4 mile swim\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Switzerland%202016/Switzerland-Swim-2016-275.jpg\" alt=\"Dr. Fields after the 2.4 mile swim\" />\r\nDr. Fields after the 2.4 mile swim</div>\r\n<strong>THE SWIM: 2.4 Miles</strong>\r\n\r\nThey had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n<div><img title=\"Switzerland Bike\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Switzerland%202016/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike\" />\r\nDr. Fields during the 112 mile bike ride</div>\r\n<strong>THE BIKE: 112 Miles</strong>\r\n\r\nAfter getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n<div><img title=\"Switzerland Run 2016\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Switzerland%202016/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016\" />\r\nDr. Fields during the 26.2 mile run</div>\r\n<strong>THE RUN: 26.2 Miles</strong>\r\n\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\nAfter each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.<img title=\"Dr. Fields crossing the finish line\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Switzerland%202016/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Dr. Fields crossing the finish line\" />\r\nDr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2019-06-07 11:32:37','2019-06-07 11:32:37','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (306,8,'2019-06-07 11:40:19','2019-06-07 11:40:19','<h2 class=\"col-md-8\">Ironman 8 in Cozumel, Mexico</h2>\r\n[caption id=\"attachment_4955\" align=\"alignright\" width=\"334\"]<img class=\" wp-image-4955\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo-1.jpg\" alt=\"Cozumel Logo\" width=\"334\" height=\"204\" /> <em><strong>      Ironman 8 in Cozumel, Mexico 2016</strong></em>[/caption]\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\n~Fred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my Ironman 8 in Cozumel, Mexico on November 27, 2016.\r\n<h3><strong>GETTING THERE</strong></h3>\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hours to Cozumel. I arrived five days before the race. Then the usual registering, getting ready, and just sitting back and relaxing the last few days.\r\n<h3><strong class=\"subhead\">RACE DAY MORNING</strong></h3>\r\nI awoke at 3:30 a.m., breakfast at 4 a.m, and then to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have your bike, so first, you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"244\"]<img class=\" wp-image-327\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"244\" height=\"435\" /> <strong>Swim Start with his parents\' initials on his forearms</strong>[/caption]\r\n<h3 class=\"col-md-8\"><strong class=\"subhead\">THE SWIM: 2.4 Miles</strong></h3>\r\nThe swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded.\r\n\r\nThe water is very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens.\r\n\r\nWhile swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually, you swim with the current but occasionally it can change. I just moved on and kept motoring through. In the end, I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time.\r\n\r\nThen out of the water, run over to the transition tent to dry off, get my helmet, bike shoes, and sunglasses, and then on to the bike for 112 mile bike ride.\r\n<h3><strong class=\"subhead\">THE BIKE: 112 Miles</strong></h3>\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"316\"]<img class=\" wp-image-328\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"316\" height=\"413\" /> <strong>Dr. Fields during the 112-mile bike ride</strong>[/caption]\r\n<p class=\"col-md-8\">Having done this race three times before, I knew that bike course well. The backside of the island has a 12-mile stretch where you are hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before.</p>\r\n<p class=\"col-md-8\">In the second loop, I kept my pace going but the winds got tougher on the backside of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike.</p>\r\n<p class=\"col-md-8\">In the third loop, I did well on the leeward side of the island but once I hit the windward side of the island, I slowed because the winds were blowing over 30 miles an hour. At this point, you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.</p>\r\n\r\n<h3><strong class=\"subhead\">THE RUN: 26.2 Miles</strong></h3>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"278\"]<img class=\" wp-image-329\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"278\" height=\"500\" /> <strong>Dr. Fields during the 26.2 mile run</strong>[/caption]\r\n\r\nAt a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. In my first loop, which is about 8.8 miles, I felt very good.\r\n\r\nDuring my second loop, I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.\r\n\r\n[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img class=\"size-full wp-image-332\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" /> <strong> Dr. Fields crossing the finish line</strong>[/caption]\r\n\r\nDr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\r\n<div class=\"clear\"></div>\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 8X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\"><img title=\"post race pic\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finisher-275.jpg\" alt=\"post race pic\" />\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong>\r\nThe Athletic Doc<sup>®</sup>, </strong></span>post race pic\r\n<a href=\"https://goo.gl/photos/WqU8aVsvXa5SgLLo6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Cozumel\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Race Report 8th Ironman','','publish','open','closed','','race-report-8th-ironman','','','2022-02-26 00:06:56','2022-02-26 00:06:56','',0,'https://www.drfields.com/?p=306',0,'post','',0),(307,8,'2019-06-07 11:40:19','2019-06-07 11:40:19','<img title=\"Ironman Cozumel Logo\" src=\"https://www.drfields.com/portals/0/Images/AthleticDoc/Cozumel-Logo.jpg\" alt=\"Ironman Cozumel Logo\" />\r\n\r\n<strong>Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong>\r\n\r\n&nbsp;\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong>GETTING THERE</strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n<strong>RACE DAY MORNING</strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n<div><img title=\"Swim Start with his parents\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Cozumel%202016/Cozumel-2016-Swim-2-160.jpg\" alt=\"Swim Start with his parents\" />\r\nSwim Start with his parents initials on his forearms</div>\r\n<strong>THE SWIM: 2.4 Miles</strong>\r\n\r\nThe swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n<div><img title=\"Cozumel 2016 Bike\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Cozumel%202016/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike\" />\r\nDr. Fields during the 112 mile bike ride</div>\r\n<strong>THE BIKE: 112 Miles</strong>\r\n\r\nHaving done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n<div><img title=\"Cozumel 2016 Run\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Cozumel%202016/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run\" />\r\nDr. Fields during the 26.2 mile run</div>\r\n<strong>THE RUN: 26.2 Miles</strong>\r\n\r\nAt a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.<img title=\"Dr. Fields crossing the finish line\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Cozumel%202016/Cozumel-2016-Finish-160.jpg\" alt=\"Dr. Fields crossing the finish line\" />\r\nDr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2019-06-07 11:40:19','2019-06-07 11:40:19','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(308,8,'2022-12-02 06:01:38','2019-06-08 02:50:52',' ','','','publish','closed','closed','','308','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=308',18,'nav_menu_item','',0),(309,8,'2022-12-02 06:01:38','2019-06-08 02:50:52',' ','','','publish','closed','closed','','309','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=309',17,'nav_menu_item','',0),(310,8,'2019-06-17 09:50:23','2019-06-17 09:50:23','<div class=\"col-md-8\">\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\n\n<h6 class=\"text-center\">Sunday July 27, 2016\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\n\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\nFred and Yvette Fields\n\n<strong><u>GETTING THERE</u></strong>\n\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\n\n<strong><u>RACE DAY MORNING</u></strong>\n\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\n\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\n\n<strong><u>THE BIKE: 112 Miles</u></strong>\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\n\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\n\n<strong><u>THE RUN: 26.2 Miles</u></strong>\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\n\n[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]After each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\n\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\n\n<strong>POST SCRIPT</strong>\n\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\n\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\n\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\n\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\n\nNo matter how bad things got they never gave up hope,\nThey instilled this in me from early childhood.\nAnd it stayed with me and helped me through this race.\n\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\n\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\nThank You.\n\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\n\nOne last special dedication.\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\nHe sometimes knew more about me during the race then I did.\nMerci beaucoup, Monsieur Jamar!\n\n&nbsp;\n<div class=\"clear\"></div>\n<strong>Peter A. Fields, MD DC</strong>\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\n</div>\n<div class=\"col-md-4\" id=\"sidebar2\">\n<img alt=\"Dr. Fields, The Athletic Doc®, post race\" title=\"Dr. Fields, The Athletic Doc®, post race\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-2016-275.jpg\" style=\"width: 204px;\"><br>\n<strong> Dr. Fields,The Athletic Doc<span style=\"font-size: 10px;\"><sup>®</sup></span>, post race</strong>\n<a href=\"https://goo.gl/photos/iYRMcML2UYWmW2pQ6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Switzerland<br>\nClick For More Photos</a>\nClick below for Pictures &amp; Story&nbsp;\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\n<a href=\"about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\n<a href=\"about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\n\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-autosave-v1','','','2019-06-17 09:50:23','2019-06-17 09:50:23','',302,'https://www.drfields.com/uncategorized/302-autosave-v1/',0,'revision','',0),(311,8,'2019-06-08 02:52:01','2019-06-08 02:52:01','Ironman Switzerland Logo','Ironman Switzerland Logo','','inherit','open','closed','','ironman-switzerland-logo','','','2019-06-08 02:52:06','2019-06-08 02:52:06','',302,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg',0,'attachment','image/jpeg',0),(312,8,'2019-06-08 02:52:50','2019-06-08 02:52:50','<p>&nbsp;</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n&nbsp;\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong>GETTING THERE</strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong>RACE DAY MORNING</strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day\r\n<div><img title=\"Dr. Fields after the 2.4 mile swim\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Switzerland%202016/Switzerland-Swim-2016-275.jpg\" alt=\"Dr. Fields after the 2.4 mile swim\" />\r\nDr. Fields after the 2.4 mile swim</div>\r\n<strong>THE SWIM: 2.4 Miles</strong>\r\n\r\nThey had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n<div><img title=\"Switzerland Bike\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Switzerland%202016/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike\" />\r\nDr. Fields during the 112 mile bike ride</div>\r\n<strong>THE BIKE: 112 Miles</strong>\r\n\r\nAfter getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n<div><img title=\"Switzerland Run 2016\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Switzerland%202016/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016\" />\r\nDr. Fields during the 26.2 mile run</div>\r\n<strong>THE RUN: 26.2 Miles</strong>\r\n\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\nAfter each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.<img title=\"Dr. Fields crossing the finish line\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Switzerland%202016/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Dr. Fields crossing the finish line\" />\r\nDr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2019-06-08 02:52:50','2019-06-08 02:52:50','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(313,8,'2019-06-08 02:54:05','2019-06-08 02:54:05','Switzerland Swim 2016 275','Switzerland Swim 2016 275','Dr. Fields after the 2.4 mile swim','inherit','open','closed','','switzerland-swim-2016-275','','','2019-06-08 02:54:14','2019-06-08 02:54:14','',302,'https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg',0,'attachment','image/jpeg',0),(314,8,'2019-06-08 02:54:55','2019-06-08 02:54:55','<p>&nbsp;</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong>GETTING THERE</strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong>RACE DAY MORNING</strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]\r\n<strong>THE SWIM: 2.4 Miles</strong>\r\n\r\nThey had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n<div><img title=\"Switzerland Bike\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Switzerland%202016/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike\" />\r\nDr. Fields during the 112 mile bike ride</div>\r\n<strong>THE BIKE: 112 Miles</strong>\r\n\r\nAfter getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n<div><img title=\"Switzerland Run 2016\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Switzerland%202016/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016\" />\r\nDr. Fields during the 26.2 mile run</div>\r\n<strong>THE RUN: 26.2 Miles</strong>\r\n\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\nAfter each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.<img title=\"Dr. Fields crossing the finish line\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Switzerland%202016/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Dr. Fields crossing the finish line\" />\r\nDr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2019-06-08 02:54:55','2019-06-08 02:54:55','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(315,8,'2019-06-08 02:56:20','2019-06-08 02:56:20','<p>&nbsp;</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<h7>RACE DAY MORNING</h7>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n<div><img title=\"Switzerland Bike\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Switzerland%202016/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike\" />\r\nDr. Fields during the 112 mile bike ride</div>\r\n<strong>THE BIKE: 112 Miles</strong>\r\n\r\nAfter getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n<div><img title=\"Switzerland Run 2016\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Switzerland%202016/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016\" />\r\nDr. Fields during the 26.2 mile run</div>\r\n<strong>THE RUN: 26.2 Miles</strong>\r\n\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\nAfter each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.<img title=\"Dr. Fields crossing the finish line\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Switzerland%202016/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Dr. Fields crossing the finish line\" />\r\nDr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2019-06-08 02:56:20','2019-06-08 02:56:20','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(316,8,'2019-06-08 02:59:38','2019-06-08 02:59:38','Switzerland Bike 2016 275','Switzerland Bike 2016 275','Dr. Fields during the 112 mile bike ride','inherit','open','closed','','switzerland-bike-2016-275','','','2019-06-08 02:59:51','2019-06-08 02:59:51','',302,'https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg',0,'attachment','image/jpeg',0),(317,8,'2019-06-08 03:00:37','2019-06-08 03:00:37','<p>&nbsp;</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n<div><img title=\"Switzerland Run 2016\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Switzerland%202016/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016\" />\r\nDr. Fields during the 26.2 mile run</div>\r\n<strong>THE RUN: 26.2 Miles</strong>\r\n\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\nAfter each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.<img title=\"Dr. Fields crossing the finish line\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Switzerland%202016/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Dr. Fields crossing the finish line\" />\r\nDr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2019-06-08 03:00:37','2019-06-08 03:00:37','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(318,8,'2019-06-08 03:01:54','2019-06-08 03:01:54','Switzerland Run 2016 275','Switzerland Run 2016 275','Dr. Fields during the 26.2 mile run','inherit','open','closed','','switzerland-run-2016-275','','','2019-06-08 03:02:14','2019-06-08 03:02:14','',302,'https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg',0,'attachment','image/jpeg',0),(319,8,'2019-06-08 03:04:21','2019-06-08 03:04:21','Switzerland Finish Line 2016 275','Switzerland Finish Line 2016 275','Dr. Fields crossing the finish line','inherit','open','closed','','switzerland-finish-line-2016-275','','','2019-06-08 03:04:34','2019-06-08 03:04:34','',302,'https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg',0,'attachment','image/jpeg',0),(320,8,'2019-06-08 03:05:04','2019-06-08 03:05:04','<p>&nbsp;</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\nAfter each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]\r\nDr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2019-06-08 03:05:04','2019-06-08 03:05:04','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(321,8,'2019-06-08 03:07:21','2019-06-08 03:07:21','<p>&nbsp;</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\nAfter each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2019-06-08 03:07:21','2019-06-08 03:07:21','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(322,8,'2019-06-08 03:08:09','2019-06-08 03:08:09','<p>&nbsp;</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\n[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]After each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2019-06-08 03:08:09','2019-06-08 03:08:09','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(323,8,'2019-06-08 03:09:01','2019-06-08 03:09:01','<p>&nbsp;</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\n[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]After each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\r\n','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2019-06-08 03:09:01','2019-06-08 03:09:01','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(324,8,'2019-06-08 03:09:21','2019-06-08 03:09:21','<p>&nbsp;</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\n[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]After each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\r\n','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2019-06-08 03:09:21','2019-06-08 03:09:21','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(325,8,'2019-06-17 09:03:06','2019-06-17 09:03:06','<div class=\"col-md-8\">\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\n\n<h6 class=\"text-center\">Sunday Nov 27, 2016\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\n\n\"Never give up on your goals no matter how tough things get.\"\nFred and Yvette Fields\n\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\n\n<strong><span>GETTING THERE</span></strong>\n\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\n\n\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\n\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\n\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\n\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\n\n\n\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /><strong>Swim Start with his parents initials on his forearms</strong>[/caption]<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\n\nThe swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\n<div class=\"clear\"></div>\n\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\n\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\n\n\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> <strong>Dr. Fields during the 26.2 mile run</strong>[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" class=\"size-full wp-image-332\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\n\n<div class=\"clear\"></div>\n<strong>POST SCRIPT</strong>\n\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\n\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\n\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\n\n<div class=\"clear\"></div>\n<strong>Peter A. Fields, MD DC</strong>\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>\n</div>\n<div class=\"col-md-4\" id=\"sidebar2\">\n\n</div>','Race Report 8th Ironman','','inherit','closed','closed','','306-autosave-v1','','','2019-06-17 09:03:06','2019-06-17 09:03:06','',306,'https://www.drfields.com/uncategorized/306-autosave-v1/',0,'revision','',0),(326,8,'2019-06-08 03:12:32','2019-06-08 03:12:32','Cozumel Logo','Cozumel Logo','','inherit','open','closed','','cozumel-logo','','','2019-06-08 03:12:37','2019-06-08 03:12:37','',306,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg',0,'attachment','image/jpeg',0),(327,8,'2019-06-08 03:14:36','2019-06-08 03:14:36','Cozumel 2016 Swim 2 160','Cozumel 2016 Swim 2 160','Swim Start with his parents initials on his forearms','inherit','open','closed','','cozumel-2016-swim-2-160','','','2019-06-08 03:14:43','2019-06-08 03:14:43','',306,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg',0,'attachment','image/jpeg',0),(328,8,'2019-06-08 03:16:09','2019-06-08 03:16:09','Cozumel 2016 Bike 160','Cozumel 2016 Bike 160','Dr. Fields during the 112 mile bike ride','inherit','open','closed','','cozumel-2016-bike-160','','','2019-06-08 03:16:13','2019-06-08 03:16:13','',306,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg',0,'attachment','image/jpeg',0),(329,8,'2019-06-08 03:16:49','2019-06-08 03:16:49','Cozumel 2016 Run 160','Cozumel 2016 Run 160','Dr. Fields during the 26.2 mile run','inherit','open','closed','','cozumel-2016-run-160','','','2019-06-08 03:17:06','2019-06-08 03:17:06','',306,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg',0,'attachment','image/jpeg',0),(330,8,'2019-06-08 03:17:18','2019-06-08 03:17:18','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\r\n\r\n<h6 class=\"text-center\">Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong><span>GETTING THERE</span></strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /> Swim Start with his parents initials on his forearms[/caption]The swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /> Dr. Fields during the 112 mile bike ride[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> Dr. Fields during the 26.2 mile run[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.<img title=\"Dr. Fields crossing the finish line\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Cozumel%202016/Cozumel-2016-Finish-160.jpg\" alt=\"Dr. Fields crossing the finish line\" />\r\nDr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2019-06-08 03:17:18','2019-06-08 03:17:18','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(331,8,'2019-06-08 03:17:47','2019-06-08 03:17:47','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\r\n\r\n<h6 class=\"textcenter\">Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong><span>GETTING THERE</span></strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /> Swim Start with his parents initials on his forearms[/caption]The swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /> Dr. Fields during the 112 mile bike ride[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> Dr. Fields during the 26.2 mile run[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.<img title=\"Dr. Fields crossing the finish line\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Cozumel%202016/Cozumel-2016-Finish-160.jpg\" alt=\"Dr. Fields crossing the finish line\" />\r\nDr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2019-06-08 03:17:47','2019-06-08 03:17:47','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(332,8,'2019-06-08 03:21:32','2019-06-08 03:21:32','Cozumel 2016 Finish 160','Cozumel 2016 Finish 160','Dr. Fields crossing the finish line','inherit','open','closed','','cozumel-2016-finish-160','','','2019-06-08 03:21:46','2019-06-08 03:21:46','',306,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg',0,'attachment','image/jpeg',0),(333,8,'2019-06-08 03:22:07','2019-06-08 03:22:07','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\r\n\r\n<h6 class=\"textcenter\">Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong><span>GETTING THERE</span></strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /><strong>Swim Start with his parents initials on his forearms</strong>[/caption]The swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n<br>\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> Dr. Fields during the 26.2 mile run[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.Dr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" class=\"size-full wp-image-332\" /> Dr. Fields crossing the finish line[/caption]\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2019-06-08 03:22:07','2019-06-08 03:22:07','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(334,8,'2019-06-08 03:23:08','2019-06-08 03:23:08','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\r\n\r\n<h6 class=\"textcenter\">Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong><span>GETTING THERE</span></strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /><strong>Swim Start with his parents initials on his forearms</strong>[/caption]The swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n<br>\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> Dr. Fields during the 26.2 mile run[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.Dr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" class=\"size-full wp-image-332\" /> Dr. Fields crossing the finish line[/caption]\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2019-06-08 03:23:08','2019-06-08 03:23:08','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(335,8,'2019-06-08 03:23:46','2019-06-08 03:23:46','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\r\n\r\n<h6 class=\"text-center\">Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong><span>GETTING THERE</span></strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /><strong>Swim Start with his parents initials on his forearms</strong>[/caption]The swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n<br>\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> Dr. Fields during the 26.2 mile run[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.Dr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" class=\"size-full wp-image-332\" /> Dr. Fields crossing the finish line[/caption]\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2019-06-08 03:23:46','2019-06-08 03:23:46','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(336,8,'2019-06-08 03:25:05','2019-06-08 03:25:05','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\r\n\r\n<h6 class=\"text-center\">Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong><span>GETTING THERE</span></strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n\r\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /><strong>Swim Start with his parents initials on his forearms</strong>[/caption]The swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> Dr. Fields during the 26.2 mile run[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" class=\"size-full wp-image-332\" /> Dr. Fields crossing the finish line[/caption]Dr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2019-06-08 03:25:05','2019-06-08 03:25:05','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(337,8,'2019-06-08 03:27:22','2019-06-08 03:27:22','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\r\n\r\n<h6 class=\"text-center\">Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong><span>GETTING THERE</span></strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n\r\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /><strong>Swim Start with his parents initials on his forearms</strong>[/caption]The swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> <strong>Dr. Fields during the 26.2 mile run</strong>[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" class=\"size-full wp-image-332\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2019-06-08 03:27:22','2019-06-08 03:27:22','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(338,8,'2019-06-08 03:29:17','2019-06-08 03:29:17','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">PROLOGUE</strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p><p>&nbsp;</p>\r\n\r\n<strong class=\"subhead\">RACE DAY</strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_248\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]\r\nI ran as quick as I could with my bike shoes on to my bike. You could carry them but then you end up getting gravel on your feet. I took the bike off the rack and ran towards the exit. You\'re not allowed to get on your bike until you leave the transition area. Immediately upon exiting, the transition area, I mounted my bike and took off to start the 112 mile ride.\r\n\r\nI had my power meet on the bike, which in addition to power, would provide me with my heart rate and speed which are essential when riding long distance. The roads were dry and the sun was shining bright and the temperature was in the low eighties. I felt pretty good on the first lap. As you head towards the back of the island the winds pick up. For this approximately 15 mile stretch the winds were about 20 miles an hour blowing on shore. It was tough but not that bad. As you turn towards town to end your first loop the winds were pushing you forward. This was a much needed relief. As you get to town, there were hundreds, if not more, people yelling and cheering. It was very exciting and invigorating. For lap two you again go by some of the hotels and there were people out there cheering.\r\n\r\nAs I got to the back of the island again, the wind picked up and was close to 30 miles an hour. It was getting pretty tough and you just hung in there. Unfortunately this meant that you were down on your triathlon riding bars ( the extended bars you put your forearms on so you can just about lie flat while riding) all the time so as not to let the wind hit you in the chest. It put a tremendous strain on my neck, which I found out later that everybody had the same. You just kept going and going. During this loop, I also stopped at the special needs station at mile 56. This is where you can pick up your nutritional supplies for the second half of the race so you do not need to carry all of them at once. Again as I looped through town the crowds were cheering and it was very nice to get words of encouragement.\r\n\r\nFor the third loop the temperature has risen towards the upper 80\'s and low 90\'s and the winds really were kicking in. Now they were close to 40 miles an hour. It was really brutal. I had ridden this course three times in the past but this time the winds were the strongest . But somehow I kept going and going and managed to endure it. As I made the last turn to head the 9 miles back to town I knew that I had completed this part. Slightly slower than I expected but with the wind it was a slower time for everyone. \r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-run-160.jpg\" alt=\"Cozumel 2015 Run 160\" width=\"160\" height=\"301\" class=\"size-full wp-image-263\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAs I came into town again the crowds were cheering and yelling loudly. I handed off my bike to one of the volunteers there and quickly grabbed my transition bag and ran into the tent. Off with the biking shoes, on with the running shoes, throw some water over myself to help cool me down, put on my running hat, grab some nutrition, go to the bathroom and I was out the door.\r\n\r\nOf course when you transition out of this tent there are thousands of people out there yelling and screaming. The sun was still up so it was still pretty hot with it being in the 90s, But I felt pretty good. For about the first four point 4.4 miles, which is the length of the course (you do this back and forth 3 times) I was a little tight and not so fluid in my running. Along the way of course there are people cheering for about a mile and a half as you get outside of town and then sporadically there were people at hotels who would come out along the road to cheer us on. When I hit the turn around I felt really good and for the next 8.8 miles my legs and body felt really strong. As I got back to town and finished the first 8.8 mile loop the sun was going down which was a blessing because it had been very hot outside.\r\n\r\nThe next 8.8 loop I felt good but the energy was starting to be drained. The bike had taken a tremendous toll, not only on me but on other runners too. But I persevered and kept going. The best thing was my hamstring was not bothering me which had slowed me down during my last two Ironman races. And in May 2015, I had raced Ironman Brazil, where I had a lot of feet problems. None of this came around this time.\r\n\r\nI saw many people out there that I knew from the Los Angeles area or other races. The camaraderie amongst the athletes is tremendous and it\'s something that we all rely on and count on. As I came into town finishing the second loop I knew I only had one more loop to go. I was tired and drained having been racing for almost 12 hrs., but just kept going. Of course along the way I took lots of nutrition and keep myself as hydrated as much as possible. There was no rain this year, which was also nice since the prior previous time I had done this race we were running through knee high puddles.\r\n\r\nAfter leaving town and getting to the final around, I knew only had 4.4 miles left to go and realized that it was in the bag for me. As I came back into town and saw the crowds again, I felt the exhilarating feeling that one can only feel when finishing an Ironman. At this point I only had about a mile to go and knew I have finally done it. That is not only finish my 6th Ironman but my second one in six months . This was a challenge that I set for myself. Like my parents had always told me, set your goals and go for it.\r\nNever say never.\r\n\r\nThe final 100 meters are unbelievable feeling. All ones aches and pains fade away. As I approached the finish line, which is slightly elevated and bathed in lights, I heard the announcer say for the sixth time,\r\n\"Peter Fields, you are an Ironman\".\r\nIt never gets old.\r\nI finally knew that I had completed my conquest of doing two Ironman races in one year.\r\n\r\nOf course the whole way during the race, I never forgot about my parents. I had my mom’s initials written on my left arm and on my right arm I had my dad\'s initials. Both of these people were so special in my life and I have never forgotten them for even one day since each of them passed. Whenever it got tough, I would place my hand on either forearm and feel their presence within me and hear their words of encouragement telling me never to give up. I know they would have been as proud of me as I am of them.\r\n\r\nI want to thank everybody who sent me good wishes, those who kept me in their thoughts and those who followed me on the internet. All your thoughts and wishes kept me strong the whole race.\r\nThere were a few very special people that never stopped thinking about me the whole race. You know who you are and words cannot say thank you enough. \r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc® and 6X Ironman Triathlete</strong>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-08 03:29:17','2019-06-08 03:29:17','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(339,8,'2019-06-08 03:30:06','2019-06-08 03:30:06','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">PROLOGUE</strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p>\r\n<strong class=\"subhead\">RACE DAY</strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_248\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]\r\nI ran as quick as I could with my bike shoes on to my bike. You could carry them but then you end up getting gravel on your feet. I took the bike off the rack and ran towards the exit. You\'re not allowed to get on your bike until you leave the transition area. Immediately upon exiting, the transition area, I mounted my bike and took off to start the 112 mile ride.\r\n\r\nI had my power meet on the bike, which in addition to power, would provide me with my heart rate and speed which are essential when riding long distance. The roads were dry and the sun was shining bright and the temperature was in the low eighties. I felt pretty good on the first lap. As you head towards the back of the island the winds pick up. For this approximately 15 mile stretch the winds were about 20 miles an hour blowing on shore. It was tough but not that bad. As you turn towards town to end your first loop the winds were pushing you forward. This was a much needed relief. As you get to town, there were hundreds, if not more, people yelling and cheering. It was very exciting and invigorating. For lap two you again go by some of the hotels and there were people out there cheering.\r\n\r\nAs I got to the back of the island again, the wind picked up and was close to 30 miles an hour. It was getting pretty tough and you just hung in there. Unfortunately this meant that you were down on your triathlon riding bars ( the extended bars you put your forearms on so you can just about lie flat while riding) all the time so as not to let the wind hit you in the chest. It put a tremendous strain on my neck, which I found out later that everybody had the same. You just kept going and going. During this loop, I also stopped at the special needs station at mile 56. This is where you can pick up your nutritional supplies for the second half of the race so you do not need to carry all of them at once. Again as I looped through town the crowds were cheering and it was very nice to get words of encouragement.\r\n\r\nFor the third loop the temperature has risen towards the upper 80\'s and low 90\'s and the winds really were kicking in. Now they were close to 40 miles an hour. It was really brutal. I had ridden this course three times in the past but this time the winds were the strongest . But somehow I kept going and going and managed to endure it. As I made the last turn to head the 9 miles back to town I knew that I had completed this part. Slightly slower than I expected but with the wind it was a slower time for everyone. \r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-run-160.jpg\" alt=\"Cozumel 2015 Run 160\" width=\"160\" height=\"301\" class=\"size-full wp-image-263\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAs I came into town again the crowds were cheering and yelling loudly. I handed off my bike to one of the volunteers there and quickly grabbed my transition bag and ran into the tent. Off with the biking shoes, on with the running shoes, throw some water over myself to help cool me down, put on my running hat, grab some nutrition, go to the bathroom and I was out the door.\r\n\r\nOf course when you transition out of this tent there are thousands of people out there yelling and screaming. The sun was still up so it was still pretty hot with it being in the 90s, But I felt pretty good. For about the first four point 4.4 miles, which is the length of the course (you do this back and forth 3 times) I was a little tight and not so fluid in my running. Along the way of course there are people cheering for about a mile and a half as you get outside of town and then sporadically there were people at hotels who would come out along the road to cheer us on. When I hit the turn around I felt really good and for the next 8.8 miles my legs and body felt really strong. As I got back to town and finished the first 8.8 mile loop the sun was going down which was a blessing because it had been very hot outside.\r\n\r\nThe next 8.8 loop I felt good but the energy was starting to be drained. The bike had taken a tremendous toll, not only on me but on other runners too. But I persevered and kept going. The best thing was my hamstring was not bothering me which had slowed me down during my last two Ironman races. And in May 2015, I had raced Ironman Brazil, where I had a lot of feet problems. None of this came around this time.\r\n\r\nI saw many people out there that I knew from the Los Angeles area or other races. The camaraderie amongst the athletes is tremendous and it\'s something that we all rely on and count on. As I came into town finishing the second loop I knew I only had one more loop to go. I was tired and drained having been racing for almost 12 hrs., but just kept going. Of course along the way I took lots of nutrition and keep myself as hydrated as much as possible. There was no rain this year, which was also nice since the prior previous time I had done this race we were running through knee high puddles.\r\n\r\nAfter leaving town and getting to the final around, I knew only had 4.4 miles left to go and realized that it was in the bag for me. As I came back into town and saw the crowds again, I felt the exhilarating feeling that one can only feel when finishing an Ironman. At this point I only had about a mile to go and knew I have finally done it. That is not only finish my 6th Ironman but my second one in six months . This was a challenge that I set for myself. Like my parents had always told me, set your goals and go for it.\r\nNever say never.\r\n\r\nThe final 100 meters are unbelievable feeling. All ones aches and pains fade away. As I approached the finish line, which is slightly elevated and bathed in lights, I heard the announcer say for the sixth time,\r\n\"Peter Fields, you are an Ironman\".\r\nIt never gets old.\r\nI finally knew that I had completed my conquest of doing two Ironman races in one year.\r\n\r\nOf course the whole way during the race, I never forgot about my parents. I had my mom’s initials written on my left arm and on my right arm I had my dad\'s initials. Both of these people were so special in my life and I have never forgotten them for even one day since each of them passed. Whenever it got tough, I would place my hand on either forearm and feel their presence within me and hear their words of encouragement telling me never to give up. I know they would have been as proud of me as I am of them.\r\n\r\nI want to thank everybody who sent me good wishes, those who kept me in their thoughts and those who followed me on the internet. All your thoughts and wishes kept me strong the whole race.\r\nThere were a few very special people that never stopped thinking about me the whole race. You know who you are and words cannot say thank you enough. \r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc® and 6X Ironman Triathlete</strong>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-08 03:30:06','2019-06-08 03:30:06','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(340,8,'2019-06-08 03:32:05','2019-06-08 03:32:05','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong class=\"subhead\">RACE DAY</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\r\n\r\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\r\n\"Peter Fields, you are an Ironman”,\r\nI knew it was all worthwhile. \r\n\r\n\r\n<strong class=\"subhead\">FINAL THOUGHTS</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg\" alt=\"Ironman Brazil Finish\" width=\"200\" height=\"200\" class=\"alignright size-thumbnail wp-image-199\" />My race may have been slowed down by the problems I had on the run, but I was never discouraged. As my former coach told me, Ironman races are all about damage control. That thought helped me get through this race. I was very pleased that I did not get the two most common problems that affect athletes in an Ironman: stomach problems and/or mechanical problems on the bike.\r\nI felt exhausted and drained but nevertheless very satisfied to have finished my 5th Ironman. Some may ask why I punish my body? I was not punishing it; just challenging it. When one is prepared, it is not a punishment. Plus an Ironman is as much a mental challenge as a physical one.\r\n\r\nI leave you with a quote by the author Viktor Frankl, MD, holocaust survivor and world famous author from his book Man\'s Search For Meaning, which was my dad\'s favorite:\r\n\"Life can be pulled by goals just as surely as it can be pushed by drives.\"\r\n\r\nThere are too many to name, but I want to thank everybody out there who followed me during this race and offered me encouragement. I’d also like to thank everyone else who has written to me and even just thought about me before, during and/or after the race.\r\n\r\nThis race was dedicated to my mother who I lost last year, to my father who I lost 11 years ago and to my uncle who, at 89yo, survived a very tough time recently being in the hospital for 30 days. All three of them have meant a lot to me during my life and have encouraged me to never give up.\r\n\r\nLastly, a big shout out to my brother Norman. No matter where I have raced, he has always followed me the entire race on the computer. I heard him cheering me on the whole way; he has never forgotten his little brother.\r\nThanks bro!\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc® and 5X Ironman Triathlete</strong>','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-08 03:32:05','2019-06-08 03:32:05','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(341,8,'2019-06-08 03:33:19','2019-06-08 03:33:19','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<h6 class=\"text-center\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\nMy time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.\r\n\r\nSaturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.\r\n\r\n\r\n<strong class=\"subhead\">RACE DAY</strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.\r\nOn my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n\r\n<strong class=\"subhead\">THE SWIM</strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<strong class=\"subhead\">THE BIKE</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a180 degree turn again (like at the beginning) so we hat to really slow down But this was good thing as the street leading to this turn was lined with thousands of spectators cheering us on.  Occasionally at this point and other ones where there was an announcer I would hear \"and here is Peter from the United States\".  Always nice to hear to keep one going. My usual time is about 3hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins. I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs is where one can leave a bag that morning of anything they may want or need at that point. It is at the halfway point of the bike and another one at the halfway point of the run.  I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.  When I tossed the bottle away, it rolled to the feet of the small boy about 6 or 7 years old. His mom looked at him.  He just looked at it. I told him, in German, here\'s a present for you.  Take it home and clean it! It is yours. He just smiled at me as he reached for it.\r\nThen 8 miles into the second loop miles drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down.\r\nAll in all, it went well on the second loop.  The crowds were less due to the rain but there were, still crowds out there. At about mile 80 my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. \r\nMy second loop time was a bit slower due to the rain.\r\n It was 3 hours in 25 minutes. All in all I felt strong for the run. This was a good thing.\r\nIn town near T2, the crowds were there cheering loudly.\r\n\r\nGot off my bike in and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles.  Got my running shoes on and started off to run a marathon.\r\n\r\nPS several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n\r\n\r\n<p><strong class=\"subhead\">THE RUN</strong></p>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" class=\"alignleft size-full wp-image-174\" />When one leaves transition area two (T2) in an Ironman, you cannot think marathon. You just say are running from here to there and play this mental games with yourself the whole way. It was warm and sunny and about 75 degrees but not too hot. Plus there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So therefore I would pass the finish line 4 times. In this area were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the end the first turn around about 4.5 miles out. I had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake the beginning of each loop, so although brief, it was a nice view. After only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races).  I trained part of the time in the water for my run (deep water running).  This was very helpful as it took the stress of these two areas.  At this point everything was good and I had no pain.  As we passed through the finish line area (middle of the figure eight), we headed out again along a canal. Then we ran under a small foot bridge and onto a small (in width) cobblestone street lined with houses. We ran along this for about 3/4 of a mile then into the town square. People were sitting in cafes and cheering us on. Lots and lots of people. It was about 6 or 7 o\'clock at night and since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and run back to the starting area. I got back to starting point again and got my special needs bag - some extra nutrition. On the second loop my stomach started to feel little funny.  This is something that is very common with Ironman triathletes. Mine only lasted about again 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration or other things. I felt fairly lucky.  I would cheer these fellow athlete on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\nI just kept telling myself to keep going.  One foot after another...just keep going... Part of the way it was shady so that helped a lot too. The sun stays up until 9 o’clock so it never went down while I was running. Mile 18, I got a second wind. Felt very upbeat and in a good place so I was able to pick up pace.\r\nAt that point I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that you normally he runs a lot faster but not today. He told me to try to stay with him and we could talk so the time with go faster. So for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains one has after racing for over 13 hours. There was a small archway as one entered into the city square. There was a small bell on a string that it was hanging from. If you rung the bell (by tapping it with your hand) they would donate money to charity, so I rang it every time I passed it. At the final turn around, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run. The guy I was running with and I just kept talking. He was from Prague where I was going after the race so we were going to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As one comes with closer to the finish line, the noise level is incredible with cheering, cowbells and more. I then heard the announcer say:\r\n<strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling one has when you hear that never gets old.\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\nAnd at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes\r\nMy friend I met on the run the finished right behind me. I then met his wife and three kids.\r\nAfter a few minutes of walking around it was off to the massage tent and get some food.\r\n\r\nPS I finished around 8:30 pm. At 9 pm the sky opened up and it rained hard for about an hour.\r\n I was very fortunate not to go through that.\r\n\r\nI want to make everybody who took the time and effort to watch the update that were on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.\r\nCollectively, I want to thank massage therapist, my acupuncturist and my chiropractor. You all helped get me through.  And wonderful office staff who always took a great interest in what I was doing and put up with my long workouts that made me late sometimes.\r\n\r\nThere a few individuals that need to be singled out individually.\r\n I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.\r\n\r\nAnd then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race. \r\n\r\nI want to thank my very special friend Angela Past.  Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did).  She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time.  Wow!  Thank you so much for your emotional support when I needed it the most.\r\n\r\nAnd last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day.  My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day.  She has never lost faith in me and my abilities... Thank you mom!\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc®&nbsp;and 4X Ironman Triathlete</strong>\r\n\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-08 03:33:19','2019-06-08 03:33:19','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(342,8,'2019-06-08 03:35:15','2019-06-08 03:35:15','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\">Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong class=\"subhead\">Pre Race</strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong class=\"subhead\">The Swim</strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong class=\"subhead\">The Bike</strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong class=\"subhead\">The Run</strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong class=\"subhead\">The Finish</strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n\r\n<p><strong class=\"subhead\">Final Thoughts:</strong><br>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\r\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\r\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\r\n\r\n<p><strong class=\"subhead\">Dedication:</strong><br>\r\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\r\n\r\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \r\nYour thoughts and well wishes helped me through my third Ironman.\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-08 03:35:15','2019-06-08 03:35:15','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(343,8,'2019-06-08 03:36:57','2019-06-08 03:36:57','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 25, 2012<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p>After finishing this race last year, I was back again to try and beat my time of 2011 time of 14 hrs. 4 mins and 7 sec. And with much pride, I am happy to announce that I did; finishing in 13hrs, 50 mins and 27sec.</p>\r\n\r\n<p>A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused. If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 42 countries.</p>\r\n<p>It was a beautiful day; air temp about 74 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg\" alt=\"Cozumel 2012 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-123\" /><strong class=\"subhead\">THE SWIM</strong></span><br>\r\nThe water was a bit choppy and there was a strong current too. This did not bother me as swimming is my best event. After one last gel, I lined up with the others and then jumped off the pier into the ocean. One has to jump about 7-10 feet off the pier into the water. I positioned myself in a good spot up front and along the shore. The current would be flowing against us for the first 800 meters, so it was best to be close to the shore where the current is less. After treading water for 10 minutes or so, the horn went off. I go pretty fast at first to get away from the crowd. Due to the chop, I altered my stroke a bit to clear this. This brings ones arms slightly closer to the boy and I did develop a bit of an underarm chafe but this was soon forgotten. Once we turned around the first buoy, the current was with us and I let the current work with me for the next mile or so. The water was clear and you could see schools of fish swimming around as well as the scuba lifeguards, positioned on the bottom about 30 feet down. When I got to the final turn, the current was against me again, so I had to work a bit harder. There was no balloon or marker marking the pier so I just followed the crowd and sighted off the lifeguard paddlers and boats. Overall I was about 8 minutes slower than last year (one hour and nine minutes this year) but still felt pretty good. Later I was to learn that most people were 15 to 30 minutes slower than last year. In Ironman races (avg. participants about 2300), there is usually about 10-15 who do not make the 2 hrs. and 20 minute swim cutoff time. This year there was over 240! Very disappointing for them as they take your timing chip away as you exit the water. Some chose to do the race anyway; this was unofficial of course.</p>\r\n<p>As I exited the water, I ran quickly into the change tent (T1). I was determined to cut down my transition time this year – big time. I had opted to wear a Tri Suit under the speed suit (like in the Olympics) I swim in. This meant I did not have to change into separate clothing for the bike and run since the Tri suit is a two piece suit that one can ride and run in.</p>\r\n<p>Once inside, I quickly stripped the speed suit off, put on my helmet and bike shoes and was off to get my bike. You did not have to re-apply sunscreen as they had helpers in the change tent lathering your shoulders and upper arms (the exposed areas) with sunscreen. This was a big help.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-bike.jpg\" alt=\"Cozumel 2012 Bike\" width=\"160\" height=\"196\" class=\"alignleft size-full wp-image-125\" /><strong class=\"subhead\">THE BIKE</strong></span><br>\r\nThe first loop (it is a three lop ride) on the bike went well as there was not a lot of wind when we got to the back of the island. I also had changed my nutrition from last year and did not have the dreaded stomach problems that many triathletes have on the bike. The second loop, the winds really picked up. It was a tough 15-18 mile section with 15-20 mile an hour wind hitting you broad side. I did develop some left foot pain which happened sometimes when I ride over 70 miles. I wear a special bike shoe orthotics that keeps me from having right foot pain after I run and after riding. This had happened last year. So I removed my left orthotic. But shortly thereafter the right foot also bothered me so I removed that orthotic too. This essentially eliminated the pain. At mile 62 there is a special needs station where one leaves anything that they might want. Last year I rested there a bit but this year just grabbed what I needed from my bag and kept going. The third lap the wind got even more brutal and we were all slugging it out on the backside of the island. As I turned to head back into town at the 100 mile maker I went to slip the orthotics back in as it prevents me from having foot pain on the post ride run. The left one had fallen out of my bike jersey pocket but at least I had the right one. All in all I rode 12 minutes faster than last year.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-run.jpg\" alt=\"Cozumel 2012 Run\" width=\"160\" height=\"215\" class=\"alignleft size-full wp-image-127\" /><strong class=\"subhead\">THE RUN</strong></span><br>\r\nBack into town, I got off the bike at the bike to run transition area (T2). I quickly changed; again much quicker than last year and headed off to run the marathon. My legs were a bit heavy but somehow I was running well. This was especially good since I had a hamstring problem earlier in the year and had been running a lot in deep water instead of the land for my training. The heaviness quickly went away within the first mile and all was going good. I had only slight right hamstring discomfort and no real pain.</p>\r\n<p>We do approximately 4. 4 miles out and back for an 8.8 mile loop (three times). On the way back to town on the first loop, the foot pain (left and right) started to appear. I did take a Celebrex at 4am and another one on the third loop of the bike. When I got to town after 8.8 miles, I asked my good friend Angela (she was my aid throughout the race- and a great one at that) to go find ibuprofen (it works on a different pathway than Celebrex). When I got to the second turn around to head back to town (13.1 miles) my hamstring kicked in - big time. It was painful to run but I kept going. I changed my gait (made it an even shorter stride). There were plenty of people walking by then but I just dealt with it. I know there was medic tent at about 15 miles. I pulled in and asked for ice. They ace wrapped my upper thigh with lots of ice. This seemed to reduce the pain but I still was running slightly slower (the first 13.1miles had me on a 5+ hr. marathon pace - much better than the 5:35 of last year). As I entered town, Angela was there and handed me the ibuprofen. I took it and within minutes I was feeling quite good. Prior to this I had calculated my time and distance and knew that I could break 14 hrs. – and maybe by 30 minutes. The hamstring pain started to return about 19 miles. I got the leg wrapped with more ice again on the way out to the 4.8 final turn around. Before the last turn around I was forced to walk and run. This is something that I had never done before (walk that is), but the pain was pretty high. At the last three mile marker I got even more ice for my hamstring and decided to walk more than run. Soon thereafter I could not continue a run/walk pace due to pain but figured if I walked fast (walking was painful but not severe) I would break 14 hrs. So at that point I walked a 14-15 mile pace (off my Garmin wrist computer), which is still pretty fast. There were plenty of walkers and I was passing them. I had to save whatever run I had left in me for last few hundred meters up to the finish (no way was I going to walk that!). This is right in the middle of the park and all lite up with hundreds (if not more) of people yelling and screaming. So as I got close, I began to run (pain is temporary; finishing is forever!) the last hundred meters to the finish line where I heard the announcer say, once again, \"<strong class=\"subhead\"><span style=\"text-decoration: underline;\">Peter Fields, you are an Ironman!</span></strong>\"</p>\r\n\r\n<p>My time was13:50, not the 13:30 I might have had without the hamstring issue. <br>\r\nBut I did end up breaking the 14 hr. barrier (last year\'s time of 14:04), which I had set out to do. Mission accomplished. <br>\r\nAs I always say, age is mind over matter; if you don\'t mind- it does not matter!</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" alt=\"Cozumel 2012 Finish2\" width=\"150\" height=\"268\" class=\"alignleft size-full wp-image-128\" /><strong class=\"subhead\">THE FINISH</strong></span><br>\r\nImmediately after crossing the finish line, after getting a big hug from Angela. I then went into the medical tent and to get a one liter IV bag of fluid (as a former ER doc I know what to say to get it done without waiting). Everyone is dehydrated to some point and this was much needed. Then off to get a post-race massage and some food. Unfortunately, caffeine gels kept me going during the last part of the run and my stomach did not really want any food. But it was nice just to sit down. Then cheered on the last finishers who are those are trying to make the 17 hr. cut-off at midnight. After collecting my gear and bike, I finally headed back to the hotel and got to bed at 2am. Not much success with that after being very jacked up all day, so the next day was to a big recovery and sleep day.</p>\r\n<p>Thank you for allowing me to share this with you and for taking the\r\n\r\ntime to read it. I want to thank everyone that offered me support and\r\nwishes. I am very grateful to each and every one of you.</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n<p class=\"text-center\"><strong class=\"subhead\">Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 2nd Ironman','','inherit','closed','closed','','120-revision-v1','','','2019-06-08 03:36:57','2019-06-08 03:36:57','',120,'https://www.drfields.com/uncategorized/120-revision-v1/',0,'revision','',0),(344,8,'2019-06-08 03:37:22','2019-06-08 03:37:22','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><strong class=\"subhead\">On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong class=\"subhead\"><u>THE SWIM</u></strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong class=\"subhead\"><u>THE BIKE</u></strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong class=\"subhead\"><u>THE RUN</u></strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong class=\"subhead\"><u>THE FINISH</u></strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n\r\n<p class=\"text-center\"><strong class=\"subhead\">Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 1st Ironman','','inherit','closed','closed','','92-revision-v1','','','2019-06-08 03:37:22','2019-06-08 03:37:22','',92,'https://www.drfields.com/uncategorized/92-revision-v1/',0,'revision','',0),(345,8,'2019-06-08 03:38:51','2019-06-08 03:38:51','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><strong class=\"subhead\">On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong class=\"subhead\">THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong class=\"subhead\">THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong class=\"subhead\">THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong class=\"subhead\">THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 1st Ironman','','inherit','closed','closed','','92-revision-v1','','','2019-06-08 03:38:51','2019-06-08 03:38:51','',92,'https://www.drfields.com/uncategorized/92-revision-v1/',0,'revision','',0),(346,8,'2019-06-08 03:41:38','2019-06-08 03:41:38','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><strong >On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong class=\"subhead\">THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong class=\"subhead\">THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong class=\"subhead\">THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong class=\"subhead\">THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 1st Ironman','','inherit','closed','closed','','92-revision-v1','','','2019-06-08 03:41:38','2019-06-08 03:41:38','',92,'https://www.drfields.com/uncategorized/92-revision-v1/',0,'revision','',0),(348,8,'2019-06-08 03:50:49','2019-06-08 03:50:49','<h2>Ironman 9 in Santa Rosa, California</h2>\r\n<p class=\"col-md-8\">My parents, Yvette and Fred Fields said, \"Always keep moving forward in life.\" And in Ironman 9, and during all of my ironman competitions, that saying is always in my mind.</p>\r\n\r\n\r\n[caption id=\"attachment_355\" align=\"alignleft\" width=\"275\"]<img class=\"size-full wp-image-355\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg\" alt=\"Ironman Santa Rosa Snoopy\" width=\"275\" height=\"240\" /> <strong>Dr. Fields and Snoopy</strong>[/caption]\r\n<h3 class=\"col-md-8\"><strong class=\"subhead\">GETTING READY FOR IRONMAN 9</strong></h3>\r\n<p class=\"col-md-8\">This one was a lot easier to get to than the others as it was my first Ironman in the US and in northern California- only a one-hour and 20-minute flight up to Santa Rosa.  At the airport, I was greeted by Snoopy and Charlie Brown, as Santa Rosa is the home of Charles Schulz, the creator of Peanuts.  They both offered me encouragement!</p>\r\n\r\n<h3><strong class=\"subhead\">RACE DAY MORNING</strong></h3>\r\nThis race was a bit different than others. The lake where we swam in, Lake Sonoma, is 40 miles from downtown. This is very unusual when it is usually right at the start or within a few miles of the transition area.  So we had to report for buses leaving at 4 a.m. from the downtown area. Then I had to drive down to the downtown area, park the car and walk over to where the buses were.\r\n\r\nFortunately, my bike and other gear were already at the lake.  After a one-hour bus ride to the lake, I settled in by checking my bike, pumping the tires, filling the water bottles, and loading the nutrition on the bike.  Then it was time to head down to the lakefront. The day before, the water had been very warm, but the morning of the race they determined that it was still wetsuit legal (below 76 degrees). Since everyone else was wearing it, I decided to wear one even though I get very warm in it.\r\n<h3><strong class=\"subhead\">THE SWIM: 2.4 Miles</strong></h3>\r\n[caption id=\"attachment_354\" align=\"alignleft\" width=\"264\"]<img class=\" wp-image-354\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg\" alt=\"Ironman Santa Rosa Swim\" width=\"264\" height=\"396\" /> <strong>Swim Finish with his parents\' initials on my forearms</strong>[/caption]\r\n\r\nAs we lined up to start to get in the water there were a few people without wetsuits. At that point, I thought maybe I should not have worn my wetsuit. Swimming is my best sport and the wetsuit does get restrictive in my arm swing, but I decided to keep it on anyway. As I entered the water I realized that the water was very warm. Since it was crowded, I stayed towards the outside of the swimmers because the fast swimmer group I was in can get very aggressive.\r\n\r\nHalfway through the first loop, I realized I was getting too warm. After the first lap, I had the opportunity to run out onto the landing, take it off, and get back into the water. I lost a little time doing this but it was well worth it. The second lap went a lot better as I was not overheating.\r\n\r\nAfter the swim there is a quarter-mile very steep hill to get to your bicycle. They told people to not leave shoes or other footgear down at the bottom. So most of us did not. But some people left shoes halfway up the hill. This was a violation of the rules but no one said anything. They did have some artificial grass-type material down so that the road up was not too tough. But the hill is quite steep and many people, including myself, walked or fast-walked most of the way so as not to exhaust ourselves for the bike ride. Quickly into the transition area, I grabbed my gear, changed, and got onto my bike.\r\n<h3><strong class=\"subhead\">THE BIKE: 112 Miles</strong></h3>\r\n[caption id=\"attachment_353\" align=\"alignright\" width=\"299\"]<img class=\" wp-image-353\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg\" alt=\"Ironman Santa Rosa Bike 3\" width=\"299\" height=\"538\" /> <strong>Dr. Fields during the 112-mile bike ride</strong>[/caption]\r\n\r\nThe bike had 4,000 feet of climbing. I prepared for this so overall it was not too bad. Lots of wineries; at least 30 or more. It was not as scenic as other Ironman races I have done because we did ride along a highway several times but pleasant when going by wineries.\r\n\r\nUnfortunately, the roads were not in great shape. There are a lot of uneven areas as well as small little potholes. This was even more difficult as it was extremely sunny. When you would go through an area that was shaded you could not see the road since you were wearing dark sunglasses. This made for an uncomfortable ride.\r\n\r\nRight before we got to town, at about the 65-mile mark, I got a flat. I did not notice it at first but as my speed dropped and I was pushing even harder, I had to get off the bike and check. Sure enough, the tire was flat. And it was the back tire, which takes more to change. But to my surprise, as I dismounted, one of the repair vehicles that circles the bike course (there were three or four of them) pulled up right behind me. What luck! The mechanic grabbed his pump and had my tire changed, pumped up, and ready to go in less than two minutes. Faster than I could have ever have done it. And without greasy hands too!\r\n\r\nSo back on the bike, I finally got to the town where we then had to ride two 17-mile loops. This was invigorating as the crowd was there. Unfortunately, on these loops, the road got even worse. There were areas that were so bumpy one of the following riders said he thought he lost a crown. We all laughed. Although they predicted it to be in the 90s, it only went to about 86 or 87 degrees. But it was very sunny with no wind and with minimal shade, so it did get warm. All in all, I had a good bike ride.\r\n\r\nSo, as we entered the town on the last loop, the crowds were cheering. Then it was into T2 tent and change into running shoes, visor, down some nutrition and out for the 26.2-mile marathon run.\r\n<h3><strong class=\"subhead\">THE RUN: 26.2 Miles</strong></h3>\r\n[caption id=\"attachment_352\" align=\"alignleft\" width=\"255\"]<img class=\" wp-image-352\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg\" alt=\"Ironman Santa Rosa Run 2\" width=\"255\" height=\"459\" /> <strong> Dr. Fields during the 26.2-mile run</strong>[/caption]\r\n\r\nAs we left the change tent, there were lots of people yelling and screaming encouragement. This was a good thing. It was now very sunny and very warm outside. Most of the run was done along a dry riverbed. Then the crowds dwindled. There was some shade but not everywhere, so the sun took its toll, and I had some difficulties with my foot. Fortunately, I could adjust my running gait and keep going.\r\n\r\nThe first 8.8 miles (the first loop) was pretty good. On the second, the foot pain got stronger and I had to walk/run quite a bit. But, as always, I just kept moving forward. There were a lot of runners out there for support. And of course, I was supporting the others that were not doing well. Being with the other athletes gave me tremendous moral support and the will to not give up.\r\n\r\nThe second loop was tough as it took place during the 11th and 13th hours of racing, so keeping one\'s mind occupied is imperative. Dealing with my foot pain plus the physical and mental exhaustion that one experiences in an Ironman are always a challenge. As I began the third loop, I knew that if I made it to the turnaround at 4.4 miles, I was home free. As I made the final turn to head back towards town I knew that no matter how tough things got I was going to make it.\r\n<h3>Crossing the Finish Line</h3>\r\n[caption id=\"attachment_351\" align=\"alignright\" width=\"289\"]<img class=\" wp-image-351\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" width=\"289\" height=\"520\" /> <strong> Dr. Fields crossing the finish line</strong>[/caption]\r\n\r\nI encouraged those that I passed as well as the ones that were only on their second loop. As I exited the riverbed area up onto the streets, I thought I only had less than a quarter-mile to go, when in fact it was really over half a mile.\r\n\r\nJust then a guy ran up to me and said, “Hey Peter you\'re doing great”. I did not recognize him but I had my name on my running bib and thought he just saw that. He ran alongside me and told me that his girlfriend was not far behind. He told me her name and that did not ring a bell either.\r\n\r\nIt really didn’t matter as he was encouraging me, which was needed at that time. He finally turned around to go back to meet her. As I ran off, the energy that he had given me would carry me the rest of the way. As I came down the final stretch I knew I was going to finish my 9th Ironman Triathlon. It was tough but Ironman is never easy. The exhilaration and enthusiasm of the crowd, and hearing the announcer say, <strong>\"<em>Peter Fields, you are an Ironman!”</em>,</strong> never gets old. Never.\r\n\r\nAs I came through the shoot and they took my pictures, I looked over and there was the young guy who I had seen as I exited the riverbed.  As I approached him, I recognized him as the son of one of my best friends.  We both laughed and embraced and I told him how appreciative I was for his encouragement.\r\n\r\n<strong class=\"subhead\">POSTSCRIPT</strong>\r\n\r\nThese races are not only a physical challenge but also a mental challenge. With the difficulties with the wetsuit, the warm water, the uneven roads, the heat, the flat tire, and my foot problems on the run, this was not an easy race. But again, I persevered.\r\n\r\nI always keep a remembrance of my parents with me at all times in my race jersey pocket. When things would get bad, I would reach back and touch it and say. \"thanks mom and dad for being with me.\" This kept me going through any difficulties I was having. With all their struggles in their lives (fleeing near-certain death in fascist Germany, emigrating with almost nothing, meeting each other in the US and building a new life and more), they just kept moving forward and never looked back.\r\n\r\nThey taught me over and over again, that no matter how tough things get in life, just keep putting one foot in front of the other and keep going. They supported me no matter what I did as long as I had my heart and mind in it. On this day, and every day of my life, I knew they were with me all the way.\r\n\r\nAs I said after they passed, “You are not dead, dead or only those that one forgets”. I will never forget them as they never forgot me. This, and all of my races, are dedicated in their honor. And I always start each race with their initials marked on my forearms.\r\n\r\nI want to thank you for taking the time to read this and for supporting me, whether online, thinking about me, or by reading this.\r\n\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 9X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\"><a class=\"youtube\" href=\"https://www.youtube.com/watch?v=ds0_hCW9WA4\"><img title=\"Ironman Santa Rosa Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finisher-2.jpg\" alt=\"Ironman Santa Rosa Finisher\" /></a>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong>\r\nThe Athletic Doc<sup>®</sup>,\r\n</strong></span>Post-race pic<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em><a href=\"https://photos.google.com/share/AF1QipOZKCkaR9a0fl-OfBkXj-Z46M__ixhQOKqFQiAB_sf0rQDWmGsv_NdpwYlUbChPfw?key=MWNqUHJtR0hwSmdyVVFxQ2t1WmY3ZkVTYlNFZ2FB\" target=\"_blank\" rel=\"noopener noreferrer\">2017 Santa Rosa\r\nClick For More Photos</a>Click below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Ironman 9 Took Place in Santa Rosa, California','','publish','open','closed','','race-report-9th-ironman','','','2022-02-25 23:50:42','2022-02-25 23:50:42','',0,'https://www.drfields.com/?p=348',0,'post','',0),(349,8,'2019-06-08 03:45:34','2019-06-08 03:45:34','Ironman Santa Rosa Logo Blue','Ironman Santa Rosa Logo Blue','','inherit','open','closed','','ironman-santa-rosa-logo-blue','','','2019-06-08 03:45:39','2019-06-08 03:45:39','',348,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-santa-rosa-logo-blue.jpg',0,'attachment','image/jpeg',0),(350,8,'2019-06-08 03:46:39','2019-06-08 03:46:39','Cozumel 2011 Finish','Cozumel 2011 Finish','Cozumel 2011 Finish','inherit','open','closed','','cozumel-2011-finish-2','','','2019-06-08 03:46:39','2019-06-08 03:46:39','',348,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish-1.jpg',0,'attachment','image/jpeg',0),(351,8,'2019-06-08 03:46:40','2019-06-08 03:46:40','Ironman Santa Rosa Finishline 3','Ironman Santa Rosa Finishline 3','Dr. Fields crossing the finish line','inherit','open','closed','','ironman-santa-rosa-finishline-3','','','2019-06-08 03:53:29','2019-06-08 03:53:29','',348,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg',0,'attachment','image/jpeg',0),(352,8,'2019-06-08 03:46:41','2019-06-08 03:46:41','Ironman Santa Rosa Run 2','Ironman Santa Rosa Run 2','Dr. Fields during the 26.2 mile run','inherit','open','closed','','ironman-santa-rosa-run-2','','','2019-06-08 03:52:47','2019-06-08 03:52:47','',348,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg',0,'attachment','image/jpeg',0),(353,8,'2019-06-08 03:46:41','2019-06-08 03:46:41','Ironman Santa Rosa Bike 3','Ironman Santa Rosa Bike 3','Dr. Fields during the 112 mile bike ride','inherit','open','closed','','ironman-santa-rosa-bike-3','','','2019-06-08 03:50:24','2019-06-08 03:50:24','',348,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg',0,'attachment','image/jpeg',0),(354,8,'2019-06-08 03:46:42','2019-06-08 03:46:42','Ironman Santa Rosa Swim','Ironman Santa Rosa Swim','Swim Finish with his parents initials on his forearms','inherit','open','closed','','ironman-santa-rosa-swim','','','2019-06-08 03:49:30','2019-06-08 03:49:30','',348,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg',0,'attachment','image/jpeg',0),(355,8,'2019-06-08 03:46:42','2019-06-08 03:46:42','Ironman Santa Rosa Snoopy','Ironman Santa Rosa Snoopy','Dr. Fields and Snoopy','inherit','open','closed','','ironman-santa-rosa-snoopy','','','2019-06-08 03:46:51','2019-06-08 03:46:51','',348,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg',0,'attachment','image/jpeg',0),(356,8,'2019-06-08 03:50:49','2019-06-08 03:50:49','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-santa-rosa-logo-blue.jpg\" alt=\"Ironman Santa Rosa Logo Blue\" width=\"230\" height=\"120\" class=\"aligncenter size-full wp-image-349\" />\r\n\r\n<h6 class=\"text-center\">Saturday July 29, 2017\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Always keep moving forward in life\"\r\nYvette and Fred Fields\r\n\r\nHere is my report on my 9th Ironman Triathlon.\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\n[caption id=\"attachment_355\" align=\"alignleft\" width=\"275\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg\" alt=\"Ironman Santa Rosa Snoopy\" width=\"275\" height=\"240\" class=\"size-full wp-image-355\" /><strong>Dr. Fields and Snoopy</strong>[/caption]This one was a lot easier to get to than the others as it was my first Ironman in the US. Since it was in northern California, it was only a one hour and 20 minute flight up to Santa Rosa.  At the airport, I was greeted by Snoopy and Charlie Brown, as Santa Rosa is the home of Charles Schulz, the creator of Peanuts.  They both offered me encouragement on my race! Then it was driving into town, getting settled in and picking up my registration packet.  The next two days was spent checking out the course and trying to relax.\r\n\r\n<strong class=\"subhead\">RACE DAY MORNING</strong>\r\n\r\nThis race was a bit different than other races. The lake where we swam in, Lake Sonoma, is 40 miles from downtown. This is very unusual when it is usually right at the start or within a few miles of the transition area.  So we had to report for buses leaving at 4 a.m. from the downtown area. This necessitated waking up around 2:30 so that I could have a proper breakfast. Then I had to drive down to the downtown area, park the car and walk over to where the buses were.  Fortunately my bike and other gear was already at the lake.  All I had with me was my nutrition and swimming gear. After that it was a one hour bus ride up to the lake, getting settled in by checking my bike, pumping the tires, filling the water bottles and loading the nutrition on the bike.  Then it was time to head down to the lake front. The day before, the water had been very warm, but the morning of the race they determined that it was still wetsuit legal (below 76 degrees). Since everyone else was wearing a I decided to wear one even though I get very warm in it.\r\n\r\n<strong>THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_354\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg\" alt=\"Ironman Santa Rosa Swim\" width=\"160\" height=\"240\" class=\"size-full wp-image-354\" /><strong>Swim Finish with his parents initials on his forearms</strong>[/caption]As we lined up to start to get in the water there were a few people without wetsuits. At that point, I thought maybe I should not have worn my wetsuit. Swimming is my best sport and the wetsuit does get restrictive in my arm swing, but I decided to keep it on anyway. As I entered the water I realized that the water was very warm. Since it was crowded, I stayed towards the outside of the swimmers because the fast swimmer group I was in can get very aggressive. Halfway through the first loop I realized I was getting too warm and I really didn\'t need the wetsuit. I made the unusual decision that when we ended the first lap I would take off the wetsuit. This first lap ended where you ran out on to the landing and back into the water. Usually this is at least 20, 30 or even 40 yards, but this time it was just a short little loop in and out of the water. As I came up onto the ramp I grabbed the leash that is attached to my zipper and pulled it down. Two race officials saw me doing this and asked I wanted help getting it off. This was a blessing. So I flopped down on the ground and they quickly pulled off the legs of my wetsuit (the hardest part to get off). Then I was back in the water. I lost a little time doing this but it was well worth it. The second lap went a lot better as I was not overheating. When you finished the swim there is a quarter-mile very steep hill that you must go up to get to your bicycle. They told people you cannot leave shoes or other foot gear down at the bottom. So most of us did not. But some people left shoes halfway up the hill. This was a violation of the rules but no one said anything. They did have some artificial grass type material down so that the road up was not too tough. But the hill is quite steep and many people, including myself, walked or fast walked most of the way so as not to exhaust ourselves for the bike ride. Quickly into the transition area, grab my gear, change in the tent and got onto my bike to begin the 112 mile ride.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_353\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg\" alt=\"Ironman Santa Rosa Bike 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-353\" /><b>Dr. Fields during the 112 mile bike ride</b>[/caption]\r\nThe bike had four thousand feet of climbing. I prepared for this so overall it was not too bad. It did start out with a small climb as we left the lake area. Then through some areas around wineries. Lots of wineries; at least 30 or more. It was not as scenic as other Ironman I have done because we did ride along a highway several times but pleasant when going by wineries.\r\n\r\nUnfortunately, the roads were not in great shape. There are a lot of uneven areas as well as small little potholes. This was even more difficult as it was extremely sunny. When you would go through an area that was shaded you could not see the road since you were wearing dark sunglasses. This made for an uncomfortable ride. Right before we got to town, at about the 65-mile mark, I got a flat. I did not notice it at first but as my speed dropped and I was pushing even harder, I had to get off the bike and check. Sure enough, the tire was flat. And it was the back tire, which takes more to change. But to my surprise, as I dismounted, one of the repair vehicles that circles the bike course (there were three or four of them) pulled up right behind me. What luck! The mechanic grabbed his pump and had my tire changed, pumped up and ready to go in less than two minutes. Faster I could have ever have done it. And without greasy hands too!\r\n\r\nSo back on the bike, I finally got to town where we than had to ride two 17-mile loops. This was invigorating as the crowd was there. Unfortunately, on these loops, the road got even worse. They were areas that were so bumpy one of the following riders said he thought he lost a crown. We all laughed. Although they predicted it to be in the 90s, it only went to about 86 or 87 degrees. But it was very sunny with no wind and with minimal shade, so it did get warm. All in all, I had a good bike ride.\r\n\r\nSo, as we entered town on the last loop, the crowds were cheering. The race had bike handlers as one gets off your bike, which are people who take your bike and rack it for you. Unfortunately, the race being slightly disorganized, they racked the bikes right there and then had the change tents after that. That meant you had to run about 50 yards alongside the bike rack areas in your bike shoes. Most places have it the other way around. But either way, it is always nice to get off the bike after 112 miles. Then it was into T2 tent and change into running shoes, visor, down some nutrition and out for the 26.2 mile marathon run.\r\n<div><img title=\"Dr. Fields during the 26.2 mile run\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Santa%20Rosa%202017/Ironman-Santa-Rosa-Run-2.jpg\" alt=\"Dr. Fields during the 26.2 mile run\" />\r\nDr. Fields during the 26.2 mile run</div>\r\n<strong>THE RUN: 26.2 Miles</strong>\r\n\r\nAs we left the change tent, there were lots of people yelling and screaming encouragement. This was a good thing. It was now very sunny and very warm outside. Most of the run was done along a dry riverbed. There were some crowds at the beginning but not many after that. There was some shade but not everywhere, so the sun took its toll. There were several times you had to go over a little bridge, cross over the river bed and then come back, so the run was entirely flat. During the run, I had some difficulties with my foot which had been a common occurrence for me lately. Fortunately, I could adjust my running gait and keep going. The first 8.8 miles (the first loop) was pretty good. On the second one the foot pain got stronger and I had to walk/run quite a bit. But, as always, I just kept moving forward. There were a lot of runners out there for support. And of course, I was supporting the others that we’re not doing well. Being with the other athletes gave me tremendous moral support and the will to not give up. The second loop was tough as it took place during the 11th and 13th hours of racing, so keeping ones mind occupied is imperative. Dealing with my foot pain plus the physical and mental exhaustion that one experiences in an Ironman is always a challenge. As I began the third loop, I knew that if I made it to the turnaround at 4.4 miles, I was home free. As I made the final turn to head back towards town I knew that no matter how tough things got I was going to make it.<img title=\"Dr. Fields crossing the finish line\" src=\"https://www.drfields.com/portals/0/Images/Ironman%20Santa%20Rosa%202017/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Dr. Fields crossing the finish line\" />\r\nDr. Fields crossing the finish line I encouraged those that I passed as well as the ones that were only on their second loop. As I exited the riverbed area up onto the streets, I thought I only had less than a quarter mile to go, when in fact it was really over half a mile. Just then a guy ran up to me and said, “Hey Peter you\'re doing great”. I did not recognize him but I had my name on my running bib and thought he just saw that. He ran alongside of me and told me that his girlfriend was not far behind. He told me her name and that did not ring a bell either. It really didn’t matter as he was encouraging me, which was needed at that tme. He finally turned around to go back to meet her. As I ran off, the energy that he had given me would carry me the rest of the way. As I came down the final stretch I knew I was going to finish my 9th Ironman Triathlon. It was tough but Ironman are never easy. The exhilaration and enthusiasm of the crowd, and hearing the announcer say, ” Peter Fields, you are an Ironman!”, never gets old. Never.\r\n\r\nAs I came through the shoot and they took my pictures, I looked over and there was the young guy who I had seen as I exited the riverbed.  As I approached him, I recognized him as the son of one of my best friends.  We both laughed and embraced and I told him how appreciative I was for his encouragement.\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nThese races are not only a physical challenge but also a mental challenge. With the difficulties with the wetsuit, the warm water, the uneven roads, the heat, the flat tire and my foot problems on the run, this was not an easy race. But again, I persevered.\r\n\r\nI always keep a remembrance of my parents with me at all times in my race jersey pocket. When things would get bad, I would reach back and touch it and say thanks mom and dad for being with me. This kept me going through any difficulties I was having at the time. With all their struggles in their lives (fleeing near certain death in fascist Germany, emigrating with almost nothing, meeting each other in the US and building a new life and more), they just kept moving forward and never looked back. They taught me over and over again, that no matter how tough things get in life just keep putting one foot in front of the other and keep going. They supported me no matter what I did as long as I had my heart and mind in it. On this day, and every day of my life, I knew they are with me all the way.\r\n\r\nAs I said after they passed “You are not dead, dead or only those that one forgets”. I will never forget them as they never forgot me. This, and all of my races, are dedicated in their honor. I therefore start each race with their initials marked on my forearms.\r\n\r\nI want to thank you for taking the time to read this and for supporting me, whether on line, thinking about me or reading this.\r\n\r\n\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 9X Ironman Triathlete</strong>\r\n\r\n</div>\r\n</div>','Race Report 9th Ironman','','inherit','closed','closed','','348-revision-v1','','','2019-06-08 03:50:49','2019-06-08 03:50:49','',348,'https://www.drfields.com/uncategorized/348-revision-v1/',0,'revision','',0),(357,8,'2019-06-14 07:46:53','2019-06-14 07:46:53','&nbsp;\n\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-santa-rosa-logo-blue.jpg\" alt=\"Ironman Santa Rosa Logo Blue\" width=\"230\" height=\"120\" class=\"aligncenter size-full wp-image-349\" />\n\n<h6 class=\"text-center\">Saturday July 29, 2017\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\n\n<p class=\"text-center\">\"Always keep moving forward in life\"\nYvette and Fred Fields</p>\n\nHere is my report on my 9th Ironman Triathlon.\n\n[caption id=\"attachment_355\" align=\"alignleft\" width=\"275\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg\" alt=\"Ironman Santa Rosa Snoopy\" width=\"275\" height=\"240\" class=\"size-full wp-image-355\" /><strong>Dr. Fields and Snoopy</strong>[/caption]<strong class=\"subhead\">GETTING THERE</strong>\n\nThis one was a lot easier to get to than the others as it was my first Ironman in the US. Since it was in northern California, it was only a one hour and 20 minute flight up to Santa Rosa.  At the airport, I was greeted by Snoopy and Charlie Brown, as Santa Rosa is the home of Charles Schulz, the creator of Peanuts.  They both offered me encouragement on my race! Then it was driving into town, getting settled in and picking up my registration packet.  The next two days was spent checking out the course and trying to relax.\n\n<div class=\"clear\">\n<strong class=\"subhead\">RACE DAY MORNING</strong>\n\nThis race was a bit different than other races. The lake where we swam in, Lake Sonoma, is 40 miles from downtown. This is very unusual when it is usually right at the start or within a few miles of the transition area.  So we had to report for buses leaving at 4 a.m. from the downtown area. This necessitated waking up around 2:30 so that I could have a proper breakfast. Then I had to drive down to the downtown area, park the car and walk over to where the buses were.  Fortunately my bike and other gear was already at the lake.  All I had with me was my nutrition and swimming gear. After that it was a one hour bus ride up to the lake, getting settled in by checking my bike, pumping the tires, filling the water bottles and loading the nutrition on the bike.  Then it was time to head down to the lake front. The day before, the water had been very warm, but the morning of the race they determined that it was still wetsuit legal (below 76 degrees). Since everyone else was wearing a I decided to wear one even though I get very warm in it.\n\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\n[caption id=\"attachment_354\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg\" alt=\"Ironman Santa Rosa Swim\" width=\"160\" height=\"240\" class=\"size-full wp-image-354\" /><strong>Swim Finish with his parents initials on his forearms</strong>[/caption]As we lined up to start to get in the water there were a few people without wetsuits. At that point, I thought maybe I should not have worn my wetsuit. Swimming is my best sport and the wetsuit does get restrictive in my arm swing, but I decided to keep it on anyway. As I entered the water I realized that the water was very warm. Since it was crowded, I stayed towards the outside of the swimmers because the fast swimmer group I was in can get very aggressive. Halfway through the first loop I realized I was getting too warm and I really didn\'t need the wetsuit. I made the unusual decision that when we ended the first lap I would take off the wetsuit. This first lap ended where you ran out on to the landing and back into the water. Usually this is at least 20, 30 or even 40 yards, but this time it was just a short little loop in and out of the water. As I came up onto the ramp I grabbed the leash that is attached to my zipper and pulled it down. Two race officials saw me doing this and asked I wanted help getting it off. This was a blessing. So I flopped down on the ground and they quickly pulled off the legs of my wetsuit (the hardest part to get off). Then I was back in the water. I lost a little time doing this but it was well worth it. The second lap went a lot better as I was not overheating. When you finished the swim there is a quarter-mile very steep hill that you must go up to get to your bicycle. They told people you cannot leave shoes or other foot gear down at the bottom. So most of us did not. But some people left shoes halfway up the hill. This was a violation of the rules but no one said anything. They did have some artificial grass type material down so that the road up was not too tough. But the hill is quite steep and many people, including myself, walked or fast walked most of the way so as not to exhaust ourselves for the bike ride. Quickly into the transition area, grab my gear, change in the tent and got onto my bike to begin the 112 mile ride.\n\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\n[caption id=\"attachment_353\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg\" alt=\"Ironman Santa Rosa Bike 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-353\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]The bike had four thousand feet of climbing. I prepared for this so overall it was not too bad. It did start out with a small climb as we left the lake area. Then through some areas around wineries. Lots of wineries; at least 30 or more. It was not as scenic as other Ironman I have done because we did ride along a highway several times but pleasant when going by wineries.\n\nUnfortunately, the roads were not in great shape. There are a lot of uneven areas as well as small little potholes. This was even more difficult as it was extremely sunny. When you would go through an area that was shaded you could not see the road since you were wearing dark sunglasses. This made for an uncomfortable ride. Right before we got to town, at about the 65-mile mark, I got a flat. I did not notice it at first but as my speed dropped and I was pushing even harder, I had to get off the bike and check. Sure enough, the tire was flat. And it was the back tire, which takes more to change. But to my surprise, as I dismounted, one of the repair vehicles that circles the bike course (there were three or four of them) pulled up right behind me. What luck! The mechanic grabbed his pump and had my tire changed, pumped up and ready to go in less than two minutes. Faster I could have ever have done it. And without greasy hands too!\n\nSo back on the bike, I finally got to town where we than had to ride two 17-mile loops. This was invigorating as the crowd was there. Unfortunately, on these loops, the road got even worse. They were areas that were so bumpy one of the following riders said he thought he lost a crown. We all laughed. Although they predicted it to be in the 90s, it only went to about 86 or 87 degrees. But it was very sunny with no wind and with minimal shade, so it did get warm. All in all, I had a good bike ride.\n\nSo, as we entered town on the last loop, the crowds were cheering. The race had bike handlers as one gets off your bike, which are people who take your bike and rack it for you. Unfortunately, the race being slightly disorganized, they racked the bikes right there and then had the change tents after that. That meant you had to run about 50 yards alongside the bike rack areas in your bike shoes. Most places have it the other way around. But either way, it is always nice to get off the bike after 112 miles. Then it was into T2 tent and change into running shoes, visor, down some nutrition and out for the 26.2 mile marathon run.\n\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\n[caption id=\"attachment_352\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg\" alt=\"Ironman Santa Rosa Run 2\" width=\"160\" height=\"288\" class=\"size-full wp-image-352\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]As we left the change tent, there were lots of people yelling and screaming encouragement. This was a good thing. It was now very sunny and very warm outside. Most of the run was done along a dry riverbed. There were some crowds at the beginning but not many after that. There was some shade but not everywhere, so the sun took its toll. There were several times you had to go over a little bridge, cross over the river bed and then come back, so the run was entirely flat. During the run, I had some difficulties with my foot which had been a common occurrence for me lately. Fortunately, I could adjust my running gait and keep going. The first 8.8 miles (the first loop) was pretty good. On the second one the foot pain got stronger and I had to walk/run quite a bit. But, as always, I just kept moving forward. There were a lot of runners out there for support. And of course, I was supporting the others that we’re not doing well. Being with the other athletes gave me tremendous moral support and the will to not give up. The second loop was tough as it took place during the 11th and 13th hours of racing, so keeping ones mind occupied is imperative. Dealing with my foot pain plus the physical and mental exhaustion that one experiences in an Ironman is always a challenge. As I began the third loop, I knew that if I made it to the turnaround at 4.4 miles, I was home free. As I made the final turn to head back towards town I knew that no matter how tough things got I was going to make it.[caption id=\"attachment_351\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-351\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I encouraged those that I passed as well as the ones that were only on their second loop. As I exited the riverbed area up onto the streets, I thought I only had less than a quarter mile to go, when in fact it was really over half a mile. Just then a guy ran up to me and said, “Hey Peter you\'re doing great”. I did not recognize him but I had my name on my running bib and thought he just saw that. He ran alongside of me and told me that his girlfriend was not far behind. He told me her name and that did not ring a bell either. It really didn’t matter as he was encouraging me, which was needed at that tme. He finally turned around to go back to meet her. As I ran off, the energy that he had given me would carry me the rest of the way. As I came down the final stretch I knew I was going to finish my 9th Ironman Triathlon. It was tough but Ironman are never easy. The exhilaration and enthusiasm of the crowd, and hearing the announcer say, ” Peter Fields, you are an Ironman!”, never gets old. Never.\n\nAs I came through the shoot and they took my pictures, I looked over and there was the young guy who I had seen as I exited the riverbed.  As I approached him, I recognized him as the son of one of my best friends.  We both laughed and embraced and I told him how appreciative I was for his encouragement.\n\n<strong class=\"subhead\">POST SCRIPT</strong>\n\nThese races are not only a physical challenge but also a mental challenge. With the difficulties with the wetsuit, the warm water, the uneven roads, the heat, the flat tire and my foot problems on the run, this was not an easy race. But again, I persevered.\n\nI always keep a remembrance of my parents with me at all times in my race jersey pocket. When things would get bad, I would reach back and touch it and say thanks mom and dad for being with me. This kept me going through any difficulties I was having at the time. With all their struggles in their lives (fleeing near certain death in fascist Germany, emigrating with almost nothing, meeting each other in the US and building a new life and more), they just kept moving forward and never looked back. They taught me over and over again, that no matter how tough things get in life just keep putting one foot in front of the other and keep going. They supported me no matter what I did as long as I had my heart and mind in it. On this day, and every day of my life, I knew they are with me all the way.\n\nAs I said after they passed “You are not dead, dead or only those that one forgets”. I will never forget them as they never forgot me. This, and all of my races, are dedicated in their honor. I therefore start each race with their initials marked on my forearms.\n\nI want to thank you for taking the time to read this and for supporting me, whether on line, thinking about me or reading this.\n\n\n<strong>Peter A. Fields, MD DC</strong>\n<strong>The Athletic Doc<sup>®</sup> and 9X Ironman Triathlete</strong>\n','Race Report 9th Ironman','','inherit','closed','closed','','348-autosave-v1','','','2019-06-14 07:46:53','2019-06-14 07:46:53','',348,'https://www.drfields.com/uncategorized/348-autosave-v1/',0,'revision','',0),(358,8,'2019-06-08 03:53:47','2019-06-08 03:53:47','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-santa-rosa-logo-blue.jpg\" alt=\"Ironman Santa Rosa Logo Blue\" width=\"230\" height=\"120\" class=\"aligncenter size-full wp-image-349\" />\r\n\r\n<h6 class=\"text-center\">Saturday July 29, 2017\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Always keep moving forward in life\"\r\nYvette and Fred Fields\r\n\r\nHere is my report on my 9th Ironman Triathlon.\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\n[caption id=\"attachment_355\" align=\"alignleft\" width=\"275\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg\" alt=\"Ironman Santa Rosa Snoopy\" width=\"275\" height=\"240\" class=\"size-full wp-image-355\" /><strong>Dr. Fields and Snoopy</strong>[/caption]This one was a lot easier to get to than the others as it was my first Ironman in the US. Since it was in northern California, it was only a one hour and 20 minute flight up to Santa Rosa.  At the airport, I was greeted by Snoopy and Charlie Brown, as Santa Rosa is the home of Charles Schulz, the creator of Peanuts.  They both offered me encouragement on my race! Then it was driving into town, getting settled in and picking up my registration packet.  The next two days was spent checking out the course and trying to relax.\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">RACE DAY MORNING</strong>\r\nThis race was a bit different than other races. The lake where we swam in, Lake Sonoma, is 40 miles from downtown. This is very unusual when it is usually right at the start or within a few miles of the transition area.  So we had to report for buses leaving at 4 a.m. from the downtown area. This necessitated waking up around 2:30 so that I could have a proper breakfast. Then I had to drive down to the downtown area, park the car and walk over to where the buses were.  Fortunately my bike and other gear was already at the lake.  All I had with me was my nutrition and swimming gear. After that it was a one hour bus ride up to the lake, getting settled in by checking my bike, pumping the tires, filling the water bottles and loading the nutrition on the bike.  Then it was time to head down to the lake front. The day before, the water had been very warm, but the morning of the race they determined that it was still wetsuit legal (below 76 degrees). Since everyone else was wearing a I decided to wear one even though I get very warm in it.\r\n\r\n<strong>THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_354\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg\" alt=\"Ironman Santa Rosa Swim\" width=\"160\" height=\"240\" class=\"size-full wp-image-354\" /><strong>Swim Finish with his parents initials on his forearms</strong>[/caption]As we lined up to start to get in the water there were a few people without wetsuits. At that point, I thought maybe I should not have worn my wetsuit. Swimming is my best sport and the wetsuit does get restrictive in my arm swing, but I decided to keep it on anyway. As I entered the water I realized that the water was very warm. Since it was crowded, I stayed towards the outside of the swimmers because the fast swimmer group I was in can get very aggressive. Halfway through the first loop I realized I was getting too warm and I really didn\'t need the wetsuit. I made the unusual decision that when we ended the first lap I would take off the wetsuit. This first lap ended where you ran out on to the landing and back into the water. Usually this is at least 20, 30 or even 40 yards, but this time it was just a short little loop in and out of the water. As I came up onto the ramp I grabbed the leash that is attached to my zipper and pulled it down. Two race officials saw me doing this and asked I wanted help getting it off. This was a blessing. So I flopped down on the ground and they quickly pulled off the legs of my wetsuit (the hardest part to get off). Then I was back in the water. I lost a little time doing this but it was well worth it. The second lap went a lot better as I was not overheating. When you finished the swim there is a quarter-mile very steep hill that you must go up to get to your bicycle. They told people you cannot leave shoes or other foot gear down at the bottom. So most of us did not. But some people left shoes halfway up the hill. This was a violation of the rules but no one said anything. They did have some artificial grass type material down so that the road up was not too tough. But the hill is quite steep and many people, including myself, walked or fast walked most of the way so as not to exhaust ourselves for the bike ride. Quickly into the transition area, grab my gear, change in the tent and got onto my bike to begin the 112 mile ride.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_353\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg\" alt=\"Ironman Santa Rosa Bike 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-353\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]The bike had four thousand feet of climbing. I prepared for this so overall it was not too bad. It did start out with a small climb as we left the lake area. Then through some areas around wineries. Lots of wineries; at least 30 or more. It was not as scenic as other Ironman I have done because we did ride along a highway several times but pleasant when going by wineries.\r\n\r\nUnfortunately, the roads were not in great shape. There are a lot of uneven areas as well as small little potholes. This was even more difficult as it was extremely sunny. When you would go through an area that was shaded you could not see the road since you were wearing dark sunglasses. This made for an uncomfortable ride. Right before we got to town, at about the 65-mile mark, I got a flat. I did not notice it at first but as my speed dropped and I was pushing even harder, I had to get off the bike and check. Sure enough, the tire was flat. And it was the back tire, which takes more to change. But to my surprise, as I dismounted, one of the repair vehicles that circles the bike course (there were three or four of them) pulled up right behind me. What luck! The mechanic grabbed his pump and had my tire changed, pumped up and ready to go in less than two minutes. Faster I could have ever have done it. And without greasy hands too!\r\n\r\nSo back on the bike, I finally got to town where we than had to ride two 17-mile loops. This was invigorating as the crowd was there. Unfortunately, on these loops, the road got even worse. They were areas that were so bumpy one of the following riders said he thought he lost a crown. We all laughed. Although they predicted it to be in the 90s, it only went to about 86 or 87 degrees. But it was very sunny with no wind and with minimal shade, so it did get warm. All in all, I had a good bike ride.\r\n\r\nSo, as we entered town on the last loop, the crowds were cheering. The race had bike handlers as one gets off your bike, which are people who take your bike and rack it for you. Unfortunately, the race being slightly disorganized, they racked the bikes right there and then had the change tents after that. That meant you had to run about 50 yards alongside the bike rack areas in your bike shoes. Most places have it the other way around. But either way, it is always nice to get off the bike after 112 miles. Then it was into T2 tent and change into running shoes, visor, down some nutrition and out for the 26.2 mile marathon run.\r\n\r\n<strong>THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_352\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg\" alt=\"Ironman Santa Rosa Run 2\" width=\"160\" height=\"288\" class=\"size-full wp-image-352\" /> Dr. Fields during the 26.2 mile run[/caption]As we left the change tent, there were lots of people yelling and screaming encouragement. This was a good thing. It was now very sunny and very warm outside. Most of the run was done along a dry riverbed. There were some crowds at the beginning but not many after that. There was some shade but not everywhere, so the sun took its toll. There were several times you had to go over a little bridge, cross over the river bed and then come back, so the run was entirely flat. During the run, I had some difficulties with my foot which had been a common occurrence for me lately. Fortunately, I could adjust my running gait and keep going. The first 8.8 miles (the first loop) was pretty good. On the second one the foot pain got stronger and I had to walk/run quite a bit. But, as always, I just kept moving forward. There were a lot of runners out there for support. And of course, I was supporting the others that we’re not doing well. Being with the other athletes gave me tremendous moral support and the will to not give up. The second loop was tough as it took place during the 11th and 13th hours of racing, so keeping ones mind occupied is imperative. Dealing with my foot pain plus the physical and mental exhaustion that one experiences in an Ironman is always a challenge. As I began the third loop, I knew that if I made it to the turnaround at 4.4 miles, I was home free. As I made the final turn to head back towards town I knew that no matter how tough things got I was going to make it.[caption id=\"attachment_351\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-351\" /> Dr. Fields crossing the finish line[/caption]Dr. Fields crossing the finish line I encouraged those that I passed as well as the ones that were only on their second loop. As I exited the riverbed area up onto the streets, I thought I only had less than a quarter mile to go, when in fact it was really over half a mile. Just then a guy ran up to me and said, “Hey Peter you\'re doing great”. I did not recognize him but I had my name on my running bib and thought he just saw that. He ran alongside of me and told me that his girlfriend was not far behind. He told me her name and that did not ring a bell either. It really didn’t matter as he was encouraging me, which was needed at that tme. He finally turned around to go back to meet her. As I ran off, the energy that he had given me would carry me the rest of the way. As I came down the final stretch I knew I was going to finish my 9th Ironman Triathlon. It was tough but Ironman are never easy. The exhilaration and enthusiasm of the crowd, and hearing the announcer say, ” Peter Fields, you are an Ironman!”, never gets old. Never.\r\n\r\nAs I came through the shoot and they took my pictures, I looked over and there was the young guy who I had seen as I exited the riverbed.  As I approached him, I recognized him as the son of one of my best friends.  We both laughed and embraced and I told him how appreciative I was for his encouragement.\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nThese races are not only a physical challenge but also a mental challenge. With the difficulties with the wetsuit, the warm water, the uneven roads, the heat, the flat tire and my foot problems on the run, this was not an easy race. But again, I persevered.\r\n\r\nI always keep a remembrance of my parents with me at all times in my race jersey pocket. When things would get bad, I would reach back and touch it and say thanks mom and dad for being with me. This kept me going through any difficulties I was having at the time. With all their struggles in their lives (fleeing near certain death in fascist Germany, emigrating with almost nothing, meeting each other in the US and building a new life and more), they just kept moving forward and never looked back. They taught me over and over again, that no matter how tough things get in life just keep putting one foot in front of the other and keep going. They supported me no matter what I did as long as I had my heart and mind in it. On this day, and every day of my life, I knew they are with me all the way.\r\n\r\nAs I said after they passed “You are not dead, dead or only those that one forgets”. I will never forget them as they never forgot me. This, and all of my races, are dedicated in their honor. I therefore start each race with their initials marked on my forearms.\r\n\r\nI want to thank you for taking the time to read this and for supporting me, whether on line, thinking about me or reading this.\r\n\r\n\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 9X Ironman Triathlete</strong>\r\n','Race Report 9th Ironman','','inherit','closed','closed','','348-revision-v1','','','2019-06-08 03:53:47','2019-06-08 03:53:47','',348,'https://www.drfields.com/uncategorized/348-revision-v1/',0,'revision','',0),(359,8,'2019-06-08 03:54:53','2019-06-08 03:54:53','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-santa-rosa-logo-blue.jpg\" alt=\"Ironman Santa Rosa Logo Blue\" width=\"230\" height=\"120\" class=\"aligncenter size-full wp-image-349\" />\r\n\r\n<h6 class=\"text-center\">Saturday July 29, 2017\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Always keep moving forward in life\"\r\nYvette and Fred Fields\r\n\r\nHere is my report on my 9th Ironman Triathlon.\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\n[caption id=\"attachment_355\" align=\"alignleft\" width=\"275\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg\" alt=\"Ironman Santa Rosa Snoopy\" width=\"275\" height=\"240\" class=\"size-full wp-image-355\" /><strong>Dr. Fields and Snoopy</strong>[/caption]This one was a lot easier to get to than the others as it was my first Ironman in the US. Since it was in northern California, it was only a one hour and 20 minute flight up to Santa Rosa.  At the airport, I was greeted by Snoopy and Charlie Brown, as Santa Rosa is the home of Charles Schulz, the creator of Peanuts.  They both offered me encouragement on my race! Then it was driving into town, getting settled in and picking up my registration packet.  The next two days was spent checking out the course and trying to relax.\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">RACE DAY MORNING</strong>\r\n\r\nThis race was a bit different than other races. The lake where we swam in, Lake Sonoma, is 40 miles from downtown. This is very unusual when it is usually right at the start or within a few miles of the transition area.  So we had to report for buses leaving at 4 a.m. from the downtown area. This necessitated waking up around 2:30 so that I could have a proper breakfast. Then I had to drive down to the downtown area, park the car and walk over to where the buses were.  Fortunately my bike and other gear was already at the lake.  All I had with me was my nutrition and swimming gear. After that it was a one hour bus ride up to the lake, getting settled in by checking my bike, pumping the tires, filling the water bottles and loading the nutrition on the bike.  Then it was time to head down to the lake front. The day before, the water had been very warm, but the morning of the race they determined that it was still wetsuit legal (below 76 degrees). Since everyone else was wearing a I decided to wear one even though I get very warm in it.\r\n\r\n<strong>THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_354\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg\" alt=\"Ironman Santa Rosa Swim\" width=\"160\" height=\"240\" class=\"size-full wp-image-354\" /><strong>Swim Finish with his parents initials on his forearms</strong>[/caption]As we lined up to start to get in the water there were a few people without wetsuits. At that point, I thought maybe I should not have worn my wetsuit. Swimming is my best sport and the wetsuit does get restrictive in my arm swing, but I decided to keep it on anyway. As I entered the water I realized that the water was very warm. Since it was crowded, I stayed towards the outside of the swimmers because the fast swimmer group I was in can get very aggressive. Halfway through the first loop I realized I was getting too warm and I really didn\'t need the wetsuit. I made the unusual decision that when we ended the first lap I would take off the wetsuit. This first lap ended where you ran out on to the landing and back into the water. Usually this is at least 20, 30 or even 40 yards, but this time it was just a short little loop in and out of the water. As I came up onto the ramp I grabbed the leash that is attached to my zipper and pulled it down. Two race officials saw me doing this and asked I wanted help getting it off. This was a blessing. So I flopped down on the ground and they quickly pulled off the legs of my wetsuit (the hardest part to get off). Then I was back in the water. I lost a little time doing this but it was well worth it. The second lap went a lot better as I was not overheating. When you finished the swim there is a quarter-mile very steep hill that you must go up to get to your bicycle. They told people you cannot leave shoes or other foot gear down at the bottom. So most of us did not. But some people left shoes halfway up the hill. This was a violation of the rules but no one said anything. They did have some artificial grass type material down so that the road up was not too tough. But the hill is quite steep and many people, including myself, walked or fast walked most of the way so as not to exhaust ourselves for the bike ride. Quickly into the transition area, grab my gear, change in the tent and got onto my bike to begin the 112 mile ride.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_353\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg\" alt=\"Ironman Santa Rosa Bike 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-353\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]The bike had four thousand feet of climbing. I prepared for this so overall it was not too bad. It did start out with a small climb as we left the lake area. Then through some areas around wineries. Lots of wineries; at least 30 or more. It was not as scenic as other Ironman I have done because we did ride along a highway several times but pleasant when going by wineries.\r\n\r\nUnfortunately, the roads were not in great shape. There are a lot of uneven areas as well as small little potholes. This was even more difficult as it was extremely sunny. When you would go through an area that was shaded you could not see the road since you were wearing dark sunglasses. This made for an uncomfortable ride. Right before we got to town, at about the 65-mile mark, I got a flat. I did not notice it at first but as my speed dropped and I was pushing even harder, I had to get off the bike and check. Sure enough, the tire was flat. And it was the back tire, which takes more to change. But to my surprise, as I dismounted, one of the repair vehicles that circles the bike course (there were three or four of them) pulled up right behind me. What luck! The mechanic grabbed his pump and had my tire changed, pumped up and ready to go in less than two minutes. Faster I could have ever have done it. And without greasy hands too!\r\n\r\nSo back on the bike, I finally got to town where we than had to ride two 17-mile loops. This was invigorating as the crowd was there. Unfortunately, on these loops, the road got even worse. They were areas that were so bumpy one of the following riders said he thought he lost a crown. We all laughed. Although they predicted it to be in the 90s, it only went to about 86 or 87 degrees. But it was very sunny with no wind and with minimal shade, so it did get warm. All in all, I had a good bike ride.\r\n\r\nSo, as we entered town on the last loop, the crowds were cheering. The race had bike handlers as one gets off your bike, which are people who take your bike and rack it for you. Unfortunately, the race being slightly disorganized, they racked the bikes right there and then had the change tents after that. That meant you had to run about 50 yards alongside the bike rack areas in your bike shoes. Most places have it the other way around. But either way, it is always nice to get off the bike after 112 miles. Then it was into T2 tent and change into running shoes, visor, down some nutrition and out for the 26.2 mile marathon run.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_352\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg\" alt=\"Ironman Santa Rosa Run 2\" width=\"160\" height=\"288\" class=\"size-full wp-image-352\" /> Dr. Fields during the 26.2 mile run[/caption]As we left the change tent, there were lots of people yelling and screaming encouragement. This was a good thing. It was now very sunny and very warm outside. Most of the run was done along a dry riverbed. There were some crowds at the beginning but not many after that. There was some shade but not everywhere, so the sun took its toll. There were several times you had to go over a little bridge, cross over the river bed and then come back, so the run was entirely flat. During the run, I had some difficulties with my foot which had been a common occurrence for me lately. Fortunately, I could adjust my running gait and keep going. The first 8.8 miles (the first loop) was pretty good. On the second one the foot pain got stronger and I had to walk/run quite a bit. But, as always, I just kept moving forward. There were a lot of runners out there for support. And of course, I was supporting the others that we’re not doing well. Being with the other athletes gave me tremendous moral support and the will to not give up. The second loop was tough as it took place during the 11th and 13th hours of racing, so keeping ones mind occupied is imperative. Dealing with my foot pain plus the physical and mental exhaustion that one experiences in an Ironman is always a challenge. As I began the third loop, I knew that if I made it to the turnaround at 4.4 miles, I was home free. As I made the final turn to head back towards town I knew that no matter how tough things got I was going to make it.[caption id=\"attachment_351\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-351\" /> Dr. Fields crossing the finish line[/caption]Dr. Fields crossing the finish line I encouraged those that I passed as well as the ones that were only on their second loop. As I exited the riverbed area up onto the streets, I thought I only had less than a quarter mile to go, when in fact it was really over half a mile. Just then a guy ran up to me and said, “Hey Peter you\'re doing great”. I did not recognize him but I had my name on my running bib and thought he just saw that. He ran alongside of me and told me that his girlfriend was not far behind. He told me her name and that did not ring a bell either. It really didn’t matter as he was encouraging me, which was needed at that tme. He finally turned around to go back to meet her. As I ran off, the energy that he had given me would carry me the rest of the way. As I came down the final stretch I knew I was going to finish my 9th Ironman Triathlon. It was tough but Ironman are never easy. The exhilaration and enthusiasm of the crowd, and hearing the announcer say, ” Peter Fields, you are an Ironman!”, never gets old. Never.\r\n\r\nAs I came through the shoot and they took my pictures, I looked over and there was the young guy who I had seen as I exited the riverbed.  As I approached him, I recognized him as the son of one of my best friends.  We both laughed and embraced and I told him how appreciative I was for his encouragement.\r\n\r\n<strong class=\"subhead\">POST SCRIPT</strong>\r\n\r\nThese races are not only a physical challenge but also a mental challenge. With the difficulties with the wetsuit, the warm water, the uneven roads, the heat, the flat tire and my foot problems on the run, this was not an easy race. But again, I persevered.\r\n\r\nI always keep a remembrance of my parents with me at all times in my race jersey pocket. When things would get bad, I would reach back and touch it and say thanks mom and dad for being with me. This kept me going through any difficulties I was having at the time. With all their struggles in their lives (fleeing near certain death in fascist Germany, emigrating with almost nothing, meeting each other in the US and building a new life and more), they just kept moving forward and never looked back. They taught me over and over again, that no matter how tough things get in life just keep putting one foot in front of the other and keep going. They supported me no matter what I did as long as I had my heart and mind in it. On this day, and every day of my life, I knew they are with me all the way.\r\n\r\nAs I said after they passed “You are not dead, dead or only those that one forgets”. I will never forget them as they never forgot me. This, and all of my races, are dedicated in their honor. I therefore start each race with their initials marked on my forearms.\r\n\r\nI want to thank you for taking the time to read this and for supporting me, whether on line, thinking about me or reading this.\r\n\r\n\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 9X Ironman Triathlete</strong>\r\n','Race Report 9th Ironman','','inherit','closed','closed','','348-revision-v1','','','2019-06-08 03:54:53','2019-06-08 03:54:53','',348,'https://www.drfields.com/uncategorized/348-revision-v1/',0,'revision','',0),(360,8,'2019-06-08 03:56:07','2019-06-08 03:56:07','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-santa-rosa-logo-blue.jpg\" alt=\"Ironman Santa Rosa Logo Blue\" width=\"230\" height=\"120\" class=\"aligncenter size-full wp-image-349\" />\r\n\r\n<h6 class=\"text-center\">Saturday July 29, 2017\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Always keep moving forward in life\"\r\nYvette and Fred Fields\r\n\r\nHere is my report on my 9th Ironman Triathlon.\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\n[caption id=\"attachment_355\" align=\"alignleft\" width=\"275\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg\" alt=\"Ironman Santa Rosa Snoopy\" width=\"275\" height=\"240\" class=\"size-full wp-image-355\" /><strong>Dr. Fields and Snoopy</strong>[/caption]This one was a lot easier to get to than the others as it was my first Ironman in the US. Since it was in northern California, it was only a one hour and 20 minute flight up to Santa Rosa.  At the airport, I was greeted by Snoopy and Charlie Brown, as Santa Rosa is the home of Charles Schulz, the creator of Peanuts.  They both offered me encouragement on my race! Then it was driving into town, getting settled in and picking up my registration packet.  The next two days was spent checking out the course and trying to relax.\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">RACE DAY MORNING</strong>\r\n\r\nThis race was a bit different than other races. The lake where we swam in, Lake Sonoma, is 40 miles from downtown. This is very unusual when it is usually right at the start or within a few miles of the transition area.  So we had to report for buses leaving at 4 a.m. from the downtown area. This necessitated waking up around 2:30 so that I could have a proper breakfast. Then I had to drive down to the downtown area, park the car and walk over to where the buses were.  Fortunately my bike and other gear was already at the lake.  All I had with me was my nutrition and swimming gear. After that it was a one hour bus ride up to the lake, getting settled in by checking my bike, pumping the tires, filling the water bottles and loading the nutrition on the bike.  Then it was time to head down to the lake front. The day before, the water had been very warm, but the morning of the race they determined that it was still wetsuit legal (below 76 degrees). Since everyone else was wearing a I decided to wear one even though I get very warm in it.\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_354\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg\" alt=\"Ironman Santa Rosa Swim\" width=\"160\" height=\"240\" class=\"size-full wp-image-354\" /><strong>Swim Finish with his parents initials on his forearms</strong>[/caption]As we lined up to start to get in the water there were a few people without wetsuits. At that point, I thought maybe I should not have worn my wetsuit. Swimming is my best sport and the wetsuit does get restrictive in my arm swing, but I decided to keep it on anyway. As I entered the water I realized that the water was very warm. Since it was crowded, I stayed towards the outside of the swimmers because the fast swimmer group I was in can get very aggressive. Halfway through the first loop I realized I was getting too warm and I really didn\'t need the wetsuit. I made the unusual decision that when we ended the first lap I would take off the wetsuit. This first lap ended where you ran out on to the landing and back into the water. Usually this is at least 20, 30 or even 40 yards, but this time it was just a short little loop in and out of the water. As I came up onto the ramp I grabbed the leash that is attached to my zipper and pulled it down. Two race officials saw me doing this and asked I wanted help getting it off. This was a blessing. So I flopped down on the ground and they quickly pulled off the legs of my wetsuit (the hardest part to get off). Then I was back in the water. I lost a little time doing this but it was well worth it. The second lap went a lot better as I was not overheating. When you finished the swim there is a quarter-mile very steep hill that you must go up to get to your bicycle. They told people you cannot leave shoes or other foot gear down at the bottom. So most of us did not. But some people left shoes halfway up the hill. This was a violation of the rules but no one said anything. They did have some artificial grass type material down so that the road up was not too tough. But the hill is quite steep and many people, including myself, walked or fast walked most of the way so as not to exhaust ourselves for the bike ride. Quickly into the transition area, grab my gear, change in the tent and got onto my bike to begin the 112 mile ride.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_353\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg\" alt=\"Ironman Santa Rosa Bike 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-353\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]The bike had four thousand feet of climbing. I prepared for this so overall it was not too bad. It did start out with a small climb as we left the lake area. Then through some areas around wineries. Lots of wineries; at least 30 or more. It was not as scenic as other Ironman I have done because we did ride along a highway several times but pleasant when going by wineries.\r\n\r\nUnfortunately, the roads were not in great shape. There are a lot of uneven areas as well as small little potholes. This was even more difficult as it was extremely sunny. When you would go through an area that was shaded you could not see the road since you were wearing dark sunglasses. This made for an uncomfortable ride. Right before we got to town, at about the 65-mile mark, I got a flat. I did not notice it at first but as my speed dropped and I was pushing even harder, I had to get off the bike and check. Sure enough, the tire was flat. And it was the back tire, which takes more to change. But to my surprise, as I dismounted, one of the repair vehicles that circles the bike course (there were three or four of them) pulled up right behind me. What luck! The mechanic grabbed his pump and had my tire changed, pumped up and ready to go in less than two minutes. Faster I could have ever have done it. And without greasy hands too!\r\n\r\nSo back on the bike, I finally got to town where we than had to ride two 17-mile loops. This was invigorating as the crowd was there. Unfortunately, on these loops, the road got even worse. They were areas that were so bumpy one of the following riders said he thought he lost a crown. We all laughed. Although they predicted it to be in the 90s, it only went to about 86 or 87 degrees. But it was very sunny with no wind and with minimal shade, so it did get warm. All in all, I had a good bike ride.\r\n\r\nSo, as we entered town on the last loop, the crowds were cheering. The race had bike handlers as one gets off your bike, which are people who take your bike and rack it for you. Unfortunately, the race being slightly disorganized, they racked the bikes right there and then had the change tents after that. That meant you had to run about 50 yards alongside the bike rack areas in your bike shoes. Most places have it the other way around. But either way, it is always nice to get off the bike after 112 miles. Then it was into T2 tent and change into running shoes, visor, down some nutrition and out for the 26.2 mile marathon run.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_352\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg\" alt=\"Ironman Santa Rosa Run 2\" width=\"160\" height=\"288\" class=\"size-full wp-image-352\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]As we left the change tent, there were lots of people yelling and screaming encouragement. This was a good thing. It was now very sunny and very warm outside. Most of the run was done along a dry riverbed. There were some crowds at the beginning but not many after that. There was some shade but not everywhere, so the sun took its toll. There were several times you had to go over a little bridge, cross over the river bed and then come back, so the run was entirely flat. During the run, I had some difficulties with my foot which had been a common occurrence for me lately. Fortunately, I could adjust my running gait and keep going. The first 8.8 miles (the first loop) was pretty good. On the second one the foot pain got stronger and I had to walk/run quite a bit. But, as always, I just kept moving forward. There were a lot of runners out there for support. And of course, I was supporting the others that we’re not doing well. Being with the other athletes gave me tremendous moral support and the will to not give up. The second loop was tough as it took place during the 11th and 13th hours of racing, so keeping ones mind occupied is imperative. Dealing with my foot pain plus the physical and mental exhaustion that one experiences in an Ironman is always a challenge. As I began the third loop, I knew that if I made it to the turnaround at 4.4 miles, I was home free. As I made the final turn to head back towards town I knew that no matter how tough things got I was going to make it.[caption id=\"attachment_351\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-351\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I encouraged those that I passed as well as the ones that were only on their second loop. As I exited the riverbed area up onto the streets, I thought I only had less than a quarter mile to go, when in fact it was really over half a mile. Just then a guy ran up to me and said, “Hey Peter you\'re doing great”. I did not recognize him but I had my name on my running bib and thought he just saw that. He ran alongside of me and told me that his girlfriend was not far behind. He told me her name and that did not ring a bell either. It really didn’t matter as he was encouraging me, which was needed at that tme. He finally turned around to go back to meet her. As I ran off, the energy that he had given me would carry me the rest of the way. As I came down the final stretch I knew I was going to finish my 9th Ironman Triathlon. It was tough but Ironman are never easy. The exhilaration and enthusiasm of the crowd, and hearing the announcer say, ” Peter Fields, you are an Ironman!”, never gets old. Never.\r\n\r\nAs I came through the shoot and they took my pictures, I looked over and there was the young guy who I had seen as I exited the riverbed.  As I approached him, I recognized him as the son of one of my best friends.  We both laughed and embraced and I told him how appreciative I was for his encouragement.\r\n\r\n<strong class=\"subhead\">POST SCRIPT</strong>\r\n\r\nThese races are not only a physical challenge but also a mental challenge. With the difficulties with the wetsuit, the warm water, the uneven roads, the heat, the flat tire and my foot problems on the run, this was not an easy race. But again, I persevered.\r\n\r\nI always keep a remembrance of my parents with me at all times in my race jersey pocket. When things would get bad, I would reach back and touch it and say thanks mom and dad for being with me. This kept me going through any difficulties I was having at the time. With all their struggles in their lives (fleeing near certain death in fascist Germany, emigrating with almost nothing, meeting each other in the US and building a new life and more), they just kept moving forward and never looked back. They taught me over and over again, that no matter how tough things get in life just keep putting one foot in front of the other and keep going. They supported me no matter what I did as long as I had my heart and mind in it. On this day, and every day of my life, I knew they are with me all the way.\r\n\r\nAs I said after they passed “You are not dead, dead or only those that one forgets”. I will never forget them as they never forgot me. This, and all of my races, are dedicated in their honor. I therefore start each race with their initials marked on my forearms.\r\n\r\nI want to thank you for taking the time to read this and for supporting me, whether on line, thinking about me or reading this.\r\n\r\n\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 9X Ironman Triathlete</strong>\r\n','Race Report 9th Ironman','','inherit','closed','closed','','348-revision-v1','','','2019-06-08 03:56:07','2019-06-08 03:56:07','',348,'https://www.drfields.com/uncategorized/348-revision-v1/',0,'revision','',0),(361,8,'2019-06-08 04:02:17','2019-06-08 04:02:17','<div></div>\r\n<h2 style=\"text-align: center;\">Ironman Maryland Race Report</h2>\r\n<div></div>\r\n<div class=\"col-md-8\">\r\n\r\n<img class=\"aligncenter size-full wp-image-362\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" />\r\n<h6 class=\"text-center\" style=\"text-align: center;\"><em>Saturday, September 29, 2018</em>\r\n<em>2.4-mile swim, 112-mile bike, 26.2-mile run</em></h6>\r\n<p class=\"text-center\"><em>\"Never lose sight of your goals\"</em>-Yvette and Fred Fields</p>\r\n\r\n<h3><strong>Here’s the story of my 10th Ironman:</strong></h3>\r\nI originally scheduled this to take place at Ironman Hamburg, Germany, on June 30, 2018.\r\nHamburg is special for me as I lived there for 9 months many years ago. And both my parents were born in Germany.\r\nUnfortunately, it was not meant to be.\r\n\r\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake.\r\n\r\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was <strong>Ironman Maryland</strong> at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate workouts.\r\n<h3><strong class=\"subhead\">Getting There:</strong></h3>\r\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross-country flight to Philadelphia and a short flight to a small airport near Cambridge. After checking in at the hotel,  I looked over the course and got ready for race day. The swim took place in a river that fed from the ocean. The day of the race the weather was very good.\r\n<h3><strong class=\"subhead\">Ironman Maryland-The Swim 2.4 miles:</strong></h3>\r\n<img class=\"alignleft  wp-image-363\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"242\" height=\"410\" />Ironman Maryland is notorious for rainy weather but race day was clear and without clouds. My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer, it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\r\n\r\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\r\n<h3><strong class=\"subhead\">The Bike 112 miles:</strong></h3>\r\n<img class=\"alignright  wp-image-364\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"411\" height=\"341\" />There was some wind on the bike which picked up after 40 miles. But somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours. My normal time for 56 miles is 3:10 or more.\r\n\r\nI kept pushing ahead without exerting myself too much to save myself for the run.\r\nAnd I did not have any stomach problems!\r\n\r\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\r\n<h3><strong class=\"subhead\">The Run 26.2 miles:</strong></h3>\r\n<img class=\"alignleft  wp-image-365\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"236\" height=\"425\" />As I exited the transition area to start my marathon run, I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\r\n\r\n<strong>Foot problems turned out to be my Achilles heel for this race.</strong>\r\n\r\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\r\n\r\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way, after what had happened in Hamburg, I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much.\r\n\r\nOne of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely. This helped a lot and kept me going without getting cold.\r\n\r\n<img class=\"alignright size-full wp-image-366\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"300\" height=\"338\" />So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. <strong>There is a saying that in an Ironman the run is 90% mental and the rest is in your head! Hahaha.</strong>\r\n\r\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\r\n\r\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\r\n</em>\r\n\r\nAll my aches and pains just faded away.\r\n<h3><strong class=\"subhead\">Ironman Maryland Postscript:</strong></h3>\r\nAs with every race, my parents’ spirit was with me the whole way. What they went through to survive the fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\r\n\r\nA very dear friend of mine is going through a severe illness right now. I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\r\n\r\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\r\nfinishing my 10th Ironman.\r\n\r\nAnd of course, everyone who took the time to read this.\r\n\r\n<strong>Peter A. Fields, MD, DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\"><a class=\"youtube\" href=\"https://www.youtube.com/watch?v=qTJCmEnrqYg\"><img style=\"width: 250px; height: 276px;\" title=\"Ironman Maryland 2018 Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/post-finish-400b.jpg\" alt=\"Ironman Maryland 2018 Finisher\" /></a>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong>\r\nThe Athletic Doc<sup>®</sup>,\r\n</strong></span>Post race pic\r\n<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em><a href=\"https://photos.google.com/share/AF1QipN-HsVLxHi_BQ_2nP6zLXP6J8ZTFSNJ6IOp8OWMOlpDKkKhr2mo1qrbf6IRAb3iPg?key=cnNlNUFmU0VxUEZuR0lhTmVOOXp3dDB2czNkMTNB\" target=\"_blank\" rel=\"noopener noreferrer\">2018 Maryland\r\nClick For More Photos</a>Click below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 10th Ironman','','publish','open','closed','','ironman-maryland-my-10th-ironman-competition','','','2022-02-25 23:08:17','2022-02-25 23:08:17','',0,'https://www.drfields.com/?p=361',0,'post','',0),(362,8,'2019-06-08 03:58:20','2019-06-08 03:58:20','Ironman Maryland','Ironman Maryland','','inherit','open','closed','','ironman-maryland','','','2019-06-08 03:58:48','2019-06-08 03:58:48','',361,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg',0,'attachment','image/jpeg',0),(363,8,'2019-06-08 03:58:22','2019-06-08 03:58:22','Swim 400','Swim 400','','inherit','open','closed','','swim-400','','','2019-06-08 03:59:52','2019-06-08 03:59:52','',361,'https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg',0,'attachment','image/jpeg',0),(364,8,'2019-06-08 03:58:23','2019-06-08 03:58:23','Bike2 600','Bike2 600','','inherit','open','closed','','bike2-600','','','2019-06-08 04:00:34','2019-06-08 04:00:34','',361,'https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg',0,'attachment','image/jpeg',0),(365,8,'2019-06-08 03:58:23','2019-06-08 03:58:23','Run1 400','Run1 400','','inherit','open','closed','','run1-400','','','2019-06-08 04:01:14','2019-06-08 04:01:14','',361,'https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg',0,'attachment','image/jpeg',0),(366,8,'2019-06-08 03:58:24','2019-06-08 03:58:24','Finish Line C 400','Finish Line C 400','','inherit','open','closed','','finish-line-c-400','','','2019-06-08 04:04:09','2019-06-08 04:04:09','',361,'https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg',0,'attachment','image/jpeg',0),(367,8,'2019-06-08 04:02:17','2019-06-08 04:02:17','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" class=\"aligncenter size-full wp-image-362\" />\r\n\r\n<strong>Saturday, September 29, 2018\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong>\r\n\r\n\"Never lose sight of your goals\"\r\nYvette and Fred Fields\r\n\r\n<strong>Here’s the story of my 10th Ironman:</strong>\r\n\r\nIronman Maryland it was to be.\r\nI originally scheduled this to take place at Ironman Hamburg, Germany, June 30, 2018.\r\nHamburg is special for me as I lived there for 9 months many years ago.\r\nAnd both my parents were born in Germany.\r\nUnfortunately, it was not meant to be.\r\n\r\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake. The swim is my best part of the race and helps set me for the rest of the race. Also, in Europe when they cancel the swim they make you run first (not in the states where one just bikes and runs). No one practices running to biking. We practice swimming to biking and biking to running. So, after the 6K (4mile) mile starting run, I entered the transition area to get on the bike. But instead of being at the front of the crowd (as wold be if we had swum first), I was towards the back as I am not a fast runner. But either way I went off to do the 112-mile bike.\r\n\r\nThe first half of the bike (56 miles) went well. I felt strong and confident.\r\nAs I started the second loop (it was a double loop), I felt stomach pains.\r\nI had cramps and felt nauseous. My nutrition intake (I use only liquids) started to drop as my stomach could not take it. I usually take something in every 20 minutes. Then it was 30 minute, 40 minutes and more. This is not good as one must take in what you need and more on the bike so as not to run short during the marathon. The second half of my bike took an hour longer than the first half. This is very significant.\r\n\r\nWhen I transitioned to the run (T2), it took me quite a while to leave the transition area.\r\nAfter about five miles (I walked the last three miles due to lack of nutrition intake), I knew I was done.\r\nNo food, no water = no energy.\r\nInstead of attempting to go the whole way (which would have been impossible without bonking or\r\nworse passing out later), I decided to turn around and go back.\r\nSo, for my first time in over 60 triathlons, I did not finish.\r\nIt is hard to train but even harder to decide not to go on.\r\nBut for my overall health and safety, I knew that I had made the best choice.\r\n\r\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special Lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was Ironman Maryland at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate work outs.\r\n\r\n<strong class=\"subhead\">Getting There:</strong>\r\n\r\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross country flight to Philadelphia and a short flight to a small airport near Cambridge. Got to the hotel and checked in, looked over the course and got ready for race day which comes fast.The swim took place in a river that fed from the ocean. The day of the race the weather was very good. This race had lots of rain in the past but this day the weather was good\r\n\r\n<strong class=\"subhead\">The Swim 2.4 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-363\" />This race is notorious for rainy weather but race day was clear and without clouds. The swim takes place in a river that is fed from the ocean.  My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\r\n\r\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\r\n\r\n&nbsp;\r\n\r\n<strong>The Bike 112 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-364\" />There was some wind on the bike which picked up after 40 miles but somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours when my normal time for 56 miles is 3:10 or more\r\nI kept pushing ahead without exerting myself too much to save myself for the run.\r\nAnd I did not have any stomach problems!\r\n\r\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\r\n\r\n<strong>The run 26.2 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-365\" />As I exited the transition area to start my marathon run I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\r\n\r\nThis turned out to be my Achilles heel for this race.\r\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\r\n\r\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way after what had happened in Hamburg I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much. One of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely.\r\nThis helped a lot and kept me going without getting cold\r\n\r\n[caption id=\"attachment_366\" align=\"alignleft\" width=\"400\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"160\" height=\"301\" class=\"size-full wp-image-366\" /> Finish Line C 400[/caption]So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. There is a saying that in an Ironman that the run is 90% mental and the rest is in your head! Hahaha.\r\n\r\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\r\n\r\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\r\n</em>\r\n\r\nAll my aches and pains just faded away.\r\n\r\n<strong class=\"subhead\">Postscript:</strong>\r\n\r\nAs with every race my parents’ spirit was with me the whole way. What they went through to survive fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\r\n\r\nA very dear friend of mine is going through a severe illness right now.I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\r\n\r\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\r\nfinishing my 10th Ironman.\r\nAnd of course, everyone who took the time to read this.\r\n\r\n<strong>Peter A. Fields, MD, DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\r\n','Race Report 10th Ironman','','inherit','closed','closed','','361-revision-v1','','','2019-06-08 04:02:17','2019-06-08 04:02:17','',361,'https://www.drfields.com/uncategorized/361-revision-v1/',0,'revision','',0),(368,8,'2019-06-17 09:14:09','2019-06-17 09:14:09','</div class=\"col-md-8\">\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" class=\"aligncenter size-full wp-image-362\" />\n\n<h6 class=\"text-center\">Saturday, September 29, 2018\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\n\n<p class=\"text-center\">\"Never lose sight of your goals\"\nYvette and Fred Fields</p>\n\n<strong>Here’s the story of my 10th Ironman:</strong>\n\nIronman Maryland it was to be.\nI originally scheduled this to take place at Ironman Hamburg, Germany, June 30, 2018.\nHamburg is special for me as I lived there for 9 months many years ago.\nAnd both my parents were born in Germany.\nUnfortunately, it was not meant to be.\n\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake. The swim is my best part of the race and helps set me for the rest of the race. Also, in Europe when they cancel the swim they make you run first (not in the states where one just bikes and runs). No one practices running to biking. We practice swimming to biking and biking to running. So, after the 6K (4mile) mile starting run, I entered the transition area to get on the bike. But instead of being at the front of the crowd (as wold be if we had swum first), I was towards the back as I am not a fast runner. But either way I went off to do the 112-mile bike.\n\nThe first half of the bike (56 miles) went well. I felt strong and confident.\nAs I started the second loop (it was a double loop), I felt stomach pains.\nI had cramps and felt nauseous. My nutrition intake (I use only liquids) started to drop as my stomach could not take it. I usually take something in every 20 minutes. Then it was 30 minute, 40 minutes and more. This is not good as one must take in what you need and more on the bike so as not to run short during the marathon. The second half of my bike took an hour longer than the first half. This is very significant.\n\nWhen I transitioned to the run (T2), it took me quite a while to leave the transition area.\nAfter about five miles (I walked the last three miles due to lack of nutrition intake), I knew I was done.\nNo food, no water = no energy.\nInstead of attempting to go the whole way (which would have been impossible without bonking or\nworse passing out later), I decided to turn around and go back.\nSo, for my first time in over 60 triathlons, I did not finish.\nIt is hard to train but even harder to decide not to go on.\nBut for my overall health and safety, I knew that I had made the best choice.\n\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special Lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was Ironman Maryland at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate work outs.\n\n<strong class=\"subhead\">Getting There:</strong>\n\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross country flight to Philadelphia and a short flight to a small airport near Cambridge. Got to the hotel and checked in, looked over the course and got ready for race day which comes fast.The swim took place in a river that fed from the ocean. The day of the race the weather was very good. This race had lots of rain in the past but this day the weather was good\n\n<strong class=\"subhead\">The Swim 2.4 miles:</strong>\n\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-363\" />This race is notorious for rainy weather but race day was clear and without clouds. The swim takes place in a river that is fed from the ocean.  My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\n\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\n<div class=\"clear\"></div>\n<strong class=\"subhead\">The Bike 112 miles:</strong>\n\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"300\" height=\"250\" class=\"alignright size-full wp-image-364\" />There was some wind on the bike which picked up after 40 miles but somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours when my normal time for 56 miles is 3:10 or more\nI kept pushing ahead without exerting myself too much to save myself for the run.\nAnd I did not have any stomach problems!\n\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\n\n<strong class=\"subhead\">The run 26.2 miles:</strong>\n\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-365\" />As I exited the transition area to start my marathon run I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\n\nThis turned out to be my Achilles heel for this race.\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\n\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way after what had happened in Hamburg I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much. One of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely.\nThis helped a lot and kept me going without getting cold\n\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"300\" height=\"338\" class=\"alignright size-full wp-image-366\" />So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. There is a saying that in an Ironman that the run is 90% mental and the rest is in your head! Hahaha.\n\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\n\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\n</em>\n\nAll my aches and pains just faded away.\n\n<div class=\"clear\"></div>\n<strong class=\"subhead\">Postscript:</strong>\n\nAs with every race my parents’ spirit was with me the whole way. What they went through to survive fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\n\nA very dear friend of mine is going through a severe illness right now.I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\n\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\nfinishing my 10th Ironman.\nAnd of course, everyone who took the time to read this.\n\n<strong>Peter A. Fields, MD, DC</strong>\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\n','Race Report 10th Ironman','','inherit','closed','closed','','361-autosave-v1','','','2019-06-17 09:14:09','2019-06-17 09:14:09','',361,'https://www.drfields.com/uncategorized/361-autosave-v1/',0,'revision','',0),(369,8,'2019-06-08 04:04:24','2019-06-08 04:04:24','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" class=\"aligncenter size-full wp-image-362\" />\r\n\r\n<strong>Saturday, September 29, 2018\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong>\r\n\r\n\"Never lose sight of your goals\"\r\nYvette and Fred Fields\r\n\r\n<strong>Here’s the story of my 10th Ironman:</strong>\r\n\r\nIronman Maryland it was to be.\r\nI originally scheduled this to take place at Ironman Hamburg, Germany, June 30, 2018.\r\nHamburg is special for me as I lived there for 9 months many years ago.\r\nAnd both my parents were born in Germany.\r\nUnfortunately, it was not meant to be.\r\n\r\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake. The swim is my best part of the race and helps set me for the rest of the race. Also, in Europe when they cancel the swim they make you run first (not in the states where one just bikes and runs). No one practices running to biking. We practice swimming to biking and biking to running. So, after the 6K (4mile) mile starting run, I entered the transition area to get on the bike. But instead of being at the front of the crowd (as wold be if we had swum first), I was towards the back as I am not a fast runner. But either way I went off to do the 112-mile bike.\r\n\r\nThe first half of the bike (56 miles) went well. I felt strong and confident.\r\nAs I started the second loop (it was a double loop), I felt stomach pains.\r\nI had cramps and felt nauseous. My nutrition intake (I use only liquids) started to drop as my stomach could not take it. I usually take something in every 20 minutes. Then it was 30 minute, 40 minutes and more. This is not good as one must take in what you need and more on the bike so as not to run short during the marathon. The second half of my bike took an hour longer than the first half. This is very significant.\r\n\r\nWhen I transitioned to the run (T2), it took me quite a while to leave the transition area.\r\nAfter about five miles (I walked the last three miles due to lack of nutrition intake), I knew I was done.\r\nNo food, no water = no energy.\r\nInstead of attempting to go the whole way (which would have been impossible without bonking or\r\nworse passing out later), I decided to turn around and go back.\r\nSo, for my first time in over 60 triathlons, I did not finish.\r\nIt is hard to train but even harder to decide not to go on.\r\nBut for my overall health and safety, I knew that I had made the best choice.\r\n\r\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special Lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was Ironman Maryland at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate work outs.\r\n\r\n<strong class=\"subhead\">Getting There:</strong>\r\n\r\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross country flight to Philadelphia and a short flight to a small airport near Cambridge. Got to the hotel and checked in, looked over the course and got ready for race day which comes fast.The swim took place in a river that fed from the ocean. The day of the race the weather was very good. This race had lots of rain in the past but this day the weather was good\r\n\r\n<strong class=\"subhead\">The Swim 2.4 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-363\" />This race is notorious for rainy weather but race day was clear and without clouds. The swim takes place in a river that is fed from the ocean.  My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\r\n\r\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\r\n\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">The Bike 112 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-364\" />There was some wind on the bike which picked up after 40 miles but somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours when my normal time for 56 miles is 3:10 or more\r\nI kept pushing ahead without exerting myself too much to save myself for the run.\r\nAnd I did not have any stomach problems!\r\n\r\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\r\n\r\n<strong class=\"subhead\">The run 26.2 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-365\" />As I exited the transition area to start my marathon run I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\r\n\r\nThis turned out to be my Achilles heel for this race.\r\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\r\n\r\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way after what had happened in Hamburg I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much. One of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely.\r\nThis helped a lot and kept me going without getting cold\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-366\" />So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. There is a saying that in an Ironman that the run is 90% mental and the rest is in your head! Hahaha.\r\n\r\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\r\n\r\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\r\n</em>\r\n\r\nAll my aches and pains just faded away.\r\n\r\n<strong class=\"subhead\">Postscript:</strong>\r\n\r\nAs with every race my parents’ spirit was with me the whole way. What they went through to survive fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\r\n\r\nA very dear friend of mine is going through a severe illness right now.I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\r\n\r\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\r\nfinishing my 10th Ironman.\r\nAnd of course, everyone who took the time to read this.\r\n\r\n<strong>Peter A. Fields, MD, DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\r\n','Race Report 10th Ironman','','inherit','closed','closed','','361-revision-v1','','','2019-06-08 04:04:24','2019-06-08 04:04:24','',361,'https://www.drfields.com/uncategorized/361-revision-v1/',0,'revision','',0),(370,8,'2019-06-08 04:06:14','2019-06-08 04:06:14','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" class=\"aligncenter size-full wp-image-362\" />\r\n\r\n<strong>Saturday, September 29, 2018\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong>\r\n\r\n\"Never lose sight of your goals\"\r\nYvette and Fred Fields\r\n\r\n<strong>Here’s the story of my 10th Ironman:</strong>\r\n\r\nIronman Maryland it was to be.\r\nI originally scheduled this to take place at Ironman Hamburg, Germany, June 30, 2018.\r\nHamburg is special for me as I lived there for 9 months many years ago.\r\nAnd both my parents were born in Germany.\r\nUnfortunately, it was not meant to be.\r\n\r\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake. The swim is my best part of the race and helps set me for the rest of the race. Also, in Europe when they cancel the swim they make you run first (not in the states where one just bikes and runs). No one practices running to biking. We practice swimming to biking and biking to running. So, after the 6K (4mile) mile starting run, I entered the transition area to get on the bike. But instead of being at the front of the crowd (as wold be if we had swum first), I was towards the back as I am not a fast runner. But either way I went off to do the 112-mile bike.\r\n\r\nThe first half of the bike (56 miles) went well. I felt strong and confident.\r\nAs I started the second loop (it was a double loop), I felt stomach pains.\r\nI had cramps and felt nauseous. My nutrition intake (I use only liquids) started to drop as my stomach could not take it. I usually take something in every 20 minutes. Then it was 30 minute, 40 minutes and more. This is not good as one must take in what you need and more on the bike so as not to run short during the marathon. The second half of my bike took an hour longer than the first half. This is very significant.\r\n\r\nWhen I transitioned to the run (T2), it took me quite a while to leave the transition area.\r\nAfter about five miles (I walked the last three miles due to lack of nutrition intake), I knew I was done.\r\nNo food, no water = no energy.\r\nInstead of attempting to go the whole way (which would have been impossible without bonking or\r\nworse passing out later), I decided to turn around and go back.\r\nSo, for my first time in over 60 triathlons, I did not finish.\r\nIt is hard to train but even harder to decide not to go on.\r\nBut for my overall health and safety, I knew that I had made the best choice.\r\n\r\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special Lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was Ironman Maryland at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate work outs.\r\n\r\n<strong class=\"subhead\">Getting There:</strong>\r\n\r\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross country flight to Philadelphia and a short flight to a small airport near Cambridge. Got to the hotel and checked in, looked over the course and got ready for race day which comes fast.The swim took place in a river that fed from the ocean. The day of the race the weather was very good. This race had lots of rain in the past but this day the weather was good\r\n\r\n<strong class=\"subhead\">The Swim 2.4 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-363\" />This race is notorious for rainy weather but race day was clear and without clouds. The swim takes place in a river that is fed from the ocean.  My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\r\n\r\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\r\n\r\n<strong class=\"subhead\">The Bike 112 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"300\" height=\"250\" class=\"alignright size-full wp-image-364\" />There was some wind on the bike which picked up after 40 miles but somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours when my normal time for 56 miles is 3:10 or more\r\nI kept pushing ahead without exerting myself too much to save myself for the run.\r\nAnd I did not have any stomach problems!\r\n\r\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\r\n\r\n<strong class=\"subhead\">The run 26.2 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-365\" />As I exited the transition area to start my marathon run I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\r\n\r\nThis turned out to be my Achilles heel for this race.\r\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\r\n\r\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way after what had happened in Hamburg I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much. One of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely.\r\nThis helped a lot and kept me going without getting cold\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-366\" />So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. There is a saying that in an Ironman that the run is 90% mental and the rest is in your head! Hahaha.\r\n\r\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\r\n\r\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\r\n</em>\r\n\r\nAll my aches and pains just faded away.\r\n\r\n&nbsp;\r\n<strong class=\"subhead\">Postscript:</strong>\r\n\r\nAs with every race my parents’ spirit was with me the whole way. What they went through to survive fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\r\n\r\nA very dear friend of mine is going through a severe illness right now.I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\r\n\r\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\r\nfinishing my 10th Ironman.\r\nAnd of course, everyone who took the time to read this.\r\n\r\n<strong>Peter A. Fields, MD, DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\r\n','Race Report 10th Ironman','','inherit','closed','closed','','361-revision-v1','','','2019-06-08 04:06:14','2019-06-08 04:06:14','',361,'https://www.drfields.com/uncategorized/361-revision-v1/',0,'revision','',0),(371,8,'2019-06-08 04:07:19','2019-06-08 04:07:19','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" class=\"aligncenter size-full wp-image-362\" />\r\n\r\n<strong>Saturday, September 29, 2018\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong>\r\n\r\n\"Never lose sight of your goals\"\r\nYvette and Fred Fields\r\n\r\n<strong>Here’s the story of my 10th Ironman:</strong>\r\n\r\nIronman Maryland it was to be.\r\nI originally scheduled this to take place at Ironman Hamburg, Germany, June 30, 2018.\r\nHamburg is special for me as I lived there for 9 months many years ago.\r\nAnd both my parents were born in Germany.\r\nUnfortunately, it was not meant to be.\r\n\r\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake. The swim is my best part of the race and helps set me for the rest of the race. Also, in Europe when they cancel the swim they make you run first (not in the states where one just bikes and runs). No one practices running to biking. We practice swimming to biking and biking to running. So, after the 6K (4mile) mile starting run, I entered the transition area to get on the bike. But instead of being at the front of the crowd (as wold be if we had swum first), I was towards the back as I am not a fast runner. But either way I went off to do the 112-mile bike.\r\n\r\nThe first half of the bike (56 miles) went well. I felt strong and confident.\r\nAs I started the second loop (it was a double loop), I felt stomach pains.\r\nI had cramps and felt nauseous. My nutrition intake (I use only liquids) started to drop as my stomach could not take it. I usually take something in every 20 minutes. Then it was 30 minute, 40 minutes and more. This is not good as one must take in what you need and more on the bike so as not to run short during the marathon. The second half of my bike took an hour longer than the first half. This is very significant.\r\n\r\nWhen I transitioned to the run (T2), it took me quite a while to leave the transition area.\r\nAfter about five miles (I walked the last three miles due to lack of nutrition intake), I knew I was done.\r\nNo food, no water = no energy.\r\nInstead of attempting to go the whole way (which would have been impossible without bonking or\r\nworse passing out later), I decided to turn around and go back.\r\nSo, for my first time in over 60 triathlons, I did not finish.\r\nIt is hard to train but even harder to decide not to go on.\r\nBut for my overall health and safety, I knew that I had made the best choice.\r\n\r\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special Lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was Ironman Maryland at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate work outs.\r\n\r\n<strong class=\"subhead\">Getting There:</strong>\r\n\r\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross country flight to Philadelphia and a short flight to a small airport near Cambridge. Got to the hotel and checked in, looked over the course and got ready for race day which comes fast.The swim took place in a river that fed from the ocean. The day of the race the weather was very good. This race had lots of rain in the past but this day the weather was good\r\n\r\n<strong class=\"subhead\">The Swim 2.4 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-363\" />This race is notorious for rainy weather but race day was clear and without clouds. The swim takes place in a river that is fed from the ocean.  My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\r\n\r\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\r\n\r\n<strong class=\"subhead\">The Bike 112 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"300\" height=\"250\" class=\"alignright size-full wp-image-364\" />There was some wind on the bike which picked up after 40 miles but somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours when my normal time for 56 miles is 3:10 or more\r\nI kept pushing ahead without exerting myself too much to save myself for the run.\r\nAnd I did not have any stomach problems!\r\n\r\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\r\n\r\n<strong class=\"subhead\">The run 26.2 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-365\" />As I exited the transition area to start my marathon run I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\r\n\r\nThis turned out to be my Achilles heel for this race.\r\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\r\n\r\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way after what had happened in Hamburg I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much. One of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely.\r\nThis helped a lot and kept me going without getting cold\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"200\" height=\"225\" class=\"alignright size-full wp-image-366\" />So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. There is a saying that in an Ironman that the run is 90% mental and the rest is in your head! Hahaha.\r\n\r\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\r\n\r\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\r\n</em>\r\n\r\nAll my aches and pains just faded away.\r\n\r\n&nbsp;\r\n<strong class=\"subhead\">Postscript:</strong>\r\n\r\nAs with every race my parents’ spirit was with me the whole way. What they went through to survive fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\r\n\r\nA very dear friend of mine is going through a severe illness right now.I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\r\n\r\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\r\nfinishing my 10th Ironman.\r\nAnd of course, everyone who took the time to read this.\r\n\r\n<strong>Peter A. Fields, MD, DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\r\n','Race Report 10th Ironman','','inherit','closed','closed','','361-revision-v1','','','2019-06-08 04:07:19','2019-06-08 04:07:19','',361,'https://www.drfields.com/uncategorized/361-revision-v1/',0,'revision','',0),(372,8,'2019-06-08 04:08:01','2019-06-08 04:08:01','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" class=\"aligncenter size-full wp-image-362\" />\r\n\r\n<strong>Saturday, September 29, 2018\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong>\r\n\r\n\"Never lose sight of your goals\"\r\nYvette and Fred Fields\r\n\r\n<strong>Here’s the story of my 10th Ironman:</strong>\r\n\r\nIronman Maryland it was to be.\r\nI originally scheduled this to take place at Ironman Hamburg, Germany, June 30, 2018.\r\nHamburg is special for me as I lived there for 9 months many years ago.\r\nAnd both my parents were born in Germany.\r\nUnfortunately, it was not meant to be.\r\n\r\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake. The swim is my best part of the race and helps set me for the rest of the race. Also, in Europe when they cancel the swim they make you run first (not in the states where one just bikes and runs). No one practices running to biking. We practice swimming to biking and biking to running. So, after the 6K (4mile) mile starting run, I entered the transition area to get on the bike. But instead of being at the front of the crowd (as wold be if we had swum first), I was towards the back as I am not a fast runner. But either way I went off to do the 112-mile bike.\r\n\r\nThe first half of the bike (56 miles) went well. I felt strong and confident.\r\nAs I started the second loop (it was a double loop), I felt stomach pains.\r\nI had cramps and felt nauseous. My nutrition intake (I use only liquids) started to drop as my stomach could not take it. I usually take something in every 20 minutes. Then it was 30 minute, 40 minutes and more. This is not good as one must take in what you need and more on the bike so as not to run short during the marathon. The second half of my bike took an hour longer than the first half. This is very significant.\r\n\r\nWhen I transitioned to the run (T2), it took me quite a while to leave the transition area.\r\nAfter about five miles (I walked the last three miles due to lack of nutrition intake), I knew I was done.\r\nNo food, no water = no energy.\r\nInstead of attempting to go the whole way (which would have been impossible without bonking or\r\nworse passing out later), I decided to turn around and go back.\r\nSo, for my first time in over 60 triathlons, I did not finish.\r\nIt is hard to train but even harder to decide not to go on.\r\nBut for my overall health and safety, I knew that I had made the best choice.\r\n\r\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special Lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was Ironman Maryland at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate work outs.\r\n\r\n<strong class=\"subhead\">Getting There:</strong>\r\n\r\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross country flight to Philadelphia and a short flight to a small airport near Cambridge. Got to the hotel and checked in, looked over the course and got ready for race day which comes fast.The swim took place in a river that fed from the ocean. The day of the race the weather was very good. This race had lots of rain in the past but this day the weather was good\r\n\r\n<strong class=\"subhead\">The Swim 2.4 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-363\" />This race is notorious for rainy weather but race day was clear and without clouds. The swim takes place in a river that is fed from the ocean.  My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\r\n\r\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\r\n\r\n<strong class=\"subhead\">The Bike 112 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"300\" height=\"250\" class=\"alignright size-full wp-image-364\" />There was some wind on the bike which picked up after 40 miles but somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours when my normal time for 56 miles is 3:10 or more\r\nI kept pushing ahead without exerting myself too much to save myself for the run.\r\nAnd I did not have any stomach problems!\r\n\r\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\r\n\r\n<strong class=\"subhead\">The run 26.2 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-365\" />As I exited the transition area to start my marathon run I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\r\n\r\nThis turned out to be my Achilles heel for this race.\r\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\r\n\r\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way after what had happened in Hamburg I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much. One of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely.\r\nThis helped a lot and kept me going without getting cold\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"300\" height=\"338\" class=\"alignright size-full wp-image-366\" />So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. There is a saying that in an Ironman that the run is 90% mental and the rest is in your head! Hahaha.\r\n\r\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\r\n\r\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\r\n</em>\r\n\r\nAll my aches and pains just faded away.\r\n\r\n&nbsp;\r\n<strong class=\"subhead\">Postscript:</strong>\r\n\r\nAs with every race my parents’ spirit was with me the whole way. What they went through to survive fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\r\n\r\nA very dear friend of mine is going through a severe illness right now.I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\r\n\r\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\r\nfinishing my 10th Ironman.\r\nAnd of course, everyone who took the time to read this.\r\n\r\n<strong>Peter A. Fields, MD, DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\r\n','Race Report 10th Ironman','','inherit','closed','closed','','361-revision-v1','','','2019-06-08 04:08:01','2019-06-08 04:08:01','',361,'https://www.drfields.com/uncategorized/361-revision-v1/',0,'revision','',0),(373,8,'2019-06-08 04:12:56','2019-06-08 04:12:56','<h2 style=\"text-align: left;\">The Athletic Doc<sup>®</sup></h2>\r\nPeter A. Fields, MD, DC has become known as <strong>The Athletic Doc<sup>®.  </sup></strong>\r\n\r\nHe not only treats athletes but is an athlete himself, so he understands the desire to keep active. So if you suffer an injury, he gets what it means to you to get back into the game or to return quickly to your sport.\r\n\r\n[caption id=\"attachment_374\" align=\"alignright\" width=\"498\"]<img class=\" wp-image-374\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"498\" height=\"369\" /> <em><strong> Pete Jacobs 2012 Ironman World Champion and Dr. Fields           (The Atletic Doc<sup>®)</sup></strong></em><span style=\"font-size: 16px;\">He not only treats athletes in his practice but is an athlete himself.</span>[/caption]\r\n<h3>How Doctor Fields Became <strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong></h3>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has led to him becoming known as <strong>The Athletic Doc<sup>®</sup></strong>. To date, he has completed eleven Ironman Triathlons. An Ironman Triathlon is a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking, or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n\r\n[caption id=\"attachment_4938\" align=\"alignleft\" width=\"359\"]<img class=\" wp-image-4938\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/3c2609ba-657a-4097-a191-6a009c32f46e-366x500.jpg\" alt=\"The Athletic Doc Scuba Diving\" width=\"359\" height=\"490\" /> <strong>      <em>The Athletic Doc Scuba Diving</em></strong>[/caption]\r\n<h3><strong class=\"subhead\">Peter A. Fields, MD, DC</strong> Keeps Active and Fit to Maintain Optimal Health</h3>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods, and white flour or white sugar products. <em>The Athletic Doc<sup>®</sup></em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic, and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water, and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h2>About Peter A. Fields, MD, DC</h2>\r\nDr. Fields is the Director of OrthoRegen<sup>®</sup> in Santa Monica, California, one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr. Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic.\r\n\r\nDr. Fields is a leading expert in Regenerative Orthopedic treatments such as Stem Cells, PRP, and Prolotherapy, to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc<sup>®</sup> motto is \"not only train hard but smart – as if your body depended on it\"</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar\">\r\n<div id=\"aboutdocgallery\" class=\"col-md-12\">\r\n<h4>Ironman Photos &amp; Stories</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" />2017 Ironman Santa Rose</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" />2016 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" />2016 Ironman Switzerland</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\" />2015 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\" />2015 Ironman Brazil</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\" />2014 Ironman Austria</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" />2013 Ironman Canada</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" />2012 Ironman Cozumel</a></li>\r\n</ul>\r\n</div>\r\n</div>','About The Athletic Doc','','publish','open','closed','','about-the-athletic-doc','','','2023-08-11 20:56:39','2023-08-11 20:56:39','',0,'https://www.drfields.com/?p=373',0,'post','',0),(374,8,'2019-06-08 04:12:21','2019-06-08 04:12:21','Dr Fields Pete Jacobs Small','Dr Fields Pete Jacobs Small','Pete Jacobs 2012 Ironman\nWorld Champion\n& Dr. Peter A Fields','inherit','open','closed','','dr-fields-pete-jacobs-small','','','2019-06-08 04:12:30','2019-06-08 04:12:30','',373,'https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg',0,'attachment','image/jpeg',0),(375,8,'2019-06-08 04:12:56','2019-06-08 04:12:56','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h2>How Doctor Fields Became  <strong>The Athletic Doc®.</strong></h2>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h2> <strong>The Athletic Doc® Keeps Active and Fit to Maintain Optimal Health </strong></h2>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h2> About <strong>The Athletic Doc® </strong></h2>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n&nbsp;\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n\r\n</div>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 04:12:56','2019-06-08 04:12:56','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(376,8,'2019-06-17 09:21:54','2019-06-17 09:21:54','<h4>The Athletic Doc<sup>®</h4>\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\nWorld Champion\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\nHe not only treats athletes in his practice but is an athlete himself.\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\n\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\n\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\n<h5> About <strong>The Athletic Doc® </strong></h5>\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\n\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<div class=\"fullwidth color_bar row-full \">\n\n<div class=\"col-md-12\" id=\"aboutdocgallery\">\n<h4>Ironman Photos & Stories</h4>\n<ul>\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\"><span>2017 Ironman Santa Rose</span></a></li>\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\"><span>2016 Ironman Cozumel</span></a></li>\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\"><span>2016 Ironman Switzerland</span></a></li>\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\"><span>2015 Ironman Cozumel</span></a></li>\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\"><span>2015 Ironman Brazil</span></a></li>\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\"><span>2014 Ironman Austria</span></a></li>\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\"><span>2013 Ironman Canada</span></a></li>\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\"><span>2012 Ironman Cozumel</span></a></li>\n</ul>\n</div></div>','About The Athletic Doc','','inherit','closed','closed','','373-autosave-v1','','','2019-06-17 09:21:54','2019-06-17 09:21:54','',373,'https://www.drfields.com/uncategorized/373-autosave-v1/',0,'revision','',0),(377,8,'2019-06-08 04:15:09','2019-06-08 04:15:09','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h4>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h4>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h4> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h4>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h4> About <strong>The Athletic Doc® </strong></h4>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n&nbsp;\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n\r\n</div>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 04:15:09','2019-06-08 04:15:09','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(378,8,'2019-06-08 04:16:58','2019-06-08 04:16:58','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h4> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h4>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h4> About <strong>The Athletic Doc® </strong></h4>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n&nbsp;\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n\r\n</div>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 04:16:58','2019-06-08 04:16:58','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(379,8,'2019-06-08 04:20:56','2019-06-08 04:20:56','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n\r\n</div>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 04:20:56','2019-06-08 04:20:56','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(380,8,'2019-06-08 04:21:37','2019-06-08 04:21:37','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n</div>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 04:21:37','2019-06-08 04:21:37','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(381,8,'2019-06-08 04:31:11','2019-06-08 04:31:11','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"col-md-12\">\r\n<ul>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-351\" /><br><span>2017 Ironman Santa Rosa</span></li>\r\n</ul>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 04:31:11','2019-06-08 04:31:11','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(382,8,'2019-06-08 04:58:53','2019-06-08 04:58:53','<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What Are Prolotherapy Treatments?</h4>\r\nProlotherapy treatments are a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall. But the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells. And it strengthens lax or torn tendons and ligaments. Ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>.\r\n\r\nProlotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nProlotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more. And it is effective at treating many causes of chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis, and bursitis.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4 class=\"text-center\">Video: What is Prolotherapy Treatment?</h4>\r\n<div style=\"display: table; margin: 0 auto;\">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]</div>\r\n<a class=\"buttonlink\" href=\"/regenerative-techniques/prolotherapy-videos/\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a phone consultation to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','publish','open','closed','','prolotherapy-treatments-overview','','','2022-09-15 03:55:38','2022-09-15 03:55:38','',0,'https://www.drfields.com/?p=382',0,'post','',0),(383,8,'2019-06-08 04:48:07','2019-06-08 04:48:07','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n\r\n<div class=\"col-md-12\" id=\"aboutdocgallery\">\r\n<ul>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" class=\"size-full wp-image-351\" /><br><span>2017 Ironman Santa Rosa</span></li>\r\n<li>[caption id=\"attachment_332\" align=\"aligncenter\" img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\"  class=\"size-full wp-image-332\" />2016 Ironman Cozumel[/caption]</li>\r\n<li></li>\r\n<li></li>\r\n<li></li>\r\n<li></li>\r\n</ul>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 04:48:07','2019-06-08 04:48:07','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(384,8,'2019-06-08 04:49:33','2019-06-08 04:49:33','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n\r\n<div class=\"col-md-12\" id=\"aboutdocgallery\">\r\n<ul>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" class=\"size-full wp-image-351\" /><br><span>2017 Ironman Santa Rosa</span></li>\r\n<li>[caption id=\"attachment_332\" align=\"aligncenter\"]< img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\"  class=\"size-full wp-image-332\" />2016 Ironman Cozumel[/caption]</li>\r\n<li></li>\r\n<li></li>\r\n<li></li>\r\n<li></li>\r\n</ul>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 04:49:33','2019-06-08 04:49:33','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(385,8,'2019-06-08 04:54:53','2019-06-08 04:54:53','Cozumel Finish 2015 275','Cozumel Finish 2015 275','Cozumel Finish 2015 275','inherit','open','closed','','cozumel-finish-2015-275','','','2019-06-08 04:54:53','2019-06-08 04:54:53','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg',0,'attachment','image/jpeg',0),(386,8,'2019-06-08 04:57:03','2019-06-08 04:57:03','Ironman2014 Large','Ironman2014 Large','Ironman2014 Large','inherit','open','closed','','ironman2014-large','','','2019-06-08 04:57:03','2019-06-08 04:57:03','',0,'https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg',0,'attachment','image/jpeg',0),(387,8,'2019-06-08 04:58:53','2019-06-08 04:58:53','<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.  <strong>IMAGE HERE</strong>\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/Sports-Injuries/Knee-Injuries\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff injuries</a> and more.\r\n\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\n\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Dr-Fields\">  Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img title=\"Couple on Beach\" src=\"https://www.drfields.com/portals/0/Images/couple1.jpg\" alt=\"Couple on Beach\" />\r\n\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\n\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Neck-Pain\">neck pain</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Shoulder-Pain\">shoulder</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Knee-Pain\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/Sports-Injuries\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<H4>Video: What is Prolotherapy Treatment?</h4> <strong>video here</strong>\r\n<a href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a href=\"#\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-08 04:58:53','2019-06-08 04:58:53','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(388,8,'2019-06-14 04:56:39','2019-06-14 04:56:39','&nbsp;\n\n<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\n<h4>What is Prolotherapy Treatment?</h4>\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\n\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\n\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\n\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\n<h4>What is Prolotherapy Treatment Like?</h4>\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\n\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\n\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\n\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\n<span class=\"text-center\">\n<h4>Video: What is Prolotherapy Treatment?</h4>\n\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]\n</span>\n<a class=\"buttonlink\" href=\"#\">View More Videos on Prolotherapy</a>\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-autosave-v1','','','2019-06-14 04:56:39','2019-06-14 04:56:39','',382,'https://www.drfields.com/uncategorized/382-autosave-v1/',0,'revision','',0),(389,8,'2019-06-08 04:59:06','2019-06-08 04:59:06','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n\r\n<div class=\"col-md-12\" id=\"aboutdocgallery\">\r\n<ul>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" class=\"size-full wp-image-351\" /><br><span>2017 Ironman Santa Rosa</span></li>\r\n<li>< img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\"  class=\"size-full wp-image-332\" />\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\"></li>\r\n<li><img src\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\"></li>\r\n</ul>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 04:59:06','2019-06-08 04:59:06','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(390,8,'2019-06-08 04:59:58','2019-06-08 04:59:58','<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.  <strong>IMAGE HERE</strong>\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/Sports-Injuries/Knee-Injuries\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff injuries</a> and more.\r\n\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\n\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a href=\"#\">  Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img title=\"Couple on Beach\" src=\"https://www.drfields.com/portals/0/Images/couple1.jpg\" alt=\"Couple on Beach\" />\r\n\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\n\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Neck-Pain\">neck pain</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Shoulder-Pain\">shoulder</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Knee-Pain\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/Sports-Injuries\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<H4>Video: What is Prolotherapy Treatment?</h4> <strong>video here</strong>\r\n<a href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a href=\"#\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-08 04:59:58','2019-06-08 04:59:58','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(391,8,'2019-06-08 05:00:26','2019-06-08 05:00:26','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n\r\n<div class=\"col-md-12\" id=\"aboutdocgallery\">\r\n<ul>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" class=\"size-full wp-image-351\" /><br><span>2017 Ironman Santa Rosa</span></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\"><li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\"></li>\r\n<li><img src\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\"></li>\r\n</ul>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 05:00:26','2019-06-08 05:00:26','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(392,8,'2019-06-08 05:00:42','2019-06-08 05:00:42','<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.  <strong>IMAGE HERE</strong>\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/Sports-Injuries/Knee-Injuries\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff injuries</a> and more.\r\n\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\n\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a href=\"#\">  Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img title=\"Couple on Beach\" src=\"https://www.drfields.com/portals/0/Images/couple1.jpg\" alt=\"Couple on Beach\" />\r\n\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\n\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Neck-Pain\">neck pain</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Shoulder-Pain\">shoulder</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Knee-Pain\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/Sports-Injuries\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<H4>Video: What is Prolotherapy Treatment?</h4> <strong>video here</strong>\r\n<a href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a href=\"#\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-08 05:00:42','2019-06-08 05:00:42','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(393,8,'2019-06-08 05:01:51','2019-06-08 05:01:51','<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.  <strong>IMAGE HERE</strong>\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/Sports-Injuries/Knee-Injuries\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff injuries</a> and more.\r\n\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\n\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"#\">  Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img title=\"Couple on Beach\" src=\"https://www.drfields.com/portals/0/Images/couple1.jpg\" alt=\"Couple on Beach\" />\r\n\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\n\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Neck-Pain\">neck pain</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Shoulder-Pain\">shoulder</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Knee-Pain\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/Sports-Injuries\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<H4>Video: What is Prolotherapy Treatment?</h4> <strong>video here</strong>\r\n<a href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a href=\"#\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-08 05:01:51','2019-06-08 05:01:51','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(394,8,'2019-06-08 05:04:21','2019-06-08 05:04:21','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n\r\n<div class=\"col-md-12\" id=\"aboutdocgallery\">\r\n<ul>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\"/><br><span>2017 Ironman Santa Rosa</span></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\"><li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\"></li>\r\n<li><img src\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\"></li>\r\n</ul>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 05:04:21','2019-06-08 05:04:21','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(395,8,'2019-06-08 05:17:54','2019-06-08 05:17:54','<h2>Prolotherapy Treatment Facts</h2>\r\nIn this article, we will discuss the answers to some of the questions you may have about Prolotherapy treatments. Plus, we will elaborate on some Prolotherapy facts.\r\n\r\n<img class=\"size-medium wp-image-4832 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/prolojpg-500x498.png\" alt=\"Prolojpg\" width=\"500\" height=\"498\" />\r\n\r\n<strong> <a href=\"#1\">1) What does Prolotherapy treat?</a></strong>\r\n<strong><a href=\"#2\">2) How many Prolotherapy treatments will I need?</a></strong>\r\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"#4\">4) Is Prolotherapy the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"#5\">5) Are Prolotherapy treatments safe?</a></strong>\r\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"#7\">7) Will my insurance cover Prolotherapy treatments? What are the fees?</a></strong>\r\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n<h3><strong><a id=\"1\" name=\"1\"></a>1) What Does Prolotherapy Treat?</strong></h3>\r\n<em><strong>Prolotherapy is one of the regenerative techniques we use at our clinic. It is a non-surgical regenerative injection technique that introduces small amounts of solution to the site of painful and degenerated ligaments, their insertions (entheses), tendons, joints, and other joint structures. It usually takes place over several treatment sessions to promote the growth of normal cells and tissues.</strong></em>\r\n\r\nThe treatment stimulates the body\'s own natural healing processes in cases of chronic musculoskeletal pain and instability. It boosts the regenerative processes in the joint that will facilitate the repair and regrowth of connective tissue, ligaments, and tendons. And it will result in increased strength, repaired cartilage, and the stabilization of other joint structures to bring about the healing of the entire joint.\r\n\r\nThe healed ligaments and tendons produced after Prolotherapy appear much the same as normal tissues, except that they are thicker, stronger, and contain fibers of varying thickness, testifying to the new and ongoing creation of tissue.\r\n\r\n<strong>Learning points</strong>\r\n<ul>\r\n 	<li>Prolotherapy is an in-office injection treatment that research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical and non-effective conservative care treatments.</li>\r\n 	<li>In our opinion, based on extensive research and clinical results, Prolotherapy can be superior to many other treatments in relieving the problems of chronic joint and spine pain and, most importantly, in getting people back to a happy and active lifestyle.</li>\r\n</ul>\r\n<h3><em>What Joints Can Prolotherapy Treat?</em></h3>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 125px;\">\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td style=\"width: 125px;\" valign=\"top\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacroiliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><em>What Type of Pain or Injuries Can Prolotherapy Treatments Help?</em></h3>\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose, and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain, and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How Many Prolotherapy Treatments Will I Need?</strong></h3>\r\nThe average person requires 6 treatment sessions given at 2 to 4-week intervals. But the number of treatments varies with each patient. Difficult (post-surgical, long-standing, etc) or other complicated cases may require 8, 10, or 12 treatments. Many patients feel the relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"3\" name=\"3\"></a>3) Will I Need to Continue Care after Treatment?</strong></h3>\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, additional treatment may be needed.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"4\" name=\"4\"></a>4) Is Prolotherapy the Same Thing as Cortisone Shots</strong><strong>?</strong></h3>\r\nLong-term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection. But Prolotherapy consists of multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"5\" name=\"5\"></a>5) Are Prolotherapy Treatments Safe?</strong></h3>\r\nProlotherapy is an extremely safe procedure. As with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. The risks with Prolotherapy than surgery, and even less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong></h3>\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine, or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive treatments without painkillers and do just fine. </strong>\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"7\" name=\"7\"></a>7) Will My Insurance Cover Prolotherapy? What Are the Fees?</strong></h3>\r\nFor information regarding insurance and fees <a href=\"https://www.drfields.com/about/common-questions/\">Click Here</a> to visit our common questions section.\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"8\" name=\"8\"></a>8) Is It Advisable to Drive or Work after Prolotherapy?</strong></h3>\r\nYou can drive after you receive Prolotherapy. However, you may feel a little stiff but will be able to continue with your activities of daily living.  Keep in mind that getting your neck done is different than, say, receiving Prolotherapy to your hand. Your neck will be stiff after treatment, which means it will be difficult to turn to the left and to the right. Having a driver would be a good idea.\r\n\r\nThe same goes with being capable of working.  Most of us are able to go back to work after the treatment. There are no work restrictions. However, depending on your type of work, you may want to rest afterward. Overall, it would be advisable to have a driver for your first treatment to see how you personally feel afterward and make the appropriate decision.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Prolotherapy Treatment Facts','','publish','open','closed','','prolotherapy-facts','','','2021-08-22 23:30:07','2021-08-22 23:30:07','',0,'https://www.drfields.com/?p=395',0,'post','',0),(396,8,'2019-06-08 05:06:06','2019-06-08 05:06:06','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n\r\n<div class=\"col-md-12\" id=\"aboutdocgallery\">\r\n<ul>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\"/><br><span>2017 Ironman Santa Rosa</span></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\"><li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\"></li>\r\n</ul>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 05:06:06','2019-06-08 05:06:06','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(397,8,'2019-06-08 05:09:13','2019-06-08 05:09:13','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n\r\n<div class=\"col-md-12\" id=\"aboutdocgallery\">\r\n<ul>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\"><li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\"></li>\r\n</ul>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 05:09:13','2019-06-08 05:09:13','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(398,8,'2019-06-08 05:10:02','2019-06-08 05:10:02','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n\r\n<div class=\"col-md-12\" id=\"aboutdocgallery\">\r\n<ul>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\"></li>\r\n</ul>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 05:10:02','2019-06-08 05:10:02','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(399,8,'2019-06-08 05:15:33','2019-06-08 05:15:33','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n\r\n<div class=\"col-md-12\" id=\"aboutdocgallery\">\r\n<h4>Ironman Photos & Stories</h4>\r\n<ul>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\"></li>\r\n</ul>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 05:15:33','2019-06-08 05:15:33','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(400,8,'2022-12-02 06:01:38','2019-06-08 05:16:45',' ','','','publish','closed','closed','','400','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=400',10,'nav_menu_item','',0),(401,8,'2022-12-02 06:01:38','2019-06-08 05:16:45',' ','','','publish','closed','closed','','401','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=401',20,'nav_menu_item','',0),(402,8,'2022-12-02 06:01:38','2019-06-08 05:16:45',' ','','','publish','closed','closed','','402','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=402',19,'nav_menu_item','',0),(403,8,'2019-06-08 05:17:47','2019-06-08 05:17:47','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n\r\n<div class=\"col-md-12\" id=\"aboutdocgallery\">\r\n<h4>Ironman Photos & Stories</h4>\r\n<ul>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\"><span>2017 Ironman Santa Rose</span></a></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\"></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\"></li>\r\n</ul>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 05:17:47','2019-06-08 05:17:47','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(404,8,'2019-06-08 05:17:54','2019-06-08 05:17:54','<strong> <a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n\r\n<strong><a id=\"1\" name=\"1\"></a>1) What does it treat</strong>\r\nJoint Pain and Injury:\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td valign=\"top\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacro-iliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nOther Areas Where Prolotherapy Can Help:\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"#\">  Schedule Your Appointment Today!</a>\r\n<div><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How many treatments will I need?</strong>\r\n\r\nThe average person requires 6 treatment sessions given at 2 to 4 week intervals, but the number of treatments varies with each patient. Difficult (post surgical, long standing, etc) or other complicated cases may require 8, 10 or 12 treatments. Many patients feel relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"3\" name=\"3\"></a>3) Will I need to continue care after treatment?</strong>\r\n\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, an additional treatment maybe needed\r\n<div><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"4\" name=\"4\"></a>4) Is this the same thing as cortisone shots</strong><strong>?</strong>\r\nLong term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection; Prolotherapy is multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"5\" name=\"5\"></a>5) Is Prolotherapy safe?</strong>\r\nAs with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. On the other hand, Prolotherapy is an extremely safe procedure. The risks are far less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n<div><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong>\r\n\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive the treatments without pain killers and do just fine. </strong>\r\n<div><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"7\" name=\"7\"></a>7) Will my insurance cover this and what are the fees?</strong>\r\nFor information regarding insurence and fees <a href=\"https://www.drfields.com/Our-Office/Common-Questions\">Click Here</a> to visit out common questions section.\r\n<div><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"8\" name=\"8\"></a>8) Is it advisable to drive or work after Prolotherapy?</strong>\r\nYou can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.','','','inherit','closed','closed','','395-revision-v1','','','2019-06-08 05:17:54','2019-06-08 05:17:54','',395,'https://www.drfields.com/uncategorized/395-revision-v1/',0,'revision','',0),(405,8,'2019-06-08 05:18:19','2019-06-08 05:18:19','<strong> <a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n\r\n<strong><a id=\"1\" name=\"1\"></a>1) What does it treat</strong>\r\nJoint Pain and Injury:\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td valign=\"top\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacro-iliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nOther Areas Where Prolotherapy Can Help:\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"#\">  Schedule Your Appointment Today!</a>\r\n<div><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How many treatments will I need?</strong>\r\n\r\nThe average person requires 6 treatment sessions given at 2 to 4 week intervals, but the number of treatments varies with each patient. Difficult (post surgical, long standing, etc) or other complicated cases may require 8, 10 or 12 treatments. Many patients feel relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"3\" name=\"3\"></a>3) Will I need to continue care after treatment?</strong>\r\n\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, an additional treatment maybe needed\r\n<div><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"4\" name=\"4\"></a>4) Is this the same thing as cortisone shots</strong><strong>?</strong>\r\nLong term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection; Prolotherapy is multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"5\" name=\"5\"></a>5) Is Prolotherapy safe?</strong>\r\nAs with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. On the other hand, Prolotherapy is an extremely safe procedure. The risks are far less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n<div><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong>\r\n\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive the treatments without pain killers and do just fine. </strong>\r\n<div><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"7\" name=\"7\"></a>7) Will my insurance cover this and what are the fees?</strong>\r\nFor information regarding insurence and fees <a href=\"https://www.drfields.com/Our-Office/Common-Questions\">Click Here</a> to visit out common questions section.\r\n<div><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"8\" name=\"8\"></a>8) Is it advisable to drive or work after Prolotherapy?</strong>\r\nYou can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.','Prolotherapy FAQ','','inherit','closed','closed','','395-revision-v1','','','2019-06-08 05:18:19','2019-06-08 05:18:19','',395,'https://www.drfields.com/uncategorized/395-revision-v1/',0,'revision','',0),(406,8,'2019-06-08 10:02:07','2019-06-08 10:02:07','&nbsp;\n\n<strong> <a href=\"#1\">1) What does it treat</a></strong>\n<strong><a href=\"#2\">2) How many treatments will I need?</a></strong>\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\n<strong><a href=\"#4\">4) Is this the same thing as cortisone shots?</a></strong>\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\n\n<strong><a id=\"1\" name=\"1\"></a>1) What does it treat</strong>\nJoint Pain and Injury:\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td>\n<ul>\n 	<li>knee</li>\n 	<li>ankle</li>\n 	<li>low back</li>\n 	<li>neck</li>\n 	<li>shoulder</li>\n 	<li>hip</li>\n</ul>\n</td>\n<td valign=\"top\">\n<ul>\n 	<li>foot</li>\n 	<li>wrist</li>\n 	<li>hand</li>\n 	<li>elbow</li>\n 	<li>sacro-iliac</li>\n 	<li>ribs</li>\n</ul>\n</td>\n</tr>\n</tbody>\n</table>\nOther Areas Where Prolotherapy Can Help:\n<ul>\n 	<li>Athletic injuries, new and old</li>\n 	<li>Arthritis pain</li>\n 	<li>Sciatica and Pinched Nerves</li>\n 	<li>Herniated and Degenerative Discs</li>\n 	<li>Whiplash injuries</li>\n 	<li>Tension and Migraine Headaches</li>\n 	<li>TMJ syndrome</li>\n 	<li>Weak, loose and unstable joints</li>\n 	<li>Fibromyalgia and Myofascial pain</li>\n 	<li>Muscle tightness, strain and spasm</li>\n</ul>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\n<strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How many treatments will I need?</strong>\n\nThe average person requires 6 treatment sessions given at 2 to 4 week intervals, but the number of treatments varies with each patient. Difficult (post surgical, long standing, etc) or other complicated cases may require 8, 10 or 12 treatments. Many patients feel relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\n<strong><a id=\"3\" name=\"3\"></a>3) Will I need to continue care after treatment?</strong>\n\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, an additional treatment maybe needed\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\n<strong><a id=\"4\" name=\"4\"></a>4) Is this the same thing as cortisone shots</strong><strong>?</strong>\nLong term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection; Prolotherapy is multiple injections to an area so as to induce healing in the biggest area possible.\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\n<strong><a id=\"5\" name=\"5\"></a>5) Is Prolotherapy safe?</strong>\nAs with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. On the other hand, Prolotherapy is an extremely safe procedure. The risks are far less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\n<strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong>\n\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\n\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive the treatments without pain killers and do just fine. </strong>\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\n<strong><a id=\"7\" name=\"7\"></a>7) Will my insurance cover this and what are the fees?</strong>\nFor information regarding insurence and fees <a href=\"https://www.drfields.com/Our-Office/Common-Questions\">Click Here</a> to visit out common questions section.\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\n<strong><a id=\"8\" name=\"8\"></a>8) Is it advisable to drive or work after Prolotherapy?</strong>\nYou can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.','Prolotherapy FAQ','','inherit','closed','closed','','395-autosave-v1','','','2019-06-08 10:02:07','2019-06-08 10:02:07','',395,'https://www.drfields.com/uncategorized/395-autosave-v1/',0,'revision','',0),(407,8,'2019-06-08 05:20:03','2019-06-08 05:20:03','<strong> <a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n\r\n<strong><a id=\"1\" name=\"1\"></a>1) What does it treat</strong>\r\nJoint Pain and Injury:\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td valign=\"top\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacro-iliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nOther Areas Where Prolotherapy Can Help:\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"#\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How many treatments will I need?</strong>\r\n\r\nThe average person requires 6 treatment sessions given at 2 to 4 week intervals, but the number of treatments varies with each patient. Difficult (post surgical, long standing, etc) or other complicated cases may require 8, 10 or 12 treatments. Many patients feel relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"3\" name=\"3\"></a>3) Will I need to continue care after treatment?</strong>\r\n\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, an additional treatment maybe needed\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"4\" name=\"4\"></a>4) Is this the same thing as cortisone shots</strong><strong>?</strong>\r\nLong term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection; Prolotherapy is multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"5\" name=\"5\"></a>5) Is Prolotherapy safe?</strong>\r\nAs with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. On the other hand, Prolotherapy is an extremely safe procedure. The risks are far less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong>\r\n\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive the treatments without pain killers and do just fine. </strong>\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"7\" name=\"7\"></a>7) Will my insurance cover this and what are the fees?</strong>\r\nFor information regarding insurence and fees <a href=\"https://www.drfields.com/Our-Office/Common-Questions\">Click Here</a> to visit out common questions section.\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"8\" name=\"8\"></a>8) Is it advisable to drive or work after Prolotherapy?</strong>\r\nYou can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.','Prolotherapy FAQ','','inherit','closed','closed','','395-revision-v1','','','2019-06-08 05:20:03','2019-06-08 05:20:03','',395,'https://www.drfields.com/uncategorized/395-revision-v1/',0,'revision','',0),(408,8,'2019-06-08 05:24:14','2019-06-08 05:24:14','&nbsp;\r\n\r\n<strong>WHAT TO EXPECT POST TREATMENT</strong>\r\n\r\n<strong>Stiffness and Soreness:</strong> You can expect to be stiff and sore post treatment. This could last from 2 to 7 days. If it lasts longer it is best to call back and keep us informed on how you are doing.\r\n\r\n<strong>Driving and working</strong>: You can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.<strong>\r\n</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapy-3.jpg\" alt=\"Prolotherapy 3\" width=\"200\" height=\"306\" class=\"alignright size-full wp-image-698\" /><strong>Pain Medication:</strong> Try Tylenol or Tylenol extra strength first. Apply moist heat to the area every 20-30 minutes too. If that does not work, which it usually does in 90% of the cases, you can call the office for a prescription pain medicine.\r\n\r\n<strong>Numbness: </strong> You may notice some numbness post treatment. This is not unusual as we have nerves all over our bodies and a needle may have irritated one. If this happens, your nerve will heal itself over time. Contact us if burning pain is noted, as medication is important for that symptom.\r\n\r\n<strong>Bruising: </strong> Bruising is quite common; do not be alarmed by it. Bruising is good for us, as it has growth factors in it.\r\n\r\n<strong>Exercising:  </strong>Exercising is encouraged, but please do not over do it. Pay attention to what your body tells you. If it hurts, take a break! Do not push yourself just because you feel better. You may pay for it later. Use heat to help calm pain or spasms.\r\n\r\n<strong>Remember that the use of anti-inflammatory medicines and ice are contraindicated.</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>','Post Treatment','','publish','open','closed','','post-treatment','','','2021-01-28 20:23:35','2021-01-28 20:23:35','',0,'https://www.drfields.com/?p=408',0,'post','',0),(409,8,'2019-06-08 05:22:17','2019-06-08 05:22:17','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n\r\n<div class=\"col-md-12\" id=\"aboutdocgallery\">\r\n<h4>Ironman Photos & Stories</h4>\r\n<ul>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\"><span>2017 Ironman Santa Rose</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\"><span>2016 Ironman Cozumel</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\"><span>2016 Ironman Switzerland</span></a></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\"><span>2015 Ironman Cozumel</span></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\"><span>2015 Ironman Brazil</span></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\"><span>2014 Ironman Austria</span></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\"><span>2013 Ironman Canada</span></li>\r\n<li><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\"><span>2012 Ironman Cozumel</span></li>\r\n</ul>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 05:22:17','2019-06-08 05:22:17','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(410,8,'2019-06-08 05:24:10','2019-06-08 05:24:10','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n\r\n<div class=\"col-md-12\" id=\"aboutdocgallery\">\r\n<h4>Ironman Photos & Stories</h4>\r\n<ul>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\"><span>2017 Ironman Santa Rose</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\"><span>2016 Ironman Cozumel</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\"><span>2016 Ironman Switzerland</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\"><span>2015 Ironman Cozumel</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\"><span>2015 Ironman Brazil</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\"><span>2014 Ironman Austria</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\"><span>2013 Ironman Canada</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\"><span>2012 Ironman Cozumel</span></a></li>\r\n</ul>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 05:24:10','2019-06-08 05:24:10','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(411,8,'2019-06-08 05:24:14','2019-06-08 05:24:14','<strong>WHAT TO EXPECT POST TREATMENT</strong>\r\n\r\n<strong>Stiffness and Soreness:</strong> You can expect to be stiff and sore post treatment. This could last from 2 to 7 days. If it lasts longer it is best to call back and keep us informed on how you are doing.\r\n\r\n<strong>Driving and working</strong>: You can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.<strong>\r\n</strong>\r\n\r\n<img class=\"alignright\" title=\"Prolotherapy\" src=\"https://www.drfields.com/portals/0/Images/prolotherapy/prolotherapy-3.jpg\" alt=\"Prolotherapy\" /><strong>Pain Medication:</strong> Try Tylenol or Tylenol extra strength first. Apply moist heat to the area every 20-30 minutes too. If that does not work, which it usually does in 90% of the cases, you can call the office for a prescription pain medicine.\r\n\r\n<strong>Numbness: </strong> You may notice some numbness post treatment. This is not unusual as we have nerves all over our bodies and a needle may have irritated one. If this happens, your nerve will heal itself over time. Contact us if burning pain is noted, as medication is important for that symptom.\r\n\r\n<strong>Bruising: </strong> Bruising is quite common; do not be alarmed by it. Bruising is good for us, as it has growth factors in it.\r\n\r\n<strong>Exercising:  </strong>Exercising is encouraged, but please do not over do it. Pay attention to what your body tells you. If it hurts, take a break! Do not push yourself just because you feel better. You may pay for it later. Use heat to help calm pain or spasms.\r\n\r\n<strong>Remember that the use of anti-inflammatory medicines and ice are contraindicated.</strong>\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>','Post Treatment','','inherit','closed','closed','','408-revision-v1','','','2019-06-08 05:24:14','2019-06-08 05:24:14','',408,'https://www.drfields.com/uncategorized/408-revision-v1/',0,'revision','',0),(412,8,'2019-06-08 05:25:13','2019-06-08 05:25:13','&nbsp;\r\n\r\n<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n&nbsp;\r\n\r\n<div class=\"col-md-12\" id=\"aboutdocgallery\">\r\n<h4>Ironman Photos & Stories</h4>\r\n<ul>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\"><span>2017 Ironman Santa Rose</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\"><span>2016 Ironman Cozumel</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\"><span>2016 Ironman Switzerland</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\"><span>2015 Ironman Cozumel</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\"><span>2015 Ironman Brazil</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\"><span>2014 Ironman Austria</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\"><span>2013 Ironman Canada</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\"><span>2012 Ironman Cozumel</span></a></li>\r\n</ul>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-08 05:25:13','2019-06-08 05:25:13','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(414,8,'2019-06-08 05:44:21','2019-06-08 05:44:21','<h4>Platelet Rich Plasma Treatments</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clearfix\"></div>\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>Platelet Rich Plasma Treatments</strong> (also known as PRP Injections, PRP Therapy, or PRP Prolotherapy) are treatments for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications, and recovery time associated with joint surgery.\r\n<h4>Why Do Platelet Rich Plasma Treatments Work?</h4>\r\n[caption id=\"attachment_642\" align=\"alignright\" width=\"200\"]<img class=\"wp-image-642 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" /> <em>Platelet Rich Plasma Treatments can help to keep you running</em>[/caption]\r\n\r\nYour blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that can greatly and naturally accelerate the normal healing process. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair and regenerate weakened torn or damaged ligaments, ligaments, and joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Platelet Rich Plasma Treatments vs. Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.), which causes an inflammatory response that stimulates the healing process.\r\n\r\nBy contrast, the PRP treatment solution is derived from your own blood. A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This highly concentrated amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze new soft-tissue growth.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair and regenerate weakened torn or damaged ligaments, ligaments, and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations and the physicians associated with them teach Prolotherapy, and PRP agree that <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>Prolotherapy primes the area that is damaged, which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive.</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4>PRP Treatment: Frequently Asked Questions</h4>\r\n<h4><em><strong>What is PRP Treatment?</strong></em></h4>\r\nPRP, as used in Regenerative Orthopedics, is a non-surgical healing treatment for healing soft tissue. The solution is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n<h4><em>What does PRP mean?</em></h4>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood that contains cellular components such as red cells, white blood cells, and platelets. The Harvest Method that OrthoRegen and Peter A. Fields, MD, DC uses concentrates the platelets 7-10 times of what is normally found in the blood. Other systems concentrate them, but to a lesser extent.\r\n<h4><em>What conditions are treated with PRP?</em></h4>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci, or labrums are the most common soft tissue structures treated. PRP has also been effective in treating arthritis.\r\n\r\n<img class=\"wp-image-712 size-full alignleft\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" />\r\n<h3>What are some common diagnoses treated with PRP?</h3>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpal tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h3>How is PRP treatment administered?</h3>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Then, a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n\r\n&nbsp;\r\n<h3>Is PRP curative?</h3>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications, like ibuprofen or cortisone, which may just take the pain away but cannot heal the injury.\r\n<h3>How does PRP work to heal?</h3>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate and promote healing of weakened, torn, or damaged soft tissue such as tendons, ligaments, meniscus, or labrum.\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>Is PRP painful?</h3>\r\nPatients typically tolerate the procedure well, although post-injection soreness is sometimes experienced.\r\n<h3>How many PRP treatments do you need?</h3>\r\nTwo to four treatments are needed depending on the degree of injury and how long the injury has been there.\r\n<h3>How far apart are PRP treatments spaced?</h3>\r\nTypically about every 6 weeks if indicated.<img class=\"alignright wp-image-644 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h3>What can you expect after getting PRP?</h3>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to resolve substantially.\r\n<h3>Are there side effects/complications of PRP?</h3>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n<h3>How long does it take the PRP to “work”?</h3>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with the usual reports of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n<h6>Platelet Rich Plasma (PRP) Therapy in the News:</h6>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>','Platelet Rich Plasma Treatments: How Are They Different from Prolotherapy?','','publish','open','closed','','platelet-rich-plasma-treatments-and-prolotherapy','','','2021-01-28 20:16:18','2021-01-28 20:16:18','',0,'https://www.drfields.com/?p=414',0,'post','',0),(416,8,'2019-06-08 05:40:44','2019-06-08 05:40:44','<h4><span id=\"dnn_ctr515_dnnTITLE_titleLabel\" class=\"TitleH2\">Guadalajara 2006</span></h4>\r\n&nbsp;\r\n<table class=\"resptable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_418\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-418\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-two-aides.jpg\" alt=\"Dr Fields And Two Aides\" width=\"225\" height=\"150\" /> Dr Fields And Two Aides[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_417\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-417\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-his-staff-and-a-patient1.jpg\" alt=\"Dr. Fields His Staff And A Patient1\" width=\"225\" height=\"150\" /> Dr. Fields His Staff And A Patient1[/caption]</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_419\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-419\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Steven-Liza-and-Peter.jpg\" alt=\"Steven, Liza And Peter\" width=\"225\" height=\"150\" /> Steven, Liza And Peter[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_420\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-420\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-gang-at-dinner.jpg\" alt=\"The Gang At Dinner\" width=\"225\" height=\"150\" /> The Gang At Dinner[/caption]</td>\r\n</tr>\r\n</tbody>\r\n</table>','Guadalajara 2006','','publish','open','closed','','guadalajara-2006','','','2022-11-01 18:02:19','2022-11-01 18:02:19','',0,'https://www.drfields.com/?p=416',0,'post','',0),(417,8,'2019-06-08 05:40:08','2019-06-08 05:40:08','Dr. Fields His Staff And A Patient1','Dr. Fields His Staff And A Patient1','Dr. Fields His Staff And A Patient1','inherit','open','closed','','dr-fields-his-staff-and-a-patient1','','','2019-06-08 05:40:08','2019-06-08 05:40:08','',416,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-his-staff-and-a-patient1.jpg',0,'attachment','image/jpeg',0),(418,8,'2019-06-08 05:40:09','2019-06-08 05:40:09','Dr Fields And Two Aides','Dr Fields And Two Aides','Dr Fields And Two Aides','inherit','open','closed','','dr-fields-and-two-aides','','','2019-06-08 05:40:09','2019-06-08 05:40:09','',416,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-two-aides.jpg',0,'attachment','image/jpeg',0),(419,8,'2019-06-08 05:40:12','2019-06-08 05:40:12','Steven, Liza And Peter','Steven, Liza And Peter','Steven, Liza And Peter','inherit','open','closed','','steven-liza-and-peter','','','2019-06-08 05:40:12','2019-06-08 05:40:12','',416,'https://www.drfields.com/wp-content/uploads/2019/06/Steven-Liza-and-Peter.jpg',0,'attachment','image/jpeg',0),(420,8,'2019-06-08 05:40:13','2019-06-08 05:40:13','The Gang At Dinner','The Gang At Dinner','The Gang At Dinner','inherit','open','closed','','the-gang-at-dinner','','','2019-06-08 05:40:13','2019-06-08 05:40:13','',416,'https://www.drfields.com/wp-content/uploads/2019/06/The-gang-at-dinner.jpg',0,'attachment','image/jpeg',0),(421,8,'2019-06-08 05:40:44','2019-06-08 05:40:44','\r\n<h4><span id=\"dnn_ctr515_dnnTITLE_titleLabel\" class=\"TitleH2\">Guadalajara 2006</span></h4>\r\n\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>[caption id=\"attachment_418\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-two-aides.jpg\" alt=\"Dr Fields And Two Aides\" width=\"225\" height=\"150\" class=\"size-full wp-image-418\" /> Dr Fields And Two Aides[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_417\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-his-staff-and-a-patient1.jpg\" alt=\"Dr. Fields His Staff And A Patient1\" width=\"225\" height=\"150\" class=\"size-full wp-image-417\" /> Dr. Fields His Staff And A Patient1[/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n</td>\r\n<td>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','Guadalajara 2006','','inherit','closed','closed','','416-revision-v1','','','2019-06-08 05:40:44','2019-06-08 05:40:44','',416,'https://www.drfields.com/uncategorized/416-revision-v1/',0,'revision','',0),(422,8,'2019-06-17 06:27:55','2019-06-17 06:27:55','<h4><span id=\"dnn_ctr515_dnnTITLE_titleLabel\" class=\"TitleH2\">Guadalajara 2006</span></h4>\n&nbsp;\n<table class=\"resptable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr>\n<td>\n\n[caption id=\"attachment_418\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-418\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-two-aides.jpg\" alt=\"Dr Fields And Two Aides\" width=\"225\" height=\"150\" /> Dr Fields And Two Aides[/caption]</td>\n<td>\n\n[caption id=\"attachment_417\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-417\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-his-staff-and-a-patient1.jpg\" alt=\"Dr. Fields His Staff And A Patient1\" width=\"225\" height=\"150\" /> Dr. Fields His Staff And A Patient1[/caption]</td>\n</tr>\n<tr>\n<td>\n\n[caption id=\"attachment_419\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-419\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Steven-Liza-and-Peter.jpg\" alt=\"Steven, Liza And Peter\" width=\"225\" height=\"150\" /> Steven, Liza And Peter[/caption]</td>\n<td>\n\n[caption id=\"attachment_420\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-420\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-gang-at-dinner.jpg\" alt=\"The Gang At Dinner\" width=\"225\" height=\"150\" /> The Gang At Dinner[/caption]</td>\n</tr>\n</tbody>\n</table>','Guadalajara 2006','','inherit','closed','closed','','416-autosave-v1','','','2019-06-17 06:27:55','2019-06-17 06:27:55','',416,'https://www.drfields.com/uncategorized/416-autosave-v1/',0,'revision','',0),(423,8,'2019-06-08 05:41:33','2019-06-08 05:41:33','<h4><span id=\"dnn_ctr515_dnnTITLE_titleLabel\" class=\"TitleH2\">Guadalajara 2006</span></h4>\r\n\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>[caption id=\"attachment_418\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-two-aides.jpg\" alt=\"Dr Fields And Two Aides\" width=\"225\" height=\"150\" class=\"size-full wp-image-418\" /> Dr Fields And Two Aides[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_417\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-his-staff-and-a-patient1.jpg\" alt=\"Dr. Fields His Staff And A Patient1\" width=\"225\" height=\"150\" class=\"size-full wp-image-417\" /> Dr. Fields His Staff And A Patient1[/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>[caption id=\"attachment_419\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Steven-Liza-and-Peter.jpg\" alt=\"Steven, Liza And Peter\" width=\"225\" height=\"150\" class=\"size-full wp-image-419\" /> Steven, Liza And Peter[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_420\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-gang-at-dinner.jpg\" alt=\"The Gang At Dinner\" width=\"225\" height=\"150\" class=\"size-full wp-image-420\" /> The Gang At Dinner[/caption]\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','Guadalajara 2006','','inherit','closed','closed','','416-revision-v1','','','2019-06-08 05:41:33','2019-06-08 05:41:33','',416,'https://www.drfields.com/uncategorized/416-revision-v1/',0,'revision','',0),(424,8,'2019-06-08 05:43:17','2019-06-08 05:43:17','<h4><span id=\"dnn_ctr515_dnnTITLE_titleLabel\" class=\"TitleH2\">Guadalajara 2006</span></h4>\r\n\r\n<div class=\"text-center\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>[caption id=\"attachment_418\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-two-aides.jpg\" alt=\"Dr Fields And Two Aides\" width=\"225\" height=\"150\" class=\"size-full wp-image-418\" /> Dr Fields And Two Aides[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_417\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-his-staff-and-a-patient1.jpg\" alt=\"Dr. Fields His Staff And A Patient1\" width=\"225\" height=\"150\" class=\"size-full wp-image-417\" /> Dr. Fields His Staff And A Patient1[/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>[caption id=\"attachment_419\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Steven-Liza-and-Peter.jpg\" alt=\"Steven, Liza And Peter\" width=\"225\" height=\"150\" class=\"size-full wp-image-419\" /> Steven, Liza And Peter[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_420\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-gang-at-dinner.jpg\" alt=\"The Gang At Dinner\" width=\"225\" height=\"150\" class=\"size-full wp-image-420\" /> The Gang At Dinner[/caption]\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>','Guadalajara 2006','','inherit','closed','closed','','416-revision-v1','','','2019-06-08 05:43:17','2019-06-08 05:43:17','',416,'https://www.drfields.com/uncategorized/416-revision-v1/',0,'revision','',0),(425,8,'2019-06-08 05:43:37','2019-06-08 05:43:37','<h4><span id=\"dnn_ctr515_dnnTITLE_titleLabel\" class=\"TitleH2\">Guadalajara 2006</span></h4>\r\n\r\n\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>[caption id=\"attachment_418\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-two-aides.jpg\" alt=\"Dr Fields And Two Aides\" width=\"225\" height=\"150\" class=\"size-full wp-image-418\" /> Dr Fields And Two Aides[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_417\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-his-staff-and-a-patient1.jpg\" alt=\"Dr. Fields His Staff And A Patient1\" width=\"225\" height=\"150\" class=\"size-full wp-image-417\" /> Dr. Fields His Staff And A Patient1[/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>[caption id=\"attachment_419\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Steven-Liza-and-Peter.jpg\" alt=\"Steven, Liza And Peter\" width=\"225\" height=\"150\" class=\"size-full wp-image-419\" /> Steven, Liza And Peter[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_420\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-gang-at-dinner.jpg\" alt=\"The Gang At Dinner\" width=\"225\" height=\"150\" class=\"size-full wp-image-420\" /> The Gang At Dinner[/caption]\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Guadalajara 2006','','inherit','closed','closed','','416-revision-v1','','','2019-06-08 05:43:37','2019-06-08 05:43:37','',416,'https://www.drfields.com/uncategorized/416-revision-v1/',0,'revision','',0),(426,8,'2019-06-08 05:44:21','2019-06-08 05:44:21','<h4>PRP Platelet Rich Plasma</h4>\r\n\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\r\n\r\n<h4>Why Does PRP Treatment Work?</h4>\r\n\r\n<img class=\"alignright\" title=\"A Girl is Running\" src=\"https://www.drfields.com/portals/0/Images/running.jpg\" alt=\"A Girl is Running\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<h2>PRP Treatment vs Dextrose Prolotherapy Treatment</h2>\r\n\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood.  A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This highly concentrated amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\r\n\r\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<h4>Which Treatment is Right For Me?</h4>\r\n\r\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> should be tried first.\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>It primes the area that is damaged,  which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive</strong></li>\r\n</ul>\r\n\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n<h2>PRP Treatment Frequently Asked Questions</h2>\r\n\r\n<h3><strong>What is PRP Treatment?</strong></h3>\r\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n\r\n<h3><strong>What does PRP mean?</strong></h3>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\r\n\r\n<h3><strong>What conditions are treated with PRP?</strong></h3>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis.</div>\r\n<div class=\"Normal\"><img class=\"alignleft\" title=\"Full Body Joints\" src=\"https://www.drfields.com/portals/0/Images/fully_body_joints.jpg\" alt=\"Full Body Joints\" />\r\n\r\n<h3><strong>What are some common diagnoses treated with PRP?</strong></h3>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, Bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n\r\n<h3><strong>How is PRP treatment administered?</strong></h3>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second, a local anaesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n\r\n<h3><strong>Is PRP curative?</strong></h3>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\r\n\r\n<h3><strong>How does PRP work to heal?</strong></h3>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\r\n\r\n<h3><strong>Is PRP painful?</strong></h3>\r\nPatients typically tolerate the procedure well although post-injection soreness is sometimes experienced.\r\n\r\n<h3><strong>How many PRP treatments do you need?</strong></h3>\r\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\r\n\r\n<h3><strong>How far apart are PRP treatments spaced?</strong></h3>\r\nTypically about every 6 weeks if indicated.<img class=\"alignright\" src=\"https://www.drfields.com/portals/0/Images/couple1.jpg\" alt=\"PRP Treatment Questions\" />\r\n\r\n<h3><strong>What can you expect after getting PRP?</strong></h3>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\r\n\r\n<h3><strong>Are there side effects/complications of PRP?</strong></h3>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n\r\n<h3><strong>How long does it take the PRP to “work”?</strong></h3>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with a usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n\r\n<h3><strong>Platelet Rich Plasma (PRP) Therapy in the News:</strong></h3>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a>\r\n</strong></li>\r\n</ul>\r\n','PRP Treatment','','inherit','closed','closed','','414-revision-v1','','','2019-06-08 05:44:21','2019-06-08 05:44:21','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(427,8,'2019-06-14 06:29:00','2019-06-14 06:29:00','<h4>PRP Platelet Rich Plasma</h4>\n\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\n\n<h4>Why Does PRP Treatment Work?</h4>\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\"  class=\"alignright size-full wp-image-642\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\nThe main difference between PRP Prolotherapy treatment and <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood.  A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This  highly concentrated  amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\n\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\n\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\n<h4>Which Treatment is Right For Me?</h4>\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\n\n<ul>\n 	<li><strong>It is less painful.</strong></li>\n 	<li><strong>It primes the area that is damaged,  which PRP does not.\n</strong></li>\n 	<li><strong>It is less expensive</strong></li>\n</ul>\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<h4>PRP Treatment Frequently Asked Questions</h4>\n<h6><strong>What is PRP Treatment?</strong></h6>\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\n\n<h6>What does PRP mean?</h6>\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\n\n<h6>What conditions are treated with PRP?</h6>\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis. <img src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" class=\"alignleft size-full wp-image-712\" />\n\n<h6>What are some common diagnoses treated with PRP?</h6>\n<ul>\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\n 	<li>Hip: labrum, tenositis, Bursitis</li>\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\n</ul>\n<h6>How is PRP treatment administered?</h6>\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\n\n<h6>Is PRP curative?</h6>\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\n\n<h6>How does PRP work to heal?</h6>\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\n\n<h6>Is PRP painful?</h6>\nPatients typically tolerate the procedure well although post-injection soreness is sometime experienced.\n\n<h6>How many PRP treatments do you need?</h6>\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\n\n<h6>How far apart are PRP treatments spaced?</h6>\nTypically about every 6 weeks if indicated.<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\"  class=\"alignright size-full wp-image-644\" />\n\n<h6>What can you expect after getting PRP?</h6>\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\n\n<h6>Are there side effects/complications of PRP?</h6>\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\n\n<h6>How long does it take the PRP to “work”?</h6>\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\n\n<h6>Platelet Rich Plasma (PRP) Therapy in the News:</h6>\n<ul>\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\n</strong></li>\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\n</strong></li>\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\n</ul>\n</div>\n</div>\n</div>','PRP Treatment','','inherit','closed','closed','','414-autosave-v1','','','2019-06-14 06:29:00','2019-06-14 06:29:00','',414,'https://www.drfields.com/uncategorized/414-autosave-v1/',0,'revision','',0),(428,8,'2019-06-08 05:45:30','2019-06-08 05:45:30','<h4><span id=\"dnn_ctr515_dnnTITLE_titleLabel\" class=\"TitleH2\">Guadalajara 2006</span></h4>\r\n\r\n\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"width:500px\">\r\n<tbody>\r\n<tr>\r\n<td>[caption id=\"attachment_418\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-two-aides.jpg\" alt=\"Dr Fields And Two Aides\" width=\"225\" height=\"150\" class=\"size-full wp-image-418\" /> Dr Fields And Two Aides[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_417\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-his-staff-and-a-patient1.jpg\" alt=\"Dr. Fields His Staff And A Patient1\" width=\"225\" height=\"150\" class=\"size-full wp-image-417\" /> Dr. Fields His Staff And A Patient1[/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>[caption id=\"attachment_419\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Steven-Liza-and-Peter.jpg\" alt=\"Steven, Liza And Peter\" width=\"225\" height=\"150\" class=\"size-full wp-image-419\" /> Steven, Liza And Peter[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_420\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-gang-at-dinner.jpg\" alt=\"The Gang At Dinner\" width=\"225\" height=\"150\" class=\"size-full wp-image-420\" /> The Gang At Dinner[/caption]\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Guadalajara 2006','','inherit','closed','closed','','416-revision-v1','','','2019-06-08 05:45:30','2019-06-08 05:45:30','',416,'https://www.drfields.com/uncategorized/416-revision-v1/',0,'revision','',0),(429,8,'2019-06-08 05:47:29','2019-06-08 05:47:29','<h4>PRP Platelet Rich Plasma</h4>\r\n\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\r\n\r\n<h4>Why Does PRP Treatment Work?</h4>\r\n\r\n<img class=\"alignright\" title=\"A Girl is Running\" src=\"https://www.drfields.com/portals/0/Images/running.jpg\" alt=\"A Girl is Running\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\r\n\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood.  A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This highly concentrated amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\r\n\r\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<h4>Which Treatment is Right For Me?</h4>\r\n\r\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> should be tried first.\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>It primes the area that is damaged,  which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive</strong></li>\r\n</ul>\r\n\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n<h4>PRP Treatment Frequently Asked Questions</h4>\r\n\r\n<strong>What is PRP Treatment?</strong>\r\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n\r\n<strong>What does PRP mean?</strong>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\r\n\r\n<strong>What conditions are treated with PRP?</strong>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis.</div>\r\n<div class=\"Normal\"><img class=\"alignleft\" title=\"Full Body Joints\" src=\"https://www.drfields.com/portals/0/Images/fully_body_joints.jpg\" alt=\"Full Body Joints\" />\r\n\r\n<strong>What are some common diagnoses treated with PRP?</strong>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, Bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n\r\n<strong>How is PRP treatment administered?</strong>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second, a local anaesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n\r\n<strong>Is PRP curative?</strong>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\r\n\r\n<strong>How does PRP work to heal?</strong>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\r\n\r\n<strong>Is PRP painful?</strong>\r\nPatients typically tolerate the procedure well although post-injection soreness is sometimes experienced.\r\n\r\n<strong>How many PRP treatments do you need?</strong>\r\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\r\n\r\n<strong>How far apart are PRP treatments spaced?</strong>\r\nTypically about every 6 weeks if indicated.<img class=\"alignright\" src=\"https://www.drfields.com/portals/0/Images/couple1.jpg\" alt=\"PRP Treatment Questions\" />\r\n\r\n<strong>What can you expect after getting PRP?</strong>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\r\n\r\n<strong>Are there side effects/complications of PRP?</strong>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n\r\n<strong>How long does it take the PRP to “work”?</strong>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with a usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n\r\n<strong>Platelet Rich Plasma (PRP) Therapy in the News:</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a>\r\n</strong></li>\r\n</ul>\r\n','PRP Treatment','','inherit','closed','closed','','414-revision-v1','','','2019-06-08 05:47:29','2019-06-08 05:47:29','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(430,8,'2019-06-08 05:47:40','2019-06-08 05:47:40','&nbsp;\r\n\r\n<h4><span id=\"dnn_ctr515_dnnTITLE_titleLabel\" class=\"TitleH2\">Guadalajara 2006</span></h4>\r\n\r\n&nbsp;\r\n\r\n<table class=\"resptable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" >\r\n<tbody>\r\n<tr>\r\n<td>[caption id=\"attachment_418\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-two-aides.jpg\" alt=\"Dr Fields And Two Aides\" width=\"225\" height=\"150\" class=\"size-full wp-image-418\" /> Dr Fields And Two Aides[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_417\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-his-staff-and-a-patient1.jpg\" alt=\"Dr. Fields His Staff And A Patient1\" width=\"225\" height=\"150\" class=\"size-full wp-image-417\" /> Dr. Fields His Staff And A Patient1[/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>[caption id=\"attachment_419\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Steven-Liza-and-Peter.jpg\" alt=\"Steven, Liza And Peter\" width=\"225\" height=\"150\" class=\"size-full wp-image-419\" /> Steven, Liza And Peter[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_420\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-gang-at-dinner.jpg\" alt=\"The Gang At Dinner\" width=\"225\" height=\"150\" class=\"size-full wp-image-420\" /> The Gang At Dinner[/caption]\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Guadalajara 2006','','inherit','closed','closed','','416-revision-v1','','','2019-06-08 05:47:40','2019-06-08 05:47:40','',416,'https://www.drfields.com/uncategorized/416-revision-v1/',0,'revision','',0),(431,8,'2019-06-08 05:59:37','2019-06-08 05:59:37','<h4>Stem Cell Treatment Los Angeles for Joints and Spine - Alternative To Joint Replacement</h4>\r\nOrthoRegen<strong><sup>®</sup></strong> is a medical clinic specializing in Stem Cell Treatment in the Los Angeles area. If you are looking to avoid surgery in your joints or spine, then we are what you are looking for since we offer effective non-surgical alternatives for joint and spine repair.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Knee Treatment</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong></div>\r\n<i>Regenerating a person\'s joints and spine is not something of the future: <strong>it is happening today!</strong> Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\r\n<h4>Who Needs Stem Cell Treatment in Los Angeles?</h4>\r\n<img class=\"size-medium wp-image-5586\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.1-400x500.png\" alt=\"Stem Cells.1\" width=\"400\" height=\"500\" />\r\n\r\nOur Stem Cell technique for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to produce a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have your joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear, or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once the surgery is done, it cannot be undone!</em></strong>\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within the bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross-reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments, and more.  All this allows for the repair and remodeling of cartilage, bone, and other soft tissue structures such as meniscus, labrums, ligaments, and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand, adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle, or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate the above tissues and to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar but not identical to bone marrow cells.\r\n\r\n<img class=\"wp-image-5587 size-medium alignleft\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.-1-500x500.png\" alt=\"Stem Cells.\" width=\"500\" height=\"500\" />\r\n\r\nNot all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries, or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulate full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies have been done using bone marrow and fat stem cells for articular cartilage lesions. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers successfully studied the treatment results from the bone marrow mesenchymal stem cells.\r\n\r\n<img class=\"alignright wp-image-735 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" />Articular Cartilage has limited repair capacity, and marrow-stimulation procedures such as microfracture, osteochondral grafts, and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients, the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n<h3><strong>Stem Cell Treatment Results</strong></h3>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near-normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1-year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <a href=\"tel:+[phone_raw]\">[phone]</a> to make an appointment now.','Stem Cell Treatment Los Angeles','','publish','open','closed','','stem-cell-treatment-los-angeles','','','2022-11-02 23:24:04','2022-11-02 23:24:04','',0,'https://www.drfields.com/?p=431',0,'post','',0),(432,8,'2019-06-08 05:55:36','2019-06-08 05:55:36','&nbsp;\r\n\r\n<h4><span id=\"dnn_ctr515_dnnTITLE_titleLabel\" class=\"TitleH2\">Honduras 2006</span></h4>\r\n\r\n\r\n<table class=\"resptable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" >\r\n<tbody>\r\n<tr>\r\n<td>[caption id=\"attachment_434\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-and-two-Honduran-translators.jpg\" alt=\"Dr. Fields And Two Honduran Translators\" width=\"225\" height=\"128\" class=\"size-full wp-image-434\" /> Dr. Fields And Two Honduran Translators[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_435\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Taking-a-break-after-a-long-day.jpg\" alt=\"Taking A Break After A Long Day\" width=\"225\" height=\"169\" class=\"size-full wp-image-435\" /> Taking A Break After A Long Day[/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>[caption id=\"attachment_436\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.s-Fields-and-Cavalino-at-work.jpg\" alt=\"Dr.s Fields And Cavalino At Work\" width=\"225\" height=\"228\" class=\"size-full wp-image-436\" /> Dr.s Fields And Cavalino At Work[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_433\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Fields-and-Cavalino-with-the-owner-of-a-local-market.jpg\" alt=\"Dr&#039;s Fields And Cavalino With The Owner Of A Local Market\" width=\"225\" height=\"176\" class=\"size-full wp-image-433\" /> Dr\'s Fields And Cavalino With The Owner Of A Local Market[/caption]\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Honduras 2006','','publish','open','closed','','honduras-2006','','','2019-06-17 07:15:17','2019-06-17 07:15:17','',0,'https://www.drfields.com/?p=432',0,'post','',0),(433,8,'2019-06-08 05:55:07','2019-06-08 05:55:07','Dr\'s Fields And Cavalino With The Owner Of A Local Market','Dr\'s Fields And Cavalino With The Owner Of A Local Market','Dr\'s Fields And Cavalino With The Owner Of A Local Market','inherit','open','closed','','drs-fields-and-cavalino-with-the-owner-of-a-local-market','','','2019-06-08 05:56:24','2019-06-08 05:56:24','',432,'https://www.drfields.com/wp-content/uploads/2019/06/Drs-Fields-and-Cavalino-with-the-owner-of-a-local-market.jpg',0,'attachment','image/jpeg',0),(434,8,'2019-06-08 05:55:08','2019-06-08 05:55:08','Dr. Fields And Two Honduran Translators','Dr. Fields And Two Honduran Translators','Dr. Fields And Two Honduran Translators','inherit','open','closed','','dr-fields-and-two-honduran-translators','','','2019-06-08 05:55:21','2019-06-08 05:55:21','',432,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-and-two-Honduran-translators.jpg',0,'attachment','image/jpeg',0),(435,8,'2019-06-08 05:55:09','2019-06-08 05:55:09','Taking A Break After A Long Day','Taking A Break After A Long Day','Taking A Break After A Long Day','inherit','open','closed','','taking-a-break-after-a-long-day','','','2019-06-08 05:56:06','2019-06-08 05:56:06','',432,'https://www.drfields.com/wp-content/uploads/2019/06/Taking-a-break-after-a-long-day.jpg',0,'attachment','image/jpeg',0),(436,8,'2019-06-08 05:55:09','2019-06-08 05:55:09','Dr.s Fields And Cavalino At Work','Dr.s Fields And Cavalino At Work','Dr.s Fields And Cavalino At Work','inherit','open','closed','','dr-s-fields-and-cavalino-at-work','','','2019-06-08 05:56:17','2019-06-08 05:56:17','',432,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.s-Fields-and-Cavalino-at-work.jpg',0,'attachment','image/jpeg',0),(437,8,'2019-06-08 05:55:36','2019-06-08 05:55:36','&nbsp;\r\n\r\n<h4><span id=\"dnn_ctr515_dnnTITLE_titleLabel\" class=\"TitleH2\">Honduras 2006</span></h4>\r\n\r\n&nbsp;\r\n\r\n<table class=\"resptable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" >\r\n<tbody>\r\n<tr>\r\n<td>[caption id=\"attachment_434\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-and-two-Honduran-translators.jpg\" alt=\"Dr. Fields And Two Honduran Translators\" width=\"225\" height=\"128\" class=\"size-full wp-image-434\" /> Dr. Fields And Two Honduran Translators[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_417\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-his-staff-and-a-patient1.jpg\" alt=\"Dr. Fields His Staff And A Patient1\" width=\"225\" height=\"150\" class=\"size-full wp-image-417\" /> Dr. Fields His Staff And A Patient1[/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>[caption id=\"attachment_419\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Steven-Liza-and-Peter.jpg\" alt=\"Steven, Liza And Peter\" width=\"225\" height=\"150\" class=\"size-full wp-image-419\" /> Steven, Liza And Peter[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_420\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-gang-at-dinner.jpg\" alt=\"The Gang At Dinner\" width=\"225\" height=\"150\" class=\"size-full wp-image-420\" /> The Gang At Dinner[/caption]\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Honduras 2006','','inherit','closed','closed','','432-revision-v1','','','2019-06-08 05:55:36','2019-06-08 05:55:36','',432,'https://www.drfields.com/uncategorized/432-revision-v1/',0,'revision','',0),(438,8,'2019-06-08 05:56:34','2019-06-08 05:56:34','&nbsp;\r\n\r\n<h4><span id=\"dnn_ctr515_dnnTITLE_titleLabel\" class=\"TitleH2\">Honduras 2006</span></h4>\r\n\r\n&nbsp;\r\n\r\n<table class=\"resptable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" >\r\n<tbody>\r\n<tr>\r\n<td>[caption id=\"attachment_434\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-and-two-Honduran-translators.jpg\" alt=\"Dr. Fields And Two Honduran Translators\" width=\"225\" height=\"128\" class=\"size-full wp-image-434\" /> Dr. Fields And Two Honduran Translators[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_435\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Taking-a-break-after-a-long-day.jpg\" alt=\"Taking A Break After A Long Day\" width=\"225\" height=\"169\" class=\"size-full wp-image-435\" /> Taking A Break After A Long Day[/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>[caption id=\"attachment_436\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.s-Fields-and-Cavalino-at-work.jpg\" alt=\"Dr.s Fields And Cavalino At Work\" width=\"225\" height=\"228\" class=\"size-full wp-image-436\" /> Dr.s Fields And Cavalino At Work[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_433\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Fields-and-Cavalino-with-the-owner-of-a-local-market.jpg\" alt=\"Dr&#039;s Fields And Cavalino With The Owner Of A Local Market\" width=\"225\" height=\"176\" class=\"size-full wp-image-433\" /> Dr\'s Fields And Cavalino With The Owner Of A Local Market[/caption]\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Honduras 2006','','inherit','closed','closed','','432-revision-v1','','','2019-06-08 05:56:34','2019-06-08 05:56:34','',432,'https://www.drfields.com/uncategorized/432-revision-v1/',0,'revision','',0),(439,8,'2019-06-08 05:57:08','2019-06-08 05:57:08','&nbsp;\r\n\r\n<h4><span id=\"dnn_ctr515_dnnTITLE_titleLabel\" class=\"TitleH2\">Honduras 2006</span></h4>\r\n\r\n\r\n<table class=\"resptable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" >\r\n<tbody>\r\n<tr>\r\n<td>[caption id=\"attachment_434\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-and-two-Honduran-translators.jpg\" alt=\"Dr. Fields And Two Honduran Translators\" width=\"225\" height=\"128\" class=\"size-full wp-image-434\" /> Dr. Fields And Two Honduran Translators[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_435\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Taking-a-break-after-a-long-day.jpg\" alt=\"Taking A Break After A Long Day\" width=\"225\" height=\"169\" class=\"size-full wp-image-435\" /> Taking A Break After A Long Day[/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>[caption id=\"attachment_436\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.s-Fields-and-Cavalino-at-work.jpg\" alt=\"Dr.s Fields And Cavalino At Work\" width=\"225\" height=\"228\" class=\"size-full wp-image-436\" /> Dr.s Fields And Cavalino At Work[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_433\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Fields-and-Cavalino-with-the-owner-of-a-local-market.jpg\" alt=\"Dr&#039;s Fields And Cavalino With The Owner Of A Local Market\" width=\"225\" height=\"176\" class=\"size-full wp-image-433\" /> Dr\'s Fields And Cavalino With The Owner Of A Local Market[/caption]\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Honduras 2006','','inherit','closed','closed','','432-revision-v1','','','2019-06-08 05:57:08','2019-06-08 05:57:08','',432,'https://www.drfields.com/uncategorized/432-revision-v1/',0,'revision','',0),(441,8,'2019-06-08 05:59:37','2019-06-08 05:59:37','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n<strong>Stem Cell Knee (VIDEO HERE)  Stem Cell Hip (VIDEO HERE)</strong>\r\n\r\n<em>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </em>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"#\">Testimonials Page</a>.\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"imgLeft\" title=\"Stem Cell\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell1.jpg\" alt=\"Stem Cell treatment for joints\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/Prolotherapy/PRP-Prolotherapy\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"imgRight\" title=\"Stem Cells\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell2.jpg\" alt=\"Stem Cells\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-06-08 05:59:37','2019-06-08 05:59:37','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(442,8,'2019-06-14 06:36:27','2019-06-14 06:36:27','&nbsp;\n\n<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\n<strong>Stem Cell Knee</strong>	\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\n<strong>Stem Cell Hip</strong>	\n</div>\n\n<i>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\n\nWatch the testimonials on this page, or see many more on our <a href=\"#\">Testimonials Page</a>.\n<div class=\"\"></div>\n<h4>Who Needs Stem Cell Treatment?</h4>\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<strong>If you have been told</strong> that you have any of these conditions...\n<ul>\n 	<li>Bone-on-bone</li>\n 	<li>Severe arthritis</li>\n 	<li>A degenerated joint</li>\n 	<li>Your cartilage has been worn away,</li>\n 	<li>The only option left is to have your joint replaced...</li>\n</ul>\n...you now have another option.\n\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\n\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\n<ul>\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\n</ul>\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\n\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\n\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\n\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\n<strong>Bone Marrow Stem Cells</strong>\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\n\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<strong>Adipose Stem Cells </strong>\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\n\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\"  class=\"alignleft size-full wp-image-732\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\n\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\n\n<h4>Research On Stem Cell Treatment for Joints</h4>\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\n\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" class=\"alignright size-full wp-image-735\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\n\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\n\n&nbsp;\n\n<strong>Stem Cell Treatment Results</strong>\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\n\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\n\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-autosave-v1','','','2019-06-14 06:36:27','2019-06-14 06:36:27','',431,'https://www.drfields.com/uncategorized/431-autosave-v1/',0,'revision','',0),(443,8,'2019-06-08 06:00:37','2019-06-08 06:00:37','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n<strong>Stem Cell Knee (VIDEO HERE)  Stem Cell Hip (VIDEO HERE)</strong>\r\n\r\n<em>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </em>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"#\">Testimonials Page</a>.\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"imgLeft alignleft\" title=\"Stem Cell\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell1.jpg\" alt=\"Stem Cell treatment for joints\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/Prolotherapy/PRP-Prolotherapy\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"imgRight alignleft\" title=\"Stem Cells\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell2.jpg\" alt=\"Stem Cells\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-06-08 06:00:37','2019-06-08 06:00:37','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(444,8,'2019-06-08 06:01:11','2019-06-08 06:01:11','Attending A Noon Lecture','Attending A Noon Lecture','Attending A Noon Lecture','inherit','open','closed','','attending-a-noon-lecture','','','2019-06-08 06:02:09','2019-06-08 06:02:09','',453,'https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg',0,'attachment','image/jpeg',0),(445,8,'2019-06-08 06:01:12','2019-06-08 06:01:12','Dr.. Fields And The Owner Of A Local Restaurant','Dr.. Fields And The Owner Of A Local Restaurant','Dr.. Fields And The Owner Of A Local Restaurant','inherit','open','closed','','dr-fields-and-the-owner-of-a-local-restaurant','','','2019-06-08 06:09:49','2019-06-08 06:09:49','',453,'https://www.drfields.com/wp-content/uploads/2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg',0,'attachment','image/jpeg',0),(446,8,'2019-06-08 06:01:14','2019-06-08 06:01:14','Dr. Fields, A Colleague And Two Translators1','Dr. Fields, A Colleague And Two Translators1','Dr. Fields, A Colleague And Two Translators1','inherit','open','closed','','dr-fields-a-colleague-and-two-translators1','','','2019-06-08 06:02:32','2019-06-08 06:02:32','',453,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg',0,'attachment','image/jpeg',0),(447,8,'2019-06-08 06:01:15','2019-06-08 06:01:15','Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School','Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School','Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School','inherit','open','closed','','dr-fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school','','','2019-06-08 06:09:34','2019-06-08 06:09:34','',453,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg',0,'attachment','image/jpeg',0),(448,8,'2019-06-08 06:01:16','2019-06-08 06:01:16','Dr. Patterson Giving A Noon Time Lecture','Dr. Patterson Giving A Noon Time Lecture','Dr. Patterson Giving A Noon Time Lecture','inherit','open','closed','','dr-patterson-giving-a-noon-time-lecture','','','2019-06-08 06:09:42','2019-06-08 06:09:42','',453,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg',0,'attachment','image/jpeg',0),(449,8,'2019-06-08 06:01:17','2019-06-08 06:01:17','Dr. Timmerman Instructs A New Physician','Dr. Timmerman Instructs A New Physician','Dr. Timmerman Instructs A New Physician','inherit','open','closed','','dr-timmerman-instructs-a-new-physician','','','2019-06-08 06:02:21','2019-06-08 06:02:21','',453,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg',0,'attachment','image/jpeg',0),(450,8,'2019-06-08 06:01:19','2019-06-08 06:01:19','Local Transport!','Local Transport!','Local Transport!','inherit','open','closed','','local-transport','','','2019-06-08 06:09:58','2019-06-08 06:09:58','',453,'https://www.drfields.com/wp-content/uploads/2019/06/Local-transport.jpg',0,'attachment','image/jpeg',0),(451,8,'2019-06-08 06:01:20','2019-06-08 06:01:20','One Of The Treatment Rooms','One Of The Treatment Rooms','One Of The Treatment Rooms','inherit','open','closed','','one-of-the-treatment-rooms','','','2019-06-08 06:10:04','2019-06-08 06:10:04','',453,'https://www.drfields.com/wp-content/uploads/2019/06/One-of-the-treatment-rooms.jpg',0,'attachment','image/jpeg',0),(452,8,'2019-06-08 06:01:21','2019-06-08 06:01:21','Our Make Shift Treatment Area','Our Make Shift Treatment Area','Our Make Shift Treatment Area','inherit','open','closed','','our-make-shift-treatment-area','','','2019-06-08 06:10:12','2019-06-08 06:10:12','',453,'https://www.drfields.com/wp-content/uploads/2019/06/Our-make-shift-treatment-area.jpg',0,'attachment','image/jpeg',0),(453,8,'2019-06-08 06:02:35','2019-06-08 06:02:35','&nbsp;\r\n<h4>Honduras 2007</h4>\r\n&nbsp;\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-444\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\" width=\"225\" height=\"150\" /> Attending A Noon Lecture[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_449\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-449\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\" width=\"225\" height=\"150\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_446\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-446\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\" width=\"225\" height=\"150\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_447\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-447\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg\" alt=\"Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School\" width=\"225\" height=\"150\" /> Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_448\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-448\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg\" alt=\"Dr. Patterson Giving A Noon Time Lecture\" width=\"225\" height=\"150\" /> Dr. Patterson Giving A Noon Time Lecture[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_445\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-445\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg\" alt=\"Dr.. Fields And The Owner Of A Local Restaurant\" width=\"225\" height=\"150\" /> Dr.. Fields And The Owner Of A Local Restaurant[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_450\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-450\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-transport.jpg\" alt=\"Local Transport!\" width=\"225\" height=\"150\" /> Local Transport![/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_451\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-451\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/One-of-the-treatment-rooms.jpg\" alt=\"One Of The Treatment Rooms\" width=\"225\" height=\"150\" /> One Of The Treatment Rooms[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_452\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-452\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Our-make-shift-treatment-area.jpg\" alt=\"Our Make Shift Treatment Area\" width=\"225\" height=\"150\" /> Our Make Shift Treatment Area[/caption]\r\n\r\n</div>','Honduras 2007','','publish','open','closed','','honduras-2007','','','2022-11-01 18:02:12','2022-11-01 18:02:12','',0,'https://www.drfields.com/?p=453',0,'post','',0),(454,8,'2019-06-08 06:02:19','2019-06-08 06:02:19','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n<strong>Stem Cell Knee (VIDEO HERE)  Stem Cell Hip (VIDEO HERE)</strong>\r\n<p style=\"text-align: left;\"><em>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </em></p>\r\nWatch the testimonials on this page, or see many more on our <a href=\"#\">Testimonials Page</a>.\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"imgLeft alignleft\" title=\"Stem Cell\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell1.jpg\" alt=\"Stem Cell treatment for joints\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/Prolotherapy/PRP-Prolotherapy\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"imgRight alignleft\" title=\"Stem Cells\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell2.jpg\" alt=\"Stem Cells\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-06-08 06:02:19','2019-06-08 06:02:19','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(455,8,'2019-06-08 06:02:35','2019-06-08 06:02:35','<div class=\"col-md-4\">\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\" width=\"225\" height=\"150\" class=\"size-full wp-image-444\" /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_449\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\" width=\"225\" height=\"150\" class=\"size-full wp-image-449\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n</div>\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_446\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\" width=\"225\" height=\"150\" class=\"size-full wp-image-446\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n</div>\r\n<div class=\"col-md-4\">\r\n</div>\r\n<div class=\"col-md-4\">\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n</div>\r\n<div class=\"col-md-4\">\r\n</div>\r\n<div class=\"col-md-4\">\r\n</div>','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:02:35','2019-06-08 06:02:35','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(456,8,'2019-06-08 06:03:03','2019-06-08 06:03:03','<div class=\"col-md-4\">\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-444\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\" width=\"225\" height=\"150\" /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_449\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-449\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\" width=\"225\" height=\"150\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n</div>\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_446\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-446\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\" width=\"225\" height=\"150\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-4\"></div>\r\n<div class=\"col-md-4\"></div>\r\n<div class=\"col-md-4\"></div>\r\n\r\n<div class=\"col-md-4\"></div>\r\n<div class=\"col-md-4\"></div>\r\n<div class=\"col-md-4\"></div>','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:03:03','2019-06-08 06:03:03','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(457,8,'2019-06-08 06:03:06','2019-06-08 06:03:06','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n<strong>Stem Cell Knee (VIDEO HERE)  Stem Cell Hip (VIDEO HERE)</strong>\r\n<p style=\"text-align: left;\"><em>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </em></p>\r\nWatch the testimonials on this page, or see many more on our <a href=\"#\">Testimonials Page</a>.\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"imgLeft alignleft\" title=\"Stem Cell\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell1.jpg\" alt=\"Stem Cell treatment for joints\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/Prolotherapy/PRP-Prolotherapy\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"imgRight alignleft\" title=\"Stem Cells\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell2.jpg\" alt=\"Stem Cells\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-06-08 06:03:06','2019-06-08 06:03:06','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(458,8,'2019-06-08 06:03:57','2019-06-08 06:03:57','<div class=\"col-md-4\">\r\n[caption id=\"attachment_444\" align=\"aligncenter\" ]<img class=\"size-full wp-image-444\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\"  /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_449\" align=\"aligncenter\" ]<img class=\"size-full wp-image-449\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n</div>\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_446\" align=\"aligncenter\" ]<img class=\"size-full wp-image-446\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\"  /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-4\"></div>\r\n<div class=\"col-md-4\"></div>\r\n<div class=\"col-md-4\"></div>\r\n\r\n<div class=\"col-md-4\"></div>\r\n<div class=\"col-md-4\"></div>\r\n<div class=\"col-md-4\"></div>','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:03:57','2019-06-08 06:03:57','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(460,8,'2019-06-08 06:06:11','2019-06-08 06:06:11','<div class=\"col-md-4\">\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\"  class=\"size-full wp-image-444\" /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-4\">\r\n</div>\r\n<div class=\"col-md-4\"></div>\r\n','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:06:11','2019-06-08 06:06:11','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(461,8,'2019-06-08 06:06:40','2019-06-08 06:06:40','<div class=\"col-md-4\">\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"346\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\"  class=\"size-full wp-image-444\" /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-4\">\r\n</div>\r\n<div class=\"col-md-4\"></div>\r\n','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:06:40','2019-06-08 06:06:40','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(462,8,'2019-06-08 06:08:13','2019-06-08 06:08:13','<div class=\"col-md-3\">\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"346\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\"  class=\"size-full wp-image-444\" /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_449\" align=\"aligncenter\" width=\"346\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\"  class=\"size-full wp-image-449\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_446\" align=\"aligncenter\" width=\"346\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\"  class=\"size-full wp-image-446\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n</div>\r\n','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:08:13','2019-06-08 06:08:13','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(463,8,'2019-06-08 06:08:42','2019-06-08 06:08:42','<div class=\"col-md-3\">\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\"  class=\"size-full wp-image-444\" /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_449\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\"  class=\"size-full wp-image-449\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_446\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\"  class=\"size-full wp-image-446\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n</div>\r\n','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:08:42','2019-06-08 06:08:42','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(464,8,'2019-06-08 06:10:15','2019-06-08 06:10:15','<div class=\"col-md-3\">\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\"  class=\"size-full wp-image-444\" /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_449\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\"  class=\"size-full wp-image-449\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_446\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\"  class=\"size-full wp-image-446\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_447\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg\" alt=\"Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School\" width=\"225\" height=\"150\" class=\"size-full wp-image-447\" /> Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_448\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg\" alt=\"Dr. Patterson Giving A Noon Time Lecture\" width=\"225\" height=\"150\" class=\"size-full wp-image-448\" /> Dr. Patterson Giving A Noon Time Lecture[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_445\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg\" alt=\"Dr.. Fields And The Owner Of A Local Restaurant\" width=\"225\" height=\"150\" class=\"size-full wp-image-445\" /> Dr.. Fields And The Owner Of A Local Restaurant[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_450\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-transport.jpg\" alt=\"Local Transport!\" width=\"225\" height=\"150\" class=\"size-full wp-image-450\" /> Local Transport![/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_451\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/One-of-the-treatment-rooms.jpg\" alt=\"One Of The Treatment Rooms\" width=\"225\" height=\"150\" class=\"size-full wp-image-451\" /> One Of The Treatment Rooms[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_452\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Our-make-shift-treatment-area.jpg\" alt=\"Our Make Shift Treatment Area\" width=\"225\" height=\"150\" class=\"size-full wp-image-452\" /> Our Make Shift Treatment Area[/caption]\r\n</div>\r\n','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:10:15','2019-06-08 06:10:15','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(465,8,'2019-06-08 06:11:29','2019-06-08 06:11:29','<div class=\"col-md-3\">\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\"  class=\"size-full wp-image-444\" /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_449\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\"  class=\"size-full wp-image-449\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_446\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\"  class=\"size-full wp-image-446\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_447\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg\" alt=\"Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School\" width=\"225\" height=\"150\" class=\"size-full wp-image-447\" /> Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_448\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg\" alt=\"Dr. Patterson Giving A Noon Time Lecture\" width=\"225\" height=\"150\" class=\"size-full wp-image-448\" /> Dr. Patterson Giving A Noon Time Lecture[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_445\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg\" alt=\"Dr.. Fields And The Owner Of A Local Restaurant\" width=\"225\" height=\"150\" class=\"size-full wp-image-445\" /> Dr.. Fields And The Owner Of A Local Restaurant[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_450\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-transport.jpg\" alt=\"Local Transport!\" width=\"225\" height=\"150\" class=\"size-full wp-image-450\" /> Local Transport![/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_451\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/One-of-the-treatment-rooms.jpg\" alt=\"One Of The Treatment Rooms\" width=\"225\" height=\"150\" class=\"size-full wp-image-451\" /> One Of The Treatment Rooms[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_452\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Our-make-shift-treatment-area.jpg\" alt=\"Our Make Shift Treatment Area\" width=\"225\" height=\"150\" class=\"size-full wp-image-452\" /> Our Make Shift Treatment Area[/caption]\r\n</div>\r\n','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:11:29','2019-06-08 06:11:29','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(466,8,'2019-06-08 06:11:52','2019-06-08 06:11:52','\r\n&nbsp;\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\"  class=\"size-full wp-image-444\" /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_449\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\"  class=\"size-full wp-image-449\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_446\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\"  class=\"size-full wp-image-446\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_447\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg\" alt=\"Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School\" width=\"225\" height=\"150\" class=\"size-full wp-image-447\" /> Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_448\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg\" alt=\"Dr. Patterson Giving A Noon Time Lecture\" width=\"225\" height=\"150\" class=\"size-full wp-image-448\" /> Dr. Patterson Giving A Noon Time Lecture[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_445\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg\" alt=\"Dr.. Fields And The Owner Of A Local Restaurant\" width=\"225\" height=\"150\" class=\"size-full wp-image-445\" /> Dr.. Fields And The Owner Of A Local Restaurant[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_450\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-transport.jpg\" alt=\"Local Transport!\" width=\"225\" height=\"150\" class=\"size-full wp-image-450\" /> Local Transport![/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_451\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/One-of-the-treatment-rooms.jpg\" alt=\"One Of The Treatment Rooms\" width=\"225\" height=\"150\" class=\"size-full wp-image-451\" /> One Of The Treatment Rooms[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_452\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Our-make-shift-treatment-area.jpg\" alt=\"Our Make Shift Treatment Area\" width=\"225\" height=\"150\" class=\"size-full wp-image-452\" /> Our Make Shift Treatment Area[/caption]\r\n</div>\r\n','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:11:52','2019-06-08 06:11:52','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(467,8,'2019-06-08 06:12:19','2019-06-08 06:12:19','&nbsp;\r\n<h4>Honduras 2007</h4>\r\n&nbsp;\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\"  class=\"size-full wp-image-444\" /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_449\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\"  class=\"size-full wp-image-449\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_446\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\"  class=\"size-full wp-image-446\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_447\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg\" alt=\"Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School\" width=\"225\" height=\"150\" class=\"size-full wp-image-447\" /> Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_448\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg\" alt=\"Dr. Patterson Giving A Noon Time Lecture\" width=\"225\" height=\"150\" class=\"size-full wp-image-448\" /> Dr. Patterson Giving A Noon Time Lecture[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_445\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg\" alt=\"Dr.. Fields And The Owner Of A Local Restaurant\" width=\"225\" height=\"150\" class=\"size-full wp-image-445\" /> Dr.. Fields And The Owner Of A Local Restaurant[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_450\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-transport.jpg\" alt=\"Local Transport!\" width=\"225\" height=\"150\" class=\"size-full wp-image-450\" /> Local Transport![/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_451\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/One-of-the-treatment-rooms.jpg\" alt=\"One Of The Treatment Rooms\" width=\"225\" height=\"150\" class=\"size-full wp-image-451\" /> One Of The Treatment Rooms[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_452\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Our-make-shift-treatment-area.jpg\" alt=\"Our Make Shift Treatment Area\" width=\"225\" height=\"150\" class=\"size-full wp-image-452\" /> Our Make Shift Treatment Area[/caption]\r\n</div>\r\n','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:12:19','2019-06-08 06:12:19','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(468,8,'2019-06-08 06:13:17','2019-06-08 06:13:17','&nbsp;\r\n<h4>Honduras 2007</h4>\r\n&nbsp;\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_444\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\"  class=\"size-full wp-image-444\" /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_449\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\"  class=\"size-full wp-image-449\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_446\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\"  class=\"size-full wp-image-446\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_447\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg\" alt=\"Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School\" width=\"225\" height=\"150\" class=\"size-full wp-image-447\" /> Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_448\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg\" alt=\"Dr. Patterson Giving A Noon Time Lecture\" width=\"225\" height=\"150\" class=\"size-full wp-image-448\" /> Dr. Patterson Giving A Noon Time Lecture[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_445\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg\" alt=\"Dr.. Fields And The Owner Of A Local Restaurant\" width=\"225\" height=\"150\" class=\"size-full wp-image-445\" /> Dr.. Fields And The Owner Of A Local Restaurant[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_450\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-transport.jpg\" alt=\"Local Transport!\" width=\"225\" height=\"150\" class=\"size-full wp-image-450\" /> Local Transport![/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_451\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/One-of-the-treatment-rooms.jpg\" alt=\"One Of The Treatment Rooms\" width=\"225\" height=\"150\" class=\"size-full wp-image-451\" /> One Of The Treatment Rooms[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_452\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Our-make-shift-treatment-area.jpg\" alt=\"Our Make Shift Treatment Area\" width=\"225\" height=\"150\" class=\"size-full wp-image-452\" /> Our Make Shift Treatment Area[/caption]\r\n</div>\r\n','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:13:17','2019-06-08 06:13:17','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(469,8,'2019-06-08 06:21:20','2019-06-08 06:21:20','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div class=\"clearfix\"></div>\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Receptors for pain are found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>Who Uses Prolotherapy?</h4>\r\n<img class=\"wp-image-5755 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Back-Pain.-Prolotherapy-500x375.jpeg\" alt=\"Back Pain. Prolotherapy\" width=\"415\" height=\"310\" />\r\n\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen<sup>®</sup>, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Pain Overview','','publish','closed','closed','','chronic-pain','','','2023-04-19 17:58:53','2023-04-19 17:58:53','',0,'https://www.drfields.com/?p=469',0,'post','',0),(471,8,'2019-06-08 06:17:40','2019-06-08 06:17:40','&nbsp;\r\n<h4>Honduras 2007</h4>\r\n&nbsp;\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_444\"  align=\"align-center\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\"  class=\"size-full wp-image-444\" /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_449\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\"  class=\"size-full wp-image-449\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_446\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\"  class=\"size-full wp-image-446\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_447\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg\" alt=\"Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School\" width=\"225\" height=\"150\" class=\"size-full wp-image-447\" /> Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_448\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg\" alt=\"Dr. Patterson Giving A Noon Time Lecture\" width=\"225\" height=\"150\" class=\"size-full wp-image-448\" /> Dr. Patterson Giving A Noon Time Lecture[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_445\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg\" alt=\"Dr.. Fields And The Owner Of A Local Restaurant\" width=\"225\" height=\"150\" class=\"size-full wp-image-445\" /> Dr.. Fields And The Owner Of A Local Restaurant[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_450\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-transport.jpg\" alt=\"Local Transport!\" width=\"225\" height=\"150\" class=\"size-full wp-image-450\" /> Local Transport![/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_451\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/One-of-the-treatment-rooms.jpg\" alt=\"One Of The Treatment Rooms\" width=\"225\" height=\"150\" class=\"size-full wp-image-451\" /> One Of The Treatment Rooms[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_452\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Our-make-shift-treatment-area.jpg\" alt=\"Our Make Shift Treatment Area\" width=\"225\" height=\"150\" class=\"size-full wp-image-452\" /> Our Make Shift Treatment Area[/caption]\r\n</div>\r\n','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:17:40','2019-06-08 06:17:40','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(472,8,'2019-06-08 06:18:21','2019-06-08 06:18:21','&nbsp;\r\n<h4>Honduras 2007</h4>\r\n&nbsp;\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\" width=\"225\" height=\"150\" class=\"size-full wp-image-444\" /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_449\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\"  class=\"size-full wp-image-449\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_446\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\"  class=\"size-full wp-image-446\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_447\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg\" alt=\"Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School\" width=\"225\" height=\"150\" class=\"size-full wp-image-447\" /> Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_448\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg\" alt=\"Dr. Patterson Giving A Noon Time Lecture\" width=\"225\" height=\"150\" class=\"size-full wp-image-448\" /> Dr. Patterson Giving A Noon Time Lecture[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_445\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg\" alt=\"Dr.. Fields And The Owner Of A Local Restaurant\" width=\"225\" height=\"150\" class=\"size-full wp-image-445\" /> Dr.. Fields And The Owner Of A Local Restaurant[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_450\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-transport.jpg\" alt=\"Local Transport!\" width=\"225\" height=\"150\" class=\"size-full wp-image-450\" /> Local Transport![/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_451\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/One-of-the-treatment-rooms.jpg\" alt=\"One Of The Treatment Rooms\" width=\"225\" height=\"150\" class=\"size-full wp-image-451\" /> One Of The Treatment Rooms[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_452\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Our-make-shift-treatment-area.jpg\" alt=\"Our Make Shift Treatment Area\" width=\"225\" height=\"150\" class=\"size-full wp-image-452\" /> Our Make Shift Treatment Area[/caption]\r\n</div>\r\n','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:18:21','2019-06-08 06:18:21','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(475,8,'2022-12-02 06:01:39','2019-06-08 06:21:36',' ','','','publish','closed','closed','','475','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=475',38,'nav_menu_item','',0),(476,8,'2022-12-02 06:01:39','2019-06-08 06:21:36',' ','','','publish','closed','closed','','476','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=476',37,'nav_menu_item','',0),(477,8,'2022-12-02 06:01:39','2019-06-08 06:21:36',' ','','','publish','closed','closed','','477','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=477',36,'nav_menu_item','',0),(478,8,'2022-12-02 06:01:38','2019-06-08 06:21:36',' ','','','publish','closed','closed','','478','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=478',34,'nav_menu_item','',0),(479,8,'2022-12-02 06:01:38','2019-06-08 06:21:36',' ','','','publish','closed','closed','','479','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=479',32,'nav_menu_item','',0),(480,8,'2019-06-08 06:21:20','2019-06-08 06:21:20','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\nAre you suffering from a back injury, a work related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibers that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Knee-Pain\">chronic knee pain</a>? <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Shoulder-Pain\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Neck-Pain\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Elbow-Pain\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen is for our patients to have an active, healthy, pain free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\n\r\nWhether your chronic pain is from a back injury, a work related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/Contact-Us\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2019-06-08 06:21:20','2019-06-08 06:21:20','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(481,8,'2022-12-02 06:01:38','2019-06-08 06:24:31','','Regenerative Techniques','','publish','closed','closed','','regenerative-techniques','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=481',31,'nav_menu_item','',0),(482,8,'2019-06-08 11:11:51','2019-06-08 11:11:51','&nbsp;\n\n<h4>Treat Your Chronic Pain With Prolotherapy</h4>\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\n\n<h4>What is Pain?</h4>\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibers that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\n\n<h4>Acute Pain vs Chronic Pain</h4>\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\n\n<h4>Why Am I Still In Pain?</h4>\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\n\n<h4>Who Uses Prolotherapy?</h4>\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\n\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\n\n<h4>Why Prolotherapy Works</h4>\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\n\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\n\n<h4>Are You A Candidate For Prolotherapy?</h4>\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/Contact-Us\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+1-4243256695\">(424) 325-6695</a>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n','Chronic Pain Overview','','inherit','closed','closed','','469-autosave-v1','','','2019-06-08 11:11:51','2019-06-08 11:11:51','',469,'https://www.drfields.com/uncategorized/469-autosave-v1/',0,'revision','',0),(483,8,'2022-12-02 06:01:39','2019-06-08 06:24:31','','Conditions','','publish','closed','closed','','conditions','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=483',39,'nav_menu_item','',0),(484,8,'2019-06-08 06:24:25','2019-06-08 06:24:25','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibers that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Knee-Pain\">chronic knee pain</a>? <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Shoulder-Pain\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Neck-Pain\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Elbow-Pain\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/Contact-Us\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2019-06-08 06:24:25','2019-06-08 06:24:25','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(485,8,'2022-12-02 06:01:39','2019-06-08 06:26:34','','Dextrose Prolotherapy','','publish','closed','closed','','dextrose-prolotherapy','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=485',35,'nav_menu_item','',0),(486,8,'2019-06-08 06:35:34','2019-06-08 06:35:34','<h4>Regenerative Orthopedics for Annoying Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you are prevented from doing all of that and more. Moreover, many conventional treatments include surgery, arthroscopy, cortisone, and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Regenerative Orthopedics to treat persistent joint pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the shin\'s upper end (tibia). The knee cap (patellae) slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. For example, if you are experiencing minor pain, clicking, giving way, or ‘trick knee,’ you may be feeling the first symptoms of arthritis. Plus, arthritis can begin in people as early as thirty years of age. And this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain, accompanied by significant inflammation and swelling, can be caused by gout or even infection.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. And other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Additionally, pseudogout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease, and chondromalacia patellae can also cause knee pain. As we age, the smooth and resilient cartilage on our long bones\' ends wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>How Does Regenerative Orthopedics Work for Chronic Knee Pain?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Regenerative Orthopedics</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons, and possibly cartilage. Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain. And studies show that the use of dextrose prolotherapy is supported for treatment of tendinopathies and knee osteoarthritis, as a result of ligament dysfunction.1\r\n\r\n[caption id=\"attachment_4809\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4809\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee.-Prolo-500x375.jpeg\" alt=\"Knee. Prolo\" width=\"500\" height=\"375\" /> <strong>        Prolotherapy Is Effective for Knee Injuries and OA</strong>[/caption]\r\n\r\nRegenerative Orthopedics works because it stimulates an inflammatory reaction in the body. In short, solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. And then, the localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. Subsequently, the new collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Regenerative Orthopedics?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. And Regenerative Orthopedics is a very safe, affordable option that allows you to keep working, training, and living a normal life during the recovery process. Regenerative Orthopedics for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after Regenerative Orthopedics, like Stem Cell Therapy, PRP, and <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Regenerative Orthopedics for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Peter A. Fields, MD, DC, and OrthoRegen<sup>®</sup> at 310-453-1234.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h3>References</h3>\r\n1Hauser RA, Lackner JB, Steilen-Matias D, Harris DK. A Systematic Review of Dextrose Prolotherapy for Chronic Musculoskeletal Pain. Clin Med Insights Arthritis Musculoskelet Disord. 2016 Jul 7;9:139-59. doi: 10.4137/CMAMD.S39160. PMID: 27429562; PMCID: PMC4938120.','Knee Pain That Won\'t Go Away','','publish','open','closed','','knee-pain','','','2021-07-26 18:54:27','2021-07-26 18:54:27','',0,'https://www.drfields.com/?p=486',0,'post','',0),(488,8,'2019-06-08 06:33:38','2019-06-08 06:33:38','Dr\'s Peter And Matt','Dr\'s Peter And Matt','Dr. Fields instructs Dr. Matt','inherit','open','closed','','drs-peter-and-matt','','','2019-06-08 07:21:47','2019-06-08 07:21:47','',504,'https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-and-Matt.jpg',0,'attachment','image/jpeg',0),(489,8,'2019-06-08 06:33:39','2019-06-08 06:33:39','Dr F. Lecturing 1','Dr F. Lecturing 1','Dr. Fields lecturing','inherit','open','closed','','dr-f-lecturing-1','','','2019-06-08 07:22:11','2019-06-08 07:22:11','',504,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-F.-Lecturing-1.jpg',0,'attachment','image/jpeg',0),(490,8,'2019-06-08 06:33:40','2019-06-08 06:33:40','Dscn1562','Dscn1562','Dr\'s Bill, Saul and Peter','inherit','open','closed','','dscn1562','','','2019-06-08 07:22:30','2019-06-08 07:22:30','',504,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1562.jpg',0,'attachment','image/jpeg',0),(491,8,'2019-06-08 06:33:40','2019-06-08 06:33:40','Dscn1727','Dscn1727','Dr. Fields and student Dr. Laurent','inherit','open','closed','','dscn1727','','','2019-06-08 07:22:54','2019-06-08 07:22:54','',504,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1727.jpg',0,'attachment','image/jpeg',0),(492,8,'2019-06-08 06:33:41','2019-06-08 06:33:41','Dscn1739','Dscn1739','Dr. Fields and the La Ceiba Red Cross Staff','inherit','open','closed','','dscn1739','','','2019-06-08 07:23:12','2019-06-08 07:23:12','',504,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1739.jpg',0,'attachment','image/jpeg',0),(493,8,'2019-06-08 06:33:42','2019-06-08 06:33:42','Dscn1760','Dscn1760','Dr\'s Saul, Matt, Laurent and Dr. Pedro Campos!','inherit','open','closed','','dscn1760','','','2019-06-08 07:23:29','2019-06-08 07:23:29','',504,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1760.jpg',0,'attachment','image/jpeg',0),(494,8,'2019-06-08 06:33:42','2019-06-08 06:33:42','Dscn1761','Dscn1761','Dr\'s Sandra and Josette- our Honduran Docs','inherit','open','closed','','dscn1761','','','2019-06-08 07:23:47','2019-06-08 07:23:47','',504,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1761.jpg',0,'attachment','image/jpeg',0),(495,8,'2019-06-08 06:33:43','2019-06-08 06:33:43','Dscn1790','Dscn1790','Dr\'s Peter, Deb, Saul, Red Cross aid with a pt\nand her child','inherit','open','closed','','dscn1790','','','2019-06-08 07:24:23','2019-06-08 07:24:23','',504,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1790.jpg',0,'attachment','image/jpeg',0),(496,8,'2019-06-08 06:33:44','2019-06-08 06:33:44','Dscn1796','Dscn1796','The La Ceiba team','inherit','open','closed','','dscn1796','','','2019-06-08 07:24:34','2019-06-08 07:24:34','',504,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1796.jpg',0,'attachment','image/jpeg',0),(497,8,'2019-06-08 06:33:44','2019-06-08 06:33:44','Dr Fields Adjusts A Patient','Dr Fields Adjusts A Patient','Dr. Fields adjusts a patient while other\ndoctors obserserve','inherit','open','closed','','dr-fields-adjusts-a-patient','','','2019-06-08 07:25:17','2019-06-08 07:25:17','',504,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-adjusts-a-patient.jpg',0,'attachment','image/jpeg',0),(498,8,'2019-06-08 06:33:45','2019-06-08 06:33:45','Dr Fields Instructs','Dr Fields Instructs','Dr. Fields Instructs','inherit','open','closed','','dr-fields-instructs','','','2019-06-08 07:25:31','2019-06-08 07:25:31','',504,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-instructs.jpg',0,'attachment','image/jpeg',0),(499,8,'2019-06-08 06:33:45','2019-06-08 06:33:45','Dr\'s Peter, Bill, Joe And Patient','Dr\'s Peter, Bill, Joe And Patient','Dr\'s Peter, Bill, Joe and patient','inherit','open','closed','','drs-peter-bill-joe-and-patient','','','2019-06-08 07:25:46','2019-06-08 07:25:46','',504,'https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-Bill-Joe-and-patient.jpg',0,'attachment','image/jpeg',0),(500,8,'2019-06-08 06:33:45','2019-06-08 06:33:45','Dr Fields Giving A Lecture','Dr Fields Giving A Lecture','Dr. Fields giving a lecture','inherit','open','closed','','dr-fields-giving-a-lecture','','','2019-06-08 07:26:00','2019-06-08 07:26:00','',504,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-giving-a-lecture.jpg',0,'attachment','image/jpeg',0),(501,8,'2019-06-08 06:33:46','2019-06-08 06:33:46','Dr F And Skeleton','Dr F And Skeleton','Dr. Fields and Dr. Bones','inherit','open','closed','','dr-f-and-skeleton','','','2019-06-08 07:26:15','2019-06-08 07:26:15','',504,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-F-and-skeleton.jpg',0,'attachment','image/jpeg',0),(502,8,'2019-06-08 06:33:46','2019-06-08 06:33:46','Dinner At The Hotel','Dinner At The Hotel','Dinner at the hotel','inherit','open','closed','','dinner-at-the-hotel','','','2019-06-08 07:26:27','2019-06-08 07:26:27','',504,'https://www.drfields.com/wp-content/uploads/2019/06/Dinner-at-the-hotel.jpg',0,'attachment','image/jpeg',0),(503,8,'2019-06-08 06:33:47','2019-06-08 06:33:47','Horse','Horse','Local transport','inherit','open','closed','','horse','','','2019-06-08 07:26:39','2019-06-08 07:26:39','',504,'https://www.drfields.com/wp-content/uploads/2019/06/horse.jpg',0,'attachment','image/jpeg',0),(504,8,'2019-06-08 06:59:31','2019-06-08 06:59:31','&nbsp;\r\n<h4>Honduras 2009</h4>\r\n<table class=\"resptable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_488\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-488\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-and-Matt.jpg\" alt=\"Dr\'s Peter And Matt\" width=\"255\" height=\"191\" /> Dr. Fields instructs Dr. Matt[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_489\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-489\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F.-Lecturing-1.jpg\" alt=\"Dr F. Lecturing 1\" width=\"255\" height=\"191\" /> Dr. Fields lecturing[/caption]</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_490\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-490\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1562.jpg\" alt=\"Dscn1562\" width=\"255\" height=\"192\" /> Dr\'s Bill, Saul and Peter[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_491\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-491\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1727.jpg\" alt=\"Dscn1727\" width=\"255\" height=\"191\" /> Dr. Fields and student Dr. Laurent[/caption]</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_492\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-492\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1739.jpg\" alt=\"Dscn1739\" width=\"255\" height=\"191\" /> Dr. Fields and the La Ceiba Red Cross Staff[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_493\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-493\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1760.jpg\" alt=\"Dscn1760\" width=\"255\" height=\"191\" /> Dr\'s Saul, Matt, Laurent and Dr. Pedro Campos![/caption]</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_494\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-494\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1761.jpg\" alt=\"Dscn1761\" width=\"255\" height=\"191\" /> Dr\'s Sandra and Josette- our Honduran Docs[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_495\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-495\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1790.jpg\" alt=\"Dscn1790\" width=\"255\" height=\"191\" /> Dr\'s Peter, Deb, Saul, Red Cross aid with a pt and her child[/caption]</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_496\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-496\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1796.jpg\" alt=\"Dscn1796\" width=\"255\" height=\"191\" /> The La Ceiba team[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_497\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-497\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-adjusts-a-patient.jpg\" alt=\"Dr Fields Adjusts A Patient\" width=\"255\" height=\"191\" /> Dr. Fields adjusts a patient while other<br />doctors obserserve[/caption]</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_498\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-498\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-instructs.jpg\" alt=\"Dr Fields Instructs\" width=\"255\" height=\"191\" /> Dr. Fields Instructs[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_499\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-499\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-Bill-Joe-and-patient.jpg\" alt=\"Dr\'s Peter, Bill, Joe And Patient\" width=\"255\" height=\"191\" /> Dr\'s Peter, Bill, Joe and patient[/caption]</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_500\" align=\"aligncenter\" width=\"217\"]<img class=\"size-full wp-image-500\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-giving-a-lecture.jpg\" alt=\"Dr Fields Giving A Lecture\" width=\"217\" height=\"255\" /> Dr. Fields giving a lecture[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_501\" align=\"aligncenter\" width=\"200\"]<img class=\"size-full wp-image-501\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F-and-skeleton.jpg\" alt=\"Dr F And Skeleton\" width=\"200\" height=\"255\" /> Dr. Fields and Dr. Bones[/caption]</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_502\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-502\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dinner-at-the-hotel.jpg\" alt=\"Dinner At The Hotel\" width=\"255\" height=\"191\" /> Dinner at the hotel[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_503\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-503\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/horse.jpg\" alt=\"Horse\" width=\"255\" height=\"202\" /> Local transport[/caption]</td>\r\n</tr>\r\n</tbody>\r\n</table>','Honduras 2009','','publish','open','closed','','honduras-2009','','','2022-11-01 18:02:11','2022-11-01 18:02:11','',0,'https://www.drfields.com/?p=504',0,'post','',0),(505,8,'2019-06-08 06:35:34','2019-06-08 06:35:34','<h4>Prolotherapy for Chronic Knee Pain</h4>\r\nSam - Knee (VIDEO HERE)\r\nRoberto - Knee (In Spanish) (VIDEO HERE)\r\n\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Prolotherapy for Chronic Knee Pain treatment.\r\n\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee is begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Osteoarthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Chronic osteoarthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudo gout, bursitis, tendonitis, <a href=\"https://www.drfields.com/Sports-Injuries\">sports injuries</a>, degenerative joint disease and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"BUTTONLINK\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Knee Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Pain-Overview\">treat their chronic pain with prolotherapy</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. By contrast, surgery requires you reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/Contact-Us\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel://1-310-455-8242\">(310) 455-8242</a>.\r\n\r\n<a class=\"BUTTONLINK\" href=\"#\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2019-06-08 06:35:34','2019-06-08 06:35:34','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(506,8,'2019-06-08 06:36:30','2019-06-08 06:36:30','<h4>Prolotherapy for Chronic Knee Pain</h4>\r\n<strong>Sam - Knee (VIDEO HERE)</strong>\r\n<strong>Roberto - Knee (In Spanish) (VIDEO HERE)</strong>\r\n\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Prolotherapy for Chronic Knee Pain treatment.\r\n\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee is begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Osteoarthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Chronic osteoarthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudo gout, bursitis, tendonitis, <a href=\"https://www.drfields.com/Sports-Injuries\">sports injuries</a>, degenerative joint disease and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"BUTTONLINK\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Knee Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Pain-Overview\">treat their chronic pain with prolotherapy</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. By contrast, surgery requires you reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/Contact-Us\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel://1-310-455-8242\">(310) 455-8242</a>.\r\n\r\n<a class=\"BUTTONLINK\" href=\"#\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2019-06-08 06:36:30','2019-06-08 06:36:30','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(507,8,'2019-06-08 06:37:30','2019-06-08 06:37:30','<h4>Prolotherapy for Chronic Knee Pain</h4>\r\n<strong>Sam - Knee (VIDEO HERE)</strong>\r\n<strong>Roberto - Knee (In Spanish) (VIDEO HERE)</strong>\r\n\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Prolotherapy for Chronic Knee Pain treatment.\r\n\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee is beginning at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Osteoarthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Chronic osteoarthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudo gout, bursitis, tendonitis, <a href=\"https://www.drfields.com/Sports-Injuries\">sports injuries</a>, degenerative joint disease and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Knee Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Pain-Overview\">treat their chronic pain with prolotherapy</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/Contact-Us\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel://1-310-455-8242\">(310) 455-8242</a>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2019-06-08 06:37:30','2019-06-08 06:37:30','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(508,8,'2019-06-08 06:37:52','2019-06-08 06:37:52','<h4>Prolotherapy for Chronic Knee Pain</h4>\r\n<strong>Sam - Knee (VIDEO HERE)</strong>\r\n<strong>Roberto - Knee (In Spanish) (VIDEO HERE)</strong>\r\n\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Prolotherapy for Chronic Knee Pain treatment.\r\n\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Osteoarthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Chronic osteoarthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudo gout, bursitis, tendonitis, <a href=\"https://www.drfields.com/Sports-Injuries\">sports injuries</a>, degenerative joint disease and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Knee Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Pain-Overview\">treat their chronic pain with prolotherapy</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/Contact-Us\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel://1-310-455-8242\">(310) 455-8242</a>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2019-06-08 06:37:52','2019-06-08 06:37:52','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(509,8,'2019-06-08 06:47:29','2019-06-08 06:47:29','<img class=\"alignright wp-image-5491\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/PRP.-Neck.-Lower-back-1-500x375.jpeg\" alt=\"Prp. Neck. Lower Back\" width=\"300\" height=\"225\" />\r\n<h2>Stubborn, Chronic Neck Pain</h2>\r\nSince the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and rotate, but if you are unable to move your neck normally, your life can be severely disrupted, and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be Regenerative Orthopedics for chronic neck pain.\r\n<h2>What Causes Neck Pain?</h2>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\n<em>Symptoms involved with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:</em>\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm, or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands, and feet.</li>\r\n</ul>\r\nIf you are experiencing ongoing neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty, and symptoms may begin to appear years after the disease begins.\r\n\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong>\r\n\r\n<em>Other Causes of Neck Pain?</em>\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck may be a cause of the neck pain you feel. Pain in the neck can also be caused by injuries such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, disc herniation, a pinched nerve, meningitis, influenza, a heart attack, or torticollis can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3>Regenerative Orthopedics and Chronic Neck Pain</h3>\r\nMany patients are tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. Unfortunately, in many cases, these methods do not take care of the cause of the pain.\r\n\r\nMusculoskeletal pain is primarily due to weakness in the ligaments, tendons, and possibly cartilage. <strong>The good news is that Regenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy,  can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.</strong>\r\n<h3><em>What Does Research Say?</em></h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n<em>The Journal of Spine Research conducted a clinical study to evaluate the safety and effectiveness of PRP for the treatment of neck and low back pain. The specific cause of the pain in the study participants was spinal disc herniation (HNP). The patients had already tried different conservative treatments that did not work. <strong>However, the PRP treatments resulted in over 80% improvement.</strong> Plus, the improvement lasted. These patients were followed for eight years.1</em>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nRegenerative Orthopedics work because they stimulate the healing cascade in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, leading to local inflammation in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the injected ligament, making it stronger.\r\n<h3>Are you a Candidate For Regenerative Orthopedics for Chronic Neck Pain?</h3>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a safe, affordable option that allows you to keep working and remain active during recovery. These chronic neck pain treatments are among the few that encourage movement post-treatment. Movement is essential since it aids the healing process. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n<h3><strong>Reference</strong></h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n1Cameron JA, Thielen KM (2017) Autologous Platelet Rich Plasma for Neck and Lower Back Pain Secondary to Spinal Disc Herniation: Midterm Results. Spine Res. Vol. 3 No. 2:10.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stubborn, Persistent Neck Pain','','publish','open','closed','','chronic-neck-pain','','','2022-08-26 04:56:45','2022-08-26 04:56:45','',0,'https://www.drfields.com/?p=509',0,'post','',0),(510,8,'2019-06-08 06:47:29','2019-06-08 06:47:29','<strong>Mark - Neck (VIDEO HERE)</strong>\r\n\r\n<h4>Prolotherapy for Chronic Neck Pain</h4>\r\nBecause the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and to rotate, but if you can\'t move your neck normally, your life can be severely disrupted and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be prolotherapy for chronic neck pain.\r\n\r\n<h4>What Causes Neck Pain?</h4>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\nSymptoms of <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy/Prolotherapy-FAQ\">neck pain</a> can include:\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands and feet.</li>\r\n</ul>\r\n\r\nIf you are experiencing minor neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty and symptoms may begin to appear years after the disease begins.\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck can be the causes of the neck pain you feel. Pain in the neck can also be caused by injury such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, a pinched nerve, meningitis, influenza, a heart attack or torticollis, can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture, and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a class=\"buttonlink\" href=\"#\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Neck Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Pain-Overview\">treat their chronic pain with Prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Neck Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic neck pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are you a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/Contact-Us\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel://1-4243256695\">(424) 325- 6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">  Schedule Your Appointment Today!</a>','Chronic Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2019-06-08 06:47:29','2019-06-08 06:47:29','',509,'https://www.drfields.com/uncategorized/509-revision-v1/',0,'revision','',0),(511,8,'2019-06-08 06:55:13','2019-06-08 06:55:13','<h4>Prolotherapy for Chronic Shoulder Pain</h4>\r\n<img class=\"wp-image-5599 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/shoulder-pain.-Hauser-500x419.png\" alt=\"Shoulder Pain. Hauser\" width=\"428\" height=\"358\" />\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Wilbur - Shoulder</strong></div>\r\nIt\'s easy to take your own body for granted when your body is working well. But when a part of your body, such as your shoulder, begins to hurt or hurts for an extended period, you quickly realize how much you depend on your shoulders for reaching, raising your arm, lifting yourself up, or even just opening a cupboard. That\'s why so many people with shoulder pain or injuries look to <strong>Prolotherapy for chronic shoulder pain</strong> treatment.\r\n<h4>Causes of Shoulder Pain</h4>\r\nThe muscles and joints of the shoulder allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso, and allow the arm to move a full 360°. This tremendous range of motion also makes the shoulder extremely unstable and far more prone to dislocation and injury than other joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nBecause the rounded head or ball of the upper arm bone (humerus) is larger than the socket of the shoulder bone (scapula), this area is especially susceptible to injury. The shoulder joint consists of bones, muscles, and ligaments subject to stress and overuse.\r\n\r\nCommon causes of shoulder pain can be:\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation and attendant injury</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Adhesive capsulated (frozen shoulder)</li>\r\n 	<li>Fracture</li>\r\n 	<li>Poor posture.</li>\r\n</ul>\r\nBut the <strong>most common cause of chronic pain in the shoulder is arthritis</strong>. This can take many forms, such as osteoarthritis, rheumatoid, traumatic, and gouty arthritis.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Which Kind of Shoulder Pain Do You Have?</h4>\r\nIf you are experiencing pain from a rotator cuff injury, you will feel a dull aching pain, which worsens with movement.  A rotator cuff injury includes any irritation or damage to your <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> muscles or tendons. Causes of a rotator cuff injury may include falling, lifting, and repetitive arm activities — especially those done overhead.\r\n\r\n<strong>Shoulder tendonitis</strong> can produce symptoms including a slow onset of discomfort, pain in the upper third of your arm, and difficulty sleeping on the side of that arm.\r\n\r\nRedness and swelling that is tender and warm to the touch can be caused by <strong>bursitis</strong>.\r\n\r\nMinor shoulder pain, ‘clicking,’ ‘giving way,’ or frozen shoulder are symptoms of <strong>arthritis</strong>. Osteoarthritis can begin as early as thirty, but symptoms can appear later as the condition progresses.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<h4>How Prolotherapy Is Used To Treat Chronic Shoulder Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons, and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder ligaments, tendons, or joints, to boost healing in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Shoulder Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training, and living an everyday life during the recovery process. Prolotherapy for chronic shoulder pain is one of the few treatments that encourages movement post-treatment. Movement aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, shoulder surgery requires you to\r\n\r\nreduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic shoulder pain? Would you like a <strong>second opinion before you have irreversible shoulder surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Chronic Shoulder Pain','','publish','open','closed','','chronic-shoulder-pain','','','2023-03-15 19:30:57','2023-03-15 19:30:57','',0,'https://www.drfields.com/?p=511',0,'post','',0),(512,8,'2022-12-02 06:01:38','2019-06-08 06:50:03','','Philanthropy','','publish','closed','closed','','philanthropy','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=512',22,'nav_menu_item','',0),(514,8,'2022-12-02 06:01:38','2019-06-08 06:52:04',' ','','','publish','closed','closed','','514','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=514',27,'nav_menu_item','',0),(515,8,'2022-12-02 06:01:38','2019-06-08 06:52:04',' ','','','publish','closed','closed','','515','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=515',28,'nav_menu_item','',0),(516,8,'2022-12-02 06:01:38','2019-06-08 06:52:04',' ','','','publish','closed','closed','','516','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=516',29,'nav_menu_item','',0),(517,8,'2019-06-08 06:52:37','2019-06-08 06:52:37','&nbsp;\r\n<h4>Honduras 2007</h4>\r\n&nbsp;\r\n\r\n<div class=\"col-md-6\">\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\" width=\"225\" height=\"150\" class=\"size-full wp-image-444\" /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-6\">\r\n[caption id=\"attachment_449\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\"  class=\"size-full wp-image-449\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_446\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\"  class=\"size-full wp-image-446\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n</div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_447\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg\" alt=\"Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School\" width=\"225\" height=\"150\" class=\"size-full wp-image-447\" /> Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_448\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg\" alt=\"Dr. Patterson Giving A Noon Time Lecture\" width=\"225\" height=\"150\" class=\"size-full wp-image-448\" /> Dr. Patterson Giving A Noon Time Lecture[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_445\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg\" alt=\"Dr.. Fields And The Owner Of A Local Restaurant\" width=\"225\" height=\"150\" class=\"size-full wp-image-445\" /> Dr.. Fields And The Owner Of A Local Restaurant[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_450\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-transport.jpg\" alt=\"Local Transport!\" width=\"225\" height=\"150\" class=\"size-full wp-image-450\" /> Local Transport![/caption]\r\n</div>\r\n\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_451\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/One-of-the-treatment-rooms.jpg\" alt=\"One Of The Treatment Rooms\" width=\"225\" height=\"150\" class=\"size-full wp-image-451\" /> One Of The Treatment Rooms[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-3\">\r\n[caption id=\"attachment_452\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Our-make-shift-treatment-area.jpg\" alt=\"Our Make Shift Treatment Area\" width=\"225\" height=\"150\" class=\"size-full wp-image-452\" /> Our Make Shift Treatment Area[/caption]\r\n</div>\r\n','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:52:37','2019-06-08 06:52:37','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(518,8,'2019-06-08 06:53:11','2019-06-08 06:53:11','&nbsp;\r\n<h4>Honduras 2007</h4>\r\n&nbsp;\r\n\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\" width=\"225\" height=\"150\" class=\"size-full wp-image-444\" /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_449\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\"  class=\"size-full wp-image-449\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n</div>\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_446\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\"  class=\"size-full wp-image-446\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n</div>\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_447\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg\" alt=\"Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School\" width=\"225\" height=\"150\" class=\"size-full wp-image-447\" /> Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_448\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg\" alt=\"Dr. Patterson Giving A Noon Time Lecture\" width=\"225\" height=\"150\" class=\"size-full wp-image-448\" /> Dr. Patterson Giving A Noon Time Lecture[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_445\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg\" alt=\"Dr.. Fields And The Owner Of A Local Restaurant\" width=\"225\" height=\"150\" class=\"size-full wp-image-445\" /> Dr.. Fields And The Owner Of A Local Restaurant[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_450\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-transport.jpg\" alt=\"Local Transport!\" width=\"225\" height=\"150\" class=\"size-full wp-image-450\" /> Local Transport![/caption]\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_451\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/One-of-the-treatment-rooms.jpg\" alt=\"One Of The Treatment Rooms\" width=\"225\" height=\"150\" class=\"size-full wp-image-451\" /> One Of The Treatment Rooms[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_452\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Our-make-shift-treatment-area.jpg\" alt=\"Our Make Shift Treatment Area\" width=\"225\" height=\"150\" class=\"size-full wp-image-452\" /> Our Make Shift Treatment Area[/caption]\r\n</div>\r\n','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:53:11','2019-06-08 06:53:11','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(519,8,'2019-06-08 06:54:35','2019-06-08 06:54:35','&nbsp;\r\n<h4>Honduras 2007</h4>\r\n&nbsp;\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\" width=\"225\" height=\"150\" class=\"size-full wp-image-444\" /> Attending A Noon Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_449\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\"  class=\"size-full wp-image-449\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_446\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\"  class=\"size-full wp-image-446\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n</div>\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_447\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg\" alt=\"Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School\" width=\"225\" height=\"150\" class=\"size-full wp-image-447\" /> Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_448\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg\" alt=\"Dr. Patterson Giving A Noon Time Lecture\" width=\"225\" height=\"150\" class=\"size-full wp-image-448\" /> Dr. Patterson Giving A Noon Time Lecture[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_445\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg\" alt=\"Dr.. Fields And The Owner Of A Local Restaurant\" width=\"225\" height=\"150\" class=\"size-full wp-image-445\" /> Dr.. Fields And The Owner Of A Local Restaurant[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_450\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-transport.jpg\" alt=\"Local Transport!\" width=\"225\" height=\"150\" class=\"size-full wp-image-450\" /> Local Transport![/caption]\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_451\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/One-of-the-treatment-rooms.jpg\" alt=\"One Of The Treatment Rooms\" width=\"225\" height=\"150\" class=\"size-full wp-image-451\" /> One Of The Treatment Rooms[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-4\">\r\n[caption id=\"attachment_452\" align=\"aligncenter\"  width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Our-make-shift-treatment-area.jpg\" alt=\"Our Make Shift Treatment Area\" width=\"225\" height=\"150\" class=\"size-full wp-image-452\" /> Our Make Shift Treatment Area[/caption]\r\n</div>\r\n','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:54:35','2019-06-08 06:54:35','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(520,8,'2019-06-08 06:55:13','2019-06-08 06:55:13','<h4>Prolotherapy for Chronic Shoulder Pain</h4>\r\n<strong>Wilbur - Shoulder(video here)</strong>\r\n\r\nIt\'s easy to take your own body for granted when your body is working well. But when a part of your body, such as your shoulder, begins to hurt or hurts for an extended period of time, you quickly realize how much you depend on your shoulders for reaching, raising your arm, lifting yourself up or even just opening a cupboard. That\'s why so many people with shoulder pain or injuries look to <strong>Prolotherapy for chronic shoulder pain</strong> treatment\r\n<h4>Causes of Shoulder Pain</h4>\r\nThe muscles and joints of the shoulder allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso and allow the arm to move a full 360°. This tremendous range of motion also makes the shoulder extremely unstable, and far more prone to dislocation and injury than other joints.\r\n\r\nBecause the rounded head or ball of the upper arm bone (humerus) is larger than the socket of the shoulder bone (scapula), this area is especially susceptible to injury. The shoulder joint consists of bones, muscles and ligaments that are all subject to stress and overuse.\r\n\r\nCommon causes of shoulder pain can be:\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation and attendant injury</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Adhesive capsulated (frozen shoulder)</li>\r\n 	<li>Fracture</li>\r\n 	<li>Poor posture.</li>\r\n</ul>\r\nBut the <strong>most common cause of chronic pain in the shoulder is arthritis</strong>. This can take many forms such as: osteoarthritis, rheumatoid, traumatic, and gouty arthritis.\r\n<h4>Which Kind of Shoulder Pain Do You Have?</h4>\r\nIf you are experiencing pain from a rotator cuff injury, you will feel a dull aching pain, which worsens with movement.  A rotator cuff injury includes any type of irritation or damage to your <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> muscles or tendons. Causes of a rotator cuff injury may include falling, lifting and repetitive arm activities — especially those done overhead.\r\n\r\n<strong>Shoulder tendonitis</strong> can produce symptoms including a slow onset of discomfort, pain in the upper third of your arm and difficulty sleeping on the side of that arm.\r\n\r\nRedness and swelling that is tender and warm to the touch can be caused by <strong>bursitis</strong>.\r\n\r\nMinor shoulder pain, ‘clicking’, ‘giving way’, or frozen shoulder, are symptoms of <strong>arthritis</strong>. Osteoarthritis can begin as early as thirty, but symptoms can appear later, as the condition progresses.\r\n\r\n<a class=\"buttonlink\" href=\"#\">  Schedule Your Appointment Today!</a>\r\n<h4>How Prolotherapy Is Used To Treat Chronic Shoulder Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Pain-Overview\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Shoulder Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic shoulder pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. By contrast, shoulder surgery requires you reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic shoulder pain? Would you like a <strong>second opinion before you have irreversible shoulder surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/Contact-Us\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel://1-310-627-2458\">(310) 627-2458</a>.\r\n\r\n<a class=\"buttonlink\" href=\"#\"> Schedule Your Appointment Today!</a>','Chronic Shoulder Pain','','inherit','closed','closed','','511-revision-v1','','','2019-06-08 06:55:13','2019-06-08 06:55:13','',511,'https://www.drfields.com/uncategorized/511-revision-v1/',0,'revision','',0),(521,8,'2019-06-08 06:56:55','2019-06-08 06:56:55','&nbsp;\r\n<h4>Honduras 2007</h4>\r\n&nbsp;\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-444\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\" width=\"225\" height=\"150\" /> Attending A Noon Lecture[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n<img class=\"size-full wp-image-449\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\" />\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n<img class=\"size-full wp-image-446\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\" />\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_447\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-447\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg\" alt=\"Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School\" width=\"225\" height=\"150\" /> Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_448\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-448\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg\" alt=\"Dr. Patterson Giving A Noon Time Lecture\" width=\"225\" height=\"150\" /> Dr. Patterson Giving A Noon Time Lecture[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_445\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-445\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg\" alt=\"Dr.. Fields And The Owner Of A Local Restaurant\" width=\"225\" height=\"150\" /> Dr.. Fields And The Owner Of A Local Restaurant[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_450\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-450\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-transport.jpg\" alt=\"Local Transport!\" width=\"225\" height=\"150\" /> Local Transport![/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_451\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-451\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/One-of-the-treatment-rooms.jpg\" alt=\"One Of The Treatment Rooms\" width=\"225\" height=\"150\" /> One Of The Treatment Rooms[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_452\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-452\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Our-make-shift-treatment-area.jpg\" alt=\"Our Make Shift Treatment Area\" width=\"225\" height=\"150\" /> Our Make Shift Treatment Area[/caption]\r\n\r\n</div>','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:56:55','2019-06-08 06:56:55','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(522,8,'2019-06-08 06:58:00','2019-06-08 06:58:00','&nbsp;\r\n<h4>Honduras 2007</h4>\r\n&nbsp;\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-444\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\" width=\"225\" height=\"150\" /> Attending A Noon Lecture[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_449\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\" width=\"225\" height=\"150\" class=\"size-full wp-image-449\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_446\" align=\"aligncenter\" width=\"225\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\" width=\"225\" height=\"150\" class=\"size-full wp-image-446\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_447\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-447\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg\" alt=\"Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School\" width=\"225\" height=\"150\" /> Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_448\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-448\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg\" alt=\"Dr. Patterson Giving A Noon Time Lecture\" width=\"225\" height=\"150\" /> Dr. Patterson Giving A Noon Time Lecture[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_445\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-445\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg\" alt=\"Dr.. Fields And The Owner Of A Local Restaurant\" width=\"225\" height=\"150\" /> Dr.. Fields And The Owner Of A Local Restaurant[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_450\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-450\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-transport.jpg\" alt=\"Local Transport!\" width=\"225\" height=\"150\" /> Local Transport![/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_451\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-451\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/One-of-the-treatment-rooms.jpg\" alt=\"One Of The Treatment Rooms\" width=\"225\" height=\"150\" /> One Of The Treatment Rooms[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_452\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-452\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Our-make-shift-treatment-area.jpg\" alt=\"Our Make Shift Treatment Area\" width=\"225\" height=\"150\" /> Our Make Shift Treatment Area[/caption]\r\n\r\n</div>','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2019-06-08 06:58:00','2019-06-08 06:58:00','',453,'https://www.drfields.com/uncategorized/453-revision-v1/',0,'revision','',0),(523,8,'2019-06-08 06:59:31','2019-06-08 06:59:31','&nbsp;\r\n\r\n<h4>Honduras 2009</h4>\r\n\r\n<div class=\"col-md-5\">\r\n</div>\r\n<div class=\"col-md-5\">\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n</div>\r\n<div class=\"col-md-5\">\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n</div>\r\n<div class=\"col-md-5\">\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n</div>\r\n<div class=\"col-md-5\">\r\n</div>\r\n\r\n\r\n<div class=\"col-md-5\">\r\n</div>\r\n<div class=\"col-md-5\">\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n</div>\r\n<div class=\"col-md-5\">\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n</div>\r\n<div class=\"col-md-5\">\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n</div>\r\n<div class=\"col-md-5\">\r\n</div>','Honduras 2009','','inherit','closed','closed','','504-revision-v1','','','2019-06-08 06:59:31','2019-06-08 06:59:31','',504,'https://www.drfields.com/uncategorized/504-revision-v1/',0,'revision','',0),(524,8,'2019-06-08 07:05:24','2019-06-08 07:05:24','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Jennifer - Elbow</strong></div>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. But the ligaments or tendons are usually injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n<h3><strong>Ligament Injuries in the Elbow</strong></h3>\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. The <strong>extensor tendons</strong> move the wrist up, and in tennis elbow, these can be damaged. In golfer’s elbow, it is the <strong>flexor tendons</strong> that get injured, as they move the wrist down. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n<h3><strong>The Most Common Elbow Injuries </strong></h3>\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder ligaments, tendons, or joints. And this leads to gentle, local inflammation in that specific area that boosts healing. Also, the localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. And new collagen shrinks as it matures and tightens the ligaments that were injected, making them stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. And Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Because movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? And are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy for Elbow Pain','','publish','open','closed','','prolotherapy-for-elbow-pain','','','2021-01-26 23:30:07','2021-01-26 23:30:07','',0,'https://www.drfields.com/?p=524',0,'post','',0),(525,8,'2019-06-14 08:00:15','2019-06-14 08:00:15','&nbsp;\n\n<h4>Honduras 2009</h4>\n\n<table class=\"resptable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" >\n<tbody>\n<tr>\n<td>[caption id=\"attachment_488\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-and-Matt.jpg\" alt=\"Dr&#039;s Peter And Matt\" width=\"255\" height=\"191\" class=\"size-full wp-image-488\" /> Dr. Fields instructs Dr. Matt[/caption]\n</td>\n<td>[caption id=\"attachment_489\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F.-Lecturing-1.jpg\" alt=\"Dr F. Lecturing 1\" width=\"255\" height=\"191\" class=\"size-full wp-image-489\" /> Dr. Fields lecturing[/caption]\n</td>\n</tr>\n<tr>\n<td>[caption id=\"attachment_490\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1562.jpg\" alt=\"Dscn1562\" width=\"255\" height=\"192\" class=\"size-full wp-image-490\" /> Dr\'s Bill, Saul and Peter[/caption]\n</td>\n<td>[caption id=\"attachment_491\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1727.jpg\" alt=\"Dscn1727\" width=\"255\" height=\"191\" class=\"size-full wp-image-491\" /> Dr. Fields and student Dr. Laurent[/caption]\n</td>\n</tr>\n<tr>\n<td>[caption id=\"attachment_492\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1739.jpg\" alt=\"Dscn1739\" width=\"255\" height=\"191\" class=\"size-full wp-image-492\" /> Dr. Fields and the La Ceiba Red Cross Staff[/caption]\n</td>\n<td>[caption id=\"attachment_493\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1760.jpg\" alt=\"Dscn1760\" width=\"255\" height=\"191\" class=\"size-full wp-image-493\" /> Dr\'s Saul, Matt, Laurent and Dr. Pedro Campos![/caption]\n</td>\n</tr>\n<tr>\n<td>[caption id=\"attachment_494\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1761.jpg\" alt=\"Dscn1761\" width=\"255\" height=\"191\" class=\"size-full wp-image-494\" /> Dr\'s Sandra and Josette- our Honduran Docs[/caption]\n</td>\n<td>[caption id=\"attachment_495\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1790.jpg\" alt=\"Dscn1790\" width=\"255\" height=\"191\" class=\"size-full wp-image-495\" /> Dr\'s Peter, Deb, Saul, Red Cross aid with a pt and her child[/caption]\n</td>\n</tr>\n<tr>\n<td>[caption id=\"attachment_496\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1796.jpg\" alt=\"Dscn1796\" width=\"255\" height=\"191\" class=\"size-full wp-image-496\" /> The La Ceiba team[/caption]\n</td>\n<td>[caption id=\"attachment_497\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-adjusts-a-patient.jpg\" alt=\"Dr Fields Adjusts A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-497\" /> Dr. Fields adjusts a patient while other<br />doctors obserserve[/caption]\n</td>\n</tr>\n<tr>\n<td>[caption id=\"attachment_498\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-instructs.jpg\" alt=\"Dr Fields Instructs\" width=\"255\" height=\"191\" class=\"size-full wp-image-498\" /> Dr. Fields Instructs[/caption]\n</td>\n<td>[caption id=\"attachment_499\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-Bill-Joe-and-patient.jpg\" alt=\"Dr&#039;s Peter, Bill, Joe And Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-499\" /> Dr\'s Peter, Bill, Joe and patient[/caption]\n</td>\n</tr>\n<tr>\n<td>[caption id=\"attachment_500\" align=\"aligncenter\" width=\"217\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-giving-a-lecture.jpg\" alt=\"Dr Fields Giving A Lecture\" width=\"217\" height=\"255\" class=\"size-full wp-image-500\" /> Dr. Fields giving a lecture[/caption]\n</td>\n<td>[caption id=\"attachment_501\" align=\"aligncenter\" width=\"200\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F-and-skeleton.jpg\" alt=\"Dr F And Skeleton\" width=\"200\" height=\"255\" class=\"size-full wp-image-501\" /> Dr. Fields and Dr. Bones[/caption]\n</td>\n</tr>\n<tr>\n<td>[caption id=\"attachment_502\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dinner-at-the-hotel.jpg\" alt=\"Dinner At The Hotel\" width=\"255\" height=\"191\" class=\"size-full wp-image-502\" /> Dinner at the hotel[/caption]\n</td>\n<td>[caption id=\"attachment_503\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/horse.jpg\" alt=\"Horse\" width=\"255\" height=\"202\" class=\"size-full wp-image-503\" /> Local transport[/caption]\n</td>\n</tr>\n<tr>\n<td>\n</tbody>\n','Honduras 2009','','inherit','closed','closed','','504-autosave-v1','','','2019-06-14 08:00:15','2019-06-14 08:00:15','',504,'https://www.drfields.com/uncategorized/504-autosave-v1/',0,'revision','',0),(526,8,'2019-06-08 07:02:40','2019-06-08 07:02:40','&nbsp;\r\n\r\n<h4>Honduras 2009</h4>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_488\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-and-Matt.jpg\" alt=\"Dr&#039;s Peter And Matt\" width=\"255\" height=\"191\" class=\"size-full wp-image-488\" /> Dr\'s Peter And Matt[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_489\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F.-Lecturing-1.jpg\" alt=\"Dr F. Lecturing 1\" width=\"255\" height=\"191\" class=\"size-full wp-image-489\" /> Dr F. Lecturing 1[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_491\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1727.jpg\" alt=\"Dscn1727\" width=\"255\" height=\"191\" class=\"size-full wp-image-491\" /> Dscn1727[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_490\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1562.jpg\" alt=\"Dscn1562\" width=\"255\" height=\"192\" class=\"size-full wp-image-490\" /> Dscn1562[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_492\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1739.jpg\" alt=\"Dscn1739\" width=\"255\" height=\"191\" class=\"size-full wp-image-492\" /> Dscn1739[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_494\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1761.jpg\" alt=\"Dscn1761\" width=\"255\" height=\"191\" class=\"size-full wp-image-494\" /> Dscn1761[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_493\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1760.jpg\" alt=\"Dscn1760\" width=\"255\" height=\"191\" class=\"size-full wp-image-493\" /> Dscn1760[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_495\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1790.jpg\" alt=\"Dscn1790\" width=\"255\" height=\"191\" class=\"size-full wp-image-495\" /> Dscn1790[/caption]\r\n</div>\r\n\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_497\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-adjusts-a-patient.jpg\" alt=\"Dr Fields Adjusts A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-497\" /> Dr Fields Adjusts A Patient[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_496\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1796.jpg\" alt=\"Dscn1796\" width=\"255\" height=\"191\" class=\"size-full wp-image-496\" /> Dscn1796[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_500\" align=\"aligncenter\" width=\"217\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-giving-a-lecture.jpg\" alt=\"Dr Fields Giving A Lecture\" width=\"217\" height=\"255\" class=\"size-full wp-image-500\" /> Dr Fields Giving A Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_499\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-Bill-Joe-and-patient.jpg\" alt=\"Dr&#039;s Peter, Bill, Joe And Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-499\" /> Dr\'s Peter, Bill, Joe And Patient[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_498\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-instructs.jpg\" alt=\"Dr Fields Instructs\" width=\"255\" height=\"191\" class=\"size-full wp-image-498\" /> Dr Fields Instructs[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_502\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dinner-at-the-hotel.jpg\" alt=\"Dinner At The Hotel\" width=\"255\" height=\"191\" class=\"size-full wp-image-502\" /> Dinner At The Hotel[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_501\" align=\"aligncenter\" width=\"200\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F-and-skeleton.jpg\" alt=\"Dr F And Skeleton\" width=\"200\" height=\"255\" class=\"size-full wp-image-501\" /> Dr F And Skeleton[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_503\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/horse.jpg\" alt=\"Horse\" width=\"255\" height=\"202\" class=\"size-full wp-image-503\" /> Horse[/caption]\r\n</div>','Honduras 2009','','inherit','closed','closed','','504-revision-v1','','','2019-06-08 07:02:40','2019-06-08 07:02:40','',504,'https://www.drfields.com/uncategorized/504-revision-v1/',0,'revision','',0),(527,8,'2019-06-08 07:05:24','2019-06-08 07:05:24','<strong>Jennifer - Elbow (video here)</strong>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. It is usually the ligaments and tendons that are injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n\r\n<strong>Ligament Injuries in the Elbow</strong>\r\n\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy/Prolotherapy-FAQ\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. In tennis elbow it is the <strong>extensor tendons</strong> which move the wrist up, that can be damaged. In golfer’s elbow it is the <strong>flexor tendons</strong>, that move the wrist down, that get injured. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n<strong>The Most Common Elbow Injuries </strong>\r\n\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Pain-Overview\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? Are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/Contact-Us\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel://1-310-956-0569\">(310) 956-0569</a>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n','Chronic Elbow Pain','','inherit','closed','closed','','524-revision-v1','','','2019-06-08 07:05:24','2019-06-08 07:05:24','',524,'https://www.drfields.com/uncategorized/524-revision-v1/',0,'revision','',0),(528,8,'2019-06-08 07:13:21','2019-06-08 07:13:21','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Prolotherapy Hip Injury\'\"]\r\n<strong>Chris - Hip</strong></div>\r\n<h4>Prolotherapy for Hip and Groin Injuries</h4>\r\nHip and groin injuries can quickly become debilitating and escalate into athletic career ending injuries. MRI and arthroscopic surgery are routinely recommended for patients. Other patients may spend months or longer on pain medication, while undergoing rounds of physical therapy. <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> for hip and groin injuries offers a successful alternative to pain medication and surgery. And OrthoRegen<sup>®</sup> offers comprehensive treatment for your hip injuries and groin pain without pain medication, surgery or extended time away from the sport you love.\r\n<h4>Who Is Prolotherapy for Hip Injuries For?</h4>\r\nOur patients include Olympic hopefuls to weekend warriors. Dr. Peter Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an Ironman Triathlete. So he understands the concerns of injured athletes, hoping to return quickly to their chosen sport. His clinical experience has shown that Prolotherapy hip treatment is the preferred way to treat hip injuries and groin pain for optimal long term results. We can get you back into your sport without surgery, without medication, and without extended time away from your sport.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment are:</strong>\r\n<ul>\r\n 	<li>Acetabular labrum tear</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Femoroacetabular impingement</li>\r\n 	<li>Groin pain</li>\r\n 	<li>Instability of the hip and groin</li>\r\n 	<li>Hip impingement</li>\r\n 	<li>Hip pain</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Post pelvic fusion pain</li>\r\n 	<li>Post-surgical hip pain</li>\r\n 	<li>Pubic symphysis injury</li>\r\n 	<li>Pubis pain</li>\r\n 	<li>Pupalgia</li>\r\n 	<li>Snapping hip syndrome</li>\r\n 	<li>Torn Labrum</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nPeter A. Fields, MD,DC and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy hip and groin treatments, as well as PRP Prolotherapy, and Stem Cell Prolotherapy. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>','Prolotherapy for Hip and Groin Injuries','','publish','open','closed','','prolotherapy-for-hip-injuries','','','2021-01-26 23:38:11','2021-01-26 23:38:11','',0,'https://www.drfields.com/?p=528',0,'post','',0),(529,8,'2019-06-08 07:08:58','2019-06-08 07:08:58','&nbsp;\r\n\r\n<h4>Honduras 2009</h4>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_488\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-and-Matt.jpg\" alt=\"Dr&#039;s Peter And Matt\" width=\"255\" height=\"191\" class=\"size-full wp-image-488\" /><strong> Dr\'s Peter And Matt</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_489\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F.-Lecturing-1.jpg\" alt=\"Dr F. Lecturing 1\" width=\"255\" height=\"191\" class=\"size-full wp-image-489\" /> <strong>Dr F. Lecturing</strong> [/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_491\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1727.jpg\" alt=\"Dscn1727\" width=\"255\" height=\"191\" class=\"size-full wp-image-491\" /> <strong>Dr\'s Bill, Saul and Peter</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_490\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1562.jpg\" alt=\"Dscn1562\" width=\"255\" height=\"192\" class=\"size-full wp-image-490\" /> <strong> Dr. Fields and his student Dr. Laurent</strong>[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_492\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1739.jpg\" alt=\"Dscn1739\" width=\"255\" height=\"191\" class=\"size-full wp-image-492\" /><strong>Dr. Fields and the La Ceiba Red Cross Staff</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_494\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1761.jpg\" alt=\"Dscn1761\" width=\"255\" height=\"191\" class=\"size-full wp-image-494\" /> Dr\'s Saul, Matt, Laurent and Dr. Pedro Campos![/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_493\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1760.jpg\" alt=\"Dscn1760\" width=\"255\" height=\"191\" class=\"size-full wp-image-493\" /> Dr\'s Sandra and Josette- our Honduran Docs[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_495\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1790.jpg\" alt=\"Dscn1790\" width=\"255\" height=\"191\" class=\"size-full wp-image-495\" /> Dr\'s Peter, Deb, Saul, Red Cross aid with a pt\r\nand her child[/caption]\r\n</div>\r\n\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_497\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-adjusts-a-patient.jpg\" alt=\"Dr Fields Adjusts A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-497\" />The La Ceiba team[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_496\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1796.jpg\" alt=\"Dscn1796\" width=\"255\" height=\"191\" class=\"size-full wp-image-496\" /> Dr. Fields Instructs[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_500\" align=\"aligncenter\" width=\"217\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-giving-a-lecture.jpg\" alt=\"Dr Fields Giving A Lecture\" width=\"217\" height=\"255\" class=\"size-full wp-image-500\" /> Dr Fields Giving A Lecture[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_499\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-Bill-Joe-and-patient.jpg\" alt=\"Dr&#039;s Peter, Bill, Joe And Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-499\" /> Dr\'s Peter, Bill, Joe and patient[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_498\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-instructs.jpg\" alt=\"Dr Fields Instructs\" width=\"255\" height=\"191\" class=\"size-full wp-image-498\" /> Dr Fields Instructs[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_502\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dinner-at-the-hotel.jpg\" alt=\"Dinner At The Hotel\" width=\"255\" height=\"191\" class=\"size-full wp-image-502\" /> Dinner At The Hotel[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_501\" align=\"aligncenter\" width=\"200\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F-and-skeleton.jpg\" alt=\"Dr F And Skeleton\" width=\"200\" height=\"255\" class=\"size-full wp-image-501\" /> Dr F And Skeleton[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_503\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/horse.jpg\" alt=\"Horse\" width=\"255\" height=\"202\" class=\"size-full wp-image-503\" /> Horse[/caption]\r\n</div>','Honduras 2009','','inherit','closed','closed','','504-revision-v1','','','2019-06-08 07:08:58','2019-06-08 07:08:58','',504,'https://www.drfields.com/uncategorized/504-revision-v1/',0,'revision','',0),(530,8,'2019-06-08 07:13:21','2019-06-08 07:13:21','<strong>Chris - Hip (video here)</strong>\r\n<h4>Prolotherapy Hip and Groin Injury Treatment</h4>\r\nHip and groin injuries can quickly become debilitating and escalate into athletic career ending injuries. MRI and arthroscopic surgery are routinely recommended for patients. Other patients may spend months or longer on pain medication, while undergoing rounds of physical therapy. <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> hip and groin treatment offers a successful alternative to pain medication and surgery, for hip and groin injuries. OrthoRegen offers comprehensive treatment for your hip injuries and groin pain without pain medication, surgery or extended time away from the sport you love.\r\n\r\n<h4>Who Is Prolotherapy Hip Treatment For?</h4>\r\nOur patients include Olympic hopefuls to weekend warriors. Dr. Peter Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, is an Ironman Triathlete. He understands the concerns of injured athletes, hoping to return quickly to their chosen sport. His clinical experience has shown that Prolotherapy hip treatment is the preferred way to treat hip injuries and groin pain for optimal long term results. We can get you back into your sport without surgery, without medication, and without extended time away from your sport.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> hip and groin treatment are:</strong>\r\n<ul>\r\n 	<li>Acetabular labrum tear</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Femoroacetabular impingement</li>\r\n 	<li>Groin pain</li>\r\n 	<li>Hip instability</li>\r\n 	<li>Hip impingement</li>\r\n 	<li>Hip pain</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Post pelvic fusion pain</li>\r\n 	<li>Post-surgical hip pain</li>\r\n 	<li>Pubic symphysis injury</li>\r\n 	<li>Pubis pain</li>\r\n 	<li>Pupalgia</li>\r\n 	<li>Snapping hip syndrome</li>\r\n 	<li>Torn Labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy hip treatment, as well as PRP Prolotherapy and Stem Cell Prolotherapy. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-310-340-7407\">(310) 340-7407</a>\r\n\r\n<strong>Sports Injuries</strong>','Hip Injury Treatment','','inherit','closed','closed','','528-revision-v1','','','2019-06-08 07:13:21','2019-06-08 07:13:21','',528,'https://www.drfields.com/uncategorized/528-revision-v1/',0,'revision','',0),(531,8,'2019-06-08 07:13:30','2019-06-08 07:13:30','&nbsp;\r\n\r\n<h4>Honduras 2009</h4>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_488\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-and-Matt.jpg\" alt=\"Dr&#039;s Peter And Matt\" width=\"255\" height=\"191\" class=\"size-full wp-image-488\" /><strong> Dr\'s Peter And Matt</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_489\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F.-Lecturing-1.jpg\" alt=\"Dr F. Lecturing 1\" width=\"255\" height=\"191\" class=\"size-full wp-image-489\" /> <strong>Dr F. Lecturing</strong> [/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_491\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1727.jpg\" alt=\"Dscn1727\" width=\"255\" height=\"191\" class=\"size-full wp-image-491\" /> <strong> Dr. Fields and his student Dr. Laurent</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_490\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1562.jpg\" alt=\"Dscn1562\" width=\"255\" height=\"192\" class=\"size-full wp-image-490\" /> <strong>Dr\'s Bill, Saul and Peter</strong>[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_492\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1739.jpg\" alt=\"Dscn1739\" width=\"255\" height=\"191\" class=\"size-full wp-image-492\" /><strong>Dr. Fields and the La Ceiba Red Cross Staff</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_494\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1761.jpg\" alt=\"Dscn1761\" width=\"255\" height=\"191\" class=\"size-full wp-image-494\" /><strong> Dr\'s Saul, Matt, Laurent and Dr. Pedro Campos!</strong>[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_493\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1760.jpg\" alt=\"Dscn1760\" width=\"255\" height=\"191\" class=\"size-full wp-image-493\" /><strong> Dr\'s Sandra and Josette- our Honduran Docs</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_495\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1790.jpg\" alt=\"Dscn1790\" width=\"255\" height=\"191\" class=\"size-full wp-image-495\" /></strong> Dr\'s Peter, Deb, Saul, Red Cross aid with a pt and her child</strong>[/caption]\r\n</div>\r\n\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_497\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-adjusts-a-patient.jpg\" alt=\"Dr Fields Adjusts A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-497\" /><strong>The La Ceiba team</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_496\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1796.jpg\" alt=\"Dscn1796\" width=\"255\" height=\"191\" class=\"size-full wp-image-496\" /><strong>Dr. Fields adjusts a patient while other doctors obserserve</strong>[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_500\" align=\"aligncenter\" width=\"217\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-giving-a-lecture.jpg\" alt=\"Dr Fields Giving A Lecture\" width=\"217\" height=\"255\" class=\"size-full wp-image-500\" /><strong>Dr. Fields Instructs</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_499\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-Bill-Joe-and-patient.jpg\" alt=\"Dr&#039;s Peter, Bill, Joe And Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-499\" /><strong>Dr\'s Peter, Bill, Joe and patient</strong>[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_498\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-instructs.jpg\" alt=\"Dr Fields Instructs\" width=\"255\" height=\"191\" class=\"size-full wp-image-498\" /><strong>Dr. Fields giving a lecture</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_502\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dinner-at-the-hotel.jpg\" alt=\"Dinner At The Hotel\" width=\"255\" height=\"191\" class=\"size-full wp-image-502\" /><strong>Dr. Fields and Dr. Bones</strong>[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_501\" align=\"aligncenter\" width=\"200\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F-and-skeleton.jpg\" alt=\"Dr F And Skeleton\" width=\"200\" height=\"255\" class=\"size-full wp-image-501\" /><strong>Dinner at the hotel</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_503\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/horse.jpg\" alt=\"Horse\" width=\"255\" height=\"202\" class=\"size-full wp-image-503\" /><strong>Local transport</strong>[/caption]\r\n</div>','Honduras 2009','','inherit','closed','closed','','504-revision-v1','','','2019-06-08 07:13:30','2019-06-08 07:13:30','',504,'https://www.drfields.com/uncategorized/504-revision-v1/',0,'revision','',0),(532,8,'2019-06-08 07:14:30','2019-06-08 07:14:30','&nbsp;\r\n\r\n<h4>Honduras 2009</h4>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_488\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-and-Matt.jpg\" alt=\"Dr&#039;s Peter And Matt\" width=\"255\" height=\"191\" class=\"size-full wp-image-488\" /><strong> Dr\'s Peter And Matt</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_489\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F.-Lecturing-1.jpg\" alt=\"Dr F. Lecturing 1\" width=\"255\" height=\"191\" class=\"size-full wp-image-489\" /> <strong>Dr F. Lecturing</strong> [/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_491\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1727.jpg\" alt=\"Dscn1727\" width=\"255\" height=\"191\" class=\"size-full wp-image-491\" /> <strong> Dr. Fields and student Dr. Laurent</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_490\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1562.jpg\" alt=\"Dscn1562\" width=\"255\" height=\"192\" class=\"size-full wp-image-490\" /> <strong>Dr\'s Bill, Saul and Peter</strong>[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_492\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1739.jpg\" alt=\"Dscn1739\" width=\"255\" height=\"191\" class=\"size-full wp-image-492\" /><strong>Dr. Fields and the La Ceiba Red Cross Staff</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_494\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1761.jpg\" alt=\"Dscn1761\" width=\"255\" height=\"191\" class=\"size-full wp-image-494\" /><strong> Dr\'s Saul, Matt, Laurent and Dr. Pedro Campos!</strong>[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_493\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1760.jpg\" alt=\"Dscn1760\" width=\"255\" height=\"191\" class=\"size-full wp-image-493\" /><strong> Dr\'s Sandra and Josette- our Honduran Docs</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_495\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1790.jpg\" alt=\"Dscn1790\" width=\"255\" height=\"191\" class=\"size-full wp-image-495\" /></strong> Dr\'s Peter, Deb, Saul, Red Cross aid with a pt and her child</strong>[/caption]\r\n</div>\r\n\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_497\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-adjusts-a-patient.jpg\" alt=\"Dr Fields Adjusts A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-497\" /><strong>The La Ceiba team</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_496\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1796.jpg\" alt=\"Dscn1796\" width=\"255\" height=\"191\" class=\"size-full wp-image-496\" /><strong>Dr. Fields adjusts a patient while other doctors obserserve</strong>[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_500\" align=\"aligncenter\" width=\"217\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-giving-a-lecture.jpg\" alt=\"Dr Fields Giving A Lecture\" width=\"217\" height=\"255\" class=\"size-full wp-image-500\" /><strong>Dr. Fields Instructs</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_499\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-Bill-Joe-and-patient.jpg\" alt=\"Dr&#039;s Peter, Bill, Joe And Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-499\" /><strong>Dr\'s Peter, Bill, Joe and patient</strong>[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_498\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-instructs.jpg\" alt=\"Dr Fields Instructs\" width=\"255\" height=\"191\" class=\"size-full wp-image-498\" /><strong>Dr. Fields giving a lecture</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_502\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dinner-at-the-hotel.jpg\" alt=\"Dinner At The Hotel\" width=\"255\" height=\"191\" class=\"size-full wp-image-502\" /><strong>Dr. Fields and Dr. Bones</strong>[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_501\" align=\"aligncenter\" width=\"200\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F-and-skeleton.jpg\" alt=\"Dr F And Skeleton\" width=\"200\" height=\"255\" class=\"size-full wp-image-501\" /><strong>Dinner at the hotel</strong>[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_503\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/horse.jpg\" alt=\"Horse\" width=\"255\" height=\"202\" class=\"size-full wp-image-503\" /><strong>Local transport</strong>[/caption]\r\n</div>','Honduras 2009','','inherit','closed','closed','','504-revision-v1','','','2019-06-08 07:14:30','2019-06-08 07:14:30','',504,'https://www.drfields.com/uncategorized/504-revision-v1/',0,'revision','',0),(533,8,'2019-06-08 07:21:58','2019-06-08 07:21:58','<div>\r\n<h2>Regenerative Orthopedics for Knee Injuries</h2>\r\n</div>\r\n<div>Knee injuries are one of the most common problems we treat at OrthoRegen.<sup>®.  </sup></div>\r\n<div>And we successfully treat knee injuries with Regenerative Orthopedics, which include Stem Cell Therapy, Platelet Rich Plasma (PRP), and Prolotherapy.  Which type of Regenerative Orthopedic treatment is best for the knee?  That would depend on your particular injury.  Below are a few videos where our patients tell you a bit about their injury and how they did after treatment:</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong></div>\r\n<h3>The Knee</h3>\r\nThe knee joint is one of the most crucial joints in the body, and knee function is vital to carrying out everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone).  The patella or kneecap sits to the front of these bones.\r\n<h4><em>Knee Ligaments</em></h4>\r\nThe four main ligaments connect the femur and tibia at the knee: the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the medial (MCL) and lateral (LCL) collateral ligaments (on either side of the joint).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><em>Cartilage and Other Joint Structures</em></h4>\r\nThere are other essential structures in the knee, including articular cartilage.  The cartilage protects the ends of both bones and the back of the patella, allowing for smooth movement.\r\n\r\nThe meniscus is another knee structure.  It consists of two semicircular discs providing cushioning and support for the bones.\r\n\r\nOur knees are incredibly vulnerable to injury.  Any of these structures, or a combination of them, can be involved when the knee is injured.  And when knee injuries do occur, we recommend <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair the damaged tissue, ligaments, tendons, and other structures and get you back quickly to the activities you love.\r\n<h3>How Regenerative Orthopedics Works to Treat the Knee</h3>\r\n[caption id=\"attachment_4925\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4925\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-stem-cells-500x375.jpeg\" alt=\"Knee Stem Cells\" width=\"500\" height=\"375\" /> <strong>               <em>Regenerative Orthopedics for Knee Injuries</em></strong>[/caption]\r\n\r\nRegenerative Orthopedics are innovative therapies that treat the knee by stimulating the body\'s healing cascade to repair damaged tissue.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> is one type of regenerative treatment that is effective for knee injuries.  \"Prolo\" comes from the word proliferate.  Therefore, Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the soft tissue, such as the ligaments and tendons.  The proliferation of the fibroblasts encourages the formation of new, robust tissue.  Why is this important?  Because this process is precisely what is needed to repair ligament, tendon, and meniscus injuries.\r\n\r\nThe clinician may recommend platelet Rich Plasma (PRP) in some knee injury cases.  The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Specific injuries will require more potent means for healing and regeneration.  And when necessary, these concentrated platelets provide that means because they contain large reservoirs of growth factors.  Plus, they have the potential to significantly accelerate the normal healing process, naturally.\r\n<h3>Stem Cell Therapy</h3>\r\nStem Cell Treatments for joints are an excellent alternative for people who have been told they need joint replacement surgery.  At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Treatments</a>.  The treatment is an effective non-surgical alternative that has a great chance of helping you to <em>Avoid Joint Replacement Surgery</em>.\r\n\r\nThese Regenerative Orthopedic treatments are exciting and new cutting-edge therapies that can stimulate knee repair by regenerating weakened, torn, or damaged ligaments, tendons, and the menisci of the knee joint.\r\n\r\nDon\'t wait!  Contact us soon, so you can avoid surgery too, by receiving non-surgical treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Are You A Candidate for Regenerative Orthopedics for Your Knee Injuries?</h4>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>.  To see if you are a candidate for one of our Regenerative Orthopedic treatments or a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced?  Check out more testimonials on this page and our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, DC is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>.  For over 25 years, Dr. Fields has been active as a triathlete and has completed numerous Ironman competitions.  His experience as an athlete allows him to understand the demands on the physical body, the potential for injury, and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nOur goal at OrthoRegen<sup>®</sup> is to help you improve your health, recover quickly, and get back to doing what you love to do!\r\n<h3><strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Regenerative Orthopedics include:</strong></h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Knee popping</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Pain after Knee Replacement</a></li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\r\n 	<li>Ligament sprain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Regenerative Orthopedics for Knee Injuries','','publish','open','closed','','knee-injuries','','','2022-01-06 02:22:32','2022-01-06 02:22:32','',0,'https://www.drfields.com/?p=533',0,'post','',0),(534,8,'2019-06-08 07:21:58','2019-06-08 07:21:58','<strong>Christa - Knee (video here)</strong>\r\n<strong>Adam - Knee (video here)</strong>\r\n<h4>Prolotherapy Knee Treatment</h4>\r\nKnee injuries are one of the most common problems we treat with Prolotherapy knee treatment at OrthoRegen. The knee joint is one of the most crucial joints in the body. Normal knee function is vital to involvement in everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\r\n\r\nThere are also two forms of cartilage in the knee. Articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement, and the cartilage meniscus which is two semicircular discs providing cushioning and support for the bones. The knee is extremely vulnerable to injury in one or a combination of these elements. In the case of knee injury, we recommend our <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> knee treatment to strengthen and repair damaged tissue, ligaments and tendons.\r\n<h4>How Prolotherapy Knee Treatment Works</h4>\r\nOur Prolotherapy knee treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word proliferate. Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment for your knee injuries with comprehensive Prolotherapy at OrthoRegen.\r\n\r\n<a class=\"buttonlink\" href=\"#\">  Schedule Your Appointment Today!</a>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-310-776-6154\">(310) 776-6154</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<strong>Sports Injuries</strong>\r\n\r\n<img class=\"alignleft\" title=\"Knee Injuries\" src=\"https://www.drfields.com/portals/0/images/Knee-Small.jpg\" alt=\"Knee Injuries\" />Dr. Peter A. Fields is <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>. For over 25 years Dr. Fields has been active in the sport of Triathlon. In November 2012 he completed his second Ironman Triathlon, beating his time by 14 minutes. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nContact us to see if you are a candidate for <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\r\n\r\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>ACL tear Anterior Cruciate Ligament injury</li>\r\n 	<li>Arthritis of the knee</li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li>Chondromalacia patellae</li>\r\n 	<li>Complex meniscus tear</li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Knee pain after surgery</li>\r\n 	<li>Knee popping</li>\r\n 	<li>Knee replacement pain</li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li>Ligament laxity</li>\r\n 	<li>Ligament sprain</li>\r\n 	<li>Ligament tear</li>\r\n 	<li>Medial Collateral Ligament (MCL) injury</li>\r\n 	<li>Meniscus tear</li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li>Patellofemoral syndrome</li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li>Runners knee</li>\r\n 	<li>Tendinosis</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"#\"> Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-revision-v1','','','2019-06-08 07:21:58','2019-06-08 07:21:58','',533,'https://www.drfields.com/uncategorized/533-revision-v1/',0,'revision','',0),(535,8,'2019-06-14 06:53:02','2019-06-14 06:53:02','<div class=\"youtube-click-div video_left\">\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\n<strong>Christa - Knee</strong>\n</div>\n\n<div class=\"youtube-click-div video_left\">\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\n<strong>Adam - Knee </strong>\n</div>\n\n<h4>Prolotherapy Knee Treatment</h4>\nKnee injuries are one of the most common problems we treat with Prolotherapy knee treatment at OrthoRegen. The knee joint is one of the most crucial joints in the body. Normal knee function is vital to involvement in everyday activities.\n\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\n\nThere are also two forms of cartilage in the knee. Articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement, and the cartilage meniscus which is two semicircular discs providing cushioning and support for the bones. The knee is extremely vulnerable to injury in one or a combination of these elements. In the case of knee injury, we recommend our <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> knee treatment to strengthen and repair damaged tissue, ligaments and tendons.\n\n<h4>How Prolotherapy Knee Treatment Works</h4>\nOur Prolotherapy knee treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word proliferate. Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment for your knee injuries with comprehensive Prolotherapy at OrthoRegen.\n\n<a class=\"buttonlink\" href=\"http:/dentalimplantsmalibu.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<h4>Are You A Candidate for Prolotherapy?</h4>\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13107766154\">(310) 776-6154</a>.\n\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Knee-Testimonials\">Testimonials page</a>.\n\n\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" class=\"alignright size-full wp-image-1307\" />Dr. Peter A. Fields is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>. For over 25 years Dr. Fields has been active in the sport of Triathlon. In November 2012 he completed his second Ironman Triathlon, beating his time by 14 minutes. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\n\nContact us to see if you are a candidate for <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\n\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\n<ul>\n 	<li>ACL tear Anterior Cruciate Ligament injury</li>\n 	<li>Arthritis of the knee</li>\n 	<li>Breaststrokers knee</li>\n 	<li>Bucket handle tear of the meniscus</li>\n 	<li>Cartilage lesion</li>\n 	<li>Chondromalacia patellae</li>\n 	<li>Complex meniscus tear</li>\n 	<li>Flap tear</li>\n 	<li>Horizontal tear</li>\n 	<li>Jumpers knee</li>\n 	<li>Knee instability</li>\n 	<li>Knee pain after surgery</li>\n 	<li>Knee popping</li>\n 	<li>Knee replacement pain</li>\n 	<li>Knee stiffness</li>\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\n 	<li>Ligament laxity</li>\n 	<li>Ligament sprain</li>\n 	<li>Ligament tear</li>\n 	<li>Medial Collateral Ligament (MCL) injury</li>\n 	<li>Meniscus tear</li>\n 	<li>Oblique meniscus tear</li>\n 	<li>Overuse injuries</li>\n 	<li>Parrot beak tear</li>\n 	<li>Patellar tracking</li>\n 	<li>Patellofemoral syndrome</li>\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\n 	<li>Post-surgical knee pain</li>\n 	<li>Radial meniscus tear</li>\n 	<li>Runners knee</li>\n 	<li>Tendinosis</li>\n</ul>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-autosave-v1','','','2019-06-14 06:53:02','2019-06-14 06:53:02','',533,'https://www.drfields.com/uncategorized/533-autosave-v1/',0,'revision','',0),(536,8,'2019-06-08 07:28:00','2019-06-08 07:28:00','<h1>Neck Injury Treatments</h1>\r\n<div></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong></div>\r\n<h4>Regenerative Orthopedic Neck Treatments for Pain and Headaches</h4>\r\nOur Regenerative Orthopedic neck treatments, such as Prolotherapy, can help people like you, with head and neck pain, get your life back. Is neck pain keeping you from enjoying life as you would like? Whether you are an athlete with an injury, or simply an individual suffering from neck pain, we would love to help!\r\n\r\nIn cases of trauma, a hit to the head or neck can stretch and injure the ligaments in the neck.  Ligaments are what connect bone to bone. They help to stabilize the vertebrae. When injured, they become somewhat \"loose,\" similar to a stretched-out rubber band, and this can lead to neck instability. The instability can lead to a myriad of different symptoms, some of which can include dizziness and headaches.\r\n\r\nWe have written an article that discusses the symptoms of neck instability in more depth. If you are interested in finding out more about these symptoms of neck instability (cervical instability), please <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cervical-instability/\">clicking here</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>Common Neck Injury Treatments</h3>\r\nMost patients try to self-treat with NSAID medications such as Ibuprofen and Naproxen. If these medications do bring relief, the relief is often temporary. And once the drugs become ineffective, the patient often seeks even stronger prescription medications, such as nerve blocks. After that, an MRI is frequently taken, and then surgery is often recommended.\r\n\r\nFortunately, there is an alternative to surgical cervical fusion for chronic neck pain and pain from neck injuries by using comprehensive Regenerative Orthopedic neck treatments at OrthoRegen<sup>®</sup>.\r\n\r\n[caption id=\"attachment_4878\" align=\"alignleft\" width=\"428\"]<img class=\" wp-image-4878\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Non-Surgical-500x500.png\" alt=\"Non Surgical\" width=\"428\" height=\"428\" /> <strong>Choose a Non-Surgical Alternative for Neck Pain</strong>[/caption]\r\n<h3>Regenerative Orthopedic Neck Injury Treatments by Peter A. Fields, MD, DC</h3>\r\nPeter A. Fields, MD, DC is also known as <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>  He has treated many athletes from all levels of sport, as well as the weekend warrior. Neck injuries can also be the result of overuse. Those of us who spend hour after hour in front of the computer can also suffer from ligament injury of the neck.\r\n\r\nRegenerative Orthopedic treatments can resolve the neck pain and headaches that result from these injuries too. Get back to doing what you love without surgery, without medications, and without extended time away from the activities you love in your life.\r\n\r\nIn our experience, a comprehensive Regenerative Orthopedic neck treatment along with a Natural Medicine program is the preferred way to treat neck pain for optimal long-term results.\r\n<h3></h3>\r\n<h3><a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img class=\"alignnone\" style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a></h3>\r\n<h3></h3>\r\n<h3><strong>Some of the most common neck and head injuries we treat with comprehensive Regenerative Orthopedic neck injury treatments are:</strong></h3>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h3>Are You A Candidate for Regenerative Orthopedics?</h3>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy neck treatment, <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy,</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Regenerative Orthopedic treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Neck Injury Treatments','','publish','open','closed','','neck-injury-treatments','','','2021-09-02 01:56:54','2021-09-02 01:56:54','',0,'https://www.drfields.com/?p=536',0,'post','',0);
INSERT INTO `wp_posts` VALUES (537,8,'2019-06-08 07:26:42','2019-06-08 07:26:42','&nbsp;\r\n\r\n<h4>Honduras 2009</h4>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_488\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-and-Matt.jpg\" alt=\"Dr&#039;s Peter And Matt\" width=\"255\" height=\"191\" class=\"size-full wp-image-488\" /> Dr. Fields instructs Dr. Matt[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_489\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F.-Lecturing-1.jpg\" alt=\"Dr F. Lecturing 1\" width=\"255\" height=\"191\" class=\"size-full wp-image-489\" /> Dr. Fields lecturing[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_490\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1562.jpg\" alt=\"Dscn1562\" width=\"255\" height=\"192\" class=\"size-full wp-image-490\" /> Dr\'s Bill, Saul and Peter[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_491\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1727.jpg\" alt=\"Dscn1727\" width=\"255\" height=\"191\" class=\"size-full wp-image-491\" /> Dr. Fields and student Dr. Laurent[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_492\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1739.jpg\" alt=\"Dscn1739\" width=\"255\" height=\"191\" class=\"size-full wp-image-492\" /> Dr. Fields and the La Ceiba Red Cross Staff[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_493\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1760.jpg\" alt=\"Dscn1760\" width=\"255\" height=\"191\" class=\"size-full wp-image-493\" /> Dr\'s Saul, Matt, Laurent and Dr. Pedro Campos![/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_494\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1761.jpg\" alt=\"Dscn1761\" width=\"255\" height=\"191\" class=\"size-full wp-image-494\" /> Dr\'s Sandra and Josette- our Honduran Docs[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_495\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1790.jpg\" alt=\"Dscn1790\" width=\"255\" height=\"191\" class=\"size-full wp-image-495\" /> Dr\'s Peter, Deb, Saul, Red Cross aid with a pt<br />and her child[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_496\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1796.jpg\" alt=\"Dscn1796\" width=\"255\" height=\"191\" class=\"size-full wp-image-496\" /> The La Ceiba team[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_497\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-adjusts-a-patient.jpg\" alt=\"Dr Fields Adjusts A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-497\" /> Dr. Fields adjusts a patient while other<br />doctors obserserve[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_498\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-instructs.jpg\" alt=\"Dr Fields Instructs\" width=\"255\" height=\"191\" class=\"size-full wp-image-498\" /> Dr. Fields Instructs[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_499\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-Bill-Joe-and-patient.jpg\" alt=\"Dr&#039;s Peter, Bill, Joe And Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-499\" /> Dr\'s Peter, Bill, Joe and patient[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_500\" align=\"aligncenter\" width=\"217\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-giving-a-lecture.jpg\" alt=\"Dr Fields Giving A Lecture\" width=\"217\" height=\"255\" class=\"size-full wp-image-500\" /> Dr. Fields giving a lecture[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_501\" align=\"aligncenter\" width=\"200\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F-and-skeleton.jpg\" alt=\"Dr F And Skeleton\" width=\"200\" height=\"255\" class=\"size-full wp-image-501\" /> Dr. Fields and Dr. Bones[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_502\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dinner-at-the-hotel.jpg\" alt=\"Dinner At The Hotel\" width=\"255\" height=\"191\" class=\"size-full wp-image-502\" /> Dinner at the hotel[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_503\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/horse.jpg\" alt=\"Horse\" width=\"255\" height=\"202\" class=\"size-full wp-image-503\" /> Local transport[/caption]\r\n</div>','Honduras 2009','','inherit','closed','closed','','504-revision-v1','','','2019-06-08 07:26:42','2019-06-08 07:26:42','',504,'https://www.drfields.com/uncategorized/504-revision-v1/',0,'revision','',0),(538,8,'2019-06-08 07:28:00','2019-06-08 07:28:00','<strong>Peter - Neck (video here)</strong>\r\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\r\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\r\n\r\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> neck treatment at OrthoRegen.\r\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\r\nDr. Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\r\n\r\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Head Testimonials</a> pages.\r\n\r\n<strong>Sports Injuries</strong>','Neck Injury Treatment','','inherit','closed','closed','','536-revision-v1','','','2019-06-08 07:28:00','2019-06-08 07:28:00','',536,'https://www.drfields.com/uncategorized/536-revision-v1/',0,'revision','',0),(539,8,'2019-06-15 08:13:37','2019-06-15 08:13:37','<div class=\"youtube-click-div video_left\">\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter Neck\"]\n<strong>Peter - Neck</strong>\n</div>\n\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\n\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> neck treatment at OrthoRegen.\n\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\nDr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\n\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\n<ul>\n 	<li>Atypical facial pain</li>\n 	<li>Barre-Lieou Syndrome</li>\n 	<li>Cervical instability</li>\n 	<li>Jaw pain</li>\n 	<li>Migraine headaches</li>\n 	<li>Muscle contraction headache</li>\n 	<li>Neck arthritis</li>\n 	<li>Neck pain</li>\n 	<li>Post cervical fusion pain</li>\n 	<li>Post-surgical neck pain</li>\n 	<li>TMJ syndrome</li>\n 	<li>Whiplash</li>\n</ul>\n<h4>Are You A Candidate for Prolotherapy?</h4>\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\n\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"/testimonials/video-testimonials/\">Head Testimonials</a> pages.\n','Neck Injury Treatment','','inherit','closed','closed','','536-autosave-v1','','','2019-06-15 08:13:37','2019-06-15 08:13:37','',536,'https://www.drfields.com/uncategorized/536-autosave-v1/',0,'revision','',0),(540,8,'2019-06-08 07:29:45','2019-06-08 07:29:45','&nbsp;\r\n\r\n<h4>Honduras 2009</h4>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_488\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-and-Matt.jpg\" alt=\"Dr&#039;s Peter And Matt\" width=\"255\" height=\"191\" class=\"size-full wp-image-488\" /> Dr. Fields instructs Dr. Matt[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_489\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F.-Lecturing-1.jpg\" alt=\"Dr F. Lecturing 1\" width=\"255\" height=\"191\" class=\"size-full wp-image-489\" /> Dr. Fields lecturing[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_490\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1562.jpg\" alt=\"Dscn1562\" width=\"255\" height=\"192\" class=\"size-full wp-image-490\" /> Dr\'s Bill, Saul and Peter[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_491\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1727.jpg\" alt=\"Dscn1727\" width=\"255\" height=\"191\" class=\"size-full wp-image-491\" /> Dr. Fields and student Dr. Laurent[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_492\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1739.jpg\" alt=\"Dscn1739\" width=\"255\" height=\"191\" class=\"size-full wp-image-492\" /> Dr. Fields and the La Ceiba Red Cross Staff[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_493\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1760.jpg\" alt=\"Dscn1760\" width=\"255\" height=\"191\" class=\"size-full wp-image-493\" /> Dr\'s Saul, Matt, Laurent and Dr. Pedro Campos![/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_494\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1761.jpg\" alt=\"Dscn1761\" width=\"255\" height=\"191\" class=\"size-full wp-image-494\" /> Dr\'s Sandra and Josette- our Honduran Docs[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_495\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1790.jpg\" alt=\"Dscn1790\" width=\"255\" height=\"191\" class=\"size-full wp-image-495\" /> Dr\'s Peter, Deb, Saul, Red Cross aid with a pt and her child[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_496\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1796.jpg\" alt=\"Dscn1796\" width=\"255\" height=\"191\" class=\"size-full wp-image-496\" /> The La Ceiba team[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_497\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-adjusts-a-patient.jpg\" alt=\"Dr Fields Adjusts A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-497\" /> Dr. Fields adjusts a patient while other<br />doctors obserserve[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_498\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-instructs.jpg\" alt=\"Dr Fields Instructs\" width=\"255\" height=\"191\" class=\"size-full wp-image-498\" /> Dr. Fields Instructs[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_499\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-Bill-Joe-and-patient.jpg\" alt=\"Dr&#039;s Peter, Bill, Joe And Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-499\" /> Dr\'s Peter, Bill, Joe and patient[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_500\" align=\"aligncenter\" width=\"217\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-giving-a-lecture.jpg\" alt=\"Dr Fields Giving A Lecture\" width=\"217\" height=\"255\" class=\"size-full wp-image-500\" /> Dr. Fields giving a lecture[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_501\" align=\"aligncenter\" width=\"200\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F-and-skeleton.jpg\" alt=\"Dr F And Skeleton\" width=\"200\" height=\"255\" class=\"size-full wp-image-501\" /> Dr. Fields and Dr. Bones[/caption]\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_502\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dinner-at-the-hotel.jpg\" alt=\"Dinner At The Hotel\" width=\"255\" height=\"191\" class=\"size-full wp-image-502\" /> Dinner at the hotel[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_503\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/horse.jpg\" alt=\"Horse\" width=\"255\" height=\"202\" class=\"size-full wp-image-503\" /> Local transport[/caption]\r\n</div>','Honduras 2009','','inherit','closed','closed','','504-revision-v1','','','2019-06-08 07:29:45','2019-06-08 07:29:45','',504,'https://www.drfields.com/uncategorized/504-revision-v1/',0,'revision','',0),(542,8,'2019-06-08 07:32:47','2019-06-08 07:32:47','&nbsp;\r\n\r\n<h4>Honduras 2009</h4>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_488\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-and-Matt.jpg\" alt=\"Dr&#039;s Peter And Matt\" width=\"255\" height=\"191\" class=\"size-full wp-image-488\" /> Dr. Fields instructs Dr. Matt[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_489\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F.-Lecturing-1.jpg\" alt=\"Dr F. Lecturing 1\" width=\"255\" height=\"191\" class=\"size-full wp-image-489\" /> Dr. Fields lecturing[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_490\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1562.jpg\" alt=\"Dscn1562\" width=\"255\" height=\"192\" class=\"size-full wp-image-490\" /> Dr\'s Bill, Saul and Peter[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_491\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1727.jpg\" alt=\"Dscn1727\" width=\"255\" height=\"191\" class=\"size-full wp-image-491\" /> Dr. Fields and student Dr. Laurent[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_492\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1739.jpg\" alt=\"Dscn1739\" width=\"255\" height=\"191\" class=\"size-full wp-image-492\" /> Dr. Fields and the La Ceiba Red Cross Staff[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_493\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1760.jpg\" alt=\"Dscn1760\" width=\"255\" height=\"191\" class=\"size-full wp-image-493\" /> Dr\'s Saul, Matt, Laurent and Dr. Pedro Campos![/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_494\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1761.jpg\" alt=\"Dscn1761\" width=\"255\" height=\"191\" class=\"size-full wp-image-494\" /> Dr\'s Sandra and Josette- our Honduran Docs[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_495\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1790.jpg\" alt=\"Dscn1790\" width=\"255\" height=\"191\" class=\"size-full wp-image-495\" /> Dr\'s Peter, Deb, Saul, Red Cross aid with a pt and her child[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_496\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1796.jpg\" alt=\"Dscn1796\" width=\"255\" height=\"191\" class=\"size-full wp-image-496\" /> The La Ceiba team[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_497\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-adjusts-a-patient.jpg\" alt=\"Dr Fields Adjusts A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-497\" /> Dr. Fields adjusts a patient while other<br />doctors obserserve[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_498\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-instructs.jpg\" alt=\"Dr Fields Instructs\" width=\"255\" height=\"191\" class=\"size-full wp-image-498\" /> Dr. Fields Instructs[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_499\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-Bill-Joe-and-patient.jpg\" alt=\"Dr&#039;s Peter, Bill, Joe And Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-499\" /> Dr\'s Peter, Bill, Joe and patient[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_500\" align=\"aligncenter\" width=\"217\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-giving-a-lecture.jpg\" alt=\"Dr Fields Giving A Lecture\" width=\"217\" height=\"255\" class=\"size-full wp-image-500\" /> Dr. Fields giving a lecture[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_501\" align=\"aligncenter\" width=\"200\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F-and-skeleton.jpg\" alt=\"Dr F And Skeleton\" width=\"200\" height=\"255\" class=\"size-full wp-image-501\" /> Dr. Fields and Dr. Bones[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_502\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dinner-at-the-hotel.jpg\" alt=\"Dinner At The Hotel\" width=\"255\" height=\"191\" class=\"size-full wp-image-502\" /> Dinner at the hotel[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_503\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/horse.jpg\" alt=\"Horse\" width=\"255\" height=\"202\" class=\"size-full wp-image-503\" /> Local transport[/caption]\r\n</div><div class=\"clear\"></div>\r\n','Honduras 2009','','inherit','closed','closed','','504-revision-v1','','','2019-06-08 07:32:47','2019-06-08 07:32:47','',504,'https://www.drfields.com/uncategorized/504-revision-v1/',0,'revision','',0),(543,8,'2019-06-08 07:42:07','2019-06-08 07:42:07','Check out our photos from our Honduras missions trip in 2011.\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_563\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-563\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/With-two-other-student-docs-and-a-patient.jpg\" alt=\"With Two Other Student Docs And A Patient\" width=\"255\" height=\"191\" /> With Two Other Student Docs And A Patient[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_562\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-562\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/With-a-local-translator-a-student-doc-from-Italy-and-a-patient.jpg\" alt=\"With A Local Translator, A Student Doc From Italy And A Patient\" width=\"255\" height=\"191\" /> With A Local Translator, A Student Doc From Italy And A Patient[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_561\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-561\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Teaching-a-doc.jpg\" alt=\"Teaching A Doc\" width=\"255\" height=\"191\" /> Teaching A Doc[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_560\" align=\"aligncenter\" width=\"191\"]<img class=\"size-full wp-image-560\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-the-dentist-Dr-Mansilla.jpg\" alt=\"Dr Fields With The Dentist, Dr Mansilla\" width=\"191\" height=\"191\" /> Dr Fields With The Dentist, Dr Mansilla[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_559\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-559\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-Mary-Doherty-HHF-Operations-Director.jpg\" alt=\"Dr Fields And Mary Doherty, Hhf Operations Director\" width=\"255\" height=\"191\" /> Dr Fields And Mary Doherty, Hhf Operations Director[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_558\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-558\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-Olanchito-group.jpg\" alt=\"The Olanchito Group\" width=\"255\" height=\"191\" /> The Olanchito Group[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_557\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-557\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-helps-out-the-dentist.jpg\" alt=\"Dr Fields Helps Out The Dentist!\" width=\"255\" height=\"191\" /> Dr Fields Helps Out The Dentist![/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_556\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-556\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-a-student-doc-and-a-patient.jpg\" alt=\"Dr Fields With A Student Doc And A Patient\" width=\"255\" height=\"191\" /> Dr Fields With A Student Doc And A Patient[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_555\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-555\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-another-doc-and-a-helper.jpg\" alt=\"Dr Fields With Another Doc And A Helper\" width=\"255\" height=\"191\" /> Dr Fields With Another Doc And A Helper[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_554\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-554\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-another-doc-our-translator-and-a-patient.jpg\" alt=\"Dr Fields With Another Doc, Our Translator And A Patient\" width=\"255\" height=\"191\" /> Dr Fields With Another Doc, Our Translator And A Patient[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_553\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-553\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-other-docs-at-the-final-dinner.jpg\" alt=\"Dr Fields With Other Docs At The Final Dinner\" width=\"255\" height=\"166\" /> Dr Fields With Other Docs At The Final Dinner[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_552\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-552\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-a-helper-and-Dr-Bones.jpg\" alt=\"Dr Fields, A Helper And Dr Bones!\" width=\"255\" height=\"191\" /> Dr Fields, A Helper And Dr Bones![/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_551\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-551\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Having-dinner-in-Olanchito.jpg\" alt=\"Having Dinner In Olanchito\" width=\"255\" height=\"191\" /> Having Dinner In Olanchito[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_550\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-550\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-street-scene-in-the-main-city.jpg\" alt=\"Local Street Scene In The Main City\" width=\"255\" height=\"191\" /> Local Street Scene In The Main City[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_549\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-549\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-bigger-city.jpg\" alt=\"The Bigger City\" width=\"255\" height=\"191\" /> The Bigger City[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_548\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-548\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Treating-a-patient-with-a-student-doc.jpg\" alt=\"Treating A Patient With A Student Doc\" width=\"255\" height=\"191\" /> Treating A Patient With A Student Doc[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_547\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-547\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/With-a-local-translator.jpg\" alt=\"With A Local Translator\" width=\"255\" height=\"191\" /> With A Local Translator[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_546\" align=\"aligncenter\" width=\"200\"]<img class=\"size-full wp-image-546\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/With-Disbel-Mansilla-DDS-and-her-staff.jpg\" alt=\"With Disbel Mansilla, Dds And Her Staff\" width=\"200\" height=\"191\" /> With Disbel Mansilla, Dds And Her Staff[/caption]\r\n\r\n</div>','Honduras 2011','','publish','open','closed','','honduras-2011','','','2022-11-01 18:02:11','2022-11-01 18:02:11','',0,'https://www.drfields.com/?p=543',0,'post','',0),(545,8,'2019-06-08 07:38:23','2019-06-08 07:38:23','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg\" alt=\"Dr.doug – Headaches &amp; Shoulder\"]\r\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong></div>\r\n<h4>Shoulder Injury Treatment</h4>\r\nAt OrthoRegen<sup>®</sup>, shoulder injury is one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedics</a>. A shoulder injury is common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive regenerative shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\r\n\r\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long-term results. Peter A. Fields, MD, DC,  <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/ \">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist, and swimmer, understands your desire to return to full participation in your training and competition.\r\n\r\n[caption id=\"attachment_4812\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4812\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Slide17-500x375.jpeg\" alt=\"Slide17\" width=\"500\" height=\"375\" /> <strong>               Stem Cell Therapy Effective for Rotator Cuff Injury</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>Rotator Cuff Shoulder Injury Can Be Successfully Treated with Stem Cell Therapy</h3>\r\nEven if your shoulder injury involves the rotator cuff, Regenerative Orthopedics can help. Surgery is often the go-to treatment. But unfortunately, despite improved surgical techniques, the tendon-to-bone healing rate is unsatisfactory. However, treatments like Stem Cell Therapy have been shown in studies to be promising reparative treatments.1   Stem cell therapy is thus a potentially effective therapy to enhance rotator cuff healing.\r\n<h3><strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen<sup>®</sup> are:</strong></h3>\r\n<ul>\r\n 	<li>Acromioclavicular joint arthrosis</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation</li>\r\n 	<li>Frozen shoulder</li>\r\n 	<li>Glenoid labrum tear</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Multi-directional instability</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Shoulder dislocation</li>\r\n 	<li>Shoulder instability</li>\r\n 	<li>Shoulder pain</li>\r\n 	<li>Shoulder separation</li>\r\n 	<li>SLAP lesion</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Swimmers shoulder</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendonosis</li>\r\n 	<li>Torn labrum</li>\r\n</ul>\r\n<h4>Are You A Candidate for Regenerative Orthopedics?</h4>\r\nPeter A. Fields, MD, DC and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials/\">Shoulder Prolotherapy Testimonials page</a>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3>References</h3>\r\n1Mora, Maria Valencia, et al. \"Stem cell therapy in the management of shoulder rotator cuff disorders.\" <i>World Journal of Stem Cells</i> 7.4 (2015): 691.','Shoulder Injury Treatment','','publish','open','closed','','shoulder-injury-treatment','','','2021-07-29 20:38:25','2021-07-29 20:38:25','',0,'https://www.drfields.com/?p=545',0,'post','',0),(546,8,'2019-06-08 07:36:59','2019-06-08 07:36:59','With Disbel Mansilla, Dds And Her Staff','With Disbel Mansilla, Dds And Her Staff','With Disbel Mansilla, Dds And Her Staff','inherit','open','closed','','with-disbel-mansilla-dds-and-her-staff','','','2019-06-08 07:41:58','2019-06-08 07:41:58','',543,'https://www.drfields.com/wp-content/uploads/2019/06/With-Disbel-Mansilla-DDS-and-her-staff.jpg',0,'attachment','image/jpeg',0),(547,8,'2019-06-08 07:37:00','2019-06-08 07:37:00','With A Local Translator','With A Local Translator','With A Local Translator','inherit','open','closed','','with-a-local-translator','','','2019-06-08 07:41:50','2019-06-08 07:41:50','',543,'https://www.drfields.com/wp-content/uploads/2019/06/With-a-local-translator.jpg',0,'attachment','image/jpeg',0),(548,8,'2019-06-08 07:37:01','2019-06-08 07:37:01','Treating A Patient With A Student Doc','Treating A Patient With A Student Doc','Treating A Patient With A Student Doc','inherit','open','closed','','treating-a-patient-with-a-student-doc','','','2019-06-08 07:41:37','2019-06-08 07:41:37','',543,'https://www.drfields.com/wp-content/uploads/2019/06/Treating-a-patient-with-a-student-doc.jpg',0,'attachment','image/jpeg',0),(549,8,'2019-06-08 07:37:02','2019-06-08 07:37:02','The Bigger City','The Bigger City','The Bigger City','inherit','open','closed','','the-bigger-city','','','2019-06-08 07:41:27','2019-06-08 07:41:27','',543,'https://www.drfields.com/wp-content/uploads/2019/06/The-bigger-city.jpg',0,'attachment','image/jpeg',0),(550,8,'2019-06-08 07:37:04','2019-06-08 07:37:04','Local Street Scene In The Main City','Local Street Scene In The Main City','Local Street Scene In The Main City','inherit','open','closed','','local-street-scene-in-the-main-city','','','2019-06-08 07:41:18','2019-06-08 07:41:18','',543,'https://www.drfields.com/wp-content/uploads/2019/06/Local-street-scene-in-the-main-city.jpg',0,'attachment','image/jpeg',0),(551,8,'2019-06-08 07:37:05','2019-06-08 07:37:05','Having Dinner In Olanchito','Having Dinner In Olanchito','Having Dinner In Olanchito','inherit','open','closed','','having-dinner-in-olanchito','','','2019-06-08 07:41:06','2019-06-08 07:41:06','',543,'https://www.drfields.com/wp-content/uploads/2019/06/Having-dinner-in-Olanchito.jpg',0,'attachment','image/jpeg',0),(552,8,'2019-06-08 07:37:06','2019-06-08 07:37:06','Dr Fields, A Helper And Dr Bones!','Dr Fields, A Helper And Dr Bones!','Dr Fields, A Helper And Dr Bones!','inherit','open','closed','','dr-fields-a-helper-and-dr-bones','','','2019-06-08 07:40:54','2019-06-08 07:40:54','',543,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-a-helper-and-Dr-Bones.jpg',0,'attachment','image/jpeg',0),(553,8,'2019-06-08 07:37:07','2019-06-08 07:37:07','Dr Fields With Other Docs At The Final Dinner','Dr Fields With Other Docs At The Final Dinner','Dr Fields With Other Docs At The Final Dinner','inherit','open','closed','','dr-fields-with-other-docs-at-the-final-dinner','','','2019-06-08 07:40:44','2019-06-08 07:40:44','',543,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-other-docs-at-the-final-dinner.jpg',0,'attachment','image/jpeg',0),(554,8,'2019-06-08 07:37:09','2019-06-08 07:37:09','Dr Fields With Another Doc, Our Translator And A Patient','Dr Fields With Another Doc, Our Translator And A Patient','Dr Fields With Another Doc, Our Translator And A Patient','inherit','open','closed','','dr-fields-with-another-doc-our-translator-and-a-patient','','','2019-06-08 07:40:33','2019-06-08 07:40:33','',543,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-another-doc-our-translator-and-a-patient.jpg',0,'attachment','image/jpeg',0),(555,8,'2019-06-08 07:37:10','2019-06-08 07:37:10','Dr Fields With Another Doc And A Helper','Dr Fields With Another Doc And A Helper','Dr Fields With Another Doc And A Helper','inherit','open','closed','','dr-fields-with-another-doc-and-a-helper','','','2019-06-08 07:40:24','2019-06-08 07:40:24','',543,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-another-doc-and-a-helper.jpg',0,'attachment','image/jpeg',0),(556,8,'2019-06-08 07:37:11','2019-06-08 07:37:11','Dr Fields With A Student Doc And A Patient','Dr Fields With A Student Doc And A Patient','Dr Fields With A Student Doc And A Patient','inherit','open','closed','','dr-fields-with-a-student-doc-and-a-patient','','','2019-06-08 07:40:10','2019-06-08 07:40:10','',543,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-a-student-doc-and-a-patient.jpg',0,'attachment','image/jpeg',0),(557,8,'2019-06-08 07:37:13','2019-06-08 07:37:13','Dr Fields Helps Out The Dentist!','Dr Fields Helps Out The Dentist!','Dr Fields Helps Out The Dentist!','inherit','open','closed','','dr-fields-helps-out-the-dentist','','','2019-06-08 07:39:58','2019-06-08 07:39:58','',543,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-helps-out-the-dentist.jpg',0,'attachment','image/jpeg',0),(558,8,'2019-06-08 07:37:14','2019-06-08 07:37:14','The Olanchito Group','The Olanchito Group','The Olanchito Group','inherit','open','closed','','the-olanchito-group','','','2019-06-08 07:39:45','2019-06-08 07:39:45','',543,'https://www.drfields.com/wp-content/uploads/2019/06/The-Olanchito-group.jpg',0,'attachment','image/jpeg',0),(559,8,'2019-06-08 07:37:16','2019-06-08 07:37:16','Dr Fields And Mary Doherty, Hhf Operations Director','Dr Fields And Mary Doherty, Hhf Operations Director','Dr Fields And Mary Doherty, Hhf Operations Director','inherit','open','closed','','dr-fields-and-mary-doherty-hhf-operations-director','','','2019-06-08 07:39:35','2019-06-08 07:39:35','',543,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-Mary-Doherty-HHF-Operations-Director.jpg',0,'attachment','image/jpeg',0),(560,8,'2019-06-08 07:37:17','2019-06-08 07:37:17','Dr Fields With The Dentist, Dr Mansilla','Dr Fields With The Dentist, Dr Mansilla','Dr Fields With The Dentist, Dr Mansilla','inherit','open','closed','','dr-fields-with-the-dentist-dr-mansilla','','','2019-06-08 07:39:18','2019-06-08 07:39:18','',543,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-the-dentist-Dr-Mansilla.jpg',0,'attachment','image/jpeg',0),(561,8,'2019-06-08 07:37:18','2019-06-08 07:37:18','Teaching A Doc','Teaching A Doc','Teaching A Doc','inherit','open','closed','','teaching-a-doc','','','2019-06-08 07:39:08','2019-06-08 07:39:08','',543,'https://www.drfields.com/wp-content/uploads/2019/06/Teaching-a-doc.jpg',0,'attachment','image/jpeg',0),(562,8,'2019-06-08 07:37:19','2019-06-08 07:37:19','With A Local Translator, A Student Doc From Italy And A Patient','With A Local Translator, A Student Doc From Italy And A Patient','With A Local Translator, A Student Doc From Italy And A Patient','inherit','open','closed','','with-a-local-translator-a-student-doc-from-italy-and-a-patient','','','2019-06-08 07:38:53','2019-06-08 07:38:53','',543,'https://www.drfields.com/wp-content/uploads/2019/06/With-a-local-translator-a-student-doc-from-Italy-and-a-patient.jpg',0,'attachment','image/jpeg',0),(563,8,'2019-06-08 07:37:21','2019-06-08 07:37:21','With Two Other Student Docs And A Patient','With Two Other Student Docs And A Patient','With Two Other Student Docs And A Patient','inherit','open','closed','','with-two-other-student-docs-and-a-patient','','','2019-06-08 07:38:40','2019-06-08 07:38:40','',543,'https://www.drfields.com/wp-content/uploads/2019/06/With-two-other-student-docs-and-a-patient.jpg',0,'attachment','image/jpeg',0),(564,8,'2019-06-08 07:38:23','2019-06-08 07:38:23','Dr.<strong> Doug - Headaches &amp; Shoulder(video here)</strong>\r\n<h4>Prolotherapy Shoulder Treatment</h4>\r\nAt OrthoRegen, shoulder injuries are one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. Shoulder injuries are common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive prolotherapy shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\r\n\r\nOur experience has shown that a comprehensive treatment program is the preferred way to treat shoulder pain for optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist and swimmer, understands your desire to return to full participation in your training and competition.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Acromioclavicular joint arthrosis</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation</li>\r\n 	<li>Frozen shoulder</li>\r\n 	<li>Glenoid labrum tear</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Multi-directional instability</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Shoulder dislocation</li>\r\n 	<li>Shoulder instability</li>\r\n 	<li>Shoulder pain</li>\r\n 	<li>Shoulder separation</li>\r\n 	<li>SLAP lesion</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Swimmers shoulder</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendonosis</li>\r\n 	<li>Torn labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-310-627-2458\">(310) 627-2458</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder Prolotherapy Testimonials page</a>.\r\n\r\n<strong>(sports injuries)</strong>','Shoulder Injury Treatment','','inherit','closed','closed','','545-revision-v1','','','2019-06-08 07:38:23','2019-06-08 07:38:23','',545,'https://www.drfields.com/uncategorized/545-revision-v1/',0,'revision','',0),(565,8,'2019-06-12 05:01:36','2019-06-12 05:01:36','<div class=\"youtube-click-div video_left\">\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr.doug – Headaches & Shoulder\"]\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong>\n</div>\n\n<h4>Prolotherapy Shoulder Treatment</h4>\nAt OrthoRegen, shoulder injuries are one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Shoulder injuries are common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive prolotherapy shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\n\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long term results. Dr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\n\">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist and swimmer, understands your desire to return to full participation in your training and competition.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen are:</strong>\n<ul>\n 	<li>Acromioclavicular joint arthrosis</li>\n 	<li>Arthritis</li>\n 	<li>Bursitis</li>\n 	<li>Dislocation</li>\n 	<li>Frozen shoulder</li>\n 	<li>Glenoid labrum tear</li>\n 	<li>Impingement syndrome</li>\n 	<li>Labral tear</li>\n 	<li>Multi-directional instability</li>\n 	<li>Rotator cuff tear</li>\n 	<li>Shoulder dislocation</li>\n 	<li>Shoulder instability</li>\n 	<li>Shoulder pain</li>\n 	<li>Shoulder separation</li>\n 	<li>SLAP lesion</li>\n 	<li>Subluxation</li>\n 	<li>Swimmers shoulder</li>\n 	<li>Tendonitis</li>\n 	<li>Tendonosis</li>\n 	<li>Torn labrum</li>\n</ul>\n\n<h4>Are You A Candidate for Prolotherapy?</h4>\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+1-310-627-2458\">(310) 627-2458</a>.\n\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder Prolotherapy Testimonials page</a>.\n\n<strong>(sports injuries)</strong>','Shoulder Injury Treatment','','inherit','closed','closed','','545-autosave-v1','','','2019-06-12 05:01:36','2019-06-12 05:01:36','',545,'https://www.drfields.com/uncategorized/545-autosave-v1/',0,'revision','',0),(566,8,'2019-06-08 07:40:26','2019-06-08 07:40:26','<strong>Dr.Doug - Headaches &amp; Shoulder(video here)</strong>\r\n<h4>Prolotherapy Shoulder Treatment</h4>\r\nAt OrthoRegen, shoulder injuries are one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. Shoulder injuries are common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive prolotherapy shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\r\n\r\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist and swimmer, understands your desire to return to full participation in your training and competition.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Acromioclavicular joint arthrosis</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation</li>\r\n 	<li>Frozen shoulder</li>\r\n 	<li>Glenoid labrum tear</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Multi-directional instability</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Shoulder dislocation</li>\r\n 	<li>Shoulder instability</li>\r\n 	<li>Shoulder pain</li>\r\n 	<li>Shoulder separation</li>\r\n 	<li>SLAP lesion</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Swimmers shoulder</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendonosis</li>\r\n 	<li>Torn labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-310-627-2458\">(310) 627-2458</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder Prolotherapy Testimonials page</a>.\r\n\r\n<strong>(sports injuries)</strong>','Shoulder Injury Treatment','','inherit','closed','closed','','545-revision-v1','','','2019-06-08 07:40:26','2019-06-08 07:40:26','',545,'https://www.drfields.com/uncategorized/545-revision-v1/',0,'revision','',0),(567,8,'2019-06-08 07:53:43','2019-06-08 07:53:43','<h2>Get Rid of Back Pain with Regenerative Orthopedics</h2>\r\nOne of the main reasons patients come to OrthoRegen<sup>®</sup> is to get rid of back pain. They want to get back to doing the activities they love. And Regenerative Orthopedics is an effective repair and a great alternative to risky surgery! Also, since back injury is another common reason our patients say they have had to stop participation in sports, this non-surgical option is a clear solution to return them quickly to their sport.\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur – Low Back\"]\r\n<strong>Wilbur - Low Back</strong></div>\r\n<h3>What Is Behind Back Pain</h3>\r\nBack pain is one of the leading causes of disability. But what is the reason for back pain? Very often, the culprit behind back pain is spinal instability. Many of the traditional treatments for back pain are not able to repair this root cause behind the pain. For example, back pain sufferers often try NSAID medications (like Ibuprofen or Naproxen), or even nerve blocks to get rid of their pain. But they don\'t find lasting relief. That\'s because these medications only cover up the pain. They don\'t really repair anything.\r\n\r\nCortisone injections, prescribed pain pills, and muscle relaxers only cover up the pain. Meanwhile,  the degeneration continues, and patients end up getting stuck in a cycle of managing their pain. This is because they are only treating the symptoms versus correcting the underlying spinal instability. Comprehensive Regenerative Orthopedics can stop this cycle by regenerating the weakened and overstretched soft tissue structures along the spine. The result? The treatments alleviate the pain and instability once and for all.\r\n\r\nRegenerative Orthopedics treats back pain quickly and safely and gives a more desirable pain-relief outcome. Do you want to get off the back pain merry-go-round? Then give us a call and we\'ll schedule an appointment with our specialist.\r\n\r\nRemember, Regenerative Orthopedics is reparative. It helps your body to heal by repairing the injured soft tissue causing spinal instability. Join our growing patient list of people who have benefited from comprehensive treatment.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3><strong>Get rid of back pain from these common conditions with Regenerative Orthopedics:</strong></h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/relieve-arthritis-pain/\">Arthritis</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/stop-back-pain/\">Back pain</a></li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Buttock pain</li>\r\n 	<li>Coccyx pain</li>\r\n 	<li>Degenerated discs</li>\r\n 	<li>Herniated discs</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Failed back fusion pain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/failed-back-surgery-syndrome/\">Failed back surgery syndrome</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/low-back-pain-treatments-and-the-challenges-at-finding-relief/\">Lower back pain</a></li>\r\n 	<li>Muscle spasms</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Pelvic pain</li>\r\n 	<li>Retrolisthesis</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tailbone pain</li>\r\n 	<li>Thoracic spine pain</li>\r\n 	<li>SI instability</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Yoga injury</li>\r\n</ul>\r\n<h4>Are You A Candidate for Regenerative Orthopedics?</h4>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Dextrose Prolotherapy</a> back treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our regenerative treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>® </sup> at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials/\">Prolotherapy Back Testimonials page</a>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>','Get Rid of Back Pain with Regenerative Orthopedics','','publish','open','closed','','get-rid-of-back-pain-with-regenerative-orthopedics','','','2021-07-07 19:29:00','2021-07-07 19:29:00','',0,'https://www.drfields.com/?p=567',0,'post','',0),(568,8,'2019-06-08 07:42:07','2019-06-08 07:42:07','&nbsp;\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_563\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/With-two-other-student-docs-and-a-patient.jpg\" alt=\"With Two Other Student Docs And A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-563\" /> With Two Other Student Docs And A Patient[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_562\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/With-a-local-translator-a-student-doc-from-Italy-and-a-patient.jpg\" alt=\"With A Local Translator, A Student Doc From Italy And A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-562\" /> With A Local Translator, A Student Doc From Italy And A Patient[/caption]\r\n</div>\r\n\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_561\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Teaching-a-doc.jpg\" alt=\"Teaching A Doc\" width=\"255\" height=\"191\" class=\"size-full wp-image-561\" /> Teaching A Doc[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_560\" align=\"aligncenter\" width=\"191\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-the-dentist-Dr-Mansilla.jpg\" alt=\"Dr Fields With The Dentist, Dr Mansilla\" width=\"191\" height=\"191\" class=\"size-full wp-image-560\" /> Dr Fields With The Dentist, Dr Mansilla[/caption]\r\n</div>\r\n\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_559\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-Mary-Doherty-HHF-Operations-Director.jpg\" alt=\"Dr Fields And Mary Doherty, Hhf Operations Director\" width=\"255\" height=\"191\" class=\"size-full wp-image-559\" /> Dr Fields And Mary Doherty, Hhf Operations Director[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_558\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-Olanchito-group.jpg\" alt=\"The Olanchito Group\" width=\"255\" height=\"191\" class=\"size-full wp-image-558\" /> The Olanchito Group[/caption]\r\n</div>\r\n\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_557\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-helps-out-the-dentist.jpg\" alt=\"Dr Fields Helps Out The Dentist!\" width=\"255\" height=\"191\" class=\"size-full wp-image-557\" /> Dr Fields Helps Out The Dentist![/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_556\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-a-student-doc-and-a-patient.jpg\" alt=\"Dr Fields With A Student Doc And A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-556\" /> Dr Fields With A Student Doc And A Patient[/caption]\r\n</div>\r\n\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_555\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-another-doc-and-a-helper.jpg\" alt=\"Dr Fields With Another Doc And A Helper\" width=\"255\" height=\"191\" class=\"size-full wp-image-555\" /> Dr Fields With Another Doc And A Helper[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_554\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-another-doc-our-translator-and-a-patient.jpg\" alt=\"Dr Fields With Another Doc, Our Translator And A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-554\" /> Dr Fields With Another Doc, Our Translator And A Patient[/caption]\r\n</div>\r\n\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_553\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-other-docs-at-the-final-dinner.jpg\" alt=\"Dr Fields With Other Docs At The Final Dinner\" width=\"255\" height=\"166\" class=\"size-full wp-image-553\" /> Dr Fields With Other Docs At The Final Dinner[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_552\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-a-helper-and-Dr-Bones.jpg\" alt=\"Dr Fields, A Helper And Dr Bones!\" width=\"255\" height=\"191\" class=\"size-full wp-image-552\" /> Dr Fields, A Helper And Dr Bones![/caption]\r\n</div>\r\n\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_551\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Having-dinner-in-Olanchito.jpg\" alt=\"Having Dinner In Olanchito\" width=\"255\" height=\"191\" class=\"size-full wp-image-551\" /> Having Dinner In Olanchito[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_550\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-street-scene-in-the-main-city.jpg\" alt=\"Local Street Scene In The Main City\" width=\"255\" height=\"191\" class=\"size-full wp-image-550\" /> Local Street Scene In The Main City[/caption]\r\n</div>\r\n\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_549\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-bigger-city.jpg\" alt=\"The Bigger City\" width=\"255\" height=\"191\" class=\"size-full wp-image-549\" /> The Bigger City[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_548\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Treating-a-patient-with-a-student-doc.jpg\" alt=\"Treating A Patient With A Student Doc\" width=\"255\" height=\"191\" class=\"size-full wp-image-548\" /> Treating A Patient With A Student Doc[/caption]\r\n</div>\r\n\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_547\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/With-a-local-translator.jpg\" alt=\"With A Local Translator\" width=\"255\" height=\"191\" class=\"size-full wp-image-547\" /> With A Local Translator[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_546\" align=\"aligncenter\" width=\"200\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/With-Disbel-Mansilla-DDS-and-her-staff.jpg\" alt=\"With Disbel Mansilla, Dds And Her Staff\" width=\"200\" height=\"191\" class=\"size-full wp-image-546\" /> With Disbel Mansilla, Dds And Her Staff[/caption]\r\n</div>\r\n','Honduras 2011','','inherit','closed','closed','','543-revision-v1','','','2019-06-08 07:42:07','2019-06-08 07:42:07','',543,'https://www.drfields.com/uncategorized/543-revision-v1/',0,'revision','',0),(569,8,'2019-06-08 07:42:59','2019-06-08 07:42:59','&nbsp;\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_563\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/With-two-other-student-docs-and-a-patient.jpg\" alt=\"With Two Other Student Docs And A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-563\" /> With Two Other Student Docs And A Patient[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_562\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/With-a-local-translator-a-student-doc-from-Italy-and-a-patient.jpg\" alt=\"With A Local Translator, A Student Doc From Italy And A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-562\" /> With A Local Translator, A Student Doc From Italy And A Patient[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_561\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Teaching-a-doc.jpg\" alt=\"Teaching A Doc\" width=\"255\" height=\"191\" class=\"size-full wp-image-561\" /> Teaching A Doc[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_560\" align=\"aligncenter\" width=\"191\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-the-dentist-Dr-Mansilla.jpg\" alt=\"Dr Fields With The Dentist, Dr Mansilla\" width=\"191\" height=\"191\" class=\"size-full wp-image-560\" /> Dr Fields With The Dentist, Dr Mansilla[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_559\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-Mary-Doherty-HHF-Operations-Director.jpg\" alt=\"Dr Fields And Mary Doherty, Hhf Operations Director\" width=\"255\" height=\"191\" class=\"size-full wp-image-559\" /> Dr Fields And Mary Doherty, Hhf Operations Director[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_558\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-Olanchito-group.jpg\" alt=\"The Olanchito Group\" width=\"255\" height=\"191\" class=\"size-full wp-image-558\" /> The Olanchito Group[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_557\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-helps-out-the-dentist.jpg\" alt=\"Dr Fields Helps Out The Dentist!\" width=\"255\" height=\"191\" class=\"size-full wp-image-557\" /> Dr Fields Helps Out The Dentist![/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_556\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-a-student-doc-and-a-patient.jpg\" alt=\"Dr Fields With A Student Doc And A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-556\" /> Dr Fields With A Student Doc And A Patient[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_555\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-another-doc-and-a-helper.jpg\" alt=\"Dr Fields With Another Doc And A Helper\" width=\"255\" height=\"191\" class=\"size-full wp-image-555\" /> Dr Fields With Another Doc And A Helper[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_554\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-another-doc-our-translator-and-a-patient.jpg\" alt=\"Dr Fields With Another Doc, Our Translator And A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-554\" /> Dr Fields With Another Doc, Our Translator And A Patient[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_553\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-other-docs-at-the-final-dinner.jpg\" alt=\"Dr Fields With Other Docs At The Final Dinner\" width=\"255\" height=\"166\" class=\"size-full wp-image-553\" /> Dr Fields With Other Docs At The Final Dinner[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_552\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-a-helper-and-Dr-Bones.jpg\" alt=\"Dr Fields, A Helper And Dr Bones!\" width=\"255\" height=\"191\" class=\"size-full wp-image-552\" /> Dr Fields, A Helper And Dr Bones![/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_551\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Having-dinner-in-Olanchito.jpg\" alt=\"Having Dinner In Olanchito\" width=\"255\" height=\"191\" class=\"size-full wp-image-551\" /> Having Dinner In Olanchito[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_550\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-street-scene-in-the-main-city.jpg\" alt=\"Local Street Scene In The Main City\" width=\"255\" height=\"191\" class=\"size-full wp-image-550\" /> Local Street Scene In The Main City[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_549\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-bigger-city.jpg\" alt=\"The Bigger City\" width=\"255\" height=\"191\" class=\"size-full wp-image-549\" /> The Bigger City[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_548\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Treating-a-patient-with-a-student-doc.jpg\" alt=\"Treating A Patient With A Student Doc\" width=\"255\" height=\"191\" class=\"size-full wp-image-548\" /> Treating A Patient With A Student Doc[/caption]\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_547\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/With-a-local-translator.jpg\" alt=\"With A Local Translator\" width=\"255\" height=\"191\" class=\"size-full wp-image-547\" /> With A Local Translator[/caption]\r\n</div>\r\n<div class=\"col-md-5\">\r\n[caption id=\"attachment_546\" align=\"aligncenter\" width=\"200\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/With-Disbel-Mansilla-DDS-and-her-staff.jpg\" alt=\"With Disbel Mansilla, Dds And Her Staff\" width=\"200\" height=\"191\" class=\"size-full wp-image-546\" /> With Disbel Mansilla, Dds And Her Staff[/caption]\r\n</div>\r\n','Honduras 2011','','inherit','closed','closed','','543-revision-v1','','','2019-06-08 07:42:59','2019-06-08 07:42:59','',543,'https://www.drfields.com/uncategorized/543-revision-v1/',0,'revision','',0),(572,8,'2019-06-08 07:47:20','2019-06-08 07:47:20','&nbsp;\r\n<h5>Click links below for Honduras 2013 pictures</h5>\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\" target=\"_parent\" rel=\"noopener noreferrer\">Honduras 2013 - The Final Party</a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Olanchito - The Town</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Mid Weekend</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - In The Clinic</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Before and after</span></a>','Honduras 2013','','publish','open','closed','','honduras-2013','','','2022-11-01 18:02:13','2022-11-01 18:02:13','',0,'https://www.drfields.com/?p=572',0,'post','',0),(573,8,'2019-06-08 07:47:20','2019-06-08 07:47:20','<h5>Click links below for Honduras 2013 pictures</h5>\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/The-Final-Party\" target=\"_parent\" rel=\"noopener noreferrer\">Honduras 2013 - The Final Party</a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/Olanchito-The-Town\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Olanchito - The Town</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/Mid-Weekend\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Mid Weekend</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/In-the-Clinic\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - In The Clinic</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/Before-and-After\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Before and after</span></a>','Honduras 2013','','inherit','closed','closed','','572-revision-v1','','','2019-06-08 07:47:20','2019-06-08 07:47:20','',572,'https://www.drfields.com/uncategorized/572-revision-v1/',0,'revision','',0),(574,8,'2019-06-08 07:47:55','2019-06-08 07:47:55','&nbsp;\r\n\r\n<h5>Click links below for Honduras 2013 pictures</h5>\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/The-Final-Party\" target=\"_parent\" rel=\"noopener noreferrer\">Honduras 2013 - The Final Party</a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/Olanchito-The-Town\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Olanchito - The Town</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/Mid-Weekend\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Mid Weekend</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/In-the-Clinic\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - In The Clinic</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/Before-and-After\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Before and after</span></a>','Honduras 2013','','inherit','closed','closed','','572-revision-v1','','','2019-06-08 07:47:55','2019-06-08 07:47:55','',572,'https://www.drfields.com/uncategorized/572-revision-v1/',0,'revision','',0),(577,8,'2022-12-02 06:01:38','2019-06-08 07:51:26',' ','','','publish','closed','closed','','577','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=577',24,'nav_menu_item','',0),(578,8,'2022-12-02 06:01:38','2019-06-08 07:51:26',' ','','','publish','closed','closed','','578','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=578',25,'nav_menu_item','',0),(580,8,'2019-06-08 07:53:43','2019-06-08 07:53:43','<strong>Wilbur - Low Back (video here)</strong>\r\n<h4>Prolotherapy Back and Pelvic Treatment</h4>\r\nOne of the main reasons patients come to OrthoRegen is for back relief with our Prolotherapy Back Treatment. Back or pelvic injury is also the main reason our patients say, they have had to stop participation in sports.\r\n\r\nMany of the traditional treatments for back pain can actually be the cause for continuing problems. If you have tried NSAID medications (like Ibuprofen or Naproxen), nerve blocks, acupuncture or chiropractic adjustments, and have not found relief, join our growing patient list of people who have benefited from comprehensive treatment.\r\n<h4>Does Prolotherapy Back Treatment Work?</h4>\r\nWe are very successful at treating people for back and pelvic pain with our Prolotherapy Back treatment. We get them back to their sport without surgery, without medications, and without extended time off! To properly treat the lower back, the whole area needs to be treated. Especially in cases of sport injury trauma, patients find better and faster relief from the techniques used here at OrthoRegen. We will work to rehabilitate the whole athlete through nutritional and exercise regimens.\r\n\r\nIn our experience, the preferred way to treat back and pelvic with a comprehensive program of <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. In that way, patients see long term optimal results.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common back and pelvic pains and injuries that we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Back pain</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Buttock pain</li>\r\n 	<li>Coccyx pain</li>\r\n 	<li>Degenerated discs</li>\r\n 	<li>Herniated discs</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Failed back fusion pain</li>\r\n 	<li>Failed back surgery syndrome</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>Muscle spasms</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Pelvic pain</li>\r\n 	<li>Retrolisthesis</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tailbone pain</li>\r\n 	<li>Thoracic spine pain</li>\r\n 	<li>SI instability</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Yoga injury</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy back treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-310-956-0569\">(310) 956-0569</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Prolotherapy Back Testimonials page</a>.','Back Injury Treatment','','inherit','closed','closed','','567-revision-v1','','','2019-06-08 07:53:43','2019-06-08 07:53:43','',567,'https://www.drfields.com/uncategorized/567-revision-v1/',0,'revision','',0),(582,8,'2019-06-08 08:00:59','2019-06-08 08:00:59','<div>\r\n<h2>Elbow Injury Treatment</h2>\r\n</div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer- Elbow\"]\r\n<strong>Jennifer - Elbow</strong></div>\r\n<h4>Elbow Injury Treatment</h4>\r\nOrthoRegen<sup>®</sup> offers you the most effective elbow injury treatment. Plus, this natural treatment avoids the long-term side effects that may be associated with NSAIDs and cortisone injections. Our comprehensive Regenerative Orthopedic treatments such as Stem Cell Therapy, PRP, and <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> elbow treatments offer our patients a non-surgical solution for their elbow pain and injuries. From future Olympians to weekend warriors, we can help you return to your sport without surgery, without pain medications, and without extended periods of time away from your sport.\r\n<h4>Why Regenerative Orthopedics for Elbow Injury Treatments?</h4>\r\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an experienced marathoner, long-distance cyclist, and swimmer. He has participated in Triathlons as well as Ironman competitions. And since he is a triathlete himself, he understands the passion that athletes have to train and compete. He has also experienced injuries himself and utilized Regenerative Orthopedics to get back in the game.\r\n\r\nAnd being both a medical doctor and chiropractor gives him more insight as he cares for your particular need. In our experience, comprehensive Regenerative Orthopedics is an effective elbow injury treatment and the best therapy for long-term positive results.\r\n\r\n<a class=\"buttonlink\" href=\"http://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common elbow pain and injuries we treat with comprehensive Regenerative Orthopedics include:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Elbow pain</a></li>\r\n 	<li>Elbow sprain</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>Lateral epicondylitis</li>\r\n 	<li>Medial epicondylitis</li>\r\n 	<li>Post-surgical elbow pain</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendinosis</li>\r\n 	<li>Tennis elbow</li>\r\n</ul>\r\n<h4>Are You A Candidate for Regenerative Orthopedics?</h4>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy elbow treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/ \">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our non-surgical treatments, or for a second opinion for a recommended surgery, contact us for a consultation at OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nWant to hear stories from some of our patients? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials/\"> Testimonials page</a>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>','Elbow Injury Treatment','','publish','open','closed','','elbow-injury-treatment','','','2021-06-11 18:28:52','2021-06-11 18:28:52','',0,'https://www.drfields.com/?p=582',0,'post','',0),(583,8,'2019-06-08 07:57:05','2019-06-08 07:57:05','&nbsp;\r\n<h4>Honduras 2013</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\">The Final Party</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\">Olanchito - The Town</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\">Mid Weekend</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\">In The Clinic</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\">Before and After</a></li>\r\n</ul>\r\n<h4>The Final Party</h4>','The Final Party','','draft','open','closed','','the-final-party','','','2021-07-07 23:02:38','2021-07-07 23:02:38','',0,'https://www.drfields.com/?p=583',0,'post','',0),(584,8,'2019-06-08 07:57:05','2019-06-08 07:57:05','&nbsp;\r\n\r\n<h4>Honduras 2013</h4>\r\n\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Philanthropy/Honduras-2013/The-Final-Party\">The Final Party</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Philanthropy/Honduras-2013/Olanchito-The-Town\">Olanchito - The Town</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Philanthropy/Honduras-2013/Mid-Weekend\">Mid Weekend</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Philanthropy/Honduras-2013/In-the-Clinic\">In The Clinic</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Philanthropy/Honduras-2013/Before-and-After\">Before and After</a></li>\r\n</ul>\r\n\r\n<h4>The Final Party</h4>','The Final Party','','inherit','closed','closed','','583-revision-v1','','','2019-06-08 07:57:05','2019-06-08 07:57:05','',583,'https://www.drfields.com/uncategorized/583-revision-v1/',0,'revision','',0),(585,8,'2019-06-08 07:58:05','2019-06-08 07:58:05','<h4>Honduras 2013</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\">The Final Party</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\">Olanchito - The Town</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\">Mid Weekend</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\">In The Clinic</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\">Before and After</a></li>\r\n</ul>\r\n<h4>Olanchito The Town</h4>\r\n<h4></h4>','Olanchito The Town','','draft','open','closed','','olanchito-the-town','','','2021-07-07 23:02:07','2021-07-07 23:02:07','',0,'https://www.drfields.com/?p=585',0,'post','',0),(586,8,'2019-06-08 07:58:05','2019-06-08 07:58:05','','Olanchito The Town','','inherit','closed','closed','','585-revision-v1','','','2019-06-08 07:58:05','2019-06-08 07:58:05','',585,'https://www.drfields.com/uncategorized/585-revision-v1/',0,'revision','',0),(587,8,'2019-06-08 07:58:25','2019-06-08 07:58:25','&nbsp;\r\n<h4>Honduras 2013</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\">The Final Party</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\">Olanchito - The Town</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\">Mid Weekend</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\">In The Clinic</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\">Before and After</a></li>\r\n</ul>\r\n<h4>Mid Weekend</h4>','Mid Weekend','','draft','open','closed','','mid-weekend','','','2021-07-07 23:01:36','2021-07-07 23:01:36','',0,'https://www.drfields.com/?p=587',0,'post','',0),(588,8,'2019-06-08 07:58:25','2019-06-08 07:58:25','','Mid Weekend','','inherit','closed','closed','','587-revision-v1','','','2019-06-08 07:58:25','2019-06-08 07:58:25','',587,'https://www.drfields.com/uncategorized/587-revision-v1/',0,'revision','',0),(589,8,'2019-06-08 07:58:47','2019-06-08 07:58:47','&nbsp;\r\n<h4>Honduras</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\">The Final Party</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\">Olanchito - The Town</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\">Mid Weekend</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\">In The Clinic</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\">Before and After</a></li>\r\n</ul>\r\n<h4>In The Clinic</h4>','In the Clinic','','draft','open','closed','','in-the-clinic','','','2021-07-07 23:01:08','2021-07-07 23:01:08','',0,'https://www.drfields.com/?p=589',0,'post','',0),(590,8,'2019-06-08 07:58:47','2019-06-08 07:58:47','','In the Clinic','','inherit','closed','closed','','589-revision-v1','','','2019-06-08 07:58:47','2019-06-08 07:58:47','',589,'https://www.drfields.com/uncategorized/589-revision-v1/',0,'revision','',0),(591,8,'2019-06-08 07:59:10','2019-06-08 07:59:10','&nbsp;\r\n<h4>Honduras</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\">The Final Party</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\">Olanchito - The Town</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\">Mid Weekend</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\">In The Clinic</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\">Before and After</a></li>\r\n</ul>\r\n<h4>Before and After</h4>','Before and After','','draft','open','closed','','before-and-after','','','2021-07-07 23:00:21','2021-07-07 23:00:21','',0,'https://www.drfields.com/?p=591',0,'post','',0),(592,8,'2019-06-08 07:59:10','2019-06-08 07:59:10','','Before and After','','inherit','closed','closed','','591-revision-v1','','','2019-06-08 07:59:10','2019-06-08 07:59:10','',591,'https://www.drfields.com/uncategorized/591-revision-v1/',0,'revision','',0),(593,8,'2019-06-08 08:00:59','2019-06-08 08:00:59','<strong>Jennifer - Elbow (video here)\r\n</strong>\r\n<h4>Prolotherapy Elbow Treatment</h4>\r\nOrthoRegen offers you the most effective treatment for elbow injuries. Avoid the long term side effects of NSAID and cortisone injections with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> elbow treatment. We offer our patients experience and knowledgeable treatment for their elbow pain and injuries. From future Olympians to weekend warriors, we can help you return to your sport without surgery, without pain medications and without extended periods of time away from your sport.\r\n<h4>Why Prolotherapy Elbow Treatment with Dr. Fields?</h4>\r\nDr. Peter Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, is an experienced marathoner, long-distance cyclist and swimmer. He has participated in Triathlons as well as Ironman competitions. He understands the passion that athletes have to train and compete. In our experience, our comprehensive Prolotherapy elbow treatment is the best way to treat elbow injuries for long term positive results.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common elbow pain and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li><a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Elbow-Pain\">Elbow pain</a></li>\r\n 	<li>Elbow sprain</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>Lateral epicondylitis</li>\r\n 	<li>Medial epicondylitis</li>\r\n 	<li>Post-surgical elbow pain</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendinosis</li>\r\n 	<li>Tennis elbow</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy elbow treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-424-325-6695\">(310) 928-2886</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Prolotherapy Elbow Testimonials page</a>.','Elbow Injury Treatment','','inherit','closed','closed','','582-revision-v1','','','2019-06-08 08:00:59','2019-06-08 08:00:59','',582,'https://www.drfields.com/uncategorized/582-revision-v1/',0,'revision','',0),(594,8,'2019-06-08 08:01:15','2019-06-08 08:01:15','&nbsp;\r\n\r\n<h4>Honduras 2013</h4>\r\n\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\">The Final Party</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\">Olanchito - The Town</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\">Mid Weekend</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\">In The Clinic</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\">Before and After</a></li>\r\n</ul>\r\n\r\n<h4>The Final Party</h4>','The Final Party','','inherit','closed','closed','','583-revision-v1','','','2019-06-08 08:01:15','2019-06-08 08:01:15','',583,'https://www.drfields.com/uncategorized/583-revision-v1/',0,'revision','',0),(595,8,'2019-06-08 08:11:07','2019-06-08 08:11:07','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\r\n<strong>Joel - Foot</strong></div>\r\n<h4>Prolotherapy for Foot and Ankle Injuries</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Or are you looking for an alternative to surgery for your chronic ankle sprains? Every day at OrthoRegen<sup>®</sup> , we use comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> for foot and ankle injuries. And nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n<h4>Why Should You Choose Prolotherapy Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  And like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. So if you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. And if you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> at OrthoRegen<sup>®</sup> are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Instability of the foot or ankle</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials/\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials/\">Ankle Testimonials</a> pages.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>','Prolotherapy for Foot Injuries','','publish','open','closed','','prolotherapy-for-foot-and-ankle-injuries','','','2021-01-26 23:54:29','2021-01-26 23:54:29','',0,'https://www.drfields.com/?p=595',0,'post','',0),(596,8,'2019-06-08 08:01:47','2019-06-08 08:01:47','<h4>Honduras 2013</h4>\r\n\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\">The Final Party</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\">Olanchito - The Town</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\">Mid Weekend</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\">In The Clinic</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\">Before and After</a></li>\r\n</ul>\r\n\r\n<h4>Olanchito The Townh4>','Olanchito The Town','','inherit','closed','closed','','585-revision-v1','','','2019-06-08 08:01:47','2019-06-08 08:01:47','',585,'https://www.drfields.com/uncategorized/585-revision-v1/',0,'revision','',0),(597,8,'2019-06-08 08:02:39','2019-06-08 08:02:39','&nbsp;\r\n\r\n<h4>Honduras 2013</h4>\r\n\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\">The Final Party</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\">Olanchito - The Town</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\">Mid Weekend</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\">In The Clinic</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\">Before and After</a></li>\r\n</ul>\r\n\r\n<h4>Mid Weekend</h4>','Mid Weekend','','inherit','closed','closed','','587-revision-v1','','','2019-06-08 08:02:39','2019-06-08 08:02:39','',587,'https://www.drfields.com/uncategorized/587-revision-v1/',0,'revision','',0),(598,8,'2019-06-08 08:03:05','2019-06-08 08:03:05','&nbsp;\r\n\r\n<h4>Honduras 2013</h4>\r\n\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\">The Final Party</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\">Olanchito - The Town</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\">Mid Weekend</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\">In The Clinic</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\">Before and After</a></li>\r\n</ul>\r\n\r\n<h4>In The Clinic</h4>','In the Clinic','','inherit','closed','closed','','589-revision-v1','','','2019-06-08 08:03:05','2019-06-08 08:03:05','',589,'https://www.drfields.com/uncategorized/589-revision-v1/',0,'revision','',0),(599,8,'2019-06-08 08:03:31','2019-06-08 08:03:31','&nbsp;\r\n\r\n<h4>Honduras 2013</h4>\r\n\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\">The Final Party</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\">Olanchito - The Town</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\">Mid Weekend</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\">In The Clinic</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\">Before and After</a></li>\r\n</ul>\r\n\r\n<h4>Before and After</h4>','Before and After','','inherit','closed','closed','','591-revision-v1','','','2019-06-08 08:03:31','2019-06-08 08:03:31','',591,'https://www.drfields.com/uncategorized/591-revision-v1/',0,'revision','',0),(600,8,'2019-06-08 08:04:25','2019-06-08 08:04:25','&nbsp;\r\n\r\n<h5>Click links below for Honduras 2013 pictures</h5>\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\" target=\"_parent\" rel=\"noopener noreferrer\">Honduras 2013 - The Final Party</a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/Olanchito-The-Town\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Olanchito - The Town</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/Mid-Weekend\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Mid Weekend</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/In-the-Clinic\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - In The Clinic</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/Before-and-After\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Before and after</span></a>','Honduras 2013','','inherit','closed','closed','','572-revision-v1','','','2019-06-08 08:04:25','2019-06-08 08:04:25','',572,'https://www.drfields.com/uncategorized/572-revision-v1/',0,'revision','',0),(601,8,'2019-06-08 08:04:45','2019-06-08 08:04:45','&nbsp;\r\n\r\n<h5>Click links below for Honduras 2013 pictures</h5>\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\" target=\"_parent\" rel=\"noopener noreferrer\">Honduras 2013 - The Final Party</a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Olanchito - The Town</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/Mid-Weekend\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Mid Weekend</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/In-the-Clinic\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - In The Clinic</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/Before-and-After\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Before and after</span></a>','Honduras 2013','','inherit','closed','closed','','572-revision-v1','','','2019-06-08 08:04:45','2019-06-08 08:04:45','',572,'https://www.drfields.com/uncategorized/572-revision-v1/',0,'revision','',0),(602,8,'2019-06-08 08:05:03','2019-06-08 08:05:03','&nbsp;\r\n\r\n<h5>Click links below for Honduras 2013 pictures</h5>\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\" target=\"_parent\" rel=\"noopener noreferrer\">Honduras 2013 - The Final Party</a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Olanchito - The Town</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Mid Weekend</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/In-the-Clinic\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - In The Clinic</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/Before-and-After\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Before and after</span></a>','Honduras 2013','','inherit','closed','closed','','572-revision-v1','','','2019-06-08 08:05:03','2019-06-08 08:05:03','',572,'https://www.drfields.com/uncategorized/572-revision-v1/',0,'revision','',0),(603,8,'2019-06-08 08:05:26','2019-06-08 08:05:26','&nbsp;\r\n\r\n<h5>Click links below for Honduras 2013 pictures</h5>\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\" target=\"_parent\" rel=\"noopener noreferrer\">Honduras 2013 - The Final Party</a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Olanchito - The Town</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Mid Weekend</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - In The Clinic</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/Philanthropy/Honduras-2013/Before-and-After\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Before and after</span></a>','Honduras 2013','','inherit','closed','closed','','572-revision-v1','','','2019-06-08 08:05:26','2019-06-08 08:05:26','',572,'https://www.drfields.com/uncategorized/572-revision-v1/',0,'revision','',0),(604,8,'2019-06-08 08:05:47','2019-06-08 08:05:47','&nbsp;\r\n\r\n<h5>Click links below for Honduras 2013 pictures</h5>\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\" target=\"_parent\" rel=\"noopener noreferrer\">Honduras 2013 - The Final Party</a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Olanchito - The Town</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Mid Weekend</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - In The Clinic</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Before and after</span></a>','Honduras 2013','','inherit','closed','closed','','572-revision-v1','','','2019-06-08 08:05:47','2019-06-08 08:05:47','',572,'https://www.drfields.com/uncategorized/572-revision-v1/',0,'revision','',0),(606,8,'2019-06-08 08:11:07','2019-06-08 08:11:07','<strong>Joel - Foot (video here)</strong>\r\n<h4>Prolotherapy Foot and Ankle Treatment</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Are you looking for an alternative to surgery for your chronic ankle sprains? Every day, OrthoRegen treats people with foot and ankle injuries by the use of comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> foot treatments. Nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n\r\n<h4>Why Prolotherapy Foot Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  Like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. If you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. If you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation (424) 325-6695.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Ankle instability</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle Testimonials</a> pages.','Foot Injury Treatment','','inherit','closed','closed','','595-revision-v1','','','2019-06-08 08:11:07','2019-06-08 08:11:07','',595,'https://www.drfields.com/uncategorized/595-revision-v1/',0,'revision','',0),(608,8,'2019-06-08 08:13:27','2019-06-08 08:13:27','<strong>Joel - Foot (video here)</strong>\r\n<h4>Prolotherapy Foot and Ankle Treatment</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Are you looking for an alternative to surgery for your chronic ankle sprains? Every day, OrthoRegen treats people with foot and ankle injuries by the use of comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> foot treatments. Nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n\r\n<h4>Why Prolotherapy Foot Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  Like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. If you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. If you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Ankle instability</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle Testimonials</a> pages.','Foot Injury Treatment','','inherit','closed','closed','','595-revision-v1','','','2019-06-08 08:13:27','2019-06-08 08:13:27','',595,'https://www.drfields.com/uncategorized/595-revision-v1/',0,'revision','',0),(609,8,'2019-06-08 08:17:36','2019-06-08 08:17:36','<h2><span id=\"dnn_ctr420_dnnTITLE_titleLabel\" class=\"TitleH2\">Volunteering and Philanthropy</span></h2>\r\n<strong>Peter A. Fields, MD, DC enjoys volunteering as a medical physician in third world countries</strong>\r\n\r\nHow rewarding it is to give of our time and services to help those in need. Peter A. Fields, MD, DC has had the honor of volunteering with the <a href=\"http://www.hacketthemwall.org/WELCOME.html\" target=\"_blank\" rel=\"noopener noreferrer\">Hackett-Hemwall Foundation</a>, the world’s largest teaching and education organization for Prolotherapy.\r\n\r\nTogether with approximately 75 other physicians from the US, Mexico, Puerto Rico, Germany, Italy, South Africa, and other countries, Dr. Fields has traveled to an annual clinic in Honduras. He has been honored to be one of the 15 Faculty instructors with the foundation. Of the 75 physicians going to Honduras- the rest are students. They are there to learn or to improve their Prolotherapy skills all while helping those in need.\r\n\r\nDr. Fields says that providing to those in need has always been in his heart and when the opportunity arose to do so, he was excited.  And the patients were so grateful and appreciative. Many traveled many hours or even days and then waited all day for treatment. Most present with chronic knee, shoulder, low back, neck, ankle, foot, or other joint pain, often induced by working long hours in manual labor.\r\n<h3>Honduras</h3>\r\n[caption id=\"attachment_4779\" align=\"alignnone\" width=\"255\"]<img class=\"size-full wp-image-4779\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032-1.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" /> Honduras Clinic[/caption]\r\n\r\nHonduras is the third lowest-income country in the Western Hemisphere, only behind Haiti and Bolivia.  Access to health care is severely limited. This is why every year hundreds of local residents traveled by bicycle, foot, or bus to the free clinics sponsored by the Foundation in three small towns.\r\n\r\n[caption id=\"attachment_4780\" align=\"alignnone\" width=\"255\"]<img class=\"size-full wp-image-4780\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961-1.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" /> Friends and Physicians[/caption]\r\n\r\nHere the Foundation provides medical care and treatment for individuals who otherwise would not receive it. Based at the Red Cross Centers in each of the above cities, the clinicians treat hundreds of patients suffering from acute and chronic joint problems as well as and arthritis with Prolotherapy. Also known as regenerative or reconstructive therapy, Prolotherapy is a recognized non-surgical orthopedic procedure that stimulates the body\'s natural healing. It stimulates areas with targeted injections to strengthen joints weakened by overuse, arthritis, normal wear, and tear or trauma.\r\n\r\n<img class=\"size-medium wp-image-4791 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-186x500.png\" alt=\"Honduras 2011\" width=\"186\" height=\"500\" />\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Mexico</h3>\r\nIn January of 2007, the Foundation opened its first clinic ever in Guadalajara, Mexico.\r\nAlthough not a rural as Honduras, the people there had never had the opportunity to experience Prolotherapy.  For this first clinic, only twelve instructor physicians were asked to go –  and Dr. Fields was one of those that were selected.  He found this experience just as rewarding.\r\n\r\n[caption id=\"attachment_4785\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4785\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Guadalajara-Mexico-2006-500x393.png\" alt=\"Guadalajara Mexico 2006\" width=\"500\" height=\"393\" /> Guadalajara, Mexico [/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Peter A. Fields, MD, DC Volunteering and Philanthropy Overview','','publish','open','closed','','peter-a-fields-md-dc-volunteering-and-philanthropy-overview','','','2021-07-07 23:17:56','2021-07-07 23:17:56','',0,'https://www.drfields.com/?p=609',0,'post','',0),(610,8,'2019-06-08 08:17:36','2019-06-08 08:17:36','<h4><span id=\"dnn_ctr420_dnnTITLE_titleLabel\" class=\"TitleH2\">Philanthropy</span></h4>\r\n\r\n\r\n<strong>Dr. Fields volunteers his time as a medical physician in third world countries</strong>\r\n\r\nPeter A. Fields, MD, DC volunteers his time and services to help those in need. He volunteers with the <a href=\"http://www.hacketthemwall.org/WELCOME.html\" target=\"_blank\" rel=\"noopener noreferrer\">Hackett-Hemwall Foundation</a>, the world’s largest teaching and education organization for Prolotherapy.\r\n\r\nTogether with other approximately 75 other physicians from the US, Mexico, Puerto Rico, Germany, Italy, South Africa and other countries, Dr Fields travels yearly to Honduras.\r\n\r\nDr Fields is a Faculty Instructor with the foundation. Of the 75 physicians going to Honduras, 15 of them are instructors - the rest are students - there to learn or improve their Prolotherapy skills all while helping those in need.\r\n\r\nDr. Fields says that providing to those in need has always been in his heart and when the opportunity arose to do so, he was excited.  The patients were so grateful and appreciative. Many traveled many hours or even days and then wait all day for treatment. Most present with chronic knee, shoulder, low back, neck, ankle, foot or other joint pain, often induced by working long hours in manual labor.\r\n\r\nHonduras is the third lowest-income countries in the Western Hemisphere, only behind Haiti and Bolivia.  Access to health care is severely limited. This is why every year hundreds of local residents traveled by bicycle, foot or bus to the free clinics sponsored by the Foundation in three small towns.\r\n\r\nHere the Foundation provides medical care and treatment for individuals who otherwise would not receive it. Based at the Red Cross Centers in each of the above cities, Dr Fields and his colleagues treat hundreds of patients suffering from acute and chronic joint problems as well as and arthritis with Prolotherapy. Also known as regenerative or reconstructive therapy, Prolotherapy is a recognized non-surgical  orthopedic procedure that stimulates the body\'s natural healing. It stimulates areas with targeted injections to strengthen  joints weakened by overuse, arthritis, normal wear and tear or trauma.\r\n\r\nIn January of 2007, the Foundation opened its first clinic ever in Guadalajara Mexico.\r\nAlthough not a rural as Honduras, the people there had never had the opportunity to experience Prolotherapy.  For this First clinic only twelve instructor physicians were asked to go –  and Dr. Fields was one of those that were selected.  He found this experience just as rewarding.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n','Philanthropy Overview','','inherit','closed','closed','','609-revision-v1','','','2019-06-08 08:17:36','2019-06-08 08:17:36','',609,'https://www.drfields.com/uncategorized/609-revision-v1/',0,'revision','',0),(611,8,'2022-12-02 06:01:38','2019-06-08 08:18:57',' ','','','publish','closed','closed','','611','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=611',23,'nav_menu_item','',0),(615,8,'2019-06-08 08:25:36','2019-06-08 08:25:36','<h2>Hand Injury Treatment</h2>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Hand Injury Treatment Suzie Wrist\"]\r\n<strong>Suzie - Wrist</strong></div>\r\n<h4>Prolotherapy Hand and Wrist Injuries and Treatment</h4>\r\nWhether you suffer from a sprained finger from football or baseball or wrist pain from tennis or golf, OrthoRegen<sup>®</sup> treats numerous finger, hand, and wrist injuries with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/ \">Prolotherapy</a> hand treatments. We can treat your pain or injury without surgery, without pain medications, or without extended time away from training and competition.\r\n\r\nIn our experience, comprehensive Prolotherapy can successfully treat pain in your fingers, hands and wrists, with optimal long-term results. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, can consult with you to determine if you are a candidate for <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Because of his participation in Triathlons and Ironman competitions, he understands your desire to return quickly to the sports in which you participate.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Common Hand and Wrist Injuries are Treatable by Prolotherapy</h4>\r\nThe most common finger, wrist, and hand pain and injuries we treat with comprehensive Prolotherapy are:\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Baseball injuries</li>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Finger pain</li>\r\n 	<li>Football injuries</li>\r\n 	<li>Golf injuries</li>\r\n 	<li>Hand pain</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Sprain injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tennis injuries</li>\r\n 	<li>Thumb pain</li>\r\n 	<li>Wrist pain</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy hand injury treatments, <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy,</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Prolotherapy Hand and Wrist Testimonials page</a>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>','Hand Injury Treatment','','publish','open','closed','','hand-injury-treatment','','','2023-03-15 19:24:53','2023-03-15 19:24:53','',0,'https://www.drfields.com/?p=615',0,'post','',0),(616,8,'2019-06-08 08:22:30','2019-06-08 08:22:30','Dscn1059','Dscn1059','','inherit','open','closed','','dscn1059','','','2019-06-08 08:25:12','2019-06-08 08:25:12','',627,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1059.jpg',0,'attachment','image/jpeg',0),(618,8,'2019-06-08 08:22:31','2019-06-08 08:22:31','Dscn1053','Dscn1053','','inherit','open','closed','','dscn1053','','','2019-06-08 08:25:03','2019-06-08 08:25:03','',627,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1053.jpg',0,'attachment','image/jpeg',0),(619,8,'2019-06-08 08:22:32','2019-06-08 08:22:32','Dscn1150','Dscn1150','','inherit','open','closed','','dscn1150','','','2019-06-08 08:24:55','2019-06-08 08:24:55','',627,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1150.jpg',0,'attachment','image/jpeg',0),(620,8,'2019-06-08 08:22:33','2019-06-08 08:22:33','Dscn1154','Dscn1154','','inherit','open','closed','','dscn1154','','','2019-06-08 08:24:49','2019-06-08 08:24:49','',627,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1154.jpg',0,'attachment','image/jpeg',0),(621,8,'2019-06-08 08:22:34','2019-06-08 08:22:34','Dscn0947','Dscn0947','','inherit','open','closed','','dscn0947','','','2019-06-08 08:24:35','2019-06-08 08:24:35','',627,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN0947.jpg',0,'attachment','image/jpeg',0),(622,8,'2019-06-08 08:22:35','2019-06-08 08:22:35','Dscn0938','Dscn0938','','inherit','open','closed','','dscn0938','','','2019-06-08 08:24:20','2019-06-08 08:24:20','',627,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN0938.jpg',0,'attachment','image/jpeg',0),(623,8,'2019-06-08 08:22:35','2019-06-08 08:22:35','Dscn1032','Dscn1032','','inherit','open','closed','','dscn1032','','','2019-06-08 08:24:13','2019-06-08 08:24:13','',627,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032.jpg',0,'attachment','image/jpeg',0),(624,8,'2019-06-08 08:22:37','2019-06-08 08:22:37','Dscn1134','Dscn1134','','inherit','open','closed','','dscn1134','','','2019-06-08 08:24:05','2019-06-08 08:24:05','',627,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1134.jpg',0,'attachment','image/jpeg',0),(625,8,'2019-06-08 08:22:38','2019-06-08 08:22:38','Dscn1029','Dscn1029','','inherit','open','closed','','dscn1029','','','2019-06-08 08:23:58','2019-06-08 08:23:58','',627,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1029.jpg',0,'attachment','image/jpeg',0),(626,8,'2019-06-08 08:22:39','2019-06-08 08:22:39','Dscn0961','Dscn0961','','inherit','open','closed','','dscn0961','','','2019-06-08 08:23:51','2019-06-08 08:23:51','',627,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961.jpg',0,'attachment','image/jpeg',0),(627,8,'2019-06-08 08:25:16','2019-06-08 08:25:16','&nbsp;\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-626\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" /></div>\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-625\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1029.jpg\" alt=\"Dscn1029\" width=\"255\" height=\"191\" /></div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-624\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1134.jpg\" alt=\"Dscn1134\" width=\"255\" height=\"191\" /></div>\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-623\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" /></div>\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-622\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0938.jpg\" alt=\"Dscn0938\" width=\"255\" height=\"191\" /></div>\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-621\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0947.jpg\" alt=\"Dscn0947\" width=\"255\" height=\"191\" /></div>\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-620\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1154.jpg\" alt=\"Dscn1154\" width=\"191\" height=\"255\" /></div>\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-619\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1150.jpg\" alt=\"Dscn1150\" width=\"191\" height=\"255\" /></div>\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-618\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1053.jpg\" alt=\"Dscn1053\" width=\"255\" height=\"191\" /></div>\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-616\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1059.jpg\" alt=\"Dscn1059\" width=\"255\" height=\"191\" /></div>','Honduras','','publish','open','closed','','honduras-2008','','','2022-11-01 18:02:23','2022-11-01 18:02:23','',0,'https://www.drfields.com/?p=627',0,'post','',0),(628,8,'2019-06-08 08:25:16','2019-06-08 08:25:16','&nbsp;\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-626\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1029.jpg\" alt=\"Dscn1029\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-625\" />\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1134.jpg\" alt=\"Dscn1134\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-624\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-623\" />\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0938.jpg\" alt=\"Dscn0938\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-622\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0947.jpg\" alt=\"Dscn0947\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-621\" />\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1154.jpg\" alt=\"Dscn1154\" width=\"191\" height=\"255\" class=\"aligncenter size-full wp-image-620\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1150.jpg\" alt=\"Dscn1150\" width=\"191\" height=\"255\" class=\"aligncenter size-full wp-image-619\" />\r\n</div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1053.jpg\" alt=\"Dscn1053\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-618\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1059.jpg\" alt=\"Dscn1059\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-616\" />\r\n</div>','Honduras 2008','','inherit','closed','closed','','627-revision-v1','','','2019-06-08 08:25:16','2019-06-08 08:25:16','',627,'https://www.drfields.com/uncategorized/627-revision-v1/',0,'revision','',0),(629,8,'2022-12-02 06:01:38','2019-06-08 08:25:54',' ','','','publish','closed','closed','','629','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=629',26,'nav_menu_item','',0),(630,8,'2019-06-08 08:25:36','2019-06-08 08:25:36','Suzie - Wrist (video here)\r\n<h4>Prolotherapy Hand and Wrist Injuries and Treatment</h4>\r\nWhether you are suffering from a sprained finger from football or baseball, or wrist pain from tennis or golf, OrthoRegen treats numerous finger, hand and wrist injuries with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> hand treatments. We can treat your pain or injury without surgery, without pain medications or without extended time away from training and competition.\r\n\r\nIn our experience, comprehensive Prolotherapy can successfully treat pain in your fingers, hands and wrists, with optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, can consult with you to determine if you are a candidate for <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. Because of his participation in Triathlons and Ironman competitions, he understands your desire to return quickly to the sports in which you participate.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>Common Hand and Wrist Injuries Treatable by Prolotheraphy</h4>\r\nThe most common finger, wrist and hand pain and injuries we treat with comprehensive Prolotherapy are:\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Baseball injuries</li>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Finger pain</li>\r\n 	<li>Football injuries</li>\r\n 	<li>Golf injuries</li>\r\n 	<li>Hand pain</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Sprain injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tennis injuries</li>\r\n 	<li>Thumb pain</li>\r\n 	<li>Wrist pain</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy hand and wrist treatments, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Prolotherapy Hand and Wrist Testimonials page</a>.','Hand Injury Treatment','','inherit','closed','closed','','615-revision-v1','','','2019-06-08 08:25:36','2019-06-08 08:25:36','',615,'https://www.drfields.com/uncategorized/615-revision-v1/',0,'revision','',0),(631,8,'2019-06-08 08:26:39','2019-06-08 08:26:39','&nbsp;\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-626\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1029.jpg\" alt=\"Dscn1029\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-625\" />\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1134.jpg\" alt=\"Dscn1134\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-624\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-623\" />\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0938.jpg\" alt=\"Dscn0938\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-622\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0947.jpg\" alt=\"Dscn0947\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-621\" />\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1154.jpg\" alt=\"Dscn1154\" width=\"191\" height=\"255\" class=\"aligncenter size-full wp-image-620\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1150.jpg\" alt=\"Dscn1150\" width=\"191\" height=\"255\" class=\"aligncenter size-full wp-image-619\" />\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1053.jpg\" alt=\"Dscn1053\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-618\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1059.jpg\" alt=\"Dscn1059\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-616\" />\r\n</div>','Honduras 2008','','inherit','closed','closed','','627-revision-v1','','','2019-06-08 08:26:39','2019-06-08 08:26:39','',627,'https://www.drfields.com/uncategorized/627-revision-v1/',0,'revision','',0),(632,8,'2019-06-08 08:32:53','2019-06-08 08:32:53','<h2>Tommy John Surgery and All Surgeries Come with Risks</h2>\r\n[caption id=\"attachment_4748\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4748\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/tommy-john-500x500.jpg\" alt=\"Tommy John\" width=\"500\" height=\"500\" /> <strong>    Tommy John Surgery Alternative: Regenerative Orthopedics</strong>[/caption]\r\n\r\nMost of us have seen major league baseball players in the news because they have undergone the infamous “Tommy John Surgery.” And many of them have had success, but others have not.  It is important to realize that surgery is risky, even if that surgery is deemed a minor one. Just recently, the George Mason University baseball team lost a 20-year-old student-athlete. The freshman died unexpectedly from complications after a <a href=\"https://www.usatoday.com/story/sports/college/baseball/2021/06/19/george-mason-pitcher-sang-ho-baek-dies-after-tommy-john-surgery/7753020002/\">Tommy John elbow surgery.1 </a>\r\n\r\nTommy John surgery is a common procedure for baseball pitchers. The surgery is used to repair a torn ulnar collateral ligament (UCL) inside the elbow. And the procedure is becoming more common among young pitchers due to the stress pitching puts on the elbow.\r\n<h3><strong>Non-Surgical Alternatives to Tommy John Surgery </strong></h3>\r\nThe good news is that there is a non-surgical alternative to repair the UCL. At OrthoRegen<sup>®</sup>, we offer regenerative medicine techniques that include Prolotherapy, Platelet Rich Plasma Therapy, and Stem Cell Therapy. Our clinicians will recommend the best treatment for your individual case and situation.\r\n<h3>Regenerative Orthopedics for An Injured UCL</h3>\r\nProlotherapy is one type of regenerative therapy utilized at our clinic. It is the use of simple dextrose to heal a partially torn ligament. How does it work? If you are a pitcher with a UCL that is injured, you have most likely lost velocity in your fastball. Plus, the wear-and-tear transpiring in the elbow is probably causing pain on the inside of your arm.\r\n\r\nProlotherapy is not a new treatment. It has been used in clinical practice for more than 80 years to treat various chronic musculoskeletal conditions. And it is a safe and practical option to treat ligament damage. How does it repair an injured ligament? By \"<strong>stimulating the regenerative processes in the joint that will facilitate the restoration of joint stability by augmenting the tensile strength of joint stabilizing structures, such as ligaments.\"2</strong>\r\n<h3>PRP As a Tommy John Surgery Alternative For UCL Injury Repair</h3>\r\nPRP treatment utilizes your own concentrated blood platelets, which are then injected into the injured areas of your elbow. Blood platelets are helpful at repair because they contain growth and healing factors.  PRP can play a great role in injury healing and may be part of the recommendation for repairing the UCL injury.\r\n<h3><strong>Is Regenerative Orthopedics As A Tommy John Surgery Alternative Always An Option?</strong></h3>\r\nRegenerative Orthopedics are great solutions to avoid surgery for the majority of musculoskeletal injuries involving soft tissue, including UCL injuries. Many injuries involve degeneration of the ligament, or even partial tears, and the UCL can be repaired and regenerated with Regenerative Orthopedics. There are times, such as when the ligament is completely torn, that surgery may be the only option. An experienced regenerative medicine clinician will give you a recommendation for the best treatment options after an evaluation.\r\n<h3>OrthoRegen<sup>®</sup> and Peter A. Fields, MD, DC: Experienced Regenerative Orthopedics Clinic and Physician</h3>\r\nIf an ulnar collateral ligament injury has stopped you, get back in the game with Regenerative Orthopedics at OrthoRegen and Peter A. Fields, MD, DC. At OrthoRegen<sup>®</sup> , we offer innovative, non-surgical treatments for many sports injuries and chronic pain problems, including UCL injuries. Without unnecessary medication, prescriptions, cortisone shots, or surgery.  Regenerative Orthopedics can regenerate damaged or worn ligaments and strengthen weakened tendons.\r\n\r\nThe most beneficial aspect of our non-surgical sports injuries treatment is that you can continue to train while you receive the treatments. We treat athletes of all skill and age levels including high school and college athletes, and amateur or professional athletes.\r\n\r\nWe\'re here to help. Call today to schedule an evaluation to receive non-surgical treatment for your sports injuries or UCL injury with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Are You Suffering from other Sports Injuries?</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">K</a><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">nee Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL Tear</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-surgery-a-good-option-for-meniscus-tears/\">Torn Meniscus</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Neck-Pain\">Neck pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/stop-back-pain/\">Back Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/iliotibial-band-syndrome/\">IT Band Injury</a></li>\r\n 	<li>Shin Splints</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/prolotherapy-research/ankle-foot/\">Plantar Fasciitis</a></li>\r\n 	<li><a href=\"https://www.drfields.com/testimonials/hamstring-testimonials/\">Hamstring Strain</a></li>\r\n 	<li>Turf Toe</li>\r\n</ul>\r\n<strong><em> Prolotherapy Sports Injuries Treatment can help you get back in the game – and get back quickly!</em></strong>\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4><em>Prolotherapy Doctor Treats Sports Injuries Without Surgery</em></h4>\r\n<em>Receive treatment for your sports injuries by Ironman Triathlete Peter A. Fields, MD, DC. For over 25 years, Dr. Fields has been active in the sport of Triathlon and an 11 time Ironman finisher. And it is his experience as an athlete that allows him to understand the potential for injury and the demands of sports on the physical body. Plus, he also understands the passion athletes have to get back to training and competition, and their need to recover quickly from injury. He has been there! That\'s why Dr. Fields is known as The Athletic Doc<sup>®</sup>. Wouldn’t you want to be treated by a sports doctor who is also an athlete?</em>\r\n\r\nCheck out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Testimonials page</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>References</h3>\r\n1 Hertel, A.College baseball pitcher Sang Ho Baek dies from complications following Tommy John elbow surgery. USA Today. 2021 Jun 9. https://www.usatoday.com/story/sports/college/baseball/2021/06/19/george-mason-pitcher-sang-ho-baek-dies-after-tommy-john-surgery/7753020002/\r\n\r\n2 Hauser RA, Lackner JB, Steilen-Matias D, Harris DK. A systematic review of dextrose prolotherapy for chronic musculoskeletal pain. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2016 Jan;9:CMAMD-S39160. [<a href=\"https://scholar.google.com/scholar?cluster=6379361293355508471&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]','Tommy John Surgery and All Surgeries Come with Risks','','publish','open','closed','','tommy-john-surgery-and-all-surgeries-come-with-risks','','','2021-06-21 20:04:24','2021-06-21 20:04:24','',0,'https://www.drfields.com/?p=632',0,'post','',0),(633,8,'2019-06-08 08:27:43','2019-06-08 08:27:43','&nbsp;\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-626\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1029.jpg\" alt=\"Dscn1029\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-625\" />\r\n</div><br>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1134.jpg\" alt=\"Dscn1134\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-624\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-623\" />\r\n</div><br>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0938.jpg\" alt=\"Dscn0938\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-622\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0947.jpg\" alt=\"Dscn0947\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-621\" />\r\n</div><br>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1154.jpg\" alt=\"Dscn1154\" width=\"191\" height=\"255\" class=\"aligncenter size-full wp-image-620\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1150.jpg\" alt=\"Dscn1150\" width=\"191\" height=\"255\" class=\"aligncenter size-full wp-image-619\" />\r\n</div><br>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1053.jpg\" alt=\"Dscn1053\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-618\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1059.jpg\" alt=\"Dscn1059\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-616\" />\r\n</div>','Honduras 2008','','inherit','closed','closed','','627-revision-v1','','','2019-06-08 08:27:43','2019-06-08 08:27:43','',627,'https://www.drfields.com/uncategorized/627-revision-v1/',0,'revision','',0),(634,8,'2019-06-08 08:28:20','2019-06-08 08:28:20','&nbsp;\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-626\" />\r\n</div>\r\n&nbsp;\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1029.jpg\" alt=\"Dscn1029\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-625\" />\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1134.jpg\" alt=\"Dscn1134\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-624\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-623\" />\r\n</div><br>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0938.jpg\" alt=\"Dscn0938\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-622\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0947.jpg\" alt=\"Dscn0947\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-621\" />\r\n</div><br>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1154.jpg\" alt=\"Dscn1154\" width=\"191\" height=\"255\" class=\"aligncenter size-full wp-image-620\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1150.jpg\" alt=\"Dscn1150\" width=\"191\" height=\"255\" class=\"aligncenter size-full wp-image-619\" />\r\n</div><br>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1053.jpg\" alt=\"Dscn1053\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-618\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1059.jpg\" alt=\"Dscn1059\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-616\" />\r\n</div>','Honduras 2008','','inherit','closed','closed','','627-revision-v1','','','2019-06-08 08:28:20','2019-06-08 08:28:20','',627,'https://www.drfields.com/uncategorized/627-revision-v1/',0,'revision','',0),(635,8,'2019-06-08 08:28:40','2019-06-08 08:28:40','&nbsp;\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-626\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1029.jpg\" alt=\"Dscn1029\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-625\" />\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1134.jpg\" alt=\"Dscn1134\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-624\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-623\" />\r\n</div><br>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0938.jpg\" alt=\"Dscn0938\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-622\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0947.jpg\" alt=\"Dscn0947\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-621\" />\r\n</div><br>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1154.jpg\" alt=\"Dscn1154\" width=\"191\" height=\"255\" class=\"aligncenter size-full wp-image-620\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1150.jpg\" alt=\"Dscn1150\" width=\"191\" height=\"255\" class=\"aligncenter size-full wp-image-619\" />\r\n</div><br>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1053.jpg\" alt=\"Dscn1053\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-618\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1059.jpg\" alt=\"Dscn1059\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-616\" />\r\n</div>','Honduras 2008','','inherit','closed','closed','','627-revision-v1','','','2019-06-08 08:28:40','2019-06-08 08:28:40','',627,'https://www.drfields.com/uncategorized/627-revision-v1/',0,'revision','',0),(636,8,'2019-06-08 08:29:06','2019-06-08 08:29:06','&nbsp;\r\n\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-626\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1029.jpg\" alt=\"Dscn1029\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-625\" />\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1134.jpg\" alt=\"Dscn1134\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-624\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-623\" />\r\n</div><br>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0938.jpg\" alt=\"Dscn0938\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-622\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0947.jpg\" alt=\"Dscn0947\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-621\" />\r\n</div><br>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1154.jpg\" alt=\"Dscn1154\" width=\"191\" height=\"255\" class=\"aligncenter size-full wp-image-620\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1150.jpg\" alt=\"Dscn1150\" width=\"191\" height=\"255\" class=\"aligncenter size-full wp-image-619\" />\r\n</div><br>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1053.jpg\" alt=\"Dscn1053\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-618\" />\r\n</div>\r\n<div class=\"col-md-5\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1059.jpg\" alt=\"Dscn1059\" width=\"255\" height=\"191\" class=\"aligncenter size-full wp-image-616\" />\r\n</div>','Honduras 2008','','inherit','closed','closed','','627-revision-v1','','','2019-06-08 08:29:06','2019-06-08 08:29:06','',627,'https://www.drfields.com/uncategorized/627-revision-v1/',0,'revision','',0),(637,8,'2019-06-08 08:32:53','2019-06-08 08:32:53','<h4>Sports Injuries Treatment</h4>\r\nHave sports injuries stopped you? Get back in the game with Prolotherapy and Dr. Peter A. Fields, The Athletic Doc®. At OrthoRegen we offer innovative, non-surgical treatments for your sports injury or chronic pain problems. Without unnecessary medication, prescriptions, cortisone shots or surgery, Prolotherapy can regenerate damaged or worn ligaments and strengthen weakened tendons. The most beneficial aspect of our non-surgical sports injuries treatment is that you can continue to train while you receive Prolotherapy treatments. We treat athletes of all skill and age levels: high school to college; amateur to professional athletes.\r\n\r\n<h4>How Can Prolotherapy Help Your Sports Injury?</h4>\r\nProlotherapy is an innovative treatment that stimulates the immune system to repair damaged tissue.”Prolo” comes from the word proliferate. Prolotherapy then, describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and other sports injuries. Receive treatment for your sports injuries with comprehensive Prolotherapy at OrthoRegen.\r\n\r\n<h4>Are You Suffering from a Sports Injury?</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">K</a><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">nee Pain</a></li>\r\n 	<li> ACL Tear</li>\r\n 	<li>Torn Meniscus</li>\r\n 	<li><a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Neck-Pain\">Neck pain</a></li>\r\n 	<li>Back Pain</li>\r\n 	<li>Shin Splints</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>Hamstring Strain</li>\r\n 	<li>IT Band Injury</li>\r\n 	<li>Turf Toe</li>\r\n</ul>\r\n<strong><em> Prolotherapy Sports Injuries Treatment can help you get back in the game – and get back quickly!</em></strong>\r\n\r\n<h4>Prolotherapy Doctor Treats Sports Injuries Without Surgery</h4>\r\nReceive treatment for your sports injuries by Ironman Triathlete Dr. Peter A. Fields. For over 25 years, Dr. Fields has been active in the sport of Triathlon. It is his experience as an athlete that allows him to understand the potential for injury and the demands of sports on the physical body. He also understands the passion athletes have to get back to training and competition, and their need to recover quickly from injury, because he has been there. In November 2012, Dr. Fields completed his second Ironman Triathlon, beating his 2011 time by better than 14 minutes. Dr. Fields is known as The Athletic Doc®. Wouldn’t you want to be treated by a sports doctor who is also an athlete?\r\n\r\nOur medical team finds that treating athletes is very rewarding. We can utilize a comprehensive health approach to help you reach your peak physical performance. <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> allows you to get back to training within a couple of days and does not involve periods of long recovery. Prolotherapy involves the injection of natural substances at the exact site of an injury. This stimulates the immune system to repair the sports injury. Areas often injured through sports related activities—ligaments, tendons, menisci, muscles, growth plates, joint capsules and cartilage are stimulated to heal. Anesthetics are also used to minimize any unpleasant pain.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n<h4>Are You A Candidate for Non- Surgical Sports Injuries Treatment?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-310-627-2458\">(310) 627-2458</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.','Sports Injuries Treatment Overview','','inherit','closed','closed','','632-revision-v1','','','2019-06-08 08:32:53','2019-06-08 08:32:53','',632,'https://www.drfields.com/uncategorized/632-revision-v1/',0,'revision','',0),(638,8,'2019-06-08 09:13:34','2019-06-08 09:13:34','<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.  <strong>IMAGE HERE</strong>\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\n\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"#\">  Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img title=\"Couple on Beach\" src=\"https://www.drfields.com/portals/0/Images/couple1.jpg\" alt=\"Couple on Beach\" />\r\n\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\n\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Neck-Pain\">neck pain</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Shoulder-Pain\">shoulder</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Knee-Pain\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/Sports-Injuries\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<H4>Video: What is Prolotherapy Treatment?</h4> <strong>video here</strong>\r\n<a href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a href=\"#\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-08 09:13:34','2019-06-08 09:13:34','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(640,8,'2019-06-08 09:14:03','2019-06-08 09:14:03','&nbsp;\r\n\r\n<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.  <strong>IMAGE HERE</strong>\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\n\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"#\">  Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img title=\"Couple on Beach\" src=\"https://www.drfields.com/portals/0/Images/couple1.jpg\" alt=\"Couple on Beach\" />\r\n\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\n\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Neck-Pain\">neck pain</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Shoulder-Pain\">shoulder</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Knee-Pain\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/Sports-Injuries\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<H4>Video: What is Prolotherapy Treatment?</h4> <strong>video here</strong>\r\n<a href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a href=\"#\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-08 09:14:03','2019-06-08 09:14:03','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(641,8,'2019-06-08 09:17:44','2019-06-08 09:17:44','&nbsp;\r\n\r\n<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.  <strong>IMAGE HERE</strong>\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\n\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img title=\"Couple on Beach\" src=\"https://www.drfields.com/portals/0/Images/couple1.jpg\" alt=\"Couple on Beach\" />\r\n\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\n\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Neck-Pain\">neck pain</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Shoulder-Pain\">shoulder</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Knee-Pain\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/Sports-Injuries\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<H4>Video: What is Prolotherapy Treatment?</h4> <strong>video here</strong>\r\n<a href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a href=\"#\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-08 09:17:44','2019-06-08 09:17:44','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(642,8,'2019-06-08 09:18:44','2019-06-08 09:18:44','Running','Running','','inherit','open','closed','','running','','','2019-06-08 10:21:39','2019-06-08 10:21:39','',382,'https://www.drfields.com/wp-content/uploads/2019/06/running.jpg',0,'attachment','image/jpeg',0),(643,8,'2019-06-08 09:18:53','2019-06-08 09:18:53','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" class=\"alignright size-full wp-image-642\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.  <strong>IMAGE HERE</strong>\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\n\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img title=\"Couple on Beach\" src=\"https://www.drfields.com/portals/0/Images/couple1.jpg\" alt=\"Couple on Beach\" />\r\n\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\n\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Neck-Pain\">neck pain</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Shoulder-Pain\">shoulder</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Knee-Pain\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/Sports-Injuries\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<H4>Video: What is Prolotherapy Treatment?</h4> <strong>video here</strong>\r\n<a href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a href=\"#\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-08 09:18:53','2019-06-08 09:18:53','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(644,8,'2019-06-08 09:19:30','2019-06-08 09:19:30','Couple1','Couple1','','inherit','open','closed','','couple1','','','2019-06-08 09:19:33','2019-06-08 09:19:33','',382,'https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg',0,'attachment','image/jpeg',0),(645,8,'2019-06-08 09:19:45','2019-06-08 09:19:45','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" class=\"alignright size-full wp-image-642\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.  <strong>IMAGE HERE</strong>\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\n\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" class=\"alignleft size-full wp-image-644\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\n\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Neck-Pain\">neck pain</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Shoulder-Pain\">shoulder</a>, <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Knee-Pain\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/Sports-Injuries\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<H4>Video: What is Prolotherapy Treatment?</h4> <strong>video here</strong>\r\n<a href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a href=\"#\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-08 09:19:45','2019-06-08 09:19:45','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(646,8,'2022-12-02 06:01:39','2019-06-08 09:23:13','','Chronic Pain','','publish','closed','closed','','chronic-pain','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=646',40,'nav_menu_item','',0),(647,8,'2022-12-02 06:01:39','2019-06-08 09:23:13','','Sports Injuries','','publish','closed','closed','','sports-injuries','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=647',48,'nav_menu_item','',0),(648,8,'2022-12-02 06:01:39','2019-06-08 09:24:06',' ','','','publish','closed','closed','','648','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=648',45,'nav_menu_item','',0),(649,8,'2022-12-02 06:01:39','2019-06-08 09:24:06','','Knee Pain That Won’t Go Away','','publish','closed','closed','','649','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=649',42,'nav_menu_item','',0),(650,8,'2022-12-02 06:01:39','2019-06-08 09:24:06',' ','','','publish','closed','closed','','650','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=650',43,'nav_menu_item','',0),(651,8,'2022-12-02 06:01:39','2019-06-08 09:24:06',' ','','','publish','closed','closed','','651','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=651',41,'nav_menu_item','',0),(652,8,'2022-12-02 06:01:39','2019-06-08 09:24:06',' ','','','publish','closed','closed','','652','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=652',44,'nav_menu_item','',0),(653,8,'2022-12-02 06:01:39','2019-06-08 09:26:36',' ','','','publish','closed','closed','','653','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=653',53,'nav_menu_item','',0),(654,8,'2022-12-02 06:01:39','2019-06-08 09:26:36',' ','','','publish','closed','closed','','654','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=654',54,'nav_menu_item','',0),(655,8,'2022-12-02 06:01:39','2019-06-08 09:26:36',' ','','','publish','closed','closed','','655','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=655',55,'nav_menu_item','',0),(656,8,'2022-12-02 06:01:39','2019-06-08 09:26:36',' ','','','publish','closed','closed','','656','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=656',56,'nav_menu_item','',0),(657,8,'2022-12-02 06:01:39','2019-06-08 09:26:36',' ','','','publish','closed','closed','','657','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=657',49,'nav_menu_item','',0),(658,8,'2022-12-02 06:01:39','2019-06-08 09:26:36',' ','','','publish','closed','closed','','658','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=658',50,'nav_menu_item','',0),(659,8,'2022-12-02 06:01:39','2019-06-08 09:26:36',' ','','','publish','closed','closed','','659','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=659',51,'nav_menu_item','',0),(660,8,'2022-12-02 06:01:39','2019-06-08 09:26:36',' ','','','publish','closed','closed','','660','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=660',52,'nav_menu_item','',0),(661,8,'2022-12-02 06:01:39','2019-06-08 09:26:36',' ','','','publish','closed','closed','','661','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=661',57,'nav_menu_item','',0),(664,8,'2019-06-08 09:32:41','2019-06-08 09:32:41','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" class=\"alignright size-full wp-image-642\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.  <strong>IMAGE HERE</strong>\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\n\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" class=\"alignleft size-full wp-image-644\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\n\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"#\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<H4>Video: What is Prolotherapy Treatment?</h4> <strong>video here</strong>\r\n<a href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a href=\"#\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-08 09:32:41','2019-06-08 09:32:41','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(665,8,'2019-06-08 09:38:22','2019-06-08 09:38:22','<p><a href=\"/Low-Back-Pain-Challenges-and-Treatment\">Low Back Pain Challenges and Treatment</a></p>\r\n<p><a href=\"/ACL-Tears-and-Knee-Ligament-Injuries\">ACL Tears and Knee Ligament Injuries</a></p>\r\n<p><a href=\"/Relieve-Arthritis-Pain\">Relieve Arthritis Pain</a></p>\r\n<p><a href=\"/Failed-Back-Surgery-Syndrome\">Failed Back Surgery Syndrome</a></p>\r\n<p><a href=\"/Get-Rid-of-Knee-Arthritis-Symptoms-by-Treating-the-Source-of-the-Pain\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a></p>\r\n<p><a href=\"/Neck-Pain-Treatment-and-Relief\">Neck Pain Treatment and Relief</a></p>\r\n<p><a href=\"/What-is-Behind-Joint-Pain-\">What is Behind Joint Pain?&nbsp;</a></p>\r\n<p><a href=\"/Meniscus-and-Labral-Tears\">Meniscus&nbsp;and Labral Tears</a></p>\r\n<p><a href=\"Is-There-Help-for-Arthritis\">Is There help For Arthritis?&nbsp;</a></p>\r\n<p><a href=\"/Runners-Knee-Pain\">Runner\'s Knee Pain</a></p>\r\n<p><a href=\"/Do-You-Have-a-Hip-Injury\">Do You Have a Hip Injury?</a></p>\r\n<p><a href=\"/Avoid-Joint-Replacement\">Avoid Joint Replacement</a></p>\r\n<p><a href=\"/Stop-Shoulder-Pain-from-Rotator-Cuff-and-Other-Shoulder-Injuries\">Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries</a></p>\r\n<p><a href=\"/Unrelenting-Back-Pain-Repaired-with-Regenerative-Orthopedics\">Unrelenting Back Pain Repaired with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/Do-Your-Knees-Hurt\">Do Your Knees Hurt?</a></p>\r\n<p><a href=\"/Repairing-Sports-Injuries-with-Regenerative-Orthopedics\">Repairing Sports Injuries with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/Stem-Cell-Therapy-Options-for-Arthritis\">Stem Cell Therapy Options for Arthritis</a></p>\r\n<p><a href=\"/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-ENGLISH\">Regenerative Medicine Lecture in Mexico City (English) </a></p>\r\n<p><a href=\"/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-SPANISH\">Regenerative Medicine Lecture in Mexico City (Spanish)</a></p>\r\n<p><a href=\"/How-to-Avoid-Joint-Spine-Surgery-and-Live-Pain-Free\">How to Avoid Joint &amp; Spine Surgery and Live Pain Free</a></p>\r\n<p><a href=\"/Dr-Fields-Lectures-to-Over-400-Physicians-in-Las-Vegas\">Dr. Fields Lectures to Over 400 Physicians in Las Vegas</a></p>\r\n<p><a href=\"/2019-Lecture-Schedule\">2019 Regenerative Orthopedics Lecture Schedule</a></p>\r\n<p><a href=\"FDA-Warns-of-Serious-Neurologic-Problems-After-Epidural-Corticosteroid-Injections\">FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections</a></p>\r\n<p><a href=\"Prolotherapy-for-Knee-Pain-Abstract\">Prolotherapy for Knee-Pain Abstract</a></p>\r\n<p><a href=\"/Download-Dr-Fields-Prolotherapy-Lecture-Today\">Download Dr. Fields Prolotherapy Lecture Today</a></p>\r\n<p><a href=\"/Dr-Fields-interviewed-on-KCAL-CBS-about-Prolotherapy\">Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'</a></p>\r\n<p><a href=\"/Dr-Fields-is-giving-a-presentation-on-prolotherapy\">Dr. Fields is giving a presentation on prolotherapy</a></p>\r\n<p><a href=\"/New-York-Times-Article-Injections-to-Kick-Start-Tissue-Repair\">New York Times Article: Injections to Kick-Start Tissue Repair</a></p>\r\n<p><a href=\"/View-and-Download-Dr-Fields-Latest-Lecture-on-Arthritis-and-Prolotherapy\">View and Download Dr. Fields Latest Lecture on Arthritis and Prolotherapy</a></p>\r\n<p><a href=\"/LA-Times-Article-A-Ski-Run-for-Border\">LA Times Article \"A Ski Run for Border\"</a></p>\r\n<p><a href=\"/Dr-Fields-Free-Open-to-the-Public-Lecture-on-Arthritis-Joint-Pain-and-Inflammation\">Dr. Fields Free Open to the Public Lecture on Arthritis, Joint Pain and Inflammation</a></p>\r\n<p><a href=\"/What-to-Ask-When-Looking-for-a-Prolotherapist\">What to Ask When Looking for a Prolotherapist</a></p>\r\n<p><a href=\"/Chronic-Pain-or-Injuries-Prolotherapy-Might-be-the-Answer\">Chronic Pain or Injuries? Prolotherapy Might be the Answer</a></p>\r\n<p><a href=\"/Prolotherapy-Is-It-For-You\">Prolotherapy - Is It For You</a></p>\r\n<p><a href=\"/Prolotherapy-for-Shoulder\">Prolotherapy for Shoulder</a></p>\r\n<p><a href=\"/Cortisone-Is-it-Really-Good-for-You\">Cortisone - Is it Really Good for You</a></p>\r\n<p><a href=\"/Chronic-Pain-Prolotherapy-May-be-the-Answer\">Chronic Pain? - Prolotherapy May be the Answer</a></p>\r\n<p><a href=\"/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">Joint Surgery? Think Again! Learn About Prolotherapy</a></p>\r\n','Prolo News old','','draft','open','closed','','prolo-news-old','','','2019-06-13 07:50:28','2019-06-13 07:50:28','',0,'https://www.drfields.com/?p=665',0,'post','',0),(666,8,'2019-06-08 09:38:02','2019-06-08 09:38:02','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" class=\"alignright size-full wp-image-642\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.  <strong>IMAGE HERE</strong>\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\n\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" class=\"alignleft size-full wp-image-644\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\n\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"#\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<H4>Video: What is Prolotherapy Treatment?</h4> <strong>video here</strong>\r\n<a class=\"buttonlink\" href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a href=\"#\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-08 09:38:02','2019-06-08 09:38:02','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(667,8,'2019-06-08 09:38:22','2019-06-08 09:38:22','<div id=\"dnn_ctr479_ModuleContent\" class=\"DNNModuleContent ModDNNHTMLC\">\r\n<div id=\"dnn_ctr479_HtmlModule_lblContent\" class=\"Normal\">\r\n\r\n<a href=\"https://www.drfields.com/Low-Back-Pain-Challenges-and-Treatment\">Low Back Pain Challenges and Treatment</a>\r\n\r\n<a href=\"https://www.drfields.com/ACL-Tears-and-Knee-Ligament-Injuries\">ACL Tears and Knee Ligament Injuries</a>\r\n\r\n<a href=\"https://www.drfields.com/Relieve-Arthritis-Pain\">Relieve Arthritis Pain</a>\r\n\r\n<a href=\"https://www.drfields.com/Failed-Back-Surgery-Syndrome\">Failed Back Surgery Syndrome</a>\r\n\r\n<a href=\"https://www.drfields.com/Get-Rid-of-Knee-Arthritis-Symptoms-by-Treating-the-Source-of-the-Pain\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a>\r\n\r\n<a href=\"https://www.drfields.com/Neck-Pain-Treatment-and-Relief\">Neck Pain Treatment and Relief</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/What-is-Behind-Joint-Pain-\">What is Behind Joint Pain? </a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Is-There-Help-for-Arthritis\">Is There help For Arthritis? </a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Do-You-Have-a-Hip-Injury\">Do You Have a Hip Injury?</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Avoid-Joint-Replacement\">Avoid Joint Replacement</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Stop-Shoulder-Pain-from-Rotator-Cuff-and-Other-Shoulder-Injuries\">Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Unrelenting-Back-Pain-Repaired-with-Regenerative-Orthopedics\">Unrelenting Back Pain Repaired with Regenerative Orthopedics</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Do-Your-Knees-Hurt\">Do Your Knees Hurt?</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Repairing-Sports-Injuries-with-Regenerative-Orthopedics\">Repairing Sports Injuries with Regenerative Orthopedics</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-Options-for-Arthritis\">Stem Cell Therapy Options for Arthritis</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-ENGLISH\">Regenerative Medicine Lecture in Mexico City (English) </a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-SPANISH\">Regenerative Medicine Lecture in Mexico City (Spanish)</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/How-to-Avoid-Joint-Spine-Surgery-and-Live-Pain-Free\">How to Avoid Joint &amp; Spine Surgery and Live Pain Free</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Dr-Fields-Lectures-to-Over-400-Physicians-in-Las-Vegas\">Dr. Fields Lectures to Over 400 Physicians in Las Vegas</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/2019-Lecture-Schedule\">2019 R</a><a href=\"https://www.drfields.com/Articles/Prolo-News/2019-Lecture-Schedule\">egenerative Orthopedics Lecture Schedule</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/FDA-Warns-of-Serious-Neurologic-Problems-After-Epidural-Corticosteroid-Injections\">FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Prolotherapy-for-Knee-Pain-Abstract\">Prolotherapy for Knee-Pain Abstract</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Download-Dr-Fields-Prolotherapy-Lecture-Today\">Download Dr. Fields Prolotherapy Lecture Today</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Health-News/Dr-Fields-interviewed-on-KCAL-CBS-about-Prolotherapy\">Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Dr-Fields-is-giving-a-presentation-on-prolotherapy\">Dr. Fields is giving a presentation on prolotherapy</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/New-York-Times-Article-Injections-to-Kick-Start-Tissue-Repair\">New York Times Article: Injections to Kick-Start Tissue Repair</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/View-and-Download-Dr-Fields-Latest-Lecture-on-Arthritis-and-Prolotherapy\">View and Download Dr. Fields Latest Lecture on Arthritis and Prolotherapy</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/LA-Times-Article-A-Ski-Run-for-Border\">LA Times Article \"A Ski Run for Border\"</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Dr-Fields-Free-Open-to-the-Public-Lecture-on-Arthritis-Joint-Pain-and-Inflammation\">Dr. Fields Free Open to the Public Lecture on Arthritis, Joint Pain and Inflammation</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/What-to-Ask-When-Looking-for-a-Prolotherapist\">What to Ask When Looking for a Prolotherapist</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Chronic-Pain-or-Injuries-Prolotherapy-Might-be-the-Answer\">Chronic Pain or Injuries? Prolotherapy Might be the Answer</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Prolotherapy-Is-It-For-You\">Prolotherapy - Is It For You</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Prolotherapy-for-Shoulder\">Prolotherapy for Shoulder</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">Cortisone - Is it Really Good for You</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Chronic-Pain-Prolotherapy-May-be-the-Answer\">Chronic Pain? - Prolotherapy May be the Answer</a>\r\n\r\n<a href=\"https://www.drfields.com/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">Joint Surgery? Think Again! Learn About Prolotherapy</a>\r\n\r\n</div>\r\n</div>','Prolo News','','inherit','closed','closed','','665-revision-v1','','','2019-06-08 09:38:22','2019-06-08 09:38:22','',665,'https://www.drfields.com/uncategorized/665-revision-v1/',0,'revision','',0),(669,8,'2019-06-08 09:39:16','2019-06-08 09:39:16','&nbsp;\r\n\r\n<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.  <strong>IMAGE HERE</strong>\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"#\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n<h4>Video: What is Prolotherapy Treatment?</h4>\r\n<strong>video here</strong>\r\n<a class=\"buttonlink\" href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-08 09:39:16','2019-06-08 09:39:16','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(680,8,'2019-06-08 10:00:27','2019-06-08 10:00:27','The knee will become unstable when the various structures of the knee are injured, torn, or degenerated. There is a very complex yet intricate interplay between the different structures of the knee, such as the tendons, ligaments, meniscus and muscles, and when any of these are injured, the whole knee becomes out of sorts. Ligament injuries are one of the common disruptions to this balance. The four major ligaments of the knee are the anterior cruciate ligament (ACL), the posterior cruciate ligament (PCL), the medial collateral ligament (MCL), and the lateral collateral ligament (LCL). Injuries that damage the meniscus and cartilage can also injure these ligaments.  Once injury to ligaments occurs, whether by trauma or by wear and tear, the other structures will be affected, and over time, the injury will lead to degeneration of the knee joint and arthritis. The ligaments become lose with injury, and similar to a stretched out rubber band, they lose their tautness. When injury to one ligament occurs, as in the case of a torn ACL, it is not uncommon that some of the other ligaments are injured as well.\r\n\r\n<h6>Stabilize the Knee by Treating the Injured Ligaments with Regenerative Orthopedics</h6>\r\nSurgery is often resorted to for ligament injuries. However, surgical cutting and removal of important knee structures actually adds to the instability, which boosts the degenerative process. Regenerative Orthopedics is a non-surgical option capable of repairing torn and injured ligaments. The treatment strengthens the loose ligaments and restores the normal motion back to the knee, and resolves the pain too.  Remember that it is very likely that more than just one ligament or joint structure is affected. Therefore, all of the affected structures need to be treated, or otherwise the knee will remain unstable, and the cycle will continue. A comprehensive treatment will address all of the ligament attachments to ensure that the knee will be strong and stable. Surgery is necessary when the ligament is completely torn, but the majority of cases are partial tears, and Regenerative Orthopedics is effective at repairing these ligaments, and stabilizing the knee once the ligaments are repaired.\r\n\r\n<h6>The Cruciate Ligaments and ACL Repair</h6>\r\nThe anterior and posterior cruciate ligaments help stabilize the knee, and prevent excessive forward and backward movement. When these ligaments are injured, the knee may feel like it is loose, because these ligaments are powerhouses at keeping the knee stable. Pain with injury to these ligaments is often felt at the back of the knee. Even after the ACL ligament is repaired surgically, knee instability can occur, and there may be a feeling of looseness or a sensation that the knee can still give way. ACL reconstructive surgery works for many patients, but others experience continued symptoms.\r\n\r\nWe see patients in our clinic who have had ACL surgery, and are concerned because their symptoms are keeping them from doing the sports and activities they want to do. They thought for sure once they had the ACL surgery that they would be back to doing what they were doing before the surgery, but they can’t. Other patients suffer from post-surgical complications and are looking for answers and a solution to their ongoing pain.\r\n\r\nAthletes want to get their knee repaired as quickly as possible, and often resort to surgery with this in mind. But research suggests there are high levels of failure rates to restore stability in ACL repairs, and many of the patients are unable to return to their previous level of sport. Surgical ACL reconstruction also accelerates the degeneration of the knee. Researchers have found that those who have had ACL reconstruction have an advanced risk for arthritis, as well as higher long-term risk of requiring a knee replacement. But how many people does this really affect? Unfortunately, it’s not just a few. Researchers show that the failure rate is 10-25%. The problems of knee instability following an ACL reconstruction surgery can be severe enough to require repeat surgery.\r\n\r\nFortunately, there are other options besides ACL surgery or even repeat surgery. In our opinion, a better solution to repair a stretched out, loose, torn, or injured ligament, is Regenerative Orthopedics. This treatment approach strengthens and heals the injured ligament in a non-surgical fashion, restoring the stability of the knee. Avoid the unsatisfactory outcome of incomplete healing and repair, and seek a consult with a clinician familiar with Regenerative Orthopedics, such as Stem Cell Therapy, PRP, and Prolotherapy, with the goal of restoring normal ligament function and getting you back quickly to performing the sport and activity you love.\r\n\r\n</div>\r\n</div>','ACL Tears and Knee Ligament Injuries','','publish','closed','closed','','acl-tears-and-knee-ligament-injuries','','','2019-06-08 10:01:29','2019-06-08 10:01:29','',0,'https://www.drfields.com/?page_id=680',0,'page','',0),(681,8,'2019-06-08 10:00:14','2019-06-08 10:00:14','<strong> <a href=\"#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"https:#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n\r\n<strong><a id=\"1\" name=\"1\"></a>1) What does it treat</strong>\r\nJoint Pain and Injury:\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td valign=\"top\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacro-iliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nOther Areas Where Prolotherapy Can Help:\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"#\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How many treatments will I need?</strong>\r\n\r\nThe average person requires 6 treatment sessions given at 2 to 4 week intervals, but the number of treatments varies with each patient. Difficult (post surgical, long standing, etc) or other complicated cases may require 8, 10 or 12 treatments. Many patients feel relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"3\" name=\"3\"></a>3) Will I need to continue care after treatment?</strong>\r\n\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, an additional treatment maybe needed\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"4\" name=\"4\"></a>4) Is this the same thing as cortisone shots</strong><strong>?</strong>\r\nLong term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection; Prolotherapy is multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"5\" name=\"5\"></a>5) Is Prolotherapy safe?</strong>\r\nAs with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. On the other hand, Prolotherapy is an extremely safe procedure. The risks are far less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong>\r\n\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive the treatments without pain killers and do just fine. </strong>\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"7\" name=\"7\"></a>7) Will my insurance cover this and what are the fees?</strong>\r\nFor information regarding insurence and fees <a href=\"https://www.drfields.com/Our-Office/Common-Questions\">Click Here</a> to visit out common questions section.\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"8\" name=\"8\"></a>8) Is it advisable to drive or work after Prolotherapy?</strong>\r\nYou can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.','Prolotherapy FAQ','','inherit','closed','closed','','395-revision-v1','','','2019-06-08 10:00:14','2019-06-08 10:00:14','',395,'https://www.drfields.com/uncategorized/395-revision-v1/',0,'revision','',0),(682,8,'2019-06-08 10:00:27','2019-06-08 10:00:27','<div id=\"dnn_ctr911_ModuleContent\" class=\"DNNModuleContent ModDNNHTMLC\">\r\n<div id=\"dnn_ctr911_HtmlModule_lblContent\" class=\"Normal\">\r\n\r\nThe knee will become unstable when the various structures of the knee are injured, torn, or degenerated. There is a very complex yet intricate interplay between the different structures of the knee, such as the tendons, ligaments, meniscus and muscles, and when any of these are injured, the whole knee becomes out of sorts. Ligament injuries are one of the common disruptions to this balance. The four major ligaments of the knee are the anterior cruciate ligament (ACL), the posterior cruciate ligament (PCL), the medial collateral ligament (MCL), and the lateral collateral ligament (LCL). Injuries that damage the meniscus and cartilage can also injure these ligaments.  Once injury to ligaments occurs, whether by trauma or by wear and tear, the other structures will be affected, and over time, the injury will lead to degeneration of the knee joint and arthritis. The ligaments become lose with injury, and similar to a stretched out rubber band, they lose their tautness. When injury to one ligament occurs, as in the case of a torn ACL, it is not uncommon that some of the other ligaments are injured as well.\r\n<h6>Stabilize the Knee by Treating the Injured Ligaments with Regenerative Orthopedics</h6>\r\nSurgery is often resorted to for ligament injuries. However, surgical cutting and removal of important knee structures actually adds to the instability, which boosts the degenerative process. Regenerative Orthopedics is a non-surgical option capable of repairing torn and injured ligaments. The treatment strengthens the loose ligaments and restores the normal motion back to the knee, and resolves the pain too.  Remember that it is very likely that more than just one ligament or joint structure is affected. Therefore, all of the affected structures need to be treated, or otherwise the knee will remain unstable, and the cycle will continue. A comprehensive treatment will address all of the ligament attachments to ensure that the knee will be strong and stable. Surgery is necessary when the ligament is completely torn, but the majority of cases are partial tears, and Regenerative Orthopedics is effective at repairing these ligaments, and stabilizing the knee once the ligaments are repaired.\r\n<h6>The Cruciate Ligaments and ACL Repair</h6>\r\nThe anterior and posterior cruciate ligaments help stabilize the knee, and prevent excessive forward and backward movement. When these ligaments are injured, the knee may feel like it is loose, because these ligaments are powerhouses at keeping the knee stable. Pain with injury to these ligaments is often felt at the back of the knee. Even after the ACL ligament is repaired surgically, knee instability can occur, and there may be a feeling of looseness or a sensation that the knee can still give way. ACL reconstructive surgery works for many patients, but others experience continued symptoms.\r\nWe see patients in our clinic who have had ACL surgery, and are concerned because their symptoms are keeping them from doing the sports and activities they want to do. They thought for sure once they had the ACL surgery that they would be back to doing what they were doing before the surgery, but they can’t. Other patients suffer from post-surgical complications and are looking for answers and a solution to their ongoing pain.\r\nAthletes want to get their knee repaired as quickly as possible, and often resort to surgery with this in mind. But research suggests there are high levels of failure rates to restore stability in ACL repairs, and many of the patients are unable to return to their previous level of sport. Surgical ACL reconstruction also accelerates the degeneration of the knee. Researchers have found that those who have had ACL reconstruction have an advanced risk for arthritis, as well as higher long-term risk of requiring a knee replacement. But how many people does this really affect? Unfortunately, it’s not just a few. Researchers show that the failure rate is 10-25%. The problems of knee instability following an ACL reconstruction surgery can be severe enough to require repeat surgery.\r\n\r\nFortunately, there are other options besides ACL surgery or even repeat surgery. In our opinion, a better solution to repair a stretched out, loose, torn, or injured ligament, is Regenerative Orthopedics. This treatment approach strengthens and heals the injured ligament in a non-surgical fashion, restoring the stability of the knee. Avoid the unsatisfactory outcome of incomplete healing and repair, and seek a consult with a clinician familiar with Regenerative Orthopedics, such as Stem Cell Therapy, PRP, and Prolotherapy, with the goal of restoring normal ligament function and getting you back quickly to performing the sport and activity you love.\r\n\r\n</div>\r\n</div>','ACL Tears and Knee Ligament Injuries','','inherit','closed','closed','','680-revision-v1','','','2019-06-08 10:00:27','2019-06-08 10:00:27','',680,'https://www.drfields.com/uncategorized/680-revision-v1/',0,'revision','',0),(683,8,'2019-06-08 10:00:42','2019-06-08 10:00:42','<strong> <a href=\"#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n\r\n<strong><a id=\"1\" name=\"1\"></a>1) What does it treat</strong>\r\nJoint Pain and Injury:\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td valign=\"top\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacro-iliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nOther Areas Where Prolotherapy Can Help:\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"#\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How many treatments will I need?</strong>\r\n\r\nThe average person requires 6 treatment sessions given at 2 to 4 week intervals, but the number of treatments varies with each patient. Difficult (post surgical, long standing, etc) or other complicated cases may require 8, 10 or 12 treatments. Many patients feel relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"3\" name=\"3\"></a>3) Will I need to continue care after treatment?</strong>\r\n\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, an additional treatment maybe needed\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"4\" name=\"4\"></a>4) Is this the same thing as cortisone shots</strong><strong>?</strong>\r\nLong term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection; Prolotherapy is multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"5\" name=\"5\"></a>5) Is Prolotherapy safe?</strong>\r\nAs with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. On the other hand, Prolotherapy is an extremely safe procedure. The risks are far less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong>\r\n\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive the treatments without pain killers and do just fine. </strong>\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"7\" name=\"7\"></a>7) Will my insurance cover this and what are the fees?</strong>\r\nFor information regarding insurence and fees <a href=\"https://www.drfields.com/Our-Office/Common-Questions\">Click Here</a> to visit out common questions section.\r\n<div style=\"text-align: right;\"><a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Prolotherapy-FAQ#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"8\" name=\"8\"></a>8) Is it advisable to drive or work after Prolotherapy?</strong>\r\nYou can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.','Prolotherapy FAQ','','inherit','closed','closed','','395-revision-v1','','','2019-06-08 10:00:42','2019-06-08 10:00:42','',395,'https://www.drfields.com/uncategorized/395-revision-v1/',0,'revision','',0),(684,8,'2019-06-08 10:01:29','2019-06-08 10:01:29','The knee will become unstable when the various structures of the knee are injured, torn, or degenerated. There is a very complex yet intricate interplay between the different structures of the knee, such as the tendons, ligaments, meniscus and muscles, and when any of these are injured, the whole knee becomes out of sorts. Ligament injuries are one of the common disruptions to this balance. The four major ligaments of the knee are the anterior cruciate ligament (ACL), the posterior cruciate ligament (PCL), the medial collateral ligament (MCL), and the lateral collateral ligament (LCL). Injuries that damage the meniscus and cartilage can also injure these ligaments.  Once injury to ligaments occurs, whether by trauma or by wear and tear, the other structures will be affected, and over time, the injury will lead to degeneration of the knee joint and arthritis. The ligaments become lose with injury, and similar to a stretched out rubber band, they lose their tautness. When injury to one ligament occurs, as in the case of a torn ACL, it is not uncommon that some of the other ligaments are injured as well.\r\n\r\n<h6>Stabilize the Knee by Treating the Injured Ligaments with Regenerative Orthopedics</h6>\r\nSurgery is often resorted to for ligament injuries. However, surgical cutting and removal of important knee structures actually adds to the instability, which boosts the degenerative process. Regenerative Orthopedics is a non-surgical option capable of repairing torn and injured ligaments. The treatment strengthens the loose ligaments and restores the normal motion back to the knee, and resolves the pain too.  Remember that it is very likely that more than just one ligament or joint structure is affected. Therefore, all of the affected structures need to be treated, or otherwise the knee will remain unstable, and the cycle will continue. A comprehensive treatment will address all of the ligament attachments to ensure that the knee will be strong and stable. Surgery is necessary when the ligament is completely torn, but the majority of cases are partial tears, and Regenerative Orthopedics is effective at repairing these ligaments, and stabilizing the knee once the ligaments are repaired.\r\n\r\n<h6>The Cruciate Ligaments and ACL Repair</h6>\r\nThe anterior and posterior cruciate ligaments help stabilize the knee, and prevent excessive forward and backward movement. When these ligaments are injured, the knee may feel like it is loose, because these ligaments are powerhouses at keeping the knee stable. Pain with injury to these ligaments is often felt at the back of the knee. Even after the ACL ligament is repaired surgically, knee instability can occur, and there may be a feeling of looseness or a sensation that the knee can still give way. ACL reconstructive surgery works for many patients, but others experience continued symptoms.\r\n\r\nWe see patients in our clinic who have had ACL surgery, and are concerned because their symptoms are keeping them from doing the sports and activities they want to do. They thought for sure once they had the ACL surgery that they would be back to doing what they were doing before the surgery, but they can’t. Other patients suffer from post-surgical complications and are looking for answers and a solution to their ongoing pain.\r\n\r\nAthletes want to get their knee repaired as quickly as possible, and often resort to surgery with this in mind. But research suggests there are high levels of failure rates to restore stability in ACL repairs, and many of the patients are unable to return to their previous level of sport. Surgical ACL reconstruction also accelerates the degeneration of the knee. Researchers have found that those who have had ACL reconstruction have an advanced risk for arthritis, as well as higher long-term risk of requiring a knee replacement. But how many people does this really affect? Unfortunately, it’s not just a few. Researchers show that the failure rate is 10-25%. The problems of knee instability following an ACL reconstruction surgery can be severe enough to require repeat surgery.\r\n\r\nFortunately, there are other options besides ACL surgery or even repeat surgery. In our opinion, a better solution to repair a stretched out, loose, torn, or injured ligament, is Regenerative Orthopedics. This treatment approach strengthens and heals the injured ligament in a non-surgical fashion, restoring the stability of the knee. Avoid the unsatisfactory outcome of incomplete healing and repair, and seek a consult with a clinician familiar with Regenerative Orthopedics, such as Stem Cell Therapy, PRP, and Prolotherapy, with the goal of restoring normal ligament function and getting you back quickly to performing the sport and activity you love.\r\n\r\n</div>\r\n</div>','ACL Tears and Knee Ligament Injuries','','inherit','closed','closed','','680-revision-v1','','','2019-06-08 10:01:29','2019-06-08 10:01:29','',680,'https://www.drfields.com/uncategorized/680-revision-v1/',0,'revision','',0),(687,8,'2019-06-08 10:02:58','2019-06-08 10:02:58','&nbsp;\r\n\r\n<strong> <a href=\"#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n\r\n<strong><a id=\"1\" name=\"1\"></a>1) What does it treat</strong>\r\nJoint Pain and Injury:\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td valign=\"top\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacro-iliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nOther Areas Where Prolotherapy Can Help:\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How many treatments will I need?</strong>\r\n\r\nThe average person requires 6 treatment sessions given at 2 to 4 week intervals, but the number of treatments varies with each patient. Difficult (post surgical, long standing, etc) or other complicated cases may require 8, 10 or 12 treatments. Many patients feel relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"3\" name=\"3\"></a>3) Will I need to continue care after treatment?</strong>\r\n\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, an additional treatment maybe needed\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"4\" name=\"4\"></a>4) Is this the same thing as cortisone shots</strong><strong>?</strong>\r\nLong term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection; Prolotherapy is multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"5\" name=\"5\"></a>5) Is Prolotherapy safe?</strong>\r\nAs with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. On the other hand, Prolotherapy is an extremely safe procedure. The risks are far less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong>\r\n\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive the treatments without pain killers and do just fine. </strong>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"7\" name=\"7\"></a>7) Will my insurance cover this and what are the fees?</strong>\r\nFor information regarding insurence and fees <a href=\"https://www.drfields.com/Our-Office/Common-Questions\">Click Here</a> to visit out common questions section.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"8\" name=\"8\"></a>8) Is it advisable to drive or work after Prolotherapy?</strong>\r\nYou can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.','Prolotherapy FAQ','','inherit','closed','closed','','395-revision-v1','','','2019-06-08 10:02:58','2019-06-08 10:02:58','',395,'https://www.drfields.com/uncategorized/395-revision-v1/',0,'revision','',0),(689,8,'2019-06-08 10:06:03','2019-06-08 10:06:03','By the time people reach midlife, more than half of them will experience significant episodes of low back pain. That’s how common low back pain is, and because of the prevalence, low back pain often leads to surgery. The surgery may give the back pain sufferer some relief, but many continue to experience a significant amount of pain. You may wonder, if surgery was done to stop the pain, then why would there still be pain after the surgery to relieve it? Back surgery requires the removal of some of the structures of the spine that help to stabilize the spine. So when they are removed, the spine will be weakened. Also, in surgeries that involve fusion of the spinal vertebrae, the areas above and below the fusion often degenerate, since movement needs to occur somewhere. The various back surgeries alter the spinal dynamic and make the patient more susceptible to new pain. Unfortunately, ten to forty percent of lower back surgeries for disabling pain end up in the person needing repeat surgery due to ongoing pain. New or persistent back or leg pain after back surgery is a condition known as Failed Back Surgery Syndrome. The numbers are so overwhelming that this condition has its own diagnosis.\r\n\r\n<h6>A Little Background on Low Back Pain</h6>\r\nThe lumbar spine is composed of five vertebrae separated by discs and supported by strong muscles and ligaments. Cumulative trauma through years of certain activities or sports can result in small tears of the ligaments. If a major trauma transpires, the injury to the ligament can be of such severity that ligament healing never occurs, leaving the vertebrae unstable and without the support they need. The instability and ligament laxity cause ongoing low back pain. This pain is what sends people by the droves to orthopedic surgeons. If the back pain leads to back surgery, important muscles and ligaments are cut, adding to an already unstable lumbar structure.\r\n\r\n<h6>Explain What Failed Back Surgery Syndrome Involves?</h6>\r\nA back surgery may be considered “successful” by the surgeon just because the anatomic area was surgically “fixed correctly.” However, the patient may still suffer from Failed Back Surgery Syndrome, and continue to experience the defining symptoms which include persistent back and/or leg pain. Pain that occurs right after surgery is often due to sensitized nerves. Many nerves have to be cut by the surgeon in order to get to the area of the vertebrae being repaired, and sometimes those nerves become inflamed and/or compressed. In cases where the post-surgical pain becomes chronic and ongoing, the pain is often from spinal instability from causes which may include the removal of too much bone or due to damage to the spinal ligaments. Any time surgery is performed on the spine, it will alter the mechanics of the spine, and this will result in more force being generated at and around the areas where the surgery is done.\r\n\r\nThe pain and discomfort of Failed Back Surgery Syndrome (FBSS) cause a major negative impact on the ability of those with the syndrome to manage everyday life activities such as standing, lifting and traveling. Physicians see many patients who have had back surgery or multiple surgeries who continue to have pain. Sometimes the surgery fixes the pain for a year or so, but then the pain returns. The individual who had the surgery is both terrified about going through another surgery, and is also afraid of the prospects of living in pain and on pain medication.\r\n<h6>With so much progress technologically, how does FBSS still happen?</h6>\r\nSometimes surgery is done when it was never indicated. Surgery may be recommended based on MRI findings primarily and not after a thorough history and review of symptoms to match up to the MRI. This results in performing surgery on a structure that looked bad on MRI, but which was actually not the true cause of pain.\r\n\r\nWhile operating on one condition, another condition may be overlooked. A disc may be removed, for example, but the underlying instability, causing disc degeneration and stenosis were not addressed. If the issue causing the problem in the first place is never addressed, disappointing results and pain will result. Wrong spinal levels may even be operated on. Failed Back Surgery Syndrome may be the result of outright inappropriate surgeries, inadequate surgeries where the underlying pathology is not addressed, or even unnecessary surgeries.\r\n\r\n<h6>Fusion Surgery</h6>\r\nFailed Back Surgery Syndrome may result after fusion surgery. Once the joints are fused together, motion in the spine has to come from somewhere else, creating added stress on the sections above and below the spine. It is then only a matter of time before arthritis and pain develop in the adjacent segments.\r\n\r\nFusion surgery is recommended because there is too much movement or instability in the spine. The surgeon is looking to place artificial material to permanently fuse the area together, to keep it from moving. But this doesn’t always resolve the pain, and will eventually cause degeneration at the levels below and above the fusion, frequently leaving the back pain sufferer with more back pain and arthritis because of the surgery.\r\n\r\n<h6>How Is Failed Back Surgery Syndrome Treated</h6>\r\nPatients with Failed Back Surgery Syndrome experience prolonged pain and because of that treatment often includes narcotics, steroids and even anti-depressants, since the prolonged pain often results in depression. All of these medications come with their own set of problems. Spinal cord stimulation is also utilized and allows for some relief in a subset of FBSS patients with radicular leg pain. These patients, however, continue to experience difficulties in function and quality of life.\r\n\r\n<h6>Regenerative Orthopedics Help with Failed Back Surgery Syndrome</h6>\r\nRegenerative Orthopedics refers to therapies that stimulate the body to heal itself, such as Stem Cell Therapy, PRP, and Prolotherapy.  These regenerative injection therapies stimulate the body to repair, without the need for surgery. Our bodies have amazing regenerative capabilities. This is a novel approach because we are triggering the body to strengthen the tissue on its own, without the use of artificial hardware.\r\n\r\nFor those patients who are taking narcotics, or for those with spinal cord stimulators, an initial consultation to discuss these treatments would be recommended. Regenerative Orthopedics therapies resolve the problems that damaged the spine, and for optimal healing, other therapies that are suppressing the ability of the body to heal need to be limited or stopped. Regenerative Orthopedic therapies are reparative treatments and are alternatives to surgery. They can also help when surgery has already been done, but failed to address the root issue.\r\n\r\nFor those with back pain who have not had surgery yet, we strongly recommend looking into regenerative therapies first. One of the wonderful things about Regenerative Orthopedics for back pain is, the individual can maintain activity and get back to the activities they enjoy, without the need for extensive downtime. Treatments and exercise programs are individually tailored to promote healing and return people to their active lives. It’s really an amazing transformation to see people regain their mobility and independence!\r\n\r\nRegenerative Orthopedics is helpful for almost all types of back pain: herniated discs, bulging discs, degenerative disc disease, chronic subluxation of the sacroiliac joints, and more. Regenerative Orthopedics may save you from an unnecessary surgery, because the treatments address the problems causing the instability, and offer a way of repair when other treatments often fail.\r\n\r\nRegenerative Orthopedics treatments correct the underlying problem of spinal instability. Without this correction, the patient is more likely to continue on the course of pain and symptom chasing pain management therapies that only temporarily calm the pain. Remember, spinal instability is a progressive disorder, meaning that the area will continue to degenerate until regenerative treatments are used to restore them.','Failed Back Surgery Syndrome','','publish','closed','closed','','failed-back-surgery-syndrome','','','2019-06-18 05:48:31','2019-06-18 05:48:31','',0,'https://www.drfields.com/?page_id=689',0,'page','',0),(690,8,'2019-06-08 10:04:51','2019-06-08 10:04:51','&nbsp;\r\n\r\n<strong> <a href=\"#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n\r\n<strong><a id=\"1\" name=\"1\"></a>1) What does it treat</strong>\r\nJoint Pain and Injury:\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td valign=\"top\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacro-iliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nOther Areas Where Prolotherapy Can Help:\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How many treatments will I need?</strong>\r\n\r\nThe average person requires 6 treatment sessions given at 2 to 4 week intervals, but the number of treatments varies with each patient. Difficult (post surgical, long standing, etc) or other complicated cases may require 8, 10 or 12 treatments. Many patients feel relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"3\" name=\"3\"></a>3) Will I need to continue care after treatment?</strong>\r\n\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, an additional treatment maybe needed\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"4\" name=\"4\"></a>4) Is this the same thing as cortisone shots</strong><strong>?</strong>\r\nLong term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection; Prolotherapy is multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"5\" name=\"5\"></a>5) Is Prolotherapy safe?</strong>\r\nAs with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. On the other hand, Prolotherapy is an extremely safe procedure. The risks are far less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong>\r\n\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive the treatments without pain killers and do just fine. </strong>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"7\" name=\"7\"></a>7) Will my insurance cover this and what are the fees?</strong>\r\nFor information regarding insurence and fees <a href=\"https://www.drfields.com/about/common-questions/\">Click Here</a> to visit out common questions section.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"8\" name=\"8\"></a>8) Is it advisable to drive or work after Prolotherapy?</strong>\r\nYou can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.','Prolotherapy FAQ','','inherit','closed','closed','','395-revision-v1','','','2019-06-08 10:04:51','2019-06-08 10:04:51','',395,'https://www.drfields.com/uncategorized/395-revision-v1/',0,'revision','',0),(691,8,'2019-06-08 10:05:34','2019-06-08 10:05:34','&nbsp;\r\n\r\n<strong> <a href=\"#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n\r\n<strong><a id=\"1\" name=\"1\"></a>1) What does it treat</strong>\r\nJoint Pain and Injury:\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 125px;\">\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td valign=\"top\" style=\"width: 125px;\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacro-iliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nOther Areas Where Prolotherapy Can Help:\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How many treatments will I need?</strong>\r\n\r\nThe average person requires 6 treatment sessions given at 2 to 4 week intervals, but the number of treatments varies with each patient. Difficult (post surgical, long standing, etc) or other complicated cases may require 8, 10 or 12 treatments. Many patients feel relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"3\" name=\"3\"></a>3) Will I need to continue care after treatment?</strong>\r\n\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, an additional treatment maybe needed\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"4\" name=\"4\"></a>4) Is this the same thing as cortisone shots</strong><strong>?</strong>\r\nLong term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection; Prolotherapy is multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"5\" name=\"5\"></a>5) Is Prolotherapy safe?</strong>\r\nAs with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. On the other hand, Prolotherapy is an extremely safe procedure. The risks are far less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong>\r\n\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive the treatments without pain killers and do just fine. </strong>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"7\" name=\"7\"></a>7) Will my insurance cover this and what are the fees?</strong>\r\nFor information regarding insurence and fees <a href=\"https://www.drfields.com/about/common-questions/\">Click Here</a> to visit out common questions section.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"8\" name=\"8\"></a>8) Is it advisable to drive or work after Prolotherapy?</strong>\r\nYou can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.','Prolotherapy FAQ','','inherit','closed','closed','','395-revision-v1','','','2019-06-08 10:05:34','2019-06-08 10:05:34','',395,'https://www.drfields.com/uncategorized/395-revision-v1/',0,'revision','',0),(692,8,'2019-06-08 10:06:03','2019-06-08 10:06:03','By the time people reach midlife, more than half of them will experience significant episodes of low back pain. That’s how common low back pain is, and because of the prevalence, low back pain often leads to surgery. The surgery may give the back pain sufferer some relief, but many continue to experience a significant amount of pain. You may wonder, if surgery was done to stop the pain, then why would there still be pain after the surgery to relieve it? Back surgery requires the removal of some of the structures of the spine that help to stabilize the spine. So when they are removed, the spine will be weakened. Also, in surgeries that involve fusion of the spinal vertebrae, the areas above and below the fusion often degenerate, since movement needs to occur somewhere. The various back surgeries alter the spinal dynamic and make the patient more susceptible to new pain. Unfortunately, ten to forty percent of lower back surgeries for disabling pain end up in the person needing repeat surgery due to ongoing pain. New or persistent back or leg pain after back surgery is a condition known as Failed Back Surgery Syndrome. The numbers are so overwhelming that this condition has its own diagnosis.\r\n\r\n<h6>A Little Background on Low Back Pain</h6>\r\nThe lumbar spine is composed of five vertebrae separated by discs and supported by strong muscles and ligaments. Cumulative trauma through years of certain activities or sports can result in small tears of the ligaments. If a major trauma transpires, the injury to the ligament can be of such severity that ligament healing never occurs, leaving the vertebrae unstable and without the support they need. The instability and ligament laxity cause ongoing low back pain. This pain is what sends people by the droves to orthopedic surgeons. If the back pain leads to back surgery, important muscles and ligaments are cut, adding to an already unstable lumbar structure.\r\n\r\n<h6>Explain What Failed Back Surgery Syndrome Involves?</h6>\r\nA back surgery may be considered “successful” by the surgeon just because the anatomic area was surgically “fixed correctly.” However, the patient may still suffer from Failed Back Surgery Syndrome, and continue to experience the defining symptoms which include persistent back and/or leg pain. Pain that occurs right after surgery is often due to sensitized nerves. Many nerves have to be cut by the surgeon in order to get to the area of the vertebrae being repaired, and sometimes those nerves become inflamed and/or compressed. In cases where the post-surgical pain becomes chronic and ongoing, the pain is often from spinal instability from causes which may include the removal of too much bone or due to damage to the spinal ligaments. Any time surgery is performed on the spine, it will alter the mechanics of the spine, and this will result in more force being generated at and around the areas where the surgery is done.\r\n\r\nThe pain and discomfort of Failed Back Surgery Syndrome (FBSS) cause a major negative impact on the ability of those with the syndrome to manage everyday life activities such as standing, lifting and traveling. Physicians see many patients who have had back surgery or multiple surgeries who continue to have pain. Sometimes the surgery fixes the pain for a year or so, but then the pain returns. The individual who had the surgery is both terrified about going through another surgery, and is also afraid of the prospects of living in pain and on pain medication.\r\n<h6>With so much progress technologically, how does FBSS still happen?</h6>\r\nSometimes surgery is done when it was never indicated. Surgery may be recommended based on MRI findings primarily and not after a thorough history and review of symptoms to match up to the MRI. This results in performing surgery on a structure that looked bad on MRI, but which was actually not the true cause of pain.\r\n\r\nWhile operating on one condition, another condition may be overlooked. A disc may be removed, for example, but the underlying instability, causing disc degeneration and stenosis were not addressed. If the issue causing the problem in the first place is never addressed, disappointing results and pain will result. Wrong spinal levels may even be operated on. Failed Back Surgery Syndrome may be the result of outright inappropriate surgeries, inadequate surgeries where the underlying pathology is not addressed, or even unnecessary surgeries.\r\n\r\n<h6>Fusion Surgery</h6>\r\nFailed Back Surgery Syndrome may result after fusion surgery. Once the joints are fused together, motion in the spine has to come from somewhere else, creating added stress on the sections above and below the spine. It is then only a matter of time before arthritis and pain develop in the adjacent segments.\r\n\r\nFusion surgery is recommended because there is too much movement or instability in the spine. The surgeon is looking to place artificial material to permanently fuse the area together, to keep it from moving. But this doesn’t always resolve the pain, and will eventually cause degeneration at the levels below and above the fusion, frequently leaving the back pain sufferer with more back pain and arthritis because of the surgery.\r\n\r\n<h6>How Is Failed Back Surgery Syndrome Treated</h6>\r\nPatients with Failed Back Surgery Syndrome experience prolonged pain and because of that treatment often includes narcotics, steroids and even anti-depressants, since the prolonged pain often results in depression. All of these medications come with their own set of problems. Spinal cord stimulation is also utilized and allows for some relief in a subset of FBSS patients with radicular leg pain. These patients, however, continue to experience difficulties in function and quality of life.\r\n\r\n<h6>Regenerative Orthopedics Help with Failed Back Surgery Syndrome</h6>\r\nRegenerative Orthopedics refers to therapies that stimulate the body to heal itself, such as Stem Cell Therapy, PRP, and Prolotherapy.  These regenerative injection therapies stimulate the body to repair, without the need for surgery. Our bodies have amazing regenerative capabilities. This is a novel approach because we are triggering the body to strengthen the tissue on its own, without the use of artificial hardware.\r\n\r\nFor those patients who are taking narcotics, or for those with spinal cord stimulators, an initial consultation to discuss these treatments would be recommended. Regenerative Orthopedics therapies resolve the problems that damaged the spine, and for optimal healing, other therapies that are suppressing the ability of the body to heal need to be limited or stopped. Regenerative Orthopedic therapies are reparative treatments and are alternatives to surgery. They can also help when surgery has already been done, but failed to address the root issue.\r\n\r\nFor those with back pain who have not had surgery yet, we strongly recommend looking into regenerative therapies first. One of the wonderful things about Regenerative Orthopedics for back pain is, the individual can maintain activity and get back to the activities they enjoy, without the need for extensive downtime. Treatments and exercise programs are individually tailored to promote healing and return people to their active lives. It’s really an amazing transformation to see people regain their mobility and independence!\r\n\r\nRegenerative Orthopedics is helpful for almost all types of back pain: herniated discs, bulging discs, degenerative disc disease, chronic subluxation of the sacroiliac joints, and more. Regenerative Orthopedics may save you from an unnecessary surgery, because the treatments address the problems causing the instability, and offer a way of repair when other treatments often fail.\r\n\r\nRegenerative Orthopedics treatments correct the underlying problem of spinal instability. Without this correction, the patient is more likely to continue on the course of pain and symptom chasing pain management therapies that only temporarily calm the pain. Remember, spinal instability is a progressive disorder, meaning that the area will continue to degenerate until regenerative treatments are used to restore them.','Failed Back Surgery Syndrome','','inherit','closed','closed','','689-revision-v1','','','2019-06-08 10:06:03','2019-06-08 10:06:03','',689,'https://www.drfields.com/uncategorized/689-revision-v1/',0,'revision','',0),(696,8,'2019-06-08 10:06:53','2019-06-08 10:06:53','<strong>WHAT TO EXPECT POST TREATMENT</strong>\n\n<strong>Stiffness and Soreness:</strong> You can expect to be stiff and sore post treatment. This could last from 2 to 7 days. If it lasts longer it is best to call back and keep us informed on how you are doing.\n\n<strong>Driving and working</strong>: You can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.<strong>\n</strong>\n\n<img class=\"alignright\" title=\"Prolotherapy\" src=\"https://www.drfields.com/portals/0/Images/prolotherapy/prolotherapy-3.jpg\" alt=\"Prolotherapy\" /><strong>Pain Medication:</strong> Try Tylenol or Tylenol extra strength first. Apply moist heat to the area every 20-30 minutes too. If that does not work, which it usually does in 90% of the cases, you can call the office for a prescription pain medicine.\n\n<strong>Numbness: </strong> You may notice some numbness post treatment. This is not unusual as we have nerves all over our bodies and a needle may have irritated one. If this happens, your nerve will heal itself over time. Contact us if burning pain is noted, as medication is important for that symptom.\n\n<strong>Bruising: </strong> Bruising is quite common; do not be alarmed by it. Bruising is good for us, as it has growth factors in it.\n\n<strong>Exercising:  </strong>Exercising is encouraged, but please do not over do it. Pay attention to what your body tells you. If it hurts, take a break! Do not push yourself just because you feel better. You may pay for it later. Use heat to help calm pain or spasms.\n\n<strong>Remember that the use of anti-inflammatory medicines and ice are contraindicated.</strong>\n\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>','Post Treatment','','inherit','closed','closed','','408-autosave-v1','','','2019-06-08 10:06:53','2019-06-08 10:06:53','',408,'https://www.drfields.com/uncategorized/408-autosave-v1/',0,'revision','',0),(698,8,'2019-06-08 10:07:46','2019-06-08 10:07:46','Prolotherapy 3','Prolotherapy 3','','inherit','open','closed','','prolotherapy-3','','','2019-06-08 10:07:50','2019-06-08 10:07:50','',408,'https://www.drfields.com/wp-content/uploads/2019/06/prolotherapy-3.jpg',0,'attachment','image/jpeg',0),(699,8,'2019-06-08 10:07:54','2019-06-08 10:07:54','\r\n&nbsp;\r\n\r\n<strong>WHAT TO EXPECT POST TREATMENT</strong>\r\n\r\n<strong>Stiffness and Soreness:</strong> You can expect to be stiff and sore post treatment. This could last from 2 to 7 days. If it lasts longer it is best to call back and keep us informed on how you are doing.\r\n\r\n<strong>Driving and working</strong>: You can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.<strong>\r\n</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapy-3.jpg\" alt=\"Prolotherapy 3\" width=\"200\" height=\"306\" class=\"alignright size-full wp-image-698\" /><strong>Pain Medication:</strong> Try Tylenol or Tylenol extra strength first. Apply moist heat to the area every 20-30 minutes too. If that does not work, which it usually does in 90% of the cases, you can call the office for a prescription pain medicine.\r\n\r\n<strong>Numbness: </strong> You may notice some numbness post treatment. This is not unusual as we have nerves all over our bodies and a needle may have irritated one. If this happens, your nerve will heal itself over time. Contact us if burning pain is noted, as medication is important for that symptom.\r\n\r\n<strong>Bruising: </strong> Bruising is quite common; do not be alarmed by it. Bruising is good for us, as it has growth factors in it.\r\n\r\n<strong>Exercising:  </strong>Exercising is encouraged, but please do not over do it. Pay attention to what your body tells you. If it hurts, take a break! Do not push yourself just because you feel better. You may pay for it later. Use heat to help calm pain or spasms.\r\n\r\n<strong>Remember that the use of anti-inflammatory medicines and ice are contraindicated.</strong>\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>','Post Treatment','','inherit','closed','closed','','408-revision-v1','','','2019-06-08 10:07:54','2019-06-08 10:07:54','',408,'https://www.drfields.com/uncategorized/408-revision-v1/',0,'revision','',0),(701,8,'2019-06-08 10:09:02','2019-06-08 10:09:02','&nbsp;\r\n\r\n<strong>WHAT TO EXPECT POST TREATMENT</strong>\r\n\r\n<strong>Stiffness and Soreness:</strong> You can expect to be stiff and sore post treatment. This could last from 2 to 7 days. If it lasts longer it is best to call back and keep us informed on how you are doing.\r\n\r\n<strong>Driving and working</strong>: You can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.<strong>\r\n</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapy-3.jpg\" alt=\"Prolotherapy 3\" width=\"200\" height=\"306\" class=\"alignright size-full wp-image-698\" /><strong>Pain Medication:</strong> Try Tylenol or Tylenol extra strength first. Apply moist heat to the area every 20-30 minutes too. If that does not work, which it usually does in 90% of the cases, you can call the office for a prescription pain medicine.\r\n\r\n<strong>Numbness: </strong> You may notice some numbness post treatment. This is not unusual as we have nerves all over our bodies and a needle may have irritated one. If this happens, your nerve will heal itself over time. Contact us if burning pain is noted, as medication is important for that symptom.\r\n\r\n<strong>Bruising: </strong> Bruising is quite common; do not be alarmed by it. Bruising is good for us, as it has growth factors in it.\r\n\r\n<strong>Exercising:  </strong>Exercising is encouraged, but please do not over do it. Pay attention to what your body tells you. If it hurts, take a break! Do not push yourself just because you feel better. You may pay for it later. Use heat to help calm pain or spasms.\r\n\r\n<strong>Remember that the use of anti-inflammatory medicines and ice are contraindicated.</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Post Treatment','','inherit','closed','closed','','408-revision-v1','','','2019-06-08 10:09:02','2019-06-08 10:09:02','',408,'https://www.drfields.com/uncategorized/408-revision-v1/',0,'revision','',0),(703,8,'2019-06-08 10:10:41','2019-06-08 10:10:41','Joint pain in the various joints of the body is usually caused by some sort of weakness in the soft tissue. Pain in the neck is no different. Ligament weakness is very often the underlying cause of neck pain and it can also be the reason behind headaches, and even ear and mouth pain. Regenerative Orthopedics, such as Prolotherapy, has been proven to effectively stimulate the healing of weakened ligaments that are behind all of this pain. That’s great news because there is an answer for those suffering with these ailments and a way to find permanent pain relief.\r\n\r\n<h4>Neck Ligaments and Cervical Instability</h4>\r\nWhen the ligaments of the neck are weakened, the instability that transpires in the neck is called cervical instability. Sufferers with this malady often experience a bunch of bizarre symptoms in addition to neck pain which can include dizziness, visual disturbances, eye pressure, mouth pain, sinus congestion, tinnitus, and many others. Instability of the ligaments of the neck is implicated in conditions like disc herniation, whiplash, cervicocranial syndrome and spondylosis. When these ligaments are injured, they elongate and become weak, which allows for excessive movement in the vertebrae of the neck.\r\n\r\nInstability that arises in the upper part of the neck or cervical spine (C0-C2) can manifest symtoms such as vertigo, tinnitus, dizziness, facial pain, arm pain, and migraine headaches. A condition called vertebrobasilar insufficiency (VBI) with its associated symptoms of neck pain, headaches/migraines, dizziness, drop attacks, vertigo, difficulty swallowing and/or speaking, and auditory and visual disturbances can also develop in instances of upper cervical spine instability, because the excessive movement in the neck can alter the flow of vertebral arterial blood.\r\nWhen the instability is located in the lower neck or cervical spine (C3-C7), the resultant symptoms include muscle spasms, crepitation, and feelings of pins and needles along with neck pain. As the instability worsens, so do the symptoms. Surgery to fuse the vertebrae of the neck is often recommended in cases of cervical instability, but a consultation from an expert in Regenerative Orthopedics should be sought, since this therapy can often prevent the need for the fusion, as well as strengthen the involved ligaments and restore proper motion to the neck.\r\n\r\n<h4>The Neck Is Unique</h4>\r\nThe neck is unique, because the vertebrae in the neck are smaller and more mobile than all of the movable vertebrae of the spine. The high degree of mobility in the neck vertebrae is required to move the head through its varied range of motion. These anatomic features are necessary for optimal functioning, but also make the area vulnerable to injury due to the demands placed upon the neck. The ligaments of the neck, which are the stabilizing structures primarily responsible for connecting adjacent bones, are especially vulnerable when trauma occurs. When the neck is stable, it moves and functions normally, while remaining in proper alignment and protecting the blood vessels, nerves and spinal cord. Injury to the ligaments changes this dynamic, and leads to instability of the cervical spine. Add to that all of the stresses and loads placed upon the neck and a cycle of imbalance is set in motion generating even more abnormal changes in the vertebral alignment. Remember that cervical instability involves excessive motion between adjacent vertebrae which causes excessive stress on the supporting ligaments and the nerve endings within them. The result is a cycle of pain and the associated variety of aforementioned symptoms.\r\n\r\n<h4>Whiplash: A Type of Cervical Instability</h4>\r\nWhiplash injuries are a common source of cervical instability. The sudden acceleration and deceleration during rear end collisions causes the head to severely whip backwards and forwards. The backward “whip,” or hyperextension, is often associated with more injury to the soft tissue of the neck, because it lacks the limiting effect of the chin meeting the chest in the forward “whip.” The excessive motion in hyperextension severely strains the involved muscles and ligaments, and adjoining neck joints.\r\n\r\nThe ligaments of the neck are particularly vulnerable to injury during a whiplash event and more notably when the head is rotated at the time of collision, such as when looking in the rear-view mirror. The ligaments that function to limit side-to-side head movement become susceptible to failure in this turned position, which then compromises their ability to limit motion. The lack of a stabilizing structure can lead to further injury of the soft tissue and joint structures and the possibility of nerve injury as well as irritation of the sympathetic nervous system. Provocation of these nerve endings alters firing patterns and increases activation of the sympathetic nervous system resulting in a myriad of symptoms, as those that occur in the condition called Barré-Liéou Syndrome or cervicocranial syndrome.\r\n\r\nResolve the Underlying Ligament Injury and the Symptoms with Regenerative Orthopedics\r\nRegenerative Orthopedics strengthens weakened ligaments. It is effective in repairing and regenerating the ligaments and structures involved in cervical instability, eliminating the instability and abnormal movement, which then resolves the neck pain and associated symptoms. Cervical instability can be a frustrating and life-altering condition, but Regenerative Orthopedics, a safe non-surgical option, can stabilize the neck and increase functionality in the person suffering it, and essentially help the patient get their life back.\r\n','Neck Pain Treatment and Relief','','publish','closed','closed','','neck-pain-treatment-and-relief','','','2019-06-18 05:56:33','2019-06-18 05:56:33','',0,'https://www.drfields.com/?page_id=703',0,'page','',0),(705,8,'2019-06-08 10:10:41','2019-06-08 10:10:41','Joint pain in the various joints of the body is usually caused by some sort of weakness in the soft tissue. Pain in the neck is no different. Ligament weakness is very often the underlying cause of neck pain and it can also be the reason behind headaches, and even ear and mouth pain. Regenerative Orthopedics, such as Prolotherapy, has been proven to effectively stimulate the healing of weakened ligaments that are behind all of this pain. That’s great news because there is an answer for those suffering with these ailments and a way to find permanent pain relief.\r\n\r\n<h6>Neck Ligaments and Cervical Instability</h6>\r\nWhen the ligaments of the neck are weakened, the instability that transpires in the neck is called cervical instability. Sufferers with this malady often experience a bunch of bizarre symptoms in addition to neck pain which can include dizziness, visual disturbances, eye pressure, mouth pain, sinus congestion, tinnitus, and many others. Instability of the ligaments of the neck is implicated in conditions like disc herniation, whiplash, cervicocranial syndrome and spondylosis. When these ligaments are injured, they elongate and become weak, which allows for excessive movement in the vertebrae of the neck.\r\n\r\nInstability that arises in the upper part of the neck or cervical spine (C0-C2) can manifest symtoms such as vertigo, tinnitus, dizziness, facial pain, arm pain, and migraine headaches. A condition called vertebrobasilar insufficiency (VBI) with its associated symptoms of neck pain, headaches/migraines, dizziness, drop attacks, vertigo, difficulty swallowing and/or speaking, and auditory and visual disturbances can also develop in instances of upper cervical spine instability, because the excessive movement in the neck can alter the flow of vertebral arterial blood.\r\nWhen the instability is located in the lower neck or cervical spine (C3-C7), the resultant symptoms include muscle spasms, crepitation, and feelings of pins and needles along with neck pain. As the instability worsens, so do the symptoms. Surgery to fuse the vertebrae of the neck is often recommended in cases of cervical instability, but a consultation from an expert in Regenerative Orthopedics should be sought, since this therapy can often prevent the need for the fusion, as well as strengthen the involved ligaments and restore proper motion to the neck.\r\n\r\n<h6>The Neck Is Unique</h6>\r\nThe neck is unique, because the vertebrae in the neck are smaller and more mobile than all of the movable vertebrae of the spine. The high degree of mobility in the neck vertebrae is required to move the head through its varied range of motion. These anatomic features are necessary for optimal functioning, but also make the area vulnerable to injury due to the demands placed upon the neck. The ligaments of the neck, which are the stabilizing structures primarily responsible for connecting adjacent bones, are especially vulnerable when trauma occurs. When the neck is stable, it moves and functions normally, while remaining in proper alignment and protecting the blood vessels, nerves and spinal cord. Injury to the ligaments changes this dynamic, and leads to instability of the cervical spine. Add to that all of the stresses and loads placed upon the neck and a cycle of imbalance is set in motion generating even more abnormal changes in the vertebral alignment. Remember that cervical instability involves excessive motion between adjacent vertebrae which causes excessive stress on the supporting ligaments and the nerve endings within them. The result is a cycle of pain and the associated variety of aforementioned symptoms.\r\n\r\n<h6>Whiplash: A Type of Cervical Instability</h6>\r\nWhiplash injuries are a common source of cervical instability. The sudden acceleration and deceleration during rear end collisions causes the head to severely whip backwards and forwards. The backward “whip,” or hyperextension, is often associated with more injury to the soft tissue of the neck, because it lacks the limiting effect of the chin meeting the chest in the forward “whip.” The excessive motion in hyperextension severely strains the involved muscles and ligaments, and adjoining neck joints.\r\n\r\nThe ligaments of the neck are particularly vulnerable to injury during a whiplash event and more notably when the head is rotated at the time of collision, such as when looking in the rear-view mirror. The ligaments that function to limit side-to-side head movement become susceptible to failure in this turned position, which then compromises their ability to limit motion. The lack of a stabilizing structure can lead to further injury of the soft tissue and joint structures and the possibility of nerve injury as well as irritation of the sympathetic nervous system. Provocation of these nerve endings alters firing patterns and increases activation of the sympathetic nervous system resulting in a myriad of symptoms, as those that occur in the condition called Barré-Liéou Syndrome or cervicocranial syndrome.\r\n\r\nResolve the Underlying Ligament Injury and the Symptoms with Regenerative Orthopedics\r\nRegenerative Orthopedics strengthens weakened ligaments. It is effective in repairing and regenerating the ligaments and structures involved in cervical instability, eliminating the instability and abnormal movement, which then resolves the neck pain and associated symptoms. Cervical instability can be a frustrating and life-altering condition, but Regenerative Orthopedics, a safe non-surgical option, can stabilize the neck and increase functionality in the person suffering it, and essentially help the patient get their life back.\r\n','Neck Pain Treatment and Relief','','inherit','closed','closed','','703-revision-v1','','','2019-06-08 10:10:41','2019-06-08 10:10:41','',703,'https://www.drfields.com/uncategorized/703-revision-v1/',0,'revision','',0),(708,8,'2019-06-08 10:14:41','2019-06-08 10:14:41','<h4><span id=\"dnn_ctr431_dnnTITLE_titleLabel\" class=\"TitleH2\">PRP Platelet Rich Plasma</span></h4>\r\n<div id=\"dnn_ctr431_ContentPane\">\r\n<div id=\"dnn_ctr431_ModuleContent\" class=\"DNNModuleContent ModDNNHTMLC\">\r\n<div id=\"dnn_ctr431_HtmlModule_lblContent\" class=\"Normal\">\r\n\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\r\n<h4>Why Does PRP Treatment Work?</h4>\r\n<img title=\"A Girl is Running\" src=\"https://www.drfields.com/portals/0/Images/running.jpg\" alt=\"A Girl is Running\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood.  A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This  highly concentrated  amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\r\n\r\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> should be tried first.\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>It primes the area that is damaged,  which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n<h4>PRP Treatment Frequently Asked Questions</h4>\r\n<h3><strong>What is PRP Treatment?</strong></h3>\r\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n<h3><strong>What does PRP mean?</strong></h3>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\r\n<h3><strong>What conditions are treated with PRP?</strong></h3>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis. <img title=\"Full Body Joints\" src=\"https://www.drfields.com/portals/0/Images/fully_body_joints.jpg\" alt=\"Full Body Joints\" />\r\n<h3><strong>What are some common diagnoses treated with PRP?</strong></h3>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, Bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h3><strong>How is PRP treatment administered?</strong></h3>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n<h3><strong>Is PRP curative?</strong></h3>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\r\n<h3><strong>How does PRP work to heal?</strong></h3>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\r\n<h3><strong>Is PRP painful?</strong></h3>\r\nPatients typically tolerate the procedure well although post-injection soreness is sometime experienced.\r\n<h3><strong>How many PRP treatments do you need?</strong></h3>\r\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\r\n<h3><strong>How far apart are PRP treatments spaced?</strong></h3>\r\nTypically about every 6 weeks if indicated.<img src=\"https://www.drfields.com/portals/0/Images/couple1.jpg\" alt=\"PRP Treatment Questions\" />\r\n<h3><strong>What can you expect after getting PRP?</strong></h3>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\r\n<h3><strong>Are there side effects/complications of PRP?</strong></h3>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n<h3><strong>How long does it take the PRP to “work”?</strong></h3>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n<h3><strong>Platelet Rich Plasma (PRP) Therapy in the News:</strong></h3>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>','PRP Treatment','','inherit','closed','closed','','414-revision-v1','','','2019-06-08 10:14:41','2019-06-08 10:14:41','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(709,8,'2019-06-08 10:16:02','2019-06-08 10:16:02','&nbsp;\r\n\r\n<h4>>PRP Platelet Rich Plasma</h4>\r\n\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\r\n<h4>Why Does PRP Treatment Work?</h4>\r\n<img title=\"A Girl is Running\" src=\"https://www.drfields.com/portals/0/Images/running.jpg\" alt=\"A Girl is Running\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood.  A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This  highly concentrated  amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\r\n\r\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> should be tried first.\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>It primes the area that is damaged,  which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n<h4>PRP Treatment Frequently Asked Questions</h4>\r\n<h3><strong>What is PRP Treatment?</strong></h3>\r\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n<h3><strong>What does PRP mean?</strong></h3>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\r\n<h3><strong>What conditions are treated with PRP?</strong></h3>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis. <img title=\"Full Body Joints\" src=\"https://www.drfields.com/portals/0/Images/fully_body_joints.jpg\" alt=\"Full Body Joints\" />\r\n<h3><strong>What are some common diagnoses treated with PRP?</strong></h3>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, Bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h3><strong>How is PRP treatment administered?</strong></h3>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n<h3><strong>Is PRP curative?</strong></h3>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\r\n<h3><strong>How does PRP work to heal?</strong></h3>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\r\n<h3><strong>Is PRP painful?</strong></h3>\r\nPatients typically tolerate the procedure well although post-injection soreness is sometime experienced.\r\n<h3><strong>How many PRP treatments do you need?</strong></h3>\r\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\r\n<h3><strong>How far apart are PRP treatments spaced?</strong></h3>\r\nTypically about every 6 weeks if indicated.<img src=\"https://www.drfields.com/portals/0/Images/couple1.jpg\" alt=\"PRP Treatment Questions\" />\r\n<h3><strong>What can you expect after getting PRP?</strong></h3>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\r\n<h3><strong>Are there side effects/complications of PRP?</strong></h3>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n<h3><strong>How long does it take the PRP to “work”?</strong></h3>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n<h3><strong>Platelet Rich Plasma (PRP) Therapy in the News:</strong></h3>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>','PRP Treatment','','inherit','closed','closed','','414-revision-v1','','','2019-06-08 10:16:02','2019-06-08 10:16:02','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(712,8,'2019-06-08 10:20:08','2019-06-08 10:20:08','Fully Body Joints','Fully Body Joints','','inherit','open','closed','','fully_body_joints','','','2019-06-08 10:20:11','2019-06-08 10:20:11','',414,'https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg',0,'attachment','image/jpeg',0),(715,8,'2019-06-08 10:21:46','2019-06-08 10:21:46','&nbsp;\r\n\r\n<h4>>PRP Platelet Rich Plasma</h4>\r\n\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\r\n\r\n<h4>Why Does PRP Treatment Work?</h4>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\"  class=\"alignright size-full wp-image-642\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood.  A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This  highly concentrated  amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\r\n\r\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\r\n\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>It primes the area that is damaged,  which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment Frequently Asked Questions</h4>\r\n<h3><strong>What is PRP Treatment?</strong></h3>\r\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n<h3><strong>What does PRP mean?</strong></h3>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\r\n<h3><strong>What conditions are treated with PRP?</strong></h3>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis. <img src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" class=\"alignleft size-full wp-image-712\" />\r\n<h3><strong>What are some common diagnoses treated with PRP?</strong></h3>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, Bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h3><strong>How is PRP treatment administered?</strong></h3>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n<h3><strong>Is PRP curative?</strong></h3>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\r\n<h3><strong>How does PRP work to heal?</strong></h3>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\r\n<h3><strong>Is PRP painful?</strong></h3>\r\nPatients typically tolerate the procedure well although post-injection soreness is sometime experienced.\r\n<h3><strong>How many PRP treatments do you need?</strong></h3>\r\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\r\n<h3><strong>How far apart are PRP treatments spaced?</strong></h3>\r\nTypically about every 6 weeks if indicated.<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\"  class=\"alignright size-full wp-image-644\" />\r\n<h3><strong>What can you expect after getting PRP?</strong></h3>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\r\n<h3><strong>Are there side effects/complications of PRP?</strong></h3>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n<h3><strong>How long does it take the PRP to “work”?</strong></h3>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n<h3><strong>Platelet Rich Plasma (PRP) Therapy in the News:</strong></h3>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>','PRP Treatment','','inherit','closed','closed','','414-revision-v1','','','2019-06-08 10:21:46','2019-06-08 10:21:46','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(716,8,'2019-06-08 10:22:01','2019-06-08 10:22:01','&nbsp;\r\n\r\n<h4>PRP Platelet Rich Plasma</h4>\r\n\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\r\n\r\n<h4>Why Does PRP Treatment Work?</h4>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\"  class=\"alignright size-full wp-image-642\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood.  A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This  highly concentrated  amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\r\n\r\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\r\n\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>It primes the area that is damaged,  which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment Frequently Asked Questions</h4>\r\n<h3><strong>What is PRP Treatment?</strong></h3>\r\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n<h3><strong>What does PRP mean?</strong></h3>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\r\n<h3><strong>What conditions are treated with PRP?</strong></h3>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis. <img src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" class=\"alignleft size-full wp-image-712\" />\r\n<h3><strong>What are some common diagnoses treated with PRP?</strong></h3>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, Bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h3><strong>How is PRP treatment administered?</strong></h3>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n<h3><strong>Is PRP curative?</strong></h3>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\r\n<h3><strong>How does PRP work to heal?</strong></h3>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\r\n<h3><strong>Is PRP painful?</strong></h3>\r\nPatients typically tolerate the procedure well although post-injection soreness is sometime experienced.\r\n<h3><strong>How many PRP treatments do you need?</strong></h3>\r\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\r\n<h3><strong>How far apart are PRP treatments spaced?</strong></h3>\r\nTypically about every 6 weeks if indicated.<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\"  class=\"alignright size-full wp-image-644\" />\r\n<h3><strong>What can you expect after getting PRP?</strong></h3>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\r\n<h3><strong>Are there side effects/complications of PRP?</strong></h3>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n<h3><strong>How long does it take the PRP to “work”?</strong></h3>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n<h3><strong>Platelet Rich Plasma (PRP) Therapy in the News:</strong></h3>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>','PRP Treatment','','inherit','closed','closed','','414-revision-v1','','','2019-06-08 10:22:01','2019-06-08 10:22:01','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(719,8,'2019-06-08 10:30:17','2019-06-08 10:30:17','&nbsp;\r\n\r\n<h4>PRP Platelet Rich Plasma</h4>\r\n\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\r\n\r\n<h4>Why Does PRP Treatment Work?</h4>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\"  class=\"alignright size-full wp-image-642\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood.  A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This  highly concentrated  amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\r\n\r\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\r\n\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>It primes the area that is damaged,  which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment Frequently Asked Questions</h4>\r\n<h6><strong>What is PRP Treatment?</strong></h6>\r\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n\r\n<h6>>What does PRP mean?</h6>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\r\n\r\n<h6>What conditions are treated with PRP?</h6>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis. <img src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" class=\"alignleft size-full wp-image-712\" />\r\n\r\n<h6>What are some common diagnoses treated with PRP?</h6>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, Bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h6>How is PRP treatment administered?</h6>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n\r\n<h6>Is PRP curative?</strong></h6>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\r\n\r\n<h6><strong>How does PRP work to heal?</strong></h6>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\r\n\r\n<h6><strong>Is PRP painful?</strong></h6>\r\nPatients typically tolerate the procedure well although post-injection soreness is sometime experienced.\r\n\r\n<h6><strong>How many PRP treatments do you need?</strong></h6>\r\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\r\n\r\n<h6><strong>How far apart are PRP treatments spaced?</strong></h6>\r\nTypically about every 6 weeks if indicated.<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\"  class=\"alignright size-full wp-image-644\" />\r\n\r\n<h6><strong>What can you expect after getting PRP?</strong></h6>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\r\n<h6><strong>Are there side effects/complications of PRP?</strong></h6>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n\r\n<h6><strong>How long does it take the PRP to “work”?</strong></h6>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n\r\n<h6><strong>Platelet Rich Plasma (PRP) Therapy in the News:</strong></h6>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>','PRP Treatment','','inherit','closed','closed','','414-revision-v1','','','2019-06-08 10:30:17','2019-06-08 10:30:17','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(721,8,'2019-06-08 10:32:30','2019-06-08 10:32:30','&nbsp;\r\n\r\n<h4>PRP Platelet Rich Plasma</h4>\r\n\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\r\n\r\n<h4>Why Does PRP Treatment Work?</h4>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\"  class=\"alignright size-full wp-image-642\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood.  A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This  highly concentrated  amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\r\n\r\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\r\n\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>It primes the area that is damaged,  which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment Frequently Asked Questions</h4>\r\n<h6><strong>What is PRP Treatment?</strong></h6>\r\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n\r\n<h6>What does PRP mean?</h6>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\r\n\r\n<h6>What conditions are treated with PRP?</h6>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis. <img src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" class=\"alignleft size-full wp-image-712\" />\r\n\r\n<h6>What are some common diagnoses treated with PRP?</h6>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, Bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h6>How is PRP treatment administered?</h6>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n\r\n<h6>Is PRP curative?</h6>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\r\n\r\n<h6>How does PRP work to heal?</h6>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\r\n\r\n<h6>Is PRP painful?</h6>\r\nPatients typically tolerate the procedure well although post-injection soreness is sometime experienced.\r\n\r\n<h6>How many PRP treatments do you need?</h6>\r\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\r\n\r\n<h6>How far apart are PRP treatments spaced?</h6>\r\nTypically about every 6 weeks if indicated.<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\"  class=\"alignright size-full wp-image-644\" />\r\n\r\n<h6>What can you expect after getting PRP?</h6>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\r\n\r\n<h6>Are there side effects/complications of PRP?</h6>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n\r\n<h6>How long does it take the PRP to “work”?</h6>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n\r\n<h6>Platelet Rich Plasma (PRP) Therapy in the News:</h6>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>','PRP Treatment','','inherit','closed','closed','','414-revision-v1','','','2019-06-08 10:32:30','2019-06-08 10:32:30','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(723,8,'2019-06-08 10:34:38','2019-06-08 10:34:38','&nbsp;\r\n\r\n<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n\r\n<strong>Stem Cell Knee (VIDEO HERE)  Stem Cell Hip (VIDEO HERE)</strong>\r\n<p style=\"text-align: left;\"><em>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </em></p>\r\nWatch the testimonials on this page, or see many more on our <a href=\"#\">Testimonials Page</a>.\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"imgLeft alignleft\" title=\"Stem Cell\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell1.jpg\" alt=\"Stem Cell treatment for joints\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/Prolotherapy/PRP-Prolotherapy\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"imgRight alignleft\" title=\"Stem Cells\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell2.jpg\" alt=\"Stem Cells\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-06-08 10:34:38','2019-06-08 10:34:38','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(724,8,'2019-06-08 10:35:20','2019-06-08 10:35:20','&nbsp;\r\n\r\n<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n\r\n<strong><div class=\"youtube-click-div\"><a class=\"youtube\" href=\"https://www.youtube.com/watch?v=YoXRC87KNuM\"><img alt=\"Stem Cell Knee\" title=\"Stem Cell Knee\" src=\"https://img.youtube.com/vi/YoXRC87KNuM/0.jpg\"></a>\r\n<p><strong>Stem Cell Knee</strong></p>\r\n</div>Stem Cell Knee (VIDEO HERE)  Stem Cell Hip (VIDEO HERE)</strong>\r\n<p style=\"text-align: left;\"><em>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </em></p>\r\nWatch the testimonials on this page, or see many more on our <a href=\"#\">Testimonials Page</a>.\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"imgLeft alignleft\" title=\"Stem Cell\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell1.jpg\" alt=\"Stem Cell treatment for joints\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/Prolotherapy/PRP-Prolotherapy\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"imgRight alignleft\" title=\"Stem Cells\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell2.jpg\" alt=\"Stem Cells\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-06-08 10:35:20','2019-06-08 10:35:20','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(725,8,'2019-06-08 10:37:06','2019-06-08 10:37:06','&nbsp;\r\n\r\n<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n\r\n<strong><Stem Cell Knee (VIDEO HERE)  Stem Cell Hip (VIDEO HERE)</strong>\r\n\r\n<em>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </em></p>\r\nWatch the testimonials on this page, or see many more on our <a href=\"#\">Testimonials Page</a>.\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"imgLeft alignleft\" title=\"Stem Cell\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell1.jpg\" alt=\"Stem Cell treatment for joints\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/Prolotherapy/PRP-Prolotherapy\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"imgRight alignleft\" title=\"Stem Cells\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell2.jpg\" alt=\"Stem Cells\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-06-08 10:37:06','2019-06-08 10:37:06','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(727,8,'2019-06-08 10:37:28','2019-06-08 10:37:28','&nbsp;\r\n\r\n<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n\r\n<strong><Stem Cell Knee (VIDEO HERE)  Stem Cell Hip (VIDEO HERE)</strong>\r\n\r\n<em>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </em>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"#\">Testimonials Page</a>.\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"imgLeft alignleft\" title=\"Stem Cell\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell1.jpg\" alt=\"Stem Cell treatment for joints\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/Prolotherapy/PRP-Prolotherapy\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"imgRight alignleft\" title=\"Stem Cells\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell2.jpg\" alt=\"Stem Cells\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-06-08 10:37:28','2019-06-08 10:37:28','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(728,8,'2019-06-08 10:37:51','2019-06-08 10:37:51','&nbsp;\r\n\r\n<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n\r\n<strong><Stem Cell Knee (VIDEO HERE)  Stem Cell Hip (VIDEO HERE)</strong>\r\n\r\n<i>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"#\">Testimonials Page</a>.\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"imgLeft alignleft\" title=\"Stem Cell\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell1.jpg\" alt=\"Stem Cell treatment for joints\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/Prolotherapy/PRP-Prolotherapy\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"imgRight alignleft\" title=\"Stem Cells\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell2.jpg\" alt=\"Stem Cells\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-06-08 10:37:51','2019-06-08 10:37:51','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(729,8,'2019-06-08 10:37:59','2019-06-08 10:37:59','&nbsp;\r\n\r\n<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n\r\n<strong>Stem Cell Knee (VIDEO HERE)  Stem Cell Hip (VIDEO HERE)</strong>\r\n\r\n<i>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"#\">Testimonials Page</a>.\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"imgLeft alignleft\" title=\"Stem Cell\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell1.jpg\" alt=\"Stem Cell treatment for joints\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/Prolotherapy/PRP-Prolotherapy\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"imgRight alignleft\" title=\"Stem Cells\" src=\"https://www.drfields.com/portals/0/Images/stem/Stem-Cell2.jpg\" alt=\"Stem Cells\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-06-08 10:37:59','2019-06-08 10:37:59','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(732,8,'2019-06-08 10:42:46','2019-06-08 10:42:46','Stem Cell1','Stem Cell1','','inherit','open','closed','','stem-cell1','','','2019-06-08 10:42:50','2019-06-08 10:42:50','',431,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg',0,'attachment','image/jpeg',0),(735,8,'2019-06-08 10:45:48','2019-06-08 10:45:48','Stem Cell2','Stem Cell2','','inherit','open','closed','','stem-cell2','','','2019-06-08 10:45:53','2019-06-08 10:45:53','',431,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg',0,'attachment','image/jpeg',0),(736,8,'2019-06-08 10:46:28','2019-06-08 10:46:28','&nbsp;\r\n\r\n<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n\r\n<strong>Stem Cell Knee (VIDEO HERE)  Stem Cell Hip (VIDEO HERE)</strong>\r\n\r\n<i>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"#\">Testimonials Page</a>.\r\n\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\"  class=\"alignleft size-full wp-image-732\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" class=\"alignright size-full wp-image-735\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-06-08 10:46:28','2019-06-08 10:46:28','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(743,8,'2019-06-08 11:03:31','2019-06-08 11:03:31','&nbsp;\r\n\r\n<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibers that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Knee-Pain\">chronic knee pain</a>? <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Shoulder-Pain\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Neck-Pain\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Elbow-Pain\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/Contact-Us\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2019-06-08 11:03:31','2019-06-08 11:03:31','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(744,8,'2019-06-08 11:04:43','2019-06-08 11:04:43','&nbsp;\r\n\r\n<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibers that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Shoulder-Pain\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Neck-Pain\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Elbow-Pain\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/Contact-Us\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2019-06-08 11:04:43','2019-06-08 11:04:43','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(748,8,'2019-06-08 11:10:20','2019-06-08 11:10:20','&nbsp;\r\n\r\n<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibers that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/Contact-Us\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:1-4243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2019-06-08 11:10:20','2019-06-08 11:10:20','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(749,8,'2019-06-08 11:12:08','2019-06-08 11:12:08','&nbsp;\r\n\r\n<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibers that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/Contact-Us\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+1-4243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2019-06-08 11:12:08','2019-06-08 11:12:08','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(750,8,'2019-06-08 11:13:17','2019-06-08 11:13:17','&nbsp;\r\n\r\n<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibers that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+1-4243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2019-06-08 11:13:17','2019-06-08 11:13:17','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(754,8,'2019-06-14 06:40:05','2019-06-14 06:40:05','<h4>Prolotherapy for Chronic Knee Pain</h4>\n<div class=\"youtube-click-div video_left\">\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\n<strong>Sam - Knee</strong>\n</div>\n<div class=\"youtube-click-div video_left\">\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]\n<strong>Roberto - Knee (In Spanish)</strong>\n</div>\n\n\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Prolotherapy for Chronic Knee Pain treatment.\n\n<h4>What Causes Knee Pain?</h4>\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\n\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Osteoarthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Chronic osteoarthritis can also be the cause of occasional acute knee pain.\n\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudo gout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">Schedule Your Appointment Today!</a>\n\n<h4>How Prolotherapy Is Used To Treat Chronic Knee Pain</h4>\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\n\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with prolotherapy</a>. It just depends on the cause of your particular joint pain.\n\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\n\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\n\n<h4>Are you a Candidate For Prolotherapy for Chronic Knee Pain?</h4>\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\n\nAre you a candidate for Prolotherapy for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+1-310-455-8242\">(310) 455-8242</a>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-autosave-v1','','','2019-06-14 06:40:05','2019-06-14 06:40:05','',486,'https://www.drfields.com/uncategorized/486-autosave-v1/',0,'revision','',0),(755,8,'2019-06-08 11:18:22','2019-06-08 11:18:22','<h4>Prolotherapy for Chronic Knee Pain</h4>\r\n<strong>Sam - Knee (VIDEO HERE)</strong>\r\n<strong>Roberto - Knee (In Spanish) (VIDEO HERE)</strong>\r\n\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Prolotherapy for Chronic Knee Pain treatment.\r\n\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Osteoarthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Chronic osteoarthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudo gout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Knee Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with prolotherapy</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+1-310-455-8242\">(310) 455-8242</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2019-06-08 11:18:22','2019-06-08 11:18:22','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(760,8,'2019-06-08 11:23:03','2019-06-08 11:23:03','&nbsp;\r\n\r\n<strong>Mark - Neck (VIDEO HERE)</strong>\r\n\r\n<h4>Prolotherapy for Chronic Neck Pain</h4>\r\nBecause the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and to rotate, but if you can\'t move your neck normally, your life can be severely disrupted and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be prolotherapy for chronic neck pain.\r\n\r\n<h4>What Causes Neck Pain?</h4>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\nSymptoms of <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands and feet.</li>\r\n</ul>\r\n\r\nIf you are experiencing minor neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty and symptoms may begin to appear years after the disease begins.\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck can be the causes of the neck pain you feel. Pain in the neck can also be caused by injury such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, a pinched nerve, meningitis, influenza, a heart attack or torticollis, can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture, and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Neck Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Neck Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic neck pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are you a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+1-4243256695\">(424) 325- 6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Chronic Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2019-06-08 11:23:03','2019-06-08 11:23:03','',509,'https://www.drfields.com/uncategorized/509-revision-v1/',0,'revision','',0),(762,8,'2019-06-08 11:28:55','2019-06-08 11:28:55','&nbsp;\n\n<h4>Prolotherapy for Chronic Shoulder Pain</h4>\n<strong>Wilbur - Shoulder(video here)</strong>\n\nIt\'s easy to take your own body for granted when your body is working well. But when a part of your body, such as your shoulder, begins to hurt or hurts for an extended period of time, you quickly realize how much you depend on your shoulders for reaching, raising your arm, lifting yourself up or even just opening a cupboard. That\'s why so many people with shoulder pain or injuries look to <strong>Prolotherapy for chronic shoulder pain</strong> treatment.\n\n<h4>Causes of Shoulder Pain</h4>\nThe muscles and joints of the shoulder allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso and allow the arm to move a full 360°. This tremendous range of motion also makes the shoulder extremely unstable, and far more prone to dislocation and injury than other joints.\n\nBecause the rounded head or ball of the upper arm bone (humerus) is larger than the socket of the shoulder bone (scapula), this area is especially susceptible to injury. The shoulder joint consists of bones, muscles and ligaments that are all subject to stress and overuse.\n\nCommon causes of shoulder pain can be:\n<ul>\n 	<li>Tendonitis</li>\n 	<li>Bursitis</li>\n 	<li>Dislocation and attendant injury</li>\n 	<li>Impingement syndrome</li>\n 	<li>Rotator cuff tear</li>\n 	<li>Adhesive capsulated (frozen shoulder)</li>\n 	<li>Fracture</li>\n 	<li>Poor posture.</li>\n</ul>\nBut the <strong>most common cause of chronic pain in the shoulder is arthritis</strong>. This can take many forms such as: osteoarthritis, rheumatoid, traumatic, and gouty arthritis.\n\n<h4>Which Kind of Shoulder Pain Do You Have?</h4>\nIf you are experiencing pain from a rotator cuff injury, you will feel a dull aching pain, which worsens with movement.  A rotator cuff injury includes any type of irritation or damage to your <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> muscles or tendons. Causes of a rotator cuff injury may include falling, lifting and repetitive arm activities — especially those done overhead.\n\n<strong>Shoulder tendonitis</strong> can produce symptoms including a slow onset of discomfort, pain in the upper third of your arm and difficulty sleeping on the side of that arm.\n\nRedness and swelling that is tender and warm to the touch can be caused by <strong>bursitis</strong>.\n\nMinor shoulder pain, ‘clicking’, ‘giving way’, or frozen shoulder, are symptoms of <strong>arthritis</strong>. Osteoarthritis can begin as early as thirty, but symptoms can appear later, as the condition progresses.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<h4>How Prolotherapy Is Used To Treat Chronic Shoulder Pain</h4>\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\n\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\n\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\n\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\n\n<h4>Are you a Candidate For Prolotherapy for Chronic Shoulder Pain?</h4>\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic shoulder pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, shoulder surgery requires you reduce activity after treatment.\n\nAre you a candidate for Prolotherapy for your chronic shoulder pain? Would you like a <strong>second opinion before you have irreversible shoulder surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/Contact-Us\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel://1-310-627-2458\">(310) 627-2458</a>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Chronic Shoulder Pain','','inherit','closed','closed','','511-autosave-v1','','','2019-06-08 11:28:55','2019-06-08 11:28:55','',511,'https://www.drfields.com/uncategorized/511-autosave-v1/',0,'revision','',0),(763,8,'2019-06-08 11:32:52','2019-06-08 11:32:52','<a href=\"https://www.drfields.com/regenerative-medicine-lecture-in-mexico-city-english/\">(CLICK HERE FOR ENGLISH VERSION)</a>\r\n<img class=\"aligncenter size-full wp-image-764\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/MASIVO-PROLOTERAPIA.jpg\" alt=\"Masivo Proloterapia\" width=\"550\" height=\"1849\" />\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Regenerative Medicine Lecture in Mexico City (Spanish)','','draft','closed','closed','','regenerative-medicine-lecture-in-mexico-city-spanish','','','2019-06-18 07:57:49','2019-06-18 07:57:49','',0,'https://www.drfields.com/?page_id=763',0,'page','',0),(764,8,'2019-06-08 11:27:13','2019-06-08 11:27:13','Masivo Proloterapia','Masivo Proloterapia','','inherit','open','closed','','masivo-proloterapia','','','2019-06-08 11:27:23','2019-06-08 11:27:23','',763,'https://www.drfields.com/wp-content/uploads/2019/06/MASIVO-PROLOTERAPIA.jpg',0,'attachment','image/jpeg',0),(766,8,'2019-06-08 11:29:06','2019-06-08 11:29:06','&nbsp;\r\n\r\n<h4>Prolotherapy for Chronic Shoulder Pain</h4>\r\n<strong>Wilbur - Shoulder(video here)</strong>\r\n\r\nIt\'s easy to take your own body for granted when your body is working well. But when a part of your body, such as your shoulder, begins to hurt or hurts for an extended period of time, you quickly realize how much you depend on your shoulders for reaching, raising your arm, lifting yourself up or even just opening a cupboard. That\'s why so many people with shoulder pain or injuries look to <strong>Prolotherapy for chronic shoulder pain</strong> treatment.\r\n\r\n<h4>Causes of Shoulder Pain</h4>\r\nThe muscles and joints of the shoulder allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso and allow the arm to move a full 360°. This tremendous range of motion also makes the shoulder extremely unstable, and far more prone to dislocation and injury than other joints.\r\n\r\nBecause the rounded head or ball of the upper arm bone (humerus) is larger than the socket of the shoulder bone (scapula), this area is especially susceptible to injury. The shoulder joint consists of bones, muscles and ligaments that are all subject to stress and overuse.\r\n\r\nCommon causes of shoulder pain can be:\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation and attendant injury</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Adhesive capsulated (frozen shoulder)</li>\r\n 	<li>Fracture</li>\r\n 	<li>Poor posture.</li>\r\n</ul>\r\nBut the <strong>most common cause of chronic pain in the shoulder is arthritis</strong>. This can take many forms such as: osteoarthritis, rheumatoid, traumatic, and gouty arthritis.\r\n\r\n<h4>Which Kind of Shoulder Pain Do You Have?</h4>\r\nIf you are experiencing pain from a rotator cuff injury, you will feel a dull aching pain, which worsens with movement.  A rotator cuff injury includes any type of irritation or damage to your <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> muscles or tendons. Causes of a rotator cuff injury may include falling, lifting and repetitive arm activities — especially those done overhead.\r\n\r\n<strong>Shoulder tendonitis</strong> can produce symptoms including a slow onset of discomfort, pain in the upper third of your arm and difficulty sleeping on the side of that arm.\r\n\r\nRedness and swelling that is tender and warm to the touch can be caused by <strong>bursitis</strong>.\r\n\r\nMinor shoulder pain, ‘clicking’, ‘giving way’, or frozen shoulder, are symptoms of <strong>arthritis</strong>. Osteoarthritis can begin as early as thirty, but symptoms can appear later, as the condition progresses.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Shoulder Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Shoulder Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic shoulder pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, shoulder surgery requires you reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic shoulder pain? Would you like a <strong>second opinion before you have irreversible shoulder surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel://1-310-627-2458\">(310) 627-2458</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Chronic Shoulder Pain','','inherit','closed','closed','','511-revision-v1','','','2019-06-08 11:29:06','2019-06-08 11:29:06','',511,'https://www.drfields.com/uncategorized/511-revision-v1/',0,'revision','',0),(767,8,'2019-06-08 11:29:48','2019-06-08 11:29:48','&nbsp;\r\n\r\n<h4>Prolotherapy for Chronic Shoulder Pain</h4>\r\n<strong>Wilbur - Shoulder(video here)</strong>\r\n\r\nIt\'s easy to take your own body for granted when your body is working well. But when a part of your body, such as your shoulder, begins to hurt or hurts for an extended period of time, you quickly realize how much you depend on your shoulders for reaching, raising your arm, lifting yourself up or even just opening a cupboard. That\'s why so many people with shoulder pain or injuries look to <strong>Prolotherapy for chronic shoulder pain</strong> treatment.\r\n\r\n<h4>Causes of Shoulder Pain</h4>\r\nThe muscles and joints of the shoulder allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso and allow the arm to move a full 360°. This tremendous range of motion also makes the shoulder extremely unstable, and far more prone to dislocation and injury than other joints.\r\n\r\nBecause the rounded head or ball of the upper arm bone (humerus) is larger than the socket of the shoulder bone (scapula), this area is especially susceptible to injury. The shoulder joint consists of bones, muscles and ligaments that are all subject to stress and overuse.\r\n\r\nCommon causes of shoulder pain can be:\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation and attendant injury</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Adhesive capsulated (frozen shoulder)</li>\r\n 	<li>Fracture</li>\r\n 	<li>Poor posture.</li>\r\n</ul>\r\nBut the <strong>most common cause of chronic pain in the shoulder is arthritis</strong>. This can take many forms such as: osteoarthritis, rheumatoid, traumatic, and gouty arthritis.\r\n\r\n<h4>Which Kind of Shoulder Pain Do You Have?</h4>\r\nIf you are experiencing pain from a rotator cuff injury, you will feel a dull aching pain, which worsens with movement.  A rotator cuff injury includes any type of irritation or damage to your <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> muscles or tendons. Causes of a rotator cuff injury may include falling, lifting and repetitive arm activities — especially those done overhead.\r\n\r\n<strong>Shoulder tendonitis</strong> can produce symptoms including a slow onset of discomfort, pain in the upper third of your arm and difficulty sleeping on the side of that arm.\r\n\r\nRedness and swelling that is tender and warm to the touch can be caused by <strong>bursitis</strong>.\r\n\r\nMinor shoulder pain, ‘clicking’, ‘giving way’, or frozen shoulder, are symptoms of <strong>arthritis</strong>. Osteoarthritis can begin as early as thirty, but symptoms can appear later, as the condition progresses.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Shoulder Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Shoulder Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic shoulder pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, shoulder surgery requires you reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic shoulder pain? Would you like a <strong>second opinion before you have irreversible shoulder surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+1-310-627-2458\">(310) 627-2458</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Chronic Shoulder Pain','','inherit','closed','closed','','511-revision-v1','','','2019-06-08 11:29:48','2019-06-08 11:29:48','',511,'https://www.drfields.com/uncategorized/511-revision-v1/',0,'revision','',0),(768,8,'2019-06-19 05:30:28','2019-06-19 05:30:28','<div class=\"youtube-click-div video_left\">\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\n<strong>Jennifer - Elbow</strong>\n</div>\n<h4>What Is Causing Your Elbow Pain?</h4>\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. It is usually the ligaments and tendons that are injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\n\n<strong>Ligament Injuries in the Elbow</strong>\n\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\n\n<strong>Tendon Injuries in the Elbow</strong>\n\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. In tennis elbow it is the <strong>extensor tendons</strong> which move the wrist up, that can be damaged. In golfer’s elbow it is the <strong>flexor tendons</strong>, that move the wrist down, that get injured. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\n\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\n\n<strong>The Most Common Elbow Injuries </strong>\n\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\n\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\n\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\n\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\n\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\n\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? Are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+13109560569\">(310) 956-0569</a>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n','Chronic Elbow Pain','','inherit','closed','closed','','524-autosave-v1','','','2019-06-19 05:30:28','2019-06-19 05:30:28','',524,'https://www.drfields.com/uncategorized/524-autosave-v1/',0,'revision','',0),(769,8,'2019-06-08 11:31:51','2019-06-08 11:31:51','&nbsp;\r\n\r\n<strong>Jennifer - Elbow (video here)</strong>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. It is usually the ligaments and tendons that are injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n\r\n<strong>Ligament Injuries in the Elbow</strong>\r\n\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. In tennis elbow it is the <strong>extensor tendons</strong> which move the wrist up, that can be damaged. In golfer’s elbow it is the <strong>flexor tendons</strong>, that move the wrist down, that get injured. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n\r\n<strong>The Most Common Elbow Injuries </strong>\r\n\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? Are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel://1-310-956-0569\">(310) 956-0569</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Elbow Pain','','inherit','closed','closed','','524-revision-v1','','','2019-06-08 11:31:51','2019-06-08 11:31:51','',524,'https://www.drfields.com/uncategorized/524-revision-v1/',0,'revision','',0),(770,8,'2019-06-08 11:32:52','2019-06-08 11:32:52','<a href=\"https://www.drfields.com/regenerative-medicine-lecture-in-mexico-city-english/\">(CLICK HERE FOR ENGLISH VERSION)</a>\r\n<img class=\"aligncenter size-full wp-image-764\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/MASIVO-PROLOTERAPIA.jpg\" alt=\"Masivo Proloterapia\" width=\"550\" height=\"1849\" />\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Regenerative Medicine Lecture in Mexico City (Spanish)','','inherit','closed','closed','','763-revision-v1','','','2019-06-08 11:32:52','2019-06-08 11:32:52','',763,'https://www.drfields.com/uncategorized/763-revision-v1/',0,'revision','',0),(771,8,'2019-06-08 11:32:59','2019-06-08 11:32:59','<a href=\"https://www.drfields.com/regenerative-medicine-lecture-in-mexico-city-english/\">(CLICK HERE FOR ENGLISH VERSION)</a>\r\n<img class=\"aligncenter size-full wp-image-764\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/MASIVO-PROLOTERAPIA.jpg\" alt=\"Masivo Proloterapia\" width=\"550\" height=\"1849\" />\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Regenerative Medicine Lecture in Mexico City (Spanish)','','inherit','closed','closed','','763-autosave-v1','','','2019-06-08 11:32:59','2019-06-08 11:32:59','',763,'https://www.drfields.com/uncategorized/763-autosave-v1/',0,'revision','',0),(785,8,'2019-06-10 04:31:51','2019-06-10 04:31:51','\r\n<p><a href=\"/Low-Back-Pain-Challenges-and-Treatment\">Low Back Pain Challenges and Treatment</a></p>\r\n<p><a href=\"/ACL-Tears-and-Knee-Ligament-Injuries\">ACL Tears and Knee Ligament Injuries</a></p>\r\n<p><a href=\"/Relieve-Arthritis-Pain\">Relieve Arthritis Pain</a></p>\r\n<p><a href=\"/Failed-Back-Surgery-Syndrome\">Failed Back Surgery Syndrome</a></p>\r\n<p><a href=\"/Get-Rid-of-Knee-Arthritis-Symptoms-by-Treating-the-Source-of-the-Pain\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a></p>\r\n<p><a href=\"/Neck-Pain-Treatment-and-Relief\">Neck Pain Treatment and Relief</a></p>\r\n<p><a href=\"/Articles/Prolo-News/What-is-Behind-Joint-Pain-\">What is Behind Joint Pain?&nbsp;</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus&nbsp;and Labral Tears</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Is-There-Help-for-Arthritis\">Is There help For Arthritis?&nbsp;</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Do-You-Have-a-Hip-Injury\">Do You Have a Hip Injury?</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Avoid-Joint-Replacement\">Avoid Joint Replacement</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Stop-Shoulder-Pain-from-Rotator-Cuff-and-Other-Shoulder-Injuries\">Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Unrelenting-Back-Pain-Repaired-with-Regenerative-Orthopedics\">Unrelenting Back Pain Repaired with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Do-Your-Knees-Hurt\">Do Your Knees Hurt?</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Repairing-Sports-Injuries-with-Regenerative-Orthopedics\">Repairing Sports Injuries with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Stem-Cell-Therapy-Options-for-Arthritis\">Stem Cell Therapy Options for Arthritis</a></p>\r\n<p><a href=\"/Articles/Prolo-News/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-ENGLISH\">Regenerative Medicine Lecture in Mexico City (English) </a></p>\r\n<p><a href=\"/Articles/Prolo-News/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-SPANISH\">Regenerative Medicine Lecture in Mexico City (Spanish)</a></p>\r\n<p><a href=\"/Articles/Prolo-News/How-to-Avoid-Joint-Spine-Surgery-and-Live-Pain-Free\">How to Avoid Joint &amp; Spine Surgery and Live Pain Free</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Dr-Fields-Lectures-to-Over-400-Physicians-in-Las-Vegas\">Dr. Fields Lectures to Over 400 Physicians in Las Vegas</a></p>\r\n<p><a href=\"/Articles/Prolo-News/2019-Lecture-Schedule\">2019 <span style=\"color: #00b0f0;\">R</span></a><span style=\"color: #00b0f0;\"><a href=\"/Articles/Prolo-News/2019-Lecture-Schedule\">egenerative Orthopedics Lecture Schedule</a></span></p>\r\n<p><a href=\"/Articles/Prolo-News/FDA-Warns-of-Serious-Neurologic-Problems-After-Epidural-Corticosteroid-Injections\">FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Prolotherapy-for-Knee-Pain-Abstract\">Prolotherapy for Knee-Pain Abstract</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Download-Dr-Fields-Prolotherapy-Lecture-Today\">Download Dr. Fields Prolotherapy Lecture Today</a></p>\r\n<p><a href=\"/Articles/Health-News/Dr-Fields-interviewed-on-KCAL-CBS-about-Prolotherapy\">Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Dr-Fields-is-giving-a-presentation-on-prolotherapy\">Dr. Fields is giving a presentation on prolotherapy</a></p>\r\n<p><a href=\"/Articles/Prolo-News/New-York-Times-Article-Injections-to-Kick-Start-Tissue-Repair\">New York Times Article: Injections to Kick-Start Tissue Repair</a></p>\r\n<p><a href=\"/Articles/Prolo-News/View-and-Download-Dr-Fields-Latest-Lecture-on-Arthritis-and-Prolotherapy\">View and Download Dr. Fields Latest Lecture on Arthritis and Prolotherapy</a></p>\r\n<p><a href=\"/Articles/Prolo-News/LA-Times-Article-A-Ski-Run-for-Border\">LA Times Article \"A Ski Run for Border\"</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Dr-Fields-Free-Open-to-the-Public-Lecture-on-Arthritis-Joint-Pain-and-Inflammation\">Dr. Fields Free Open to the Public Lecture on Arthritis, Joint Pain and Inflammation</a></p>\r\n<p><a href=\"/Articles/Prolo-News/What-to-Ask-When-Looking-for-a-Prolotherapist\">What to Ask When Looking for a Prolotherapist</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Chronic-Pain-or-Injuries-Prolotherapy-Might-be-the-Answer\">Chronic Pain or Injuries? Prolotherapy Might be the Answer</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Prolotherapy-Is-It-For-You\">Prolotherapy - Is It For You</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Prolotherapy-for-Shoulder\">Prolotherapy for Shoulder</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">Cortisone - Is it Really Good for You</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Chronic-Pain-Prolotherapy-May-be-the-Answer\">Chronic Pain? - Prolotherapy May be the Answer</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">Joint Surgery? Think Again! Learn About Prolotherapy</a></p>\r\n','Prolo News','','inherit','closed','closed','','665-revision-v1','','','2019-06-10 04:31:51','2019-06-10 04:31:51','',665,'https://www.drfields.com/uncategorized/665-revision-v1/',0,'revision','',0),(803,8,'2019-06-10 06:08:56','2019-06-10 06:08:56','Testimonial Thumb Larry','Testimonial Thumb Larry','Testimonial Thumb Larry','inherit','open','closed','','testimonial-thumb-larry','','','2019-06-10 06:08:56','2019-06-10 06:08:56','',0,'https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png',0,'attachment','image/png',0),(806,8,'2019-06-10 06:12:49','2019-06-10 06:12:49','Woman Eating Fruit','Woman Eating Fruit','Woman Eating Fruit','inherit','open','closed','','woman-eating-fruit','','','2019-06-10 06:12:49','2019-06-10 06:12:49','',213,'https://www.drfields.com/wp-content/uploads/2019/06/woman-eating-fruit.jpg',0,'attachment','image/jpeg',0),(807,8,'2019-06-19 04:39:22','2019-06-19 04:39:22','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-eating-fruit.jpg\"  alt=\"Woman Eating Fruit\" width=\"200\" height=\"253\" class=\"size-full wp-image-806 alignleft\" /> <strong>The Future of Your Health – Your Best Investment</strong>\n\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. Some of the treatments out there promoted by conventional medicine are doing their job- that is getting people better. But some can actually make you worse, or affect different parts of the body in a negative way. What good is it if it cures your specific ailment only to give you a different one.\n\nWhen you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more. There is an underlying cause for each of your symptoms and that will take time and effort on our part and yours to find out what that may be. For this reason, more and more people are starting to get concerned about and involved in, their own health care. Just treating the symptoms will not make the problem go away; one must get to the cause of the problem and fix that. This approach is what Integrative/Holistic medicine is all about.\n\nThe U.S. Centers for Disease Control and Prevention reports that the key factors influencing an individual\'s state of health have not changed significantly over the past 20 years. Heredity accounts for 18% and the environment is 19%. Everyday lifestyle choices are 53%. The decisions people make about their life and habits are therefore by far the largest factor in determining their state of wellness.\n\nPeter A. Fields, MD DC, is a <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\" >Los Angeles Prolotherapy doctor</a> and <a href=\"/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\">PRP Doctor</a> and the founder of OrthoRegen.\n\nAt OrthoRegen we want to help you to achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. Only you can decide what is fair and worth this investment when it comes to out-of-pocket costs for your health care. We will make every effort to instil the feeling that what you spend was worth it. After all, this is your health that we are talking about.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Our Philosophy','','inherit','closed','closed','','213-autosave-v1','','','2019-06-19 04:39:22','2019-06-19 04:39:22','',213,'https://www.drfields.com/uncategorized/213-autosave-v1/',0,'revision','',0),(808,8,'2019-06-10 06:16:23','2019-06-10 06:16:23','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-eating-fruit.jpg\" class=\"alignleft\"  alt=\"Woman Eating Fruit\" width=\"200\" height=\"253\" class=\"size-full wp-image-806\" /> <strong>The Future of Your Health – Your Best Investment</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. Some of the treatments out there promoted by conventional medicine are doing their job- that is getting people better. But some can actually make you worse, or affect different parts of the body in a negative way. What good is it if it cures your specific ailment only to give you a different one.\r\n\r\nWhen you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more. There is an underlying cause for each of your symptoms and that will take time and effort on our part and yours to find out what that may be. For this reason, more and more people are starting to get concerned about and involved in, their own health care. Just treating the symptoms will not make the problem go away; one must get to the cause of the problem and fix that. This approach is what Integrative/Holistic medicine is all about.\r\n\r\nThe U.S. Centers for Disease Control and Prevention reports that the key factors influencing an individual\'s state of health have not changed significantly over the past 20 years. Heredity accounts for 18% and the environment is 19%. Everyday lifestyle choices are 53%. The decisions people make about their life and habits are therefore by far the largest factor in determining their state of wellness.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">Los Angeles Prolotherapy doctor</a> and <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">PRP Doctor</a> and the founder of OrthoRegen.\r\n\r\nAt OrthoRegen we want to help you to achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. Only you can decide what is fair and worth this investment when it comes to out-of-pocket costs for your health care. We will make every effort to instil the feeling that what you spend was worth it. After all, this is your health that we are talking about.\r\n\r\n <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\" class=\"btn-more\"> Schedule Your Appointment Today! </a>','Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2019-06-10 06:16:23','2019-06-10 06:16:23','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(810,8,'2019-06-10 06:20:19','2019-06-10 06:20:19','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-eating-fruit.jpg\"  alt=\"Woman Eating Fruit\" width=\"200\" height=\"253\" class=\"size-full wp-image-806 alignleft\" /> <strong>The Future of Your Health – Your Best Investment</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. Some of the treatments out there promoted by conventional medicine are doing their job- that is getting people better. But some can actually make you worse, or affect different parts of the body in a negative way. What good is it if it cures your specific ailment only to give you a different one.\r\n\r\nWhen you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more. There is an underlying cause for each of your symptoms and that will take time and effort on our part and yours to find out what that may be. For this reason, more and more people are starting to get concerned about and involved in, their own health care. Just treating the symptoms will not make the problem go away; one must get to the cause of the problem and fix that. This approach is what Integrative/Holistic medicine is all about.\r\n\r\nThe U.S. Centers for Disease Control and Prevention reports that the key factors influencing an individual\'s state of health have not changed significantly over the past 20 years. Heredity accounts for 18% and the environment is 19%. Everyday lifestyle choices are 53%. The decisions people make about their life and habits are therefore by far the largest factor in determining their state of wellness.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">Los Angeles Prolotherapy doctor</a> and <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">PRP Doctor</a> and the founder of OrthoRegen.\r\n\r\nAt OrthoRegen we want to help you to achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. Only you can decide what is fair and worth this investment when it comes to out-of-pocket costs for your health care. We will make every effort to instil the feeling that what you spend was worth it. After all, this is your health that we are talking about.\r\n\r\n <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\" class=\"btn-more\"> Schedule Your Appointment Today! </a>','Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2019-06-10 06:20:19','2019-06-10 06:20:19','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(812,8,'2019-06-10 06:21:32','2019-06-10 06:21:32','Header Orthoregen 1','Header Orthoregen 1','Header Orthoregen 1','inherit','open','closed','','header-orthoregen-1','','','2019-06-10 06:21:32','2019-06-10 06:21:32','',0,'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg',0,'attachment','image/jpeg',0),(816,8,'2019-06-10 06:27:26','2019-06-10 06:27:26','Header Orthoregen 9','Header Orthoregen 9','Header Orthoregen 9','inherit','open','closed','','header-orthoregen-9','','','2019-06-10 06:27:26','2019-06-10 06:27:26','',0,'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg',0,'attachment','image/jpeg',0),(817,8,'2019-06-10 06:27:30','2019-06-10 06:27:30','Header Orthoregen 11','Header Orthoregen 11','Header Orthoregen 11','inherit','open','closed','','header-orthoregen-11','','','2019-06-10 06:27:30','2019-06-10 06:27:30','',0,'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg',0,'attachment','image/jpeg',0),(825,8,'2019-06-10 06:43:50','2019-06-10 06:43:50','Media Placeholder','Media Placeholder','Media Placeholder','inherit','open','closed','','media-placeholder','','','2019-06-10 06:43:50','2019-06-10 06:43:50','',0,'https://www.drfields.com/wp-content/uploads/2019/06/media-placeholder.jpg',0,'attachment','image/jpeg',0),(830,8,'2019-06-10 06:53:06','2019-06-10 06:53:06','Tv Show Logo','Tv Show Logo','Tv Show Logo','inherit','open','closed','','tv-show-logo','','','2019-06-10 06:53:06','2019-06-10 06:53:06','',0,'https://www.drfields.com/wp-content/uploads/2019/06/tv-show-logo.png',0,'attachment','image/png',0),(838,8,'2019-06-10 07:01:52','2019-06-10 07:01:52','Logo Orthoregen','Logo Orthoregen','Logo Orthoregen','inherit','open','closed','','logo-orthoregen','','','2019-06-10 07:01:52','2019-06-10 07:01:52','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Logo-OrthoRegen.png',0,'attachment','image/png',0),(842,8,'2019-06-10 07:06:25','2019-06-10 07:06:25','Maryland Finish Line C 160','Maryland Finish Line C 160','Maryland Finish Line C 160','inherit','open','closed','','maryland-finish-line-c-160','','','2019-06-10 07:06:25','2019-06-10 07:06:25','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Maryland-finish-line-C-160.jpg',0,'attachment','image/jpeg',0),(843,8,'2019-06-10 07:06:26','2019-06-10 07:06:26','Santa Rosa 2017 Finish Square','Santa Rosa 2017 Finish Square','Santa Rosa 2017 Finish Square','inherit','open','closed','','santa-rosa-2017-finish-square','','','2019-06-10 07:06:26','2019-06-10 07:06:26','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Santa-Rosa-2017-Finish-Square.jpg',0,'attachment','image/jpeg',0),(844,8,'2019-06-10 07:06:26','2019-06-10 07:06:26','Switzerland Finish Line 2016 Square','Switzerland Finish Line 2016 Square','Switzerland Finish Line 2016 Square','inherit','open','closed','','switzerland-finish-line-2016-square','','','2019-06-10 07:06:26','2019-06-10 07:06:26','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-Square.jpg',0,'attachment','image/jpeg',0),(845,8,'2019-06-10 07:06:27','2019-06-10 07:06:27','Cozumel 2011 Finish Square','Cozumel 2011 Finish Square','Cozumel 2011 Finish Square','inherit','open','closed','','cozumel-2011-finish-square','','','2019-06-10 07:06:27','2019-06-10 07:06:27','',0,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish-Square.jpg',0,'attachment','image/jpeg',0),(846,8,'2019-06-10 07:06:27','2019-06-10 07:06:27','Cozumel 2016 Finish Square','Cozumel 2016 Finish Square','Cozumel 2016 Finish Square','inherit','open','closed','','cozumel-2016-finish-square','','','2019-06-10 07:06:27','2019-06-10 07:06:27','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-Square.jpg',0,'attachment','image/jpeg',0),(847,8,'2019-06-10 07:06:28','2019-06-10 07:06:28','Cozumel Finish 2015 Square','Cozumel Finish 2015 Square','Cozumel Finish 2015 Square','inherit','open','closed','','cozumel-finish-2015-square','','','2019-06-10 07:06:28','2019-06-10 07:06:28','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-Square.jpg',0,'attachment','image/jpeg',0),(848,8,'2019-06-10 07:06:28','2019-06-10 07:06:28','Finish 2012 Square','Finish 2012 Square','Finish 2012 Square','inherit','open','closed','','finish_2012-square','','','2019-06-10 07:06:28','2019-06-10 07:06:28','',0,'https://www.drfields.com/wp-content/uploads/2019/06/finish_2012-Square.jpg',0,'attachment','image/jpeg',0),(849,8,'2019-06-10 07:06:29','2019-06-10 07:06:29','Finish 2013 Square','Finish 2013 Square','Finish 2013 Square','inherit','open','closed','','finish_2013-square','','','2019-06-10 07:06:29','2019-06-10 07:06:29','',0,'https://www.drfields.com/wp-content/uploads/2019/06/finish_2013-Square.jpg',0,'attachment','image/jpeg',0),(850,8,'2019-06-10 07:06:29','2019-06-10 07:06:29','Ironman2014 Large Square','Ironman2014 Large Square','Ironman2014 Large Square','inherit','open','closed','','ironman2014-large-square','','','2019-06-10 07:06:29','2019-06-10 07:06:29','',0,'https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-Square.jpg',0,'attachment','image/jpeg',0),(851,8,'2019-06-10 07:06:30','2019-06-10 07:06:30','Ironman Brazil Finish Square','Ironman Brazil Finish Square','Ironman Brazil Finish Square','inherit','open','closed','','ironman-brazil-finish-square','','','2019-06-10 07:06:30','2019-06-10 07:06:30','',0,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-Square.jpg',0,'attachment','image/jpeg',0),(888,8,'2019-06-10 08:10:14','2019-06-10 08:10:14','Cells Blue Thumb','Cells Blue Thumb','Cells Blue Thumb','inherit','open','closed','','cells-blue-thumb','','','2019-06-10 08:10:14','2019-06-10 08:10:14','',0,'https://www.drfields.com/wp-content/uploads/2019/06/cells-blue-thumb.jpg',0,'attachment','image/jpeg',0),(890,8,'2019-06-10 08:10:18','2019-06-10 08:10:18','Blood Cell','Blood Cell','Blood Cell','inherit','open','closed','','blood-cell','','','2019-06-10 08:10:18','2019-06-10 08:10:18','',0,'https://www.drfields.com/wp-content/uploads/2019/06/blood-cell.jpg',0,'attachment','image/jpeg',0),(891,8,'2019-06-10 08:10:39','2019-06-10 08:10:39','Stem Cells Green 2 Small','Stem Cells Green 2 Small','Stem Cells Green 2 Small','inherit','open','closed','','stem-cells-green-2-small','','','2019-06-10 08:10:39','2019-06-10 08:10:39','',0,'https://www.drfields.com/wp-content/uploads/2019/06/stem-cells-green-2-small.jpg',0,'attachment','image/jpeg',0),(892,8,'2019-06-10 08:14:53','2019-06-10 08:14:53','Joint pain in the various joints of the body is usually caused by some sort of weakness in the soft tissue. Pain in the neck is no different. Ligament weakness is very often the underlying cause of neck pain and it can also be the reason behind headaches, and even ear and mouth pain. Regenerative Orthopedics, such as Prolotherapy, has been proven to effectively stimulate the healing of weakened ligaments that are behind all of this pain. That’s great news because there is an answer for those suffering with these ailments and a way to find permanent pain relief.\r\n\r\n<h4>Neck Ligaments and Cervical Instability</h4>\r\nWhen the ligaments of the neck are weakened, the instability that transpires in the neck is called cervical instability. Sufferers with this malady often experience a bunch of bizarre symptoms in addition to neck pain which can include dizziness, visual disturbances, eye pressure, mouth pain, sinus congestion, tinnitus, and many others. Instability of the ligaments of the neck is implicated in conditions like disc herniation, whiplash, cervicocranial syndrome and spondylosis. When these ligaments are injured, they elongate and become weak, which allows for excessive movement in the vertebrae of the neck.\r\n\r\nInstability that arises in the upper part of the neck or cervical spine (C0-C2) can manifest symtoms such as vertigo, tinnitus, dizziness, facial pain, arm pain, and migraine headaches. A condition called vertebrobasilar insufficiency (VBI) with its associated symptoms of neck pain, headaches/migraines, dizziness, drop attacks, vertigo, difficulty swallowing and/or speaking, and auditory and visual disturbances can also develop in instances of upper cervical spine instability, because the excessive movement in the neck can alter the flow of vertebral arterial blood.\r\nWhen the instability is located in the lower neck or cervical spine (C3-C7), the resultant symptoms include muscle spasms, crepitation, and feelings of pins and needles along with neck pain. As the instability worsens, so do the symptoms. Surgery to fuse the vertebrae of the neck is often recommended in cases of cervical instability, but a consultation from an expert in Regenerative Orthopedics should be sought, since this therapy can often prevent the need for the fusion, as well as strengthen the involved ligaments and restore proper motion to the neck.\r\n\r\n<h4>The Neck Is Unique</h4>\r\nThe neck is unique, because the vertebrae in the neck are smaller and more mobile than all of the movable vertebrae of the spine. The high degree of mobility in the neck vertebrae is required to move the head through its varied range of motion. These anatomic features are necessary for optimal functioning, but also make the area vulnerable to injury due to the demands placed upon the neck. The ligaments of the neck, which are the stabilizing structures primarily responsible for connecting adjacent bones, are especially vulnerable when trauma occurs. When the neck is stable, it moves and functions normally, while remaining in proper alignment and protecting the blood vessels, nerves and spinal cord. Injury to the ligaments changes this dynamic, and leads to instability of the cervical spine. Add to that all of the stresses and loads placed upon the neck and a cycle of imbalance is set in motion generating even more abnormal changes in the vertebral alignment. Remember that cervical instability involves excessive motion between adjacent vertebrae which causes excessive stress on the supporting ligaments and the nerve endings within them. The result is a cycle of pain and the associated variety of aforementioned symptoms.\r\n\r\n<h4>Whiplash: A Type of Cervical Instability</h4>\r\nWhiplash injuries are a common source of cervical instability. The sudden acceleration and deceleration during rear end collisions causes the head to severely whip backwards and forwards. The backward “whip,” or hyperextension, is often associated with more injury to the soft tissue of the neck, because it lacks the limiting effect of the chin meeting the chest in the forward “whip.” The excessive motion in hyperextension severely strains the involved muscles and ligaments, and adjoining neck joints.\r\n\r\nThe ligaments of the neck are particularly vulnerable to injury during a whiplash event and more notably when the head is rotated at the time of collision, such as when looking in the rear-view mirror. The ligaments that function to limit side-to-side head movement become susceptible to failure in this turned position, which then compromises their ability to limit motion. The lack of a stabilizing structure can lead to further injury of the soft tissue and joint structures and the possibility of nerve injury as well as irritation of the sympathetic nervous system. Provocation of these nerve endings alters firing patterns and increases activation of the sympathetic nervous system resulting in a myriad of symptoms, as those that occur in the condition called Barré-Liéou Syndrome or cervicocranial syndrome.\r\n\r\nResolve the Underlying Ligament Injury and the Symptoms with Regenerative Orthopedics\r\nRegenerative Orthopedics strengthens weakened ligaments. It is effective in repairing and regenerating the ligaments and structures involved in cervical instability, eliminating the instability and abnormal movement, which then resolves the neck pain and associated symptoms. Cervical instability can be a frustrating and life-altering condition, but Regenerative Orthopedics, a safe non-surgical option, can stabilize the neck and increase functionality in the person suffering it, and essentially help the patient get their life back.\r\n','Neck Pain Treatment and Relief','','inherit','closed','closed','','703-revision-v1','','','2019-06-10 08:14:53','2019-06-10 08:14:53','',703,'https://www.drfields.com/703-revision-v1/',0,'revision','',0),(899,8,'2019-06-10 10:40:10','2019-06-10 10:40:10','<p><a href=\"/Low-Back-Pain-Challenges-and-Treatment\">Low Back Pain Challenges and Treatment</a></p>\n<p><a href=\"/ACL-Tears-and-Knee-Ligament-Injuries\">ACL Tears and Knee Ligament Injuries</a></p>\n<p><a href=\"/Relieve-Arthritis-Pain\">Relieve Arthritis Pain</a></p>\n<p><a href=\"/Failed-Back-Surgery-Syndrome\">Failed Back Surgery Syndrome</a></p>\n<p><a href=\"/Get-Rid-of-Knee-Arthritis-Symptoms-by-Treating-the-Source-of-the-Pain\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a></p>\n<p><a href=\"/Neck-Pain-Treatment-and-Relief\">Neck Pain Treatment and Relief</a></p>\n<p><a href=\"/What-is-Behind-Joint-Pain-\">What is Behind Joint Pain?&nbsp;</a>(Peding)</p>\n<p><a href=\"/Meniscus-and-Labral-Tears\">Meniscus&nbsp;and Labral Tears</a></p>\n<p><a href=\"Is-There-Help-for-Arthritis\">Is There help For Arthritis?&nbsp;</a></p>\n<p><a href=\"/Runners-Knee-Pain\">Runner\'s Knee Pain</a></p>\n<p><a href=\"/Do-You-Have-a-Hip-Injury\">Do You Have a Hip Injury?</a></p>\n<p><a href=\"/Avoid-Joint-Replacement\">Avoid Joint Replacement</a></p>\n<p><a href=\"/Stop-Shoulder-Pain-from-Rotator-Cuff-and-Other-Shoulder-Injuries\">Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries</a></p>\n<p><a href=\"/Unrelenting-Back-Pain-Repaired-with-Regenerative-Orthopedics\">Unrelenting Back Pain Repaired with Regenerative Orthopedics</a></p>\n<p><a href=\"/Do-Your-Knees-Hurt\">Do Your Knees Hurt?</a></p>\n<p><a href=\"/Repairing-Sports-Injuries-with-Regenerative-Orthopedics\">Repairing Sports Injuries with Regenerative Orthopedics</a></p>\n<p><a href=\"/Stem-Cell-Therapy-Options-for-Arthritis\">Stem Cell Therapy Options for Arthritis</a></p>\n<p><a href=\"/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-ENGLISH\">Regenerative Medicine Lecture in Mexico City (English) </a></p>\n<p><a href=\"/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-SPANISH\">Regenerative Medicine Lecture in Mexico City (Spanish)</a></p>\n<p><a href=\"/How-to-Avoid-Joint-Spine-Surgery-and-Live-Pain-Free\">How to Avoid Joint &amp; Spine Surgery and Live Pain Free</a></p>\n<p><a href=\"/Dr-Fields-Lectures-to-Over-400-Physicians-in-Las-Vegas\">Dr. Fields Lectures to Over 400 Physicians in Las Vegas</a></p>\n<p><a href=\"2019-Lecture-Schedule\">Regenerative Orthopedics Lecture Schedule</a></p>\n<p><a href=\"FDA-Warns-of-Serious-Neurologic-Problems-After-Epidural-Corticosteroid-Injections\">FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections</a></p>\n<p><a href=\"Prolotherapy-for-Knee-Pain-Abstract\">Prolotherapy for Knee-Pain Abstract</a></p>\n<p><a href=\"/Download-Dr-Fields-Prolotherapy-Lecture-Today\">Download Dr. Fields Prolotherapy Lecture Today</a></p>\n<p><a href=\"/Dr-Fields-interviewed-on-KCAL-CBS-about-Prolotherapy\">Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'</a></p>\n<p><a href=\"/Dr-Fields-is-giving-a-presentation-on-prolotherapy\">Dr. Fields is giving a presentation on prolotherapy</a></p>\n<p><a href=\"/Articles/Prolo-News/New-York-Times-Article-Injections-to-Kick-Start-Tissue-Repair\">New York Times Article: Injections to Kick-Start Tissue Repair</a></p>\n<p><a href=\"/Articles/Prolo-News/View-and-Download-Dr-Fields-Latest-Lecture-on-Arthritis-and-Prolotherapy\">View and Download Dr. Fields Latest Lecture on Arthritis and Prolotherapy</a></p>\n<p><a href=\"/Articles/Prolo-News/LA-Times-Article-A-Ski-Run-for-Border\">LA Times Article \"A Ski Run for Border\"</a></p>\n<p><a href=\"/Articles/Prolo-News/Dr-Fields-Free-Open-to-the-Public-Lecture-on-Arthritis-Joint-Pain-and-Inflammation\">Dr. Fields Free Open to the Public Lecture on Arthritis, Joint Pain and Inflammation</a></p>\n<p><a href=\"/Articles/Prolo-News/What-to-Ask-When-Looking-for-a-Prolotherapist\">What to Ask When Looking for a Prolotherapist</a></p>\n<p><a href=\"/Articles/Prolo-News/Chronic-Pain-or-Injuries-Prolotherapy-Might-be-the-Answer\">Chronic Pain or Injuries? Prolotherapy Might be the Answer</a></p>\n<p><a href=\"/Articles/Prolo-News/Prolotherapy-Is-It-For-You\">Prolotherapy - Is It For You</a></p>\n<p><a href=\"/Articles/Prolo-News/Prolotherapy-for-Shoulder\">Prolotherapy for Shoulder</a></p>\n<p><a href=\"/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">Cortisone - Is it Really Good for You</a></p>\n<p><a href=\"/Articles/Prolo-News/Chronic-Pain-Prolotherapy-May-be-the-Answer\">Chronic Pain? - Prolotherapy May be the Answer</a></p>\n<p><a href=\"/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">Joint Surgery? Think Again! Learn About Prolotherapy</a></p>\n','Prolo News','','inherit','closed','closed','','665-autosave-v1','','','2019-06-10 10:40:10','2019-06-10 10:40:10','',665,'https://www.drfields.com/665-autosave-v1/',0,'revision','',0),(903,8,'2019-06-10 08:23:58','2019-06-10 08:23:58','<p><a href=\"/Low-Back-Pain-Challenges-and-Treatment\">Low Back Pain Challenges and Treatment</a></p>\r\n<p><a href=\"/ACL-Tears-and-Knee-Ligament-Injuries\">ACL Tears and Knee Ligament Injuries</a></p>\r\n<p><a href=\"/Relieve-Arthritis-Pain\">Relieve Arthritis Pain</a></p>\r\n<p><a href=\"/Failed-Back-Surgery-Syndrome\">Failed Back Surgery Syndrome</a></p>\r\n<p><a href=\"/Get-Rid-of-Knee-Arthritis-Symptoms-by-Treating-the-Source-of-the-Pain\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a></p>\r\n<p><a href=\"/Neck-Pain-Treatment-and-Relief\">Neck Pain Treatment and Relief</a></p>\r\n<p><a href=\"/What-is-Behind-Joint-Pain-\">What is Behind Joint Pain?&nbsp;</a>(Peding)</p>\r\n<p><a href=\"/Meniscus-and-Labral-Tears\">Meniscus&nbsp;and Labral Tears</a></p>\r\n<p><a href=\"Is-There-Help-for-Arthritis\">Is There help For Arthritis?&nbsp;</a></p>\r\n<p><a href=\"/Runners-Knee-Pain\">Runner\'s Knee Pain</a></p>\r\n<p><a href=\"/Do-You-Have-a-Hip-Injury\">Do You Have a Hip Injury?</a></p>\r\n<p><a href=\"/Avoid-Joint-Replacement\">Avoid Joint Replacement</a></p>\r\n<p><a href=\"/Stop-Shoulder-Pain-from-Rotator-Cuff-and-Other-Shoulder-Injuries\">Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries</a></p>\r\n<p><a href=\"/Unrelenting-Back-Pain-Repaired-with-Regenerative-Orthopedics\">Unrelenting Back Pain Repaired with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/Do-Your-Knees-Hurt\">Do Your Knees Hurt?</a></p>\r\n<p><a href=\"/Repairing-Sports-Injuries-with-Regenerative-Orthopedics\">Repairing Sports Injuries with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/Stem-Cell-Therapy-Options-for-Arthritis\">Stem Cell Therapy Options for Arthritis</a></p>\r\n<p><a href=\"/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-ENGLISH\">Regenerative Medicine Lecture in Mexico City (English) </a></p>\r\n<p><a href=\"/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-SPANISH\">Regenerative Medicine Lecture in Mexico City (Spanish)</a></p>\r\n<p><a href=\"/How-to-Avoid-Joint-Spine-Surgery-and-Live-Pain-Free\">How to Avoid Joint &amp; Spine Surgery and Live Pain Free</a></p>\r\n<p><a href=\"/Dr-Fields-Lectures-to-Over-400-Physicians-in-Las-Vegas\">Dr. Fields Lectures to Over 400 Physicians in Las Vegas</a></p>\r\n<p><a href=\"/2019-Lecture-Schedule\">2019 <span style=\"color: #00b0f0;\">R</span></a><span style=\"color: #00b0f0;\"><a href=\"/Articles/Prolo-News/2019-Lecture-Schedule\">egenerative Orthopedics Lecture Schedule</a></span></p>\r\n<p><a href=\"/Articles/Prolo-News/FDA-Warns-of-Serious-Neurologic-Problems-After-Epidural-Corticosteroid-Injections\">FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Prolotherapy-for-Knee-Pain-Abstract\">Prolotherapy for Knee-Pain Abstract</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Download-Dr-Fields-Prolotherapy-Lecture-Today\">Download Dr. Fields Prolotherapy Lecture Today</a></p>\r\n<p><a href=\"/Articles/Health-News/Dr-Fields-interviewed-on-KCAL-CBS-about-Prolotherapy\">Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Dr-Fields-is-giving-a-presentation-on-prolotherapy\">Dr. Fields is giving a presentation on prolotherapy</a></p>\r\n<p><a href=\"/Articles/Prolo-News/New-York-Times-Article-Injections-to-Kick-Start-Tissue-Repair\">New York Times Article: Injections to Kick-Start Tissue Repair</a></p>\r\n<p><a href=\"/Articles/Prolo-News/View-and-Download-Dr-Fields-Latest-Lecture-on-Arthritis-and-Prolotherapy\">View and Download Dr. Fields Latest Lecture on Arthritis and Prolotherapy</a></p>\r\n<p><a href=\"/Articles/Prolo-News/LA-Times-Article-A-Ski-Run-for-Border\">LA Times Article \"A Ski Run for Border\"</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Dr-Fields-Free-Open-to-the-Public-Lecture-on-Arthritis-Joint-Pain-and-Inflammation\">Dr. Fields Free Open to the Public Lecture on Arthritis, Joint Pain and Inflammation</a></p>\r\n<p><a href=\"/Articles/Prolo-News/What-to-Ask-When-Looking-for-a-Prolotherapist\">What to Ask When Looking for a Prolotherapist</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Chronic-Pain-or-Injuries-Prolotherapy-Might-be-the-Answer\">Chronic Pain or Injuries? Prolotherapy Might be the Answer</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Prolotherapy-Is-It-For-You\">Prolotherapy - Is It For You</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Prolotherapy-for-Shoulder\">Prolotherapy for Shoulder</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">Cortisone - Is it Really Good for You</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Chronic-Pain-Prolotherapy-May-be-the-Answer\">Chronic Pain? - Prolotherapy May be the Answer</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">Joint Surgery? Think Again! Learn About Prolotherapy</a></p>\r\n','Prolo News','','inherit','closed','closed','','665-revision-v1','','','2019-06-10 08:23:58','2019-06-10 08:23:58','',665,'https://www.drfields.com/665-revision-v1/',0,'revision','',0),(904,8,'2019-06-10 08:25:13','2019-06-10 08:25:13','<p><a href=\"/Low-Back-Pain-Challenges-and-Treatment\">Low Back Pain Challenges and Treatment</a></p>\r\n<p><a href=\"/ACL-Tears-and-Knee-Ligament-Injuries\">ACL Tears and Knee Ligament Injuries</a></p>\r\n<p><a href=\"/Relieve-Arthritis-Pain\">Relieve Arthritis Pain</a></p>\r\n<p><a href=\"/Failed-Back-Surgery-Syndrome\">Failed Back Surgery Syndrome</a></p>\r\n<p><a href=\"/Get-Rid-of-Knee-Arthritis-Symptoms-by-Treating-the-Source-of-the-Pain\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a></p>\r\n<p><a href=\"/Neck-Pain-Treatment-and-Relief\">Neck Pain Treatment and Relief</a></p>\r\n<p><a href=\"/What-is-Behind-Joint-Pain-\">What is Behind Joint Pain?&nbsp;</a>(Peding)</p>\r\n<p><a href=\"/Meniscus-and-Labral-Tears\">Meniscus&nbsp;and Labral Tears</a></p>\r\n<p><a href=\"Is-There-Help-for-Arthritis\">Is There help For Arthritis?&nbsp;</a></p>\r\n<p><a href=\"/Runners-Knee-Pain\">Runner\'s Knee Pain</a></p>\r\n<p><a href=\"/Do-You-Have-a-Hip-Injury\">Do You Have a Hip Injury?</a></p>\r\n<p><a href=\"/Avoid-Joint-Replacement\">Avoid Joint Replacement</a></p>\r\n<p><a href=\"/Stop-Shoulder-Pain-from-Rotator-Cuff-and-Other-Shoulder-Injuries\">Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries</a></p>\r\n<p><a href=\"/Unrelenting-Back-Pain-Repaired-with-Regenerative-Orthopedics\">Unrelenting Back Pain Repaired with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/Do-Your-Knees-Hurt\">Do Your Knees Hurt?</a></p>\r\n<p><a href=\"/Repairing-Sports-Injuries-with-Regenerative-Orthopedics\">Repairing Sports Injuries with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/Stem-Cell-Therapy-Options-for-Arthritis\">Stem Cell Therapy Options for Arthritis</a></p>\r\n<p><a href=\"/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-ENGLISH\">Regenerative Medicine Lecture in Mexico City (English) </a></p>\r\n<p><a href=\"/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-SPANISH\">Regenerative Medicine Lecture in Mexico City (Spanish)</a></p>\r\n<p><a href=\"/How-to-Avoid-Joint-Spine-Surgery-and-Live-Pain-Free\">How to Avoid Joint &amp; Spine Surgery and Live Pain Free</a></p>\r\n<p><a href=\"/Dr-Fields-Lectures-to-Over-400-Physicians-in-Las-Vegas\">Dr. Fields Lectures to Over 400 Physicians in Las Vegas</a></p>\r\n<p><a href=\"/2019-Lecture-Schedule\">2019 <span style=\"color: #00b0f0;\">R</span></a><span style=\"color: #00b0f0;\"><a href=\"/Articles/Prolo-News/2019-Lecture-Schedule\">Regenerative Orthopedics Lecture Schedule</a></p>\r\n<p><a href=\"/Articles/Prolo-News/FDA-Warns-of-Serious-Neurologic-Problems-After-Epidural-Corticosteroid-Injections\">FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Prolotherapy-for-Knee-Pain-Abstract\">Prolotherapy for Knee-Pain Abstract</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Download-Dr-Fields-Prolotherapy-Lecture-Today\">Download Dr. Fields Prolotherapy Lecture Today</a></p>\r\n<p><a href=\"/Articles/Health-News/Dr-Fields-interviewed-on-KCAL-CBS-about-Prolotherapy\">Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Dr-Fields-is-giving-a-presentation-on-prolotherapy\">Dr. Fields is giving a presentation on prolotherapy</a></p>\r\n<p><a href=\"/Articles/Prolo-News/New-York-Times-Article-Injections-to-Kick-Start-Tissue-Repair\">New York Times Article: Injections to Kick-Start Tissue Repair</a></p>\r\n<p><a href=\"/Articles/Prolo-News/View-and-Download-Dr-Fields-Latest-Lecture-on-Arthritis-and-Prolotherapy\">View and Download Dr. Fields Latest Lecture on Arthritis and Prolotherapy</a></p>\r\n<p><a href=\"/Articles/Prolo-News/LA-Times-Article-A-Ski-Run-for-Border\">LA Times Article \"A Ski Run for Border\"</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Dr-Fields-Free-Open-to-the-Public-Lecture-on-Arthritis-Joint-Pain-and-Inflammation\">Dr. Fields Free Open to the Public Lecture on Arthritis, Joint Pain and Inflammation</a></p>\r\n<p><a href=\"/Articles/Prolo-News/What-to-Ask-When-Looking-for-a-Prolotherapist\">What to Ask When Looking for a Prolotherapist</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Chronic-Pain-or-Injuries-Prolotherapy-Might-be-the-Answer\">Chronic Pain or Injuries? Prolotherapy Might be the Answer</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Prolotherapy-Is-It-For-You\">Prolotherapy - Is It For You</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Prolotherapy-for-Shoulder\">Prolotherapy for Shoulder</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">Cortisone - Is it Really Good for You</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Chronic-Pain-Prolotherapy-May-be-the-Answer\">Chronic Pain? - Prolotherapy May be the Answer</a></p>\r\n<p><a href=\"/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">Joint Surgery? Think Again! Learn About Prolotherapy</a></p>\r\n','Prolo News','','inherit','closed','closed','','665-revision-v1','','','2019-06-10 08:25:13','2019-06-10 08:25:13','',665,'https://www.drfields.com/665-revision-v1/',0,'revision','',0),(945,8,'2019-06-10 09:38:21','2019-06-10 09:38:21','Drfields Prolo Spanish 1','Drfields Prolo Spanish 1','Drfields Prolo Spanish 1','inherit','open','closed','','drfields-prolo-spanish-1','','','2019-06-10 09:38:21','2019-06-10 09:38:21','',0,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-1.jpg',0,'attachment','image/jpeg',0),(946,8,'2019-06-10 09:38:22','2019-06-10 09:38:22','Drfields Prolo Spanish 2','Drfields Prolo Spanish 2','Drfields Prolo Spanish 2','inherit','open','closed','','drfields-prolo-spanish-2','','','2019-06-10 09:38:22','2019-06-10 09:38:22','',0,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-2.jpg',0,'attachment','image/jpeg',0),(947,8,'2019-06-10 09:38:23','2019-06-10 09:38:23','Drfields Prolo Spanish 3','Drfields Prolo Spanish 3','Drfields Prolo Spanish 3','inherit','open','closed','','drfields-prolo-spanish-3','','','2019-06-10 09:38:23','2019-06-10 09:38:23','',0,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-3.jpg',0,'attachment','image/jpeg',0),(951,8,'2019-06-10 09:42:51','2019-06-10 09:42:51','Testimonial Thumb Christopher','Testimonial Thumb Christopher','Testimonial Thumb Christopher','inherit','open','closed','','testimonial-thumb-christopher','','','2019-06-10 09:42:51','2019-06-10 09:42:51','',0,'https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png',0,'attachment','image/png',0),(953,8,'2019-06-10 09:43:51','2019-06-10 09:43:51','Drfields Prolo Spanish 6','Drfields Prolo Spanish 6','Drfields Prolo Spanish 6','inherit','open','closed','','drfields-prolo-spanish-6','','','2019-06-10 09:43:51','2019-06-10 09:43:51','',0,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-6.jpg',0,'attachment','image/jpeg',0),(954,8,'2019-06-10 09:43:53','2019-06-10 09:43:53','Drfields Prolo Spanish 7','Drfields Prolo Spanish 7','Drfields Prolo Spanish 7','inherit','open','closed','','drfields-prolo-spanish-7','','','2019-06-10 09:43:53','2019-06-10 09:43:53','',0,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-7.jpg',0,'attachment','image/jpeg',0),(955,8,'2019-06-10 09:43:53','2019-06-10 09:43:53','Drfields Bio Img','Drfields Bio Img','','inherit','open','closed','','drfields-bio-img-2','','','2019-06-13 09:50:05','2019-06-13 09:50:05','',1584,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg',0,'attachment','image/jpeg',0),(956,8,'2019-06-10 09:43:54','2019-06-10 09:43:54','Drfields Prolo Spanish 4','Drfields Prolo Spanish 4','Drfields Prolo Spanish 4','inherit','open','closed','','drfields-prolo-spanish-4','','','2019-06-10 09:43:54','2019-06-10 09:43:54','',0,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-4.jpg',0,'attachment','image/jpeg',0),(957,8,'2019-06-10 09:43:55','2019-06-10 09:43:55','Drfields Prolo Spanish 5','Drfields Prolo Spanish 5','Drfields Prolo Spanish 5','inherit','open','closed','','drfields-prolo-spanish-5','','','2019-06-10 09:43:55','2019-06-10 09:43:55','',0,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-5.jpg',0,'attachment','image/jpeg',0),(975,8,'2019-06-10 10:01:28','2019-06-10 10:01:28','<div id=\"dnn_ContentPane\" class=\"span12 contentPane\">\r\n<div class=\"DnnModule DnnModule- DnnModule--1 DnnModule-Admin\">\r\n<div class=\"DNNContainer_noTitle\">\r\n<div id=\"dnn_ctr_ContentPane\">\r\n<div id=\"dnn_ctr_ModuleContent\" class=\"DNNModuleContent ModC\">\r\n<div class=\"dnnPrivacy dnnClear\">\r\n<div align=\"left\">\r\n<p><span id=\"dnn_ctr_Privacy_lblPrivacy\">Dr. Fields</span> is committed to protecting your privacy and developing technology that gives you the most powerful and safe online experience. This Statement of Privacy applies to the Dr. Fields site and governs data collection and usage. By using the Dr. Fields site, you consent to the data practices described in this statement.</p>\r\n<p><span class=\"SubHead\">Collection of your Personal Information</span></p>\r\n<p>Dr. Fields collects personally identifiable information, such as your email address, name, home or work address or telephone number. Dr. Fields also collects anonymous demographic information, which is not unique to you, such as your ZIP code, age, gender, preferences, interests and favorites.</p>\r\n<p>There is also information about your computer hardware and software that is automatically collected by Dr. Fields. This information can include: your IP address, browser type, domain names, access times and referring website addresses. This information is used by Dr. Fields for the operation of the service, to maintain quality of the service, and to provide general statistics regarding use of the Dr. Fields site.</p>\r\n<p>Please keep in mind that if you directly disclose personally identifiable information or personally sensitive data through Dr. Fields public message boards, this information may be collected and used by others. Note: Dr. Fields does not read any of your private online communications.</p>\r\n<p>Dr. Fields encourages you to review the privacy statements of Web sites you choose to link to from Dr. Fields so that you can understand how those Web sites collect, use and share your information. Dr. Fields is not responsible for the privacy statements or other content on Web sites outside of the Dr. Fields and Dr. Fields family of Web sites.</p>\r\n<p><span class=\"SubHead\">Use of your Personal Information</span></p>\r\n<p>Dr. Fields collects and uses your personal information to operate the Dr. Fields Web site and deliver the services you have requested. Dr. Fields also uses your personally identifiable information to inform you of other products or services available from Dr. Fields and its affiliates. Dr. Fields may also contact you via surveys to conduct research about your opinion of current services or of potential new services that may be offered.</p>\r\n<p>Dr. Fields does not sell, rent or lease its customer lists to third parties. Dr. Fields may, from time to time, contact you on behalf of external business partners about a particular offering that may be of interest to you. In those cases, your unique personally identifiable information (e-mail, name, address, telephone number) is not transferred to the third party. In addition, Dr. Fields may share data with trusted partners to help us perform statistical analysis, send you email or postal mail, provide customer support, or arrange for deliveries. All such third parties are prohibited from using your personal information except to provide these services to Dr. Fields, and they are required to maintain the confidentiality of your information.</p>\r\n<p>Dr. Fields does not use or disclose sensitive personal information, such as race, religion, or political affiliations, without your explicit consent.</p>\r\n<p>Dr. Fields keeps track of the Web sites and pages our customers visit within Dr. Fields, in order to determine what Dr. Fields services are the most popular. This data is used to deliver customized content and advertising within Dr. Fields to customers whose behavior indicates that they are interested in a particular subject area.</p>\r\n<p>Dr. Fields Web sites will disclose your personal information, without notice, only if required to do so by law or in the good faith belief that such action is necessary to: (a) conform to the edicts of the law or comply with legal process served on Dr. Fields or the site; (b) protect and defend the rights or property of Dr. Fields; and, (c) act under exigent circumstances to protect the personal safety of users of Dr. Fields, or the public.</p>\r\n<p><span class=\"SubHead\">Use of Cookies</span></p>\r\n<p>The Dr. Fields Web site use \"cookies\" to help you personalize your online experience. A cookie is a text file that is placed on your hard disk by a Web page server. Cookies cannot be used to run programs or deliver viruses to your computer. Cookies are uniquely assigned to you, and can only be read by a web server in the domain that issued the cookie to you.</p>\r\n<p>One of the primary purposes of cookies is to provide a convenience feature to save you time. The purpose of a cookie is to tell the Web server that you have returned to a specific page. For example, if you personalize Dr. Fields pages, or register with Dr. Fields site or services, a cookie helps Dr. Fields to recall your specific information on subsequent visits. This simplifies the process of recording your personal information, such as billing addresses, shipping addresses, and so on. When you return to the same Dr. Fields Web site, the information you previously provided can be retrieved, so you can easily use the Dr. Fields features that you customized.</p>\r\n<p>You have the ability to accept or decline cookies. Most Web browsers automatically accept cookies, but you can usually modify your browser setting to decline cookies if you prefer. If you choose to decline cookies, you may not be able to fully experience the interactive features of the Dr. Fields services or Web sites you visit.</p>\r\n<p><span class=\"SubHead\">Security of your Personal Information</span></p>\r\n<p>Dr. Fields secures your personal information from unauthorized access, use or disclosure. Dr. Fields secures the personally identifiable information you provide on computer servers in a controlled, secure environment, protected from unauthorized access, use or disclosure. When personal information (such as a credit card number) is transmitted to other Web sites, it is protected through the use of encryption, such as the Secure Socket Layer (SSL) protocol.</p>\r\n<p><span class=\"SubHead\">Changes to this Statement</span></p>\r\n<p>Dr. Fields will occasionally update this Statement of Privacy to reflect company and customer feedback. Dr. Fields encourages you to periodically review this Statement to be informed of how Dr. Fields is protecting your information.</p>\r\n<p><span class=\"SubHead\">Contact Information</span></p>\r\n<p>Dr. Fields welcomes your comments regarding this Statement of Privacy. If you believe that Dr. Fields has not adhered to this Statement, please contact Dr. Fields at <a>eugene@kspsystems.com</a>. We will use commercially reasonable efforts to promptly determine and remedy the problem.</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"> </div>\r\n</div>\r\n</div>\r\n</div>','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2019-06-10 10:01:28','2019-06-10 10:01:28','',3,'https://www.drfields.com/3-revision-v1/',0,'revision','',0),(977,8,'2019-06-10 10:13:01','2019-06-10 10:13:01','<strong>AGREEMENT BETWEEN USER AND Dr. Fields</strong>\r\n\r\nThe Dr. Fields Web Site is comprised of various Web pages operated by Dr. Fields.\r\n\r\nThe Dr. Fields Web Site is offered to you conditioned on your acceptance without modification of the terms, conditions, and notices contained herein. Your use of the Dr. Fields Web Site constitutes your agreement to all such terms, conditions, and notices.\r\n\r\n<strong>MODIFICATION OF THESE TERMS OF USE</strong>\r\n\r\nDr. Fields reserves the right to change the terms, conditions, and notices under which the Dr. Fields Web Site is offered, including but not limited to the charges associated with the use of the Dr. Fields Web Site.\r\n\r\n<strong>LINKS TO THIRD PARTY SITES</strong>\r\n\r\nThe Dr. Fields Web Site may contain links to other Web Sites (\"Linked Sites\"). The Linked Sites are not under the control of Dr. Fields and Dr. Fields is not responsible for the contents of any Linked Site, including without limitation any link contained in a Linked Site, or any changes or updates to a Linked Site. Dr. Fields is not responsible for webcasting or any other form of transmission received from any Linked Site. Dr. Fields is providing these links to you only as a convenience, and the inclusion of any link does not imply endorsement by Dr. Fields of the site or any association with its operators.\r\n\r\n<strong>NO UNLAWFUL OR PROHIBITED USE</strong>\r\n\r\nAs a condition of your use of the Dr. Fields Web Site, you warrant to Dr. Fields that you will not use the Dr. Fields Web Site for any purpose that is unlawful or prohibited by these terms, conditions, and notices. You may not use the Dr. Fields Web Site in any manner which could damage, disable, overburden, or impair the Dr. Fields Web Site or interfere with any other party\'s use and enjoyment of the Dr. Fields Web Site. You may not obtain or attempt to obtain any materials or information through any means not intentionally made available or provided for through the Dr. Fields Web Sites.\r\n\r\n<strong>USE OF COMMUNICATION SERVICES</strong>\r\n\r\nThe Dr. Fields Web Site may contain bulletin board services, chat areas, news groups, forums, communities, personal web pages, calendars, and/or other message or communication facilities designed to enable you to communicate with the public at large or with a group (collectively, \"Communication Services\"), you agree to use the Communication Services only to post, send and receive messages and material that are proper and related to the particular Communication Service. By way of example, and not as a limitation, you agree that when using a Communication Service, you will not:\r\n<ul>\r\n 	<li>Defame, abuse, harass, stalk, threaten or otherwise violate the legal rights (such as rights of privacy and publicity) of others.</li>\r\n 	<li>Publish, post, upload, distribute or disseminate any inappropriate, profane, defamatory, infringing, obscene, indecent or unlawful topic, name, material or information.</li>\r\n 	<li>Upload files that contain software or other material protected by intellectual property laws (or by rights of privacy of publicity) unless you own or control the rights thereto or have received all necessary consents.</li>\r\n 	<li>Upload files that contain viruses, corrupted files, or any other similar software or programs that may damage the operation of another\'s computer.</li>\r\n 	<li>Advertise or offer to sell or buy any goods or services for any business purpose, unless such Communication Service specifically allows such messages.</li>\r\n 	<li>Conduct or forward surveys, contests, pyramid schemes or chain letters.</li>\r\n 	<li>Download any file posted by another user of a Communication Service that you know, or reasonably should know, cannot be legally distributed in such manner.</li>\r\n 	<li>Falsify or delete any author attributions, legal or other proper notices or proprietary designations or labels of the origin or source of software or other material contained in a file that is uploaded.</li>\r\n 	<li>Restrict or inhibit any other user from using and enjoying the Communication Services.</li>\r\n 	<li>Violate any code of conduct or other guidelines which may be applicable for any particular Communication Service.</li>\r\n 	<li>Harvest or otherwise collect information about others, including e-mail addresses, without their consent.</li>\r\n 	<li>Violate any applicable laws or regulations.</li>\r\n</ul>\r\nDr. Fields has no obligation to monitor the Communication Services. However, Dr. Fields reserves the right to review materials posted to a Communication Service and to remove any materials in its sole discretion. Dr. Fields reserves the right to terminate your access to any or all of the Communication Services at any time without notice for any reason whatsoever.\r\n\r\nDr. Fields reserves the right at all times to disclose any information as necessary to satisfy any applicable law, regulation, legal process or governmental request, or to edit, refuse to post or to remove any information or materials, in whole or in part, in Dr. Fields\'s sole discretion.\r\n\r\nAlways use caution when giving out any personally identifying information about yourself or your children in any Communication Service. Dr. Fields does not control or endorse the content, messages or information found in any Communication Service and, therefore, Dr. Fields specifically disclaims any liability with regard to the Communication Services and any actions resulting from your participation in any Communication Service. Managers and hosts are not authorized Dr. Fields spokespersons, and their views do not necessarily reflect those of Dr. Fields.\r\n\r\nMaterials uploaded to a Communication Service may be subject to posted limitations on usage, reproduction and/or dissemination. You are responsible for adhering to such limitations if you download the materials.\r\n\r\n<strong>MATERIALS PROVIDED TO Dr. Fields OR POSTED AT ANY Dr. Fields WEB SITE</strong>\r\nDr. Fields does not claim ownership of the materials you provide to Dr. Fields (including feedback and suggestions) or post, upload, input or submit to any Dr. Fields Web Site or its associated services (collectively \"Submissions\"). However, by posting, uploading, inputting, providing or submitting your Submission you are granting Dr. Fields, its affiliated companies and necessary sublicensees permission to use your Submission in connection with the operation of their Internet businesses including, without limitation, the rights to: copy, distribute, transmit, publicly display, publicly perform, reproduce, edit, translate and reformat your Submission; and to publish your name in connection with your Submission.\r\n\r\nNo compensation will be paid with respect to the use of your Submission, as provided herein. Dr. Fields is under no obligation to post or use any Submission you may provide and may remove any Submission at any time in Dr. Fields\'s sole discretion.\r\n\r\nBy posting, uploading, inputting, providing or submitting your Submission you warrant and represent that you own or otherwise control all of the rights to your Submission as described in this section including, without limitation, all the rights necessary for you to provide, post, upload, input or submit the Submissions.\r\n\r\n<strong>LIABILITY DISCLAIMER</strong>\r\n\r\nTHE INFORMATION, SOFTWARE, PRODUCTS, AND SERVICES INCLUDED IN OR AVAILABLE THROUGH THE Dr. Fields WEB SITE MAY INCLUDE INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION HEREIN. Dr. Fields AND/OR ITS SUPPLIERS MAY MAKE IMPROVEMENTS AND/OR CHANGES IN THE Dr. Fields WEB SITE AT ANY TIME. ADVICE RECEIVED VIA THE Dr. Fields WEB SITE SHOULD NOT BE RELIED UPON FOR PERSONAL, MEDICAL, LEGAL OR FINANCIAL DECISIONS AND YOU SHOULD CONSULT AN APPROPRIATE PROFESSIONAL FOR SPECIFIC ADVICE TAILORED TO YOUR SITUATION.\r\n\r\nDr. Fields AND/OR ITS SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY, RELIABILITY, AVAILABILITY, TIMELINESS, AND ACCURACY OF THE INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS CONTAINED ON THE Dr. Fields WEB SITE FOR ANY PURPOSE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, ALL SUCH INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OR CONDITION OF ANY KIND. Dr. Fields AND/OR ITS SUPPLIERS HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THIS INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS, INCLUDING ALL IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT.\r\n\r\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL Dr. Fields AND/OR ITS SUPPLIERS BE LIABLE FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, SPECIAL, CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF USE, DATA OR PROFITS, ARISING OUT OF OR IN ANY WAY CONNECTED WITH THE USE OR PERFORMANCE OF THE Dr. Fields WEB SITE, WITH THE DELAY OR INABILITY TO USE THE Dr. Fields WEB SITE OR RELATED SERVICES, THE PROVISION OF OR FAILURE TO PROVIDE SERVICES, OR FOR ANY INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS OBTAINED THROUGH THE Dr. Fields WEB SITE, OR OTHERWISE ARISING OUT OF THE USE OF THE Dr. Fields WEB SITE, WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, EVEN IF Dr. Fields OR ANY OF ITS SUPPLIERS HAS BEEN ADVISED OF THE POSSIBILITY OF DAMAGES. BECAUSE SOME STATES/JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU. IF YOU ARE DISSATISFIED WITH ANY PORTION OF THE Dr. Fields WEB SITE, OR WITH ANY OF THESE TERMS OF USE, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE USING THE Dr. Fields WEB SITE.\r\n\r\n<strong>SERVICE CONTACT :</strong> pcc@drfields.com\r\n\r\n<strong>TERMINATION/ACCESS RESTRICTION</strong>\r\n\r\nDr. Fields reserves the right, in its sole discretion, to terminate your access to the Dr. Fields Web Site and the related services or any portion thereof at any time, without notice. To the maximum extent permitted by law, this agreement is governed by the laws of the State of California, U.S.A. and you hereby consent to the exclusive jurisdiction and venue of courts in Los Angeles County, California, U.S.A. in all disputes arising out of or relating to the use of the Dr. Fields Web Site. Use of the Dr. Fields Web Site is unauthorized in any jurisdiction that does not give effect to all provisions of these terms and conditions, including without limitation this paragraph. You agree that no joint venture, partnership, employment, or agency relationship exists between you and Dr. Fields as a result of this agreement or use of the Dr. Fields Web Site. Dr. Fields\'s performance of this agreement is subject to existing laws and legal process, and nothing contained in this agreement is in derogation of Dr. Fields\'s right to comply with governmental, court and law enforcement requests or requirements relating to your use of the Dr. Fields Web Site or information provided to or gathered by Dr. Fields with respect to such use. If any part of this agreement is determined to be invalid or unenforceable pursuant to applicable law including, but not limited to, the warranty disclaimers and liability limitations set forth above, then the invalid or unenforceable provision will be deemed superseded by a valid, enforceable provision that most closely matches the intent of the original provision and the remainder of the agreement shall continue in effect. Unless otherwise specified herein, this agreement constitutes the entire agreement between the user and Dr. Fields with respect to the Dr. Fields Web Site and it supersedes all prior or contemporaneous communications and proposals, whether electronic, oral or written, between the user and Dr. Fields with respect to the Dr. Fields Web Site. A printed version of this agreement and of any notice given in electronic form shall be admissible in judicial or administrative proceedings based upon or relating to this agreement to the same extent and subject to the same conditions as other business documents and records originally generated and maintained in printed form. It is the express wish to the parties that this agreement and all related documents be drawn up in English.\r\n\r\n<strong>COPYRIGHT AND TRADEMARK NOTICES:</strong>\r\n\r\nAll contents of the Dr. Fields Web Site are: ©2020 OrthoRegen. All rights reserved.\r\n\r\n<strong>TRADEMARKS</strong>\r\n\r\n<u>THE ATHLETIC DOC is a registered trademark owned by and ORTHOREGEN is a registered trademark owned by Peter A. Fields MD, Inc., a California corporation.</u>\r\n\r\nThe names of actual companies and products mentioned herein may be the trademarks of their respective owners.\r\n\r\nAny rights not expressly granted herein are reserved.\r\n\r\n<strong>NOTICES AND PROCEDURE FOR MAKING CLAIMS OF COPYRIGHT INFRINGEMENT</strong>\r\n\r\nPursuant to Title 17, United States Code, Section 512(c)(2), notifications of claimed copyright infringement under United States copyright law should be sent to pcc@drfields.com. ALL INQUIRIES NOT RELEVANT  WILL RECEIVE NO RESPONSE.','Terms','','publish','closed','closed','','terms','','','2020-07-01 00:02:42','2020-07-01 00:02:42','',0,'https://www.drfields.com/?page_id=977',0,'page','',0),(981,8,'2019-06-10 10:13:01','2019-06-10 10:13:01','<strong>AGREEMENT BETWEEN USER AND Dr. Fields</strong>\r\n\r\nThe Dr. Fields Web Site is comprised of various Web pages operated by Dr. Fields.\r\n\r\nThe Dr. Fields Web Site is offered to you conditioned on your acceptance without modification of the terms, conditions, and notices contained herein. Your use of the Dr. Fields Web Site constitutes your agreement to all such terms, conditions, and notices.\r\n\r\n<strong>MODIFICATION OF THESE TERMS OF USE</strong>\r\n\r\nDr. Fields reserves the right to change the terms, conditions, and notices under which the Dr. Fields Web Site is offered, including but not limited to the charges associated with the use of the Dr. Fields Web Site.\r\n\r\n<strong>LINKS TO THIRD PARTY SITES</strong>\r\n\r\nThe Dr. Fields Web Site may contain links to other Web Sites (\"Linked Sites\"). The Linked Sites are not under the control of Dr. Fields and Dr. Fields is not responsible for the contents of any Linked Site, including without limitation any link contained in a Linked Site, or any changes or updates to a Linked Site. Dr. Fields is not responsible for webcasting or any other form of transmission received from any Linked Site. Dr. Fields is providing these links to you only as a convenience, and the inclusion of any link does not imply endorsement by Dr. Fields of the site or any association with its operators.\r\n\r\n<strong>NO UNLAWFUL OR PROHIBITED USE</strong>\r\n\r\nAs a condition of your use of the Dr. Fields Web Site, you warrant to Dr. Fields that you will not use the Dr. Fields Web Site for any purpose that is unlawful or prohibited by these terms, conditions, and notices. You may not use the Dr. Fields Web Site in any manner which could damage, disable, overburden, or impair the Dr. Fields Web Site or interfere with any other party\'s use and enjoyment of the Dr. Fields Web Site. You may not obtain or attempt to obtain any materials or information through any means not intentionally made available or provided for through the Dr. Fields Web Sites.\r\n\r\n<strong>USE OF COMMUNICATION SERVICES</strong>\r\n\r\nThe Dr. Fields Web Site may contain bulletin board services, chat areas, news groups, forums, communities, personal web pages, calendars, and/or other message or communication facilities designed to enable you to communicate with the public at large or with a group (collectively, \"Communication Services\"), you agree to use the Communication Services only to post, send and receive messages and material that are proper and related to the particular Communication Service. By way of example, and not as a limitation, you agree that when using a Communication Service, you will not:\r\n<ul>\r\n 	<li>Defame, abuse, harass, stalk, threaten or otherwise violate the legal rights (such as rights of privacy and publicity) of others.</li>\r\n 	<li>Publish, post, upload, distribute or disseminate any inappropriate, profane, defamatory, infringing, obscene, indecent or unlawful topic, name, material or information.</li>\r\n 	<li>Upload files that contain software or other material protected by intellectual property laws (or by rights of privacy of publicity) unless you own or control the rights thereto or have received all necessary consents.</li>\r\n 	<li>Upload files that contain viruses, corrupted files, or any other similar software or programs that may damage the operation of another\'s computer.</li>\r\n 	<li>Advertise or offer to sell or buy any goods or services for any business purpose, unless such Communication Service specifically allows such messages.</li>\r\n 	<li>Conduct or forward surveys, contests, pyramid schemes or chain letters.</li>\r\n 	<li>Download any file posted by another user of a Communication Service that you know, or reasonably should know, cannot be legally distributed in such manner.</li>\r\n 	<li>Falsify or delete any author attributions, legal or other proper notices or proprietary designations or labels of the origin or source of software or other material contained in a file that is uploaded.</li>\r\n 	<li>Restrict or inhibit any other user from using and enjoying the Communication Services.</li>\r\n 	<li>Violate any code of conduct or other guidelines which may be applicable for any particular Communication Service.</li>\r\n 	<li>Harvest or otherwise collect information about others, including e-mail addresses, without their consent.</li>\r\n 	<li>Violate any applicable laws or regulations.</li>\r\n</ul>\r\nDr. Fields has no obligation to monitor the Communication Services. However, Dr. Fields reserves the right to review materials posted to a Communication Service and to remove any materials in its sole discretion. Dr. Fields reserves the right to terminate your access to any or all of the Communication Services at any time without notice for any reason whatsoever.\r\n\r\nDr. Fields reserves the right at all times to disclose any information as necessary to satisfy any applicable law, regulation, legal process or governmental request, or to edit, refuse to post or to remove any information or materials, in whole or in part, in Dr. Fields\'s sole discretion.\r\n\r\nAlways use caution when giving out any personally identifying information about yourself or your children in any Communication Service. Dr. Fields does not control or endorse the content, messages or information found in any Communication Service and, therefore, Dr. Fields specifically disclaims any liability with regard to the Communication Services and any actions resulting from your participation in any Communication Service. Managers and hosts are not authorized Dr. Fields spokespersons, and their views do not necessarily reflect those of Dr. Fields.\r\n\r\nMaterials uploaded to a Communication Service may be subject to posted limitations on usage, reproduction and/or dissemination. You are responsible for adhering to such limitations if you download the materials.\r\n\r\n<strong>MATERIALS PROVIDED TO Dr. Fields OR POSTED AT ANY Dr. Fields WEB SITE</strong>\r\nDr. Fields does not claim ownership of the materials you provide to Dr. Fields (including feedback and suggestions) or post, upload, input or submit to any Dr. Fields Web Site or its associated services (collectively \"Submissions\"). However, by posting, uploading, inputting, providing or submitting your Submission you are granting Dr. Fields, its affiliated companies and necessary sublicensees permission to use your Submission in connection with the operation of their Internet businesses including, without limitation, the rights to: copy, distribute, transmit, publicly display, publicly perform, reproduce, edit, translate and reformat your Submission; and to publish your name in connection with your Submission.\r\n\r\nNo compensation will be paid with respect to the use of your Submission, as provided herein. Dr. Fields is under no obligation to post or use any Submission you may provide and may remove any Submission at any time in Dr. Fields\'s sole discretion.\r\n\r\nBy posting, uploading, inputting, providing or submitting your Submission you warrant and represent that you own or otherwise control all of the rights to your Submission as described in this section including, without limitation, all the rights necessary for you to provide, post, upload, input or submit the Submissions.\r\n\r\n<strong>LIABILITY DISCLAIMER</strong>\r\n\r\nTHE INFORMATION, SOFTWARE, PRODUCTS, AND SERVICES INCLUDED IN OR AVAILABLE THROUGH THE Dr. Fields WEB SITE MAY INCLUDE INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION HEREIN. Dr. Fields AND/OR ITS SUPPLIERS MAY MAKE IMPROVEMENTS AND/OR CHANGES IN THE Dr. Fields WEB SITE AT ANY TIME. ADVICE RECEIVED VIA THE Dr. Fields WEB SITE SHOULD NOT BE RELIED UPON FOR PERSONAL, MEDICAL, LEGAL OR FINANCIAL DECISIONS AND YOU SHOULD CONSULT AN APPROPRIATE PROFESSIONAL FOR SPECIFIC ADVICE TAILORED TO YOUR SITUATION.\r\n\r\nDr. Fields AND/OR ITS SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY, RELIABILITY, AVAILABILITY, TIMELINESS, AND ACCURACY OF THE INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS CONTAINED ON THE Dr. Fields WEB SITE FOR ANY PURPOSE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, ALL SUCH INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OR CONDITION OF ANY KIND. Dr. Fields AND/OR ITS SUPPLIERS HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THIS INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS, INCLUDING ALL IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT.\r\n\r\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL Dr. Fields AND/OR ITS SUPPLIERS BE LIABLE FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, SPECIAL, CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF USE, DATA OR PROFITS, ARISING OUT OF OR IN ANY WAY CONNECTED WITH THE USE OR PERFORMANCE OF THE Dr. Fields WEB SITE, WITH THE DELAY OR INABILITY TO USE THE Dr. Fields WEB SITE OR RELATED SERVICES, THE PROVISION OF OR FAILURE TO PROVIDE SERVICES, OR FOR ANY INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS OBTAINED THROUGH THE Dr. Fields WEB SITE, OR OTHERWISE ARISING OUT OF THE USE OF THE Dr. Fields WEB SITE, WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, EVEN IF Dr. Fields OR ANY OF ITS SUPPLIERS HAS BEEN ADVISED OF THE POSSIBILITY OF DAMAGES. BECAUSE SOME STATES/JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU. IF YOU ARE DISSATISFIED WITH ANY PORTION OF THE Dr. Fields WEB SITE, OR WITH ANY OF THESE TERMS OF USE, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE USING THE Dr. Fields WEB SITE.\r\n\r\n<strong>SERVICE </strong>CONTACT :<strong> eugene@kspsystems.com</strong>\r\n\r\n<strong>TERMINATION/ACCESS RESTRICTION</strong>\r\n\r\nDr. Fields reserves the right, in its sole discretion, to terminate your access to the Dr. Fields Web Site and the related services or any portion thereof at any time, without notice. GENERAL To the maximum extent permitted by law, this agreement is governed by the laws of the State of Washington, U.S.A. and you hereby consent to the exclusive jurisdiction and venue of courts in San Mateo County, California, U.S.A. in all disputes arising out of or relating to the use of the Dr. Fields Web Site. Use of the Dr. Fields Web Site is unauthorized in any jurisdiction that does not give effect to all provisions of these terms and conditions, including without limitation this paragraph. You agree that no joint venture, partnership, employment, or agency relationship exists between you and Dr. Fields as a result of this agreement or use of the Dr. Fields Web Site. Dr. Fields\'s performance of this agreement is subject to existing laws and legal process, and nothing contained in this agreement is in derogation of Dr. Fields\'s right to comply with governmental, court and law enforcement requests or requirements relating to your use of the Dr. Fields Web Site or information provided to or gathered by Dr. Fields with respect to such use. If any part of this agreement is determined to be invalid or unenforceable pursuant to applicable law including, but not limited to, the warranty disclaimers and liability limitations set forth above, then the invalid or unenforceable provision will be deemed superseded by a valid, enforceable provision that most closely matches the intent of the original provision and the remainder of the agreement shall continue in effect. Unless otherwise specified herein, this agreement constitutes the entire agreement between the user and Dr. Fields with respect to the Dr. Fields Web Site and it supersedes all prior or contemporaneous communications and proposals, whether electronic, oral or written, between the user and Dr. Fields with respect to the Dr. Fields Web Site. A printed version of this agreement and of any notice given in electronic form shall be admissible in judicial or administrative proceedings based upon or relating to this agreement to the same extent an d subject to the same conditions as other business documents and records originally generated and maintained in printed form. It is the express wish to the parties that this agreement and all related documents be drawn up in English.\r\n\r\n<strong>COPYRIGHT AND TRADEMARK NOTICES:</strong>\r\n\r\nAll contents of the Dr. Fields Web Site are: ©2019 OrthoRegen and/or its suppliers. All rights reserved.\r\n\r\n<strong>TRADEMARKS</strong>\r\n\r\nThe names of actual companies and products mentioned herein may be the trademarks of their respective owners.\r\n\r\nThe example companies, organizations, products, people and events depicted herein are fictitious. No association with any real company, organization, product, person, or event is intended or should be inferred.\r\n\r\nAny rights not expressly granted herein are reserved.\r\n\r\n<strong>NOTICES AND PROCEDURE FOR MAKING CLAIMS OF COPYRIGHT INFRINGEMENT</strong>\r\n\r\nPursuant to Title 17, United States Code, Section 512(c)(2), notifications of claimed copyright infringement under United States copyright law should be sent to Service Provider\'s Designated Agent. ALL INQUIRIES NOT RELEVANT TO THE FOLLOWING PROCEDURE WILL RECEIVE NO RESPONSE. See Notice and Procedure for Making Claims of Copyright Infringement.','Terms Of Use','','inherit','closed','closed','','977-revision-v1','','','2019-06-10 10:13:01','2019-06-10 10:13:01','',977,'https://www.drfields.com/977-revision-v1/',0,'revision','',0),(989,8,'2019-06-10 10:41:00','2019-06-10 10:41:00','<p><a href=\"/Low-Back-Pain-Challenges-and-Treatment\">Low Back Pain Challenges and Treatment</a></p>\r\n<p><a href=\"/ACL-Tears-and-Knee-Ligament-Injuries\">ACL Tears and Knee Ligament Injuries</a></p>\r\n<p><a href=\"/Relieve-Arthritis-Pain\">Relieve Arthritis Pain</a></p>\r\n<p><a href=\"/Failed-Back-Surgery-Syndrome\">Failed Back Surgery Syndrome</a></p>\r\n<p><a href=\"/Get-Rid-of-Knee-Arthritis-Symptoms-by-Treating-the-Source-of-the-Pain\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a></p>\r\n<p><a href=\"/Neck-Pain-Treatment-and-Relief\">Neck Pain Treatment and Relief</a></p>\r\n<p><a href=\"/What-is-Behind-Joint-Pain-\">What is Behind Joint Pain?&nbsp;</a>(Peding)</p>\r\n<p><a href=\"/Meniscus-and-Labral-Tears\">Meniscus&nbsp;and Labral Tears</a></p>\r\n<p><a href=\"Is-There-Help-for-Arthritis\">Is There help For Arthritis?&nbsp;</a></p>\r\n<p><a href=\"/Runners-Knee-Pain\">Runner\'s Knee Pain</a></p>\r\n<p><a href=\"/Do-You-Have-a-Hip-Injury\">Do You Have a Hip Injury?</a></p>\r\n<p><a href=\"/Avoid-Joint-Replacement\">Avoid Joint Replacement</a></p>\r\n<p><a href=\"/Stop-Shoulder-Pain-from-Rotator-Cuff-and-Other-Shoulder-Injuries\">Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries</a></p>\r\n<p><a href=\"/Unrelenting-Back-Pain-Repaired-with-Regenerative-Orthopedics\">Unrelenting Back Pain Repaired with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/Do-Your-Knees-Hurt\">Do Your Knees Hurt?</a></p>\r\n<p><a href=\"/Repairing-Sports-Injuries-with-Regenerative-Orthopedics\">Repairing Sports Injuries with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/Stem-Cell-Therapy-Options-for-Arthritis\">Stem Cell Therapy Options for Arthritis</a></p>\r\n<p><a href=\"/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-ENGLISH\">Regenerative Medicine Lecture in Mexico City (English) </a></p>\r\n<p><a href=\"/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-SPANISH\">Regenerative Medicine Lecture in Mexico City (Spanish)</a></p>\r\n<p><a href=\"/How-to-Avoid-Joint-Spine-Surgery-and-Live-Pain-Free\">How to Avoid Joint &amp; Spine Surgery and Live Pain Free</a></p>\r\n<p><a href=\"/Dr-Fields-Lectures-to-Over-400-Physicians-in-Las-Vegas\">Dr. Fields Lectures to Over 400 Physicians in Las Vegas</a></p>\r\n<p><a href=\"2019-Lecture-Schedule\">Regenerative Orthopedics Lecture Schedule</a></p>\r\n<p><a href=\"FDA-Warns-of-Serious-Neurologic-Problems-After-Epidural-Corticosteroid-Injections\">FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections</a></p>\r\n<p><a href=\"Prolotherapy-for-Knee-Pain-Abstract\">Prolotherapy for Knee-Pain Abstract</a></p>\r\n<p><a href=\"/Download-Dr-Fields-Prolotherapy-Lecture-Today\">Download Dr. Fields Prolotherapy Lecture Today</a></p>\r\n<p><a href=\"/Dr-Fields-interviewed-on-KCAL-CBS-about-Prolotherapy\">Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'</a></p>\r\n<p><a href=\"/Dr-Fields-is-giving-a-presentation-on-prolotherapy\">Dr. Fields is giving a presentation on prolotherapy</a></p>\r\n<p><a href=\"/New-York-Times-Article-Injections-to-Kick-Start-Tissue-Repair\">New York Times Article: Injections to Kick-Start Tissue Repair</a></p>\r\n<p><a href=\"/View-and-Download-Dr-Fields-Latest-Lecture-on-Arthritis-and-Prolotherapy\">View and Download Dr. Fields Latest Lecture on Arthritis and Prolotherapy</a></p>\r\n<p><a href=\"/LA-Times-Article-A-Ski-Run-for-Border\">LA Times Article \"A Ski Run for Border\"</a></p>\r\n<p><a href=\"/Dr-Fields-Free-Open-to-the-Public-Lecture-on-Arthritis-Joint-Pain-and-Inflammation\">Dr. Fields Free Open to the Public Lecture on Arthritis, Joint Pain and Inflammation</a></p>\r\n<p><a href=\"/What-to-Ask-When-Looking-for-a-Prolotherapist\">What to Ask When Looking for a Prolotherapist</a></p>\r\n<p><a href=\"/Chronic-Pain-or-Injuries-Prolotherapy-Might-be-the-Answer\">Chronic Pain or Injuries? Prolotherapy Might be the Answer</a></p>\r\n<p><a href=\"/Prolotherapy-Is-It-For-You\">Prolotherapy - Is It For You</a></p>\r\n<p><a href=\"/Prolotherapy-for-Shoulder\">Prolotherapy for Shoulder</a></p>\r\n<p><a href=\"/Cortisone-Is-it-Really-Good-for-You\">Cortisone - Is it Really Good for You</a></p>\r\n<p><a href=\"/Chronic-Pain-Prolotherapy-May-be-the-Answer\">Chronic Pain? - Prolotherapy May be the Answer</a></p>\r\n<p><a href=\"/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">Joint Surgery? Think Again! Learn About Prolotherapy</a></p>\r\n','Prolo News','','inherit','closed','closed','','665-revision-v1','','','2019-06-10 10:41:00','2019-06-10 10:41:00','',665,'https://www.drfields.com/665-revision-v1/',0,'revision','',0),(990,8,'2019-06-10 10:42:11','2019-06-10 10:42:11','<p><a href=\"/Low-Back-Pain-Challenges-and-Treatment\">Low Back Pain Challenges and Treatment</a></p>\r\n<p><a href=\"/ACL-Tears-and-Knee-Ligament-Injuries\">ACL Tears and Knee Ligament Injuries</a></p>\r\n<p><a href=\"/Relieve-Arthritis-Pain\">Relieve Arthritis Pain</a></p>\r\n<p><a href=\"/Failed-Back-Surgery-Syndrome\">Failed Back Surgery Syndrome</a></p>\r\n<p><a href=\"/Get-Rid-of-Knee-Arthritis-Symptoms-by-Treating-the-Source-of-the-Pain\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a></p>\r\n<p><a href=\"/Neck-Pain-Treatment-and-Relief\">Neck Pain Treatment and Relief</a></p>\r\n<p><a href=\"/What-is-Behind-Joint-Pain-\">What is Behind Joint Pain?&nbsp;</a>(Peding)</p>\r\n<p><a href=\"/Meniscus-and-Labral-Tears\">Meniscus&nbsp;and Labral Tears</a></p>\r\n<p><a href=\"Is-There-Help-for-Arthritis\">Is There help For Arthritis?&nbsp;</a></p>\r\n<p><a href=\"/Runners-Knee-Pain\">Runner\'s Knee Pain</a></p>\r\n<p><a href=\"/Do-You-Have-a-Hip-Injury\">Do You Have a Hip Injury?</a></p>\r\n<p><a href=\"/Avoid-Joint-Replacement\">Avoid Joint Replacement</a></p>\r\n<p><a href=\"/Stop-Shoulder-Pain-from-Rotator-Cuff-and-Other-Shoulder-Injuries\">Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries</a></p>\r\n<p><a href=\"/Unrelenting-Back-Pain-Repaired-with-Regenerative-Orthopedics\">Unrelenting Back Pain Repaired with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/Do-Your-Knees-Hurt\">Do Your Knees Hurt?</a></p>\r\n<p><a href=\"/Repairing-Sports-Injuries-with-Regenerative-Orthopedics\">Repairing Sports Injuries with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/Stem-Cell-Therapy-Options-for-Arthritis\">Stem Cell Therapy Options for Arthritis</a></p>\r\n<p><a href=\"/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-ENGLISH\">Regenerative Medicine Lecture in Mexico City (English) </a></p>\r\n<p><a href=\"/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-SPANISH\">Regenerative Medicine Lecture in Mexico City (Spanish)</a></p>\r\n<p><a href=\"/How-to-Avoid-Joint-Spine-Surgery-and-Live-Pain-Free\">How to Avoid Joint &amp; Spine Surgery and Live Pain Free</a></p>\r\n<p><a href=\"/Dr-Fields-Lectures-to-Over-400-Physicians-in-Las-Vegas\">Dr. Fields Lectures to Over 400 Physicians in Las Vegas</a></p>\r\n<p><a href=\"/2019-Lecture-Schedule\">2019 Regenerative Orthopedics Lecture Schedule</a></p>\r\n<p><a href=\"FDA-Warns-of-Serious-Neurologic-Problems-After-Epidural-Corticosteroid-Injections\">FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections</a></p>\r\n<p><a href=\"Prolotherapy-for-Knee-Pain-Abstract\">Prolotherapy for Knee-Pain Abstract</a></p>\r\n<p><a href=\"/Download-Dr-Fields-Prolotherapy-Lecture-Today\">Download Dr. Fields Prolotherapy Lecture Today</a></p>\r\n<p><a href=\"/Dr-Fields-interviewed-on-KCAL-CBS-about-Prolotherapy\">Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'</a></p>\r\n<p><a href=\"/Dr-Fields-is-giving-a-presentation-on-prolotherapy\">Dr. Fields is giving a presentation on prolotherapy</a></p>\r\n<p><a href=\"/New-York-Times-Article-Injections-to-Kick-Start-Tissue-Repair\">New York Times Article: Injections to Kick-Start Tissue Repair</a></p>\r\n<p><a href=\"/View-and-Download-Dr-Fields-Latest-Lecture-on-Arthritis-and-Prolotherapy\">View and Download Dr. Fields Latest Lecture on Arthritis and Prolotherapy</a></p>\r\n<p><a href=\"/LA-Times-Article-A-Ski-Run-for-Border\">LA Times Article \"A Ski Run for Border\"</a></p>\r\n<p><a href=\"/Dr-Fields-Free-Open-to-the-Public-Lecture-on-Arthritis-Joint-Pain-and-Inflammation\">Dr. Fields Free Open to the Public Lecture on Arthritis, Joint Pain and Inflammation</a></p>\r\n<p><a href=\"/What-to-Ask-When-Looking-for-a-Prolotherapist\">What to Ask When Looking for a Prolotherapist</a></p>\r\n<p><a href=\"/Chronic-Pain-or-Injuries-Prolotherapy-Might-be-the-Answer\">Chronic Pain or Injuries? Prolotherapy Might be the Answer</a></p>\r\n<p><a href=\"/Prolotherapy-Is-It-For-You\">Prolotherapy - Is It For You</a></p>\r\n<p><a href=\"/Prolotherapy-for-Shoulder\">Prolotherapy for Shoulder</a></p>\r\n<p><a href=\"/Cortisone-Is-it-Really-Good-for-You\">Cortisone - Is it Really Good for You</a></p>\r\n<p><a href=\"/Chronic-Pain-Prolotherapy-May-be-the-Answer\">Chronic Pain? - Prolotherapy May be the Answer</a></p>\r\n<p><a href=\"/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">Joint Surgery? Think Again! Learn About Prolotherapy</a></p>\r\n','Prolo News','','inherit','closed','closed','','665-revision-v1','','','2019-06-10 10:42:11','2019-06-10 10:42:11','',665,'https://www.drfields.com/665-revision-v1/',0,'revision','',0),(1003,8,'2019-06-10 11:32:33','2019-06-10 11:32:33','Man Knee Pain','Man Knee Pain','','inherit','open','closed','','man-knee-pain','','','2019-06-10 11:32:38','2019-06-10 11:32:38','',0,'https://www.drfields.com/wp-content/uploads/2019/06/man-knee-pain.jpg',0,'attachment','image/jpeg',0),(1007,8,'2019-06-11 04:26:18','2019-06-11 04:26:18','','Prolotherapy_lecture','','inherit','open','closed','','prolotherapy_lecture','','','2019-06-11 04:26:18','2019-06-11 04:26:18','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Prolotherapy_lecture.pdf',0,'attachment','application/pdf',0),(1012,8,'2019-06-11 04:32:56','2019-06-11 04:32:56','<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Video Testimonials</a></p>\r\n<p><strong><a name=\"Mindy\"></a>Elbow</strong></p>\r\n<p>I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.  It got so bad that I couldn\'t do everyday things, let alone hold a tennis racket.  After a year of pain, not playing tennis and numerous treatments with both a chiropractor and orthopedist, I didn\'t have much faith that anything would help.  My chiropractor referred me to Dr Fields.  Dr. Fields patiently explained how and why prolotherapy will work.  I figured that I had tried everything else and why not give it a try.  I had both Dextrose and PRP prolotherapy to try and fix my elbow.  I can happily say I am mostly pain free and back to playing tennis 4 to 5 days a week.  I am so happy you gave me my game back.</p>\r\n<p>Thanks for everything,<br>\r\nMindy</p>\r\n<p><strong><a name=\"Robert\"></a>Shoulder </strong></p>\r\n<p>After two orthopedic surgeons told me that my rotator cuff was too atrophied and weak for surgical repair, I discovered Prolotherapy. I researched the procedure and decided to try it. I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else. After only 5 treatments, I am back to multiple sets of 200lbs. on the bench press and push-ups which really hurt before. It took 15 weeks as opposed to nine months of recovery for rotator cuff surgery and I have no pain whatsoever.</p>\r\n<p>Robert L. Miller 69 yo<br>\r\nReal Estate Developer<br>\r\nFormer - US Navy Lieutenant J.G</p>\r\n<p style=\"text-align: center;\">\r\n<a href=\"/Contact-Dr-Fields\" class=\"btn-more\"><em class=\"fa fa-phone\"></em>&nbsp;&nbsp;Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><strong><a name=\"Colin\"></a>Elbow</strong></p>\r\n<p>I am very active and work out four to five days a week. I had experienced elbow pain for more than one year. I finally went to see a leading orthopedic surgeon who specializes in sports medicine. During the next 14 months, I was given three cortisone injections and had six acupuncture/acupressure treatments. I was also given anti-inflammatory medicine as well. After all of this, there was no discernable difference. I was unable to work out and was possibly looking at elbow reconstruction.</p>\r\n<p>I was then was referred to Peter A. Fields, MD, DC by my chiropractor. After a thorough examination, Dr Fields decided that Prolotherapy would be beneficial for me. After only two or three treatments, I was able to start getting back to working out and lifting. Following the full course of treatments, I am without any pain and working out as usual. For me finding Prolotherpay not only fixed my problem but helped me avoid surgery.</p>\r\n<p>Thanks Dr Fields! <br>\r\n<br>\r\nColin , 60 yo CEO, Kurgan-Cheviot <br>\r\nMass Production Jewelry Business</p>\r\n<p><strong>Foot </strong></p>\r\n<p>I came to see Dr Peter Fields basically as my \"last resort.\" <br>\r\nI had pain in my left foot for well over 6 years. <br>\r\nI am a runner - not world class or even a competitive runner, but I LOVE to run - running is my passion. I had reached a point where I couldn\'t run a half a mile without bursting into tears from the pain! And I have been known to have a pretty high pain tolerance. I had run 3 marathons and now I couldn\'t run a mile.</p>\r\n<p>I had seen numerous orthopedic surgeons…… and not one doctor was able to help me. They couldn\'t find anything wrong with my foot- I think they thought I was nuts! But this pain was REAL and I couldn\'t run!</p>\r\n<p>I finally went to see my podiatrist – who gave me 3 options: <br>\r\nwrapping my foot for the rest of my life; surgery; or I could try Prolotherapy. Well, I opted to try Prolotherapy. What could it hurt. I couldn\'t afford to take 6 months off for foot surgery so Prolotherapy was my last option.</p>\r\n<p><strong><a name=\"Penny\"></a>WOW is all I can say!</strong></p>\r\n<p>I have my running back! Prolotherapy and Dr Fields gave me back my running! <br>\r\nRunning brings me peace, joy and happiness! I can run and I run PAIN FREE!!</p>\r\n<p>I can\'t tell you how happy this has made me! I thought I would have to quit running! <br>\r\nBut I didn\'t! I came to see Dr Fields…and it was the best thing I ever did! <br>\r\nI had approximately 8 treatments on my left foot with AMAZING results. <br>\r\nI am pain free now! To me it\'s a miracle! <br>\r\nIt\'s been a huge transition: crying after a half a mile to running half marathons again, and maybe another marathon down the road!</p>\r\n<p>Dr Fields gave me back my running! <br>\r\nThank you so very much!</p>\r\n<p>Penny 44 yo<br>\r\nCamera Assistant in the Film Industry<br>\r\nHalf and Full Marathon Runner and a Wannabe Triathlete!</p>\r\n<p style=\"text-align: center;\">\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com\">  Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><strong><a name=\"Amy\"></a>S.I Joint/hip </strong></p>\r\n<p>I just thought I would drop you a quick note to thank you for the time and effort you took with me to make sure that I got the proper treatment for my SI joint/hip issue. After months of visits to an orthopedic doctor, physical therapy, chiropractic adjustments and time off from running and riding, nothing was helping my injury. As a very athletic person, this was very upsetting and frustrating.</p>\r\n<p>When it was suggested I try Prolotherapy, I booked an appointment in hopes something would work (after Googling the treatment to see what I could learn!). I want you to know how much it meant to me that you took so much time to learn about the history of my injury, my training and overall health. It was really great to have someone answer ALL of my questions about the treatment, advise me about what I could do training wise and what to expect over the course of the treatment. Five treatments later I am thrilled to tell you that my injury and pain has all but disappeared. Just three weeks ago, I completed a half-Ironman triathlon in Sonoma, something that seemed impossible earlier in the season.</p>\r\n<p>The Prolotherapy certainly worked very well, but I attribute my recovery to more than just the treatment. It was concern, caring and skill as a doctor and chiropractor that helped me get back to what I love…running, riding and swimming.<br>\r\nThanks again for what you do.<br>\r\nWith my best,</p>\r\n<p>Amy 36 yo<br>\r\nVice President of Development <br>\r\nArthritis Foundation of America/Southern California Chapter<br>\r\nMember of the Los Angeles Triathlon Club</p>\r\n<p><strong><a name=\"Geri\"></a>Ankle</strong></p>\r\n<p>As they say, getting older is not for sissies! In 2006, I broke my right ankle (yes, in a stupid accident), and was in a cast for the requisite 6 weeks. I was turned loose to recover on my own by using it normally, or as normally as I could. Even though it had been a relatively minor break, it took about one year for me to stop limping and \"remembering\" the break with every painful step that I took.</p>\r\n<p>In 2008, I had a significantly more serious dislocation of my left ankle from another stupid accident. The pain in this one was excruciating.</p>\r\n<p>Six more weeks in a cast, then six weeks of physical therapy. <br>\r\nThe pain was still present; I wondered if my pain would again last for a year or more (as many of the \'medical\' websites state is the case with a sub-talar dislocation). I then began seeing Dr. Peter Fields to receive prolotherapy treatments for my aching left ankle.</p>\r\n<p>Within five treatments, my pain was gone or mostly gone! <br>\r\nI know that the prolotherapy helped me to heal faster and stronger. <br>\r\nToday, I occasionally get a twinge in the area but is nothing like the \"every step\" pain that I had experienced with my previous injury.</p>\r\n<p>I credit the prolotherapy and Dr. Fields\' deft application to my recovery. <br>\r\nNext, I am going to try to remember to stop having stupid accidents! <br>\r\nThanks, again, Dr. Fields</p>\r\n<p>Geri 53 yo MHROD, CPT, CPLP<br>\r\nPerformance Consulting and Organization Development</p>\r\n<p><strong><a name=\"Nathania\"></a>Rib/Chest Wall Pain</strong></p>\r\n<p>For seven years I have had rib/chest wall pain. <br>\r\nBefore I started treatment with Dr Fields, the pain would come on about once every month; debilitating pain that even with pain medicines would keep me housebound and curled up on the couch for two to three days at time.</p>\r\n<p>I thought that I had tried everything including regular chiropractic visits, anti-inflammatory medicine, pain medicine and more to get rid of the pain. <br>\r\nI am a very active and physically fit person who goes to the gym 5- 6 times a week.<br>\r\nThis was ruining my life.</p>\r\n<p>I wanted to let you know that as of now (as of our last treatment), I am pain-free and fully able to enjoy life again!</p>\r\n<p>In 5 short sessions, you turned me from a skeptic into a believer and I can\'t thank you enough.What you do over there is nothing short of pure magic and I believe, believe, BELIEVE!!</p>\r\n<p>Prolotherapy has changed my life and eradicated 7 years of constant pain and you are and will remain the shining star who has given me my life back.</p>\r\n<p>Thank you for everything and I will continue to refer anyone and everyone who I believe could benefit from this treatment.</p>\r\n<p>Thanks again and keep up the good work- you are doing something amazing for people who are desperate and exhausted about their situations and I can\'t thank you enough.</p>\r\n<p>Nathania, 27 years old</p>\r\n<p style=\"text-align: center;\">\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com\">  Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><strong><a name=\"Mrs\"></a>Shoulder</strong></p>\r\n<p>I am not a medical doctor. However, I am a Clinical Laboratory Scientist (CLS), with a strong educational background in body mechanics. I am also an amateur triathlete. I injured a ligament in my right arm during training. This created a constant nagging pain my shoulder.</p>\r\n<p>I thought I was just \"stuck with it\", as I happened to be over 50, and would have to tolerate this pain due to my age. No matter what I did, the arm just didn\'t seem to get better.</p>\r\n<p>I read about Prolotherapy and did some research on it. I went to see Dr. Fields to get Prolotherapy treatments. After five treatments over four months, the pain in shoulder was completely eliminated. From my personal experience, Prolotherapy is a viable way to treat injured tendons and ligaments. The bottom line: either choose to use healthy, relatively safe alternative procedures like Prolotherapy. Or get expensive MRI\'s that miss 50% of injuries, have surgery and/or take pain-killers in order to \"get by\".</p>\r\n<p>Prolotherapy treatment is not an overnight cure. But what are a few days of discomfort to promote healing versus a lifetime of chronic pain? <br>\r\nThis was a no-brainer for me</p>\r\n<p>Sincerely,<br>\r\nMary, B.S., CLS 51 yo <br>\r\nMember of the Los Angeles Triathlon Club</p>\r\n<p><strong><a name=\"Jane\"></a>Knee</strong></p>\r\n<p>I started Prolotherapy treatments in December for a problem with my left knee. I could barely bend it and had a lot of pain. From the first treatment, I saw improvement. When you were finished, I could bend the knee so much more and without pain. And even after 9 months post treatment, I\'m continually improving the amount I can bend it! But that\'s not all. After the left knee was better, you then started treatment on my right knee for a re-injury of an old torn meniscus. After two Prolotherapy treatments, the pain is gone! It happened so fast, I forgot to thank you. So, here it is Dr. Fields - Thank You so much for giving me my knee\'s back!</p>\r\n<p>Best Regards,<br>\r\n<br>\r\nJane , 62 years old<br>\r\nCertified Professional Redesigner<br>\r\nReDesign LA!</p>\r\n<p><strong><a name=\"Lois\"></a>Knee</strong></p>\r\n<p>I had been having pain and swelling in both knees due to Arthritis. I could not tolerate pain pills. My daughter referred me to Dr. Peter Fields for Prolotherapy treatment. On my first visit to his office in Santa Monica, he examined my knees and explained the procedure to me. I had an appointment on December 1, 2006 for my first Prolotherapy injections on my right knee, alternating with right and left knee a week apart. <br>\r\nAfter the final treatments ended I am still without all the pain and have more muscle strength in my legs.</p>\r\n<p>Lois - 72 yo</p>\r\n<p style=\"text-align: center;\">\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com\">  Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><strong><a name=\"Katherine\"></a>Toes</strong></p>\r\n<p>In January 2007, I went to see Dr. Fields on a recommendation from my podiatrist. I was training for the Los Angeles Marathon, and I was having really bad pain in the second toe of my left foot. I had bunion surgery ten years ago that was causing the problem in my foot. I was unable to complete a run over 13 miles and my foot would hurt for days after attempting a long run.</p>\r\n<p>On Dr. Fields advice, I had four Prolotherapy treatments prior to the marathon. On March 4, 2007, I proudly completed my first marathon. I had another four treatments after the marathon, my foot no longer hurts and I am still running today. My treatments took place in a span of about 6 months. Dr. Fields is an athlete and I think this made a difference in how he treated me and my foot. He never discouraged me from running the marathon. In addition to the help with my foot, Dr.Fields helped me with vitamins and supplements to help my overall health and performance. <br>\r\nI think Dr. Fields is great!!</p>\r\n<p>Katherine 46 yo<br>\r\nMarathon Runner and very active mom of two small children</p>\r\n<p><strong><a name=\"Sharon\"></a>Knee and Achilles Tendon</strong></p>\r\n<p>I am 68 years old and was enduring chronic pain from osteoarthritis in the knees and an old Achilles tendon injury. Because of the pain, I could not even move about the house without using my walker and was unable to stand long enough to do most of the things I wanted to do. I had been seeing an orthopedic surgeon and was about to undergo arthroscopic surgery on both knees.</p>\r\n<p>My husband had heard about prolotherapy, so we did a little research on it. <br>\r\nWe discovered Dr. Fields, and I made the decision to postpone the surgery and begin prolotherapy with him.</p>\r\n<p>I had a series of eight treatment sessions over a period of about nine months, during which Dr. Fields treated both knees and one Achilles tendon. The results have been remarkably positive!</p>\r\n<p>I am not completely pain free, but I can now move about the house and yard and do the chores I love to do, without the walker. My legs feel much stronger, with less pain, and I am very happy I did not get the surgery.</p>\r\n<p>We had to travel more than 60 miles one way for each treatment session with Dr. Fields, and it was well worth it. If you decide on prolotherapy, you probably cannot find a better or more professional practitioner than Dr. Peter Fields.</p>\r\n<p>Sharon, 68 yo</p>\r\n<p><strong><a name=\"Paul\"></a>Foot</strong></p>\r\n<p>I have been an avid runner for over 20 years and my t shirt collection and metals are something to see. I have run over 500 races, from marathons to 5K\'s. I have been lucky to be virtually injury free except for a pain in my left forefoot (metatarsal) area. I tried everything for the pain including seeing numerous doctors (podiatrists to sports medicine docs). I also tried three months of rest, multiple cortisone shots and many anti-inflammatory medicines. No matter what I did, the pain would come back whenever I would start running again. Then a friend asked me if I heard of Prolotherapy. I laughed and said \"No, but I\'ve tried just about everything else, what have I got to lose\". My friend gave me the web site for Peter A. Fields MD, DC, but even then I was a skeptic. After months of frustration, I finally decided to give Prolotherapy a try so I set up an appointment and went to see Dr Fields.</p>\r\n<p>Dr Fields and his staff are extremely nice and everything was explained thoroughly. It sounded too good to be true. With nothing to lose but the pain, I went for it. After about six treatments, I am almost back to 100%. I just completed my second half marathon, back to back 10-Ks and I am training for a full marathon. My T shirt and medal collect are growing again thanks to Dr Fields. Prolotherapy Works!!!!!</p>\r\n<p>Paul age 53<br>\r\nAvid runner and racer</p>\r\n<p style=\"text-align: center;\">\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com\">  Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><em>*The testimonials reflect the real-life experiences of individuals who used our products and/or services. However, individual results may vary.</em></p>\r\n','Written Testimonials','','publish','closed','closed','','written-testimonials','','','2019-06-19 05:48:33','2019-06-19 05:48:33','',1268,'https://www.drfields.com/?page_id=1012',0,'page','',0),(1013,8,'2019-06-11 04:32:34','2019-06-11 04:32:34','Dr. Fields Interviewed','Dr. Fields Interviewed','Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'','inherit','open','closed','','dr-fields-interviewed','','','2019-06-11 04:32:43','2019-06-11 04:32:43','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-interviewed.jpg',0,'attachment','image/jpeg',0),(1014,8,'2019-06-11 04:32:56','2019-06-11 04:32:56','\r\n<p style=\"text-align: center;\"><a href=\"/Testimonials/Video-Testimonials\" class=\"secondaryButton bglight\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Video Testimonials</a></p>\r\n<p><strong><a name=\"Mindy\"></a>Elbow</strong></p>\r\n<p>I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.  It got so bad that I couldn\'t do everyday things, let alone hold a tennis racket.  After a year of pain, not playing tennis and numerous treatments with both a chiropractor and orthopedist, I didn\'t have much faith that anything would help.  My chiropractor referred me to Dr Fields.  Dr. Fields patiently explained how and why prolotherapy will work.  I figured that I had tried everything else and why not give it a try.  I had both Dextrose and PRP prolotherapy to try and fix my elbow.  I can happily say I am mostly pain free and back to playing tennis 4 to 5 days a week.  I am so happy you gave me my game back.</p>\r\n<p>Thanks for everything,<br>\r\nMindy</p>\r\n<p><strong><a name=\"Robert\"></a>Shoulder </strong></p>\r\n<p>After two orthopedic surgeons told me that my rotator cuff was too atrophied and weak for surgical repair, I discovered Prolotherapy. I researched the procedure and decided to try it. I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else. After only 5 treatments, I am back to multiple sets of 200lbs. on the bench press and push-ups which really hurt before. It took 15 weeks as opposed to nine months of recovery for rotator cuff surgery and I have no pain whatsoever.</p>\r\n<p>Robert L. Miller 69 yo<br>\r\nReal Estate Developer<br>\r\nFormer - US Navy Lieutenant J.G</p>\r\n<p style=\"text-align: center;\">\r\n<a href=\"/Contact-Dr-Fields\" class=\"secondaryButton bglight\"><em class=\"fa fa-phone\"></em>&nbsp;&nbsp;Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><strong><a name=\"Colin\"></a>Elbow</strong></p>\r\n<p>I am very active and work out four to five days a week. I had experienced elbow pain for more than one year. I finally went to see a leading orthopedic surgeon who specializes in sports medicine. During the next 14 months, I was given three cortisone injections and had six acupuncture/acupressure treatments. I was also given anti-inflammatory medicine as well. After all of this, there was no discernable difference. I was unable to work out and was possibly looking at elbow reconstruction.</p>\r\n<p>I was then was referred to Peter A. Fields, MD, DC by my chiropractor. After a thorough examination, Dr Fields decided that Prolotherapy would be beneficial for me. After only two or three treatments, I was able to start getting back to working out and lifting. Following the full course of treatments, I am without any pain and working out as usual. For me finding Prolotherpay not only fixed my problem but helped me avoid surgery.</p>\r\n<p>Thanks Dr Fields! <br>\r\n<br>\r\nColin , 60 yo CEO, Kurgan-Cheviot <br>\r\nMass Production Jewelry Business</p>\r\n<p><strong>Foot </strong></p>\r\n<p>I came to see Dr Peter Fields basically as my \"last resort.\" <br>\r\nI had pain in my left foot for well over 6 years. <br>\r\nI am a runner - not world class or even a competitive runner, but I LOVE to run - running is my passion. I had reached a point where I couldn\'t run a half a mile without bursting into tears from the pain! And I have been known to have a pretty high pain tolerance. I had run 3 marathons and now I couldn\'t run a mile.</p>\r\n<p>I had seen numerous orthopedic surgeons…… and not one doctor was able to help me. They couldn\'t find anything wrong with my foot- I think they thought I was nuts! But this pain was REAL and I couldn\'t run!</p>\r\n<p>I finally went to see my podiatrist – who gave me 3 options: <br>\r\nwrapping my foot for the rest of my life; surgery; or I could try Prolotherapy. Well, I opted to try Prolotherapy. What could it hurt. I couldn\'t afford to take 6 months off for foot surgery so Prolotherapy was my last option.</p>\r\n<p><strong><a name=\"Penny\"></a>WOW is all I can say!</strong></p>\r\n<p>I have my running back! Prolotherapy and Dr Fields gave me back my running! <br>\r\nRunning brings me peace, joy and happiness! I can run and I run PAIN FREE!!</p>\r\n<p>I can\'t tell you how happy this has made me! I thought I would have to quit running! <br>\r\nBut I didn\'t! I came to see Dr Fields…and it was the best thing I ever did! <br>\r\nI had approximately 8 treatments on my left foot with AMAZING results. <br>\r\nI am pain free now! To me it\'s a miracle! <br>\r\nIt\'s been a huge transition: crying after a half a mile to running half marathons again, and maybe another marathon down the road!</p>\r\n<p>Dr Fields gave me back my running! <br>\r\nThank you so very much!</p>\r\n<p>Penny 44 yo<br>\r\nCamera Assistant in the Film Industry<br>\r\nHalf and Full Marathon Runner and a Wannabe Triathlete!</p>\r\n<p style=\"text-align: center;\">\r\n<a href=\"/Contact-Dr-Fields\" class=\"secondaryButton bglight\"><em class=\"fa fa-phone\"></em>&nbsp;&nbsp;Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><strong><a name=\"Amy\"></a>S.I Joint/hip </strong></p>\r\n<p>I just thought I would drop you a quick note to thank you for the time and effort you took with me to make sure that I got the proper treatment for my SI joint/hip issue. After months of visits to an orthopedic doctor, physical therapy, chiropractic adjustments and time off from running and riding, nothing was helping my injury. As a very athletic person, this was very upsetting and frustrating.</p>\r\n<p>When it was suggested I try Prolotherapy, I booked an appointment in hopes something would work (after Googling the treatment to see what I could learn!). I want you to know how much it meant to me that you took so much time to learn about the history of my injury, my training and overall health. It was really great to have someone answer ALL of my questions about the treatment, advise me about what I could do training wise and what to expect over the course of the treatment. Five treatments later I am thrilled to tell you that my injury and pain has all but disappeared. Just three weeks ago, I completed a half-Ironman triathlon in Sonoma, something that seemed impossible earlier in the season.</p>\r\n<p>The Prolotherapy certainly worked very well, but I attribute my recovery to more than just the treatment. It was concern, caring and skill as a doctor and chiropractor that helped me get back to what I love…running, riding and swimming.<br>\r\nThanks again for what you do.<br>\r\nWith my best,</p>\r\n<p>Amy 36 yo<br>\r\nVice President of Development <br>\r\nArthritis Foundation of America/Southern California Chapter<br>\r\nMember of the Los Angeles Triathlon Club</p>\r\n<p><strong><a name=\"Geri\"></a>Ankle</strong></p>\r\n<p>As they say, getting older is not for sissies! In 2006, I broke my right ankle (yes, in a stupid accident), and was in a cast for the requisite 6 weeks. I was turned loose to recover on my own by using it normally, or as normally as I could. Even though it had been a relatively minor break, it took about one year for me to stop limping and \"remembering\" the break with every painful step that I took.</p>\r\n<p>In 2008, I had a significantly more serious dislocation of my left ankle from another stupid accident. The pain in this one was excruciating.</p>\r\n<p>Six more weeks in a cast, then six weeks of physical therapy. <br>\r\nThe pain was still present; I wondered if my pain would again last for a year or more (as many of the \'medical\' websites state is the case with a sub-talar dislocation). I then began seeing Dr. Peter Fields to receive prolotherapy treatments for my aching left ankle.</p>\r\n<p>Within five treatments, my pain was gone or mostly gone! <br>\r\nI know that the prolotherapy helped me to heal faster and stronger. <br>\r\nToday, I occasionally get a twinge in the area but is nothing like the \"every step\" pain that I had experienced with my previous injury.</p>\r\n<p>I credit the prolotherapy and Dr. Fields\' deft application to my recovery. <br>\r\nNext, I am going to try to remember to stop having stupid accidents! <br>\r\nThanks, again, Dr. Fields</p>\r\n<p>Geri 53 yo MHROD, CPT, CPLP<br>\r\nPerformance Consulting and Organization Development</p>\r\n<p><strong><a name=\"Nathania\"></a>Rib/Chest Wall Pain</strong></p>\r\n<p>For seven years I have had rib/chest wall pain. <br>\r\nBefore I started treatment with Dr Fields, the pain would come on about once every month; debilitating pain that even with pain medicines would keep me housebound and curled up on the couch for two to three days at time.</p>\r\n<p>I thought that I had tried everything including regular chiropractic visits, anti-inflammatory medicine, pain medicine and more to get rid of the pain. <br>\r\nI am a very active and physically fit person who goes to the gym 5- 6 times a week.<br>\r\nThis was ruining my life.</p>\r\n<p>I wanted to let you know that as of now (as of our last treatment), I am pain-free and fully able to enjoy life again!</p>\r\n<p>In 5 short sessions, you turned me from a skeptic into a believer and I can\'t thank you enough.What you do over there is nothing short of pure magic and I believe, believe, BELIEVE!!</p>\r\n<p>Prolotherapy has changed my life and eradicated 7 years of constant pain and you are and will remain the shining star who has given me my life back.</p>\r\n<p>Thank you for everything and I will continue to refer anyone and everyone who I believe could benefit from this treatment.</p>\r\n<p>Thanks again and keep up the good work- you are doing something amazing for people who are desperate and exhausted about their situations and I can\'t thank you enough.</p>\r\n<p>Nathania, 27 years old</p>\r\n<p style=\"text-align: center;\">\r\n<a href=\"/Contact-Dr-Fields\" class=\"secondaryButton bglight\"><em class=\"fa fa-phone\"></em>&nbsp;&nbsp;Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><strong><a name=\"Mrs\"></a>Shoulder</strong></p>\r\n<p>I am not a medical doctor. However, I am a Clinical Laboratory Scientist (CLS), with a strong educational background in body mechanics. I am also an amateur triathlete. I injured a ligament in my right arm during training. This created a constant nagging pain my shoulder.</p>\r\n<p>I thought I was just \"stuck with it\", as I happened to be over 50, and would have to tolerate this pain due to my age. No matter what I did, the arm just didn\'t seem to get better.</p>\r\n<p>I read about Prolotherapy and did some research on it. I went to see Dr. Fields to get Prolotherapy treatments. After five treatments over four months, the pain in shoulder was completely eliminated. From my personal experience, Prolotherapy is a viable way to treat injured tendons and ligaments. The bottom line: either choose to use healthy, relatively safe alternative procedures like Prolotherapy. Or get expensive MRI\'s that miss 50% of injuries, have surgery and/or take pain-killers in order to \"get by\".</p>\r\n<p>Prolotherapy treatment is not an overnight cure. But what are a few days of discomfort to promote healing versus a lifetime of chronic pain? <br>\r\nThis was a no-brainer for me</p>\r\n<p>Sincerely,<br>\r\nMary, B.S., CLS 51 yo <br>\r\nMember of the Los Angeles Triathlon Club</p>\r\n<p><strong><a name=\"Jane\"></a>Knee</strong></p>\r\n<p>I started Prolotherapy treatments in December for a problem with my left knee. I could barely bend it and had a lot of pain. From the first treatment, I saw improvement. When you were finished, I could bend the knee so much more and without pain. And even after 9 months post treatment, I\'m continually improving the amount I can bend it! But that\'s not all. After the left knee was better, you then started treatment on my right knee for a re-injury of an old torn meniscus. After two Prolotherapy treatments, the pain is gone! It happened so fast, I forgot to thank you. So, here it is Dr. Fields - Thank You so much for giving me my knee\'s back!</p>\r\n<p>Best Regards,<br>\r\n<br>\r\nJane , 62 years old<br>\r\nCertified Professional Redesigner<br>\r\nReDesign LA!</p>\r\n<p><strong><a name=\"Lois\"></a>Knee</strong></p>\r\n<p>I had been having pain and swelling in both knees due to Arthritis. I could not tolerate pain pills. My daughter referred me to Dr. Peter Fields for Prolotherapy treatment. On my first visit to his office in Santa Monica, he examined my knees and explained the procedure to me. I had an appointment on December 1, 2006 for my first Prolotherapy injections on my right knee, alternating with right and left knee a week apart. <br>\r\nAfter the final treatments ended I am still without all the pain and have more muscle strength in my legs.</p>\r\n<p>Lois - 72 yo</p>\r\n<p style=\"text-align: center;\">\r\n<a href=\"/Contact-Dr-Fields\" class=\"secondaryButton bglight\"><em class=\"fa fa-phone\"></em>&nbsp;&nbsp;Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><strong><a name=\"Katherine\"></a>Toes</strong></p>\r\n<p>In January 2007, I went to see Dr. Fields on a recommendation from my podiatrist. I was training for the Los Angeles Marathon, and I was having really bad pain in the second toe of my left foot. I had bunion surgery ten years ago that was causing the problem in my foot. I was unable to complete a run over 13 miles and my foot would hurt for days after attempting a long run.</p>\r\n<p>On Dr. Fields advice, I had four Prolotherapy treatments prior to the marathon. On March 4, 2007, I proudly completed my first marathon. I had another four treatments after the marathon, my foot no longer hurts and I am still running today. My treatments took place in a span of about 6 months. Dr. Fields is an athlete and I think this made a difference in how he treated me and my foot. He never discouraged me from running the marathon. In addition to the help with my foot, Dr.Fields helped me with vitamins and supplements to help my overall health and performance. <br>\r\nI think Dr. Fields is great!!</p>\r\n<p>Katherine 46 yo<br>\r\nMarathon Runner and very active mom of two small children</p>\r\n<p><strong><a name=\"Sharon\"></a>Knee and Achilles Tendon</strong></p>\r\n<p>I am 68 years old and was enduring chronic pain from osteoarthritis in the knees and an old Achilles tendon injury. Because of the pain, I could not even move about the house without using my walker and was unable to stand long enough to do most of the things I wanted to do. I had been seeing an orthopedic surgeon and was about to undergo arthroscopic surgery on both knees.</p>\r\n<p>My husband had heard about prolotherapy, so we did a little research on it. <br>\r\nWe discovered Dr. Fields, and I made the decision to postpone the surgery and begin prolotherapy with him.</p>\r\n<p>I had a series of eight treatment sessions over a period of about nine months, during which Dr. Fields treated both knees and one Achilles tendon. The results have been remarkably positive!</p>\r\n<p>I am not completely pain free, but I can now move about the house and yard and do the chores I love to do, without the walker. My legs feel much stronger, with less pain, and I am very happy I did not get the surgery.</p>\r\n<p>We had to travel more than 60 miles one way for each treatment session with Dr. Fields, and it was well worth it. If you decide on prolotherapy, you probably cannot find a better or more professional practitioner than Dr. Peter Fields.</p>\r\n<p>Sharon, 68 yo</p>\r\n<p><strong><a name=\"Paul\"></a>Foot</strong></p>\r\n<p>I have been an avid runner for over 20 years and my t shirt collection and metals are something to see. I have run over 500 races, from marathons to 5K\'s. I have been lucky to be virtually injury free except for a pain in my left forefoot (metatarsal) area. I tried everything for the pain including seeing numerous doctors (podiatrists to sports medicine docs). I also tried three months of rest, multiple cortisone shots and many anti-inflammatory medicines. No matter what I did, the pain would come back whenever I would start running again. Then a friend asked me if I heard of Prolotherapy. I laughed and said \"No, but I\'ve tried just about everything else, what have I got to lose\". My friend gave me the web site for Peter A. Fields MD, DC, but even then I was a skeptic. After months of frustration, I finally decided to give Prolotherapy a try so I set up an appointment and went to see Dr Fields.</p>\r\n<p>Dr Fields and his staff are extremely nice and everything was explained thoroughly. It sounded too good to be true. With nothing to lose but the pain, I went for it. After about six treatments, I am almost back to 100%. I just completed my second half marathon, back to back 10-Ks and I am training for a full marathon. My T shirt and medal collect are growing again thanks to Dr Fields. Prolotherapy Works!!!!!</p>\r\n<p>Paul age 53<br>\r\nAvid runner and racer</p>\r\n<p style=\"text-align: center;\">\r\n<a href=\"/Contact-Dr-Fields\" class=\"secondaryButton bglight\"><em class=\"fa fa-phone\"></em>&nbsp;&nbsp;Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em></p>\r\n','Written Testimonials','','inherit','closed','closed','','1012-revision-v1','','','2019-06-11 04:32:56','2019-06-11 04:32:56','',1012,'https://www.drfields.com/1012-revision-v1/',0,'revision','',0),(1017,8,'2019-06-19 05:48:30','2019-06-19 05:48:30','<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Video Testimonials</a></p>\n<p><strong><a name=\"Mindy\"></a>Elbow</strong></p>\n<p>I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.  It got so bad that I couldn\'t do everyday things, let alone hold a tennis racket.  After a year of pain, not playing tennis and numerous treatments with both a chiropractor and orthopedist, I didn\'t have much faith that anything would help.  My chiropractor referred me to Dr Fields.  Dr. Fields patiently explained how and why prolotherapy will work.  I figured that I had tried everything else and why not give it a try.  I had both Dextrose and PRP prolotherapy to try and fix my elbow.  I can happily say I am mostly pain free and back to playing tennis 4 to 5 days a week.  I am so happy you gave me my game back.</p>\n<p>Thanks for everything,<br>\nMindy</p>\n<p><strong><a name=\"Robert\"></a>Shoulder </strong></p>\n<p>After two orthopedic surgeons told me that my rotator cuff was too atrophied and weak for surgical repair, I discovered Prolotherapy. I researched the procedure and decided to try it. I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else. After only 5 treatments, I am back to multiple sets of 200lbs. on the bench press and push-ups which really hurt before. It took 15 weeks as opposed to nine months of recovery for rotator cuff surgery and I have no pain whatsoever.</p>\n<p>Robert L. Miller 69 yo<br>\nReal Estate Developer<br>\nFormer - US Navy Lieutenant J.G</p>\n<p style=\"text-align: center;\">\n<a href=\"/Contact-Dr-Fields\" class=\"btn-more\"><em class=\"fa fa-phone\"></em>&nbsp;&nbsp;Schedule Your Appointment Today!</a>\n</p>\n<p><strong><a name=\"Colin\"></a>Elbow</strong></p>\n<p>I am very active and work out four to five days a week. I had experienced elbow pain for more than one year. I finally went to see a leading orthopedic surgeon who specializes in sports medicine. During the next 14 months, I was given three cortisone injections and had six acupuncture/acupressure treatments. I was also given anti-inflammatory medicine as well. After all of this, there was no discernable difference. I was unable to work out and was possibly looking at elbow reconstruction.</p>\n<p>I was then was referred to Peter A. Fields, MD, DC by my chiropractor. After a thorough examination, Dr Fields decided that Prolotherapy would be beneficial for me. After only two or three treatments, I was able to start getting back to working out and lifting. Following the full course of treatments, I am without any pain and working out as usual. For me finding Prolotherpay not only fixed my problem but helped me avoid surgery.</p>\n<p>Thanks Dr Fields! <br>\n<br>\nColin , 60 yo CEO, Kurgan-Cheviot <br>\nMass Production Jewelry Business</p>\n<p><strong>Foot </strong></p>\n<p>I came to see Dr Peter Fields basically as my \"last resort.\" <br>\nI had pain in my left foot for well over 6 years. <br>\nI am a runner - not world class or even a competitive runner, but I LOVE to run - running is my passion. I had reached a point where I couldn\'t run a half a mile without bursting into tears from the pain! And I have been known to have a pretty high pain tolerance. I had run 3 marathons and now I couldn\'t run a mile.</p>\n<p>I had seen numerous orthopedic surgeons…… and not one doctor was able to help me. They couldn\'t find anything wrong with my foot- I think they thought I was nuts! But this pain was REAL and I couldn\'t run!</p>\n<p>I finally went to see my podiatrist – who gave me 3 options: <br>\nwrapping my foot for the rest of my life; surgery; or I could try Prolotherapy. Well, I opted to try Prolotherapy. What could it hurt. I couldn\'t afford to take 6 months off for foot surgery so Prolotherapy was my last option.</p>\n<p><strong><a name=\"Penny\"></a>WOW is all I can say!</strong></p>\n<p>I have my running back! Prolotherapy and Dr Fields gave me back my running! <br>\nRunning brings me peace, joy and happiness! I can run and I run PAIN FREE!!</p>\n<p>I can\'t tell you how happy this has made me! I thought I would have to quit running! <br>\nBut I didn\'t! I came to see Dr Fields…and it was the best thing I ever did! <br>\nI had approximately 8 treatments on my left foot with AMAZING results. <br>\nI am pain free now! To me it\'s a miracle! <br>\nIt\'s been a huge transition: crying after a half a mile to running half marathons again, and maybe another marathon down the road!</p>\n<p>Dr Fields gave me back my running! <br>\nThank you so very much!</p>\n<p>Penny 44 yo<br>\nCamera Assistant in the Film Industry<br>\nHalf and Full Marathon Runner and a Wannabe Triathlete!</p>\n<p style=\"text-align: center;\">\n<a class=\"buttonlink\" href=\"https://www.drfields.com\">  Schedule Your Appointment Today!</a>\n</p>\n<p><strong><a name=\"Amy\"></a>S.I Joint/hip </strong></p>\n<p>I just thought I would drop you a quick note to thank you for the time and effort you took with me to make sure that I got the proper treatment for my SI joint/hip issue. After months of visits to an orthopedic doctor, physical therapy, chiropractic adjustments and time off from running and riding, nothing was helping my injury. As a very athletic person, this was very upsetting and frustrating.</p>\n<p>When it was suggested I try Prolotherapy, I booked an appointment in hopes something would work (after Googling the treatment to see what I could learn!). I want you to know how much it meant to me that you took so much time to learn about the history of my injury, my training and overall health. It was really great to have someone answer ALL of my questions about the treatment, advise me about what I could do training wise and what to expect over the course of the treatment. Five treatments later I am thrilled to tell you that my injury and pain has all but disappeared. Just three weeks ago, I completed a half-Ironman triathlon in Sonoma, something that seemed impossible earlier in the season.</p>\n<p>The Prolotherapy certainly worked very well, but I attribute my recovery to more than just the treatment. It was concern, caring and skill as a doctor and chiropractor that helped me get back to what I love…running, riding and swimming.<br>\nThanks again for what you do.<br>\nWith my best,</p>\n<p>Amy 36 yo<br>\nVice President of Development <br>\nArthritis Foundation of America/Southern California Chapter<br>\nMember of the Los Angeles Triathlon Club</p>\n<p><strong><a name=\"Geri\"></a>Ankle</strong></p>\n<p>As they say, getting older is not for sissies! In 2006, I broke my right ankle (yes, in a stupid accident), and was in a cast for the requisite 6 weeks. I was turned loose to recover on my own by using it normally, or as normally as I could. Even though it had been a relatively minor break, it took about one year for me to stop limping and \"remembering\" the break with every painful step that I took.</p>\n<p>In 2008, I had a significantly more serious dislocation of my left ankle from another stupid accident. The pain in this one was excruciating.</p>\n<p>Six more weeks in a cast, then six weeks of physical therapy. <br>\nThe pain was still present; I wondered if my pain would again last for a year or more (as many of the \'medical\' websites state is the case with a sub-talar dislocation). I then began seeing Dr. Peter Fields to receive prolotherapy treatments for my aching left ankle.</p>\n<p>Within five treatments, my pain was gone or mostly gone! <br>\nI know that the prolotherapy helped me to heal faster and stronger. <br>\nToday, I occasionally get a twinge in the area but is nothing like the \"every step\" pain that I had experienced with my previous injury.</p>\n<p>I credit the prolotherapy and Dr. Fields\' deft application to my recovery. <br>\nNext, I am going to try to remember to stop having stupid accidents! <br>\nThanks, again, Dr. Fields</p>\n<p>Geri 53 yo MHROD, CPT, CPLP<br>\nPerformance Consulting and Organization Development</p>\n<p><strong><a name=\"Nathania\"></a>Rib/Chest Wall Pain</strong></p>\n<p>For seven years I have had rib/chest wall pain. <br>\nBefore I started treatment with Dr Fields, the pain would come on about once every month; debilitating pain that even with pain medicines would keep me housebound and curled up on the couch for two to three days at time.</p>\n<p>I thought that I had tried everything including regular chiropractic visits, anti-inflammatory medicine, pain medicine and more to get rid of the pain. <br>\nI am a very active and physically fit person who goes to the gym 5- 6 times a week.<br>\nThis was ruining my life.</p>\n<p>I wanted to let you know that as of now (as of our last treatment), I am pain-free and fully able to enjoy life again!</p>\n<p>In 5 short sessions, you turned me from a skeptic into a believer and I can\'t thank you enough.What you do over there is nothing short of pure magic and I believe, believe, BELIEVE!!</p>\n<p>Prolotherapy has changed my life and eradicated 7 years of constant pain and you are and will remain the shining star who has given me my life back.</p>\n<p>Thank you for everything and I will continue to refer anyone and everyone who I believe could benefit from this treatment.</p>\n<p>Thanks again and keep up the good work- you are doing something amazing for people who are desperate and exhausted about their situations and I can\'t thank you enough.</p>\n<p>Nathania, 27 years old</p>\n<p style=\"text-align: center;\">\n<a class=\"buttonlink\" href=\"https://www.drfields.com\">  Schedule Your Appointment Today!</a>\n</p>\n<p><strong><a name=\"Mrs\"></a>Shoulder</strong></p>\n<p>I am not a medical doctor. However, I am a Clinical Laboratory Scientist (CLS), with a strong educational background in body mechanics. I am also an amateur triathlete. I injured a ligament in my right arm during training. This created a constant nagging pain my shoulder.</p>\n<p>I thought I was just \"stuck with it\", as I happened to be over 50, and would have to tolerate this pain due to my age. No matter what I did, the arm just didn\'t seem to get better.</p>\n<p>I read about Prolotherapy and did some research on it. I went to see Dr. Fields to get Prolotherapy treatments. After five treatments over four months, the pain in shoulder was completely eliminated. From my personal experience, Prolotherapy is a viable way to treat injured tendons and ligaments. The bottom line: either choose to use healthy, relatively safe alternative procedures like Prolotherapy. Or get expensive MRI\'s that miss 50% of injuries, have surgery and/or take pain-killers in order to \"get by\".</p>\n<p>Prolotherapy treatment is not an overnight cure. But what are a few days of discomfort to promote healing versus a lifetime of chronic pain? <br>\nThis was a no-brainer for me</p>\n<p>Sincerely,<br>\nMary, B.S., CLS 51 yo <br>\nMember of the Los Angeles Triathlon Club</p>\n<p><strong><a name=\"Jane\"></a>Knee</strong></p>\n<p>I started Prolotherapy treatments in December for a problem with my left knee. I could barely bend it and had a lot of pain. From the first treatment, I saw improvement. When you were finished, I could bend the knee so much more and without pain. And even after 9 months post treatment, I\'m continually improving the amount I can bend it! But that\'s not all. After the left knee was better, you then started treatment on my right knee for a re-injury of an old torn meniscus. After two Prolotherapy treatments, the pain is gone! It happened so fast, I forgot to thank you. So, here it is Dr. Fields - Thank You so much for giving me my knee\'s back!</p>\n<p>Best Regards,<br>\n<br>\nJane , 62 years old<br>\nCertified Professional Redesigner<br>\nReDesign LA!</p>\n<p><strong><a name=\"Lois\"></a>Knee</strong></p>\n<p>I had been having pain and swelling in both knees due to Arthritis. I could not tolerate pain pills. My daughter referred me to Dr. Peter Fields for Prolotherapy treatment. On my first visit to his office in Santa Monica, he examined my knees and explained the procedure to me. I had an appointment on December 1, 2006 for my first Prolotherapy injections on my right knee, alternating with right and left knee a week apart. <br>\nAfter the final treatments ended I am still without all the pain and have more muscle strength in my legs.</p>\n<p>Lois - 72 yo</p>\n<p style=\"text-align: center;\">\n<a class=\"buttonlink\" href=\"https://www.drfields.com\">  Schedule Your Appointment Today!</a>\n</p>\n<p><strong><a name=\"Katherine\"></a>Toes</strong></p>\n<p>In January 2007, I went to see Dr. Fields on a recommendation from my podiatrist. I was training for the Los Angeles Marathon, and I was having really bad pain in the second toe of my left foot. I had bunion surgery ten years ago that was causing the problem in my foot. I was unable to complete a run over 13 miles and my foot would hurt for days after attempting a long run.</p>\n<p>On Dr. Fields advice, I had four Prolotherapy treatments prior to the marathon. On March 4, 2007, I proudly completed my first marathon. I had another four treatments after the marathon, my foot no longer hurts and I am still running today. My treatments took place in a span of about 6 months. Dr. Fields is an athlete and I think this made a difference in how he treated me and my foot. He never discouraged me from running the marathon. In addition to the help with my foot, Dr.Fields helped me with vitamins and supplements to help my overall health and performance. <br>\nI think Dr. Fields is great!!</p>\n<p>Katherine 46 yo<br>\nMarathon Runner and very active mom of two small children</p>\n<p><strong><a name=\"Sharon\"></a>Knee and Achilles Tendon</strong></p>\n<p>I am 68 years old and was enduring chronic pain from osteoarthritis in the knees and an old Achilles tendon injury. Because of the pain, I could not even move about the house without using my walker and was unable to stand long enough to do most of the things I wanted to do. I had been seeing an orthopedic surgeon and was about to undergo arthroscopic surgery on both knees.</p>\n<p>My husband had heard about prolotherapy, so we did a little research on it. <br>\nWe discovered Dr. Fields, and I made the decision to postpone the surgery and begin prolotherapy with him.</p>\n<p>I had a series of eight treatment sessions over a period of about nine months, during which Dr. Fields treated both knees and one Achilles tendon. The results have been remarkably positive!</p>\n<p>I am not completely pain free, but I can now move about the house and yard and do the chores I love to do, without the walker. My legs feel much stronger, with less pain, and I am very happy I did not get the surgery.</p>\n<p>We had to travel more than 60 miles one way for each treatment session with Dr. Fields, and it was well worth it. If you decide on prolotherapy, you probably cannot find a better or more professional practitioner than Dr. Peter Fields.</p>\n<p>Sharon, 68 yo</p>\n<p><strong><a name=\"Paul\"></a>Foot</strong></p>\n<p>I have been an avid runner for over 20 years and my t shirt collection and metals are something to see. I have run over 500 races, from marathons to 5K\'s. I have been lucky to be virtually injury free except for a pain in my left forefoot (metatarsal) area. I tried everything for the pain including seeing numerous doctors (podiatrists to sports medicine docs). I also tried three months of rest, multiple cortisone shots and many anti-inflammatory medicines. No matter what I did, the pain would come back whenever I would start running again. Then a friend asked me if I heard of Prolotherapy. I laughed and said \"No, but I\'ve tried just about everything else, what have I got to lose\". My friend gave me the web site for Peter A. Fields MD, DC, but even then I was a skeptic. After months of frustration, I finally decided to give Prolotherapy a try so I set up an appointment and went to see Dr Fields.</p>\n<p>Dr Fields and his staff are extremely nice and everything was explained thoroughly. It sounded too good to be true. With nothing to lose but the pain, I went for it. After about six treatments, I am almost back to 100%. I just completed my second half marathon, back to back 10-Ks and I am training for a full marathon. My T shirt and medal collect are growing again thanks to Dr Fields. Prolotherapy Works!!!!!</p>\n<p>Paul age 53<br>\nAvid runner and racer</p>\n<p style=\"text-align: center;\">\n<a class=\"buttonlink\" href=\"https://www.drfields.com\">  Schedule Your Appointment Today!</a>\n</p>\n<p><em>*The testimonials reflect the real-life experiences of individuals who used our products and/or services. However, individual results may vary.</em></p>\n','Written Testimonials','','inherit','closed','closed','','1012-autosave-v1','','','2019-06-19 05:48:30','2019-06-19 05:48:30','',1012,'https://www.drfields.com/1012-autosave-v1/',0,'revision','',0),(1019,8,'2019-06-11 04:36:07','2019-06-11 04:36:07','\r\n<p style=\"text-align: center;\"><a href=\"/Testimonials/Video-Testimonials\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Video Testimonials</a></p>\r\n<p><strong><a name=\"Mindy\"></a>Elbow</strong></p>\r\n<p>I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.  It got so bad that I couldn\'t do everyday things, let alone hold a tennis racket.  After a year of pain, not playing tennis and numerous treatments with both a chiropractor and orthopedist, I didn\'t have much faith that anything would help.  My chiropractor referred me to Dr Fields.  Dr. Fields patiently explained how and why prolotherapy will work.  I figured that I had tried everything else and why not give it a try.  I had both Dextrose and PRP prolotherapy to try and fix my elbow.  I can happily say I am mostly pain free and back to playing tennis 4 to 5 days a week.  I am so happy you gave me my game back.</p>\r\n<p>Thanks for everything,<br>\r\nMindy</p>\r\n<p><strong><a name=\"Robert\"></a>Shoulder </strong></p>\r\n<p>After two orthopedic surgeons told me that my rotator cuff was too atrophied and weak for surgical repair, I discovered Prolotherapy. I researched the procedure and decided to try it. I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else. After only 5 treatments, I am back to multiple sets of 200lbs. on the bench press and push-ups which really hurt before. It took 15 weeks as opposed to nine months of recovery for rotator cuff surgery and I have no pain whatsoever.</p>\r\n<p>Robert L. Miller 69 yo<br>\r\nReal Estate Developer<br>\r\nFormer - US Navy Lieutenant J.G</p>\r\n<p style=\"text-align: center;\">\r\n<a href=\"/Contact-Dr-Fields\" class=\"btn-more\"><em class=\"fa fa-phone\"></em>&nbsp;&nbsp;Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><strong><a name=\"Colin\"></a>Elbow</strong></p>\r\n<p>I am very active and work out four to five days a week. I had experienced elbow pain for more than one year. I finally went to see a leading orthopedic surgeon who specializes in sports medicine. During the next 14 months, I was given three cortisone injections and had six acupuncture/acupressure treatments. I was also given anti-inflammatory medicine as well. After all of this, there was no discernable difference. I was unable to work out and was possibly looking at elbow reconstruction.</p>\r\n<p>I was then was referred to Peter A. Fields, MD, DC by my chiropractor. After a thorough examination, Dr Fields decided that Prolotherapy would be beneficial for me. After only two or three treatments, I was able to start getting back to working out and lifting. Following the full course of treatments, I am without any pain and working out as usual. For me finding Prolotherpay not only fixed my problem but helped me avoid surgery.</p>\r\n<p>Thanks Dr Fields! <br>\r\n<br>\r\nColin , 60 yo CEO, Kurgan-Cheviot <br>\r\nMass Production Jewelry Business</p>\r\n<p><strong>Foot </strong></p>\r\n<p>I came to see Dr Peter Fields basically as my \"last resort.\" <br>\r\nI had pain in my left foot for well over 6 years. <br>\r\nI am a runner - not world class or even a competitive runner, but I LOVE to run - running is my passion. I had reached a point where I couldn\'t run a half a mile without bursting into tears from the pain! And I have been known to have a pretty high pain tolerance. I had run 3 marathons and now I couldn\'t run a mile.</p>\r\n<p>I had seen numerous orthopedic surgeons…… and not one doctor was able to help me. They couldn\'t find anything wrong with my foot- I think they thought I was nuts! But this pain was REAL and I couldn\'t run!</p>\r\n<p>I finally went to see my podiatrist – who gave me 3 options: <br>\r\nwrapping my foot for the rest of my life; surgery; or I could try Prolotherapy. Well, I opted to try Prolotherapy. What could it hurt. I couldn\'t afford to take 6 months off for foot surgery so Prolotherapy was my last option.</p>\r\n<p><strong><a name=\"Penny\"></a>WOW is all I can say!</strong></p>\r\n<p>I have my running back! Prolotherapy and Dr Fields gave me back my running! <br>\r\nRunning brings me peace, joy and happiness! I can run and I run PAIN FREE!!</p>\r\n<p>I can\'t tell you how happy this has made me! I thought I would have to quit running! <br>\r\nBut I didn\'t! I came to see Dr Fields…and it was the best thing I ever did! <br>\r\nI had approximately 8 treatments on my left foot with AMAZING results. <br>\r\nI am pain free now! To me it\'s a miracle! <br>\r\nIt\'s been a huge transition: crying after a half a mile to running half marathons again, and maybe another marathon down the road!</p>\r\n<p>Dr Fields gave me back my running! <br>\r\nThank you so very much!</p>\r\n<p>Penny 44 yo<br>\r\nCamera Assistant in the Film Industry<br>\r\nHalf and Full Marathon Runner and a Wannabe Triathlete!</p>\r\n<p style=\"text-align: center;\">\r\n<a href=\"/Contact-Dr-Fields\" class=\"btn-more\"><em class=\"fa fa-phone\"></em>&nbsp;&nbsp;Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><strong><a name=\"Amy\"></a>S.I Joint/hip </strong></p>\r\n<p>I just thought I would drop you a quick note to thank you for the time and effort you took with me to make sure that I got the proper treatment for my SI joint/hip issue. After months of visits to an orthopedic doctor, physical therapy, chiropractic adjustments and time off from running and riding, nothing was helping my injury. As a very athletic person, this was very upsetting and frustrating.</p>\r\n<p>When it was suggested I try Prolotherapy, I booked an appointment in hopes something would work (after Googling the treatment to see what I could learn!). I want you to know how much it meant to me that you took so much time to learn about the history of my injury, my training and overall health. It was really great to have someone answer ALL of my questions about the treatment, advise me about what I could do training wise and what to expect over the course of the treatment. Five treatments later I am thrilled to tell you that my injury and pain has all but disappeared. Just three weeks ago, I completed a half-Ironman triathlon in Sonoma, something that seemed impossible earlier in the season.</p>\r\n<p>The Prolotherapy certainly worked very well, but I attribute my recovery to more than just the treatment. It was concern, caring and skill as a doctor and chiropractor that helped me get back to what I love…running, riding and swimming.<br>\r\nThanks again for what you do.<br>\r\nWith my best,</p>\r\n<p>Amy 36 yo<br>\r\nVice President of Development <br>\r\nArthritis Foundation of America/Southern California Chapter<br>\r\nMember of the Los Angeles Triathlon Club</p>\r\n<p><strong><a name=\"Geri\"></a>Ankle</strong></p>\r\n<p>As they say, getting older is not for sissies! In 2006, I broke my right ankle (yes, in a stupid accident), and was in a cast for the requisite 6 weeks. I was turned loose to recover on my own by using it normally, or as normally as I could. Even though it had been a relatively minor break, it took about one year for me to stop limping and \"remembering\" the break with every painful step that I took.</p>\r\n<p>In 2008, I had a significantly more serious dislocation of my left ankle from another stupid accident. The pain in this one was excruciating.</p>\r\n<p>Six more weeks in a cast, then six weeks of physical therapy. <br>\r\nThe pain was still present; I wondered if my pain would again last for a year or more (as many of the \'medical\' websites state is the case with a sub-talar dislocation). I then began seeing Dr. Peter Fields to receive prolotherapy treatments for my aching left ankle.</p>\r\n<p>Within five treatments, my pain was gone or mostly gone! <br>\r\nI know that the prolotherapy helped me to heal faster and stronger. <br>\r\nToday, I occasionally get a twinge in the area but is nothing like the \"every step\" pain that I had experienced with my previous injury.</p>\r\n<p>I credit the prolotherapy and Dr. Fields\' deft application to my recovery. <br>\r\nNext, I am going to try to remember to stop having stupid accidents! <br>\r\nThanks, again, Dr. Fields</p>\r\n<p>Geri 53 yo MHROD, CPT, CPLP<br>\r\nPerformance Consulting and Organization Development</p>\r\n<p><strong><a name=\"Nathania\"></a>Rib/Chest Wall Pain</strong></p>\r\n<p>For seven years I have had rib/chest wall pain. <br>\r\nBefore I started treatment with Dr Fields, the pain would come on about once every month; debilitating pain that even with pain medicines would keep me housebound and curled up on the couch for two to three days at time.</p>\r\n<p>I thought that I had tried everything including regular chiropractic visits, anti-inflammatory medicine, pain medicine and more to get rid of the pain. <br>\r\nI am a very active and physically fit person who goes to the gym 5- 6 times a week.<br>\r\nThis was ruining my life.</p>\r\n<p>I wanted to let you know that as of now (as of our last treatment), I am pain-free and fully able to enjoy life again!</p>\r\n<p>In 5 short sessions, you turned me from a skeptic into a believer and I can\'t thank you enough.What you do over there is nothing short of pure magic and I believe, believe, BELIEVE!!</p>\r\n<p>Prolotherapy has changed my life and eradicated 7 years of constant pain and you are and will remain the shining star who has given me my life back.</p>\r\n<p>Thank you for everything and I will continue to refer anyone and everyone who I believe could benefit from this treatment.</p>\r\n<p>Thanks again and keep up the good work- you are doing something amazing for people who are desperate and exhausted about their situations and I can\'t thank you enough.</p>\r\n<p>Nathania, 27 years old</p>\r\n<p style=\"text-align: center;\">\r\n<a href=\"/Contact-Dr-Fields\" class=\"btn-more\"><em class=\"fa fa-phone\"></em>&nbsp;&nbsp;Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><strong><a name=\"Mrs\"></a>Shoulder</strong></p>\r\n<p>I am not a medical doctor. However, I am a Clinical Laboratory Scientist (CLS), with a strong educational background in body mechanics. I am also an amateur triathlete. I injured a ligament in my right arm during training. This created a constant nagging pain my shoulder.</p>\r\n<p>I thought I was just \"stuck with it\", as I happened to be over 50, and would have to tolerate this pain due to my age. No matter what I did, the arm just didn\'t seem to get better.</p>\r\n<p>I read about Prolotherapy and did some research on it. I went to see Dr. Fields to get Prolotherapy treatments. After five treatments over four months, the pain in shoulder was completely eliminated. From my personal experience, Prolotherapy is a viable way to treat injured tendons and ligaments. The bottom line: either choose to use healthy, relatively safe alternative procedures like Prolotherapy. Or get expensive MRI\'s that miss 50% of injuries, have surgery and/or take pain-killers in order to \"get by\".</p>\r\n<p>Prolotherapy treatment is not an overnight cure. But what are a few days of discomfort to promote healing versus a lifetime of chronic pain? <br>\r\nThis was a no-brainer for me</p>\r\n<p>Sincerely,<br>\r\nMary, B.S., CLS 51 yo <br>\r\nMember of the Los Angeles Triathlon Club</p>\r\n<p><strong><a name=\"Jane\"></a>Knee</strong></p>\r\n<p>I started Prolotherapy treatments in December for a problem with my left knee. I could barely bend it and had a lot of pain. From the first treatment, I saw improvement. When you were finished, I could bend the knee so much more and without pain. And even after 9 months post treatment, I\'m continually improving the amount I can bend it! But that\'s not all. After the left knee was better, you then started treatment on my right knee for a re-injury of an old torn meniscus. After two Prolotherapy treatments, the pain is gone! It happened so fast, I forgot to thank you. So, here it is Dr. Fields - Thank You so much for giving me my knee\'s back!</p>\r\n<p>Best Regards,<br>\r\n<br>\r\nJane , 62 years old<br>\r\nCertified Professional Redesigner<br>\r\nReDesign LA!</p>\r\n<p><strong><a name=\"Lois\"></a>Knee</strong></p>\r\n<p>I had been having pain and swelling in both knees due to Arthritis. I could not tolerate pain pills. My daughter referred me to Dr. Peter Fields for Prolotherapy treatment. On my first visit to his office in Santa Monica, he examined my knees and explained the procedure to me. I had an appointment on December 1, 2006 for my first Prolotherapy injections on my right knee, alternating with right and left knee a week apart. <br>\r\nAfter the final treatments ended I am still without all the pain and have more muscle strength in my legs.</p>\r\n<p>Lois - 72 yo</p>\r\n<p style=\"text-align: center;\">\r\n<a href=\"/Contact-Dr-Fields\" class=\"btn-more\"><em class=\"fa fa-phone\"></em>&nbsp;&nbsp;Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><strong><a name=\"Katherine\"></a>Toes</strong></p>\r\n<p>In January 2007, I went to see Dr. Fields on a recommendation from my podiatrist. I was training for the Los Angeles Marathon, and I was having really bad pain in the second toe of my left foot. I had bunion surgery ten years ago that was causing the problem in my foot. I was unable to complete a run over 13 miles and my foot would hurt for days after attempting a long run.</p>\r\n<p>On Dr. Fields advice, I had four Prolotherapy treatments prior to the marathon. On March 4, 2007, I proudly completed my first marathon. I had another four treatments after the marathon, my foot no longer hurts and I am still running today. My treatments took place in a span of about 6 months. Dr. Fields is an athlete and I think this made a difference in how he treated me and my foot. He never discouraged me from running the marathon. In addition to the help with my foot, Dr.Fields helped me with vitamins and supplements to help my overall health and performance. <br>\r\nI think Dr. Fields is great!!</p>\r\n<p>Katherine 46 yo<br>\r\nMarathon Runner and very active mom of two small children</p>\r\n<p><strong><a name=\"Sharon\"></a>Knee and Achilles Tendon</strong></p>\r\n<p>I am 68 years old and was enduring chronic pain from osteoarthritis in the knees and an old Achilles tendon injury. Because of the pain, I could not even move about the house without using my walker and was unable to stand long enough to do most of the things I wanted to do. I had been seeing an orthopedic surgeon and was about to undergo arthroscopic surgery on both knees.</p>\r\n<p>My husband had heard about prolotherapy, so we did a little research on it. <br>\r\nWe discovered Dr. Fields, and I made the decision to postpone the surgery and begin prolotherapy with him.</p>\r\n<p>I had a series of eight treatment sessions over a period of about nine months, during which Dr. Fields treated both knees and one Achilles tendon. The results have been remarkably positive!</p>\r\n<p>I am not completely pain free, but I can now move about the house and yard and do the chores I love to do, without the walker. My legs feel much stronger, with less pain, and I am very happy I did not get the surgery.</p>\r\n<p>We had to travel more than 60 miles one way for each treatment session with Dr. Fields, and it was well worth it. If you decide on prolotherapy, you probably cannot find a better or more professional practitioner than Dr. Peter Fields.</p>\r\n<p>Sharon, 68 yo</p>\r\n<p><strong><a name=\"Paul\"></a>Foot</strong></p>\r\n<p>I have been an avid runner for over 20 years and my t shirt collection and metals are something to see. I have run over 500 races, from marathons to 5K\'s. I have been lucky to be virtually injury free except for a pain in my left forefoot (metatarsal) area. I tried everything for the pain including seeing numerous doctors (podiatrists to sports medicine docs). I also tried three months of rest, multiple cortisone shots and many anti-inflammatory medicines. No matter what I did, the pain would come back whenever I would start running again. Then a friend asked me if I heard of Prolotherapy. I laughed and said \"No, but I\'ve tried just about everything else, what have I got to lose\". My friend gave me the web site for Peter A. Fields MD, DC, but even then I was a skeptic. After months of frustration, I finally decided to give Prolotherapy a try so I set up an appointment and went to see Dr Fields.</p>\r\n<p>Dr Fields and his staff are extremely nice and everything was explained thoroughly. It sounded too good to be true. With nothing to lose but the pain, I went for it. After about six treatments, I am almost back to 100%. I just completed my second half marathon, back to back 10-Ks and I am training for a full marathon. My T shirt and medal collect are growing again thanks to Dr Fields. Prolotherapy Works!!!!!</p>\r\n<p>Paul age 53<br>\r\nAvid runner and racer</p>\r\n<p style=\"text-align: center;\">\r\n<a href=\"/Contact-Dr-Fields\" class=\"btn-more\"><em class=\"fa fa-phone\"></em>&nbsp;&nbsp;Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><em>*The testimonials reflect the real-life experiences of individuals who used our products and/or services. However, individual results may vary.</em></p>\r\n','Written Testimonials','','inherit','closed','closed','','1012-revision-v1','','','2019-06-11 04:36:07','2019-06-11 04:36:07','',1012,'https://www.drfields.com/1012-revision-v1/',0,'revision','',0),(1023,8,'2019-06-11 04:39:55','2019-06-11 04:39:55','&nbsp;\r\n\r\n<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"#\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n<h4>Video: What is Prolotherapy Treatment?</h4>\r\n<strong>video here</strong>\r\n<a class=\"buttonlink\" href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-11 04:39:55','2019-06-11 04:39:55','',382,'https://www.drfields.com/382-revision-v1/',0,'revision','',0),(1027,8,'2019-06-11 04:45:22','2019-06-11 04:45:22','Dextrose Prolotherapy Overview','Dextrose Prolotherapy Overview','','inherit','open','closed','','dextrose-prolotherapy-overview','','','2019-06-11 09:47:50','2019-06-11 09:47:50','',382,'https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg',0,'attachment','image/jpeg',0),(1028,8,'2019-06-11 04:46:55','2019-06-11 04:46:55','&nbsp;\r\n\r\n<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"#\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n<h4>Video: What is Prolotherapy Treatment?</h4>\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"https://youtu.be/scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]\'); ?>\r\n\r\n<a class=\"buttonlink\" href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-11 04:46:55','2019-06-11 04:46:55','',382,'https://www.drfields.com/382-revision-v1/',0,'revision','',0),(1029,8,'2019-06-11 04:48:15','2019-06-11 04:48:15','&nbsp;\r\n\r\n<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"#\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n<h4>Video: What is Prolotherapy Treatment?</h4>\r\n\r\n[video_lightbox_youtube video_id=\"https://youtu.be/scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]\r\n\r\n<a class=\"buttonlink\" href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-11 04:48:15','2019-06-11 04:48:15','',382,'https://www.drfields.com/382-revision-v1/',0,'revision','',0),(1030,8,'2019-06-11 04:49:02','2019-06-11 04:49:02','&nbsp;\r\n\r\n<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"#\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n<h4>Video: What is Prolotherapy Treatment?</h4>\r\n\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]\r\n\r\n<a class=\"buttonlink\" href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-11 04:49:02','2019-06-11 04:49:02','',382,'https://www.drfields.com/382-revision-v1/',0,'revision','',0),(1036,8,'2019-06-11 05:14:22','2019-06-11 05:14:22','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+1-4243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2019-06-11 05:14:22','2019-06-11 05:14:22','',469,'https://www.drfields.com/469-revision-v1/',0,'revision','',0),(1038,8,'2019-06-11 05:17:17','2019-06-11 05:17:17','<p><a href=\"/Low-Back-Pain-Challenges-and-Treatment\">Low Back Pain Challenges and Treatment</a></p>\r\n<p><a href=\"/ACL-Tears-and-Knee-Ligament-Injuries\">ACL Tears and Knee Ligament Injuries</a></p>\r\n<p><a href=\"/Relieve-Arthritis-Pain\">Relieve Arthritis Pain</a></p>\r\n<p><a href=\"/Failed-Back-Surgery-Syndrome\">Failed Back Surgery Syndrome</a></p>\r\n<p><a href=\"/Get-Rid-of-Knee-Arthritis-Symptoms-by-Treating-the-Source-of-the-Pain\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a></p>\r\n<p><a href=\"/Neck-Pain-Treatment-and-Relief\">Neck Pain Treatment and Relief</a></p>\r\n<p><a href=\"/What-is-Behind-Joint-Pain-\">What is Behind Joint Pain?&nbsp;</a></p>\r\n<p><a href=\"/Meniscus-and-Labral-Tears\">Meniscus&nbsp;and Labral Tears</a></p>\r\n<p><a href=\"Is-There-Help-for-Arthritis\">Is There help For Arthritis?&nbsp;</a></p>\r\n<p><a href=\"/Runners-Knee-Pain\">Runner\'s Knee Pain</a></p>\r\n<p><a href=\"/Do-You-Have-a-Hip-Injury\">Do You Have a Hip Injury?</a></p>\r\n<p><a href=\"/Avoid-Joint-Replacement\">Avoid Joint Replacement</a></p>\r\n<p><a href=\"/Stop-Shoulder-Pain-from-Rotator-Cuff-and-Other-Shoulder-Injuries\">Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries</a></p>\r\n<p><a href=\"/Unrelenting-Back-Pain-Repaired-with-Regenerative-Orthopedics\">Unrelenting Back Pain Repaired with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/Do-Your-Knees-Hurt\">Do Your Knees Hurt?</a></p>\r\n<p><a href=\"/Repairing-Sports-Injuries-with-Regenerative-Orthopedics\">Repairing Sports Injuries with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/Stem-Cell-Therapy-Options-for-Arthritis\">Stem Cell Therapy Options for Arthritis</a></p>\r\n<p><a href=\"/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-ENGLISH\">Regenerative Medicine Lecture in Mexico City (English) </a></p>\r\n<p><a href=\"/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-SPANISH\">Regenerative Medicine Lecture in Mexico City (Spanish)</a></p>\r\n<p><a href=\"/How-to-Avoid-Joint-Spine-Surgery-and-Live-Pain-Free\">How to Avoid Joint &amp; Spine Surgery and Live Pain Free</a></p>\r\n<p><a href=\"/Dr-Fields-Lectures-to-Over-400-Physicians-in-Las-Vegas\">Dr. Fields Lectures to Over 400 Physicians in Las Vegas</a></p>\r\n<p><a href=\"/2019-Lecture-Schedule\">2019 Regenerative Orthopedics Lecture Schedule</a></p>\r\n<p><a href=\"FDA-Warns-of-Serious-Neurologic-Problems-After-Epidural-Corticosteroid-Injections\">FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections</a></p>\r\n<p><a href=\"Prolotherapy-for-Knee-Pain-Abstract\">Prolotherapy for Knee-Pain Abstract</a></p>\r\n<p><a href=\"/Download-Dr-Fields-Prolotherapy-Lecture-Today\">Download Dr. Fields Prolotherapy Lecture Today</a></p>\r\n<p><a href=\"/Dr-Fields-interviewed-on-KCAL-CBS-about-Prolotherapy\">Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'</a></p>\r\n<p><a href=\"/Dr-Fields-is-giving-a-presentation-on-prolotherapy\">Dr. Fields is giving a presentation on prolotherapy</a></p>\r\n<p><a href=\"/New-York-Times-Article-Injections-to-Kick-Start-Tissue-Repair\">New York Times Article: Injections to Kick-Start Tissue Repair</a></p>\r\n<p><a href=\"/View-and-Download-Dr-Fields-Latest-Lecture-on-Arthritis-and-Prolotherapy\">View and Download Dr. Fields Latest Lecture on Arthritis and Prolotherapy</a></p>\r\n<p><a href=\"/LA-Times-Article-A-Ski-Run-for-Border\">LA Times Article \"A Ski Run for Border\"</a></p>\r\n<p><a href=\"/Dr-Fields-Free-Open-to-the-Public-Lecture-on-Arthritis-Joint-Pain-and-Inflammation\">Dr. Fields Free Open to the Public Lecture on Arthritis, Joint Pain and Inflammation</a></p>\r\n<p><a href=\"/What-to-Ask-When-Looking-for-a-Prolotherapist\">What to Ask When Looking for a Prolotherapist</a></p>\r\n<p><a href=\"/Chronic-Pain-or-Injuries-Prolotherapy-Might-be-the-Answer\">Chronic Pain or Injuries? Prolotherapy Might be the Answer</a></p>\r\n<p><a href=\"/Prolotherapy-Is-It-For-You\">Prolotherapy - Is It For You</a></p>\r\n<p><a href=\"/Prolotherapy-for-Shoulder\">Prolotherapy for Shoulder</a></p>\r\n<p><a href=\"/Cortisone-Is-it-Really-Good-for-You\">Cortisone - Is it Really Good for You</a></p>\r\n<p><a href=\"/Chronic-Pain-Prolotherapy-May-be-the-Answer\">Chronic Pain? - Prolotherapy May be the Answer</a></p>\r\n<p><a href=\"/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">Joint Surgery? Think Again! Learn About Prolotherapy</a></p>\r\n','Prolo News','','inherit','closed','closed','','665-revision-v1','','','2019-06-11 05:17:17','2019-06-11 05:17:17','',665,'https://www.drfields.com/665-revision-v1/',0,'revision','',0),(1045,8,'2019-06-11 05:25:20','2019-06-11 05:25:20','','Articles','','publish','closed','closed','','articles','','','2019-06-11 05:25:20','2019-06-11 05:25:20','',0,'https://www.drfields.com/?page_id=1045',0,'page','',0),(1046,8,'2019-06-11 05:25:20','2019-06-11 05:25:20','','Articles','','inherit','closed','closed','','1045-revision-v1','','','2019-06-11 05:25:20','2019-06-11 05:25:20','',1045,'https://www.drfields.com/1045-revision-v1/',0,'revision','',0),(1048,8,'2019-06-11 05:30:18','2019-06-11 05:30:18','Elbow Pain','Elbow Pain','Elbow Pain','inherit','open','closed','','elbow-pain','','','2019-06-11 05:30:18','2019-06-11 05:30:18','',469,'https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain.png',0,'attachment','image/png',0),(1049,8,'2019-06-11 05:30:23','2019-06-11 05:30:23','Neck Pain','Neck Pain','Neck Pain','inherit','open','closed','','neck-pain','','','2019-06-11 05:30:23','2019-06-11 05:30:23','',469,'https://www.drfields.com/wp-content/uploads/2019/06/neck-pain.png',0,'attachment','image/png',0),(1050,8,'2019-06-11 05:30:25','2019-06-11 05:30:25','Shoulder Pain','Shoulder Pain','Shoulder Pain','inherit','open','closed','','shoulder-pain','','','2019-06-11 05:30:25','2019-06-11 05:30:25','',469,'https://www.drfields.com/wp-content/uploads/2019/06/shoulder-pain.png',0,'attachment','image/png',0),(1051,8,'2019-06-11 05:30:26','2019-06-11 05:30:26','Knee Pain','Knee Pain','Knee Pain','inherit','open','closed','','knee-pain','','','2019-06-11 05:30:26','2019-06-11 05:30:26','',469,'https://www.drfields.com/wp-content/uploads/2019/06/knee-pain.png',0,'attachment','image/png',0),(1056,8,'2019-06-11 05:44:00','2019-06-11 05:44:00','Leg Extended','Leg Extended','','inherit','open','closed','','leg-extended','','','2019-06-11 05:44:35','2019-06-11 05:44:35','',0,'https://www.drfields.com/wp-content/uploads/2019/06/leg-extended.jpg',0,'attachment','image/jpeg',0),(1061,8,'2019-06-11 06:07:01','2019-06-11 06:07:01','Pdf Icon Large','Pdf Icon Large','','inherit','open','closed','','pdf_icon_large','','','2019-06-11 06:07:06','2019-06-11 06:07:06','',0,'https://www.drfields.com/wp-content/uploads/2019/06/PDF_icon_large.jpg',0,'attachment','image/jpeg',0),(1063,8,'2019-06-11 06:09:54','2019-06-11 06:09:54','Hip Pain','Hip Pain','Hip Pain','inherit','open','closed','','hip-pain','','','2019-06-11 06:09:55','2019-06-11 06:09:55','',0,'https://www.drfields.com/wp-content/uploads/2019/06/hip-pain.png',0,'attachment','image/png',0),(1064,8,'2019-06-11 06:09:56','2019-06-11 06:09:56','Back Pain','Back Pain','Back Pain','inherit','open','closed','','back-pain','','','2019-06-11 06:09:56','2019-06-11 06:09:56','',0,'https://www.drfields.com/wp-content/uploads/2019/06/back-pain.png',0,'attachment','image/png',0),(1065,8,'2019-06-11 06:09:56','2019-06-11 06:09:56','Finger Pain','Finger Pain','Finger Pain','inherit','open','closed','','finger-pain','','','2019-06-11 06:09:56','2019-06-11 06:09:56','',0,'https://www.drfields.com/wp-content/uploads/2019/06/finger-pain.png',0,'attachment','image/png',0),(1066,8,'2019-06-11 06:09:57','2019-06-11 06:09:57','Foot Pain','Foot Pain','Foot Pain','inherit','open','closed','','foot-pain','','','2019-06-11 06:09:57','2019-06-11 06:09:57','',0,'https://www.drfields.com/wp-content/uploads/2019/06/foot-pain.png',0,'attachment','image/png',0),(1068,8,'2019-06-11 06:17:17','2019-06-11 06:17:17','Drfields Skiier','Drfields Skiier','','inherit','open','closed','','drfields-skiier','','','2019-06-11 06:17:22','2019-06-11 06:17:22','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Drfields-skiier.jpg',0,'attachment','image/jpeg',0),(1070,8,'2019-06-11 06:21:38','2019-06-11 06:21:38','Woman Jumping Silhouette','Woman Jumping Silhouette','','inherit','open','closed','','woman-jumping-silhouette','','','2019-06-11 06:21:45','2019-06-11 06:21:45','',0,'https://www.drfields.com/wp-content/uploads/2019/06/woman-jumping-silhouette.jpg',0,'attachment','image/jpeg',0),(1075,8,'2019-06-11 06:26:38','2019-06-11 06:26:38','Knee Pain','Knee Pain','','inherit','open','closed','','knee-pain-2','','','2019-06-11 06:26:45','2019-06-11 06:26:45','',0,'https://www.drfields.com/wp-content/uploads/2019/06/knee-pain.jpg',0,'attachment','image/jpeg',0),(1078,8,'2019-06-11 06:28:41','2019-06-11 06:28:41','Woman Smiling','Woman Smiling','','inherit','open','closed','','woman-smiling','','','2019-06-11 06:28:47','2019-06-11 06:28:47','',0,'https://www.drfields.com/wp-content/uploads/2019/06/woman-smiling.jpg',0,'attachment','image/jpeg',0),(1081,8,'2019-06-11 06:29:56','2019-06-11 06:29:56','Shoulder Joint Pain','Shoulder Joint Pain','','inherit','open','closed','','shoulder-joint-pain','','','2019-06-11 06:30:00','2019-06-11 06:30:00','',0,'https://www.drfields.com/wp-content/uploads/2019/06/shoulder-joint-pain.jpg',0,'attachment','image/jpeg',0),(1084,8,'2019-06-11 06:40:59','2019-06-11 06:40:59','Older Man Pain','Older Man Pain','','inherit','open','closed','','older-man-pain','','','2019-06-11 06:41:04','2019-06-11 06:41:04','',0,'https://www.drfields.com/wp-content/uploads/2019/06/older-man-pain.jpg',0,'attachment','image/jpeg',0),(1086,8,'2019-06-11 06:43:42','2019-06-11 06:43:42','Joint X Ray','Joint X Ray','','inherit','open','closed','','joint-x-ray','','','2019-06-11 06:43:46','2019-06-11 06:43:46','',0,'https://www.drfields.com/wp-content/uploads/2019/06/joint-x-ray.jpeg',0,'attachment','image/jpeg',0),(1088,8,'2019-06-11 06:44:50','2019-06-11 06:44:50','Woman Pain','Woman Pain','','inherit','open','closed','','woman-pain','','','2019-06-11 06:44:55','2019-06-11 06:44:55','',0,'https://www.drfields.com/wp-content/uploads/2019/06/woman-pain.jpeg',0,'attachment','image/jpeg',0),(1090,8,'2019-06-11 07:42:59','2019-06-11 07:42:59','Dr. Fields Lectures In Las Vegas To 400+ Physicians','Dr. Fields Lectures In Las Vegas To 400+ Physicians','Dr. Fields Lectures In Las Vegas To 400+ Physicians','inherit','open','closed','','dr-fields-lectures-in-las-vegas-to-400-physicians','','','2019-06-11 07:42:59','2019-06-11 07:42:59','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg',0,'attachment','image/jpeg',0),(1102,8,'2019-06-11 08:23:00','2019-06-11 08:23:00','Peter A. Fields, Md, Dc','Peter A. Fields, Md, Dc','','inherit','open','closed','','peter-a-fields-md-dc','','','2019-06-11 09:55:25','2019-06-11 09:55:25','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg',0,'attachment','image/jpeg',0),(1103,8,'2019-06-11 08:23:38','2019-06-11 08:23:38','A4m Lecture Las Vegas','A4m Lecture Las Vegas','','inherit','open','closed','','a4m-lecture-las-vegas','','','2019-06-11 08:23:46','2019-06-11 08:23:46','',0,'https://www.drfields.com/wp-content/uploads/2019/06/A4M-Lecture-Las-Vegas.jpg',0,'attachment','image/jpeg',0),(1107,8,'2019-06-11 08:26:55','2019-06-11 08:26:55','Antioxidants','Antioxidants','','inherit','open','closed','','antioxidants','','','2019-06-11 08:26:58','2019-06-11 08:26:58','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Antioxidants.jpg',0,'attachment','image/jpeg',0),(1115,8,'2019-06-11 09:10:00','2019-06-11 09:10:00','Santa Monica Daily Press Article 2','Santa Monica Daily Press Article 2','','inherit','open','closed','','santa-monica-daily-press-article-2','','','2019-06-11 09:10:05','2019-06-11 09:10:05','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Santa-Monica-Daily-Press-Article-2.jpg',0,'attachment','image/jpeg',0),(1116,8,'2019-06-11 09:13:55','2019-06-11 09:13:55','Stem Cell1 Small','Stem Cell1 Small','','inherit','open','closed','','stem-cell1-small','','','2019-06-11 09:14:05','2019-06-11 09:14:05','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1-small.jpg',0,'attachment','image/jpeg',0),(1123,8,'2019-06-11 09:22:15','2019-06-11 09:22:15','Man Heart Attack 200','Man Heart Attack 200','','inherit','open','closed','','man-heart-attack-200','','','2019-06-11 09:22:19','2019-06-11 09:22:19','',0,'https://www.drfields.com/wp-content/uploads/2019/06/man-heart-attack-200.jpg',0,'attachment','image/jpeg',0),(1125,8,'2019-06-11 09:23:35','2019-06-11 09:23:35','Knee Illustration 200','Knee Illustration 200','','inherit','open','closed','','knee-illustration-200','','','2019-06-11 09:23:42','2019-06-11 09:23:42','',0,'https://www.drfields.com/wp-content/uploads/2019/06/knee-illustration-200.jpg',0,'attachment','image/jpeg',0),(1129,8,'2019-06-11 09:28:06','2019-06-11 09:28:06','Health Insurance','Health Insurance','','inherit','open','closed','','health-insurance','','','2019-06-11 09:28:13','2019-06-11 09:28:13','',0,'https://www.drfields.com/wp-content/uploads/2019/06/health-insurance.jpg',0,'attachment','image/jpeg',0),(1133,8,'2019-06-11 09:31:56','2019-06-11 09:31:56','Almonds Heart','Almonds Heart','','inherit','open','closed','','almonds-heart','','','2019-06-11 09:31:59','2019-06-11 09:31:59','',0,'https://www.drfields.com/wp-content/uploads/2019/06/almonds-heart.jpg',0,'attachment','image/jpeg',0),(1138,8,'2019-06-11 09:35:32','2019-06-11 09:35:32','Hands Holding Heart','Hands Holding Heart','','inherit','open','closed','','hands-holding-heart','','','2019-06-11 09:35:36','2019-06-11 09:35:36','',0,'https://www.drfields.com/wp-content/uploads/2019/06/hands-holding-heart.jpg',0,'attachment','image/jpeg',0),(1142,8,'2019-06-11 09:38:09','2019-06-11 09:38:09','Healthy Breakfast','Healthy Breakfast','','inherit','open','closed','','healthy-breakfast-2','','','2019-06-11 09:38:17','2019-06-11 09:38:17','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Healthy-Breakfast.jpg',0,'attachment','image/jpeg',0),(1144,8,'2019-06-11 09:40:14','2019-06-11 09:40:14','Body Cleansing Foods','Body Cleansing Foods','','inherit','open','closed','','body-cleansing-foods-2','','','2019-06-11 09:40:18','2019-06-11 09:40:18','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Body-Cleansing-Foods.jpg',0,'attachment','image/jpeg',0),(1159,8,'2019-06-11 10:02:28','2019-06-11 10:02:28','Soft Drinks','Soft Drinks','','inherit','open','closed','','soft-drinks','','','2019-06-11 10:02:31','2019-06-11 10:02:31','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Soft-Drinks.jpg',0,'attachment','image/jpeg',0),(1162,8,'2019-06-11 10:04:41','2019-06-11 10:04:41','Supplementation','Supplementation','','inherit','open','closed','','supplementation','','','2019-06-11 10:04:45','2019-06-11 10:04:45','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Supplementation.jpg',0,'attachment','image/jpeg',0),(1164,8,'2019-06-11 10:07:48','2019-06-11 10:07:48','<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n&nbsp;\r\n\r\n<div class=\"col-md-12\" id=\"aboutdocgallery\">\r\n<h4>Ironman Photos & Stories</h4>\r\n<ul>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\"><span>2017 Ironman Santa Rose</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\"><span>2016 Ironman Cozumel</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\"><span>2016 Ironman Switzerland</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\"><span>2015 Ironman Cozumel</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\"><span>2015 Ironman Brazil</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\"><span>2014 Ironman Austria</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\"><span>2013 Ironman Canada</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\"><span>2012 Ironman Cozumel</span></a></li>\r\n</ul>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-11 10:07:48','2019-06-11 10:07:48','',373,'https://www.drfields.com/373-revision-v1/',0,'revision','',0),(1166,8,'2019-06-11 10:09:50','2019-06-11 10:09:50','Latc Logo','Latc Logo','','inherit','open','closed','','latc-logo','','','2019-06-11 10:09:56','2019-06-11 10:09:56','',0,'https://www.drfields.com/wp-content/uploads/2019/06/LATC-Logo.jpg',0,'attachment','image/jpeg',0),(1174,8,'2019-06-11 10:14:14','2019-06-11 10:14:14','Napping','Napping','','inherit','open','closed','','napping','','','2019-06-11 10:14:18','2019-06-11 10:14:18','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Napping.jpg',0,'attachment','image/jpeg',0),(1178,8,'2019-06-11 10:28:48','2019-06-11 10:28:48','Vitamin D','Vitamin D','','inherit','open','closed','','vitamin-d','','','2019-06-11 10:28:52','2019-06-11 10:28:52','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Vitamin-D.jpg',0,'attachment','image/jpeg',0),(1181,8,'2019-06-11 10:31:12','2019-06-11 10:31:12','Sleeping','Sleeping','','inherit','open','closed','','sleeping','','','2019-06-11 10:31:17','2019-06-11 10:31:17','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Sleeping.jpg',0,'attachment','image/jpeg',0),(1183,8,'2019-06-11 10:33:10','2019-06-11 10:33:10','Exercise Energy','Exercise Energy','','inherit','open','closed','','exercise-energy','','','2019-06-11 10:33:15','2019-06-11 10:33:15','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Exercise-Energy.jpg',0,'attachment','image/jpeg',0),(1185,8,'2019-06-11 10:35:59','2019-06-11 10:35:59','Foods That Burn Fat','Foods That Burn Fat','','inherit','open','closed','','foods-that-burn-fat','','','2019-06-11 10:36:05','2019-06-11 10:36:05','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Foods-That-Burn-Fat.jpg',0,'attachment','image/jpeg',0),(1187,8,'2019-06-11 10:37:22','2019-06-11 10:37:22','Woman Fruit','Woman Fruit','','inherit','open','closed','','woman-fruit','','','2019-06-11 10:37:27','2019-06-11 10:37:27','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Woman-Fruit.jpg',0,'attachment','image/jpeg',0),(1194,8,'2019-06-11 10:58:27','2019-06-11 10:58:27','Townsend July2014','Townsend July2014','Townsend July2014','inherit','open','closed','','townsend-july2014','','','2019-06-11 10:58:27','2019-06-11 10:58:27','',0,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-july2014.jpg',0,'attachment','image/jpeg',0),(1195,8,'2019-06-11 10:58:33','2019-06-11 10:58:33','Townsend Feb Mar 2014','Townsend Feb Mar 2014','Townsend Feb Mar 2014','inherit','open','closed','','townsend-feb-mar-2014','','','2019-06-11 10:58:33','2019-06-11 10:58:33','',0,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-feb-mar-2014.jpg',0,'attachment','image/jpeg',0),(1196,8,'2019-06-11 10:58:41','2019-06-11 10:58:41','Townsend January 2014','Townsend January 2014','','inherit','open','closed','','townsend-january-2014','','','2019-06-11 11:04:07','2019-06-11 11:04:07','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-january-2014.jpg',0,'attachment','image/jpeg',0),(1197,8,'2019-06-11 10:58:45','2019-06-11 10:58:45','Townsend December 2013','Townsend December 2013','','inherit','open','closed','','townsend-december-2013','','','2019-06-11 11:04:53','2019-06-11 11:04:53','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-december-2013.jpg',0,'attachment','image/jpeg',0),(1198,8,'2019-06-11 10:58:49','2019-06-11 10:58:49','Townsend October 2013','Townsend October 2013','','inherit','open','closed','','townsend-october-2013','','','2019-06-11 11:06:36','2019-06-11 11:06:36','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-october-2013.jpg',0,'attachment','image/jpeg',0),(1199,8,'2019-06-11 10:58:53','2019-06-11 10:58:53','Townsend August 2013','Townsend August 2013','','inherit','open','closed','','townsend-august-2013','','','2019-06-11 11:06:47','2019-06-11 11:06:47','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-august-2013.jpg',0,'attachment','image/jpeg',0),(1200,8,'2019-06-11 10:58:57','2019-06-11 10:58:57','Townsend July 2013','Townsend July 2013','','inherit','open','closed','','townsend-july-2013','','','2019-06-11 11:06:58','2019-06-11 11:06:58','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-july-2013.jpg',0,'attachment','image/jpeg',0),(1201,8,'2019-06-11 10:59:00','2019-06-11 10:59:00','Towesend Letter','Towesend Letter','','inherit','open','closed','','towesend_letter','','','2019-06-11 11:07:11','2019-06-11 11:07:11','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/towesend_letter.jpg',0,'attachment','image/jpeg',0),(1207,8,'2019-06-11 11:10:53','2019-06-11 11:10:53','Fields July Article 2014 Page 1','Fields July Article 2014 Page 1','','inherit','open','closed','','fields-july-article-2014_page_1','','','2019-06-11 11:11:07','2019-06-11 11:11:07','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article-2014_Page_1.jpg',0,'attachment','image/jpeg',0),(1208,8,'2019-06-11 11:10:57','2019-06-11 11:10:57','Fields July Article2014 Page 2','Fields July Article2014 Page 2','','inherit','open','closed','','fields-july-article2014_page_2','','','2019-06-11 11:11:28','2019-06-11 11:11:28','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article2014_Page_2.jpg',0,'attachment','image/jpeg',0),(1212,8,'2019-06-11 11:14:08','2019-06-11 11:14:08','Townsend Article Feb Mar 2014 1','Townsend Article Feb Mar 2014 1','','inherit','open','closed','','townsend-article-feb-mar-2014-1','','','2019-06-11 11:14:20','2019-06-11 11:14:20','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-1.gif',0,'attachment','image/gif',0),(1213,8,'2019-06-11 11:14:29','2019-06-11 11:14:29','Townsend Article Feb Mar 2014 2','Townsend Article Feb Mar 2014 2','','inherit','open','closed','','townsend-article-feb-mar-2014-2','','','2019-06-11 11:14:34','2019-06-11 11:14:34','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-2.gif',0,'attachment','image/gif',0),(1219,8,'2019-06-11 14:03:10','2019-06-11 14:03:10','Townsend Article Jan 2014 1','Townsend Article Jan 2014 1','','inherit','open','closed','','townsend-article-jan-2014-1','','','2019-06-11 14:03:19','2019-06-11 14:03:19','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-1.gif',0,'attachment','image/gif',0),(1220,8,'2019-06-11 14:03:38','2019-06-11 14:03:38','Townsend Article Jan 2014 2','Townsend Article Jan 2014 2','','inherit','open','closed','','townsend-article-jan-2014-2','','','2019-06-11 14:03:46','2019-06-11 14:03:46','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-2.gif',0,'attachment','image/gif',0),(1221,8,'2019-06-11 14:04:11','2019-06-11 14:04:11','Townsend Article Jan 2014 3','Townsend Article Jan 2014 3','','inherit','open','closed','','townsend-article-jan-2014-3','','','2019-06-11 14:04:16','2019-06-11 14:04:16','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-3.gif',0,'attachment','image/gif',0),(1230,8,'2019-06-11 14:24:01','2019-06-11 14:24:01','Townsend Article Dec 2013 1','Townsend Article Dec 2013 1','','inherit','open','closed','','townsend-article-dec-2013-1','','','2019-06-11 14:24:05','2019-06-11 14:24:05','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-1.jpg',0,'attachment','image/jpeg',0),(1231,8,'2019-06-11 14:24:19','2019-06-11 14:24:19','Townsend Article Dec 2013 2','Townsend Article Dec 2013 2','','inherit','open','closed','','townsend-article-dec-2013-2','','','2019-06-11 14:24:24','2019-06-11 14:24:24','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-2.gif',0,'attachment','image/gif',0),(1232,8,'2019-06-11 14:24:36','2019-06-11 14:24:36','Townsend Article Dec 2013 3','Townsend Article Dec 2013 3','','inherit','open','closed','','townsend-article-dec-2013-3','','','2019-06-11 14:24:41','2019-06-11 14:24:41','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-3.gif',0,'attachment','image/gif',0),(1235,8,'2019-06-11 14:26:13','2019-06-11 14:26:13','Townsend Article October 2013 1','Townsend Article October 2013 1','','inherit','open','closed','','townsend-article-october-2013-1','','','2019-06-11 14:26:27','2019-06-11 14:26:27','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-1.gif',0,'attachment','image/gif',0),(1236,8,'2019-06-11 14:26:39','2019-06-11 14:26:39','Townsend Article October 2013 2','Townsend Article October 2013 2','','inherit','open','closed','','townsend-article-october-2013-2','','','2019-06-11 14:26:44','2019-06-11 14:26:44','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-2.gif',0,'attachment','image/gif',0),(1240,8,'2019-06-11 14:28:51','2019-06-11 14:28:51','Townsend Article August 2013 1','Townsend Article August 2013 1','','inherit','open','closed','','townsend-article-august-2013-1','','','2019-06-11 14:29:16','2019-06-11 14:29:16','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-1.gif',0,'attachment','image/gif',0),(1241,8,'2019-06-11 14:29:27','2019-06-11 14:29:27','Townsend Article August 2013 2','Townsend Article August 2013 2','','inherit','open','closed','','townsend-article-august-2013-2','','','2019-06-11 14:29:32','2019-06-11 14:29:32','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-2.gif',0,'attachment','image/gif',0),(1244,8,'2019-06-11 14:30:44','2019-06-11 14:30:44','Townsend Article July 2013 1','Townsend Article July 2013 1','','inherit','open','closed','','townsend-article-july-2013-1','','','2019-06-11 14:30:50','2019-06-11 14:30:50','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-1.gif',0,'attachment','image/gif',0),(1245,8,'2019-06-11 14:31:00','2019-06-11 14:31:00','Townsend Article July 2013 2','Townsend Article July 2013 2','','inherit','open','closed','','townsend-article-july-2013-2','','','2019-06-11 14:31:07','2019-06-11 14:31:07','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-2.gif',0,'attachment','image/gif',0),(1248,8,'2019-06-11 14:32:58','2019-06-11 14:32:58','Townsend Article June 2013 2','Townsend Article June 2013 2','','inherit','open','closed','','townsend-article-june-2013-2','','','2019-06-11 14:33:04','2019-06-11 14:33:04','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-june-2013-2.gif',0,'attachment','image/gif',0),(1249,8,'2019-06-11 14:33:12','2019-06-11 14:33:12','Townsend Article June 2013 3','Townsend Article June 2013 3','','inherit','open','closed','','townsend-article-june-2013-3','','','2019-06-11 14:33:19','2019-06-11 14:33:19','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-june-2013-3.gif',0,'attachment','image/gif',0),(1254,8,'2019-06-11 14:40:58','2019-06-11 14:40:58','Chronic Pain Video0','Chronic Pain Video0','Chronic Pain Video0','inherit','open','closed','','chronic-pain-video0','','','2019-06-11 14:40:58','2019-06-11 14:40:58','',0,'https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg',0,'attachment','image/jpeg',0),(1255,8,'2019-06-11 14:40:59','2019-06-11 14:40:59','Chronic Pain Video1','Chronic Pain Video1','Chronic Pain Video1','inherit','open','closed','','chronic-pain-video1','','','2019-06-11 14:40:59','2019-06-11 14:40:59','',0,'https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg',0,'attachment','image/jpeg',0),(1256,8,'2019-06-11 14:42:26','2019-06-11 14:42:26','<h4>Prolotherapy for Chronic Knee Pain</h4>\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee (VIDEO HERE)</strong>\r\n<strong>Roberto - Knee (In Spanish) (VIDEO HERE)</strong>\r\n\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Prolotherapy for Chronic Knee Pain treatment.\r\n\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Osteoarthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Chronic osteoarthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudo gout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Knee Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with prolotherapy</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+1-310-455-8242\">(310) 455-8242</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2019-06-11 14:42:26','2019-06-11 14:42:26','',486,'https://www.drfields.com/486-revision-v1/',0,'revision','',0),(1257,8,'2019-06-11 14:47:33','2019-06-11 14:47:33','<h4>Prolotherapy for Chronic Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee (VIDEO HERE)</strong>\r\n</div>\r\n<strong>Roberto - Knee (In Spanish) (VIDEO HERE)</strong>\r\n\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Prolotherapy for Chronic Knee Pain treatment.\r\n\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Osteoarthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Chronic osteoarthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudo gout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Knee Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with prolotherapy</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+1-310-455-8242\">(310) 455-8242</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2019-06-11 14:47:33','2019-06-11 14:47:33','',486,'https://www.drfields.com/486-revision-v1/',0,'revision','',0),(1258,8,'2019-06-11 14:48:49','2019-06-11 14:48:49','<h4>Prolotherapy for Chronic Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee (VIDEO HERE)</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Roberto - Knee (In Spanish) (VIDEO HERE)</strong>\r\n</div>\r\n\r\n\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Prolotherapy for Chronic Knee Pain treatment.\r\n\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Osteoarthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Chronic osteoarthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudo gout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Knee Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with prolotherapy</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+1-310-455-8242\">(310) 455-8242</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2019-06-11 14:48:49','2019-06-11 14:48:49','',486,'https://www.drfields.com/486-revision-v1/',0,'revision','',0),(1259,8,'2019-06-11 14:55:54','2019-06-11 14:55:54','<h4>Prolotherapy for Chronic Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong>\r\n</div>\r\n\r\n\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Prolotherapy for Chronic Knee Pain treatment.\r\n\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Osteoarthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Chronic osteoarthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudo gout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Knee Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with prolotherapy</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+1-310-455-8242\">(310) 455-8242</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2019-06-11 14:55:54','2019-06-11 14:55:54','',486,'https://www.drfields.com/486-revision-v1/',0,'revision','',0),(1260,8,'2019-06-11 15:08:27','2019-06-11 15:08:27','Mark Neck Pain','Mark Neck Pain','Mark Neck Pain','inherit','open','closed','','mark-neck-pain','','','2019-06-11 15:08:27','2019-06-11 15:08:27','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg',0,'attachment','image/jpeg',0),(1261,8,'2019-06-11 15:10:01','2019-06-11 15:10:01','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck (VIDEO HERE)</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy for Chronic Neck Pain</h4>\r\nBecause the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and to rotate, but if you can\'t move your neck normally, your life can be severely disrupted and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be prolotherapy for chronic neck pain.\r\n\r\n<h4>What Causes Neck Pain?</h4>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\nSymptoms of <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands and feet.</li>\r\n</ul>\r\n\r\nIf you are experiencing minor neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty and symptoms may begin to appear years after the disease begins.\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck can be the causes of the neck pain you feel. Pain in the neck can also be caused by injury such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, a pinched nerve, meningitis, influenza, a heart attack or torticollis, can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture, and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Neck Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Neck Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic neck pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are you a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+1-4243256695\">(424) 325- 6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Chronic Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2019-06-11 15:10:01','2019-06-11 15:10:01','',509,'https://www.drfields.com/509-revision-v1/',0,'revision','',0),(1262,8,'2019-06-11 15:10:58','2019-06-11 15:10:58','Wilbur Shoulder','Wilbur Shoulder','Wilbur Shoulder','inherit','open','closed','','wilbur-shoulder','','','2019-06-11 15:10:58','2019-06-11 15:10:58','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg',0,'attachment','image/jpeg',0),(1263,8,'2019-06-11 15:12:39','2019-06-11 15:12:39','\r\n<h4>Prolotherapy for Chronic Shoulder Pain</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n\r\nIt\'s easy to take your own body for granted when your body is working well. But when a part of your body, such as your shoulder, begins to hurt or hurts for an extended period of time, you quickly realize how much you depend on your shoulders for reaching, raising your arm, lifting yourself up or even just opening a cupboard. That\'s why so many people with shoulder pain or injuries look to <strong>Prolotherapy for chronic shoulder pain</strong> treatment.\r\n\r\n<h4>Causes of Shoulder Pain</h4>\r\nThe muscles and joints of the shoulder allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso and allow the arm to move a full 360°. This tremendous range of motion also makes the shoulder extremely unstable, and far more prone to dislocation and injury than other joints.\r\n\r\nBecause the rounded head or ball of the upper arm bone (humerus) is larger than the socket of the shoulder bone (scapula), this area is especially susceptible to injury. The shoulder joint consists of bones, muscles and ligaments that are all subject to stress and overuse.\r\n\r\nCommon causes of shoulder pain can be:\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation and attendant injury</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Adhesive capsulated (frozen shoulder)</li>\r\n 	<li>Fracture</li>\r\n 	<li>Poor posture.</li>\r\n</ul>\r\nBut the <strong>most common cause of chronic pain in the shoulder is arthritis</strong>. This can take many forms such as: osteoarthritis, rheumatoid, traumatic, and gouty arthritis.\r\n\r\n<h4>Which Kind of Shoulder Pain Do You Have?</h4>\r\nIf you are experiencing pain from a rotator cuff injury, you will feel a dull aching pain, which worsens with movement.  A rotator cuff injury includes any type of irritation or damage to your <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> muscles or tendons. Causes of a rotator cuff injury may include falling, lifting and repetitive arm activities — especially those done overhead.\r\n\r\n<strong>Shoulder tendonitis</strong> can produce symptoms including a slow onset of discomfort, pain in the upper third of your arm and difficulty sleeping on the side of that arm.\r\n\r\nRedness and swelling that is tender and warm to the touch can be caused by <strong>bursitis</strong>.\r\n\r\nMinor shoulder pain, ‘clicking’, ‘giving way’, or frozen shoulder, are symptoms of <strong>arthritis</strong>. Osteoarthritis can begin as early as thirty, but symptoms can appear later, as the condition progresses.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Shoulder Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Shoulder Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic shoulder pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, shoulder surgery requires you reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic shoulder pain? Would you like a <strong>second opinion before you have irreversible shoulder surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+1-310-627-2458\">(310) 627-2458</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Chronic Shoulder Pain','','inherit','closed','closed','','511-revision-v1','','','2019-06-11 15:12:39','2019-06-11 15:12:39','',511,'https://www.drfields.com/511-revision-v1/',0,'revision','',0),(1264,8,'2019-06-11 15:13:13','2019-06-11 15:13:13','Jennifer Elbow','Jennifer Elbow','Jennifer Elbow','inherit','open','closed','','jennifer-elbow','','','2019-06-11 15:13:13','2019-06-11 15:13:13','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg',0,'attachment','image/jpeg',0),(1265,8,'2019-06-11 15:15:56','2019-06-11 15:15:56','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\r\n</div>\r\n<strong>Jennifer - Elbow</strong>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. It is usually the ligaments and tendons that are injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n\r\n<strong>Ligament Injuries in the Elbow</strong>\r\n\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. In tennis elbow it is the <strong>extensor tendons</strong> which move the wrist up, that can be damaged. In golfer’s elbow it is the <strong>flexor tendons</strong>, that move the wrist down, that get injured. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n\r\n<strong>The Most Common Elbow Injuries </strong>\r\n\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? Are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel://1-310-956-0569\">(310) 956-0569</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Elbow Pain','','inherit','closed','closed','','524-revision-v1','','','2019-06-11 15:15:56','2019-06-11 15:15:56','',524,'https://www.drfields.com/524-revision-v1/',0,'revision','',0),(1266,8,'2019-06-11 15:16:38','2019-06-11 15:16:38','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy for Chronic Neck Pain</h4>\r\nBecause the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and to rotate, but if you can\'t move your neck normally, your life can be severely disrupted and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be prolotherapy for chronic neck pain.\r\n\r\n<h4>What Causes Neck Pain?</h4>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\nSymptoms of <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands and feet.</li>\r\n</ul>\r\n\r\nIf you are experiencing minor neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty and symptoms may begin to appear years after the disease begins.\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck can be the causes of the neck pain you feel. Pain in the neck can also be caused by injury such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, a pinched nerve, meningitis, influenza, a heart attack or torticollis, can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture, and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Neck Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Neck Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic neck pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are you a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+1-4243256695\">(424) 325- 6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Chronic Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2019-06-11 15:16:38','2019-06-11 15:16:38','',509,'https://www.drfields.com/509-revision-v1/',0,'revision','',0),(1267,8,'2019-06-11 15:17:28','2019-06-11 15:17:28','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. It is usually the ligaments and tendons that are injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n\r\n<strong>Ligament Injuries in the Elbow</strong>\r\n\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. In tennis elbow it is the <strong>extensor tendons</strong> which move the wrist up, that can be damaged. In golfer’s elbow it is the <strong>flexor tendons</strong>, that move the wrist down, that get injured. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n\r\n<strong>The Most Common Elbow Injuries </strong>\r\n\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? Are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel://1-310-956-0569\">(310) 956-0569</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Elbow Pain','','inherit','closed','closed','','524-revision-v1','','','2019-06-11 15:17:28','2019-06-11 15:17:28','',524,'https://www.drfields.com/524-revision-v1/',0,'revision','',0),(1268,8,'2019-06-12 03:14:47','2019-06-12 03:14:47','','Testimonials','','publish','closed','closed','','testimonials','','','2019-06-12 03:23:14','2019-06-12 03:23:14','',0,'https://www.drfields.com/?page_id=1268',0,'page','',0),(1269,8,'2019-06-12 03:14:47','2019-06-12 03:14:47','','Testimonials','','inherit','closed','closed','','1268-revision-v1','','','2019-06-12 03:14:47','2019-06-12 03:14:47','',1268,'https://www.drfields.com/1268-revision-v1/',0,'revision','',0),(1272,8,'2022-12-02 06:01:39','2019-06-12 03:21:16',' ','','','publish','closed','closed','','1272','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',1268,'https://www.drfields.com/?p=1272',60,'nav_menu_item','',0),(1274,8,'2019-06-12 03:31:14','2019-06-12 03:31:14','Chris Hip Injury','Chris Hip Injury','Chris Hip Injury','inherit','open','closed','','chris-hip-injury','','','2019-06-12 03:31:14','2019-06-12 03:31:14','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg',0,'attachment','image/jpeg',0),(1275,8,'2019-06-12 04:47:47','2019-06-12 04:47:47','<div class=\"youtube-click-div video_left\">\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Prolotherapy Hip Injury\'\"]\n<strong>Chris - Hip</strong>\n</div>\n<h4>Prolotherapy Hip and Groin Injury Treatment</h4>\nHip and groin injuries can quickly become debilitating and escalate into athletic career ending injuries. MRI and arthroscopic surgery are routinely recommended for patients. Other patients may spend months or longer on pain medication, while undergoing rounds of physical therapy. <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment offers a successful alternative to pain medication and surgery, for hip and groin injuries. OrthoRegen offers comprehensive treatment for your hip injuries and groin pain without pain medication, surgery or extended time away from the sport you love.\n\n<h4>Who Is Prolotherapy Hip Treatment For?</h4>\nOur patients include Olympic hopefuls to weekend warriors. Dr. Peter Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an Ironman Triathlete. He understands the concerns of injured athletes, hoping to return quickly to their chosen sport. His clinical experience has shown that Prolotherapy hip treatment is the preferred way to treat hip injuries and groin pain for optimal long term results. We can get you back into your sport without surgery, without medication, and without extended time away from your sport.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<strong>Some of the most common pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment are:</strong>\n<ul>\n 	<li>Acetabular labrum tear</li>\n 	<li>Arthritis</li>\n 	<li>Femoroacetabular impingement</li>\n 	<li>Groin pain</li>\n 	<li>Hip instability</li>\n 	<li>Hip impingement</li>\n 	<li>Hip pain</li>\n 	<li>Ischial tuberosity pain</li>\n 	<li>Labral tear</li>\n 	<li>Pelvic floor dysfunction</li>\n 	<li>Post pelvic fusion pain</li>\n 	<li>Post-surgical hip pain</li>\n 	<li>Pubic symphysis injury</li>\n 	<li>Pubis pain</li>\n 	<li>Pupalgia</li>\n 	<li>Snapping hip syndrome</li>\n 	<li>Torn Labrum</li>\n</ul>\n\n<h4>Are You A Candidate for Prolotherapy?</h4>\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy hip treatment, as well as PRP Prolotherapy and Stem Cell Prolotherapy. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-310-340-7407\">(310) 340-7407</a>\n\n<strong>Sports Injuries</strong>','Hip Injury Treatment','','inherit','closed','closed','','528-autosave-v1','','','2019-06-12 04:47:47','2019-06-12 04:47:47','',528,'https://www.drfields.com/528-autosave-v1/',0,'revision','',0),(1276,8,'2019-06-12 03:33:14','2019-06-12 03:33:14','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg alt=\"Prolotherapy Hip Injury\'\"]\r\n<strong>Chris - Hip</strong>\r\n</div>\r\n<h4>Prolotherapy Hip and Groin Injury Treatment</h4>\r\nHip and groin injuries can quickly become debilitating and escalate into athletic career ending injuries. MRI and arthroscopic surgery are routinely recommended for patients. Other patients may spend months or longer on pain medication, while undergoing rounds of physical therapy. <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> hip and groin treatment offers a successful alternative to pain medication and surgery, for hip and groin injuries. OrthoRegen offers comprehensive treatment for your hip injuries and groin pain without pain medication, surgery or extended time away from the sport you love.\r\n\r\n<h4>Who Is Prolotherapy Hip Treatment For?</h4>\r\nOur patients include Olympic hopefuls to weekend warriors. Dr. Peter Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, is an Ironman Triathlete. He understands the concerns of injured athletes, hoping to return quickly to their chosen sport. His clinical experience has shown that Prolotherapy hip treatment is the preferred way to treat hip injuries and groin pain for optimal long term results. We can get you back into your sport without surgery, without medication, and without extended time away from your sport.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> hip and groin treatment are:</strong>\r\n<ul>\r\n 	<li>Acetabular labrum tear</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Femoroacetabular impingement</li>\r\n 	<li>Groin pain</li>\r\n 	<li>Hip instability</li>\r\n 	<li>Hip impingement</li>\r\n 	<li>Hip pain</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Post pelvic fusion pain</li>\r\n 	<li>Post-surgical hip pain</li>\r\n 	<li>Pubic symphysis injury</li>\r\n 	<li>Pubis pain</li>\r\n 	<li>Pupalgia</li>\r\n 	<li>Snapping hip syndrome</li>\r\n 	<li>Torn Labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy hip treatment, as well as PRP Prolotherapy and Stem Cell Prolotherapy. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-310-340-7407\">(310) 340-7407</a>\r\n\r\n<strong>Sports Injuries</strong>','Hip Injury Treatment','','inherit','closed','closed','','528-revision-v1','','','2019-06-12 03:33:14','2019-06-12 03:33:14','',528,'https://www.drfields.com/528-revision-v1/',0,'revision','',0),(1277,8,'2019-06-12 03:34:21','2019-06-12 03:34:21','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Prolotherapy Hip Injury\'\"]\r\n<strong>Chris - Hip</strong>\r\n</div>\r\n<h4>Prolotherapy Hip and Groin Injury Treatment</h4>\r\nHip and groin injuries can quickly become debilitating and escalate into athletic career ending injuries. MRI and arthroscopic surgery are routinely recommended for patients. Other patients may spend months or longer on pain medication, while undergoing rounds of physical therapy. <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> hip and groin treatment offers a successful alternative to pain medication and surgery, for hip and groin injuries. OrthoRegen offers comprehensive treatment for your hip injuries and groin pain without pain medication, surgery or extended time away from the sport you love.\r\n\r\n<h4>Who Is Prolotherapy Hip Treatment For?</h4>\r\nOur patients include Olympic hopefuls to weekend warriors. Dr. Peter Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, is an Ironman Triathlete. He understands the concerns of injured athletes, hoping to return quickly to their chosen sport. His clinical experience has shown that Prolotherapy hip treatment is the preferred way to treat hip injuries and groin pain for optimal long term results. We can get you back into your sport without surgery, without medication, and without extended time away from your sport.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> hip and groin treatment are:</strong>\r\n<ul>\r\n 	<li>Acetabular labrum tear</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Femoroacetabular impingement</li>\r\n 	<li>Groin pain</li>\r\n 	<li>Hip instability</li>\r\n 	<li>Hip impingement</li>\r\n 	<li>Hip pain</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Post pelvic fusion pain</li>\r\n 	<li>Post-surgical hip pain</li>\r\n 	<li>Pubic symphysis injury</li>\r\n 	<li>Pubis pain</li>\r\n 	<li>Pupalgia</li>\r\n 	<li>Snapping hip syndrome</li>\r\n 	<li>Torn Labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy hip treatment, as well as PRP Prolotherapy and Stem Cell Prolotherapy. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-310-340-7407\">(310) 340-7407</a>\r\n\r\n<strong>Sports Injuries</strong>','Hip Injury Treatment','','inherit','closed','closed','','528-revision-v1','','','2019-06-12 03:34:21','2019-06-12 03:34:21','',528,'https://www.drfields.com/528-revision-v1/',0,'revision','',0),(1278,8,'2019-06-12 03:36:23','2019-06-12 03:36:23','Adam Knee','Adam Knee','Adam Knee','inherit','open','closed','','adam-knee','','','2019-06-12 03:36:23','2019-06-12 03:36:23','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg',0,'attachment','image/jpeg',0),(1279,8,'2019-06-12 03:36:24','2019-06-12 03:36:24','Christa Knee','Christa Knee','Christa Knee','inherit','open','closed','','christa-knee','','','2019-06-12 03:36:24','2019-06-12 03:36:24','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg',0,'attachment','image/jpeg',0),(1280,8,'2019-06-12 03:39:22','2019-06-12 03:39:22','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong>\r\n</div>\r\n<h4>Prolotherapy Knee Treatment</h4>\r\nKnee injuries are one of the most common problems we treat with Prolotherapy knee treatment at OrthoRegen. The knee joint is one of the most crucial joints in the body. Normal knee function is vital to involvement in everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\r\n\r\nThere are also two forms of cartilage in the knee. Articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement, and the cartilage meniscus which is two semicircular discs providing cushioning and support for the bones. The knee is extremely vulnerable to injury in one or a combination of these elements. In the case of knee injury, we recommend our <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> knee treatment to strengthen and repair damaged tissue, ligaments and tendons.\r\n<h4>How Prolotherapy Knee Treatment Works</h4>\r\nOur Prolotherapy knee treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word proliferate. Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment for your knee injuries with comprehensive Prolotherapy at OrthoRegen.\r\n\r\n<a class=\"buttonlink\" href=\"#\">  Schedule Your Appointment Today!</a>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-310-776-6154\">(310) 776-6154</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<strong>Sports Injuries</strong>\r\n\r\n<img class=\"alignleft\" title=\"Knee Injuries\" src=\"https://www.drfields.com/portals/0/images/Knee-Small.jpg\" alt=\"Knee Injuries\" />Dr. Peter A. Fields is <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>. For over 25 years Dr. Fields has been active in the sport of Triathlon. In November 2012 he completed his second Ironman Triathlon, beating his time by 14 minutes. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nContact us to see if you are a candidate for <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\r\n\r\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>ACL tear Anterior Cruciate Ligament injury</li>\r\n 	<li>Arthritis of the knee</li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li>Chondromalacia patellae</li>\r\n 	<li>Complex meniscus tear</li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Knee pain after surgery</li>\r\n 	<li>Knee popping</li>\r\n 	<li>Knee replacement pain</li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li>Ligament laxity</li>\r\n 	<li>Ligament sprain</li>\r\n 	<li>Ligament tear</li>\r\n 	<li>Medial Collateral Ligament (MCL) injury</li>\r\n 	<li>Meniscus tear</li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li>Patellofemoral syndrome</li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li>Runners knee</li>\r\n 	<li>Tendinosis</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"#\"> Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-revision-v1','','','2019-06-12 03:39:22','2019-06-12 03:39:22','',533,'https://www.drfields.com/533-revision-v1/',0,'revision','',0),(1281,8,'2019-06-12 03:39:47','2019-06-12 03:39:47','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Knee Treatment</h4>\r\nKnee injuries are one of the most common problems we treat with Prolotherapy knee treatment at OrthoRegen. The knee joint is one of the most crucial joints in the body. Normal knee function is vital to involvement in everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\r\n\r\nThere are also two forms of cartilage in the knee. Articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement, and the cartilage meniscus which is two semicircular discs providing cushioning and support for the bones. The knee is extremely vulnerable to injury in one or a combination of these elements. In the case of knee injury, we recommend our <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> knee treatment to strengthen and repair damaged tissue, ligaments and tendons.\r\n<h4>How Prolotherapy Knee Treatment Works</h4>\r\nOur Prolotherapy knee treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word proliferate. Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment for your knee injuries with comprehensive Prolotherapy at OrthoRegen.\r\n\r\n<a class=\"buttonlink\" href=\"#\">  Schedule Your Appointment Today!</a>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-310-776-6154\">(310) 776-6154</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<strong>Sports Injuries</strong>\r\n\r\n<img class=\"alignleft\" title=\"Knee Injuries\" src=\"https://www.drfields.com/portals/0/images/Knee-Small.jpg\" alt=\"Knee Injuries\" />Dr. Peter A. Fields is <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>. For over 25 years Dr. Fields has been active in the sport of Triathlon. In November 2012 he completed his second Ironman Triathlon, beating his time by 14 minutes. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nContact us to see if you are a candidate for <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\r\n\r\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>ACL tear Anterior Cruciate Ligament injury</li>\r\n 	<li>Arthritis of the knee</li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li>Chondromalacia patellae</li>\r\n 	<li>Complex meniscus tear</li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Knee pain after surgery</li>\r\n 	<li>Knee popping</li>\r\n 	<li>Knee replacement pain</li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li>Ligament laxity</li>\r\n 	<li>Ligament sprain</li>\r\n 	<li>Ligament tear</li>\r\n 	<li>Medial Collateral Ligament (MCL) injury</li>\r\n 	<li>Meniscus tear</li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li>Patellofemoral syndrome</li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li>Runners knee</li>\r\n 	<li>Tendinosis</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"#\"> Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-revision-v1','','','2019-06-12 03:39:47','2019-06-12 03:39:47','',533,'https://www.drfields.com/533-revision-v1/',0,'revision','',0),(1283,8,'2019-06-12 03:42:52','2019-06-12 03:42:52','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\r\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\r\n\r\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> neck treatment at OrthoRegen.\r\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\r\nDr. Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\r\n\r\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Head Testimonials</a> pages.\r\n\r\n<strong>Sports Injuries</strong>','Neck Injury Treatment','','inherit','closed','closed','','536-revision-v1','','','2019-06-12 03:42:52','2019-06-12 03:42:52','',536,'https://www.drfields.com/536-revision-v1/',0,'revision','',0),(1284,8,'2019-06-12 03:45:44','2019-06-12 03:45:44','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\r\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\r\n\r\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> neck treatment at OrthoRegen.\r\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\r\nDr. Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\r\n\r\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Head Testimonials</a> pages.\r\n','Neck Injury Treatment','','inherit','closed','closed','','536-revision-v1','','','2019-06-12 03:45:44','2019-06-12 03:45:44','',536,'https://www.drfields.com/536-revision-v1/',0,'revision','',0),(1285,8,'2019-06-12 03:47:59','2019-06-12 03:47:59','Dr.doug – Headaches & Shoulder','Dr.doug – Headaches & Shoulder','Dr.doug – Headaches & Shoulder','inherit','open','closed','','dr-doug-headaches-shoulder','','','2019-06-12 03:47:59','2019-06-12 03:47:59','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg',0,'attachment','image/jpeg',0),(1286,8,'2019-06-12 03:49:21','2019-06-12 03:49:21','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr.doug – Headaches & Shoulder\"]\r\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Shoulder Treatment</h4>\r\nAt OrthoRegen, shoulder injuries are one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. Shoulder injuries are common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive prolotherapy shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\r\n\r\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist and swimmer, understands your desire to return to full participation in your training and competition.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Acromioclavicular joint arthrosis</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation</li>\r\n 	<li>Frozen shoulder</li>\r\n 	<li>Glenoid labrum tear</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Multi-directional instability</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Shoulder dislocation</li>\r\n 	<li>Shoulder instability</li>\r\n 	<li>Shoulder pain</li>\r\n 	<li>Shoulder separation</li>\r\n 	<li>SLAP lesion</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Swimmers shoulder</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendonosis</li>\r\n 	<li>Torn labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-310-627-2458\">(310) 627-2458</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder Prolotherapy Testimonials page</a>.\r\n\r\n<strong>(sports injuries)</strong>','Shoulder Injury Treatment','','inherit','closed','closed','','545-revision-v1','','','2019-06-12 03:49:21','2019-06-12 03:49:21','',545,'https://www.drfields.com/545-revision-v1/',0,'revision','',0),(1287,8,'2019-06-12 03:53:31','2019-06-12 03:53:31','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr.doug – Headaches & Shoulder\"]\r\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Shoulder Treatment</h4>\r\nAt OrthoRegen, shoulder injuries are one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/prolotherapy-treatment-overview/\">Prolotherapy</a>. Shoulder injuries are common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive prolotherapy shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\r\n\r\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist and swimmer, understands your desire to return to full participation in your training and competition.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Acromioclavicular joint arthrosis</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation</li>\r\n 	<li>Frozen shoulder</li>\r\n 	<li>Glenoid labrum tear</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Multi-directional instability</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Shoulder dislocation</li>\r\n 	<li>Shoulder instability</li>\r\n 	<li>Shoulder pain</li>\r\n 	<li>Shoulder separation</li>\r\n 	<li>SLAP lesion</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Swimmers shoulder</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendonosis</li>\r\n 	<li>Torn labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"https://www.drfields.com/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+1-310-627-2458\">(310) 627-2458</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder Prolotherapy Testimonials page</a>.\r\n\r\n<strong>(sports injuries)</strong>','Shoulder Injury Treatment','','inherit','closed','closed','','545-revision-v1','','','2019-06-12 03:53:31','2019-06-12 03:53:31','',545,'https://www.drfields.com/545-revision-v1/',0,'revision','',0),(1288,8,'2019-06-12 03:57:28','2019-06-12 03:57:28','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur – Low Back\"]\r\n<strong>Wilbur - Low Back</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Back and Pelvic Treatment</h4>\r\nOne of the main reasons patients come to OrthoRegen is for back relief with our Prolotherapy Back Treatment. Back or pelvic injury is also the main reason our patients say, they have had to stop participation in sports.\r\n\r\nMany of the traditional treatments for back pain can actually be the cause for continuing problems. If you have tried NSAID medications (like Ibuprofen or Naproxen), nerve blocks, acupuncture or chiropractic adjustments, and have not found relief, join our growing patient list of people who have benefited from comprehensive treatment.\r\n<h4>Does Prolotherapy Back Treatment Work?</h4>\r\nWe are very successful at treating people for back and pelvic pain with our Prolotherapy Back treatment. We get them back to their sport without surgery, without medications, and without extended time off! To properly treat the lower back, the whole area needs to be treated. Especially in cases of sport injury trauma, patients find better and faster relief from the techniques used here at OrthoRegen. We will work to rehabilitate the whole athlete through nutritional and exercise regimens.\r\n\r\nIn our experience, the preferred way to treat back and pelvic with a comprehensive program of <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. In that way, patients see long term optimal results.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common back and pelvic pains and injuries that we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Back pain</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Buttock pain</li>\r\n 	<li>Coccyx pain</li>\r\n 	<li>Degenerated discs</li>\r\n 	<li>Herniated discs</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Failed back fusion pain</li>\r\n 	<li>Failed back surgery syndrome</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>Muscle spasms</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Pelvic pain</li>\r\n 	<li>Retrolisthesis</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tailbone pain</li>\r\n 	<li>Thoracic spine pain</li>\r\n 	<li>SI instability</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Yoga injury</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy back treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-310-956-0569\">(310) 956-0569</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Prolotherapy Back Testimonials page</a>.','Back Injury Treatment','','inherit','closed','closed','','567-revision-v1','','','2019-06-12 03:57:28','2019-06-12 03:57:28','',567,'https://www.drfields.com/567-revision-v1/',0,'revision','',0),(1289,8,'2019-06-12 05:04:44','2019-06-12 05:04:44','<div class=\"youtube-click-div video_left\">\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur – Low Back\"]\n<strong>Wilbur - Low Back</strong>\n</div>\n\n<h4>Prolotherapy Back and Pelvic Treatment</h4>\nOne of the main reasons patients come to OrthoRegen is for back relief with our Prolotherapy Back Treatment. Back or pelvic injury is also the main reason our patients say, they have had to stop participation in sports.\n\nMany of the traditional treatments for back pain can actually be the cause for continuing problems. If you have tried NSAID medications (like Ibuprofen or Naproxen), nerve blocks, acupuncture or chiropractic adjustments, and have not found relief, join our growing patient list of people who have benefited from comprehensive treatment.\n\n<h4>Does Prolotherapy Back Treatment Work?</h4>\nWe are very successful at treating people for back and pelvic pain with our Prolotherapy Back treatment. We get them back to their sport without surgery, without medications, and without extended time off! To properly treat the lower back, the whole area needs to be treated. Especially in cases of sport injury trauma, patients find better and faster relief from the techniques used here at OrthoRegen. We will work to rehabilitate the whole athlete through nutritional and exercise regimens.\n\nIn our experience, the preferred way to treat back and pelvic with a comprehensive program of <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. In that way, patients see long term optimal results.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<strong>Some of the most common back and pelvic pains and injuries that we treat with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> are:</strong>\n<ul>\n 	<li>Arthritis</li>\n 	<li>Back pain</li>\n 	<li>Bulging discs</li>\n 	<li>Buttock pain</li>\n 	<li>Coccyx pain</li>\n 	<li>Degenerated discs</li>\n 	<li>Herniated discs</li>\n 	<li>Ischial tuberosity pain</li>\n 	<li>Failed back fusion pain</li>\n 	<li>Failed back surgery syndrome</li>\n 	<li>Lower back pain</li>\n 	<li>Muscle spasms</li>\n 	<li>Pelvic floor dysfunction</li>\n 	<li>Pelvic pain</li>\n 	<li>Retrolisthesis</li>\n 	<li>Sacroiliac injury</li>\n 	<li>Stiffness</li>\n 	<li>Tailbone pain</li>\n 	<li>Thoracic spine pain</li>\n 	<li>SI instability</li>\n 	<li>Subluxation</li>\n 	<li>Yoga injury</li>\n</ul>\n<h4>Are You A Candidate for Prolotherapy?</h4>\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy back treatment, as well as <a href=\"https://www.drfields.com/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+1-310-956-0569\">(310) 956-0569</a>.\n\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Prolotherapy Back Testimonials page</a>.','Back Injury Treatment','','inherit','closed','closed','','567-autosave-v1','','','2019-06-12 05:04:44','2019-06-12 05:04:44','',567,'https://www.drfields.com/567-autosave-v1/',0,'revision','',0),(1290,8,'2019-06-12 04:00:42','2019-06-12 04:00:42','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur – Low Back\"]\r\n<strong>Wilbur - Low Back</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Back and Pelvic Treatment</h4>\r\nOne of the main reasons patients come to OrthoRegen is for back relief with our Prolotherapy Back Treatment. Back or pelvic injury is also the main reason our patients say, they have had to stop participation in sports.\r\n\r\nMany of the traditional treatments for back pain can actually be the cause for continuing problems. If you have tried NSAID medications (like Ibuprofen or Naproxen), nerve blocks, acupuncture or chiropractic adjustments, and have not found relief, join our growing patient list of people who have benefited from comprehensive treatment.\r\n<h4>Does Prolotherapy Back Treatment Work?</h4>\r\nWe are very successful at treating people for back and pelvic pain with our Prolotherapy Back treatment. We get them back to their sport without surgery, without medications, and without extended time off! To properly treat the lower back, the whole area needs to be treated. Especially in cases of sport injury trauma, patients find better and faster relief from the techniques used here at OrthoRegen. We will work to rehabilitate the whole athlete through nutritional and exercise regimens.\r\n\r\nIn our experience, the preferred way to treat back and pelvic with a comprehensive program of <a title=\"Prolotherapy\" href=\"https://www.drfields.com/prolotherapy-treatment-overview/\">Prolotherapy</a>. In that way, patients see long term optimal results.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common back and pelvic pains and injuries that we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/prolotherapy-treatment-overview/\">Prolotherapy</a> are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Back pain</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Buttock pain</li>\r\n 	<li>Coccyx pain</li>\r\n 	<li>Degenerated discs</li>\r\n 	<li>Herniated discs</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Failed back fusion pain</li>\r\n 	<li>Failed back surgery syndrome</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>Muscle spasms</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Pelvic pain</li>\r\n 	<li>Retrolisthesis</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tailbone pain</li>\r\n 	<li>Thoracic spine pain</li>\r\n 	<li>SI instability</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Yoga injury</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy back treatment, as well as <a href=\"https://www.drfields.com/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+1-310-956-0569\">(310) 956-0569</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Prolotherapy Back Testimonials page</a>.','Back Injury Treatment','','inherit','closed','closed','','567-revision-v1','','','2019-06-12 04:00:42','2019-06-12 04:00:42','',567,'https://www.drfields.com/567-revision-v1/',0,'revision','',0),(1291,8,'2019-06-12 04:18:48','2019-06-12 04:18:48','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Elbow Treatment</h4>\r\nOrthoRegen offers you the most effective treatment for elbow injuries. Avoid the long term side effects of NSAID and cortisone injections with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> elbow treatment. We offer our patients experience and knowledgeable treatment for their elbow pain and injuries. From future Olympians to weekend warriors, we can help you return to your sport without surgery, without pain medications and without extended periods of time away from your sport.\r\n<h4>Why Prolotherapy Elbow Treatment with Dr. Fields?</h4>\r\nDr. Peter Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, is an experienced marathoner, long-distance cyclist and swimmer. He has participated in Triathlons as well as Ironman competitions. He understands the passion that athletes have to train and compete. In our experience, our comprehensive Prolotherapy elbow treatment is the best way to treat elbow injuries for long term positive results.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common elbow pain and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li><a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Elbow-Pain\">Elbow pain</a></li>\r\n 	<li>Elbow sprain</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>Lateral epicondylitis</li>\r\n 	<li>Medial epicondylitis</li>\r\n 	<li>Post-surgical elbow pain</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendinosis</li>\r\n 	<li>Tennis elbow</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy elbow treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-424-325-6695\">(310) 928-2886</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Prolotherapy Elbow Testimonials page</a>.','Elbow Injury Treatment','','inherit','closed','closed','','582-revision-v1','','','2019-06-12 04:18:48','2019-06-12 04:18:48','',582,'https://www.drfields.com/582-revision-v1/',0,'revision','',0),(1292,8,'2019-06-12 04:19:06','2019-06-12 04:19:06','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer- Elbow\"]\r\n<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Elbow Treatment</h4>\r\nOrthoRegen offers you the most effective treatment for elbow injuries. Avoid the long term side effects of NSAID and cortisone injections with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> elbow treatment. We offer our patients experience and knowledgeable treatment for their elbow pain and injuries. From future Olympians to weekend warriors, we can help you return to your sport without surgery, without pain medications and without extended periods of time away from your sport.\r\n<h4>Why Prolotherapy Elbow Treatment with Dr. Fields?</h4>\r\nDr. Peter Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, is an experienced marathoner, long-distance cyclist and swimmer. He has participated in Triathlons as well as Ironman competitions. He understands the passion that athletes have to train and compete. In our experience, our comprehensive Prolotherapy elbow treatment is the best way to treat elbow injuries for long term positive results.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common elbow pain and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li><a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Elbow-Pain\">Elbow pain</a></li>\r\n 	<li>Elbow sprain</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>Lateral epicondylitis</li>\r\n 	<li>Medial epicondylitis</li>\r\n 	<li>Post-surgical elbow pain</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendinosis</li>\r\n 	<li>Tennis elbow</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy elbow treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-424-325-6695\">(310) 928-2886</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Prolotherapy Elbow Testimonials page</a>.','Elbow Injury Treatment','','inherit','closed','closed','','582-revision-v1','','','2019-06-12 04:19:06','2019-06-12 04:19:06','',582,'https://www.drfields.com/582-revision-v1/',0,'revision','',0),(1293,8,'2019-06-12 04:28:03','2019-06-12 04:28:03','Foot Injury Treatment Joel','Foot Injury Treatment Joel','Foot Injury Treatment Joel','inherit','open','closed','','foot-injury-treatment-joel','','','2019-06-12 04:28:03','2019-06-12 04:28:03','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg',0,'attachment','image/jpeg',0),(1294,8,'2019-06-12 04:29:11','2019-06-12 04:29:11','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\r\n<strong>Joel - Foot</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Foot and Ankle Treatment</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Are you looking for an alternative to surgery for your chronic ankle sprains? Every day, OrthoRegen treats people with foot and ankle injuries by the use of comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> foot treatments. Nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n\r\n<h4>Why Prolotherapy Foot Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  Like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. If you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. If you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Ankle instability</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle Testimonials</a> pages.','Foot Injury Treatment','','inherit','closed','closed','','595-revision-v1','','','2019-06-12 04:29:11','2019-06-12 04:29:11','',595,'https://www.drfields.com/uncategorized/595-revision-v1/',0,'revision','',0),(1295,8,'2019-06-12 04:32:08','2019-06-12 04:32:08','<div class=\"youtube-click-div video_left\">\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\n<strong>Joel - Foot</strong>\n</div>\n\n<h4>Prolotherapy Foot and Ankle Treatment</h4>\nAre you looking for relief from your foot pain that does not include surgery? Are you looking for an alternative to surgery for your chronic ankle sprains? Every day, OrthoRegen treats people with foot and ankle injuries by the use of comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> foot treatments. Nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\n\n<h4>Why Prolotherapy Foot Treatment by Dr. Fields?</h4>\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  Like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\n\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. If you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. If you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\n\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\n\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> at OrthoRegen are:</strong>\n<ul>\n 	<li>Achilles tendinopathy</li>\n 	<li>Ankle fusion pain</li>\n 	<li>Ankle instability</li>\n 	<li>Ankle pain</li>\n 	<li>Ankle sprains</li>\n 	<li>Arthritis</li>\n 	<li>Bunion pain</li>\n 	<li>Fallen arch</li>\n 	<li>Hammertoe pain</li>\n 	<li>Heel pain</li>\n 	<li>Heel spur</li>\n 	<li>Metatarsalgia</li>\n 	<li>Morton\'s neuroma</li>\n 	<li>Pain after ankle surgery</li>\n 	<li>Pain after foot surgery</li>\n 	<li>Plantar fasciitis</li>\n 	<li>Tarsal tunnel syndrome</li>\n 	<li>Tendonitis</li>\n 	<li>Toe pain</li>\n 	<li>Turf toe</li>\n</ul>\n\n<h4>Are You A Candidate for Prolotherapy?</h4>\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\n\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle Testimonials</a> pages.','Foot Injury Treatment','','inherit','closed','closed','','595-autosave-v1','','','2019-06-12 04:32:08','2019-06-12 04:32:08','',595,'https://www.drfields.com/uncategorized/595-autosave-v1/',0,'revision','',0),(1296,8,'2019-06-12 04:33:18','2019-06-12 04:33:18','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\r\n<strong>Joel - Foot</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Foot and Ankle Treatment</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Are you looking for an alternative to surgery for your chronic ankle sprains? Every day, OrthoRegen treats people with foot and ankle injuries by the use of comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> foot treatments. Nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n\r\n<h4>Why Prolotherapy Foot Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  Like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. If you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. If you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel:+1-4243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Ankle instability</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle Testimonials</a> pages.','Foot Injury Treatment','','inherit','closed','closed','','595-revision-v1','','','2019-06-12 04:33:18','2019-06-12 04:33:18','',595,'https://www.drfields.com/uncategorized/595-revision-v1/',0,'revision','',0),(1297,8,'2019-06-12 04:34:18','2019-06-12 04:34:18','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\r\n<strong>Joel - Foot</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Foot and Ankle Treatment</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Are you looking for an alternative to surgery for your chronic ankle sprains? Every day, OrthoRegen treats people with foot and ankle injuries by the use of comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> foot treatments. Nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n\r\n<h4>Why Prolotherapy Foot Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  Like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. If you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. If you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel:+1-4243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Ankle instability</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle Testimonials</a> pages.','Foot Injury Treatment','','inherit','closed','closed','','595-revision-v1','','','2019-06-12 04:34:18','2019-06-12 04:34:18','',595,'https://www.drfields.com/uncategorized/595-revision-v1/',0,'revision','',0),(1298,8,'2019-06-12 04:35:25','2019-06-12 04:35:25','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\r\n<strong>Joel - Foot</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Foot and Ankle Treatment</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Are you looking for an alternative to surgery for your chronic ankle sprains? Every day, OrthoRegen treats people with foot and ankle injuries by the use of comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> foot treatments. Nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n\r\n<h4>Why Prolotherapy Foot Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  Like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. If you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. If you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Ankle instability</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle Testimonials</a> pages.','Foot Injury Treatment','','inherit','closed','closed','','595-revision-v1','','','2019-06-12 04:35:25','2019-06-12 04:35:25','',595,'https://www.drfields.com/uncategorized/595-revision-v1/',0,'revision','',0),(1299,8,'2019-06-12 04:37:43','2019-06-12 04:37:43','Suzie Wrist','Suzie Wrist','Suzie Wrist','inherit','open','closed','','suzie-wrist','','','2019-06-12 04:37:43','2019-06-12 04:37:43','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg',0,'attachment','image/jpeg',0),(1300,8,'2019-06-12 04:40:15','2019-06-12 04:40:15','<div class=\"youtube-click-div video_left\">\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Hand Injury Treatment Suzie Wrist\"]\n<strong>Suzie - Wrist</strong>\n</div>\n<h4>Prolotherapy Hand and Wrist Injuries and Treatment</h4>\nWhether you are suffering from a sprained finger from football or baseball, or wrist pain from tennis or golf, OrthoRegen treats numerous finger, hand and wrist injuries with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\n\">Prolotherapy</a> hand treatments. We can treat your pain or injury without surgery, without pain medications or without extended time away from training and competition.\n\nIn our experience, comprehensive Prolotherapy can successfully treat pain in your fingers, hands and wrists, with optimal long term results. Dr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, can consult with you to determine if you are a candidate for <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Because of his participation in Triathlons and Ironman competitions, he understands your desire to return quickly to the sports in which you participate.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<h4>Common Hand and Wrist Injuries Treatable by Prolotheraphy</h4>\nThe most common finger, wrist and hand pain and injuries we treat with comprehensive Prolotherapy are:\n<ul>\n 	<li>Arthritis</li>\n 	<li>Baseball injuries</li>\n 	<li>Carpal tunnel</li>\n 	<li>Finger pain</li>\n 	<li>Football injuries</li>\n 	<li>Golf injuries</li>\n 	<li>Hand pain</li>\n 	<li>Overuse injury</li>\n 	<li>Sprain injury</li>\n 	<li>Stiffness</li>\n 	<li>Tennis injuries</li>\n 	<li>Thumb pain</li>\n 	<li>Wrist pain</li>\n</ul>\n<h4>Are You A Candidate for Prolotherapy?</h4>\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy hand and wrist treatments, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\n\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Prolotherapy Hand and Wrist Testimonials page</a>.','Hand Injury Treatment','','inherit','closed','closed','','615-autosave-v1','','','2019-06-12 04:40:15','2019-06-12 04:40:15','',615,'https://www.drfields.com/uncategorized/615-autosave-v1/',0,'revision','',0),(1301,8,'2019-06-12 04:39:12','2019-06-12 04:39:12','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Hand Injury Treatment Suzie Wrist\"]\r\n<strong>Suzie - Wrist</strong>\r\n</div>\r\n<h4>Prolotherapy Hand and Wrist Injuries and Treatment</h4>\r\nWhether you are suffering from a sprained finger from football or baseball, or wrist pain from tennis or golf, OrthoRegen treats numerous finger, hand and wrist injuries with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> hand treatments. We can treat your pain or injury without surgery, without pain medications or without extended time away from training and competition.\r\n\r\nIn our experience, comprehensive Prolotherapy can successfully treat pain in your fingers, hands and wrists, with optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc<sup>®</sup></a>, can consult with you to determine if you are a candidate for <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. Because of his participation in Triathlons and Ironman competitions, he understands your desire to return quickly to the sports in which you participate.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>Common Hand and Wrist Injuries Treatable by Prolotheraphy</h4>\r\nThe most common finger, wrist and hand pain and injuries we treat with comprehensive Prolotherapy are:\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Baseball injuries</li>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Finger pain</li>\r\n 	<li>Football injuries</li>\r\n 	<li>Golf injuries</li>\r\n 	<li>Hand pain</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Sprain injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tennis injuries</li>\r\n 	<li>Thumb pain</li>\r\n 	<li>Wrist pain</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy hand and wrist treatments, as well as <a href=\"https://www.drfields.com/Regenerative-Techniques/PRP-Treatment\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel://1-4243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Prolotherapy Hand and Wrist Testimonials page</a>.','Hand Injury Treatment','','inherit','closed','closed','','615-revision-v1','','','2019-06-12 04:39:12','2019-06-12 04:39:12','',615,'https://www.drfields.com/uncategorized/615-revision-v1/',0,'revision','',0),(1302,8,'2019-06-12 04:40:56','2019-06-12 04:40:56','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Hand Injury Treatment Suzie Wrist\"]\r\n<strong>Suzie - Wrist</strong>\r\n</div>\r\n<h4>Prolotherapy Hand and Wrist Injuries and Treatment</h4>\r\nWhether you are suffering from a sprained finger from football or baseball, or wrist pain from tennis or golf, OrthoRegen treats numerous finger, hand and wrist injuries with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\r\n\">Prolotherapy</a> hand treatments. We can treat your pain or injury without surgery, without pain medications or without extended time away from training and competition.\r\n\r\nIn our experience, comprehensive Prolotherapy can successfully treat pain in your fingers, hands and wrists, with optimal long term results. Dr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, can consult with you to determine if you are a candidate for <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Because of his participation in Triathlons and Ironman competitions, he understands your desire to return quickly to the sports in which you participate.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Common Hand and Wrist Injuries Treatable by Prolotheraphy</h4>\r\nThe most common finger, wrist and hand pain and injuries we treat with comprehensive Prolotherapy are:\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Baseball injuries</li>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Finger pain</li>\r\n 	<li>Football injuries</li>\r\n 	<li>Golf injuries</li>\r\n 	<li>Hand pain</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Sprain injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tennis injuries</li>\r\n 	<li>Thumb pain</li>\r\n 	<li>Wrist pain</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy hand and wrist treatments, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Knee-Testimonials\">Prolotherapy Hand and Wrist Testimonials page</a>.','Hand Injury Treatment','','inherit','closed','closed','','615-revision-v1','','','2019-06-12 04:40:56','2019-06-12 04:40:56','',615,'https://www.drfields.com/uncategorized/615-revision-v1/',0,'revision','',0),(1303,8,'2019-10-21 08:54:52','2019-10-21 08:54:52','<h4>Sports Injuries Treatment</h4>\nHave sports injuries stopped you? Get back in the game with Prolotherapy and Dr. Peter A. Fields, The Athletic Doc®. At OrthoRegen we offer innovative, non-surgical treatments for your sports injury or chronic pain problems. Without unnecessary medication, prescriptions, cortisone shots or surgery, Prolotherapy can regenerate damaged or worn ligaments and strengthen weakened tendons. The most beneficial aspect of our non-surgical sports injuries treatment is that you can continue to train while you receive Prolotherapy treatments. We treat athletes of all skill and age levels: high school to college; amateur to professional athletes.\n\n<h4>How Can Prolotherapy Help Your Sports Injury?</h4>\nProlotherapy is an innovative treatment that stimulates the immune system to repair damaged tissue.”Prolo” comes from the word proliferate. Prolotherapy then, describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and other sports injuries. Receive treatment for your sports injuries with comprehensive Prolotherapy at OrthoRegen.\n\n<h4>Are You Suffering from a Sports Injury?</h4>\n<ul>\n 	<li><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">K</a><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">nee Pain</a></li>\n 	<li> ACL Tear</li>\n 	<li>Torn Meniscus</li>\n 	<li><a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Neck-Pain\">Neck pain</a></li>\n 	<li>Back Pain</li>\n 	<li>Shin Splints</li>\n 	<li>Plantar Fasciitis</li>\n 	<li>Hamstring Strain</li>\n 	<li>IT Band Injury</li>\n 	<li>Turf Toe</li>\n</ul>\n<strong><em> Prolotherapy Sports Injuries Treatment can help you get back in the game – and get back quickly!</em></strong>\n\n<h4>Prolotherapy Doctor Treats Sports Injuries Without Surgery</h4>\nReceive treatment for your sports injuries by Ironman Triathlete Dr. Peter A. Fields. For over 25 years, Dr. Fields has been active in the sport of Triathlon. It is his experience as an athlete that allows him to understand the potential for injury and the demands of sports on the physical body. He also understands the passion athletes have to get back to training and competition, and their need to recover quickly from injury, because he has been there. In November 2012, Dr. Fields completed his second Ironman Triathlon, beating his 2011 time by better than 14 minutes. Dr. Fields is known as The Athletic Doc®. Wouldn’t you want to be treated by a sports doctor who is also an athlete?\n\nOur medical team finds that treating athletes is very rewarding. We can utilize a comprehensive health approach to help you reach your peak physical performance. <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> allows you to get back to training within a couple of days and does not involve periods of long recovery. Prolotherapy involves the injection of natural substances at the exact site of an injury. This stimulates the immune system to repair the sports injury. Areas often injured through sports related activities—ligaments, tendons, menisci, muscles, growth plates, joint capsules and cartilage are stimulated to heal. Anesthetics are also used to minimize any unpleasant pain.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<h4>Are You A Candidate for Non- Surgical Sports Injuries Treatment?</h4>\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13106272458\">(310) 627-2458</a>.\n\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Testimonials page</a>.','Sports Injuries Treatment Overview','','inherit','closed','closed','','632-autosave-v1','','','2019-10-21 08:54:52','2019-10-21 08:54:52','',632,'https://www.drfields.com/uncategorized/632-autosave-v1/',0,'revision','',0),(1304,8,'2019-06-12 04:43:07','2019-06-12 04:43:07','<h4>Sports Injuries Treatment</h4>\r\nHave sports injuries stopped you? Get back in the game with Prolotherapy and Dr. Peter A. Fields, The Athletic Doc®. At OrthoRegen we offer innovative, non-surgical treatments for your sports injury or chronic pain problems. Without unnecessary medication, prescriptions, cortisone shots or surgery, Prolotherapy can regenerate damaged or worn ligaments and strengthen weakened tendons. The most beneficial aspect of our non-surgical sports injuries treatment is that you can continue to train while you receive Prolotherapy treatments. We treat athletes of all skill and age levels: high school to college; amateur to professional athletes.\r\n\r\n<h4>How Can Prolotherapy Help Your Sports Injury?</h4>\r\nProlotherapy is an innovative treatment that stimulates the immune system to repair damaged tissue.”Prolo” comes from the word proliferate. Prolotherapy then, describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and other sports injuries. Receive treatment for your sports injuries with comprehensive Prolotherapy at OrthoRegen.\r\n\r\n<h4>Are You Suffering from a Sports Injury?</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">K</a><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">nee Pain</a></li>\r\n 	<li> ACL Tear</li>\r\n 	<li>Torn Meniscus</li>\r\n 	<li><a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Neck-Pain\">Neck pain</a></li>\r\n 	<li>Back Pain</li>\r\n 	<li>Shin Splints</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>Hamstring Strain</li>\r\n 	<li>IT Band Injury</li>\r\n 	<li>Turf Toe</li>\r\n</ul>\r\n<strong><em> Prolotherapy Sports Injuries Treatment can help you get back in the game – and get back quickly!</em></strong>\r\n\r\n<h4>Prolotherapy Doctor Treats Sports Injuries Without Surgery</h4>\r\nReceive treatment for your sports injuries by Ironman Triathlete Dr. Peter A. Fields. For over 25 years, Dr. Fields has been active in the sport of Triathlon. It is his experience as an athlete that allows him to understand the potential for injury and the demands of sports on the physical body. He also understands the passion athletes have to get back to training and competition, and their need to recover quickly from injury, because he has been there. In November 2012, Dr. Fields completed his second Ironman Triathlon, beating his 2011 time by better than 14 minutes. Dr. Fields is known as The Athletic Doc®. Wouldn’t you want to be treated by a sports doctor who is also an athlete?\r\n\r\nOur medical team finds that treating athletes is very rewarding. We can utilize a comprehensive health approach to help you reach your peak physical performance. <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> allows you to get back to training within a couple of days and does not involve periods of long recovery. Prolotherapy involves the injection of natural substances at the exact site of an injury. This stimulates the immune system to repair the sports injury. Areas often injured through sports related activities—ligaments, tendons, menisci, muscles, growth plates, joint capsules and cartilage are stimulated to heal. Anesthetics are also used to minimize any unpleasant pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Are You A Candidate for Non- Surgical Sports Injuries Treatment?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13106272458\">(310) 627-2458</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Knee-Testimonials\">Testimonials page</a>.','Sports Injuries Treatment Overview','','inherit','closed','closed','','632-revision-v1','','','2019-06-12 04:43:07','2019-06-12 04:43:07','',632,'https://www.drfields.com/uncategorized/632-revision-v1/',0,'revision','',0),(1305,8,'2019-06-12 04:43:47','2019-06-12 04:43:47','<h4>Sports Injuries Treatment</h4>\r\nHave sports injuries stopped you? Get back in the game with Prolotherapy and Dr. Peter A. Fields, The Athletic Doc®. At OrthoRegen we offer innovative, non-surgical treatments for your sports injury or chronic pain problems. Without unnecessary medication, prescriptions, cortisone shots or surgery, Prolotherapy can regenerate damaged or worn ligaments and strengthen weakened tendons. The most beneficial aspect of our non-surgical sports injuries treatment is that you can continue to train while you receive Prolotherapy treatments. We treat athletes of all skill and age levels: high school to college; amateur to professional athletes.\r\n\r\n<h4>How Can Prolotherapy Help Your Sports Injury?</h4>\r\nProlotherapy is an innovative treatment that stimulates the immune system to repair damaged tissue.”Prolo” comes from the word proliferate. Prolotherapy then, describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and other sports injuries. Receive treatment for your sports injuries with comprehensive Prolotherapy at OrthoRegen.\r\n\r\n<h4>Are You Suffering from a Sports Injury?</h4>\r\n<ul>\r\n 	<li><a href=\"/Conditions/Sports-Injuries/Knee-Injury-Treatment\">K</a><a href=\"/Conditions/Sports-Injuries/Knee-Injury-Treatment\">nee Pain</a></li>\r\n 	<li> ACL Tear</li>\r\n 	<li>Torn Meniscus</li>\r\n 	<li><a href=\"/Chronic-Pain/Chronic-Neck-Pain\">Neck pain</a></li>\r\n 	<li>Back Pain</li>\r\n 	<li>Shin Splints</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>Hamstring Strain</li>\r\n 	<li>IT Band Injury</li>\r\n 	<li>Turf Toe</li>\r\n</ul>\r\n<strong><em> Prolotherapy Sports Injuries Treatment can help you get back in the game – and get back quickly!</em></strong>\r\n\r\n<h4>Prolotherapy Doctor Treats Sports Injuries Without Surgery</h4>\r\nReceive treatment for your sports injuries by Ironman Triathlete Dr. Peter A. Fields. For over 25 years, Dr. Fields has been active in the sport of Triathlon. It is his experience as an athlete that allows him to understand the potential for injury and the demands of sports on the physical body. He also understands the passion athletes have to get back to training and competition, and their need to recover quickly from injury, because he has been there. In November 2012, Dr. Fields completed his second Ironman Triathlon, beating his 2011 time by better than 14 minutes. Dr. Fields is known as The Athletic Doc®. Wouldn’t you want to be treated by a sports doctor who is also an athlete?\r\n\r\nOur medical team finds that treating athletes is very rewarding. We can utilize a comprehensive health approach to help you reach your peak physical performance. <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> allows you to get back to training within a couple of days and does not involve periods of long recovery. Prolotherapy involves the injection of natural substances at the exact site of an injury. This stimulates the immune system to repair the sports injury. Areas often injured through sports related activities—ligaments, tendons, menisci, muscles, growth plates, joint capsules and cartilage are stimulated to heal. Anesthetics are also used to minimize any unpleasant pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Are You A Candidate for Non- Surgical Sports Injuries Treatment?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13106272458\">(310) 627-2458</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Knee-Testimonials\">Testimonials page</a>.','Sports Injuries Treatment Overview','','inherit','closed','closed','','632-revision-v1','','','2019-06-12 04:43:47','2019-06-12 04:43:47','',632,'https://www.drfields.com/uncategorized/632-revision-v1/',0,'revision','',0),(1306,8,'2019-06-12 04:48:09','2019-06-12 04:48:09','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Prolotherapy Hip Injury\'\"]\r\n<strong>Chris - Hip</strong>\r\n</div>\r\n<h4>Prolotherapy Hip and Groin Injury Treatment</h4>\r\nHip and groin injuries can quickly become debilitating and escalate into athletic career ending injuries. MRI and arthroscopic surgery are routinely recommended for patients. Other patients may spend months or longer on pain medication, while undergoing rounds of physical therapy. <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment offers a successful alternative to pain medication and surgery, for hip and groin injuries. OrthoRegen offers comprehensive treatment for your hip injuries and groin pain without pain medication, surgery or extended time away from the sport you love.\r\n\r\n<h4>Who Is Prolotherapy Hip Treatment For?</h4>\r\nOur patients include Olympic hopefuls to weekend warriors. Dr. Peter Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an Ironman Triathlete. He understands the concerns of injured athletes, hoping to return quickly to their chosen sport. His clinical experience has shown that Prolotherapy hip treatment is the preferred way to treat hip injuries and groin pain for optimal long term results. We can get you back into your sport without surgery, without medication, and without extended time away from your sport.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment are:</strong>\r\n<ul>\r\n 	<li>Acetabular labrum tear</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Femoroacetabular impingement</li>\r\n 	<li>Groin pain</li>\r\n 	<li>Hip instability</li>\r\n 	<li>Hip impingement</li>\r\n 	<li>Hip pain</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Post pelvic fusion pain</li>\r\n 	<li>Post-surgical hip pain</li>\r\n 	<li>Pubic symphysis injury</li>\r\n 	<li>Pubis pain</li>\r\n 	<li>Pupalgia</li>\r\n 	<li>Snapping hip syndrome</li>\r\n 	<li>Torn Labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy hip treatment, as well as PRP Prolotherapy and Stem Cell Prolotherapy. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13103407407\">(310) 340-7407</a>','Hip Injury Treatment','','inherit','closed','closed','','528-revision-v1','','','2019-06-12 04:48:09','2019-06-12 04:48:09','',528,'https://www.drfields.com/uncategorized/528-revision-v1/',0,'revision','',0),(1307,8,'2019-06-12 04:52:29','2019-06-12 04:52:29','Knee Small','Knee Small','','inherit','open','closed','','knee-small','','','2019-06-12 04:52:33','2019-06-12 04:52:33','',533,'https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg',0,'attachment','image/jpeg',0),(1308,8,'2019-06-12 04:52:38','2019-06-12 04:52:38','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Knee Treatment</h4>\r\nKnee injuries are one of the most common problems we treat with Prolotherapy knee treatment at OrthoRegen. The knee joint is one of the most crucial joints in the body. Normal knee function is vital to involvement in everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\r\n\r\nThere are also two forms of cartilage in the knee. Articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement, and the cartilage meniscus which is two semicircular discs providing cushioning and support for the bones. The knee is extremely vulnerable to injury in one or a combination of these elements. In the case of knee injury, we recommend our <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> knee treatment to strengthen and repair damaged tissue, ligaments and tendons.\r\n\r\n<h4>How Prolotherapy Knee Treatment Works</h4>\r\nOur Prolotherapy knee treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word proliferate. Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment for your knee injuries with comprehensive Prolotherapy at OrthoRegen.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13107766154\">(310) 776-6154</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<strong>Sports Injuries</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" class=\"alignright size-full wp-image-1307\" />Dr. Peter A. Fields is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>. For over 25 years Dr. Fields has been active in the sport of Triathlon. In November 2012 he completed his second Ironman Triathlon, beating his time by 14 minutes. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nContact us to see if you are a candidate for <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\r\n\r\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>ACL tear Anterior Cruciate Ligament injury</li>\r\n 	<li>Arthritis of the knee</li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li>Chondromalacia patellae</li>\r\n 	<li>Complex meniscus tear</li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Knee pain after surgery</li>\r\n 	<li>Knee popping</li>\r\n 	<li>Knee replacement pain</li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li>Ligament laxity</li>\r\n 	<li>Ligament sprain</li>\r\n 	<li>Ligament tear</li>\r\n 	<li>Medial Collateral Ligament (MCL) injury</li>\r\n 	<li>Meniscus tear</li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li>Patellofemoral syndrome</li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li>Runners knee</li>\r\n 	<li>Tendinosis</li>\r\n</ul>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-revision-v1','','','2019-06-12 04:52:38','2019-06-12 04:52:38','',533,'https://www.drfields.com/uncategorized/533-revision-v1/',0,'revision','',0),(1309,8,'2019-06-12 04:54:42','2019-06-12 04:54:42','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Knee Treatment</h4>\r\nKnee injuries are one of the most common problems we treat with Prolotherapy knee treatment at OrthoRegen. The knee joint is one of the most crucial joints in the body. Normal knee function is vital to involvement in everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\r\n\r\nThere are also two forms of cartilage in the knee. Articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement, and the cartilage meniscus which is two semicircular discs providing cushioning and support for the bones. The knee is extremely vulnerable to injury in one or a combination of these elements. In the case of knee injury, we recommend our <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> knee treatment to strengthen and repair damaged tissue, ligaments and tendons.\r\n\r\n<h4>How Prolotherapy Knee Treatment Works</h4>\r\nOur Prolotherapy knee treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word proliferate. Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment for your knee injuries with comprehensive Prolotherapy at OrthoRegen.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13107766154\">(310) 776-6154</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<div class=\"chronic-bar\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2>Sports Injuries</h2>	\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"left_menu_articles_item more_items\">\r\n<a href=\"/Conditions/Sports-Injuries/Knee-Injuries\">\r\n<img alt=\"Knee Injuries\" title=\"Knee Injuries\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain.png\">\r\n<span class=\"left_menu_articles_text more_items\"><strong>Knee<br>\r\nInjuries</strong></span></a>\r\n</div>\r\n<div class=\"left_menu_articles_item more_items\">\r\n<a href=\"/Conditions/Sports-Injuries/Shoulder-Injuries\"><img alt=\"shoulder pain\" title=\"shoulder pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/shoulder-pain.png\">\r\n<span class=\"left_menu_articles_text more_items\"><strong>Shoulder<br>\r\nInjuries</strong></span></a>\r\n</div>\r\n<div class=\"left_menu_articles_item more_items\">\r\n<a href=\"/Conditions/Sports-Injuries/Elbow-Injuries\"><img alt=\"elbow pain\" title=\"elbow pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain.png\">\r\n<span class=\"left_menu_articles_text more_items\"><strong>Elbow<br>\r\nInjuries</strong></span></a>\r\n</div>\r\n<div class=\"left_menu_articles_item more_items\">\r\n<a href=\"/Conditions/Sports-Injuries/Hand-Injuries\"><img alt=\"finger pain\" title=\"finger pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finger-pain.png\">\r\n<span class=\"left_menu_articles_text more_items\"><strong>Hand<br>\r\nInjuries</strong></span></a>\r\n</div>\r\n<div class=\"left_menu_articles_item more_items\">\r\n<a href=\"/Conditions/Sports-Injuries/Neck-Injuries\"><img alt=\"neck pain\" title=\"neck pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/neck-pain.png\">\r\n<span class=\"left_menu_articles_text more_items\"><strong>Neck<br>\r\nInjuries</strong></span></a>\r\n</div>\r\n<div class=\"left_menu_articles_item more_items\">\r\n<a href=\"/Conditions/Sports-Injuries/Back-Pain\"><img alt=\"back pain\" title=\"back pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-pain.png\">\r\n<span class=\"left_menu_articles_text more_items\"><strong>Back<br>\r\nInjuries</strong></span></a>\r\n</div>\r\n<div class=\"left_menu_articles_item more_items\">\r\n<a href=\"/Conditions/Sports-Injuries/Hip-Injuries\"><img alt=\"hip pain\" title=\"hip pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-pain.png\">\r\n<span class=\"left_menu_articles_text more_items\"><strong>Hip<br>\r\nInjuries</strong></span></a>\r\n</div>\r\n<div class=\"left_menu_articles_item more_items\">\r\n<a href=\"/Conditions/Sports-Injuries/Foot-Injuries\"><img alt=\"foot pain\" title=\"foot pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain.png\">\r\n<span class=\"left_menu_articles_text more_items\"><strong>Foot<br>\r\nInjuries</strong></span></a>\r\n</div>\r\n<div class=\"clear\"></div>\r\n</div>	\r\n</div>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" class=\"alignright size-full wp-image-1307\" />Dr. Peter A. Fields is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>. For over 25 years Dr. Fields has been active in the sport of Triathlon. In November 2012 he completed his second Ironman Triathlon, beating his time by 14 minutes. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nContact us to see if you are a candidate for <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\r\n\r\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>ACL tear Anterior Cruciate Ligament injury</li>\r\n 	<li>Arthritis of the knee</li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li>Chondromalacia patellae</li>\r\n 	<li>Complex meniscus tear</li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Knee pain after surgery</li>\r\n 	<li>Knee popping</li>\r\n 	<li>Knee replacement pain</li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li>Ligament laxity</li>\r\n 	<li>Ligament sprain</li>\r\n 	<li>Ligament tear</li>\r\n 	<li>Medial Collateral Ligament (MCL) injury</li>\r\n 	<li>Meniscus tear</li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li>Patellofemoral syndrome</li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li>Runners knee</li>\r\n 	<li>Tendinosis</li>\r\n</ul>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-revision-v1','','','2019-06-12 04:54:42','2019-06-12 04:54:42','',533,'https://www.drfields.com/uncategorized/533-revision-v1/',0,'revision','',0),(1310,8,'2019-06-12 04:56:06','2019-06-12 04:56:06','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Knee Treatment</h4>\r\nKnee injuries are one of the most common problems we treat with Prolotherapy knee treatment at OrthoRegen. The knee joint is one of the most crucial joints in the body. Normal knee function is vital to involvement in everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\r\n\r\nThere are also two forms of cartilage in the knee. Articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement, and the cartilage meniscus which is two semicircular discs providing cushioning and support for the bones. The knee is extremely vulnerable to injury in one or a combination of these elements. In the case of knee injury, we recommend our <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> knee treatment to strengthen and repair damaged tissue, ligaments and tendons.\r\n\r\n<h4>How Prolotherapy Knee Treatment Works</h4>\r\nOur Prolotherapy knee treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word proliferate. Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment for your knee injuries with comprehensive Prolotherapy at OrthoRegen.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13107766154\">(310) 776-6154</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" class=\"alignright size-full wp-image-1307\" />Dr. Peter A. Fields is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>. For over 25 years Dr. Fields has been active in the sport of Triathlon. In November 2012 he completed his second Ironman Triathlon, beating his time by 14 minutes. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nContact us to see if you are a candidate for <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\r\n\r\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>ACL tear Anterior Cruciate Ligament injury</li>\r\n 	<li>Arthritis of the knee</li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li>Chondromalacia patellae</li>\r\n 	<li>Complex meniscus tear</li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Knee pain after surgery</li>\r\n 	<li>Knee popping</li>\r\n 	<li>Knee replacement pain</li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li>Ligament laxity</li>\r\n 	<li>Ligament sprain</li>\r\n 	<li>Ligament tear</li>\r\n 	<li>Medial Collateral Ligament (MCL) injury</li>\r\n 	<li>Meniscus tear</li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li>Patellofemoral syndrome</li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li>Runners knee</li>\r\n 	<li>Tendinosis</li>\r\n</ul>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-revision-v1','','','2019-06-12 04:56:06','2019-06-12 04:56:06','',533,'https://www.drfields.com/uncategorized/533-revision-v1/',0,'revision','',0),(1311,8,'2019-06-12 04:58:22','2019-06-12 04:58:22','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\r\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\r\n\r\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> neck treatment at OrthoRegen.\r\n\r\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\r\nDr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\r\n\r\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Neck-Testimonials\">Neck testimonials</a> and <a href=\"/Testimonials/Headache-Testimonials\">Head Testimonials</a> pages.\r\n','Neck Injury Treatment','','inherit','closed','closed','','536-revision-v1','','','2019-06-12 04:58:22','2019-06-12 04:58:22','',536,'https://www.drfields.com/uncategorized/536-revision-v1/',0,'revision','',0),(1312,8,'2019-06-12 05:02:03','2019-06-12 05:02:03','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr.doug – Headaches & Shoulder\"]\r\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Shoulder Treatment</h4>\r\nAt OrthoRegen, shoulder injuries are one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Shoulder injuries are common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive prolotherapy shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\r\n\r\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long term results. Dr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\r\n\">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist and swimmer, understands your desire to return to full participation in your training and competition.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Acromioclavicular joint arthrosis</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation</li>\r\n 	<li>Frozen shoulder</li>\r\n 	<li>Glenoid labrum tear</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Multi-directional instability</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Shoulder dislocation</li>\r\n 	<li>Shoulder instability</li>\r\n 	<li>Shoulder pain</li>\r\n 	<li>Shoulder separation</li>\r\n 	<li>SLAP lesion</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Swimmers shoulder</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendonosis</li>\r\n 	<li>Torn labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13106272458\">(310) 627-2458</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder Prolotherapy Testimonials page</a>.\r\n\r\n','Shoulder Injury Treatment','','inherit','closed','closed','','545-revision-v1','','','2019-06-12 05:02:03','2019-06-12 05:02:03','',545,'https://www.drfields.com/uncategorized/545-revision-v1/',0,'revision','',0),(1313,8,'2019-06-12 05:05:31','2019-06-12 05:05:31','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur – Low Back\"]\r\n<strong>Wilbur - Low Back</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Back and Pelvic Treatment</h4>\r\nOne of the main reasons patients come to OrthoRegen is for back relief with our Prolotherapy Back Treatment. Back or pelvic injury is also the main reason our patients say, they have had to stop participation in sports.\r\n\r\nMany of the traditional treatments for back pain can actually be the cause for continuing problems. If you have tried NSAID medications (like Ibuprofen or Naproxen), nerve blocks, acupuncture or chiropractic adjustments, and have not found relief, join our growing patient list of people who have benefited from comprehensive treatment.\r\n\r\n<h4>Does Prolotherapy Back Treatment Work?</h4>\r\nWe are very successful at treating people for back and pelvic pain with our Prolotherapy Back treatment. We get them back to their sport without surgery, without medications, and without extended time off! To properly treat the lower back, the whole area needs to be treated. Especially in cases of sport injury trauma, patients find better and faster relief from the techniques used here at OrthoRegen. We will work to rehabilitate the whole athlete through nutritional and exercise regimens.\r\n\r\nIn our experience, the preferred way to treat back and pelvic with a comprehensive program of <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. In that way, patients see long term optimal results.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common back and pelvic pains and injuries that we treat with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Back pain</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Buttock pain</li>\r\n 	<li>Coccyx pain</li>\r\n 	<li>Degenerated discs</li>\r\n 	<li>Herniated discs</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Failed back fusion pain</li>\r\n 	<li>Failed back surgery syndrome</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>Muscle spasms</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Pelvic pain</li>\r\n 	<li>Retrolisthesis</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tailbone pain</li>\r\n 	<li>Thoracic spine pain</li>\r\n 	<li>SI instability</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Yoga injury</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy back treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13109560569\">(310) 956-0569</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Low-Back-Testimonials\">Prolotherapy Back Testimonials page</a>.','Back Injury Treatment','','inherit','closed','closed','','567-revision-v1','','','2019-06-12 05:05:31','2019-06-12 05:05:31','',567,'https://www.drfields.com/uncategorized/567-revision-v1/',0,'revision','',0),(1314,8,'2019-06-19 05:37:47','2019-06-19 05:37:47','<div class=\"youtube-click-div video_left\">\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer- Elbow\"]\n<strong>Jennifer - Elbow</strong>\n</div>\n\n<h4>Prolotherapy Elbow Treatment</h4>\nOrthoRegen offers you the most effective treatment for elbow injuries. Avoid the long term side effects of NSAID and cortisone injections with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> elbow treatment. We offer our patients experience and knowledgeable treatment for their elbow pain and injuries. From future Olympians to weekend warriors, we can help you return to your sport without surgery, without pain medications and without extended periods of time away from your sport.\n\n<h4>Why Prolotherapy Elbow Treatment with Dr. Fields?</h4>\nDr. Peter Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an experienced marathoner, long-distance cyclist and swimmer. He has participated in Triathlons as well as Ironman competitions. He understands the passion that athletes have to train and compete. In our experience, our comprehensive Prolotherapy elbow treatment is the best way to treat elbow injuries for long term positive results.\n\n<a class=\"buttonlink\" href=\"http://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<strong>Some of the most common elbow pain and injuries we treat with comprehensive Prolotherapy are:</strong>\n<ul>\n 	<li>Arthritis</li>\n 	<li><a href=\"/conditions/chronic-pain/chronic-elbow-pain/\">Elbow pain</a></li>\n 	<li>Elbow sprain</li>\n 	<li>Golfers elbow</li>\n 	<li>Lateral epicondylitis</li>\n 	<li>Medial epicondylitis</li>\n 	<li>Post-surgical elbow pain</li>\n 	<li>Tendonitis</li>\n 	<li>Tendinosis</li>\n 	<li>Tennis elbow</li>\n</ul>\n\n<h4>Are You A Candidate for Prolotherapy?</h4>\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy elbow treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\n\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(310) 928-2886</a>.\n\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Elbow-Testimonials/\">Prolotherapy Elbow Testimonials page</a>.','Elbow Injury Treatment','','inherit','closed','closed','','582-autosave-v1','','','2019-06-19 05:37:47','2019-06-19 05:37:47','',582,'https://www.drfields.com/uncategorized/582-autosave-v1/',0,'revision','',0),(1315,8,'2019-06-12 05:07:28','2019-06-12 05:07:28','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer- Elbow\"]\r\n<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Elbow Treatment</h4>\r\nOrthoRegen offers you the most effective treatment for elbow injuries. Avoid the long term side effects of NSAID and cortisone injections with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> elbow treatment. We offer our patients experience and knowledgeable treatment for their elbow pain and injuries. From future Olympians to weekend warriors, we can help you return to your sport without surgery, without pain medications and without extended periods of time away from your sport.\r\n\r\n<h4>Why Prolotherapy Elbow Treatment with Dr. Fields?</h4>\r\nDr. Peter Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an experienced marathoner, long-distance cyclist and swimmer. He has participated in Triathlons as well as Ironman competitions. He understands the passion that athletes have to train and compete. In our experience, our comprehensive Prolotherapy elbow treatment is the best way to treat elbow injuries for long term positive results.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common elbow pain and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li><a href=\"/conditions/chronic-pain/chronic-elbow-pain/\">Elbow pain</a></li>\r\n 	<li>Elbow sprain</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>Lateral epicondylitis</li>\r\n 	<li>Medial epicondylitis</li>\r\n 	<li>Post-surgical elbow pain</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendinosis</li>\r\n 	<li>Tennis elbow</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy elbow treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\r\n\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(310) 928-2886</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Elbow-Testimonials\">Prolotherapy Elbow Testimonials page</a>.','Elbow Injury Treatment','','inherit','closed','closed','','582-revision-v1','','','2019-06-12 05:07:28','2019-06-12 05:07:28','',582,'https://www.drfields.com/uncategorized/582-revision-v1/',0,'revision','',0),(1316,8,'2019-06-12 05:09:13','2019-06-12 05:09:13','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy for Chronic Neck Pain</h4>\r\nBecause the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and to rotate, but if you can\'t move your neck normally, your life can be severely disrupted and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be prolotherapy for chronic neck pain.\r\n\r\n<h4>What Causes Neck Pain?</h4>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\nSymptoms of <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands and feet.</li>\r\n</ul>\r\n\r\nIf you are experiencing minor neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty and symptoms may begin to appear years after the disease begins.\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck can be the causes of the neck pain you feel. Pain in the neck can also be caused by injury such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, a pinched nerve, meningitis, influenza, a heart attack or torticollis, can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture, and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Neck Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Neck Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic neck pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are you a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+14243256695\">(424) 325- 6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Chronic Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2019-06-12 05:09:13','2019-06-12 05:09:13','',509,'https://www.drfields.com/uncategorized/509-revision-v1/',0,'revision','',0),(1317,8,'2019-06-12 05:09:42','2019-06-12 05:09:42','<h4>Prolotherapy for Chronic Shoulder Pain</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n\r\nIt\'s easy to take your own body for granted when your body is working well. But when a part of your body, such as your shoulder, begins to hurt or hurts for an extended period of time, you quickly realize how much you depend on your shoulders for reaching, raising your arm, lifting yourself up or even just opening a cupboard. That\'s why so many people with shoulder pain or injuries look to <strong>Prolotherapy for chronic shoulder pain</strong> treatment.\r\n\r\n<h4>Causes of Shoulder Pain</h4>\r\nThe muscles and joints of the shoulder allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso and allow the arm to move a full 360°. This tremendous range of motion also makes the shoulder extremely unstable, and far more prone to dislocation and injury than other joints.\r\n\r\nBecause the rounded head or ball of the upper arm bone (humerus) is larger than the socket of the shoulder bone (scapula), this area is especially susceptible to injury. The shoulder joint consists of bones, muscles and ligaments that are all subject to stress and overuse.\r\n\r\nCommon causes of shoulder pain can be:\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation and attendant injury</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Adhesive capsulated (frozen shoulder)</li>\r\n 	<li>Fracture</li>\r\n 	<li>Poor posture.</li>\r\n</ul>\r\nBut the <strong>most common cause of chronic pain in the shoulder is arthritis</strong>. This can take many forms such as: osteoarthritis, rheumatoid, traumatic, and gouty arthritis.\r\n\r\n<h4>Which Kind of Shoulder Pain Do You Have?</h4>\r\nIf you are experiencing pain from a rotator cuff injury, you will feel a dull aching pain, which worsens with movement.  A rotator cuff injury includes any type of irritation or damage to your <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> muscles or tendons. Causes of a rotator cuff injury may include falling, lifting and repetitive arm activities — especially those done overhead.\r\n\r\n<strong>Shoulder tendonitis</strong> can produce symptoms including a slow onset of discomfort, pain in the upper third of your arm and difficulty sleeping on the side of that arm.\r\n\r\nRedness and swelling that is tender and warm to the touch can be caused by <strong>bursitis</strong>.\r\n\r\nMinor shoulder pain, ‘clicking’, ‘giving way’, or frozen shoulder, are symptoms of <strong>arthritis</strong>. Osteoarthritis can begin as early as thirty, but symptoms can appear later, as the condition progresses.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Shoulder Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Shoulder Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic shoulder pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, shoulder surgery requires you reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic shoulder pain? Would you like a <strong>second opinion before you have irreversible shoulder surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+13106272458\">(310) 627-2458</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Chronic Shoulder Pain','','inherit','closed','closed','','511-revision-v1','','','2019-06-12 05:09:42','2019-06-12 05:09:42','',511,'https://www.drfields.com/uncategorized/511-revision-v1/',0,'revision','',0),(1318,8,'2019-06-12 05:10:14','2019-06-12 05:10:14','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. It is usually the ligaments and tendons that are injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n\r\n<strong>Ligament Injuries in the Elbow</strong>\r\n\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. In tennis elbow it is the <strong>extensor tendons</strong> which move the wrist up, that can be damaged. In golfer’s elbow it is the <strong>flexor tendons</strong>, that move the wrist down, that get injured. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n\r\n<strong>The Most Common Elbow Injuries </strong>\r\n\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? Are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+13109560569\">(310) 956-0569</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Elbow Pain','','inherit','closed','closed','','524-revision-v1','','','2019-06-12 05:10:14','2019-06-12 05:10:14','',524,'https://www.drfields.com/uncategorized/524-revision-v1/',0,'revision','',0),(1340,8,'2019-06-12 06:00:21','2019-06-12 06:00:21','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/bob-2.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/Michael-Ganglion-Cyst-2.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/Keith-Shoulder-2.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','publish','closed','closed','','video-testimonials','','','2020-12-11 20:16:11','2020-12-11 20:16:11','',1268,'https://www.drfields.com/?page_id=1340',0,'page','',0),(1341,8,'2019-06-12 06:00:21','2019-06-12 06:00:21','','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-12 06:00:21','2019-06-12 06:00:21','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1342,8,'2022-12-02 06:01:39','2019-06-12 06:01:21',' ','','','publish','closed','closed','','1342','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',1268,'https://www.drfields.com/?p=1342',59,'nav_menu_item','',0),(1344,8,'2019-06-12 06:04:45','2019-06-12 06:04:45','[print_responsive_portfolio_plus_lightbox] ','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-12 06:04:45','2019-06-12 06:04:45','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1345,8,'2019-06-12 06:11:07','2019-06-12 06:11:07',' 	[web_pace_portfolio id=\"1\"] ','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-12 06:11:07','2019-06-12 06:11:07','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1347,8,'2019-06-12 06:20:07','2019-06-12 06:20:07','Stem Videotestimonial','Stem Videotestimonial','Stem Videotestimonial','inherit','open','closed','','stem-videotestimonial','','','2019-06-12 06:20:07','2019-06-12 06:20:07','',0,'https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg',0,'attachment','image/jpeg',0),(1348,8,'2019-06-12 06:20:42','2019-06-12 06:20:42','[print_responsive_portfolio_plus_lightbox] ','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-12 06:20:42','2019-06-12 06:20:42','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1349,8,'2019-06-12 06:25:02','2019-06-12 06:25:02','Hip Pain Medium','Hip Pain Medium','Hip Pain Medium','inherit','open','closed','','hip-pain-medium','','','2019-06-12 06:25:02','2019-06-12 06:25:02','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium.png',0,'attachment','image/png',0),(1350,8,'2019-06-12 06:25:04','2019-06-12 06:25:04','Finger Pain Medium','Finger Pain Medium','Finger Pain Medium','inherit','open','closed','','finger-pain-medium','','','2019-06-12 06:25:04','2019-06-12 06:25:04','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/finger-pain-medium.png',0,'attachment','image/png',0),(1351,8,'2019-06-12 06:25:05','2019-06-12 06:25:05','Elbow Pain Medium','Elbow Pain Medium','Elbow Pain Medium','inherit','open','closed','','elbow-pain-medium','','','2019-06-12 06:25:05','2019-06-12 06:25:05','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium.png',0,'attachment','image/png',0),(1352,8,'2019-06-12 06:25:08','2019-06-12 06:25:08','Back Pain Medium','Back Pain Medium','Back Pain Medium','inherit','open','closed','','back-pain-medium','','','2019-06-12 06:25:08','2019-06-12 06:25:08','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/back-pain-medium.png',0,'attachment','image/png',0),(1353,8,'2019-06-12 06:25:09','2019-06-12 06:25:09','Knee Pain Medium','Knee Pain Medium','Knee Pain Medium','inherit','open','closed','','knee-pain-medium','','','2019-06-12 06:25:09','2019-06-12 06:25:09','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium.png',0,'attachment','image/png',0),(1354,8,'2019-06-12 06:26:11','2019-06-12 06:26:11','Foot Pain Medium','Foot Pain Medium','Foot Pain Medium','inherit','open','closed','','foot-pain-medium','','','2019-06-12 06:26:11','2019-06-12 06:26:11','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png',0,'attachment','image/png',0),(1358,8,'2019-06-12 06:37:10','2019-06-12 06:37:10',' 	[showcaster id=\"1\"]','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-12 06:37:10','2019-06-12 06:37:10','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1371,8,'2019-06-12 07:39:01','2019-06-12 07:39:01','Interview With Dr. Fields','Interview With Dr. Fields','Interview With Dr. Fields','inherit','open','closed','','interview-with-dr-fields','','','2019-06-12 07:39:01','2019-06-12 07:39:01','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg',0,'attachment','image/jpeg',0),(1372,8,'2019-06-12 07:41:23','2019-06-12 07:41:23','<p><a href=\"/Low-Back-Pain-Challenges-and-Treatment\">Low Back Pain Challenges and Treatment</a></p>\r\n<p><a href=\"/ACL-Tears-and-Knee-Ligament-Injuries\">ACL Tears and Knee Ligament Injuries</a></p>\r\n<p><a href=\"/Relieve-Arthritis-Pain\">Relieve Arthritis Pain</a></p>\r\n<p><a href=\"/Failed-Back-Surgery-Syndrome\">Failed Back Surgery Syndrome</a></p>\r\n<p><a href=\"/Get-Rid-of-Knee-Arthritis-Symptoms-by-Treating-the-Source-of-the-Pain\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a></p>\r\n<p><a href=\"/Neck-Pain-Treatment-and-Relief\">Neck Pain Treatment and Relief</a></p>\r\n<p><a href=\"/articles/prolo-news/what-is-behind-joint-pain\">What is Behind Joint Pain?&nbsp;</a></p>\r\n<p><a href=\"/articles/prolo-news/Meniscus-and-Labral-Tears\">Meniscus&nbsp;and Labral Tears</a></p>\r\n<p><a href=\"/articles/prolo-news/Is-There-Help-for-Arthritis\">Is There help For Arthritis?&nbsp;</a></p>\r\n<p><a href=\"/articles/prolo-news/Runners-Knee-Pain\">Runner\'s Knee Pain</a></p>\r\n<p><a href=\"/articles/prolo-news/Do-You-Have-a-Hip-Injury\">Do You Have a Hip Injury?</a></p>\r\n<p><a href=\"/articles/prolo-news/Avoid-Joint-Replacement\">Avoid Joint Replacement</a></p>\r\n<p><a href=\"/articles/prolo-news/Stop-Shoulder-Pain-from-Rotator-Cuff-and-Other-Shoulder-Injuries\">Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries</a></p>\r\n<p><a href=\"/articles/prolo-news/Unrelenting-Back-Pain-Repaired-with-Regenerative-Orthopedics\">Unrelenting Back Pain Repaired with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/articles/prolo-news/Do-Your-Knees-Hurt\">Do Your Knees Hurt?</a></p>\r\n<p><a href=\"articles/prolo-news/Repairing-Sports-Injuries-with-Regenerative-Orthopedics\">Repairing Sports Injuries with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/articles/prolo-news/Stem-Cell-Therapy-Options-for-Arthritis\">Stem Cell Therapy Options for Arthritis</a></p>\r\n<p><a href=\"/articles/prolo-news/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-ENGLISH\">Regenerative Medicine Lecture in Mexico City (English) </a></p>\r\n<p><a href=\"/articles/prolo-news/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-SPANISH\">Regenerative Medicine Lecture in Mexico City (Spanish)</a></p>\r\n<p><a href=\"/articles/prolo-news/How-to-Avoid-Joint-Spine-Surgery-and-Live-Pain-Free\">How to Avoid Joint &amp; Spine Surgery and Live Pain Free</a></p>\r\n<p><a href=\"/articles/prolo-news/Dr-Fields-Lectures-to-Over-400-Physicians-in-Las-Vegas\">Dr. Fields Lectures to Over 400 Physicians in Las Vegas</a></p>\r\n<p><a href=\"/articles/prolo-news/2019-Lecture-Schedule\">2019 Regenerative Orthopedics Lecture Schedule</a></p>\r\n<p><a href=\"FDA-Warns-of-Serious-Neurologic-Problems-After-Epidural-Corticosteroid-Injections\">FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections</a></p>\r\n<p><a href=\"/articles/prolo-news/Prolotherapy-for-Knee-Pain-Abstract\">Prolotherapy for Knee-Pain Abstract</a></p>\r\n<p><a href=\"/articles/prolo-news/Download-Dr-Fields-Prolotherapy-Lecture-Today\">Download Dr. Fields Prolotherapy Lecture Today</a></p>\r\n<p><a href=\"/articles/prolo-news/Dr-Fields-interviewed-on-KCAL-CBS-about-Prolotherapy\">Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'</a></p>\r\n<p><a href=\"/articles/prolo-news/Dr-Fields-is-giving-a-presentation-on-prolotherapy\">Dr. Fields is giving a presentation on prolotherapy</a></p>\r\n<p><a href=\"/articles/prolo-news/New-York-Times-Article-Injections-to-Kick-Start-Tissue-Repair\">New York Times Article: Injections to Kick-Start Tissue Repair</a></p>\r\n<p><a href=\"/articles/prolo-news/View-and-Download-Dr-Fields-Latest-Lecture-on-Arthritis-and-Prolotherapy\">View and Download Dr. Fields Latest Lecture on Arthritis and Prolotherapy</a></p>\r\n<p><a href=\"/articles/prolo-news/LA-Times-Article-A-Ski-Run-for-Border\">LA Times Article \"A Ski Run for Border\"</a></p>\r\n<p><a href=\"varticles/prolo-news/Dr-Fields-Free-Open-to-the-Public-Lecture-on-Arthritis-Joint-Pain-and-Inflammation\">Dr. Fields Free Open to the Public Lecture on Arthritis, Joint Pain and Inflammation</a></p>\r\n<p><a href=\"/articles/prolo-news/What-to-Ask-When-Looking-for-a-Prolotherapist\">What to Ask When Looking for a Prolotherapist</a></p>\r\n<p><a href=\"/articles/prolo-news/Chronic-Pain-or-Injuries-Prolotherapy-Might-be-the-Answer\">Chronic Pain or Injuries? Prolotherapy Might be the Answer</a></p>\r\n<p><a href=\"/articles/prolo-news/Prolotherapy-Is-It-For-You\">Prolotherapy - Is It For You</a></p>\r\n<p><a href=\"/articles/prolo-news/Prolotherapy-for-Shoulder\">Prolotherapy for Shoulder</a></p>\r\n<p><a href=\"/articles/prolo-news/Cortisone-Is-it-Really-Good-for-You\">Cortisone - Is it Really Good for You</a></p>\r\n<p><a href=\"/articles/prolo-news/Chronic-Pain-Prolotherapy-May-be-the-Answer\">Chronic Pain? - Prolotherapy May be the Answer</a></p>\r\n<p><a href=\"/articles/prolo-news/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">Joint Surgery? Think Again! Learn About Prolotherapy</a></p>\r\n','Prolo News','','draft','open','closed','','prolo-news-2','','','2019-06-14 13:18:08','2019-06-14 13:18:08','',0,'https://www.drfields.com/?p=1372',0,'post','',0),(1373,8,'2019-06-12 07:41:23','2019-06-12 07:41:23','<p><a href=\"/Low-Back-Pain-Challenges-and-Treatment\">Low Back Pain Challenges and Treatment</a></p>\r\n<p><a href=\"/ACL-Tears-and-Knee-Ligament-Injuries\">ACL Tears and Knee Ligament Injuries</a></p>\r\n<p><a href=\"/Relieve-Arthritis-Pain\">Relieve Arthritis Pain</a></p>\r\n<p><a href=\"/Failed-Back-Surgery-Syndrome\">Failed Back Surgery Syndrome</a></p>\r\n<p><a href=\"/Get-Rid-of-Knee-Arthritis-Symptoms-by-Treating-the-Source-of-the-Pain\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a></p>\r\n<p><a href=\"/Neck-Pain-Treatment-and-Relief\">Neck Pain Treatment and Relief</a></p>\r\n<p><a href=\"/articles/prolo-news/what-is-behind-joint-pain\">What is Behind Joint Pain?&nbsp;</a></p>\r\n<p><a href=\"/articles/prolo-news/Meniscus-and-Labral-Tears\">Meniscus&nbsp;and Labral Tears</a></p>\r\n<p><a href=\"/articles/prolo-news/Is-There-Help-for-Arthritis\">Is There help For Arthritis?&nbsp;</a></p>\r\n<p><a href=\"/articles/prolo-news/Runners-Knee-Pain\">Runner\'s Knee Pain</a></p>\r\n<p><a href=\"/articles/prolo-news/Do-You-Have-a-Hip-Injury\">Do You Have a Hip Injury?</a></p>\r\n<p><a href=\"/articles/prolo-news/Avoid-Joint-Replacement\">Avoid Joint Replacement</a></p>\r\n<p><a href=\"/articles/prolo-news/Stop-Shoulder-Pain-from-Rotator-Cuff-and-Other-Shoulder-Injuries\">Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries</a></p>\r\n<p><a href=\"/articles/prolo-news/Unrelenting-Back-Pain-Repaired-with-Regenerative-Orthopedics\">Unrelenting Back Pain Repaired with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/articles/prolo-news/Do-Your-Knees-Hurt\">Do Your Knees Hurt?</a></p>\r\n<p><a href=\"articles/prolo-news/Repairing-Sports-Injuries-with-Regenerative-Orthopedics\">Repairing Sports Injuries with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/articles/prolo-news/Stem-Cell-Therapy-Options-for-Arthritis\">Stem Cell Therapy Options for Arthritis</a></p>\r\n<p><a href=\"/articles/prolo-news/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-ENGLISH\">Regenerative Medicine Lecture in Mexico City (English) </a></p>\r\n<p><a href=\"/articles/prolo-news/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-SPANISH\">Regenerative Medicine Lecture in Mexico City (Spanish)</a></p>\r\n<p><a href=\"/articles/prolo-news/How-to-Avoid-Joint-Spine-Surgery-and-Live-Pain-Free\">How to Avoid Joint &amp; Spine Surgery and Live Pain Free</a></p>\r\n<p><a href=\"/articles/prolo-news/Dr-Fields-Lectures-to-Over-400-Physicians-in-Las-Vegas\">Dr. Fields Lectures to Over 400 Physicians in Las Vegas</a></p>\r\n<p><a href=\"/articles/prolo-news/2019-Lecture-Schedule\">2019 Regenerative Orthopedics Lecture Schedule</a></p>\r\n<p><a href=\"FDA-Warns-of-Serious-Neurologic-Problems-After-Epidural-Corticosteroid-Injections\">FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections</a></p>\r\n<p><a href=\"/articles/prolo-news/Prolotherapy-for-Knee-Pain-Abstract\">Prolotherapy for Knee-Pain Abstract</a></p>\r\n<p><a href=\"/articles/prolo-news/Download-Dr-Fields-Prolotherapy-Lecture-Today\">Download Dr. Fields Prolotherapy Lecture Today</a></p>\r\n<p><a href=\"/articles/prolo-news/Dr-Fields-interviewed-on-KCAL-CBS-about-Prolotherapy\">Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'</a></p>\r\n<p><a href=\"/articles/prolo-news/Dr-Fields-is-giving-a-presentation-on-prolotherapy\">Dr. Fields is giving a presentation on prolotherapy</a></p>\r\n<p><a href=\"/articles/prolo-news/New-York-Times-Article-Injections-to-Kick-Start-Tissue-Repair\">New York Times Article: Injections to Kick-Start Tissue Repair</a></p>\r\n<p><a href=\"/articles/prolo-news/View-and-Download-Dr-Fields-Latest-Lecture-on-Arthritis-and-Prolotherapy\">View and Download Dr. Fields Latest Lecture on Arthritis and Prolotherapy</a></p>\r\n<p><a href=\"/articles/prolo-news/LA-Times-Article-A-Ski-Run-for-Border\">LA Times Article \"A Ski Run for Border\"</a></p>\r\n<p><a href=\"varticles/prolo-news/Dr-Fields-Free-Open-to-the-Public-Lecture-on-Arthritis-Joint-Pain-and-Inflammation\">Dr. Fields Free Open to the Public Lecture on Arthritis, Joint Pain and Inflammation</a></p>\r\n<p><a href=\"/articles/prolo-news/What-to-Ask-When-Looking-for-a-Prolotherapist\">What to Ask When Looking for a Prolotherapist</a></p>\r\n<p><a href=\"/articles/prolo-news/Chronic-Pain-or-Injuries-Prolotherapy-Might-be-the-Answer\">Chronic Pain or Injuries? Prolotherapy Might be the Answer</a></p>\r\n<p><a href=\"/articles/prolo-news/Prolotherapy-Is-It-For-You\">Prolotherapy - Is It For You</a></p>\r\n<p><a href=\"/articles/prolo-news/Prolotherapy-for-Shoulder\">Prolotherapy for Shoulder</a></p>\r\n<p><a href=\"/articles/prolo-news/Cortisone-Is-it-Really-Good-for-You\">Cortisone - Is it Really Good for You</a></p>\r\n<p><a href=\"/articles/prolo-news/Chronic-Pain-Prolotherapy-May-be-the-Answer\">Chronic Pain? - Prolotherapy May be the Answer</a></p>\r\n<p><a href=\"/articles/prolo-news/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">Joint Surgery? Think Again! Learn About Prolotherapy</a></p>\r\n','Prolo News','','inherit','closed','closed','','1372-revision-v1','','','2019-06-12 07:41:23','2019-06-12 07:41:23','',1372,'https://www.drfields.com/uncategorized/1372-revision-v1/',0,'revision','',0),(1374,8,'2019-06-12 07:45:49','2019-06-12 07:45:49','In Snapping Hip Syndrome, sufferers hear or feel a snap, pop, or click when they move their hip joint. Encountering these symptoms is not a normal process, but one that points to an injury or degenerative condition.&nbsp;\r\n\r\n<h5>What Is the Cause of Snapping Hip Syndrome?</h5>\r\nThere are several reasons Snapping Hip Syndrome occurs, and they can be due to problems either inside or outside of the hip joint. Most commonly, the condition involves a thick, wide tendon called the iliotibial band that runs along the outside or lateral side of the hip joint. The iliotibial band snaps over the bony prominence, a part of the thigh bone that sticks out, called the greater trochanter on the outside of the hip.&nbsp; When a person with this condition moves into a standing position for example, the band may be positioned behind the trochanter, and then when bending the hip, the band will move and “snap” over towards the front of the bony prominence. Over time, irritation from this “snapping” may also result in bursitis.\r\n\r\nAnother tendon is involved in the second cause of Snapping Hip Syndrome, as it catches on underlying bony prominences of the pelvis. The iliopsoas tendon snaps over the iliopectineal eminence when bending or flexing the hip. The annoying snapping sensation or sound is generally the only symptom involved when the iliopsoas tendon is the source.\r\n\r\nAn additional area where snapping can occur is where the ball of the hip joint fits into the socket. This snapping involves the rectus femoris tendon as it runs from inside the thighbone and up through the pelvis. When the hip joint bends and straightens, the tendon moves and snaps back and forth across the ball of the hip joint.\r\n\r\nThe least common cause of Snapping Hip Syndrome occurs inside the hip joint and involves a tear in the hip labrum or a tear in the cartilage. Bits of cartilage or even bone can also become loose inside the joint, in these types of injuries. These pieces are called loose fragments and can be an associated cause of Snapping Hip Syndrome which can cause the hip to lock up. In this scenario inside the hip, the sufferer often experiences pain that is disabling.&nbsp;\r\n\r\nA combination of the various causes, plus muscle injury can also occur. Additionally, if the problem is ongoing and the tendons remain lax over a prolonged period of time, Snapping Hip Syndrome can lead to arthritis.\r\n\r\n<h5>Who Experiences Snapping Hip Syndrome?</h5>\r\nSnapping Hip Syndrome is common in young athletes like ballet dancers, soccer players, and runners. Dancers and other athletes repetitively move their hip in order to perform their dance or sport. If the hip and the tendons are moving abnormally, such as with Snapping Hip Syndrome, the abnormal rubbing and snapping of the tissue over bony prominences will occur again and again. When experiencing the symptoms, these athletes will frequently turn to treatments to relieve tight muscles, because they attribute their problem to overtraining. Treating muscles may give some relief, but will not repair the underlying injury to the ligaments, tendons, and/or hip labrum. Treatments that repair these soft tissue structures are necessary to stabilize the hip joint and stop the snapping from occurring.\r\n\r\n<h5>Regenerative Orthopedic Treatments for Snapping Hip Syndrome</h5>\r\nRegenerative Orthopedics directed towards the strengthening of these tendons and any involved ligaments, plus repair of the hip labrum, can tighten the joint and resolve the problem. Oftentimes an underlying problem of looseness or laxity of the hip joint is involved, causing instability of the hip joint. Regenerative Orthopedics treats the hip instability, because it tightens and strengthens the injured and lax structures, and regenerates the areas that need healing. The treatment actually gets to the root cause of the problem, and is effective at repairing the injured soft tissue, and resolving the problem.&nbsp;\r\n\r\nThe injected solutions in Regenerative Orthopedic treatments draw immune cells and growth factors to the area in an effort to build new healthy soft tissue. The healing and repair boosts the body’s natural response of healing in soft-tissue injuries.&nbsp; The result is ligaments and tendons that are stronger, and no longer loose.&nbsp; The snapping and pain goes away, and the athlete can return to the sport they love.\r\n\r\nIf the cause of Snapping Hip Syndrome is a torn labrum or cartilage, a more advanced technique of Regenerative Orthopedics, including Stem Cell Therapy and/or PRP, may be required.&nbsp; Labral tears respond well to these treatments, and cartilage can regenerate. If loose fragments are involved, the physician will need to determine whether or not surgical removal is necessary.\r\n\r\nRegenerative Orthopedic treatments for Snapping Hip Syndrome get to the root cause of the condition, specifically the damaged connective tissues like tendons ligaments, and labrum, and return you quickly to the activities you enjoy doing.&nbsp;\r\n','Snapping Hip Syndrome','','publish','closed','closed','','snapping-hip-syndrome','','','2019-06-13 08:07:18','2019-06-13 08:07:18','',0,'https://www.drfields.com/?page_id=1374',0,'page','',0),(1375,8,'2019-06-12 07:45:49','2019-06-12 07:45:49','\r\nIn Snapping Hip Syndrome, sufferers hear or feel a snap, pop, or click when they move their hip joint. Encountering these symptoms is not a normal process, but one that points to an injury or degenerative condition.&nbsp;\r\n\r\n<h3>What Is the Cause of Snapping Hip Syndrome?</h3>\r\nThere are several reasons Snapping Hip Syndrome occurs, and they can be due to problems either inside or outside of the hip joint. Most commonly, the condition involves a thick, wide tendon called the iliotibial band that runs along the outside or lateral side of the hip joint. The iliotibial band snaps over the bony prominence, a part of the thigh bone that sticks out, called the greater trochanter on the outside of the hip.&nbsp; When a person with this condition moves into a standing position for example, the band may be positioned behind the trochanter, and then when bending the hip, the band will move and “snap” over towards the front of the bony prominence. Over time, irritation from this “snapping” may also result in bursitis.\r\n\r\nAnother tendon is involved in the second cause of Snapping Hip Syndrome, as it catches on underlying bony prominences of the pelvis. The iliopsoas tendon snaps over the iliopectineal eminence when bending or flexing the hip. The annoying snapping sensation or sound is generally the only symptom involved when the iliopsoas tendon is the source.\r\n\r\nAn additional area where snapping can occur is where the ball of the hip joint fits into the socket. This snapping involves the rectus femoris tendon as it runs from inside the thighbone and up through the pelvis. When the hip joint bends and straightens, the tendon moves and snaps back and forth across the ball of the hip joint.\r\n\r\nThe least common cause of Snapping Hip Syndrome occurs inside the hip joint and involves a tear in the hip labrum or a tear in the cartilage. Bits of cartilage or even bone can also become loose inside the joint, in these types of injuries. These pieces are called loose fragments and can be an associated cause of Snapping Hip Syndrome which can cause the hip to lock up. In this scenario inside the hip, the sufferer often experiences pain that is disabling.&nbsp;\r\n\r\nA combination of the various causes, plus muscle injury can also occur. Additionally, if the problem is ongoing and the tendons remain lax over a prolonged period of time, Snapping Hip Syndrome can lead to arthritis.\r\n\r\n<h3>Who Experiences Snapping Hip Syndrome?</h3>\r\nSnapping Hip Syndrome is common in young athletes like ballet dancers, soccer players, and runners. Dancers and other athletes repetitively move their hip in order to perform their dance or sport. If the hip and the tendons are moving abnormally, such as with Snapping Hip Syndrome, the abnormal rubbing and snapping of the tissue over bony prominences will occur again and again. When experiencing the symptoms, these athletes will frequently turn to treatments to relieve tight muscles, because they attribute their problem to overtraining. Treating muscles may give some relief, but will not repair the underlying injury to the ligaments, tendons, and/or hip labrum. Treatments that repair these soft tissue structures are necessary to stabilize the hip joint and stop the snapping from occurring.\r\n\r\n<h3>Regenerative Orthopedic Treatments for Snapping Hip Syndrome</h3>\r\nRegenerative Orthopedics directed towards the strengthening of these tendons and any involved ligaments, plus repair of the hip labrum, can tighten the joint and resolve the problem. Oftentimes an underlying problem of looseness or laxity of the hip joint is involved, causing instability of the hip joint. Regenerative Orthopedics treats the hip instability, because it tightens and strengthens the injured and lax structures, and regenerates the areas that need healing. The treatment actually gets to the root cause of the problem, and is effective at repairing the injured soft tissue, and resolving the problem.&nbsp;\r\n\r\nThe injected solutions in Regenerative Orthopedic treatments draw immune cells and growth factors to the area in an effort to build new healthy soft tissue. The healing and repair boosts the body’s natural response of healing in soft-tissue injuries.&nbsp; The result is ligaments and tendons that are stronger, and no longer loose.&nbsp; The snapping and pain goes away, and the athlete can return to the sport they love.\r\n\r\nIf the cause of Snapping Hip Syndrome is a torn labrum or cartilage, a more advanced technique of Regenerative Orthopedics, including Stem Cell Therapy and/or PRP, may be required.&nbsp; Labral tears respond well to these treatments, and cartilage can regenerate. If loose fragments are involved, the physician will need to determine whether or not surgical removal is necessary.\r\n\r\nRegenerative Orthopedic treatments for Snapping Hip Syndrome get to the root cause of the condition, specifically the damaged connective tissues like tendons ligaments, and labrum, and return you quickly to the activities you enjoy doing.&nbsp;\r\n','Snapping Hip Syndrome','','inherit','closed','closed','','1374-revision-v1','','','2019-06-12 07:45:49','2019-06-12 07:45:49','',1374,'https://www.drfields.com/uncategorized/1374-revision-v1/',0,'revision','',0),(1376,8,'2019-06-12 07:48:25','2019-06-12 07:48:25','<h2>Low Back Pain Treatments: How to Successfully Meet the Challenges of Finding Relief</h2>\r\n[caption id=\"attachment_4653\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4653 size-medium\" title=\"Low Back Pain Treatments\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-stop-the-cycle--500x500.png\" alt=\"Low Back Pain Treatments\" width=\"500\" height=\"500\" /> <em><strong>Low Back Pain? Stop The Cycle with Regenerative Orthopedics!</strong></em>[/caption]\r\n\r\nLow back pain is one of the most common musculoskeletal pain conditions in the United States. Interestingly, thousands upon thousands of people are disabled due to some low back condition that causes pain. And it wreaks havoc on their physical, social, emotional, and economic welfare. Many are looking for low back pain treatments to find relief.\r\n\r\nAt some point in almost everyone’s life, they will experience low back pain to some degree. And those who are fortunate enough not to suffer from low back pain themselves are certain to know someone else who has endured the pain.\r\n<h3>The Challenge to Find Relief with Low Back Pain Treatments</h3>\r\nThere are a variety of treatments for low back pain. But despite many available remedies, relief for low back pain is frequently only temporary. And it can be challenging too!\r\n\r\nWe see many people in our office who have come to us after trying numerous treatments that left their back pain unresolved. It’s not uncommon for patients to tell us they have received weeks, months, and years of therapy, taken various over-the-counter medications, received corticosteroid injections, or maybe even tried surgery. But after all of that, the pain persists. And unfortunately, many low back surgeries do not relieve the pain or fix the problem. Plus, they might even result in a recommendation for another surgery!\r\n<h3>Many Common Low Back Pain Treatments Only Cover Up the Pain</h3>\r\nSo why do low back pain sufferers have a difficult time finding relief? Unrelieved back pain poses some challenges to the medical community. That\'s because, very often, many of the common treatments only attempt to cover up rather than actually repair the problem.\r\n\r\nThink about it! Do pain medications repair the problem? No! They might reduce the pain. But they don\'t actually repair anything. <strong>Pain medications aren’t taken because the person has an Advil or Aspirin deficiency, right?! </strong>\r\n\r\nAnd in the same way, NSAIDs (nonsteroidal anti-inflammatory drugs) might provide some short-term benefit. But in the long run, they do not result in repair of the underlying problem.\r\n\r\nChiropractors are very good at helping dysfunctional backs and can provide back pain relief. But when doctors must see patients multiple times a week for months on end, and adjustments simply do not hold, one must then think outside the box. The problem may be ligamentous. Or it may have to do with tendon instability. The cause needs to be found. And then, the physician should direct the treatment at fixing the root of the problem.\r\n\r\nImaging tools are helpful at times. But even though they are highly accessible, their usage has not caused the rates of back pain to go down. Ongoing back pain that will not resolve very often originates from injury to ligaments (and sometimes tendons). These soft tissue structures surround the spine, sacrum, and even the sacroiliac joint in the low back. And when injured, it will cause the spine to become unstable. This is called spinal instability.\r\n<h3>Low Back Pain and Spinal Instability</h3>\r\nMost low back pain is a chronic condition due to years and years of working, playing sports, hiking, and working out. And even daily normal daily activities with repeated walking and sitting can cause the ligaments and other supporting structures to weaken.\r\n\r\nOriginal injuries that can lead to low back pain due to spinal instability most often occur with sudden movements and poor body mechanics or trauma during a sports activity, fall, or motor vehicle accident. Of course, diseases such as infections, endometriosis, fibroids, and cancer can also cause low back pain and need to be ruled out.\r\n<h3>Poor Body Mechanics and Ligament Injury</h3>\r\nAn example of poor body mechanics that may injure spinal ligaments might include instances when an individual bends over and twists. The knees are also often locked during this time, stretching the ligaments too much and making them vulnerable to injury. When this occurs, sufferers can try therapies for relief of muscle pain in the low back. But if the pain persists for a prolonged period and the low back continues to “give out,” there is a good chance injured ligaments are the problem.\r\n\r\nMassage and physical therapy are beneficial but, unfortunately, cannot repair ligament damage. The muscles will continue to spasm because they are overcompensating due to the ligament injury that has left the spine unstable. Until the root cause is treated, the spinal instability will continue. That\'s because the ligaments are designed to keep the spine in the correct place and in proper alignment. But now they are too loose from injury. This is where Regenerative Orthopedics comes in! Ligament damage and injury are conditions this therapy very effectively resolves and repairs.\r\n<h3>A Bit More Explanation about the Connection between Ligaments and Low Back Pain</h3>\r\nLigaments are structures joining bone to bone. And in the low back or lumbar spine, they are the structures that connect adjacent vertebrae and facet joints. And the facets, two on each of five lumbar vertebrae, actually have a capsule surrounding them made of ligaments. Ligaments serve as some of the primary stabilizing structures of the spinal column. They allow for adequate motion while restricting excessive motion. So they protect the spinal column and the nerve roots as they exit the spine.\r\n\r\nWe need the low back or lumbar spine to maintain an upright posture, bend, turn and sit. These positions and activities place quite a bit of stress on the low back and the soft tissue structures like the ligaments. The function of the ligaments involves the transfer of all of the various loads that occur from bone to bone as they manage the forces placed on the spine. Normally, they do a great job.\r\n\r\nBut when loads and forces exceed what they can tolerate, the ligaments weaken and become lax or loose. Imagine a rubber band that has lost its elasticity. A stretched-out ligament is similar. When they are stretched out, the injured ligaments cannot provide adequate stability to the lumbar spine. Again, this is called spinal instability.\r\n<h3><strong>Ligaments Have A Lot of Nerves</strong></h3>\r\n<strong>Ligaments are highly innervated.</strong> That means they have a lot of nerves. So when they are injured, pain is the result. Therefore, with bending, turning, and any other activity that engages the vertebrae of the lumbar spine, nerve fibers in the ligaments will start firing and sending out pain signals.\r\n<h3>Symptoms of Spinal Instability in the Low Back</h3>\r\nBesides pain, other symptoms of spinal instability in the low back include a feeling of the back giving out, cracking sensations with movement, catching or locking, a frequent need to crack the back, and recurrent muscle spasms. Unaddressed, this condition of spinal instability will result in low back pain that will not go away.\r\n\r\nIn addition, spinal instability allows for too much movement in the vertebral segments, which produces too much pressure on the discs due to the altered joint mechanics. And that fosters even more degeneration and disc herniation. The pathological process involved in spinal instability is at the core of many spinal conditions.\r\n<h3>Regenerative Orthopedics: Low Back Pain Treatments that Repair the Spinal Instability and Resolve Low Back Pain</h3>\r\nSo what can I do to fix my back pain and find actual relief? Fortunately, for sufferers of low back pain, Regenerative Orthopedics offers pain relief and healing and repair at the source of the pain. Treatment directed at the injured stretched out, and lax ligaments can strengthen them. That, in turn, stabilizes the vertebral segments, eliminating the excessive movement and resolving the pain.\r\n\r\nThe common denominator for many painful musculoskeletal conditions causing low back pain is spinal instability due to injury to ligaments. Still, Regenerative Orthopedics treatments such as Stem Cell Therapy, PRP, and Prolotherapy can get rid of the pain. Plus, these treatments repair the source of the problem. That means the pain is not just covered up. The source of the pain is actually repaired. So you can get pain relief and enjoy improved function too!\r\n<h3>Find Out More</h3>\r\nRead our other articles about <a href=\"https://www.drfields.com/conditions/chronic-pain/stop-back-pain/\">low back pain by clicking here.</a> Experiencing <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">sciatica pain</a>? Find out how Regenerative Orthopedics can help by <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">reading our article</a>.\r\n\r\n<a href=\"https://www.drfields.com/contact/\">Contact us to schedule an appointment.</a>','Low Back Pain Treatments: How to Successfully Meet the Challenges of Finding Relief','','publish','open','closed','','low-back-pain-treatments-and-the-challenges-at-finding-relief','','','2021-04-28 00:20:20','2021-04-28 00:20:20','',0,'https://www.drfields.com/?p=1376',0,'post','',0),(1377,8,'2019-06-12 07:48:25','2019-06-12 07:48:25','Low back pain is one of the most common musculoskeletal pain conditions in the United States, with thousands upon thousands of people disabled due to some type of low back condition that causes pain, and wreaks havoc on their physical, social, emotional and economic welfare. At some point in almost everyone’s life, low back pain will be experienced.  And for those who are fortunate enough to not suffer from low back pain themselves, they are certain to know someone else who has endured the pain.\r\n\r\n<h6>The Challenge of Treating Low Back Pain</h6>\r\nDespite many available remedies, relief for low back pain is frequently only temporary. We see many people in our office who have come to us after having tried numerous treatments that left their back pain unresolved. It’s not uncommon for patients to tell us they have received weeks, months and years of therapy, taken various over-the-counter medications, received corticosteroid injections, or maybe even tried surgery. Unfortunately, many low back surgeries to do not relieve the pain or fix the problem, and result in a recommendation for another surgery!\r\n\r\nSo why do low back pain sufferers have a difficult time finding relief? Unrelieved back pain poses some challenges to the medical community, because very often many of the common treatments only attempt to cover up, rather than actually repair the problem. If you think about it, pain medications can’t repair the problem, but might only minimize pain. Pain medications aren’t taken because the person has an Advil or Aspirin deficiency, right?! Nonsteroidal anti-inflammatory drugs might provide some short-term benefit, but in the long-run do not result in repair of the underlying problem. Chiropractors are very good at helping dysfunctional backs and can provide back pain relief. But when patients must be seen multiple times a week for months on end and adjustments simply do not hold, one must think outside the box. The problem may be ligamentous or tendon instability. Imaging tools are helpful, but even though they are highly accessible, their usage has not caused the rates of pain to go down. Ongoing back pain that will not resolve, very often originates from injury to ligaments (and sometimes tendons) that surround the spine, sacrum and even the sacroiliac joint, which causes the spine to become unstable. This is called spinal instability.\r\n\r\n<h6>Low Back Pain and Spinal Instability</h6>\r\nMost low back pain is a chronic condition, due to years and years of working, playing sports, hiking, working out, normal daily activities and even just walking and sitting, which can cause the ligaments and other supporting structures to weaken.\r\n\r\nOriginal injuries that can lead to low back pain due to spinal instability most often occur with sudden movements and poor body mechanics or from trauma during a sports activity, fall or motor vehicle accident (diseases such as infections, endometriosis, fibroids and cancer can also cause low back pain and need to be ruled out). An example of poor body mechanics that may injure spinal ligaments might include instances when an individual bends over and twists, while the knees are locked, stretching the ligaments too much, and making them vulnerable to injury. Therapies can be tried for relief of muscle pain in the low back, but if the pain remains for a prolonged period, and the low back continues to “give out,” there is a good chance injured ligaments are the problem. Massage and physical therapy unfortunately cannot repair ligament damage. The muscles will continue to spasm, because they are overcompensating due to the ligament injury that has left the spine unstable. Until the root cause is treated, the spinal instability will continue, since the ligaments that are designed to keep the spine in the correct place and in proper alignment are now too loose from injury. This is where Regenerative Orthopedics comes in! Ligament damage and injury are conditions this therapy very effectively resolves and repairs.\r\n\r\n<h6>A Bit More Explanation about the Connection between Ligaments and Low Back Pain</h6>\r\nLigaments are structures joining bone to bone, and in the low back or lumbar spine, are the structures that connect adjacent vertebrae and facet joints (the facets, two on each of five lumbar vertebrae, actually have a capsule surrounding them that is made of ligaments). Ligaments serve as some of the primary stabilizing structures of the spinal column. They allow for adequate motion while restricting excessive motion, which protects the spinal column and the nerve roots as they exit the spine.\r\n\r\nWe need the low back or lumbar spine to maintain an upright posture, bend, turn and sit. All of these positions and activities place quite a bit of stress on the low back and the soft tissue structures like the ligaments. The function of the ligaments involves the transfer of all of the various loads that occur from bone to bone as they manage the forces placed on the spine. Normally, they do a great job. But when loads and forces exceed what they are able to tolerate, the ligaments weaken and become lax or loose, similar to a rubber band that has lost its elasticity.\r\n\r\nWhen this occurs, the injured ligaments are unable to provide adequate stability to the lumbar spine. Again, this is called spinal instability. Ligaments are highly innervated. That means they have a lot of nerves. So when they are injured, pain is the result. Therefore, with bending, turning and any other activity that engages the vertebrae of the lumbar spine, nerve fibers in the ligaments will start firing and sending out pain signals. Other symptoms of spinal instability in the low back include a feeling of the back giving out, cracking sensations with movement, catching or locking, a frequent need to crack the back and recurrent muscle spasms. Unaddressed, this condition of spinal instability will result in low back pain that will not go away. In addition, spinal instability allows for too much movement in the vertebral segments, which produces too much pressure on the discs due to the altered joint mechanics, which then fosters degeneration and disc herniation. The pathological process involved in spinal instability is at the core of a number of spinal conditions.\r\n\r\n<h6>Regenerative Orthopedics Repairs the Spinal Instability and Resolves Low Back Pain</h6>\r\nFortunately, for sufferers of low back pain, Regenerative Orthopedics offers not only pain relief, but healing and repair at the source of the pain. Treatment directed at the injured and lax ligaments, strengthens them, which in turn stabilizes the vertebral segments, eliminating the excessive movement and resolving the pain. The common denominator for many painful musculoskeletal conditions causing low back pain is spinal instability due to injury to ligaments, but Regenerative Orthopedics treatments such as Stem Cell Therapy, PRP, and Prolotherapy are treatments that can get rid of the pain plus repair the source of the problem.','Low Back Pain Challenges and Treatment','','inherit','closed','closed','','1376-revision-v1','','','2019-06-12 07:48:25','2019-06-12 07:48:25','',1376,'https://www.drfields.com/uncategorized/1376-revision-v1/',0,'revision','',0),(1379,8,'2019-06-12 08:00:15','2019-06-12 08:00:15','<h2>ACL Tears and Knee Ligament Injuries</h2>\r\n[caption id=\"attachment_4633\" align=\"alignright\" width=\"368\"]<img class=\" wp-image-4633\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ACL-400x500.png\" alt=\"ACL Tear\" width=\"368\" height=\"460\" /> <strong>                     Non-Surgical ACL Tear Repair </strong>[/caption]\r\n\r\nACL tears are a pretty common injury! With ACL tears and other ligament injuries, the knee becomes unbalanced. And the knee will become unstable when these various structures of the knee are injured, torn, or degenerated.\r\n\r\nThere is a very complex yet intricate interplay between the different structures of the knee, such as the tendons, ligaments, meniscus, and muscles. And when any of these are injured, the whole knee becomes out of sorts.\r\n<h3>ACL Tears &amp; Ligament Injuries Can Disrupt Knee Balance</h3>\r\nLigament injuries are one of the common disruptions to this balance. The four major ligaments of the knee include the anterior cruciate ligament (ACL), the posterior cruciate ligament (PCL), the medial collateral ligament (MCL), and the lateral collateral ligament (LCL).\r\n\r\nInjuries that damage the meniscus and cartilage can also injure these ligaments. And once the injury to ligaments occurs, whether by trauma or by wear and tear, the other structures will be affected. Then, over time, the injury will lead to degeneration of the knee joint and arthritis. The ligaments become loose with injury. And similar to a stretched-out rubber band, they lose their tautness. When injury to one ligament occurs, as in the case of an ACL tear, it is not uncommon that some of the other ligaments are injured as well.\r\n<h3>Stabilize the Knee by Treating the Injured Ligaments with Regenerative Orthopedics</h3>\r\nSurgery is often resorted to for ligament injuries. However, surgical cutting and removal of important knee structures actually add to the instability. Why? Because the loss of these stabilizing structures boosts the degenerative process.\r\n\r\n<strong>But you do have a non-surgical option.</strong> Regenerative Orthopedics is a non-surgical option capable of repairing torn and injured ligaments. The treatment strengthens the loose ligaments and restores the normal motion back to the knee. And it resolves the pain too!\r\n\r\nRemember, it is very likely that more than just one ligament or joint structure is affected. Therefore, all of the affected structures need to be treated. Otherwise, the knee will remain unstable. And then the instability&gt;degeneration&gt;pain cycle will continue. Comprehensive treatment of the knee and all of the affected soft tissue structures will ensure that the knee will be strong and stable.\r\n\r\nSurgery is necessary when the ligament is completely torn. But the majority of cases are partial tears. And Regenerative Orthopedics is effective at repairing these ligaments, and stabilizing the knee once the ligaments are repaired.\r\n<h3>The Cruciate Ligaments and ACL Repair</h3>\r\nThe anterior and posterior cruciate ligaments help stabilize the knee. They also prevent excessive forward and backward movement. When these ligaments are injured, the knee may feel like it is loose. That\'s because these ligaments are powerhouses at keeping the knee stable. Pain with injury to these ligaments is often felt at the back of the knee.\r\n\r\nEven after the ACL ligament is repaired surgically, knee instability can occur. And there may be a feeling of looseness or a sensation that the knee can still give way. ACL reconstructive surgery works for many patients, but others experience continued symptoms.\r\n<h4><em>What About Athletes and ACL Reconstruction Surgery?</em></h4>\r\nOftentimes, those who are athletes want to get their knee repaired as quickly as possible. And they often resort to surgery thinking it will be a quick fix. But research suggests there are high levels of failure rates to restore stability in ACL repairs. And many of the patients in these studies are unable to return to their previous level of the sport.\r\n\r\nSurgical ACL reconstruction also accelerates the degeneration of the knee. <strong>Researchers have found that those who have had ACL reconstruction have an advanced risk for arthritis, as well as a higher long-term risk of requiring a knee replacement.</strong> But how many people does this really affect? Unfortunately, it’s not just a few. Researchers show that the failure rate is 10-25%. The problems of knee instability following an ACL tear reconstruction surgery can be severe enough to require repeat surgery.\r\n<h3>ACL Tear Repair at OrthoRegen</h3>\r\nFortunately, Regenerative Orthopedics is a non-surgical alternative to ACL surgery or even repeat surgery. In our opinion, it is a better solution to repair a stretched-out, loose, torn, or injured ligament. This treatment approach strengthens and heals the injured ligament in a non-surgical fashion, restoring the stability of the knee.\r\n\r\nAvoid the unsatisfactory outcome of incomplete healing and repair, and seek a consult with a clinician familiar with Regenerative Orthopedics. These <a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\">regenerative options</a> include Stem Cell Therapy, PRP, and Prolotherapy. And all of them have the goal of restoring normal ligament function and getting you back quickly to performing the sport and activity you love.\r\n\r\nWe see patients in our clinic who have already had ACL tear surgery too. These patients come to see us because they continue to have symptoms that are keeping them from doing the sports and activities they want to do. They thought for sure once they had the ACL surgery they would be back to doing what they were doing before the surgery. But they can’t. Other patients come because they are suffering from post-surgical complications and are looking for answers and a solution to their ongoing pain.\r\n\r\nGet your life back with Regenerative Orthopedics. <a href=\"https://www.drfields.com/contact/\">Contact us</a> soon!','ACL Tears and Knee Ligament Injuries','','publish','open','closed','','acl-tears-and-knee-ligament-injuries','','','2021-04-20 20:54:00','2021-04-20 20:54:00','',0,'https://www.drfields.com/?p=1379',0,'post','',0),(1380,8,'2019-06-12 08:00:15','2019-06-12 08:00:15','The knee will become unstable when the various structures of the knee are injured, torn, or degenerated. There is a very complex yet intricate interplay between the different structures of the knee, such as the tendons, ligaments, meniscus and muscles, and when any of these are injured, the whole knee becomes out of sorts. Ligament injuries are one of the common disruptions to this balance. The four major ligaments of the knee are the anterior cruciate ligament (ACL), the posterior cruciate ligament (PCL), the medial collateral ligament (MCL), and the lateral collateral ligament (LCL). Injuries that damage the meniscus and cartilage can also injure these ligaments.  Once injury to ligaments occurs, whether by trauma or by wear and tear, the other structures will be affected, and over time, the injury will lead to degeneration of the knee joint and arthritis. The ligaments become lose with injury, and similar to a stretched out rubber band, they lose their tautness. When injury to one ligament occurs, as in the case of a torn ACL, it is not uncommon that some of the other ligaments are injured as well.\r\n\r\n<h6>Stabilize the Knee by Treating the Injured Ligaments with Regenerative Orthopedics</h6>\r\nSurgery is often resorted to for ligament injuries. However, surgical cutting and removal of important knee structures actually adds to the instability, which boosts the degenerative process. Regenerative Orthopedics is a non-surgical option capable of repairing torn and injured ligaments. The treatment strengthens the loose ligaments and restores the normal motion back to the knee, and resolves the pain too.  Remember that it is very likely that more than just one ligament or joint structure is affected. Therefore, all of the affected structures need to be treated, or otherwise the knee will remain unstable, and the cycle will continue. A comprehensive treatment will address all of the ligament attachments to ensure that the knee will be strong and stable. Surgery is necessary when the ligament is completely torn, but the majority of cases are partial tears, and Regenerative Orthopedics is effective at repairing these ligaments, and stabilizing the knee once the ligaments are repaired.\r\n\r\n<h6>The Cruciate Ligaments and ACL Repair</h6>\r\nThe anterior and posterior cruciate ligaments help stabilize the knee, and prevent excessive forward and backward movement. When these ligaments are injured, the knee may feel like it is loose, because these ligaments are powerhouses at keeping the knee stable. Pain with injury to these ligaments is often felt at the back of the knee. Even after the ACL ligament is repaired surgically, knee instability can occur, and there may be a feeling of looseness or a sensation that the knee can still give way. ACL reconstructive surgery works for many patients, but others experience continued symptoms.\r\n\r\nWe see patients in our clinic who have had ACL surgery, and are concerned because their symptoms are keeping them from doing the sports and activities they want to do. They thought for sure once they had the ACL surgery that they would be back to doing what they were doing before the surgery, but they can’t. Other patients suffer from post-surgical complications and are looking for answers and a solution to their ongoing pain.\r\n\r\nAthletes want to get their knee repaired as quickly as possible, and often resort to surgery with this in mind. But research suggests there are high levels of failure rates to restore stability in ACL repairs, and many of the patients are unable to return to their previous level of sport. Surgical ACL reconstruction also accelerates the degeneration of the knee. Researchers have found that those who have had ACL reconstruction have an advanced risk for arthritis, as well as higher long-term risk of requiring a knee replacement. But how many people does this really affect? Unfortunately, it’s not just a few. Researchers show that the failure rate is 10-25%. The problems of knee instability following an ACL reconstruction surgery can be severe enough to require repeat surgery.\r\n\r\nFortunately, there are other options besides ACL surgery or even repeat surgery. In our opinion, a better solution to repair a stretched out, loose, torn, or injured ligament, is Regenerative Orthopedics. This treatment approach strengthens and heals the injured ligament in a non-surgical fashion, restoring the stability of the knee. Avoid the unsatisfactory outcome of incomplete healing and repair, and seek a consult with a clinician familiar with Regenerative Orthopedics, such as Stem Cell Therapy, PRP, and Prolotherapy, with the goal of restoring normal ligament function and getting you back quickly to performing the sport and activity you love.\r\n\r\n</div>\r\n</div>','ACL Tears and Knee Ligament Injuries','','inherit','closed','closed','','1379-revision-v1','','','2019-06-12 08:00:15','2019-06-12 08:00:15','',1379,'https://www.drfields.com/uncategorized/1379-revision-v1/',0,'revision','',0),(1381,8,'2019-06-12 08:15:47','2019-06-12 08:15:47','<h2>Relief from Arthritis Pain that Lasts!</h2>\r\n[caption id=\"attachment_4625\" align=\"alignright\" width=\"448\"]<img class=\"wp-image-4625 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/avoid-replacement-400x500.png\" alt=\"Avoid Replacement\" width=\"448\" height=\"560\" /> Lasting Arthritis Pain Relief with Regenerative Orthopedics[/caption]\r\n\r\nAnyone with arthritis is familiar with the ongoing pain, joint stiffness, and the limitations the disease causes. Arthritis damages the joints, and the progressive loss of cartilage changes the joint structure. And that changes the way the joint moves. We are all aware of how limiting this disease is! And many of us are on a quest to find lasting relief from arthritis pain.\r\n\r\n<strong>Arthritis affects us at home, in our workplace, and while attempting to enjoy activities we love.</strong> Besides that, arthritis affects our finances. We lose pay because of hours of work lost. Then there is the cost for surgery, rehabilitation, various treatments, pain medications, and disability. Arthritis is a huge health concern.\r\n\r\nIn this article, we will discuss how to find lasting relief from arthritis pain. And to understand how to find relief, it helps to know how the condition develops in the first place.\r\n<h3>What’s the Reason Behind Arthritis?</h3>\r\nArthritis does not just happen because of old age. There is a reason for it. Arthritis occurs over time. But it occurs as a result of joint instability. And the instability transpires after some injury that never fully healed. Of course, the eventual cartilage loss with its inhibition of joint motion plays a central role in arthritis. But that’s not where it all began.\r\n\r\nInjury to or failure of other joint structures, such as an injured ligament or tendon, actually initiates the change in equilibrium that leads to this breakdown of cartilage. <strong>Arthritis almost always begins with ligament weakness or injury.</strong> And that injury initiates a cycle of abnormal motion in the joint, which eventually changes the structure and function of the joint.\r\n\r\nLigaments hold the bones together. And along with healthy cartilage and other soft tissue, they allow for smooth joint motion. When the ligaments are weak due to injury, the motion becomes uneven. That uneven motion puts stress on other areas of the joint, which then causes some areas of bone to bear additional weight on the articular cartilage. This uneven distribution worsens and worsens with ongoing joint stress. And that weakens the ligaments further, causing additional instability of the joint.\r\n\r\nThe whole process leads to the eventual breakdown of the articular cartilage. The joint then is unable to glide smoothly, which causes limitations in joint function. The unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing and exposure of the underlying subchondral bone. And that precipitates the process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called <strong>osteoarthritis</strong>.\r\n<h3>Arthritis Pain and Symptoms</h3>\r\nArthritis typically causes pain, but not everyone is symptomatic. People with arthritis do not all have the same level of symptoms. And the same degree of arthritis can involve various levels of pain. When pain does arise, it generally occurs with activity and is relieved by rest.\r\n\r\nAny joint can be affected by arthritis. But it is found more commonly in the weight-bearing joints, like the knees, hips, and back. Arthritis pain and symptoms generally start and get worse with movement and activity. And in the beginning, they often go away at rest.\r\n\r\nAs the condition progresses, pain is present at rest too. At this point, pain is commonly experienced as a non-localized deep, aching pain accompanied by joint stiffness. In time, the aching and stiffness curtail activity and function. Since arthritis puts limitations on life, emotional symptoms develop as well. Since arthritis limits people from the enjoyment of doing the things they love, psychological distress is understandable.\r\n\r\n<strong>Interestingly, the pain of arthritis does not come from the cartilage!</strong> There are <strong>no</strong> nerve fibers or blood vessels in cartilage tissue. And therefore, cartilage is incapable of generating pain or inflammation or any of the symptoms commonly described with arthritis. The pain actually comes from the ligaments, tendons, and their insertion sites at the bone, which are all highly innervated. Lasting relief from arthritis pain will need to come from treatment at the source of the pain.\r\n<h3>Diagnosing Arthritis</h3>\r\nArthritis is diagnosed after a thorough history and physical examination. Radiography can be utilized to confirm the presence of joint space narrowing and bone spurs and to rule out the presence of other conditions.\r\n<h3>Relief from Arthritis Pain that Lasts with Regenerative Orthopedics</h3>\r\nSince arthritis begins with injury to the soft tissue structures like the ligaments and tendons, treatments that target repair of these structures are needed to restore joint physiology and biomechanics. Otherwise, the cycle will continue. Regenerative Orthopedic therapies, such as Stem Cell Therapy, PRP, and Prolotherapy, target the ligaments, tendons, and their insertion sites.\r\n\r\nBy treating the problem\'s source, regenerative medicine physicians can fix the involved structures and stabilize the joint. The treatments end the abnormal joint motion, stabilizing the joint and effectively stopping the cycle.\r\n<h3>If You Want Lasting Relief from Arthritis Pain: Regenerate, Don\'t Degenerate!</h3>\r\nIt is important to choose treatments that repair rather than cover up or mask the symptoms. Regenerative Orthopedic treatments increase blood flow in the tissue. And the result is an increase in the flow of immune cells to the injured tissue. That triggers the repair process! The solutions act as proliferants that boost the natural wound healing cascades, resulting in strengthening and repairing the injured joint structures.\r\n\r\nRegenerative Orthopedics offers benefits in pain relief, regenerative properties, and cartilage repair for people affected by arthritis. And they result in lasting relief from arthritis pain!\r\n<h3>The Gold Standard in Regenerative Therapies</h3>\r\nIn patients with more advanced arthritic conditions, the Gold Standard in Stem Cell Therapy can be utilized, which combines Prolotherapy with components of blood, fat, and bone marrow. Many clinics use only one or two of these procedures. But we have discovered that this combination of four regenerative therapies acts as an amazing regenerative solution to reverse arthritis damage on the joint.\r\n\r\nArthritis is a complex and unique condition, affecting individuals and those they love. In a time when healthcare providers have limited options for effective arthritis treatment and pain resolution, Regenerative Orthopedics is a promising treatment option. It is an option that aids in the relief of pain and one that results in increased motion. Plus, it provides gains in function and quality of life.\r\n\r\nThese treatments stimulate the regrowth of the injured tissue and tighten the ligaments around the joint, which often reduces joint pain immediately. They are safe and effective and are amazing non-surgical alternatives, with the potential to slow the disease progression, get rid of pain, and promote the regeneration of cartilage. What a great opportunity for healing and return to function for those suffering from the pain and disability of arthritis! Get lasting relief from arthritis pain with Regenerative Orthopedics!\r\n\r\nInterested in reading more about relief from arthritis pain with Regenerative Orthopedics? Great! We have more articles. Click <a href=\"https://www.drfields.com/?s=arthritis\">here</a> to read articles about arthritis pain relief.','Get Lasting Relief from Arthritis Pain','','publish','open','closed','','get-lasting-arthritis-pain-relief','','','2021-04-16 02:18:03','2021-04-16 02:18:03','',0,'https://www.drfields.com/?p=1381',0,'post','',0),(1382,8,'2019-06-12 08:15:47','2019-06-12 08:15:47','Anyone suffering with arthritis is familiar with the ongoing pain, joint stiffness, and the limitations the disease causes. Arthritis damages the joints and the progressive loss of cartilage changes the joint structure and the way the joint moves. Arthritis affects us at home, in our work place, and when we try to enjoy the activities we love. In addition, arthritis affects our finances, from hours of work lost to the cost for surgery, rehabilitation, various treatments, pain medications and disability. Arthritis is a huge health concern.\r\n\r\n<h6>What’s the Reason behind Arthritis?</h6>\r\nArthritis does not just happen because of old age. There is a reason for it. Arthritis does occur over time but it is a result of joint instability that transpires after some type of injury that never fully healed. Of course, the eventual cartilage loss with its inhibition of joint motion plays a central role in arthritis, but that’s not where it all began. Injury to or failure of other joint structures, such as an injured ligament or tendon, actually initiated the change in equilibrium that led to this breakdown of cartilage. Arthritis almost always begins with ligament weakness or injury. The injury initiates a cycle of abnormal motion in the joint which eventually changes the structure and function of the joint. Ligaments hold the bones together, and along with healthy cartilage and other soft tissue, allow for smooth joint motion. When the ligaments are weak due to injury, the motion becomes uneven, putting stress on other areas of the joint, which causes one area of bone to bear additional weight on the articular cartilage. This uneven distribution worsens and worsens with ongoing joint stress, weakening the ligaments further, causing additional instability of the joint, and leading to the eventual breakdown of the articular cartilage. The joint then is unable to glide smoothly which causes limitations in joint function. The unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing, exposure of the underlying subchondral bone, which precipitates the process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called osteoarthritis.\r\n\r\n<h6>Arthritis Pain and Symptoms</h6>\r\nArthritis typically causes pain, but not everyone is symptomatic. Plus, people with the same degree of arthritis can experience various levels of pain. When pain does arise, it generally occurs with activity and is relieved by rest. Arthritis can affect any joint, but it is more common in the weight bearing joints, like the knees, hips, and back. The symptoms generally start and get worse with movement and activity, and go away at rest. As the condition progresses, pain is present at rest too, and is commonly experienced as a non-localized deep, aching pain accompanied by joint stiffness. In time, the aching and stiffness curtail activity and function. Since arthritis puts limitations on life, and the enjoyment of doing the things people love, psychological distress is understandably another associated factor endured by those who suffer from it.\r\n\r\nAnother interesting point is that the pain in arthritis is not coming from the cartilage! There are no nerve fibers or blood vessels in cartilage tissue, and therefore it is incapable of generating pain or inflammation or any of the symptoms commonly described with arthritis.  The pain actually comes from the ligaments, tendons and their insertion sites at the bone, which are all highly innervated.\r\n\r\n<h6>Diagnosing Arthritis</h6>\r\nArthritis is diagnosed after a thorough history and physical examination. Radiography can be utilized to confirm the presence of joint space narrowing and bone spurs, and to rule out the presence of other conditions.\r\n\r\nRegenerative Orthopedic Treatments Target and Repair the Source of Injury\r\nSince arthritis begins with injury to the soft tissue structures like the ligaments and tendons, treatments that target repair of these structures are needed to restore the joint physiology and biomechanics. Otherwise the cycle will continue. Regenerative Orthopedic therapies, such as Stem Cell Therapy, PRP and Prolotherapy, target the ligaments, tendons and their insertion sites, and treat the source of the problem, fixing the involved structures and stabilizing the joint. They put an end to the abnormal joint motion so the joint becomes stabilized and effectively stop the cycle.\r\n\r\nIt is important to choose treatments that repair, rather than those that just cover up or mask the symptoms. Regenerative Orthopedic treatments increase blood flow in the tissue which causes an increase in the flow of immune cells to the injured tissue, which triggers the repair process.  The solutions act as proliferants and boost the natural wound healing cascades, resulting in strengthening and repair of the injured joint structures.  Regenerative Orthopedics offers benefits in terms of pain relief, regenerative properties, and cartilage repair for people affected by arthritis.\r\n\r\nIn patients with more advanced arthritic conditions, the Gold Standard in Stem Cell Therapy can be utilized, which combines Prolotherapy with components of blood, fat, and bone marrow. Many clinics use only one or two of these procedures, but we have discovered that this combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint.\r\n\r\nArthritis is a complex and unique condition, affecting individuals and those they love. In a time when healthcare providers have limited options for effective arthritis treatment and pain resolution, Regenerative Orthopedics is a promising treatment option to aid in relief of pain, results in increased motion, and provides gains in function and quality of life. These treatments stimulate the regrowth of the injured tissue, and tighten the ligaments around the joint, which often reduces joint pain immediately.   They are safe and effective and are amazing non-surgical alteratives, with the potential to slow the disease progression, get rid of pain, and promote the regeneration of cartilage. What a great opportunity for healing and return to function for those suffering from the pain and disability of arthritis!','Relieve Arthritis Pain','','inherit','closed','closed','','1381-revision-v1','','','2019-06-12 08:15:47','2019-06-12 08:15:47','',1381,'https://www.drfields.com/uncategorized/1381-revision-v1/',0,'revision','',0),(1385,8,'2022-12-02 06:01:39','2019-06-12 08:17:37','','Articles','','publish','closed','closed','','articles','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=1385',61,'nav_menu_item','',0),(1388,8,'2022-12-02 06:01:39','2019-06-12 08:34:22',' ','','','publish','closed','closed','','1388','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',30,'https://www.drfields.com/?p=1388',62,'nav_menu_item','',0),(1389,8,'2019-06-12 10:01:26','2019-06-12 10:01:26','<h2>Failed Back Surgery Syndrome</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_4606\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4606\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/failed-back-surgery-500x500.png\" alt=\"Failed Back Surgery\" width=\"500\" height=\"500\" /> <strong>                 A Solution for Failed Back Surgery Syndrome </strong>[/caption]\r\n\r\nBy the time people reach midlife, more than half of them will experience significant episodes of low back pain. That’s how common low back pain is! And because of the prevalence, low back pain often leads to surgery.\r\n\r\nSurgery for back pain may give the sufferer some relief, but many continue to experience a significant amount of pain. But wasn\'t the surgery done to put an end to the pain? And if surgery was performed to stop the pain, why would there still be pain after the surgery to relieve it?\r\n\r\nBack surgery requires removing some of the spine structures that help to stabilize the spine. So when they are removed, their absence will weaken the spine.\r\n\r\nAlso, in surgeries that involve fusion of the spinal vertebrae, the areas above and below the fusion often degenerate. It makes sense that movement needs to occur somewhere.  And the areas above and below the fusion take on a lot of the stress.\r\n\r\nThe various back surgeries alter the spinal dynamic and make the patient more susceptible to new pain. <strong>Unfortunately, ten to forty percent of lower back surgeries for disabling pain end up in the person needing repeat surgery due to ongoing pain</strong>.\r\n\r\n<em><strong>New or persistent back or leg pain after back surgery is a condition known as Failed Back Surgery Syndrome.</strong></em> The numbers are so overwhelming that this condition has its own diagnosis.\r\n<h3>A Little Background on the Low Back and Low Back Pain</h3>\r\nThe lumbar spine is composed of five vertebrae separated by discs and supported by strong muscles and ligaments. Cumulative trauma through years of certain activities or sports can result in small tears of the ligaments.\r\n\r\nIf a major trauma transpires, the ligament injury can be of such severity that ligament healing never occurs, leaving the vertebrae unstable and without the support they need. The instability and ligament laxity cause ongoing low back pain.\r\n\r\nThis pain is what sends people by the droves to orthopedic surgeons. If the back pain leads to back surgery, important muscles and ligaments are cut, adding to an already unstable lumbar structure.\r\n<h3>Explain What Failed Back Surgery Syndrome Involves</h3>\r\nBack surgery may be considered “successful” by the surgeon just because the anatomic area was surgically “fixed correctly.” However, the patient may still suffer from Failed Back Surgery Syndrome. And they continue to experience the defining symptoms, which include persistent back and/or leg pain.\r\n\r\nPain that occurs right after surgery is often due to sensitized nerves. Many nerves have to be cut by the surgeon to get to the area of the vertebrae being repaired. And sometimes, those nerves become inflamed and/or compressed. In cases where the post-surgical pain becomes chronic and ongoing, the pain is often from spinal instability.\r\n\r\nAnd the instability may be from causes, including removing too much bone or due to damage to the spinal ligaments. <strong>Any time surgery is performed on the spine; it will alter the mechanics of the spine. </strong>And this will result in more force being generated at and around the areas where the surgery is done.\r\n\r\nThe pain and discomfort of Failed Back Surgery Syndrome (FBSS) cause a major negative impact on the ability of those with the syndrome to manage everyday life activities. Even simple ones like standing, lifting, and traveling.\r\n\r\nPhysicians see many patients who have had back surgery or multiple surgeries who continue to have pain. Sometimes the surgery fixes the pain for a year or so. But then the pain returns. And the individual who had the surgery is terrified about going through another surgery. Plus, they are also afraid of the prospects of living in pain and on pain medication. A horrifying predicament!\r\n<h3>With so much progress technologically, how does FBSS still happen?</h3>\r\nSometimes surgery is done when it was never indicated. Surgery may be recommended based on MRI findings primarily. And that means it is not after a thorough history and review of symptoms to match the MRI. This results in performing surgery on a structure that looked bad on MRI but which was actually not the true cause of pain.\r\n\r\nAdditionally, while operating on one condition, another condition may be overlooked. For example, the surgeon m remove a disc. But its removal does not address the underlying instability, causing disc degeneration and stenosis. If the issue causing the problem in the first place is never addressed, disappointing results and pain will result.\r\n\r\nPlus, the surgeon may even operate on the wrong spinal levels. Failed Back Surgery Syndrome may result from outright inappropriate surgeries, inadequate surgeries where the underlying pathology is not addressed, or even unnecessary surgeries.\r\n<h3>Fusion Surgery Can Result in Failed Back Surgery Syndrome</h3>\r\nFailed Back Surgery Syndrome may result after fusion surgery. Once the joints are fused, motion in the spine has to come from somewhere else, creating added stress on the sections above and below the spine. It is then only a matter of time before arthritis and pain develop in the adjacent segments.\r\n\r\nFusion surgery is recommended because there is too much movement or instability in the spine. The surgeon is looking to place artificial material to fuse the area together to keep it from moving permanently. But this doesn’t always resolve the pain. Plus, it will eventually cause degeneration at the levels below and above the fusion.  And this will frequently leave the back pain sufferer with more back pain and arthritis because of the surgery.\r\n<h3>How Is Failed Back Surgery Syndrome Treated</h3>\r\nPatients with Failed Back Surgery Syndrome experience prolonged pain. And because of that, treatment often includes narcotics, steroids, and even anti-depressants, since the prolonged pain often results in depression. All of these medications come with their own set of problems.\r\n\r\nSpinal cord stimulation is also utilized and allows for relief in a subset of FBSS patients with radicular leg pain. These patients, however, continue to experience difficulties in function and quality of life.\r\n<h3>Regenerative Orthopedics Help in Failed Back Surgery Syndrome</h3>\r\nRegenerative Orthopedics refers to therapies that stimulate the body to heal itself, such as Stem Cell Therapy, PRP, and Prolotherapy. These regenerative injection therapies stimulate the body to repair without the need for surgery. Our bodies have amazing regenerative capabilities. This is a novel approach because we are triggering the body to strengthen the tissue independently without the use of artificial hardware.\r\n\r\nAn initial consultation to discuss these treatments would be recommended for those patients who are taking narcotics or for those with spinal cord stimulators. Regenerative Orthopedics therapies resolve the problems that damaged the spine. And for optimal healing, other therapies that are suppressing the ability of the body to heal need to be limited or stopped. Regenerative Orthopedic therapies are reparative treatments and are alternatives to surgery. They can also help when surgery has already been done but failed to address the root issue.\r\n\r\nWe strongly recommend looking into regenerative therapies first for those with back pain who have not had surgery yet. One of the wonderful things about Regenerative Orthopedics for back pain is that the individual can maintain activity and get back to the activities they enjoy without extensive downtime. Treatments and exercise programs are individually tailored to promote healing and return people to their active lives. It’s really an amazing transformation to see people regain their mobility and independence!\r\n<h4>Regenerative Orthopedics helps almost all types of back pain</h4>\r\nRegenerative Orthopedics helps almost all types of back pain: herniated discs, bulging discs, degenerative disc disease, chronic subluxation of the sacroiliac joints, and more. And these treatments may save you from unnecessary surgery because the treatments address the problems causing the instability and offer a way of repair when other treatments often fail.\r\n\r\nRegenerative Orthopedics treatments correct the underlying problem of spinal instability. Without this correction, the patient is more likely to continue on the course of pain and symptom chasing pain management therapies that only temporarily calm the pain. Remember, spinal instability is a progressive disorder, meaning that the area will continue to degenerate until regenerative treatments are used to restore them.','Failed Back Surgery Syndrome','','publish','open','closed','','failed-back-surgery-syndrome','','','2021-04-05 22:40:23','2021-04-05 22:40:23','',0,'https://www.drfields.com/?p=1389',0,'post','',0);
INSERT INTO `wp_posts` VALUES (1390,8,'2019-06-12 10:01:26','2019-06-12 10:01:26','By the time people reach midlife, more than half of them will experience significant episodes of low back pain. That’s how common low back pain is, and because of the prevalence, low back pain often leads to surgery. The surgery may give the back pain sufferer some relief, but many continue to experience a significant amount of pain. You may wonder, if surgery was done to stop the pain, then why would there still be pain after the surgery to relieve it? Back surgery requires the removal of some of the structures of the spine that help to stabilize the spine. So when they are removed, the spine will be weakened. Also, in surgeries that involve fusion of the spinal vertebrae, the areas above and below the fusion often degenerate, since movement needs to occur somewhere. The various back surgeries alter the spinal dynamic and make the patient more susceptible to new pain. Unfortunately, ten to forty percent of lower back surgeries for disabling pain end up in the person needing repeat surgery due to ongoing pain. New or persistent back or leg pain after back surgery is a condition known as Failed Back Surgery Syndrome. The numbers are so overwhelming that this condition has its own diagnosis.\r\n\r\n<h6>A Little Background on Low Back Pain</h6>\r\nThe lumbar spine is composed of five vertebrae separated by discs and supported by strong muscles and ligaments. Cumulative trauma through years of certain activities or sports can result in small tears of the ligaments. If a major trauma transpires, the injury to the ligament can be of such severity that ligament healing never occurs, leaving the vertebrae unstable and without the support they need. The instability and ligament laxity cause ongoing low back pain. This pain is what sends people by the droves to orthopedic surgeons. If the back pain leads to back surgery, important muscles and ligaments are cut, adding to an already unstable lumbar structure.\r\n\r\n<h6>Explain What Failed Back Surgery Syndrome Involves?</h6>\r\nA back surgery may be considered “successful” by the surgeon just because the anatomic area was surgically “fixed correctly.” However, the patient may still suffer from Failed Back Surgery Syndrome, and continue to experience the defining symptoms which include persistent back and/or leg pain. Pain that occurs right after surgery is often due to sensitized nerves. Many nerves have to be cut by the surgeon in order to get to the area of the vertebrae being repaired, and sometimes those nerves become inflamed and/or compressed. In cases where the post-surgical pain becomes chronic and ongoing, the pain is often from spinal instability from causes which may include the removal of too much bone or due to damage to the spinal ligaments. Any time surgery is performed on the spine, it will alter the mechanics of the spine, and this will result in more force being generated at and around the areas where the surgery is done.\r\n\r\nThe pain and discomfort of Failed Back Surgery Syndrome (FBSS) cause a major negative impact on the ability of those with the syndrome to manage everyday life activities such as standing, lifting and traveling. Physicians see many patients who have had back surgery or multiple surgeries who continue to have pain. Sometimes the surgery fixes the pain for a year or so, but then the pain returns. The individual who had the surgery is both terrified about going through another surgery, and is also afraid of the prospects of living in pain and on pain medication.\r\n<h6>With so much progress technologically, how does FBSS still happen?</h6>\r\nSometimes surgery is done when it was never indicated. Surgery may be recommended based on MRI findings primarily and not after a thorough history and review of symptoms to match up to the MRI. This results in performing surgery on a structure that looked bad on MRI, but which was actually not the true cause of pain.\r\n\r\nWhile operating on one condition, another condition may be overlooked. A disc may be removed, for example, but the underlying instability, causing disc degeneration and stenosis were not addressed. If the issue causing the problem in the first place is never addressed, disappointing results and pain will result. Wrong spinal levels may even be operated on. Failed Back Surgery Syndrome may be the result of outright inappropriate surgeries, inadequate surgeries where the underlying pathology is not addressed, or even unnecessary surgeries.\r\n\r\n<h6>Fusion Surgery</h6>\r\nFailed Back Surgery Syndrome may result after fusion surgery. Once the joints are fused together, motion in the spine has to come from somewhere else, creating added stress on the sections above and below the spine. It is then only a matter of time before arthritis and pain develop in the adjacent segments.\r\n\r\nFusion surgery is recommended because there is too much movement or instability in the spine. The surgeon is looking to place artificial material to permanently fuse the area together, to keep it from moving. But this doesn’t always resolve the pain, and will eventually cause degeneration at the levels below and above the fusion, frequently leaving the back pain sufferer with more back pain and arthritis because of the surgery.\r\n\r\n<h6>How Is Failed Back Surgery Syndrome Treated</h6>\r\nPatients with Failed Back Surgery Syndrome experience prolonged pain and because of that treatment often includes narcotics, steroids and even anti-depressants, since the prolonged pain often results in depression. All of these medications come with their own set of problems. Spinal cord stimulation is also utilized and allows for some relief in a subset of FBSS patients with radicular leg pain. These patients, however, continue to experience difficulties in function and quality of life.\r\n\r\n<h6>Regenerative Orthopedics Help with Failed Back Surgery Syndrome</h6>\r\nRegenerative Orthopedics refers to therapies that stimulate the body to heal itself, such as Stem Cell Therapy, PRP, and Prolotherapy.  These regenerative injection therapies stimulate the body to repair, without the need for surgery. Our bodies have amazing regenerative capabilities. This is a novel approach because we are triggering the body to strengthen the tissue on its own, without the use of artificial hardware.\r\n\r\nFor those patients who are taking narcotics, or for those with spinal cord stimulators, an initial consultation to discuss these treatments would be recommended. Regenerative Orthopedics therapies resolve the problems that damaged the spine, and for optimal healing, other therapies that are suppressing the ability of the body to heal need to be limited or stopped. Regenerative Orthopedic therapies are reparative treatments and are alternatives to surgery. They can also help when surgery has already been done, but failed to address the root issue.\r\n\r\nFor those with back pain who have not had surgery yet, we strongly recommend looking into regenerative therapies first. One of the wonderful things about Regenerative Orthopedics for back pain is, the individual can maintain activity and get back to the activities they enjoy, without the need for extensive downtime. Treatments and exercise programs are individually tailored to promote healing and return people to their active lives. It’s really an amazing transformation to see people regain their mobility and independence!\r\n\r\nRegenerative Orthopedics is helpful for almost all types of back pain: herniated discs, bulging discs, degenerative disc disease, chronic subluxation of the sacroiliac joints, and more. Regenerative Orthopedics may save you from an unnecessary surgery, because the treatments address the problems causing the instability, and offer a way of repair when other treatments often fail.\r\n\r\nRegenerative Orthopedics treatments correct the underlying problem of spinal instability. Without this correction, the patient is more likely to continue on the course of pain and symptom chasing pain management therapies that only temporarily calm the pain. Remember, spinal instability is a progressive disorder, meaning that the area will continue to degenerate until regenerative treatments are used to restore them.','Failed Back Surgery Syndrome','','inherit','closed','closed','','1389-revision-v1','','','2019-06-12 10:01:26','2019-06-12 10:01:26','',1389,'https://www.drfields.com/uncategorized/1389-revision-v1/',0,'revision','',0),(1391,8,'2019-06-12 10:02:21','2019-06-12 10:02:21','<h2>Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</h2>\r\n<img class=\"size-medium wp-image-4672 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-arthritis-500x500.jpg\" alt=\"Knee Arthritis\" width=\"500\" height=\"500\" />\r\n\r\nWe treat a lot of knees at our clinic. Part of the reason is that knee injuries are so prevalent. Another reason is that, quite often, the other treatments patients receive only provide temporary relief. Plus, unhealed knee injuries often lead to painful knee arthritis.\r\n\r\nWhen an injury is left untreated or when the treatment fails to repair an injury adequately, the knee becomes unstable. The instability sets the knee up for a cycle of abnormal joint motion. And that abnormal motion in the knee promotes degeneration and destroys the joint over time. All of that sets the knee up for the development of arthritis.\r\n\r\nIf you already have arthritis in your knee, we can help. If you have knee injuries such as a torn meniscus or ACL, we can help too! Regenerative Orthopedics are effective therapies capable of repairing the injury and stopping the cycle that leads to arthritis. Regenerative Orthopedics are ideal treatments for anyone looking to avoid knee replacement!\r\n<h3>The Healthy Knee versus An Injured Knee</h3>\r\nThe knee is the largest joint in the body and one of the more complex joints. To accomplish all of the tasks the knee needs to do, many forces and stressors are placed on it.\r\n\r\nA healthy knee moves smoothly during walking activities and also when running, jumping, and turning. One of the most important keys to a healthy knee is maintaining stability in response to the forces placed upon it. When any part of the knee joint is injured, such as the bony configuration, muscles, menisci, joint capsule, or ligaments, the whole stability of the knee is disrupted. And that can cause symptoms and pain.\r\n\r\nWhen knee injury does occur, Regenerative Orthopedics stops the disruption and stabilizes the knee again. The treatment does this by promoting the healing of unstable and weakened ligaments. And it repairs the other injured joint structures too. The result is the elimination of the pain associated with knee conditions caused by abnormal joint motion.\r\n<h3>Knee Arthritis and Pain</h3>\r\nKnee pain is one of the most common reasons people seek out medical help. And knee osteoarthritis is a primary player, impairing the mobility and activity level of those who suffer from it. The prevalence of knee pain increases with age. Plus, it is affected by lifestyle factors, such as obesity and lack of exercise. Arthritis patients deal with chronic pain, joint stiffness, structural damage, and the progressive loss of cartilage, which can be disabling.\r\n\r\n<strong>Did you know the pain of arthritis does not come from the cartilage?</strong> Even though cartilage loss plays a central role in arthritis, it is not the source of pain. That\'s because cartilage tissue does not contain nerve fibers. The tissue containing many nerve fibers includes the ligaments, tendons, meniscus, joint capsule, synovium, and periosteum. Arthritis pain is due to injury to these types of tissue.\r\n<h3>The Painful Process Leading to Knee Arthritis</h3>\r\nSoft-tissue structures are mainly responsible for the smooth movement of the knee joint. But when abnormal forces are placed on them, injury occurs that disrupts the balance between normal motion and instability. This is where the painful process begins. The nerve endings that cause pain are also present where the ligaments and tendons insert into the bone. And this area can become a source of ongoing knee pain. Regenerative Orthopedic treatments are often directed at these sites and as such are recognized as one of the most effective non-surgical therapies to treat knee pain.\r\n\r\nLigaments play a crucial role in the knee\'s stability because they guide the motion of the knee joints and restrain excessive motion to prevent dislocation. Ligament injuries are also the most common form of a knee injury. Ligament injury then upsets and disrupts the balance in the motion of the knee joint.\r\n\r\nInjuries that result in ligament damage also commonly result in injury to other knee structures, such as the meniscus, tendons, and cartilage. As mentioned, these injuries can eventually lead to arthritis, which can transpire within a few years with severe injuries or possibly over decades if the injury is less severe.\r\n<h3>Regenerative Orthopedic Treatments Heal the Soft Tissue Injuries</h3>\r\nAlthough many treatments may offer temporary pain relief, it is important to find a treatment that does more than chase the symptoms. <strong>It is important to repair the injured soft tissue to restore normal motion to the knee joint.</strong> Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy, are effective therapies that do just that.\r\n\r\nThese treatments stimulate the healing of ligaments, tendons, and menisci and restore normal functioning of the knee joint, thus preventing arthritic progression. In more advanced cases, the Gold Standard in Stem Cell Therapy can be used to promote the regeneration of articular cartilage.\r\n\r\nRegenerative Orthopedic treatments target and repair the structures generating the pain in knee arthritis, effectively resolving the pain. These therapies give hope to people living with arthritis because they provide pain relief and joint repair, resulting in improved function and a better quality of life.','Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain','','publish','open','closed','','get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain','','','2021-05-12 21:45:50','2021-05-12 21:45:50','',0,'https://www.drfields.com/?p=1391',0,'post','',0),(1392,8,'2019-06-12 10:02:21','2019-06-12 10:02:21','We treat a lot of knees at our clinic. Part of the reason is because knee injuries are so prevalent. Another reason is that quite often the other treatments patients receive, only provide temporary relief. When an injury is left untreated or when the treatment fails to adequately repair an injury, the knee becomes unstable. The instability sets the knee up for a cycle of abnormal joint motion, which promotes knee degeneration and destroys the joint over time, setting the knee up for the development of arthritis. If you already have arthritis in your knee, we can help. If you have injured your meniscus or ACL, Regenerative Orthopedics is an effective therapy capable of repairing the injury and stopping the cycle that leads to arthritis. Regenerative Orthopedics is also an ideal treatment for anyone looking to avoid knee replacement!\r\n\r\n<h6>The Healthy Knee vs An Injured Knee</h6>\r\nThe knee is the largest joint in the body and one of the more complex joints. In order to accomplish all of the tasks the knee needs to do, many forces and stressors are placed on it. A healthy knee moves smoothly during walking activities, and also when running, jumping and turning.  One of the most important keys to a healthy knee is maintaining stability in response to the forces placed upon it. When any part of the knee joint is injured, such as the bony configuration, muscles, menisci, joint capsule or the ligaments, the whole stability of the knee is disrupted, causing symptoms and pain. When knee injury does occur, Regenerative Orthopedics stops the disruption and stabilizes the knee again. The treatment does this by promoting the healing of unstable and weakened ligaments, and other injured joint structures, which then eliminates the pain associated with knee conditions caused by abnormal joint motion.\r\n\r\n<h6>Knee Pain from Arthritis</h6>\r\nKnee pain is one of the most common reasons people seek out medical help, and knee osteoarthritis is a primary player, impairing the mobility and activity level of those who suffer from it. The prevalence of knee pain increases with age, and is affected by lifestyle factors, such as obesity and lack of exercise. Arthritis sufferers deal with chronic pain, joint stiffness, structural damage, and the progressive loss of cartilage, which can be disabling. Did you know the pain of arthritis does not come from the cartilage? Even though cartilage loss plays a central role in arthritis, it is not the source of pain, since cartilage tissue does not contain nerve fibers. The tissue that does contain a lot of nerve fibers includes the ligaments, tendons, meniscus, joint capsule, synovium and periosteum. Arthritis pain is due to injury to these types of tissue. Since soft tissue is mainly responsible for the smooth movement of the knee joint, when abnormal forces are placed on them, injury occurs that disrupts the balance between normal motion and instability. This is where the painful process begins. The nerve endings that cause pain are also present where the ligaments and tendons insert to the bone, and this area can become a source of ongoing knee pain. Regenerative Orthopedic treatments are often directed at these sites and as such are recognized as one of the most effective non-surgical therapies to treat knee pain.\r\n\r\nLigaments play a crucial role in the stability of the knee, because they guide the motion of the knee joints, and restrain excessive motion to prevent dislocation. Ligament injuries are also the most common form of knee injury. Ligament injury then upsets and disrupts the balance in the motion of the knee joint. Injuries that result in ligament damage also commonly result in the injury to other knee structures, such as the meniscus, tendons and cartilage. As mentioned, these injuries can eventually lead to arthritis, which can transpire within a few years with severe injuries or possibly over decades if the injury is less severe.\r\n\r\n<h6>Regenerative Orthopedic Treatments Heal the Soft Tissue Injuries</h6>\r\nAlthough many treatments may offer temporary pain relief, it is important to find a treatment that does more than chase the symptoms, and one that actually repairs the injured soft tissue in order to restore normal motion to the knee joint. Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma and Prolotherapy are effective therapies that do just that. These treatments stimulate healing of ligaments, tendons and menisci, and restore normal functioning of the knee joint, thus preventing the arthritic progression. In more advanced cases, the Gold Standard in Stem Cell Therapy can be used to promote the regeneration of articular cartilage.\r\n\r\nRegenerative Orthopedic treatments target and repair the structures generating the pain in knee arthritis, effectively resolving the pain.  Regenerative Orthopedic treatments give hope to arthritis sufferers, because they provide not only pain relief, but also joint repair, resulting in improved function and a better quality of life.','Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain','','inherit','closed','closed','','1391-revision-v1','','','2019-06-12 10:02:21','2019-06-12 10:02:21','',1391,'https://www.drfields.com/uncategorized/1391-revision-v1/',0,'revision','',0),(1393,8,'2019-06-12 10:20:56','2019-06-12 10:20:56','<h2>Neck Pain Relief</h2>\r\n[caption id=\"attachment_4614\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4614 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cervivcal-Instability-copy-2-500x500.png\" alt=\"Neck Pain Relief\" width=\"500\" height=\"500\" /> <strong>                                   Cervical Instability and Neck Pain</strong>[/caption]\r\n\r\nLooking for neck pain relief? Joint pain in the various joints of the body is usually caused by weakness in the soft tissue. And pain in the neck is no different. Relief is possible with non-surgical regenerative therapy.\r\n\r\nLigament weakness is very often the underlying cause of neck pain. And it can also be the reason behind the headaches, ear and mouth pain which often accompany neck pain.\r\n\r\nRegenerative Orthopedics, such as Prolotherapy, have been proven to stimulate the healing of weakened ligaments behind this pain effectively. That’s great news because these treatments are an answer for those suffering from these ailments and often a way to find permanent pain relief.\r\n<h4>Neck Ligaments, Cervical Instability, and Symptoms</h4>\r\nWhen the ligaments of the neck are weakened, the instability that transpires in the neck is called cervical instability. Sufferers with this malady often experience a bunch of bizarre symptoms. In addition to neck pain, symptoms can include dizziness, visual disturbances, eye pressure, mouth pain, sinus congestion, tinnitus, and many others.\r\n\r\nInstability of the ligaments of the neck is implicated in conditions like disc herniation, whiplash, cervicocranial syndrome, and spondylosis. When these ligaments are injured, they elongate and become weak. And that allows for excessive movement in the vertebrae of the neck.\r\n<h3>Symptoms of Upper Neck Instability and Vertebrobasilar Insufficiency</h3>\r\nThe instability that arises in the upper part of the neck or cervical spine (C0-C2) can manifest symptoms such as vertigo, tinnitus, dizziness, facial pain, arm pain, and migraine headaches.\r\n\r\nAlso, a condition called vertebrobasilar insufficiency (VBI) can develop. VBI, with its associated symptoms of neck pain, headaches/migraines, dizziness, drop attacks, vertigo, difficulty swallowing and/or speaking, and auditory and visual disturbances, can develop in instances of upper cervical spine instability.  That\'s because excessive movement in the neck can alter the flow of vertebral arterial blood.\r\n<h3>Symptoms of Lower Neck Instability</h3>\r\nSometimes the instability in the neck is located at the lower part of the cervical spine. When the instability is located in the lower neck or cervical spine (C3-C7), the resultant symptoms include muscle spasms, crepitation, and feelings of pins and needles along with neck pain.\r\n\r\nAs the instability worsens, so do the symptoms. Surgery to fuse the vertebrae of the neck is often recommended in cases of cervical instability. But those suffering from this condition should seek a consultation from an expert in Regenerative Orthopedics first. Why? Because this therapy can often prevent the need for fusion surgery. Plus, Regenerative Orthopedics can strengthen the involved ligaments and restore proper motion to the neck.\r\n<h4>The Neck Is Unique</h4>\r\nThe neck is quite unique! The vertebrae in the neck are smaller and more mobile than all of the movable vertebrae of the spine.  And a high degree of mobility is required of the neck vertebrae to move the head through its varied range of motion.\r\n\r\nThese anatomic features are necessary for optimal functioning. But they also make the area more vulnerable to injury due to the demands placed upon the neck. The ligaments of the neck, which are the stabilizing structures primarily responsible for connecting adjacent bones, are especially vulnerable when trauma occurs.\r\n\r\nWhen the neck is stable, it moves and functions normally while remaining in proper alignment and protecting the blood vessels, nerves, and spinal cord—injury to the ligaments changes this dynamic. And the injury leads to instability of the cervical spine. Add to that all of the stresses and loads placed upon the neck, and a cycle of imbalance is set in motion generating even more abnormal changes in the vertebral alignment.\r\n\r\nRemember that cervical instability involves excessive motion between adjacent vertebrae, which causes excessive stress on the supporting ligaments and the nerve endings within them. The result is a cycle of pain and the associated variety of aforementioned symptoms.\r\n<h4>Whiplash: A Type of Cervical Instability</h4>\r\nWhiplash injuries are a common source of cervical instability. The sudden acceleration and deceleration during rear-end collisions cause the head to whip backward and forward severely. The backward “whip,” or hyperextension, is often associated with more injury to the soft tissue of the neck because it lacks the limiting effect of the chin meeting the chest in the forward “whip.” The excessive motion in hyperextension severely strains the involved muscles and ligaments and adjoining neck joints.\r\n\r\nThe ligaments of the neck are particularly vulnerable to injury during a whiplash event. And more notably, when the head is rotated at the time of the collision, such as when looking in the rear-view mirror. The ligaments that function to limit side-to-side head movement become susceptible to failure in this turned position, compromising their ability to limit motion.\r\n\r\nThe lack of a stabilizing structure can lead to further injury of the soft tissue and joint structures and the possibility of nerve injury and irritation of the sympathetic nervous system. The provocation of these nerve endings alters firing patterns and increases the sympathetic nervous system\'s activation, resulting in a myriad of symptoms. Another condition fraught with these many varied symptoms is called Barré-Liéou Syndrome, or cervicocranial syndrome encompasses.\r\n<h3>Neck Pain Relief and Resolution of the Underlying Ligament Injury and Symptoms of Cervical Instability with Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics strengthens weakened ligaments. It is effective in repairing and regenerating the ligaments and structures involved in cervical instability. And the treatment eliminates the instability and abnormal movement, which then resolves the neck pain and associated symptoms.\r\n\r\nCervical instability can be a frustrating and life-altering condition. But Regenerative Orthopedics is a safe, non-surgical option that can stabilize the neck. Plus, it can increase functionality in the person suffering from it and essentially help the patient get their life back.\r\n\r\nWe have written other articles on <a href=\"https://www.drfields.com/conditions/sports-injuries/neck-injury-treatment/\">neck pain</a> and <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cervical-instability/\">cervical instability</a>. Read them by clicking <a href=\"https://www.drfields.com/?s=cervical+instability\">here</a>.','Neck Pain Relief','','publish','open','closed','','neck-pain-relief','','','2021-04-06 00:34:42','2021-04-06 00:34:42','',0,'https://www.drfields.com/?p=1393',0,'post','',0),(1394,8,'2019-06-12 10:20:56','2019-06-12 10:20:56','Joint pain in the various joints of the body is usually caused by some sort of weakness in the soft tissue. Pain in the neck is no different. Ligament weakness is very often the underlying cause of neck pain and it can also be the reason behind headaches, and even ear and mouth pain. Regenerative Orthopedics, such as Prolotherapy, has been proven to effectively stimulate the healing of weakened ligaments that are behind all of this pain. That’s great news because there is an answer for those suffering with these ailments and a way to find permanent pain relief.\r\n\r\n<h4>Neck Ligaments and Cervical Instability</h4>\r\nWhen the ligaments of the neck are weakened, the instability that transpires in the neck is called cervical instability. Sufferers with this malady often experience a bunch of bizarre symptoms in addition to neck pain which can include dizziness, visual disturbances, eye pressure, mouth pain, sinus congestion, tinnitus, and many others. Instability of the ligaments of the neck is implicated in conditions like disc herniation, whiplash, cervicocranial syndrome and spondylosis. When these ligaments are injured, they elongate and become weak, which allows for excessive movement in the vertebrae of the neck.\r\n\r\nInstability that arises in the upper part of the neck or cervical spine (C0-C2) can manifest symtoms such as vertigo, tinnitus, dizziness, facial pain, arm pain, and migraine headaches. A condition called vertebrobasilar insufficiency (VBI) with its associated symptoms of neck pain, headaches/migraines, dizziness, drop attacks, vertigo, difficulty swallowing and/or speaking, and auditory and visual disturbances can also develop in instances of upper cervical spine instability, because the excessive movement in the neck can alter the flow of vertebral arterial blood.\r\nWhen the instability is located in the lower neck or cervical spine (C3-C7), the resultant symptoms include muscle spasms, crepitation, and feelings of pins and needles along with neck pain. As the instability worsens, so do the symptoms. Surgery to fuse the vertebrae of the neck is often recommended in cases of cervical instability, but a consultation from an expert in Regenerative Orthopedics should be sought, since this therapy can often prevent the need for the fusion, as well as strengthen the involved ligaments and restore proper motion to the neck.\r\n\r\n<h4>The Neck Is Unique</h4>\r\nThe neck is unique, because the vertebrae in the neck are smaller and more mobile than all of the movable vertebrae of the spine. The high degree of mobility in the neck vertebrae is required to move the head through its varied range of motion. These anatomic features are necessary for optimal functioning, but also make the area vulnerable to injury due to the demands placed upon the neck. The ligaments of the neck, which are the stabilizing structures primarily responsible for connecting adjacent bones, are especially vulnerable when trauma occurs. When the neck is stable, it moves and functions normally, while remaining in proper alignment and protecting the blood vessels, nerves and spinal cord. Injury to the ligaments changes this dynamic, and leads to instability of the cervical spine. Add to that all of the stresses and loads placed upon the neck and a cycle of imbalance is set in motion generating even more abnormal changes in the vertebral alignment. Remember that cervical instability involves excessive motion between adjacent vertebrae which causes excessive stress on the supporting ligaments and the nerve endings within them. The result is a cycle of pain and the associated variety of aforementioned symptoms.\r\n\r\n<h4>Whiplash: A Type of Cervical Instability</h4>\r\nWhiplash injuries are a common source of cervical instability. The sudden acceleration and deceleration during rear end collisions causes the head to severely whip backwards and forwards. The backward “whip,” or hyperextension, is often associated with more injury to the soft tissue of the neck, because it lacks the limiting effect of the chin meeting the chest in the forward “whip.” The excessive motion in hyperextension severely strains the involved muscles and ligaments, and adjoining neck joints.\r\n\r\nThe ligaments of the neck are particularly vulnerable to injury during a whiplash event and more notably when the head is rotated at the time of collision, such as when looking in the rear-view mirror. The ligaments that function to limit side-to-side head movement become susceptible to failure in this turned position, which then compromises their ability to limit motion. The lack of a stabilizing structure can lead to further injury of the soft tissue and joint structures and the possibility of nerve injury as well as irritation of the sympathetic nervous system. Provocation of these nerve endings alters firing patterns and increases activation of the sympathetic nervous system resulting in a myriad of symptoms, as those that occur in the condition called Barré-Liéou Syndrome or cervicocranial syndrome.\r\n\r\nResolve the Underlying Ligament Injury and the Symptoms with Regenerative Orthopedics\r\nRegenerative Orthopedics strengthens weakened ligaments. It is effective in repairing and regenerating the ligaments and structures involved in cervical instability, eliminating the instability and abnormal movement, which then resolves the neck pain and associated symptoms. Cervical instability can be a frustrating and life-altering condition, but Regenerative Orthopedics, a safe non-surgical option, can stabilize the neck and increase functionality in the person suffering it, and essentially help the patient get their life back.\r\n','Neck Pain Treatment and Relief','','inherit','closed','closed','','1393-revision-v1','','','2019-06-12 10:20:56','2019-06-12 10:20:56','',1393,'https://www.drfields.com/uncategorized/1393-revision-v1/',0,'revision','',0),(1395,8,'2019-06-12 10:52:39','2019-06-12 10:52:39','[caption id=\"attachment_4597\" align=\"alignright\" width=\"324\"]<img class=\" wp-image-4597\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/joint-pain-400x500.png\" alt=\"Joint Pain\" width=\"324\" height=\"405\" /> <strong>                   What\'s Behind Joint Pain?</strong>[/caption]\r\n<h2>What is Behind Joint Pain?</h2>\r\nSimply put, joint pain is due to weakness. Most of the joint pain we experience, whether from pain located in the neck, back, hip or knee, is due to weakness. More specifically, the weakness is coming from an injury of the ligaments and tendons, which will then cause the joint to become unstable.\r\n\r\n<em><strong> A joint is literally only as strong as its weakest ligament.</strong></em> Why is that? Because once one of the ligaments becomes injured and weak, the whole joint then moves abnormally. It would be like having a loose nut on a bicycle handlebar. You know that when that bar has a loose nut, the bar will eventually become loose. And right when you don\'t want it to, it will turn to the right or turn to the left or even drop down. Now everything is off-kilter and steering becomes nearly impossible.\r\n\r\nA weakened ligament makes a joint off-kilter too. And the joint left in this condition will wear away and cause more and more damage. It only worsens the cycle of abnormal movement and joint destruction.\r\n<h3>Pain-Free Joint Motion Requires Strong and Healthy Joint Structures</h3>\r\nMost of the joint tissue structures that become worn in this destructive pattern are structures with poor blood supply. And that, unfortunately, compromises the healing ability of the joint once it sustains an injury. These blood-poor structures include cartilage, discs, labrum, ligaments, meniscus, and tendons.\r\n\r\nWhen muscles are injured, they don’t have this difficulty in healing. Why? Because they, fortunately, have a great blood supply and can repair easily. Muscles, bone, and all of these other joint structures work together to stabilize the joint. But for the joint to function correctly, all of the structures need to be strong and healthy.\r\n<h3>Ligaments Are Key to Maintaining Joint Health and Integrity</h3>\r\nLigaments are an integral part of the proper functioning of the joint. But they are also, unfortunately, one of the most common causes of musculoskeletal pain. The ligaments are a sensory organ--meaning they are full of free nerve endings. When they are injured, they generate pain.\r\n\r\nWhen the ligament is injured, the joint harmony between ligaments, muscles, and bony structures is disrupted. And this disruption interferes with mobility and joint stability. The integrity of the joint is disrupted, and abnormal forces are conveyed throughout the joint, causing damage to other structures in and around the joint.\r\n\r\nAnd when the ligaments are left untreated, the body will try to stabilize the joint by causing chronic muscle spasms, joint swelling, and eventually bone spur formation and degenerative arthritis. <em><strong>And there you have the cycle of chronic joint pain.</strong></em>\r\n<h3>Ligament Injury May Lead to Other Painful Joint Conditions</h3>\r\nThe cycle of joint pain, which begins with ligament injury, will continue. Why is that? Because joint instability instigated by injured ligaments also can lead to a number of other painful conditions.\r\n\r\nLigament injury to the knee, for example, may give rise to jumper’s knee, osteochondral defects, iliotibial band syndrome, chondromalacia patella, osteoarthritis, bone spurs, and more. Painful joint conditions, such as these, are often treated with medications to reduce pain and inflammation temporarily.\r\n\r\nBut what happens when you turn off the pain signal with pain medications while the joint is still injured and without addressing the underlying source of injury, such as the ligament injury? The individual or athlete who continues to work, play and remain active on an injured joint will cause further damage!\r\n<h3>An Injured Joint Can Be Repaired Non-Surgically with Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics works great at healing these blood-poor soft tissue structures. That\'s because it actually stimulates blood flow to the joint structures. And the result is enhanced healing and repair of the joint. Healing and regeneration are what Regenerative Orthopedics does.\r\n\r\nAs a regenerative technique, the treatment stimulates the repair of injured joint tissue and relieves joint pain. It works by stimulating ligaments and tendons to proliferate at the injection site and promotes the three stages of healing: inflammation, proliferation, and remodeling.\r\n\r\nRegenerative Orthopedic treatments trigger healing via inflammation. After the solutions are injected at the injury site, a cellular reaction takes place. And various cells, including fibroblasts, endothelial cells, and myofibroblasts, form new blood vessels. The process ultimately lays down collagen, which enhances tissue repair and strength. The collagenous connective tissue produced is new tissue identical to the collagen fabric of normal connective tissue, resulting in stronger ligament attachments.\r\n\r\nAdditionally, blood flow is stimulated by movement and exercise. Since there is basically no downtime with Regenerative Orthopedics, exercise and movement are encouraged. Motion causes an increase in blood flow to the affected joint. And that provides the damaged ligament tissue with the nutrients and metabolites necessary for tissue repair and healing.\r\n\r\nA ligament is not completely healed until all of the signs and symptoms of ligament injury are gone. The symptoms include pain, tenderness, crepitus, and inhibited or excessive motion. The individual will experience restored function.\r\n\r\nRegenerative Orthopedics treats joint pain at its source, including all of the difficult to heal joint structures. Ligaments and other involved joint structures are comprehensively treated with this therapy. And the result of treatment is a healed and strengthened joint and resolved joint pain.\r\n<h3>Contact Us!</h3>\r\nFind out how you can get rid of your joint pain with Regenerative Orthopedics. <a href=\"https://www.drfields.com/contact/\">Contact us</a> now.\r\n\r\nRead more of our <a href=\"https://www.drfields.com/?s=joint+pain\">articles</a> about joint pain resolution and joint repair <a href=\"https://www.drfields.com/?s=joint+pain\">here</a>.','What is Behind Joint Pain?','','publish','open','closed','','what-is-behind-joint-pain','','','2021-03-31 19:17:32','2021-03-31 19:17:32','',0,'https://www.drfields.com/?p=1395',0,'post','',0),(1396,8,'2019-06-12 10:52:39','2019-06-12 10:52:39','Simply put, joint pain is due to weakness. Most of the joint pain we experience, whether from pain located in the neck, back, hip or knee, is due to weakness. More specifically, the weakness is coming from an injury of the ligaments and tendons, which will then cause the joint to become unstable. A joint is literally only as strong as its weakest ligament. Why is that?  Because once one of the ligaments becomes injured and weak, the whole joint then moves abnormally. It would be like having a loose nut on a bicycle handle bar. You know that when that bar has a loose nut, the bar will eventually turn to the right or turn to the left or even drop down. Then it becomes difficult to steer since everything is now off kilter. A weakened ligament makes a joint off kilter too. And the joint left in this condition will wear away and cause more and more damage, only worsening the cycle of abnormal movement and joint destruction.\r\n<h6>Pain-Free Joint Motion Requires Strong and Healthy Joint Structures</h6>\r\nMost of the joint tissue structures that become worn in this destructive pattern are structures with a poor blood supply which unfortunately compromises the healing ability of the joint once it sustains an injury. These structures include cartilage, discs, labrum, ligaments, meniscus and tendons. When muscles are injured, they don’t have this difficulty in healing, because they fortunately have a great blood supply and can repair easily. Muscles, bone, and all of these other joint structures work together to stabilize the joint.  In order for the joint to function correctly, all of the structures need to be strong and healthy.\r\n<h6>Ligaments Are Key to Maintaining Joint Health and Integrity</h6>\r\nLigaments are an integral part of proper functioning of the joint, but they are also unfortunately, one of the most common causes of musculoskeletal pain. The ligaments are a sensory organ, meaning they are full of free nerve endings. When they are injured, they generate pain. When the ligament is injured, the joint harmony between ligaments, muscles and bony structures is disrupted, interfering with mobility and joint stability. The integrity of the joint is disrupted, and abnormal forces are conveyed throughout the joint, causing damage to other structures in and around the joint. When the ligaments are left untreated, the body will try to stabilize the joint by causing chronic muscle spasms, joint swelling and eventually bone spur formation and degenerative arthritis. <em><strong>And there you have the cycle of chronic joint pain.</strong></em>\r\n<h6>Ligament Injury May Lead to Other Painful Joint Conditions</h6>\r\nThe cycle of joint pain which begins with ligament injury will continue, because joint instability instigated by injured ligaments also has the potential to lead to a number of other painful conditions.  Ligament injury to the knee, for example, may give rise to jumper’s knee, osteochondral defects, iliotibial band syndrome, chondromalacia patella, osteoarthritis, bone spurs and more.\r\nPainful joint conditions, such as these, are often treated with medications to temporarily reduce the pain and inflammation. But what happens when you turn off the pain signal, while the joint is still injured, and without addressing the underlying source of injury, such as the ligament injury? The individual or athlete who continues to work, play and remain active on an injured joint, will cause further damage!\r\n<h6>How Can An Injured Joint Be Repaired?</h6>\r\nRegenerative Orthopedics stimulates blood flow to the joint structures, enhances healing, and repairs the joint. Regenerative Orthopedics is a regenerative technique used to stimulate repair of injured joint tissue and relieve joint pain. It works by stimulating ligaments and tendons to proliferate at the injection site and promotes the three stages of healing: inflammation, proliferation and remodeling.\r\n\r\nRegenerative Orthopedic treatments trigger healing via inflammation. After the solutions are injected at the injury site, a cellular reaction takes place in which various cells including fibroblasts, endothelial cells and myofibroblasts form new blood vessels and ultimately lay down collagen which enhances tissue repair and strength.The collagenous connective tissue produced, is new tissue identical to the collagen fabric of normal connective tissue, resulting in ligament attachments that are stronger.\r\n\r\nAdditionally, blood flow is stimulated by movement and exercise. Since there is basically no downtime with Regenerative Orthopedics, exercise and movement are encouraged.  Motion causes an increase of blood flow to the affected joint, providing the damaged ligament tissue with the nutrients and metabolites necessary for tissue repair and healing.\r\n\r\nA ligament is not completely healed until all of the signs and symptoms of ligament injury are gone (which include pain, tenderness, crepitus, inhibited or excessive motion), and the individual has restored function.\r\nRegenerative Orthopedics treats joint pain at its source, including all of the difficult to heal joint structures.  Ligaments, and other involved joint structures are comprehensively treated with this therapy, which results in a healed and strengthened joint, and resolves joint pain.\r\n','What is Behind Joint Pain?','','inherit','closed','closed','','1395-revision-v1','','','2019-06-12 10:52:39','2019-06-12 10:52:39','',1395,'https://www.drfields.com/uncategorized/1395-revision-v1/',0,'revision','',0),(1397,8,'2019-10-16 10:54:01','2019-10-16 10:54:01','Meniscus tears of the knee and labral tears of the hip commonly occur from some form of trauma. Sporting events and activities are common culprits. The tears are not always immediate, but can arise after another structure of the hip or knee is damaged.\r\n\r\nInjury or damage to the joint inhibits normal functioning. And with continual use and wear and tear, the bones in the joint will rub against each other abnormally. Oftentimes,  the injury of ligaments, tendons and the meniscus or labrum make the joint unstable and painful. As this course continues, the knee or hip joint will degenerate and progress to arthritis.\r\n\r\n[caption id=\"attachment_4036\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4036 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/meniscus-tears-500x500.jpg\" alt=\"Meniscus Tears\" width=\"500\" height=\"500\" /> <strong>          Meniscus Tears Can Be Repaired Non-Surgically</strong>[/caption]\r\n<h4>The Meniscus Tears and Surgery</h4>\r\nThe menisci protect the cartilage in the knee from high stresses placed upon the joint. They are located between the femur and the tibia bones. Injury to the meniscus is one of the most common knee injuries for which people seek medical care.\r\n\r\nSurgery is frequently recommended for various types of meniscus tears. Types of meniscus tears include bucket handle tears, radial tears, horizontal tears, and oblique tears. When more than one of these patterns is present, the tear is called a complex tear. Surgery is frequently recommended for these tears. But surgery, including arthroscopic surgery, adds to the instability of the joint. Why? Because during the surgery joint structures are cut, scraped and removed.\r\n\r\nThe meniscus and the articular cartilage are the most commonly removed structures, when arthroscopic surgery of the knee is performed. When the meniscus and cartilage are removed, the femur bone is unable to glide smoothly over the tibia. This enhances knee instability and hastens the arthritic rate. It changes the dynamics within the joint causing abnormal knee joint function.\r\n\r\nArthroscopic surgery boosts arthritic degeneration, because pressure on the cartilage escalates when the meniscus is removed, and the joint becomes more unstable with the stretching, cutting and scraping of the ligaments, tendons and cartilage. The degeneration of the articular cartilage appears to be proportional to the size of the segment removed. The joint breakdown leads to further thinning of the remaining articular cartilage. This allows for increased pressure on the underlying tibia bone which then increases pressure on the ligaments.\r\n\r\nWhen the ligaments tear, the instability becomes even worse. The result of this breakdown of the joint is a cycle of knee pain, joint degeneration, structure damage, and even more pain.\r\n\r\n[caption id=\"attachment_4038\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4038\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/labral-tear-copy-500x446.png\" alt=\"Labral Tear Copy\" width=\"500\" height=\"446\" /> <strong>   Treat Labral Tears Effectively with Regenerative Orthopedics</strong>[/caption]\r\n<h4>Hip Labral Tears</h4>\r\nThe hip labrum, along with various hip ligaments and the normal deep socket configuration of the anatomy of the hip joint, provide most of the stability of the hip\r\n\r\nInjury to the ligaments, tendons and labrum, initiate the same damage and pain cycle that we described for the knee, which results in ongoing hip pain and can lead to hip arthritis. Surgical repair of the hip labrum and hip replacement are needed at times, but in our opinion, should be sought as a last resort.Tr\r\n\r\nJust as removal of the meniscus increases instability in the knee, extraction of the labrum makes the hip joint more unstable, and will eventually degenerate the hip and lead to further arthritis.\r\n<h4>Treating Meniscus &amp; Labral Tears Non-Surgically with Regenerative Orthopedics</h4>\r\nNon-surgical options do exist to treat both meniscal and labral tears.\r\n\r\nRegenerative Orthopedics, a regenerative injection therapy, has been successfully utilized to repair and regenerate the injured ligaments, tendons, meniscus, labrum and cartilage in injured and degenerated knee and hip joints. The therapy boosts collagen formation both outside and inside the knee and hip joint, by stimulating the body to repair itself.\r\n<h3>Meniscus and Labral Tears With Joint Instability Should Be Treated Comprehensively</h3>\r\nComprehensively treating all of the ligament attachments of the joint, ensures the stability of the hip and knee joint, since treating the ligaments tightens the loose supporting structures, aiding in the elimination of pain. In cases of advanced degeneration and arthritis, the Gold Standard in Stem Cell Therapy can be utilized, which incorporates bone marrow stem cells, as well as adipose stem cells, plus Platelet Rich Plasma (PRP), and Prolotherapy in a combined regenerative procedure.\r\n\r\nStem cells can self-renew and differentiate (or change) into a variety of cell types, and repair injured tissue. PRP and Prolotherapy activate growth factors which augment stem cell proliferation and aid in the repair of conditions with cellular deficiencies, like a damaged meniscus or labrum. The Gold Standard in Stem Cell Therapy provides the cells and growth factors that the damaged tissues and degenerative conditions lack, to aid in their healing.\r\n\r\nMost painful joint conditions begin with joint instability due to damage to the surrounding ligaments. The instability can progress to meniscal injuries or labral degeneration and eventually to knee or hip arthritis. Treatments such as arthroscopy to repair these tears can actually increase the arthritic process.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Meniscus and Labral Tears','','publish','open','closed','','meniscus-and-labral-tears','','','2020-08-26 02:44:35','2020-08-26 02:44:35','',0,'https://www.drfields.com/?p=1397',0,'post','',0),(1398,8,'2019-06-12 10:54:01','2019-06-12 10:54:01','Meniscus tears of the knee and labral tears of the hip commonly occur from some form of trauma, such as that which transpires during a sporting event. The tears are not always immediate, but can arise after another structure of the hip or knee is damaged. Injury or damage to the joint inhibits normal functioning, and with continual use and wear and tear, the bones in the joint will rub against each other abnormally. Oftentimes, ligaments, tendons and the meniscus or labrum are all injured making the joint unstable and painful. As this course continues, the knee or hip joint will degenerate and progress to arthritis.\r\n\r\n<h4>The Meniscus Tears and Surgery</h4>\r\nThe menisci protect the cartilage in the knee from high stresses that are placed upon the joint. They are located between the femur and the tibia bones. Injury to the meniscus is one of the most common knee injuries where medical care is sought due to knee pain. Surgery is frequently recommended for various types of meniscus tears, including bucket handle tears, radial tears, horizontal tears, and oblique tears. When more than one of these patterns is present, the tear is called a complex tear.  Although frequently recommended, surgery, including arthroscopic surgery, adds to the instability of the joint, because joint structures are cut, scraped and removed. The meniscus and the articular cartilage are the most commonly removed structures, when arthroscopic surgery of the knee is performed. When the meniscus and cartilage are removed, the femur bone is unable to glide smoothly over the tibia, enhancing knee instability and hastening the arthritic rate. The dynamics within the joint are changed and the knee joint no longer functions normally. Arthroscopic surgery boosts arthritic degeneration, because pressure on the cartilage escalates when the meniscus is removed, and the joint becomes more unstable with the stretching, cutting and scraping of the ligaments, tendons and cartilage. The degeneration of the articular cartilage appears to be proportional to the size of the segment removed. The joint breakdown leads to further thinning of the remaining articular cartilage. This allows for increased pressure on the underlying tibia bone which then increases pressure on the ligaments. When the ligaments tear, the instability becomes even worse. The result of this breakdown of the joint is a cycle of knee pain, joint degeneration, structure damage, and even more pain.\r\n\r\n<h4>Hip Labral Tears</h4>\r\nThe hip labrum, along with various hip ligaments and the normal deep socket configuration of the anatomy of the hip joint, provide most of the stability of the hip. Injury to the ligaments, tendons and labrum, initiate the same damage and pain cycle that we described for the knee, which results in ongoing hip pain and can lead to hip arthritis. Surgical repair of the hip labrum and hip replacement are needed at times, but in our opinion, should be sought as a last resort. Just as removal of the meniscus increases instability in the knee, extraction of the labrum makes the hip joint more unstable, and will eventually degenerate the hip and lead to further arthritis.\r\n\r\n<h4>Treating Meniscus &amp; Labral Tears Non-Surgically with Regenerative Orthopedics</h4>\r\nNon-surgical options do exist to treat both meniscal and labral tears.  Regenerative Orthopedics, a regenerative injection therapy, has been successfully utilized to repair and regenerate the injured ligaments, tendons, meniscus, labrum and cartilage in injured and degenerated knee and hip joints. The therapy boosts collagen formation both outside and inside the knee and hip joint, by stimulating the body to repair itself. Comprehensively treating all of the ligament attachments of the joint, ensures the stability of the hip and knee joint, since treating the ligaments tightens the loose supporting structures, aiding in the elimination of pain. In cases of advanced degeneration and arthritis, the Gold Standard in Stem Cell Therapy can be utilized, which incorporates bone marrow stem cells, as well as adipose stem cells, plus Platelet Rich Plasma (PRP), and Prolotherapy  in a combined regenerative procedure. Stem cells can self-renew and differentiate (or change) into a variety of cell types, and repair injured tissue. PRP and Prolotherapy activate growth factors which augment stem cell proliferation and aid in the repair of conditions with cellular deficiencies, like a damaged meniscus or labrum. The Gold Standard in Stem Cell Therapy provides the cells and growth factors that the damaged tissues and degenerative conditions lack, to aid in their healing.\r\n\r\nMost painful joint conditions begin with joint instability due to damage to the surrounding ligaments. The instability can progress to meniscal injuries or labral degeneration and eventually to knee or hip arthritis. Treatments such as arthroscopy to repair these tears can actually increase the arthritic process. Non-surgical Regenerative Orthopedics is available as an excellent option to stimulate the body to repair the entire joint, and alleviate knee and hip pain, due to arthritis and/or as a result of ligament, tendon, meniscal and labral tears.\r\n','Meniscus and Labral Tears','','inherit','closed','closed','','1397-revision-v1','','','2019-06-12 10:54:01','2019-06-12 10:54:01','',1397,'https://www.drfields.com/uncategorized/1397-revision-v1/',0,'revision','',0),(1399,8,'2019-06-12 10:55:29','2019-06-12 10:55:29','<h2>Is There Help for Arthritis Pain without Needing to Have Surgery?</h2>\r\n[caption id=\"attachment_4581\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4581 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/arthritis-steals-500x500.png\" alt=\"Help Arthritis Pain without Surgery\" width=\"500\" height=\"500\" /> <strong>Regenerative Orthopedics: Help Arthritis Pain without Surgery</strong>[/caption]\r\n\r\nArthritis is the most common joint disease in the world, representing a major cause of disability and an enormous financial and economic burden. Oftentimes, the result of arthritis is some type of surgery, and often joint replacement surgery. In this article, we will discuss arthritis, its cause, its progression, and ways to treat it. We will also talk about a non-surgical treatment option that is an amazing help for arthritis pain. Plus, it does not require hospitalization or surgery.\r\n<h3>Arthritis: The Disease and its Progression</h3>\r\nArthritis is a chronic disease that debilitates the articular joints. It occurs through a sequence of events that has at its core, a loss of joint cartilage. This affects other joint structures and eventually will lead to joint space narrowing and bony overgrowth. And the disease will continue to progress until joint movement becomes noticeably restricted.\r\n\r\nBony overgrowth with the appearance of bone spurs or osteophytes, detected by x-ray, has become the criterion for diagnosing advanced arthritis or radiographic osteoarthritis.\r\n\r\nBut what occurs before the cartilage loss? Arthritis almost always begins with ligament weakness or injury. Joints are composed of two bones covered with articular cartilage. Healthy cartilage allows the joint to slide because it has a smooth lubricated surface. And healthy ligaments hold the bones together. So, along with the cartilage, they enable the bones to glide evenly over one another when the joints are in motion.\r\n<h3>Weak and Injured Ligaments Add to the Arthritis Problem</h3>\r\nHowever, when the ligaments are weak, the bones will glide over one another in an uneven manner. And that causes one area of bone to bear additional weight on the articular cartilage when the joint is stressed. This uneven distribution expands with ongoing joint stress, weakening the ligaments further, and causing instability of the joint.\r\n\r\nThe increase in abnormal weight distribution inside the joint causes a breakdown of the articular cartilage. Without this surface, the joint loses its smooth gliding motion and becomes limited in its movement. With the ligaments unable to stabilize the joint, the muscles and their tendons will tense in an attempt to stabilize the weakened area. But they too will eventually weaken, producing “knots” and eliciting painful trigger points.\r\n\r\nThe unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing and exposure of the underlying subchondral bone.  And that precipitates a process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called osteoarthritis.\r\n\r\nArticular cartilage has no blood supply and therefore tends to heal slowly and imperfectly. <strong>Interestingly, cartilage also lacks a neural network and does not elicit pain itself.</strong> <em><strong>The pain in arthritis occurs from the pressure on the subchondral bone after the loss of cartilage tissue and from the stress on the tendons and ligaments of the joint.</strong></em>\r\n<h3>Ways to Help with Arthritis Pain</h3>\r\nThere are many medications and procedures that have been tried over the years for relief of pain and treatment of arthritis. But there is still no cure. Exercise, medications, physical therapy, and lifestyle modification may provide symptom relief, but they do nothing to regenerate the joint.\r\n\r\nThere are, however, treatments available that stimulate the regenerative processes in the joint to facilitate the restoration of degenerated cartilage to a healthy state--Regenerative Orthopedics. Stem Cell Therapy is one type of regenerative medicine. It is a  non-surgical treatment that supplies the affected joint with chondrogenic (cartilage forming) stem cells, which we obtain from both bone marrow and fat. Injecting these cells into the degenerated joint supports chondrogenesis or the process by which cartilage is developed. Let\'s explain the process further...\r\n<h4>The Gold Standard in Stem Cell Therapy: A Combination Treatment Far Above the Rest</h4>\r\nIn our practice, we stand apart from most other clinics when it comes to Stem Cell Therapy, because we use the Gold Standard. Instead of just one type, we use several different successful regenerative treatments in combination to effectively repair arthritic joints.\r\n\r\nAnd you don\'t have to be hospitalized or laid up for prolonged periods of type for these treatments either. They are non-surgical, so you can stay active. You don’t have to take extended time off of work, and you can still travel and be mobile! Those are such great benefits!\r\n\r\nAll Regenerative Orthopedic therapies, including Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy, are reparative and effective non-surgical alternatives! Prolotherapy alone is a technique to treat arthritis and to aid the body to heal. It prompts the body to create new collagen. And various trials and studies have shown the effectiveness of dextrose prolotherapy in treating osteoarthritis, as well as ligament and tendon injuries.\r\n\r\nIn some arthritis cases, Prolotherapy is sufficient to bring the pain relief and repair needed. But in cases of arthritis where the degeneration is advanced, we may recommend the Gold Standard in Stem Cell Therapy. This treatment option combines Prolotherapy with components of blood, fat, and bone marrow.\r\n<h4><em>Four Types of Regenerative Therapies Combined for Amazing Reparative Results</em></h4>\r\nMany clinics use only one or two of these procedures. But we have discovered that Gold Standard combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint. We comprehensively treat the entire joint with multiple injections of the Platelet Rich Plasma portion of the blood. Plus, we use progenitor cells from an aspiration of adipose and bone marrow aspiration.\r\n\r\nThese regenerative treatments, along with Prolotherapy in and around the involved joint offer benefits in terms of pain relief, regenerative properties, and cartilage repair for people affected by arthritis. Prolotherapy involves the injection of a hyperosmolar dextrose solution into an injury site to elicit localized inflammation---which is the first step in healing the damaged area.\r\n\r\nThe dextrose solution acts as a proliferant via the induction of local inflammatory and wound healing cascades, including fibroblast cells that make collagen. With the Gold Standard in Stem Cell Therapy, the goal is to enhance the effects of prolotherapy and improve treatment outcomes in patients with advanced arthritic conditions.\r\n<h3>What is the Expected Outcome?</h3>\r\nPatients treated with the Gold Standard in Stem Cell Therapy report significantly decreased pain. Plus, they experience significant gains in function and quality of life, exercise ability, and range of motion, as well as losses in stiffness and crepitus. These regenerative therapies in conjunction with Prolotherapy are a safe and effective treatment for arthritis. And it has the potential to slow down the progression of the disease and promote the regeneration of articular cartilage. This treatment option is essentially a new paradigm in the treatment of arthritis.\r\n\r\nIn our opinion, nothing comes close to the effectiveness of Regenerative Orthopedics. That\'s because it can stimulate the regrowth of the injured tissue, and tighten the ligaments around the joint, which often reduces joint pain immediately. Proper exercise can then be resumed in order to bring the strength and flexibility of the surrounding muscles to a normal level.\r\n\r\nThe goal of treatment is not only pain relief but also the regeneration of joint structures--- including articular cartilage. This regeneration and repair allow the individual with arthritis to get back to the sport, activity, or way of life they love.\r\n\r\n<a href=\"https://www.drfields.com/contact/\">Contact us</a> to find out if you are a candidate for non-surgical Regenerative Orthopedics and the Gold Standard in Stem Cell Therapy!\r\n\r\nWe have written a number of articles about <a href=\"https://www.drfields.com/?s=arthritis\">arthritis</a>. Click <a href=\"https://www.drfields.com/?s=arthritis\">here</a> to read more articles.\r\n\r\n&nbsp;','Is there Help for Arthritis Pain?','','publish','open','closed','','is-there-help-for-arthritis-pain-without-having-to-have-surgery','','','2021-03-23 00:14:26','2021-03-23 00:14:26','',0,'https://www.drfields.com/?p=1399',0,'post','',0),(1400,8,'2019-06-12 10:55:29','2019-06-12 10:55:29','Arthritis is the most common joint disease in the world, representing a major cause of disability and an enormous financial and economic burden.\r\n\r\n<h4>Arthritis: The Disease and its Progression</h4>\r\nArthritis is a chronic disease that debilitates the articular joints. It occurs through a sequence of events that has at its core, a loss of joint cartilage. This affects other joint structures, and eventually will lead to joint space narrowing and bony overgrowth, progressing until joint movement becomes noticeably restricted. Bony overgrowth with the appearance of bone spurs or osteophytes, detected by x-ray, has become the criterion for diagnosing advanced arthritis or radiographic osteoarthritis.\r\n\r\nBut what occurs before the cartilage loss? Arthritis almost always begins with ligament weakness or injury. Joints are composed of two bones covered with articular cartilage. Healthy cartilage allows the joint to slide, because it has a smooth lubricated surface. Healthy ligaments hold the bones together, and along with the cartilage enable the bones to glide evenly over one another when the joints are in motion.\r\n\r\nWhen the ligaments are weak, the bones will glide over one another in an uneven manner, causing one area of bone to bear additional weight on the articular cartilage when the joint is stressed. This uneven distribution expands with ongoing joint stress, weakening the ligaments further, and causing instability of the joint. The increase in abnormal weight distribution inside the joint causes a breakdown of the articular cartilage. Without this surface, the joint loses its smooth gliding motion and becomes limited in its movement. With the ligaments unable to stabilize the joint, the muscles and their tendons will tense in an attempt to stabilize the weakened area, but they too will eventually weaken, producing “knots” and eliciting painful trigger points. The unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing, exposure of the underlying subchondral bone and precipitating a process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called osteoarthritis.\r\n\r\nArticular cartilage has no blood supply, and therefore tends to heal slowly and imperfectly. Cartilage also lacks a neural network and does not elicit pain itself. The pain in arthritis occurs from the pressure on the subchondral bone after the loss of cartilage tissue and from the stress on the tendons and ligaments of the joint.\r\n\r\n<h4>Ways to Help with Arthritis Pain</h4>\r\nThere are many medications and procedures that have been tried over the years for relief of pain and treatment of arthritis, but there is still no cure. Exercise, medications, physical therapy, and lifestyle modification may provide symptom relief, but they do nothing to regenerate the joint. There are however, treatments available that stimulate the regenerative processes in the joint to facilitate the restoration of degenerated cartilage to a healthy state. Stem Cell Therapy is a non-surgical treatment supplying the affected joint with chondrogenic (cartilage forming) stem cells, which we obtain from both bone marrow and fat. Injecting these cells into the degenerated joint supports chondrogenesis, or the process by which cartilage is developed.\r\n\r\n<h4>The Gold Standard in Stem Cell Therapy: A Combination Treatment Far Above the Rest</h4>\r\nIn our practice, we go even further in using regenerative therapies for arthritis. We use several different successful regenerative treatments in combination to effectively repair arthritic joints. You don’t have to be laid up for these treatments either. They are non-surgical, so you can stay active. You don’t have to take extended time off of work, and you can still travel and be mobile! Regenerative Orthopedic Therapies are reparative and effective non-surgical alternatives! Prolotherapy itself is a technique that is used to aid the body in healing by prompting it to create new collagen. Various trials and studies have shown the effectiveness of dextrose prolotherapy in treating osteoarthritis, as well as ligament and tendon injuries.,, In some cases, prolotherapy alone is sufficient to bring the pain relief and repair needed. When cases of degeneration are advanced, we use the Gold Standard in Stem Cell Therapy, which combines prolotherapy with components of blood, fat, and bone marrow. Many clinics use only one or two of these procedures, but we have discovered that this combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint. We comprehensively treat the entire joint with multiple injections of the Platelet Rich Plasma portion of the blood, progenitor cells from an aspiration of adipose, and bone marrow aspiration. These regenerative treatments, along with prolotherapy in and around the involved joint offer benefits in terms of pain relief, regenerative properties, and cartilage repair for people affected by musculoskeletal disorders such as arthritis. Prolotherapy involves the injection of a hypersmolar dextrose solution into an injury site to elicit localized inflammation, which is the first step in healing the damaged area. The dextrose solution acts as a proliferant via the induction of local inflammatory and wound healing cascades, including fibroblast cells that make collagen. With the addition of the Gold Standard in Stem Cell Therapy, the goal is to enhance the effects of prolotherapy and improve treatment outcomes in patients with advanced arthritic conditions.\r\n\r\n<h4>What is the Expected Outcome?</h4>\r\nPatients treated with the Gold Standard in Stem Cell Therapy report significantly decreased pain and significant gains in function and quality of life, exercise ability, and range of motion, as well as losses in stiffness and crepitus. These regenerative therapies in conjunction with prolotherapy are a safe and effective treatment for arthritis, one that has the potential to slow down the progression of the disease and one that promotes the regeneration of articular cartilage, which is essentially a new paradigm in the treatment of arthritis.\r\n\r\nIn our opinion, nothing comes close to the effectiveness of Regenerative Orthopedics, because it can stimulate the regrowth of the injured tissue, and tighten the ligaments around the joint, which often reduces joint pain immediately. Proper exercise can then be resumed in order to bring the strength and flexibility of the surrounding muscles to a normal level.\r\n\r\nThe goal of treatment is not only pain relief but also regeneration of joint structures including articular cartilage. This regeneration and repair allows the individual with arthritis to get back to the sport, activity or way of life they love.\r\n\r\nPatients treated with the Gold Standard in Stem Cell Therapy report significantly decreased pain and significant gains in function and quality of life, exercise ability, and range of motion, as well as losses in stiffness and crepitus. These regenerative therapies in conjunction with prolotherapy are a safe and effective treatment for arthritis, one that has the potential to slow down the progression of the disease and one that promotes the regeneration of articular cartilage, which is essentially a new paradigm in the treatment of arthritis.\r\n\r\nIn our opinion, nothing comes close to the effectiveness of Regenerative Orthopedics, because it can stimulate the regrowth of the injured tissue, and tighten the ligaments around the joint, which often reduces joint pain immediately. Proper exercise can then be resumed in order to bring the strength and flexibility of the surrounding muscles to a normal level. The goal of treatment is not only pain relief but also regeneration of joint structures including articular cartilage. This regeneration and repair allows the individual with arthritis to get back to the sport, activity or way of life they love.\r\n\r\n&nbsp;','Is There help For Arthritis?','','inherit','closed','closed','','1399-revision-v1','','','2019-06-12 10:55:29','2019-06-12 10:55:29','',1399,'https://www.drfields.com/uncategorized/1399-revision-v1/',0,'revision','',0),(1401,8,'2019-06-12 10:57:08','2019-06-12 10:57:08','[caption id=\"attachment_4571\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4571 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Runners-Knee-500x500.jpg\" alt=\"Runner\'s Knee Pain\" width=\"500\" height=\"500\" /> Runner\'s Knee Pain[/caption]\r\n<h2>Runner\'s Knee Pain: Get Relief Non-Surgically</h2>\r\nRunner’s Knee is a painful knee condition that commonly affects runners. Another name for Runner’s Knee is also called Patellofemoral Pain Syndrome (PFPS). The condition is characterized by anterior knee pain. <em>And Runner\'s Knee pain is commonly experienced behind and around the kneecap or patella. </em>\r\n\r\nRunner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. And it particularly affects adolescents and young adults. Also, the condition is quite common in younger recreational runners, with females suffering more frequently than males.\r\n<h3>Runner\'s Knee Pain &amp; Patellofemoral Pain Syndrome</h3>\r\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur. The patella not only moves up and down but also tilts and rotates. And that movement allows for various points of contact between the patella and femur.\r\n\r\nRepetitive contact at these locations combined with the abnormal articulation of the patella is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome. Patellofemoral Pain Syndrome should be distinguished from chondromalacia, which is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\r\n<h3>What\'s Behind Runner\'s Knee Pain?</h3>\r\n<h4><em>Theories</em></h4>\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces. Forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint.\r\n<h4><em>Anatomic factors</em></h4>\r\nAnatomic factors that predispose towards patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n<h4><em>Etiology: What Causes Runner\'s Knee?</em></h4>\r\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint, which causes instability and improper tracking as the patella articulates with the patellofemoral groove in the femur.\r\n\r\nFor example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee as this movement increases the pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable, especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces and, eventually, the articular cartilage.\r\n<h4>Runner’s Knee Symptoms</h4>\r\nBesides the tenderness behind, around, and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint. The pain typically occurs with activity and often worsens with those activities that include steps, hills, and uneven surfaces. Going downhill or downstairs aggravates the condition.\r\n\r\nPain can also be triggered by prolonged sitting due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\r\n<h4>How is Runner’s Knee Treated?</h4>\r\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, orthotics. Plus, physical therapy with quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles, and iliotibial band stretching exercises.\r\n\r\nThis approach may temporarily help, but it does not fix the problem of instability in the knee joint, causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful, and exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee.\r\n\r\nRegenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella, will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening will pull the patella into the groove, allowing for a realignment of the patella.\r\n\r\nRegenerative Orthopedics, along with vastus medialis strengthening, will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee. The treatment allows for a quick return to activities without the need for surgery.\r\n\r\n<a href=\"https://www.drfields.com/contact/\">Contact OrthoRegen</a> for more information.','Runner\'s Knee Pain: Get Relief Non-Surgically','','publish','open','closed','','runners-knee-pain-get-relief-non-surgically','','','2021-03-22 22:52:19','2021-03-22 22:52:19','',0,'https://www.drfields.com/?p=1401',0,'post','',0),(1402,8,'2019-06-12 10:57:08','2019-06-12 10:57:08','Runner’s Knee is a painful knee condition that is, like the name says, common in runners.  Runner’s Knee is also called Patellofemoral Pain Syndrome (PFPS), and is characterized by anterior knee pain. Sufferers of this condition commonly experience pain behind and around the kneecap or patella. Runner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. Runner’s Knee particularly affects adolescents and young adults, is quite common in younger recreational runners, with females suffering more frequently than males.\r\n\r\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur. The patella not only moves up and down, but also tilts and rotates, allowing for various points of contact between the patella and femur. Repetitive contact at these locations combined with abnormal articulation of the patella, is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome. Patellofemoral Pain Syndrome should be distinguished from chondromalacia, which is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\r\n\r\n<h4>What\'s Behind Runner\'s Knee?</h4>\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. Anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. Anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint, which causes instability and improper tracking as the patella articulates with the patellofemoral groove in the femur. For example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee as this movement increases pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable, especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces, and eventually the articular cartilage.\r\n\r\n<h4>Runner’s Knee Symptoms</h4>\r\nBesides the tenderness behind, around and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint.  The pain typically occurs with activity and often worsens with activities that include steps, hills, and uneven surfaces. Going downhill or downstairs aggravates the condition. Pain can also be triggered by prolonged sitting, due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\r\n\r\n<h4>How is Runner’s Knee Treated?</h4>\r\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, orthotics and physical therapy with quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles and iliotibial band stretching exercises. This approach may help temporarily, but it does not fix the problem of instability in the knee joint which is causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful, and exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee. Regenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening will pull the patella into the groove, allowing for a realignment of the patella.\r\nRegenerative Orthopedics along with vastus medialis strengthening will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee, allowing for a quick return to activities.\r\n','Runner\'s Knee Pain','','inherit','closed','closed','','1401-revision-v1','','','2019-06-12 10:57:08','2019-06-12 10:57:08','',1401,'https://www.drfields.com/uncategorized/1401-revision-v1/',0,'revision','',0),(1403,8,'2019-06-12 10:58:32','2019-06-12 10:58:32','[caption id=\"attachment_4600\" align=\"alignright\" width=\"445\"]<img class=\"wp-image-4600 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-500x500.jpg\" alt=\"Hip\" width=\"445\" height=\"445\" /> <strong>              Hip Joint Injuries and Pain Getting in Your Way?</strong>[/caption]\r\n<h2>Is Hip Injury and Pain Getting in Your Way?</h2>\r\nA hip injury and pain can often get in the way of us enjoying life and doing all of the things we love to do. In this article, we will talk about the hip, how it works, the types of hip injuries, and how to best repair them so you can get back to what you love.\r\n<h4><em>Hip Strength and Stability</em></h4>\r\nThe hip joint is a ball-and-socket joint with massive ligaments, making the hip quite stable. The bony anatomy, muscles, labrum, and ligaments of the hip contribute to its strength and stability.\r\n\r\nThe ball and socket are sealed by the hip labrum, a ring of cartilage that helps with movement between the leg and the pelvis. The hip ligaments are primarily responsible for maintaining smooth hip motion. And they keep the hip in place while it moves in a pain-free, strong and stable fashion.\r\n<h3>What Causes Hip Injury?</h3>\r\nEven though the hip has been known for its strength and stability, hip injuries have become increasingly recognized as a source of pain and disability. This makes sense when one considers we move our hips at least one million times per year during activities of daily living. The high rates of wear and tear attributable to normal use of the hip alone can result in long-term problems.\r\n\r\nAdd to that sports activities, and the requirements on athletes to become bigger and stronger places more and more force on the hip. The increased requirements place tremendous forces year after year. And that adds to the growth in hip injuries. When the hip\'s soft tissue structures, such as the labrum, tendons, and ligaments, are subjected to forces beyond their normal range, injury and failure occur, resulting in hip injury and instability.\r\n<h3>Types of Hip Injuries</h3>\r\nHip injuries are common in sports activities like soccer, ice hockey, and football. But they also include overuse injuries from repetitive use in activities like cycling, yoga, hiking, aerobics, and more. Symptoms from overuse injuries often have an insidious onset and become residual and chronic.\r\n\r\nHip injuries cause instability of the hip, which results in abnormal movement between the structures of the hip joint. And it is associated with an array of hip conditions, including labral tears, femoroacetabular impingement, ligament tears, dislocations, and osteoarthritis.\r\n<h4><em>Dislocation of the Hip</em></h4>\r\nOne of the most common conditions is dislocation of the hip. Hip dislocations are seen in sports like football, rugby, hurling, and soccer. And they commonly occur posteriorly due to the greater strength of the anterior capsule of the joint. In this situation, the individual is hit in the front of the thigh, forcing the thigh/hip complex backward. The result is hip dislocation and injury to the ligamentum teres and the posterior capsule.\r\n\r\nA joint dislocation significantly disrupts all the structures that support the joint. Long-term consequences of posterior hip dislocations can include sciatic nerve injury, avascular necrosis of the femoral head, and significant arthritis and cartilage damage.\r\n<h4><em>Anterior Hip Capsule Laxity</em></h4>\r\nLaxity of the anterior hip capsule is seen in sports injuries and overuse injuries. Activities that demand supraphysiologic joint motion such as figure skating, dance, and gymnastics are causative factors. The ileofemoral ligament of the anterior hip capsule may stretch out, causing a focal rotational type of instability. This type of instability can cause labral tears and associated pain.\r\n<h4><em>Overuse Injuries of the Hip and Femoroacetabular Impingement</em></h4>\r\nStances repeatedly taken by athletes such as hockey goalies and baseball catchers can cause overuse injuries and lead to femoroacetabular impingement (FAI). However, the most common cause of FAI is simply some soft tissue injury, such as an iliofemoral or ischiofemoral ligament injury.\r\n\r\nOver time, hip instability from ligament injuries and a hip labral tear can cause premature arthritis and FAI. The association between hip instability from athletic injuries and the development of arthritis has been well documented.\r\n<h3>Treating Hip Injury</h3>\r\nA thorough understanding of hip anatomy and instability is essential to managing hip instability and initiation of treatment. In most cases, the physician should be able to find the correct cause of instability with history taking, clinical examination, and radiographs.\r\n\r\nImaging such as MRI and MRI arthrography is also helpful. The evaluation of the hip range of motion, including flexion, internal/external rotation in flexion, abduction, and adduction, should be performed compared to the contralateral hip to confirm the presence of instability.\r\n<h3>Non-Surgical Treatment of the Hip with Regenerative Orthopedics</h3>\r\nThe majority of hip injury and instability cases can be managed non-surgically. Surgical intervention is required in cases of large acetabular fractures. Standard therapeutic approaches (pain medications, corticosteroid injections, and arthroscopy) employed to address hip instability have often been ineffective. That\'s because they do not repair the underlying cause of the problem, the injured ligaments and labrum.\r\n\r\nNon-surgical regenerative therapies, including Stem Cell Therapy, PRP, and Prolotherapy, are alternative modalities that can repair the instability by stimulating the natural regenerative processes in and around the hip joint. These treatments facilitate the restoration of the degenerated ligaments and labrum to a healthy state, improving joint support, function and reducing pain and symptoms.\r\n\r\nPlus, they get you back to doing what you love without the need for surgery and extended time off.\r\n\r\n<strong><a href=\"https://www.drfields.com/articles/prolo-news/\">Click here for more articles by Dr. Fields</a>.</strong>','Is Hip Injury and Pain Getting in Your Way?','','publish','open','closed','','is-hip-injury-and-pain-getting-in-your-way','','','2021-03-31 22:37:55','2021-03-31 22:37:55','',0,'https://www.drfields.com/?p=1403',0,'post','',0),(1404,8,'2019-06-12 10:58:32','2019-06-12 10:58:32','<h4>Hip Strength and Stability</h4>\r\nThe hip joint is a ball-and-socket joint with massive ligaments, which make the hip quite stable and able to prevent many injuries. The bony anatomy, muscles, labrum and ligaments of the hip all contribute to its strength and stability. The ball and socket is sealed by the hip labrum, a ring of cartilage that helps with movement between the leg and the pelvis.The hip ligaments are structures that are primarily responsible for maintaining smooth hip motion, keeping the hip in place, while it moves in a pain-free, strong and stable fashion.\r\n\r\n<h4>What Causes Hip Injuries?</h4>\r\nEven though the hip has been known for its strength and stability in the past, hip injuries have become increasingly recognized as a source of pain and disability. This makes sense when one considers we move our hips at least one million times per year during activities of daily living. The high rates of wear and tear, attributable to normal use of the hip alone can result in long term problems. Add to that sports activities, and the requirements on athletes to become bigger and stronger, places more and more force on the hip. These tremendous forces increase every year, which sheds light on our understanding of the growth in hip injuries. When the soft tissue structures of the hip, such as the labrum, tendons, and ligaments are subjected to forces beyond their normal range, injury and failure occur, resulting in hip joint injury and instability.\r\n\r\n<h4>Types of Hip Injuries</h4>\r\nHip injuries are common in sports activities like soccer, ice hockey and football. But they also include overuse injuries from repetitive use in activities like, cycling, yoga, hiking, aerobics and more. Symptoms from overuse injuries often have an insidious onset, and become residual and chronic. Hip injuries cause instability of the hip, which is demonstrated in abnormal movement between the structures of the hip joint, and is associated with an array of hip conditions, including labral tears, femoroacetabular impingement, ligament tears, dislocations and osteoarthritis.\r\n\r\nOne of the most common conditions is dislocation of the hip. Hip dislocations are seen in sports like football, rugby, hurling and soccer, and they commonly occur posteriorly due to the greater strength of the anterior capsule of the joint. The individual is hit in the front of the thigh, forcing the thigh/hip complex backward, resulting in the hip dislocation and injury to the ligamentum teres and the posterior capsule. A joint dislocation significantly disrupts all the structures that support the joint.  Long-term consequences of posterior hip dislocations can include sciatic nerve injury, avascular necrosis of the femoral head and significant arthritis and cartilage damage.\r\n\r\nLaxity of the anterior hip capsule is seen in sports injuries and overuse injuries. Activities that demand supraphysiologic joint motion such as figure skating, dance and gymnastics are causative factors. The ileofemoral ligament of the anterior hip capsule may stretch out causing a focal rotational type of instability. This type of instability can cause labral tears and associated pain.\r\n\r\nStances repeatedly taken by athletes such as hockey goalies and baseball catchers can cause overuse injuries and may lead to femoroacetabular impingement (FAI). However, the most common cause of FAI is simply some type of soft tissue injury such as an iliofemoral or ischiofemoral ligament injury. Over time, hip instability from ligament injuries as well as a hip labral tear can cause premature arthritis and FAI. The association between hip instability from athletic injuries and the development of arthritis has been well documented.\r\n\r\nA thorough understanding of hip anatomy and cause of instability are essential to the management of hip instability and initiation of treatment. In the majority of cases, the physician should be able to find the correct cause of instability with history taking, clinical examination and radiographs. Imaging such as MRI and MRI arthrography are also helpful. Evaluation of hip range of motion including flexion, internal/external rotation in flexion, abduction and adduction should be performed with comparison to contralateral hip, to confirm the presence of instability.\r\n\r\n<h4>How Are Hip Injuries Treated?</h4>\r\nThe majority of hip instability cases can be managed non-surgically. Surgical intervention is required in cases of large acetabular fractures. Standard therapeutic approaches (pain medications, corticosteroid injections and arthroscopy) employed to address hip instability have often been ineffective, because they do not repair the underlying cause of the problem, the injured ligaments and labrum.\r\n\r\nNon-surgical regenerative therapies including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the instability by stimulating the natural regenerative processes in and around the hip joint to facilitate the restoration of the degenerated ligaments and labrum to a healthy state, improving joint support, function and reducing pain and symptoms.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>','Do You Have a Hip Injury?','','inherit','closed','closed','','1403-revision-v1','','','2019-06-12 10:58:32','2019-06-12 10:58:32','',1403,'https://www.drfields.com/uncategorized/1403-revision-v1/',0,'revision','',0),(1406,8,'2019-06-12 10:59:49','2019-06-12 10:59:49','[caption id=\"attachment_4520\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4520\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee.-avoid-replacement2-1-400x500.png\" alt=\"Knee. Avoid Replacement2\" width=\"400\" height=\"500\" /> <em><strong>                   Joint Replacement Alternative</strong></em>[/caption]\r\n<h3>What\'s Your Joint Replacement Alternative?</h3>\r\nJoint replacements are on the rise. In fact, they have increased so much that, in the last ten years, knee replacements have more than doubled and hip replacements more than tripled. <sup><strong>1</strong></sup> As life expectancy increases, this number will continue to go up. What\'s the reason for so many? Arthritis is the most common cause of chronic knee and hip pain, and this condition eventually leads to joint replacement. Other causes of knee and hip pain include bursitis, tendonitis, sports injuries, chondromalacia patellae, ligament injury, meniscal injury, hip impingement, and labral injury, which often lead to an eventual surgical recommendation or joint replacement intervention. With all of these problems, am I destined for joint replacement? Or is there a joint replacement alternative?\r\n<h4>Traditional Therapies for Joint Pain May Buy You Time. But They Aren\'t Joint Replacement Alternatives.</h4>\r\nThere are a lot of common treatments that people with joint pain encounter before considering joint replacement. But why don\'t they fix the problem? It seems they just buy you time until the eventual joint replacement. So why is that?\r\n\r\nThe goal of traditional therapies is to decrease pain and improve function. Treatments, such as weight loss, exercise, physiotherapy, bracing, and orthotics, may help temporarily. They only buy you more time because they are unfortunately unable to repair the joint instability or source of the pain.\r\n\r\nLet\'s take a look at what\'s behind the problem. The increased mechanical stress caused by injury to the ligaments, meniscus, labrum, etc., changes the joint functions and makes the joint unstable. And that instability makes the soft tissue of the joint even more susceptible to further injury. What is the result? When left unrepaired, the long-lasting effect of continual joint instability is arthritis.\r\n\r\nAgain, many conventional treatments do not last in providing pain relief because they fail to repair the instability. They are also unable to prevent the eventual joint replacement. The road to arthritis, and the ensuing joint replacement, can only be remedied when the problem of joint instability is addressed.\r\n<h4>NSAIDs and Cortisone Interfere with Healing</h4>\r\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are conservative, non-surgical therapies generally recommended initially for pain alleviation. Although steroid injections and NSAIDs have been shown to be effective in decreasing inflammation and pain short-term, they do not reverse the disease.\r\n\r\nThey do, however, inhibit the properties of healing. For this reason, their use is cautioned in those who have joint injuries and arthritis. Did you know that NSAIDs and corticosteroids have no beneficial effect on articular cartilage in arthritis? Instead, they accelerate the very disease they are most often used and prescribed and are a catalyst towards joint replacement. That means, instead of being a joint replacement alternative, they actually propel you more quickly towards the problem.\r\n\r\nIt is interesting to point out that not long after doctors started injecting cortisone and other steroids into joints way back in the 1950s, reports of terrible joint diseases were already surfacing. And even back then, the intra-articular use of steroids was discouraged. Corticosteroid injections accelerate cartilage degeneration and joint destruction. Today, despite the dangers, cortisone use is widespread and has become the standard of care.\r\n<h4>What about the Popular Use of Hyaluronic Acid Injections for Joint Pain? Are They Joint Replacement Alternatives?</h4>\r\nUnfortunately, those who do find some pain relief from hyaluronic acid generally only experience short-term results, which are frequently designed to delay the inevitable joint replacement.\r\n<h4>Does Arthroscopic Surgery Prevent Joint Replacement?</h4>\r\nAn attempt to eliminate pain or a painful area by arthroscopic shaving, cutting, or tissue removal will only delay the pain for a few years until the remaining tissue becomes degenerated. Arthroscopy is a direct assault on the joint tissue. Arthroscopy, like the aforementioned treatments, may give some temporary relief of symptoms. But in the long-term, it will destabilize the joint and boost degeneration. In the long-run, these surgeries can lead to even more surgeries and eventual joint replacement.\r\n\r\nEven athletes, when faced with surgical repair of injuries, like an ACL tear, for example, have a low rate of return to sport and a high rate of new injury. That\'s because surgery makes the joint instability worse, not better. Many surgeries such as labral repair and ACL reconstruction can provide remarkable short-term pain relief. However, the replacement material will not function long-term like the original.\r\n\r\nACL grafts and labral repairs with titanium tacks just do not have the same pliability as the original tissue and cannot restore the joint back to normal. Eventually, they will cause problems.\r\n\r\nThe athlete or any joint pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or corticosteroid injection, the risk of developing long-term arthritis and the eventual joint replacement is greatly increased. The key to keeping the joint strong is to stimulate the area to heal.\r\n<h4>Regenerative Orthopedics Is An Actual Joint Replacement Alternative Because It Repairs the Joint</h4>\r\nRegenerative Orthopedics can help you to avoid joint replacement by stimulating healing and by repairing the joint. Plus, it does not interfere with the normal healing process of the body. PRP, Prolotherapy, and the Gold Standard in Stem Cell Therapy, as utilized at OrthoRegen<sup>®</sup>, are types of Regenerative Orthopedics that stimulate the normal reparative mechanisms of the body by laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee and hip labrum, and boosting cartilage growth.\r\n\r\nAll of these regenerative therapies work to reduce the chance of long-term arthritis and joint replacement. Platelet Rich Plasma, Prolotherapy, and Stem Cell Therapy offer hope to those suffering from various joint pain types and those trying to avoid joint replacement. While surgery is necessary for a small percentage of patients, non-surgical regenerative therapies should be first-line, conservative treatments tried before surgery.\r\n\r\nHave you already had surgery but continue to experience pain? Regenerative Orthopedics is effective even after surgery, when continued pain is experienced or for arthritis accelerated due to the surgery. Regenerative Orthopedics offers a promising alternative to joint replacement and the opportunity for healing and return to function for those suffering from chronic joint pain.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Ever Wonder If There Is A Joint Replacement Alternative? Click here for more articles by Dr. Fields</strong></a>\r\n\r\n<em>1. Kim, S. Changes in surgical loads and economic burden of hip and knee replacements in the US: 1997–2004. Arthritis &amp; Rheumatism,2008: 59: 481–488. </em>doi<em>:10.1002/art.23525</em>','Ever Wonder If You Have Another Choice Other Than Joint Replacement?','','publish','open','closed','','ever-wonder-if-there-is-a-joint-replacement-alternative','','','2021-02-23 00:43:48','2021-02-23 00:43:48','',0,'https://www.drfields.com/?p=1406',0,'post','',0),(1407,8,'2019-06-12 10:59:49','2019-06-12 10:59:49','<h4>Regenerative Orthopedics: An Alternative to Joint Replacement</h4>\r\nJoint replacements are on the rise. They have increased so much that, in the last ten years, knee replacements have more than doubled and hip replacements more than tripled. <sup><strong>1</strong></sup> As life expectancy increases, this number will continue to go up. Arthritis is the most common cause of chronic knee and hip pain, and this condition eventually leads to joint replacement. Other causes of knee and hip pain include bursitis, tendonitis, sports injuries, chondromalacia patellae, ligament injury, meniscal injury, hip impingement, and labral injury, all of which often lead to an eventual surgical recommendation or joint replacement intervention.\r\n\r\n<h4>Traditional Therapies for Joint Pain</h4>\r\nThe goal of traditional therapies is to decrease pain and improve function. Treatments, such as weight loss, exercise, physiotherapy, bracing, and orthotics, may help temporarily, but are unfortunately unable to actually repair the joint instability or source of the pain. The increased mechanical stress caused by injury to the ligaments, meniscus, labrum, etc. changes the way the joint functions and makes the joint unstable and even more susceptible to further soft tissue injury. What is the result? When left unrepaired, the long-lasting effect of continual joint instability is arthritis. Again, many conventional treatments do not last in providing pain relief because they fail to repair the instability. They are also unable to prevent the eventual joint replacement. The road to arthritis, and the ensuing joint replacement, can only be remedied when the problem of joint instability is addressed.\r\n\r\n<h4>NSAIDS and Cortisone Interfere with Healing</h4>\r\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are conservative, non-surgical therapies generally recommended initially for pain alleviation. Although steroid injections and NSAIDs have been shown to be effective in decreasing inflammation and pain short-term, they do not reverse the disease, but rather inhibit the properties of healing. For this reason, their use is cautioned in those who have joint injuries and arthritis. Interestingly, NSAIDs and corticosteroids have no beneficial effect on articular cartilage in arthritis, but rather accelerate the very disease for which they are most often used and prescribed, and are a catalyst towards joint replacement. It is interesting to point out that not long after doctors started injecting cortisone and other steroids into joints way back in the 1950s, reports of terrible joint diseases were already surfacing, and even back then, their intra-articular use was discouraged. Corticosteroid injections accelerate cartilage degeneration and joint destruction. Today, despite the dangers, cortisone use is widespread and has become the standard of care.\r\n\r\n<h4>What about the Popular Use of Hyaluronic Acid Injections for Joint Pain?</h4>\r\nUnfortunately, those who do find some pain relief from hyaluronic acid, generally only experience short-term results, which are frequently designed to delay the inevitable joint replacement.\r\n\r\n<h4>Does Arthroscopic Surgery Prevent Joint Replacement?</h4>\r\nAn attempt to eliminate pain or a painful area by the arthroscopic shaving, cutting, or removal of tissue will only delay the pain for a few years until the remaining tissue becomes degenerated. Arthroscopy is a direct assault to the joint tissue. Arthroscopy, like the aforementioned treatments, may give some temporary relief of symptoms, but in the long-term, will destabilize the joint and boost degeneration. In the long-run, these surgeries can lead to even more surgeries and the eventual joint replacement. Athletes, who have surgical repair of injuries, like an ACL tear for example, have a low rate of return to sport, and a high rate of new injury. Surgery makes joint instability worse, not better. Many surgeries such as labral repair and ACL reconstruction can provide remarkable short-term pain relief. However, the replacement material will not function long-term like the original. ACL grafts and labral repairs with titanium tacks just do not have the same pliability as the original tissue and cannot restore the joint back to normal. Eventually, they will cause problems. The athlete or any joint pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or corticosteroid injection, the risk of developing long-term arthritis and the eventual joint replacement is greatly increased. The key to keeping the joint strong is to stimulate the area to heal.\r\n\r\n<h4>Regenerative Orthopedics Repairs the Joint</h4>\r\nRegenerative Orthopedics stimulates healing and repairs the joint, and does not interfere with the normal healing process of the body. PRP, Prolotherapy, and the Gold Standard in Stem Cell Therapy, as utilized at OrthoRegen, are types of Regenerative Orthopedics that stimulate the normal reparative mechanisms of the body by laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee and hip labrum, and boosting cartilage growth. They work to reduce the chance of long-term arthritis and joint replacement. PRP, Prolotherapy, and Stem Cell Therapy, offer hope to those suffering from various types of joint pain and to those trying to avoid joint replacement. While surgery is necessary in a small percentage of patients, non-surgical regenerative therapies should be first-line, conservative treatments tried prior to surgery.  Regenerative Orthopedics is effective even after surgery, when continued pain is experienced or for arthritis that was accelerated due to the surgery. Regenerative Orthopedics offers a promising alternative to joint replacement and the opportunity for healing and return to function for those suffering from chronic joint pain.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n\r\n<em>1. Kim, S. Changes in surgical loads and economic burden of hip and knee replacements in the US: 1997–2004. Arthritis &amp; Rheumatism,2008: 59: 481–488. </em>doi<em>:10.1002/art.23525</em>','Avoid Joint Replacement','','inherit','closed','closed','','1406-revision-v1','','','2019-06-12 10:59:49','2019-06-12 10:59:49','',1406,'https://www.drfields.com/uncategorized/1406-revision-v1/',0,'revision','',0),(1408,8,'2019-06-12 11:00:36','2019-06-12 11:00:36','[caption id=\"attachment_4530\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4530\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/shoulder-copy-2-500x500.jpg\" alt=\"Stop Pain from Rotator Cuff Injuries\" width=\"500\" height=\"500\" /> <em><strong> Stop Pain from Rotator Cuff Injuries and Other Shoulder Problems</strong></em>[/caption]\r\n<h2>Stop Shoulder Pain from Rotator Cuff Injuries</h2>\r\nMany of us really enjoy participating in indoor and outdoor activities. Our favorite sport or activity might include swimming, golfing, bicycling, playing tennis, volleyball, or another favorite sport. But injuries to the shoulder are common. How do you stop pain from rotator cuff injuries and other shoulder problems?\r\n<h3>The Unique Shoulder Joint and How That Uniqueness Predisposes Us to Shoulder Injury</h3>\r\nThe shoulder is a unique joint in that it is incredibly flexible. The shoulder joint is one of the body’s ball and socket joints, equipped with a huge range of motion. That’s a great feature! Why? Because so many of the activities the shoulder is called upon to perform require mobility and flexibility.\r\n\r\n<em>But there is a balance between flexibility and the maintenance of joint stability.</em> The downside of all that flexibility and motion is injury and instability. And that unfortunately results in pain and impaired function! Athletes such as pitchers, quarterbacks, tennis players, and swimmers, are prone to shoulder injuries. These sports all require repetitive overhead movements. Even golfers suffer regularly from shoulder injuries due to the positioning in the backswing, which commonly affects the non-dominant shoulder. Jobs requiring repeated overhead motion, like painting, can aggravate the shoulder as well and lead to shoulder injury and pain.\r\n<h3>What\'s Behind Rotator Cuff and Other Shoulder Injuries?</h3>\r\nAggressive, repetitive use can cause ligaments to stretch out and elongate. Does your shoulder click and clunk? That\'s not normal. But it is a result of stretched-out soft tissue and abnormal motion in the shoulder joint. Unfortunately, the ligaments do not have much of a blood supply. And when injured, the lower blood supply means ligament healing can be insufficient. If complete healing does not occur, then the abnormal joint motion from unstable ligaments continues.\r\n\r\nDamaged ligaments need time to remodel and repair. For instance, a tennis player with shoulder pain may need to reduce training hours and allow for proper rest time between workouts. The same is true for the golfer, swimmer, pitcher, and painter! With inadequate healing, the shoulder becomes unstable and will start making a clunking or clicking noise. When this occurs with every stroke or swing motion, it can indicate a more severe, multidirectional shoulder instability. The shoulder joint at this point is moving abnormally in a variety of directions, generating more shoulder injury and provoking shoulder pain.\r\n<h3>Shoulder Pain from Rotator Cuff Injury</h3>\r\nHave you or someone you know suffered from a rotator cuff injury? It’s quite a common shoulder injury. A rotator cuff is a group of four muscles and tendons surrounding the glenohumeral joint. The function of the rotator cuff is to provide motion for activities above the waist and shoulders. Because of this, injuries to this group of muscles and tendons often transpire with overhead activities.\r\n\r\nOngoing instability causes strain and weakness in the rotator cuff muscles, which persists at fatiguing the muscles. This will alter the way they function and move, and can lead to injury to other shoulder structures. You can picture how continuing to use poor form, or persisting to work out with an injured shoulder, can set the sufferer on an ongoing course of abnormal joint motion and shoulder injury. Continued overuse results in increased instability, a weaker rotator cuff, and an eventual tear and shoulder degeneration.\r\n<h4>Glenoid Labral Tears of the Shoulder</h4>\r\nAnother affliction common to the shoulder is a glenoid labrum injury. The glenoid labrum is a very important structure because it stabilizes the shoulder. The glenoid is the shoulder socket and the labrum is basically the soft tissue surrounding the socket. A tear to this soft tissue labrum is prevalent in workers who do a lot of manual labor and is also a common injury in athletes.\r\n\r\nThis shoulder injury can occur in a traumatic event, through repetitive motion, or with recurrent dislocations. When the labrum is torn, other ligaments and tendons surrounding the shoulder are often injured too. So if the forces involved in the injury were significant enough to tear the labrum, they were most likely also sufficient to injure the ligaments or tendons.\r\n\r\nKeep this in mind when seeking repair, because all of the injured shoulder structures need to be treated to have a completely healed shoulder joint. Otherwise, the healing will be incomplete, and a cycle of shoulder injury, shoulder re-injury, and shoulder pain is set in motion.\r\n<h4>Should Surgery Be Sought in Shoulder Injuries?</h4>\r\nSurgery is commonly sought to stop pain from rotator cuff injuries and labral tears, but the correction is often ineffective. Why is that? The reason is that surgery, including arthroscopic treatment, involves the removal or debridement of the shoulder structures. When these structures are removed, the shoulder joint is left more unstable, and prone to re-injury!\r\n\r\nGuess what happens when the instability is not repaired? The ongoing <em><strong>abnormal movement</strong></em> will eventually result in the development of arthritis. That\'s because the body will try to stop the movement or stabilize the shoulder by growing more bone! More instability results in more problems and more shoulder pain.\r\n<h4><em>What About Other Conservative Treatment Options to Stop Shoulder Pain from Rotator Cuff Injuries?</em></h4>\r\nConservative treatments such as non-steroidal anti-inflammatories (NSAIDs) and corticosteroids are often recommended too. And although they may give some short-term pain relief, these treatments do not resolve the underlying soft tissue tears and shoulder injury. Sadly, these treatments inhibit healing and further the problem they are given for in the first place. The shoulder pain sufferer is then left with unhealed soft tissue in the shoulder, abnormal motion, and continued pain.\r\n\r\n[caption id=\"attachment_4964\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4964\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Shoulder.-Journal-of-Clinical-Imaging-500x419.png\" alt=\"Shoulder. Journal Of Clinical Imaging\" width=\"500\" height=\"419\" /> <strong>             PRP is effective at reducing shoulder pain</strong>[/caption]\r\n<h4><strong>Regenerative Treatments That Heal the Shoulder</strong></h4>\r\nWhen shoulder injuries do occur or when injuries do not heal properly despite trials of multiple treatment modalities, an effective option is available. Non-Surgical Regenerative Orthopedics, such as Stem Cell Therapy, Prolotherapy, and PRP are treatments that can be utilized to treat and repair shoulder injuries such as glenoid labral tears and rotator cuff injuries. These treatments work because they correct the underlying problem and naturally alleviate shoulder pain.\r\n\r\nProlotherapy, Stem Cell Therapy, and PRP require almost no downtime. They are ideal for athletes who need to continue training, the weekend golfer who doesn’t want to stop their beloved sport, and the painter who cannot afford much downtime. Shoulder injuries often need a treatment that restarts or reboots the ability to repair, and these regenerative therapies do just that. Shoulder instability, rotator cuff injuries, glenoid labral tears (as long as the tear is not complete), and pain can be successfully addressed with these regenerative medicine techniques.\r\n\r\nProlotherapy, Stem Cell Therapy, and PRP are designed to help repair the painful shoulder without cutting, suturing, sewing, or stapling. This is a natural injection therapy that strengthens loose and unstable shoulder joints and the involved ligaments and tendons, creating a more stable, strong, and pain-free shoulder. And this results in the active person being able to continue working or engaging in the sports and activities they love!\r\n<h3>References</h3>\r\n1Sengodan, Vetrivel Chezian, Sajith Kurian, and Raghupathy Ramasamy. \"Treatment of partial rotator cuff tear with ultrasound-guided platelet-rich plasma.\" <em>Journal of clinical imaging science</em> 7 (2017).\r\n2Mora, Maria Valencia, et al. “Stem cell therapy in the management of shoulder rotator cuff disorders.” <em>World Journal of Stem Cells</em>.4 (2015): 691.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>','Stop Shoulder Pain from Rotator Cuff Injuries','','publish','open','closed','','stop-pain-from-rotator-cuff-injuries-and-other-shoulder-injuries','','','2022-04-05 00:12:25','2022-04-05 00:12:25','',0,'https://www.drfields.com/?p=1408',0,'post','',0),(1409,8,'2019-06-12 11:00:36','2019-06-12 11:00:36','The hot days of summer will soon be upon us with the draw to engage in the pleasure of outdoor activities. What better time to swim, golf, bike ride or play tennis, volleyball or another favorite sport. Shoulder pain should not interfere with those plans!\r\n\r\n<h4>The Unique Shoulder Joint</h4>\r\nThe shoulder is a unique joint in that it is incredibly flexible. The shoulder joint is one of the body’s ball and socket joints, equipped with a huge range of motion. That’s a great feature, because so many of the activities the shoulder is called upon to perform require mobility and flexibility. But there is a balance between flexibility and the maintenance of joint stability. The downside of all that flexibility and motion is injury and instability, which unfortunately results in pain and impaired function! Athletes such as pitchers, quarterbacks, tennis players and swimmers, are prone to shoulder injuries. These sports all require repetitive overhead movements. Even golfers suffer regularly from shoulder injuries due to the positioning in the backswing, which commonly affect the non-dominant shoulder. Jobs requiring repeated overhead motion, like painting, can aggravate the shoulder as well and lead to shoulder injury and pain.\r\n\r\nAggressive, repetitive use can cause ligaments to stretch out and elongate. Does your shoulder click and clunk? That is not normal but is a result of stretched out soft tissue and abnormal motion in the shoulder joint. Unfortunately, the ligaments do not have much of a blood supply, which causes problems of insufficient healing that promotes continued abnormal joint motion. When they become damaged, ligaments need time to remodel and repair. For instance, a tennis player with shoulder pain may need to reduce training hours and allow for proper rest time between workouts. The same is true for the golfer, swimmer, pitcher, and painter! With inadequate healing, the shoulder becomes unstable, and will start making a clunking or clicking noise. When this occurs with every stroke or swing motion, it can indicate a more severe, multidirectional shoulder instability. That’s right! The shoulder joint at this point is moving abnormally in a variety of directions, generating more shoulder injury and provoking shoulder pain.\r\n\r\n<h4>Rotator Cuff Injury</h4>\r\nHave you or someone you know suffered from a rotator cuff injury? It’s quite a common shoulder injury. The rotator cuff is a group of four muscles and tendons surrounding the glenohumeral joint. The function of the rotator cuff is to provide motion for activities above the waist and shoulders. Because of this, injuries to this group of muscles and tendons, often transpires with overhead activities. Ongoing instability causes strain and weakness in the rotator cuff muscles, which persists at fatiguing the muscles. This will alter the way they function and move, and can lead to injury to other shoulder structures. You can picture how continuing to use poor form, or persisting to work out with an injured shoulder, can set the sufferer on an ongoing course of abnormal joint motion and shoulder injury. Continued overuse results in increased instability, a weaker rotator cuff, and an eventual tear and shoulder degeneration.\r\n\r\n<h4>Glenoid Labral Tears</h4>\r\nAnother affliction common to the shoulder is a glenoid labrum injury. The glenoid labrum is a very important structure because it stabilizes the shoulder. The glenoid is the shoulder socket and the labrum is basically the soft tissue surrounding the socket. A tear to this soft tissue labrum is prevalent in workers who do a lot of manual labor and is also a common injury in athletes. This shoulder injury can occur in a traumatic event, through repetitive motion, or with recurrent dislocations. When the labrum is torn, other ligaments and tendons surrounding the shoulder are often injured too, because if the forces involved in the injury were significant enough to tear the labrum, they were most likely also sufficient to injure the ligaments or tendons. Keep this in mind when seeking repair, because all of injured shoulder structures need to be treated to have a completely healed shoulder joint. Otherwise, the healing will be incomplete, and a cycle of shoulder injury, shoulder re-injury, and shoulder pain is set in motion.\r\n\r\n<h4>Should Surgery Be Sought?</h4>\r\nSurgery is common for rotator cuff and labral tears, but correction is often ineffective. Why is that? The reason is that surgery, including arthroscopic treatment, involves the removal or debridement of the shoulder structures. When these structures are removed, the shoulder joint is left more unstable, and prone to re-injury! Guess what happens when the instability is not repaired? The ongoing abnormal movement will eventually result in the development of arthritis, because the body will try to stop the movement or stabilize the shoulder by growing more bone! More instability results in more problems and more shoulder pain.\r\n\r\nConservative treatments such as non-steroidal anti-inflammatories (NSAIDS) and corticosteroids may be sought, and although they may give some short-term pain relief, these treatments do not resolve the underlying soft tissue tears and shoulder injury. Sadly, these treatments inhibit healing and further the problem they are given for in the first place. The shoulder pain sufferer is left with unhealed soft tissue in the shoulder, abnormal motion, and continued pain.\r\n\r\n<h4>Treatments That Heal the Shoulder</h4>\r\nWhen shoulder injuries do occur or when injuries do not heal properly despite trials of multiple treatment modalities, an effective option is available. Non-surgical Regenerative Orthopedics, such as Prolotherapy and PRP, are treatments that can be utilized to treat and repair shoulder injuries such as glenoid labral tears and rotator cuff injuries. These treatments work because they correct the underlying problem and naturally alleviate shoulder pain. Prolotherapy and PRP require almost no down time. They are ideal for athletes who need to continue training, the weekend golfer who doesn’t want to stop their beloved sport, and the painter who cannot afford much downtime. Shoulder injuries often need a treatment that restarts or reboots its ability to repair, and Prolotherapy and PRP do just that. Shoulder instability, rotator cuff injuries, glenoid labral tears (as long as the tear is not complete) and pain can be successfully addressed with these regenerative medicine techniques.\r\n\r\nProlotherapy or PRP are designed to help repair the painful shoulder without cutting, suturing, sewing, or stapling. This is a natural injection therapy that strengthens loose and unstable shoulder joints and the involved ligaments and tendons, creating a more stable, strong, and pain-free shoulder so the active person can continue working or engage in the sports and activities they love!\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>','Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries','','inherit','closed','closed','','1408-revision-v1','','','2019-06-12 11:00:36','2019-06-12 11:00:36','',1408,'https://www.drfields.com/uncategorized/1408-revision-v1/',0,'revision','',0),(1410,8,'2019-06-12 11:01:24','2019-06-12 11:01:24','[caption id=\"attachment_4490\" align=\"alignright\" width=\"445\"]<img class=\" wp-image-4490\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/BACK-pain-500x500.jpg\" alt=\"Back Pain\" width=\"445\" height=\"445\" /> <em><strong>          Unrelenting Back Pain Resolved with Prolotherapy</strong></em>[/caption]\r\n<h3>Unrelenting Back Pain Repaired with Regenerative Orthopedics</h3>\r\nIs your unrelenting back pain becoming progressively worse? And is prolonged sitting or standing for extended periods of time getting more and more difficult? Do you frequently pop or crack your own back to get some relief or are your adjustments not holding? Have you tried all different types of treatments to find some relief?\r\n<h3>Common Treatment Options for Unrelenting Back Pain</h3>\r\nDoes this sound like you? It\'s true that many commonly used treatments for back pain can ease some of the pain. For example, sOTC pain medication, NSAIDs, and massage can provide a bit of relief.\r\n\r\nWhen the pain persists, some folks with back pain turn to narcotics, steroids,, and even anti-depressants. But these treatment options come with their own set of problems. Oftentimes, back pain becomes chronic, and can last three to six months or more, with the pain returning again and again.\r\n<h3>Pain Will Continue Until the Underlying Cause Is Addressed</h3>\r\nSo why don’t these treatments make the pain go away for good? The pain stays because the underlying causative factor has not been repaired. Pain medications, NSAIDs, steroids, and anti-depressants are not reparative. And they do not fix the ligamentous source of the musculoskeletal pain. They may relieve some of the symptoms for a period of time, but they do not correct the problem. Injured ligaments are frequently the root cause of back pain. Therefore, when they remain unrepaired, the back pain sufferer is left with ongoing pain and will continue to experience difficulties in function and quality of life.\r\n\r\nChiropractors can provide relief for back pain, with care that is often excellent in many cases. However, there are times when back pain becomes more and more frequent, and the adjustments do not hold. In these instances, the patient experiences pain again only a few days after getting treatment. Ligament and/or tendon injuries are very likely at the root of this back pain problem.\r\n\r\nImaging tools, like X-rays and MRI’s, may be helpful in certain situations. But although highly accessible, their usage has not caused the rates of back pain to go down.\r\n<h3>What Causes Back Pain?</h3>\r\nBack pain is often the result of an injury, possibly due to sudden movements and poor body mechanics. It may also be due to trauma that transpires during a sports activity, fall,, or motor vehicle accident. Acute injuries, such as minor muscle strains, frequently heal quickly due to the great blood supply and healing capacity of the muscles.\r\n\r\nHowever, many back pain sufferers deal with chronic pain, or pain that lasts more than three to six months. And all too often, the underlying cause is not identified. The common denominator for many painful musculoskeletal conditions causing back pain is spinal instability due to injury to the ligaments. <em><strong>Regenerative Orthopedics is a non-surgical treatment that can provide the solution to heal those injured ligaments and get rid of your back pain.</strong></em>\r\n<h4>Let’s Explain What Happens In Disc Degeneration and Herniated Discs:</h4>\r\nA herniated disc actually herniates <em><strong>through</strong></em> ligaments. Disc degeneration occurs when ligaments around the spine are injured. That’s why treatment needs to be directed at healing these injured ligaments. Interestingly, when scientists want to induce a disc herniation or degeneration in an animal, they damage the ligaments. After the ligaments are intentionally injured, within a short period of time, the discs will become degenerated or herniated.\r\n\r\nLigaments are supportive structures joining bone to bone. In the back or spine, they connect adjacent vertebrae. The ligaments of the back serve as one of the primary stabilizing structures of the spinal column. They help to provide adequate motion and also restrict excessive movement, which protects the spinal column and nerve roots as they exit the spine.\r\n\r\nInstability is part of the pathophysiology of the degenerated and herniated disc. When the ligaments around the spine are injured, excessive joint mobility occurs, and the bones (vertebrae) move too much. The extra movement creates unstable vertebrae, which will result in back pain.\r\n\r\nWhy does movement lead to pain? The exaggerated motion from instability causes abnormal forces and pressure on the discs between the vertebrae.  And that will eventually produce degeneration of the discs. Disc degeneration eventually leads to arthritis. When the ligaments become stretched out or injured, the muscles tighten and generate pain. You feel this in the form of muscle spasms.\r\n\r\nIf the ligaments and/or muscles are unable to stabilize the vertebrae, the body overgrows bone. This overgrowth of bone produces the loss of motion noted in arthritis as the body tries to stabilize the spine.\r\n<h4>Does Fusion Surgery Help the Instability?</h4>\r\nFusion surgery can prevent the motion of these segments that are moving excessively. However, the fusion does not resolve the underlying ligament injury. Back pain may continue even after surgery due to damage in other vertebral regions, like the segments above or below the fusions, or the unaddressed ligament injury.\r\n\r\nRegenerative Orthopedic treatments to the area above and below the disc degeneration strengthen the ligaments, resolve the subluxation and instability, and relieve the back pain. The therapy stabilizes the joint by treating the disc degeneration\'s underlying cause and relieving back pain.\r\n<h4>Regeneration, Not Surgery</h4>\r\n[caption id=\"attachment_4960\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4960\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Back-Pain.Hauser-500x419.png\" alt=\"Back Pain.hauser\" width=\"500\" height=\"419\" /> <strong>             Prolotherapy and PRP Are Beneficial for Back Pain</strong>[/caption]\r\n\r\nRegenerative Orthopedic physicians utilize regenerative injection therapies to stimulate the body to repair the ligaments. Our bodies have exceptional regenerative capabilities. The regenerative medicine approach triggers the body to strengthen the tissue on its own. Regenerative Orthopedics, such as Prolotherapy, Platelet Rich Plasma and Stem Cell Therapy, stimulate the body to heal itself. In the case of unrelenting back pain, regenerative techniques specifically stimulate the repair of the ligaments through which the disc herniates and the ligaments connecting the vertebrae.\r\n\r\nOne of the wonderful things about Regenerative Orthopedics for back pain is that the individual can maintain activity and get back to sports or other activities they enjoy without extensive downtime. Treatments are individually tailored to promote healing and return people to their active lives. It’s really an amazing transformation to see people regain their mobility and independence!\r\n\r\nWe strongly recommend looking into Regenerative Orthopedics for those with back pain because it is helpful for many back pain related conditions, including herniated discs, bulging discs, and degenerative disc disease. Why continue to suffer when you can eliminate back pain with Regenerative Orthopedics.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n<h3>References</h3>\r\nHauser, Ross A., et al. \"Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review.\" <i>Journal of Back and Musculoskeletal Rehabilitation</i> Preprint (2021): 1-12.','Unrelenting Back Pain Repaired with Regenerative Orthopedics','','publish','open','closed','','unrelenting-back-pain-repaired-with-regenerative-orthopedics','','','2022-03-26 16:11:29','2022-03-26 16:11:29','',0,'https://www.drfields.com/?p=1410',0,'post','',0),(1411,8,'2019-06-12 11:01:24','2019-06-12 11:01:24','Is your back pain becoming progressively worse? Prolonged sitting, or standing for extended periods of time is getting more and more difficult. You frequently pop or crack your own back to get some relief and your adjustments aren’t holding. You try all different types of treatments in an effort to find some relief.\r\n\r\nMany of the commonly used treatments for back pain can ease the pain, such as OTC pain medication, NSAIDS, and massage. When the pain persists, some folks with back pain turn to narcotics, steroids and even anti-depressants, but these come with their own set of problems. Oftentimes, back pain becomes chronic, lasting more than three to six months, with the pain returning again and again. Why don’t these treatments make the pain go away for good? The pain stays, because the underlying causative factor has not been repaired. Pain medications, NSAIDS, steroids, and anti-depressants are not reparative, and do not fix the ligamentous source of the musculoskeletal pain. They may relieve some of the symptoms, for a period of time, but they do not correct the problem. Injured ligaments are frequently the root cause of back pain, and when they remain unrepaired, the back pain sufferer is left with ongoing pain and will continue to experience difficulties in function and quality of life.\r\n\r\nChiropractors can provide relief for back pain, with care that is often excellent in many cases. There are times, however, when back pain becomes more and more frequent and the adjustments do not hold. In these instances, the patient experiences pain again only a few days after getting treatment. Ligament and/or tendon injuries are very likely at the root of this back pain problem.\r\n\r\nImaging tools, like X-rays and MRI’s, may be helpful in certain situations. But although highly accessible, their usage has not caused the rates of back pain to go down.\r\n\r\n<h4>What Causes Back Pain?</h4>\r\nBack pain is most often the result of an injury, possibly due to sudden movements and poor body mechanics or from trauma during a sports activity, fall or motor vehicle accident. Acute injuries, such as minor muscle strains, frequently heal quickly due to the great blood supply and healing capacity of the muscles. However, many back pain sufferers deal with chronic pain, or pain that lasts more than three to six months, and all too often the underlying cause is not identified. The common denominator for many painful musculoskeletal conditions causing back pain is spinal instability due to injury to the ligaments. Regenerative Orthopedics is a non-surgical treatment that can provide the solution to heal those injured ligaments and get rid of your back pain.\r\n\r\n<h4>Let’s Explain What Happens In Disc Degeneration and Herniated Discs:</h4>\r\nA herniated disc actually herniates through ligaments. Disc degeneration occurs when ligaments around the spine are injured. That’s why treatment needs to be directed at healing these injured ligaments. Interestingly, when scientists want to induce a disc herniation or degeneration in an animal, they injure the ligaments and within a short period of time the discs will become degenerated or herniated. Ligaments are supportive structures joining bone to bone, and in the back or spine, connect adjacent vertebrae. The ligaments of the back serve as one of the primary stabilizing structures of the spinal column. They help to provide adequate motion and also restrict excessive motion, which protects the spinal column and nerve roots as they exit the spine.\r\n\r\nInstability is part of the pathophysiology of the degenerated and herniated disc. When the ligaments around the spine are injured, excessive joint mobility occurs and the bones (vertebrae) move too much, creating vertebral instability which will cause back pain. The excessive motion causes abnormal forces and pressure on the discs between the vertebrae, which produces the degeneration of the discs. Disc degeneration eventually leads to arthritis. When the ligaments become stretched out or injured, the muscles tighten and generate pain. You feel this in the form of muscle spasms. If the ligaments and/or muscles are unable to stabilize the vertebrae, the body overgrows bone. This overgrowth of bone produces the loss of motion noted in arthritis, as the body tries to stabilize the spine.\r\n\r\n<h4>Does Fusion Surgery Help the Instability?</h4>\r\nFusion surgery can prevent motion of these segments that are moving excessively. However, the fusion does not resolve the underlying ligament injury. Back pain may continue even after surgery, due to injury in other vertebral regions, the segments above or below the fusions or the unaddressed ligament injury. Regenerative Orthopedic treatments to the area above and below the disc degeneration strengthen the ligaments, resolve the subluxation and instability, and relieve the back pain. The therapy stabilizes the joint by treating the underlying cause of the disc degeneration, and relieving back pain.\r\n\r\n<h4>Regeneration, Not Surgery</h4>\r\nRegenerative Orthopedic physicians utilize regenerative injection therapies to stimulate the body to repair the ligaments. Our bodies have amazing regenerative capabilities. The regenerative medicine approach triggers the body to strengthen the tissue on its own. Regenerative Orthopedics, such as Prolotherapy, Platelet Rich Plasma and Stem Cell Therapy, stimulate the body to heal itself. In the case of back pain, regenerative techniques specifically stimulate the repair of the ligaments through which the disc herniates and the ligaments connecting the vertebrae.\r\n\r\nOne of the wonderful things about Regenerative Orthopedics for back pain is, the individual can maintain activity and get back to sports or other activities they enjoy, without the need for extensive downtime. Treatments are individually tailored to promote healing and return people to their active lives. It’s really an amazing transformation to see people regain their mobility and independence!\r\n\r\nFor those with back pain, we strongly recommend looking into Regenerative Orthopedics, because it is helpful for many back pain related conditions including herniated discs, bulging discs, and degenerative disc disease. Why continue to suffer when you can eliminate back pain with Regenerative Orthopedics.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news\"><strong>Click here for more articles by Dr. Fields</strong></a>','Unrelenting Back Pain Repaired with Regenerative Orthopedics','','inherit','closed','closed','','1410-revision-v1','','','2019-06-12 11:01:24','2019-06-12 11:01:24','',1410,'https://www.drfields.com/uncategorized/1410-revision-v1/',0,'revision','',0),(1412,8,'2019-06-12 11:02:13','2019-06-12 11:02:13','<h3>Find Relief from Painful Knees with Regenerative Orthopedics</h3>\r\nOur knees are a critical part of our ability to move, especially since they assist us in getting around from place to place. Our knees are called on so we can conquer even the simplest of tasks. We can\'t really accomplish our day to day living without them. How else can we get out of bed every morning? And for those who choose the more daunting endeavors like running a marathon, working knees are pretty important. Painful knees can sure get in the way!\r\n\r\nWhen our knees are healthy, we go about our daily activities without much thought. That\'s because our knees are strong, stable, and pain-free. Healthy knees can help us conquer uneven terrain, move around obstacles, walk over wet and slippery surfaces, run, jump and twist. It takes a complex balance of coordinated efforts between all of the structures of the knee to move normally, maintain performance, and remain healthy.\r\n\r\nBut once we sustain an injury, all of that changes. When our knees begin to hurt, we sure take notice! It\'s then that even simple, every-day tasks feels daunting. Besides causing pain, a knee injury alters the way the knee structures work together. Any change in the structures of the knee set it up for imbalance. That\'s because the muscles, tendons, ligaments, menisci, cartilage and bone cooperate together to ensure smooth function. And when they are injured, the distribution of stresses changes, allowing for instability of the knee, further injury, and pain.\r\n<h3>Strong Ligaments Are Crucial to Prevent Painful Knees</h3>\r\nLigaments are structures of the knee that play a crucial role in the health and stability of the knee. Yet they are particularly vulnerable when the loads placed on them exceed their allowed elasticity. If ligaments become injured, your knee will hurt! Why? Ligaments are full of nerve endings! When overloaded from an injury, the ligaments stretch out and weaken. And that creates an unstable knee joint, which causes those nerve endings to send out pain signals.\r\n\r\nThere are quite a few secondary conditions that arise from a knee joint that is unstable due to too much pressure placed on other knee structures. Some examples include conditions like patellar tendonitis, meniscal injuries, runner’s knee, jumper’s knee, patellofemoral pain syndrome, chondromalacia patella, and osteoarthritis. All of these conditions arise from altered joint mechanics and injured soft tissue of the knee which end up causing painful knees.\r\n\r\nInjury to the ligaments of the knee is quite common. Those who follow sports will frequently hear of athletes missing their entire season due to injuries like anterior cruciate ligament (ACL) tears? Since the knee structures all work together in a coordinated effort, an injury to one joint structure can also affect other structures of the knee.\r\n<h4><em>Ligament Injury Can Occur at the Time of the Trauma or Over Time</em></h4>\r\nSometimes the injury to the other structure(s) occurs at the time of the trauma. For example, if the force during the injury is sufficiently excessive, it is capable of tearing the ACL along with the meniscus, and quite possibly injuring other ligaments as well. Secondary injury can also occur over time. This can happen when an injury to one structure allows for an abnormal balance of the knee joint. The imbalance negatively affects the structures as the uneven distribution of motion causes them to work harder.\r\n\r\nThe unstable knee joint transmits impaired forces to the bones, ligaments, tendons and menisci, resulting in pain, excessive joint displacement, lack of smooth motion and joint weakness. Each link is important, so if one link is affected, the dynamics of the rest of the knee are altered.\r\n\r\nThe assault to knee health doesn’t stop there. When injury to the soft tissue or articular surfaces of the knee takes place, it is very common for secondary arthritis to develop in the knee. Arthritis can occur within a few years with severe injuries, or take decades to occur when the injury is less severe. The end result is that your knee will hurt more.\r\n<h3>Treatment Options for Painful Knees</h3>\r\nCurrent treatment options for injured and painful knees generally focus on short-term relief of symptoms. They are utilized in an effort to stop your knees from hurting. Examples include treatments like physical therapy, corticosteroid injections, NSAIDS and intra-articular hyaluronic acid injections. These treatments may provide some pain relief, and stop your knees from hurting for a period of time.\r\n\r\n<em><strong>But not all treatments make your knee healthy.</strong></em> It is important to be aware that corticosteroids and NSAIDS have both been linked to the acceleration of the arthritic process, among other deleterious side effects. In the long run, they may make your knees hurt more.\r\n\r\nTo stop the knees from hurting, treatments need to address the injured joint structures. The soft tissue, such as the ligaments, need to be strengthened. And unfortunately, most treatments are unable to strengthen them. And so they often fail to resolve the pain, since injured ligaments are often at the core of the painful knee. A lack of knee health continues as do symptoms and progression of the disease process. If the root of the problem is not repaired, you are left with knees that continue to hurt.\r\n<h3>Will Surgery Stop My Knee from Hurting?</h3>\r\nAlthough surgical intervention may be needed in cases of fracture and complete tears, surgical arthroscopy for arthritis has been shown to lack benefit, even when compared to exercise and other non-surgical treatments.<sup><strong>1</strong></sup> Repair of meniscal injuries by arthroscopic partial meniscectomy has also been questioned in studies due to lack of efficacy.<sup><strong>2</strong></sup> These surgeries are also highly associated with acceleration of the arthritic process,3 which as you know, will cause your knee to hurt.\r\n<h3>What Treatment Stops the Knee from Hurting?</h3>\r\nThe knee needs to be repair and regeneration! Regenerative Orthopedics does just that. And it addresses knee pain, because it strengthens and repairs the underlying ligament injury and weakness. As a safe and effective non-surgical treatment option, Regenerative Orthopedics, including Prolotherapy, PRP and Stem Cell Therapy, actually repairs the knee joint.\r\n\r\nIt resolves the problem because it promotes healing of the knee structures such as ligaments, tendons, menisci and cartilage.\r\n\r\nIf knee pain has you side-lined, don’t put up with knees that continue to hurt. We can help get you back to doing the things you love, without the nuisance of painful knees!\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n<h3>References:</h3>\r\n<em>1. Marsh JD, Birmingham TB, Giffin JR, et al. Cost-effectiveness analysis of arthroscopic surgery compared with non-operative management for osteoarthritis of the knee. BMJ Open 2016; 5:e009949.doi:10.1136/bmjopen-2015- 009949</em>\r\n<em>2. Khan M, Evaniew N, Bedi A, Ayeni OR, Bhandari M. Arthroscopic surgery for degenerative tears of the meniscus: a systematic review and meta-analysis. CMAJ.2014;186(14):1057-1064.</em>\r\n<em>3. Berthiaume MJ, Raynauld JP, Martel-Pelletier J, et al. Meniscal tear and extrusion are strongly associated with progression of symptomatic knee osteoarthritis as assessed by quantitative magnetic resonance imaging. Ann Rheum Dis 2005;64(4):556-563.</em>','Relief from Painful Knees','','publish','open','closed','','relief-from-painful-knees','','','2021-02-24 00:05:29','2021-02-24 00:05:29','',0,'https://www.drfields.com/?p=1412',0,'post','',0),(1413,8,'2019-06-12 11:02:13','2019-06-12 11:02:13','<h6>Find Relief with Regenerative Orthopedics</h6>\r\nOur knees are a critical part of our ability to move since they assist us in ambulating from place to place. They are called upon to conquer even the simplest of tasks requiring locomotion in day to day living, such as getting out of bed every morning, and the more daunting endeavors like running a marathon.  With healthy knees, we go about our daily activities without much thought, because our knees are strong, stable, and pain-free. Healthy knees can help us conquer uneven terrain, circle obstacles, walk over wet and slippery surfaces, run, jump and twist. It takes a complex balance of coordinated efforts between all of the structures of the knee to move normally, maintain performance, and remain healthy. Once we sustain an injury, and the knee begins to hurt, we sure take notice, and even simple, every-day tasks feels daunting. Besides causing pain, an injury alters the way the knee structures work together. Any change in the structures of the knee, including the muscles, tendons, ligaments, menisci, cartilage and bone, which cooperate to ensure smooth function and the distribution of stresses, will set the once healthy knee joint up for imbalance, joint instability, further injury, and pain.\r\n\r\n<h6>Strong Ligaments Are Crucial to Keep Your Knee from Hurting</h6>\r\nLigaments are structures of the knee that play a crucial role in the health and stability of the knee, yet are particularly vulnerable when the loads placed on them exceed their allowed elasticity. If ligaments become injured, your knee will hurt! Why? Ligaments are full of nerve endings! When overloaded from an injury, the ligaments stretch out and weaken, creating an unstable knee joint, and causing those nerve endings to send pain signals. There are quite a few secondary conditions that arise from a knee joint that is unstable, because too much pressure is placed on the other knee structures, including patellar tendonitis, meniscal injuries, runner’s knee, jumper’s knee, patellofemoral pain syndrome, chondromalacia patella, and osteoarthritis. All of these conditions cause your knees to hurt.\r\n\r\nInjury to the ligaments of the knee is quite common. Those who follow sports will frequently hear of athletes missing their entire season due to injuries such as an anterior cruciate ligament (ACL) tear? Since the knee structures all work together in a coordinated effort, an injury to one joint structure can also affect other structures of the knee. Sometimes that occurs at the time of the trauma, if the force is sufficiently excessive, capable of tearing the ACL along with the meniscus, and quite possibly injuring other ligaments as well. Secondary injury can also occur over time, when an injury to one structure, allows for an abnormal balance of the knee joint, negatively affecting the structures as the uneven distribution of motion causes them to work harder. The unstable knee joint transmits impaired forces to the bones, ligaments, tendons and menisci, resulting in pain, excessive joint displacement, lack of smooth motion and joint weakness. Each link is important, so if one link is affected, the dynamics of the rest of the knee are altered.\r\n\r\nThe assault to knee health doesn’t stop there. When injury to the soft tissue or articular surfaces of the knee takes place, it is very common for secondary arthritis to develop in the knee. Arthritis can occur within a few years with severe injuries, or take decades to occur when the injury is less severe. The end result is that your knee will hurt more.\r\n\r\n<h6>Treatment Options for Knees That Hurt</h6>\r\nCurrent treatment options for injured and painful knees generally focus on short-term relief of symptoms. They are utilized in an effort to stop your knees from hurting, and may include treatments like physical therapy, corticosteroid injections, NSAIDS and intra-articular hyaluronic acid injections. These treatments may provide some pain relief, and stop your knees from hurting for a time period, but not all treatments make your knee healthy. It is important to be aware that corticosteroids and NSAIDS have both been linked to the acceleration of the arthritic process, among other deleterious side effects. In the long run, they may make your knees hurt more. To stop the knees from hurting, treatments need to address the injured joint structures. The soft tissue, such as the ligaments, need to be strengthened, and most treatments are unable to strengthen them, and so they often fail to resolve the pain, since injured ligaments are often at the core of the hurting knee. A lack of knee health continues as do symptoms and progression of the disease process. If the root of the problem is not repaired, you are left with knees that continue to hurt.\r\n\r\n<h6>Will Surgery Stop My Knee from Hurting?</h6>\r\nAlthough surgical intervention may be needed in cases of fracture and complete tears, surgical arthroscopy for arthritis has been shown to lack benefit, even when compared to exercise and other non-surgical treatments.<sup><strong>1</strong></sup> Repair of meniscal injuries by arthroscopic partial meniscectomy has also been questioned in studies due to lack of efficacy.<sup><strong>2</strong></sup> These surgeries are also highly associated with acceleration of the arthritic process,3 which as you know, will cause your knee to hurt.\r\n\r\n<h6>What Treatment Stops the Knee from Hurting?</h6>\r\nRegenerative Orthopedics addresses knee pain, because it strengthens and repairs the underlying ligament injury and weakness. As a safe and effective non-surgical treatment option, Regenerative Orthopedics, including Prolotherapy, PRP and Stem Cell Therapy, actually repairs the knee joint. It works because it promotes healing of the knee structures such as ligaments, tendons, menisci and cartilage. If knee pain has you side-lined, don’t put up with knees that continue to hurt. We can help get you back to doing the things you love, without the nuisance of painful knees!\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n\r\n<em>1. Marsh JD, Birmingham TB, Giffin JR, et al. Cost-effectiveness analysis of arthroscopic surgery compared with non-operative management for osteoarthritis of the knee. BMJ Open 2016; 5:e009949.doi:10.1136/bmjopen-2015- 009949</em>\r\n<em>2. Khan M, Evaniew N, Bedi A, Ayeni OR, Bhandari M. Arthroscopic surgery for degenerative tears of the meniscus: a systematic review and meta-analysis. CMAJ.2014;186(14):1057-1064.</em>\r\n<em>3. Berthiaume MJ, Raynauld JP, Martel-Pelletier J, et al. Meniscal tear and extrusion are strongly associated with progression of symptomatic knee osteoarthritis as assessed by quantitative magnetic resonance imaging. Ann Rheum Dis 2005;64(4):556-563.</em>','Do Your Knees Hurt?','','inherit','closed','closed','','1412-revision-v1','','','2019-06-12 11:02:13','2019-06-12 11:02:13','',1412,'https://www.drfields.com/uncategorized/1412-revision-v1/',0,'revision','',0),(1414,8,'2019-06-12 11:02:55','2019-06-12 11:02:55','[caption id=\"attachment_4473\" align=\"alignright\" width=\"400\"]<img class=\"wp-image-4473 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Exercising-at-home-1-copy-400x500.png\" alt=\"Exercising At Home (1) Copy\" width=\"400\" height=\"500\" /> Exercise injuries[/caption]\r\n<h3>Preventing Exercise Injuries</h3>\r\n<strong><em>Many of us are love exercising.</em></strong> And that\'s good because exercise is so much better for us than inactivity. But it\'s always important to stay within our range of abilities when exercising. Why? Because going from little or no exercise to a vigorous regimen can set you up for exercise injuries.\r\n\r\nOf course, injuries can happen to people from all levels of ability. Yes, even professional athletes and avid exercisers get injured. Exercise injuries can occur suddenly, like during a fall or after lifting weights that are too heavy. They can also be more subtle and transpire over weeks or months. An example of a more subtle injury would be an injury that occurs from using poor form repeatedly.\r\n\r\nThe risk of injury is genuine from overtraining, poor abdominal support, too lengthy runs, unfamiliarity with gym equipment or exercises, and the use of poor technique or posture. And typical injuries for those who are not used to working out include back pain, tendinitis, and pulled muscles.\r\n<h4>Tips to Prevent Exercise Injuries Before They Occur</h4>\r\nLet\'s review some tips that can be followed to try to avoid exercise injuries before they happen. When exercising, it\'s better to begin by staying closer to the intensity of activity we are accustomed to. For example, don\'t go immediately from low intensity to high intensity. Going from zero to 60 in a workout regimen can set you up for exercise injuries.\r\n\r\nSecondly, pick activities within your fitness and balance levels and those your body can handle. If the goal is to improve general health and not be sedentary, it\'s wise to progress slowly while listening to your body. There is no need to begin with throwing around heavy weights and doing intense workouts. Keep in mind that after periods of inactivity, running, and even vigorous walking can be damaging or cause an exercise injury. Start slowly and work up to longer times and distances.\r\n<h4>But I Was An Athlete in High School, So I Can Exercise Harder!</h4>\r\nSure, you may have been a distance runner in high school. But that doesn’t mean you can jump right into that level of running without proper training. To prevent exercise injuries, start by easing your way into new exercise routines and gradually build up to heavier weights, faster or longer bike rides, and a more vigorous walking or jogging routine.\r\n<h4>Be Aware of Putting Too Much Strain On Your Joints So You Can Prevent Overuse Exercise Injuries</h4>\r\nPeople make a common mistake by working through the pain felt while exercising, thinking it will eventually go away. The repeated injury from the use of poor form puts too much strain on the joints. These exercise injuries are referred to as overuse injuries and are typical injuries seen by physicians. Tendonitis is an example of an overuse injury from repetitive activity that aggravates the joint. <strong><em>I</em><em>t’s normal to experience muscle soreness after working out, but when that pain lasts more than a few days, that exercise injury has not healed, and it’s time to talk to your doctor.</em></strong>\r\n\r\nSeeking the advice of a physician before initiating an exercise program is always recommended. Use a trainer to educate and supervise for proper form, use of equipment, and variety and frequency of exercise. Even those who are accustomed to exercise may also become injured with overuse injuries. So always be aware of the repeated stress various exercises can place on joints, and use proper body mechanics and posturing.\r\n<h4>What Happens When Injuries Are Not Addressed?</h4>\r\nUnaddressed exercise injuries, overuse injuries, and cumulative traumas can damage the joint’s ligaments, tendons, and cartilage. Whether you are riding the waves, running on the beach, pounding the pavement, or climbing some new height, the repetitive low-grade impact can be enough to damage the soft tissues.\r\n\r\nWhen these injuries are not addressed and the soft tissue is not repaired, degeneration of the joint can occur. Unhealed soft tissue makes the joint unstable, which allows for extra and abnormal motion in the joint. These unhealed sports injuries can frequently lead to symptomatic arthritis in later years due to the injured ligaments that cause instability and abnormal joint motion.\r\n\r\nIn an attempt to stabilize the joint, painful muscle spasms may occur at first. Over time, the body will deposit calcium along the lines of stress, producing bone spurs. Bone spurs are typically a sign that the ligaments were no longer able to stabilize the joint. And the body has sent in reinforcement in the form of additional bone. Arthritis has taken place!\r\n<h4>Treating Exercise Injuries and Sports Injuries with Regenerative Orthopedics</h4>\r\nStandard treatments for musculoskeletal injuries resulting in joint pain usually involve symptom management utilizing NSAIDs, cortisone injections, physical therapy, and chiropractic to provide pain relief. These modalities can often provide relief for sports injuries, but for those who have already exhausted these methods and continue to experience pain, Regenerative Orthopedics should be sought. If cartilage damage has taken place, Stem Cell Therapy may be part of the treatment plan.\r\n\r\nRegenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, are great treatment options that are very effective for injuries that arise from overzealous exercising. Plus, these non-surgical treatments repair those injuries that occur during athletic events, regenerating the damaged ligaments and soft tissue and allowing the exerciser and athlete to continue with their desired activity.\r\n\r\n<strong>If you’ve injured yourself while trying a new exercise or sport or are a regular exerciser or athlete with a sports injury, Regenerative Orthopedics can get you back to the activity you love.</strong>\r\n\r\nFor more information about sports injuries and older athletes, read our article on <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/\">\"How Arthritis Affects Older Athletes.\" </a>\r\n\r\n<a href=\"https://www.drfields.com/testimonials/video-testimonials/\">Click here to watch videos from patients who have received Regenerative Orthopedics.</a>','Preventing Exercise Injuries','','publish','open','closed','','exercise-injuries','','','2021-02-03 02:16:52','2021-02-03 02:16:52','',0,'https://www.drfields.com/?p=1414',0,'post','',0),(1415,8,'2019-06-12 11:02:55','2019-06-12 11:02:55','New weight and exercise goals are often set during the first months of the New Year, and people push out of the gate with exhilaration. Overzealous exercising during this early part of the year, however, can result in sports injuries!\r\n\r\nIn preparation for all the new goals, a lot of money is spent on the latest gear, gym memberships, fitness classes and new work-out equipment. Understandably! Exercising is exciting, and so much better for us than inactivity. But going from little or no exercise to a vigorous regimen, can set you up for injuries. These injuries can rack up expensive medical bills, apart from the money spent on the gym and the fitness gear. Sports injuries can occur suddenly, like with a fall, or after lifting weights that are too heavy. They can also be more subtle, and transpire over weeks or months, in instances such as using poor form over and over.\r\n\r\nThe risk of injury is very real, especially for those who have been inactive for prolonged periods. People frequently start rolling into the emergency room or their physician’s office with a new sports injury in the first months of the year, because they push themselves past their capabilities. Frequent causes of sports injuries include overtraining, lifting weights that are too heavy, poor abdominal support, too lengthy runs, unfamiliarity with gym equipment or exercises, and use of poor technique or posture. Typical injuries during this early part of the year include back pain, tendinitis, and pulled muscles.\r\n\r\n<h4>Tips to Prevent Sports Injuries Before They Occur</h4>\r\nWhen exercising, folks need to begin by staying closer to the intensity of activity they are accustomed to and not go immediately from low intensity to high intensity. Going from zero to 60 in a workout regimen can set you up for sports injuries. Pick activities within your fitness and balance levels, and those your body can handle. If the goal is to improve general health and not be sedentary, people can progress slowly while listening to their body, without the need to throw around heavy weights and do intense workouts.  After periods of inactivity, running, and even vigorous walking, can be damaging or cause a sports injury. Start out slowly and work up to longer times and distances. Sure, you may have been a distance runner in high school, but that doesn’t mean you can jump right in to that level of running without proper training. To prevent sports injuries, start by easing your way into new exercise routines and gradually build up to heavier weights, faster or longer bike rides, and a more vigorous walking or jogging routine.\r\n\r\nA common mistake people make is to work through the pain felt while exercising, thinking it will eventually go away. The repeated injury, in addition to the use of poor form, puts too much strain on the joints. These sports injuries are referred to as overuse injuries, and are typical injuries seen by physicians. Tendonitis is an example of an overuse injury from repetitive activity that aggravates the joint. It’s normal to experience muscle soreness after working out, but when that pain lasts more than a few days, that sports injury has not healed and it’s time to talk to your doctor.\r\n\r\nSeeking the advice of a physician prior to initiating an exercise program is always recommended. Make use of a trainer, to educate and supervise for proper form, use of equipment, and variety and frequency of exercise. Those who are accustomed to exercise may also experience sports injuries, so always be aware of the repeated stress various exercises can place on joints, and use proper body mechanics and posturing.\r\n\r\n<h4>What Happens When Injuries Are Not Addressed?</h4>\r\nUnaddressed sports injuries, overuse injuries, and cumulative traumas can cause damage to the joint’s ligaments, tendons and cartilage. Whether you are riding the waves, running on the beach, pounding the pavement, or climbing some new height, the repetitive low-grade impact can be enough to damage the soft tissues. When these injuries are not addressed, and the soft tissue is not repaired, degeneration of the joint can occur. Unhealed soft tissue makes the joint unstable, which allows for extra and abnormal motion in the joint.\r\n\r\nMany sports injuries lead to symptomatic arthritis in later years due to injured ligaments and joint instability. The body makes attempts to stabilize the joint, which may result in painful muscle spasms at first. Over time, the body will deposit calcium along the lines of stress, producing bone spurs. Bone spurs are typically a sign that the ligaments were no longer able to stabilize the joint, and the body has sent in reinforcement in the form of additional bone. Arthritis has taken place.\r\n\r\n<h4>Treating Sports Injuries with Regenerative Orthopedics</h4>\r\nStandard treatments for musculoskeletal sports injuries resulting in joint pain involve symptom management utilizing NSAIDS, cortisone injections, physical therapy, and chiropractic to provide pain relief. These modalities can often provide relief for sports injuries, but for those who have already exhausted these methods, and continue to experience pain, Regenerative Orthopedics should be sought. If cartilage damage has taken place, Stem Cell Therapy is a treatment option.\r\n\r\nRegenerative Orthopedics is a great treatment option that is very effective for sports injuries that arise from overzealous exercising, because the treatments regenerate and repair the damaged ligaments and soft tissue, allowing the exerciser to continue with their desired activity. If you’ve injured yourself with a new sport, or are a regular exerciser with a sports injury, Regenerative Orthopedics can get you back to the activity you love.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>','Repairing Sports Injuries with Regenerative Orthopedics','','inherit','closed','closed','','1414-revision-v1','','','2019-06-12 11:02:55','2019-06-12 11:02:55','',1414,'https://www.drfields.com/uncategorized/1414-revision-v1/',0,'revision','',0),(1416,8,'2019-06-12 11:03:40','2019-06-12 11:03:40','Stem Cell Therapy has become a popular treatment and one that can provide very satisfactory results. And Stem Cell Therapy for arthritis, including the repair of degenerated arthritic joints, offers many promising possibilities.1 Stem cells have been shown in research to speed up and enhance bone and cartilage repair in arthritic joints.2,3 Since surgery comes with many disadvantages, <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a> to repair defects of articular cartilage provides an exciting alternative.\r\n\r\nAnother fascinating research finding involves evidence of the reduction in the usual progressive destruction of articular cartilage in arthritic disease by mesenchymal/bone marrow stem cells. Bone marrow stem cells appear to suppress inflammation and release growth factors that combat arthritis and the degenerative process, enabling healing mechanisms to repair articular cartilage and relieve the chronic pain of arthritis.\r\n\r\n[caption id=\"attachment_4805\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4805\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Stems-500x375.jpeg\" alt=\"Stem Cells\" width=\"500\" height=\"375\" /> <strong>                  Stem Cell Therapy Effective for Osteoarthritis</strong>[/caption]\r\n<h4>One-Shot Magic Cure?</h4>\r\nHave you looked into Stem Cell Therapy for arthritis relief? It’s important to do your homework when it comes to Stem Cell Therapy because not all treatments are alike. You may have seen treatments advertised that may involve just one injection of stem cells. One injection is most likely insufficient to provide an adequate repair of the joint and the pain relief you seek.\r\n\r\nJoint injuries, like those that eventually lead to arthritis, generally involve the entire joint. If one ligament is injured, there’s a huge likelihood that other ligaments or soft tissue are also injured. And these other areas need to be treated too. One injection simply cannot treat the entire joint.\r\n<h4>Underlying Joint Instability Leads to Arthritis</h4>\r\nWhen the supportive joint structures, such as ligaments and other soft tissue are healthy and strong, they prevent abnormal joint motion. But when they become injured, the joint will move in an abnormal pattern, injuring other joint structures, and eventually leading to joint destruction and arthritis.\r\n\r\nThe degeneration and breakdown of cartilage that is evident in arthritis is something that transpires over time. It doesn\'t just appear immediately. The beginning is often an initial injury that begins a process of instability in the joint with movement in the joint that is abnormal. This joint instability then becomes the source of further joint injury. And it causes pain too.\r\n\r\nJoint instability also involves loose, weakened, and unsupportive ligaments. In essence, the whole joint becomes affected. To achieve repair of the entire joint, the supportive structures surrounding the joint need to be treated, as well as the degenerated structures inside the joint. Intra-articular injections during Stem Cell Therapy for arthritis, combined with the growth factors in treatments like PRP and Prolotherapy can improve cartilage quality in arthritis, repair the injured soft tissue, and resolve joint pain.\r\n\r\n<img class=\"wp-image-3742 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png\" alt=\"Kelsey. Knee.stems Copy\" width=\"420\" height=\"420\" />\r\n<h4>The Gold Standard in Stem Cell Therapy</h4>\r\nA comprehensive treatment is necessary to strengthen, repair, and stabilize ligaments and structures of the joint to prevent destructive forces from continuing the breakdown of cartilage common in arthritis.\r\n\r\n<strong>A single injection is simply not comprehensive</strong> enough to reverse the damage affecting the entire joint. In our practice, we address these unnatural hypermobile forces with a multi-injection technique called <strong>Comprehensive Regenerative Orthopedics</strong>. It\'s a very effective Stem Cell Therapy for arthritis repair and pain relief.\r\n\r\n&nbsp;\r\n\r\nOur Stem Cell Therapy for arthritis treatment involves the use of four different regenerative therapies. Two sources of stem cells (bone and fat), as well as PRP Prolotherapy and Dextrose Prolotherapy. The supportive joint structures, the inside, and the outer structures of the joint are all treated. This is considered <strong>The Gold Standard</strong> for Stem Cell Regeneration.\r\n\r\nAt OrthoRegen, our Stem Cell Therapy for arthritis is different than at other clinics. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">What makes us different?</a> Many other clinics only use one or two of the above procedures, but not all four. All solutions are centrifuged and concentrated to obtain a solution with the most concentration of stem cells. In our experience, we have discovered that this technique is the best for regeneration. We inject both of these sources of stem cells and then combine the use of PRP Prolotherapy to accelerate their healing.\r\n\r\nIn addition, we apply Dextrose Prolotherapy <strong>to the outside supportive structures of the joint</strong> to help stabilize the ligaments and tendons that hold the joint in place. We utilize this style of treatment because it addresses the whole joint and not just the effect. That is why it is considered the <em>Gold Standard</em>.\r\n<h4>What About Amniotic “Stem Cells”?</h4>\r\nAmniotic Stem Cells are being advertised all over the place and people are fascinated with this very popular trend of using amniotic fluid for joint repair. But it needs to be clarified that Amniotic “Stem Cell” Therapy has NO actual stem cells, but rather growth factors found in the extracellular matrix of the amniotic tissue.\r\n\r\nCompanies purchase the afterbirth materials, process it to remove disease, and then freeze-dry it. Understandably, the process preserves the fluid, but it also kills the live cells. What’s left are healing growth factors. <strong>NO live stem cells are present.</strong> <em>Therefore, if claimed as such, it is simply not the truth.</em>\r\n\r\nIn their pre-donated state, amniotic fluid does have an abundance of stem cells, but they do not survive the processing. Many people leave stem cell seminars convinced that their own stem cells are no good and that donated amniotic “stem cells” will help them with their chronic joint pain from arthritis. It’s important to understand that cryopreserved, dehydrated amniotic products do not contain stem cells. It’s also important to understand that bone marrow, even in elderly individuals with arthritis, <strong>does have sufficient stem cells</strong>, and the cells are <strong>alive</strong>! Additionally, your own blood in the form of Platelet Rich Plasma (PRP) contains live growth factors. Yes, purchased, micronized amniotic fluid does contain growth factor material, but it is processed. Why not just use your own (autologous) live stem cells and PRP growth factors for your arthritis pain?\r\n<h4>The Bottom Line in Arthritis Treatment</h4>\r\nArthritis is a chronic, progressive disease of the articular joints, which to date, has had no cure or effective long-term treatment. However, Regenerative Injection Therapies like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy have already been proven to work well to effectively activate cells for regeneration and repair in degenerated arthritic joints. Regenerative Orthopedics is an effective option for treating arthritis with the potential for enhancing the quality of life of individuals with the disease.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n<h3>References</h3>\r\n<em>1. Chahal, J., Gómez-Aristizábal, A., Shestopaloff, K., Bhatt, S., Chaboureau, A., Fazio, A., Chisholm, J., Weston, A., Chiovitti, J., Keating, A., Kapoor, M., Ogilvie-Harris, D.J., Syed, K.A., Gandhi, R., Mahomed, N.N., Marshall, K.W., Sussman, M.S., Naraghi, A.M. and Viswanathan, S. (2019), Bone Marrow Mesenchymal Stromal Cell Treatment in Patients with Osteoarthritis Results in Overall Improvement in Pain and Symptoms and Reduces Synovial Inflammation. STEM CELLS Translational Medicine, 8: 746-757. <a href=\"https://doi.org/10.1002/sctm.18-0183\">https://doi.org/10.1002/sctm.18-0183</a></em>\r\n\r\n<em>2. Wakitani S, Goto T, Pineda SJ, Young RG, Mansour JM, Caplan AI, Goldberg VM. Mesenchymal cell-based repair of large, full-thickness defects of articular cartilage J. Bone Joint Surg. Am. 1994;76:579-92.</em>\r\n\r\n<em>3. Burke J, Hunter M, Kolhe R, </em>Isales<em> C, Hamrick M, Fulzele S. Therapeutic potential of mesenchymal stem </em>cell-based<em> therapy for osteoarthritis. Clinical and translational medicine. 2016 Aug 10;5(1):27.</em>','Stem Cell Therapy for Arthritis','','publish','open','closed','','stem-cell-therapy-options-for-arthritis','','','2021-07-23 22:48:24','2021-07-23 22:48:24','',0,'https://www.drfields.com/?p=1416',0,'post','',0),(1417,8,'2019-06-12 11:03:40','2019-06-12 11:03:40','Stem Cell Therapy has become a popular treatment and one that can provide very satisfactory results. There are many promising possibilities with Stem Cell Therapy, including the reparation of degenerated arthritic joints. Stem cells have been shown in research to speed up and enhance bone and cartilage repair in arthritic joints.<sup>1,2</sup>  Since surgery comes with many disadvantages, Stem Cell Therapy to repair defects of articular cartilage provides an exciting alternative. Another fascinating research finding involves evidence of the reduction in the usual progressive destruction of articular cartilage in arthritic disease by mesenchymal/bone marrow stem cells.  Bone marrow stem cells appear to suppress inflammation and release growth factors that combat arthritis and the degenerative process, enabling healing mechanisms to repair articular cartilage and relieve the chronic pain of arthritis.\r\n\r\n<h4>One Shot Magic Cure?</h4>\r\nIt’s important to do your homework though, when it comes to Stem Cell Therapy, because all treatments are not alike. You may have seen treatments advertised that may involve just one injection of stem cells. One injection is most likely insufficient to provide adequate repair of the joint and the pain relief you seek. Joint injuries, like those that eventually lead to arthritis, generally involve the entire joint. If one ligament is injured, there’s a huge likelihood that other ligaments or soft tissue are also injured. One injection simply cannot treat the entire joint.\r\n\r\n<h4>Underlying Joint Instability Leads to Arthritis</h4>\r\nWhen the supportive joint structures, such as ligaments and other soft tissue are healthy and strong, they prevent abnormal joint motion. If they become injured, the joint will move in an abnormal pattern, injuring other joint structures, and eventually leading to joint destruction and arthritis.  The degeneration and breakdown of cartilage that is present in arthritis transpires over time, after the injury which precipitated the joint to become unstable and move abnormally in the first place. Joint instability is the source of joint injury and pain, and this instability begins with loose, weakened, and unsupportive ligaments. To accomplish repair of the entire joint, the supportive structures surrounding the joint need to be treated, as well as the degenerated structures inside the joint. Intra-articular injections of stem cells combined with the growth factors in treatments like PRP and Prolotherapy, can improve cartilage quality in arthritis, repair the injured soft tissue, and resolve joint pain.\r\n\r\n<h4>The Gold Standard in Stem Cell Therapy</h4>\r\nA comprehensive treatment is necessary to strengthen, repair and stabilize ligaments and structures of the joint to prevent destructive forces from continuing the breakdown of cartilage common in arthritis. <strong>A single injection is simply not comprehensive</strong> enough to reverse the damage affecting the entire joint. In our practice, we address these unnatural hypermobile forces with a multi-injection technique called <strong>Comprehensive Regenerative Orthopedics</strong>.\r\n\r\nThe treatment involves the use of two sources of stem cells (bone and fat), as well as PRP Prolotherapy and Dextrose Prolotherapy. The supportive joint structures, the inside and outside of the joint are all treated. This is considered\r\n\r\n<strong>The Gold Standard</strong> for Stem Cell Regeneration. Many other clinics only use one or two of the above procedures, but not all four.   All solutions are centrifuged and concentrated to get a solution with the most concentration of stem cells.  In our experience, we have discovered that these stem cells act as great proliferant solutions for regeneration. We inject both of these sources of stem cells and then combine the use of PRP Prolotherapy to accelerate their healing.  In addition, we apply Dextrose Prolotherapy <strong>to the outside supportive structures of the joint</strong> to help stabilize the ligaments and tendons that hold the joint in place.  We utilize this style of treatment because it addresses the whole joint and not just the effect. That is why it is considered the Gold Standard.\r\n\r\n<h4>What About Amniotic “Stem Cells”?</h4>\r\nAmniotic Stem Cells are being advertised all over the place and people are fascinated with this very popular trend of using amniotic fluid for joint repair. But it needs to be clarified that Amniotic “Stem Cell” Therapy has NO actual stem cells, but rather growth factors found in the extracellular matrix of the amniotic tissue. Companies purchase the afterbirth materials, process it to remove disease, and then freeze-dry it. Understandably, the process preserves the fluid, but it also kills the live cells. What’s left are healing growth factors. NO live stem cells are present.  Therefore, if claimed as such, it is simply not the truth. In their pre-donated state, amniotic fluid does have an abundance of stem cells, but they do not survive the processing. Many people leave stem cell seminars convinced that their own stem cells are no good and that donated amniotic “stem cells” will help them with their chronic joint pain from arthritis. It’s important to understand that cryopreserved, dehydrated amniotic products do not contain stem cells. It’s also important to understand that bone marrow, even in elderly individuals with arthritis, does have sufficient stem cells, and the cells are alive! Additionally, your own blood in the form of Platelet Rich Plasma (PRP) contains live growth factors. Yes, purchased, micronized amniotic fluid does contain growth factor material, but it is processed. Why not just use your own (autologous) live stem cells and PRP growth factors for your arthritis pain?\r\n\r\n<h4>The Bottom Line in Arthritis Treatment</h4>\r\nArthritis is a chronic, progressive disease of the articular joints, which to date, has had no cure or effective long-term treatment. However, Regenerative Injection Therapies like Stem Cell Therapy, Platelet Rich Plasma and Prolotherapy have already been proven to work well to effectively activate cells for regeneration and repair in degenerated arthritic joints. Regenerative Orthopedics is an effective option for treating arthritis with the potential for enhancing the quality of life of individuals with the disease.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n\r\n<em>1. Wakitani S, Goto T, Pineda SJ, Young RG, Mansour JM, Caplan AI, Goldberg VM. Mesenchymal cell-based repair of large, full-thickness defects of articular cartilage J. Bone Joint Surg. Am. 1994;76:579-92.</em>\r\n<em>2. Burke J, Hunter M, Kolhe R, </em>Isales<em> C, Hamrick M, Fulzele S. Therapeutic potential of mesenchymal stem </em>cell based<em> therapy for osteoarthritis. Clinical and translational medicine. 2016 Aug 10;5(1):27.</em>','Stem Cell Therapy Options for Arthritis','','inherit','closed','closed','','1416-revision-v1','','','2019-06-12 11:03:40','2019-06-12 11:03:40','',1416,'https://www.drfields.com/uncategorized/1416-revision-v1/',0,'revision','',0),(1419,8,'2019-06-12 11:04:56','2019-06-12 11:04:56','<h3><strong>STEM CELL THERAPY/PRP/PROLOTHERAPY ARE REGENERATIVE MEDICINE TECHNIQUES AND ALTERNATIVE TREATMENTS TO AVOID JOINT</strong> <strong>AND BACK SURGERY. THE FUTURE IS NOW! </strong>BY PETER A. FIELDS, MD, DC</h3>\r\n<em>Presented at the American Academy of Anti-aging medicine; VI World Congress; Anti-aging and Regenerative Medicine</em>\r\n\r\nThe revitalization and regeneration of the joints and of the spinal column are not in the future; it is happening today! Last year in the United States, there were almost 2 million total joint replacement surgeries and another 25 to 30 million partial joint surgeries. That\'s a lot of surgery! And that\'s why each year people are seeking non-surgical alternatives to joint and spinal column surgery. Several sources state that 40% of those surgeries could have been avoided. If avoiding surgery is an option, it sure seems like that option should be considered. Keep in mind, cutting a part of the joint or injecting it with steroids is not the only answer. Let’s remember that <em>surgery can always take place, but can never be undone</em>.\r\n<h3>What If I\'ve Been Told Surgery Is My Only Option?</h3>\r\nHave you been told that you have severe arthritis? You are bone on bone in your joint? Your joint has degenerated and your cartilage which has worn away? And ultimately, the only thing left to do is to replace the joint? Well, the good news here is that you do have another option!\r\n<h3>Regenerative Medicine Treatments</h3>\r\n<p style=\"height: 172px;\">Regenerative Medicine like <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a>/PRP/and Prolotherapy are treatment techniques that are available today. These techniques effectively treat even bone on bone arthritis. And without surgery. Stem cells, for example, have the potential to regenerate any type of the body’s tissue. And its use in regenerative medicine is growing more and more in the medical community as an alternative to invasive surgery, including cases where a replacement was recommended. What is remarkable about stem cells is the fact that when they are injected into a specific area of the body, they know the types of cells that the body needs – for example, the meniscus cells or cartilage cells.</p>\r\n\r\n<h3>Regenerative Medicine Is An Exciting Field</h3>\r\n<p style=\"height: 172px;\">This is a very exciting time in the field of REGENERATIVE MEDICINE. Results show several patients who have shown a significant functional improvement. Patients who were submitted to arthroscopy after the transplant showed joint cartilage which was close to normal. MAGNETIC RESONANCE IMAGES (MRI\'s) have revealed complete healing with a congruent cartilage tissue, while other magnetic resonances of the patients showed congruence in the cartilaginous tissue.</p>\r\n\r\n<h3>What Do Studies Show?</h3>\r\n<img class=\"alignright\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-7.jpg\" alt=\"Prolo Spanish\" width=\"356\" height=\"303\" />Several reviews by investigators have concluded that the autologous transplant of the mesenchyme cell culture of the bone marrow, of adipose tissue, and of plasma rich in platelets is a great promise in the treatment of joint cartilage defects, particularly defects of great size (&gt; 4 cm). The clinical results have been positive even at over one year after having been carried out. The procedure in several patients and the procedure’s success have been measured in longer periods of time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"180\" height=\"285\" />\r\n\r\n<em>In his medical practice, Peter A. Fields, MD, DC uses the Gold Standard in Stem Cell Therapy utilizing four types of non-surgical Regenerative Orthopedics to revitalize and support joint regeneration: stem cells from bone marrow, stem cells from adipose tissue,  Platelet Rich Plasma, and Prolotherapy. All of these regenerative techniques cause the tissue to regenerate. When the new cartilage, ligament, tendon, or meniscus tissue is regenerated, the joint becomes more vibrant and strong and it can work well once again. The objective is the same: stimulate and repair damaged tissues.</em>\r\n\r\n<strong>Peter A. Fields, MD, DC is one of the few doctors in the United States who is both a Doctor of Medicine and a Chiropractor. He is widely recognized as a leader in REGENERATIVE ORTHOPEDICS having been on numerous programs and quoted in magazines and on-line publications.</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Regenerative Medicine Lecture in Mexico City','','publish','open','closed','','regenerative-medicine-lecture-in-mexico-city-english','','','2020-07-26 02:04:08','2020-07-26 02:04:08','',0,'https://www.drfields.com/?p=1419',0,'post','',0),(1420,8,'2019-06-12 11:04:56','2019-06-12 11:04:56','<h4>REGENERATIVE MEDICINE LECTURE IN MEXICO CITY</h4>\r\n<strong><a href=\"https://www.drfields.com/regenerative-medicine-lecture-in-mexico-city-spanish/\">(CLICK HERE FOR SPANISH VERSION)</a></strong>\r\n\r\n<strong>PROLOTHERAPY: DEXTROSE/PRP/STEM CELL ALTERNATIVE TREATMENTS TO AVOID JOINT</strong> <strong>AND BACK SURGERY. THE FUTURE IS NOW! </strong>BY PETER A. FIELDS, MD, DC\r\n\r\n<em>Presented at the American Academy of Anti-aging medicine; VI World Congress; Anti-aging and Regenerative Medicine</em>\r\n\r\nThe revitalization and regeneration of the joints and of the spinal column are not in the future; it is happening today! Last year in the United States there were almost 2 million total joint replacement surgeries and another 25 to 30 million partial joint surgeries. Because of the previous, each year people are seeking non-surgical alternatives to joint and spinal column surgery. Cutting a part of the joint or injecting it with steroids is not the only answer, let’s remember that <em>surgery can always take place, but can never be undone</em>. Several sources state that 40% of those surgeries could have been avoided.\r\n\r\n<p style=\"height: 172px;\"><img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-1.jpg\" alt=\"Prolo Spanish\" /> <img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-2.jpg\" alt=\"Prolo Spanish\" /><img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-3.jpg\" alt=\"Prolo Spanish\" /></p>\r\n\r\n\r\n<img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-4.jpg\" alt=\"Prolo Spanish\" />Those people who have been told that they have severe arthritis, who are bone against bone in their joint; that their joint has degenerated into a great quantity of cartilage which has worn away, and that the only thing left to do is to replace the joint. Now they have another option!\r\n\r\n<img class=\"alignright\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-5.jpg\" alt=\"Prolo Spanish\" />Stem cells have the potential to regenerate any type of the body’s tissue, and its use in regenerative medicine is growing more and more in the medical community as an alternative to invasive surgery, including cases where a replacement is required. What is remarkable about stem cells is the fact that when they are injected into a specific area of the body, they know the types of cells that the body needs – for example, the meniscus cells or cartilage cells. This is a very exciting moment in the field of REGENERATIVE MEDICINE.\r\n\r\n<img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-6.jpg\" alt=\"Prolo Spanish\" />The results show several patients who have shown a significant functional improvement. The patients that were submitted to arthroscopy after the transplant showed a joint cartilage which was close to normal. MAGNETIC RESONANCE IMAGES (MRI\'s) have revealed complete healing with a congruent cartilage tissue, while other magnetic resonances of the patients showed congruence in the cartilaginous tissue.\r\n\r\n<p>&nbsp; </p>\r\n<p>&nbsp; </p>\r\n<img class=\"alignright\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-7.jpg\" alt=\"Prolo Spanish\" />Several reviews by investigators have concluded that the autologous transplant of the mesenchyme cell culture of the bone marrow, of adipose tissue and of plasma rich in platelets are a great promise in the treatment of joint cartilage defects, particularly defects of great size (&gt; 4 cm). The clinical results have been positive at over 1 year after having been carried out. The procedure in several patients and the procedure’s success have been measured in longer periods of time.\r\n\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"\" width=\"160\" height=\"216\" />\r\n\r\n<em>In his medical practice, Dr. Peter Fields uses the four types of non-surgical procedures to revitalize and support joint regeneration: the stem cells from the bone marrow, the cells from the adipose tissue, the prp and the prolotherapy with dextrose. All of these are considered different forms that cause the tissue to proliferate or regenerate. When the new tissue whether it is cartilage, bone, ligament, tendon, meniscus or other is regenerated, the joint becomes more vibrant and strong and it can once again work well. The objective is the same: stimulate to repair damaged tissues.</em>\r\n\r\n<strong>Peter A. Fields, MD, DC is one of the few doctors in the United States who is both a Doctor of Medicine and a Chiropractor. He is widely recognized as a leader in REGENERATIVE ORTHOPEDICS having been on numerous programs and quoted in magazines and on-line publications.</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Regenerative Medicine Lecture in Mexico City (English)','','inherit','closed','closed','','1419-revision-v1','','','2019-06-12 11:04:56','2019-06-12 11:04:56','',1419,'https://www.drfields.com/uncategorized/1419-revision-v1/',0,'revision','',0),(1423,8,'2019-06-12 11:07:16','2019-06-12 11:07:16','<img class=\"wp-image-3900 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Get-rid-of-the-pain-400x500.png\" alt=\"Get Rid Of The Pain\" width=\"366\" height=\"458\" />\r\n<h4><em>Introduction</em></h4>\r\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments so you can live pain-free. Regenerative Orthopedics helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones).\r\n\r\nThe notion of stimulating the body to heal itself goes back to ancient Greece. Prolotherapy, one type of Regenerative Orthopedics, was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\r\n<h4>When Is It Time for Regenerative Orthopedics?</h4>\r\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain.\r\n\r\nWhen ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Regenerative Orthopedics is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But regenerative techniques don\'t keep you from the activities you love. They get you back to them quickly.\r\n\r\nRegenerative Orthopedics can consist of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. What an excellent alternative to treatments like cortisone injections, which long-term studies have shown can actually weaken tissue.\r\n\r\nMany joints can be treated with Regenerative Orthopedics. Have back pain? We can help! Knee pain? We can repair that too! Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more can be repaired with Regenerative Orthopedics.\r\n<h4>Three Types of Regenerative Orthopedics</h4>\r\n<strong>Prolotherapy</strong> helps the body to heal in a natural non-surgical way. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As a result, the immune system sends growth factors. This results in healthy, strong, and vibrant new tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored. The pain is alleviated so joints can function normally. Most ligament and tendon injuries benefit from <a href=\"https://www.drfields.com\">dextrose prolotherapy</a>.\r\n\r\n<strong>Platelet Rich Plasma (PRP)</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and boost the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\r\n\r\n<strong>Stem Cell Therapy</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymal stem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. When is Stem Cell Therapy recommended? Indications for using Stem Cell Therapy include severe arthritis, certain types of tears, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate the fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. All of this amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\r\n<h4>Summary</h4>\r\nRegenerative Orthopedics is a successful non-surgical technique that helps the body heal itself. It works well on many medical conditions that result in painful joints. It is minimally invasive with very little recovery time and is tolerated well by patients of all ages. Regenerative Orthopedics first … surgery last.\r\n<h5><strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine.  Dr. Fields is the director of OrthoRegen in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. Dr. Fields has appeared as a regenerative medicine expert on national television as well as on television and radio shows. He lectures at medical and chiropractic conferences in the United States and around the world on these techniques. He has also written for several publications.</h5>\r\n<h5><em>The Athletic Doc Walks His Talk</em></h5>\r\n<h5>Peter A. Fields, MD, DC is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. And he volunteers with the foundation, treating patients, and teaching physicians from all over the world about prolotherapy. But Dr. Fields doesn\'t just teach. He is a very active and competitive triathlete, having completed eleven Ironman triathlons and many other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”</h5>','Pain-Free Living with Regenerative Orthopedics','','publish','open','closed','','how-to-avoid-joint-live-pain-free-with-regenerative-orthopedics','','','2022-12-03 04:33:33','2022-12-03 04:33:33','',0,'https://www.drfields.com/?p=1423',0,'post','',0),(1424,8,'2019-06-12 11:07:16','2019-06-12 11:07:16','<h4>Introduction</h4>\r\nProlotherapy is a natural nonsurgical method of assisting the body to heal injured tendons and ligaments. <a href=\"https://www.drfields.com/prolotherapy-treatment-overview/\">Prolotherapy</a> helps your body make new cells through the introduction of an irritant in the painful area. The mild local inflammatory reaction increases the supply of nutrient-rich blood cells to the affected area. This serves to strengthen lax or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones). The notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\r\n\r\n<h4>When Is It Time for Prolotherapy?</h4>\r\nA patient may present with chronic pain in an injured area or the area remains weak, even after a healing period of weeks, months, or years. The problem lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients that they need to heal properly. These weakened areas may have little or no blood flow, but they have lots of nerves. That is why the patient may continue to feel a significant amount of pain. When ligaments become relaxed and weak, this may lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis-type pain. Additionally, nerves around the soft tissues become stretched and irritated, producing pain. It is at this point that a patient may have been told that surgery is recommended to “fix” the problem. Prolotherapy is next logical step. Surgery requires weeks of recovery, physical therapy, and more pain.\r\n\r\nThe prolotherapy technique involves a series of 6 to 8 treatments with injections of a proliferant that causes an inflammatory response, which stimulates the healing process. A local anesthetic is used so that there is minimal discomfort with the injections. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies have shown can actually weaken tissue. In addition to chronic (and in some cases acute) back and neck, shoulder, knee, and other joint pain; tendonitis; and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as sports injuries, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\n<h4>Prolotherapy Techniques</h4>\r\n<a href=\"https://www.drfields.com/prolotherapy-treatment-overview/\">Dextrose prolotherapy</a> is a natural nonsurgical method of assisting the body to heal injured or weakened ligaments, tendons, or joints. The weakened areas are injected to stimulate the patient’s own immune system to send growth factors. This results in healthy, strong, and vibrant new tissues. With this the pain is alleviated and joints function normally. Most ligament and tendon injuries benefit from dextrose prolotherapy as well.\r\n\r\n<strong>Platelet rich plasma (PRP) prolotherapy</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and catalyze the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> prolotherapy is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\r\n\r\n<strong>Bone marrow/cellular regeneration</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymalstem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. Indications for using bone marrow prolotherapy include severe osteoarthritis, certaintypes of tears, and cartilage regeneration typically inseverely degenerated joints such as the knees and hips. All three techniques of prolotherapy acceleratethe fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. This amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\r\n\r\n<h4>Summary</h4>\r\nProlotherapy is a successful nonsurgical technique that helps the body heal itself. It works well on all medical conditions that result in painful joints, is minimally invasive with very little recovery time, and is tolerated well by patients of all ages. Prolotherapy first … surgery last.\r\n\r\n<strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine. He is both a board-certified medical physician and chiropractor, one of only a handful of physicians in the US with both these degrees. Dr. Fields is the director of the Pacific Prolotherapy and Medical Wellness Center in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. He also practices holistic medicine, which includes bioidentical hormones, anti-aging medicine, IV nutritional therapy, IV chelation therapy, natural alternatives to prescription medicines, and more. Dr. Fields has appeared as a prolotherapy expert on national television as well as on several television and radio shows. He lectures at medical and chiropractic conferences in the US and around the world on these techniques. He has also written for several publications.\r\n\r\nDr. Fields is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. He teaches on behalf of the foundation at the University of Wisconsin Medical School. He is also a director of one of three of its clinics in <a href=\"https://www.drfields.com/honduras-2013/\">Honduras</a>, where he volunteers yearly with the foundation, treating patients and teaching physicians from all over the world about prolotherapy. Dr. Fields is a very active and competitive triathlete, having recently completed two Ironman triathlons as well as over 60 other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”\r\n','How to Avoid Joint & Spine Surgery and Live Pain Free','','inherit','closed','closed','','1423-revision-v1','','','2019-06-12 11:07:16','2019-06-12 11:07:16','',1423,'https://www.drfields.com/uncategorized/1423-revision-v1/',0,'revision','',0),(1429,8,'2019-06-12 11:11:34','2019-06-12 11:11:34','A few years ago we reported on an FDA warning about neurological problems after epidural corticosteroid injections. But what is the newest information? A lot of people are in pain, and because of that, many procedures are done to manage that pain. And the number of those pain management procedures are increasing over the years.\r\n<h3>Epidural Corticosteroids</h3>\r\nA variety of painful conditions benefit from techniques that reduce pain. And corticosteroid injections or cortisone injections are a common treatment recommended by many physicians. At OrthoRegen, we treat joint pain with Regenerative Orthopedics, which also are injections, but they do not contain <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">cortisone</a>.\r\n\r\nCorticosteroid injections are given in different locations. They may be injected into joints, or they may be used as nerve blocks. Injectable corticosteroids are used quite often to reduce swelling or inflammation. And corticosteroids injected into the epidural space of the spine have been performed for many decades.1 But in our previous article, we discussed the FDA warning that injections of corticosteroids into the epidural space of the spine can result in rare but serious adverse events, including loss of vision, stroke, paralysis, and death.\r\n<h3>Stellate Ganglion Nerve Block (SGNB)</h3>\r\nCorticosteroids are also injected into the neck along with some type of anesthetic for a procedure called a stellate ganglion nerve block (SGNB). These procedures have been around for quite a while too. Are they safe? We took a look at the results from a systematic review in the journal, <em>Regional Anesthesia &amp; Pain Medicine</em>. What\'s a systematic review? These types of reviews gather a bunch of different studies and take a look at the overall results of all of those studies.\r\n\r\nThe research team in this particular systematic review looked at eighteen years of results and 4812 studies. The researchers identified 260 cases of adverse events with SGNB, including medication side effects, a patient who developed quadriplegia, five who required a tracheostomy, and one death.\r\n\r\nWhat was the most common side effect? Hoarseness was reported in 27.6% of the cases. This particular type of nerve block is considered relatively safe, with severe complications occurring in 1.7 out of 1000 blocks. Interestingly, complications also occurred in a delayed manner, leading the researchers to conclude, \"The importance of constant vigilance along with accessibility to resuscitation equipment for all SGNB procedures cannot be overstated.\"2\r\n\r\nSerious adverse events include death, paralysis, seizure, stroke, and others that can occur after corticosteroid injections in both epidural and SGNB procedures. Because of this, we recommend seeking more conservative therapies to treat pain first. Regenerative Orthopedics is one way to treat joint pain without the need for surgery. These non-surgical techniques are effective at treating many painful joint conditions.\r\n\r\nWhat are some examples of corticosteroids? Injectable corticosteroids include methylprednisolone, hydrocortisone, triamcinolone, betamethasone, and dexamethasone.\r\n\r\nThere are times that corticosteroids are needed. But there are ways to avoid them and their side effects when they really are not necessary. Regenerative Orthopedics is a great way to avoid cortisone injections to treat and repair painful joint conditions.\r\n\r\n<a href=\"http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections\" target=\"_blank\" rel=\"noopener noreferrer\">1 http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections</a>\r\n\r\n2 Goel, Vasudha, et al. \"Complications associated with stellate ganglion nerve block: a systematic review.\" <i>Regional Anesthesia &amp; Pain Medicine</i> 44.6 (2019): 669-678.','Problems After Corticosteroid Injections','','publish','open','closed','','neurologic-problems-after-epidural-corticosteroid-injections','','','2020-07-26 01:19:03','2020-07-26 01:19:03','',0,'https://www.drfields.com/?p=1429',0,'post','',0),(1430,8,'2019-06-12 11:11:34','2019-06-12 11:11:34','<h6>Articles</h6>\r\n\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Articles/Magazine-Column\">Magazine Column</a></li>\r\n 	<li><a href=\"https://www.nytimes.com/2011/10/29/health/mris-often-overused-often-mislead-doctors-warn.html\">N.Y. Times - On MRIs Overused</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/\">Health News</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/prolo-news/\">Prolo News</a></li>\r\n 	<li><a href=\"http://fieldsmddc.blogspot.com/\">Blog</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Articles/Prolotherapy-Research\">Prolotherapy Research</a></li>\r\n</ul>\r\n\r\n<h4>FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections</h4>\r\n\r\nROCKVILLE, Md -- April 23, 2014 -- The US Food and Drug Administration (FDA) is warning that injection of corticosteroids into the epidural space of the spine may result in rare but serious adverse events, including loss of vision, stroke, paralysis, and death.\r\n\r\nThe FDA is requiring the addition of a Warning to the drug labels of injectable corticosteroids to describe these risks.\r\n\r\nInjectable corticosteroids are commonly used to reduce swelling or inflammation. Injecting corticosteroids into the epidural space of the spine has been a widespread practice for many decades; however, the effectiveness and safety of the drugs for this use have not been established, and the FDA has not approved corticosteroids for such use.\r\n\r\nThe FDA reviewed a sampling of cases from the FDA Adverse Event Reporting System (FAERS) database, as well as cases in the medical literature of serious neurologic adverse events associated with epidural corticosteroid injections. Serious adverse events included death, spinal cord infarction, paraplegia, quadriplegia, cortical blindness, stroke, seizures, nerve injury, and brain oedema. Many cases were temporally associated with the corticosteroid injections, with adverse events occurring within minutes to 48 hours after the corticosteroid injections. In some cases, diagnoses of neurologic adverse events were confirmed through magnetic resonance imaging or computed tomography scan. Many patients did not recover from these reported adverse events.\r\n\r\n<strong>Additional Information for Healthcare Professionals</strong>\r\n<ul>\r\n<li>Rare but serious neurologic adverse events have been reported with epidural corticosteroid injections, including spinal cord infarction, paraplegia, quadriplegia, cortical blindness, stroke, and death.</li>\r\n\r\n<li>These serious neurologic events have been reported with and without the use of fluoroscopy.</li>\r\n\r\n<li>Discuss with patients the benefits and risks of epidural corticosteroid injections and other possible treatments.</li>\r\n\r\n<li>Counsel patients to seek emergency medical attention immediately if they experience symptoms after receiving an epidural corticosteroid injection, such as loss of vision or vision changes; tingling in their arms or legs; sudden weakness or numbness in their face, arm, or leg on one or both sides of the body; dizziness; severe headache; or seizures.</li>\r\n\r\n<li>Report adverse effects following epidural corticosteroid injections to the FDA MedWatch program: <a title=\"https://www.accessdata.fda.gov/scripts/medwatch/\" href=\"https://www.accessdata.fda.gov/scripts/medwatch/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.accessdata.fda.gov/scripts/medwatch/</a></li>\r\n\r\nTo raise awareness of the risks of epidural corticosteroid injections in the medical community, the FDA’s Safe Use Initiative convened a panel of experts, including pain management experts to help define the techniques for such injections which would reduce preventable harm. The expert panel’s recommendations will be released when they are finalized.\r\n\r\nAs part of the FDA’s ongoing effort to investigate this issue, they plan to convene an Advisory Committee meeting of external experts in late 2014 to discuss the benefits and risks of epidural corticosteroid injections and to determine if further FDA actions are needed.\r\n\r\nInjectable corticosteroids include methylprednisolone, hydrocortisone, triamcinolone, betamethasone, and dexamethasone. This safety issue is unrelated to the contamination of compounded corticosteroid injection products reported in 2012.\r\n\r\nSOURCE: US Food and Drug Administration\r\n\r\n<a href=\"http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections</a>\r\n','FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections','','inherit','closed','closed','','1429-revision-v1','','','2019-06-12 11:11:34','2019-06-12 11:11:34','',1429,'https://www.drfields.com/uncategorized/1429-revision-v1/',0,'revision','',0),(1434,8,'2022-05-12 10:35:04','2022-05-12 10:35:04','<h3>Zoom Regenerative Orthopedics Lecture</h3>\r\n<h5>Peter A. Fields, MD, DC</h5>\r\n&nbsp;\r\n<h4><strong>You are invited!! </strong><strong>Join us </strong>Sunday, June 5th for this informative <strong>Regenerative Orthopedics Lecture </strong>with leading regenerative medicine expert Peter A. Fields, MD, DC at 9AM Los Angeles time.</h4>\r\n<img class=\"size-medium wp-image-4968 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\" alt=\"Dr. Fields\' Zoom Lecture (facebook Post).2\" width=\"500\" height=\"419\" />\r\n\r\n<b class=\"session-name\">Rege</b><b class=\"session-name\">nerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy</b>\r\n<div class=\"session-desc\">\r\n\r\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\r\n\r\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients.  This lecture could change your patients’ lives and maybe even yours.</em>\r\n\r\n</div>\r\nWe hope to see you there for this informative conference!\r\n\r\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>\r\n\r\n&nbsp;\r\n<h3>Non-Surgical Stem Cell, Platelet Rich Plasma, and Prolotherapy Treatments</h3>\r\nRegenerative Orthopedics includes Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy. All of these treatments are natural non-surgical methods of assisting the body to heal weakened or injured joints, tendons and ligaments. With Regenerative Orthopedics, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, joint function is improved, and the pain is alleviated.\r\n\r\n<em>Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.</em>','Regenerative Orthopedics Lecture on Zoom','','publish','open','closed','','regenerative-orthopedics-lecture','','','2022-05-28 03:55:49','2022-05-28 03:55:49','',0,'https://www.drfields.com/?p=1434',0,'post','',0),(1435,8,'2019-06-12 11:13:04','2019-06-12 11:13:04','<h2>Articles</h2>\r\n<ul>\r\n 	<li><a href=\"#\">Magazine Column</a></li>\r\n 	<li><a href=\"https://www.nytimes.com/2011/10/29/health/mris-often-overused-often-mislead-doctors-warn.html\">N.Y. Times – On MRIs Overused</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/\">Health News</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/prolo-news/\">Prolo News</a></li>\r\n 	<li><a href=\"http://fieldsmddc.blogspot.com/\">Blog</a></li>\r\n 	<li><a href=\"#\">Prolotherapy Research</a></li>\r\n</ul>\r\n<img class=\"aligncenter size-full wp-image-1003\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Man Knee Pain\" />\r\n\r\n<a href=\"https://www.drfields.com/wp-content/uploads/2019/06/Prolotherapy_lecture.pdf\">Download Dr. Fields Prolotherapy Lecture Today! 2/22/2009</a>','Download Dr. Fields Prolotherapy Lecture Today','','inherit','closed','closed','','1434-revision-v1','','','2019-06-12 11:13:04','2019-06-12 11:13:04','',1434,'https://www.drfields.com/uncategorized/1434-revision-v1/',0,'revision','',0),(1436,8,'2019-06-12 11:13:34','2019-06-12 11:13:34','[caption id=\"attachment_2337\" align=\"alignright\" width=\"166\"]<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"166\" height=\"264\" /> Peter A. Fields, MD, DC[/caption]\r\n<h3><strong>Prolotherapy Treatment on KCAL/CBS by </strong><strong>Peter A. Fields, MD, DC </strong></h3>\r\nHave you ever seen a Prolotherapy Treatment? Watch it here. In this episode, the folks at <a href=\"https://losangeles.cbslocal.com\">KCAL/CBS</a> talk about Prolotherapy while Dr. Fields treats a patient with knee pain. Karen lived with knee pain for a long time after tearing her meniscus in a skiing accident. Prolotherapy treatments repaired her knee. She got rid of her pain too! And you can get rid of your joint pain because this non-surgical treatment actually repairs the source of the pain. Prolotherapy is extremely effective at joint repair and pain reduction. <a href=\"https://youtu.be/3JIY8OCt1FY\">Watch now! </a>\r\n\r\nIn this episode, KCAL 9 Los Angeles shows how a Prolotherapy can repair injured or painful joints. Do you have arthritis? If you do, you\'ll be happy to know that this popular technique reduces arthritis pain in many patients. And it treats other joint conditions as well. Pain causing tendonitis, bursitis, and other joint conditions are helped too!\r\n\r\nIs it surgery? No, a Prolotherapy treatment is a natural non-surgical method that assists the body to heal injured or weakened joints, ligaments, and tendons. And with Prolotherapy, the weakened areas are injected with a natural solution that stimulates the growth of healthy, strong tissues. Plus, as the tendons and ligaments grow stronger and vibrant, the pain is alleviated.\r\n\r\nThe repair is quick too. And after about two or three treatments, most people notice quite a difference. Then, after a few more treatments, people are back to full function. Why wait? Repair your joint, and get back doing life like you want to. Are you an athlete with a sports injury? We can help you too! Call us today at 310-453-1234.\r\n\r\nYou can read about Regenerative Orthopedics too. Click <a href=\"https://www.drfields.com\">here</a> to find out more.','Prolotherapy Treatment on KCAL/CBS','','publish','open','closed','','dr-fields-interviewed-on-kcal-cbs-about-prolotherapy','','','2020-10-12 18:07:05','2020-10-12 18:07:05','',0,'https://www.drfields.com/?p=1436',0,'post','',0),(1437,8,'2019-06-12 11:13:34','2019-06-12 11:13:34','[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-interviewed.jpg\" alt=\"Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'\"]\r\n\r\n<strong> Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>','Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'','','inherit','closed','closed','','1436-revision-v1','','','2019-06-12 11:13:34','2019-06-12 11:13:34','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(1450,8,'2019-06-12 11:19:03','2019-06-12 11:19:03','<div id=\"specialistsInfo\">\r\n<h3>What To Ask When Looking for A Prolotherapist</h3>\r\n<div id=\"specialistsParagraph\">When looking for a Prolotherapist, you definitely want the physician to be experienced. OrthoRegen<sup>®</sup>, is grateful to have Peter A. Fields, MD, DC, an experienced physician dedicated to providing highly effective, individualized Regenerative Orthopedic treatment plans that relieve pain and help patients return to sports, work, and activities quickly and safely. If you are serious about receiving regenerative treatments from a physician who has many years of experience in repairing the joint injury, then OrthoRegen<sup>®</sup>, is for you!</div>\r\n</div>\r\n<h3>When Looking for a Prolotherapist, Find Out How Much of the Practice Is Dedicated to <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>?</h3>\r\nFind out if Prolotherapy is really what they are experts at or is it something they do once in a while. At least 50% of the doctor’s practice should be Prolotherapy. And it\'s better if it is more.\r\n<h3>Find Out Whether the Physician Does Prolotherapy on Every Joint?</h3>\r\nIt is important to find out whether the physician treats the back, knees, shoulder, neck, ankle, feet, wrist, hand, and every other joint? Why or why not? Do they lack the confidence to treat every area? Do they lack training or experience?\r\n\r\n<img class=\"size-medium wp-image-4818 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-2-186x500.png\" alt=\"Honduras 2011\" width=\"186\" height=\"500\" />\r\n<h3>Where Did the Physician Learn Their <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> Skills?</h3>\r\nHow did the Prolotherapist learn their skills? And do they take continuing education in it on a regular basis? It also helps to know whether the Prolotherapist instructs others on how to do it. Peter A. Fields, MD, DC continues to teach other doctors on an ongoing basis and gives seminars on Regenerative Orthopedics.\r\n<h3><strong>I\'m Looking for a Prolotherapist, Can You Give Me a Local Referral from a Physician Who does the Treatments You Do?</strong></h3>\r\nSome people may ask us for a referral to someone closer to them. Unfortunately, we do not have specific referrals for outside of our office, especially if we have not seen someone for an exam and to thoroughly review their case, imaging, and other factors important when doing a detailed exam. We understand that it is not feasible for all patients to come here.  Hopefully, the information we share in our articles can at least help people to learn more about the possible reason for their symptoms.\r\n\r\nWe do try to help educate people and provide information that would help build the understanding about Prolotherapy and the other forms of Regenerative Orthopedics, and how these treatments might be a consideration for various conditions. But keep in mind that every Prolotherapist is different, just like with any medical specialty. We simply do not know everyone who practices or what types of cases their office accepts.\r\n\r\nWe would love for you to choose Peter A. Fields, MD, DC and OrthoRegen.<sup>®      </sup>However, if you need to choose someone closer, we suggest that you speak in detail with the team and/or provider whom you are considering seeing. If the location of a medical provider is most important to you, Google may be a good place to start. And if you do find someone near you, contact them about their experience with your condition and determine if you feel they might be a good fit for your case.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n\r\n&nbsp;','What to Ask When Looking for a Prolotherapist','','publish','open','closed','','what-to-ask-when-looking-for-a-prolotherapist','','','2021-08-05 20:57:04','2021-08-05 20:57:04','',0,'https://www.drfields.com/?p=1450',0,'post','',0),(1451,8,'2019-06-12 11:19:03','2019-06-12 11:19:03','<h6>Articles</h6>\r\n\r\n<ul>\r\n 	<li><a href=\"/Articles/Magazine-Column\">Magazine Column</a></li>\r\n 	<li><a href=\"/Articles/NY-Times-On-MRIs-Overused\">N.Y. Times - On MRIs Overused</a></li>\r\n 	<li><a href=\"/Articles/Health-News\">Health News</a></li>\r\n 	<li><a href=\"/Articles/Prolo-News\">Prolo News</a></li>\r\n 	<li><a href=\"/Articles/Blog\">Blog</a></li>\r\n 	<li><a href=\"/Articles/Prolotherapy-Research\">Prolotherapy Research</a></li>\r\n</ul>\r\n\r\n\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" class=\"aligncenter size-full wp-image-712\" />\r\n\r\n<h4>What to Ask When Looking for a Prolotherapist</h4>\r\n\r\n<ul>\r\n 	<li>How much of the practice is dedicated to <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>? At least 50% of the doctor’s practice should be Prolotherapy and better if it is more.</li>\r\n 	<li>Does the doctor do Prolotherapy on every joint (back, knee’s shoulder, neck, ankle, feet, wrist, hand, etc)? If not, then ask why.</li>\r\n 	<li>Does the doctor do the Prolotherapy himself? Only a skilled, trained MD or DO should be doing the injections; not an assistant or mid-level practitioner (PA, Nurse Practitioner, etc).</li>\r\n 	<li>Where did the doctor learn their <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> skills? And do they take continuing education in it on a regular basis. Better yet if the doctor instructs others how to do it.</li>\r\n</ul>\r\n<a class = \"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n','What to Ask When Looking for a Prolotherapist','','inherit','closed','closed','','1450-revision-v1','','','2019-06-12 11:19:03','2019-06-12 11:19:03','',1450,'https://www.drfields.com/uncategorized/1450-revision-v1/',0,'revision','',0),(1452,8,'2019-06-12 11:19:46','2019-06-12 11:19:46','<h2>Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics</h2>\r\nMost of us are doing everything we can to stay out of the hospital during this pandemic age. Who would blame us?! So, we do everything we can think of to keep going and keep moving, even if we are hurting. And those who have an injured joint, who still want to exercise, may choose bicycling instead of running, or swimming instead of hiking. That way, they can still keep exercising since there is less stress on the joint and less pain with the different activities.\r\n\r\nAnd we may also try over-the-counter medications, rest, physical therapy, acupuncture, manipulation, and whatever else we can possibly find in an effort to get relief. But for some, that pain either never goes away, or it just keeps coming back.\r\n\r\n<strong>There is another way!</strong> Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy, is one of the best ways to get relief from your pain without hospitalization or the need for surgery.\r\n<h3>With Regenerative Orthopedics, There Is:</h3>\r\n[caption id=\"attachment_4538\" align=\"alignright\" width=\"527\"]<img class=\" wp-image-4538\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Avoid-the-hospital-1-500x466.png\" alt=\"Avoid The Hospital (1)\" width=\"527\" height=\"490\" /> <em>   Stay Out of The Hospital and Avoid Surgery with Regenerative Orthopedics</em>[/caption]\r\n<ul>\r\n 	<li><strong>No Hospitalization               </strong></li>\r\n 	<li><strong>No Surgery</strong></li>\r\n 	<li><strong>No Steroids</strong></li>\r\n 	<li><strong>No Drugs Just to Mask Painful Symptoms</strong></li>\r\n 	<li><strong>No General Anesthesia</strong></li>\r\n</ul>\r\n<h3><strong>Plus, With Regenerative Orthopedics, You Get:</strong></h3>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Regeneration of Injured Soft Tissue</strong></li>\r\n 	<li><strong>Joint Repair</strong></li>\r\n 	<li><strong>No Down Time</strong></li>\r\n 	<li><strong>Faster Recovery</strong></li>\r\n 	<li><strong>Pain Relief</strong></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h3>1. No Hospitalization with Regenerative Orthopedics:</h3>\r\nAt OrthoRegen, we see you and treat you in our medical clinic. <strong>There is no need to go to a hospital! </strong>\r\n\r\nPlus, Peter A. Fields, MD, DC is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor.</em> And his practice is exclusively Regenerative Orthopedics. That means you get a very experienced practitioner and a leader in regenerative medicine.\r\n\r\nAs a medical doctor with years of experience in regenerative medicine, Peter A. Fields, MD, DC will seek out the best natural medicine solution and perform the optimal type of regenerative therapy for you. And that means you get the treatment that\'s right for you and the best treatment possible to repair your joint quickly. And all of these regenerative therapies are available right in our clinic. As a chiropractor, Dr. Fields understands how the joints work. So, you don\'t have to step into the hospital for what is often unnecessary testing. Sure, if further testing is deemed necessary, they can be prescribed. But a chiropractor\'s familiarity with the joints and referral pain makes imaging less necessary.\r\n\r\nIn most cases, Regenerative Orthopedics is effective at eliminating joint<a href=\"/Chronic-Pain\"> pain</a> due to ligament and tendon injury 80 to 90 percent of the time. That\'s a high rate of success! Plus, all of these regenerative techniques help to stimulate the body’s ability to repair...naturally.\r\n<h3>2. No Surgery Is Needed with Regenerative Orthopedics:</h3>\r\nRegenerative Orthopedics is an in-office injection treatment that both research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical treatments. We see so many patients in our clinic who are looking to avoid surgery. We are accustomed to that! And we see amazing results. In our opinion, Regenerative Orthopedics is superior to many other treatments in relieving chronic joint and spine pain. Plus, and most importantly, you get back to a happy and active lifestyle without the need for surgery.\r\n\r\n<strong>Regenerative Orthopedics is:</strong>\r\n<ul>\r\n 	<li>A viable <strong>alternative to surgery</strong></li>\r\n 	<li><strong>A safe and affordable option</strong> that allows you to keep working and/or training during treatment.</li>\r\n 	<li>Typically the best treatment to <strong>stabilize and repair injured ligaments and tendons</strong>. Plus, multiple joints and structures can be treated with each visit.</li>\r\n 	<li><strong>Reparative</strong> in nature. Instead of cutting and removing, it will regenerate and repair the joint.</li>\r\n</ul>\r\n<h3><strong>3. No Steroids or Cortisone Are Used in Regenerative Orthopedics:</strong></h3>\r\nFirst of all, why is this a good thing? <strong>More and more research is pouring in on the detrimental effects of steroids or cortisone </strong><b>injections. Sure, cortisone shots may relieve your pain in the short-term. But they make the problem worse over the long haul.</b>\r\n\r\n<strong>Cortisone injections cause:</strong>\r\n<ul>\r\n 	<li>Cartilage destruction</li>\r\n 	<li>Cartilage surface deterioration</li>\r\n 	<li>Inhibition of new cartilage growth</li>\r\n 	<li>A decrease in <strong>protein and matrix synthesis</strong> (which refers to the nutrient and healing bed the cells grow in)</li>\r\n</ul>\r\n<h4><em>What do the studies show?</em></h4>\r\n<ul>\r\n 	<li><strong>Mayo Clinic</strong> says cortisone may hinder the native stem cells in cartilage. \"Studies have shown the deleterious effects of corticosteroids on chondrocytes, suggesting a potentiation of degenerative joint disease.\" And, \"Corticosteroids frequently are used by physicians to reduce inflammation in patients with musculoskeletal disorders, but these agents may hinder MSCs\' innate regenerative capacity in exchange for temporary analgesia.\" <strong>What are Mesenchymal Stem Cells (MSCs)?</strong> They are the building blocks of cartilage and other musculoskeletal tissue. And cortisone threatens their ability to build and repair in exchange for temporary pain relief.1</li>\r\n</ul>\r\n<h4><em>Many Physicians Routinely Use Cortisone When It Is Damaging to the Joint. We Do Not!</em></h4>\r\n<ul>\r\n 	<li>Another study from the University of Pittsburgh School of Medicine revealed that \"The combination of methylprednisolone and lidocaine was toxic, with virtually no cells surviving after treatment. In addition, methylprednisolone did not mitigate the inflammatory effects of IL-1beta; rather, <strong>it further potentiated the chondrotoxicity.</strong>\"2</li>\r\n</ul>\r\nSo we can see that intra-articular injections of corticosteroids are toxic to the joint even though they are widely used in clinical practice. The truth is – <strong>When injected into joints, corticosteroids trigger cartilage cell death!</strong> Plus, they also suppress healing by their innate mechanism of action, which suppresses the immune system and blocks inflammation.\r\n<h3>4. No Drugs Just to Mask or Chase Pain...Are Used in Regenerative Orthopedics:</h3>\r\nWe don\'t use addictive pain medications or other medications that just mask or chase the pain. In Regenerative Orthopedics, all of the therapies are natural treatment techniques. For example, the primary ingredient in the Prolotherapy injections is dextrose. This technique involves using the simple and safe base solution dextrose, which is given into and around the entire painful/injured area(s). Why treat the whole area? All of the affected areas are treated comprehensively, so you have the best results.\r\n\r\nIf Platelet Rich Plasma (PRP) is recommended, we use your own blood.  PRP is used for acute or chronic musculoskeletal injuries. It is a great option to repair particular soft tissue injuries to help you avoid the pain, complications, and recovery time associated with various types of joint surgery. Your blood platelets contain potent growth factors that are exceptional at tissue repair. Again, <a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\">Platelet Rich Plasma</a> naturally accelerates the normal healing process. Plus, it results in tissue repair and the regeneration of weakened torn or damaged ligaments, tendons, and joints.\r\n\r\nWhen Stem Cell Therapy is recommended, we use the <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Gold Standard in Stem Cell Therapy</a>. This is also a natural technique where we use all four kinds of Regenerative Orthopedics, including your own stem cells, to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<h3>5. No General Anesthesia Is Used in Regenerative Orthopedics:</h3>\r\nAre you afraid of receiving general anesthesia? With Regenerative Orthopedics, it\'s not necessary! You not only stay out of the hospital and avoid surgery with Regenerative Orthopedics. But you avoid general anesthesia too! Surgery definitely has its risks. And general anesthesia adds to those risks. Especially for older people.\r\n\r\nA recent medical journal says, \"Postoperative mortality and complications after geriatric hip fracture surgery remain high despite efforts to improve perioperative care for these patients.\" And concludes, \"We found the use of general anesthesia and conversion from regional to general anesthesia were associated with a higher risk of mortality during the in-hospital stay compared with regional anesthetic techniques... We also found general anesthesia to be associated with a higher risk of all-cause readmission compared with regional.\"3\r\n\r\nIt is such a better idea to avoid general anesthesia completely. And you can do that with Regenerative Orthopedics.\r\n<h3>Regenerative Orthopedics Is Your Answer to Resolve Joint Pain Without Needing to Go To the Hospital</h3>\r\nAt OrthoRegen, we use a comprehensive approach and a variety of regenerative techniques. And each treatment is individualized according to your unique needs as a patient. The appropriate technique is recommended depending on you and what is required to produce the best healing results and repair.\r\n\r\nAre you experiencing pain and trying to stay out of the hospital? Would you like to avoid surgery too? Regenerative Orthopedics can be your non-surgical alternative. Contact us! We would be more than happy to give you a recommendation geared to getting you pain-free and back to the activities you love.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! </a>\r\n\r\nRegenerative Orthopedics is effective for sports injuries; back, neck, shoulder, knee, and other joint pain; tendonitis, arthritis, herniated disc, and headaches. Plus, if the injury involves a tendon or ligament, chances are Regenerative Orthopedics will help.\r\n<h3>References:</h3>\r\n1Wyles, Cody C., et al. \"Differential cytotoxicity of corticosteroids on human mesenchymal stem cells.\" <i>Clinical Orthopaedics and Related Research®</i> 473.3 (2015): 1155-1164.\r\n\r\n2Seshadri, Venkat, Christian H. Coyle, and Constance R. Chu. \"Lidocaine potentiates the chondrotoxicity of methylprednisolone.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 25.4 (2009): 337-347.\r\n\r\n3Desai, Vimal, et al. \"Is anesthesia technique associated with a higher risk of mortality or complications within 90 days of surgery for geriatric patients with hip fractures?.\" <i>Clinical orthopaedics and related research</i> 476.6 (2018): 1178.','Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics','','publish','open','closed','','staying-out-of-the-hospital-and-avoiding-surgery-with-regenerative-orthopedics','','','2021-03-12 03:07:21','2021-03-12 03:07:21','',0,'https://www.drfields.com/?p=1452',0,'post','',0),(1453,8,'2019-06-12 11:19:46','2019-06-12 11:19:46','<h6>Articles</h6>\r\n<ul>\r\n 	<li><a href=\"/Articles/Magazine-Column\">Magazine Column</a></li>\r\n 	<li><a href=\"/Articles/NY-Times-On-MRIs-Overused\">N.Y. Times - On MRIs Overused</a></li>\r\n 	<li><a href=\"/Articles/Health-News\">Health News</a></li>\r\n 	<li><a href=\"/Articles/Prolo-News\">Prolo News</a></li>\r\n 	<li><a href=\"/Articles/Blog\">Blog</a></li>\r\n 	<li><a href=\"/Articles/Prolotherapy-Research\">Prolotherapy Research</a></li>\r\n</ul>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain.jpg\" alt=\"Knee Pain\" width=\"200\" height=\"233\" class=\"aligncenter size-full wp-image-1075\" />\r\n\r\n<h4>Chronic Pain or Injuries? Prolotherapy Might be the Answer</h4>\r\nMany of us have aches or pains that just won’t go away no matter what we do. Medications, rest, physical therapy, acupuncture, manipulation, etc. Somehow that pain either never goes away or just keeps coming back. But one thing many of us have not tried is <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>.\r\n\r\nProlotherapy is a technique that helps to stimulate the body’s ability to repair a painful area when the natural healing process is not enough. In most cases Prolotherapy is effective at eliminating <a href=\"/Chronic-Pain\">chronic pain</a> due to ligament and tendon weakness 80 to 90 percent of the time.\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation. These areas may have little or no blood flow, but they have lots of nerves. When they become weak, nerves around the ligaments and tendons become stretched and irritated which produces pain.\r\n\r\n<a class = \"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n\r\n<a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> involves the injection of a solution that causes an inflammatory response which stimulates the healing process. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the patient\'s pain is reduced or eliminated. It is also an excellent alternative to cortisone injections, which long term studies have shown to actually weaken tissue.\r\n\r\nMost patients require about 6 treatments to restore function and relieve pain. The treatments are usually given at about 3 week intervals.\r\n\r\nIn addition to sports injuries, Prolotherapy is effective in back &amp; neck, shoulder, knee, and other joint pain; tendonitis, arthritis, herniated disc and headaches. If it involves a tendon or ligament, chances are prolotherapy will help.\r\n','Chronic Pain or Injuries? Prolotherapy Might be the Answer','','inherit','closed','closed','','1452-revision-v1','','','2019-06-12 11:19:46','2019-06-12 11:19:46','',1452,'https://www.drfields.com/uncategorized/1452-revision-v1/',0,'revision','',0),(1454,8,'2019-06-12 11:20:30','2019-06-12 11:20:30','<h2>Prolotherapy: Is It For You?</h2>\r\n[caption id=\"attachment_4513\" align=\"alignright\" width=\"390\"]<img class=\"wp-image-4513\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-1-copy-500x500.png\" alt=\"Dextrose Prolotherapy\" width=\"390\" height=\"390\" /> <em><strong>Dextrose Prolotherapy: Repair Your Joint Non-Surgically!</strong></em><br /><br />[/caption]\r\n\r\nDextrose Prolotherapy is a natural and effective treatment to strengthen specific joint and spine areas and eliminate the pain. Prolotherapy stimulates the body to repair the painful area and starts developing new healthy, strong tissue. One’s body – and their own immune system – proliferates the tissue.\r\n\r\nProlotherapy is performed as an in-office injection procedure. And research has shown the treatment to be effective, trustworthy, and reliable. In many cases, it can be used as an alternative to surgical treatments. And Prolotherapy is often superior to other treatments because it gets to the root of the problem. This regenerative therapy relieves chronic joint and spine pain problems by getting to the source of the pain. The result? You can get back to your active lifestyle.\r\n<h3>What Can I Expect From Dextrose Prolotherapy at OrthoRegen?</h3>\r\n<ul>\r\n 	<li>In our clinic, we offer Comprehensive Prolotherapy. By using this Prolotherapy technique, it means that all of the affected soft tissue areas of the joint are treated for the best possible repair and outcome. (Platelet Rich Plasma and/or Stem Cell Therapy may be recommended in more serious joint degeneration cases. And at OrthoRegen, we use the Gold Standard in Stem Cell Therapy. Find out more about why the <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Gold Standard in Stem Cell Therapy</a> is different by clicking <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">here</a>.)</li>\r\n 	<li><strong>Regenerative Prolotherapy injection treatments </strong>treat joint and spine pain by repairing damaged and weakened ligaments and tendons.</li>\r\n 	<li>Dextrose Prolotherapy is a viable <strong>alternative to surgery</strong>, <strong>cortisone,</strong> and other steroidal injections.</li>\r\n 	<li>Prolotherapy is a <strong>safe, affordable option</strong> that allows you to keep working and remain active.</li>\r\n 	<li><strong>The Comprehensive Prolotherapy difference:</strong> It is typically best to treat <strong>all or most</strong> of the ligaments of an injured and unstable joint, especially when the surrounding structures are painful.</li>\r\n</ul>\r\n<h3>What makes an ideal <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> candidate?</h3>\r\n<ul>\r\n 	<li>The presence of ligament or tendon pain</li>\r\n 	<li>A desire to get better and follow the necessary treatment plan</li>\r\n 	<li>Maintaining a positive mental outlook and minimizing stress.</li>\r\n 	<li>Following a healthy diet is recommended.</li>\r\n 	<li>Doing your best to optimize your immune system.</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! It\'s Free</a>\r\n<h2><strong>What Does the Research Say About Prolotherapy?</strong></h2>\r\n<ul>\r\n 	<li>A May 2020 study in the<strong> <em>Annals of Family Medicine</em></strong> made the following statement about their research findings:<em>“Intra-articular dextrose prolotherapy injections reduced pain, improved function and quality of life in patients with knee osteoarthritis compared with blinded saline injections.</em> The procedure is straightforward and safe; the adherence and satisfaction were high.”1</li>\r\n 	<li>Another May study published in <strong><em>The Journal of Alternative and Complementary Medicine</em></strong> said, <em>“These findings suggest that dextrose prolotherapy is effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.</em>\"2</li>\r\n 	<li>In January 2019, a research article about Dextrose <span class=\"highlight\">Prolotherapy</span> for Symptomatic <span class=\"highlight\">Knee</span> Osteoarthritis in the <em><strong>Journal of Alternative and Complementary Medicine</strong> </em>concluded, <em>“These data suggest that prolotherapy in this primary care clinic is feasible and acceptable.\" 3 </em></li>\r\n</ul>\r\n<h3>Choose A Natural, Non-Surgical Method: Prolotherapy</h3>\r\nProlotherapy treatments are a natural non-surgical method that assists the body in healing injured or weakened joints, ligaments, and tendons. With Dextrose Prolotherapy, the weakened areas of the joint become stronger. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated, and motion is restored.\r\n\r\nDon\'t wait any longer. Call <a href=\"tel:+310-453-1234\"><span class=\"wsm_phone\">310-453-1234</span></a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields’ office</a> to set up an in-person consultation.\r\n<h3>References:</h3>\r\n1 Shan Sit RW, Keung Wu RW, Rabago D, et al. <a href=\"https://www.annfammed.org/content/18/3/235\" target=\"_blank\" rel=\"noopener noreferrer\">Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis</a>: A Randomized Controlled Trial. <i>Ann Fam Med</i>. 2020;18(3):235‐242. doi:10.1370/afm.2520 [<a href=\"https://scholar.google.com/scholar?cluster=11142953714076712894&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]\r\n\r\n2Sert AT, Sen EI, Esmaeilzadeh S, Ozcan E. <a href=\"https://pubmed.ncbi.nlm.nih.gov/32223554/\" target=\"_blank\" rel=\"noopener noreferrer\">The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study</a>. <i>J Altern Complement Med</i>. 2020;26(5):409‐417. doi:10.1089/acm.2019.0335 [<a href=\"https://scholar.google.com/scholar?cluster=4570911058763587373&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]\r\n\r\nRabago D, Kansariwala I, Marshall D, Nourani B, Stiffler-Joachim M, Heiderscheit B. <a href=\"https://pubmed.ncbi.nlm.nih.gov/30688517/\" target=\"_blank\" rel=\"noopener noreferrer\">Dextrose Prolotherapy for Symptomatic Knee Osteoarthritis</a>: Feasibility, Acceptability, and Patient-Oriented Outcomes in a Pilot-Level Quality Improvement Project. The Journal of Alternative and Complementary Medicine. 2019 Jan 28. [<a href=\"https://scholar.google.com/scholar?cluster=14882716272312898995&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]','Dextrose Prolotherapy - Is It For You','','publish','open','closed','','dextrose-prolotherapy-is-it-for-you','','','2021-02-16 23:44:38','2021-02-16 23:44:38','',0,'https://www.drfields.com/?p=1454',0,'post','',0),(1455,8,'2019-06-12 11:20:30','2019-06-12 11:20:30','<h4>Articles</h4>\r\n\r\n<ul>\r\n 	<li><a href=\"/Articles/Magazine-Column\">Magazine Column</a></li>\r\n 	<li><a href=\"/Articles/NY-Times-On-MRIs-Overused\">N.Y. Times - On MRIs Overused</a></li>\r\n 	<li><a href=\"/Articles/Health-News\">Health News</a></li>\r\n 	<li><a href=\"/Articles/Prolo-News\">Prolo News</a></li>\r\n 	<li><a href=\"/Articles/Blog\">Blog</a></li>\r\n 	<li><a href=\"/Articles/Prolotherapy-Research\">Prolotherapy Research</a></li>\r\n</ul>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-smiling.jpg\" alt=\"Woman Smiling\" width=\"200\" height=\"184\" class=\"aligncenter size-full wp-image-1078\" />\r\n\r\n<h4>Prolotherapy - Is It For You</h4>\r\nProlotherapy is a natural and effective treatment to strengthen specific areas and eliminate the pain. Prolotherapy stimulates the body to repair the painful area and starts the growth of new healthy, strong tissue. One’s body – and their own immune system – proliferates the tissue.\r\n\r\nWhat makes an ideal <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> candidate:\r\n<ul>\r\n 	<li>Ligament or tendon pain</li>\r\n 	<li>Desire to get better and follow a treatment plan</li>\r\n 	<li>Positive mental outlook</li>\r\n 	<li>Healthy diet</li>\r\n 	<li>Strong immune system</li>\r\n</ul>\r\n<a class = \"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n\r\nArthritis and Fibromyalgia\r\nArthritis and Fibromyalgia sufferers have some or all of their pain or from ligament and tendon injury. When the underlying ligaments and tendons are weak, the muscles spasm to stabilize the joints, and pain occurs as is the case in Fibromyalgia. The same can be said for arthritis except the body is stabilizing the joints by the overgrowth of bone.\r\n\r\n<a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> works by causing a strengthening of ligaments which allows the stabilizing of joints. When this happens, the muscle spasms are stopped (as in Fibromyalgia) or the need for the body to overgrow bones (as in arthritis).\r\n','Prolotherapy - Is It For You','','inherit','closed','closed','','1454-revision-v1','','','2019-06-12 11:20:30','2019-06-12 11:20:30','',1454,'https://www.drfields.com/uncategorized/1454-revision-v1/',0,'revision','',0),(1457,8,'2019-06-12 11:21:37','2019-06-12 11:21:37','&nbsp;\r\n\r\n[caption id=\"attachment_4837\" align=\"alignleft\" width=\"500\"]<img class=\"wp-image-4837 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Rotator-Cuff-500x375.jpeg\" alt=\"Rotator Cuff\" width=\"500\" height=\"375\" /> <strong>      Prolotherapy is effective for chronic rotator cuff pain</strong>[/caption]\r\n<h1><strong>Rotator Cuff Injuries: Tears, Impingement, and Tendonitis </strong></h1>\r\nRotator cuff injuries are prevalent. Most of us have heard about rotator cuff tears and even impingement syndromes. We have probably seen and heard about them in the news. We often hear about professional athletes taken out of the game and possibly facing surgery. But these injuries affect the general public too!\r\n\r\nRotator cuff injuries are so common that they affect about a quarter of the population over 50 years of age.1 Many people are opting for surgery to fix their injury. The numbers of surgical repairs are going up and up! In some locations, surgeries are doubling in number, and particular surgeries, like arthroscopic rotator cuff repairs, have increased by 353%. 2,3 But are all of these surgeries really necessary? Especially considering the economic costs, the time needed for rehabilitation, and other personal risks!\r\n<h3>Non-Surgical Options for Rotator Cuff Injuries</h3>\r\nIn so many rotator cuff injury cases, Regenerative Orthopedic techniques, like Stem Cell Therapy, PRP, and Prolotherapy, can be used to repair the shoulder. Plus, these treatments effectively repair the injury without the need for surgery. Regenerative Orthopedics has many advantages over surgery. First and foremost, it gets to the root cause of the problem. What do we mean by that? Rotator cuff injuries affect the tendon and ligaments of the shoulder. And treatments like Prolotherapy are especially effective at healing soft tissue like tendons and ligaments.\r\n\r\nBesides, Regenerative Orthopedic options require much less rehabilitation time. They also help you avoid the risks associated with rotator cuff surgery, such as frozen shoulder, deep infection, and dislocation. And many patients who develop these complications also end up needing a second surgical procedure.\r\n\r\n[caption id=\"attachment_4483\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4483\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/rotator-cuff-problem-400x500.png\" alt=\"Rotator Cuff Injuries\" width=\"400\" height=\"500\" /> <em><strong>       Rotator Cuff Injuries Affect Your Sleep Too!</strong></em>[/caption]\r\n<h3>Who Is At Risk for Rotator Cuff Injuries?</h3>\r\nAs mentioned previously, many people are at risk for rotator cuff injuries. Among athletes, these injuries are more common with pitchers, tennis players, swimmers, and any sport that involves a throwing motion or repeated over-the-head movements. Non-athletes who repeatedly use overhead movements are also at increased risk for rotator cuff injuries. For example, rotator cuff tendinitis occurs when the rotator cuff\'s small muscles become strained, causing weakness of these structures and subsequent tendonitis. Left untreated, a chronic condition of tendinosis can develop.\r\n<h4><em>Impingement Syndrome</em></h4>\r\nAnother shoulder condition involving the rotator cuff is impingement syndrome. This condition occurs when the <a href=\"/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> tendon becomes pinched between the head of the humerus and the acromion process during the arm\'s motion raised above the head. This happens because the space gets narrowed, as occurs when the rotator cuff muscles weaken, and the humeral head rides high in the socket.\r\n\r\nImpingement can also ensue when bone spurs and calcium deposits narrow the space. Impingement also occurs when the contents of the subacromial space increase in size. This is most often due to a swollen rotator cuff tendon or bursa, which is painfully squeezed between the humeral head and the acromion process.\r\n<h3>Common Treatments for Rotator Cuff Injuries</h3>\r\nTreatment for rotator cuff injuries usually includes rest, non-steroidal anti-inflammatory drugs (NSAIDs), physical therapy, and cortisone injections. Cortisone has a substantial anti-inflammatory property, reducing the tendon and bursa\'s swelling and relieving the symptoms. Unfortunately, cortisone has also been found to lead to degeneration of the soft tissue eventually. It\'s so much better to regenerate the joint. And you can get regenerative results with Regenerative Orthopedics.\r\n\r\nMany common treatments only provide temporary help. That\'s because the underlying cause is not addressed, and the problem usually returns. Degenerative fraying and tearing of the tendon may occur when the tendon is allowed to be in a constant state of irritation over time. Non-Surgical Regenerative Orthopedics is a great way to address the underlying tendon and ligament injuries and repair all of the involved soft tissue. The result is a re-strengthening of the rotator cuff, an improved shoulder joint, and an excellent chance for a full recovery and performance.\r\n<h3><a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! It\'s free</a></h3>\r\n<h3>References:</h3>\r\n1Blitzer Charles, M. \"Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery.\" <i>The Journal of Arthroscopic and Related Surgery</i> 9.4 (1993): 414-416.\r\n\r\n2Iyengar, Jaicharan J., et al. \"Current trends in rotator cuff repair: surgical technique, setting, and cost.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 30.3 (2014): 284-288.\r\n\r\n3Traven, Sophia A., et al. \"The 5-factor modified frailty index predicts complications, hospital admission, and mortality following arthroscopic rotator cuff repair.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 36.2 (2020): 383-388.\r\n\r\nWant more information about treating Rotator Cuff injuries? Click <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stop-shoulder-pain-from-rotator-cuff-and-other-shoulder-injuries/\">here</a> to read our article called, <a href=\"http://Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries\">\"Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries.\"</a>\r\n<h1></h1>\r\n&nbsp;','Rotator Cuff Injuries: Tears, Impingement, and Tendonitis','','publish','open','closed','','rotator-cuff-injuries','','','2021-08-26 22:19:18','2021-08-26 22:19:18','',0,'https://www.drfields.com/?p=1457',0,'post','',0),(1458,8,'2019-06-12 11:21:37','2019-06-12 11:21:37','<h6>Articles</h6>\r\n\r\n<ul>\r\n 	<li><a href=\"/Articles/Magazine-Column\">Magazine Column</a></li>\r\n 	<li><a href=\"/Articles/NY-Times-On-MRIs-Overused\">N.Y. Times - On MRIs Overused</a></li>\r\n 	<li><a href=\"/Articles/Health-News\">Health News</a></li>\r\n 	<li><a href=\"/Articles/Prolo-News\">Prolo News</a></li>\r\n 	<li><a href=\"/Articles/Blog\">Blog</a></li>\r\n 	<li><a href=\"/Articles/Prolotherapy-Research\">Prolotherapy Research</a></li>\r\n</ul>\r\n\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/shoulder-joint-pain.jpg\" alt=\"Shoulder Joint Pain\" width=\"200\" height=\"199\" class=\"aligncenter size-full wp-image-1081\" />\r\n\r\n<h4>Prolotherapy for Shoulder</h4>\r\n\r\nRotator cuff tears, AC joint separations, sprained or strained shoulders, unstable joint, impingement syndromes all are all well known injuries in shoulders.\r\n\r\nThis is because shoulder problems are common with both recreational and more serious athletes. Each of these injuries, and more, can be effectively treated with <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. Prolotherapy has many advantages over surgery, which first and foremost is the fact that it gets at the root cause of the athlete\'s problem, which is tendon or ligament weakness. It also has less rehabilitation time, costs less, and avoids the flaws associated with rotator cuff surgery.\r\n\r\nA study done at the Mayo Clinic in 1997 reported a complication rate of 38 percent in shoulders undergoing rotator cuff repair. In order of frequency, the complications of the surgery were frozen shoulder, deep infection, and dislocation. Many of these patients who developed frozen shoulder needed a second surgical procedure to remove the adhesions.\r\n\r\n<a class = \"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s free</a>\r\n\r\n<strong>Rotator Cuff Impingement and Tendonitis</strong>\r\n\r\nAll athletes are affected by this but it is even more common with pitchers, tennis players, swimmers and any sport that involves a throwing motion. Rotator cuff tendinitis occurs when the small muscles of the rotator cuff become strained causing weakness of these structures and subsequent tendinitis.\r\n\r\nImpingement syndrome occurs when the <a href=\"/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> tendon becomes pinched between the head of the humerus and the acromion process when the arm is raised above the head. This happens because the space gets narrowed, as occurs when the rotator cuff muscles weaken and the humeral head rides high in the socket or when bone spurs and calcium deposits narrow the space. Impingement also occurs when the contents of the subacromial space increase in size, most often due to a swollen rotator cuff tendon or bursa, which is painfully squeezed between the humeral head and the acromion process.\r\n\r\nTreatment for the above usually includes rest, non-steroidal anti-inflammatory drugs (NSAIDs), physical therapy, and cortisone injections. Cortisone has a strong anti-inflammatory property, so it may reduce the swelling in the tendon and bursa, relieving the symptoms. Most of the time, these treatments may temporarily help. But since the underlying cause has not been addressed the problem usually returns. Degenerative fraying and tearing of the tendon may occur if constant irritation of the tendon occurs over time. The way to treat this process is with <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. This, combined with gradual re-strengthening of the rotator cuff muscles, give an excellent chance for a full recovery and performance.\r\n','Prolotherapy for Shoulder','','inherit','closed','closed','','1457-revision-v1','','','2019-06-12 11:21:37','2019-06-12 11:21:37','',1457,'https://www.drfields.com/uncategorized/1457-revision-v1/',0,'revision','',0),(1459,8,'2019-06-12 11:22:07','2019-06-12 11:22:07','<h1 style=\"text-align: center;\">Cortisone - Is it Really Good for You?</h1>\r\n[caption id=\"attachment_1084\" align=\"alignright\" width=\"380\"]<img class=\"wp-image-1084 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/older-man-pain.jpg\" alt=\"Cortisone Injections\" width=\"380\" height=\"571\" /> <em><strong>Cortisone-Is It Really Good for You?</strong></em>[/caption]\r\n\r\nMany people get cortisone injections to help with knee pain, hip pain, or pain in another joint. If it helps with pain, then it must be right for you. <em>But is cortisone really good for you?</em> Not really. Sure, cortisone may help to alleviate pain temporarily. But what is the trade-off?\r\n<h3>Cortisone Weakens the Ligament-bone Junction</h3>\r\nIf the goal is to weaken your ligament-bone junction eventually, then cortisone just may do that. And of course, that is not what anyone wants. But studies \"suggest that negative structural outcomes including accelerated osteoarthritis progression, subchondral insufficiency fracture, complications of pre-existing osteonecrosis, and rapid joint destruction (including bone loss) may be observed in patients who received intra-articular corticosteroid injections.\"1  Cortisone and other steroid injections, unfortunately, have detrimental effects on articular cartilage. And eventually, the result is a weakened joint and the development of a degenerated joint.\r\n<h3>How Do Cortisone Injections Adversely Affect the Joint?</h3>\r\nCortisone injections inhibit the synthesis of proteins, collagen, and proteoglycans in articular cartilage, by inhibiting chondrocyte production, the cells that comprise and produce the articular cartilage. The net catabolic (breakdown) effect of steroids is inhibition of fibroblast production of collagen, ground substance, and new blood vessel formation. The result is weakened synovial joints, supporting structures, articular cartilage, ligaments, and tendons. <em><strong>This weakness increases the pain...and the increased pain leads to more steroid injections.</strong></em>\r\n<h3>Cortisone Leads to Weakness of the Fibro-osseous Junction of the Joint</h3>\r\nSteroids also limit calcium absorption by the gastrointestinal tract, inactivate <a href=\"/Articles/Health-News/Vitamin-D-Its-Not-Just-For-Bones-Anymore\">vitamin D</a> and increase the urinary excretion of calcium. Bone also shows a decrease in calcium uptake with cortisone use, ultimately leading to weakness at the fibro-osseous junction. Corticosteroids also inhibit the release of growth hormone, which further decreases soft tissue and bone repair. Ultimately, corticosteroids lead to a decrease in bone, ligament, and tendon strength.\r\n\r\nAlthough anti-inflammatory medications and steroid injections reduce pain, they do so at the cost of destroying tissue. In one study, some joints were injected only one time. Even after one steroid injection, cartilage remained biochemically and metabolically impaired. Other studies have confirmed similar harmful effects of steroids on joint and cartilage tissue. A cortisone shot can permanently damage joints.\r\n<h3>If Cortisone Weakens My Joint, Then What Other Option Do I Have?</h3>\r\nCortisone does degenerate joints. But these injections are not your only option. Fortunately, there are other injections that are regenerative in nature. Regenerative Orthopedic options, like Stem Cell Therapy, PRP, and Prolotherapy, actually encourage repair and regeneration of the joint. Regenerative injection alternative, like <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy, </a>  have the opposite effect of cortisone. They actually strengthen the joints, ligaments, and tendons.\r\n<h3>What If I Need to Get Quick Relief?</h3>\r\nSome professional athletes and weekend warriors want quick relief. But the problem with choosing cortisone for quick relief, is that even though the athlete may get pain relief at the moment, it may be at the expense of a permanent inability to participate in athletics. Athletes often receive cortisone shots in order to play. They return to the playing field with an injury after getting a steroid injection to relieve the pain. Unfortunately, they cannot feel the pain anymore...so they play as if there was no injury. We know (see above) that the injury could not possibly be healed because of the tremendous anti-healing properties of cortisone. Thus, the athlete can further injure the joint while playing on an injury, plus can add to the problem by weakening the joint from the cortisone itself. The result of this choice is worsening of the already bad injury.\r\n\r\nBottom line- get a “quick fix” with steroid injections and set yourself up for further damage. Or fix your problem for good with <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. The choice is yours.\r\n\r\nHave questions? <a href=\"https://www.drfields.com/contact/\">Give us a call.</a> We\'d be happy to talk about your options.\r\n<h3>References:</h3>\r\n1Guermazi, Ali, et al. \"Intra-articular corticosteroid injections for the treatment of hip and knee osteoarthritis-related pain: considerations and controversies with a focus on imaging—Radiology Scientific Expert Panel.\" <i>Radiology</i> 297.3 (2020): 503-512.\r\n\r\n2Jurgensmeier, Kevin, et al. \"Intra-articular Injections of the Hip and Knee With Triamcinolone vs Ketorolac: A Randomized Controlled Trial.\" <i>The Journal of Arthroplasty</i> (2020).','Cortisone - Is it Really Good for You?','','publish','open','closed','','cortisone-is-it-really-good-for-you','','','2021-01-29 23:06:42','2021-01-29 23:06:42','',0,'https://www.drfields.com/?p=1459',0,'post','',0),(1460,8,'2019-06-12 11:22:07','2019-06-12 11:22:07','<h6>Articles</h6>\r\n\r\n<ul>\r\n 	<li><a href=\"/Articles/Magazine-Column\">Magazine Column</a></li>\r\n 	<li><a href=\"/Articles/NY-Times-On-MRIs-Overused\">N.Y. Times - On MRIs Overused</a></li>\r\n 	<li><a href=\"/Articles/Health-News\">Health News</a></li>\r\n 	<li><a href=\"/Articles/Prolo-News\">Prolo News</a></li>\r\n 	<li><a href=\"/Articles/Blog\">Blog</a></li>\r\n 	<li><a href=\"/Articles/Prolotherapy-Research\">Prolotherapy Research</a></li>\r\n</ul>\r\n\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/older-man-pain.jpg\" alt=\"Older Man Pain\" width=\"200\" height=\"300\" class=\"aligncenter size-full wp-image-1084\" />\r\n\r\n<h4>Cortisone - Is it Really Good for You</h4>\r\n\r\nWant to weaken your ligament-bone junction – then get cortisone injected into that area. Cortisone and other steroid injections all have the same detrimental effects on articular cartilage.\r\n\r\nCorticosteroids (steroids), such as cortisone and Prednisone, have an adverse effect on bone and soft tissue healing. They inhibit the synthesis of proteins, collagen, and Proteoglycans in articular cartilage, by inhibiting chondrocyte production, the cells that comprise and produce the articular cartilage. The net catabolic (breakdown) effect of steroids is inhibition of fibroblast production of collagen, ground substance, and new blood vessel formation. The result is weakened synovial joints, supporting structures, articular cartilage, ligaments, and tendons. This weakness increases the pain and the increased pain leads to more steroid injections.\r\n\r\nSteroids also limit calcium absorption by the gastrointestinal tract, inactivate <a href=\"/Articles/Health-News/Vitamin-D-Its-Not-Just-For-Bones-Anymore\">vitamin D</a> and increasing the urinary excretion of calcium. Bone also shows a decrease in calcium uptake with cortisone use, ultimately leading to weakness at the fibro-osseous junction. Corticosteroids also inhibit the release of growth hormone, which further decreases soft tissue and bone repair. Ultimately, corticosteroids lead to a decrease in bone, ligament, and tendon strength.\r\n\r\nAlthough anti-inflammatory medications and steroid injections reduce pain, they do so at the cost of destroying tissue. In one study, some joints were injected only one time. Even after one steroid injection, cartilage remained biochemically and metabolically impaired. Other studies have confirmed similar harmful effects of steroids on joint and cartilage tissue. A cortisone shot can permanently damage joints. <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> has the opposite effect—it permanently strengthens joints, ligaments, and tendons.\r\n\r\nSome professional athletes and weekend warriors want quick relief. The problem with cortisone is that the athlete may get pain relief, but it may be at the expense of permanent inability to participate in athletics. Athletes often receive cortisone shots in order to play. They return to the playing field with an injury after getting a steroid injection to relieve the pain. Unfortunately, they cannot feel the pain anymore so they play as if there was no injury. We know (see above) that the injury could not possibly be healed because of the tremendous anti-healing properties of cortisone. Thus the athlete is further injured from the cortisone, as well as playing with an injury, thereby worsening the already bad injury.\r\n\r\nBottom line- get a “quick fix” with steroid injections and set yourself up for further damage. Or fix your Problem for good with <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. The choice is yours.','Cortisone - Is it Really Good for You','','inherit','closed','closed','','1459-revision-v1','','','2019-06-12 11:22:07','2019-06-12 11:22:07','',1459,'https://www.drfields.com/uncategorized/1459-revision-v1/',0,'revision','',0),(1461,8,'2019-06-12 11:22:59','2019-06-12 11:22:59','<h2 style=\"text-align: center;\">Persistent Joint Pain Putting a Damper on Your Style?</h2>\r\n[caption id=\"attachment_3793\" align=\"alignright\" width=\"403\"]<img class=\"wp-image-3793\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Pain.-OrthoRegen-Copy-500x500.png\" alt=\"Persistent Joint Pain\" width=\"403\" height=\"403\" /> <strong>Persistent Joint Pain? Regenerative Orthopedics Gets You Back To Doing What You Love!</strong>[/caption]\r\n\r\nMany of us have aches or pains that just won’t go away no matter what we do. Medications, rest, physical therapy, acupuncture, and manipulation just aren\'t doing the trick. Somehow that joint pain either never goes away or just keeps coming back. But have you tried Regenerative Orthopedics?\r\n<h3>What\'s Regenerative Orthopedics?</h3>\r\nRegenerative Orthopedics is a technique that helps to stimulate the body’s ability to repair a painful area when the natural healing process isn\'t cutting it. <em><strong>In most cases, Regenerative Orthopedics is effective at eliminating persistent joint pain due to ligament and tendon weakness 80 to 90 percent of the time</strong></em>.\r\n<h3>Why Can\'t I Get Rid of This Joint Pain?</h3>\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months, or years. The answer lies in the fact that both ligaments and tendons have very poor circulation. These areas may have little or no blood flow, <em><strong>but they have lots of nerves</strong></em>. When the structures that stabilize the joint become weak, the nerves around them (ligaments and tendons) become stretched and irritated. That produces pain.\r\n\r\nRegenerative Orthopedics involves the injection of a solution that causes a healing response that stimulates the healing process. This results in a stronger tendon or ligament that can hold these joint structures in place more effectively.\r\n<h3>A Repaired Joint Is the Result</h3>\r\nThe weakened area heals, and the patient\'s pain is reduced or eliminated. It is also an excellent alternative to cortisone injections. Many doctors still recommend cortisone. That\'s unfortunate because long-term studies have shown cortisone to actually weaken tissue.\r\n\r\nMost patients require about 4-6 treatments to restore function and relieve pain. The treatments are usually given at about 3-week intervals.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedics</a> is effective for all types of persistent joint pain. It works for the neck, shoulder, knee, elbow, and other joints. Plus, this treatment can reduce or eliminate pain altogether for conditions like tendonitis, arthritis, herniated discs, and headaches.\r\n\r\nAnd if you have a sports injury, look no further than Regenerative Orthopedics. If the injury involves soft tissue, like a tendon or ligament, chances are Regenerative Orthopedics will help. Don\'t let joint pain keep you from doing the things you love!','Persistent Joint Pain? Try Regenerative Orthopedics','','publish','open','closed','','persistent-joint-pain-regenerative-orthopedics-may-be-the-answer','','','2020-10-12 18:02:54','2020-10-12 18:02:54','',0,'https://www.drfields.com/?p=1461',0,'post','',0),(1462,8,'2019-06-12 11:22:59','2019-06-12 11:22:59','<h6>Articles</h6>\r\n\r\n<ul>\r\n 	<li><a href=\"/Articles/Magazine-Column\">Magazine Column</a></li>\r\n 	<li><a href=\"/Articles/NY-Times-On-MRIs-Overused\">N.Y. Times - On MRIs Overused</a></li>\r\n 	<li><a href=\"m/Articles/Health-News\">Health News</a></li>\r\n 	<li><a href=\"/Articles/Prolo-News\">Prolo News</a></li>\r\n 	<li><a href=\"m/Articles/Blog\">Blog</a></li>\r\n 	<li><a href=\"/Articles/Prolotherapy-Research\">Prolotherapy Research</a></li>\r\n</ul>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-pain.jpeg\" alt=\"Woman Pain\" width=\"200\" height=\"300\" class=\"aligncenter size-full wp-image-1088\" />\r\n\r\n<h4>Chronic Pain? - Prolotherapy Maybe the Answer</h4>\r\nMany of us have aches or pains that just won’t go away no matter what we do. Medications, rest, physical therapy, acupuncture, manipulation, etc. Somehow that pain either never goes away or just keeps coming back. But one thing many of us have not tried is Prolotherapy.\r\n\r\n<a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> is a technique that helps to stimulate the body’s ability to repair a painful area when the natural healing process is not enough. In most cases Prolotherapy is effective at eliminating chronic pain due to ligament and tendon weakness 80 to 90 percent of the time.\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years.  The answer lies in the fact that both ligaments and tendons have very poor circulation. These areas may have little or no blood flow, but they have lots of nerves.  When they become weak, nerves around the ligaments and tendons become stretched and irritated which produces pain.\r\n\r\nProlotherapy involves the injection of a solution that causes an inflammatory response which stimulates the healing process. This results in a stronger or larger tendon or ligament that can the hold body structures in place more effectively.\r\n\r\nThe weakened area heals, and the patient\'s pain is reduced or eliminated.\r\nIt is also an excellent alternative to cortisone injections, which long term studies have shown to actually weaken tissue.\r\n\r\nMost patients require about 6 treatments to restore function and relieve pain.\r\nThe treatments are usually given at about 3 week intervals.\r\n\r\nIn addition to chronic pain, <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> is effective in back &amp; neck, shoulder, knee, and other joint pain; tendonitis, arthritis, herniated discs and headaches.\r\n\r\nAnd if you have a sports injury, look no further than Prolotherapy.\r\nIf it involves a tendon or ligament, chances are prolotherapy will help.','Chronic Pain? - Prolotherapy May be the Answer','','inherit','closed','closed','','1461-revision-v1','','','2019-06-12 11:22:59','2019-06-12 11:22:59','',1461,'https://www.drfields.com/uncategorized/1461-revision-v1/',0,'revision','',0),(1463,8,'2019-06-12 11:23:47','2019-06-12 11:23:47','<h6></h6>\r\n<img class=\"wp-image-3775 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire.-pro-triathlete-2-Copy-2-500x500.png\" alt=\"Claire. Pro Triathlete 2 Copy 2\" width=\"358\" height=\"358\" />\r\n\r\nMost orthopedic surgeries for joint pain do not require a quick decision. That is why they are called elective surgeries. The surgeon, the hospital, or you can choose whether or not to have them.\r\n\r\nRemember that once the surgery is done, it cannot be undone. Surgery also requires time off of work and rehabilitation time.\r\n\r\n<strong>Try Conservative Treatments First for Joint Pain</strong>\r\n\r\nBefore you rush into anything, consider your options. Begin with conservative treatments. Look into non-surgical therapies too.\r\n\r\n<strong>Regenerative Orthopedics Are Great Non-Surgical Alternatives</strong>\r\n\r\nNon-surgical alternatives, like Regenerative Orthopedics, are great treatments that are effective at repairing joint conditions that keep people from doing what they love. Even if you have seen an Orthopedic Surgeon, you should also see an experienced Regenerative Orthopedic physician for an evaluation.\r\n\r\nAre you suffering from arthritis joint pain? Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, can stop joint pain without surgery. Studies show that these treatments are \"effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.\"<a href=\"https://www.liebertpub.com/doi/abs/10.1089/acm.2019.0335\">1</a>\r\n\r\n<strong>Prolotherapy Has a Track Record of Reducing Joint Pain</strong>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nProlotherapy is one type of Regenerative Orthopedics used to treat painful joint conditions like arthritis. And it\'s not a new therapy either. Prolotherapy has been around since the 1950s and has been studied quite a bit. The treatment is still getting positive results in the studies. Researchers demonstrated once again just this year that Prolotherapy reduces pain and improves the quality of life of those who receive it.<a href=\"https://www.annfammed.org/content/annalsfm/18/3/235.full.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nThe majority of patients do great and are at least 80-90% better.  Those are great results, especially considering that surgery is not required to achieve them! Less pain, more function, and no surgery.\r\n\r\nOnce the OrthoRegen<sup>®</sup> team lets you know you are a good candidate for Regenerative Orthopedics, the treatments can begin. Four or five treatments are generally required. Virtually no downtime is necessary. Plus, you don\'t have to have weeks of therapy. Regenerative Orthopedics helps you get back to the activities you love quickly!\r\n\r\nRemember that it is your body and you should feel comfortable with the decision on how to treat it.\r\nUltimately, the decision is yours.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n<blockquote>1 Sert, Alketa T., et al. \"The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study.\" The Journal of Alternative and Complementary Medicine 26.5 (2020): 409-417.\r\n\r\n2 Sit, Regina Wing Shan, et al. \"Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial.\" <i>The Annals of Family Medicine</i>18.3 (2020): 235-242.</blockquote>','Surgery for Joint Pain? Think Again!','','publish','open','closed','','joint-surgery-think-again-learn-about-prolotherapy','','','2020-06-30 20:35:47','2020-06-30 20:35:47','',0,'https://www.drfields.com/?p=1463',0,'post','',0),(1464,8,'2019-06-12 11:23:47','2019-06-12 11:23:47','<h6>Articles</h6>\r\n\r\n<ul>\r\n 	<li><a href=\"/Articles/Magazine-Column\">Magazine Column</a></li>\r\n 	<li><a href=\"/Articles/NY-Times-On-MRIs-Overused\">N.Y. Times - On MRIs Overused</a></li>\r\n 	<li><a href=\"/Articles/Prolo-News\">Prolo News</a></li>\r\n 	<li><a href=\"/Articles/Blog\">Blog</a></li>\r\n 	<li><a href=\"/Articles/Prolotherapy-Research\">Prolotherapy Research</a></li>\r\n</ul>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/joint-x-ray.jpeg\" alt=\"Joint X Ray\" width=\"200\" height=\"267\" class=\"aligncenter size-full wp-image-1086\" />\r\n\r\n<h4>Joint Surgery? Think Again! Learn About Prolotherapy</h4>\r\n\r\nMost orthopedic surgeries usually do not require a quick decision. That is why they are called elective surgeries. The surgeon, the hospital or you can elect whether or not to have them. Remember that once surgery is done, there is no going back. Even if it does not work out as planned. And in addition to the surgery, there is rehabilitation time.\r\n\r\nSo, before you rush into anything, consider your options which should include <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>.\r\nEven if you have seen an Orthopedic Surgeon, you should also see an experienced Prolotherapist and have an evaluation.\r\n\r\n<a class= \"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n\r\nIf you are a good candidate for <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>, get four or five treatments. If this does not help, you will be no worse off. A general rule is that you should be at least 50% better after these treatments (usually you do not even need that many). Most patients do great and are at least 80-90% better with less pain and more function.\r\n\r\nRemember that it is your body and you should feel comfortable with the decision on how to treat it.\r\nUltimately, the decision is yours.','Joint Surgery? Think Again! Learn About Prolotherapy','','inherit','closed','closed','','1463-revision-v1','','','2019-06-12 11:23:47','2019-06-12 11:23:47','',1463,'https://www.drfields.com/uncategorized/1463-revision-v1/',0,'revision','',0),(1468,8,'2022-12-02 06:01:39','2019-06-12 16:44:14',' ','','','publish','closed','closed','','1468','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',30,'https://www.drfields.com/?p=1468',63,'nav_menu_item','',0),(1469,8,'2019-06-12 16:45:48','2019-06-12 16:45:48','<h4>‘An adequate supply of antioxidant nutrients may have a beneficial role for healthy aging’, says study</h4>\r\n    \r\n	By Stephen DANIELLS 24-Sep-2015\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Antioxidants.jpg\" alt=\"Antioxidants\" width=\"200\" height=\"301\" class=\"alignright size-full wp-image-1107\" />\r\n<strong>Specific sub-populations may benefit from antioxidant intakes to support healthy aging, with men particularly seen as an ‘at-risk’ group, says a new paper published in the <em><a href=\"http://aje.oxfordjournals.org/content/early/2015/09/15/aje.kwv105.abstract\" target=\"_blank\" rel=\"noopener noreferrer\">American Journal of Epidemiology</a></em>.</strong>\r\n\r\nData from the Supplementation with Antioxidant Vitamins and Minerals (SU.VI.MAX) Study (1994-2002) indicated that antioxidant supplements were associated with a “greater healthy aging probability” among men, but not women. The double-blind, placebo-controlled SU.VI.MAX study involved long term supplementation with vitamin C (120 mg), beta-carotene (6 mg), vitamin E (30 mg), selenium (100 ug), and zinc (20 mg).\r\n\r\n<em>“To the best of our knowledge, our study is the first to investigate the relationship between antioxidant supplements and a multidimensional measure of healthy aging,”</em> wrote the researchers, led by Karen Assmann from the Université Paris 13 in France.\r\n\r\n<em>“Our stratified analyses indicate that, while an overall beneficial association of a supplementation with combined antioxidant vitamins and minerals at moderate doses may not exist, specific subpopulations could benefit from antioxidant treatment. Yet, our subgroup analyses were of exploratory nature and thus have to be interpreted with caution. To verify our findings, further randomized controlled trials targeting populations at risk with a low baseline antioxidant status would be needed. According to our data, men may be such an ‘at risk’ group.”</em>\r\n\r\n<p style=\"text-align: center;\">\r\n<a class=\"buttonlink\" href=\"/Contact\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Oxidative stress and aging</strong>\r\nWhile oxidative stress has been a focus for the underlying biological mechanisms of aging and declines in health as we age, intervention trials using dietary supplements have often yielded conflicting results.\r\nThe medical community and the mainstream media are often quick to cite a controversial meta-analyses by Bjelakovic <em>et al</em>. in the <em>Journal of the American Medical Association</em> (2007, Vol. 297, pp. 842-857) which concluded that vitamins A and E, and beta-carotene may increase mortality risk by up to 16%.\r\n\r\nHowever, that data was re-analyzed by a team of internationally renowned antioxidant scientists in 2010 which arrived at a different set of conclusions. This re-analysis, published in <em><a href=\"http://www.nutraingredients-usa.com/Research/Antioxidants-don-t-boost-mortality-risk-says-meta-analysis-re-analysis\" target=\"_blank\" rel=\"noopener noreferrer\">Nutrients</a></em>, found that 36% of the trials showed a positive outcome or that the antioxidant supplements were beneficial, 60% had a null outcome, while only 4% found negative outcome.\r\n\r\nThere are also several meta-analyses of RCTs that contrast with the work done by Bjelakovic et al., which found no effect on all-cause mortality for vitamin E supplements, including Berry et al (<em>Clin Trials</em> 2009, Vol. 6, pp. 28-41), Abner et al, (<em>Curr Aging</em> Sci 2011, Vol. 4, pp. 158-170), Curtis et al, (<em>Cardiovasc Drugs Ther</em>, 2014, Vol. 28, pp. 563-573), and Jiang et al (<em>J Nutr Sci Vitaminol</em>, 2014, Vol. 60, pp. 194-205).\r\n\r\nIt should also be noted that the 10-year PHS II RCT did not find any adverse outcomes for vitamin E (Wang et al., <em>Am J Clin Nutr</em> 2014, Vol. 100, pp. 915-23).\r\n\r\nOn the positive side, data from the European Prospective Investigation into Cancer and Nutrition (EPIC) study published in 2012 also indicated that users of antioxidant vitamin supplements may be associated with a 48% reduction in the risk of cancer mortality and a 42% reduction in the risk of ‘all-cause mortality’ over 11 years of study (<em><a href=\"http://link.springer.com/article/10.1007%2Fs00394-011-0224-1\" target=\"_blank\" rel=\"noopener noreferrer\">European Journal of Nutrition</a>, Vol. 51, pp 407-413</em>).\r\n\r\n<strong>New data</strong>\r\nData from the SU.VI.MAX study adds to the body of literature around this subject, finding that, for the whole study population of 3,966 participants with a mean age of 65.3, no significant benefits were observed.\r\n\r\nNo significant benefits were observed for women, either, said Assmann and her co-workers.\r\n\r\nFor men, however, antioxidant supplementation was associated with a higher probability of healthy aging, they said.\r\n\r\nOther subgroups also exhibited beneficial effects from the supplements: In men and women with low vitamin C levels at the start of the study; in men with low zinc levels at the start of the study; and in men with low fruit and vegetable intakes at the start of the study (fewer than five portions per day).\r\n\r\n<em>“The effect of supplementation appeared to be stronger among women with low vitamin C concentrations than among men with low serum vitamin C,”</em> they wrote. <em>“Yet, as only few women had vitamin C concentrations below the 25th percentile, statistical power was low, and no significant results were observed. It is possible that the sex specificity of our findings is partly explained by sex differences in the prevalence of low baseline vitamin C concentrations in our sample; that is, if as many women as men in our sample would have had low vitamin C concentrations at baseline, there may have been a more pronounced overall effect of supplementation among women. However, there may be additional underlying factors.”</em>\r\n\r\n<em>“Altogether, our results support the importance of a well-balanced intake of antioxidant nutrients at nutritional doses (as can be supplied by a diversified and adequate fruit and vegetable intake) for preserving overall health in the course of aging.”</em>\r\nSource: <em><a href=\"http://aje.oxfordjournals.org/content/early/2015/09/15/aje.kwv105.abstract\" target=\"_blank\" rel=\"noopener noreferrer\">American Journal of Epidemiology</a></em><br>\r\nPublished online ahead of print, doi: 10.1093/aje/kwv105<br>\r\n<em>\r\n“Healthy Aging 5 Years After a Period of Daily Supplementation With Antioxidant Nutrients: A Post Hoc Analysis of the French Randomized Trial SU.VI.MAX”</em><br>\r\nAuthors: K.E. Assmann, V.A. Andreeva, C. Jeandel, S. Hercberg, P. Galan, E. Kesse-Guyot\r\n<a href=\"http://www.nutraingredients-usa.com/Research/An-adequate-supply-of-antioxidant-nutrients-may-have-a-beneficial-role-for-healthy-aging-says-study\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.nutraingredients-usa.com/Research/An-adequate-supply-of-antioxidant-nutrients-may-have-a-beneficial-role-for-healthy-aging-says-study</a>\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">Schedule Your Appointment Today!</a>\r\n','An adequate supply of antioxidant nutrients','','publish','open','closed','','an-adequate-supply-of-antioxidant-nutrients','','','2019-06-12 16:45:48','2019-06-12 16:45:48','',0,'https://www.drfields.com/?p=1469',0,'post','',0),(1470,8,'2019-06-12 16:45:48','2019-06-12 16:45:48','<h4>‘An adequate supply of antioxidant nutrients may have a beneficial role for healthy aging’, says study</h4>\r\n    \r\n	By Stephen DANIELLS 24-Sep-2015\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Antioxidants.jpg\" alt=\"Antioxidants\" width=\"200\" height=\"301\" class=\"alignright size-full wp-image-1107\" />\r\n<strong>Specific sub-populations may benefit from antioxidant intakes to support healthy aging, with men particularly seen as an ‘at-risk’ group, says a new paper published in the <em><a href=\"http://aje.oxfordjournals.org/content/early/2015/09/15/aje.kwv105.abstract\" target=\"_blank\" rel=\"noopener noreferrer\">American Journal of Epidemiology</a></em>.</strong>\r\n\r\nData from the Supplementation with Antioxidant Vitamins and Minerals (SU.VI.MAX) Study (1994-2002) indicated that antioxidant supplements were associated with a “greater healthy aging probability” among men, but not women. The double-blind, placebo-controlled SU.VI.MAX study involved long term supplementation with vitamin C (120 mg), beta-carotene (6 mg), vitamin E (30 mg), selenium (100 ug), and zinc (20 mg).\r\n\r\n<em>“To the best of our knowledge, our study is the first to investigate the relationship between antioxidant supplements and a multidimensional measure of healthy aging,”</em> wrote the researchers, led by Karen Assmann from the Université Paris 13 in France.\r\n\r\n<em>“Our stratified analyses indicate that, while an overall beneficial association of a supplementation with combined antioxidant vitamins and minerals at moderate doses may not exist, specific subpopulations could benefit from antioxidant treatment. Yet, our subgroup analyses were of exploratory nature and thus have to be interpreted with caution. To verify our findings, further randomized controlled trials targeting populations at risk with a low baseline antioxidant status would be needed. According to our data, men may be such an ‘at risk’ group.”</em>\r\n\r\n<p style=\"text-align: center;\">\r\n<a class=\"buttonlink\" href=\"/Contact\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Oxidative stress and aging</strong>\r\nWhile oxidative stress has been a focus for the underlying biological mechanisms of aging and declines in health as we age, intervention trials using dietary supplements have often yielded conflicting results.\r\nThe medical community and the mainstream media are often quick to cite a controversial meta-analyses by Bjelakovic <em>et al</em>. in the <em>Journal of the American Medical Association</em> (2007, Vol. 297, pp. 842-857) which concluded that vitamins A and E, and beta-carotene may increase mortality risk by up to 16%.\r\n\r\nHowever, that data was re-analyzed by a team of internationally renowned antioxidant scientists in 2010 which arrived at a different set of conclusions. This re-analysis, published in <em><a href=\"http://www.nutraingredients-usa.com/Research/Antioxidants-don-t-boost-mortality-risk-says-meta-analysis-re-analysis\" target=\"_blank\" rel=\"noopener noreferrer\">Nutrients</a></em>, found that 36% of the trials showed a positive outcome or that the antioxidant supplements were beneficial, 60% had a null outcome, while only 4% found negative outcome.\r\n\r\nThere are also several meta-analyses of RCTs that contrast with the work done by Bjelakovic et al., which found no effect on all-cause mortality for vitamin E supplements, including Berry et al (<em>Clin Trials</em> 2009, Vol. 6, pp. 28-41), Abner et al, (<em>Curr Aging</em> Sci 2011, Vol. 4, pp. 158-170), Curtis et al, (<em>Cardiovasc Drugs Ther</em>, 2014, Vol. 28, pp. 563-573), and Jiang et al (<em>J Nutr Sci Vitaminol</em>, 2014, Vol. 60, pp. 194-205).\r\n\r\nIt should also be noted that the 10-year PHS II RCT did not find any adverse outcomes for vitamin E (Wang et al., <em>Am J Clin Nutr</em> 2014, Vol. 100, pp. 915-23).\r\n\r\nOn the positive side, data from the European Prospective Investigation into Cancer and Nutrition (EPIC) study published in 2012 also indicated that users of antioxidant vitamin supplements may be associated with a 48% reduction in the risk of cancer mortality and a 42% reduction in the risk of ‘all-cause mortality’ over 11 years of study (<em><a href=\"http://link.springer.com/article/10.1007%2Fs00394-011-0224-1\" target=\"_blank\" rel=\"noopener noreferrer\">European Journal of Nutrition</a>, Vol. 51, pp 407-413</em>).\r\n\r\n<strong>New data</strong>\r\nData from the SU.VI.MAX study adds to the body of literature around this subject, finding that, for the whole study population of 3,966 participants with a mean age of 65.3, no significant benefits were observed.\r\n\r\nNo significant benefits were observed for women, either, said Assmann and her co-workers.\r\n\r\nFor men, however, antioxidant supplementation was associated with a higher probability of healthy aging, they said.\r\n\r\nOther subgroups also exhibited beneficial effects from the supplements: In men and women with low vitamin C levels at the start of the study; in men with low zinc levels at the start of the study; and in men with low fruit and vegetable intakes at the start of the study (fewer than five portions per day).\r\n\r\n<em>“The effect of supplementation appeared to be stronger among women with low vitamin C concentrations than among men with low serum vitamin C,”</em> they wrote. <em>“Yet, as only few women had vitamin C concentrations below the 25th percentile, statistical power was low, and no significant results were observed. It is possible that the sex specificity of our findings is partly explained by sex differences in the prevalence of low baseline vitamin C concentrations in our sample; that is, if as many women as men in our sample would have had low vitamin C concentrations at baseline, there may have been a more pronounced overall effect of supplementation among women. However, there may be additional underlying factors.”</em>\r\n\r\n<em>“Altogether, our results support the importance of a well-balanced intake of antioxidant nutrients at nutritional doses (as can be supplied by a diversified and adequate fruit and vegetable intake) for preserving overall health in the course of aging.”</em>\r\nSource: <em><a href=\"http://aje.oxfordjournals.org/content/early/2015/09/15/aje.kwv105.abstract\" target=\"_blank\" rel=\"noopener noreferrer\">American Journal of Epidemiology</a></em><br>\r\nPublished online ahead of print, doi: 10.1093/aje/kwv105<br>\r\n<em>\r\n“Healthy Aging 5 Years After a Period of Daily Supplementation With Antioxidant Nutrients: A Post Hoc Analysis of the French Randomized Trial SU.VI.MAX”</em><br>\r\nAuthors: K.E. Assmann, V.A. Andreeva, C. Jeandel, S. Hercberg, P. Galan, E. Kesse-Guyot\r\n<a href=\"http://www.nutraingredients-usa.com/Research/An-adequate-supply-of-antioxidant-nutrients-may-have-a-beneficial-role-for-healthy-aging-says-study\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.nutraingredients-usa.com/Research/An-adequate-supply-of-antioxidant-nutrients-may-have-a-beneficial-role-for-healthy-aging-says-study</a>\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">Schedule Your Appointment Today!</a>\r\n','An adequate supply of antioxidant nutrients','','inherit','closed','closed','','1469-revision-v1','','','2019-06-12 16:45:48','2019-06-12 16:45:48','',1469,'https://www.drfields.com/uncategorized/1469-revision-v1/',0,'revision','',0),(1471,8,'2022-07-02 13:15:57','2022-07-02 13:15:57','<h4>Lecture in Mexico City on July 9th about Stem Cells/PRP/Prolotherapy</h4>\r\n<img class=\"wp-image-5147 size-medium alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Copy-of-Mexico-City-Lecture-2-500x419.png\" alt=\"Copy Of Mexico City Lecture 2\" width=\"500\" height=\"419\" />\r\n\r\nPeter A. Fields, MD, DC, will lecture in Mexico City at the 14th World Congress on Anti-Aging and Longevity Medicine on July 9th.\r\n\r\nLecture time: <strong>11:00 AM</strong>\r\n\r\nEmail pcc@drfields.com for more information.\r\n<h4>Regenerative Medicine Teaching in Mexico</h4>\r\nWe\'re excited to teach more professionals about this effective treatment to fix joints and the spine without surgery. <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cells</a>, PRP, and Prolotherapy are all effective regenerative medicine treatments that help people with joint and spine pain to achieve both relief and repair.\r\n\r\nTo access the information for the conference you can <a href=\"http://www.medicina-antienvejecimiento.net/\">click</a> on the following link. <a href=\"https://urldefense.proofpoint.com/v2/url?u=http-3A__www.medicina-2Dantienvejecimiento.net_&amp;d=DwMCaQ&amp;c=WO-RGvefibhHBZq3fL85hQ&amp;r=1mlZdwzxLMndjoil0MO5evkLwBowWYcXVyCp4Vbxfds&amp;m=-Zcix8_Tm618JjCVm5ExeqsI0cYP75-OIrRKIfbDyJL_F3-gD7ZpIucCH6k9b3dQ&amp;s=HPDad0dRWasD0G4qNd1wGul0XoVhEbEukb3zY8ki5Go&amp;e=\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">www.medicina-antienvejecimiento.net/</a>\r\n\r\n[caption id=\"attachment_5146\" align=\"alignnone\" width=\"500\"]<img class=\"wp-image-5146 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/14th-World-Congress-on-Anti-Aging-and-Longevity-Medicine-500x239.png\" alt=\"14th World Congress On Anti Aging And Longevity Medicine\" width=\"500\" height=\"239\" /> <strong>     14th World Congress On Anti-Aging And Longevity Medicine</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Dr. Fields to Lecture in Mexico City on July 9th','','publish','open','closed','','dr-fields-to-lecture-in-mexico-city-on-july-9th','','','2022-08-22 20:11:35','2022-08-22 20:11:35','',0,'https://www.drfields.com/?p=1471',0,'post','',0),(1472,8,'2019-06-12 16:46:57','2019-06-12 16:46:57','<h4>Regenerative Orthopedics: Non-Surgical Repair with Cellular Regeneration/PRP/Prolotherapy</h4>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignleft size-full wp-image-955\" />Peter A. Fields, MD, DC lectured at the American Association of Anti-Aging and Regenerative Medicine in Hollywood, Florida on <strong>Saturday, May 21, 2016</strong>\r\n\r\nLecture time: <strong>1:30pm</strong>\r\n\r\nSee below link for details:\r\n\r\n<a href=\"a4mwc.com/conference-agenda/\" target=\"_blank\" rel=\"noopener noreferrer\">http://a4mwc.com/conference-agenda/</a>\r\n\r\n\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/A4M-Lecture-Las-Vegas.jpg\" alt=\"A4m Lecture Las Vegas\" width=\"450\" height=\"224\" class=\"aligncenter size-full wp-image-1103\" />\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n</div>\r\n</div>','A4M Conference Florida 2016','','inherit','closed','closed','','1471-revision-v1','','','2019-06-12 16:46:57','2019-06-12 16:46:57','',1471,'https://www.drfields.com/uncategorized/1471-revision-v1/',0,'revision','',0),(1473,8,'2019-06-12 16:51:28','2019-06-12 16:51:28','<h3>A Wonderful Ending to An Almost Disastrous Event</h3>\r\nIn this article, printed in the <a href=\"https://www.smdp.com\">Santa Monica Daily Press</a>, Peter A. Fields, MD, DC tells the story of an event that could have ended up disastrous. The situation took place while Dr. Fields was swimming at the Santa Monica College pool.\r\n\r\nThe combination of being a strong swimmer, having the training of a water safety instructor, and being a doctor, came in handy and resulted in the saving of another swimmer\'s life.\r\n\r\nPlease take a look at the full article below.\r\n\r\n&nbsp;\r\n<div class=\"col-md-12\">\r\n\r\n[caption id=\"attachment_1115\" align=\"alignleft\" width=\"626\"]<img class=\"wp-image-1115 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Santa-Monica-Daily-Press-Article-2.jpg\" alt=\"A Wonderful Ending to a Most Disastrous Event\" width=\"626\" height=\"1999\" /> A Wonderful Ending to a Most Disastrous Event[/caption]\r\n\r\n[caption id=\"attachment_955\" align=\"alignright\" width=\"220\"]<img class=\"wp-image-955 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Drfields Bio Img\" width=\"220\" height=\"352\" /> Dr. Fields[/caption]\r\n\r\n</div>\r\n<img class=\"alignleft size-full wp-image-1116\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1-small.jpg\" alt=\"Stem Cell1 Small\" width=\"62\" height=\"62\" />\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.drfields.com/stem-cell-treatment/\">Stem Cell Prolotherapy</a>\r\n\r\nRegenerating one’s joints and spine is not in the future: it is happening today!…\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3><em>Need Relief from painful joints?</em></h3>\r\n<em>If you are experiencing painful joints, Peter A. Fields, MD, DC and his staff are ready to help get you back to doing what you love, and doing it pain-free. </em>\r\n\r\n<em>Although many treatments may offer temporary pain relief for arthritis and other painful joint conditions, it is important to find a treatment that does more than chase the symptoms and one that actually repairs the injured soft tissue in order to restore normal motion to the knee joint. </em>\r\n\r\n<em>Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy which are effective therapies for repair and restoration of motion. These treatments stimulate healing of ligaments, tendons, and restore the normal functioning of the joint, thus preventing the arthritic progression.</em>\r\n\r\nCall us today at <span class=\"wsm_phone\"><a title=\"phone\" href=\"tel:+310-453-1234\">310-453-1234</a>.</span>','A wonderful ending to an almost disastrous event','','publish','open','closed','','a-wonderful-ending-to-an-almost-disastrous-event','','','2022-12-02 06:38:49','2022-12-02 06:38:49','',0,'https://www.drfields.com/?p=1473',0,'post','',0),(1474,8,'2019-06-12 16:51:28','2019-06-12 16:51:28','<div class=\"col-md-12\">\r\n<img class=\"alignleft size-full wp-image-1115\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Santa-Monica-Daily-Press-Article-2.jpg\" alt=\"Santa Monica Daily Press Article 2\" width=\"650\" height=\"2079\" />\r\n\r\n[caption id=\"attachment_955\" align=\"alignright\" width=\"160\"]<img class=\"size-full wp-image-955\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" /> Peter A. Fields MD DC<br />The Athletic Doc®[/caption]\r\n</div>\r\n\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1-small.jpg\" alt=\"Stem Cell1 Small\" width=\"62\" height=\"62\" class=\"alignleft size-full wp-image-1116\" /><a href=\"https://www.drfields.com/stem-cell-treatment/\">Stem Cell Prolotherapy</a>\r\n\r\nRegenerating one’s joints and spine is not in the future: it is happening today!…\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n','A wonderful ending to an almost disastrous event','','inherit','closed','closed','','1473-revision-v1','','','2019-06-12 16:51:28','2019-06-12 16:51:28','',1473,'https://www.drfields.com/uncategorized/1473-revision-v1/',0,'revision','',0),(1475,8,'2019-06-12 16:53:04','2019-06-12 16:53:04','<h3>Needles, Not Knives, to Treat Sports Injuries and Degeneration</h3>\r\n<em>By Nancy Deville</em>\r\n\r\n[caption id=\"attachment_4403\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4403\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Nancy-Deville-with-Dr.-Peter-Fields-500x423.png\" alt=\"Needles Not Knives\" width=\"500\" height=\"423\" /> <strong>                                            Needles Not Knives</strong>[/caption]\r\n\r\nMy first pair of running shoes were men’s shoes because they didn’t make them for women in 1974. That’s how many years I’ve been pounding away at my joints. The first sign of wear began around 1994. On the urging of an orthopedic surgeon, I quit running and started hiking and yoga. Unfortunately, the damage had already been done.\r\n\r\nThough I’ve had both of my rotator cuffs worked on after trashing them doing Ashtanga, I don’t want knee or hip replacements. Call me vain, but I want to be able to do a full lotus for the duration.\r\n\r\nFortunately, for me and millions of boomers like me who have been athletic our entire adult lives, we now have <strong>regenerative medicine</strong> to turn to rather than cortisone injections, which merely provide temporary relief (and can ultimately cause more damage), or joint replacement, the extreme fix.\r\n\r\nThere are several modalities of regenerative medicine, a system of medicine that employs your body to heal itself.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h3>Prolotherapy Is the Most Common Type of Regenerative Medicine</h3>\r\nThe most common (and least expensive) of regenerative medicine is prolotherapy, which involves injecting a mild irritant such as dextrose, along with tapping the damaged area with the needle. The irritant combination causes an inflammatory response, which stimulates the immune system to rush in and begin healing whatever particular damage you have.\r\n<h3>Platelet Rich Plasma: A Bigger Gun</h3>\r\nIf your injury or degeneration requires a bigger gun, the next step is Platelet Rich Plasma (PRP), which is essentially your own blood. Your blood is drawn and spun down to filter out the platelets. These concentrated platelets are injected into the area to be treated. Blood platelets contain potent growth factors that begin the repair naturally.\r\n<h3>My Prolotherapy Treatment Path</h3>\r\nMy first doctor was Allen Thomashefsky, a former Iron Man triathlete, who practices in Santa Barbara and Ashland, California. I had gotten to the point, after 20 years of running followed by 15 years of serious hiking, that I was hobbling around on painful feet. I had seriously begun to question whether I would be able even to walk around normally, my feet were so painful. Prolotherapy injections put me back on the hiking trail (okay, the injections hurt, but no pain no gain).\r\n\r\nIn addition to sports, I am a lifelong knitter. I found myself waking up with hands like claws, an attractive image, I know. But beyond the aesthetics, I wanted the use of my hands back. Dr. Tom injected every single one of my knuckles. It was like magic.\r\n\r\nRecently, I’ve taken up bushwhacking in Daniel Boone National Forest in the Appalachian foothills. I was seriously handicapped by a knee that had begun deteriorating from my 20 years of running. Living in LA now, I went to Dr. Peter Fields (pictured here with me), who is one of a few physicians in the US who has both medical and chiropractic degrees. He’s an active Iron Man triathlete and, like Dr. Tom, a wizard in regenerative medicine. <strong>A mere two sessions of prolotherapy and my last hike was pain-free.</strong>\r\n\r\nBoomers have a long history of trailblazing. As I said, women didn’t run before 1974. Exploring the boundaries of human endurance has opened up new horizons for subsequent generations. But when it comes to joint damage, our fitness model came with a price tag. And speaking of price, regenerative medicine is not paid for by insurance companies or Medicare. They will replace a knee or hip at astronomical costs, but they will not pay a fraction of those costs for your body to heal itself. I believe they will wake up, eventually. For now, I would rather have brand new cartilage in my knee that my body made itself than have a new outfit. My body has always been my priority.1\r\n\r\nRead the original article in <a href=\"https://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration\">The Three Tomatoes by Nancy Deville</a>\r\n\r\n<a href=\"http://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration\" target=\"_blank\" rel=\"noopener noreferrer\">1 http://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration</a>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Needles, Not Knives, To Treat Sports Injuries And Degeneration','','publish','open','closed','','needles-not-knives-to-treat-sports-injuries-and-degeneration','','','2021-01-21 00:03:23','2021-01-21 00:03:23','',0,'https://www.drfields.com/?p=1475',0,'post','',0),(1476,8,'2019-06-12 16:53:04','2019-06-12 16:53:04','BY HEALTH EXPERTS, SEPTEMBER 15, 2015\r\n\r\nBy Nancy Deville\r\n\r\nNeedles, Not Knives, to Treat Sports Injuries and Degeneration, nancy deville, the three tomatoes\r\nMy first pair of running shoes were men’s shoes because they didn’t make them for women in 1974. That’s how many years I’ve been pounding away at my joints. The first sign of wear began around 1994. On the urging of an orthopedic surgeon, I quit running and started hiking and yoga. Unfortunately, the damage had already been done.\r\n\r\nThough I’ve had both of my rotator cuffs worked on after trashing them doing Ashtanga, I don’t want knee or hip replacements. Call me vain, but I want to be able to do a full lotus for the duration.\r\n\r\nFortunately, for me and millions of boomers like me who have been athletic our entire adult lives, we now have regenerative medicine to turn to rather than cortisone injections, which merely provide temporary relief (and can ultimately cause more damage), or joint replacement, the extreme fix.\r\n\r\nThere are several modalities of regenerative medicine, a system of medicine that employs your body to heal itself.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\nThe most common (and least expensive) of regenerative medicine is prolotherapy, which involves injecting a mild irritant such as dextrose, along with tapping the damaged area with the needle. The irritant combination causes an inflammatory response, which stimulates the immune system to rush in and begin healing whatever particular damage you have.\r\n\r\nIf your injury or degeneration requires a bigger gun, the next step is Platelet Rich Plasma (PRP), which is essentially your own blood. Your blood is drawn and spun down to filter out the platelets. These concentrated platelets are injected into the area to be treated. Blood platelets contain potent growth factors that begin the repair naturally.\r\n\r\nMy first doctor was Allen Thomashefsky, a former Iron Man triathlete, who practices in Santa Barbara and Ashland, California. I had gotten to the point, after 20 years of running followed by 15 years of serious hiking, that I was hobbling around on painful feet. I had seriously begun to question whether I would be able to even walk around normally, my feet were so painful. Injections of prolotherapy put me back on the hiking trail (okay, the injections hurt, but no pain no gain).\r\n\r\nIn addition to sports, I am a lifelong knitter. I found myself waking up with hands like claws, an attractive image, I know. But beyond the aesthetics, I wanted the use of my hands back. Dr. Tom injected every single one of my knuckles. It was like magic.\r\n\r\nRecently, I’ve taken up bushwhacking in Daniel Boone National Forest in the Appalachian foothills. I was seriously handicapped by a knee that had begun deteriorating from my 20 years of running. Living in LA now, I went to Dr. Peter Fields, (pictured here with me) who is one of a few physicians in the US who has both medical and chiropractic degrees. He’s an active Iron Man triathlete and, like Dr. Tom, a wizard in regenerative medicine. A mere two sessions of prolotherapy and my last hike was pain free.\r\n\r\nBoomers have a long history of trail blazing. Like I said, women didn’t run before 1974. Exploring the boundaries of human endurance has opened up new horizons for subsequent generations. But when it comes to joint damage, our fitness model came with a price tag. And speaking of price, regenerative medicine is not paid for by insurance companies or Medicare. They will replace a knee or hip, at astronomical costs, but they will not pay a fraction of those costs for your body to heal itself. I believe they will wake up, eventually. For now, I would rather have brand new cartilage in my knee that my body made itself, than have a new outfit. My body has always been my priority.\r\n\r\n<a href=\"http://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration\" target=\"_blank\" rel=\"noopener noreferrer\">http://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration</a>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Needles, Not Knives, To Treat Sports Injuries And Degeneration','','inherit','closed','closed','','1475-revision-v1','','','2019-06-12 16:53:04','2019-06-12 16:53:04','',1475,'https://www.drfields.com/uncategorized/1475-revision-v1/',0,'revision','',0),(1480,8,'2019-06-13 06:06:14','2019-06-13 06:06:14','<h2>Knee And Hip Replacements Increase Heart Attack Risk</h2>\r\n<img class=\"wp-image-4894 size-medium alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/heart-attack-1-359x500.png\" alt=\"Heart Attack (1)\" width=\"359\" height=\"500\" />\r\n\r\nOver 27 million Americans suffer from osteoarthritis (OA),  a chronic degenerative disease of the joints. And when the pain gets unbearable, many people opt to have joint replacement surgery. Surgery is a common go-to, especially considering how often it is recommended.  But remember, all surgery has risks! And knee and hip replacements increase heart attack risk.\r\n\r\nIn this article, we\'ll take a look at a few studies and the conclusions the researchers came to. Interestingly, in one of the studies, the researchers were trying to prove that knee and hip replacement surgery decrease heart attack risk. However, the results showed that overall risks were substantially increased in both the total knee and total hip groups.\r\n<h3>What Is the Reason for the Elevated Risk?</h3>\r\n\'The reason for the elevated risks is unclear at this point\", said senior author Yuqing Zhang of Boston University School of Medicine. Regardless, he said, the findings suggest that the risk of a heart attack in the weeks after total <a href=\"/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">joint replacement surgery</a> “may have been previously underappreciated,” and ways to prevent this serious complication may need to be considered.\r\n\r\nZhang and colleagues studied roughly 40,000 patients age 50 or older, all with osteoarthritis. They compared 13,849 patients who underwent total knee replacement to 13,849 closely matched people who did not have surgery. They also compared about 6,000 patients who had hip replacement surgery to 6,000 who did not.\r\n\r\nWithin a month after the operations, there were 35 heart attacks among knee replacement patients, compared to four in the control group. In that same period, there were 13 heart attacks in the hip replacement group vs three in the control group.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nHeart attack risk was highest in that first month following surgery and declined again over time, the authors reported in Arthritis &amp; Rheumatology. By three years after the operations, heart attack rates had evened out for the surgery groups and the control groups.\r\n<h3>Blood Clot Risk with Joint Replacement</h3>\r\nAs for a type of blood clot known as venous thromboembolism, the knee replacement patients had 190 in the first month, compared to three in the control group. The hip surgery patients had 78; the control group had just one. So that is a significant rate of blood clots.\r\n\r\n<img class=\"alignright size-full wp-image-1125\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-illustration-200.jpg\" alt=\"Knee Illustration 200\" width=\"200\" height=\"266\" />Five years later, the odds of having venous thromboembolism were still significantly higher in the surgery groups\r\n\r\nIndeed, Zhang said, the health risks and benefits of joint replacement surgery remain complicated. And this study’s findings cannot quantify them for an individual patient.\r\n<h3>Increased Risk of Atrial Fibrillation (AF)</h3>\r\nA 2021 study in the medical journal Gerontology showed an increased risk of atrial fibrillation, a common heart arrhythmia, after knee and hip replacement surgery. They studied 280 patients compared to a group of 280 control patients with no AF. New-onset AF was defined as AF demonstrated postoperatively in patients with no previous clinical history of atrial fibrillation. One-year mortality in elderly patients undergoing total knee or total hip replacement is significantly increased in the patients that develop new postoperative atrial fibrillation.2\r\n\r\nClinical consequences of AF include decreased cardiac output and risk of thromboembolism, and the presence of AF is associated with increased mortality. AF has also been associated with an increased 30-day mortality rate (6.4%) after noncardiac surgery.\r\n<ol>\r\n 	<li>SOURCE: <a href=\"http://bit.ly/1NIXl8o\" target=\"_blank\" rel=\"noopener noreferrer\">http://bit.ly/1NIXl8o</a> Arthritis &amp; Rheumatology, online August 31, 2015.</li>\r\n</ol>\r\n2. Varon, Ben, et al. \"New-Onset Perioperative Atrial Fibrillation Is Associated with Increased All-Cause Mortality in Elderly Patients Undergoing Total Knee   and Hip Replacements.\" <i>Gerontology</i> (2021): 1-6.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee And Hip Replacements Increase Heart Attack Risk','','publish','open','closed','','knee-and-hip-replacements-increase-heart-attack-risk','','','2021-09-25 22:46:04','2021-09-25 22:46:04','',0,'https://www.drfields.com/?p=1480',0,'post','',0),(1481,8,'2019-06-13 06:06:14','2019-06-13 06:06:14','REUTERS\r\n<em>By Kathryn Doyle August 31, 2015</em>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/man-heart-attack-200.jpg\" alt=\"Man Heart Attack 200\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-1123\" />(Reuters Health) - Operations to replace a knee or a hip appear to increase heart attack risk in the short term and the risk of blood clots in the long term, according to a new study.\r\n\r\nThe heart attack risk falls again over time, but blood clot risk is still elevated years later, the researchers found.\r\n\r\nThe reason for the elevated risks is unclear at this point, said senior author Yuqing Zhang of Boston University School of Medicine in email to Reuters Health.\r\n\r\nRegardless, he said, the findings suggest that the risk of a heart attack in the weeks after total <a href=\"/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">joint replacement surgery</a> “may have been previously underappreciated,” and ways to prevent this serious complication may need to be considered.\r\n\r\nZhang and colleagues studied roughly 40,000 patients age 50 or older, all with osteoarthritis. They compared 13,849 patients who underwent total knee replacement to 13,849 closely matched people who did not have surgery. They also compared about 6,000 patients who had hip replacement surgery to 6,000 who did not.\r\n\r\nWithin a month after the operations, there were 35 heart attacks among knee replacement patients, compared to four in the control group. In that same period, there were 13 heart attacks in the hip replacement group vs three in the control group.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nHeart attack risk was highest in that first month following surgery and declined again over time, the authors reported in Arthritis &amp; Rheumatology. By three years after the operations, heart attack rates had evened out for the surgery groups and the control groups.\r\n\r\nAs for a type of blood clot known as a venous thromboembolism, the knee replacement patients had 190 in the first month, compared to three in the control group. The hip surgery patients had 78; the control group had just one.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-illustration-200.jpg\" alt=\"Knee Illustration 200\" width=\"200\" height=\"266\" class=\"alignright size-full wp-image-1125\" />Five years later, the odds of having a venous thromboembolism were still significantly higher in the surgery groups.\r\n\r\nDr. Frank de Vries of Maastricht University Medical Center in The Netherlands told Reuters Health by email that the excess risk may have appeared to stay high because some of the patients in this study would likely have required further surgeries on the affected joint or elsewhere, though that was not accounted for in the analysis.\r\n\r\nA previous study had suggested that joint replacement may actually decrease heart risk in the long run and help protect the cardiovascular system.\r\n\r\nIn that earlier study, the researchers analyzed not just heart attacks but also strokes and coronary revascularization, and they took arthritis severity into account, Dr. Bheeshma Ravi of the University of Toronto told Reuters Health by email.\r\n\r\nThe new study does not negate the previous findings, said Ravi, who worked on the earlier study.\r\n\r\nde Vries, who wasn’t involved in the new study, said orthopedic surgeons need to discuss the risk of heart attack with their patients well before the surgery.\r\n\r\nIndeed, Zhang said, the health risks and benefits of joint replacement surgery remain complicated and this study’s findings cannot quantify them for an individual patient.\r\n\r\nSOURCE: <a href=\"http://bit.ly/1NIXl8o\" target=\"_blank\" rel=\"noopener noreferrer\">http://bit.ly/1NIXl8o</a> Arthritis &amp; Rheumatology, online August 31, 2015.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Knee And Hip Replacements Increase Heart Attack Risk Briefly','','inherit','closed','closed','','1480-revision-v1','','','2019-06-13 06:06:14','2019-06-13 06:06:14','',1480,'https://www.drfields.com/uncategorized/1480-revision-v1/',0,'revision','',0),(1482,8,'2019-06-13 06:07:50','2019-06-13 06:07:50','<div id=\"dnn_ctr610_ModuleContent\" class=\"DNNModuleContent ModDNNHTMLC\">\r\n<div id=\"dnn_ctr610_HtmlModule_lblContent\" class=\"Normal\">\r\n\r\nMany Americans, including some vegetarians, still consume substantial amounts of dairy products—and government policies still promote them—despite scientific evidence that questions their health benefits and indicates their potential health risks.\r\n\r\n<strong>Osteoporosis</strong>\r\nMilk’s main selling point is calcium, and milk-drinking is touted for building strong bones in children and preventing osteoporosis in older persons. However, clinical research shows that dairy products have little or no benefit for bones. A 2005 review published in Pediatrics showed that milk consumption does not improve bone integrity in children.<sup>1</sup> Similarly, the Harvard Nurses’ Health Study,<sup>2</sup> which followed more than 72,000 women for 18 years, showed no protective effect of increased milk consumption on fracture risk. While calcium is important for bone health, studies show that increasing consumption beyond approximately 600 mg per day—amounts that are easily achieved without dairy products or calcium supplements—does not improve bone integrity.<sup>2</sup>\r\n\r\nIn studies of children and adults, exercise has been found to have a major effect on bone density.<sup>3-5</sup> You can decrease your risk of osteoporosis by reducing sodium and animal protein intake in the diet,<sup>6-9</sup> increasing intake of fruits and vegetables,<sup>9,10</sup> exercising,<sup>4,11</sup> and ensuring adequate calcium intake from plant foods such as kale, broccoli, and other leafy green vegetables and beans. You can also use calcium-fortified products such as breakfast cereals and juices, although these products provide more concentrated calcium than is necessary.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Fat Content and Cardiovascular Disease</strong>\r\nDairy products—including cheese, ice cream, milk, butter, and yogurt—contribute significant amounts of cholesterol and saturated fat to the diet.<sup>12</sup> Diets high in fat and saturated fat can increase the risk of heart disease, among other serious health problems. A low-fat vegetarian diet that eliminates dairy products, in combination with exercise, smoking cessation, and stress management, can not only prevent heart disease, but may also reverse it.<sup>13,14</sup> Non-fat dairy products are available; however, they pose other health risks as noted below.\r\n\r\n<strong>Cancer</strong>\r\nProstate and breast cancers have been linked to consumption of dairy products, presumably related to increases in a compound called insulin-like growth factor (IGF-I).<sup>15</sup> IGF-I is found in cow’s milk and has been shown to occur in increased levels in the blood of individuals consuming dairy products on a regular basis.<sup>16</sup> Other nutrients that increase IGF-I are also found in cow’s milk.\r\n\r\nCase-control studies in diverse populations have shown a strong and consistent association between serum IGF-I concentrations and prostate cancer risk.<sup>17</sup> One study showed that men who had the highest levels of IGF-I had more than four times the risk of prostate cancer compared with those who had the lowest levels.<sup>18</sup> Other findings show that prostate cancer risk was elevated with increased consumption of low-fat milk, suggesting that too much dairy calcium could be a potential threat to prostate health.<sup>19,20</sup>\r\n\r\nOvarian cancer may also be related to the consumption of dairy products. The milk sugar lactose is broken down in the body into another sugar, galactose. Research suggests that the dairy sugar galactose might be toxic to ovarian cells.<sup>21</sup> In a study conducted in Sweden, consumption of lactose and dairy products was positively linked to ovarian cancer.<sup>22</sup> A similar study, the Iowa Women’s Health Study, found that women who consumed more than one glass of milk per day had a 73 percent greater chance of ovarian cancer than women who drank less than one glass per day.<sup>23</sup>\r\n\r\n<strong>Lactose Intolerance</strong>\r\nLactose intolerance is common among many populations, affecting approximately 95 percent of Asian Americans, 74 percent of Native Americans, 70 percent of African Americans, 53 percent of Mexican Americans, and 15 percent of Caucasians.<sup>24</sup> Symptoms, which include gastrointestinal distress, diarrhea, and flatulence, occur because these individuals do not have the enzyme lactase that digests the milk sugar lactose. For those who can digest lactose, its breakdown products are two simple sugars: glucose and galactose. Nursing children have active enzymes that break down galactose. As we age, many of us lose much of this capacity.<sup>25</sup> Additionally, along with unwanted symptoms, milk-drinkers also put themselves at risk for development of other chronic diseases and ailments.\r\n\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Vitamin D</strong>\r\nIndividuals often drink milk in order to obtain vitamin D in their diet, unaware that they can receive vitamin D through other sources. The natural source of vitamin D is sunlight. Five to fifteen minutes of sun exposure to the arms and legs or the hands, face, and arms can be enough to meet the body’s requirements for vitamin D, depending on the individual’s skin tone.<sup>26</sup> Darker skin requires longer exposure to the sun in order to obtain adequate levels of vitamin D. In colder climates during the winter months the sun may not be able to provide adequate vitamin D. During this time the diet must be able to provide vitamin D. Fortified cereals, grains, bread, orange juice, and soy- or rice milk are healthful foods that provide vitamin D. All common multiple vitamins also provide vitamin D.\r\n\r\n<strong>Contaminants</strong>\r\nMilk contains contaminants that range from pesticides to drugs. Milk naturally contains hormones and growth factors produced within a cow’s body. In addition, synthetic hormones such as recombinant bovine growth hormone (rBGH) are commonly used in dairy cows to increase the production of milk.<sup>27</sup> Because treated cows are producing quantities of milk nature never intended, the end result can be mastitis, or inflammation of the mammary glands. Treatment of this condition requires the use of antibiotics, and antibiotic traces have occasionally been found in samples of milk and other dairy products. Pesticides, polychlorinated biphenyls (PCBs), and dioxins are other examples of contaminants found in milk. These toxins do not readily leave the body and can eventually build to harmful levels that may affect the immune and reproductive systems. The central nervous system can also be affected. Moreover, PCBs and dioxins have also been linked to cancer.<sup>28</sup>\r\n\r\n<strong>Milk Proteins and Diabetes</strong>\r\nInsulin-dependent (type 1 or childhood-onset) diabetes is linked to consumption of dairy products.<sup>29</sup> A 2001 Finnish study of 3,000 infants with genetically increased risk for developing diabetes showed that early introduction of cow’s milk increased susceptibility to type 1 diabetes.<sup>30</sup>\r\n\r\n<strong>Health Concerns of Infants and Children</strong>\r\nMilk proteins, milk sugar, fat, and saturated fat in dairy products pose health risks for children and encourage the development of obesity, diabetes, and heart disease.\r\n\r\nThe American Academy of Pediatrics recommends that infants below one year of age not be given whole cow’s milk,<sup>31</sup> as iron deficiency is more likely on a dairy-rich diet. Cow’s milk products are very low in iron.<sup>32</sup> If dairy products become a major part of one’s diet, iron deficiency is more likely. Colic is an additional concern with milk consumption. Up to 28 percent of infants suffer from colic during the first month of life.<sup>33</sup> Pediatricians learned long ago that cow’s milk was often the reason. We now know that breastfeeding mothers can have colicky babies if the mothers consume cow’s milk. The cow’s antibodies can pass through the mother’s bloodstream, into her breast milk, and to the baby.<sup>34,35</sup> Additionally, food allergies appear to be common results of cow’s milk consumption, particularly in children.<sup>36,37</sup> Cow’s milk consumption has also been linked to chronic constipation in children. Researchers suggested that milk consumption resulted in perianal sores and severe pain on defecation, leading to constipation.<sup>38</sup>\r\n\r\nMilk and dairy products are not necessary in the diet and can, in fact, be harmful to health. It is best to consume a healthful diet of grains, fruits, vegetables, legumes, and fortified foods including cereals and juices. These nutrient-dense foods can help you meet your calcium, potassium, riboflavin, and vitamin D requirements with ease—and without health risks.\r\n\r\n<strong>References on request</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Health Concerns about Dairy Products','','publish','open','closed','','health-concerns-about-dairy-products','','','2019-06-13 06:07:50','2019-06-13 06:07:50','',0,'https://www.drfields.com/?p=1482',0,'post','',0),(1483,8,'2019-06-13 06:07:50','2019-06-13 06:07:50','<div id=\"dnn_ctr610_ModuleContent\" class=\"DNNModuleContent ModDNNHTMLC\">\r\n<div id=\"dnn_ctr610_HtmlModule_lblContent\" class=\"Normal\">\r\n\r\nMany Americans, including some vegetarians, still consume substantial amounts of dairy products—and government policies still promote them—despite scientific evidence that questions their health benefits and indicates their potential health risks.\r\n\r\n<strong>Osteoporosis</strong>\r\nMilk’s main selling point is calcium, and milk-drinking is touted for building strong bones in children and preventing osteoporosis in older persons. However, clinical research shows that dairy products have little or no benefit for bones. A 2005 review published in Pediatrics showed that milk consumption does not improve bone integrity in children.<sup>1</sup> Similarly, the Harvard Nurses’ Health Study,<sup>2</sup> which followed more than 72,000 women for 18 years, showed no protective effect of increased milk consumption on fracture risk. While calcium is important for bone health, studies show that increasing consumption beyond approximately 600 mg per day—amounts that are easily achieved without dairy products or calcium supplements—does not improve bone integrity.<sup>2</sup>\r\n\r\nIn studies of children and adults, exercise has been found to have a major effect on bone density.<sup>3-5</sup> You can decrease your risk of osteoporosis by reducing sodium and animal protein intake in the diet,<sup>6-9</sup> increasing intake of fruits and vegetables,<sup>9,10</sup> exercising,<sup>4,11</sup> and ensuring adequate calcium intake from plant foods such as kale, broccoli, and other leafy green vegetables and beans. You can also use calcium-fortified products such as breakfast cereals and juices, although these products provide more concentrated calcium than is necessary.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Fat Content and Cardiovascular Disease</strong>\r\nDairy products—including cheese, ice cream, milk, butter, and yogurt—contribute significant amounts of cholesterol and saturated fat to the diet.<sup>12</sup> Diets high in fat and saturated fat can increase the risk of heart disease, among other serious health problems. A low-fat vegetarian diet that eliminates dairy products, in combination with exercise, smoking cessation, and stress management, can not only prevent heart disease, but may also reverse it.<sup>13,14</sup> Non-fat dairy products are available; however, they pose other health risks as noted below.\r\n\r\n<strong>Cancer</strong>\r\nProstate and breast cancers have been linked to consumption of dairy products, presumably related to increases in a compound called insulin-like growth factor (IGF-I).<sup>15</sup> IGF-I is found in cow’s milk and has been shown to occur in increased levels in the blood of individuals consuming dairy products on a regular basis.<sup>16</sup> Other nutrients that increase IGF-I are also found in cow’s milk.\r\n\r\nCase-control studies in diverse populations have shown a strong and consistent association between serum IGF-I concentrations and prostate cancer risk.<sup>17</sup> One study showed that men who had the highest levels of IGF-I had more than four times the risk of prostate cancer compared with those who had the lowest levels.<sup>18</sup> Other findings show that prostate cancer risk was elevated with increased consumption of low-fat milk, suggesting that too much dairy calcium could be a potential threat to prostate health.<sup>19,20</sup>\r\n\r\nOvarian cancer may also be related to the consumption of dairy products. The milk sugar lactose is broken down in the body into another sugar, galactose. Research suggests that the dairy sugar galactose might be toxic to ovarian cells.<sup>21</sup> In a study conducted in Sweden, consumption of lactose and dairy products was positively linked to ovarian cancer.<sup>22</sup> A similar study, the Iowa Women’s Health Study, found that women who consumed more than one glass of milk per day had a 73 percent greater chance of ovarian cancer than women who drank less than one glass per day.<sup>23</sup>\r\n\r\n<strong>Lactose Intolerance</strong>\r\nLactose intolerance is common among many populations, affecting approximately 95 percent of Asian Americans, 74 percent of Native Americans, 70 percent of African Americans, 53 percent of Mexican Americans, and 15 percent of Caucasians.<sup>24</sup> Symptoms, which include gastrointestinal distress, diarrhea, and flatulence, occur because these individuals do not have the enzyme lactase that digests the milk sugar lactose. For those who can digest lactose, its breakdown products are two simple sugars: glucose and galactose. Nursing children have active enzymes that break down galactose. As we age, many of us lose much of this capacity.<sup>25</sup> Additionally, along with unwanted symptoms, milk-drinkers also put themselves at risk for development of other chronic diseases and ailments.\r\n\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Vitamin D</strong>\r\nIndividuals often drink milk in order to obtain vitamin D in their diet, unaware that they can receive vitamin D through other sources. The natural source of vitamin D is sunlight. Five to fifteen minutes of sun exposure to the arms and legs or the hands, face, and arms can be enough to meet the body’s requirements for vitamin D, depending on the individual’s skin tone.<sup>26</sup> Darker skin requires longer exposure to the sun in order to obtain adequate levels of vitamin D. In colder climates during the winter months the sun may not be able to provide adequate vitamin D. During this time the diet must be able to provide vitamin D. Fortified cereals, grains, bread, orange juice, and soy- or rice milk are healthful foods that provide vitamin D. All common multiple vitamins also provide vitamin D.\r\n\r\n<strong>Contaminants</strong>\r\nMilk contains contaminants that range from pesticides to drugs. Milk naturally contains hormones and growth factors produced within a cow’s body. In addition, synthetic hormones such as recombinant bovine growth hormone (rBGH) are commonly used in dairy cows to increase the production of milk.<sup>27</sup> Because treated cows are producing quantities of milk nature never intended, the end result can be mastitis, or inflammation of the mammary glands. Treatment of this condition requires the use of antibiotics, and antibiotic traces have occasionally been found in samples of milk and other dairy products. Pesticides, polychlorinated biphenyls (PCBs), and dioxins are other examples of contaminants found in milk. These toxins do not readily leave the body and can eventually build to harmful levels that may affect the immune and reproductive systems. The central nervous system can also be affected. Moreover, PCBs and dioxins have also been linked to cancer.<sup>28</sup>\r\n\r\n<strong>Milk Proteins and Diabetes</strong>\r\nInsulin-dependent (type 1 or childhood-onset) diabetes is linked to consumption of dairy products.<sup>29</sup> A 2001 Finnish study of 3,000 infants with genetically increased risk for developing diabetes showed that early introduction of cow’s milk increased susceptibility to type 1 diabetes.<sup>30</sup>\r\n\r\n<strong>Health Concerns of Infants and Children</strong>\r\nMilk proteins, milk sugar, fat, and saturated fat in dairy products pose health risks for children and encourage the development of obesity, diabetes, and heart disease.\r\n\r\nThe American Academy of Pediatrics recommends that infants below one year of age not be given whole cow’s milk,<sup>31</sup> as iron deficiency is more likely on a dairy-rich diet. Cow’s milk products are very low in iron.<sup>32</sup> If dairy products become a major part of one’s diet, iron deficiency is more likely. Colic is an additional concern with milk consumption. Up to 28 percent of infants suffer from colic during the first month of life.<sup>33</sup> Pediatricians learned long ago that cow’s milk was often the reason. We now know that breastfeeding mothers can have colicky babies if the mothers consume cow’s milk. The cow’s antibodies can pass through the mother’s bloodstream, into her breast milk, and to the baby.<sup>34,35</sup> Additionally, food allergies appear to be common results of cow’s milk consumption, particularly in children.<sup>36,37</sup> Cow’s milk consumption has also been linked to chronic constipation in children. Researchers suggested that milk consumption resulted in perianal sores and severe pain on defecation, leading to constipation.<sup>38</sup>\r\n\r\nMilk and dairy products are not necessary in the diet and can, in fact, be harmful to health. It is best to consume a healthful diet of grains, fruits, vegetables, legumes, and fortified foods including cereals and juices. These nutrient-dense foods can help you meet your calcium, potassium, riboflavin, and vitamin D requirements with ease—and without health risks.\r\n\r\n<strong>References on request</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Health Concerns about Dairy Products','','inherit','closed','closed','','1482-revision-v1','','','2019-06-13 06:07:50','2019-06-13 06:07:50','',1482,'https://www.drfields.com/uncategorized/1482-revision-v1/',0,'revision','',0),(1484,8,'2019-06-13 06:08:56','2019-06-13 06:08:56','Dementia is a growing problem, according to the “Delphi Consensus Study”, appearing in the Lancet (2005; 366(9503): 2112-7). There is a new case of dementia every seven seconds, and the authors predict that the number of cases of dementia will double in developed countries between 2001 and 2040. Currently there are 23.4 million cases of dementia worldwide, with 4.6 million additional new cases each year.\r\n\r\nDiet may, in part, help to prevent dementia. Research appearing in the<em> Archives of Neurology</em> (Dec 2006; 63: 1709–17) indicates that the Mediterranean diet may lower the risk of Alzheimer’s disease. The researchers analyzed the diets of 194 Alzheimer’s patients and 1,790 people without the disease. Subjects were rated on their adherence to the Mediterranean diet on a scale from 0 to 9, and using a 61-item version of Willett\'s semiquantitative food frequency questionnaire. Strictly following the diet was associated with a decreased incidence of Alzheimer’s disease. The risk was lowered between 19 and 24% for each point (on the 0-9 scale used by the researchers). Those in the top 1/3 of dietary compliance had a 68% reduced risk when compared to those not following the diet.\r\n\r\nObesity seems to increase the risk of dementia, according to research appearing in the <em>British Medical Journal</em> (2005; 330(7504): 1360). Researchers gathered data from 10,276 men and women over a 27 year period. Between 1964 and 1973, subjects aged 40 to 45 years were given health evaluations. Follow-up exams were performed about 20 years later, between 1994 and 2003. Subjects who were obese at the time of initial evaluation had a 74% greater chance of developing dementia compared to subjects who were of normal weight.\r\n\r\nExercise also may help to prevent dementia. Research appearing in <em>The Journals of Gerontology Series A: Biological Sciences and Medical Sciences</em> (63:529-535 (2008)) looked at physical activity in 2263 men aged 71–92 years without dementia. There were 173 incident cases of dementia with a mean follow-up of 6.1 years. The incidence of dementia was lower with increasing physical activity and function. For men with low physical function, high levels of physical activity were associated with half the risk of dementia versus men who were the least active. The authors concluded that increasing general physical activity in elderly men with poor physical function can possibly have a protective effect and delay the onset of dementia. Like so many other diseases, diet and exercise play a role in dementia.\r\n\r\nSupplementation is always a good idea to help prevent dementia. Also, sometimes when someone is a little forgetful, supplementing with rubidium is helpful. According to Dr. Harry Eidenier, elderly folks who keep their vitality into old age have higher levels of rubidium. Also some of the CRS (can’t remember stuff) suffered by the elderly can be remedied with supplementation with vitamin B<sub>12</sub>. To prevent dementia, consider improving the diet and supplementing with antioxidants and omega-3 fatty acids.\r\n\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n','Dementia – Diet, Exercise and Supplements Can Help','','publish','open','closed','','dementia-diet-exercise-and-supplements-can-help','','','2019-06-13 06:08:56','2019-06-13 06:08:56','',0,'https://www.drfields.com/?p=1484',0,'post','',0),(1485,8,'2019-06-13 06:08:56','2019-06-13 06:08:56','Dementia is a growing problem, according to the “Delphi Consensus Study”, appearing in the Lancet (2005; 366(9503): 2112-7). There is a new case of dementia every seven seconds, and the authors predict that the number of cases of dementia will double in developed countries between 2001 and 2040. Currently there are 23.4 million cases of dementia worldwide, with 4.6 million additional new cases each year.\r\n\r\nDiet may, in part, help to prevent dementia. Research appearing in the<em> Archives of Neurology</em> (Dec 2006; 63: 1709–17) indicates that the Mediterranean diet may lower the risk of Alzheimer’s disease. The researchers analyzed the diets of 194 Alzheimer’s patients and 1,790 people without the disease. Subjects were rated on their adherence to the Mediterranean diet on a scale from 0 to 9, and using a 61-item version of Willett\'s semiquantitative food frequency questionnaire. Strictly following the diet was associated with a decreased incidence of Alzheimer’s disease. The risk was lowered between 19 and 24% for each point (on the 0-9 scale used by the researchers). Those in the top 1/3 of dietary compliance had a 68% reduced risk when compared to those not following the diet.\r\n\r\nObesity seems to increase the risk of dementia, according to research appearing in the <em>British Medical Journal</em> (2005; 330(7504): 1360). Researchers gathered data from 10,276 men and women over a 27 year period. Between 1964 and 1973, subjects aged 40 to 45 years were given health evaluations. Follow-up exams were performed about 20 years later, between 1994 and 2003. Subjects who were obese at the time of initial evaluation had a 74% greater chance of developing dementia compared to subjects who were of normal weight.\r\n\r\nExercise also may help to prevent dementia. Research appearing in <em>The Journals of Gerontology Series A: Biological Sciences and Medical Sciences</em> (63:529-535 (2008)) looked at physical activity in 2263 men aged 71–92 years without dementia. There were 173 incident cases of dementia with a mean follow-up of 6.1 years. The incidence of dementia was lower with increasing physical activity and function. For men with low physical function, high levels of physical activity were associated with half the risk of dementia versus men who were the least active. The authors concluded that increasing general physical activity in elderly men with poor physical function can possibly have a protective effect and delay the onset of dementia. Like so many other diseases, diet and exercise play a role in dementia.\r\n\r\nSupplementation is always a good idea to help prevent dementia. Also, sometimes when someone is a little forgetful, supplementing with rubidium is helpful. According to Dr. Harry Eidenier, elderly folks who keep their vitality into old age have higher levels of rubidium. Also some of the CRS (can’t remember stuff) suffered by the elderly can be remedied with supplementation with vitamin B<sub>12</sub>. To prevent dementia, consider improving the diet and supplementing with antioxidants and omega-3 fatty acids.\r\n\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n','Dementia – Diet, Exercise and Supplements Can Help','','inherit','closed','closed','','1484-revision-v1','','','2019-06-13 06:08:56','2019-06-13 06:08:56','',1484,'https://www.drfields.com/uncategorized/1484-revision-v1/',0,'revision','',0),(1486,8,'2019-06-13 06:09:49','2019-06-13 06:09:49','<h2>Bio-Identical Hormones</h2>\r\nA balanced program of exercise and the consumption of whole foods takes you far down the road of maintaining a healthy lifestyle. But when necessary, the inclusion of bio-identical hormone replacement therapy as recommended by your physician might be the boost you need for a happier and healthier life.\r\n<h3><img class=\"alignright size-full wp-image-1129\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/health-insurance.jpg\" alt=\"Health Insurance\" width=\"200\" height=\"300\" />How to Achieve Optimal Aging</h3>\r\nAs people age, they may encounter symptoms that make them feel less than optimal. Even those that follow healthy eating programs. It is possible to stop much of the undesirable aspects and symptoms  associated with aging. Bio-Identical Hormone Replacement Therapy (BHRT) is a science which has shown to improve the quality of your life.\r\n<h4><em>Your Physician Will Take A Detailed History and Perform Lab Testing</em></h4>\r\nPhysicians who prescribe these hormones will take a detailed history of the symptoms you experience. Following this, a laboratory evaluation of your hormone levels will be done. With these results, a personalized hormone supplementation program can be prescribed for you.\r\n\r\nAfter initiating the therapy, you will be monitored and the hormone replacements will be balanced for optimal benefits. Many patients experience how natural hormone supplementation can help with healthy aging.\r\n<h3>Bio-Identical Hormones Are Not the Same As Synthetic Hormones</h3>\r\nBio-identical hormones are prescribed, but they are natural substances that function as messengers to stimulate cells to heal, reproduce, and rejuvenate. Disease and symptoms of aging occur when hormone levels decline.\r\n\r\nNatural, bio-identical hormones are preferred over synthetic hormones, so you can achieve all of the benefits of hormone replacement without the risks and side effects associated with synthetic hormones.\r\n<h3>Common Bio-Identical Hormones To Boost A Happier and Healthier Lifestyle</h3>\r\n<strong>DHEA</strong>\r\nBy age 40, DHEA has declined markedly. Replacement results in immune enhancement, therefore making DHEA extremely important in cancer and infection prevention. DHEA is a precursor to the sex hormones and is therefore an important building block in the production of these hormones. DHEA helps the breakdown of fats and cholesterol, while reducing the formation of atherosclerotic plaques.\r\n\r\n<strong>ESTROGEN</strong>\r\nReplacement with natural estrogen protects against heart disease, stroke, Alzheimer\'s disease, and osteoporosis in women. Estrogen prevents symptoms of menopause such as hot flashes, temperature deregulation, mood swings, urogenital atrophy, decreased libido, and depression. Estrogen lowers LDL cholesterol and raises HDL (the good cholesterol).\r\n\r\n<strong>PROGESTERONE</strong>\r\nReplacement with natural progesterone protects against uterine and breast cancer , and also osteoporosis. Progesterone reduces symptoms of menopause. Progesterone occurs naturally with estrogen and should be prescribed concurrently to balance estrogen.\r\n\r\n<strong>MELATONIN</strong>\r\nThis hormone is produced by the pineal gland and declines significantly by age 40. Melatonin controls circadium rhythm and sleep cycles. It induces sleep, improves quality of sleep, and increases REM sleep and deep stage IV sleep. During this deep stage of sleep, the immune system is stimulated. It has anti-cancer effects and modulates immune function by activating the cytokine system (lymphocytic function).\r\n\r\n<strong>TESTOSTERONE</strong>\r\nThis hormone is necessary in both men and women and declines steadily after age 30. Testosterone is responsible for sustaining libido, muscle mass, and immunity. It protects against disease in men plus the degeneration of muscle, bone, tendon and joints. It is a great mood enhancer and imparts a sense of well being in aging men and women.\r\n\r\n<strong>THYROID</strong>\r\nThis metabolic hormone decreases steadily with age. Lack of thyroid hormone results in cold intolerance, fatigue, lassitude, weight gain, increased cholesterol, thin and dry skin, hair loss, thin and brittle nails. Replenishment results in reversal of these symptoms plus increased energy and metabolism.\r\n\r\n<strong>PREGNENOLONE</strong>\r\nDecline of this hormone occurs after age 30. This hormone aids in cellular repair of the central nervous system and is the most potent memory enhancer of all the hormones.\r\n\r\nIf you are not feeling optimal even though you are exercising and eating right, ask your doctor about bio-identical hormone replacement.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Bio-Identical Hormones and Aging','','publish','open','closed','','bio-identical-hormones-for-a-happier-and-healthier-lifestyle','','','2021-12-15 02:58:22','2021-12-15 02:58:22','',0,'https://www.drfields.com/?p=1486',0,'post','',0),(1487,8,'2019-06-13 06:09:49','2019-06-13 06:09:49','A balanced program of hormone replacement therapy might be the best health insurance you can buy!\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/health-insurance.jpg\" alt=\"Health Insurance\" width=\"200\" height=\"300\" class=\"alignright size-full wp-image-1129\" />\r\nIt is possible to stop much of the undesirable aspects, symptoms and diseases associated with aging. Bio-Identical Hormone Replacement Therapy (BHRT) is a science which has shown to improve the quality of your life. During your initial consultation, a detailed history with symptoms will be taken. Following this, laboratory evaluation will be done. With these results, a personalized hormone supplementation program will be prescribed for you. Each individual will be monitored and balanced for optimal benefits. Natural hormone supplementation can help your healthy aging.\r\n\r\nHormones are not drugs. Hormones are natural substances which function as messengers to stimulate cells to heal, reproduce and rejuvenate. Disease and symptoms of aging occur when hormone levels decline. Only natural hormones will be prescribed. You will achieve all of the benefits of hormone replacement without the risks and side effects associated with synthetic hormones. The following is a list of the hormones that will be measured and monitored:\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>DHEA</strong>\r\nBy age 40, DHEA has declined markedly. Replacement results in immune enhancement, therefore making DHEA extremely important in cancer and infection prevention. DHEA is a precursor to the sex hormones and is therefore a important building block in the production of these hormones. DHEA helps the breakdown of fats and cholesterol, while reducing the formation of atherosclerotic plaques.\r\n\r\n<strong>ESTROGEN</strong>\r\nReplacement with natural estrogen protects against heart disease, stroke, Alzheimer\'s disease and osteoporosis in women. Estrogen prevents symptoms of menopause such as hot flashes, temperature deregulation, mood swings, urogenital atrophy, decreased libido and depression. Estrogen lowers LDL cholesterol and raises HDL (the good cholesterol).\r\n\r\n<strong>PROGESTERONE</strong>\r\nReplacement with natural progesterone protects against uterine and breast cancer plus osteoporosis. Progesterone reduces symptoms of menopause. Progesterone occurs naturally with estrogen and should be prescribed concurrently to balance estrogen.\r\n\r\n<strong>MELATONIN</strong>\r\nThis hormone is produced by the pineal gland and declines significantly by age 40. Melatonin controls circadium rhythm and sleep cycles. It induces sleep, improves quality of sleep and increases REM sleep and deep stage IV sleep. During this deep stage of sleep, the immune system is stimulated. It has anti-cancer effects and modulates immune function by activating the cytokine system (lymphocytic function).\r\n\r\n<strong>TESTOSTERONE</strong>\r\nThis hormone is necessary in both men and women and declines steadily after age 30. Testosterone is responsible for sustaining libido, muscle mass and immunity. It protects against disease in men plus the degeneration of muscle, bone, tendon and joints. It is a great mood enhancer and imparts a sense of well being in again men and women.\r\n\r\n<strong>THYROID</strong>\r\nThis metabolic hormone decreases steadily with age. Lack of thyroid hormone results in cold intolerance, fatigue, lassitude, weight gain, increases cholesterol, thin and dry skin, hair loss, thin and brittle nails. Replenishment results in reversal of these symptoms plus increased energy and metabolism.\r\n\r\n<strong>PREGNENOLONE</strong>\r\nDecline of this hormone occurs after age 30. This hormone aids in cellular repair of the central nervous system and is the most potent memory enhancer of all the hormones.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Your best health insurance','','inherit','closed','closed','','1486-revision-v1','','','2019-06-13 06:09:49','2019-06-13 06:09:49','',1486,'https://www.drfields.com/uncategorized/1486-revision-v1/',0,'revision','',0),(1488,8,'2019-06-13 06:11:21','2019-06-13 06:11:21','A double-blind, placebo-controlled study, in the Journal of the International Society of Sports Nutrition (2008; 5(1): 8) looked at CoQ10 supplementation and athletic performance. The participants of the study were 22 trained athletes and 19 untrained subjects. An hour before a series of exercise tests they were randomly given either a placebo or 200 mg of Coenzyme Q10. Blood samples and muscle biopsies were taken before and after exercise. The subjects were then given either a placebo or 100 mg of Coenzyme Q10 twice each day for a period of two weeks. At the end of the period they performed the same exercises and were tested in the same way. Results indicate that both acute and chronic supplementation with coenzyme Q10 may improve anaerobic and aerobic exercise performance. In addition a trend for increased time to exhaustion was observed following 2 weeks of CoQ10 supplementation\r\n\r\nAnother study appearing in the British Journal of Nutrition (2008, 100: 903-9097) looked at coenzyme Q10 supplementation and muscle damage after intense exercise. This was a double-blind, placebo controlled study involving 18 athletes who were given either 300 mg of CoQ10 or a placebo for 20 days. During the course of the study they exercised intensely for 5 1/2 hours each day for six days. Blood tests to indicate the level of muscle damage were taken (myoglobin, and creatine kinase). The muscle-damage indicators increased in both groups, but were significantly lower in the group receiving the supplement.\r\n\r\nQuality CO-Q is essential.\r\nAt Pacific Prolotherpay and Medical Wellness Centre we offer you only the best products.\r\nPlease see our store for additional information.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Improve Sports Performance With Co-Q','','publish','open','closed','','improve-sports-performance-with-co-q','','','2019-06-13 06:11:21','2019-06-13 06:11:21','',0,'https://www.drfields.com/?p=1488',0,'post','',0),(1489,8,'2019-06-13 06:11:21','2019-06-13 06:11:21','A double-blind, placebo-controlled study, in the Journal of the International Society of Sports Nutrition (2008; 5(1): 8) looked at CoQ10 supplementation and athletic performance. The participants of the study were 22 trained athletes and 19 untrained subjects. An hour before a series of exercise tests they were randomly given either a placebo or 200 mg of Coenzyme Q10. Blood samples and muscle biopsies were taken before and after exercise. The subjects were then given either a placebo or 100 mg of Coenzyme Q10 twice each day for a period of two weeks. At the end of the period they performed the same exercises and were tested in the same way. Results indicate that both acute and chronic supplementation with coenzyme Q10 may improve anaerobic and aerobic exercise performance. In addition a trend for increased time to exhaustion was observed following 2 weeks of CoQ10 supplementation\r\n\r\nAnother study appearing in the British Journal of Nutrition (2008, 100: 903-9097) looked at coenzyme Q10 supplementation and muscle damage after intense exercise. This was a double-blind, placebo controlled study involving 18 athletes who were given either 300 mg of CoQ10 or a placebo for 20 days. During the course of the study they exercised intensely for 5 1/2 hours each day for six days. Blood tests to indicate the level of muscle damage were taken (myoglobin, and creatine kinase). The muscle-damage indicators increased in both groups, but were significantly lower in the group receiving the supplement.\r\n\r\nQuality CO-Q is essential.\r\nAt Pacific Prolotherpay and Medical Wellness Centre we offer you only the best products.\r\nPlease see our store for additional information.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Improve Sports Performance With Co-Q','','inherit','closed','closed','','1488-revision-v1','','','2019-06-13 06:11:21','2019-06-13 06:11:21','',1488,'https://www.drfields.com/uncategorized/1488-revision-v1/',0,'revision','',0),(1490,8,'2019-06-13 06:12:11','2019-06-13 06:12:11','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/almonds-heart.jpg\" alt=\"Almonds Heart\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-1133\" />It’s easy to get plenty of satisfying protein in your meals while still eating low on the food chain. While you don’t have to go full-time vegetarian, many people are surprised to learn that simply cutting back on meat consumption is one of the most significant ways to help the planet.\r\n\r\n<strong>QUINOA</strong>\r\nYour kitchen is not complete without highly nutritious quinoa. Known as the “Mother Grain” of the Andes, quinoa (pronounced KEE-nwah) comes complete with all necessary amino acids, high iron content, a delicious nutty flavor, and a faster cooking time than rice. Try it hot with steamed vegetables, cold in a salad, or in the ingenious form of quinoa pasta.\r\n\r\n<strong>VEGGIE BURGER </strong>\r\nEven carnivores love a veggie burger – they no longer resemble sorry imitations of meat that isn’t that choice to begin with. You’ve got a variety of flavors to choose from, each typically made with protein-rich soy and organic vegetables.\r\n\r\n<p>&nbsp; </p>\r\n\r\n<strong>ALMONDS</strong>\r\nKing of the nuts, the amazing almond is high in both protein and calcium (it’s a great low-carb snack with only a few grams of non-fiber carbohydrate per serving). Try almond milk or Living Tree’s naturally sweet organic almond butter, too. For a real splurge, go for raw.\r\n\r\n<strong>YOGURT</strong>\r\nWith a 4,500 year history, organic yogurt is here to stay. Boasting protein, calcium and living cultures, organic yogurt with fruit slices makes for a healthy and filling breakfast or dessert. Buy plain, organic, full-fat yogurt – it’s the best for your body. Low-fat yogurt is highly processed and flavored yogurts are very high in sugar and/or high-fructose corn syrup.\r\n\r\n<strong>TEMPEH</strong>\r\nOrganic and non-GMO tempeh, made from fermented soy beans and rice, is high in fiber and protein. It’s much nuttier and chewier than tofu, which will satisfy a serious protein craving. It tastes amazing in a stir-fry or on a kabob.\r\n\r\n<strong>LEGUMES</strong>\r\nLegumes, like lentils, black beans and chickpeas are filling and high in protein and fiber. A Middle Eastern staple, hummus is simple to make, making it one of my favorite foods!\r\n\r\n<strong>CHEESE</strong>\r\nThough it’s not a vegan option, you can find cheeses that come from animals raised humanely (look for artisan or organic choices). Cheddar and mozzarella top the list of organic cheeses for protein content Try raw dairy if you’re comfortable with that.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Delicious Meat Alternatives','','publish','open','closed','','delicious-meat-alternatives','','','2019-06-13 06:12:11','2019-06-13 06:12:11','',0,'https://www.drfields.com/?p=1490',0,'post','',0),(1491,8,'2019-06-13 06:12:11','2019-06-13 06:12:11','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/almonds-heart.jpg\" alt=\"Almonds Heart\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-1133\" />It’s easy to get plenty of satisfying protein in your meals while still eating low on the food chain. While you don’t have to go full-time vegetarian, many people are surprised to learn that simply cutting back on meat consumption is one of the most significant ways to help the planet.\r\n\r\n<strong>QUINOA</strong>\r\nYour kitchen is not complete without highly nutritious quinoa. Known as the “Mother Grain” of the Andes, quinoa (pronounced KEE-nwah) comes complete with all necessary amino acids, high iron content, a delicious nutty flavor, and a faster cooking time than rice. Try it hot with steamed vegetables, cold in a salad, or in the ingenious form of quinoa pasta.\r\n\r\n<strong>VEGGIE BURGER </strong>\r\nEven carnivores love a veggie burger – they no longer resemble sorry imitations of meat that isn’t that choice to begin with. You’ve got a variety of flavors to choose from, each typically made with protein-rich soy and organic vegetables.\r\n\r\n<p>&nbsp; </p>\r\n\r\n<strong>ALMONDS</strong>\r\nKing of the nuts, the amazing almond is high in both protein and calcium (it’s a great low-carb snack with only a few grams of non-fiber carbohydrate per serving). Try almond milk or Living Tree’s naturally sweet organic almond butter, too. For a real splurge, go for raw.\r\n\r\n<strong>YOGURT</strong>\r\nWith a 4,500 year history, organic yogurt is here to stay. Boasting protein, calcium and living cultures, organic yogurt with fruit slices makes for a healthy and filling breakfast or dessert. Buy plain, organic, full-fat yogurt – it’s the best for your body. Low-fat yogurt is highly processed and flavored yogurts are very high in sugar and/or high-fructose corn syrup.\r\n\r\n<strong>TEMPEH</strong>\r\nOrganic and non-GMO tempeh, made from fermented soy beans and rice, is high in fiber and protein. It’s much nuttier and chewier than tofu, which will satisfy a serious protein craving. It tastes amazing in a stir-fry or on a kabob.\r\n\r\n<strong>LEGUMES</strong>\r\nLegumes, like lentils, black beans and chickpeas are filling and high in protein and fiber. A Middle Eastern staple, hummus is simple to make, making it one of my favorite foods!\r\n\r\n<strong>CHEESE</strong>\r\nThough it’s not a vegan option, you can find cheeses that come from animals raised humanely (look for artisan or organic choices). Cheddar and mozzarella top the list of organic cheeses for protein content Try raw dairy if you’re comfortable with that.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Delicious Meat Alternatives','','inherit','closed','closed','','1490-revision-v1','','','2019-06-13 06:12:11','2019-06-13 06:12:11','',1490,'https://www.drfields.com/uncategorized/1490-revision-v1/',0,'revision','',0),(1492,8,'2019-06-13 06:12:53','2019-06-13 06:12:53','<h3>Benefits of Vitamin Supplementation in COVID-19: The Anti-Oxidants, A, C &amp; D</h3>\r\nSince treatment options to prevent and even treat COVID-19 are limited, the use of vitamins and mineral supplementation is worth exploring. Let\'s look at what some of the research says about the benefits of vitamin supplementation in COVID-19.\r\n<h3>The Immune-mediating, Antioxidant and Antimicrobial Roles of Vitamins A</h3>\r\nIncreasing the level of antioxidant nutrients within the body is thought to have a beneficial effect. And the dietary supplementation of nutrients has been recognized to alter the clinical course and health of patients. Vitamin A supplementation is helpful in many conditions. For example, vitamin A improves pulmonary function test results, has been found to have antimicrobial qualities, addresses vitamin A deficiency to effectively aid in tuberculosis prevention, and has antioxidative properties.\r\n\r\n<strong>How does this relate to the benefits of vitamin A in COVID-19?</strong> The pulmonary, immunomodulatory, and antimicrobial roles of vitamin A may provide a crucial element in the fight against viral diseases, including COVID-19! Both oxidative\r\n\r\n[caption id=\"attachment_4410\" align=\"alignright\" width=\"425\"]<img class=\"wp-image-4410\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Antioxidants-500x500.png\" alt=\"Antioxidants\" width=\"425\" height=\"425\" /> <strong>                      <em>The Benefits of Vitamins During COVID-19</em></strong>[/caption]\r\n\r\ndamage and the regenerative capacity of the lungs may be mediated through vitamin A-dependent mechanisms. Plus, vitamin A may combat viral infections. Because of its role in helping with pulmonary conditions and building the immune system, oral supplementation of vitamin A is a current topic of investigation in the treatment of COVID-19. 1\r\n\r\n&nbsp;\r\n<h3>What About Vitamin C? Does it Help During COVID-19?</h3>\r\nOther antioxidants are being studied concerning their role to combat COVID-19. The role these vitamins play in the body and how each boosts the immune system, their role in respiratory infections, acute respiratory distress syndrome (ARDS), and COVID-19...are all being examined. Vitamin C has an important antioxidant role, plus it may help in the stress response. Vitamin C has been encouraged as a treatment for respiratory infections since the 1930s. We are all familiar with its popularity in the prevention and alleviation of the common cold. And it may also have an antiviral effect.\r\n\r\nStudies support the beneficial role of vitamin C in reducing bacterial and viral infections\' incidence and severity. Vitamin C is being investigated as a possible treatment to offset the effects of inflammation and oxidative stress seen in sepsis and ARDS. And there is evidence suggesting that vitamin C helps regulate the process that occurs in the damaging \'cytokine storm\' in COVID-19. Its possible benefits, plus low cost and safety profile, make it an attractive candidate to help prevent and treat COVID-19. 1\r\n<h3>What Are the Potential Benefits from Vitamin D Supplementation During the COVID-19 Pandemic?</h3>\r\nThe protective role of vitamin D in cardiovascular disease is well established, as it may significantly increase a person\'s risk of stroke, heart disease, and even death. Plus, as most of us are aware, vitamin D intake plays a key role in bone health. Check out our other article, which discusses the many benefits of vitamin D called \"<a title=\"Vitamin D: It’s Not Just For Bones Anymore\" href=\"https://www.drfields.com/articles/health-news/vitamin-d-its-not-just-for-bones-anymore/\">Vitamin D: It’s Not Just For Bones Anymore.\"</a>\r\n<h4><em><strong>But are there any potential benefits from vitamin D supplementation during the COVID-19 pandemic?</strong></em></h4>\r\nVitamin D benefits the immune system. It plays a role in helping in chronic and acute inflammatory disorders, including autoimmune disease and infections. In fact, higher levels of vitamin D are associated with reduced risk for developing multiple sclerosis, gastrointestinal inflammatory disorders, type 1 diabetes, and other immune-mediated diseases. In addition, it has been suggested that vitamin D could reduce the effect on the exacerbation of the immune response and the complications in the ARDS condition in COVID-19. And therefore, it may play a promising role in COVID-19 treatments.1,2\r\n\r\nResearchers are studying how vitamin D helps with the immune and inflammatory response in the body. Some studies show that vitamin D supplementation could lower the risk of acute respiratory infections. The British Dietetic Association recommends taking a daily supplement containing 10 µg to ensure a healthy vitamin D status (for adults and children over the age of one).3 And ‘The Irish Longitudinal Study on Ageing\' says that vitamin D could benefit vulnerable adults, particularly those over 70 years. (<a href=\"https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf\" rel=\"noopener\" data-ga-action=\"click_feat_suppl\">https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf)4</a>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nEven though appropriate vitamin D doses have been shown to provide benefits, especially considering that vitamin D deficiency leaves people vulnerable to other diseases, there has been some concern that higher doses may be harmful to those who also use ACE inhibitors.5 With that in mind, one study suggests a limiting consumption to a daily dose of 800-1000 IU of vitamin D to sufficiently meet the needs of most of the population.6\r\n<h3>We\'ll Need to Continue Weighing the Benefits and Risks of Vitamin and Mineral Supplementation for COVID-19.</h3>\r\nFurther clinical trials are needed to assess the potential benefits of vitamin and mineral supplementation, including the anti-oxidants A, C &amp; D, to prevent and treat the COVID-19 infection. In the meantime, follow your physician\'s recommendations for the best vitamin and mineral supplementation to benefit you personally, eat healthy foods, stay active, and try your best to limit stress in your life to maintain your overall health.\r\n<h3>References:</h3>\r\n</div>\r\n</div>\r\n</div>\r\n1 Jovic, Thomas H., et al. \"Could vitamins help in the fight against COVID-19?.\" <i>Nutrients</i> 12.9 (2020): 2550.\r\n\r\n2 Khare D, Godbole NM, Pawar SD, Mohan V, Pandey G, Gupta S, et al.<span class=\"ref-title\">Calcitriol [1, 25[OH]2 D3] pre-and post-treatment suppresses inflammatory response to influenza A (H1N1) infection in human lung A549 epithelial cells</span>. <span class=\"ref-journal\">Eur J Nutr</span> 2013; <span class=\"ref-vol\">52</span>:1405–15.\r\n\r\n3 Verdoia, Monica, and Giuseppe De Luca. \"Potential role of hypovitaminosis D and Vitamin D supplementation during COVID-19 pandemic.\" <i>QJM: An International Journal of Medicine</i> (2020).\r\n\r\n4https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf. Accessed January 23, 2021.\r\n\r\n5Fang L, Karakiulakis G, Roth M. Are patients with hypertension and diabetes mellitus at increased risk for COVID-19 infection? Lancet Respir Med. 2020;8(4): e21.\r\n\r\n6Mansour, Asieh, Mohammad Reza Mohajeri-Tehrani, and Sayed Mahmoud Sajjadi-Jazi. \"Vitamin D supplementation in COVID-19: A friend or foe?.\" <i>EXCLI journal</i> 19 (2020): 1166-1168.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Benefits of Vitamin Supplementation in COVID-19','','publish','open','closed','','benefits-of-vitamin-supplementation-in-covid-19','','','2021-01-24 02:52:13','2021-01-24 02:52:13','',0,'https://www.drfields.com/?p=1492',0,'post','',0),(1493,8,'2019-06-13 06:12:53','2019-06-13 06:12:53','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/hands-holding-heart.jpg\" alt=\"Hands Holding Heart\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-1138\" />WASHINGTON (AFP) – Insufficient intake of vitamin D, long known to play a key role in bone health, may significantly increase a person\'s risk of stroke, heart disease and even death, a US study said Monday.\r\n\r\nExamining 27,686 Utah patients aged 50 or older with no history of cardiovascular disease, the study found those with very low vitamin D levels were 77 percent more likely to die early than those with normal levels.\r\n\r\nThey were also found to be 45 percent more likely to develop coronary artery disease and 78 percent were more likely to have a stroke, said the research by the Heart Institute at the Intermountain Medical Center in Salt Lake City.\r\n\r\nThose with very low levels of vitamin D were twice as likely to develop heart failure, said the study which was due to be presented later Monday at a conference organized by the American Heart Association in Orlando, Florida.\r\n\r\n\"If increasing levels of vitamin D can decrease some risk associated with these cardiovascular diseases, it could have a significant public health impact,\" said study co-author Heidi May, noting that vitamin D deficiency is easily treatable.\r\n\r\n\"When you consider that cardiovascular disease is the leading cause of death in America, you understand how this research can help improve the length and quality of people\'s lives.\"\r\n\r\nStudies have shown that Vitamin D also helps regulated key body functions such as blood pressure, inflammation and glucose control -- all related to heart disease -- and that deficiency of the vitamin is associated with musculoskeletal disorders.\r\n\r\nBrent Muhlestein, another co-author of the study and the director of cardiovascular research at Intermountain, stressed that because the study was only observational, definitive links between vitamin D deficiency and heart disease could not be established.\r\n\r\nHe called for randomized treatment trials of patients with insufficient levels of the vitamin.\r\n\r\nTwo thirds of the Utah population does not get enough vitamin D, according to the study.\r\n\r\nThe researchers chose Utah -- home to the Mormon church -- in part because the population consumes low levels of tobacco and alcohol, thus allowing them to focus the study on vitamin D\'s effects on the cardiovascular system, explained Muhlestein.\r\n\r\nThe patients were divided into three groups based on their vitamin D levels -- normal (over 30 nanograms per milliliter), low (15-30 ng/ml) or very low (less than 15 ng/ml) -- and were followed for a year to determine whether they developed some form of heart disease.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Vitamin D Deficiency Linked to Strokes, Heart Disease','','inherit','closed','closed','','1492-revision-v1','','','2019-06-13 06:12:53','2019-06-13 06:12:53','',1492,'https://www.drfields.com/uncategorized/1492-revision-v1/',0,'revision','',0),(1494,8,'2019-06-13 06:14:19','2019-06-13 06:14:19','<h3>Are The Supplements You\'re Taking Good Quality Supplements?</h3>\r\nWhile everyone loves a bargain, there are some problems with shopping for supplements using only price as a guideline. The difference in quality between different brands of supplements is often considerable. And taking quality supplements to help stay healthy during the COVID-19 pandemic is especially important!\r\n<h3>Coronavirus and Supplementation</h3>\r\n<em><strong>Plus, since people with low immunity are at a higher risk for coronavirus, then it would be a good idea to boost our immune systems in order to reduce our risk of acquiring it</strong></em>. Supplementation is one part of boosting our immunity. Following a healthy lifestyle, and eating a proper diet will help as well.\r\n\r\nThere are many micronutrients (vitamins, minerals, antioxidants, etc.) that research has shown are very beneficial to our health. And in particular, very beneficial to our immune systems.\r\n<h4><strong>Vitamin D Helps Reduce Viral Upper Respiratory Infections </strong></h4>\r\nVitamin D is associated with a reduction in the incidence of colds and influenza.  People with lower vitamin D levels have a higher the prevalence of upper respiratory tract infections from viruses like coronaviruses, rhinoviruses, and influenza. And a single high-dose of vitamin D, combined with antibiotics has been shown to improve and resolve pneumonia.1\r\n\r\nOther antioxidants, such as alpha lipoic acid, vitamin C, and vitamin E, if  already in the system, are effective for the treatment of Acute Respiratory Distress.\r\n\r\nGetting overly stressed increases our chance of getting sick. Keep in mind that the immune system is suppressed from excessive exercise, emotional stress, and lack of sleep.\r\n\r\n[caption id=\"attachment_4356\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4356\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Quality-Supplements-500x500.png\" alt=\"Quality Supplements\" width=\"500\" height=\"500\" /> <strong><em>Boost Your Immune System with Quality Supplements</em></strong>[/caption]\r\n<h4><strong>Various Flavonoid Antioxidants, Such as Quercetin and Grape Seed Extract, Demonstrate Anti-Viral Activity</strong></h4>\r\nFlavonoid antioxidants, such as quercetin and resveratrol exhibit anti-viral activity against common viruses that cause upper respiratory tract infections, including influenza A (H1N1) and B. And the compounds found in green tea extract, have shown anti-viral activity against the SARS coronavirus. <b>2</b> Since COVID-19 is essentially SARS2, it wouldn\'t be a bad idea to take these micronutrients.\r\n\r\nGrape seed extract exhibits potent antioxidant capacity, as well as anti‑bacterial, anti‑viral, anti‑carcinogenic, anti‑inflammatory and anti‑allergic actions. Respiratory viruses cause inflammation in the epithelial cells of the lungs (as does COVID-19), and increase the risk of respiratory distress and pneumonia. Grape seed extract inhibits the abnormal release of proinflammatory cytokines caused by the virus. <strong>3,4</strong>\r\n<h3>Boost Your Immune System with Quality Supplements</h3>\r\nAgain, since a low immunity increases the risk of infections, then it makes sense that boosting immunity will help you to remain healthy. And by boosting immunity, your immune system will be better able to deal with the onslaught of viruses and bacteria.\r\n\r\nIf you are not taking quality nutritional supplements, you might want to consider doing so, after first consulting with your own licensed health care professional.\r\n<h3>Choose Quality Supplements</h3>\r\nQuality pure raw ingredients and quality manufacturing of potent supplements make a huge difference in effectiveness. Not all supplements are created equally.\r\n\r\nWe want our supplements to help provide better healthy. When you choose your wine or ice cream, the only physiologic concern is taste. But what a difference between the quality of a cheap product and a good one. Compare the taste of a premium ice cream to the cheap store brand. Compare inexpensive wine to Lafite Rothschild. It should be obvious that the difference between the quality of supplements should be at least as great.\r\n<h4><em>Quality and Bioavailability Are Important</em></h4>\r\nBioavailability has to do with how well the supplement is utilized by the body. There is gasoline in coal. But you can’t just run your car on it. Similarly, there are ingredients listed on a supplement’s label that are as useless to your body as coal is to your automobile.\r\n\r\nWhat about the quality of components? Take calcium, for example. Oyster shell has calcium, but the body can’t use it (just like your car can’t use the gasoline in coal). Calcium carbonate is cheap, but is not well absorbed. Calcium citrate is much more expensive than the oyster shell or the carbonate. A high quality supplement will use the citrate, a poor one will use oyster shell. There are similar quality issues for just about every vitamin and herb.\r\n<h4><em>Read the Label on Supplements</em></h4>\r\nMany companies don’t actually produce their own vitamins, and they don’t test what they buy. Without testing, you can be lied to about the content of the product. Second, by the time the product changes hands several times, anywhere along the line someone can substitute cheaper or even phony ingredients and not be held accountable. The product can be contaminated when it changes hands. Familiarize yourself with ingredients, and read the label.\r\n<h4><em>Do Your Research</em></h4>\r\nAre the products tested for quality or for contaminants? Where did the materials come from? Most of the botanicals purchased in the US come from the Far East. There are manufacturing practices in some Third World countries that would surprise many Americans.\r\n\r\nHow is the tablet or capsule made? Bioavailability can be affected by something as simple as how the tablet is made. Many manufacturers use inert ingredients that interfere with the absorption of the nutrients. Even capsules can contain inert ingredients that interfere with absorption.\r\n\r\nThere’s a lot to know when buying supplements and herbs. Educate yourself about the product quality, and realize that self-treatment with bargain basement supplements is not a good idea.\r\n<h3>A Combination Approach For Staying Healthy</h3>\r\nFinally, just taking even quality nutritional supplements is not sufficient. We all need to eat well, get regular restorative sleep, reduce stress, exercise, maintain a healthy weight, not smoke, and use alcohol in moderation. All of these factors affect your immune system’s ability to keep you healthy. Now, as always, it is important to try to follow all of these recommendations as much as possible in order to stay healthy.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Slow S, et al. Effect of adjunctive single high-dose vitamin D3 on outcome of community-acquired pneumonia in hospitalised adults: The VIDCAPS randomised controlled trial. Sci Rep. 2018 Sep 14;8(1):13829.</li>\r\n 	<li>Park HR, et al. Synthesis and antiviral evaluation of 7-O-arylmethylquercetin derivatives against SARS-associated coronavirus (SCV) and hepatitis C virus (HCV). Arch Pharm Res. 2012 Jan;35(1):77-85.</li>\r\n 	<li>Kim SJ, et al. Pretreatment with a grape seed proanthocyanidin extract downregulates proinflammatory cytokine expression in airway epithelial cells infected with respiratory syncytial virus. Mol Med Rep. 2019 Apr;19(4):3330-3336.</li>\r\n 	<li>McNamara, Ladd. \"Covid-19fighting fear and the coronavirus pandemic with precautions and quality supplements.\" <i>medRxiv</i>(2020).</li>\r\n</ol>','Quality Supplements and COVID-19','','publish','open','closed','','quality-supplements-and-co','','','2020-12-18 00:02:22','2020-12-18 00:02:22','',0,'https://www.drfields.com/?p=1494',0,'post','',0),(1495,8,'2019-06-13 06:14:19','2019-06-13 06:14:19','While everyone loves a bargain, there are some problems with shopping for supplements using only price as a guideline. The difference in quality between different brands of supplements is often considerable. The supplement quality issue alone makes in important that you get professional help with your nutritional supplementation.\r\n\r\nHerbs, vitamins and minerals are meant to be utilized by the body, to help with physiology and biochemistry. Think of wine or ice cream. The only physiologic concern with these products is taste, but what a difference between the quality of a cheap product and a good one. Compare the taste of a premium ice cream to the cheap store brand. Compare inexpensive wine to Lafite Rothschild. It should be obvious that the difference between the quality of vitamins and herbs should be at least as great.\r\n\r\nQuality and bioavailability are important. Bioavailability has to do with how well the supplement is utilized by the body. There is gasoline in coal, you just can’t run your car on it. Similarly, there are ingredients listed on a supplement’s label that are as useless to your body as coal is to your automobile.\r\n\r\nWhat about the quality of components? Take calcium, for example. Oyster shell has calcium, but the body can’t use it (just like your car can’t use the gasoline in coal). Calcium carbonate is cheap, but is not well absorbed. Calcium citrate is much more expensive than the oyster shell or the carbonate. A high quality supplement will use the citrate, a poor one will use oyster shell. There are similar quality issues for just about every vitamin and herb.\r\n\r\nMany companies don’t actually produce their own vitamins, and they don’t test what they buy. Without testing, you can be lied to about the content of the product. Second, by the time the product changes hands several times, anywhere along the line someone can substitute cheaper or even phony ingredients and not be held accountable. The product can be contaminated when it changes hands. Sometimes the label claims are fraudulent.\r\n\r\nAre the products tested for quality or for contaminants? Where did the materials come from? Most of the botanicals purchased in the US come from the Far East. There are manufacturing practices in some Third World countries that would surprise many Americans.\r\n\r\nHow is the tablet or capsule made? Bioavailability can be affected by something as simple as how the tablet is made. Many manufacturers use inert ingredients that interfere with the absorption of the nutrients. Even capsules can contain inert ingredients that interfere with absorption.\r\n\r\nThere’s a lot to know when buying supplements and herbs. When you learn about product quality, they will realize that self-treatment with bargain basement supplements is not a good idea.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n','Is it a Good Supplement','','inherit','closed','closed','','1494-revision-v1','','','2019-06-13 06:14:19','2019-06-13 06:14:19','',1494,'https://www.drfields.com/uncategorized/1494-revision-v1/',0,'revision','',0),(1496,8,'2019-06-13 06:15:02','2019-06-13 06:15:02','<h3><img class=\"alignleft size-full wp-image-1142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Healthy-Breakfast.jpg\" alt=\"Healthy Breakfast\" width=\"200\" height=\"300\" />Protein Foods and Our Health</h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nNo matter our age, an intake of high-quality protein foods is necessary in adequate amounts to maintain health. Protein intake is necessary for the growth, development, and maintenance of skeletal muscle tissue.\r\n\r\nSkeletal muscle helps us to be physically strong. And building muscle over the years also helps to safeguard against the muscle mass decline that results with age. Both physical activity and dietary factors, such as protein intake, influence growth of muscle mass.  And many protein recommendations, like the RDA, are only set to cover basic needs. But higher protein intake might be necessary for optimizing muscle mass.(1)\r\n<h3>Eat A Variety of High Quality Protein Foods</h3>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nConsuming a variety of high quality protein foods to ensure a sufficient supply of amino acids for lean mass and an overall healthy diet quality (2). And many have chosen to get their protein from plant-based sources. \"Indeed, there has been a shift toward plant-based dietary patterns within dietary guidelines to presumably maximize population health benefits and to support environmental sustainability \"(3). Studies have shown that minimizing red meat consumption is favorable to reduce disease the risk of type 2 diabetes, cardiovascular disease, and other conditions. (4,5).\r\n<h3>Plant-Based Diets</h3>\r\nAre plant based diets healthier? Interestingly, when compared with regular meat-eaters, those who eat lower quantities of meat, and non-meat-eaters were younger, had a higher education level, a lower socio-economic status, were less likely to smoke and consume alcohol, had higher levels of physical activity, a a lower BMI (6).\r\n<h4>Protein for Breakfast</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nBy eating a breakfast high in protein, not only increases satiety and reduces hunger throughout the day, but it reduces the brain signals controlling food motivation and reward-driven eating behavior.\r\n<h4><em>What Do Researchers Say About Eating Breakfast?</em></h4>\r\nHeather J. Leidy, from University of Missouri (Missouri, USA), and colleagues assessed physiological hunger and satiety by measuring perceived appetite sensations and hormonal markers in combination with psychological reward-driven motivation to eat, using functional MRI imaging (fMRI) to identify brain activation in specific regions related to food motivation and reward.(7)\r\n<h4>Breakfast Skipping Is Linked to Unhealthy Snacking and Weight Gain</h4>\r\nThe researchers focused on teenagers, who often skip breakfast. Interestingly, breakfast skipping has been strongly associated with unhealthy snacking, overeating (especially at night), weight gain and obesity. For three weeks, the teens either continued to skip breakfast or consumed 500-calorie breakfast meals containing cereal and milk (which contained normal quantities of protein) or higher protein meals prepared as Belgium waffles, syrup and yogurt. At the end of each week, the volunteers completed appetite and satiety questionnaires. Right before lunch, the volunteers completed a brain scan, using fMRI, to identify brain activation responses.\r\n\r\nCompared to breakfast skipping, both breakfast meals led to increased fullness and reductions in hunger throughout the morning. fMRI results showed that brain activation in regions controlling food motivation and reward was reduced prior to lunch time when breakfast was consumed in the morning. Additionally, the higher protein breakfast led to even greater changes in appetite, satiety and reward-driven eating behavior compared to the normal protein breakfast. The team concluded, “The addition of breakfast led to alterations in brain activation in regions previously associated with food motivation and reward with additional alterations following the higher-protein breakfast.”(7)\r\n<h3>Choose Fresh, Non-Processed Food</h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nWhether you are a meat eater or not, a healthy eating pattern will include a variety of high-quality protein foods throughout the day. And staying away from processed and sugary foods is also encouraged. Instead, try to stick to fresh, non-processed foods when choosing your protein food sources for a healthier you.\r\n\r\n</div>\r\nWant more information on healthy eating? Read our article about <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">Fat Fighting Foods</a> by clicking <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">here.</a>\r\n\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>References</h3>\r\n1Burd, Nicholas A., et al. \"Dietary protein quantity, quality, and exercise are key to healthy living: a muscle-centric perspective across the lifespan.\" <i>Frontiers in nutrition</i> 6 (2019): 83.\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n2Phillips SM, Fulgoni VL III, Heaney RP, Nicklas TA, Slavin JL, Weaver CM. Commonly consumed protein foods contribute to nutrient intake, diet quality, and nutrient adequacy. Am J Clin Nutr. (2015) 101:1346S−52S. doi: 10.3945/ajcn.114.084079\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n3Committee DGA. Scientific Report of the 2015 Dietary Guidelines Advisory Committee: Advisory Report to the Secretary of Health and Human Services and the Secretary of Agriculture. U.S. Department of Agriculture. Washington, DC (2015).\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n4Micha R, Wallace Sarah K, Mozaffarian D. Red and processed meat consumption and risk of incident coronary heart disease, stroke, and diabetes mellitus. Circulation. (2010) 121:2271–83. doi: 10.1161/CIRCULATIONAHA.109.924977\r\n\r\n5Pan A, Sun Q, Bernstein AM, Manson JE, Willett WC, Hu FB. Changes in red meat consumption and subsequent risk of type 2 diabetes mellitus: three cohorts of US men and womenred meat consumption and type 2 diabetes riskred meat consumption and type 2 diabetes risk. JAMA Internal Med. (2013) 173:1328–35. doi: 10.1001/jamainternmed.2013.6633\r\n\r\n6Papier, Keren, et al. \"Comparison of major protein-source foods and other food groups in meat-eaters and non-meat-eaters in the EPIC-Oxford cohort.\" <i>Nutrients</i> 11.4 (2019): 824.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nHeather J. Leidy, Rebecca J. Lepping, Cary R. Savage, Corey T. Harris.” Neural Responses to Visual Food Stimuli After a Normal vs. Higher Protein Breakfast in Breakfast-Skipping Teens: A Pilot fMRI Study.” Obesity, 5 May 2011.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Protein Foods','','publish','open','closed','','protein-foods','','','2020-12-16 01:57:10','2020-12-16 01:57:10','',0,'https://www.drfields.com/?p=1496',0,'post','',0),(1497,8,'2019-06-13 06:15:02','2019-06-13 06:15:02','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Healthy-Breakfast.jpg\" alt=\"Healthy Breakfast\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-1142\" /><strong>Protein-Rich Breakfast Prompts Healthy Brain Signals</strong>\r\n\r\nBy eating a breakfast high in protein, not only does one increase satiety and reduce hunger throughout the day, but it reduces the brain signals controlling food motivation and reward-driven eating behavior. Heather J. Leidy, from University of Missouri (Missouri, USA), and colleagues assessed physiological hunger and satiety by measuring perceived appetite sensations and hormonal markers in combination with psychological reward-driven motivation to eat, using functional MRI imaging (fMRI) to identify brain activation in specific regions related to food motivation and reward. The researchers focused on teenagers, who often skip breakfast:  breakfast skipping has been strongly associated with unhealthy snacking, overeating (especially at night), weight gain and obesity.  For three weeks, the teens either continued to skip breakfast or consumed 500-calorie breakfast meals containing cereal and milk (which contained normal quantities of protein) or higher protein meals prepared as Belgium waffles, syrup and yogurt. At the end of each week, the volunteers completed appetite and satiety questionnaires. Right before lunch, the volunteers completed a brain scan, using fMRI, to identify brain activation responses. Compared to breakfast skipping, both breakfast meals led to increased fullness and reductions in hunger throughout morning. fMRI results showed that brain activation in regions controlling food motivation and reward was reduced prior to lunch time when breakfast was consumed in the morning.  Additionally, the higher protein breakfast led to even greater changes in appetite, satiety and reward-driven eating behavior compared to the normal protein breakfast. The team concludes that: “The addition of breakfast led to alterations in brain activation in regions previously associated with food motivation and reward with additional alterations following the higher-protein breakfast.”\r\n\r\nHeather J. Leidy, Rebecca J. Lepping, Cary R. Savage, Corey T. Harris.” Neural Responses to Visual Food Stimuli After a Normal vs. Higher Protein Breakfast in Breakfast-Skipping Teens: A Pilot fMRI Study.”  Obesity, 5 May 2011.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Healthy Breakfast','','inherit','closed','closed','','1496-revision-v1','','','2019-06-13 06:15:02','2019-06-13 06:15:02','',1496,'https://www.drfields.com/uncategorized/1496-revision-v1/',0,'revision','',0),(1498,8,'2019-06-13 06:16:35','2019-06-13 06:16:35','<h1>Body Cleansing Foods</h1>\r\n<img class=\"alignleft size-full wp-image-1144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Body-Cleansing-Foods.jpg\" alt=\"Body Cleansing Foods\" width=\"200\" height=\"300\" />The body can do a great job at getting rid of toxins. And we can help it by providing the right foods to do that. Body cleansing foods help your body cleanse itself. Simple as that; eat more of these and your body does its own internal “cleaning,\" Food is really your best medicine.\r\n\r\nThe liver is a big part of the cleansing process. It is essential for proper body functioning, as it purifies toxins, and produces the necessary digestive substances. Plus, it stores the vitamins and minerals the body needs for distribution throughout the body.1 Eating overly processed and fried foods overstresses the liver.  As do environmental pollutants.\r\n<h3>Detox with Body Cleansing Foods</h3>\r\nYou can detox or remove toxic substances from the body when you eat a healthier diet. Here are some nourishing foods that can promote a healthier liver and a healthier body. These foods cleanse the body’s detoxification organs including the liver, intestines, kidneys, and skin, preventing harmful toxic buildup.\r\n\r\nHelp ward off the harmful effects of pollution, food additives, second-hand smoke, and other toxins with delicious fruits, vegetables, nuts, oils, and beans (eating organic whenever possible is always the best way to go).\r\n<h2>List of Body Cleansing Foods</h2>\r\n<h3><strong>Apples</strong></h3>\r\nApples are high in pectin, a type of soluble fiber that helps remove toxins from the digestive tract helping to eliminate toxic build up while cleanse the intestines. It also binds to cholesterol and heavy metals in the body.\r\n<h3><strong>Avocados</strong></h3>\r\nWe rarely think of avocados as a cleansing food but these nutritional powerhouses and dense super foods lower cholesterol and dilate blood vessels while blocking artery-destroying toxicity. Avocados contain a nutrient called glutathione, which blocks at least thirty different carcinogens and is necessary for the liver to detoxify harmful toxins and synthetic chemicals.\r\n\r\n<strong>Beets</strong>\r\n\r\nTime to whip up some delicious borscht soup since its main ingredient, beets, contain a unique mixture of natural plant compounds that make them superb blood purifiers and liver cleansers. Beets protect bile ducts in the liver from damage from toxins. They are high in potassium, magnesium, fiber, phosphorous, iron, and vitamins A, B, C, and folic acid. They can also be used as a natural energy source that is better for you than caffeine. Want a great duo to improve liver function? Then combine carrots and beets for a high amount of plant-flavonoids and beta-carotene.\r\n<h3><strong>Blueberries</strong></h3>\r\nTruly one of the most powerful healing foods, blueberries contain natural aspirin that helps lessen the tissue-damaging effects of chronic inflammation, while lessening pain. Blueberries also act as antibiotics by blocking bacteria in the urinary tract, thereby helping to prevent infections. They also have antiviral properties and help to block toxins from crossing the blood-brain barrier to gain access to the delicate brain.\r\n<h3><strong>Cabbage</strong></h3>\r\nCabbage contains numerous anticancer and antioxidant compounds and helps the liver break down excess hormones. Cabbage also cleanses the digestive tract and neutralizes some of the damaging compounds found in cigarette smoke (and second-hand smoke). It also strengthens the liver’s ability to detoxify. Try eating more kimchi, coleslaw, cabbage soup, and sauerkraut.\r\n<h3><strong>Celery and Celery Seeds</strong></h3>\r\nCelery and celery seeds are excellent blood cleansers and contain many different anti-cancer compounds that help detoxify cancer cells from the body. Celery seeds contain over twenty anti-inflammatory substances. It is particularly good for detoxifying substances found in cigarette smoke.\r\n<h3><strong>Cranberries</strong></h3>\r\nCleanse your body from harmful bacteria and viruses that may be lingering in your urinary tract with cranberries since they contain antibiotic and antiviral substances.\r\n<h3>Lemons and Limes</h3>\r\nTry drinking freshly squeezed lemon or lime juice first thing in the morning to stimulate the liver\'s production of bile, which pushes toxins out. It also helps to prevent gallstone buildup, promotes digestion, and liver function. Excellent liver detoxifiers, lemons and limes contain high amounts of vitamin C, a vitamin needed by the body to make an important substance called glutathione. Glutathione helps the liver detoxify harmful chemicals. Add a squeeze of fresh lemon juice (not the bottled variety) to pure water to support your cleansing efforts on a daily basis.\r\n<h3><strong>Flaxseeds and Flaxseed Oil</strong></h3>\r\nLoaded with essential fatty acids, particularly the Omega-3s, flaxseeds and flaxseed oil are essential for many cleansing functions throughout the body.\r\n<h3><strong>Garlic</strong></h3>\r\nEat garlic to cleanse harmful bacteria, intestinal parasites and viruses from your body, especially from the blood and intestines. It also helps cleanse build-up from the arteries and has anti-cancer and antioxidant properties that help detoxify the body of harmful substances. Additionally, garlic assists with cleansing the respiratory tract by expelling mucous build-up in the lungs and sinuses. Garlic aids the liver in flushing out toxins too. And it\'s sulfur compounds activate liver enzymes. For the health benefits, choose only fresh garlic, not garlic powder, which has virtually none of the above properties.\r\n<h3><strong>Grapefruit</strong></h3>\r\nAdd a ruby red grapefruit to your breakfast to benefit from pectin fiber that binds to cholesterol, thereby cleansing the blood. Pectin also binds to heavy metals and helps escort them out of the body. It also has antiviral compounds that cleanse harmful viruses out of the body. Grapefruit is an excellent intestinal and liver detoxifier, and is rich in Vitamin C.\r\n<h3><strong>Kale</strong></h3>\r\nSteam some kale to benefit from its powerful anti-cancer and antioxidant compounds that help cleanse the body of harmful substances. It is also high in fiber, which helps cleanse the intestinal tract. Like cabbage, kale helps neutralize compounds found in cigarette smoke and strengthens liver cleansing.\r\n<h3><strong>Legumes</strong></h3>\r\nAdd a handful of cooked beans to your next meal since they loaded with fiber that helps lower cholesterol, cleanses the intestines, and regulates blood sugar levels. Legumes also help protect the body against cancer.\r\n<h3><strong>Seaweed</strong></h3>\r\nSeaweed could be the most underrated vegetable in the western world. Studies at McGill University in Montreal showed that seaweeds bind to radioactive waste in the body. Seaweed also binds to heavy metals to help eliminate them from the body. In addition, they are powerhouses of minerals and trace minerals.\r\n<h3><strong>Watercress</strong></h3>\r\nIf you haven’t tried watercress add this delicious green to your next sandwich since it increases detoxification enzymes and acts on cancer cells in the body. In a study at the Norwich Food Research Centre in the United Kingdom, smokers who were given 170 grams of watercress per day eliminated higher than average amounts of carcinogens in their urine, thereby eliminating them from their body.\r\n<h3>Eat a Variety of Fresh Fruit and Vegetables As Body Cleansing Foods</h3>\r\nEating a variety of fresh fruits and vegetables assists with detoxifying harmful substances from your body. So what are you waiting for? Who knew cleansing could taste so good.\r\n\r\nWant more ideas on using food to promote health. Read our article on <em>\"Fat Fighting Foods\"</em> by clicking <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">here</a>.\r\n\r\n1 Thilagavathi, T., et al. \"Foods That Cleanses The Liver.\" <i>Biotica Research Today</i> 2.5 Spl. (2020): 300-302.','Body Cleansing Foods','','publish','open','closed','','body-cleansing-foods','','','2020-12-05 02:48:52','2020-12-05 02:48:52','',0,'https://www.drfields.com/?p=1498',0,'post','',0),(1499,8,'2019-06-13 06:16:35','2019-06-13 06:16:35','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Body-Cleansing-Foods.jpg\" alt=\"Body Cleansing Foods\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-1144\" />Here is a list of foods that can help your body cleanse itself. Simple as that; eat more of these and your body does its own internal “cleaning”. Food is really your best medicine.\r\n\r\nThese foods cleanse the body’s detoxification organs like the liver, intestines, kidneys, and skin, preventing harmful toxic buildup. Help ward off the harmful effects of pollution, food additives, second-hand smoke, and other toxins with delicious fruits, vegetables, nuts, oils, and beans (eating organic whenever possible is always the best way to go).\r\n\r\n<strong>Apples.</strong> Because apples are high in pectin, a type of fiber that binds to cholesterol and heavy metals in the body, they help eliminate toxic build up and to cleanse the intestines.\r\n\r\n<strong>Avocados.</strong> We rarely think of avocados as a cleansing food but these nutritional powerhouses lower cholesterol and dilate blood vessels while blocking artery-destroying toxicity. Avocados contain a nutrient called glutathione, which blocks at least thirty different carcinogens while helping the liver detoxify synthetic chemicals.\r\n<br>\r\n<strong>Beets.</strong> Time to whip up some delicious borscht soup since its main ingredient, beets, contain a unique mixture of natural plant compounds that make them superb blood purifiers and liver cleansers.\r\n\r\n<strong>Blueberries.</strong> Truly one of the most powerful healing foods, blueberries contain natural aspirin that helps lessen the tissue-damaging effects of chronic inflammation, while lessening pain. Blueberries also act as antibiotics by blocking bacteria in the urinary tract, thereby helping to prevent infections. They also have antiviral properties and help to block toxins from crossing the blood-brain barrier to gain access to the delicate brain.\r\n\r\n<strong>Cabbage.</strong> Cabbage contains numerous anticancer and antioxidant compounds and helps the liver break down excess hormones. Cabbage also cleanses the digestive tract and neutralizes some of the damaging compounds found in cigarette smoke (and second-hand smoke). It also strengthens the liver’s ability to detoxify.\r\n\r\n<strong>Celery and Celery Seeds.</strong> Celery and celery seeds are excellent blood cleansers and contain many different anti-cancer compounds that help detoxify cancer cells from the body. Celery seeds contain over twenty anti-inflammatory substances. It is particularly good for detoxifying substances found in cigarette smoke.\r\n\r\n<strong>Cranberries.</strong> Cleanse your body from harmful bacteria and viruses that may be lingering in your urinary tract with cranberries since they contain antibiotic and antiviral substances.\r\n\r\n<strong>Flaxseeds and Flaxseed Oil.</strong> Loaded with essential fatty acids, particularly the Omega-3s, flaxseeds and flaxseed oil are essential for many cleansing functions throughout the body.\r\n\r\n<strong>Garlic.</strong> Eat garlic to cleanse harmful bacteria, intestinal parasites and viruses from your body, especially from the blood and intestines. It also helps cleanse build-up from the arteries and has anti-cancer and antioxidant properties that help detoxify the body of harmful substances. Additionally, garlic assists with cleansing the respiratory tract by expelling mucous build-up in the lungs and sinuses. For the health benefits, choose only fresh garlic, not garlic powder, which has virtually none of the above properties.\r\n\r\n<strong>Grapefruit.</strong> Add a ruby red grapefruit to your breakfast to benefit from pectin fiber that binds to cholesterol, thereby cleansing the blood. Pectin also binds to heavy metals and helps escort them out of the body. It also has antiviral compounds that cleanse harmful viruses out of the body. Grapefruit is an excellent intestinal and liver detoxifier.\r\n\r\n<strong>Kale.</strong> Steam some kale to benefit from its powerful anti-cancer and antioxidant compounds that help cleanse the body of harmful substances. It is also high in fiber, which helps cleanse the intestinal tract. Like cabbage, kale helps neutralize compounds found in cigarette smoke and strengthens liver cleansing.\r\n\r\n<strong>Legumes.</strong> Add a handful of cooked beans to your next meal since they loaded with fiber that helps lower cholesterol, cleanses the intestines, and regulates blood sugar levels. Legumes also help protect the body against cancer.\r\n\r\n<strong>Lemons.</strong> Excellent liver detoxifiers, lemons contain high amounts of vitamin C, a vitamin needed by the body to make an important substance called glutathione. Glutathione helps the liver detoxify harmful chemicals. Add a squeeze of fresh lemon juice (not the bottled variety) to pure water to support your cleansing efforts on a daily basis.\r\n\r\n<strong>Seaweed.</strong> Seaweed could be the most underrated vegetable in the western world. Studies at McGill University in Montreal showed that seaweeds bind to radioactive waste in the body. Seaweed also binds to heavy metals to help eliminate them from the body. In addition, they are powerhouses of minerals and trace minerals.\r\n\r\n<strong>Watercress.</strong> If you haven’t tried watercress add this delicious green to your next sandwich since it increases detoxification enzymes and acts on cancer cells in the body. In a study at the Norwich Food Research Centre in the United Kingdom, smokers who were given 170 grams of watercress per day eliminated higher than average amounts of carcinogens in their urine, thereby eliminating them from their body.\r\n\r\nEating a variety of fresh fruits and vegetables assists with detoxifying harmful substances from your body. So what are you waiting for? Who knew cleansing could taste so good.\r\n','Body Cleansing Foods','','inherit','closed','closed','','1498-revision-v1','','','2019-06-13 06:16:35','2019-06-13 06:16:35','',1498,'https://www.drfields.com/uncategorized/1498-revision-v1/',0,'revision','',0),(1500,8,'2019-06-13 06:17:29','2019-06-13 06:17:29','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignright size-full wp-image-955\" />\r\n\r\n\r\n<strong>Peter A. Fields, M.D., D.C.</strong>\r\n(Prolotherapy, Holistic Medicine, Sports Medicine)\r\nOrthoRegen<sup>®</sup>\r\n2730 Wilshire Blvd, Suite 220\r\nSanta Monica, CA 90403\r\nPhone: [phone]\r\nFax: 310-453-1212\r\n\r\n<strong>Eleanor Hynote, M.D.</strong>\r\n(Internal Medicine, Clinical Nutrition, Metabolism, and\r\nIntegrative Medicine)\r\nPhoenix Well Care\r\n3417 Valle Verde Drive\r\nNapa, CA 94558\r\nPhone: 707-255-4172\r\nFax: 707-255-2605\r\n\r\n<strong>James F. Lineback, M.D.</strong>\r\n(Internal and Chest Medicine, Chronic Disease\r\nManagement, Anti-Aging)\r\nNewport Longevity Medical Group\r\n400 Newport center Drive, Suite 401\r\nNewport Beach, CA 92660-5303\r\nPhone: 949-760-8600\r\nFax: 949-721-9121\r\n\r\n<strong>Robert E. Markison, M.D., F.A.C.S</strong>\r\n(Associate Clinical Professor of Surgery, UCSF\r\nHand Surgeon)\r\nMedical Arts Building\r\n2000 Van Ness Ave., Suite 204\r\nSan Francisco, can CA 94109-3017\r\nPhone: 415-929-5900\r\nFax: 415-929-5909\r\n\r\n<strong>Ron Rothenberg, M.D.</strong>\r\n(Anti-Aging)\r\nCalifornia Healthspan Institute\r\n320 Sante Fe Drive, Suite 211\r\nEncinitas, CA 92024\r\nToll-Free Number: 800-943-3331\r\nPhone: 760-635-1996\r\nFax: 760-635-1994\r\n\r\n<strong>Julian Whitaker, M.D.</strong>\r\n(Alternative Medicine, Anti-Aging)\r\nWhitaker Wellness Institute\r\n4321 Birch Street, Suite 100\r\nNewport Beach, CA 92660\r\nToll-Free Number: 800-488-1500\r\nPhone: 949-851-1550\r\n','Dr. Sinatra\'s List of Top Doctors List','','publish','open','closed','','dr-sinatras-list-of-top-doctors-list','','','2020-06-30 21:05:32','2020-06-30 21:05:32','',0,'https://www.drfields.com/?p=1500',0,'post','',0),(1501,8,'2019-06-13 06:17:29','2019-06-13 06:17:29','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignright size-full wp-image-955\" />\r\n\r\n\r\n<strong>Peter A. Fields, M.D., D.C.</strong>\r\n(Prolotherapy, Holistic Medicine, Sports Medicine)\r\nOrthoRegen\r\n2730 Wilshire Blvd, Suite 220\r\nSanta Monica, CA 90403\r\nPhone: 310-956-0569\r\nFax: 310-453-1212\r\n\r\n<strong>Eleanor Hynote, M.D.</strong>\r\n(Internal Medicine, Clinical Nutrition, Metabolism, and\r\nIntegrative Medicine)\r\nPhoenix Well Care\r\n3417 Valle Verde Drive\r\nNapa, CA 94558\r\nPhone: 707-255-4172\r\nFax: 707-255-2605\r\n\r\n<strong>James F. Lineback, M.D.</strong>\r\n(Internal and Chest Medicine, Chronic Disease\r\nManagement, Anti-Aging)\r\nNewport Longevity Medical Group\r\n400 Newport center Drive, Suite 401\r\nNewport Beach, CA 92660-5303\r\nPhone: 949-760-8600\r\nFax: 949-721-9121\r\n\r\n<strong>Robert E. Markison, M.D., F.A.C.S</strong>\r\n(Associate Clinical Professor of Surgery, UCSF\r\nHand Surgeon)\r\nMedical Arts Building\r\n2000 Van Ness Ave., Suite 204\r\nSan Francisco, can CA 94109-3017\r\nPhone: 415-929-5900\r\nFax: 415-929-5909\r\n\r\n<strong>Ron Rothenberg, M.D.</strong>\r\n(Anti-Aging)\r\nCalifornia Healthspan Institute\r\n320 Sante Fe Drive, Suite 211\r\nEncinitas, CA 92024\r\nToll-Free Number: 800-943-3331\r\nPhone: 760-635-1996\r\nFax: 760-635-1994\r\n\r\n<strong>Julian Whitaker, M.D.</strong>\r\n(Alternative Medicine, Anti-Aging)\r\nWhitaker Wellness Institute\r\n4321 Birch Street, Suite 100\r\nNewport Beach, CA 92660\r\nToll-Free Number: 800-488-1500\r\nPhone: 949-851-1550\r\n','Dr. Sinatra\'s List of Top Doctors List','','inherit','closed','closed','','1500-revision-v1','','','2019-06-13 06:17:29','2019-06-13 06:17:29','',1500,'https://www.drfields.com/uncategorized/1500-revision-v1/',0,'revision','',0),(1502,8,'2019-06-13 06:18:07','2019-06-13 06:18:07','<h3><strong>Dr. Fields Talks About the Dangers of Anti-Inflammatory Medicines: An I</strong><strong>nterview on KCAL/CBS </strong></h3>\r\nPeter A. Fields, MD, DC is an expert lecturer on Regenerative Orthopedic therapies and is a sought after speaker for his medical knowledge as both a chiropractor and medical doctor. And in this video, Dr. Fields gives some insight into some of the problems people can encounter when taking too many anti-inflammatories. Check out this <strong>Interview with Dr. Fields on KCAL/CBS About </strong><strong>the Dangers of Anti-Inflammatory Medicines.</strong>\r\n\r\nAnti-inflammatories, such as Ibuprofen and Naproxen, can result in the eventual destruction of a joint, because they actually interfere with the healing process. Dr. Fields discusses this in greater detail in this video.\r\n<h3>Watch the Video</h3>\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dangers of Anti-Inflammatory Medicines\'\"]\r\n<h3>Want More Information On Treating the Painful Joint Without NSAIDS?</h3>\r\nProlotherapy, a regenerative therapy, is a non-surgical treatment for joint and spine pain. The treatments are a natural method of assisting the body to heal injured or weakened joints, ligaments, and tendons. They actually boost the body’s own healing abilities.\r\n\r\nWith Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates healthy, strong tissues. And as the tendons and ligaments grow stronger and vibrant, the pain is alleviated, and motion is restored.\r\n\r\nIs a joint, ligament, or tendon is causing you pain or limited movement? Then Prolotherapy might be the right choice for you! Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendonitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h3>Visit Our Website</h3>\r\nFor more information about Prolotherapy and other Regenerative Orthopedic techniques, please visit our website at <a href=\"https://www.drfields.com\">drfields.com</a>, where you will find many, many articles that describe the various conditions effectively treated with Regenerative Orthopedics.\r\n\r\nSimilar to NSAID\'s, cortisone injections are another common treatment that can end up destroying the joint. Find out more by reading articles we have written about the effects of cortisone. Click <a href=\"https://www.drfields.com/?s=cortisone\">here</a>.\r\n<h3>We Would Be Happy to Answer Your Questions!</h3>\r\nIf you have any questions about Regenerative Orthopedic treatments like Prolotherapy, PRP, and Stem Cell Therapy, please contact us by calling <span class=\"wsm_phone\"><a title=\"phone\" href=\"tel:+310-453-1234\">310-453-1234</a>. </span>\r\n\r\n&nbsp;','Dr. Fields Talks About the Dangers of Anti-Inflammatory Medicines','','publish','open','closed','','dr-fields-talks-about-the-dangers-of-anti-inflammatory-medicines','','','2021-01-16 01:23:59','2021-01-16 01:23:59','',0,'https://www.drfields.com/?p=1502',0,'post','',0),(1503,8,'2019-06-13 06:18:07','2019-06-13 06:18:07','[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dangers of Anti-Inflammatory Medicines\'\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS <br>About \'Dangers of Anti-Inflammatory<br> Medicines\'</strong>','Dr. Fields interviewed on KCAL/CBS about \'Dangers of Anti-Inflammatory Medicines\'','','inherit','closed','closed','','1502-revision-v1','','','2019-06-13 06:18:07','2019-06-13 06:18:07','',1502,'https://www.drfields.com/uncategorized/1502-revision-v1/',0,'revision','',0),(1504,8,'2019-06-13 06:19:13','2019-06-13 06:19:13','[caption id=\"attachment_4393\" align=\"alignleft\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" title=\"Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'\" width=\"500\" height=\"500\" /> <strong>Dr. Fields interviewed on KCAL/CBS  about Prolotherapy</strong>[/caption]\r\n<h3>Dr. Fields Interviewed on KCAL/CBS about \'Prolotherapy\'</h3>\r\nPeter A. Fields, MD, DC is an expert lecturer on Regenerative Orthopedic therapies like Prolotherapy. And in this video, Dr. Fields explains one of the regenerative methods in this<strong> Interview on KCAL/CBS About \'Prolotherapy.\' </strong>One of his patients also describes her experience with Prolotherapy in this video, after coming to see Dr. Fields for the knee pain she was experiencing.\r\n\r\nIf you\'ve wondered what Prolotherapy is, watching this video is a great way to familiarize yourself with the treatment. And it\'s quick and interesting too! We hope you enjoy it.\r\n<h3>Want More Information about Prolotherapy?</h3>\r\nProlotherapy is a non-surgical treatment for joint and spine pain. The treatments are a natural method of assisting the body to heal injured or weakened joints, ligaments, and tendons. They actually boost the body\'s own healing abilities.\r\n\r\nWith Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. And as the tendons and ligaments grow stronger and vibrant, the pain is alleviated, and motion is restored.\r\n\r\nIs a joint, ligament, or tendon is causing you pain or limited movement? Then Prolotherapy might be the right choice for you! Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendonitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h3>Visit Our Website</h3>\r\nFor more information about Prolotherapy and other Regenerative Orthopedic techniques, please visit our website at <a href=\"https://www.drfields.com\">drfields.com</a>, where you will find many, many articles that describe the various conditions effectively treated with Regenerative Orthopedics.\r\n<h3>We Would Be Happy to Answer Your Questions!</h3>\r\nIf you have any questions, please contact us by calling <span class=\"wsm_phone\"><a title=\"phone\" href=\"tel:+310-453-1234\">310-453-1234</a>. </span>\r\n\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"About Prolotherapy\'\"]\r\n<strong> </strong>','Dr. Fields interviewed on KCAL/CBS about Prolotherapy','','publish','open','closed','','dr-fields-interviewed-on-kcal-cbs-about-prolotherapy-2','','','2021-01-14 01:53:29','2021-01-14 01:53:29','',0,'https://www.drfields.com/?p=1504',0,'post','',0),(1505,8,'2019-06-13 06:19:13','2019-06-13 06:19:13','[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"About Prolotherapy\'\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>','Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'','','inherit','closed','closed','','1504-revision-v1','','','2019-06-13 06:19:13','2019-06-13 06:19:13','',1504,'https://www.drfields.com/uncategorized/1504-revision-v1/',0,'revision','',0),(1506,8,'2019-06-13 06:20:08','2019-06-13 06:20:08','[caption id=\"attachment_1159\" align=\"alignright\" width=\"355\"]<img class=\"wp-image-1159 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Soft-Drinks.jpg\" alt=\"Soft Drinks Increase Risk for Disease\" width=\"355\" height=\"463\" /> <em>         <strong>Soft Drinks Increase Risk for Disease</strong></em>[/caption]\r\n<h3>Soft Drinks Increase Risk for Disease</h3>\r\nSugary beverages are the leading sources of added sugars in diets in the US. Did you know a single can of sugar-sweetened soda contains about the upper limit of the recommended 25 to 50 g per day?1 Sucrose-sweetened soft drinks increase the risk of disease and have been implicated for decades in cardiometabolic diseases.\r\n\r\nSugary beverages are any liquids sweetened with added sugars. And there are many of them like brown sugar, corn sweetener, corn syrup, dextrose, fructose, glucose, high-fructose corn syrup, and more.\r\n<h3>What kind of drinks are considered sugary beverages?</h3>\r\nExamples of sugary drinks include regular soda (not sugar-free), fruit drinks, sports drinks, energy drinks, sweetened waters, hot chocolate, chai, and coffee and tea beverages with added sugars.\r\n\r\nAll of this sugar has harmful effects. Sugary beverage intake boosts the risk for weight gain, <span class=\"ej-keyword\" data-value=\"metabolic syndrome\">metabolic syndrome</span>, <span class=\"ej-keyword\" data-value=\"type 2 diabetes\">type 2 diabetes</span>, coronary heart diseases, hypertension, and stroke. In one study, over 50,000 deaths from cardiac reasons were attributed to high sugar consumption. 2\r\n<h3>The Framingham Heart Study</h3>\r\nThe Framingham Heart Study released the results of an observational study that associates the consumption of sugary drinks to an increased risk for coronary vascular disease and with adverse changes in high‐density lipoprotein cholesterol and triglyceride concentrations and may contribute to the development of dyslipidemia.3\r\n<h4><em>Both Diet and Regular Soft Drinks Increase Disease Risk</em></h4>\r\nThe researchers expressed surprise that it did not matter whether the soft drink was diet or regular. \"We were struck by the fact that it didn’t matter…the association with increased risk was present.\" said Ramachandron Vasan, M.D., and senior author of the study and professor of medicine at Boston University. \"In those who drink one or more soft drinks daily, there was an association of an increased risk of developing the metabolic syndrome.\"\r\n<h4><em>Metabolic Syndrome</em></h4>\r\nMetabolic syndrome is a relatively new term to describe a cluster of cardiovascular disease and diabetes risk factors, including high blood pressure, excess waist circumference, high triglycerides, low HDL, and high fasting glucose.\r\n\r\nThe study, which included approximately 9000 person observations of middle-aged men and women, showed that those who consumed one or more soft drinks per day had a 48% percent increase in metabolic syndrome prevalence compared to those consuming less than one soft drink per day.\r\n\r\nThere has been some press regarding the potential health effects of high fructose corn syrup, a common but relatively new sweetener. However, the Framingham Heart Study shows an equal risk increase regardless of the soft drink\'s sweetener type.\r\n<h4><em>How Do Soft Drinks Cause Problems in the Body?</em></h4>\r\nTheories by the research group include that, potentially, the drinks\' high sweetness makes a person more prone to eat sweet items, that the caramel content in soft drinks may promote the development of advanced glycation end products. And potential complexes of sugars can then result in insulin resistance, which can cause inflammation in experimental models.\r\n\r\nThe journal, <i>Current Opinion in Clinical Nutrition &amp; Metabolic Care</i> says, \"sugary drinks enhance levels of circulating triglycerides and the accumulation of fat in the liver, muscle, and in the visceral fat depot.  Concerning the mechanisms for SSB to induce these metabolic aberrations? It is mainly <span class=\"ej-keyword\" data-value=\"fructose\">fructose</span> (free or as part of the sucrose molecule) that is the main driver of these metabolic aberrations presumably primarily by inducing lipid synthesis in and release from the liver.\"4\r\n<h3>Other observations noted in the Framingham Heart Study for people who drink at least one soft drink per day include:</h3>\r\n<ul>\r\n 	<li>31 percent greater risk of developing new-onset obesity (defined as a body mass index [BMI] of 30 kilograms/meter2 or more)</li>\r\n 	<li>30 percent increased risk of developing increased waist circumference.</li>\r\n 	<li>25 percent increased risk of developing high blood triglycerides or high fasting blood glucose.</li>\r\n 	<li>32 percent higher risk of having low HDL levels.</li>\r\n 	<li>A trend towards an increased risk of developing high blood pressure that was not statistically significant</li>\r\n</ul>\r\nThe Framingham Heart Study was established in 1948 to identify the common factors or characteristics that contribute to cardiovascular disease (CVD) by following its development over a long period of time in a large group of participants who had not yet developed overt symptoms of CVD or suffered a heart attack or stroke. The Framingham Heart Study is a joint project of the National Heart, Lung and Blood Institute, and Boston University.3\r\n<h3>Summary</h3>\r\n<h4><em>A recommended amount of soda consumption to maintain health has not been determined. But intake of soft drinks should generally be reduced as much as possible to improve health.Whatever the ultimate mechanism leading to increased risk, it seems like a wise recommendation would be to substitute water for soft drinks.</em></h4>\r\n<h3>References</h3>\r\n1World Health Organization. WHO Calls on Countries to Reduce Sugars Intake Among Adults and Children. <a class=\"references__uri\" href=\"http://www.who.int/mediacentre/news/releases/2015/sugar-guideline/en/\">http://www.who.int/mediacentre/news/releases/2015/sugar-guideline/en/</a>. Accessed December 30, 2020.\r\n\r\n2Micha R, Peñalvo JL, Cudhea F, Imamura F, Rehm CD, Mozaffarian D. <span class=\"references__article-title\">Association between dietary factors and mortality from heart disease, stroke, and type 2 diabetes in the United States. </span><span class=\"references__source\"><strong>JAMA</strong></span>. <span class=\"references__year\">2017</span>; <i>317</i>:912–924. DOI: 10.1001/JAMA.2017.0947.\r\n\r\n3Haslam, Danielle E., et al. \"Beverage consumption and longitudinal changes in lipoprotein concentrations and incident dyslipidemia in US adults: The Framingham Heart Study.\" <i>Journal of the American Heart Association</i> 9.5 (2020): e014083.\r\n\r\n4Richelsen, Bjørn. \"Sugar-sweetened beverages and cardio-metabolic disease risks.\" <i>Current Opinion in Clinical Nutrition &amp; Metabolic Care</i> 16.4 (2013): 478-484.','Soft Drinks Increase Risk for Disease','','publish','open','closed','','soft-drinks-increase-risk-for-disease','','','2020-12-31 20:43:28','2020-12-31 20:43:28','',0,'https://www.drfields.com/?p=1506',0,'post','',0),(1507,8,'2019-06-13 06:20:08','2019-06-13 06:20:08','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Soft-Drinks.jpg\" alt=\"Soft Drinks\" width=\"200\" height=\"261\" class=\"alignleft size-full wp-image-1159\" />The Framingham Heart Study released the results of an observational study that associates the consumption of soft drinks to an increased risk for coronary vascular disease. The results were published in the July, 2007 issue of Circulation: Journal of the American Heart Association.\r\n\r\nThe researchers expressed surprise at that fact that it did not matter whether the soft drink was diet or regular. \"We were struck by the fact that it didn’t matter…the association with increased risk was present.\" said Ramachandron Vasan, M.D., and senior author of the study and professor of medicine at Boston University. \"In those who drink one or more soft drinks daily, there was an association of an increased risk of developing the metabolic syndrome.\"\r\n\r\nMetabolic syndrome is a relatively new term to describe a cluster of cardiovascular disease and diabetes risk factors that include high blood pressure, excess waist circumference, high triglycerides, low HDL, and high fasting glucose.\r\n\r\nThe study, which included approximately 9000 person observations of middle aged men and women showed that those who consumed one or more soft drinks per day had a 48% percent increase of prevalence in metabolic syndrome as compared to those consuming less than one soft drink per day.\r\n\r\nThere has been some press regarding the potential health affects of high fructose corn syrup, a common but relatively new sweetener; however this study shows equal risk increase regardless of the sweetener type contained in the soft drink.\r\n\r\nTheories by the research group include that, potentially, the high sweetness of the drinks makes a person more prone to eat sweet items, that the caramel content in soft drinks may promote the development of advanced glycation end products, and potential complexes of sugars that can result in insulin resistance can cause inflammation in experimental models.\r\n\r\nWhatever the ultimate mechanism leading to increased risk, it seems all too simple to substitute water for soft drinks.\r\n\r\nOther observations for people who drink at least one soft drink per day include:\r\n<ul>\r\n 	<li>31 percent greater risk of developing new-onset obesity (defined as a body mass index [BMI] of 30 kilograms/meter2 or more)</li>\r\n 	<li>30 percent increased risk of developing increased waist circumference.</li>\r\n 	<li>25 percent increased risk of developing high blood triglycerides or high fasting blood glucose.</li>\r\n 	<li>32 percent higher risk of having low HDL levels.</li>\r\n 	<li>A trend towards an increased risk of developing high blood pressure that was not statistically significant</li>\r\n</ul>\r\nThe Framingham Heart Study was established in 1948 to identify the common factors or characteristics that contribute to CVD by following its development over a long period of time in a large group of participants who had not yet developed overt symptoms of CVD or suffered a heart attack or stroke. The Framingham Heart Study is joint project of the National Heart, Lung and Blood Institute and Boston University.','American Heart Association: Soft Drinks, Diet or Regular, Increase Risk for Heart Disease','','inherit','closed','closed','','1506-revision-v1','','','2019-06-13 06:20:08','2019-06-13 06:20:08','',1506,'https://www.drfields.com/uncategorized/1506-revision-v1/',0,'revision','',0),(1508,8,'2019-06-13 06:21:39','2019-06-13 06:21:39','<img class=\"alignleft size-full wp-image-1162\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Supplementation.jpg\" alt=\"Supplementation\" width=\"200\" height=\"300\" />Dietary supplements are used by more than half of adults. Most of these adults use supplements to improve or even to maintain their health. For example, women commonly supplement with calcium to help with bone health. And men may choose supplements that help with heart health or to lower cholesterol.1 Interestingly, people don\'t just take supplements because their doctor recommended them. Rather, over 75% choose supplementation on their own.1\r\n<h3>But Do Dietary Supplements Improve Health?</h3>\r\nA study in the medical journal <em>\" </em><i>JAMA Internal Medicine\" </i>says dietary supplements do improve health. \"Use of supplements was related to more favorable health and lifestyle choices.\"1\r\n\r\nAnd another study published in the Journal of the American Dietetic Association reported that a substantial proportion of people 51 years of age or older do not get enough vitamins and minerals from their diets alone and less than half take supplements.\r\n\r\nThe article states that older men and women who regularly take nutritional supplements are more likely to get adequate amounts of several vitamins and minerals than peers who do not take supplements. Analyzing data on 4,384 men and women aged 51 or older showed conclusively that those persons who took supplements were better nourished. 2\r\n<div class=\"page\" title=\"Page 4\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n<h3>Malnourishment Is Still A Problem, Even in Modern Society</h3>\r\nInterestingly, 1 in 4  adults who live in an urban community (≥55 years of age) was at nutrition risk. 3 That\'s a lot of people who are malnourished, especially considering the availability of so many programs. Compared to adequately nourished patients, malnourished patients are at increased risk of death and have fewer quality-adjusted years of life.3\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h3>Who Takes Dietary Supplements?</h3>\r\nMore people are taking supplements now than they did in years past. And most people take more than one type. What are the characteristics of people who take supplements? Dietary supplement users tend to be older, more physically active, non-smokers, educated, and with lower BMI compared with non-supplement users.1\r\n<h3>What Do People Take?</h3>\r\nMultivitamin-minerals (MVMs) were the most common type of dietary supplements reported.1 Omega-3 fatty acids and fish oils were the third most common supplement taken. And these were used most commonly for “heart health or to lower cholesterol.” 1\r\n\r\nThe studies indicate that certain dietary supplement ingredients may cause health problems if ingested in excess. For instance, too much iron consumption may be harmful to the heart, while too much zinc may impair immune function and decrease HDL (good cholesterol).\r\n\r\nKeep in mind the importance of not only using dietary supplements to ensure proper nutritional intake and health. But also remember to use reputable, high-quality products formulated based on scientific and clinical evidence.\r\n\r\n&nbsp;\r\n\r\n1Bailey, Regan L., et al. \"Why US adults use dietary supplements.\" <i>JAMA internal medicine</i> 173.5 (2013): 355-361.\r\n\r\n2Sebastian, Rhonda S., et al. \"Older adults who use vitamin/mineral supplements differ from nonusers in nutrient intake adequacy and dietary attitudes.\" <i>Journal of the American Dietetic Association</i> 107.8 (2007): 1322-1332.\r\n\r\n3Sulo, Suela, et al. \"Community-Dwelling Adults at Nutrition Risk: Characteristics in Relation to the Consumption of Oral Nutritional Supplements.\" <i>Journal of Primary Care &amp; Community Health</i> 11 (2020): 2150132720922716.','Do Dietary Supplements Improve Health?','','publish','open','closed','','dietary-supplements-in-older-adults','','','2020-12-01 02:08:35','2020-12-01 02:08:35','',0,'https://www.drfields.com/?p=1508',0,'post','',0),(1509,8,'2019-06-13 06:21:39','2019-06-13 06:21:39','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Supplementation.jpg\" alt=\"Supplementation\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-1162\" />A recent study published in the Journal of the American Dietetic Association, August 2007, reports that a substantial proportion of people 51 years of age or older do not get enough vitamins and minerals from their diets alone and that less than half take supplements.\r\n\r\nThe article states that older men and women who take nutritional supplements on a regular basis are more likely to get adequate amounts of several vitamins and minerals than peers who do not take supplements.\r\n\r\nAnalyzing data on 4,384 men and women aged 51 or older showed conclusively that those persons who took supplements were better nourished. However, only approximately 40% of the study population reported taking supplements daily.\r\n\r\nThe majority of supplement users (80%) were receiving enough vitamin A, B-6, B-12, C, and E; folate; iron; and zinc from diet and supplements. However, 20% of the supplement takers and nearly 100% of the non supplement takers had less folate, vitamin E, and magnesium than needed for their dietary requirements.\r\n\r\nUSDA statistics report that upwards of 60% of all Americans are deficient in Magnesium. Magnesium, arguably one of the most important mineral in the human body, is a cofactor in thousands of enzymatic processes and helps to regulate calcium homeostasis in the blood, serum and tissues. A deficiency in magnesium may expedite calcification of the soft tissues leading to severe health consequences\r\n\r\nThe reported deficiency in folate may be explained in part by examining the dates of collection of the data, 1994-1996, that was just prior to the 1998 introduction of fortified grain products with folate.\r\n\r\nThe report went on to comment that certain dietary supplement ingredient may cause health problems if ingested in excess, for instance: to much iron consumption may be harmful to the heart, while too much zinc may impair immune function and decrease HDL (good cholesterol).\r\n\r\nThe study further substantiates the importance of not only using dietary supplements to ensure proper nutritional intake and health, but also in using reputable products, high quality products that have been formulated based on scientific and clinical evidence.\r\n\r\nSOURCE: Journal of the American Dietetic Association, August 2007. Copyright Reuters','The Importance of Supplementation: Upwards of Half the Population 51 Years or Older do Not Get Adequate Nutrition from Their Diets','','inherit','closed','closed','','1508-revision-v1','','','2019-06-13 06:21:39','2019-06-13 06:21:39','',1508,'https://www.drfields.com/uncategorized/1508-revision-v1/',0,'revision','',0),(1510,8,'2019-06-13 06:22:13','2019-06-13 06:22:13','In September of 2007, Dr. Fields completed his 7th half Ironman triathlon in Santa Cruz, CA. This was his second half Ironman this year having completed one in June in Ensenada, Mexico. He also participated in two half Ironman races each year in 2005 and in 2006.\r\n\r\nA half <a href=\"https://www.drfields.com/about-the-athletic-doc/\">Ironman</a> Triathlon is a 1.2-mile swim, 56-mile bike and 13.1-mile run.\r\nThis distant race takes many hours a week of training. Swimming, biking and running must all be fit into each week of training in addition to daily stretching.\r\n\r\nOn most weekends, Dr Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr Fields enjoys the camaraderie of his training partners.\r\n\r\nIn total Dr. Fields has done over 35 triathlons. Outside of the above distance the other races were Olympic distant races (0.9 mile swim, 26 mile bike, 6.2 mile run).\r\n\r\nHe says that even with all the years of racing and training, he still enjoys the physical and mental aspects of training.\r\n\r\nTo help him stay in top physical shape, he utilizes a daily vitamin and <a href=\"https://www.drfields.com/Articles/Health-News/The-Importance-of-Supplementation-Upwards-of-Half-the-Population-51-Years-or-Older-do-Not-Get-Adequate-Nutrition-from-Their-Diets/\">supplement</a> regime as well as message therapy, chiropractic and of course, Prolotherapy for those injuries that just won’t heal. In addition, he gets plenty of sleep, drinks lots of water and eats mostly organic, unprocessed foods to help him maintain optimal health.\r\n\r\nHis motto is not only train hard but smart – as if your body depended on it.\r\n\r\n<img class=\"aligncenter size-full wp-image-1166\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/LATC-Logo.jpg\" alt=\"Latc Logo\" width=\"150\" height=\"88\" />\r\n<a style=\"margin: 0 auto; display: table;\" href=\"www.latriclub.com\" target=\"_blank\" rel=\"noopener noreferrer\">Sponsor of the Los Angeles Triclub</a>','Dr. Fields Completes His 7th Half Ironman Triathlon','','private','open','closed','','dr-fields-completes-his-7th-half-ironman-triathlon','','','2020-06-21 23:36:39','2020-06-21 23:36:39','',0,'https://www.drfields.com/?p=1510',0,'post','',0),(1511,8,'2019-06-13 06:22:13','2019-06-13 06:22:13','In September of 2007, Dr. Fields completed his 7th half Ironman triathlon in Santa Cruz, CA.  This was his second half Ironman this year having completed one in June in Ensenada, Mexico. He also participated in two half Ironman races each year in 2005 and in 2006.\r\n\r\nA half <a href=\"https://www.drfields.com/about-the-athletic-doc/\">Ironman</a> Triathlon is a 1.2-mile swim, 56-mile bike and 13.1-mile run.\r\nThis distant race takes many hours a week of training. Swimming, biking and running must all be fit into each week of training in addition to daily stretching.\r\n\r\nOn most weekends, Dr Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr Fields enjoys the camaraderie of his training partners.\r\n\r\nIn total Dr. Fields has done over 35 triathlons. Outside of the above distance the other races were Olympic distant races (0.9 mile swim, 26 mile bike, 6.2 mile run).\r\n\r\nHe says that even with all the years of racing and training, he still enjoys the physical and mental aspects of training.\r\n\r\nTo help him stay in top physical shape, he utilizes a daily vitamin and <a href=\"https://www.drfields.com/Articles/Health-News/The-Importance-of-Supplementation-Upwards-of-Half-the-Population-51-Years-or-Older-do-Not-Get-Adequate-Nutrition-from-Their-Diets/\">supplement</a> regime as well as message therapy, chiropractic and of course, Prolotherapy for those injuries that just won’t heal.  In addition, he gets plenty of sleep, drinks lots of water and eats mostly organic, unprocessed foods to help him maintain optimal health.\r\n\r\nHis motto is not only train hard but smart – as if your body depended on it.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/LATC-Logo.jpg\" alt=\"Latc Logo\" width=\"150\" height=\"88\" class=\"aligncenter size-full wp-image-1166\" />\r\n<a target=\"_blank\" style=\"margin: 0 auto;display: table;\" href=\"www.latriclub.com\" rel=\"noopener noreferrer\">Sponsor of the Los Angeles Triclub</a>','Dr. Fields Completes His 7th Half Ironman Triathlon','','inherit','closed','closed','','1510-revision-v1','','','2019-06-13 06:22:13','2019-06-13 06:22:13','',1510,'https://www.drfields.com/uncategorized/1510-revision-v1/',0,'revision','',0),(1512,8,'2019-06-13 06:23:02','2019-06-13 06:23:02','<h3><img class=\"alignleft size-full wp-image-1174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Napping.jpg\" alt=\"Napping\" width=\"200\" height=\"300\" />Workplace Napping May Boost Productivity</h3>\r\nDaytime nappers may be in luck. New research shows taking a midday nap, and workplace napping can actually improve productivity.\r\n<div class=\"page\" title=\"Page 7\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nSleep deficiency is a pretty prevalent problem. It results from short sleep duration, poorly timed sleep, or poor quality of sleep. \"The Institute of Medicine estimates that 50 to 70 million American adults have a chronic sleep disorder that hinders daily function and contributes to poor health.\"1\r\n<h3>Sacrificing Sleep Is Part of American Culture</h3>\r\nAmerican culture is all about productivity. And that is true even if sleep needs to be sacrificed. Why sleep a lot when you can get more done without it, right? But that\'s not what studies show. Sleep boosts our productivity because it helps our memory. \"Not only does a daytime nap appear to facilitate the formation of direct associative memories, but we now conclude that napping also facilitates the formation of relational memories, such that associations between items in memory acquired before sleep are strengthened and reorganized by sleep to be flexibly retrieved at a later time.\"2\r\n\r\nWe all know that young children need to nap. And some adults maintain that habit. But most don\'t. Work and life demand way too much time and make naps difficult to fit in. But other countries think differently. For instance, Spain and Italy incorporate mid-afternoon <em>siestas</em> and <em>riposos</em> into the workday schedules to allow for napping. Most Americans would balk at that idea!\r\n<h3 class=\"chapter-para\">But what is the cost of working in a state of fatigue?</h3>\r\n<p class=\"chapter-para\">\"According to a fatigue cost estimator from the National Safety Council and Brigham and Women’s Sleep Matters Initiative, the health-related cost of lost productivity is $136 billion a year.\"3 The result of sleep deficiency is reduced productivity in the workplace. Furthermore, it results in increased absenteeism, more workplace injuries, higher health care costs, and higher rates of car accidents during commutes. What does that mean to the employer? Likely higher costs in the long-run. Therefore, a short workplace nap to increase productivity and actually reduce costs in the long-run may be the smart way to go.</p>\r\n\r\n<h3 class=\"chapter-para\">Does Workplace Napping Only Help the Sleep Deprived?</h3>\r\n<p class=\"chapter-para\">Naps do not just benefit those who are sleep deprived. That\'s right! Even individuals who have rested sufficiently reap the rewards of improved alertness, performance, and productivity. Naps relieve stress too. And reduced stress results in added health benefits. Why push through fatigue when you could take a nap instead?</p>\r\n\r\n<h3>It\'s Really Doesn\'t Make You Tough To Be Sleep Deprived.</h3>\r\nAlthough many may be proud of \"having gotten only a few hours of sleep,\" it\'s really not that good for you. The habit of getting the recommended 7–9 hours of sleep per night is really your best bet. Plus, companies are integrating workplace naps as part of a change in workplace culture. In fact, some of the world’s largest companies are doing it. Google, Uber, Nike, Cisco, Zappos, Huffington Post, PricewaterhouseCoopers, Proctor &amp; Gamble, and Ben &amp; Jerry’s are some of them. Moreover, they are also providing the accommodations necessary to take better naps, like secluded rooms equipped with nap pods or beds.3\r\n<h3>Spread the Good News of the Benefits of Napping</h3>\r\n<p class=\"chapter-para\">Since workplace napping goes against the grain for many Americans, the challenge is to spread the news regarding how beneficial it really is.  Napping combats many physical, mental, and financial consequences of fatigue. Once Americans understand the health benefits, they will be more responsive to workplace napping as part of the scheduled workweek. Give them evidence, and they will be more prone to accept it.  \"Building and disseminating this evidence will push us closer to a society that values napping and works to remove the stigma of taking that mid-day snooze.\"3</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nIf workplace napping is not a part of your work environment, it may be coming soon! And you can try different things to make it a part of your life now. For example, napping may be as easy as closing your eyes for 5-15 minutes. You can lie down if possible. Or sit in your car. But also just sitting in your chair or leaning over a desk will work too. Be creative, and you can find a way.\r\n\r\nRedeker, Nancy S., et al. \"Workplace interventions to promote sleep health and an alert, healthy workforce.\" <i>Journal of Clinical Sleep Medicine</i> 15.4 (2019): 649-657.\r\n\r\n2Lau, H., M. A. Tucker, and W. Fishbein. \"Daytime napping: Effects on human direct associative and relational memory.\" <i>Neurobiology of learning and memory</i> 93.4 (2010): 554-560.\r\n\r\n3Alger, Sara E., Allison J. Brager, and Vincent F. Capaldi. \"Challenging the stigma of workplace napping.\" <i>Sleep</i> 42.8 (2019): zsz097.\r\n\r\n&nbsp;','Workplace Napping Boosts Productivity','','publish','open','closed','','workplace-napping-increase-productivity','','','2020-11-07 03:37:50','2020-11-07 03:37:50','',0,'https://www.drfields.com/?p=1512',0,'post','',0),(1513,8,'2019-06-13 06:23:02','2019-06-13 06:23:02','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Napping.jpg\" alt=\"Napping\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-1174\" />Published in Scientific America, February 12, 2007\r\n\r\nDaytime nappers may be in luck. New research shows that taking a midday nap may reduce the risk of fatal heart problems. Naps might benefit the heart by reducing stress, and jobs are a common source of stress. Exactly how stress is related to heart disease is uncertain. Some researchers think it may be related due to the unhealthy effects of stress hormones. Stress can contribute to heart disease by keeping people from exercising or causing them to over eat or smoke.\r\n\r\nMidday napping (siesta) is common in populations with low coronary mortality. This is the largest study to date on the health effects of napping. Researchers tracked 23,681 healthy Greek adults for an average of six years. The adults who napped for a half an hour at least three times a week, had a 37 percent lower risk of dying from heart problems and heart attacks than the adults who did not nap. Most of the adults who participated were in their 50\'s. Working men seemed to have the best result. Researchers in this study factored in diet, exercise, smoking and other habits that affect the heart. They concluded that taking a nap reduced the risk of heart problems and heart attacks. Siestas are not a common practice in the U.S. culture, but maybe they should be.\r\n\r\n<em><strong>Dr Fields’ comment: Napping may be as easy as closing your eyes for 5-15 minutes. You can lie down if possible. Or sit in your car. But also just sitting in your chair or leaning over a desk will work too. Be creative and even you can find a way. </strong></em>','Napping at the Office May Help Your Heart','','inherit','closed','closed','','1512-revision-v1','','','2019-06-13 06:23:02','2019-06-13 06:23:02','',1512,'https://www.drfields.com/uncategorized/1512-revision-v1/',0,'revision','',0),(1514,8,'2019-06-13 06:23:39','2019-06-13 06:23:39','<img class=\"alignleft size-full wp-image-1178\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Vitamin-D.jpg\" alt=\"Vitamin D\" width=\"200\" height=\"300\" />New research around vitamin D shows that those deficient in the vitamin may have more far-reaching implications than just bone health. A deficiency may even be implicated in a COVID‐19 prognosis.1 And the importance of healthy levels continues to expand.\r\n\r\nDeficiency of this vitamin has been widely known to cause rickets in children and osteomalacia in adults. Contraversely, those women with the highest intake have been able to reduce their fracture risk. Overall, supplementation has been shown to improve bone health in older subjects.2\r\n<h3>Vitamin D: More Than Bone Health Is Involved</h3>\r\nBut the effects of this vitamin are so much broader than bone health alone. According to researchers, vitamin D may reduce or eliminate <a href=\"/chronic-pain-overview/\">chronic pain</a> due to arthritis, fibromyalgia, chronic fatigue, headaches, and other types of pain.2\r\n\r\nMoreover, the vitamin can help with hypertension, psoriasis, several autoimmune diseases (including multiple sclerosis and rheumatoid arthritis), and reduced fractured bones incidence.\r\n\r\nResearch has also indicated that deficiency is linked to colon cancer and, more recently, to breast cancer. And researchers have found that individuals who had higher levels had a 50 percent lower risk of breast cancer than those with low levels. A deficiency has also been associated with a higher risk of a heart attack in men. And a recent study in the journal <em>JAMA Network Open</em> reported about its affect on our newest pandemic stating, \"In this single-center, retrospective cohort study, likely deficient vitamin D status was associated with increased COVID-19 risk.\"3\r\n<h3>Maintaining Adequate Levels</h3>\r\nMore than half of the people in the United States, and the rest of the world, are deficient in vitamin D. \"In order to maintain levels associated with the lowest risk of several types of cancers, cardiovascular diseases, autoimmune diseases, and all-cause mortality with minimal sunlight exposure, a person would require ingestion of 4000–6000 IUs of vitamin D daily, which would maintain serum vitamin D levels in the range of 20–40 ng/mL (50–100 nmol/L) and serum 25(OH)D levels in the range of 40–60 ng/mL (50–100 nmol/L).\"4\r\n\r\nThere are basically two types of Vitamin D. The natural one is D3 (cholecalciferol), which is similar to what your body makes when exposed to sunshine. The synthetic one (also made by plants) is vitamin D2 (ergocalciferol). In your body, both need to be converted to a more active form. Here is the catch: Vitamin D3 is converted 500 percent faster than vitamin D2.\r\nTherefore, Vitamin D3 is the preferred supplement.\r\n<h3>The Sunshine Vitamin</h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nVitamin D is best known as the sunshine vitamin and its best source is from sunrays. It is a fat-soluble vitamin that acts like a hormone in your body to help you absorb calcium. Your body makes it when your skin is exposed to sunlight, although you can also get a little  from fish and some fortified foods. However,, even with proper sun exposure and eating the right foods, one may become deficient in this important vitamin.\r\n\r\n</div>\r\n</div>\r\n</div>\r\nWhat level is optimal? Authors in the medical journal <a href=\"https://www.mdpi.com/2072-6643/12/7/2097/htm?fbclid=IwAR0W1FofI_w0VV11-tH0LwTiljf-h9lLvjI3vx2Wz-9mTlAJDc25on5IJ5w\"><em>Nutrients</em></a> report, \"Although it is still debatable what level of serum 25-hydroxyvitamin D is optimal, it is advisable to increase vitamin D intake and have sensible sunlight exposure to maintain serum 25-hydroxyvitamin D at least 30 ng/mL (75 nmol/L), and preferably at 40–60 ng/mL (100–150 nmol/L) to achieve the optimal overall health benefits of vitamin D. If tested, the optimal value that you’re looking for is 115-128 nmol/L (50-55 ng/ml).\"4\r\n\r\nKeeping your level in this range, and even erring toward the higher numbers in this range, is going to give you the most protective benefit.\r\n\r\nVitamin D supplements are generally safe to take. But be sure you speak with your healthcare provider first.\r\n\r\n1Munshi, Ruhul, et al. \"Vitamin D insufficiency as a potential culprit in critical COVID‐19 patients.\" <i>Journal of medical virology</i> (2020).\r\n\r\n2Martens, Pieter-Jan, Conny Gysemans, and Annemieke Verstuyf. \"Vitamin D’s Effect on Immune Function.\" <i>Nutrients</i>12.5 (2020): 1248.\r\n\r\n3Meltzer, David O., et al. \"Association of vitamin D status and other clinical characteristics with COVID-19 test results.\" <i>JAMA network open</i> 3.9 (2020): e2019722-e2019722.\r\n\r\n4Charoenngam, Nipith, and Michael F. Holick. \"Immunologic effects of vitamin D on human health and disease.\" <i>Nutrients</i>12.7 (2020): 2097.','Vitamin D: It’s Not Just For Bones Anymore','','publish','open','closed','','vitamin-d-its-not-just-for-bones-anymore','','','2020-11-04 23:44:12','2020-11-04 23:44:12','',0,'https://www.drfields.com/?p=1514',0,'post','',0),(1515,8,'2019-06-13 06:23:39','2019-06-13 06:23:39','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Vitamin-D.jpg\" alt=\"Vitamin D\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-1178\" />New research around vitamin D is showing that those deficient in the vitamin may have more far reaching implications than just bone health.\r\n\r\nAccording to researchers, vitamin D may help to reduce or eliminate <a href=\"/chronic-pain-overview/\">chronic pain</a> due to arthritis, fibromyalgia, chronic fatigue, headaches and other types of pain as well as help with hypertension, psoriasis, several autoimmune diseases (including multiple sclerosis and rheumatoid arthritis), and reduce the incidence of fractured bones.\r\n\r\nVitamin D also helps to maintain normal blood levels of calcium which may prevent or slow the progression of osteoporosis. In the Nurses Health Study, vitamin D intake was inversely associated with hip fracture risk compared with women with the lowest vitamin D intake. Women with the highest vitamin D intake reduced their fracture risk by 37 percent. Vitamin D supplementation has been shown to improve bone health in older subjects.\r\n\r\nResearch has also indicated that vitamin D deficiency is linked to colon cancer and more recently, to breast cancer. And after assessing data from two other studies, researchers found that individuals who had higher levels had a 50 percent lower risk of breast cancer than those with low levels. It also is associated with higher risk of heart attack in men, according to a report in the June 9, 2008 issue of Archives of Internal Medicine.\r\n\r\nResearchers also have determined that more than half of the people in the United States, and the rest of the world, are deficient in vitamin D. They also believe the currently recommended daily adequate intake of vitamin D – up to 600 IU per day – is outdated and too low. According to the study, most children and adults need at least 1000 IU per day, and persons with chronic musculoskeletal pain would benefit from 2000 IU or more per day of supplemental vitamin D.\r\n\r\nThere are basically two types of Vitamin D. The natural one is D3 (cholecalciferol), which is the same vitamin D your body makes when exposed to sunshine.   The synthetic one (also made by plants) is vitamin D2 (ergocalciferol). In your body, both need to be converted to a more active form. Here is the catch: Vitamin D3 is converted 500 percent faster than vitamin D2.\r\nTherefore, Vitamin D3 is the preferred supplement.\r\n\r\nVitamin D is a fat-soluble vitamin that acts like a hormone in your body to help you absorb calcium. Your body makes vitamin D when your skin is exposed to sunlight (which is the best source), although you can also get a little vitamin D from fish and some fortified foods. However even with proper sun exposure and eating the right foods, one may become deficient in vitamin D.\r\n\r\nIf tested, the optimal value that you’re looking for is 115-128 nmol/L (50-55 ng/ml).\r\nKeeping your level in this range, and even erring toward the higher numbers in this range, is going to give you the most protective benefit.\r\n\r\nVitamin D supplements are generally safe to take; just be sure you speak with your healthcare provider first.\r\n','Vitamin D: It’s Not Just For Bones Anymore','','inherit','closed','closed','','1514-revision-v1','','','2019-06-13 06:23:39','2019-06-13 06:23:39','',1514,'https://www.drfields.com/uncategorized/1514-revision-v1/',0,'revision','',0),(1516,8,'2019-06-13 06:24:18','2019-06-13 06:24:18','[caption id=\"attachment_4147\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4147\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Screen-Shot-2020-09-15-at-4.52.16-PM-500x260.png\" alt=\"Brain fitness\" width=\"500\" height=\"260\" /> <em>                                      Exercise boosts brain fitness</em>[/caption]\r\n<h3><strong>Exercise for Body and Brain Fitness</strong></h3>\r\nWe all know that exercise is good for the body. But did you know that new scientific evidence also confirms that exercise strengthens the brain? It sure does! In fact, moderate exercise nourishes the brain, improves our ability to learn, boosts mental performance, remodels the brain, and helps prevent the brain from aging. Exercise helps us to enjoy both body and brain fitness.\r\n\r\nScientists used to think the adult brain structure was fixed. They thought that no new cells could be made. And they thought the brain could not be altered in any way after adolescence.\r\n\r\n<strong>But exercise can change that!</strong> Physical activity can boost blood flow all through the body, even to the brain. And this boost of blood flow increases the ability of brain cells to connect with each other. Increased connectivity can occur by simply walking.\r\n\r\nAnd if you exercise more vigorously, like when running, faster reaction times and improved learning will result. Physical activity has been linked to a lower risk of the development of cognitive decline. That\'s because it is, in essence, a fertilizer for the brain. Exercise nourishes the brain, and improves attention, memory, and information processing. And exercise can even help reduce the risk of Parkinson\'s Disease.\r\n<h3><strong>What Does the Literature Say About Exercise and Parkinson\'s Disease?</strong></h3>\r\nA June 2020 article in <em>Frontiers in Aging Neuroscience</em> reports that \"Epidemiological studies of prospectively followed cohorts have shown a <strong>lower risk</strong> for later developing Parkinson\'s Disease in healthy people who report <strong>moderate to high levels of physical activity</strong>, and slower rates of motor and non-motor symptom progression in people with Parkinson\'s Disease who report higher baseline physical activity.\"1\r\n\r\n<strong>As you can see, the literature shows a direct benefit of exercise on the brain.</strong> Dementia is the most feared aspect of Parkinson’s Disease. But adults who engage in exercise during midlife, are able to significantly reduce the risks of dementia and cognitive impairment later in life.\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nThe <em>American College of Sports Medicine</em> recommends the following:<em> \"</em>Because Parkinson\'s Disease is a chronic and progressive disorder, an exercise program should be prescribed early when the individual is first diagnosed, should continue throughout life and should be reviewed and revised as the disease progresses. Exercise prescription should ultimately aim to slow the rate at which the signs of the disease progress, limit comorbidities, minimize complications associated with muscle disuse, and maintain the ability to live an independent life.\"<a href=\"https://www.revdesportiva.pt/files/para_publicar/Exercising_for_People_with_Parkinson_s_Disease_and.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4><em>Exercise reshapes the brain. </em></h4>\r\nWhen we don’t use our muscles, they atrophy. And the brain is no different. Boost the health of brain cells, stimulate the growth of new blood vessels in the brain, and encourage new neuronal connections through exercise.\r\n\r\nStart your day with exercise! Because exercise helps us to be fit in so many capacities. Are you a morning exerciser? If so, that\'s really great. Because exercising in the morning prepares you for the day by enhancing brain activity. And it also improves information retention, and fine-tunes your ability to react to the situations and stressors that come your way through the day. Exercise is so beneficial. True, it helps our body to be fit. But it also boosts brain fitness and reduces the risk of Parkinson\'s Disease.\r\n<ol>\r\n 	<li>Crotty, Grace F., and Michael A. Schwarzschild. \"Chasing Protection in Parkinson’s Disease: Does Exercise Reduce Risk and Progression?.\" <i>Frontiers in Aging Neuroscience</i> 12 (2020): 186.</li>\r\n 	<li>Corcos, Daniel M., and Elizabeth M. Skender. \"Exercising for People with Parkinson’s Disease and Their Support Group.\" <i>ACSM\'s Health &amp; Fitness Journal</i> 24.2 (2020): 5-7.</li>\r\n</ol>','Improve Brain Fitness and Reduce Parkinson\'s Risk with Exercise','','publish','open','closed','','exercise-improves-brain-fitness-and-reduces-parkinsons-disease-risk','','','2020-09-15 21:58:29','2020-09-15 21:58:29','',0,'https://www.drfields.com/?p=1516',0,'post','',0),(1517,8,'2019-06-13 06:24:18','2019-06-13 06:24:18','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sleeping.jpg\" alt=\"Sleeping\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-1181\" />By Tara Parker-Pope NY Times June 17, 2009\r\n\r\nMost people training for a race or sport focus on adding more miles, workouts or weight training to improve their fitness. But new research suggests that simply getting more sleep can improve athletic performance.\r\n\r\nThe small study included five members of the Stanford women’s tennis team. For two to three weeks, the athletes maintained their regular schedules, sleeping and working out as usual. They took part in sprinting and hitting drills to measure their performance. Then the players were told to extend their sleep to 10 hours a night for five to six weeks.\r\n\r\nAfter increasing sleep, the athletes performed better on all the drills. Sprinting drill times dropped on average to 17.56 seconds from 19.12 seconds. Hitting accuracy, measured by valid serves, improved to 15.61 serves, up from 12.6 serves, and a hitting depth drill improved to 15.45 hits, up from 10.85 hits.\r\n\r\nThe findings were presented last week at the Annual Meeting of the Associated Professional Sleep Societies. The study was small, and some of the improvement may have been the result of additional practice time. However, the size of the change suggests the athletes received a direct benefit from more sleep.\r\n\r\nThe study’s lead author, Cheri Mah, a researcher at the Stanford Sleep Disorders Clinic and Research Laboratory at Stanford University, said the athletes who took part in the study also felt better and realized for the first time the real effect sleep could have on performance.\r\n\r\nKatherine Hobson, who writes the “On Fitness” column for U.S. News and World Report, said she decided to hang up her running shoes and catch up on sleep during a recent vacation.\r\n\r\nI expected my first run back in Brooklyn to be a death march. Instead, I felt the best and went the fastest that I have in weeks. One possible explanation came to mind: I erased my chronic sleep debt on vacation, thanks to sleeping in as long as I wanted in the mornings and napping most afternoons, which made me extremely well rested when I took that run.\r\n\r\nOver at Runner’s World, Mark Remy notes that many runners focus on “carb-loading” before a race, but perhaps they should also try “sleep-loading.”\r\n\r\nWe runners obsess over speed work, long runs, tempo runs, hill runs, lactate threshold, resting heart rate, carbs, protein, recovery drinks, stretching, massage, ice baths, shoes, technical fabrics, gels, and about a hundred other variables.\r\n\r\nBut most of us, I bet, don’t give sleep a second thought. It’s crazy, if you think about it. How can we expect to run well if we can’t stop yawning?\r\n\r\nWhat do you think? Have you noticed a difference in your workouts depending on how much or how well you sleep?','To Improve Fitness, Try Sleep','','inherit','closed','closed','','1516-revision-v1','','','2019-06-13 06:24:18','2019-06-13 06:24:18','',1516,'https://www.drfields.com/uncategorized/1516-revision-v1/',0,'revision','',0),(1518,8,'2019-06-13 06:25:06','2019-06-13 06:25:06','<h3>Exercise Provides Health Benefits</h3>\r\n[caption id=\"attachment_4578\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4578 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Spinning-class-500x500.png\" alt=\"Exercise Is Good for You\" width=\"500\" height=\"500\" /> <strong>                                 Exercise Provides Health Benefits</strong>[/caption]\r\n\r\nWe all know that 30 minutes per day of strenuous exercise provides health benefits.  And studies show that higher levels of physical activity are linked to a remarkable number of health benefits. Recent <a href=\"https://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2019.305443\">Federal guidelines</a> from the Department of Health and Human Services1 have even made this official.1\r\n\r\nExercise also improves cognitive functioning, mental health, and memory; plus, it hinders the development of certain neurological conditions.2\r\n\r\nThe real question for most of us is how to find the time to exercise regularly and consistently. All we have is 24 hours each day to get done all the things we need to get done. Exercising often takes a back seat to work, shopping, cooking, cleaning, getting the kids ready for school, and ready for bed. And all of the other million-and-one little details that demand our attention every day.\r\n<h3>Finding the Time to Exercise</h3>\r\nMost of us have the motivation to exercise. We know exercise provides health benefits. Therefore, we want to do it and understand it\'s good for us. But when can we fit it in? A few hardy souls bite the bullet and get up at 5:00 AM - making more time in the day by getting less sleep. Others exercise at the end of a long day. But sometimes that\'s stressful and counterproductive. However they do it, many people make real efforts to exercise a few times each week.\r\n\r\nMost likely, over time,  our good intentions get stymied by our daily concerns. Moreover, deadlines and scheduling take precedence. And the most easy-to-jettison item on our to-do list, exercise, gets lost in the process. And, sooner rather than later, we\'re back to not exercising at all. Public health experts and policymakers have been struggling, too, with this apparent no-win situation.\r\n<h3>Short Bursts of Exercise Provides Health Benefits Too</h3>\r\nThe outcome is brand-new recommendations relating to short bursts of activity during the day. These three- to five-minute bursts have been studied and shown to provide real health benefits to real people under real-world circumstances.3\r\n\r\nInstead of taking coffee breaks at work, people are beginning to take activity breaks. And three to five minutes of climbing office building stairs or brisk walking outside the building or a quick series of calisthenics are all it takes. Six to ten such breaks fulfills the daily requirement of 30 minutes of exercise. Above all, no separately scheduled exercise time is necessary.\r\n\r\nYou\'re already at work, you\'re already taking breaks. So, the breaks become exercise breaks. And you get your exercise done. And you feel great for the entire day, due to bursts of endorphins occurring throughout the day.\r\n\r\nThese bursts of activity are also ideal for people working at home. Plus, they work for school children too. Studies in schools are showing increased attention spans and increased learning as a result of short bursts of intense physical activity.\r\n\r\nEveryone can do this. And everyone can have a workable system for getting the exercise they need.\r\n<h3><strong>Lean Muscle Mass</strong></h3>\r\nWe often hear that building \"lean muscle mass\" is one of the key benefits of strenuous exercise. The human body adapts to environmental stresses. And building lean muscle mass is an important adaptation. Moreover, lean muscle mass is a metabolic furnace. Muscle cells are high-energy cells that actually burn calories when your body is at rest.\r\n\r\nYour internal thermostat is turned up owing to your increased amount of lean muscle mass. And so you burn fat to fulfill these increased energy needs.\r\n\r\nLean muscle mass is not only energy-efficient, but it is also much more shapely than the pounds of fat it replaces. Lean muscle mass creates long lines, outlines, and bulk along your arms, torso, and legs. The result is a supple, shapely body, filled with energy and purpose.\r\n\r\n1Pate, Russell R., James F. Sallis, and Keshia M. Pollack Porter. \"Surveillance of Physical Activity: Actions Needed to Support New Federal Guidelines.\" (2020).\r\n\r\n2Much, How, and How Often is it Recommended. \"10 Neurological Benefits of Exercise.\" <i>Image</i> 10 (2020): 08-01.\r\n\r\n3Stamatakis, Emmanuel, et al. \"Untapping the Health Enhancing Potential of Vigorous Intermittent Lifestyle Physical Activity (VILPA): Rationale, Scoping Review, and a 4-Pillar Research Framework.\" <i>Sports Medicine</i> (2020): 1-10.\r\n\r\n3Vallance JK, et al: Maintenance of physical activity in breast cancer survivors after a randomized trial. Med Sci Sports Exerc 40(1):173-180, 2008.\r\n\r\n4Heckman GE, McKelvie RS: Cardiovascular aging and exercise in healthy older adults. Clin J Sport Med 18(6):479-485, 2008','Exercise Provides Health Benefits For All Ages','','publish','open','closed','','exercise-provides-health-benefits','','','2021-03-22 22:58:55','2021-03-22 22:58:55','',0,'https://www.drfields.com/?p=1518',0,'post','',0),(1519,8,'2019-06-13 06:25:06','2019-06-13 06:25:06','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Exercise-Energy.jpg\" alt=\"Exercise Energy\" width=\"200\" height=\"285\" class=\"alignleft size-full wp-image-1183\" />We all know that 30 minutes per day of strenuous exercise will provide many health benefits. Recent Federal guidelines from the Department of Health and Human Services1 have even made this official.\r\n\r\nThe real question for most of us is how to find the time to exercise regularly and consistently. All we have is 24 hours each day to get done all the things we need to get done. Exercising often takes a back seat to work, shopping, cooking, cleaning, getting the kids ready for school and ready for bed, and all the other million-and-one little details that demand our attention every day.\r\n\r\nMost of us have the motivation to exercise- we want to do it and we know it\'s important and good for us. But when to fit it in? A few hardy souls bite the bullet and get up at 5:00AM - making more time in the day by getting less sleep. Others exercise at the end of a long day, but sometimes that\'s stressful and counterproductive. However they do it, many people make real efforts to exercise a few times each week.\r\n\r\nMost likely - over time - our good intentions get stymied by our daily concerns. Deadlines and scheduling take precedence and the most easy-to-jettison item on our to-do list - exercise - gets lost in the process. And sooner rather than later we\'re back to not exercising at all. Public health experts and policy makers have been struggling, too, with this apparent no-win situation.\r\n\r\nThe outcome is brand-new recommendations relating to short bursts of activity during the day. These three- to five-minute bursts have been studied and shown to provide real health benefits to real people under real-world circumstances.\r\n\r\nInstead of taking coffee breaks at work, people are beginning to take activity breaks. Three to five minutes of climbing office building stairs or brisk walking outside the building or a quick series of calisthenics are all it takes. Six to ten such breaks fulfills the daily requirement of 30 minutes of exercise. No separately scheduled exercise time is necessary. You\'re already at work, you\'re already taking breaks. So the breaks become exercise breaks. And you get your exercise done. And you feel great for the entire day, due to bursts of endorphins occurring throughout the day.\r\n\r\nThese bursts of activity are also ideal for people working at home, as well as for school children. Studies in schools are showing increased attention spans and increased learning as a result of short bursts of intense physical activity.\r\n\r\nEveryone can do this; everyone can have a workable system for getting the exercise they need.\r\n\r\n<strong>Lean Muscle Mass</strong>\r\n\r\nWe often hear that building \"lean muscle mass\" is one of the key benefits of strenuous exercise. The human body adapts to environmental stresses, and building lean muscle mass is an important adaptation. Lean muscle mass is a metabolic furnace - muscle cells are high-energy cells that actually burn calories when your body is at rest.\r\n\r\nYour internal thermostat is turned up owing to your increased amount of lean muscle mass, and so you burn fat to fulfill these increased energy needs.\r\n\r\nLean muscle mass is not only energy efficient, it is also much more shapely than the pounds of fat it replaces. Lean muscle mass creates long lines, outlines, and bulk along your arms, torso, and legs. The result is a supple, shapely body, filled with energy and purpose.\r\n\r\n1U.S. Department of Health and Human Services: Physical Activity Guidelines for Americans. Washington, DC, DHHS, 2008.\r\n\r\n2Vallance JK, et al: Maintenance of physical activity in breast cancer survivors after a randomized trial. Med Sci Sports Exerc 40(1):173-180, 2008.\r\n\r\n3Heckman GE, McKelvie RS: Cardiovascular aging and exercise in healthy older adults. Clin J Sport Med 18(6):479-485, 2008\r\n','Bursts of Activity, Learn How Exercise Can Give You Energy','','inherit','closed','closed','','1518-revision-v1','','','2019-06-13 06:25:06','2019-06-13 06:25:06','',1518,'https://www.drfields.com/uncategorized/1518-revision-v1/',0,'revision','',0),(1520,8,'2019-06-13 06:26:33','2019-06-13 06:26:33','<h3><img class=\"alignright size-full wp-image-1185\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Foods-That-Burn-Fat.jpg\" alt=\"Foods That Burn Fat\" width=\"200\" height=\"313\" />Fat Fighting Foods</h3>\r\nTired of that spare tire? Sick of your love handles? You can increase your body’s fat-burning power by eating more fat fighting foods that strengthen your liver (your body’s main fat-metabolizing organ) to burn fat better. The result? A leaner you! There are many great liver boosting foods, but here are some of my favorites:\r\n<h3><strong>Leafy Greens</strong>:</h3>\r\nSpinach, spring mix, mustard greens, and other dark leafy greens are good sources of fiber and powerhouses of nutrition. Research demonstrates that their high concentration of vitamins and antioxidants helps prevent hunger while protecting you from heart disease, cancer, cataracts, and memory loss.\r\n<h3><strong>Beans and Legumes:</strong></h3>\r\nLegumes are the best source of  fiber of any foods. They help to stabilize blood sugar while keeping you regular. They are also high in potassium, a critical mineral that reduces dehydration and the risk of high blood pressure and stroke.\r\n<h3><strong>Garlic and Onions:</strong></h3>\r\nThis dynamic duo of foods contains phytochemicals that break down fatty deposits in the body. They also breakdown cholesterol; kill viruses, bacteria, and fungi; and protect against heart disease. With a little help from garlic and onions, you can burn fat while warding off illness.\r\n<h3><strong>Cayenne:</strong></h3>\r\nThis hot spice lessens the risk of excess insulin in the body by speeding metabolism and lowering blood glucose (sugar) levels before the excess insulin can result in fat stores. Spice up your next meal with cayenne and lessen those love handles.\r\n<h3><strong>Turmeric:</strong></h3>\r\nThe popular spice used primarily in Indian cooking is one of the highest known sources of beta carotene. It is an antioxidant that helps protect the liver from free radical damage. Turmeric also helps strengthen your liver while helping your body metabolize fats by decreasing the fat storage rate in liver cells. Add a teaspoon of turmeric into your next curry dish to help your body fight fat.\r\n<h3><strong>Cinnamon:</strong></h3>\r\nResearchers at the United States Department of Agriculture showed that a quarter to one teaspoon of cinnamon with food helps metabolize sugar up to twenty times better than food not eaten with cinnamon. Excess sugar in the blood can lead to fat storage. Before you sip that chai tea latte or eat your oatmeal, sprinkle on the cinnamon.\r\n<h3><strong>Flax Seeds and Flax Seed Oil:</strong></h3>\r\nThese seeds and oil attract oil-soluble toxins that become lodged in the fatty tissues of the body. Once attracted, they help to escort fat-soluble toxins out. That spells fewer fat stores and a trimmer you.\r\n\r\nAnd if you are having a difficult time choosing to eat healthy foods like vegetables and fruit, it\'s important to remember to make them look good and palatable. Keep in mind that we are bombarded constantly with junk food advertisements. An article in <em>Media Psychology</em> notes...\"promoting healthy foods (Bruce et al.,<span class=\"Apple-converted-space\"> </span><span class=\"ref-lnk lazy-ref\"><a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0009\" data-reflink=\"_i32 _i33\">2016</a>; Hanks, Just, &amp; Brumberg, <a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0021\" data-reflink=\"_i32 _i33\">2016</a>; Papies, <a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0039\" data-reflink=\"_i32 _i33\">2016;</a> Hanks et al. (<a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0021\" data-reflink=\"_i32 _i33\">2016</a>) revealed that children chose to eat twice as many vegetables when they were advertised through fun appeals: depicting healthy foods as humanized cheerful cartoon characters.\"<a href=\"https://www.tandfonline.com/doi/abs/10.1080/15213269.2019.1584569\">[1]</a></span>\r\n\r\n1Samson, Lelia, and Moniek Buijzen. \"Craving healthy foods?! How sensory appeals increase appetitive motivational processing of healthy foods in adolescents.\" <i>Media Psychology</i> 23.2 (2020): 159-183.','Fat Fighting Foods. Learn How Certain Food Can Help Burn Fat','','publish','open','closed','','fat-fighting-foods','','','2020-10-12 17:56:50','2020-10-12 17:56:50','',0,'https://www.drfields.com/?p=1520',0,'post','',0),(1521,8,'2019-06-13 06:26:33','2019-06-13 06:26:33','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Foods-That-Burn-Fat.jpg\" alt=\"Foods That Burn Fat\" width=\"200\" height=\"313\" class=\"alignright size-full wp-image-1185\" />Tired of that spare tire? Sick of your love handles? You can increase your body’s fat-burning power by eating more foods that strengthen your liver (your body’s main fat-metabolizing organ) to burn fat better. The result? A leaner you! There are many great liver boosting foods, but here are some of my favorites:\r\n\r\n<strong>Leafy Greens</strong>: Spinach, spring mix, mustard greens, and other dark leafy greens are good sources of fibre and powerhouses of nutrition. Research demonstrates that their high concentration of vitamins and antioxidants helps prevent hunger while protecting you from heart disease, cancer, cataracts, and memory loss.\r\n\r\n<strong>Beans and Legumes:</strong> Legumes are the best source of fiber of any foods. They help to stabilize blood sugar while keeping you regular. They are also high in potassium, a critical mineral that reduces dehydration and the risk of high blood pressure and stroke.\r\n\r\n<strong>Garlic and Onions:</strong> This dynamic duo of foods contains phytochemicals that break down fatty deposits in the body, while also breaking down cholesterol; killing viruses, bacteria, and fungi; and protecting against heart disease. With a little help from garlic and onions, you can burn fat while warding off illness.\r\n\r\n<strong>Cayenne:</strong> This hot spice lessens the risk of excess insulin in the body by speeding metabolism and lowering blood glucose (sugar) levels, before the excess insulin can result in fat stores. Spice up your next meal with cayenne and lessen those love handles.\r\n\r\n<strong>Turmeric:</strong> The popular spice used primarily in Indian cooking is one of the highest known sources of beta carotene, the antioxidant that helps protect the liver from free radical damage. Turmeric also helps strengthen your liver while helping your body metabolize fats by decreasing the fat storage rate in liver cells. Add a teaspoon of turmeric into your next curry dish to help your body fight fat.\r\n\r\n<strong>Cinnamon:</strong> Researchers at the United States Department of Agriculture showed that a quarter to one teaspoon of cinnamon with food helps metabolize sugar up to twenty times better than food not eaten with cinnamon. Excess sugar in the blood can lead to fat storage. Before you sip that chai tea latte or eat your oatmeal, sprinkle on the cinnamon.\r\n\r\n<strong>Flax Seeds and Flax Seed Oil:</strong> These seeds and oil attract oil-soluble toxins that become lodged in the fatty tissues of the body. Once attracted, they help to escort fat-soluble toxins out. That spells fewer fat stores and a trimmer you.\r\n','Foods that Fight Fat. Learn How Certain Food Can Help Burn Fat','','inherit','closed','closed','','1520-revision-v1','','','2019-06-13 06:26:33','2019-06-13 06:26:33','',1520,'https://www.drfields.com/uncategorized/1520-revision-v1/',0,'revision','',0),(1524,8,'2019-06-13 06:52:35','2019-06-13 06:52:35','<h3>Stem Cell Prolotherapy</h3>\r\nTake a look at this article published in The<em> Townsend Letter</em> by Peter A. Fields, MD, DC  that covers Stem Cell Prolotherapy. If you\'ve ever wondered what it was all about, this article explains in detail.\r\n\r\nEver wonder how you can regenerative cartilage? Has joint replacement been recommended, but you\'d really rather not go that route? <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a> is an effective treatment option that can meet your non-surgical and regenerative joint repair goals.\r\n\r\nStem Cells therapies are definitely a newer treatment option many are seeking. But not all therapies are the same. It\'s important to educate yourself on what this treatment really offers. This is an in-depth article that discusses bone marrow stem cells and adipose stem cells. Peter A. Fields, MD, DC will tell you what they are and how they work.\r\n\r\nThis article is a great place to find out more about a non-surgical alternative to joint replacement with this regenerative injection therapy. And remember...once surgery is done, it cannot be undone! We would like to help you to avoid that scenario!\r\n<h4>Are you a Candidate?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. And Stem Cell Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Plus, Stem Cell Prolotherapy is one of the few treatments that encourages movement after the treatment. That\'s because movement actually aids the healing process. By contrast, surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible surgery</strong>? Are you a candidate for Stem Cell Prolotherapy? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nCheck out other articles in the <a href=\"https://www.townsendletter.com\">Townsend Letter</a>.\r\n\r\n<img class=\"aligncenter wp-image-1207 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article-2014_Page_1.jpg\" alt=\"Stem Cell Prolotherapy\" width=\"955\" height=\"1244\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1208\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article2014_Page_2.jpg\" alt=\"Fields July Article2014 Page 2\" width=\"1650\" height=\"2150\" />','Townsend Letter: Stem Cell Prolotherapy','','publish','open','closed','','townsend-letter-stem-cell-prolotherapy','','','2022-12-02 06:46:25','2022-12-02 06:46:25','',0,'https://www.drfields.com/?p=1524',0,'post','',0),(1525,8,'2019-06-13 06:41:35','2019-06-13 06:41:35','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article-2014_Page_1.jpg\" alt=\"Fields July Article 2014 Page 1\" width=\"955\" height=\"1244\" class=\"aligncenter size-full wp-image-1207\" />\r\n\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article2014_Page_2.jpg\" alt=\"Fields July Article2014 Page 2\" width=\"1650\" height=\"2150\" class=\"aligncenter size-full wp-image-1208\" />','July 2014 Townsend Article','','inherit','closed','closed','','1524-revision-v1','','','2019-06-13 06:41:35','2019-06-13 06:41:35','',1524,'https://www.drfields.com/uncategorized/1524-revision-v1/',0,'revision','',0),(1526,8,'2019-06-13 06:51:30','2019-06-13 06:51:30','<h3>Elbow Injuries</h3>\r\nAt one time or another, about 15% of people in the U.S. will have elbow pain from some type of elbow injuries. These injuries can happen in sports, at work, and even at home. The majority involve a ligament injury. Annular ligament injuries from repetitive motion, like constant computer usage, is often the culprit. Other ligaments can be the pain-causing culprit too. And so can tendons.\r\n<h3>How Are the Injuries Treated?</h3>\r\nConventional treatment often involves icing, NSAIDS, or even surgery. But icing and NSAIDS both inhibit healing. And many of us prefer avoiding surgery. Right? Remember...once surgery is done, it cannot be undone. And it\'s better to not get into that predicament if it can be avoided.\r\n\r\nThe great news is that Prolotherapy, a <strong>non-surgical</strong> regenerative treatment option works great at healing both ligament and tendon injuries.\r\n\r\nAnd Regenerative Orthopedics for elbow pain is regenerative. What does that mean? Treatments like <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> <strong>regenerate</strong> collagen tissue which means the treatment repairs the injury. And it does it naturally. So that\'s good to know, especially since the treatment fixes both the cause and the effect.\r\n\r\nFind out more about how Regenerative Orthopedics can heal your joint pain non-surgically by reading this article in the <a href=\"https://www.townsendletter.com\">\"Townsend Letter.\"</a>\r\n\r\n[caption id=\"attachment_1212\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1212 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-1.gif\" alt=\"Elbow Injuries\" width=\"955\" height=\"1249\" /> What To Do About Elbow Injuries[/caption]\r\n\r\n<img class=\"aligncenter size-full wp-image-1213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-2.gif\" alt=\"Townsend Article Feb Mar 2014 2\" width=\"955\" height=\"1249\" />','Townsend Letter: Elbow Injuries','','publish','open','closed','','townsend-letter-elbow-injuries','','','2022-12-02 06:47:31','2022-12-02 06:47:31','',0,'https://www.drfields.com/?p=1526',0,'post','',0),(1527,8,'2019-06-13 06:42:30','2019-06-13 06:42:30','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-1.gif\" alt=\"Townsend Article Feb Mar 2014 1\" width=\"955\" height=\"1249\" class=\"aligncenter size-full wp-image-1212\" />\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-2.gif\" alt=\"Townsend Article Feb Mar 2014 2\" width=\"955\" height=\"1249\" class=\"aligncenter size-full wp-image-1213\" />','February March 2014 Townsend Article','','inherit','closed','closed','','1526-revision-v1','','','2019-06-13 06:42:30','2019-06-13 06:42:30','',1526,'https://www.drfields.com/uncategorized/1526-revision-v1/',0,'revision','',0),(1528,8,'2022-12-02 06:01:39','2019-06-13 06:44:14',' ','','','publish','closed','closed','','1528','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',30,'https://www.drfields.com/?p=1528',64,'nav_menu_item','',0),(1530,8,'2019-06-13 06:45:48','2019-06-13 06:45:48','<h3>What Is the Cause of Back Pain?</h3>\r\nAlmost anything can cause back pain. Part of the reason is all of the stress we put on our backs. Weight from the upper body, prolonged sitting, sports, being overweight, and poor flexibility all can put added stress on the back. And at some point, all of this stress adds up and at some point will cause back pain.\r\n<h3>And What Are the Best Treatment Options?</h3>\r\nIt is not unusual to hear our patients say they have tried all kinds of treatments to no avail. That\'s why they are now in our office. They have tried stretching, yoga, pilates, massage, and all kinds of therapies. But their pain persists. And it is a good possibility that surgery has been recommended. But once surgery is done, it cannot be undone. So, many people look for an alternative.\r\n\r\nRegenerative Orthopedics is an effective, non-surgical alternative for back pain relief for most musculoskeletal conditions that cause back pain. <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, one form of Regenerative Orthopedics, looks at the cause of back pain, and not just the effect. Prolotherapy stimulates repair. It\'s not just a bandaid to cover up back pain. But rather, it gets to the root of the problem, like tendon and ligament injury. And it repairs the injury, which results in the pain relief you seek.\r\n\r\nWhen you want to get to the root of the problem, Regenerative Medicine options like Prolotherapy, PRP, and Stem Cell Therapy, are not just effective, but they are non-surgical treatment options that relieve your back pain, and get you back to doing what you love.\r\n\r\nRead more about back pain in this article by Peter A. Fields, MD, DC in the <a href=\"https://www.townsendletter.com\">Townsend Article</a>, and why surgery may not be the best choice when looking into treatment options.\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_1219\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1219 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-1.gif\" alt=\"What is the Cause of back pain?\" width=\"955\" height=\"1249\" /> What is the Cause of Back Pain? In this article, Peter A. Fields, MD, DC goes into depth on the anatomy and cause of back pain and the treatment options.[/caption]\r\n\r\n<img class=\"aligncenter size-full wp-image-1220\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-2.gif\" alt=\"Townsend Article Jan 2014 2\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1221\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-3.gif\" alt=\"Townsend Article Jan 2014 3\" width=\"955\" height=\"1249\" />','Townsend Letter: What is the Cause of Back Pain?','','publish','open','closed','','townsend-letter-what-is-the-cause-of-back-pain','','','2022-12-02 06:55:45','2022-12-02 06:55:45','',0,'https://www.drfields.com/?p=1530',0,'post','',0),(1531,8,'2019-06-13 06:45:48','2019-06-13 06:45:48','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-1.gif\" alt=\"Townsend Article Jan 2014 1\" width=\"955\" height=\"1249\" class=\"aligncenter size-full wp-image-1219\" />\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-2.gif\" alt=\"Townsend Article Jan 2014 2\" width=\"955\" height=\"1249\" class=\"aligncenter size-full wp-image-1220\" />\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-3.gif\" alt=\"Townsend Article Jan 2014 3\" width=\"955\" height=\"1249\" class=\"aligncenter size-full wp-image-1221\" />','January 2014 Townsend Article','','inherit','closed','closed','','1530-revision-v1','','','2019-06-13 06:45:48','2019-06-13 06:45:48','',1530,'https://www.drfields.com/uncategorized/1530-revision-v1/',0,'revision','',0),(1532,8,'2019-06-13 06:43:12','2019-06-13 06:43:12','&nbsp;\r\n\r\nThe hip gets a lot of wear and tear! And it can be weakened by a lot of different things. Eventually, the cumulative injuries cause arthritis to develop. And before long, people find themselves in the surgeon\'s office receiving the news that they need a hip replacement. But do they really?\r\n\r\nHip surgeries are going through the roof. With close to 10 million hip surgeries performed annually. That\'s a lot of surgery. And many of us would prefer to avoid surgery if at all possible.\r\n<h3>Are there treatments that can help me avoid surgery?</h3>\r\nDifferent non-surgical treatments are commonly recommended before the surgical recommendation. These include non-inflammatory medications and cortisone injections. But these treatments are not curative. And although they may help you endure the pain, they will not prevent the eventual hip replacement.\r\n\r\nIt is important to address the cause and not just the effect of the wearing out hip. Regenerative Orthopedics, such as Dextrose Prolotherapy, Platelet Rich Plasma, and Stem Cell Prolotherapy, are all non-surgical treatment options that get to the root of the problem. They actually stimulate ligament, tendon, and cartilage repair. And most people have pain because of injury to one or all of these structures.\r\n\r\nInjury to soft tissue, like the ligaments, tendons, and cartilage, causes the joint to become unstable. And this instability breaks the joint down further. Eventually, the person with a worn-out hip will experience loss of motion. Bone spurs will develop, and the bones will \"bump\" into one another. These symptoms probably sound familiar because they are experienced with arthritis. And pain medication won\'t fix the cause.\r\n\r\nSurgery that takes out parts will alter the structure and function of the joint. Eventually, more surgery will be needed. Yes, surgery is sometimes needed. But unnecessary hip replacements should be avoided. Seek out an experienced Prolotherapist to see if you are a candidate for a regenerative therapy that can help you to avoid surgery.\r\n\r\nRemember, once the surgery is done, it cannot be undone.\r\n\r\nSee testimonials from patients who have received Regenerative Orthopedics by clicking <a href=\"https://www.orthoregen.com/testimonials/\">here</a>.\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter size-full wp-image-1230\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-1.jpg\" alt=\"Townsend Article Dec 2013 1\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1231\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-2.gif\" alt=\"Townsend Article Dec 2013 2\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1232\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-3.gif\" alt=\"Townsend Article Dec 2013 3\" width=\"955\" height=\"1249\" />','Townsend Letter: Hip Replacement - Do You Really Need It?','','publish','open','closed','','townsend-letter-hip-replacement-do-you-really-need-it','','','2022-12-02 06:58:42','2022-12-02 06:58:42','',0,'https://www.drfields.com/?p=1532',0,'post','',0),(1534,8,'2019-06-13 06:47:12','2019-06-13 06:47:12','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-1.jpg\" alt=\"Townsend Article Dec 2013 1\" width=\"955\" height=\"1249\" class=\"aligncenter size-full wp-image-1230\" />\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-2.gif\" alt=\"Townsend Article Dec 2013 2\" width=\"955\" height=\"1249\" class=\"aligncenter size-full wp-image-1231\" />\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-3.gif\" alt=\"Townsend Article Dec 2013 3\" width=\"955\" height=\"1249\" class=\"aligncenter size-full wp-image-1232\" />','December 2013 Townsend Article','','inherit','closed','closed','','1532-revision-v1','','','2019-06-13 06:47:12','2019-06-13 06:47:12','',1532,'https://www.drfields.com/uncategorized/1532-revision-v1/',0,'revision','',0),(1535,8,'2019-06-13 06:42:35','2019-06-13 06:42:35','<h3>Are MRI\'s Replacing The Physical Exam?</h3>\r\nEveryone seems to want to get an MRI nowadays. It\'s like there is an MRI epidemic, with millions and millions being performed in the U.S. A patient complains of pain, and an MRI is ordered. But are MRI\'s replacing the physical exam?\r\n\r\nSure, an MRI will often show an abnormality. But the problem is...<strong>that abnormality very well may not be what is causing the pain. </strong>A disc abnormality does not necessarily mean that the disc is causing the pain. Many people who have no pain have disc abnormalities.\r\n<h3>MRI Results Without A Physical Exam</h3>\r\nThe lack of a physical exam is becoming a problem. Before the MRI, physicians had to diagnose by an exam. And they would actually palpate and touch the patient. In fact, 90% of the diagnosis would come from the history and physical exam. MRI\'s should confirm what already is suspected as a result of a thorough patient history and examination.\r\n<h3>MRI and Surgery</h3>\r\nIf you are seriously considering surgery, then an MRI is what the orthopedic surgeon will use to map the surgery. <strong>But never have surgery based just on the results of an MRI. </strong>Get another opinion. And make sure you receive a proper exam. A practical option would be to receive a consult from a Prolotherapist who specializes in fixing the spine and joints without surgery. Surgery should only be done after all conservative care has been tried, including Regenerative Orthopedic options like Prolotherapy.\r\n<h4><em>MRI studies are not always helpful and can sometimes lead to further intervention. Do not let MRI results dictate your treatment. Fixing your problem with the least invasive and most effective method should be your priority</em>.</h4>\r\n<em>Please read the entire article, which was originally printed in the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.</em>\r\n\r\nIf a joint replacement has been recommended, Stem Cell Therapy, another Regenerative Orthopedic option, is an effective non-surgical alternative. Please read our article <a title=\"Alternative to Joint Replacement Surgery\" href=\"https://www.drfields.com/alternative-to-joint-replacement-surgery/\">Alternative to Joint Replacement Surgery </a> <a href=\"https://www.drfields.com/alternative-to-joint-replacement-surgery/\">here.</a>\r\n\r\n[caption id=\"attachment_1235\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1235 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-1.gif\" alt=\"Townsend Article October 2013 1\" width=\"955\" height=\"1241\" /> <strong>Are MRI\'s replacing the physical exam?</strong>[/caption]\r\n\r\n<img class=\"aligncenter size-full wp-image-1236\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-2.gif\" alt=\"Townsend Article October 2013 2\" width=\"955\" height=\"1251\" />','Townsend Letter: Are MRI\'s Replacing The Physical Exam','','publish','open','closed','','townsend-letter-are-mris-replacing-the-physical-exam','','','2022-12-02 07:30:49','2022-12-02 07:30:49','',0,'https://www.drfields.com/?p=1535',0,'post','',0),(1536,8,'2019-06-13 06:49:35','2019-06-13 06:49:35','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-1.gif\" alt=\"Townsend Article October 2013 1\" width=\"955\" height=\"1241\" class=\"aligncenter size-full wp-image-1235\" />\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-2.gif\" alt=\"Townsend Article October 2013 2\" width=\"955\" height=\"1251\" class=\"aligncenter size-full wp-image-1236\" />','October 2013 Townsend Article','','inherit','closed','closed','','1535-revision-v1','','','2019-06-13 06:49:35','2019-06-13 06:49:35','',1535,'https://www.drfields.com/uncategorized/1535-revision-v1/',0,'revision','',0),(1537,8,'2019-06-13 06:41:47','2019-06-13 06:41:47','<h2>Rotator Cuff Shoulder Injuries</h2>\r\nConditions of the rotator cuff are the most common shoulder problem. Lots of people over 50 experience rotator cuff shoulder injuries. That\'s because the tendons and ligaments become weaker and are more prone to injury. And since tendons and ligaments have a poor blood supply to begin with, these injuries are difficult to repair.\r\n<h3>Treat Shoulder Injuries with Non-Surgical Regenerative Orthopedics</h3>\r\nWhen conservative measures are tried, and if they fail to result in the sought after results, surgery is often recommended. But surgery takes parts like ligaments, tendons, and labrum out. And once they are removed, they can not be put back. A better approach would be Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy. These treatments result in effective repair and resolution of the rotator cuff shoulder injury without the need for surgery. The joint tissue can regenerate with Regenerative Orthopedics, and repair can be achieved naturally.\r\n<h3>Shoulder Arthritis</h3>\r\nArthritis is another common condition of the shoulder, and shoulder injuries can lead to this problem. Regenerative Orthopedics can effectively treat shoulder pain due to arthritis.\r\n\r\nRegenerative Orthopedics helps your body to heal itself. You can get back to doing the activities you love quickly, without the need for surgery, and without extended downtime. <a href=\"https://www.drfields.com/contact/\">Contact us</a> to find out more.\r\n\r\nRead the full article from the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.\r\n\r\nFind out more about <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> by clicking <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">here</a>.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-1240 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-1.gif\" alt=\"Rotator Cuff Shoulder Injuries\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"wp-image-1241 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-2.gif\" alt=\"&quot;&lt;yoastmark\" />','Townsend Letter: Rotator Cuff Shoulder Injuries','','publish','open','closed','','townsend-letter-rotator-cuff-shoulder-injuries','','','2022-12-02 07:30:13','2022-12-02 07:30:13','',0,'https://www.drfields.com/?p=1537',0,'post','',0),(1538,8,'2019-06-13 06:50:47','2019-06-13 06:50:47','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-1.gif\" alt=\"Townsend Article August 2013 1\" width=\"955\" height=\"1249\" class=\"aligncenter size-full wp-image-1240\" />\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-2.gif\" alt=\"Townsend Article August 2013 2\" width=\"955\" height=\"1241\" class=\"aligncenter size-full wp-image-1241\" />','August September 2013 Townsend Article','','inherit','closed','closed','','1537-revision-v1','','','2019-06-13 06:50:47','2019-06-13 06:50:47','',1537,'https://www.drfields.com/uncategorized/1537-revision-v1/',0,'revision','',0),(1539,8,'2019-06-13 06:41:47','2019-06-13 06:41:47','<h3>Knee Pain and Dysfunction</h3>\r\nAt one time or another, most of us will have had some sort of knee dysfunction or pain. After all, we use our knees on a daily basis. And because the knee is a weight-bearing joint, athletic individuals and overweight people are more prone to knee pain and injuries.\r\n\r\nKnee pain can develop suddenly or come on over a period of time. The acute or sudden pain may be the result of a fall or mistep. And pain that develops chronically over time may be the result of an acute injury that never healed correctly. Chronic conditions are the most common cause of knee pain and dysfunction, and the culprit is very often arthritis.\r\n<h3>Degenerative Joint Disease and Osteoarthritis</h3>\r\nOsteoarthritis affects most of us as we age, steadily wearing away the smooth cartilage that caps the ends of our long bones. That cartilage is essential for proper motion and function of the joint. The wearing down of the joint can be accelerated by overuse in playing sports, physically demanding jobs, walking, excessive sitting (which increases the pressure within the knee) or just over time through daily wear and tear.\r\n\r\nReferred pain, which occurs when a ligament injury or weakness in one part of the body cause pain in another part, may also be involved.\r\n<h3>Knee Pain Treatments</h3>\r\nKnee pain will often go away on its on. Heat, ice, massage, PT, acupuncture, chiropractic, laser, and other treatments may help to resolve the pain. But when these treatments do not work, Regenerative Orthopedics, such as Stem Cell Therapy, PRP, and Prolotherapy are excellent non-surgical treatment solutions. And they can get you back to doing what you love without the need for extended time off.\r\n\r\nEven if you have a partial tear in a ligament or tendon, Regenerative Orthopedics can successfully resolve the injury without the need for surgery. If the tear is complete, surgery is necessary. Regenerative Orthopedics are the safest and most effective treatment options for the repair of ligaments, tendons, and cartilage damage.\r\n\r\nMany of my patients have had surgery, but still experience pain. Regenerative Orthopedics is still able to help even if you have already had surgery. But if surgery is being recommended, consider the alternative. Give us a <a href=\"https://www.drfields.com/contact/\">call <strong>at </strong></a><strong><a href=\"tel:310-453-1234\">310-453-1234</a>.</strong>\r\n\r\nRead the full article from the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.\r\n\r\n[caption id=\"attachment_4373\" align=\"alignnone\" width=\"955\"]<img class=\"wp-image-4373 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-2-2.gif\" alt=\"Knee Pain\" width=\"955\" height=\"1249\" /> Knee Pain and Dysfunction[/caption]\r\n\r\n<img class=\"wp-image-1244 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-1.gif\" alt=\"Townsend Article July 2013 1\" width=\"939\" height=\"1231\" />\r\n\r\n&nbsp;','Townsend Letter: Knee Pain and Dysfunction','','publish','open','closed','','townsend-letter-knee-pain-and-dysfunction','','','2022-12-02 07:31:15','2022-12-02 07:31:15','',0,'https://www.drfields.com/?p=1539',0,'post','',0),(1540,8,'2019-06-13 06:51:47','2019-06-13 06:51:47','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-1.gif\" alt=\"Townsend Article July 2013 1\" width=\"955\" height=\"1252\" class=\"aligncenter size-full wp-image-1244\" />\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-2.gif\" alt=\"Townsend Article July 2013 2\" width=\"955\" height=\"1249\" class=\"aligncenter size-full wp-image-1245\" />','July 2013 Townsend Article','','inherit','closed','closed','','1539-revision-v1','','','2019-06-13 06:51:47','2019-06-13 06:51:47','',1539,'https://www.drfields.com/uncategorized/1539-revision-v1/',0,'revision','',0),(1541,8,'2019-06-13 06:41:34','2019-06-13 06:41:34','<h3>How to Avoid Joint and Spine Surgery <em>and Live Pain Free</em></h3>\r\nRegenerative Orthopedics are natural non-surgical methods that assist the body to heal injured tendons and ligaments. These treatments help your body make new cells by boosting the natural healing cascade of the body. This serves to strengthen lax or torn ligaments and tendons, and repairs the damaged structures. It also helps patients avoid joint and spine surgery.\r\n<h3>When Is It Time To Seek Regenerative Orthopedics?</h3>\r\nIf you have had chronic pain that remains even after weeks, months, or years of healing, then it\'s time to seek out a practitioner who is experienced in Regenerative Orthopedics. The problem lies in the fact that both ligaments and tendons have poor circulations. And it is this lack of blood supply to the injured area that deprives the injured area of the nutrients it needs to heal properly.\r\n\r\nAnd although the blood supply is low, the presence of nerves is not. So these nerves become stretched and irritated in these weakened areas, and the tweaked nerves send out pain signals. Additionally, the ongoing weakness in the ligaments and tendons will also lead to degenerative of the cartilage. Eventually, arthritis will result. It is not uncommon for surgery to be recommended at this point.\r\n\r\nBut non-surgical Regenerative Orthopedics is a more logical alternative, and one that does not require extended downtime. Regenerative Orthopedics can help you avoid joint and spine surgery. It can boost healing in your joint and help you to achieve the pain-free results you seek.\r\n<h3>Regenerative Orthopedics include Stem Cell Therapy, PRP, and Prolotherapy</h3>\r\n<h4><em>Dextrose Prolotherapy</em></h4>\r\nDextrose Prolotherapy is just one type of Regenerative Orthopedics. It involves a series of 6-8 treatments with injections of a mild proliferant that stimulates the healing process. Prolotherapy is an excellent alternative to cortisone injections, which in long-term studies have been shown to actually weaken tissue. Prolotherapy is effective at eliminating pain in many different painful conditions.\r\n<h4><em>Platelet Rich Plasma (PRP)</em></h4>\r\nPlatelet Rich Plasma uses the patients own blood to concentrate platelets by a factor of 7 to 10 times. That means there are a lot of growth factors available in this concentrated solution. The solution rich in growth factors can then be injected into the damaged area to catalyze the growth of new soft tissue. PRP is good for structures such as the labrum of the hip and shoulder, the knee meniscus, and some forms of arthritis.\r\n<h4><em>Stem Cell Therapy</em></h4>\r\nStem Cell Therapy is derived from the patients own bone marrow stem cells and adipose stem cells. These cells can regenerate tissue like cartilage. Typically, stem cell therapy is used to regenerative articular cartilage, but it can also regenerative ligaments and tendons. This treatment is generally used in more advanced cases, such as degenerative arthritis, severe tendon injuries, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissue, and chondrocyte proliferation. All of which amplify the body\'s own repair process and accelerate healing.\r\n\r\nRegenerative Orthopedics help you to avoid joint and spine surgery and to live pain free without the need for invasive surgery. And it is tolerated well by people of all ages.\r\n\r\nRead the full article below as it appeared in the <a href=\"https://www.townsendletter.com\">Townsend Letter.</a>\r\n\r\nWe have quite a few more articles about arthritis pain. To read more articles about treatment options for arthritis, <a href=\"https://www.drfields.com/?s=arthritis\">click here.</a>\r\n\r\n[caption id=\"attachment_1248\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1248 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-june-2013-2.gif\" alt=\"How to Avoid Joint and Spine Surgery\" width=\"955\" height=\"1248\" /> How to Avoid Joint and Spine Surgery[/caption]\r\n\r\n[caption id=\"attachment_1249\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1249 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-june-2013-3.gif\" alt=\"How to Avoid Joint and Spine Surgery\" width=\"955\" height=\"1241\" /> How to Avoid Joint and Spine Surgery[/caption]','Townsend Letter: How to Avoid Joint and Spine Surgery','','publish','open','closed','','townsend-letter-how-to-avoid-joint-and-spine-surgery','','','2022-12-02 07:30:31','2022-12-02 07:30:31','',0,'https://www.drfields.com/?p=1541',0,'post','',0),(1542,8,'2019-06-13 06:52:34','2019-06-13 06:52:34','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-june-2013-2.gif\" alt=\"Townsend Article June 2013 2\" width=\"955\" height=\"1248\" class=\"aligncenter size-full wp-image-1248\" />\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-june-2013-3.gif\" alt=\"Townsend Article June 2013 3\" width=\"955\" height=\"1241\" class=\"aligncenter size-full wp-image-1249\" />','June 2013 Townsend Article','','inherit','closed','closed','','1541-revision-v1','','','2019-06-13 06:52:34','2019-06-13 06:52:34','',1541,'https://www.drfields.com/uncategorized/1541-revision-v1/',0,'revision','',0),(1547,8,'2019-06-13 07:33:19','2019-06-13 07:33:19','<a href=\"/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at Regenerative Orthopedics Lecture, Australia 8/5/17</a>\r\n\r\n<a href=\"/Articles/Health-News/An-adequate-supply-of-antioxidant-nutrients\">‘An Adequate Supply Of Antioxidant Nutrients May Have A Beneficial Role For Healthy Aging’, Says Study</a>\r\n\r\n<a href=\"/Articles/Health-News/A4M-Conference-Florida-2016\">Dr. Fields to Lecture in Florida May 21, 2016</a>\r\n\r\n<a href=\"/Articles/Health-News/A-wonderful-ending-to-an-almost-disastrous-event\">A wonderful ending to an almost disastrous event</a>\r\n\r\n<a href=\"/Articles/Needles-Not-Knives-to-Treat-Sports-Injuries-and-Degeneration\">Needles, Not Knives, To Treat Sports Injuries And Degeneration</a>\r\n\r\n<a href=\"/Articles/Health-News/A4M-Conference-2015\">Come See Dr. Fields Lecture in Las Vegas on Saturday, December 12, 2015</a>\r\n\r\n<a href=\"/Articles/Health-News/Knee-and-hip-replacements-increase-heart-attack-risk-briefly\">Knee And Hip Replacements Increase Heart Attack Risk Briefly</a>\r\n\r\n<a href=\"/Articles/Magazine-Column\">Monthly column in national health magazine - Townsend Letter</a>\r\n\r\n<a href=\"/Articles/Health-Concerns-about-Dairy-Products\">Health Concerns about Dairy Products</a>\r\n\r\n<a href=\"/Articles/Dementia-Diet-Exercise-and-Supplements-Can-Help\">Dementia – Diet, Exercise and Supplements Can Help</a>\r\n\r\n<a href=\"/Articles/YOUR-BEST-HEALTH-INSURANCE\">YOUR BEST HEALTH INSURANCE</a>\r\n\r\n<a href=\"/Articles/Improve-Sports-Performance-With-Co-Q\">Improve Sports Performance With Co-Q</a>\r\n\r\n<a href=\"/Articles/Delicious-Meat-Alternatives\">Delicious Meat Alternatives</a>\r\n\r\n<a href=\"/Articles/Vitamin-D-Deficiency-Linked-to-Strokes-Heart-Disease\">Vitamin D Deficiency Linked to Strokes, Heart Disease</a>\r\n\r\n<a href=\"/Articles/Is-it-a-Good-Supplement\">Is it a Good Supplement</a>\r\n\r\n<a href=\"/Articles/Health-News/Healthy-Breakfast\">Healthy Breakfast</a>\r\n\r\n<a href=\"/Articles/Health-News/Body-Cleansing-Foods\">Body Cleansing Foods</a>\r\n\r\n<a href=\"/Articles/Health-News/Dr-Sinatras-List-of-Top-Doctors-List\">Dr. Sinatra\'s List of Top Doctors List</a>\r\n\r\n<a href=\"/Articles/Health-News/Dr-Fields-interviewed-on-KCAL-CBS-about-Dangers-of-Anti-Inflammatory-Medicines\">Dr. Fields interviewed on KCAL/CBS about \'Dangers of Anti-Inflammatory Medicines\'</a>\r\n\r\n<a href=\"/Articles/Health-News/Dr-Fields-interviewed-on-KCAL-CBS-about-Prolotherapy\">Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'</a>\r\n\r\n<a href=\"/Articles/Health-News/American-Heart-Association-Soft-Drinks-Diet-or-Regular-Increase-Risk-for-Heart-Disease\">American Heart Association: Soft Drinks, Diet or Regular, Increase Risk for Heart Disease</a>\r\n\r\n<a href=\"/Articles/Health-News/The-Importance-of-Supplementation-Upwards-of-Half-the-Population-51-Years-or-Older-do-Not-Get-Adequate-Nutrition-from-Their-Diets\">The Importance of Supplementation: Upwards of Half the Population 51 Years or Older do Not Get Adequate Nutrition from Their Diets</a>\r\n\r\n<a href=\"/Articles/Health-News/Dr-Fields-Completes-His-7th-Half-Ironman-Triathlon\">Dr. Fields Completes His 7th Half Ironman Triathlon</a>\r\n\r\n<a href=\"/Articles/Health-News/Napping-at-the-Office-May-Help-Your-Heart\">Napping at the Office May Help Your Heart</a>\r\n\r\n<a href=\"/Articles/Health-News/Vitamin-D-Its-Not-Just-For-Bones-Anymore\">Vitamin D: It’s Not Just For Bones Anymore</a>\r\n\r\n<a href=\"/Articles/Health-News/To-Improve-Fitness-Try-Sleep\">To Improve Fitness, Try Sleep</a>\r\n\r\n<a href=\"/Articles/Health-News/Bursts-of-Activity-Learn-How-Exercise-Can-Give-You-Energy\">Bursts of Activity, Learn How Exercise Can Give You Energy</a>\r\n\r\n<a href=\"/Articles/Health-News/Foods-that-Fight-Fat-Learn-How-Certain-Food-Can-Help-Burn-Fat\">Foods that Fight Fat. Learn How Certain Food Can Help Burn Fat</a>\r\n\r\n<a href=\"/Articles/Health-News/Reduce-Stroke-Risk-by-80-Choose-a-Healthy-Lifestyle\">Reduce Stroke Risk by 80% - Choose a Healthy Lifestyle</a>\r\n','health news old','','draft','open','closed','','','','','2019-06-13 07:44:54','2019-06-13 07:44:54','',0,'https://www.drfields.com/?p=1547',0,'post','',0),(1548,8,'2019-06-13 07:33:19','2019-06-13 07:33:19','<a href=\"/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at Regenerative Orthopedics Lecture, Australia 8/5/17</a>\r\n\r\n<a href=\"/Articles/Health-News/An-adequate-supply-of-antioxidant-nutrients\">‘An Adequate Supply Of Antioxidant Nutrients May Have A Beneficial Role For Healthy Aging’, Says Study</a>\r\n\r\n<a href=\"/Articles/Health-News/A4M-Conference-Florida-2016\">Dr. Fields to Lecture in Florida May 21, 2016</a>\r\n\r\n<a href=\"/Articles/Health-News/A-wonderful-ending-to-an-almost-disastrous-event\">A wonderful ending to an almost disastrous event</a>\r\n\r\n<a href=\"/Articles/Needles-Not-Knives-to-Treat-Sports-Injuries-and-Degeneration\">Needles, Not Knives, To Treat Sports Injuries And Degeneration</a>\r\n\r\n<a href=\"/Articles/Health-News/A4M-Conference-2015\">Come See Dr. Fields Lecture in Las Vegas on Saturday, December 12, 2015</a>\r\n\r\n<a href=\"/Articles/Health-News/Knee-and-hip-replacements-increase-heart-attack-risk-briefly\">Knee And Hip Replacements Increase Heart Attack Risk Briefly</a>\r\n\r\n<a href=\"/Articles/Magazine-Column\">Monthly column in national health magazine - Townsend Letter</a>\r\n\r\n<a href=\"/Articles/Health-Concerns-about-Dairy-Products\">Health Concerns about Dairy Products</a>\r\n\r\n<a href=\"/Articles/Dementia-Diet-Exercise-and-Supplements-Can-Help\">Dementia – Diet, Exercise and Supplements Can Help</a>\r\n\r\n<a href=\"/Articles/YOUR-BEST-HEALTH-INSURANCE\">YOUR BEST HEALTH INSURANCE</a>\r\n\r\n<a href=\"/Articles/Improve-Sports-Performance-With-Co-Q\">Improve Sports Performance With Co-Q</a>\r\n\r\n<a href=\"/Articles/Delicious-Meat-Alternatives\">Delicious Meat Alternatives</a>\r\n\r\n<a href=\"/Articles/Vitamin-D-Deficiency-Linked-to-Strokes-Heart-Disease\">Vitamin D Deficiency Linked to Strokes, Heart Disease</a>\r\n\r\n<a href=\"/Articles/Is-it-a-Good-Supplement\">Is it a Good Supplement</a>\r\n\r\n<a href=\"/Articles/Health-News/Healthy-Breakfast\">Healthy Breakfast</a>\r\n\r\n<a href=\"/Articles/Health-News/Body-Cleansing-Foods\">Body Cleansing Foods</a>\r\n\r\n<a href=\"/Articles/Health-News/Dr-Sinatras-List-of-Top-Doctors-List\">Dr. Sinatra\'s List of Top Doctors List</a>\r\n\r\n<a href=\"/Articles/Health-News/Dr-Fields-interviewed-on-KCAL-CBS-about-Dangers-of-Anti-Inflammatory-Medicines\">Dr. Fields interviewed on KCAL/CBS about \'Dangers of Anti-Inflammatory Medicines\'</a>\r\n\r\n<a href=\"/Articles/Health-News/Dr-Fields-interviewed-on-KCAL-CBS-about-Prolotherapy\">Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'</a>\r\n\r\n<a href=\"/Articles/Health-News/American-Heart-Association-Soft-Drinks-Diet-or-Regular-Increase-Risk-for-Heart-Disease\">American Heart Association: Soft Drinks, Diet or Regular, Increase Risk for Heart Disease</a>\r\n\r\n<a href=\"/Articles/Health-News/The-Importance-of-Supplementation-Upwards-of-Half-the-Population-51-Years-or-Older-do-Not-Get-Adequate-Nutrition-from-Their-Diets\">The Importance of Supplementation: Upwards of Half the Population 51 Years or Older do Not Get Adequate Nutrition from Their Diets</a>\r\n\r\n<a href=\"/Articles/Health-News/Dr-Fields-Completes-His-7th-Half-Ironman-Triathlon\">Dr. Fields Completes His 7th Half Ironman Triathlon</a>\r\n\r\n<a href=\"/Articles/Health-News/Napping-at-the-Office-May-Help-Your-Heart\">Napping at the Office May Help Your Heart</a>\r\n\r\n<a href=\"/Articles/Health-News/Vitamin-D-Its-Not-Just-For-Bones-Anymore\">Vitamin D: It’s Not Just For Bones Anymore</a>\r\n\r\n<a href=\"/Articles/Health-News/To-Improve-Fitness-Try-Sleep\">To Improve Fitness, Try Sleep</a>\r\n\r\n<a href=\"/Articles/Health-News/Bursts-of-Activity-Learn-How-Exercise-Can-Give-You-Energy\">Bursts of Activity, Learn How Exercise Can Give You Energy</a>\r\n\r\n<a href=\"/Articles/Health-News/Foods-that-Fight-Fat-Learn-How-Certain-Food-Can-Help-Burn-Fat\">Foods that Fight Fat. Learn How Certain Food Can Help Burn Fat</a>\r\n\r\n<a href=\"/Articles/Health-News/Reduce-Stroke-Risk-by-80-Choose-a-Healthy-Lifestyle\">Reduce Stroke Risk by 80% - Choose a Healthy Lifestyle</a>\r\n','health news old','','inherit','closed','closed','','1547-revision-v1','','','2019-06-13 07:33:19','2019-06-13 07:33:19','',1547,'https://www.drfields.com/uncategorized/1547-revision-v1/',0,'revision','',0),(1550,8,'2019-06-13 07:42:40','2019-06-13 07:42:40','<h4>Regenerative Orthopedics: Non-Surgical Repair with Cellular Regeneration/PRP/Prolotherapy</h4>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignleft size-full wp-image-955\" />Peter A. Fields, MD, DC lectured at the American Association of Anti-Aging and Regenerative Medicine in Hollywood, Florida on <strong>Saturday, May 21, 2016</strong>\r\n\r\nLecture time: <strong>1:30pm</strong>\r\n\r\nSee below link for details:\r\n\r\n<a href=\"a4mwc.com/conference-agenda/\" target=\"_blank\" rel=\"noopener noreferrer\">http://a4mwc.com/conference-agenda/</a>\r\n\r\n\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/A4M-Lecture-Las-Vegas.jpg\" alt=\"A4m Lecture Las Vegas\" width=\"450\" height=\"224\" class=\"aligncenter size-full wp-image-1103\" />\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n</div>\r\n</div>','Dr. Fields to Lecture in Florida May 21, 2016','','inherit','closed','closed','','1471-revision-v1','','','2019-06-13 07:42:40','2019-06-13 07:42:40','',1471,'https://www.drfields.com/uncategorized/1471-revision-v1/',0,'revision','',0),(1554,8,'2019-06-13 07:50:28','2019-06-13 07:50:28','<p><a href=\"/Low-Back-Pain-Challenges-and-Treatment\">Low Back Pain Challenges and Treatment</a></p>\r\n<p><a href=\"/ACL-Tears-and-Knee-Ligament-Injuries\">ACL Tears and Knee Ligament Injuries</a></p>\r\n<p><a href=\"/Relieve-Arthritis-Pain\">Relieve Arthritis Pain</a></p>\r\n<p><a href=\"/Failed-Back-Surgery-Syndrome\">Failed Back Surgery Syndrome</a></p>\r\n<p><a href=\"/Get-Rid-of-Knee-Arthritis-Symptoms-by-Treating-the-Source-of-the-Pain\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a></p>\r\n<p><a href=\"/Neck-Pain-Treatment-and-Relief\">Neck Pain Treatment and Relief</a></p>\r\n<p><a href=\"/What-is-Behind-Joint-Pain-\">What is Behind Joint Pain?&nbsp;</a></p>\r\n<p><a href=\"/Meniscus-and-Labral-Tears\">Meniscus&nbsp;and Labral Tears</a></p>\r\n<p><a href=\"Is-There-Help-for-Arthritis\">Is There help For Arthritis?&nbsp;</a></p>\r\n<p><a href=\"/Runners-Knee-Pain\">Runner\'s Knee Pain</a></p>\r\n<p><a href=\"/Do-You-Have-a-Hip-Injury\">Do You Have a Hip Injury?</a></p>\r\n<p><a href=\"/Avoid-Joint-Replacement\">Avoid Joint Replacement</a></p>\r\n<p><a href=\"/Stop-Shoulder-Pain-from-Rotator-Cuff-and-Other-Shoulder-Injuries\">Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries</a></p>\r\n<p><a href=\"/Unrelenting-Back-Pain-Repaired-with-Regenerative-Orthopedics\">Unrelenting Back Pain Repaired with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/Do-Your-Knees-Hurt\">Do Your Knees Hurt?</a></p>\r\n<p><a href=\"/Repairing-Sports-Injuries-with-Regenerative-Orthopedics\">Repairing Sports Injuries with Regenerative Orthopedics</a></p>\r\n<p><a href=\"/Stem-Cell-Therapy-Options-for-Arthritis\">Stem Cell Therapy Options for Arthritis</a></p>\r\n<p><a href=\"/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-ENGLISH\">Regenerative Medicine Lecture in Mexico City (English) </a></p>\r\n<p><a href=\"/REGENERATIVE-MEDICINE-LECTURE-IN-MEXICO-CITY-SPANISH\">Regenerative Medicine Lecture in Mexico City (Spanish)</a></p>\r\n<p><a href=\"/How-to-Avoid-Joint-Spine-Surgery-and-Live-Pain-Free\">How to Avoid Joint &amp; Spine Surgery and Live Pain Free</a></p>\r\n<p><a href=\"/Dr-Fields-Lectures-to-Over-400-Physicians-in-Las-Vegas\">Dr. Fields Lectures to Over 400 Physicians in Las Vegas</a></p>\r\n<p><a href=\"/2019-Lecture-Schedule\">2019 Regenerative Orthopedics Lecture Schedule</a></p>\r\n<p><a href=\"FDA-Warns-of-Serious-Neurologic-Problems-After-Epidural-Corticosteroid-Injections\">FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections</a></p>\r\n<p><a href=\"Prolotherapy-for-Knee-Pain-Abstract\">Prolotherapy for Knee-Pain Abstract</a></p>\r\n<p><a href=\"/Download-Dr-Fields-Prolotherapy-Lecture-Today\">Download Dr. Fields Prolotherapy Lecture Today</a></p>\r\n<p><a href=\"/Dr-Fields-interviewed-on-KCAL-CBS-about-Prolotherapy\">Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'</a></p>\r\n<p><a href=\"/Dr-Fields-is-giving-a-presentation-on-prolotherapy\">Dr. Fields is giving a presentation on prolotherapy</a></p>\r\n<p><a href=\"/New-York-Times-Article-Injections-to-Kick-Start-Tissue-Repair\">New York Times Article: Injections to Kick-Start Tissue Repair</a></p>\r\n<p><a href=\"/View-and-Download-Dr-Fields-Latest-Lecture-on-Arthritis-and-Prolotherapy\">View and Download Dr. Fields Latest Lecture on Arthritis and Prolotherapy</a></p>\r\n<p><a href=\"/LA-Times-Article-A-Ski-Run-for-Border\">LA Times Article \"A Ski Run for Border\"</a></p>\r\n<p><a href=\"/Dr-Fields-Free-Open-to-the-Public-Lecture-on-Arthritis-Joint-Pain-and-Inflammation\">Dr. Fields Free Open to the Public Lecture on Arthritis, Joint Pain and Inflammation</a></p>\r\n<p><a href=\"/What-to-Ask-When-Looking-for-a-Prolotherapist\">What to Ask When Looking for a Prolotherapist</a></p>\r\n<p><a href=\"/Chronic-Pain-or-Injuries-Prolotherapy-Might-be-the-Answer\">Chronic Pain or Injuries? Prolotherapy Might be the Answer</a></p>\r\n<p><a href=\"/Prolotherapy-Is-It-For-You\">Prolotherapy - Is It For You</a></p>\r\n<p><a href=\"/Prolotherapy-for-Shoulder\">Prolotherapy for Shoulder</a></p>\r\n<p><a href=\"/Cortisone-Is-it-Really-Good-for-You\">Cortisone - Is it Really Good for You</a></p>\r\n<p><a href=\"/Chronic-Pain-Prolotherapy-May-be-the-Answer\">Chronic Pain? - Prolotherapy May be the Answer</a></p>\r\n<p><a href=\"/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">Joint Surgery? Think Again! Learn About Prolotherapy</a></p>\r\n','Prolo News old','','inherit','closed','closed','','665-revision-v1','','','2019-06-13 07:50:28','2019-06-13 07:50:28','',665,'https://www.drfields.com/uncategorized/665-revision-v1/',0,'revision','',0),(1555,8,'2019-06-13 08:06:23','2019-06-13 08:06:23','In Snapping Hip Syndrome, sufferers hear or feel a snap, pop, or click when they move their hip joint. Encountering these symptoms is not a normal process, but one that points to an injury or degenerative condition.&nbsp;\n\n<h3>What Is the Cause of Snapping Hip Syndrome?</h3>\nThere are several reasons Snapping Hip Syndrome occurs, and they can be due to problems either inside or outside of the hip joint. Most commonly, the condition involves a thick, wide tendon called the iliotibial band that runs along the outside or lateral side of the hip joint. The iliotibial band snaps over the bony prominence, a part of the thigh bone that sticks out, called the greater trochanter on the outside of the hip.&nbsp; When a person with this condition moves into a standing position for example, the band may be positioned behind the trochanter, and then when bending the hip, the band will move and “snap” over towards the front of the bony prominence. Over time, irritation from this “snapping” may also result in bursitis.\n\nAnother tendon is involved in the second cause of Snapping Hip Syndrome, as it catches on underlying bony prominences of the pelvis. The iliopsoas tendon snaps over the iliopectineal eminence when bending or flexing the hip. The annoying snapping sensation or sound is generally the only symptom involved when the iliopsoas tendon is the source.\n\nAn additional area where snapping can occur is where the ball of the hip joint fits into the socket. This snapping involves the rectus femoris tendon as it runs from inside the thighbone and up through the pelvis. When the hip joint bends and straightens, the tendon moves and snaps back and forth across the ball of the hip joint.\n\nThe least common cause of Snapping Hip Syndrome occurs inside the hip joint and involves a tear in the hip labrum or a tear in the cartilage. Bits of cartilage or even bone can also become loose inside the joint, in these types of injuries. These pieces are called loose fragments and can be an associated cause of Snapping Hip Syndrome which can cause the hip to lock up. In this scenario inside the hip, the sufferer often experiences pain that is disabling.&nbsp;\n\nA combination of the various causes, plus muscle injury can also occur. Additionally, if the problem is ongoing and the tendons remain lax over a prolonged period of time, Snapping Hip Syndrome can lead to arthritis.\n\n<h3>Who Experiences Snapping Hip Syndrome?</h3>\nSnapping Hip Syndrome is common in young athletes like ballet dancers, soccer players, and runners. Dancers and other athletes repetitively move their hip in order to perform their dance or sport. If the hip and the tendons are moving abnormally, such as with Snapping Hip Syndrome, the abnormal rubbing and snapping of the tissue over bony prominences will occur again and again. When experiencing the symptoms, these athletes will frequently turn to treatments to relieve tight muscles, because they attribute their problem to overtraining. Treating muscles may give some relief, but will not repair the underlying injury to the ligaments, tendons, and/or hip labrum. Treatments that repair these soft tissue structures are necessary to stabilize the hip joint and stop the snapping from occurring.\n\n<h3>Regenerative Orthopedic Treatments for Snapping Hip Syndrome</h3>\nRegenerative Orthopedics directed towards the strengthening of these tendons and any involved ligaments, plus repair of the hip labrum, can tighten the joint and resolve the problem. Oftentimes an underlying problem of looseness or laxity of the hip joint is involved, causing instability of the hip joint. Regenerative Orthopedics treats the hip instability, because it tightens and strengthens the injured and lax structures, and regenerates the areas that need healing. The treatment actually gets to the root cause of the problem, and is effective at repairing the injured soft tissue, and resolving the problem.&nbsp;\n\nThe injected solutions in Regenerative Orthopedic treatments draw immune cells and growth factors to the area in an effort to build new healthy soft tissue. The healing and repair boosts the body’s natural response of healing in soft-tissue injuries.&nbsp; The result is ligaments and tendons that are stronger, and no longer loose.&nbsp; The snapping and pain goes away, and the athlete can return to the sport they love.\n\nIf the cause of Snapping Hip Syndrome is a torn labrum or cartilage, a more advanced technique of Regenerative Orthopedics, including Stem Cell Therapy and/or PRP, may be required.&nbsp; Labral tears respond well to these treatments, and cartilage can regenerate. If loose fragments are involved, the physician will need to determine whether or not surgical removal is necessary.\n\nRegenerative Orthopedic treatments for Snapping Hip Syndrome get to the root cause of the condition, specifically the damaged connective tissues like tendons ligaments, and labrum, and return you quickly to the activities you enjoy doing.&nbsp;\n','Snapping Hip Syndrome','','inherit','closed','closed','','1374-autosave-v1','','','2019-06-13 08:06:23','2019-06-13 08:06:23','',1374,'https://www.drfields.com/uncategorized/1374-autosave-v1/',0,'revision','',0),(1556,8,'2019-06-13 08:07:18','2019-06-13 08:07:18','In Snapping Hip Syndrome, sufferers hear or feel a snap, pop, or click when they move their hip joint. Encountering these symptoms is not a normal process, but one that points to an injury or degenerative condition.&nbsp;\r\n\r\n<h5>What Is the Cause of Snapping Hip Syndrome?</h5>\r\nThere are several reasons Snapping Hip Syndrome occurs, and they can be due to problems either inside or outside of the hip joint. Most commonly, the condition involves a thick, wide tendon called the iliotibial band that runs along the outside or lateral side of the hip joint. The iliotibial band snaps over the bony prominence, a part of the thigh bone that sticks out, called the greater trochanter on the outside of the hip.&nbsp; When a person with this condition moves into a standing position for example, the band may be positioned behind the trochanter, and then when bending the hip, the band will move and “snap” over towards the front of the bony prominence. Over time, irritation from this “snapping” may also result in bursitis.\r\n\r\nAnother tendon is involved in the second cause of Snapping Hip Syndrome, as it catches on underlying bony prominences of the pelvis. The iliopsoas tendon snaps over the iliopectineal eminence when bending or flexing the hip. The annoying snapping sensation or sound is generally the only symptom involved when the iliopsoas tendon is the source.\r\n\r\nAn additional area where snapping can occur is where the ball of the hip joint fits into the socket. This snapping involves the rectus femoris tendon as it runs from inside the thighbone and up through the pelvis. When the hip joint bends and straightens, the tendon moves and snaps back and forth across the ball of the hip joint.\r\n\r\nThe least common cause of Snapping Hip Syndrome occurs inside the hip joint and involves a tear in the hip labrum or a tear in the cartilage. Bits of cartilage or even bone can also become loose inside the joint, in these types of injuries. These pieces are called loose fragments and can be an associated cause of Snapping Hip Syndrome which can cause the hip to lock up. In this scenario inside the hip, the sufferer often experiences pain that is disabling.&nbsp;\r\n\r\nA combination of the various causes, plus muscle injury can also occur. Additionally, if the problem is ongoing and the tendons remain lax over a prolonged period of time, Snapping Hip Syndrome can lead to arthritis.\r\n\r\n<h5>Who Experiences Snapping Hip Syndrome?</h5>\r\nSnapping Hip Syndrome is common in young athletes like ballet dancers, soccer players, and runners. Dancers and other athletes repetitively move their hip in order to perform their dance or sport. If the hip and the tendons are moving abnormally, such as with Snapping Hip Syndrome, the abnormal rubbing and snapping of the tissue over bony prominences will occur again and again. When experiencing the symptoms, these athletes will frequently turn to treatments to relieve tight muscles, because they attribute their problem to overtraining. Treating muscles may give some relief, but will not repair the underlying injury to the ligaments, tendons, and/or hip labrum. Treatments that repair these soft tissue structures are necessary to stabilize the hip joint and stop the snapping from occurring.\r\n\r\n<h5>Regenerative Orthopedic Treatments for Snapping Hip Syndrome</h5>\r\nRegenerative Orthopedics directed towards the strengthening of these tendons and any involved ligaments, plus repair of the hip labrum, can tighten the joint and resolve the problem. Oftentimes an underlying problem of looseness or laxity of the hip joint is involved, causing instability of the hip joint. Regenerative Orthopedics treats the hip instability, because it tightens and strengthens the injured and lax structures, and regenerates the areas that need healing. The treatment actually gets to the root cause of the problem, and is effective at repairing the injured soft tissue, and resolving the problem.&nbsp;\r\n\r\nThe injected solutions in Regenerative Orthopedic treatments draw immune cells and growth factors to the area in an effort to build new healthy soft tissue. The healing and repair boosts the body’s natural response of healing in soft-tissue injuries.&nbsp; The result is ligaments and tendons that are stronger, and no longer loose.&nbsp; The snapping and pain goes away, and the athlete can return to the sport they love.\r\n\r\nIf the cause of Snapping Hip Syndrome is a torn labrum or cartilage, a more advanced technique of Regenerative Orthopedics, including Stem Cell Therapy and/or PRP, may be required.&nbsp; Labral tears respond well to these treatments, and cartilage can regenerate. If loose fragments are involved, the physician will need to determine whether or not surgical removal is necessary.\r\n\r\nRegenerative Orthopedic treatments for Snapping Hip Syndrome get to the root cause of the condition, specifically the damaged connective tissues like tendons ligaments, and labrum, and return you quickly to the activities you enjoy doing.&nbsp;\r\n','Snapping Hip Syndrome','','inherit','closed','closed','','1374-revision-v1','','','2019-06-13 08:07:18','2019-06-13 08:07:18','',1374,'https://www.drfields.com/uncategorized/1374-revision-v1/',0,'revision','',0),(1557,8,'2019-06-13 08:19:06','2019-06-13 08:19:06','Testimonial Thumb Mary','Testimonial Thumb Mary','Testimonial Thumb Mary','inherit','open','closed','','testimonial-thumb-mary','','','2019-06-13 08:19:06','2019-06-13 08:19:06','',0,'https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png',0,'attachment','image/png',0),(1558,8,'2019-06-13 08:23:16','2019-06-13 08:23:16','<h1>Regenerative Orthopedics:\r\nFixing Your Joints and Spine Without Surgery</h1>\r\nPeter A. Fields, MD, DC had a pleasure of lecturing about Regenerative Orthopedics in Mexico at a Medical Convention in Mexico City. Dr. Fields always loves to take the opportunity to educate his peer as well as the public on the benefits of this non-surgical alternative.\r\n\r\nSince joint replacements are increasing so much year after year, it is so important to know that there is an option other than surgery. Regenerative Orthopedics is effective as a non-surgical option to repair joint injuries and to regenerative degenerated joints. For those who have injured their joints and for those who suffer from joint pain because of arthritis, this non-surgical option is a great way to experience pain relief.\r\n\r\nIt was an honor to have this opportunity to talk about Regenerative Orthopedics in Mexico, and discuss how patients can fix their joints and spine without surgery. By choosing this non-surgical at OrthoRegen and Peter A. Fields, MD, DC patients can find lasting pain relief.\r\n\r\nSchedule an appointment or <a href=\"https://www.drfields.com/contact/\">contact us</a> for more information at <strong><a href=\"tel:310-453-1234\">310-453-1234</a>.</strong>\r\n\r\nSee link below for more photos:\r\n\r\n<a href=\"https://photos.app.goo.gl/hJxezx9ECHWjf6Sd2\" target=\"_blank\" rel=\"noopener noreferrer\">Click Here for More Photos</a>\r\n\r\n[caption id=\"\" align=\"alignnone\" width=\"400\"]<img class=\"smallgallery_image\" title=\"Lecture Mexico City\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-2.jpg\" alt=\"Regenerative Orthopedics in Mexico \" width=\"400\" height=\"499\" /> Dr. Fields lecturing on Regenerative Orthopedics in Mexico City[/caption]\r\n\r\n<img class=\"smallgallery_image\" title=\"Mexico City Lecture 2018\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-1.jpg\" alt=\"Mexico City Lecture 2018\" /><img class=\"smallgallery_image\" title=\"A man is holding a baby\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-3.jpg\" alt=\"A man is holding a baby\" />\r\n\r\n<a class=\"buttonlink\" href=\"/Contact-Us\">  Schedule Your Appointment Today!</a>','Regenerative Orthopedics in Mexico','','publish','open','closed','','regenerative-orthopedics-in-mexico','','','2020-10-07 19:14:29','2020-10-07 19:14:29','',0,'https://www.drfields.com/?p=1558',0,'post','',0),(1559,8,'2019-06-13 08:23:16','2019-06-13 08:23:16','<div id=\"dnn_ctr785_ModuleContent\" class=\"DNNModuleContent ModDNNHTMLC\">\r\n<div id=\"dnn_ctr785_HtmlModule_lblContent\" class=\"Normal\">\r\n<h1>Regenerative Orthopedics:\r\nFixing Your Joints and Spine Without Surgery</h1>\r\nDr. Fields Lectured at a Medical Convention in Mexico City 2/16/18\r\n\r\nSee link below for more photos:\r\n\r\n<a href=\"https://photos.app.goo.gl/hJxezx9ECHWjf6Sd2\" target=\"_blank\" rel=\"noopener noreferrer\">Click Here for More Photos</a>\r\n\r\n<img class=\"smallgallery_image\" title=\"Mexico City Lecture 2018\" src=\"https://www.drfields.com/portals/0/Images/Health%20News/Lecture-Mexico-City-1.jpg?ver=2018-03-29-163650-083\" alt=\"Mexico City Lecture 2018\" /><img class=\"smallgallery_image\" title=\"Lecture Mexico City\" src=\"https://www.drfields.com/portals/0/Images/Health%20News/Lecture-Mexico-City-2.jpg?ver=2018-03-29-163650-253\" alt=\"Lecture Mexico City\" /><img class=\"smallgallery_image\" title=\"A man is holding a baby\" src=\"https://www.drfields.com/portals/0/Images/Health%20News/Lecture-Mexico-City-3.jpg?ver=2018-03-29-163650-363\" alt=\"A man is holding a baby\" /><a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n\r\n</div>\r\n</div>','Mexico City Lecture 2018','','inherit','closed','closed','','1558-revision-v1','','','2019-06-13 08:23:16','2019-06-13 08:23:16','',1558,'https://www.drfields.com/uncategorized/1558-revision-v1/',0,'revision','',0),(1561,8,'2019-06-13 08:27:57','2019-06-13 08:27:57','\n<h1>Regenerative Orthopedics:\nFixing Your Joints and Spine Without Surgery</h1>\nDr. Fields Lectured at a Medical Convention in Mexico City 2/16/18\n\nSee link below for more photos:\n\n<a href=\"https://photos.app.goo.gl/hJxezx9ECHWjf6Sd2\" target=\"_blank\" rel=\"noopener noreferrer\">Click Here for More Photos</a>\n\n<img class=\"smallgallery_image\" title=\"Mexico City Lecture 2018\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-1.jpg\" alt=\"Mexico City Lecture 2018\" /><img class=\"smallgallery_image\" title=\"Lecture Mexico City\" src=\"https://www.drfields.com/portals/0/Images/Health%20News/Lecture-Mexico-City-2.jpg?ver=2018-03-29-163650-253\" alt=\"Lecture Mexico City\" /><img class=\"smallgallery_image\" title=\"A man is holding a baby\" src=\"https://www.drfields.com/portals/0/Images/Health%20News/Lecture-Mexico-City-3.jpg?ver=2018-03-29-163650-363\" alt=\"A man is holding a baby\" /><a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\n\n</div>\n</div>','Mexico City Lecture 2018','','inherit','closed','closed','','1558-autosave-v1','','','2019-06-13 08:27:57','2019-06-13 08:27:57','',1558,'https://www.drfields.com/uncategorized/1558-autosave-v1/',0,'revision','',0),(1562,8,'2019-06-13 08:27:33','2019-06-13 08:27:33','Lecture Mexico City 1','Lecture Mexico City 1','Lecture Mexico City 1','inherit','open','closed','','lecture-mexico-city-1','','','2019-06-13 08:27:33','2019-06-13 08:27:33','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-1.jpg',0,'attachment','image/jpeg',0),(1563,8,'2019-06-13 08:27:35','2019-06-13 08:27:35','Lecture Mexico City 2','Lecture Mexico City 2','Lecture Mexico City 2','inherit','open','closed','','lecture-mexico-city-2','','','2019-06-13 08:27:35','2019-06-13 08:27:35','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-2.jpg',0,'attachment','image/jpeg',0),(1564,8,'2019-06-13 08:27:36','2019-06-13 08:27:36','Lecture Mexico City 3','Lecture Mexico City 3','Lecture Mexico City 3','inherit','open','closed','','lecture-mexico-city-3','','','2019-06-13 08:27:36','2019-06-13 08:27:36','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-3.jpg',0,'attachment','image/jpeg',0),(1565,8,'2019-06-13 08:28:47','2019-06-13 08:28:47','\r\n<h1>Regenerative Orthopedics:\r\nFixing Your Joints and Spine Without Surgery</h1>\r\nDr. Fields Lectured at a Medical Convention in Mexico City 2/16/18\r\n\r\nSee link below for more photos:\r\n\r\n<a href=\"https://photos.app.goo.gl/hJxezx9ECHWjf6Sd2\" target=\"_blank\" rel=\"noopener noreferrer\">Click Here for More Photos</a>\r\n\r\n<img class=\"smallgallery_image\" title=\"Mexico City Lecture 2018\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-1.jpg\" alt=\"Mexico City Lecture 2018\" /><img class=\"smallgallery_image\" title=\"Lecture Mexico City\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-2.jpg\" alt=\"Lecture Mexico City\" /><img class=\"smallgallery_image\" title=\"A man is holding a baby\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-3.jpg\" alt=\"A man is holding a baby\" />\r\n\r\n<a class=\"secondaryButton bglight\" href=\"Contact-Us\">  Schedule Your Appointment Today!</a>\r\n','Mexico City Lecture 2018','','inherit','closed','closed','','1558-revision-v1','','','2019-06-13 08:28:47','2019-06-13 08:28:47','',1558,'https://www.drfields.com/uncategorized/1558-revision-v1/',0,'revision','',0),(1566,8,'2019-06-13 08:29:23','2019-06-13 08:29:23','<h1>Regenerative Orthopedics:\r\nFixing Your Joints and Spine Without Surgery</h1>\r\nDr. Fields Lectured at a Medical Convention in Mexico City 2/16/18\r\n\r\nSee link below for more photos:\r\n\r\n<a href=\"https://photos.app.goo.gl/hJxezx9ECHWjf6Sd2\" target=\"_blank\" rel=\"noopener noreferrer\">Click Here for More Photos</a>\r\n\r\n<img class=\"smallgallery_image\" title=\"Mexico City Lecture 2018\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-1.jpg\" alt=\"Mexico City Lecture 2018\" /><img class=\"smallgallery_image\" title=\"Lecture Mexico City\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-2.jpg\" alt=\"Lecture Mexico City\" /><img class=\"smallgallery_image\" title=\"A man is holding a baby\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-3.jpg\" alt=\"A man is holding a baby\" />\r\n\r\n<a class=\"buttonlink\" href=\"/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n','Mexico City Lecture 2018','','inherit','closed','closed','','1558-revision-v1','','','2019-06-13 08:29:23','2019-06-13 08:29:23','',1558,'https://www.drfields.com/uncategorized/1558-revision-v1/',0,'revision','',0),(1567,8,'2019-06-13 08:56:38','2019-06-13 08:56:38','<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[playlist type=\"video\" tracklist=\"false\" ids=\"2033\"]\r\n</div>\r\n<p>&nbsp;</p>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" class=\"aligncenter\"/>\r\n<a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\" ><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;<strong>Dr. Fields on the Radio</strong></a>\r\n</div>\r\n','Dr. Fields on TV and more','','publish','closed','closed','','doc-on-tv','','','2020-04-21 19:45:22','2020-04-21 19:45:22','',0,'https://www.drfields.com/?page_id=1567',0,'page','',0),(1568,8,'2019-06-13 08:56:38','2019-06-13 08:56:38','<div class=\"item\">\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\'); ?>\r\n<p>Dr. Fields Lectures in Las Vegas to 400+ Physicians</p>	\r\n</div>\r\n<div class=\"item\">\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\'); ?>\r\n<p>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</p>	\r\n</div>\r\n<div class=\"item\">\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\'); ?>\r\n<p>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</p>	\r\n</div>\r\n<div class=\"item\">\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\'); ?>\r\n<p>Interview with Dr. Fields</p>	\r\n</div>	','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-13 08:56:38','2019-06-13 08:56:38','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(1569,8,'2019-06-13 08:59:15','2019-06-13 08:59:15','<div class=\"item\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<p>Dr. Fields Lectures in Las Vegas to 400+ Physicians</p>	\r\n</div>\r\n<div class=\"item\">\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\'); ?>\r\n<p>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</p>	\r\n</div>\r\n<div class=\"item\">\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\'); ?>\r\n<p>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</p>	\r\n</div>\r\n<div class=\"item\">\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\'); ?>\r\n<p>Interview with Dr. Fields</p>	\r\n</div>	','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-13 08:59:15','2019-06-13 08:59:15','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(1570,8,'2019-06-15 13:40:01','2019-06-15 13:40:01','<div class=\"youtube-click-div \" id=\"videocentre\">\n[playlist type=\"video\" tracklist=\"false\" ids=\"2033\"]\n</div>\n<p>&nbsp;</p>\n\n<div class=\"clear\"></div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\n</div>\n\n\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\n</div>\n\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\n</div>\n\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\n<strong>Interview with Dr. Fields</strong>\n</div>	\n\n<div class=\"clear\"></div>\n\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\n<p>Additional Interview with Dr. Fields</strong>	\n</div>	\n\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" class=\"aligncenter\"/>\n<a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\" ><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;<strong>Dr. Fields on the Radio</strong></a>\n</div>\n','Doc on TV','','inherit','closed','closed','','1567-autosave-v1','','','2019-06-15 13:40:01','2019-06-15 13:40:01','',1567,'https://www.drfields.com/uncategorized/1567-autosave-v1/',0,'revision','',0),(1571,8,'2019-06-13 09:02:55','2019-06-13 09:02:55','Drfields Extra Interview','Drfields Extra Interview','Drfields Extra Interview','inherit','open','closed','','drfields-extra-interview','','','2019-06-13 09:02:55','2019-06-13 09:02:55','',0,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg',0,'attachment','image/jpeg',0),(1572,8,'2019-06-13 09:04:21','2019-06-13 09:04:21','<div class=\"item\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians/strong>	\r\n</div>\r\n\r\n<div class=\"item\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"item\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"item\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"item\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-13 09:04:21','2019-06-13 09:04:21','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(1573,8,'2019-06-13 09:04:37','2019-06-13 09:04:37','<div class=\"item\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n<div class=\"item\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"item\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"item\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"item\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-13 09:04:37','2019-06-13 09:04:37','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(1574,8,'2019-06-13 09:05:35','2019-06-13 09:05:35','<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-13 09:05:35','2019-06-13 09:05:35','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(1575,8,'2019-06-13 09:07:25','2019-06-13 09:07:25','<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n\r\n</div>\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-13 09:07:25','2019-06-13 09:07:25','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(1576,8,'2019-06-13 09:08:37','2019-06-13 09:08:37','<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-13 09:08:37','2019-06-13 09:08:37','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(1577,8,'2019-06-13 09:12:45','2019-06-13 09:12:45','<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-13 09:12:45','2019-06-13 09:12:45','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(1578,8,'2019-06-13 09:14:04','2019-06-13 09:14:04','<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-13 09:14:04','2019-06-13 09:14:04','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(1579,8,'2019-06-13 09:14:38','2019-06-13 09:14:38','<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-13 09:14:38','2019-06-13 09:14:38','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(1580,8,'2019-06-13 09:17:33','2019-06-13 09:17:33','<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div id=\"youtubeleft\"\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div id=\"youtubeleft\"\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-13 09:17:33','2019-06-13 09:17:33','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(1581,8,'2019-06-13 09:19:03','2019-06-13 09:19:03','<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-13 09:19:03','2019-06-13 09:19:03','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(1582,8,'2019-06-13 09:21:43','2019-06-13 09:21:43','<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\"/>\r\n<a href=\"#\" class=\"buttonlink\" ><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;<strong>Dr. Fields on the Radio</strong></a>\r\n</div>\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-13 09:21:43','2019-06-13 09:21:43','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(1583,8,'2019-06-13 09:22:06','2019-06-13 09:22:06','<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" class=\"aligncenter\"/>\r\n<a href=\"#\" class=\"buttonlink\" ><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;<strong>Dr. Fields on the Radio</strong></a>\r\n</div>\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-13 09:22:06','2019-06-13 09:22:06','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(1584,8,'2019-06-13 09:23:00','2019-06-13 09:23:00','<div class=\"col-md-8\">\r\n\r\n[playlist ids=\"1587,1589,1588,2750,2751,2752\"]\r\n\r\n</div>\r\n<div class=\"col-md-4\"><img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" />\r\n<h6 class=\"text-center\">Peter A. Fields MD DC\r\nThe Athletic Doc®</h6>\r\n</div>','Dr. Fields on the Radio','','publish','closed','closed','','dr-fields-on-the-radio','','','2019-09-09 20:23:57','2019-09-09 20:23:57','',0,'https://www.drfields.com/?page_id=1584',0,'page','',0),(1585,8,'2019-06-13 09:23:00','2019-06-13 09:23:00','','Dr. Fields on the Radio','','inherit','closed','closed','','1584-revision-v1','','','2019-06-13 09:23:00','2019-06-13 09:23:00','',1584,'https://www.drfields.com/uncategorized/1584-revision-v1/',0,'revision','',0),(1586,8,'2019-06-13 09:24:55','2019-06-13 09:24:55','<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" class=\"aligncenter\"/>\r\n<a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\" ><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;<strong>Dr. Fields on the Radio</strong></a>\r\n</div>\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-13 09:24:55','2019-06-13 09:24:55','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(1587,8,'2019-06-13 09:26:33','2019-06-13 09:26:33','Attitude Adjustment (Regenerative Techniques)','Attitude Adjustment (Regenerative Techniques)','','inherit','open','closed','','attitude-new','','','2019-06-13 09:48:18','2019-06-13 09:48:18','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Attitude-Adjustment-Regenrative-Techniques.mp3',0,'attachment','audio/mpeg',0),(1588,8,'2019-06-13 09:27:14','2019-06-13 09:27:14','The Natural Health Show( Prolotherapy and Hormone Therapy)','The Natural Health Show( Prolotherapy and Hormone Therapy)','','inherit','open','closed','','the-natural-health-show-prolotherapy-and-hormone-therapy','','','2019-06-13 09:48:27','2019-06-13 09:48:27','',0,'https://www.drfields.com/wp-content/uploads/2019/06/The-Natural-Health-Show-Prolotherapy-and-Hormone-Therapy.mp3',0,'attachment','audio/mpeg',0),(1589,8,'2019-06-13 09:27:32','2019-06-13 09:27:32','The Triathlon Show (Prolotherapy)','The Triathlon Show (Prolotherapy)','','inherit','open','closed','','dr-fields-2','','','2019-09-09 20:23:30','2019-09-09 20:23:30','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Triathlon-Show-Prolotherapy.mp3',0,'attachment','audio/mpeg',0),(1590,8,'2019-06-13 09:46:57','2019-06-13 09:46:57','[playlist ids=\"1587,1589,1588\"]','Dr. Fields on the Radio','','inherit','closed','closed','','1584-revision-v1','','','2019-06-13 09:46:57','2019-06-13 09:46:57','',1584,'https://www.drfields.com/uncategorized/1584-revision-v1/',0,'revision','',0),(1592,8,'2019-06-13 09:48:55','2019-06-13 09:48:55','[playlist ids=\"1587,1588,1589\"]','Dr. Fields on the Radio','','inherit','closed','closed','','1584-revision-v1','','','2019-06-13 09:48:55','2019-06-13 09:48:55','',1584,'https://www.drfields.com/uncategorized/1584-revision-v1/',0,'revision','',0),(1593,8,'2019-06-13 09:49:18','2019-06-13 09:49:18','[playlist ids=\"1587,1589,1588\"]','Dr. Fields on the Radio','','inherit','closed','closed','','1584-revision-v1','','','2019-06-13 09:49:18','2019-06-13 09:49:18','',1584,'https://www.drfields.com/uncategorized/1584-revision-v1/',0,'revision','',0),(1594,8,'2019-06-13 09:50:19','2019-06-13 09:50:19','[playlist ids=\"1587,1589,1588\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignright size-full wp-image-955\" /><strong>Peter A. Fields MD DC\r\nThe Athletic Doc®</strong>','Dr. Fields on the Radio','','inherit','closed','closed','','1584-revision-v1','','','2019-06-13 09:50:19','2019-06-13 09:50:19','',1584,'https://www.drfields.com/uncategorized/1584-revision-v1/',0,'revision','',0),(1595,8,'2019-06-13 09:50:39','2019-06-13 09:50:39','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignright size-full wp-image-955\" /><strong>Peter A. Fields MD DC\r\nThe Athletic Doc®</strong>[playlist ids=\"1587,1589,1588\"]','Dr. Fields on the Radio','','inherit','closed','closed','','1584-revision-v1','','','2019-06-13 09:50:39','2019-06-13 09:50:39','',1584,'https://www.drfields.com/uncategorized/1584-revision-v1/',0,'revision','',0),(1596,8,'2019-06-13 09:51:33','2019-06-13 09:51:33','<div class=\"col-md-8\">\r\n[playlist ids=\"1587,1589,1588\"]\r\n</div>\r\n<div class=\"col-md-4\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignright size-full wp-image-955\" /><strong>Peter A. Fields MD DC\r\nThe Athletic Doc®</strong>\r\n</div>','Dr. Fields on the Radio','','inherit','closed','closed','','1584-revision-v1','','','2019-06-13 09:51:33','2019-06-13 09:51:33','',1584,'https://www.drfields.com/uncategorized/1584-revision-v1/',0,'revision','',0),(1597,8,'2019-06-13 09:52:07','2019-06-13 09:52:07','<div class=\"col-md-8\">\r\n[playlist ids=\"1587,1589,1588\"]\r\n</div>\r\n<div class=\"col-md-4\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" /><strong>Peter A. Fields MD DC\r\nThe Athletic Doc®</strong>\r\n</div>','Dr. Fields on the Radio','','inherit','closed','closed','','1584-revision-v1','','','2019-06-13 09:52:07','2019-06-13 09:52:07','',1584,'https://www.drfields.com/uncategorized/1584-revision-v1/',0,'revision','',0),(1598,8,'2019-06-13 09:52:46','2019-06-13 09:52:46','<div class=\"col-md-8\">\r\n[playlist ids=\"1587,1589,1588\"]\r\n</div>\r\n<div class=\"col-md-4 aligncenter\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" /><strong >Peter A. Fields MD DC\r\nThe Athletic Doc®</strong>\r\n</div>','Dr. Fields on the Radio','','inherit','closed','closed','','1584-revision-v1','','','2019-06-13 09:52:46','2019-06-13 09:52:46','',1584,'https://www.drfields.com/uncategorized/1584-revision-v1/',0,'revision','',0),(1599,8,'2019-06-13 09:53:35','2019-06-13 09:53:35','<div class=\"col-md-8\">\r\n[playlist ids=\"1587,1589,1588\"]\r\n</div>\r\n<div class=\"col-md-4 aligncenter\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"aligncenter\"/><strong class=\"aligncenter\">Peter A. Fields MD DC\r\nThe Athletic Doc®</strong>\r\n</div>','Dr. Fields on the Radio','','inherit','closed','closed','','1584-revision-v1','','','2019-06-13 09:53:35','2019-06-13 09:53:35','',1584,'https://www.drfields.com/uncategorized/1584-revision-v1/',0,'revision','',0),(1600,8,'2019-06-13 09:53:54','2019-06-13 09:53:54','<div class=\"col-md-8\">\r\n[playlist ids=\"1587,1589,1588\"]\r\n</div>\r\n<div class=\"col-md-4\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"aligncenter\"/><strong class=\"aligncenter\">Peter A. Fields MD DC\r\nThe Athletic Doc®</strong>\r\n</div>','Dr. Fields on the Radio','','inherit','closed','closed','','1584-revision-v1','','','2019-06-13 09:53:54','2019-06-13 09:53:54','',1584,'https://www.drfields.com/uncategorized/1584-revision-v1/',0,'revision','',0),(1601,8,'2019-06-13 09:54:11','2019-06-13 09:54:11','<div class=\"col-md-8\">\r\n[playlist ids=\"1587,1589,1588\"]\r\n</div>\r\n<div class=\"col-md-4\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"aligncenter\"/><strong class=\"text-center\">Peter A. Fields MD DC\r\nThe Athletic Doc®</strong>\r\n</div>','Dr. Fields on the Radio','','inherit','closed','closed','','1584-revision-v1','','','2019-06-13 09:54:11','2019-06-13 09:54:11','',1584,'https://www.drfields.com/uncategorized/1584-revision-v1/',0,'revision','',0),(1602,8,'2019-06-13 09:55:24','2019-06-13 09:55:24','<div class=\"col-md-8\">\r\n[playlist ids=\"1587,1589,1588\"]\r\n</div>\r\n<div class=\"col-md-4\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"aligncenter\"/><h6 class=\"textcenter\">Peter A. Fields MD DC\r\nThe Athletic Doc®</h6>\r\n</div>','Dr. Fields on the Radio','','inherit','closed','closed','','1584-revision-v1','','','2019-06-13 09:55:24','2019-06-13 09:55:24','',1584,'https://www.drfields.com/uncategorized/1584-revision-v1/',0,'revision','',0),(1603,8,'2019-06-13 09:56:05','2019-06-13 09:56:05','<div class=\"col-md-8\">\r\n[playlist ids=\"1587,1589,1588\"]\r\n</div>\r\n<div class=\"col-md-4\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"aligncenter\"/><br><h6 class=\"text-center\">Peter A. Fields MD DC\r\nThe Athletic Doc®</h6>\r\n</div>','Dr. Fields on the Radio','','inherit','closed','closed','','1584-revision-v1','','','2019-06-13 09:56:05','2019-06-13 09:56:05','',1584,'https://www.drfields.com/uncategorized/1584-revision-v1/',0,'revision','',0),(1604,8,'2019-06-13 10:03:26','2019-06-13 10:03:26','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><strong >On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong class=\"subhead\">THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n\r\n<p>&nbsp; </p>\r\n<p>&nbsp; </p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong class=\"subhead\">THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong class=\"subhead\">THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong class=\"subhead\">THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 1st Ironman','','inherit','closed','closed','','92-revision-v1','','','2019-06-13 10:03:26','2019-06-13 10:03:26','',92,'https://www.drfields.com/uncategorized/92-revision-v1/',0,'revision','',0),(1605,8,'2019-06-13 10:04:19','2019-06-13 10:04:19','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><strong >On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p>&nbsp; </p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong class=\"subhead\">THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n\r\n<p>&nbsp; </p>\r\n<p>&nbsp; </p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong class=\"subhead\">THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong class=\"subhead\">THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong class=\"subhead\">THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 1st Ironman','','inherit','closed','closed','','92-revision-v1','','','2019-06-13 10:04:19','2019-06-13 10:04:19','',92,'https://www.drfields.com/uncategorized/92-revision-v1/',0,'revision','',0),(1607,8,'2019-06-14 03:55:54','2019-06-14 03:55:54','<h2 class=\"text-center\">Please fill out the form below for your inquiries!<h2>\r\n\r\n[contact-form-7 id=\"4\" title=\"Contact page form\"]','Contact','','inherit','closed','closed','','29-revision-v1','','','2019-06-14 03:55:54','2019-06-14 03:55:54','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(1608,8,'2019-06-14 04:30:19','2019-06-14 04:30:19','<h2>Coming Soon</h2>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 04:30:19','2019-06-14 04:30:19','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1609,8,'2019-06-14 04:53:48','2019-06-14 04:53:48','&nbsp;\r\n\r\n<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n<h4>Video: What is Prolotherapy Treatment?</h4>\r\n\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]\r\n\r\n<a class=\"buttonlink\" href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-14 04:53:48','2019-06-14 04:53:48','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(1610,8,'2019-06-14 04:54:16','2019-06-14 04:54:16','&nbsp;\r\n\r\n<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n<h4>Video: What is Prolotherapy Treatment?</h4>\r\n\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]\r\n\r\n<a class=\"buttonlink\" href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-14 04:54:16','2019-06-14 04:54:16','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(1611,8,'2019-06-14 04:56:40','2019-06-14 04:56:40','&nbsp;\r\n\r\n<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n<span class=\"text-center\">\r\n<h4>Video: What is Prolotherapy Treatment?</h4>\r\n\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]\r\n</span>\r\n<a class=\"buttonlink\" href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-14 04:56:40','2019-06-14 04:56:40','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(1612,8,'2019-06-14 04:58:14','2019-06-14 04:58:14','&nbsp;\r\n\r\n<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n<div class=\"text-center\">\r\n<h4>Video: What is Prolotherapy Treatment?</h4>\r\n\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]\r\n</div>\r\n<a class=\"buttonlink\" href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-14 04:58:14','2019-06-14 04:58:14','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(1613,8,'2019-06-14 04:59:48','2019-06-14 04:59:48','&nbsp;\r\n\r\n<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<h4 class=\"text-center\">Video: What is Prolotherapy Treatment?</h4>\r\n<div style=\"display: table;margin: 0 auto;\">\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]\r\n</div>\r\n<a class=\"buttonlink\" href=\"#\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-14 04:59:48','2019-06-14 04:59:48','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(1614,8,'2019-06-14 05:34:22','2019-06-14 05:34:22','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at the various videos on this page to help answer any questions you may have. And if you have any further questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"></h3>\r\n&nbsp;\r\n<h3>What Is Prolotherapy?</h3>\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how this non-surgical Regenerative Therapy can help you find relief and repair of your painful joint condition.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Do Prolotherapy Treatments Hurt?</h3>\r\nMost people do well without the need for any added anesthetic. The injections themselves contain an anesthetic and an anesthetic is applied to the skin prior to the treatment. The OrthoRegen staff will do everything possible to make your experience as pleasant as possible. And Dr. Fields will let you know what to expect before any treatment is begun.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','publish','open','closed','','prolotherapy-videos','','','2020-10-10 19:44:04','2020-10-10 19:44:04','',0,'https://www.drfields.com/?p=1614',0,'post','',0),(1615,8,'2019-06-14 05:09:19','2019-06-14 05:09:19','<h4>Prolotherapy By Peter A. Fields MD DC</h4>\r\n','Prolotherapy Videos','','inherit','closed','closed','','1614-revision-v1','','','2019-06-14 05:09:19','2019-06-14 05:09:19','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(1616,8,'2019-06-14 05:34:22','2019-06-14 05:34:22','<h4>Prolotherapy By Peter A. Fields MD DC</h4>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]\r\n<strong>Video on: What is Prolotherapy?</strong>	\r\n</div>','Prolotherapy Videos','','inherit','closed','closed','','1614-revision-v1','','','2019-06-14 05:34:22','2019-06-14 05:34:22','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(1617,8,'2019-06-14 05:35:21','2019-06-14 05:35:21','&nbsp;\r\n\r\n<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<h4 class=\"text-center\">Video: What is Prolotherapy Treatment?</h4>\r\n<div style=\"display: table;margin: 0 auto;\">\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]\r\n</div>\r\n<a class=\"buttonlink\" href=\"/regenerative-techniques/prolotherapy-videos/\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-14 05:35:21','2019-06-14 05:35:21','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(1618,8,'2019-06-14 05:39:31','2019-06-14 05:39:31','Prolotherapyimg1','Prolotherapyimg1','Prolotherapyimg1','inherit','open','closed','','prolotherapyimg1','','','2019-06-14 05:39:31','2019-06-14 05:39:31','',0,'https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg',0,'attachment','image/jpeg',0),(1619,8,'2019-06-14 05:39:32','2019-06-14 05:39:32','Prolotherapyimg2','Prolotherapyimg2','Prolotherapyimg2','inherit','open','closed','','prolotherapyimg2','','','2019-06-14 05:39:32','2019-06-14 05:39:32','',0,'https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg',0,'attachment','image/jpeg',0),(1620,8,'2019-06-14 05:39:33','2019-06-14 05:39:33','Prolotherapyimg3','Prolotherapyimg3','Prolotherapyimg3','inherit','open','closed','','prolotherapyimg3','','','2019-06-14 05:39:33','2019-06-14 05:39:33','',0,'https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg',0,'attachment','image/jpeg',0),(1621,8,'2019-06-14 05:39:33','2019-06-14 05:39:33','Prolotherapyimg4','Prolotherapyimg4','Prolotherapyimg4','inherit','open','closed','','prolotherapyimg4','','','2019-06-14 05:39:33','2019-06-14 05:39:33','',0,'https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg',0,'attachment','image/jpeg',0),(1622,8,'2019-06-14 05:40:08','2019-06-14 05:40:08','<h4>Prolotherapy By Peter A. Fields MD DC</h4>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]\r\n<strong>Video on: What is Prolotherapy?</strong>	\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n<strong>Video on: What to ask when looking for a Prolotherapist?</strong>	\r\n</div>','Prolotherapy Videos','','inherit','closed','closed','','1614-revision-v1','','','2019-06-14 05:40:08','2019-06-14 05:40:08','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(1623,8,'2019-06-14 05:41:34','2019-06-14 05:41:34','<h4>Prolotherapy By Peter A. Fields MD DC</h4>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]\r\n<strong>Video on: What is Prolotherapy?</strong>	\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n<strong>Video on: What to ask when looking for a Prolotherapist?</strong>	\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]\r\n<strong>Video on: How many treatments does one need for Prolotherapy?strong>	\r\n</div>\r\n','Prolotherapy Videos','','inherit','closed','closed','','1614-revision-v1','','','2019-06-14 05:41:34','2019-06-14 05:41:34','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(1624,8,'2019-06-14 05:44:05','2019-06-14 05:44:05','<h4>Prolotherapy By Peter A. Fields MD DC</h4>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]\n<strong>Video on: What is Prolotherapy?</strong>	\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\n<strong>Video on: What to ask when looking for a Prolotherapist?</strong>	\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]\n<strong>Video on: How many treatments does one need for Prolotherapy?</strong>	\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\n<strong>Video on: Do Prolotherapy injections hurt?</strong>	\n</div>\n<div class=\"clear\"></div>\n\n\n','Prolotherapy Videos','','inherit','closed','closed','','1614-autosave-v1','','','2019-06-14 05:44:05','2019-06-14 05:44:05','',1614,'https://www.drfields.com/uncategorized/1614-autosave-v1/',0,'revision','',0),(1625,8,'2019-06-14 05:44:09','2019-06-14 05:44:09','<h4>Prolotherapy By Peter A. Fields MD DC</h4>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]\r\n<strong>Video on: What is Prolotherapy?</strong>	\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n<strong>Video on: What to ask when looking for a Prolotherapist?</strong>	\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]\r\n<strong>Video on: How many treatments does one need for Prolotherapy?</strong>	\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n<strong>Video on: Do Prolotherapy injections hurt?</strong>	\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n<strong>Video on: Is Prolotherapy the same as cortisone injections?</strong>	\r\n</div>\r\n','Prolotherapy Videos','','inherit','closed','closed','','1614-revision-v1','','','2019-06-14 05:44:09','2019-06-14 05:44:09','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(1626,8,'2019-06-14 05:45:28','2019-06-14 05:45:28','<h4>Prolotherapy By Peter A. Fields MD DC</h4>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]\r\n<strong>Video on: What is Prolotherapy?</strong>	\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n<strong>Video on: What to ask when looking for a Prolotherapist?</strong>	\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]\r\n<strong>Video on: How many treatments does one need for Prolotherapy?</strong>	\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n<strong>Video on: Do Prolotherapy injections hurt?</strong>	\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n<strong>Video on: Is Prolotherapy the same as cortisone injections?</strong>	\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos','','inherit','closed','closed','','1614-revision-v1','','','2019-06-14 05:45:28','2019-06-14 05:45:28','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(1627,8,'2019-06-14 05:45:46','2019-06-14 05:45:46','<h4>Prolotherapy By Peter A. Fields MD DC</h4>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]\r\n<strong>Video on: What is Prolotherapy?</strong>	\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n<strong>Video on: What to ask when looking for a Prolotherapist?</strong>	\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]\r\n<strong>Video on: How many treatments does one need for Prolotherapy?</strong>	\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n<strong>Video on: Do Prolotherapy injections hurt?</strong>	\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n<strong>Video on: Is Prolotherapy the same as cortisone injections?</strong>	\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos','','inherit','closed','closed','','1614-revision-v1','','','2019-06-14 05:45:46','2019-06-14 05:45:46','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(1628,8,'2019-06-14 05:52:27','2019-06-14 05:52:27','&nbsp;\r\n\r\n<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<h4 class=\"text-center\">Video: What is Prolotherapy Treatment?</h4>\r\n<div style=\"display: table;margin: 0 auto;\">\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]\r\n</div>\r\n<a class=\"buttonlink\" href=\"/regenerative-techniques/prolotherapy-videos/\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-14 05:52:27','2019-06-14 05:52:27','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(1629,8,'2019-06-14 05:52:49','2019-06-14 05:52:49','\r\n\r\n<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<h4 class=\"text-center\">Video: What is Prolotherapy Treatment?</h4>\r\n<div style=\"display: table;margin: 0 auto;\">\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]\r\n</div>\r\n<a class=\"buttonlink\" href=\"/regenerative-techniques/prolotherapy-videos/\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-14 05:52:49','2019-06-14 05:52:49','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(1630,8,'2019-06-14 06:27:38','2019-06-14 06:27:38','\r\n<h4>PRP Platelet Rich Plasma</h4>\r\n\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\r\n\r\n<h4>Why Does PRP Treatment Work?</h4>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\"  class=\"alignright size-full wp-image-642\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood.  A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This  highly concentrated  amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\r\n\r\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\r\n\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>It primes the area that is damaged,  which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment Frequently Asked Questions</h4>\r\n<h6><strong>What is PRP Treatment?</strong></h6>\r\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n\r\n<h6>What does PRP mean?</h6>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\r\n\r\n<h6>What conditions are treated with PRP?</h6>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis. <img src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" class=\"alignleft size-full wp-image-712\" />\r\n\r\n<h6>What are some common diagnoses treated with PRP?</h6>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, Bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h6>How is PRP treatment administered?</h6>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n\r\n<h6>Is PRP curative?</h6>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\r\n\r\n<h6>How does PRP work to heal?</h6>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\r\n\r\n<h6>Is PRP painful?</h6>\r\nPatients typically tolerate the procedure well although post-injection soreness is sometime experienced.\r\n\r\n<h6>How many PRP treatments do you need?</h6>\r\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\r\n\r\n<h6>How far apart are PRP treatments spaced?</h6>\r\nTypically about every 6 weeks if indicated.<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\"  class=\"alignright size-full wp-image-644\" />\r\n\r\n<h6>What can you expect after getting PRP?</h6>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\r\n\r\n<h6>Are there side effects/complications of PRP?</h6>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n\r\n<h6>How long does it take the PRP to “work”?</h6>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n\r\n<h6>Platelet Rich Plasma (PRP) Therapy in the News:</h6>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>','PRP Treatment','','inherit','closed','closed','','414-revision-v1','','','2019-06-14 06:27:38','2019-06-14 06:27:38','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(1631,8,'2019-06-14 06:29:38','2019-06-14 06:29:38','<h4>PRP Platelet Rich Plasma</h4>\r\n\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\r\n\r\n<h4>Why Does PRP Treatment Work?</h4>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\"  class=\"alignright size-full wp-image-642\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood.  A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This  highly concentrated  amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\r\n\r\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\r\n\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>It primes the area that is damaged,  which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment Frequently Asked Questions</h4>\r\n<h6><strong>What is PRP Treatment?</strong></h6>\r\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n\r\n<h6>What does PRP mean?</h6>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\r\n\r\n<h6>What conditions are treated with PRP?</h6>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis. <img src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" class=\"alignleft size-full wp-image-712\" />\r\n\r\n<h6>What are some common diagnoses treated with PRP?</h6>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, Bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h6>How is PRP treatment administered?</h6>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n\r\n<h6>Is PRP curative?</h6>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\r\n\r\n<h6>How does PRP work to heal?</h6>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\r\n\r\n<h6>Is PRP painful?</h6>\r\nPatients typically tolerate the procedure well although post-injection soreness is sometime experienced.\r\n\r\n<h6>How many PRP treatments do you need?</h6>\r\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\r\n\r\n<h6>How far apart are PRP treatments spaced?</h6>\r\nTypically about every 6 weeks if indicated.<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\"  class=\"alignright size-full wp-image-644\" />\r\n\r\n<h6>What can you expect after getting PRP?</h6>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\r\n\r\n<h6>Are there side effects/complications of PRP?</h6>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n\r\n<h6>How long does it take the PRP to “work”?</h6>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n\r\n<h6>Platelet Rich Plasma (PRP) Therapy in the News:</h6>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>\r\n','PRP Treatment','','inherit','closed','closed','','414-revision-v1','','','2019-06-14 06:29:38','2019-06-14 06:29:38','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(1632,8,'2019-06-14 06:30:33','2019-06-14 06:30:33','<h4>PRP Platelet Rich Plasma</h4>\r\n\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\r\n\r\n<h4>Why Does PRP Treatment Work?</h4>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\"  class=\"alignright size-full wp-image-642\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood.  A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This  highly concentrated  amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\r\n\r\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\r\n\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>It primes the area that is damaged,  which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment Frequently Asked Questions</h4>\r\n<h6><strong>What is PRP Treatment?</strong></h6>\r\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n\r\n<h6>What does PRP mean?</h6>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\r\n\r\n<h6>What conditions are treated with PRP?</h6>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" class=\"alignleft size-full wp-image-712\" /><h6>What are some common diagnoses treated with PRP?</h6>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, Bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h6>How is PRP treatment administered?</h6>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n\r\n<h6>Is PRP curative?</h6>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\r\n\r\n<h6>How does PRP work to heal?</h6>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\r\n\r\n<h6>Is PRP painful?</h6>\r\nPatients typically tolerate the procedure well although post-injection soreness is sometime experienced.\r\n\r\n<h6>How many PRP treatments do you need?</h6>\r\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\r\n\r\n<h6>How far apart are PRP treatments spaced?</h6>\r\nTypically about every 6 weeks if indicated.<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\"  class=\"alignright size-full wp-image-644\" />\r\n\r\n<h6>What can you expect after getting PRP?</h6>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\r\n\r\n<h6>Are there side effects/complications of PRP?</h6>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n\r\n<h6>How long does it take the PRP to “work”?</h6>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n\r\n<h6>Platelet Rich Plasma (PRP) Therapy in the News:</h6>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>\r\n','PRP Treatment','','inherit','closed','closed','','414-revision-v1','','','2019-06-14 06:30:33','2019-06-14 06:30:33','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(1633,8,'2019-06-14 06:32:33','2019-06-14 06:32:33','Stemcell','Stemcell','Stemcell','inherit','open','closed','','stemcell','','','2019-06-14 06:32:33','2019-06-14 06:32:33','',0,'https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg',0,'attachment','image/jpeg',0),(1634,8,'2019-06-14 06:32:34','2019-06-14 06:32:34','Stemcell1','Stemcell1','Stemcell1','inherit','open','closed','','stemcell1','','','2019-06-14 06:32:34','2019-06-14 06:32:34','',0,'https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg',0,'attachment','image/jpeg',0),(1635,8,'2019-06-14 06:34:44','2019-06-14 06:34:44','&nbsp;\r\n\r\n<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Stem Cell Knee</strong>	\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong>	\r\n</div>\r\n\r\n<i>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"#\">Testimonials Page</a>.\r\n\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\"  class=\"alignleft size-full wp-image-732\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" class=\"alignright size-full wp-image-735\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-06-14 06:34:44','2019-06-14 06:34:44','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(1636,8,'2019-06-14 06:37:28','2019-06-14 06:37:28','&nbsp;\r\n\r\n<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Stem Cell Knee</strong>	\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong>	\r\n</div>\r\n\r\n<i>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"#\">Testimonials Page</a>.\r\n<div class=\"clear\"></div>\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\"  class=\"alignleft size-full wp-image-732\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" class=\"alignright size-full wp-image-735\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-06-14 06:37:28','2019-06-14 06:37:28','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(1637,8,'2019-06-14 06:40:48','2019-06-14 06:40:48','<h4>Prolotherapy for Chronic Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong>\r\n</div>\r\n\r\n\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Prolotherapy for Chronic Knee Pain treatment.\r\n\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Osteoarthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Chronic osteoarthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudo gout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Knee Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with prolotherapy</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+1-310-455-8242\">(310) 455-8242</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2019-06-14 06:40:48','2019-06-14 06:40:48','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(1638,8,'2019-06-14 06:48:14','2019-06-14 06:48:14','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. It is usually the ligaments and tendons that are injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n\r\n<strong>Ligament Injuries in the Elbow</strong>\r\n\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. In tennis elbow it is the <strong>extensor tendons</strong> which move the wrist up, that can be damaged. In golfer’s elbow it is the <strong>flexor tendons</strong>, that move the wrist down, that get injured. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n\r\n<strong>The Most Common Elbow Injuries </strong>\r\n\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? Are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+13109560569\">(310) 956-0569</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Elbow Pain','','inherit','closed','closed','','524-revision-v1','','','2019-06-14 06:48:14','2019-06-14 06:48:14','',524,'https://www.drfields.com/uncategorized/524-revision-v1/',0,'revision','',0),(1639,8,'2019-06-14 06:53:45','2019-06-14 06:53:45','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Knee Treatment</h4>\r\nKnee injuries are one of the most common problems we treat with Prolotherapy knee treatment at OrthoRegen. The knee joint is one of the most crucial joints in the body. Normal knee function is vital to involvement in everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\r\n\r\nThere are also two forms of cartilage in the knee. Articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement, and the cartilage meniscus which is two semicircular discs providing cushioning and support for the bones. The knee is extremely vulnerable to injury in one or a combination of these elements. In the case of knee injury, we recommend our <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> knee treatment to strengthen and repair damaged tissue, ligaments and tendons.\r\n\r\n<h4>How Prolotherapy Knee Treatment Works</h4>\r\nOur Prolotherapy knee treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word proliferate. Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment for your knee injuries with comprehensive Prolotherapy at OrthoRegen.\r\n\r\n<a class=\"buttonlink\" href=\"/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13107766154\">(310) 776-6154</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" class=\"alignright size-full wp-image-1307\" />Dr. Peter A. Fields is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>. For over 25 years Dr. Fields has been active in the sport of Triathlon. In November 2012 he completed his second Ironman Triathlon, beating his time by 14 minutes. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nContact us to see if you are a candidate for <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\r\n\r\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>ACL tear Anterior Cruciate Ligament injury</li>\r\n 	<li>Arthritis of the knee</li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li>Chondromalacia patellae</li>\r\n 	<li>Complex meniscus tear</li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Knee pain after surgery</li>\r\n 	<li>Knee popping</li>\r\n 	<li>Knee replacement pain</li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li>Ligament laxity</li>\r\n 	<li>Ligament sprain</li>\r\n 	<li>Ligament tear</li>\r\n 	<li>Medial Collateral Ligament (MCL) injury</li>\r\n 	<li>Meniscus tear</li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li>Patellofemoral syndrome</li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li>Runners knee</li>\r\n 	<li>Tendinosis</li>\r\n</ul>\r\n\r\n<a class=\"buttonlink\" href=\"/contact/\">  Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-revision-v1','','','2019-06-14 06:53:45','2019-06-14 06:53:45','',533,'https://www.drfields.com/uncategorized/533-revision-v1/',0,'revision','',0),(1640,8,'2019-06-14 07:03:45','2019-06-14 07:03:45','\r\n\r\n<h4>Prolotherapy Back and Pelvic Treatment</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur – Low Back\"]\r\n<strong>Wilbur - Low Back</strong>\r\n</div>\r\nOne of the main reasons patients come to OrthoRegen is for back relief with our Prolotherapy Back Treatment. Back or pelvic injury is also the main reason our patients say, they have had to stop participation in sports.\r\n\r\nMany of the traditional treatments for back pain can actually be the cause for continuing problems. If you have tried NSAID medications (like Ibuprofen or Naproxen), nerve blocks, acupuncture or chiropractic adjustments, and have not found relief, join our growing patient list of people who have benefited from comprehensive treatment.\r\n\r\n<h4>Does Prolotherapy Back Treatment Work?</h4>\r\nWe are very successful at treating people for back and pelvic pain with our Prolotherapy Back treatment. We get them back to their sport without surgery, without medications, and without extended time off! To properly treat the lower back, the whole area needs to be treated. Especially in cases of sport injury trauma, patients find better and faster relief from the techniques used here at OrthoRegen. We will work to rehabilitate the whole athlete through nutritional and exercise regimens.\r\n\r\nIn our experience, the preferred way to treat back and pelvic with a comprehensive program of <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. In that way, patients see long term optimal results.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common back and pelvic pains and injuries that we treat with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Back pain</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Buttock pain</li>\r\n 	<li>Coccyx pain</li>\r\n 	<li>Degenerated discs</li>\r\n 	<li>Herniated discs</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Failed back fusion pain</li>\r\n 	<li>Failed back surgery syndrome</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>Muscle spasms</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Pelvic pain</li>\r\n 	<li>Retrolisthesis</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tailbone pain</li>\r\n 	<li>Thoracic spine pain</li>\r\n 	<li>SI instability</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Yoga injury</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy back treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13109560569\">(310) 956-0569</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Low-Back-Testimonials\">Prolotherapy Back Testimonials page</a>.','Back Injury Treatment','','inherit','closed','closed','','567-revision-v1','','','2019-06-14 07:03:45','2019-06-14 07:03:45','',567,'https://www.drfields.com/uncategorized/567-revision-v1/',0,'revision','',0),(1641,8,'2019-06-14 07:05:22','2019-06-14 07:05:22','\r\n<h4>Prolotherapy Back and Pelvic Treatment</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur – Low Back\"]\r\n<strong>Wilbur - Low Back</strong>\r\n</div>\r\nOne of the main reasons patients come to OrthoRegen is for back relief with our Prolotherapy Back Treatment. Back or pelvic injury is also the main reason our patients say, they have had to stop participation in sports.\r\n\r\nMany of the traditional treatments for back pain can actually be the cause for continuing problems. If you have tried NSAID medications (like Ibuprofen or Naproxen), nerve blocks, acupuncture or chiropractic adjustments, and have not found relief, join our growing patient list of people who have benefited from comprehensive treatment.\r\n\r\n<h4>Does Prolotherapy Back Treatment Work?</h4>\r\nWe are very successful at treating people for back and pelvic pain with our Prolotherapy Back treatment. We get them back to their sport without surgery, without medications, and without extended time off! To properly treat the lower back, the whole area needs to be treated. Especially in cases of sport injury trauma, patients find better and faster relief from the techniques used here at OrthoRegen. We will work to rehabilitate the whole athlete through nutritional and exercise regimens.\r\n\r\nIn our experience, the preferred way to treat back and pelvic with a comprehensive program of <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. In that way, patients see long term optimal results.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common back and pelvic pains and injuries that we treat with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Back pain</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Buttock pain</li>\r\n 	<li>Coccyx pain</li>\r\n 	<li>Degenerated discs</li>\r\n 	<li>Herniated discs</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Failed back fusion pain</li>\r\n 	<li>Failed back surgery syndrome</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>Muscle spasms</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Pelvic pain</li>\r\n 	<li>Retrolisthesis</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tailbone pain</li>\r\n 	<li>Thoracic spine pain</li>\r\n 	<li>SI instability</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Yoga injury</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy back treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13109560569\">(310) 956-0569</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/testimonials/video-testimonials/\">Prolotherapy Back Testimonials page</a>.','Back Injury Treatment','','inherit','closed','closed','','567-revision-v1','','','2019-06-14 07:05:22','2019-06-14 07:05:22','',567,'https://www.drfields.com/uncategorized/567-revision-v1/',0,'revision','',0),(1642,8,'2019-06-14 07:06:32','2019-06-14 07:06:32','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\r\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\r\n\r\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> neck treatment at OrthoRegen.\r\n\r\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\r\nDr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\r\n\r\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/testimonials/video-testimonials/\">Neck testimonials</a> and <a href=\"/testimonials/video-testimonials/\">Head Testimonials</a> pages.\r\n','Neck Injury Treatment','','inherit','closed','closed','','536-revision-v1','','','2019-06-14 07:06:32','2019-06-14 07:06:32','',536,'https://www.drfields.com/uncategorized/536-revision-v1/',0,'revision','',0),(1643,8,'2019-06-14 07:06:51','2019-06-14 07:06:51','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr.doug – Headaches & Shoulder\"]\r\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Shoulder Treatment</h4>\r\nAt OrthoRegen, shoulder injuries are one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Shoulder injuries are common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive prolotherapy shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\r\n\r\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long term results. Dr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\r\n\">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist and swimmer, understands your desire to return to full participation in your training and competition.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Acromioclavicular joint arthrosis</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation</li>\r\n 	<li>Frozen shoulder</li>\r\n 	<li>Glenoid labrum tear</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Multi-directional instability</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Shoulder dislocation</li>\r\n 	<li>Shoulder instability</li>\r\n 	<li>Shoulder pain</li>\r\n 	<li>Shoulder separation</li>\r\n 	<li>SLAP lesion</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Swimmers shoulder</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendonosis</li>\r\n 	<li>Torn labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13106272458\">(310) 627-2458</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/testimonials/video-testimonials/\">Shoulder Prolotherapy Testimonials page</a>.\r\n\r\n','Shoulder Injury Treatment','','inherit','closed','closed','','545-revision-v1','','','2019-06-14 07:06:51','2019-06-14 07:06:51','',545,'https://www.drfields.com/uncategorized/545-revision-v1/',0,'revision','',0),(1644,8,'2019-06-14 07:07:48','2019-06-14 07:07:48','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer- Elbow\"]\r\n<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Elbow Treatment</h4>\r\nOrthoRegen offers you the most effective treatment for elbow injuries. Avoid the long term side effects of NSAID and cortisone injections with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> elbow treatment. We offer our patients experience and knowledgeable treatment for their elbow pain and injuries. From future Olympians to weekend warriors, we can help you return to your sport without surgery, without pain medications and without extended periods of time away from your sport.\r\n\r\n<h4>Why Prolotherapy Elbow Treatment with Dr. Fields?</h4>\r\nDr. Peter Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an experienced marathoner, long-distance cyclist and swimmer. He has participated in Triathlons as well as Ironman competitions. He understands the passion that athletes have to train and compete. In our experience, our comprehensive Prolotherapy elbow treatment is the best way to treat elbow injuries for long term positive results.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common elbow pain and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li><a href=\"/conditions/chronic-pain/chronic-elbow-pain/\">Elbow pain</a></li>\r\n 	<li>Elbow sprain</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>Lateral epicondylitis</li>\r\n 	<li>Medial epicondylitis</li>\r\n 	<li>Post-surgical elbow pain</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendinosis</li>\r\n 	<li>Tennis elbow</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy elbow treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\r\n\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(310) 928-2886</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/testimonials/video-testimonials/\">Prolotherapy Elbow Testimonials page</a>.','Elbow Injury Treatment','','inherit','closed','closed','','582-revision-v1','','','2019-06-14 07:07:48','2019-06-14 07:07:48','',582,'https://www.drfields.com/uncategorized/582-revision-v1/',0,'revision','',0),(1645,8,'2019-06-14 07:09:21','2019-06-14 07:09:21','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\r\n<strong>Joel - Foot</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Foot and Ankle Treatment</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Are you looking for an alternative to surgery for your chronic ankle sprains? Every day, OrthoRegen treats people with foot and ankle injuries by the use of comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> foot treatments. Nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n\r\n<h4>Why Prolotherapy Foot Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  Like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. If you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. If you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Ankle instability</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/testimonials/video-testimonials/\">Prolotherapy Foot Testimonials</a> and <a href=\"/testimonials/video-testimonials/\">Ankle Testimonials</a> pages.','Foot Injury Treatment','','inherit','closed','closed','','595-revision-v1','','','2019-06-14 07:09:21','2019-06-14 07:09:21','',595,'https://www.drfields.com/uncategorized/595-revision-v1/',0,'revision','',0),(1646,8,'2019-06-14 07:10:53','2019-06-14 07:10:53','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Hand Injury Treatment Suzie Wrist\"]\r\n<strong>Suzie - Wrist</strong>\r\n</div>\r\n<h4>Prolotherapy Hand and Wrist Injuries and Treatment</h4>\r\nWhether you are suffering from a sprained finger from football or baseball, or wrist pain from tennis or golf, OrthoRegen treats numerous finger, hand and wrist injuries with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\r\n\">Prolotherapy</a> hand treatments. We can treat your pain or injury without surgery, without pain medications or without extended time away from training and competition.\r\n\r\nIn our experience, comprehensive Prolotherapy can successfully treat pain in your fingers, hands and wrists, with optimal long term results. Dr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, can consult with you to determine if you are a candidate for <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Because of his participation in Triathlons and Ironman competitions, he understands your desire to return quickly to the sports in which you participate.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Common Hand and Wrist Injuries Treatable by Prolotheraphy</h4>\r\nThe most common finger, wrist and hand pain and injuries we treat with comprehensive Prolotherapy are:\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Baseball injuries</li>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Finger pain</li>\r\n 	<li>Football injuries</li>\r\n 	<li>Golf injuries</li>\r\n 	<li>Hand pain</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Sprain injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tennis injuries</li>\r\n 	<li>Thumb pain</li>\r\n 	<li>Wrist pain</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy hand and wrist treatments, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/testimonials/video-testimonials/\">Prolotherapy Hand and Wrist Testimonials page</a>.','Hand Injury Treatment','','inherit','closed','closed','','615-revision-v1','','','2019-06-14 07:10:53','2019-06-14 07:10:53','',615,'https://www.drfields.com/uncategorized/615-revision-v1/',0,'revision','',0),(1647,8,'2019-06-14 07:12:42','2019-06-14 07:12:42','<h4>Sports Injuries Treatment</h4>\r\nHave sports injuries stopped you? Get back in the game with Prolotherapy and Dr. Peter A. Fields, The Athletic Doc®. At OrthoRegen we offer innovative, non-surgical treatments for your sports injury or chronic pain problems. Without unnecessary medication, prescriptions, cortisone shots or surgery, Prolotherapy can regenerate damaged or worn ligaments and strengthen weakened tendons. The most beneficial aspect of our non-surgical sports injuries treatment is that you can continue to train while you receive Prolotherapy treatments. We treat athletes of all skill and age levels: high school to college; amateur to professional athletes.\r\n\r\n<h4>How Can Prolotherapy Help Your Sports Injury?</h4>\r\nProlotherapy is an innovative treatment that stimulates the immune system to repair damaged tissue.”Prolo” comes from the word proliferate. Prolotherapy then, describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and other sports injuries. Receive treatment for your sports injuries with comprehensive Prolotherapy at OrthoRegen.\r\n\r\n<h4>Are You Suffering from a Sports Injury?</h4>\r\n<ul>\r\n 	<li><a href=\"/Conditions/Sports-Injuries/Knee-Injury-Treatment\">K</a><a href=\"/Conditions/Sports-Injuries/Knee-Injury-Treatment\">nee Pain</a></li>\r\n 	<li> ACL Tear</li>\r\n 	<li>Torn Meniscus</li>\r\n 	<li><a href=\"/Chronic-Pain/Chronic-Neck-Pain\">Neck pain</a></li>\r\n 	<li>Back Pain</li>\r\n 	<li>Shin Splints</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>Hamstring Strain</li>\r\n 	<li>IT Band Injury</li>\r\n 	<li>Turf Toe</li>\r\n</ul>\r\n<strong><em> Prolotherapy Sports Injuries Treatment can help you get back in the game – and get back quickly!</em></strong>\r\n\r\n<h4>Prolotherapy Doctor Treats Sports Injuries Without Surgery</h4>\r\nReceive treatment for your sports injuries by Ironman Triathlete Dr. Peter A. Fields. For over 25 years, Dr. Fields has been active in the sport of Triathlon. It is his experience as an athlete that allows him to understand the potential for injury and the demands of sports on the physical body. He also understands the passion athletes have to get back to training and competition, and their need to recover quickly from injury, because he has been there. In November 2012, Dr. Fields completed his second Ironman Triathlon, beating his 2011 time by better than 14 minutes. Dr. Fields is known as The Athletic Doc®. Wouldn’t you want to be treated by a sports doctor who is also an athlete?\r\n\r\nOur medical team finds that treating athletes is very rewarding. We can utilize a comprehensive health approach to help you reach your peak physical performance. <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> allows you to get back to training within a couple of days and does not involve periods of long recovery. Prolotherapy involves the injection of natural substances at the exact site of an injury. This stimulates the immune system to repair the sports injury. Areas often injured through sports related activities—ligaments, tendons, menisci, muscles, growth plates, joint capsules and cartilage are stimulated to heal. Anesthetics are also used to minimize any unpleasant pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Are You A Candidate for Non- Surgical Sports Injuries Treatment?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13106272458\">(310) 627-2458</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/testimonials/video-testimonials/\">Testimonials page</a>.','Sports Injuries Treatment Overview','','inherit','closed','closed','','632-revision-v1','','','2019-06-14 07:12:42','2019-06-14 07:12:42','',632,'https://www.drfields.com/uncategorized/632-revision-v1/',0,'revision','',0),(1648,8,'2019-06-14 07:18:41','2019-06-14 07:18:41','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><em>Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></em></p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong class=\"subhead\">Pre Race</strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong class=\"subhead\">The Swim</strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong class=\"subhead\">The Bike</strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong class=\"subhead\">The Run</strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong class=\"subhead\">The Finish</strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n\r\n<p><strong class=\"subhead\">Final Thoughts:</strong><br>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\r\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\r\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\r\n\r\n<p><strong class=\"subhead\">Dedication:</strong><br>\r\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\r\n\r\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \r\nYour thoughts and well wishes helped me through my third Ironman.\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-14 07:18:41','2019-06-14 07:18:41','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(1649,8,'2019-06-14 07:23:22','2019-06-14 07:23:22','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong class=\"subhead\">RACE DAY</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\r\n\r\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\r\n\"Peter Fields, you are an Ironman”,\r\nI knew it was all worthwhile. \r\n\r\n\r\n<strong class=\"subhead\">FINAL THOUGHTS</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg\" alt=\"Ironman Brazil Finish\" width=\"200\" height=\"200\" class=\"alignright size-thumbnail wp-image-199\" />My race may have been slowed down by the problems I had on the run, but I was never discouraged. As my former coach told me, Ironman races are all about damage control. That thought helped me get through this race. I was very pleased that I did not get the two most common problems that affect athletes in an Ironman: stomach problems and/or mechanical problems on the bike.\r\nI felt exhausted and drained but nevertheless very satisfied to have finished my 5th Ironman. Some may ask why I punish my body? I was not punishing it; just challenging it. When one is prepared, it is not a punishment. Plus an Ironman is as much a mental challenge as a physical one.\r\n\r\nI leave you with a quote by the author Viktor Frankl, MD, holocaust survivor and world famous author from his book Man\'s Search For Meaning, which was my dad\'s favorite:\r\n\"Life can be pulled by goals just as surely as it can be pushed by drives.\"\r\n\r\nThere are too many to name, but I want to thank everybody out there who followed me during this race and offered me encouragement. I’d also like to thank everyone else who has written to me and even just thought about me before, during and/or after the race.\r\n\r\nThis race was dedicated to my mother who I lost last year, to my father who I lost 11 years ago and to my uncle who, at 89yo, survived a very tough time recently being in the hospital for 30 days. All three of them have meant a lot to me during my life and have encouraged me to never give up.\r\n\r\nLastly, a big shout out to my brother Norman. No matter where I have raced, he has always followed me the entire race on the computer. I heard him cheering me on the whole way; he has never forgotten his little brother.\r\nThanks bro!\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc® and 5X Ironman Triathlete</strong>','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-14 07:23:22','2019-06-14 07:23:22','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(1650,8,'2019-06-14 07:24:36','2019-06-14 07:24:36','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong class=\"subhead\">RACE DAY</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n<div class=\"clear\"></div>\r\n\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n<div class=\"clear\"></div>\r\n\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\r\n\r\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\r\n\"Peter Fields, you are an Ironman”,\r\nI knew it was all worthwhile. \r\n\r\n\r\n<strong class=\"subhead\">FINAL THOUGHTS</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg\" alt=\"Ironman Brazil Finish\" width=\"200\" height=\"200\" class=\"alignright size-thumbnail wp-image-199\" />My race may have been slowed down by the problems I had on the run, but I was never discouraged. As my former coach told me, Ironman races are all about damage control. That thought helped me get through this race. I was very pleased that I did not get the two most common problems that affect athletes in an Ironman: stomach problems and/or mechanical problems on the bike.\r\nI felt exhausted and drained but nevertheless very satisfied to have finished my 5th Ironman. Some may ask why I punish my body? I was not punishing it; just challenging it. When one is prepared, it is not a punishment. Plus an Ironman is as much a mental challenge as a physical one.\r\n\r\nI leave you with a quote by the author Viktor Frankl, MD, holocaust survivor and world famous author from his book Man\'s Search For Meaning, which was my dad\'s favorite:\r\n\"Life can be pulled by goals just as surely as it can be pushed by drives.\"\r\n\r\nThere are too many to name, but I want to thank everybody out there who followed me during this race and offered me encouragement. I’d also like to thank everyone else who has written to me and even just thought about me before, during and/or after the race.\r\n\r\nThis race was dedicated to my mother who I lost last year, to my father who I lost 11 years ago and to my uncle who, at 89yo, survived a very tough time recently being in the hospital for 30 days. All three of them have meant a lot to me during my life and have encouraged me to never give up.\r\n\r\nLastly, a big shout out to my brother Norman. No matter where I have raced, he has always followed me the entire race on the computer. I heard him cheering me on the whole way; he has never forgotten his little brother.\r\nThanks bro!\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc® and 5X Ironman Triathlete</strong>','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-14 07:24:36','2019-06-14 07:24:36','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(1651,8,'2019-06-14 07:25:20','2019-06-14 07:25:20','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong class=\"subhead\">RACE DAY</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n<div class=\"clear\"></div>\r\n<br>\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n<div class=\"clear\"></div>\r\n\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\r\n\r\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\r\n\"Peter Fields, you are an Ironman”,\r\nI knew it was all worthwhile. \r\n\r\n\r\n<strong class=\"subhead\">FINAL THOUGHTS</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg\" alt=\"Ironman Brazil Finish\" width=\"200\" height=\"200\" class=\"alignright size-thumbnail wp-image-199\" />My race may have been slowed down by the problems I had on the run, but I was never discouraged. As my former coach told me, Ironman races are all about damage control. That thought helped me get through this race. I was very pleased that I did not get the two most common problems that affect athletes in an Ironman: stomach problems and/or mechanical problems on the bike.\r\nI felt exhausted and drained but nevertheless very satisfied to have finished my 5th Ironman. Some may ask why I punish my body? I was not punishing it; just challenging it. When one is prepared, it is not a punishment. Plus an Ironman is as much a mental challenge as a physical one.\r\n\r\nI leave you with a quote by the author Viktor Frankl, MD, holocaust survivor and world famous author from his book Man\'s Search For Meaning, which was my dad\'s favorite:\r\n\"Life can be pulled by goals just as surely as it can be pushed by drives.\"\r\n\r\nThere are too many to name, but I want to thank everybody out there who followed me during this race and offered me encouragement. I’d also like to thank everyone else who has written to me and even just thought about me before, during and/or after the race.\r\n\r\nThis race was dedicated to my mother who I lost last year, to my father who I lost 11 years ago and to my uncle who, at 89yo, survived a very tough time recently being in the hospital for 30 days. All three of them have meant a lot to me during my life and have encouraged me to never give up.\r\n\r\nLastly, a big shout out to my brother Norman. No matter where I have raced, he has always followed me the entire race on the computer. I heard him cheering me on the whole way; he has never forgotten his little brother.\r\nThanks bro!\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc® and 5X Ironman Triathlete</strong>','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-14 07:25:20','2019-06-14 07:25:20','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(1652,8,'2019-06-14 07:25:48','2019-06-14 07:25:48','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong class=\"subhead\">RACE DAY</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n<div class=\"clear\"></div>\r\n<br>\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n<div class=\"clear\"></div>\r\n<br>\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\r\n\r\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\r\n\"Peter Fields, you are an Ironman”,\r\nI knew it was all worthwhile. \r\n\r\n\r\n<strong class=\"subhead\">FINAL THOUGHTS</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg\" alt=\"Ironman Brazil Finish\" width=\"200\" height=\"200\" class=\"alignright size-thumbnail wp-image-199\" />My race may have been slowed down by the problems I had on the run, but I was never discouraged. As my former coach told me, Ironman races are all about damage control. That thought helped me get through this race. I was very pleased that I did not get the two most common problems that affect athletes in an Ironman: stomach problems and/or mechanical problems on the bike.\r\nI felt exhausted and drained but nevertheless very satisfied to have finished my 5th Ironman. Some may ask why I punish my body? I was not punishing it; just challenging it. When one is prepared, it is not a punishment. Plus an Ironman is as much a mental challenge as a physical one.\r\n\r\nI leave you with a quote by the author Viktor Frankl, MD, holocaust survivor and world famous author from his book Man\'s Search For Meaning, which was my dad\'s favorite:\r\n\"Life can be pulled by goals just as surely as it can be pushed by drives.\"\r\n\r\nThere are too many to name, but I want to thank everybody out there who followed me during this race and offered me encouragement. I’d also like to thank everyone else who has written to me and even just thought about me before, during and/or after the race.\r\n\r\nThis race was dedicated to my mother who I lost last year, to my father who I lost 11 years ago and to my uncle who, at 89yo, survived a very tough time recently being in the hospital for 30 days. All three of them have meant a lot to me during my life and have encouraged me to never give up.\r\n\r\nLastly, a big shout out to my brother Norman. No matter where I have raced, he has always followed me the entire race on the computer. I heard him cheering me on the whole way; he has never forgotten his little brother.\r\nThanks bro!\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc® and 5X Ironman Triathlete</strong>','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-14 07:25:48','2019-06-14 07:25:48','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(1653,8,'2019-06-14 07:26:43','2019-06-14 07:26:43','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong class=\"subhead\">RACE DAY</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n<div class=\"clear\"></div>\r\n<br>\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n<div class=\"clear\"></div>\r\n\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\r\n\r\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\r\n\"Peter Fields, you are an Ironman”,\r\nI knew it was all worthwhile. \r\n\r\n\r\n<strong class=\"subhead\">FINAL THOUGHTS</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg\" alt=\"Ironman Brazil Finish\" width=\"200\" height=\"200\" class=\"alignright size-thumbnail wp-image-199\" />My race may have been slowed down by the problems I had on the run, but I was never discouraged. As my former coach told me, Ironman races are all about damage control. That thought helped me get through this race. I was very pleased that I did not get the two most common problems that affect athletes in an Ironman: stomach problems and/or mechanical problems on the bike.\r\nI felt exhausted and drained but nevertheless very satisfied to have finished my 5th Ironman. Some may ask why I punish my body? I was not punishing it; just challenging it. When one is prepared, it is not a punishment. Plus an Ironman is as much a mental challenge as a physical one.\r\n\r\nI leave you with a quote by the author Viktor Frankl, MD, holocaust survivor and world famous author from his book Man\'s Search For Meaning, which was my dad\'s favorite:\r\n\"Life can be pulled by goals just as surely as it can be pushed by drives.\"\r\n\r\nThere are too many to name, but I want to thank everybody out there who followed me during this race and offered me encouragement. I’d also like to thank everyone else who has written to me and even just thought about me before, during and/or after the race.\r\n\r\nThis race was dedicated to my mother who I lost last year, to my father who I lost 11 years ago and to my uncle who, at 89yo, survived a very tough time recently being in the hospital for 30 days. All three of them have meant a lot to me during my life and have encouraged me to never give up.\r\n\r\nLastly, a big shout out to my brother Norman. No matter where I have raced, he has always followed me the entire race on the computer. I heard him cheering me on the whole way; he has never forgotten his little brother.\r\nThanks bro!\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc® and 5X Ironman Triathlete</strong>','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-14 07:26:43','2019-06-14 07:26:43','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(1654,8,'2019-06-14 07:29:12','2019-06-14 07:29:12','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\r\n\r\n<h6 class=\"text-center\">Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong><span>GETTING THERE</span></strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n\r\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /><strong>Swim Start with his parents initials on his forearms</strong>[/caption]The swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> <strong>Dr. Fields during the 26.2 mile run</strong>[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" class=\"size-full wp-image-332\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2019-06-14 07:29:12','2019-06-14 07:29:12','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(1655,8,'2019-06-14 07:31:01','2019-06-14 07:31:01','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\r\n\r\n<h6 class=\"text-center\">Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong><span>GETTING THERE</span></strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n\r\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n\r\n\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /><strong>Swim Start with his parents initials on his forearms</strong>[/caption]<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\nThe swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> <strong>Dr. Fields during the 26.2 mile run</strong>[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" class=\"size-full wp-image-332\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2019-06-14 07:31:01','2019-06-14 07:31:01','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(1656,8,'2019-06-14 07:31:59','2019-06-14 07:31:59','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\r\n\r\n<h6 class=\"text-center\">Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong><span>GETTING THERE</span></strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n\r\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n\r\n\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /><strong>Swim Start with his parents initials on his forearms</strong>[/caption]<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\nThe swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n<div class=\"clear\"></div>\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> <strong>Dr. Fields during the 26.2 mile run</strong>[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" class=\"size-full wp-image-332\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2019-06-14 07:31:59','2019-06-14 07:31:59','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(1657,8,'2019-06-14 07:32:44','2019-06-14 07:32:44','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\r\n\r\n<h6 class=\"text-center\">Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong><span>GETTING THERE</span></strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n\r\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n\r\n\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /><strong>Swim Start with his parents initials on his forearms</strong>[/caption]<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\nThe swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n<div class=\"clear\"></div>\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> <strong>Dr. Fields during the 26.2 mile run</strong>[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" class=\"size-full wp-image-332\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\r\n\r\n<div class=\"clear\"></div>\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2019-06-14 07:32:44','2019-06-14 07:32:44','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(1658,8,'2019-06-14 07:41:39','2019-06-14 07:41:39','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-santa-rosa-logo-blue.jpg\" alt=\"Ironman Santa Rosa Logo Blue\" width=\"230\" height=\"120\" class=\"aligncenter size-full wp-image-349\" />\r\n\r\n<h6 class=\"text-center\">Saturday July 29, 2017\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<p class=\"text-center\">\"Always keep moving forward in life\"\r\nYvette and Fred Fields</p>\r\n\r\nHere is my report on my 9th Ironman Triathlon.\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\n[caption id=\"attachment_355\" align=\"alignleft\" width=\"275\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg\" alt=\"Ironman Santa Rosa Snoopy\" width=\"275\" height=\"240\" class=\"size-full wp-image-355\" /><strong>Dr. Fields and Snoopy</strong>[/caption]This one was a lot easier to get to than the others as it was my first Ironman in the US. Since it was in northern California, it was only a one hour and 20 minute flight up to Santa Rosa.  At the airport, I was greeted by Snoopy and Charlie Brown, as Santa Rosa is the home of Charles Schulz, the creator of Peanuts.  They both offered me encouragement on my race! Then it was driving into town, getting settled in and picking up my registration packet.  The next two days was spent checking out the course and trying to relax.\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">RACE DAY MORNING</strong>\r\n\r\nThis race was a bit different than other races. The lake where we swam in, Lake Sonoma, is 40 miles from downtown. This is very unusual when it is usually right at the start or within a few miles of the transition area.  So we had to report for buses leaving at 4 a.m. from the downtown area. This necessitated waking up around 2:30 so that I could have a proper breakfast. Then I had to drive down to the downtown area, park the car and walk over to where the buses were.  Fortunately my bike and other gear was already at the lake.  All I had with me was my nutrition and swimming gear. After that it was a one hour bus ride up to the lake, getting settled in by checking my bike, pumping the tires, filling the water bottles and loading the nutrition on the bike.  Then it was time to head down to the lake front. The day before, the water had been very warm, but the morning of the race they determined that it was still wetsuit legal (below 76 degrees). Since everyone else was wearing a I decided to wear one even though I get very warm in it.\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_354\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg\" alt=\"Ironman Santa Rosa Swim\" width=\"160\" height=\"240\" class=\"size-full wp-image-354\" /><strong>Swim Finish with his parents initials on his forearms</strong>[/caption]As we lined up to start to get in the water there were a few people without wetsuits. At that point, I thought maybe I should not have worn my wetsuit. Swimming is my best sport and the wetsuit does get restrictive in my arm swing, but I decided to keep it on anyway. As I entered the water I realized that the water was very warm. Since it was crowded, I stayed towards the outside of the swimmers because the fast swimmer group I was in can get very aggressive. Halfway through the first loop I realized I was getting too warm and I really didn\'t need the wetsuit. I made the unusual decision that when we ended the first lap I would take off the wetsuit. This first lap ended where you ran out on to the landing and back into the water. Usually this is at least 20, 30 or even 40 yards, but this time it was just a short little loop in and out of the water. As I came up onto the ramp I grabbed the leash that is attached to my zipper and pulled it down. Two race officials saw me doing this and asked I wanted help getting it off. This was a blessing. So I flopped down on the ground and they quickly pulled off the legs of my wetsuit (the hardest part to get off). Then I was back in the water. I lost a little time doing this but it was well worth it. The second lap went a lot better as I was not overheating. When you finished the swim there is a quarter-mile very steep hill that you must go up to get to your bicycle. They told people you cannot leave shoes or other foot gear down at the bottom. So most of us did not. But some people left shoes halfway up the hill. This was a violation of the rules but no one said anything. They did have some artificial grass type material down so that the road up was not too tough. But the hill is quite steep and many people, including myself, walked or fast walked most of the way so as not to exhaust ourselves for the bike ride. Quickly into the transition area, grab my gear, change in the tent and got onto my bike to begin the 112 mile ride.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_353\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg\" alt=\"Ironman Santa Rosa Bike 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-353\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]The bike had four thousand feet of climbing. I prepared for this so overall it was not too bad. It did start out with a small climb as we left the lake area. Then through some areas around wineries. Lots of wineries; at least 30 or more. It was not as scenic as other Ironman I have done because we did ride along a highway several times but pleasant when going by wineries.\r\n\r\nUnfortunately, the roads were not in great shape. There are a lot of uneven areas as well as small little potholes. This was even more difficult as it was extremely sunny. When you would go through an area that was shaded you could not see the road since you were wearing dark sunglasses. This made for an uncomfortable ride. Right before we got to town, at about the 65-mile mark, I got a flat. I did not notice it at first but as my speed dropped and I was pushing even harder, I had to get off the bike and check. Sure enough, the tire was flat. And it was the back tire, which takes more to change. But to my surprise, as I dismounted, one of the repair vehicles that circles the bike course (there were three or four of them) pulled up right behind me. What luck! The mechanic grabbed his pump and had my tire changed, pumped up and ready to go in less than two minutes. Faster I could have ever have done it. And without greasy hands too!\r\n\r\nSo back on the bike, I finally got to town where we than had to ride two 17-mile loops. This was invigorating as the crowd was there. Unfortunately, on these loops, the road got even worse. They were areas that were so bumpy one of the following riders said he thought he lost a crown. We all laughed. Although they predicted it to be in the 90s, it only went to about 86 or 87 degrees. But it was very sunny with no wind and with minimal shade, so it did get warm. All in all, I had a good bike ride.\r\n\r\nSo, as we entered town on the last loop, the crowds were cheering. The race had bike handlers as one gets off your bike, which are people who take your bike and rack it for you. Unfortunately, the race being slightly disorganized, they racked the bikes right there and then had the change tents after that. That meant you had to run about 50 yards alongside the bike rack areas in your bike shoes. Most places have it the other way around. But either way, it is always nice to get off the bike after 112 miles. Then it was into T2 tent and change into running shoes, visor, down some nutrition and out for the 26.2 mile marathon run.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_352\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg\" alt=\"Ironman Santa Rosa Run 2\" width=\"160\" height=\"288\" class=\"size-full wp-image-352\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]As we left the change tent, there were lots of people yelling and screaming encouragement. This was a good thing. It was now very sunny and very warm outside. Most of the run was done along a dry riverbed. There were some crowds at the beginning but not many after that. There was some shade but not everywhere, so the sun took its toll. There were several times you had to go over a little bridge, cross over the river bed and then come back, so the run was entirely flat. During the run, I had some difficulties with my foot which had been a common occurrence for me lately. Fortunately, I could adjust my running gait and keep going. The first 8.8 miles (the first loop) was pretty good. On the second one the foot pain got stronger and I had to walk/run quite a bit. But, as always, I just kept moving forward. There were a lot of runners out there for support. And of course, I was supporting the others that we’re not doing well. Being with the other athletes gave me tremendous moral support and the will to not give up. The second loop was tough as it took place during the 11th and 13th hours of racing, so keeping ones mind occupied is imperative. Dealing with my foot pain plus the physical and mental exhaustion that one experiences in an Ironman is always a challenge. As I began the third loop, I knew that if I made it to the turnaround at 4.4 miles, I was home free. As I made the final turn to head back towards town I knew that no matter how tough things got I was going to make it.[caption id=\"attachment_351\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-351\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I encouraged those that I passed as well as the ones that were only on their second loop. As I exited the riverbed area up onto the streets, I thought I only had less than a quarter mile to go, when in fact it was really over half a mile. Just then a guy ran up to me and said, “Hey Peter you\'re doing great”. I did not recognize him but I had my name on my running bib and thought he just saw that. He ran alongside of me and told me that his girlfriend was not far behind. He told me her name and that did not ring a bell either. It really didn’t matter as he was encouraging me, which was needed at that tme. He finally turned around to go back to meet her. As I ran off, the energy that he had given me would carry me the rest of the way. As I came down the final stretch I knew I was going to finish my 9th Ironman Triathlon. It was tough but Ironman are never easy. The exhilaration and enthusiasm of the crowd, and hearing the announcer say, ” Peter Fields, you are an Ironman!”, never gets old. Never.\r\n\r\nAs I came through the shoot and they took my pictures, I looked over and there was the young guy who I had seen as I exited the riverbed.  As I approached him, I recognized him as the son of one of my best friends.  We both laughed and embraced and I told him how appreciative I was for his encouragement.\r\n\r\n<strong class=\"subhead\">POST SCRIPT</strong>\r\n\r\nThese races are not only a physical challenge but also a mental challenge. With the difficulties with the wetsuit, the warm water, the uneven roads, the heat, the flat tire and my foot problems on the run, this was not an easy race. But again, I persevered.\r\n\r\nI always keep a remembrance of my parents with me at all times in my race jersey pocket. When things would get bad, I would reach back and touch it and say thanks mom and dad for being with me. This kept me going through any difficulties I was having at the time. With all their struggles in their lives (fleeing near certain death in fascist Germany, emigrating with almost nothing, meeting each other in the US and building a new life and more), they just kept moving forward and never looked back. They taught me over and over again, that no matter how tough things get in life just keep putting one foot in front of the other and keep going. They supported me no matter what I did as long as I had my heart and mind in it. On this day, and every day of my life, I knew they are with me all the way.\r\n\r\nAs I said after they passed “You are not dead, dead or only those that one forgets”. I will never forget them as they never forgot me. This, and all of my races, are dedicated in their honor. I therefore start each race with their initials marked on my forearms.\r\n\r\nI want to thank you for taking the time to read this and for supporting me, whether on line, thinking about me or reading this.\r\n\r\n\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 9X Ironman Triathlete</strong>\r\n','Race Report 9th Ironman','','inherit','closed','closed','','348-revision-v1','','','2019-06-14 07:41:39','2019-06-14 07:41:39','',348,'https://www.drfields.com/uncategorized/348-revision-v1/',0,'revision','',0),(1659,8,'2019-06-14 07:47:00','2019-06-14 07:47:00','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-santa-rosa-logo-blue.jpg\" alt=\"Ironman Santa Rosa Logo Blue\" width=\"230\" height=\"120\" class=\"aligncenter size-full wp-image-349\" />\r\n\r\n<h6 class=\"text-center\">Saturday July 29, 2017\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<p class=\"text-center\">\"Always keep moving forward in life\"\r\nYvette and Fred Fields</p>\r\n\r\nHere is my report on my 9th Ironman Triathlon.\r\n\r\n[caption id=\"attachment_355\" align=\"alignleft\" width=\"275\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg\" alt=\"Ironman Santa Rosa Snoopy\" width=\"275\" height=\"240\" class=\"size-full wp-image-355\" /><strong>Dr. Fields and Snoopy</strong>[/caption]<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\nThis one was a lot easier to get to than the others as it was my first Ironman in the US. Since it was in northern California, it was only a one hour and 20 minute flight up to Santa Rosa.  At the airport, I was greeted by Snoopy and Charlie Brown, as Santa Rosa is the home of Charles Schulz, the creator of Peanuts.  They both offered me encouragement on my race! Then it was driving into town, getting settled in and picking up my registration packet.  The next two days was spent checking out the course and trying to relax.\r\n\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">RACE DAY MORNING</strong>\r\n\r\nThis race was a bit different than other races. The lake where we swam in, Lake Sonoma, is 40 miles from downtown. This is very unusual when it is usually right at the start or within a few miles of the transition area.  So we had to report for buses leaving at 4 a.m. from the downtown area. This necessitated waking up around 2:30 so that I could have a proper breakfast. Then I had to drive down to the downtown area, park the car and walk over to where the buses were.  Fortunately my bike and other gear was already at the lake.  All I had with me was my nutrition and swimming gear. After that it was a one hour bus ride up to the lake, getting settled in by checking my bike, pumping the tires, filling the water bottles and loading the nutrition on the bike.  Then it was time to head down to the lake front. The day before, the water had been very warm, but the morning of the race they determined that it was still wetsuit legal (below 76 degrees). Since everyone else was wearing a I decided to wear one even though I get very warm in it.\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_354\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg\" alt=\"Ironman Santa Rosa Swim\" width=\"160\" height=\"240\" class=\"size-full wp-image-354\" /><strong>Swim Finish with his parents initials on his forearms</strong>[/caption]As we lined up to start to get in the water there were a few people without wetsuits. At that point, I thought maybe I should not have worn my wetsuit. Swimming is my best sport and the wetsuit does get restrictive in my arm swing, but I decided to keep it on anyway. As I entered the water I realized that the water was very warm. Since it was crowded, I stayed towards the outside of the swimmers because the fast swimmer group I was in can get very aggressive. Halfway through the first loop I realized I was getting too warm and I really didn\'t need the wetsuit. I made the unusual decision that when we ended the first lap I would take off the wetsuit. This first lap ended where you ran out on to the landing and back into the water. Usually this is at least 20, 30 or even 40 yards, but this time it was just a short little loop in and out of the water. As I came up onto the ramp I grabbed the leash that is attached to my zipper and pulled it down. Two race officials saw me doing this and asked I wanted help getting it off. This was a blessing. So I flopped down on the ground and they quickly pulled off the legs of my wetsuit (the hardest part to get off). Then I was back in the water. I lost a little time doing this but it was well worth it. The second lap went a lot better as I was not overheating. When you finished the swim there is a quarter-mile very steep hill that you must go up to get to your bicycle. They told people you cannot leave shoes or other foot gear down at the bottom. So most of us did not. But some people left shoes halfway up the hill. This was a violation of the rules but no one said anything. They did have some artificial grass type material down so that the road up was not too tough. But the hill is quite steep and many people, including myself, walked or fast walked most of the way so as not to exhaust ourselves for the bike ride. Quickly into the transition area, grab my gear, change in the tent and got onto my bike to begin the 112 mile ride.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_353\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg\" alt=\"Ironman Santa Rosa Bike 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-353\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]The bike had four thousand feet of climbing. I prepared for this so overall it was not too bad. It did start out with a small climb as we left the lake area. Then through some areas around wineries. Lots of wineries; at least 30 or more. It was not as scenic as other Ironman I have done because we did ride along a highway several times but pleasant when going by wineries.\r\n\r\nUnfortunately, the roads were not in great shape. There are a lot of uneven areas as well as small little potholes. This was even more difficult as it was extremely sunny. When you would go through an area that was shaded you could not see the road since you were wearing dark sunglasses. This made for an uncomfortable ride. Right before we got to town, at about the 65-mile mark, I got a flat. I did not notice it at first but as my speed dropped and I was pushing even harder, I had to get off the bike and check. Sure enough, the tire was flat. And it was the back tire, which takes more to change. But to my surprise, as I dismounted, one of the repair vehicles that circles the bike course (there were three or four of them) pulled up right behind me. What luck! The mechanic grabbed his pump and had my tire changed, pumped up and ready to go in less than two minutes. Faster I could have ever have done it. And without greasy hands too!\r\n\r\nSo back on the bike, I finally got to town where we than had to ride two 17-mile loops. This was invigorating as the crowd was there. Unfortunately, on these loops, the road got even worse. They were areas that were so bumpy one of the following riders said he thought he lost a crown. We all laughed. Although they predicted it to be in the 90s, it only went to about 86 or 87 degrees. But it was very sunny with no wind and with minimal shade, so it did get warm. All in all, I had a good bike ride.\r\n\r\nSo, as we entered town on the last loop, the crowds were cheering. The race had bike handlers as one gets off your bike, which are people who take your bike and rack it for you. Unfortunately, the race being slightly disorganized, they racked the bikes right there and then had the change tents after that. That meant you had to run about 50 yards alongside the bike rack areas in your bike shoes. Most places have it the other way around. But either way, it is always nice to get off the bike after 112 miles. Then it was into T2 tent and change into running shoes, visor, down some nutrition and out for the 26.2 mile marathon run.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_352\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg\" alt=\"Ironman Santa Rosa Run 2\" width=\"160\" height=\"288\" class=\"size-full wp-image-352\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]As we left the change tent, there were lots of people yelling and screaming encouragement. This was a good thing. It was now very sunny and very warm outside. Most of the run was done along a dry riverbed. There were some crowds at the beginning but not many after that. There was some shade but not everywhere, so the sun took its toll. There were several times you had to go over a little bridge, cross over the river bed and then come back, so the run was entirely flat. During the run, I had some difficulties with my foot which had been a common occurrence for me lately. Fortunately, I could adjust my running gait and keep going. The first 8.8 miles (the first loop) was pretty good. On the second one the foot pain got stronger and I had to walk/run quite a bit. But, as always, I just kept moving forward. There were a lot of runners out there for support. And of course, I was supporting the others that we’re not doing well. Being with the other athletes gave me tremendous moral support and the will to not give up. The second loop was tough as it took place during the 11th and 13th hours of racing, so keeping ones mind occupied is imperative. Dealing with my foot pain plus the physical and mental exhaustion that one experiences in an Ironman is always a challenge. As I began the third loop, I knew that if I made it to the turnaround at 4.4 miles, I was home free. As I made the final turn to head back towards town I knew that no matter how tough things got I was going to make it.[caption id=\"attachment_351\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-351\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I encouraged those that I passed as well as the ones that were only on their second loop. As I exited the riverbed area up onto the streets, I thought I only had less than a quarter mile to go, when in fact it was really over half a mile. Just then a guy ran up to me and said, “Hey Peter you\'re doing great”. I did not recognize him but I had my name on my running bib and thought he just saw that. He ran alongside of me and told me that his girlfriend was not far behind. He told me her name and that did not ring a bell either. It really didn’t matter as he was encouraging me, which was needed at that tme. He finally turned around to go back to meet her. As I ran off, the energy that he had given me would carry me the rest of the way. As I came down the final stretch I knew I was going to finish my 9th Ironman Triathlon. It was tough but Ironman are never easy. The exhilaration and enthusiasm of the crowd, and hearing the announcer say, ” Peter Fields, you are an Ironman!”, never gets old. Never.\r\n\r\nAs I came through the shoot and they took my pictures, I looked over and there was the young guy who I had seen as I exited the riverbed.  As I approached him, I recognized him as the son of one of my best friends.  We both laughed and embraced and I told him how appreciative I was for his encouragement.\r\n\r\n<strong class=\"subhead\">POST SCRIPT</strong>\r\n\r\nThese races are not only a physical challenge but also a mental challenge. With the difficulties with the wetsuit, the warm water, the uneven roads, the heat, the flat tire and my foot problems on the run, this was not an easy race. But again, I persevered.\r\n\r\nI always keep a remembrance of my parents with me at all times in my race jersey pocket. When things would get bad, I would reach back and touch it and say thanks mom and dad for being with me. This kept me going through any difficulties I was having at the time. With all their struggles in their lives (fleeing near certain death in fascist Germany, emigrating with almost nothing, meeting each other in the US and building a new life and more), they just kept moving forward and never looked back. They taught me over and over again, that no matter how tough things get in life just keep putting one foot in front of the other and keep going. They supported me no matter what I did as long as I had my heart and mind in it. On this day, and every day of my life, I knew they are with me all the way.\r\n\r\nAs I said after they passed “You are not dead, dead or only those that one forgets”. I will never forget them as they never forgot me. This, and all of my races, are dedicated in their honor. I therefore start each race with their initials marked on my forearms.\r\n\r\nI want to thank you for taking the time to read this and for supporting me, whether on line, thinking about me or reading this.\r\n\r\n\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 9X Ironman Triathlete</strong>\r\n','Race Report 9th Ironman','','inherit','closed','closed','','348-revision-v1','','','2019-06-14 07:47:00','2019-06-14 07:47:00','',348,'https://www.drfields.com/uncategorized/348-revision-v1/',0,'revision','',0),(1660,8,'2019-06-14 07:47:42','2019-06-14 07:47:42','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-santa-rosa-logo-blue.jpg\" alt=\"Ironman Santa Rosa Logo Blue\" width=\"230\" height=\"120\" class=\"aligncenter size-full wp-image-349\" />\r\n\r\n<h6 class=\"text-center\">Saturday July 29, 2017\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<p class=\"text-center\">\"Always keep moving forward in life\"\r\nYvette and Fred Fields</p>\r\n\r\nHere is my report on my 9th Ironman Triathlon.\r\n\r\n[caption id=\"attachment_355\" align=\"alignleft\" width=\"275\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg\" alt=\"Ironman Santa Rosa Snoopy\" width=\"275\" height=\"240\" class=\"size-full wp-image-355\" /><strong>Dr. Fields and Snoopy</strong>[/caption]<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\nThis one was a lot easier to get to than the others as it was my first Ironman in the US. Since it was in northern California, it was only a one hour and 20 minute flight up to Santa Rosa.  At the airport, I was greeted by Snoopy and Charlie Brown, as Santa Rosa is the home of Charles Schulz, the creator of Peanuts.  They both offered me encouragement on my race! Then it was driving into town, getting settled in and picking up my registration packet.  The next two days was spent checking out the course and trying to relax.\r\n\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">RACE DAY MORNING</strong>\r\n\r\nThis race was a bit different than other races. The lake where we swam in, Lake Sonoma, is 40 miles from downtown. This is very unusual when it is usually right at the start or within a few miles of the transition area.  So we had to report for buses leaving at 4 a.m. from the downtown area. This necessitated waking up around 2:30 so that I could have a proper breakfast. Then I had to drive down to the downtown area, park the car and walk over to where the buses were.  Fortunately my bike and other gear was already at the lake.  All I had with me was my nutrition and swimming gear. After that it was a one hour bus ride up to the lake, getting settled in by checking my bike, pumping the tires, filling the water bottles and loading the nutrition on the bike.  Then it was time to head down to the lake front. The day before, the water had been very warm, but the morning of the race they determined that it was still wetsuit legal (below 76 degrees). Since everyone else was wearing a I decided to wear one even though I get very warm in it.\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_354\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg\" alt=\"Ironman Santa Rosa Swim\" width=\"160\" height=\"240\" class=\"size-full wp-image-354\" /><strong>Swim Finish with his parents initials on his forearms</strong>[/caption]As we lined up to start to get in the water there were a few people without wetsuits. At that point, I thought maybe I should not have worn my wetsuit. Swimming is my best sport and the wetsuit does get restrictive in my arm swing, but I decided to keep it on anyway. As I entered the water I realized that the water was very warm. Since it was crowded, I stayed towards the outside of the swimmers because the fast swimmer group I was in can get very aggressive. Halfway through the first loop I realized I was getting too warm and I really didn\'t need the wetsuit. I made the unusual decision that when we ended the first lap I would take off the wetsuit. This first lap ended where you ran out on to the landing and back into the water. Usually this is at least 20, 30 or even 40 yards, but this time it was just a short little loop in and out of the water. As I came up onto the ramp I grabbed the leash that is attached to my zipper and pulled it down. Two race officials saw me doing this and asked I wanted help getting it off. This was a blessing. So I flopped down on the ground and they quickly pulled off the legs of my wetsuit (the hardest part to get off). Then I was back in the water. I lost a little time doing this but it was well worth it. The second lap went a lot better as I was not overheating. When you finished the swim there is a quarter-mile very steep hill that you must go up to get to your bicycle. They told people you cannot leave shoes or other foot gear down at the bottom. So most of us did not. But some people left shoes halfway up the hill. This was a violation of the rules but no one said anything. They did have some artificial grass type material down so that the road up was not too tough. But the hill is quite steep and many people, including myself, walked or fast walked most of the way so as not to exhaust ourselves for the bike ride. Quickly into the transition area, grab my gear, change in the tent and got onto my bike to begin the 112 mile ride.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_353\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg\" alt=\"Ironman Santa Rosa Bike 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-353\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]The bike had four thousand feet of climbing. I prepared for this so overall it was not too bad. It did start out with a small climb as we left the lake area. Then through some areas around wineries. Lots of wineries; at least 30 or more. It was not as scenic as other Ironman I have done because we did ride along a highway several times but pleasant when going by wineries.\r\n\r\nUnfortunately, the roads were not in great shape. There are a lot of uneven areas as well as small little potholes. This was even more difficult as it was extremely sunny. When you would go through an area that was shaded you could not see the road since you were wearing dark sunglasses. This made for an uncomfortable ride. Right before we got to town, at about the 65-mile mark, I got a flat. I did not notice it at first but as my speed dropped and I was pushing even harder, I had to get off the bike and check. Sure enough, the tire was flat. And it was the back tire, which takes more to change. But to my surprise, as I dismounted, one of the repair vehicles that circles the bike course (there were three or four of them) pulled up right behind me. What luck! The mechanic grabbed his pump and had my tire changed, pumped up and ready to go in less than two minutes. Faster I could have ever have done it. And without greasy hands too!\r\n\r\nSo back on the bike, I finally got to town where we than had to ride two 17-mile loops. This was invigorating as the crowd was there. Unfortunately, on these loops, the road got even worse. They were areas that were so bumpy one of the following riders said he thought he lost a crown. We all laughed. Although they predicted it to be in the 90s, it only went to about 86 or 87 degrees. But it was very sunny with no wind and with minimal shade, so it did get warm. All in all, I had a good bike ride.\r\n\r\nSo, as we entered town on the last loop, the crowds were cheering. The race had bike handlers as one gets off your bike, which are people who take your bike and rack it for you. Unfortunately, the race being slightly disorganized, they racked the bikes right there and then had the change tents after that. That meant you had to run about 50 yards alongside the bike rack areas in your bike shoes. Most places have it the other way around. But either way, it is always nice to get off the bike after 112 miles. Then it was into T2 tent and change into running shoes, visor, down some nutrition and out for the 26.2 mile marathon run.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_352\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg\" alt=\"Ironman Santa Rosa Run 2\" width=\"160\" height=\"288\" class=\"size-full wp-image-352\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]As we left the change tent, there were lots of people yelling and screaming encouragement. This was a good thing. It was now very sunny and very warm outside. Most of the run was done along a dry riverbed. There were some crowds at the beginning but not many after that. There was some shade but not everywhere, so the sun took its toll. There were several times you had to go over a little bridge, cross over the river bed and then come back, so the run was entirely flat. During the run, I had some difficulties with my foot which had been a common occurrence for me lately. Fortunately, I could adjust my running gait and keep going. The first 8.8 miles (the first loop) was pretty good. On the second one the foot pain got stronger and I had to walk/run quite a bit. But, as always, I just kept moving forward. There were a lot of runners out there for support. And of course, I was supporting the others that we’re not doing well. Being with the other athletes gave me tremendous moral support and the will to not give up. The second loop was tough as it took place during the 11th and 13th hours of racing, so keeping ones mind occupied is imperative. Dealing with my foot pain plus the physical and mental exhaustion that one experiences in an Ironman is always a challenge. As I began the third loop, I knew that if I made it to the turnaround at 4.4 miles, I was home free. As I made the final turn to head back towards town I knew that no matter how tough things got I was going to make it.[caption id=\"attachment_351\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-351\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I encouraged those that I passed as well as the ones that were only on their second loop. As I exited the riverbed area up onto the streets, I thought I only had less than a quarter mile to go, when in fact it was really over half a mile. Just then a guy ran up to me and said, “Hey Peter you\'re doing great”. I did not recognize him but I had my name on my running bib and thought he just saw that. He ran alongside of me and told me that his girlfriend was not far behind. He told me her name and that did not ring a bell either. It really didn’t matter as he was encouraging me, which was needed at that tme. He finally turned around to go back to meet her. As I ran off, the energy that he had given me would carry me the rest of the way. As I came down the final stretch I knew I was going to finish my 9th Ironman Triathlon. It was tough but Ironman are never easy. The exhilaration and enthusiasm of the crowd, and hearing the announcer say, ” Peter Fields, you are an Ironman!”, never gets old. Never.\r\n\r\nAs I came through the shoot and they took my pictures, I looked over and there was the young guy who I had seen as I exited the riverbed.  As I approached him, I recognized him as the son of one of my best friends.  We both laughed and embraced and I told him how appreciative I was for his encouragement.\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">POST SCRIPT</strong>\r\n\r\nThese races are not only a physical challenge but also a mental challenge. With the difficulties with the wetsuit, the warm water, the uneven roads, the heat, the flat tire and my foot problems on the run, this was not an easy race. But again, I persevered.\r\n\r\nI always keep a remembrance of my parents with me at all times in my race jersey pocket. When things would get bad, I would reach back and touch it and say thanks mom and dad for being with me. This kept me going through any difficulties I was having at the time. With all their struggles in their lives (fleeing near certain death in fascist Germany, emigrating with almost nothing, meeting each other in the US and building a new life and more), they just kept moving forward and never looked back. They taught me over and over again, that no matter how tough things get in life just keep putting one foot in front of the other and keep going. They supported me no matter what I did as long as I had my heart and mind in it. On this day, and every day of my life, I knew they are with me all the way.\r\n\r\nAs I said after they passed “You are not dead, dead or only those that one forgets”. I will never forget them as they never forgot me. This, and all of my races, are dedicated in their honor. I therefore start each race with their initials marked on my forearms.\r\n\r\nI want to thank you for taking the time to read this and for supporting me, whether on line, thinking about me or reading this.\r\n\r\n\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 9X Ironman Triathlete</strong>\r\n','Race Report 9th Ironman','','inherit','closed','closed','','348-revision-v1','','','2019-06-14 07:47:42','2019-06-14 07:47:42','',348,'https://www.drfields.com/uncategorized/348-revision-v1/',0,'revision','',0),(1661,8,'2019-06-14 07:48:55','2019-06-14 07:48:55','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" class=\"aligncenter size-full wp-image-362\" />\r\n\r\n<strong class=\"text-center\">Saturday, September 29, 2018\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</strong>\r\n\r\n<p class=\"text-center\">\"Never lose sight of your goals\"\r\nYvette and Fred Fields</p>\r\n\r\n<strong>Here’s the story of my 10th Ironman:</strong>\r\n\r\nIronman Maryland it was to be.\r\nI originally scheduled this to take place at Ironman Hamburg, Germany, June 30, 2018.\r\nHamburg is special for me as I lived there for 9 months many years ago.\r\nAnd both my parents were born in Germany.\r\nUnfortunately, it was not meant to be.\r\n\r\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake. The swim is my best part of the race and helps set me for the rest of the race. Also, in Europe when they cancel the swim they make you run first (not in the states where one just bikes and runs). No one practices running to biking. We practice swimming to biking and biking to running. So, after the 6K (4mile) mile starting run, I entered the transition area to get on the bike. But instead of being at the front of the crowd (as wold be if we had swum first), I was towards the back as I am not a fast runner. But either way I went off to do the 112-mile bike.\r\n\r\nThe first half of the bike (56 miles) went well. I felt strong and confident.\r\nAs I started the second loop (it was a double loop), I felt stomach pains.\r\nI had cramps and felt nauseous. My nutrition intake (I use only liquids) started to drop as my stomach could not take it. I usually take something in every 20 minutes. Then it was 30 minute, 40 minutes and more. This is not good as one must take in what you need and more on the bike so as not to run short during the marathon. The second half of my bike took an hour longer than the first half. This is very significant.\r\n\r\nWhen I transitioned to the run (T2), it took me quite a while to leave the transition area.\r\nAfter about five miles (I walked the last three miles due to lack of nutrition intake), I knew I was done.\r\nNo food, no water = no energy.\r\nInstead of attempting to go the whole way (which would have been impossible without bonking or\r\nworse passing out later), I decided to turn around and go back.\r\nSo, for my first time in over 60 triathlons, I did not finish.\r\nIt is hard to train but even harder to decide not to go on.\r\nBut for my overall health and safety, I knew that I had made the best choice.\r\n\r\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special Lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was Ironman Maryland at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate work outs.\r\n\r\n<strong class=\"subhead\">Getting There:</strong>\r\n\r\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross country flight to Philadelphia and a short flight to a small airport near Cambridge. Got to the hotel and checked in, looked over the course and got ready for race day which comes fast.The swim took place in a river that fed from the ocean. The day of the race the weather was very good. This race had lots of rain in the past but this day the weather was good\r\n\r\n<strong class=\"subhead\">The Swim 2.4 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-363\" />This race is notorious for rainy weather but race day was clear and without clouds. The swim takes place in a river that is fed from the ocean.  My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\r\n\r\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\r\n\r\n<strong class=\"subhead\">The Bike 112 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"300\" height=\"250\" class=\"alignright size-full wp-image-364\" />There was some wind on the bike which picked up after 40 miles but somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours when my normal time for 56 miles is 3:10 or more\r\nI kept pushing ahead without exerting myself too much to save myself for the run.\r\nAnd I did not have any stomach problems!\r\n\r\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\r\n\r\n<strong class=\"subhead\">The run 26.2 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-365\" />As I exited the transition area to start my marathon run I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\r\n\r\nThis turned out to be my Achilles heel for this race.\r\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\r\n\r\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way after what had happened in Hamburg I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much. One of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely.\r\nThis helped a lot and kept me going without getting cold\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"300\" height=\"338\" class=\"alignright size-full wp-image-366\" />So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. There is a saying that in an Ironman that the run is 90% mental and the rest is in your head! Hahaha.\r\n\r\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\r\n\r\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\r\n</em>\r\n\r\nAll my aches and pains just faded away.\r\n\r\n&nbsp;\r\n<strong class=\"subhead\">Postscript:</strong>\r\n\r\nAs with every race my parents’ spirit was with me the whole way. What they went through to survive fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\r\n\r\nA very dear friend of mine is going through a severe illness right now.I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\r\n\r\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\r\nfinishing my 10th Ironman.\r\nAnd of course, everyone who took the time to read this.\r\n\r\n<strong>Peter A. Fields, MD, DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\r\n','Race Report 10th Ironman','','inherit','closed','closed','','361-revision-v1','','','2019-06-14 07:48:55','2019-06-14 07:48:55','',361,'https://www.drfields.com/uncategorized/361-revision-v1/',0,'revision','',0),(1662,8,'2019-06-14 07:51:05','2019-06-14 07:51:05','&nbsp;\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" class=\"aligncenter size-full wp-image-362\" />\r\n\r\n<h6 class=\"text-center\">Saturday, September 29, 2018\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<p class=\"text-center\">\"Never lose sight of your goals\"\r\nYvette and Fred Fields</p>\r\n\r\n<strong>Here’s the story of my 10th Ironman:</strong>\r\n\r\nIronman Maryland it was to be.\r\nI originally scheduled this to take place at Ironman Hamburg, Germany, June 30, 2018.\r\nHamburg is special for me as I lived there for 9 months many years ago.\r\nAnd both my parents were born in Germany.\r\nUnfortunately, it was not meant to be.\r\n\r\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake. The swim is my best part of the race and helps set me for the rest of the race. Also, in Europe when they cancel the swim they make you run first (not in the states where one just bikes and runs). No one practices running to biking. We practice swimming to biking and biking to running. So, after the 6K (4mile) mile starting run, I entered the transition area to get on the bike. But instead of being at the front of the crowd (as wold be if we had swum first), I was towards the back as I am not a fast runner. But either way I went off to do the 112-mile bike.\r\n\r\nThe first half of the bike (56 miles) went well. I felt strong and confident.\r\nAs I started the second loop (it was a double loop), I felt stomach pains.\r\nI had cramps and felt nauseous. My nutrition intake (I use only liquids) started to drop as my stomach could not take it. I usually take something in every 20 minutes. Then it was 30 minute, 40 minutes and more. This is not good as one must take in what you need and more on the bike so as not to run short during the marathon. The second half of my bike took an hour longer than the first half. This is very significant.\r\n\r\nWhen I transitioned to the run (T2), it took me quite a while to leave the transition area.\r\nAfter about five miles (I walked the last three miles due to lack of nutrition intake), I knew I was done.\r\nNo food, no water = no energy.\r\nInstead of attempting to go the whole way (which would have been impossible without bonking or\r\nworse passing out later), I decided to turn around and go back.\r\nSo, for my first time in over 60 triathlons, I did not finish.\r\nIt is hard to train but even harder to decide not to go on.\r\nBut for my overall health and safety, I knew that I had made the best choice.\r\n\r\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special Lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was Ironman Maryland at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate work outs.\r\n\r\n<strong class=\"subhead\">Getting There:</strong>\r\n\r\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross country flight to Philadelphia and a short flight to a small airport near Cambridge. Got to the hotel and checked in, looked over the course and got ready for race day which comes fast.The swim took place in a river that fed from the ocean. The day of the race the weather was very good. This race had lots of rain in the past but this day the weather was good\r\n\r\n<strong class=\"subhead\">The Swim 2.4 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-363\" />This race is notorious for rainy weather but race day was clear and without clouds. The swim takes place in a river that is fed from the ocean.  My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\r\n\r\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">The Bike 112 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"300\" height=\"250\" class=\"alignright size-full wp-image-364\" />There was some wind on the bike which picked up after 40 miles but somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours when my normal time for 56 miles is 3:10 or more\r\nI kept pushing ahead without exerting myself too much to save myself for the run.\r\nAnd I did not have any stomach problems!\r\n\r\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\r\n\r\n<strong class=\"subhead\">The run 26.2 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-365\" />As I exited the transition area to start my marathon run I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\r\n\r\nThis turned out to be my Achilles heel for this race.\r\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\r\n\r\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way after what had happened in Hamburg I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much. One of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely.\r\nThis helped a lot and kept me going without getting cold\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"300\" height=\"338\" class=\"alignright size-full wp-image-366\" />So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. There is a saying that in an Ironman that the run is 90% mental and the rest is in your head! Hahaha.\r\n\r\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\r\n\r\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\r\n</em>\r\n\r\nAll my aches and pains just faded away.\r\n\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">Postscript:</strong>\r\n\r\nAs with every race my parents’ spirit was with me the whole way. What they went through to survive fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\r\n\r\nA very dear friend of mine is going through a severe illness right now.I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\r\n\r\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\r\nfinishing my 10th Ironman.\r\nAnd of course, everyone who took the time to read this.\r\n\r\n<strong>Peter A. Fields, MD, DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\r\n','Race Report 10th Ironman','','inherit','closed','closed','','361-revision-v1','','','2019-06-14 07:51:05','2019-06-14 07:51:05','',361,'https://www.drfields.com/uncategorized/361-revision-v1/',0,'revision','',0),(1663,8,'2019-06-14 08:00:26','2019-06-14 08:00:26','&nbsp;\r\n\r\n<h4>Honduras 2009</h4>\r\n\r\n<table class=\"resptable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" >\r\n<tbody>\r\n<tr>\r\n<td>[caption id=\"attachment_488\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-and-Matt.jpg\" alt=\"Dr&#039;s Peter And Matt\" width=\"255\" height=\"191\" class=\"size-full wp-image-488\" /> Dr. Fields instructs Dr. Matt[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_489\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F.-Lecturing-1.jpg\" alt=\"Dr F. Lecturing 1\" width=\"255\" height=\"191\" class=\"size-full wp-image-489\" /> Dr. Fields lecturing[/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>[caption id=\"attachment_490\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1562.jpg\" alt=\"Dscn1562\" width=\"255\" height=\"192\" class=\"size-full wp-image-490\" /> Dr\'s Bill, Saul and Peter[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_491\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1727.jpg\" alt=\"Dscn1727\" width=\"255\" height=\"191\" class=\"size-full wp-image-491\" /> Dr. Fields and student Dr. Laurent[/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>[caption id=\"attachment_492\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1739.jpg\" alt=\"Dscn1739\" width=\"255\" height=\"191\" class=\"size-full wp-image-492\" /> Dr. Fields and the La Ceiba Red Cross Staff[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_493\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1760.jpg\" alt=\"Dscn1760\" width=\"255\" height=\"191\" class=\"size-full wp-image-493\" /> Dr\'s Saul, Matt, Laurent and Dr. Pedro Campos![/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>[caption id=\"attachment_494\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1761.jpg\" alt=\"Dscn1761\" width=\"255\" height=\"191\" class=\"size-full wp-image-494\" /> Dr\'s Sandra and Josette- our Honduran Docs[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_495\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1790.jpg\" alt=\"Dscn1790\" width=\"255\" height=\"191\" class=\"size-full wp-image-495\" /> Dr\'s Peter, Deb, Saul, Red Cross aid with a pt and her child[/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>[caption id=\"attachment_496\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1796.jpg\" alt=\"Dscn1796\" width=\"255\" height=\"191\" class=\"size-full wp-image-496\" /> The La Ceiba team[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_497\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-adjusts-a-patient.jpg\" alt=\"Dr Fields Adjusts A Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-497\" /> Dr. Fields adjusts a patient while other<br />doctors obserserve[/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>[caption id=\"attachment_498\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-instructs.jpg\" alt=\"Dr Fields Instructs\" width=\"255\" height=\"191\" class=\"size-full wp-image-498\" /> Dr. Fields Instructs[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_499\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-Bill-Joe-and-patient.jpg\" alt=\"Dr&#039;s Peter, Bill, Joe And Patient\" width=\"255\" height=\"191\" class=\"size-full wp-image-499\" /> Dr\'s Peter, Bill, Joe and patient[/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>[caption id=\"attachment_500\" align=\"aligncenter\" width=\"217\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-giving-a-lecture.jpg\" alt=\"Dr Fields Giving A Lecture\" width=\"217\" height=\"255\" class=\"size-full wp-image-500\" /> Dr. Fields giving a lecture[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_501\" align=\"aligncenter\" width=\"200\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F-and-skeleton.jpg\" alt=\"Dr F And Skeleton\" width=\"200\" height=\"255\" class=\"size-full wp-image-501\" /> Dr. Fields and Dr. Bones[/caption]\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>[caption id=\"attachment_502\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dinner-at-the-hotel.jpg\" alt=\"Dinner At The Hotel\" width=\"255\" height=\"191\" class=\"size-full wp-image-502\" /> Dinner at the hotel[/caption]\r\n</td>\r\n<td>[caption id=\"attachment_503\" align=\"aligncenter\" width=\"255\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/horse.jpg\" alt=\"Horse\" width=\"255\" height=\"202\" class=\"size-full wp-image-503\" /> Local transport[/caption]\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Honduras 2009','','inherit','closed','closed','','504-revision-v1','','','2019-06-14 08:00:26','2019-06-14 08:00:26','',504,'https://www.drfields.com/uncategorized/504-revision-v1/',0,'revision','',0),(1664,8,'2019-06-14 08:05:12','2019-06-14 08:05:12','<p>&nbsp; </p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\" target=\"_blank\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed (310) 453-1212 to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<p ><u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.</p>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2019-06-14 08:05:12','2019-06-14 08:05:12','',207,'https://www.drfields.com/uncategorized/207-revision-v1/',0,'revision','',0),(1665,8,'2019-06-14 08:06:03','2019-06-14 08:06:03','\r\n<strong>Fees</strong>\r\n\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time. \r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n\r\n<strong>Prolotherapy Charges</strong>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you instil pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\nWoman Paying\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>. \r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Fees & Policies','','inherit','closed','closed','','202-revision-v1','','','2019-06-14 08:06:03','2019-06-14 08:06:03','',202,'https://www.drfields.com/uncategorized/202-revision-v1/',0,'revision','',0),(1666,8,'2019-06-14 08:07:01','2019-06-14 08:07:01','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-eating-fruit.jpg\"  alt=\"Woman Eating Fruit\" width=\"200\" height=\"253\" class=\"size-full wp-image-806 alignleft\" /> <strong>The Future of Your Health – Your Best Investment</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. Some of the treatments out there promoted by conventional medicine are doing their job- that is getting people better. But some can actually make you worse, or affect different parts of the body in a negative way. What good is it if it cures your specific ailment only to give you a different one.\r\n\r\nWhen you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more. There is an underlying cause for each of your symptoms and that will take time and effort on our part and yours to find out what that may be. For this reason, more and more people are starting to get concerned about and involved in, their own health care. Just treating the symptoms will not make the problem go away; one must get to the cause of the problem and fix that. This approach is what Integrative/Holistic medicine is all about.\r\n\r\nThe U.S. Centers for Disease Control and Prevention reports that the key factors influencing an individual\'s state of health have not changed significantly over the past 20 years. Heredity accounts for 18% and the environment is 19%. Everyday lifestyle choices are 53%. The decisions people make about their life and habits are therefore by far the largest factor in determining their state of wellness.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">Los Angeles Prolotherapy doctor</a> and <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">PRP Doctor</a> and the founder of OrthoRegen.\r\n\r\nAt OrthoRegen we want to help you to achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. Only you can decide what is fair and worth this investment when it comes to out-of-pocket costs for your health care. We will make every effort to instil the feeling that what you spend was worth it. After all, this is your health that we are talking about.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2019-06-14 08:07:01','2019-06-14 08:07:01','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(1667,8,'2019-06-14 08:08:16','2019-06-14 08:08:16','<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong></div>\r\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. But unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. And these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A. Fields, MD,DC.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD, DC, \"<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>What Is Prolotherapy?</h4>\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> is a shortened name for \"proliferation therapy.\" And it is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce a gentle inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\r\n\r\nWhen the body suffers an injury, it responds by producing growth factors. But the process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand. They say areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. And this means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\r\n\r\nBut unfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\r\n<h4>How Does Prolotherapy Work?</h4>\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\r\n<h4>Does Prolotherapy Work?</h4>\r\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"https://www.drfields.com/how-prolotherapy-can-eliminate-joint-pain-without-surgery/\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\r\n<h4>What Conditions Can Be Treated With Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\n<h4>How Did Prolotherapy Begin?</h4>\r\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\r\n\r\nProlotherapy has been shown to have a beneficial effect for many patients. And it helps them <a href=\"https://www.drfields.com/articles/prolo-news/joint-surgery-think-again-learn-about-prolotherapy/\">avoid surgery</a> which should be a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\r\n<h4>What Can I Expect From Prolotherapy Treatment?</h4>\r\nBefore you can be treated using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/ \">Prolotherapy</a>, you will be examined by Dr. Peter A. Fields, MD,DC. He is the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition. And he will also review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\r\n\r\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\r\n\r\nYou are then sent home to rest. And you will gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\r\n\r\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\r\n<h4>Los Angeles Prolotherapy</h4>\r\nPeter A. Fields MD, DC is an internationally recognized expert in the field of regenerative medicine. Specifically, in all forms of Prolotherapy – Dextrose Prolotherapy, PRP Prolotherapy and Stem Cell Prolotherapy. Dr. Fields is known as the “The Athletic Doc®” and has completed eleven Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\r\n\r\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\"\r\n\r\nThe professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs. And they have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\r\n<h4>Are you a Candidate for Prolotherapy?&lt;/h4 &gt; Call <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with Peter A. Fields, MD,DC to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a> to set up an in-person consultation.</h4>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','publish','open','closed','','los-angeles-prolotherapy','','','2020-10-07 18:12:17','2020-10-07 18:12:17','',0,'https://www.drfields.com/?p=1667',0,'post','',0),(1668,8,'2019-06-14 08:08:16','2019-06-14 08:08:16','<div id=\"dnn_ctr434_ContentPane\">\r\n<div id=\"dnn_ctr434_ModuleContent\" class=\"DNNModuleContent ModDNNHTMLC\">\r\n<div id=\"dnn_ctr434_HtmlModule_lblContent\" class=\"Normal\">\r\n\r\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. Unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. But these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A Fields.\r\n\r\n<a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Dextrose-Prolotherapy-Overview\">Prolotherapy</a> and <a href=\"https://www.drfields.com/Prolotherapy/PRP-Prolotherapy\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD DC, \"<a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n<h2>What Is Prolotherapy?</h2>\r\n<a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> is a shortened form of \"proliferation therapy\" and is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\r\n\r\nWhen the body suffers an injury, it responds by producing growth factors. The process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand: areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. This means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\r\n\r\nUnfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\r\n<h2>How Does Prolotherapy Work?</h2>\r\n<a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\r\n<h2>Does Prolotherapy Work?</h2>\r\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n\r\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Shoulder-Pain\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\r\n<h2>What Conditions Can Be Treated With Prolotherapy?</h2>\r\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"https://www.drfields.com/Sports-Injuries/Knee-Injuries\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\n<h2>How Did Prolotherapy Begin?</h2>\r\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\r\n\r\nProlotherapy has been shown to have a beneficial effect for many patients and to help them <a href=\"https://www.drfields.com/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">avoid surgery</a> as a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\r\n<h2>What Can I Expect From Prolotherapy Treatment?</h2>\r\nBefore you can be treated using <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>, you will be examined by Dr. Peter A Fields, the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition, review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\r\n\r\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\r\n\r\nYou are then sent home to rest and gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\r\n\r\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\r\n<h2>Los Angeles Prolotherapy</h2>\r\nPeter A. Fields MD DC is an internationally recognized expert in the field of regenerative medicine, specifically in all forms of Prolotherapy – dextrose Prolotherapy, PRP Prolotherapy and Stem Cell. Dr. Fields is known as the “The Athletic Doc®” has completed nine Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\r\n\r\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\" The professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs and have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\r\n<h2>Are you a Candidate for Prolotherapy?</h2>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','inherit','closed','closed','','1667-revision-v1','','','2019-06-14 08:08:16','2019-06-14 08:08:16','',1667,'https://www.drfields.com/uncategorized/1667-revision-v1/',0,'revision','',0),(1669,8,'2019-06-14 08:09:40','2019-06-14 08:09:40','<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong></div>\r\nLos Angeles PRP Prolotherapy treatments at OrthoRegen with Peter A. Fields MD DC are a modern, effective and less invasive way to deal with joint and muscle pain and injury for athletes or anyone who wants quick and healthy relief.\r\n\r\nAs a pioneer of treatments involving <strong>PRP in Los Angeles</strong>, Peter A Fields MD DC works with patients who need fast relief from joint and muscle pain but who also want the latest and most natural healing methods available.\r\n<div class=\"clearfix\"></div>\r\n<h4>What Is PRP Prolotherapy?</h4>\r\nThere are two ways prolotherapy can be administered. In <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose prolotherapy</a>, a solution is injected that is created from organic substances, while PRP prolotherapy uses platelets from the patient\'s own body. While more expensive and time-consuming, PRP has worked well in some cases in which dextrose prolotherapy proved ineffective.\r\n\r\nPRP prolotherapy has been shown to be highly effective at stimulating tissue repair and regenerating weak muscles, joints and other body components. When injected into an injury or pain site, prolotherapy fluids often have remarkable outcomes in terms of patient recovery times and lack of side effects.\r\n\r\nPRP treatment specifically focuses on giving patients doses of their own platelets, derived from drawn blood. Blood contains a certain number of platelets per fluid unit. By concentrating those platelets and reinjecting them into the body, not only can tissues heal remarkably quickly but the patient is not exposed to drugs or other foreign substances that can cause reactions.\r\n<h4>PRP vs. Surgery and Other Methods</h4>\r\nWhile there are many methods, including surgery, for treating injury or pain, PRP has some distinct advantages, including:\r\n<ul>\r\n 	<li>Less pain and shorter recovery time when compared to surgery or other invasive methods</li>\r\n 	<li>No addictive drugs.</li>\r\n 	<li>Short recovery time</li>\r\n 	<li>Quicker healing time</li>\r\n 	<li>No long-term treatment outlook</li>\r\n</ul>\r\nPRP prolotherapy is more expensive than other forms of prolotherapy, so the professionals at OrthoRegen may try other methods before recommending this particular treatment option.\r\n<h4>What Conditions Can Be Treated With PRP and Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles PRP and Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\nLos Angeles PRP Doctor\r\n\r\nPeter A. Fields, MD DC, also known as \"<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" is a Los Angeles PRP Doctor with years of experience in working with PRP and prolotherapy candidates and can help patients decide what is the right method of treatment for their particular needs. All it takes is a consultation.\r\n\r\nPRP Prolotherapy can be a miracle when it comes to ending joint damage and muscle pain, especially when compare to invasive surgery. OrthoRegen is ready to help people like you who want to learn just how simple it can be to treat your chronic and acute joint and muscle pain. Call our Los Angeles PRP Clinic at <a href=\"tel:+[phone_raw]\">[phone]</a> to schedule a consultation or to talk with the Doctor. You can also <a href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a> via email to set up an in-person consultation.','Los Angeles PRP Prolotherapy','','publish','open','closed','','los-angeles-prp','','','2020-10-07 17:50:49','2020-10-07 17:50:49','',0,'https://www.drfields.com/?p=1669',0,'post','',0),(1670,8,'2019-06-14 08:09:40','2019-06-14 08:09:40','','Los-Angeles-PRP','','inherit','closed','closed','','1669-revision-v1','','','2019-06-14 08:09:40','2019-06-14 08:09:40','',1669,'https://www.drfields.com/uncategorized/1669-revision-v1/',0,'revision','',0),(1671,8,'2019-06-14 08:09:55','2019-06-14 08:09:55','','Los Angeles PRP Prolotherapy','','inherit','closed','closed','','1669-revision-v1','','','2019-06-14 08:09:55','2019-06-14 08:09:55','',1669,'https://www.drfields.com/uncategorized/1669-revision-v1/',0,'revision','',0),(1672,8,'2019-06-14 08:10:17','2019-06-14 08:10:17','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-eating-fruit.jpg\"  alt=\"Woman Eating Fruit\" width=\"200\" height=\"253\" class=\"size-full wp-image-806 alignleft\" /> <strong>The Future of Your Health – Your Best Investment</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. Some of the treatments out there promoted by conventional medicine are doing their job- that is getting people better. But some can actually make you worse, or affect different parts of the body in a negative way. What good is it if it cures your specific ailment only to give you a different one.\r\n\r\nWhen you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more. There is an underlying cause for each of your symptoms and that will take time and effort on our part and yours to find out what that may be. For this reason, more and more people are starting to get concerned about and involved in, their own health care. Just treating the symptoms will not make the problem go away; one must get to the cause of the problem and fix that. This approach is what Integrative/Holistic medicine is all about.\r\n\r\nThe U.S. Centers for Disease Control and Prevention reports that the key factors influencing an individual\'s state of health have not changed significantly over the past 20 years. Heredity accounts for 18% and the environment is 19%. Everyday lifestyle choices are 53%. The decisions people make about their life and habits are therefore by far the largest factor in determining their state of wellness.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\" target=\"_blank\">Los Angeles Prolotherapy doctor</a> and <a href=\"/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\" target=\"_blank\">PRP Doctor</a> and the founder of OrthoRegen.\r\n\r\nAt OrthoRegen we want to help you to achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. Only you can decide what is fair and worth this investment when it comes to out-of-pocket costs for your health care. We will make every effort to instil the feeling that what you spend was worth it. After all, this is your health that we are talking about.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2019-06-14 08:10:17','2019-06-14 08:10:17','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(1673,8,'2019-06-14 08:11:01','2019-06-14 08:11:01','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-eating-fruit.jpg\"  alt=\"Woman Eating Fruit\" width=\"200\" height=\"253\" class=\"size-full wp-image-806 alignleft\" /> <strong>The Future of Your Health – Your Best Investment</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. Some of the treatments out there promoted by conventional medicine are doing their job- that is getting people better. But some can actually make you worse, or affect different parts of the body in a negative way. What good is it if it cures your specific ailment only to give you a different one.\r\n\r\nWhen you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more. There is an underlying cause for each of your symptoms and that will take time and effort on our part and yours to find out what that may be. For this reason, more and more people are starting to get concerned about and involved in, their own health care. Just treating the symptoms will not make the problem go away; one must get to the cause of the problem and fix that. This approach is what Integrative/Holistic medicine is all about.\r\n\r\nThe U.S. Centers for Disease Control and Prevention reports that the key factors influencing an individual\'s state of health have not changed significantly over the past 20 years. Heredity accounts for 18% and the environment is 19%. Everyday lifestyle choices are 53%. The decisions people make about their life and habits are therefore by far the largest factor in determining their state of wellness.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\" >Los Angeles Prolotherapy doctor</a> and <a href=\"/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\">PRP Doctor</a> and the founder of OrthoRegen.\r\n\r\nAt OrthoRegen we want to help you to achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. Only you can decide what is fair and worth this investment when it comes to out-of-pocket costs for your health care. We will make every effort to instil the feeling that what you spend was worth it. After all, this is your health that we are talking about.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2019-06-14 08:11:01','2019-06-14 08:11:01','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(1674,8,'2019-06-19 05:04:43','2019-06-19 05:04:43','<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\n<strong>Roberto - Knee (In Spanish)</strong>\n</div>\n<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\n<strong>Wilbur - Knee</strong>\n</div>\n\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. Unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. But these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A Fields.\n\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD DC, \"<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\n<div class=\"clear\"></div>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<h4>What Is Prolotherapy?</h4>\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> is a shortened form of \"proliferation therapy\" and is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\n\nWhen the body suffers an injury, it responds by producing growth factors. The process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand: areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. This means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\n\nUnfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\n\n<h4>How Does Prolotherapy Work?</h4>\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\n\n<h4>Does Prolotherapy Work?</h4>\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"https://www.drfields.com/how-prolotherapy-can-eliminate-joint-pain-without-surgery/\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\n\n<h4>What Conditions Can Be Treated With Prolotherapy?</h4>\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\n<ul>\n 	<li>ACL</li>\n 	<li>Tears</li>\n 	<li>Arthritis</li>\n 	<li>Bulging discs</li>\n 	<li>Bursitis</li>\n 	<li>Fibromyalgia</li>\n 	<li>Bone on Bone conditions</li>\n 	<li>Hip dysfunction</li>\n 	<li>Hip replacement</li>\n 	<li><a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\n 	<li>Knee replacement</li>\n 	<li>Lumbar or cervical spine instability</li>\n 	<li>Tendinitis</li>\n 	<li>Rotator cuff injuries</li>\n 	<li>Sciatica</li>\n</ul>\n<h4>How Did Prolotherapy Begin?</h4>\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\n\nProlotherapy has been shown to have a beneficial effect for many patients and to help them <a href=\"https://www.drfields.com/articles/prolo-news/joint-surgery-think-again-learn-about-prolotherapy/\">avoid surgery</a> as a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\n\n<h4>What Can I Expect From Prolotherapy Treatment?</h4>\nBefore you can be treated using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\n\">Prolotherapy</a>, you will be examined by Dr. Peter A Fields, the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition, review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\n\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\n\nYou are then sent home to rest and gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\n\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\n\n<h4>Los Angeles Prolotherapy</h4>\nPeter A. Fields MD DC is an internationally recognized expert in the field of regenerative medicine, specifically in all forms of Prolotherapy – dextrose Prolotherapy, PRP Prolotherapy and Stem Cell. Dr. Fields is known as the “The Athletic Doc®” has completed nine Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\n\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\" The professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs and have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\n\n<h4>Are you a Candidate for Prolotherapy?</h4\n>\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a> to set up an in-person consultation.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','inherit','closed','closed','','1667-autosave-v1','','','2019-06-19 05:04:43','2019-06-19 05:04:43','',1667,'https://www.drfields.com/uncategorized/1667-autosave-v1/',0,'revision','',0),(1675,8,'2019-06-14 08:17:30','2019-06-14 08:17:30','<h4>Prolotherapy for Chronic Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n\r\n<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong>\r\n</div>\r\n\r\n\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Prolotherapy for Chronic Knee Pain treatment.\r\n\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Osteoarthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Chronic osteoarthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudo gout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Knee Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with prolotherapy</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+1-310-455-8242\">(310) 455-8242</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2019-06-14 08:17:30','2019-06-14 08:17:30','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(1676,8,'2019-06-14 08:21:35','2019-06-14 08:21:35','\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. Unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. But these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A Fields.\r\n\r\n<a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Dextrose-Prolotherapy-Overview\">Prolotherapy</a> and <a href=\"https://www.drfields.com/Prolotherapy/PRP-Prolotherapy\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD DC, \"<a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n<h2>What Is Prolotherapy?</h2>\r\n<a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> is a shortened form of \"proliferation therapy\" and is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\r\n\r\nWhen the body suffers an injury, it responds by producing growth factors. The process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand: areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. This means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\r\n\r\nUnfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\r\n<h2>How Does Prolotherapy Work?</h2>\r\n<a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\r\n<h2>Does Prolotherapy Work?</h2>\r\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n\r\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Shoulder-Pain\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\r\n<h2>What Conditions Can Be Treated With Prolotherapy?</h2>\r\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"https://www.drfields.com/Sports-Injuries/Knee-Injuries\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\n<h2>How Did Prolotherapy Begin?</h2>\r\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\r\n\r\nProlotherapy has been shown to have a beneficial effect for many patients and to help them <a href=\"https://www.drfields.com/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">avoid surgery</a> as a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\r\n<h2>What Can I Expect From Prolotherapy Treatment?</h2>\r\nBefore you can be treated using <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>, you will be examined by Dr. Peter A Fields, the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition, review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\r\n\r\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\r\n\r\nYou are then sent home to rest and gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\r\n\r\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\r\n<h2>Los Angeles Prolotherapy</h2>\r\nPeter A. Fields MD DC is an internationally recognized expert in the field of regenerative medicine, specifically in all forms of Prolotherapy – dextrose Prolotherapy, PRP Prolotherapy and Stem Cell. Dr. Fields is known as the “The Athletic Doc®” has completed nine Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\r\n\r\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\" The professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs and have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\r\n<h2>Are you a Candidate for Prolotherapy?</h2>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','inherit','closed','closed','','1667-revision-v1','','','2019-06-14 08:21:35','2019-06-14 08:21:35','',1667,'https://www.drfields.com/uncategorized/1667-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (1677,8,'2019-06-14 08:22:43','2019-06-14 08:22:43','<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. Unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. But these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A Fields.\r\n\r\n<a href=\"https://www.drfields.com/Regenerative-Techniques/Dextrose-Prolotherapy/Dextrose-Prolotherapy-Overview\">Prolotherapy</a> and <a href=\"https://www.drfields.com/Prolotherapy/PRP-Prolotherapy\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD DC, \"<a href=\"https://www.drfields.com/Our-Office/The-Athletic-Doc\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n<h2>What Is Prolotherapy?</h2>\r\n<a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> is a shortened form of \"proliferation therapy\" and is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\r\n\r\nWhen the body suffers an injury, it responds by producing growth factors. The process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand: areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. This means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\r\n\r\nUnfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\r\n<h2>How Does Prolotherapy Work?</h2>\r\n<a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\r\n<h2>Does Prolotherapy Work?</h2>\r\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n\r\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Shoulder-Pain\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\r\n<h2>What Conditions Can Be Treated With Prolotherapy?</h2>\r\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"https://www.drfields.com/Sports-Injuries/Knee-Injuries\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\n<h2>How Did Prolotherapy Begin?</h2>\r\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\r\n\r\nProlotherapy has been shown to have a beneficial effect for many patients and to help them <a href=\"https://www.drfields.com/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">avoid surgery</a> as a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\r\n<h2>What Can I Expect From Prolotherapy Treatment?</h2>\r\nBefore you can be treated using <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>, you will be examined by Dr. Peter A Fields, the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition, review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\r\n\r\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\r\n\r\nYou are then sent home to rest and gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\r\n\r\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\r\n<h2>Los Angeles Prolotherapy</h2>\r\nPeter A. Fields MD DC is an internationally recognized expert in the field of regenerative medicine, specifically in all forms of Prolotherapy – dextrose Prolotherapy, PRP Prolotherapy and Stem Cell. Dr. Fields is known as the “The Athletic Doc®” has completed nine Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\r\n\r\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\" The professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs and have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\r\n<h2>Are you a Candidate for Prolotherapy?</h2>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','inherit','closed','closed','','1667-revision-v1','','','2019-06-14 08:22:43','2019-06-14 08:22:43','',1667,'https://www.drfields.com/uncategorized/1667-revision-v1/',0,'revision','',0),(1678,8,'2019-06-14 08:23:56','2019-06-14 08:23:56','<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. Unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. But these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A Fields.\r\n\r\n<a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> and <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD DC, \"<a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n<h2>What Is Prolotherapy?</h2>\r\n<a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> is a shortened form of \"proliferation therapy\" and is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\r\n\r\nWhen the body suffers an injury, it responds by producing growth factors. The process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand: areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. This means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\r\n\r\nUnfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\r\n<h2>How Does Prolotherapy Work?</h2>\r\n<a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\r\n<h2>Does Prolotherapy Work?</h2>\r\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"https://www.drfields.com/Regenerative-Techniques/Cellular-Regeneration\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n\r\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"https://www.drfields.com/Chronic-Pain/Chronic-Shoulder-Pain\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\r\n<h2>What Conditions Can Be Treated With Prolotherapy?</h2>\r\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"https://www.drfields.com/Sports-Injuries/Knee-Injuries\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\n<h2>How Did Prolotherapy Begin?</h2>\r\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\r\n\r\nProlotherapy has been shown to have a beneficial effect for many patients and to help them <a href=\"https://www.drfields.com/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">avoid surgery</a> as a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\r\n<h2>What Can I Expect From Prolotherapy Treatment?</h2>\r\nBefore you can be treated using <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>, you will be examined by Dr. Peter A Fields, the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition, review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\r\n\r\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\r\n\r\nYou are then sent home to rest and gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\r\n\r\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\r\n<h2>Los Angeles Prolotherapy</h2>\r\nPeter A. Fields MD DC is an internationally recognized expert in the field of regenerative medicine, specifically in all forms of Prolotherapy – dextrose Prolotherapy, PRP Prolotherapy and Stem Cell. Dr. Fields is known as the “The Athletic Doc®” has completed nine Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\r\n\r\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\" The professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs and have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\r\n<h2>Are you a Candidate for Prolotherapy?</h2>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/Contact-Us\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"secondaryButton bglight\" href=\"https://www.drfields.com/Contact-Us\">  Schedule Your Appointment Today!</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','inherit','closed','closed','','1667-revision-v1','','','2019-06-14 08:23:56','2019-06-14 08:23:56','',1667,'https://www.drfields.com/uncategorized/1667-revision-v1/',0,'revision','',0),(1679,8,'2019-06-14 08:30:43','2019-06-14 08:30:43','<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. Unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. But these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A Fields.\r\n\r\n<a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> and <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD DC, \"<a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>What Is Prolotherapy?</h4>\r\n<a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> is a shortened form of \"proliferation therapy\" and is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\r\n\r\nWhen the body suffers an injury, it responds by producing growth factors. The process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand: areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. This means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\r\n\r\nUnfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\r\n\r\n<h4>How Does Prolotherapy Work?</h4>\r\n<a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\r\n\r\n<h4>Does Prolotherapy Work?</h4>\r\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\r\n\r\n<h4>What Conditions Can Be Treated With Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\n<h4>How Did Prolotherapy Begin?</h4>\r\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\r\n\r\nProlotherapy has been shown to have a beneficial effect for many patients and to help them <a href=\"/articles/prolo-news/joint-surgery-think-again-learn-about-prolotherapy/\">avoid surgery</a> as a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\r\n\r\n<h4>What Can I Expect From Prolotherapy Treatment?</h4>\r\nBefore you can be treated using <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\r\n\">Prolotherapy</a>, you will be examined by Dr. Peter A Fields, the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition, review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\r\n\r\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\r\n\r\nYou are then sent home to rest and gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\r\n\r\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\r\n\r\n<h4>Los Angeles Prolotherapy</h4>\r\nPeter A. Fields MD DC is an internationally recognized expert in the field of regenerative medicine, specifically in all forms of Prolotherapy – dextrose Prolotherapy, PRP Prolotherapy and Stem Cell. Dr. Fields is known as the “The Athletic Doc®” has completed nine Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\r\n\r\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\" The professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs and have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\r\n\r\n<h4>Are you a Candidate for Prolotherapy?</h4\r\n>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','inherit','closed','closed','','1667-revision-v1','','','2019-06-14 08:30:43','2019-06-14 08:30:43','',1667,'https://www.drfields.com/uncategorized/1667-revision-v1/',0,'revision','',0),(1680,8,'2019-06-14 09:05:40','2019-06-14 09:05:40','<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. Unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. But these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A Fields.\r\n\r\n<a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> and <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD DC, \"<a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>What Is Prolotherapy?</h4>\r\n<a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> is a shortened form of \"proliferation therapy\" and is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\r\n\r\nWhen the body suffers an injury, it responds by producing growth factors. The process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand: areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. This means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\r\n\r\nUnfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\r\n\r\n<h4>How Does Prolotherapy Work?</h4>\r\n<a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\r\n\r\n<h4>Does Prolotherapy Work?</h4>\r\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\r\n\r\n<h4>What Conditions Can Be Treated With Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\n<h4>How Did Prolotherapy Begin?</h4>\r\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\r\n\r\nProlotherapy has been shown to have a beneficial effect for many patients and to help them <a href=\"/articles/prolo-news/joint-surgery-think-again-learn-about-prolotherapy/\">avoid surgery</a> as a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\r\n\r\n<h4>What Can I Expect From Prolotherapy Treatment?</h4>\r\nBefore you can be treated using <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\r\n\">Prolotherapy</a>, you will be examined by Dr. Peter A Fields, the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition, review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\r\n\r\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\r\n\r\nYou are then sent home to rest and gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\r\n\r\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\r\n\r\n<h4>Los Angeles Prolotherapy</h4>\r\nPeter A. Fields MD DC is an internationally recognized expert in the field of regenerative medicine, specifically in all forms of Prolotherapy – dextrose Prolotherapy, PRP Prolotherapy and Stem Cell. Dr. Fields is known as the “The Athletic Doc®” has completed nine Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\r\n\r\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\" The professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs and have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\r\n\r\n<h4>Are you a Candidate for Prolotherapy?</h4\r\n>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a>\"> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','inherit','closed','closed','','1667-revision-v1','','','2019-06-14 09:05:40','2019-06-14 09:05:40','',1667,'https://www.drfields.com/uncategorized/1667-revision-v1/',0,'revision','',0),(1681,8,'2019-06-14 09:06:01','2019-06-14 09:06:01','<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. Unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. But these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A Fields.\r\n\r\n<a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> and <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD DC, \"<a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>What Is Prolotherapy?</h4>\r\n<a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> is a shortened form of \"proliferation therapy\" and is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\r\n\r\nWhen the body suffers an injury, it responds by producing growth factors. The process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand: areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. This means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\r\n\r\nUnfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\r\n\r\n<h4>How Does Prolotherapy Work?</h4>\r\n<a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\r\n\r\n<h4>Does Prolotherapy Work?</h4>\r\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\r\n\r\n<h4>What Conditions Can Be Treated With Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\n<h4>How Did Prolotherapy Begin?</h4>\r\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\r\n\r\nProlotherapy has been shown to have a beneficial effect for many patients and to help them <a href=\"/articles/prolo-news/joint-surgery-think-again-learn-about-prolotherapy/\">avoid surgery</a> as a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\r\n\r\n<h4>What Can I Expect From Prolotherapy Treatment?</h4>\r\nBefore you can be treated using <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\r\n\">Prolotherapy</a>, you will be examined by Dr. Peter A Fields, the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition, review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\r\n\r\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\r\n\r\nYou are then sent home to rest and gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\r\n\r\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\r\n\r\n<h4>Los Angeles Prolotherapy</h4>\r\nPeter A. Fields MD DC is an internationally recognized expert in the field of regenerative medicine, specifically in all forms of Prolotherapy – dextrose Prolotherapy, PRP Prolotherapy and Stem Cell. Dr. Fields is known as the “The Athletic Doc®” has completed nine Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\r\n\r\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\" The professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs and have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\r\n\r\n<h4>Are you a Candidate for Prolotherapy?</h4\r\n>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a>\"> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','inherit','closed','closed','','1667-revision-v1','','','2019-06-14 09:06:01','2019-06-14 09:06:01','',1667,'https://www.drfields.com/uncategorized/1667-revision-v1/',0,'revision','',0),(1682,8,'2019-06-14 09:24:45','2019-06-14 09:24:45','<div class=\"col-md-8\">\r\n<h3>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h3>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain, or any other joint pain, you have probably tried to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain, and recovery time that joint surgery always requires?\r\n<h4><em>And You\'ve Tried All Kinds of Treatments...</em></h4>\r\n[caption id=\"attachment_1685\" align=\"alignright\" width=\"405\"]<img class=\"wp-image-1685 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Eliminate Joint Pain Without Surgery\" width=\"405\" height=\"643\" /> <em><strong>                  Eliminate Joint Pain Without Surgery</strong></em>[/caption]\r\n\r\nYou may have tried physical therapy, chiropractic, cortisone shots, NSAIDs (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since you\'ve tried all of these different things, you are faced with the question of whether you need to get surgery?! You don\'t want surgery, but you are so tired of the pain. What else can you?\r\n<h4><em>There Is An Alternative Way to Eliminate Joint Pain Without Surgery. Let me tell you about it...</em></h4>\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics. I am also uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that <strong>you do NOT need to have surgery</strong> to eliminate joint pain in many cases.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery. And there’s an excellent chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, non-surgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy. </strong> It is one type of Regenerative Orthopedic treatment that helps your body make new cells to repair your joint damage.\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nLet\'s talk about what is behind a lot of the joint pain people experience. Most joint pain is caused by weakened, torn, or damaged tendons or ligaments. These types of soft tissues have very low blood flow. And that inhibits their ability to repair themselves on their own. Plus, to make things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are injured, stretched out, and weak...\r\n<ul>\r\n 	<li>\r\n<h5>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></h5>\r\n</li>\r\n 	<li>\r\n<h5>Which causes <strong>arthritis-like</strong> pain...</h5>\r\n</li>\r\n 	<li>\r\n<h5>Plus, the nerves surrounding soft tissues become stretched and irritated...</h5>\r\n</li>\r\n 	<li>\r\n<h5>Causing you <strong>even more </strong><strong>pain</strong>.</h5>\r\n</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\nAnd Regenerative therapies, like Prolotherapy, work to do just that! Prolotherapy is very effective at repairing and strengthening ligaments and tendons.\r\n<h4>How Does Prolotherapy Eliminate Chronic Joint Pain Without Surgery?</h4>\r\nProlotherapy works by increasing nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons, or joints. <strong>Your own body does the work to grow healthy, strong, and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly. And your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/contact/\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to determine if you are a candidate for Prolotherapy, Platelet Rich Plasma Therapy, or Stem Cell Therapy.\r\n<h3>Listen to these testimonials from patients I have treated with Regenerative Orthopedics...</h3>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"><strong>Christa - Knee </strong></p>\r\n\r\n<h5><em>Christa, a former college athlete, had a knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</em></h5>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"><strong>Dr. Eric - Lower Back</strong></p>\r\n\r\n<h5><em>Dr. Eric had low back pain since age 15. Damaged ligaments caused his pain and tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Eric has his life back again!</em></h5>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\"></div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/MYI_vSJe378?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"><strong>Jeremy - Ankle</strong></p>\r\n\r\n<h5><em>Cortisone didn’t help Jeremy’s repeated ankle injuries. He had just two options: Prolotherapy or “Surgery with no guarantee.” After Prolotherapy treatment by Dr. Fields, he is now back to running 3-5 times per week and feeling great!</em></h5>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/VkDlCmTq6dE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"><strong>Wilbur - Shoulder</strong></p>\r\n\r\n<h5><em>Wilbur, a firefighter who hurt his shoulders, had a limited range of motion. He received Prolotherapy from Dr. Fields immediately. Now he’s doing core power yoga 5x a week!</em></h5>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/AioI5BZz3UE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"><strong>Tim - Shoulder</strong></p>\r\n\r\n<h5><strong><em>A shoulder injury kept Tim from working out. His Orthopedic surgeon told him to stop any shoulder exercise: “Your days are over,” he said. Now he’s back to normal after 6 Prolotherapy treatments by Dr. Fields.</em></strong></h5>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h3>Will Prolotherapy Work For You?</h3>\r\n<em>Find out if you\'re a candidate for Prolotherapy and eliminating your joint pain without surgery. Schedule your consultation by calling our office now at <a href=\"tel:+[phone_raw]\">[phone].</a></em>\r\n\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','publish','closed','closed','','how-prolotherapy-can-eliminate-joint-pain-without-surgery','','','2021-02-16 21:48:52','2021-02-16 21:48:52','',0,'https://www.drfields.com/?page_id=1682',0,'page','',0),(1683,8,'2019-06-14 09:24:45','2019-06-14 09:24:45','\r\n<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n\r\n<img src=\"https://www.drfields.com/portals/0/Images/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg?ver=2015-03-03-171800-000\" alt=\"\" width=\"176\" height=\"280\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\r\n<h2>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h2>\r\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\r\n<ul>\r\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\r\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\r\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\r\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n<h2>How To Eliminate Chronic Joint Pain Without Surgery</h2>\r\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n<h2>Schedule Your Consultation Today</h2>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:310-455-8242\">310-455-8242</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row-fluid\">\r\n<div id=\"dnn_leftPaneLowerLeft\" class=\"span6 leftPaneLowerLeft\">\r\n<div class=\"DnnModule DnnModule-DNN_HTML DnnModule-816\"><a name=\"816\"></a>\r\n<div class=\"DNNContainer_Title_h2 SpacingBottom\">\r\n<h2></h2>\r\n<div id=\"dnn_ctr816_ContentPane\">\r\n<div id=\"dnn_ctr816_ModuleContent\" class=\"DNNModuleContent ModDNNHTMLC\">\r\n<div id=\"dnn_ctr816_HtmlModule_lblContent\" class=\"Normal\">\r\n<div class=\"youtube thumbnail-container\">\r\n<div class=\"thumbnail\"><iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\" data-mce-fragment=\"1\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christa - Knee - NEW!</p>\r\nChrista, a former college athlete, had knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n</div>\r\n</div>\r\n<div class=\"DnnModule DnnModule-DNN_HTML DnnModule-817\"><a name=\"817\"></a>\r\n<div class=\"DNNContainer_Title_h2 SpacingBottom\">\r\n<h2></h2>\r\n<div id=\"dnn_ctr817_ContentPane\">\r\n<div id=\"dnn_ctr817_ModuleContent\" class=\"DNNModuleContent ModDNNHTMLC\">\r\n<div id=\"dnn_ctr817_HtmlModule_lblContent\" class=\"Normal\">\r\n<div class=\"youtube thumbnail-container\">\r\n<div class=\"thumbnail\"><iframe src=\"https://www.youtube.com/embed/vMWJVoJaVJs?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\" data-mce-fragment=\"1\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Nanette - Hip</p>\r\nPersonal trainer &amp; triathlete, Nanette, had a bicycle accident and could not walk, ride or work any more. Dr. Fields started Prolotherapy 6 months ago. She can now sit, squat, walk, run, climb, lift. “Miraculous,” she says.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n</div>\r\n</div>\r\n<div class=\"DnnModule DnnModule-DNN_HTML DnnModule-818\"><a name=\"818\"></a>\r\n<div class=\"DNNContainer_Title_h2 SpacingBottom\">\r\n<h2></h2>\r\n<div id=\"dnn_ctr818_ContentPane\">\r\n<div id=\"dnn_ctr818_ModuleContent\" class=\"DNNModuleContent ModDNNHTMLC\">\r\n<div id=\"dnn_ctr818_HtmlModule_lblContent\" class=\"Normal\">\r\n<div class=\"youtube  thumbnail-container\">\r\n<div class=\"thumbnail\"><iframe src=\"https://www.youtube.com/embed/VkDlCmTq6dE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\" data-mce-fragment=\"1\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Wilbur - Shoulder</p>\r\nWilbur, a firefighter who hurt his shoulders, had limited range of motion. Dr. Fields began Prolotherapy treatment immediately. Now he’s doing core power yoga 5x week!\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"dnn_leftPaneLowerRight\" class=\"span6 leftPaneLowerRight\">\r\n<div class=\"DnnModule DnnModule-DNN_HTML DnnModule-819\"><a name=\"819\"></a>\r\n<div class=\"DNNContainer_Title_h2 SpacingBottom\">\r\n<h2></h2>\r\n<div id=\"dnn_ctr819_ContentPane\">\r\n<div id=\"dnn_ctr819_ModuleContent\" class=\"DNNModuleContent ModDNNHTMLC\">\r\n<div id=\"dnn_ctr819_HtmlModule_lblContent\" class=\"Normal\">\r\n<div class=\"youtube  thumbnail-container\">\r\n<div class=\"thumbnail\"><iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\" data-mce-fragment=\"1\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Eric - Lower Back</p>\r\nDr. Eric had low back pain since age 15. Damaged ligaments caused his pain &amp; tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Now Eric has his life back.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n</div>\r\n</div>\r\n<div class=\"DnnModule DnnModule-DNN_HTML DnnModule-820\"><a name=\"820\"></a>\r\n<div class=\"DNNContainer_Title_h2 SpacingBottom\">\r\n<h2></h2>\r\n<div id=\"dnn_ctr820_ContentPane\">\r\n<div id=\"dnn_ctr820_ModuleContent\" class=\"DNNModuleContent ModDNNHTMLC\">\r\n<div id=\"dnn_ctr820_HtmlModule_lblContent\" class=\"Normal\">\r\n<div class=\"youtube  thumbnail-container\">\r\n<div class=\"thumbnail\"><iframe src=\"https://www.youtube.com/embed/MYI_vSJe378?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\" data-mce-fragment=\"1\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeremy. - Ankle</p>\r\nCortisone didn’t help Jeremy’s repeated ankle injuries. He had just two options: Prolotherapy or “Surgery with no guarantee.” After Prolotherapy treatment by Dr. Fields, he is now he’s back to running 3-5 times per week and feeling great!\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n</div>\r\n</div>\r\n<div class=\"DnnModule DnnModule-DNN_HTML DnnModule-834\"><a name=\"834\"></a>\r\n<div class=\"DNNContainer_Title_h2 SpacingBottom\">\r\n<h2></h2>\r\n<div id=\"dnn_ctr834_ContentPane\">\r\n<div id=\"dnn_ctr834_ModuleContent\" class=\"DNNModuleContent ModDNNHTMLC\">\r\n<div id=\"dnn_ctr834_HtmlModule_lblContent\" class=\"Normal\">\r\n<div class=\"youtube  thumbnail-container\">\r\n<div class=\"thumbnail\"><iframe src=\"https://www.youtube.com/embed/AioI5BZz3UE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\" data-mce-fragment=\"1\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Tim - Shoulder</p>\r\nShoulder injury kept Tim from working out. His Orthopedic surgeon told him to stop any shoulder exercise: “Your days are over,” he said. Now he’s back to normal after 6 Prolotherapy treatments by Dr. Fields.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2019-06-14 09:24:45','2019-06-14 09:24:45','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(1684,8,'2019-06-14 09:25:21','2019-06-14 09:25:21','<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. Unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. But these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A Fields.\r\n\r\n<a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> and <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD DC, \"<a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>What Is Prolotherapy?</h4>\r\n<a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> is a shortened form of \"proliferation therapy\" and is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\r\n\r\nWhen the body suffers an injury, it responds by producing growth factors. The process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand: areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. This means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\r\n\r\nUnfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\r\n\r\n<h4>How Does Prolotherapy Work?</h4>\r\n<a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\r\n\r\n<h4>Does Prolotherapy Work?</h4>\r\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"/how-prolotherapy-can-eliminate-joint-pain-without-surgery/\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\r\n\r\n<h4>What Conditions Can Be Treated With Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\n<h4>How Did Prolotherapy Begin?</h4>\r\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\r\n\r\nProlotherapy has been shown to have a beneficial effect for many patients and to help them <a href=\"/articles/prolo-news/joint-surgery-think-again-learn-about-prolotherapy/\">avoid surgery</a> as a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\r\n\r\n<h4>What Can I Expect From Prolotherapy Treatment?</h4>\r\nBefore you can be treated using <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\r\n\">Prolotherapy</a>, you will be examined by Dr. Peter A Fields, the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition, review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\r\n\r\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\r\n\r\nYou are then sent home to rest and gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\r\n\r\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\r\n\r\n<h4>Los Angeles Prolotherapy</h4>\r\nPeter A. Fields MD DC is an internationally recognized expert in the field of regenerative medicine, specifically in all forms of Prolotherapy – dextrose Prolotherapy, PRP Prolotherapy and Stem Cell. Dr. Fields is known as the “The Athletic Doc®” has completed nine Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\r\n\r\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\" The professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs and have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\r\n\r\n<h4>Are you a Candidate for Prolotherapy?</h4\r\n>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a>\"> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','inherit','closed','closed','','1667-revision-v1','','','2019-06-14 09:25:21','2019-06-14 09:25:21','',1667,'https://www.drfields.com/uncategorized/1667-revision-v1/',0,'revision','',0),(1685,8,'2019-06-14 09:25:59','2019-06-14 09:25:59','Stem Cell Doctor Peter Fields Md Dc','Stem Cell Doctor Peter Fields Md Dc','','inherit','open','closed','','stem-cell-doctor-peter-fields-md-dc','','','2019-06-14 09:26:05','2019-06-14 09:26:05','',1682,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg',0,'attachment','image/jpeg',0),(1686,8,'2019-10-18 09:06:42','2019-10-18 09:06:42','<div class=\"col-md-8\">\n<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\n\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignright size-full wp-image-1685\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\n\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\n\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\n\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\n\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\n\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\n\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\n<ul>\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\n</ul>\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\n\n<h4>How To Eliminate Chronic Joint Pain Without Surgery</h4>\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\n\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\n\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\n\n<h4>Schedule Your Consultation Today</h4>\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/contact/\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for Stem Cell.\n\n<div class=\"col-md-6\">\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\n<div class=\"text-wrap\">\n<p class=\"video-text\">Christa - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\n<p>Christa, a former college athlete, had knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</p>\n</div>\n</div>\n\n<div class=\"col-md-6\">\n<iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\n<div class=\"text-wrap\">\n<p class=\"video-text\">Dr. Eric - Lower Back</p>\n<p>Dr. Eric had low back pain since age 15. Damaged ligaments caused his pain &amp; tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Now Eric has his life back.</p>\n</div>\n</div>\n<div class=\"clear\"></div>\n<div class=\"col-md-6\">\n<iframe src=\"https://www.youtube.com/embed/vMWJVoJaVJs?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\n<div class=\"text-wrap\">\n<p class=\"video-text\">Nanette - Hip</p>\n<p>Personal trainer &amp; triathlete, Nanette, had a bicycle accident and could not walk, ride or work any more. Dr. Fields started Prolotherapy 6 months ago. She can now sit, squat, walk, run, climb, lift. “Miraculous,” she says.</p>\n</div>\n</div>\n\n<div class=\"col-md-6\">\n<iframe src=\"https://www.youtube.com/embed/MYI_vSJe378?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\n<div class=\"text-wrap\">\n<p class=\"video-text\">Jeremy. - Ankle</p>\n<p>Cortisone didn’t help Jeremy’s repeated ankle injuries. He had just two options: Prolotherapy or “Surgery with no guarantee.” After Prolotherapy treatment by Dr. Fields, he is now he’s back to running 3-5 times per week and feeling great!</p>\n</div>\n</div>\n<div class=\"clear\"></div>\n<div class=\"col-md-6\">\n<iframe src=\"https://www.youtube.com/embed/VkDlCmTq6dE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\n<div class=\"text-wrap\">\n<p class=\"video-text\"> Wilbur - Shoulder </p>\n<p>Wilbur, a firefighter who hurt his shoulders, had limited range of motion. Dr. Fields began Prolotherapy treatment immediately. Now he’s doing core power yoga 5x week!</p>\n</div>\n</div>\n\n<div class=\"col-md-6\">\n<iframe src=\"https://www.youtube.com/embed/AioI5BZz3UE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\n<div class=\"text-wrap\">\n<p class=\"video-text\"> Tim - Shoulder </p>\n<p>Shoulder injury kept Tim from working out. His Orthopedic surgeon told him to stop any shoulder exercise: “Your days are over,” he said. Now he’s back to normal after 6 Prolotherapy treatments by Dr. Fields.</p>\n</div>\n</div>\n\n</div>\n\n<div class=\"col-md-4\">\n<h5>Will Prolotherapy Work For You?</h5>\n\nFind out if you\'re a candidate for Prolotherapy and eliminating your joint pain without surgery. Schedule your consultation by calling our office now at <a href=\"tel:1-310-455-8242\"><strong>310-455-8242</strong></a>or fill out this form.\n\n[contact-form-7 id=\"1696\" title=\"Consulation form\"]\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-autosave-v1','','','2019-10-18 09:06:42','2019-10-18 09:06:42','',1682,'https://www.drfields.com/uncategorized/1682-autosave-v1/',0,'revision','',0),(1687,8,'2019-06-14 09:30:02','2019-06-14 09:30:02','<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"474\" height=\"752\" class=\"alignright size-full wp-image-1685\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\r\n\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\r\n<ul>\r\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\r\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\r\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\r\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\n<h4>How To Eliminate Chronic Joint Pain Without Surgery</h4>\r\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:310-455-8242\">310-455-8242</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2019-06-14 09:30:02','2019-06-14 09:30:02','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(1688,8,'2019-06-14 09:31:21','2019-06-14 09:31:21','<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"474\" height=\"752\" class=\"alignright size-full wp-image-1685\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\r\n\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\r\n<ul>\r\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\r\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\r\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\r\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\n<h4>How To Eliminate Chronic Joint Pain Without Surgery</h4>\r\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:310-455-8242\">310-455-8242</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-4\">\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christa - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Christa, a former college athlete, had knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</p>\r\n</div>\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2019-06-14 09:31:21','2019-06-14 09:31:21','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(1689,8,'2019-06-14 09:32:05','2019-06-14 09:32:05','<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignright size-full wp-image-1685\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\r\n\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\r\n<ul>\r\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\r\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\r\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\r\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\n<h4>How To Eliminate Chronic Joint Pain Without Surgery</h4>\r\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:310-455-8242\">310-455-8242</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-4\">\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christa - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Christa, a former college athlete, had knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</p>\r\n</div>\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2019-06-14 09:32:05','2019-06-14 09:32:05','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(1690,8,'2019-06-14 09:33:35','2019-06-14 09:33:35','<div class=\"col-md-8\">\r\n<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignright size-full wp-image-1685\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\r\n\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\r\n<ul>\r\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\r\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\r\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\r\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\n<h4>How To Eliminate Chronic Joint Pain Without Surgery</h4>\r\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:310-455-8242\">310-455-8242</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-4\">\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christa - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Christa, a former college athlete, had knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</p>\r\n</div>\r\n</div>\r\n\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2019-06-14 09:33:35','2019-06-14 09:33:35','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(1691,8,'2019-06-14 09:34:13','2019-06-14 09:34:13','<div class=\"col-md-8\">\r\n<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignright size-full wp-image-1685\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\r\n\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\r\n<ul>\r\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\r\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\r\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\r\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\n<h4>How To Eliminate Chronic Joint Pain Without Surgery</h4>\r\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:310-455-8242\">310-455-8242</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christa - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Christa, a former college athlete, had knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</p>\r\n</div>\r\n</div>\r\n\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2019-06-14 09:34:13','2019-06-14 09:34:13','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(1692,8,'2019-06-14 09:35:24','2019-06-14 09:35:24','<div class=\"col-md-8\">\r\n<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignright size-full wp-image-1685\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\r\n\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\r\n<ul>\r\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\r\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\r\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\r\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\n<h4>How To Eliminate Chronic Joint Pain Without Surgery</h4>\r\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:310-455-8242\">310-455-8242</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christa - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Christa, a former college athlete, had knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Eric - Lower Back</p>\r\n<p>Dr. Eric had low back pain since age 15. Damaged ligaments caused his pain &amp; tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Now Eric has his life back.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n</div>\r\n<div class=\"col-md-6\">\r\n</div>\r\n<div class=\"col-md-6\">\r\n</div>\r\n\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2019-06-14 09:35:24','2019-06-14 09:35:24','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(1693,8,'2019-06-14 09:37:55','2019-06-14 09:37:55','<div class=\"col-md-8\">\r\n<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignright size-full wp-image-1685\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\r\n\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\r\n<ul>\r\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\r\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\r\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\r\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\n<h4>How To Eliminate Chronic Joint Pain Without Surgery</h4>\r\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:310-455-8242\">310-455-8242</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christa - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Christa, a former college athlete, had knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Eric - Lower Back</p>\r\n<p>Dr. Eric had low back pain since age 15. Damaged ligaments caused his pain &amp; tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Now Eric has his life back.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/vMWJVoJaVJs?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Nanette - Hip</p>\r\n<p>Personal trainer &amp; triathlete, Nanette, had a bicycle accident and could not walk, ride or work any more. Dr. Fields started Prolotherapy 6 months ago. She can now sit, squat, walk, run, climb, lift. “Miraculous,” she says.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/MYI_vSJe378?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeremy. - Ankle</p>\r\n<p>Cortisone didn’t help Jeremy’s repeated ankle injuries. He had just two options: Prolotherapy or “Surgery with no guarantee.” After Prolotherapy treatment by Dr. Fields, he is now he’s back to running 3-5 times per week and feeling great!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VkDlCmTq6dE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Wilbur - Shoulder </p>\r\n<p>Wilbur, a firefighter who hurt his shoulders, had limited range of motion. Dr. Fields began Prolotherapy treatment immediately. Now he’s doing core power yoga 5x week!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/AioI5BZz3UE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Tim - Shoulder </p>\r\n<p>Shoulder injury kept Tim from working out. His Orthopedic surgeon told him to stop any shoulder exercise: “Your days are over,” he said. Now he’s back to normal after 6 Prolotherapy treatments by Dr. Fields.</p>\r\n</div>\r\n</div>\r\n\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2019-06-14 09:37:55','2019-06-14 09:37:55','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(1694,8,'2019-06-14 09:40:03','2019-06-14 09:40:03','<div class=\"col-md-8\">\r\n<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignright size-full wp-image-1685\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\r\n\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\r\n<ul>\r\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\r\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\r\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\r\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\n<h4>How To Eliminate Chronic Joint Pain Without Surgery</h4>\r\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:310-455-8242\">310-455-8242</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christa - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Christa, a former college athlete, had knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Eric - Lower Back</p>\r\n<p>Dr. Eric had low back pain since age 15. Damaged ligaments caused his pain &amp; tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Now Eric has his life back.</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/vMWJVoJaVJs?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Nanette - Hip</p>\r\n<p>Personal trainer &amp; triathlete, Nanette, had a bicycle accident and could not walk, ride or work any more. Dr. Fields started Prolotherapy 6 months ago. She can now sit, squat, walk, run, climb, lift. “Miraculous,” she says.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/MYI_vSJe378?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeremy. - Ankle</p>\r\n<p>Cortisone didn’t help Jeremy’s repeated ankle injuries. He had just two options: Prolotherapy or “Surgery with no guarantee.” After Prolotherapy treatment by Dr. Fields, he is now he’s back to running 3-5 times per week and feeling great!</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VkDlCmTq6dE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Wilbur - Shoulder </p>\r\n<p>Wilbur, a firefighter who hurt his shoulders, had limited range of motion. Dr. Fields began Prolotherapy treatment immediately. Now he’s doing core power yoga 5x week!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/AioI5BZz3UE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Tim - Shoulder </p>\r\n<p>Shoulder injury kept Tim from working out. His Orthopedic surgeon told him to stop any shoulder exercise: “Your days are over,” he said. Now he’s back to normal after 6 Prolotherapy treatments by Dr. Fields.</p>\r\n</div>\r\n</div>\r\n\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2019-06-14 09:40:03','2019-06-14 09:40:03','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(1695,8,'2019-06-14 09:43:40','2019-06-14 09:43:40','<div class=\"col-md-8\">\r\n<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignright size-full wp-image-1685\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\r\n\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\r\n<ul>\r\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\r\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\r\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\r\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\n<h4>How To Eliminate Chronic Joint Pain Without Surgery</h4>\r\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:310-455-8242\">310-455-8242</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christa - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Christa, a former college athlete, had knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Eric - Lower Back</p>\r\n<p>Dr. Eric had low back pain since age 15. Damaged ligaments caused his pain &amp; tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Now Eric has his life back.</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/vMWJVoJaVJs?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Nanette - Hip</p>\r\n<p>Personal trainer &amp; triathlete, Nanette, had a bicycle accident and could not walk, ride or work any more. Dr. Fields started Prolotherapy 6 months ago. She can now sit, squat, walk, run, climb, lift. “Miraculous,” she says.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/MYI_vSJe378?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeremy. - Ankle</p>\r\n<p>Cortisone didn’t help Jeremy’s repeated ankle injuries. He had just two options: Prolotherapy or “Surgery with no guarantee.” After Prolotherapy treatment by Dr. Fields, he is now he’s back to running 3-5 times per week and feeling great!</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VkDlCmTq6dE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Wilbur - Shoulder </p>\r\n<p>Wilbur, a firefighter who hurt his shoulders, had limited range of motion. Dr. Fields began Prolotherapy treatment immediately. Now he’s doing core power yoga 5x week!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/AioI5BZz3UE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Tim - Shoulder </p>\r\n<p>Shoulder injury kept Tim from working out. His Orthopedic surgeon told him to stop any shoulder exercise: “Your days are over,” he said. Now he’s back to normal after 6 Prolotherapy treatments by Dr. Fields.</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n\r\n<h5>Will Prolotherapy Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for Prolotherapy and eliminating your joint pain without surgery. Schedule your consultation by calling our office now at 310-455-8242 or fill out this form.\r\n\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2019-06-14 09:43:40','2019-06-14 09:43:40','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(1697,8,'2019-06-14 09:49:54','2019-06-14 09:49:54','<div class=\"col-md-8\">\r\n<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignright size-full wp-image-1685\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\r\n\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\r\n<ul>\r\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\r\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\r\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\r\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\n<h4>How To Eliminate Chronic Joint Pain Without Surgery</h4>\r\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-Prolotherapy-Can-Eliminate-Joint-Pain-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:310-455-8242\">310-455-8242</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christa - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Christa, a former college athlete, had knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Eric - Lower Back</p>\r\n<p>Dr. Eric had low back pain since age 15. Damaged ligaments caused his pain &amp; tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Now Eric has his life back.</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/vMWJVoJaVJs?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Nanette - Hip</p>\r\n<p>Personal trainer &amp; triathlete, Nanette, had a bicycle accident and could not walk, ride or work any more. Dr. Fields started Prolotherapy 6 months ago. She can now sit, squat, walk, run, climb, lift. “Miraculous,” she says.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/MYI_vSJe378?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeremy. - Ankle</p>\r\n<p>Cortisone didn’t help Jeremy’s repeated ankle injuries. He had just two options: Prolotherapy or “Surgery with no guarantee.” After Prolotherapy treatment by Dr. Fields, he is now he’s back to running 3-5 times per week and feeling great!</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VkDlCmTq6dE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Wilbur - Shoulder </p>\r\n<p>Wilbur, a firefighter who hurt his shoulders, had limited range of motion. Dr. Fields began Prolotherapy treatment immediately. Now he’s doing core power yoga 5x week!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/AioI5BZz3UE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Tim - Shoulder </p>\r\n<p>Shoulder injury kept Tim from working out. His Orthopedic surgeon told him to stop any shoulder exercise: “Your days are over,” he said. Now he’s back to normal after 6 Prolotherapy treatments by Dr. Fields.</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will Prolotherapy Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for Prolotherapy and eliminating your joint pain without surgery. Schedule your consultation by calling our office now at <a href=\"tel:1-310-455-8242\"><strong>310-455-8242</strong></a>or fill out this form.\r\n\r\n[contact-form-7 id=\"1696\" title=\"Consulation form\"]\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2019-06-14 09:49:54','2019-06-14 09:49:54','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(1698,8,'2019-06-19 05:14:31','2019-06-19 05:14:31','<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\n<strong>Roberto - Knee (In Spanish)</strong>\n</div>\n<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\n<strong>Wilbur - Knee</strong>\n</div>\nLos Angeles PRP treatments at OrthoRegen with Peter A. Fields MD DC are a modern, effective and less invasive way to deal with joint and muscle pain and injury for athletes or anyone who wants quick and healthy relief.\n\nAs a pioneer of treatments involving <strong>PRP in Los Angeles</strong>, Peter A Fields MD DC works with patients who need fast relief from joint and muscle pain but who also want the latest and most natural healing methods available.\n<div class=\"clearfix\"></div>\n\n<h4>What Is PRP Prolotherapy?</h4>\nThere are two ways prolotherapy can be administered. In <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose prolotherapy</a>, a solution is injected that is created from organic substances, while PRP prolotherapy uses platelets from the patient\'s own body. While more expensive and time-consuming, PRP has worked well in some cases in which dextrose prolotherapy proved ineffective.\n\nPRP prolotherapy has been shown to be highly effective at stimulating tissue repair and regenerating weak muscles, joints and other body components. When injected into an injury or pain site, prolotherapy fluids often have remarkable outcomes in terms of patient recovery times and lack of side effects.\n\nPRP treatment specifically focuses on giving patients doses of their own platelets, derived from drawn blood. Blood contains a certain number of platelets per fluid unit. By concentrating those platelets and reinjecting them into the body, not only can tissues heal remarkably quickly but the patient is not exposed to drugs or other foreign substances that can cause reactions.\n\n<h4>PRP vs. Surgery and Other Methods</h4>\nWhile there are many methods, including surgery, for treating injury or pain, PRP has some distinct advantages, including:\n<ul>\n 	<li>Less pain and shorter recovery time when compared to surgery or other invasive methods</li>\n 	<li>No addictive drugs.</li>\n 	<li>Short recovery time</li>\n 	<li>Quicker healing time</li>\n 	<li>No long-term treatment outlook</li>\n</ul>\nPRP prolotherapy is more expensive than other forms of prolotherapy, so the professionals at OrthoRegen may try other methods before recommending this particular treatment option.\n\n<h4>What Conditions Can Be Treated With PRP and Prolotherapy?</h4>\nAt OrthoRegen, my Los Angeles PRP and Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\n<ul>\n 	<li>ACL</li>\n 	<li>Tears</li>\n 	<li>Arthritis</li>\n 	<li>Bulging discs</li>\n 	<li>Bursitis</li>\n 	<li>Fibromyalgia</li>\n 	<li>Bone on Bone conditions</li>\n 	<li>Hip dysfunction</li>\n 	<li>Hip replacement</li>\n 	<li><a href=\"/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\n 	<li>Knee replacement</li>\n 	<li>Lumbar or cervical spine instability</li>\n 	<li>Tendinitis</li>\n 	<li>Rotator cuff injuries</li>\n 	<li>Sciatica</li>\n</ul>\nLos Angeles PRP Doctor\n\nPeter A. Fields, MD DC, also known as \"<a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" is a Los Angeles PRP Doctor with years of experience in working with PRP and prolotherapy candidates and can help patients decide what is the right method of treatment for their particular needs. All it takes is a consultation.\n\nPRP Prolotherapy can be a miracle when it comes to ending joint damage and muscle pain, especially when compare to invasive surgery. OrthoRegen is ready to help people like you who want to learn just how simple it can be to treat your chronic and acute joint and muscle pain. Call our Los Angeles PRP Clinic at <a href=\"tel://1-424-325-6695\">424-325-6695</a> to schedule a consultation or to talk with the Doctor. You can also <a href=\"/contact/\">contact Dr. Fields\' office</a> via email to set up an in-person consultation.','Los Angeles PRP Prolotherapy','','inherit','closed','closed','','1669-autosave-v1','','','2019-06-19 05:14:31','2019-06-19 05:14:31','',1669,'https://www.drfields.com/uncategorized/1669-autosave-v1/',0,'revision','',0),(1699,8,'2019-06-14 09:57:26','2019-06-14 09:57:26','<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong>\r\n</div>\r\nLos Angeles PRP treatments at OrthoRegen with Peter A. Fields MD DC are a modern, effective and less invasive way to deal with joint and muscle pain and injury for athletes or anyone who wants quick and healthy relief.\r\n\r\nAs a pioneer of treatments involving <strong>PRP in Los Angeles</strong>, Peter A Fields MD DC works with patients who need fast relief from joint and muscle pain but who also want the latest and most natural healing methods available.\r\n<div class=\"clearfix\"></div>\r\n\r\n<h4>What Is PRP Prolotherapy?</h4>\r\nThere are two ways prolotherapy can be administered. In <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose prolotherapy</a>, a solution is injected that is created from organic substances, while PRP prolotherapy uses platelets from the patient\'s own body. While more expensive and time-consuming, PRP has worked well in some cases in which dextrose prolotherapy proved ineffective.\r\n\r\nPRP prolotherapy has been shown to be highly effective at stimulating tissue repair and regenerating weak muscles, joints and other body components. When injected into an injury or pain site, prolotherapy fluids often have remarkable outcomes in terms of patient recovery times and lack of side effects.\r\n\r\nPRP treatment specifically focuses on giving patients doses of their own platelets, derived from drawn blood. Blood contains a certain number of platelets per fluid unit. By concentrating those platelets and reinjecting them into the body, not only can tissues heal remarkably quickly but the patient is not exposed to drugs or other foreign substances that can cause reactions.\r\n\r\n<h4>PRP vs. Surgery and Other Methods</h4>\r\nWhile there are many methods, including surgery, for treating injury or pain, PRP has some distinct advantages, including:\r\n<ul>\r\n 	<li>Less pain and shorter recovery time when compared to surgery or other invasive methods</li>\r\n 	<li>No addictive drugs.</li>\r\n 	<li>Short recovery time</li>\r\n 	<li>Quicker healing time</li>\r\n 	<li>No long-term treatment outlook</li>\r\n</ul>\r\nPRP prolotherapy is more expensive than other forms of prolotherapy, so the professionals at OrthoRegen may try other methods before recommending this particular treatment option.\r\n\r\n<h4>What Conditions Can Be Treated With PRP and Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles PRP and Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\nLos Angeles PRP Doctor\r\n\r\nPeter A. Fields, MD DC, also known as \"<a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" is a Los Angeles PRP Doctor with years of experience in working with PRP and prolotherapy candidates and can help patients decide what is the right method of treatment for their particular needs. All it takes is a consultation.\r\n\r\nPRP Prolotherapy can be a miracle when it comes to ending joint damage and muscle pain, especially when compare to invasive surgery. OrthoRegen is ready to help people like you who want to learn just how simple it can be to treat your chronic and acute joint and muscle pain. Call our Los Angeles PRP Clinic at <a href=\"tel://1-424-325-6695\">424-325-6695</a> to schedule a consultation or to talk with the Doctor. You can also <a href=\"/contact/\">contact Dr. Fields\' office</a> via email to set up an in-person consultation.','Los Angeles PRP Prolotherapy','','inherit','closed','closed','','1669-revision-v1','','','2019-06-14 09:57:26','2019-06-14 09:57:26','',1669,'https://www.drfields.com/uncategorized/1669-revision-v1/',0,'revision','',0),(1700,8,'2019-06-14 10:13:50','2019-06-14 10:13:50','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/bob-2.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Knee\"]<strong>Robert B. - Knee</strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','publish','closed','closed','','cellular-regeneration-testimonials','','','2020-12-11 21:39:43','2020-12-11 21:39:43','',1268,'https://www.drfields.com/?page_id=1700',0,'page','',0),(1701,8,'2019-06-14 10:13:50','2019-06-14 10:13:50','','Stem Cell','','inherit','closed','closed','','1700-revision-v1','','','2019-06-14 10:13:50','2019-06-14 10:13:50','',1700,'https://www.drfields.com/uncategorized/1700-revision-v1/',0,'revision','',0),(1702,8,'2019-06-14 10:14:24','2019-06-14 10:14:24','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Knee Testimonials','','publish','closed','closed','','knee-testimonials','','','2019-09-27 20:56:16','2019-09-27 20:56:16','',1268,'https://www.drfields.com/?page_id=1702',0,'page','',0),(1703,8,'2019-06-14 10:14:24','2019-06-14 10:14:24','','Knee Testimonials','','inherit','closed','closed','','1702-revision-v1','','','2019-06-14 10:14:24','2019-06-14 10:14:24','',1702,'https://www.drfields.com/uncategorized/1702-revision-v1/',0,'revision','',0),(1704,8,'2019-06-14 10:14:40','2019-06-14 10:14:40','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Low Back Testimonials','','publish','closed','closed','','low-back-testimonials','','','2020-12-11 21:32:43','2020-12-11 21:32:43','',1268,'https://www.drfields.com/?page_id=1704',0,'page','',0),(1705,8,'2019-06-14 10:14:40','2019-06-14 10:14:40','','Low Back Testimonials','','inherit','closed','closed','','1704-revision-v1','','','2019-06-14 10:14:40','2019-06-14 10:14:40','',1704,'https://www.drfields.com/uncategorized/1704-revision-v1/',0,'revision','',0),(1706,8,'2019-06-14 10:14:53','2019-06-14 10:14:53','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/Keith-Shoulder-2.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Shoulder Testimonials','','publish','closed','closed','','shoulder-testimonials','','','2020-12-11 21:32:20','2020-12-11 21:32:20','',1268,'https://www.drfields.com/?page_id=1706',0,'page','',0),(1707,8,'2019-06-14 10:14:53','2019-06-14 10:14:53','','Shoulder Testimonials','','inherit','closed','closed','','1706-revision-v1','','','2019-06-14 10:14:53','2019-06-14 10:14:53','',1706,'https://www.drfields.com/uncategorized/1706-revision-v1/',0,'revision','',0),(1708,8,'2019-06-14 10:15:07','2019-06-14 10:15:07','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Hip Testimonials','','publish','closed','closed','','hip-testimonials','','','2019-09-27 20:56:19','2019-09-27 20:56:19','',0,'https://www.drfields.com/?page_id=1708',0,'page','',0),(1709,8,'2019-06-14 10:15:07','2019-06-14 10:15:07','','Hip Testimonials','','inherit','closed','closed','','1708-revision-v1','','','2019-06-14 10:15:07','2019-06-14 10:15:07','',1708,'https://www.drfields.com/uncategorized/1708-revision-v1/',0,'revision','',0),(1710,8,'2019-06-19 05:17:15','2019-06-19 05:17:15','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignleft size-full wp-image-955\" />\n<h4>Peter A. Fields, MD, DC, The Athletic Doc®</h4>\n\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" rel=\"noopener noreferrer\" target=\"_blank\">The Athletic Doc®</a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\n\n<h4>Director of OrthoRegen</h4>\n\nDr. Fields is the Director of <a href=\"https://orthoregen.com/\" rel=\"noopener noreferrer\" target=\"_blank\">OrthoRegen</a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\" >Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\n\n<h4>Regenerative Medicine Expert</h4> \n\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\" >national magazine</a> as well as lecturing at various conferences around the world on these techniques.\n\n<h4>Hackett-Hemwall Foundation Instructor</h4> \n\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.\n\n<h4>Prolotherapy Doctor</h4>\n\nDr. Fields is the leading expert in the field or <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\n\n<h6>The Athletic Doc®</h6>\n\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc® has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<div class=\"text-center\" id=\"centrevideo\">\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong>\n</div>','Bio: Dr. Fields','','inherit','closed','closed','','216-autosave-v1','','','2019-06-19 05:17:15','2019-06-19 05:17:15','',216,'https://www.drfields.com/uncategorized/216-autosave-v1/',0,'revision','',0),(1711,8,'2019-06-14 10:15:21','2019-06-14 10:15:21','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Neck Testimonials','','publish','closed','closed','','neck-testimonials','','','2020-12-11 21:26:26','2020-12-11 21:26:26','',1268,'https://www.drfields.com/?page_id=1711',0,'page','',0),(1712,8,'2019-06-14 10:15:21','2019-06-14 10:15:21','','Neck Testimonials','','inherit','closed','closed','','1711-revision-v1','','','2019-06-14 10:15:21','2019-06-14 10:15:21','',1711,'https://www.drfields.com/uncategorized/1711-revision-v1/',0,'revision','',0),(1713,8,'2019-06-14 10:15:37','2019-06-14 10:15:37','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Ankle Testimonials','','publish','closed','closed','','ankle-testimonials','','','2020-12-11 21:31:57','2020-12-11 21:31:57','',1268,'https://www.drfields.com/?page_id=1713',0,'page','',0),(1714,8,'2019-06-14 10:15:37','2019-06-14 10:15:37','','Ankle Testimonials','','inherit','closed','closed','','1713-revision-v1','','','2019-06-14 10:15:37','2019-06-14 10:15:37','',1713,'https://www.drfields.com/uncategorized/1713-revision-v1/',0,'revision','',0),(1715,8,'2019-06-14 10:15:53','2019-06-14 10:15:53','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Elbow Testimonials','','publish','closed','closed','','elbow-testimonials','','','2019-09-27 20:56:22','2019-09-27 20:56:22','',1268,'https://www.drfields.com/?page_id=1715',0,'page','',0),(1716,8,'2019-06-14 10:15:53','2019-06-14 10:15:53','','Elbow Testimonials','','inherit','closed','closed','','1715-revision-v1','','','2019-06-14 10:15:53','2019-06-14 10:15:53','',1715,'https://www.drfields.com/uncategorized/1715-revision-v1/',0,'revision','',0),(1717,8,'2019-06-14 10:16:16','2019-06-14 10:16:16','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot</strong></div>\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Foot Testimonials','','publish','closed','closed','','foot-testimonials','','','2020-12-11 21:30:28','2020-12-11 21:30:28','',1268,'https://www.drfields.com/?page_id=1717',0,'page','',0),(1718,8,'2019-06-14 10:16:16','2019-06-14 10:16:16','','Foot Testimonials','','inherit','closed','closed','','1717-revision-v1','','','2019-06-14 10:16:16','2019-06-14 10:16:16','',1717,'https://www.drfields.com/uncategorized/1717-revision-v1/',0,'revision','',0),(1719,8,'2019-06-14 10:16:30','2019-06-14 10:16:30','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Wrist Testimonials','','publish','closed','closed','','wrist-testimonials','','','2020-12-11 21:31:37','2020-12-11 21:31:37','',1268,'https://www.drfields.com/?page_id=1719',0,'page','',0),(1720,8,'2019-06-14 10:16:30','2019-06-14 10:16:30','','Wrist Testimonials','','inherit','closed','closed','','1719-revision-v1','','','2019-06-14 10:16:30','2019-06-14 10:16:30','',1719,'https://www.drfields.com/uncategorized/1719-revision-v1/',0,'revision','',0),(1721,8,'2019-06-14 10:16:45','2019-06-14 10:16:45','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Sports Hernia Testimonials','','publish','closed','closed','','sports-hernia-testimonials','','','2019-09-27 20:56:26','2019-09-27 20:56:26','',1268,'https://www.drfields.com/?page_id=1721',0,'page','',0),(1722,8,'2019-06-14 10:16:45','2019-06-14 10:16:45','','Sports Hernia Testimonials','','inherit','closed','closed','','1721-revision-v1','','','2019-06-14 10:16:45','2019-06-14 10:16:45','',1721,'https://www.drfields.com/uncategorized/1721-revision-v1/',0,'revision','',0),(1723,8,'2019-06-14 10:17:02','2019-06-14 10:17:02','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Spanish Testimonials','','publish','closed','closed','','spanish-testimonials','','','2019-09-27 20:56:26','2019-09-27 20:56:26','',1268,'https://www.drfields.com/?page_id=1723',0,'page','',0),(1724,8,'2019-06-14 10:17:02','2019-06-14 10:17:02','','Spanish Testimonials','','inherit','closed','closed','','1723-revision-v1','','','2019-06-14 10:17:02','2019-06-14 10:17:02','',1723,'https://www.drfields.com/uncategorized/1723-revision-v1/',0,'revision','',0),(1725,8,'2019-06-14 10:17:16','2019-06-14 10:17:16','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Hamstring Testimonials','','publish','closed','closed','','hamstring-testimonials','','','2019-09-27 20:56:27','2019-09-27 20:56:27','',1268,'https://www.drfields.com/?page_id=1725',0,'page','',0),(1726,8,'2019-06-14 10:17:16','2019-06-14 10:17:16','','Hamstring Testimonials','','inherit','closed','closed','','1725-revision-v1','','','2019-06-14 10:17:16','2019-06-14 10:17:16','',1725,'https://www.drfields.com/uncategorized/1725-revision-v1/',0,'revision','',0),(1727,8,'2019-06-14 10:17:31','2019-06-14 10:17:31','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/Michael-Ganglion-Cyst-2.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Ganglion Cyst Testimonials','','publish','closed','closed','','ganglion-cyst-testimonials','','','2020-12-11 21:27:16','2020-12-11 21:27:16','',1268,'https://www.drfields.com/?page_id=1727',0,'page','',0),(1728,8,'2019-06-14 10:17:31','2019-06-14 10:17:31','','Ganglion Cyst Testimonials','','inherit','closed','closed','','1727-revision-v1','','','2019-06-14 10:17:31','2019-06-14 10:17:31','',1727,'https://www.drfields.com/uncategorized/1727-revision-v1/',0,'revision','',0),(1729,8,'2019-06-14 10:17:48','2019-06-14 10:17:48','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Headache Testimonials','','publish','closed','closed','','headache-testimonials','','','2020-12-11 21:27:51','2020-12-11 21:27:51','',1268,'https://www.drfields.com/?page_id=1729',0,'page','',0),(1730,8,'2019-06-14 10:17:48','2019-06-14 10:17:48','','Headache Testimonials','','inherit','closed','closed','','1729-revision-v1','','','2019-06-14 10:17:48','2019-06-14 10:17:48','',1729,'https://www.drfields.com/uncategorized/1729-revision-v1/',0,'revision','',0),(1732,8,'2019-06-14 10:21:03','2019-06-14 10:21:03','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignleft size-full wp-image-955\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc®</h4>\r\n\r\nPeter A. Fields, MD, DC, <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">The Athletic Doc®</a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n\r\n<h4>Director of OrthoRegen</h4>\r\n\r\nDr. Fields is the Director of <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">OrthoRegen</a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\" >Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\r\n\r\n<h4>Regenerative Medicine Expert</h4> \r\n\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\" >national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n\r\n<h4>Hackett-Hemwall Foundation Instructor</h4> \r\n\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.\r\n\r\n<h4>Prolotherapy Doctor</h4>\r\n\r\nDr. Fields is the leading expert in the field or <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h6>The Athletic Doc®</h6>\r\n\r\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"medimarvel\r\ngeled\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc® has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong>\r\n</div>','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2019-06-14 10:21:03','2019-06-14 10:21:03','',216,'https://www.drfields.com/uncategorized/216-revision-v1/',0,'revision','',0),(1733,8,'2019-06-14 10:22:03','2019-06-14 10:22:03','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignleft size-full wp-image-955\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc®</h4>\r\n\r\nPeter A. Fields, MD, DC, <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">The Athletic Doc®</a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n\r\n<h4>Director of OrthoRegen</h4>\r\n\r\nDr. Fields is the Director of <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">OrthoRegen</a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\" >Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\r\n\r\n<h4>Regenerative Medicine Expert</h4> \r\n\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\" >national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n\r\n<h4>Hackett-Hemwall Foundation Instructor</h4> \r\n\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.\r\n\r\n<h4>Prolotherapy Doctor</h4>\r\n\r\nDr. Fields is the leading expert in the field or <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h6>The Athletic Doc®</h6>\r\n\r\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"medimarvel\r\ngeled\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc® has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div video_left\" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong>\r\n</div>','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2019-06-14 10:22:03','2019-06-14 10:22:03','',216,'https://www.drfields.com/uncategorized/216-revision-v1/',0,'revision','',0),(1734,8,'2019-06-14 10:24:54','2019-06-14 10:24:54','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignleft size-full wp-image-955\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc®</h4>\r\n\r\nPeter A. Fields, MD, DC, <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">The Athletic Doc®</a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n\r\n<h4>Director of OrthoRegen</h4>\r\n\r\nDr. Fields is the Director of <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">OrthoRegen</a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\" >Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\r\n\r\n<h4>Regenerative Medicine Expert</h4> \r\n\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\" >national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n\r\n<h4>Hackett-Hemwall Foundation Instructor</h4> \r\n\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.\r\n\r\n<h4>Prolotherapy Doctor</h4>\r\n\r\nDr. Fields is the leading expert in the field or <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h6>The Athletic Doc®</h6>\r\n\r\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"medimarvel\r\ngeled\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc® has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div\" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong>\r\n</div>','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2019-06-14 10:24:54','2019-06-14 10:24:54','',216,'https://www.drfields.com/uncategorized/216-revision-v1/',0,'revision','',0),(1735,8,'2019-06-14 10:26:17','2019-06-14 10:26:17','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignleft size-full wp-image-955\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc®</h4>\r\n\r\nPeter A. Fields, MD, DC, <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">The Athletic Doc®</a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n\r\n<h4>Director of OrthoRegen</h4>\r\n\r\nDr. Fields is the Director of <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">OrthoRegen</a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\" >Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\r\n\r\n<h4>Regenerative Medicine Expert</h4> \r\n\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\" >national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n\r\n<h4>Hackett-Hemwall Foundation Instructor</h4> \r\n\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.\r\n\r\n<h4>Prolotherapy Doctor</h4>\r\n\r\nDr. Fields is the leading expert in the field or <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h6>The Athletic Doc®</h6>\r\n\r\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc® has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div\" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong>\r\n</div>','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2019-06-14 10:26:17','2019-06-14 10:26:17','',216,'https://www.drfields.com/uncategorized/216-revision-v1/',0,'revision','',0),(1736,8,'2019-06-14 10:27:55','2019-06-14 10:27:55','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignleft size-full wp-image-955\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc®</h4>\r\n\r\nPeter A. Fields, MD, DC, <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">The Athletic Doc®</a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n\r\n<h4>Director of OrthoRegen</h4>\r\n\r\nDr. Fields is the Director of <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">OrthoRegen</a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\" >Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\r\n\r\n<h4>Regenerative Medicine Expert</h4> \r\n\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\" >national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n\r\n<h4>Hackett-Hemwall Foundation Instructor</h4> \r\n\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.\r\n\r\n<h4>Prolotherapy Doctor</h4>\r\n\r\nDr. Fields is the leading expert in the field or <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h6>The Athletic Doc®</h6>\r\n\r\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc® has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"text-center\" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong>\r\n</div>','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2019-06-14 10:27:55','2019-06-14 10:27:55','',216,'https://www.drfields.com/uncategorized/216-revision-v1/',0,'revision','',0),(1737,8,'2019-06-14 10:30:03','2019-06-14 10:30:03','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" class=\"alignleft size-full wp-image-1685\" /><h4>Prolotherapy Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\r\n\r\n<h4>What is a Prolotherapy Doctor?</h4>\r\n\r\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\r\n\r\n<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h4>How Prolotherapy Treatment Works</h4>\r\n\r\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">OrthoRegen</a>\r\n\r\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\r\n\r\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\r\n\r\n<h4>What Conditions Can Dr. Fields  Help You With:</h4>\r\n\r\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\r\n\r\n<ul><li><strong>Chronic Conditions like…</strong></li>\r\n<ul><li>Arthritis Pain</li>\r\n        <li>Sciatica Pain</li>\r\n        <li>Pinched Nerves</li>\r\n        <li>Athletic Injuries</li>\r\n        <li>Tension Headaches</li>\r\n        <li>Migraine Headaches</li>\r\n       <li>Herniated Discs</li>\r\n        <li>Degenerative Discs</li>\r\n        <li>TMJ syndrome</li>\r\n        <li>Weak Joints</li>\r\n        <li>Sore Muscles</li>\r\n</ul>\r\n    <li><strong>Knee Injuries:</strong></li>\r\n        <ul><li>ACL Tear</li>\r\n        <li>Runners\' Knee</li>\r\n        <li>Radial Meniscus Tear</li>\r\n        <li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hip Injuries:</strong></li>\r\n        <ul><li>Torn Labrum</li>\r\n        <li>Acetabular labrum Tear</li>\r\n        <li>Labral Tear</li>\r\n        <li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Neck Injuries:</strong></li>\r\n        <ul><li>Whiplash</li>\r\n       <li>TMJ Syndrome</li>\r\n        <li>Migraine Headaches</li>\r\n        <li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Shoulder Injuries:</strong></li>\r\n        <ul><li>Labral Tear</li>\r\n        <li>Rotator Cuff Tear</li>\r\n        <li>Swimmers Shoulder</li>\r\n        <li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Back Injuries:</strong></li>\r\n        <ul><li>Herniated discs</li>\r\n        <li>Sacroiliac injury</li>\r\n        <li>Lower back pain</li>\r\n        <li>See a complete list of Back Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Elbow Injuries:</strong></li>\r\n        <ul><li>Tendonitis</li>\r\n        <li>Tennis elbow</li>\r\n        <li>Golfers elbow</li>\r\n        <li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Foot and Ankle Injuries:</strong></li>\r\n        <ul><li>Achilles tendinopathy</li>\r\n        <li>Ankle Sprains</li>\r\n        <li>Plantar Fasciitis</li>\r\n        <li>See a complete list of Foot  Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hand Injuries:</strong></li>\r\n       <ul><li>Carpal tunnel</li>\r\n        <li>Overuse injury</li>\r\n        <li>Finger pain</li>\r\n        <li>See a complete list of Hand  Injuries Treated with Prolotherapy here.</li></ul>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\n\r\nCall <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">310-455-8242</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"#\" rel=\"noopener noreferrer\" target=\"_blank\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n  <a href=\"#\">Schedule Your Appointment Today! </a>','Prolotherapy Doctor','','inherit','closed','closed','','229-revision-v1','','','2019-06-14 10:30:03','2019-06-14 10:30:03','',229,'https://www.drfields.com/uncategorized/229-revision-v1/',0,'revision','',0),(1738,8,'2019-06-14 10:31:51','2019-06-14 10:31:51','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" class=\"alignleft size-full wp-image-1685\" /><h4>Prolotherapy Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\r\n\r\n<h4>What is a Prolotherapy Doctor?</h4>\r\n\r\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\r\n\r\n<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h4>How Prolotherapy Treatment Works</h4>\r\n\r\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"https://www.drfields.com\" rel=\"noopener noreferrer\" >OrthoRegen</a>\r\n\r\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\r\n\r\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\r\n\r\n<h4>What Conditions Can Dr. Fields  Help You With:</h4>\r\n\r\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\r\n\r\n<ul><li><strong>Chronic Conditions like…</strong></li>\r\n<ul><li>Arthritis Pain</li>\r\n        <li>Sciatica Pain</li>\r\n        <li>Pinched Nerves</li>\r\n        <li>Athletic Injuries</li>\r\n        <li>Tension Headaches</li>\r\n        <li>Migraine Headaches</li>\r\n       <li>Herniated Discs</li>\r\n        <li>Degenerative Discs</li>\r\n        <li>TMJ syndrome</li>\r\n        <li>Weak Joints</li>\r\n        <li>Sore Muscles</li>\r\n</ul>\r\n    <li><strong>Knee Injuries:</strong></li>\r\n        <ul><li>ACL Tear</li>\r\n        <li>Runners\' Knee</li>\r\n        <li>Radial Meniscus Tear</li>\r\n        <li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hip Injuries:</strong></li>\r\n        <ul><li>Torn Labrum</li>\r\n        <li>Acetabular labrum Tear</li>\r\n        <li>Labral Tear</li>\r\n        <li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Neck Injuries:</strong></li>\r\n        <ul><li>Whiplash</li>\r\n       <li>TMJ Syndrome</li>\r\n        <li>Migraine Headaches</li>\r\n        <li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Shoulder Injuries:</strong></li>\r\n        <ul><li>Labral Tear</li>\r\n        <li>Rotator Cuff Tear</li>\r\n        <li>Swimmers Shoulder</li>\r\n        <li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Back Injuries:</strong></li>\r\n        <ul><li>Herniated discs</li>\r\n        <li>Sacroiliac injury</li>\r\n        <li>Lower back pain</li>\r\n        <li>See a complete list of Back Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Elbow Injuries:</strong></li>\r\n        <ul><li>Tendonitis</li>\r\n        <li>Tennis elbow</li>\r\n        <li>Golfers elbow</li>\r\n        <li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Foot and Ankle Injuries:</strong></li>\r\n        <ul><li>Achilles tendinopathy</li>\r\n        <li>Ankle Sprains</li>\r\n        <li>Plantar Fasciitis</li>\r\n        <li>See a complete list of Foot  Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hand Injuries:</strong></li>\r\n       <ul><li>Carpal tunnel</li>\r\n        <li>Overuse injury</li>\r\n        <li>Finger pain</li>\r\n        <li>See a complete list of Hand  Injuries Treated with Prolotherapy here.</li></ul>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\n\r\nCall <a href=\"tel:310-455-8242\" rel=\"noopener noreferrer\" >310-455-8242</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\" >contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Doctor','','inherit','closed','closed','','229-revision-v1','','','2019-06-14 10:31:51','2019-06-14 10:31:51','',229,'https://www.drfields.com/uncategorized/229-revision-v1/',0,'revision','',0),(1749,8,'2019-06-14 10:38:34','2019-06-14 10:38:34','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" class=\"alignleft size-full wp-image-1685\" /><h4>PRP Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is a PRP Doctor in Los Angeles and the founder of OrthoRegen. Dr. Fields is a leading expert in using (PRP) Platelet Rich Plasma therapy to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world. Dr. Fields help people avoid unnecessary orthopedic surgeries whether arthroscopic or full surgery.\r\n\r\n<h4>What is a PRP Doctor?</h4>\r\n\r\nA PRP Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. PRP Doctors like Dr. Fields use Platelet Rich Plasma Injections that help accelerate the normal healing process. Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of PRP Regenerative Treatments.\r\n\r\n<h4>What Does PRP stand for?</h4>\r\n\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as platelets, white blood cells, and red cells. The Harvest method that Dr. Fields uses concentrates the platelets 7-10 times of what is generally found in blood. Other systems concentrate them, but to a lesser extent.\r\n\r\n<h4>What is PRP Treatment?</h4>\r\n\r\nPRP treatment, as used in regenerative orthopedics, is a non-surgical healing treatment for healing soft tissue performed by a PRP Doctor. Dr. Fields makes precise injections of your own concentrated blood (PRP) into the affected areas to promote healing of musculoskeletal problems. Blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site.\r\n\r\n<h4>Is PRP Treatment Safe?</h4>\r\n\r\nPRP treatment is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities thoroughly with patients during the pre-treatment consultation.\r\nWhat Does a PRP Doctor Treat?\r\n\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that Dr. Fields treats. PRP has also been effective in treating arthritis, though more severe cases get better results with Dr. Fields’ Stem Cell treatments.\r\n\r\nDr. Fields has had great success in treating chronic pain and sports injuries including:\r\n<ul>\r\n    <li><strong>Knee Injuries:</strong> ACL, MCL LCL, Meniscus, Arthritis, Kneecap Instability</li>\r\n    See a complete list of Knee Injuries Treated with Prolotherapy here\r\n    <li><strong>Elbow Injuries: Tennis Elbow, Medial Epicondylitis,Tendonitis</li>\r\n    See a complete list of Elbow Injuries Treated with Prolotherapy here.\r\n    <li><strong>Shoulder Injuries: Rotator Cuff Tears, Labrum Tears, Tenositis</li>\r\n    See a complete list of Shoulder Injuries Treated with Prolotherapy here.\r\n    <li><strong>Back Injuries: Arthritis, Facet Joints, Sacro-Iliac dysfunction</li>\r\n    See a complete list of Back Injuries Treated with Prolotherapy here.\r\n    <li><strong>Hip Injuries: Tenositis, Bursitis,Labrum</li>\r\n    See a complete list of Hip Injuries Treated with Prolotherapy here.\r\n    <li><strong>Foot/Ankle Injuries: Ankle Sprains, Arthritis, Achilles Dysfunction, Tendonitis</li>\r\n    See a complete list of Foot/Ankle Injuries Treated with Prolotherapy here.\r\n    <li><strong>Hand/Wrist/ Injuries: Finger/Joint Tendinitis, Ligament Tears, Arthritis, Carpal tunnel</li>\r\n    See a complete list of Hand/Wrist Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\n\r\nCall <a href=\"tel:310-455-8242\" rel=\"noopener noreferrer\" >310-455-8242</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\" >contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','PRP Doctor','','inherit','closed','closed','','266-revision-v1','','','2019-06-14 10:38:34','2019-06-14 10:38:34','',266,'https://www.drfields.com/uncategorized/266-revision-v1/',0,'revision','',0),(1750,8,'2022-12-02 06:01:38','2019-06-14 10:40:05',' ','','','publish','closed','closed','','1750','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=1750',5,'nav_menu_item','',0),(1751,8,'2022-12-02 06:01:38','2019-06-14 10:40:05',' ','','','publish','closed','closed','','1751','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=1751',7,'nav_menu_item','',0),(1752,8,'2019-06-14 10:41:10','2019-06-14 10:41:10','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" class=\"alignleft size-full wp-image-1685\" /><h4>Stem Cell Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is Stem Cell Doctor in Los Angeles and the founder of OrthoRegen. Dr. Fields is a leading expert in using Stem Cell Treatments for joints and Spine Regeneration. Dr. Fields help people avoid unnecessary orthopaedic surgeries whether full surgery or arthroscopic procedure. Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of Stem Cell  Regenerative Treatments.\r\n\r\n<h4>What is a Stem Cell Doctor?</h4>\r\n\r\nA Stem Cell Doctor provides regenerative orthopaedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields uses Stem Cell therapy to regenerate body tissue. Regenerative medicine is growing in popularity in the medical world as an alternative to invasive orthopaedic surgeries including joint replacement. The remarkable thing about Stem Cells is that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example,  cartilage cells or meniscus cells.\r\n\r\n<h4>What Conditions Can a Stem Cell Doctor Help?</h4>\r\n\r\nDr. Fields treats weakened, torn or damaged ligaments, as well as tendons, torn cartilage, muscle tears, menisci or labrums. Stem Cell treatment has also been effective in treating severe arthritis conditions.\r\n\r\n<strong>Dr. Fields has had great success in treating joint conditions with Stem Cell Therapy including:</strong>\r\n<ul>\r\n   <li>Bone-on-Bone</li>\r\n    <li>Severe Arthritis</li>\r\n    <li>Degenerated Joint</li>\r\n    <li>Torn, Worn or Missing Cartilage</li></ul>\r\n\r\nSee more about Stem Cell Treatment.\r\n\r\n<h4>What is Stem Cell Treatment?</h4>\r\n\r\nStem Cell treatment is an injection of stem cells into the joint or affected area to promote healing. This procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries.\r\n\r\nDr. Fields  Stem Cell technique one of the four Gold Standards Regenerative Orthopedics procedures to help you avoid invasive surgery.\r\n\r\nStem Cell Treatment, as used in regenerative orthopaedics, is a non-surgical healing treatment for healing soft tissue performed by a Stem Cell Doctor. Stem Cell treatment is the transplantation of autologous culture-expanded bone marrow mesenchymal stem cells in platelet rich-fibrin glue.\r\n\r\n<h4>Is Stem Cell Treatment Safe?</h4>\r\n\r\nStem Cell treatment is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. The Stem Cell Doctor will discuss these possibilities fully with patients during the pre-treatment consultation. This is only recommended after a very thorough history and physical exam.\r\n\r\n<h4>Are You A Candidate for Stem Cell Treatment?</h4>\r\n\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s shoulder replacement surgery, hip replacement surgery, knee replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to bone-on-bone, arthritis or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nSpine Surgery and Joint Replacement Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, long recovery times, potential (dangerous) complications, and the need to have the procedure redone at some point.\r\n\r\nMake an appointment with our Stem Cell Doctor for an evaluation to see if you are a good candidate for Dr. Fields Gold Standard Stem Cell Treatment for - Spine and Joints. Call <a href=\"#\">310-455-8242</a> to Schedule Your Appointment Today!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Stem Cell Doctor','','inherit','closed','closed','','292-revision-v1','','','2019-06-14 10:41:10','2019-06-14 10:41:10','',292,'https://www.drfields.com/uncategorized/292-revision-v1/',0,'revision','',0),(1753,8,'2019-06-14 12:44:51','2019-06-14 12:44:51','<strong>AGREEMENT BETWEEN USER AND Dr. Fields</strong>\r\n\r\nThe Dr. Fields Web Site is comprised of various Web pages operated by Dr. Fields.\r\n\r\nThe Dr. Fields Web Site is offered to you conditioned on your acceptance without modification of the terms, conditions, and notices contained herein. Your use of the Dr. Fields Web Site constitutes your agreement to all such terms, conditions, and notices.\r\n\r\n<strong>MODIFICATION OF THESE TERMS OF USE</strong>\r\n\r\nDr. Fields reserves the right to change the terms, conditions, and notices under which the Dr. Fields Web Site is offered, including but not limited to the charges associated with the use of the Dr. Fields Web Site.\r\n\r\n<strong>LINKS TO THIRD PARTY SITES</strong>\r\n\r\nThe Dr. Fields Web Site may contain links to other Web Sites (\"Linked Sites\"). The Linked Sites are not under the control of Dr. Fields and Dr. Fields is not responsible for the contents of any Linked Site, including without limitation any link contained in a Linked Site, or any changes or updates to a Linked Site. Dr. Fields is not responsible for webcasting or any other form of transmission received from any Linked Site. Dr. Fields is providing these links to you only as a convenience, and the inclusion of any link does not imply endorsement by Dr. Fields of the site or any association with its operators.\r\n\r\n<strong>NO UNLAWFUL OR PROHIBITED USE</strong>\r\n\r\nAs a condition of your use of the Dr. Fields Web Site, you warrant to Dr. Fields that you will not use the Dr. Fields Web Site for any purpose that is unlawful or prohibited by these terms, conditions, and notices. You may not use the Dr. Fields Web Site in any manner which could damage, disable, overburden, or impair the Dr. Fields Web Site or interfere with any other party\'s use and enjoyment of the Dr. Fields Web Site. You may not obtain or attempt to obtain any materials or information through any means not intentionally made available or provided for through the Dr. Fields Web Sites.\r\n\r\n<strong>USE OF COMMUNICATION SERVICES</strong>\r\n\r\nThe Dr. Fields Web Site may contain bulletin board services, chat areas, news groups, forums, communities, personal web pages, calendars, and/or other message or communication facilities designed to enable you to communicate with the public at large or with a group (collectively, \"Communication Services\"), you agree to use the Communication Services only to post, send and receive messages and material that are proper and related to the particular Communication Service. By way of example, and not as a limitation, you agree that when using a Communication Service, you will not:\r\n<ul>\r\n 	<li>Defame, abuse, harass, stalk, threaten or otherwise violate the legal rights (such as rights of privacy and publicity) of others.</li>\r\n 	<li>Publish, post, upload, distribute or disseminate any inappropriate, profane, defamatory, infringing, obscene, indecent or unlawful topic, name, material or information.</li>\r\n 	<li>Upload files that contain software or other material protected by intellectual property laws (or by rights of privacy of publicity) unless you own or control the rights thereto or have received all necessary consents.</li>\r\n 	<li>Upload files that contain viruses, corrupted files, or any other similar software or programs that may damage the operation of another\'s computer.</li>\r\n 	<li>Advertise or offer to sell or buy any goods or services for any business purpose, unless such Communication Service specifically allows such messages.</li>\r\n 	<li>Conduct or forward surveys, contests, pyramid schemes or chain letters.</li>\r\n 	<li>Download any file posted by another user of a Communication Service that you know, or reasonably should know, cannot be legally distributed in such manner.</li>\r\n 	<li>Falsify or delete any author attributions, legal or other proper notices or proprietary designations or labels of the origin or source of software or other material contained in a file that is uploaded.</li>\r\n 	<li>Restrict or inhibit any other user from using and enjoying the Communication Services.</li>\r\n 	<li>Violate any code of conduct or other guidelines which may be applicable for any particular Communication Service.</li>\r\n 	<li>Harvest or otherwise collect information about others, including e-mail addresses, without their consent.</li>\r\n 	<li>Violate any applicable laws or regulations.</li>\r\n</ul>\r\nDr. Fields has no obligation to monitor the Communication Services. However, Dr. Fields reserves the right to review materials posted to a Communication Service and to remove any materials in its sole discretion. Dr. Fields reserves the right to terminate your access to any or all of the Communication Services at any time without notice for any reason whatsoever.\r\n\r\nDr. Fields reserves the right at all times to disclose any information as necessary to satisfy any applicable law, regulation, legal process or governmental request, or to edit, refuse to post or to remove any information or materials, in whole or in part, in Dr. Fields\'s sole discretion.\r\n\r\nAlways use caution when giving out any personally identifying information about yourself or your children in any Communication Service. Dr. Fields does not control or endorse the content, messages or information found in any Communication Service and, therefore, Dr. Fields specifically disclaims any liability with regard to the Communication Services and any actions resulting from your participation in any Communication Service. Managers and hosts are not authorized Dr. Fields spokespersons, and their views do not necessarily reflect those of Dr. Fields.\r\n\r\nMaterials uploaded to a Communication Service may be subject to posted limitations on usage, reproduction and/or dissemination. You are responsible for adhering to such limitations if you download the materials.\r\n\r\n<strong>MATERIALS PROVIDED TO Dr. Fields OR POSTED AT ANY Dr. Fields WEB SITE</strong>\r\nDr. Fields does not claim ownership of the materials you provide to Dr. Fields (including feedback and suggestions) or post, upload, input or submit to any Dr. Fields Web Site or its associated services (collectively \"Submissions\"). However, by posting, uploading, inputting, providing or submitting your Submission you are granting Dr. Fields, its affiliated companies and necessary sublicensees permission to use your Submission in connection with the operation of their Internet businesses including, without limitation, the rights to: copy, distribute, transmit, publicly display, publicly perform, reproduce, edit, translate and reformat your Submission; and to publish your name in connection with your Submission.\r\n\r\nNo compensation will be paid with respect to the use of your Submission, as provided herein. Dr. Fields is under no obligation to post or use any Submission you may provide and may remove any Submission at any time in Dr. Fields\'s sole discretion.\r\n\r\nBy posting, uploading, inputting, providing or submitting your Submission you warrant and represent that you own or otherwise control all of the rights to your Submission as described in this section including, without limitation, all the rights necessary for you to provide, post, upload, input or submit the Submissions.\r\n\r\n<strong>LIABILITY DISCLAIMER</strong>\r\n\r\nTHE INFORMATION, SOFTWARE, PRODUCTS, AND SERVICES INCLUDED IN OR AVAILABLE THROUGH THE Dr. Fields WEB SITE MAY INCLUDE INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION HEREIN. Dr. Fields AND/OR ITS SUPPLIERS MAY MAKE IMPROVEMENTS AND/OR CHANGES IN THE Dr. Fields WEB SITE AT ANY TIME. ADVICE RECEIVED VIA THE Dr. Fields WEB SITE SHOULD NOT BE RELIED UPON FOR PERSONAL, MEDICAL, LEGAL OR FINANCIAL DECISIONS AND YOU SHOULD CONSULT AN APPROPRIATE PROFESSIONAL FOR SPECIFIC ADVICE TAILORED TO YOUR SITUATION.\r\n\r\nDr. Fields AND/OR ITS SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY, RELIABILITY, AVAILABILITY, TIMELINESS, AND ACCURACY OF THE INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS CONTAINED ON THE Dr. Fields WEB SITE FOR ANY PURPOSE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, ALL SUCH INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OR CONDITION OF ANY KIND. Dr. Fields AND/OR ITS SUPPLIERS HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THIS INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS, INCLUDING ALL IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT.\r\n\r\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL Dr. Fields AND/OR ITS SUPPLIERS BE LIABLE FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, SPECIAL, CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF USE, DATA OR PROFITS, ARISING OUT OF OR IN ANY WAY CONNECTED WITH THE USE OR PERFORMANCE OF THE Dr. Fields WEB SITE, WITH THE DELAY OR INABILITY TO USE THE Dr. Fields WEB SITE OR RELATED SERVICES, THE PROVISION OF OR FAILURE TO PROVIDE SERVICES, OR FOR ANY INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS OBTAINED THROUGH THE Dr. Fields WEB SITE, OR OTHERWISE ARISING OUT OF THE USE OF THE Dr. Fields WEB SITE, WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, EVEN IF Dr. Fields OR ANY OF ITS SUPPLIERS HAS BEEN ADVISED OF THE POSSIBILITY OF DAMAGES. BECAUSE SOME STATES/JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU. IF YOU ARE DISSATISFIED WITH ANY PORTION OF THE Dr. Fields WEB SITE, OR WITH ANY OF THESE TERMS OF USE, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE USING THE Dr. Fields WEB SITE.\r\n\r\n<strong>SERVICE </strong>CONTACT :<strong> eugene@kspsystems.com</strong>\r\n\r\n<strong>TERMINATION/ACCESS RESTRICTION</strong>\r\n\r\nDr. Fields reserves the right, in its sole discretion, to terminate your access to the Dr. Fields Web Site and the related services or any portion thereof at any time, without notice. GENERAL To the maximum extent permitted by law, this agreement is governed by the laws of the State of Washington, U.S.A. and you hereby consent to the exclusive jurisdiction and venue of courts in San Mateo County, California, U.S.A. in all disputes arising out of or relating to the use of the Dr. Fields Web Site. Use of the Dr. Fields Web Site is unauthorized in any jurisdiction that does not give effect to all provisions of these terms and conditions, including without limitation this paragraph. You agree that no joint venture, partnership, employment, or agency relationship exists between you and Dr. Fields as a result of this agreement or use of the Dr. Fields Web Site. Dr. Fields\'s performance of this agreement is subject to existing laws and legal process, and nothing contained in this agreement is in derogation of Dr. Fields\'s right to comply with governmental, court and law enforcement requests or requirements relating to your use of the Dr. Fields Web Site or information provided to or gathered by Dr. Fields with respect to such use. If any part of this agreement is determined to be invalid or unenforceable pursuant to applicable law including, but not limited to, the warranty disclaimers and liability limitations set forth above, then the invalid or unenforceable provision will be deemed superseded by a valid, enforceable provision that most closely matches the intent of the original provision and the remainder of the agreement shall continue in effect. Unless otherwise specified herein, this agreement constitutes the entire agreement between the user and Dr. Fields with respect to the Dr. Fields Web Site and it supersedes all prior or contemporaneous communications and proposals, whether electronic, oral or written, between the user and Dr. Fields with respect to the Dr. Fields Web Site. A printed version of this agreement and of any notice given in electronic form shall be admissible in judicial or administrative proceedings based upon or relating to this agreement to the same extent an d subject to the same conditions as other business documents and records originally generated and maintained in printed form. It is the express wish to the parties that this agreement and all related documents be drawn up in English.\r\n\r\n<strong>COPYRIGHT AND TRADEMARK NOTICES:</strong>\r\n\r\nAll contents of the Dr. Fields Web Site are: ©2019 OrthoRegen and/or its suppliers. All rights reserved.\r\n\r\n<strong>TRADEMARKS</strong>\r\n\r\nThe names of actual companies and products mentioned herein may be the trademarks of their respective owners.\r\n\r\nThe example companies, organizations, products, people and events depicted herein are fictitious. No association with any real company, organization, product, person, or event is intended or should be inferred.\r\n\r\nAny rights not expressly granted herein are reserved.\r\n\r\n<strong>NOTICES AND PROCEDURE FOR MAKING CLAIMS OF COPYRIGHT INFRINGEMENT</strong>\r\n\r\nPursuant to Title 17, United States Code, Section 512(c)(2), notifications of claimed copyright infringement under United States copyright law should be sent to Service Provider\'s Designated Agent. ALL INQUIRIES NOT RELEVANT TO THE FOLLOWING PROCEDURE WILL RECEIVE NO RESPONSE. See Notice and Procedure for Making Claims of Copyright Infringement.','Terms','','inherit','closed','closed','','977-revision-v1','','','2019-06-14 12:44:51','2019-06-14 12:44:51','',977,'https://www.drfields.com/uncategorized/977-revision-v1/',0,'revision','',0),(1754,8,'2019-06-14 12:45:16','2019-06-14 12:45:16','<div id=\"dnn_ContentPane\" class=\"span12 contentPane\">\r\n<div class=\"DnnModule DnnModule- DnnModule--1 DnnModule-Admin\">\r\n<div class=\"DNNContainer_noTitle\">\r\n<div id=\"dnn_ctr_ContentPane\">\r\n<div id=\"dnn_ctr_ModuleContent\" class=\"DNNModuleContent ModC\">\r\n<div class=\"dnnPrivacy dnnClear\">\r\n<div align=\"left\">\r\n<p><span id=\"dnn_ctr_Privacy_lblPrivacy\">Dr. Fields</span> is committed to protecting your privacy and developing technology that gives you the most powerful and safe online experience. This Statement of Privacy applies to the Dr. Fields site and governs data collection and usage. By using the Dr. Fields site, you consent to the data practices described in this statement.</p>\r\n<p><span class=\"SubHead\">Collection of your Personal Information</span></p>\r\n<p>Dr. Fields collects personally identifiable information, such as your email address, name, home or work address or telephone number. Dr. Fields also collects anonymous demographic information, which is not unique to you, such as your ZIP code, age, gender, preferences, interests and favorites.</p>\r\n<p>There is also information about your computer hardware and software that is automatically collected by Dr. Fields. This information can include: your IP address, browser type, domain names, access times and referring website addresses. This information is used by Dr. Fields for the operation of the service, to maintain quality of the service, and to provide general statistics regarding use of the Dr. Fields site.</p>\r\n<p>Please keep in mind that if you directly disclose personally identifiable information or personally sensitive data through Dr. Fields public message boards, this information may be collected and used by others. Note: Dr. Fields does not read any of your private online communications.</p>\r\n<p>Dr. Fields encourages you to review the privacy statements of Web sites you choose to link to from Dr. Fields so that you can understand how those Web sites collect, use and share your information. Dr. Fields is not responsible for the privacy statements or other content on Web sites outside of the Dr. Fields and Dr. Fields family of Web sites.</p>\r\n<p><span class=\"SubHead\">Use of your Personal Information</span></p>\r\n<p>Dr. Fields collects and uses your personal information to operate the Dr. Fields Web site and deliver the services you have requested. Dr. Fields also uses your personally identifiable information to inform you of other products or services available from Dr. Fields and its affiliates. Dr. Fields may also contact you via surveys to conduct research about your opinion of current services or of potential new services that may be offered.</p>\r\n<p>Dr. Fields does not sell, rent or lease its customer lists to third parties. Dr. Fields may, from time to time, contact you on behalf of external business partners about a particular offering that may be of interest to you. In those cases, your unique personally identifiable information (e-mail, name, address, telephone number) is not transferred to the third party. In addition, Dr. Fields may share data with trusted partners to help us perform statistical analysis, send you email or postal mail, provide customer support, or arrange for deliveries. All such third parties are prohibited from using your personal information except to provide these services to Dr. Fields, and they are required to maintain the confidentiality of your information.</p>\r\n<p>Dr. Fields does not use or disclose sensitive personal information, such as race, religion, or political affiliations, without your explicit consent.</p>\r\n<p>Dr. Fields keeps track of the Web sites and pages our customers visit within Dr. Fields, in order to determine what Dr. Fields services are the most popular. This data is used to deliver customized content and advertising within Dr. Fields to customers whose behavior indicates that they are interested in a particular subject area.</p>\r\n<p>Dr. Fields Web sites will disclose your personal information, without notice, only if required to do so by law or in the good faith belief that such action is necessary to: (a) conform to the edicts of the law or comply with legal process served on Dr. Fields or the site; (b) protect and defend the rights or property of Dr. Fields; and, (c) act under exigent circumstances to protect the personal safety of users of Dr. Fields, or the public.</p>\r\n<p><span class=\"SubHead\">Use of Cookies</span></p>\r\n<p>The Dr. Fields Web site use \"cookies\" to help you personalize your online experience. A cookie is a text file that is placed on your hard disk by a Web page server. Cookies cannot be used to run programs or deliver viruses to your computer. Cookies are uniquely assigned to you, and can only be read by a web server in the domain that issued the cookie to you.</p>\r\n<p>One of the primary purposes of cookies is to provide a convenience feature to save you time. The purpose of a cookie is to tell the Web server that you have returned to a specific page. For example, if you personalize Dr. Fields pages, or register with Dr. Fields site or services, a cookie helps Dr. Fields to recall your specific information on subsequent visits. This simplifies the process of recording your personal information, such as billing addresses, shipping addresses, and so on. When you return to the same Dr. Fields Web site, the information you previously provided can be retrieved, so you can easily use the Dr. Fields features that you customized.</p>\r\n<p>You have the ability to accept or decline cookies. Most Web browsers automatically accept cookies, but you can usually modify your browser setting to decline cookies if you prefer. If you choose to decline cookies, you may not be able to fully experience the interactive features of the Dr. Fields services or Web sites you visit.</p>\r\n<p><span class=\"SubHead\">Security of your Personal Information</span></p>\r\n<p>Dr. Fields secures your personal information from unauthorized access, use or disclosure. Dr. Fields secures the personally identifiable information you provide on computer servers in a controlled, secure environment, protected from unauthorized access, use or disclosure. When personal information (such as a credit card number) is transmitted to other Web sites, it is protected through the use of encryption, such as the Secure Socket Layer (SSL) protocol.</p>\r\n<p><span class=\"SubHead\">Changes to this Statement</span></p>\r\n<p>Dr. Fields will occasionally update this Statement of Privacy to reflect company and customer feedback. Dr. Fields encourages you to periodically review this Statement to be informed of how Dr. Fields is protecting your information.</p>\r\n<p><span class=\"SubHead\">Contact Information</span></p>\r\n<p>Dr. Fields welcomes your comments regarding this Statement of Privacy. If you believe that Dr. Fields has not adhered to this Statement, please contact Dr. Fields at <a>eugene@kspsystems.com</a>. We will use commercially reasonable efforts to promptly determine and remedy the problem.</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"> </div>\r\n</div>\r\n</div>\r\n</div>','Privacy','','inherit','closed','closed','','3-revision-v1','','','2019-06-14 12:45:16','2019-06-14 12:45:16','',3,'https://www.drfields.com/uncategorized/3-revision-v1/',0,'revision','',0),(1755,8,'2019-06-14 12:47:03','2019-06-14 12:47:03','<div id=\"dnn_ContentPane\" class=\"span12 contentPane\">\n<div class=\"DnnModule DnnModule- DnnModule--1 DnnModule-Admin\">\n<div class=\"DNNContainer_noTitle\">\n<div id=\"dnn_ctr_ContentPane\">\n<div id=\"dnn_ctr_ModuleContent\" class=\"DNNModuleContent ModC\">\n<div class=\"dnnPrivacy dnnClear\">\n<div align=\"left\">\n<p><span id=\"dnn_ctr_Privacy_lblPrivacy\">Dr. Fields</span> is committed to protecting your privacy and developing technology that gives you the most powerful and safe online experience. This Statement of Privacy applies to the Dr. Fields site and governs data collection and usage. By using the Dr. Fields site, you consent to the data practices described in this statement.</p>\n<p><span class=\"SubHead\">Collection of your Personal Information</span></p>\n<p>Dr. Fields collects personally identifiable information, such as your email address, name, home or work address or telephone number. Dr. Fields also collects anonymous demographic information, which is not unique to you, such as your ZIP code, age, gender, preferences, interests and favorites.</p>\n<p>There is also information about your computer hardware and software that is automatically collected by Dr. Fields. This information can include: your IP address, browser type, domain names, access times and referring website addresses. This information is used by Dr. Fields for the operation of the service, to maintain quality of the service, and to provide general statistics regarding use of the Dr. Fields site.</p>\n<p>Please keep in mind that if you directly disclose personally identifiable information or personally sensitive data through Dr. Fields public message boards, this information may be collected and used by others. Note: Dr. Fields does not read any of your private online communications.</p>\n\n<p>Dr. Fields encourages you to review the privacy statements of Web sites you choose to link to from Dr. Fields so that you can understand how those Web sites collect, use and share your information. Dr. Fields is not responsible for the privacy statements or other content on Web sites outside of the Dr. Fields and Dr. Fields family of Web sites.</p>\n\n<p><span class=\"SubHead\">Use of your Personal Information</span></p>\n\n<p>Dr. Fields collects and uses your personal information to operate the Dr. Fields Web site and deliver the services you have requested. Dr. Fields also uses your personally identifiable information to inform you of other products or services available from Dr. Fields and its affiliates. Dr. Fields may also contact you via surveys to conduct research about your opinion of current services or of potential new services that may be offered.</p>\n\n<p>Dr. Fields does not sell, rent or lease its customer lists to third parties. Dr. Fields may, from time to time, contact you on behalf of external business partners about a particular offering that may be of interest to you. In those cases, your unique personally identifiable information (e-mail, name, address, telephone number) is not transferred to the third party. In addition, Dr. Fields may share data with trusted partners to help us perform statistical analysis, send you email or postal mail, provide customer support, or arrange for deliveries. All such third parties are prohibited from using your personal information except to provide these services to Dr. Fields, and they are required to maintain the confidentiality of your information.</p>\n\n<p>Dr. Fields does not use or disclose sensitive personal information, such as race, religion, or political affiliations, without your explicit consent.</p>\n\n<p>Dr. Fields keeps track of the Web sites and pages our customers visit within Dr. Fields, in order to determine what Dr. Fields services are the most popular. This data is used to deliver customized content and advertising within Dr. Fields to customers whose behavior indicates that they are interested in a particular subject area.</p>\n\n<p>Dr. Fields Web sites will disclose your personal information, without notice, only if required to do so by law or in the good faith belief that such action is necessary to: (a) conform to the edicts of the law or comply with legal process served on Dr. Fields or the site; (b) protect and defend the rights or property of Dr. Fields; and, (c) act under exigent circumstances to protect the personal safety of users of Dr. Fields, or the public.</p>\n\n<p><span class=\"SubHead\">Use of Cookies</span></p>\n\n<p>The Dr. Fields Web site use \"cookies\" to help you personalize your online experience. A cookie is a text file that is placed on your hard disk by a Web page server. Cookies cannot be used to run programs or deliver viruses to your computer. Cookies are uniquely assigned to you, and can only be read by a web server in the domain that issued the cookie to you.</p>\n\n<p>One of the primary purposes of cookies is to provide a convenience feature to save you time. The purpose of a cookie is to tell the Web server that you have returned to a specific page. For example, if you personalize Dr. Fields pages, or register with Dr. Fields site or services, a cookie helps Dr. Fields to recall your specific information on subsequent visits. This simplifies the process of recording your personal information, such as billing addresses, shipping addresses, and so on. When you return to the same Dr. Fields Web site, the information you previously provided can be retrieved, so you can easily use the Dr. Fields features that you customized.</p>\n\n<p>You have the ability to accept or decline cookies. Most Web browsers automatically accept cookies, but you can usually modify your browser setting to decline cookies if you prefer. If you choose to decline cookies, you may not be able to fully experience the interactive features of the Dr. Fields services or Web sites you visit.</p>\n\n<p><span class=\"SubHead\">Security of your Personal Information</span></p>\n\n<p>Dr. Fields secures your personal information from unauthorized access, use or disclosure. Dr. Fields secures the personally identifiable information you provide on computer servers in a controlled, secure environment, protected from unauthorized access, use or disclosure. When personal information (such as a credit card number) is transmitted to other Web sites, it is protected through the use of encryption, such as the Secure Socket Layer (SSL) protocol.</p>\n<p><span class=\"SubHead\">Changes to this Statement</span></p>\n<p>Dr. Fields will occasionally update this Statement of Privacy to reflect company and customer feedback. Dr. Fields encourages you to periodically review this Statement to be informed of how Dr. Fields is protecting your information.</p>\n<p><span class=\"SubHead\">Contact Information</span></p>\n<p>Dr. Fields welcomes your comments regarding this Statement of Privacy. If you believe that Dr. Fields has not adhered to this Statement, please contact Dr. Fields at <a>eugene@kspsystems.com</a>. We will use commercially reasonable efforts to promptly determine and remedy the problem.</p>\n</div>\n</div>\n</div>\n</div>\n<div class=\"clear\"> </div>\n</div>\n</div>\n</div>','Privacy','','inherit','closed','closed','','3-autosave-v1','','','2019-06-14 12:47:03','2019-06-14 12:47:03','',3,'https://www.drfields.com/uncategorized/3-autosave-v1/',0,'revision','',0),(1756,8,'2019-06-14 12:47:35','2019-06-14 12:47:35','<div id=\"dnn_ContentPane\" class=\"span12 contentPane\">\r\n<div class=\"DnnModule DnnModule- DnnModule--1 DnnModule-Admin\">\r\n<div class=\"DNNContainer_noTitle\">\r\n<div id=\"dnn_ctr_ContentPane\">\r\n<div id=\"dnn_ctr_ModuleContent\" class=\"DNNModuleContent ModC\">\r\n<div class=\"dnnPrivacy dnnClear\">\r\n<div align=\"left\">\r\n<p><span id=\"dnn_ctr_Privacy_lblPrivacy\">Dr. Fields</span> is committed to protecting your privacy and developing technology that gives you the most powerful and safe online experience. This Statement of Privacy applies to the Dr. Fields site and governs data collection and usage. By using the Dr. Fields site, you consent to the data practices described in this statement.</p>\r\n<p><span class=\"SubHead\">Collection of your Personal Information</span></p>\r\n<p>Dr. Fields collects personally identifiable information, such as your email address, name, home or work address or telephone number. Dr. Fields also collects anonymous demographic information, which is not unique to you, such as your ZIP code, age, gender, preferences, interests and favorites.</p>\r\n<p>There is also information about your computer hardware and software that is automatically collected by Dr. Fields. This information can include: your IP address, browser type, domain names, access times and referring website addresses. This information is used by Dr. Fields for the operation of the service, to maintain quality of the service, and to provide general statistics regarding use of the Dr. Fields site.</p>\r\n<p>Please keep in mind that if you directly disclose personally identifiable information or personally sensitive data through Dr. Fields public message boards, this information may be collected and used by others. Note: Dr. Fields does not read any of your private online communications.</p>\r\n\r\n<p>Dr. Fields encourages you to review the privacy statements of Web sites you choose to link to from Dr. Fields so that you can understand how those Web sites collect, use and share your information. Dr. Fields is not responsible for the privacy statements or other content on Web sites outside of the Dr. Fields and Dr. Fields family of Web sites.</p>\r\n\r\n<p><span class=\"SubHead\">Use of your Personal Information</span></p>\r\n\r\n<p>Dr. Fields collects and uses your personal information to operate the Dr. Fields Web site and deliver the services you have requested. Dr. Fields also uses your personally identifiable information to inform you of other products or services available from Dr. Fields and its affiliates. Dr. Fields may also contact you via surveys to conduct research about your opinion of current services or of potential new services that may be offered.</p>\r\n\r\n<p>Dr. Fields does not sell, rent or lease its customer lists to third parties. Dr. Fields may, from time to time, contact you on behalf of external business partners about a particular offering that may be of interest to you. In those cases, your unique personally identifiable information (e-mail, name, address, telephone number) is not transferred to the third party. In addition, Dr. Fields may share data with trusted partners to help us perform statistical analysis, send you email or postal mail, provide customer support, or arrange for deliveries. All such third parties are prohibited from using your personal information except to provide these services to Dr. Fields, and they are required to maintain the confidentiality of your information.</p>\r\n\r\n<p>Dr. Fields does not use or disclose sensitive personal information, such as race, religion, or political affiliations, without your explicit consent.</p>\r\n\r\n<p>Dr. Fields keeps track of the Web sites and pages our customers visit within Dr. Fields, in order to determine what Dr. Fields services are the most popular. This data is used to deliver customized content and advertising within Dr. Fields to customers whose behavior indicates that they are interested in a particular subject area.</p>\r\n\r\n<p>Dr. Fields Web sites will disclose your personal information, without notice, only if required to do so by law or in the good faith belief that such action is necessary to: (a) conform to the edicts of the law or comply with legal process served on Dr. Fields or the site; (b) protect and defend the rights or property of Dr. Fields; and, (c) act under exigent circumstances to protect the personal safety of users of Dr. Fields, or the public.</p>\r\n\r\n<p><span class=\"SubHead\">Use of Cookies</span></p>\r\n\r\n<p>The Dr. Fields Web site use \"cookies\" to help you personalize your online experience. A cookie is a text file that is placed on your hard disk by a Web page server. Cookies cannot be used to run programs or deliver viruses to your computer. Cookies are uniquely assigned to you, and can only be read by a web server in the domain that issued the cookie to you.</p>\r\n\r\n<p>One of the primary purposes of cookies is to provide a convenience feature to save you time. The purpose of a cookie is to tell the Web server that you have returned to a specific page. For example, if you personalize Dr. Fields pages, or register with Dr. Fields site or services, a cookie helps Dr. Fields to recall your specific information on subsequent visits. This simplifies the process of recording your personal information, such as billing addresses, shipping addresses, and so on. When you return to the same Dr. Fields Web site, the information you previously provided can be retrieved, so you can easily use the Dr. Fields features that you customized.</p>\r\n\r\n<p>You have the ability to accept or decline cookies. Most Web browsers automatically accept cookies, but you can usually modify your browser setting to decline cookies if you prefer. If you choose to decline cookies, you may not be able to fully experience the interactive features of the Dr. Fields services or Web sites you visit.</p>\r\n\r\n<p><span class=\"SubHead\">Security of your Personal Information</span></p>\r\n\r\n<p>Dr. Fields secures your personal information from unauthorized access, use or disclosure. Dr. Fields secures the personally identifiable information you provide on computer servers in a controlled, secure environment, protected from unauthorized access, use or disclosure. When personal information (such as a credit card number) is transmitted to other Web sites, it is protected through the use of encryption, such as the Secure Socket Layer (SSL) protocol.</p>\r\n\r\n<p><span class=\"SubHead\">Changes to this Statement</span></p>\r\n\r\n<p>Dr. Fields will occasionally update this Statement of Privacy to reflect company and customer feedback. Dr. Fields encourages you to periodically review this Statement to be informed of how Dr. Fields is protecting your information.</p>\r\n\r\n<p><span class=\"SubHead\">Contact Information</span></p>\r\n\r\n<p>Dr. Fields welcomes your comments regarding this Statement of Privacy. If you believe that Dr. Fields has not adhered to this Statement, please contact Dr. Fields at <a href=\"mailto:eugene@kspsystems.com\">eugene@kspsystems.com</a>. We will use commercially reasonable efforts to promptly determine and remedy the problem.</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"> </div>\r\n</div>\r\n</div>\r\n</div>','Privacy','','inherit','closed','closed','','3-revision-v1','','','2019-06-14 12:47:35','2019-06-14 12:47:35','',3,'https://www.drfields.com/uncategorized/3-revision-v1/',0,'revision','',0),(1757,8,'2019-06-14 12:49:18','2019-06-14 12:49:18','<strong>AGREEMENT BETWEEN USER AND Dr. Fields</strong>\r\n\r\nThe Dr. Fields Web Site is comprised of various Web pages operated by Dr. Fields.\r\n\r\nThe Dr. Fields Web Site is offered to you conditioned on your acceptance without modification of the terms, conditions, and notices contained herein. Your use of the Dr. Fields Web Site constitutes your agreement to all such terms, conditions, and notices.\r\n\r\n<strong>MODIFICATION OF THESE TERMS OF USE</strong>\r\n\r\nDr. Fields reserves the right to change the terms, conditions, and notices under which the Dr. Fields Web Site is offered, including but not limited to the charges associated with the use of the Dr. Fields Web Site.\r\n\r\n<strong>LINKS TO THIRD PARTY SITES</strong>\r\n\r\nThe Dr. Fields Web Site may contain links to other Web Sites (\"Linked Sites\"). The Linked Sites are not under the control of Dr. Fields and Dr. Fields is not responsible for the contents of any Linked Site, including without limitation any link contained in a Linked Site, or any changes or updates to a Linked Site. Dr. Fields is not responsible for webcasting or any other form of transmission received from any Linked Site. Dr. Fields is providing these links to you only as a convenience, and the inclusion of any link does not imply endorsement by Dr. Fields of the site or any association with its operators.\r\n\r\n<strong>NO UNLAWFUL OR PROHIBITED USE</strong>\r\n\r\nAs a condition of your use of the Dr. Fields Web Site, you warrant to Dr. Fields that you will not use the Dr. Fields Web Site for any purpose that is unlawful or prohibited by these terms, conditions, and notices. You may not use the Dr. Fields Web Site in any manner which could damage, disable, overburden, or impair the Dr. Fields Web Site or interfere with any other party\'s use and enjoyment of the Dr. Fields Web Site. You may not obtain or attempt to obtain any materials or information through any means not intentionally made available or provided for through the Dr. Fields Web Sites.\r\n\r\n<strong>USE OF COMMUNICATION SERVICES</strong>\r\n\r\nThe Dr. Fields Web Site may contain bulletin board services, chat areas, news groups, forums, communities, personal web pages, calendars, and/or other message or communication facilities designed to enable you to communicate with the public at large or with a group (collectively, \"Communication Services\"), you agree to use the Communication Services only to post, send and receive messages and material that are proper and related to the particular Communication Service. By way of example, and not as a limitation, you agree that when using a Communication Service, you will not:\r\n<ul>\r\n 	<li>Defame, abuse, harass, stalk, threaten or otherwise violate the legal rights (such as rights of privacy and publicity) of others.</li>\r\n 	<li>Publish, post, upload, distribute or disseminate any inappropriate, profane, defamatory, infringing, obscene, indecent or unlawful topic, name, material or information.</li>\r\n 	<li>Upload files that contain software or other material protected by intellectual property laws (or by rights of privacy of publicity) unless you own or control the rights thereto or have received all necessary consents.</li>\r\n 	<li>Upload files that contain viruses, corrupted files, or any other similar software or programs that may damage the operation of another\'s computer.</li>\r\n 	<li>Advertise or offer to sell or buy any goods or services for any business purpose, unless such Communication Service specifically allows such messages.</li>\r\n 	<li>Conduct or forward surveys, contests, pyramid schemes or chain letters.</li>\r\n 	<li>Download any file posted by another user of a Communication Service that you know, or reasonably should know, cannot be legally distributed in such manner.</li>\r\n 	<li>Falsify or delete any author attributions, legal or other proper notices or proprietary designations or labels of the origin or source of software or other material contained in a file that is uploaded.</li>\r\n 	<li>Restrict or inhibit any other user from using and enjoying the Communication Services.</li>\r\n 	<li>Violate any code of conduct or other guidelines which may be applicable for any particular Communication Service.</li>\r\n 	<li>Harvest or otherwise collect information about others, including e-mail addresses, without their consent.</li>\r\n 	<li>Violate any applicable laws or regulations.</li>\r\n</ul>\r\nDr. Fields has no obligation to monitor the Communication Services. However, Dr. Fields reserves the right to review materials posted to a Communication Service and to remove any materials in its sole discretion. Dr. Fields reserves the right to terminate your access to any or all of the Communication Services at any time without notice for any reason whatsoever.\r\n\r\nDr. Fields reserves the right at all times to disclose any information as necessary to satisfy any applicable law, regulation, legal process or governmental request, or to edit, refuse to post or to remove any information or materials, in whole or in part, in Dr. Fields\'s sole discretion.\r\n\r\nAlways use caution when giving out any personally identifying information about yourself or your children in any Communication Service. Dr. Fields does not control or endorse the content, messages or information found in any Communication Service and, therefore, Dr. Fields specifically disclaims any liability with regard to the Communication Services and any actions resulting from your participation in any Communication Service. Managers and hosts are not authorized Dr. Fields spokespersons, and their views do not necessarily reflect those of Dr. Fields.\r\n\r\nMaterials uploaded to a Communication Service may be subject to posted limitations on usage, reproduction and/or dissemination. You are responsible for adhering to such limitations if you download the materials.\r\n\r\n<strong>MATERIALS PROVIDED TO Dr. Fields OR POSTED AT ANY Dr. Fields WEB SITE</strong>\r\nDr. Fields does not claim ownership of the materials you provide to Dr. Fields (including feedback and suggestions) or post, upload, input or submit to any Dr. Fields Web Site or its associated services (collectively \"Submissions\"). However, by posting, uploading, inputting, providing or submitting your Submission you are granting Dr. Fields, its affiliated companies and necessary sublicensees permission to use your Submission in connection with the operation of their Internet businesses including, without limitation, the rights to: copy, distribute, transmit, publicly display, publicly perform, reproduce, edit, translate and reformat your Submission; and to publish your name in connection with your Submission.\r\n\r\nNo compensation will be paid with respect to the use of your Submission, as provided herein. Dr. Fields is under no obligation to post or use any Submission you may provide and may remove any Submission at any time in Dr. Fields\'s sole discretion.\r\n\r\nBy posting, uploading, inputting, providing or submitting your Submission you warrant and represent that you own or otherwise control all of the rights to your Submission as described in this section including, without limitation, all the rights necessary for you to provide, post, upload, input or submit the Submissions.\r\n\r\n<strong>LIABILITY DISCLAIMER</strong>\r\n\r\nTHE INFORMATION, SOFTWARE, PRODUCTS, AND SERVICES INCLUDED IN OR AVAILABLE THROUGH THE Dr. Fields WEB SITE MAY INCLUDE INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION HEREIN. Dr. Fields AND/OR ITS SUPPLIERS MAY MAKE IMPROVEMENTS AND/OR CHANGES IN THE Dr. Fields WEB SITE AT ANY TIME. ADVICE RECEIVED VIA THE Dr. Fields WEB SITE SHOULD NOT BE RELIED UPON FOR PERSONAL, MEDICAL, LEGAL OR FINANCIAL DECISIONS AND YOU SHOULD CONSULT AN APPROPRIATE PROFESSIONAL FOR SPECIFIC ADVICE TAILORED TO YOUR SITUATION.\r\n\r\nDr. Fields AND/OR ITS SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY, RELIABILITY, AVAILABILITY, TIMELINESS, AND ACCURACY OF THE INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS CONTAINED ON THE Dr. Fields WEB SITE FOR ANY PURPOSE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, ALL SUCH INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OR CONDITION OF ANY KIND. Dr. Fields AND/OR ITS SUPPLIERS HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THIS INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS, INCLUDING ALL IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT.\r\n\r\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL Dr. Fields AND/OR ITS SUPPLIERS BE LIABLE FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, SPECIAL, CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF USE, DATA OR PROFITS, ARISING OUT OF OR IN ANY WAY CONNECTED WITH THE USE OR PERFORMANCE OF THE Dr. Fields WEB SITE, WITH THE DELAY OR INABILITY TO USE THE Dr. Fields WEB SITE OR RELATED SERVICES, THE PROVISION OF OR FAILURE TO PROVIDE SERVICES, OR FOR ANY INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS OBTAINED THROUGH THE Dr. Fields WEB SITE, OR OTHERWISE ARISING OUT OF THE USE OF THE Dr. Fields WEB SITE, WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, EVEN IF Dr. Fields OR ANY OF ITS SUPPLIERS HAS BEEN ADVISED OF THE POSSIBILITY OF DAMAGES. BECAUSE SOME STATES/JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU. IF YOU ARE DISSATISFIED WITH ANY PORTION OF THE Dr. Fields WEB SITE, OR WITH ANY OF THESE TERMS OF USE, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE USING THE Dr. Fields WEB SITE.\r\n\r\n<strong>SERVICE CONTACT :</strong> eugene@kspsystems.com\r\n\r\n<strong>TERMINATION/ACCESS RESTRICTION</strong>\r\n\r\nDr. Fields reserves the right, in its sole discretion, to terminate your access to the Dr. Fields Web Site and the related services or any portion thereof at any time, without notice. GENERAL To the maximum extent permitted by law, this agreement is governed by the laws of the State of Washington, U.S.A. and you hereby consent to the exclusive jurisdiction and venue of courts in San Mateo County, California, U.S.A. in all disputes arising out of or relating to the use of the Dr. Fields Web Site. Use of the Dr. Fields Web Site is unauthorized in any jurisdiction that does not give effect to all provisions of these terms and conditions, including without limitation this paragraph. You agree that no joint venture, partnership, employment, or agency relationship exists between you and Dr. Fields as a result of this agreement or use of the Dr. Fields Web Site. Dr. Fields\'s performance of this agreement is subject to existing laws and legal process, and nothing contained in this agreement is in derogation of Dr. Fields\'s right to comply with governmental, court and law enforcement requests or requirements relating to your use of the Dr. Fields Web Site or information provided to or gathered by Dr. Fields with respect to such use. If any part of this agreement is determined to be invalid or unenforceable pursuant to applicable law including, but not limited to, the warranty disclaimers and liability limitations set forth above, then the invalid or unenforceable provision will be deemed superseded by a valid, enforceable provision that most closely matches the intent of the original provision and the remainder of the agreement shall continue in effect. Unless otherwise specified herein, this agreement constitutes the entire agreement between the user and Dr. Fields with respect to the Dr. Fields Web Site and it supersedes all prior or contemporaneous communications and proposals, whether electronic, oral or written, between the user and Dr. Fields with respect to the Dr. Fields Web Site. A printed version of this agreement and of any notice given in electronic form shall be admissible in judicial or administrative proceedings based upon or relating to this agreement to the same extent an d subject to the same conditions as other business documents and records originally generated and maintained in printed form. It is the express wish to the parties that this agreement and all related documents be drawn up in English.\r\n\r\n<strong>COPYRIGHT AND TRADEMARK NOTICES:</strong>\r\n\r\nAll contents of the Dr. Fields Web Site are: ©2019 OrthoRegen and/or its suppliers. All rights reserved.\r\n\r\n<strong>TRADEMARKS</strong>\r\n\r\nThe names of actual companies and products mentioned herein may be the trademarks of their respective owners.\r\n\r\nThe example companies, organizations, products, people and events depicted herein are fictitious. No association with any real company, organization, product, person, or event is intended or should be inferred.\r\n\r\nAny rights not expressly granted herein are reserved.\r\n\r\n<strong>NOTICES AND PROCEDURE FOR MAKING CLAIMS OF COPYRIGHT INFRINGEMENT</strong>\r\n\r\nPursuant to Title 17, United States Code, Section 512(c)(2), notifications of claimed copyright infringement under United States copyright law should be sent to Service Provider\'s Designated Agent. ALL INQUIRIES NOT RELEVANT TO THE FOLLOWING PROCEDURE WILL RECEIVE NO RESPONSE. See Notice and Procedure for Making Claims of Copyright Infringement.','Terms','','inherit','closed','closed','','977-revision-v1','','','2019-06-14 12:49:18','2019-06-14 12:49:18','',977,'https://www.drfields.com/uncategorized/977-revision-v1/',0,'revision','',0),(1758,8,'2019-06-14 13:04:31','2019-06-14 13:04:31','<img class=\"aligncenter size-full wp-image-1759\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/event-logo-im-hamburg.jpg\" alt=\"Event Logo Im Hamburg\" width=\"370\" height=\"158\" />\r\n<h4 id=\"athleticdoc\" class=\"text-center\">Peter A. Fields, MD DC</h4>\r\n<h5 class=\"text-center\">The Athletic Doc®</h5>\r\n<h5 class=\"text-center\">will be competing in his\r\n10th Ironman\r\nin Hamburg Germany\r\nSunday July 29, 2018</h5>\r\n<p class=\"text-center\">Start time is 6:40am Hamburg time\r\nwhich is 10:40pm Saturday night in LA\r\n(there is a nine-hour time difference).</p>\r\n<p class=\"text-center\">His estimated time is\r\nbetween 13.5-14 hours.</p>\r\n\r\n<h5 class=\"text-center\"><u>How To follow Dr Fields</u></h5>\r\n<p class=\"text-center\">1. Download the Ironman Tracker app from your app store\r\nLook or search for Ironman Hamburg\r\nSearch for Peter Fields name\r\n\r\n2. Or on your desktop or laptop go to\r\n<a href=\"http://www.Ironmanlive.com\"><span style=\"font-size: 32px;\">Ironmanlive.com</span></a>\r\nand look for Ironman Hamburg.\r\nThen click on the Athlete Tracker link</p>\r\n<p class=\"text-center\">In case he does not come up by name, his race number is 2361.</p>\r\n\r\n<h4 id=\"athleticdoc\" class=\"text-center\">Go The Athletic Doc®!!</h4>','Ironman','','draft','closed','closed','','ironman','','','2022-02-25 23:04:38','2022-02-25 23:04:38','',0,'https://www.drfields.com/?page_id=1758',0,'page','',0),(1759,8,'2019-06-14 13:02:06','2019-06-14 13:02:06','Event Logo Im Hamburg','Event Logo Im Hamburg','','inherit','open','closed','','event-logo-im-hamburg','','','2019-06-14 13:02:11','2019-06-14 13:02:11','',1758,'https://www.drfields.com/wp-content/uploads/2019/06/event-logo-im-hamburg.jpg',0,'attachment','image/jpeg',0),(1760,8,'2019-06-14 13:04:31','2019-06-14 13:04:31','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/event-logo-im-hamburg.jpg\" alt=\"Event Logo Im Hamburg\" width=\"740\" height=\"316\" class=\"aligncenter size-full wp-image-1759\" />\r\n\r\n<h6 id=\"athleticdoc\">Peter A. Fields, MD DC</h6>\r\n<h5 class=\"text-center\">The Athletic Doc®</h5>\r\n\r\nwill be competing in his \r\n10th Ironman\r\nin Hamburg Germany \r\nSunday July 29, 2018 \r\n\r\nStart time is 6:40am Hamburg time \r\nwhich is 10:40pm Saturday night in LA\r\n(there is a nine-hour time difference).  \r\n\r\nHis estimated time is\r\nbetween 13.5-14 hours.\r\n\r\nHow To follow Dr Fields\r\n\r\n1.     Download the Ironman Tracker app from your app store\r\nLook or search for Ironman Hamburg\r\nSearch for Peter Fields name\r\n\r\n2. Or on your desktop or laptop go to\r\nIronmanlive.com\r\nand look for Ironman Hamburg.\r\nThen click on the Athlete Tracker link\r\n\r\nIn case he does not come up by name, his race number is 2361.\r\n\r\n<h6 id=\"athleticdoc\">Go The Athletic Doc®!!</h6>\r\n','','','inherit','closed','closed','','1758-revision-v1','','','2019-06-14 13:04:31','2019-06-14 13:04:31','',1758,'https://www.drfields.com/uncategorized/1758-revision-v1/',0,'revision','',0),(1761,8,'2019-06-14 13:04:59','2019-06-14 13:04:59','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/event-logo-im-hamburg.jpg\" alt=\"Event Logo Im Hamburg\" width=\"740\" height=\"316\" class=\"aligncenter size-full wp-image-1759\" />\r\n\r\n<h6 id=\"athleticdoc\">Peter A. Fields, MD DC</h6>\r\n<h5 class=\"text-center\">The Athletic Doc®</h5>\r\n\r\nwill be competing in his \r\n10th Ironman\r\nin Hamburg Germany \r\nSunday July 29, 2018 \r\n\r\nStart time is 6:40am Hamburg time \r\nwhich is 10:40pm Saturday night in LA\r\n(there is a nine-hour time difference).  \r\n\r\nHis estimated time is\r\nbetween 13.5-14 hours.\r\n\r\nHow To follow Dr Fields\r\n\r\n1.     Download the Ironman Tracker app from your app store\r\nLook or search for Ironman Hamburg\r\nSearch for Peter Fields name\r\n\r\n2. Or on your desktop or laptop go to\r\nIronmanlive.com\r\nand look for Ironman Hamburg.\r\nThen click on the Athlete Tracker link\r\n\r\nIn case he does not come up by name, his race number is 2361.\r\n\r\n<h6 id=\"athleticdoc\">Go The Athletic Doc®!!</h6>\r\n','Ironman','','inherit','closed','closed','','1758-revision-v1','','','2019-06-14 13:04:59','2019-06-14 13:04:59','',1758,'https://www.drfields.com/uncategorized/1758-revision-v1/',0,'revision','',0),(1762,8,'2019-06-14 13:05:44','2019-06-14 13:05:44','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/event-logo-im-hamburg.jpg\" alt=\"Event Logo Im Hamburg\" width=\"370\" height=\"158\" class=\"aligncenter size-full wp-image-1759\" />\r\n\r\n<h6 id=\"athleticdoc\" class=\"text-center\">Peter A. Fields, MD DC</h6>\r\n<h5 class=\"text-center\">The Athletic Doc®</h5>\r\n\r\nwill be competing in his \r\n10th Ironman\r\nin Hamburg Germany \r\nSunday July 29, 2018 \r\n\r\nStart time is 6:40am Hamburg time \r\nwhich is 10:40pm Saturday night in LA\r\n(there is a nine-hour time difference).  \r\n\r\nHis estimated time is\r\nbetween 13.5-14 hours.\r\n\r\nHow To follow Dr Fields\r\n\r\n1.     Download the Ironman Tracker app from your app store\r\nLook or search for Ironman Hamburg\r\nSearch for Peter Fields name\r\n\r\n2. Or on your desktop or laptop go to\r\nIronmanlive.com\r\nand look for Ironman Hamburg.\r\nThen click on the Athlete Tracker link\r\n\r\nIn case he does not come up by name, his race number is 2361.\r\n\r\n<h6 id=\"athleticdoc\">Go The Athletic Doc®!!</h6>\r\n','Ironman','','inherit','closed','closed','','1758-revision-v1','','','2019-06-14 13:05:44','2019-06-14 13:05:44','',1758,'https://www.drfields.com/uncategorized/1758-revision-v1/',0,'revision','',0),(1763,8,'2019-06-14 13:06:14','2019-06-14 13:06:14','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><strong >On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p>&nbsp; </p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong class=\"subhead\">THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n\r\n<p>&nbsp; </p>\r\n<p>&nbsp; </p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong class=\"subhead\">THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong class=\"subhead\">THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong class=\"subhead\">THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n\r\n<div class=\"clear\"></div>\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n\r\n\r\n','Race Report 1st Ironman','','inherit','closed','closed','','92-revision-v1','','','2019-06-14 13:06:14','2019-06-14 13:06:14','',92,'https://www.drfields.com/uncategorized/92-revision-v1/',0,'revision','',0),(1764,8,'2019-06-14 13:07:29','2019-06-14 13:07:29','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/event-logo-im-hamburg.jpg\" alt=\"Event Logo Im Hamburg\" width=\"370\" height=\"158\" class=\"aligncenter size-full wp-image-1759\" />\r\n\r\n<h6 id=\"athleticdoc\" class=\"text-center\">Peter A. Fields, MD DC</h6>\r\n<h5 class=\"text-center\">The Athletic Doc®</h5>\r\n\r\n<h5 class=\"text-center\">will be competing in his \r\n10th Ironman\r\nin Hamburg Germany \r\nSunday July 29, 2018 \r\n\r\nStart time is 6:40am Hamburg time \r\nwhich is 10:40pm Saturday night in LA\r\n(there is a nine-hour time difference).  \r\n\r\nHis estimated time is\r\nbetween 13.5-14 hours.\r\n\r\nHow To follow Dr Fields\r\n\r\n1.     Download the Ironman Tracker app from your app store\r\nLook or search for Ironman Hamburg\r\nSearch for Peter Fields name\r\n\r\n2. Or on your desktop or laptop go to\r\nIronmanlive.com\r\nand look for Ironman Hamburg.\r\nThen click on the Athlete Tracker link\r\n\r\nIn case he does not come up by name, his race number is 2361.</h5>\r\n\r\n<h6 id=\"athleticdoc\">Go The Athletic Doc®!!</h6>\r\n','Ironman','','inherit','closed','closed','','1758-revision-v1','','','2019-06-14 13:07:29','2019-06-14 13:07:29','',1758,'https://www.drfields.com/uncategorized/1758-revision-v1/',0,'revision','',0),(1765,8,'2019-06-14 13:09:15','2019-06-14 13:09:15','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/event-logo-im-hamburg.jpg\" alt=\"Event Logo Im Hamburg\" width=\"370\" height=\"158\" class=\"aligncenter size-full wp-image-1759\" />\r\n\r\n<h6 id=\"athleticdoc\" class=\"text-center\">Peter A. Fields, MD DC</h6>\r\n<h5 class=\"text-center\">The Athletic Doc®</h5>\r\n\r\n<h5 class=\"text-center\">will be competing in his \r\n10th Ironman\r\nin Hamburg Germany \r\nSunday July 29, 2018 </h5>\r\n\r\n<p class=\"text-center\">Start time is 6:40am Hamburg time \r\nwhich is 10:40pm Saturday night in LA\r\n(there is a nine-hour time difference).  \r\n\r\nHis estimated time is\r\nbetween 13.5-14 hours.\r\n\r\nHow To follow Dr Fields\r\n\r\n1.     Download the Ironman Tracker app from your app store\r\nLook or search for Ironman Hamburg\r\nSearch for Peter Fields name\r\n\r\n2. Or on your desktop or laptop go to\r\nIronmanlive.com\r\nand look for Ironman Hamburg.\r\nThen click on the Athlete Tracker link\r\n\r\nIn case he does not come up by name, his race number is 2361.</p>\r\n\r\n<h6 id=\"athleticdoc\">Go The Athletic Doc®!!</h6>\r\n','Ironman','','inherit','closed','closed','','1758-revision-v1','','','2019-06-14 13:09:15','2019-06-14 13:09:15','',1758,'https://www.drfields.com/uncategorized/1758-revision-v1/',0,'revision','',0),(1767,8,'2019-06-14 13:10:43','2019-06-14 13:10:43','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/event-logo-im-hamburg.jpg\" alt=\"Event Logo Im Hamburg\" width=\"370\" height=\"158\" class=\"aligncenter size-full wp-image-1759\" />\r\n\r\n<h6 id=\"athleticdoc\" class=\"text-center\">Peter A. Fields, MD DC</h6>\r\n<h5 class=\"text-center\">The Athletic Doc®</h5>\r\n\r\n<h5 class=\"text-center\">will be competing in his \r\n10th Ironman\r\nin Hamburg Germany \r\nSunday July 29, 2018 </h5>\r\n\r\n<p class=\"text-center\">Start time is 6:40am Hamburg time\r\nwhich is 10:40pm Saturday night in LA\r\n(there is a nine-hour time difference). </p> \r\n\r\n<p class=\"text-center\">His estimated time is\r\nbetween 13.5-14 hours.</p>\r\n\r\n<h5 class=\"text-center\"><u>How To follow Dr Fields</u></h5>\r\n\r\n<p class=\"text-center\">\r\n1.     Download the Ironman Tracker app from your app store\r\nLook or search for Ironman Hamburg\r\nSearch for Peter Fields name\r\n\r\n2. Or on your desktop or laptop go to\r\nIronmanlive.com\r\nand look for Ironman Hamburg.\r\nThen click on the Athlete Tracker link\r\n\r\nIn case he does not come up by name, his race number is 2361.</p>\r\n\r\n<h6 id=\"athleticdoc\">Go The Athletic Doc®!!</h6>\r\n','Ironman','','inherit','closed','closed','','1758-revision-v1','','','2019-06-14 13:10:43','2019-06-14 13:10:43','',1758,'https://www.drfields.com/uncategorized/1758-revision-v1/',0,'revision','',0),(1768,8,'2019-06-14 13:11:24','2019-06-14 13:11:24','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/event-logo-im-hamburg.jpg\" alt=\"Event Logo Im Hamburg\" width=\"370\" height=\"158\" class=\"aligncenter size-full wp-image-1759\" />\r\n\r\n<h6 id=\"athleticdoc\" class=\"text-center\">Peter A. Fields, MD DC</h6>\r\n<h5 class=\"text-center\">The Athletic Doc®</h5>\r\n\r\n<h5 class=\"text-center\">will be competing in his \r\n10th Ironman\r\nin Hamburg Germany \r\nSunday July 29, 2018 </h5>\r\n\r\n<p class=\"text-center\">Start time is 6:40am Hamburg time\r\nwhich is 10:40pm Saturday night in LA\r\n(there is a nine-hour time difference). </p> \r\n\r\n<p class=\"text-center\">His estimated time is\r\nbetween 13.5-14 hours.</p>\r\n\r\n<h5 class=\"text-center\"><u>How To follow Dr Fields</u></h5>\r\n\r\n<p class=\"text-center\">\r\n1.     Download the Ironman Tracker app from your app store\r\nLook or search for Ironman Hamburg\r\nSearch for Peter Fields name</p>\r\n\r\n<p class=\"text-center\">2. Or on your desktop or laptop go to\r\nIronmanlive.com\r\nand look for Ironman Hamburg.\r\nThen click on the Athlete Tracker link</p>\r\n\r\n<p class=\"text-center\">In case he does not come up by name, his race number is 2361.</p>\r\n\r\n<h6 id=\"athleticdoc\">Go The Athletic Doc®!!</h6>\r\n','Ironman','','inherit','closed','closed','','1758-revision-v1','','','2019-06-14 13:11:24','2019-06-14 13:11:24','',1758,'https://www.drfields.com/uncategorized/1758-revision-v1/',0,'revision','',0),(1769,8,'2019-06-14 13:11:49','2019-06-14 13:11:49','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/event-logo-im-hamburg.jpg\" alt=\"Event Logo Im Hamburg\" width=\"370\" height=\"158\" class=\"aligncenter size-full wp-image-1759\" />\r\n\r\n<h6 id=\"athleticdoc\" class=\"text-center\">Peter A. Fields, MD DC</h6>\r\n<h5 class=\"text-center\">The Athletic Doc®</h5>\r\n\r\n<h5 class=\"text-center\">will be competing in his \r\n10th Ironman\r\nin Hamburg Germany \r\nSunday July 29, 2018 </h5>\r\n\r\n<p class=\"text-center\">Start time is 6:40am Hamburg time\r\nwhich is 10:40pm Saturday night in LA\r\n(there is a nine-hour time difference). </p> \r\n\r\n<p class=\"text-center\">His estimated time is\r\nbetween 13.5-14 hours.</p>\r\n\r\n<h5 class=\"text-center\"><u>How To follow Dr Fields</u></h5>\r\n\r\n<p class=\"text-center\">\r\n1.     Download the Ironman Tracker app from your app store\r\nLook or search for Ironman Hamburg\r\nSearch for Peter Fields name</p>\r\n\r\n<p class=\"text-center\">2. Or on your desktop or laptop go to\r\nIronmanlive.com\r\nand look for Ironman Hamburg.\r\nThen click on the Athlete Tracker link</p>\r\n\r\n<p class=\"text-center\">In case he does not come up by name, his race number is 2361.</p>\r\n\r\n<h4 id=\"athleticdoc\">Go The Athletic Doc®!!</h4>\r\n','Ironman','','inherit','closed','closed','','1758-revision-v1','','','2019-06-14 13:11:49','2019-06-14 13:11:49','',1758,'https://www.drfields.com/uncategorized/1758-revision-v1/',0,'revision','',0),(1770,8,'2019-06-14 13:12:27','2019-06-14 13:12:27','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/event-logo-im-hamburg.jpg\" alt=\"Event Logo Im Hamburg\" width=\"370\" height=\"158\" class=\"aligncenter size-full wp-image-1759\" />\r\n\r\n<h4 id=\"athleticdoc\" class=\"text-center\">Peter A. Fields, MD DC</h4>\r\n<h5 class=\"text-center\">The Athletic Doc®</h5>\r\n\r\n<h5 class=\"text-center\">will be competing in his \r\n10th Ironman\r\nin Hamburg Germany \r\nSunday July 29, 2018 </h5>\r\n\r\n<p class=\"text-center\">Start time is 6:40am Hamburg time\r\nwhich is 10:40pm Saturday night in LA\r\n(there is a nine-hour time difference). </p> \r\n\r\n<p class=\"text-center\">His estimated time is\r\nbetween 13.5-14 hours.</p>\r\n\r\n<h5 class=\"text-center\"><u>How To follow Dr Fields</u></h5>\r\n\r\n<p class=\"text-center\">\r\n1.     Download the Ironman Tracker app from your app store\r\nLook or search for Ironman Hamburg\r\nSearch for Peter Fields name</p>\r\n\r\n<p class=\"text-center\">2. Or on your desktop or laptop go to\r\nIronmanlive.com\r\nand look for Ironman Hamburg.\r\nThen click on the Athlete Tracker link</p>\r\n\r\n<p class=\"text-center\">In case he does not come up by name, his race number is 2361.</p>\r\n\r\n<h4 id=\"athleticdoc\" class=\"text-center\">Go The Athletic Doc®!!</h4>\r\n','Ironman','','inherit','closed','closed','','1758-revision-v1','','','2019-06-14 13:12:27','2019-06-14 13:12:27','',1758,'https://www.drfields.com/uncategorized/1758-revision-v1/',0,'revision','',0),(1771,8,'2019-06-14 13:13:36','2019-06-14 13:13:36','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/event-logo-im-hamburg.jpg\" alt=\"Event Logo Im Hamburg\" width=\"370\" height=\"158\" class=\"aligncenter size-full wp-image-1759\" />\r\n\r\n<h4 id=\"athleticdoc\" class=\"text-center\">Peter A. Fields, MD DC</h4>\r\n<h5 class=\"text-center\">The Athletic Doc®</h5>\r\n\r\n<h5 class=\"text-center\">will be competing in his \r\n10th Ironman\r\nin Hamburg Germany \r\nSunday July 29, 2018 </h5>\r\n\r\n<p class=\"text-center\">Start time is 6:40am Hamburg time\r\nwhich is 10:40pm Saturday night in LA\r\n(there is a nine-hour time difference). </p> \r\n\r\n<p class=\"text-center\">His estimated time is\r\nbetween 13.5-14 hours.</p>\r\n\r\n<h5 class=\"text-center\"><u>How To follow Dr Fields</u></h5>\r\n\r\n<p class=\"text-center\">\r\n1.     Download the Ironman Tracker app from your app store\r\nLook or search for Ironman Hamburg\r\nSearch for Peter Fields name<br>\r\n2. Or on your desktop or laptop go to\r\n<a href=\"http://www.Ironmanlive.com\"><span style=\"font-size: 32px;\">Ironmanlive.com</span></a>\r\nand look for Ironman Hamburg.\r\nThen click on the Athlete Tracker link</p>\r\n\r\n<p class=\"text-center\">In case he does not come up by name, his race number is 2361.</p>\r\n\r\n<h4 id=\"athleticdoc\" class=\"text-center\">Go The Athletic Doc®!!</h4>\r\n','Ironman','','inherit','closed','closed','','1758-revision-v1','','','2019-06-14 13:13:36','2019-06-14 13:13:36','',1758,'https://www.drfields.com/uncategorized/1758-revision-v1/',0,'revision','',0),(1772,8,'2019-06-14 13:14:00','2019-06-14 13:14:00','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/event-logo-im-hamburg.jpg\" alt=\"Event Logo Im Hamburg\" width=\"370\" height=\"158\" class=\"aligncenter size-full wp-image-1759\" />\r\n\r\n<h4 id=\"athleticdoc\" class=\"text-center\">Peter A. Fields, MD DC</h4>\r\n<h5 class=\"text-center\">The Athletic Doc®</h5>\r\n\r\n<h5 class=\"text-center\">will be competing in his \r\n10th Ironman\r\nin Hamburg Germany \r\nSunday July 29, 2018 </h5>\r\n\r\n<p class=\"text-center\">Start time is 6:40am Hamburg time\r\nwhich is 10:40pm Saturday night in LA\r\n(there is a nine-hour time difference). </p> \r\n\r\n<p class=\"text-center\">His estimated time is\r\nbetween 13.5-14 hours.</p>\r\n\r\n<h5 class=\"text-center\"><u>How To follow Dr Fields</u></h5>\r\n\r\n<p class=\"text-center\">\r\n1.     Download the Ironman Tracker app from your app store\r\nLook or search for Ironman Hamburg\r\nSearch for Peter Fields name<br><br>\r\n2. Or on your desktop or laptop go to\r\n<a href=\"http://www.Ironmanlive.com\"><span style=\"font-size: 32px;\">Ironmanlive.com</span></a>\r\nand look for Ironman Hamburg.\r\nThen click on the Athlete Tracker link</p>\r\n\r\n<p class=\"text-center\">In case he does not come up by name, his race number is 2361.</p>\r\n\r\n<h4 id=\"athleticdoc\" class=\"text-center\">Go The Athletic Doc®!!</h4>\r\n','Ironman','','inherit','closed','closed','','1758-revision-v1','','','2019-06-14 13:14:00','2019-06-14 13:14:00','',1758,'https://www.drfields.com/uncategorized/1758-revision-v1/',0,'revision','',0),(1773,8,'2019-06-14 13:23:01','2019-06-14 13:23:01','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/recomment-sites.jpg\" alt=\"Recomment Sites\" width=\"200\" height=\"306\" class=\"aligncenter size-full wp-image-1774\" />\r\n\r\n<a href=\"http://www.hacketthemwall.org\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HH_logo.gif\" alt=\"Hh Logo\" width=\"250\" height=\"36\" class=\" size-full wp-image-1776\" />\r\nwww.hacketthemwall.org</a>\r\n\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HM_logo_small.gif\" alt=\"Hm Logo Small\" width=\"250\" height=\"84\" class=\" size-full wp-image-1777\" />\r\n<br>\r\nwww.hmsportsperformance.com</a>\r\n\r\n<a href=\"http://www.homes4athletes.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Homes_small.gif\" alt=\"Homes Small\" width=\"250\" height=\"55\" class=\" size-full wp-image-1778\" /><br>\r\nwww.homes4athletes.com</a>\r\n\r\n<a href=\"http://www.porchiaswish.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Barrys-Butterfly-Sun-logo-1.jpg\" alt=\"Barrys Butterfly Sun Logo 1\" width=\"250\" height=\"83\" class=\" size-full wp-image-1775\" /><br>\r\nwww.porchiaswish.com</a>\r\n\r\n','Recommended Sites','','publish','closed','closed','','recommended-sites','','','2019-06-14 13:47:32','2019-06-14 13:47:32','',0,'https://www.drfields.com/?page_id=1773',0,'page','',0),(1774,8,'2019-06-14 13:21:25','2019-06-14 13:21:25','Recomment Sites','Recomment Sites','','inherit','open','closed','','recomment-sites','','','2019-06-14 13:22:59','2019-06-14 13:22:59','',1773,'https://www.drfields.com/wp-content/uploads/2019/06/recomment-sites.jpg',0,'attachment','image/jpeg',0),(1775,8,'2019-06-14 13:21:27','2019-06-14 13:21:27','Barrys Butterfly Sun Logo 1','Barrys Butterfly Sun Logo 1','','inherit','open','closed','','barrys-butterfly-sun-logo-1','','','2019-06-14 13:37:27','2019-06-14 13:37:27','',1773,'https://www.drfields.com/wp-content/uploads/2019/06/Barrys-Butterfly-Sun-logo-1.jpg',0,'attachment','image/jpeg',0),(1776,8,'2019-06-14 13:21:27','2019-06-14 13:21:27','Hh Logo','Hh Logo','','inherit','open','closed','','hh_logo','','','2019-06-14 13:22:30','2019-06-14 13:22:30','',1773,'https://www.drfields.com/wp-content/uploads/2019/06/HH_logo.gif',0,'attachment','image/gif',0),(1777,8,'2019-06-14 13:21:28','2019-06-14 13:21:28','Hm Logo Small','Hm Logo Small','','inherit','open','closed','','hm_logo_small','','','2019-06-14 13:36:31','2019-06-14 13:36:31','',1773,'https://www.drfields.com/wp-content/uploads/2019/06/HM_logo_small.gif',0,'attachment','image/gif',0),(1778,8,'2019-06-14 13:21:28','2019-06-14 13:21:28','Homes Small','Homes Small','\n','inherit','open','closed','','homes_small','','','2019-06-14 13:36:53','2019-06-14 13:36:53','',1773,'https://www.drfields.com/wp-content/uploads/2019/06/Homes_small.gif',0,'attachment','image/gif',0),(1779,8,'2019-06-14 13:23:01','2019-06-14 13:23:01','<h4><span id=\"dnn_ctr623_dnnTITLE_titleLabel\" class=\"TitleH2\">Recommended Sites</span></h4>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/recomment-sites.jpg\" alt=\"Recomment Sites\" width=\"200\" height=\"306\" class=\"aligncenter size-full wp-image-1774\" />\r\n\r\n<a href=\"http://www.hacketthemwall.org\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HH_logo.gif\" alt=\"Hh Logo\" width=\"250\" height=\"36\" class=\"alignleft size-full wp-image-1776\" />\r\n www.hacketthemwall.org</a>\r\n\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/portals/0/images/HM_logo_small.gif\" alt=\"\" /></a>\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\">www.hmsportsperformance.com</a>\r\n\r\n<a href=\"http://www.homes4athletes.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/portals/0/images/Homes_small.gif\" alt=\"\" /></a><a href=\"http://www.homes4athletes.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nwww.homes4athletes.com</a>\r\n\r\n<a href=\"http://www.porchiaswish.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/portals/0/images/Barrys-Butterfly-Sun-logo-1.jpg\" alt=\"\" /></a>\r\n<a href=\"http://www.porchiaswish.com\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.porchiaswish.com</a>\r\n\r\n','Recommended Sites','','inherit','closed','closed','','1773-revision-v1','','','2019-06-14 13:23:01','2019-06-14 13:23:01','',1773,'https://www.drfields.com/uncategorized/1773-revision-v1/',0,'revision','',0),(1780,8,'2019-06-14 13:23:24','2019-06-14 13:23:24','<h4><span id=\"dnn_ctr623_dnnTITLE_titleLabel\" class=\"TitleH2\">Recommended Sites</span></h4>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/recomment-sites.jpg\" alt=\"Recomment Sites\" width=\"200\" height=\"306\" class=\"aligncenter size-full wp-image-1774\" />\r\n\r\n<a href=\"http://www.hacketthemwall.org\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HH_logo.gif\" alt=\"Hh Logo\" width=\"250\" height=\"36\" class=\"alignleft size-full wp-image-1776\" /><br>\r\n www.hacketthemwall.org</a>\r\n\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/portals/0/images/HM_logo_small.gif\" alt=\"\" /></a>\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\">www.hmsportsperformance.com</a>\r\n\r\n<a href=\"http://www.homes4athletes.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/portals/0/images/Homes_small.gif\" alt=\"\" /></a><a href=\"http://www.homes4athletes.com\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nwww.homes4athletes.com</a>\r\n\r\n<a href=\"http://www.porchiaswish.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/portals/0/images/Barrys-Butterfly-Sun-logo-1.jpg\" alt=\"\" /></a>\r\n<a href=\"http://www.porchiaswish.com\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.porchiaswish.com</a>\r\n\r\n','Recommended Sites','','inherit','closed','closed','','1773-revision-v1','','','2019-06-14 13:23:24','2019-06-14 13:23:24','',1773,'https://www.drfields.com/uncategorized/1773-revision-v1/',0,'revision','',0),(1782,8,'2019-06-14 13:37:41','2019-06-14 13:37:41','<h4><span id=\"dnn_ctr623_dnnTITLE_titleLabel\" class=\"TitleH2\">Recommended Sites</span></h4>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/recomment-sites.jpg\" alt=\"Recomment Sites\" width=\"200\" height=\"306\" class=\"aligncenter size-full wp-image-1774\" />\r\n\r\n<a href=\"http://www.hacketthemwall.org\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HH_logo.gif\" alt=\"Hh Logo\" width=\"250\" height=\"36\" class=\"alignleft size-full wp-image-1776\" />\r\n<br>\r\n www.hacketthemwall.org</a>\r\n\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HM_logo_small.gif\" alt=\"Hm Logo Small\" width=\"250\" height=\"84\" class=\"aligncenter size-full wp-image-1777\" />\r\n<br>www.hmsportsperformance.com</a>\r\n\r\n<a href=\"http://www.homes4athletes.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Homes_small.gif\" alt=\"Homes Small\" width=\"250\" height=\"55\" class=\"aligncenter size-full wp-image-1778\" />\r\n<br>www.homes4athletes.com</a>\r\n\r\n<a href=\"http://www.porchiaswish.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Barrys-Butterfly-Sun-logo-1.jpg\" alt=\"Barrys Butterfly Sun Logo 1\" width=\"250\" height=\"83\" class=\"aligncenter size-full wp-image-1775\" />\r\n<br>www.porchiaswish.com</a>\r\n\r\n','Recommended Sites','','inherit','closed','closed','','1773-revision-v1','','','2019-06-14 13:37:41','2019-06-14 13:37:41','',1773,'https://www.drfields.com/uncategorized/1773-revision-v1/',0,'revision','',0),(1783,8,'2019-06-14 13:38:30','2019-06-14 13:38:30','<h4><span id=\"dnn_ctr623_dnnTITLE_titleLabel\" class=\"TitleH2\">Recommended Sites</span></h4>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/recomment-sites.jpg\" alt=\"Recomment Sites\" width=\"200\" height=\"306\" class=\"aligncenter size-full wp-image-1774\" />\r\n\r\n<a href=\"http://www.hacketthemwall.org\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HH_logo.gif\" alt=\"Hh Logo\" width=\"250\" height=\"36\" class=\"alignleft size-full wp-image-1776\" />\r\n<br>\r\n www.hacketthemwall.org</a>\r\n\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HM_logo_small.gif\" alt=\"Hm Logo Small\" width=\"250\" height=\"84\" class=\"alignleft size-full wp-image-1777\" />\r\n<br>www.hmsportsperformance.com</a>\r\n\r\n<a href=\"http://www.homes4athletes.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Homes_small.gif\" alt=\"Homes Small\" width=\"250\" height=\"55\" class=\"alignleft size-full wp-image-1778\" />\r\n<br>www.homes4athletes.com</a>\r\n\r\n<a href=\"http://www.porchiaswish.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Barrys-Butterfly-Sun-logo-1.jpg\" alt=\"Barrys Butterfly Sun Logo 1\" width=\"250\" height=\"83\" class=\"alignleft size-full wp-image-1775\" />\r\n<br>www.porchiaswish.com</a>\r\n\r\n','Recommended Sites','','inherit','closed','closed','','1773-revision-v1','','','2019-06-14 13:38:30','2019-06-14 13:38:30','',1773,'https://www.drfields.com/uncategorized/1773-revision-v1/',0,'revision','',0),(1784,8,'2019-06-14 13:38:57','2019-06-14 13:38:57','\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/recomment-sites.jpg\" alt=\"Recomment Sites\" width=\"200\" height=\"306\" class=\"aligncenter size-full wp-image-1774\" />\r\n\r\n<a href=\"http://www.hacketthemwall.org\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HH_logo.gif\" alt=\"Hh Logo\" width=\"250\" height=\"36\" class=\"alignleft size-full wp-image-1776\" />\r\n<br>\r\n www.hacketthemwall.org</a>\r\n\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HM_logo_small.gif\" alt=\"Hm Logo Small\" width=\"250\" height=\"84\" class=\"alignleft size-full wp-image-1777\" />\r\n<br>\r\nwww.hmsportsperformance.com</a>\r\n\r\n<a href=\"http://www.homes4athletes.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Homes_small.gif\" alt=\"Homes Small\" width=\"250\" height=\"55\" class=\"alignleft size-full wp-image-1778\" />\r\n<br>\r\nwww.homes4athletes.com</a>\r\n\r\n<a href=\"http://www.porchiaswish.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Barrys-Butterfly-Sun-logo-1.jpg\" alt=\"Barrys Butterfly Sun Logo 1\" width=\"250\" height=\"83\" class=\"alignleft size-full wp-image-1775\" />\r\n<br>\r\nwww.porchiaswish.com</a>\r\n\r\n','Recommended Sites','','inherit','closed','closed','','1773-revision-v1','','','2019-06-14 13:38:57','2019-06-14 13:38:57','',1773,'https://www.drfields.com/uncategorized/1773-revision-v1/',0,'revision','',0),(1785,8,'2019-06-14 13:46:36','2019-06-14 13:46:36','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/recomment-sites.jpg\" alt=\"Recomment Sites\" width=\"200\" height=\"306\" class=\"aligncenter size-full wp-image-1774\" />\r\n\r\n<a href=\"http://www.hacketthemwall.org\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HH_logo.gif\" alt=\"Hh Logo\" width=\"250\" height=\"36\" class=\" size-full wp-image-1776\" /></a>\r\n<br>\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\"> www.hacketthemwall.org</a>\r\n\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HM_logo_small.gif\" alt=\"Hm Logo Small\" width=\"250\" height=\"84\" class=\" size-full wp-image-1777\" /></a>\r\n<br>\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nwww.hmsportsperformance.com</a>\r\n\r\n<a href=\"http://www.homes4athletes.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Homes_small.gif\" alt=\"Homes Small\" width=\"250\" height=\"55\" class=\" size-full wp-image-1778\" /></a>\r\n<br>\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nwww.homes4athletes.com</a>\r\n\r\n<a href=\"http://www.porchiaswish.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Barrys-Butterfly-Sun-logo-1.jpg\" alt=\"Barrys Butterfly Sun Logo 1\" width=\"250\" height=\"83\" class=\" size-full wp-image-1775\" /></a>\r\n<br>\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\">\r\nwww.porchiaswish.com</a>\r\n\r\n','Recommended Sites','','inherit','closed','closed','','1773-autosave-v1','','','2019-06-14 13:46:36','2019-06-14 13:46:36','',1773,'https://www.drfields.com/uncategorized/1773-autosave-v1/',0,'revision','',0),(1786,8,'2019-06-14 13:41:46','2019-06-14 13:41:46','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/recomment-sites.jpg\" alt=\"Recomment Sites\" width=\"200\" height=\"306\" class=\"aligncenter size-full wp-image-1774\" />\r\n\r\n<a href=\"http://www.hacketthemwall.org\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HH_logo.gif\" alt=\"Hh Logo\" width=\"250\" height=\"36\" class=\"alignleft size-full wp-image-1776\" /></a>\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\"> www.hacketthemwall.org</a>\r\n\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HM_logo_small.gif\" alt=\"Hm Logo Small\" width=\"250\" height=\"84\" class=\"alignleft size-full wp-image-1777\" /></a>\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\">www.hmsportsperformance.com</a>\r\n\r\n<a href=\"http://www.homes4athletes.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Homes_small.gif\" alt=\"Homes Small\" width=\"250\" height=\"55\" class=\"alignleft size-full wp-image-1778\" /></a>\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\">www.homes4athletes.com</a>\r\n\r\n<a href=\"http://www.porchiaswish.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Barrys-Butterfly-Sun-logo-1.jpg\" alt=\"Barrys Butterfly Sun Logo 1\" width=\"250\" height=\"83\" class=\"alignleft size-full wp-image-1775\" /></a>\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\">www.porchiaswish.com</a>\r\n\r\n','Recommended Sites','','inherit','closed','closed','','1773-revision-v1','','','2019-06-14 13:41:46','2019-06-14 13:41:46','',1773,'https://www.drfields.com/uncategorized/1773-revision-v1/',0,'revision','',0),(1787,8,'2019-06-14 13:42:24','2019-06-14 13:42:24','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/recomment-sites.jpg\" alt=\"Recomment Sites\" width=\"200\" height=\"306\" class=\"aligncenter size-full wp-image-1774\" />\r\n\r\n<a href=\"http://www.hacketthemwall.org\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HH_logo.gif\" alt=\"Hh Logo\" width=\"250\" height=\"36\" class=\"alignleft size-full wp-image-1776\" /></a>\r\n<br>\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\"> www.hacketthemwall.org</a>\r\n\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HM_logo_small.gif\" alt=\"Hm Logo Small\" width=\"250\" height=\"84\" class=\"alignleft size-full wp-image-1777\" /></a>\r\n<br>\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\">www.hmsportsperformance.com</a>\r\n\r\n<a href=\"http://www.homes4athletes.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Homes_small.gif\" alt=\"Homes Small\" width=\"250\" height=\"55\" class=\"alignleft size-full wp-image-1778\" /></a>\r\n<br>\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\">www.homes4athletes.com</a>\r\n\r\n<a href=\"http://www.porchiaswish.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Barrys-Butterfly-Sun-logo-1.jpg\" alt=\"Barrys Butterfly Sun Logo 1\" width=\"250\" height=\"83\" class=\"alignleft size-full wp-image-1775\" /></a>\r\n<br>\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\">www.porchiaswish.com</a>\r\n\r\n','Recommended Sites','','inherit','closed','closed','','1773-revision-v1','','','2019-06-14 13:42:24','2019-06-14 13:42:24','',1773,'https://www.drfields.com/uncategorized/1773-revision-v1/',0,'revision','',0),(1788,8,'2019-06-14 13:47:32','2019-06-14 13:47:32','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/recomment-sites.jpg\" alt=\"Recomment Sites\" width=\"200\" height=\"306\" class=\"aligncenter size-full wp-image-1774\" />\r\n\r\n<a href=\"http://www.hacketthemwall.org\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HH_logo.gif\" alt=\"Hh Logo\" width=\"250\" height=\"36\" class=\" size-full wp-image-1776\" />\r\nwww.hacketthemwall.org</a>\r\n\r\n<a href=\"http://www.hmsportsperformance.com/intro.html\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/HM_logo_small.gif\" alt=\"Hm Logo Small\" width=\"250\" height=\"84\" class=\" size-full wp-image-1777\" />\r\n<br>\r\nwww.hmsportsperformance.com</a>\r\n\r\n<a href=\"http://www.homes4athletes.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Homes_small.gif\" alt=\"Homes Small\" width=\"250\" height=\"55\" class=\" size-full wp-image-1778\" /><br>\r\nwww.homes4athletes.com</a>\r\n\r\n<a href=\"http://www.porchiaswish.com\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Barrys-Butterfly-Sun-logo-1.jpg\" alt=\"Barrys Butterfly Sun Logo 1\" width=\"250\" height=\"83\" class=\" size-full wp-image-1775\" /><br>\r\nwww.porchiaswish.com</a>\r\n\r\n','Recommended Sites','','inherit','closed','closed','','1773-revision-v1','','','2019-06-14 13:47:32','2019-06-14 13:47:32','',1773,'https://www.drfields.com/uncategorized/1773-revision-v1/',0,'revision','',0),(1789,8,'2019-06-14 13:48:47','2019-06-14 13:48:47','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_014135.mp4\"][/video]</div>\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_013855.mp4\"][/video]</div>\r\n</div>\r\n\r\n','Kilimanjaro Pre-Hike','','publish','closed','closed','','kilimanjaro-pre-hike','','','2022-07-26 06:49:29','2022-07-26 06:49:29','',0,'https://www.drfields.com/?page_id=1789',0,'page','',0),(1790,8,'2019-06-14 13:48:47','2019-06-14 13:48:47','','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-14 13:48:47','2019-06-14 13:48:47','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(1791,8,'2019-06-14 13:50:31','2019-06-14 13:50:31','Finalhiking (1)','Finalhiking (1)','','inherit','open','closed','','finalhiking-1','','','2019-06-14 13:51:38','2019-06-14 13:51:38','',1789,'https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg',0,'attachment','image/jpeg',0),(1792,8,'2019-06-14 13:50:34','2019-06-14 13:50:34','Finalhiking (2)','Finalhiking (2)','','inherit','open','closed','','finalhiking-2','','','2019-06-14 13:51:47','2019-06-14 13:51:47','',1789,'https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg',0,'attachment','image/jpeg',0),(1793,8,'2019-06-14 13:50:35','2019-06-14 13:50:35','Finalhiking (3)','Finalhiking (3)','','inherit','open','closed','','finalhiking-3','','','2019-06-14 13:51:58','2019-06-14 13:51:58','',1789,'https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg',0,'attachment','image/jpeg',0),(1794,8,'2019-06-14 13:50:38','2019-06-14 13:50:38','Finalhiking (4)','Finalhiking (4)','','inherit','open','closed','','finalhiking-4','','','2019-06-14 13:53:12','2019-06-14 13:53:12','',1789,'https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg',0,'attachment','image/jpeg',0),(1795,8,'2019-06-14 13:50:40','2019-06-14 13:50:40','Finalhiking (5)','Finalhiking (5)','','inherit','open','closed','','finalhiking-5','','','2019-06-14 13:53:24','2019-06-14 13:53:24','',1789,'https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg',0,'attachment','image/jpeg',0),(1796,8,'2019-06-14 13:50:41','2019-06-14 13:50:41','Finalhiking (6)','Finalhiking (6)','','inherit','open','closed','','finalhiking-6','','','2019-06-14 13:53:32','2019-06-14 13:53:32','',1789,'https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg',0,'attachment','image/jpeg',0),(1797,8,'2019-06-14 13:50:43','2019-06-14 13:50:43','Finalhiking (7)','Finalhiking (7)','','inherit','open','closed','','finalhiking-7','','','2019-06-14 13:53:40','2019-06-14 13:53:40','',1789,'https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg',0,'attachment','image/jpeg',0),(1798,8,'2019-06-14 13:50:44','2019-06-14 13:50:44','Finalhiking (8)','Finalhiking (8)','','inherit','open','closed','','finalhiking-8','','','2019-06-14 13:53:48','2019-06-14 13:53:48','',1789,'https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg',0,'attachment','image/jpeg',0),(1799,8,'2019-06-14 13:50:46','2019-06-14 13:50:46','Finalhiking (9)','Finalhiking (9)','','inherit','open','closed','','finalhiking-9','','','2019-06-14 13:53:55','2019-06-14 13:53:55','',1789,'https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg',0,'attachment','image/jpeg',0),(1800,8,'2019-06-14 13:50:48','2019-06-14 13:50:48','Finalhiking (10)','Finalhiking (10)','','inherit','open','closed','','finalhiking-10','','','2019-06-14 13:54:02','2019-06-14 13:54:02','',1789,'https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg',0,'attachment','image/jpeg',0),(1801,8,'2022-07-26 06:48:50','2022-07-26 06:48:50','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\n\n<div class=\"video-flex-wrap\">\n<div class=\"video-box\">[video width=\"5\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_014135.mp4\"][/video]</div>\n<div class=\"video-box\">[video width=\"480\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_013855.mp4\"][/video]</div>\n</div>\n\n','Kilimanjaro Pre-Hike','','inherit','closed','closed','','1789-autosave-v1','','','2022-07-26 06:48:50','2022-07-26 06:48:50','',1789,'https://www.drfields.com/uncategorized/1789-autosave-v1/',0,'revision','',0),(1802,8,'2019-06-14 13:52:00','2019-06-14 13:52:00','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1792\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1793\" />','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-14 13:52:00','2019-06-14 13:52:00','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(1803,8,'2019-06-14 13:52:34','2019-06-14 13:52:34','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\" width=\"157\" height=\"279\" class=\"alignleft size-full wp-image-1791\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" width=\"157\" height=\"279\" class=\"alignleft size-full wp-image-1792\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\" width=\"157\" height=\"279\" class=\"alignleft size-full wp-image-1793\" />','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-14 13:52:34','2019-06-14 13:52:34','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(1804,8,'2019-06-14 13:54:04','2019-06-14 13:54:04','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\" width=\"157\" height=\"279\" class=\"alignleft size-full wp-image-1791\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" width=\"157\" height=\"279\" class=\"alignleft size-full wp-image-1792\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\" width=\"157\" height=\"279\" class=\"alignleft size-full wp-image-1793\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg\" alt=\"Finalhiking (4)\" width=\"158\" height=\"280\" class=\"alignleft size-full wp-image-1794\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg\" alt=\"Finalhiking (5)\" width=\"210\" height=\"280\" class=\"alignleft size-full wp-image-1795\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg\" alt=\"Finalhiking (6)\" width=\"210\" height=\"280\" class=\"alignleft size-full wp-image-1796\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg\" alt=\"Finalhiking (7)\" width=\"158\" height=\"280\" class=\"alignleft size-full wp-image-1797\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg\" alt=\"Finalhiking (8)\" width=\"158\" height=\"280\" class=\"alignleft size-full wp-image-1798\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg\" alt=\"Finalhiking (9)\" width=\"146\" height=\"260\" class=\"alignleft size-full wp-image-1799\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg\" alt=\"Finalhiking (10)\" width=\"146\" height=\"260\" class=\"alignleft size-full wp-image-1800\" />','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-14 13:54:04','2019-06-14 13:54:04','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(1805,8,'2019-06-14 13:54:49','2019-06-14 13:54:49','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\" width=\"157\" height=\"279\" class=\"alignleft size-full wp-image-1791\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" width=\"157\" height=\"279\" class=\"alignleft size-full wp-image-1792\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\" width=\"157\" height=\"279\" class=\"alignleft size-full wp-image-1793\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg\" alt=\"Finalhiking (4)\" width=\"158\" height=\"280\" class=\"alignleft size-full wp-image-1794\" />\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg\" alt=\"Finalhiking (5)\" width=\"210\" height=\"280\" class=\"alignleft size-full wp-image-1795\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg\" alt=\"Finalhiking (6)\" width=\"210\" height=\"280\" class=\"alignleft size-full wp-image-1796\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg\" alt=\"Finalhiking (7)\" width=\"158\" height=\"280\" class=\"alignleft size-full wp-image-1797\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg\" alt=\"Finalhiking (8)\" width=\"158\" height=\"280\" class=\"alignleft size-full wp-image-1798\" />\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg\" alt=\"Finalhiking (9)\" width=\"146\" height=\"260\" class=\"alignleft size-full wp-image-1799\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg\" alt=\"Finalhiking (10)\" width=\"146\" height=\"260\" class=\"alignleft size-full wp-image-1800\" />','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-14 13:54:49','2019-06-14 13:54:49','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(1806,8,'2019-06-14 13:56:06','2019-06-14 13:56:06','<p class=\"text-center\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\" width=\"157\" height=\"279\" class=\"alignleft size-full wp-image-1791\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" width=\"157\" height=\"279\" class=\"alignleft size-full wp-image-1792\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\" width=\"157\" height=\"279\" class=\"alignleft size-full wp-image-1793\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg\" alt=\"Finalhiking (4)\" width=\"158\" height=\"280\" class=\"alignleft size-full wp-image-1794\" /></p>\r\n\r\n<p class=\"text-center\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg\" alt=\"Finalhiking (5)\" width=\"210\" height=\"280\" class=\"alignleft size-full wp-image-1795\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg\" alt=\"Finalhiking (6)\" width=\"210\" height=\"280\" class=\"alignleft size-full wp-image-1796\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg\" alt=\"Finalhiking (7)\" width=\"158\" height=\"280\" class=\"alignleft size-full wp-image-1797\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg\" alt=\"Finalhiking (8)\" width=\"158\" height=\"280\" class=\"alignleft size-full wp-image-1798\" /></p>\r\n\r\n<p class=\"text-center\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg\" alt=\"Finalhiking (9)\" width=\"146\" height=\"260\" class=\"alignleft size-full wp-image-1799\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg\" alt=\"Finalhiking (10)\" width=\"146\" height=\"260\" class=\"alignleft size-full wp-image-1800\" /></p>','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-14 13:56:06','2019-06-14 13:56:06','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(1807,8,'2019-06-14 13:58:12','2019-06-14 13:58:12','<p class=\"text-center\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg\" alt=\"Finalhiking (4)\" /></p>\r\n\r\n<p class=\"text-center\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg\" alt=\"Finalhiking (5)\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg\" alt=\"Finalhiking (6)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg\" alt=\"Finalhiking (7)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg\" alt=\"Finalhiking (8)\" /></p>\r\n\r\n<p class=\"text-center\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg\" alt=\"Finalhiking (9)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg\" alt=\"Finalhiking (10)\" /></p>','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-14 13:58:12','2019-06-14 13:58:12','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(1808,8,'2019-06-14 13:59:24','2019-06-14 13:59:24','<p class=\"img-section\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg\" alt=\"Finalhiking (4)\" /></p>\r\n\r\n<p class=\"img-section\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg\" alt=\"Finalhiking (5)\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg\" alt=\"Finalhiking (6)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg\" alt=\"Finalhiking (7)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg\" alt=\"Finalhiking (8)\" /></p>\r\n\r\n<p class=\"img-section\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg\" alt=\"Finalhiking (9)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg\" alt=\"Finalhiking (10)\" /></p>','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-14 13:59:24','2019-06-14 13:59:24','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(1809,8,'2019-06-14 14:03:56','2019-06-14 14:03:56','<p class=\"img-section\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg\" alt=\"Finalhiking (4)\" />\r\n</p>\r\n\r\n<p class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg\" alt=\"Finalhiking (5)\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg\" alt=\"Finalhiking (6)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg\" alt=\"Finalhiking (7)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg\" alt=\"Finalhiking (8)\" />\r\n</p>\r\n\r\n<p class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg\" alt=\"Finalhiking (9)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg\" alt=\"Finalhiking (10)\" /></p>','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-14 14:03:56','2019-06-14 14:03:56','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(1810,8,'2019-06-14 14:09:16','2019-06-14 14:09:16','<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. Unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. But these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A Fields.\r\n\r\n<a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> and <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD DC, \"<a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>What Is Prolotherapy?</h4>\r\n<a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> is a shortened form of \"proliferation therapy\" and is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\r\n\r\nWhen the body suffers an injury, it responds by producing growth factors. The process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand: areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. This means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\r\n\r\nUnfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\r\n\r\n<h4>How Does Prolotherapy Work?</h4>\r\n<a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\r\n\r\n<h4>Does Prolotherapy Work?</h4>\r\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"/how-prolotherapy-can-eliminate-joint-pain-without-surgery/\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\r\n\r\n<h4>What Conditions Can Be Treated With Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\n<h4>How Did Prolotherapy Begin?</h4>\r\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\r\n\r\nProlotherapy has been shown to have a beneficial effect for many patients and to help them <a href=\"/articles/prolo-news/joint-surgery-think-again-learn-about-prolotherapy/\">avoid surgery</a> as a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\r\n\r\n<h4>What Can I Expect From Prolotherapy Treatment?</h4>\r\nBefore you can be treated using <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\r\n\">Prolotherapy</a>, you will be examined by Dr. Peter A Fields, the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition, review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\r\n\r\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\r\n\r\nYou are then sent home to rest and gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\r\n\r\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\r\n\r\n<h4>Los Angeles Prolotherapy</h4>\r\nPeter A. Fields MD DC is an internationally recognized expert in the field of regenerative medicine, specifically in all forms of Prolotherapy – dextrose Prolotherapy, PRP Prolotherapy and Stem Cell. Dr. Fields is known as the “The Athletic Doc®” has completed nine Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\r\n\r\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\" The professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs and have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\r\n\r\n<h4>Are you a Candidate for Prolotherapy?</h4\r\n>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','inherit','closed','closed','','1667-revision-v1','','','2019-06-14 14:09:16','2019-06-14 14:09:16','',1667,'https://www.drfields.com/uncategorized/1667-revision-v1/',0,'revision','',0),(1811,8,'2019-06-14 14:12:47','2019-06-14 14:12:47','<div class=\"img-section\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg\" alt=\"Finalhiking (4)\" />\r\n</div>\r\n\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg\" alt=\"Finalhiking (5)\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg\" alt=\"Finalhiking (6)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg\" alt=\"Finalhiking (7)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg\" alt=\"Finalhiking (8)\" />\r\n</div>\r\n\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg\" alt=\"Finalhiking (9)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg\" alt=\"Finalhiking (10)\" /></div>','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-14 14:12:47','2019-06-14 14:12:47','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(1812,8,'2019-06-14 14:16:06','2019-06-14 14:16:06','<div class=\"img-section\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg\" alt=\"Finalhiking (4)\" />\r\n</div>\r\n\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg\" alt=\"Finalhiking (5)\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg\" alt=\"Finalhiking (6)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg\" alt=\"Finalhiking (7)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg\" alt=\"Finalhiking (8)\" />\r\n</div>\r\n\r\n<div class=\"clear\">\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg\" alt=\"Finalhiking (9)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg\" alt=\"Finalhiking (10)\" /></div>','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-14 14:16:06','2019-06-14 14:16:06','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(1813,8,'2019-06-14 14:16:12','2019-06-14 14:16:12','<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg\" alt=\"Finalhiking (4)\" />\r\n</div>\r\n\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg\" alt=\"Finalhiking (5)\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg\" alt=\"Finalhiking (6)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg\" alt=\"Finalhiking (7)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg\" alt=\"Finalhiking (8)\" />\r\n</div>\r\n\r\n<div class=\"clear\">\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg\" alt=\"Finalhiking (9)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg\" alt=\"Finalhiking (10)\" /></div>','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-14 14:16:12','2019-06-14 14:16:12','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(1814,8,'2019-06-14 14:19:43','2019-06-14 14:19:43','<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1) class=\"aligncenter\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" class=\"aligncenter\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\"  class=\"aligncenter\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg\" alt=\"Finalhiking (4)\" class=\"aligncenter\"/>\r\n</div>\r\n\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg\" alt=\"Finalhiking (5)\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg\" alt=\"Finalhiking (6)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg\" alt=\"Finalhiking (7)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg\" alt=\"Finalhiking (8)\" />\r\n</div>\r\n\r\n<div class=\"clear\">\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg\" alt=\"Finalhiking (9)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg\" alt=\"Finalhiking (10)\" /></div>','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-14 14:19:43','2019-06-14 14:19:43','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(1815,8,'2019-06-14 14:22:00','2019-06-14 14:22:00','<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\"  width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg\" alt=\"Finalhiking (4)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\"/>\r\n</div>\r\n\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg\" alt=\"Finalhiking (5)\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg\" alt=\"Finalhiking (6)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg\" alt=\"Finalhiking (7)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg\" alt=\"Finalhiking (8)\" />\r\n</div>\r\n\r\n<div class=\"clear\">\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg\" alt=\"Finalhiking (9)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg\" alt=\"Finalhiking (10)\" /></div>','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-14 14:22:00','2019-06-14 14:22:00','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(1816,8,'2019-06-14 14:25:58','2019-06-14 14:25:58','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" class=\"alignleft size-full wp-image-1685\" /><h4>PRP Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is a PRP Doctor in Los Angeles and the founder of OrthoRegen. Dr. Fields is a leading expert in using (PRP) Platelet Rich Plasma therapy to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world. Dr. Fields help people avoid unnecessary orthopedic surgeries whether arthroscopic or full surgery.\r\n\r\n<h4>What is a PRP Doctor?</h4>\r\n\r\nA PRP Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. PRP Doctors like Dr. Fields use Platelet Rich Plasma Injections that help accelerate the normal healing process. Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of PRP Regenerative Treatments.\r\n\r\n<h4>What Does PRP stand for?</h4>\r\n\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as platelets, white blood cells, and red cells. The Harvest method that Dr. Fields uses concentrates the platelets 7-10 times of what is generally found in blood. Other systems concentrate them, but to a lesser extent.\r\n\r\n<h4>What is PRP Treatment?</h4>\r\n\r\nPRP treatment, as used in regenerative orthopedics, is a non-surgical healing treatment for healing soft tissue performed by a PRP Doctor. Dr. Fields makes precise injections of your own concentrated blood (PRP) into the affected areas to promote healing of musculoskeletal problems. Blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site.\r\n\r\n<h4>Is PRP Treatment Safe?</h4>\r\n\r\nPRP treatment is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities thoroughly with patients during the pre-treatment consultation.\r\nWhat Does a PRP Doctor Treat?\r\n\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that Dr. Fields treats. PRP has also been effective in treating arthritis, though more severe cases get better results with Dr. Fields’ Stem Cell treatments.\r\n\r\nDr. Fields has had great success in treating chronic pain and sports injuries including:\r\n<ul>\r\n    <li><strong>Knee Injuries:</strong> ACL, MCL LCL, Meniscus, Arthritis, Kneecap Instability</li>\r\n    See a complete list of Knee Injuries Treated with Prolotherapy here\r\n    <li><strong>Elbow Injuries:</strong> Tennis Elbow, Medial Epicondylitis,Tendonitis</li>\r\n    See a complete list of Elbow Injuries Treated with Prolotherapy here.\r\n    <li><strong>Shoulder Injuries:</strong> Rotator Cuff Tears, Labrum Tears, Tenositis</li>\r\n    See a complete list of Shoulder Injuries Treated with Prolotherapy here.\r\n    <li><strong>Back Injuries:</strong> Arthritis, Facet Joints, Sacro-Iliac dysfunction</li>\r\n    See a complete list of Back Injuries Treated with Prolotherapy here.\r\n    <li><strong>Hip Injuries:</strong> Tenositis, Bursitis,Labrum</li>\r\n    See a complete list of Hip Injuries Treated with Prolotherapy here.\r\n    <li><strong>Foot/Ankle Injuries:</strong> Ankle Sprains, Arthritis, Achilles Dysfunction, Tendonitis</li>\r\n    See a complete list of Foot/Ankle Injuries Treated with Prolotherapy here.\r\n    <li><strong>Hand/Wrist/ Injuries:</strong> Finger/Joint Tendinitis, Ligament Tears, Arthritis, Carpal tunnel</li>\r\n    See a complete list of Hand/Wrist Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\n\r\nCall <a href=\"tel:310-455-8242\" rel=\"noopener noreferrer\" >310-455-8242</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\" >contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','PRP Doctor','','inherit','closed','closed','','266-revision-v1','','','2019-06-14 14:25:58','2019-06-14 14:25:58','',266,'https://www.drfields.com/uncategorized/266-revision-v1/',0,'revision','',0),(1817,8,'2019-06-14 14:28:23','2019-06-14 14:28:23','\r\n\r\nAnyone suffering with arthritis is familiar with the ongoing pain, joint stiffness, and the limitations the disease causes. Arthritis damages the joints and the progressive loss of cartilage changes the joint structure and the way the joint moves. Arthritis affects us at home, in our work place, and when we try to enjoy the activities we love. In addition, arthritis affects our finances, from hours of work lost to the cost for surgery, rehabilitation, various treatments, pain medications and disability. Arthritis is a huge health concern. \r\n\r\n<h4>What’s the Reason behind Arthritis?</h4>\r\n\r\nArthritis does not just happen because of old age. There is a reason for it. Arthritis does occur over time but it is a result of joint instability that transpires after some type of injury that never fully healed. Of course, the eventual cartilage loss with its inhibition of joint motion plays a central role in arthritis, but that’s not where it all began. Injury to or failure of other joint structures, such as an injured ligament or tendon, actually initiated the change in equilibrium that led to this breakdown of cartilage. Arthritis almost always begins with ligament weakness or injury. The injury initiates a cycle of abnormal motion in the joint which eventually changes the structure and function of the joint. Ligaments hold the bones together, and along with healthy cartilage and other soft tissue, allow for smooth joint motion. When the ligaments are weak due to injury, the motion becomes uneven, putting stress on other areas of the joint, which causes one area of bone to bear additional weight on the articular cartilage. This uneven distribution worsens and worsens with ongoing joint stress, weakening the ligaments further, causing additional instability of the joint, and leading to the eventual breakdown of the articular cartilage. The joint then is unable to glide smoothly which causes limitations in joint function. The unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing, exposure of the underlying subchondral bone, which precipitates the process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called osteoarthritis.\r\n\r\n<h4>Arthritis Pain and Symptoms</h4>\r\n\r\nArthritis typically causes pain, but not everyone is symptomatic. Plus, people with the same degree of arthritis can experience various levels of pain. When pain does arise, it generally occurs with activity and is relieved by rest. Arthritis can affect any joint, but it is more common in the weight bearing joints, like the knees, hips, and back. The symptoms generally start and get worse with movement and activity, and go away at rest. As the condition progresses, pain is present at rest too, and is commonly experienced as a non-localized deep, aching pain accompanied by joint stiffness. In time, the aching and stiffness curtail activity and function. Since arthritis puts limitations on life, and the enjoyment of doing the things people love, psychological distress is understandably another associated factor endured by those who suffer from it.\r\n\r\nAnother interesting point is that the pain in arthritis is not coming from the cartilage! There are no nerve fibers or blood vessels in cartilage tissue, and therefore it is incapable of generating pain or inflammation or any of the symptoms commonly described with arthritis.  The pain actually comes from the ligaments, tendons and their insertion sites at the bone, which are all highly innervated. \r\n\r\n<h4>Diagnosing Arthritis</h4>\r\n\r\nArthritis is diagnosed after a thorough history and physical examination. Radiography can be utilized to confirm the presence of joint space narrowing and bone spurs, and to rule out the presence of other conditions.\r\n\r\nRegenerative Orthopedic Treatments Target and Repair the Source of Injury\r\nSince arthritis begins with injury to the soft tissue structures like the ligaments and tendons, treatments that target repair of these structures are needed to restore the joint physiology and biomechanics. Otherwise the cycle will continue. Regenerative Orthopedic therapies, such as Stem Cell Therapy, PRP and Prolotherapy, target the ligaments, tendons and their insertion sites, and treat the source of the problem, fixing the involved structures and stabilizing the joint. They put an end to the abnormal joint motion so the joint becomes stabilized and effectively stop the cycle. \r\n\r\nIt is important to choose treatments that repair, rather than those that just cover up or mask the symptoms. Regenerative Orthopedic treatments increase blood flow in the tissue which causes an increase in the flow of immune cells to the injured tissue, which triggers the repair process.  The solutions act as proliferants and boost the natural wound healing cascades, resulting in strengthening and repair of the injured joint structures.  Regenerative Orthopedics offers benefits in terms of pain relief, regenerative properties, and cartilage repair for people affected by arthritis. \r\nIn patients with more advanced arthritic conditions, the Gold Standard in Stem Cell Therapy can be utilized, which combines Prolotherapy with components of blood, fat, and bone marrow. Many clinics use only one or two of these procedures, but we have discovered that this combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint. \r\n\r\nArthritis is a complex and unique condition, affecting individuals and those they love. In a time when healthcare providers have limited options for effective arthritis treatment and pain resolution, Regenerative Orthopedics is a promising treatment option to aid in relief of pain, results in increased motion, and provides gains in function and quality of life. These treatments stimulate the regrowth of the injured tissue, and tighten the ligaments around the joint, which often reduces joint pain immediately.   They are safe and effective and are amazing non-surgical alteratives, with the potential to slow the disease progression, get rid of pain, and promote the regeneration of cartilage. What a great opportunity for healing and return to function for those suffering from the pain and disability of arthritis! \r\n','Relieve Arthritis Pain','','publish','closed','closed','','relieve-arthritis-pain','','','2019-06-14 14:28:23','2019-06-14 14:28:23','',0,'https://www.drfields.com/?page_id=1817',0,'page','',0),(1818,8,'2019-06-14 14:28:23','2019-06-14 14:28:23','\r\n\r\nAnyone suffering with arthritis is familiar with the ongoing pain, joint stiffness, and the limitations the disease causes. Arthritis damages the joints and the progressive loss of cartilage changes the joint structure and the way the joint moves. Arthritis affects us at home, in our work place, and when we try to enjoy the activities we love. In addition, arthritis affects our finances, from hours of work lost to the cost for surgery, rehabilitation, various treatments, pain medications and disability. Arthritis is a huge health concern. \r\n\r\n<h4>What’s the Reason behind Arthritis?</h4>\r\n\r\nArthritis does not just happen because of old age. There is a reason for it. Arthritis does occur over time but it is a result of joint instability that transpires after some type of injury that never fully healed. Of course, the eventual cartilage loss with its inhibition of joint motion plays a central role in arthritis, but that’s not where it all began. Injury to or failure of other joint structures, such as an injured ligament or tendon, actually initiated the change in equilibrium that led to this breakdown of cartilage. Arthritis almost always begins with ligament weakness or injury. The injury initiates a cycle of abnormal motion in the joint which eventually changes the structure and function of the joint. Ligaments hold the bones together, and along with healthy cartilage and other soft tissue, allow for smooth joint motion. When the ligaments are weak due to injury, the motion becomes uneven, putting stress on other areas of the joint, which causes one area of bone to bear additional weight on the articular cartilage. This uneven distribution worsens and worsens with ongoing joint stress, weakening the ligaments further, causing additional instability of the joint, and leading to the eventual breakdown of the articular cartilage. The joint then is unable to glide smoothly which causes limitations in joint function. The unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing, exposure of the underlying subchondral bone, which precipitates the process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called osteoarthritis.\r\n\r\n<h4>Arthritis Pain and Symptoms</h4>\r\n\r\nArthritis typically causes pain, but not everyone is symptomatic. Plus, people with the same degree of arthritis can experience various levels of pain. When pain does arise, it generally occurs with activity and is relieved by rest. Arthritis can affect any joint, but it is more common in the weight bearing joints, like the knees, hips, and back. The symptoms generally start and get worse with movement and activity, and go away at rest. As the condition progresses, pain is present at rest too, and is commonly experienced as a non-localized deep, aching pain accompanied by joint stiffness. In time, the aching and stiffness curtail activity and function. Since arthritis puts limitations on life, and the enjoyment of doing the things people love, psychological distress is understandably another associated factor endured by those who suffer from it.\r\n\r\nAnother interesting point is that the pain in arthritis is not coming from the cartilage! There are no nerve fibers or blood vessels in cartilage tissue, and therefore it is incapable of generating pain or inflammation or any of the symptoms commonly described with arthritis.  The pain actually comes from the ligaments, tendons and their insertion sites at the bone, which are all highly innervated. \r\n\r\n<h4>Diagnosing Arthritis</h4>\r\n\r\nArthritis is diagnosed after a thorough history and physical examination. Radiography can be utilized to confirm the presence of joint space narrowing and bone spurs, and to rule out the presence of other conditions.\r\n\r\nRegenerative Orthopedic Treatments Target and Repair the Source of Injury\r\nSince arthritis begins with injury to the soft tissue structures like the ligaments and tendons, treatments that target repair of these structures are needed to restore the joint physiology and biomechanics. Otherwise the cycle will continue. Regenerative Orthopedic therapies, such as Stem Cell Therapy, PRP and Prolotherapy, target the ligaments, tendons and their insertion sites, and treat the source of the problem, fixing the involved structures and stabilizing the joint. They put an end to the abnormal joint motion so the joint becomes stabilized and effectively stop the cycle. \r\n\r\nIt is important to choose treatments that repair, rather than those that just cover up or mask the symptoms. Regenerative Orthopedic treatments increase blood flow in the tissue which causes an increase in the flow of immune cells to the injured tissue, which triggers the repair process.  The solutions act as proliferants and boost the natural wound healing cascades, resulting in strengthening and repair of the injured joint structures.  Regenerative Orthopedics offers benefits in terms of pain relief, regenerative properties, and cartilage repair for people affected by arthritis. \r\nIn patients with more advanced arthritic conditions, the Gold Standard in Stem Cell Therapy can be utilized, which combines Prolotherapy with components of blood, fat, and bone marrow. Many clinics use only one or two of these procedures, but we have discovered that this combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint. \r\n\r\nArthritis is a complex and unique condition, affecting individuals and those they love. In a time when healthcare providers have limited options for effective arthritis treatment and pain resolution, Regenerative Orthopedics is a promising treatment option to aid in relief of pain, results in increased motion, and provides gains in function and quality of life. These treatments stimulate the regrowth of the injured tissue, and tighten the ligaments around the joint, which often reduces joint pain immediately.   They are safe and effective and are amazing non-surgical alteratives, with the potential to slow the disease progression, get rid of pain, and promote the regeneration of cartilage. What a great opportunity for healing and return to function for those suffering from the pain and disability of arthritis! \r\n','Relieve Arthritis Pain','','inherit','closed','closed','','1817-revision-v1','','','2019-06-14 14:28:23','2019-06-14 14:28:23','',1817,'https://www.drfields.com/uncategorized/1817-revision-v1/',0,'revision','',0),(1820,8,'2019-06-14 14:32:45','2019-06-14 14:32:45','<div class=\"col-md-8\">\r\n<h4>Chelation Therapy</h4>\r\nChelation (pronounced-“key·lay·shun”) was developed initially as an industrial application in the early 1900’s. It was not until the era of World War II that any medical application was recognized. Initially the treatment was for gas poisoning and exposure to radioactivity. The word, ‘chelation’ is taken from the Greek word “chele”, meaning “claw”. Using this sense of the word, it means to grab or remove an unwanted substance from the body. Chelation is the term used to describe the removal of heavy metal toxicity from the body, as in lead poisoning, iron overload, and aluminum overload. Chelation therapy using EDTA, ethylene diamine tetraacetic acid, has been approved by the U.S. Food and Drug Administration (FDA) as a treatment for lead poisoning and heavy metal toxicity for more than forty years.\r\n\r\nThe theory behind Chelation Therapy is that certain drugs, chelating agents, function by making chemical bonds with heavy metal ions in the body, making these metals less chemically reactive. The resulting compounds, bonded agents and heavy metals, become water soluble, allowing them to enter the bloodstream and be excreted through urination. The chelating process can also remove beneficial metals and nutrients from the body, for example, zinc and calcium; these must be supplemented under the direction of a physician. Because these heavy metal compounds are excreted through the urine, kidney function must also be monitored. To ensure absolute safety, Chelation Therapy should be done by a qualified, licensed physician.\r\n\r\nChelation Therapy has been successfully used for iron overload from multiple transfusions, aluminum overload due to hemodialysis, copper toxicity due to Wilson’s disease and acute heavy metal toxicity. As part of any therapeutic program, lifestyle modifications are encouraged. These would include stress reduction, caffeine avoidance, alcohol limitation, smoking cessation, exercise, and nutritional counseling.\r\n\r\nAt Pacific Prolotherapy and Medical Wellness Center, our goal is for our patients to have an active, healthy, pain free life. We want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment.\r\n\r\n<strong>Call today, [phone]</strong>.\r\n\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\r\n 	<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n 	<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n 	<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n 	<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n 	<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n 	<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Chelation Therapy','','draft','open','closed','','chelation-therapy','','','2020-10-05 23:54:50','2020-10-05 23:54:50','',0,'https://www.drfields.com/?p=1820',0,'post','',0),(1821,8,'2019-06-14 14:32:45','2019-06-14 14:32:45','<div class=\"col-md-8\">\r\n<h4>Chelation Therapy</span></h4>\r\n\r\nChelation (pronounced-“key·lay·shun”) was developed initially as an industrial application in the early 1900’s. It was not until the era of World War II that any medical application was recognized. Initially the treatment was for gas poisoning and exposure to radioactivity. The word, ‘chelation’ is taken from the Greek word “chele”, meaning “claw”. Using this sense of the word, it means to grab or remove an unwanted substance from the body. Chelation is the term used to describe the removal of heavy metal toxicity from the body, as in lead poisoning, iron overload, and aluminum overload. Chelation therapy using EDTA, ethylene diamine tetraacetic acid, has been approved by the U.S. Food and Drug Administration (FDA) as a treatment for lead poisoning and heavy metal toxicity for more than forty years.\r\n\r\nThe theory behind Chelation Therapy is that certain drugs, chelating agents, function by making chemical bonds with heavy metal ions in the body, making these metals less chemically reactive. The resulting compounds, bonded agents and heavy metals, become water soluble, allowing them to enter the bloodstream and be excreted through urination. The chelating process can also remove beneficial metals and nutrients from the body, for example, zinc and calcium; these must be supplemented under the direction of a physician. Because these heavy metal compounds are excreted through the urine, kidney function must also be monitored. To ensure absolute safety, Chelation Therapy should be done by a qualified, licensed physician.\r\n\r\nChelation Therapy has been successfully used for iron overload from multiple transfusions, aluminum overload due to hemodialysis, copper toxicity due to Wilson’s disease and acute heavy metal toxicity. As part of any therapeutic program, lifestyle modifications are encouraged. These would include stress reduction, caffeine avoidance, alcohol limitation, smoking cessation, exercise, and nutritional counseling.\r\n\r\nAt Pacific Prolotherapy and Medical Wellness Center, our goal is for our patients to have an active, healthy, pain free life. We want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment.\r\n\r\n<strong>Call today, (310) 776-6154</strong>.\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n\r\n<ul>\r\n 	<li><a href=\"http://www.drfields.com/Medical-Services/Orthopedic-Sports-Medicine\">Orthopedic &amp; Sports Medicine</a></li>\r\n 	<li><a href=\"http://www.drfields.com/Medical-Services/Intravenous-IV-Nutritional-Therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n 	<li><a href=\"http://www.drfields.com/Medical-Services/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n 	<li><a href=\"http://www.drfields.com/Medical-Services/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n 	<li><a href=\"http://www.drfields.com/Medical-Services/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n 	<li><a href=\"http://www.drfields.com/Medical-Services/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n 	<li><a href=\"http://www.drfields.com/Medical-Services/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Chelation Therapy','','inherit','closed','closed','','1820-revision-v1','','','2019-06-14 14:32:45','2019-06-14 14:32:45','',1820,'https://www.drfields.com/uncategorized/1820-revision-v1/',0,'revision','',0),(1822,8,'2019-06-14 14:33:26','2019-06-14 14:33:26','<div class=\"col-md-8\">\r\n<h4>Chelation Therapy</span></h4>\r\n\r\nChelation (pronounced-“key·lay·shun”) was developed initially as an industrial application in the early 1900’s. It was not until the era of World War II that any medical application was recognized. Initially the treatment was for gas poisoning and exposure to radioactivity. The word, ‘chelation’ is taken from the Greek word “chele”, meaning “claw”. Using this sense of the word, it means to grab or remove an unwanted substance from the body. Chelation is the term used to describe the removal of heavy metal toxicity from the body, as in lead poisoning, iron overload, and aluminum overload. Chelation therapy using EDTA, ethylene diamine tetraacetic acid, has been approved by the U.S. Food and Drug Administration (FDA) as a treatment for lead poisoning and heavy metal toxicity for more than forty years.\r\n\r\nThe theory behind Chelation Therapy is that certain drugs, chelating agents, function by making chemical bonds with heavy metal ions in the body, making these metals less chemically reactive. The resulting compounds, bonded agents and heavy metals, become water soluble, allowing them to enter the bloodstream and be excreted through urination. The chelating process can also remove beneficial metals and nutrients from the body, for example, zinc and calcium; these must be supplemented under the direction of a physician. Because these heavy metal compounds are excreted through the urine, kidney function must also be monitored. To ensure absolute safety, Chelation Therapy should be done by a qualified, licensed physician.\r\n\r\nChelation Therapy has been successfully used for iron overload from multiple transfusions, aluminum overload due to hemodialysis, copper toxicity due to Wilson’s disease and acute heavy metal toxicity. As part of any therapeutic program, lifestyle modifications are encouraged. These would include stress reduction, caffeine avoidance, alcohol limitation, smoking cessation, exercise, and nutritional counseling.\r\n\r\nAt Pacific Prolotherapy and Medical Wellness Center, our goal is for our patients to have an active, healthy, pain free life. We want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment.\r\n\r\n<strong>Call today, (310) 776-6154</strong>.\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n 	<li><a href=\"http://www.drfields.com/Medical-Services/Orthopedic-Sports-Medicine\">Orthopedic &amp; Sports Medicine</a></li>\r\n 	<li><a href=\"http://www.drfields.com/Medical-Services/Intravenous-IV-Nutritional-Therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n 	<li><a href=\"http://www.drfields.com/Medical-Services/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n 	<li><a href=\"http://www.drfields.com/Medical-Services/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n 	<li><a href=\"http://www.drfields.com/Medical-Services/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n 	<li><a href=\"http://www.drfields.com/Medical-Services/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n 	<li><a href=\"http://www.drfields.com/Medical-Services/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Chelation Therapy','','inherit','closed','closed','','1820-revision-v1','','','2019-06-14 14:33:26','2019-06-14 14:33:26','',1820,'https://www.drfields.com/uncategorized/1820-revision-v1/',0,'revision','',0),(1826,8,'2019-06-14 14:41:47','2019-06-14 14:41:47','<div class=\"col-md-8\">\r\n<h4>Chelation Therapy</span></h4>\r\n\r\nChelation (pronounced-“key·lay·shun”) was developed initially as an industrial application in the early 1900’s. It was not until the era of World War II that any medical application was recognized. Initially the treatment was for gas poisoning and exposure to radioactivity. The word, ‘chelation’ is taken from the Greek word “chele”, meaning “claw”. Using this sense of the word, it means to grab or remove an unwanted substance from the body. Chelation is the term used to describe the removal of heavy metal toxicity from the body, as in lead poisoning, iron overload, and aluminum overload. Chelation therapy using EDTA, ethylene diamine tetraacetic acid, has been approved by the U.S. Food and Drug Administration (FDA) as a treatment for lead poisoning and heavy metal toxicity for more than forty years.\r\n\r\nThe theory behind Chelation Therapy is that certain drugs, chelating agents, function by making chemical bonds with heavy metal ions in the body, making these metals less chemically reactive. The resulting compounds, bonded agents and heavy metals, become water soluble, allowing them to enter the bloodstream and be excreted through urination. The chelating process can also remove beneficial metals and nutrients from the body, for example, zinc and calcium; these must be supplemented under the direction of a physician. Because these heavy metal compounds are excreted through the urine, kidney function must also be monitored. To ensure absolute safety, Chelation Therapy should be done by a qualified, licensed physician.\r\n\r\nChelation Therapy has been successfully used for iron overload from multiple transfusions, aluminum overload due to hemodialysis, copper toxicity due to Wilson’s disease and acute heavy metal toxicity. As part of any therapeutic program, lifestyle modifications are encouraged. These would include stress reduction, caffeine avoidance, alcohol limitation, smoking cessation, exercise, and nutritional counseling.\r\n\r\nAt Pacific Prolotherapy and Medical Wellness Center, our goal is for our patients to have an active, healthy, pain free life. We want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment.\r\n\r\n<strong>Call today, (310) 776-6154</strong>.\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\r\n<li><a href=\"/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n<li><a href=\"/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n<li><a href=\"/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n<li><a href=\"/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n<li><a href=\"/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n<li><a href=\"/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Chelation Therapy','','inherit','closed','closed','','1820-revision-v1','','','2019-06-14 14:41:47','2019-06-14 14:41:47','',1820,'https://www.drfields.com/uncategorized/1820-revision-v1/',0,'revision','',0),(1827,8,'2019-06-14 14:42:26','2019-06-14 14:42:26','Iv Nutritional Therapy','Iv Nutritional Therapy','','inherit','open','closed','','iv-nutritional-therapy','','','2019-06-14 14:42:31','2019-06-14 14:42:31','',0,'https://www.drfields.com/wp-content/uploads/2019/06/IV-Nutritional-Therapy.jpg',0,'attachment','image/jpeg',0),(1831,8,'2019-06-14 14:50:37','2019-06-14 14:50:37','<div class=\"col-md-8\">\r\n<h4>Bio-Identical Hormones</h4>\r\n<strong><img class=\"alignleft size-full wp-image-1832\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Bio-Identical-Hormones.jpg\" alt=\"Bio Identical Hormones\" width=\"200\" height=\"171\" />Is It For You?</strong>\r\n\r\n<strong>As we age, our hormone production changes. When hormones are in balance, studies show that your body operates at its healthiest and most efficient level. </strong>Unfortunately, the levels of the hormones your body needs to function optimally decreases as you age. And with the stresses of life, whether physical, mental or emotional, our hormone systems have added demands.<strong> Although originally thought of for women during the menopausal years, hormone deficiency can affect women and men at any age. More recent therapies promise anti-aging effects and possible deferral of the diseases of aging.</strong>\r\n\r\n<strong>Some things that can be affected by a hormone deficiency are:</strong> hot flashes; memory loss; fatigue; muscle strength; libido; insomnia, effects of aging; irritability; mood; hair loss, immune function, stress; healing after a sprain, strain or injury; muscle aches; vaginal dryness; dry skin; bone density; insomnia; blood pressure; blood sugar levels; constipation and more.\r\n\r\n<a href=\"https://www.drfields.com/contact/\"><img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg\" alt=\"\" /></a>\r\n\r\n<strong>At Pacific Prolotherapy and Medical Wellness Center we use Bio-Identical Hormones</strong> to supplement what is out of balance in your body. <strong>Bio-identical hormone replacement therapy (BHRT) uses supplemental doses of hormones with a chemical structure identical to endogenous human hormones (hormones naturally produced in the human body).</strong> BHRT differs from conventional hormone replacement therapy which by definition uses animal or synthetic hormones whose structures differ from those produced in the human body. Conventional hormone replacement therapy also uses patented medicines that come in standard sizes. This is generally a one-size-fits-all dosage regime.\r\n\r\n<strong>In an individualized approach like the one at Pacific Prolotherapy and Medical Wellness Center</strong>,\r\nwe begin by evaluating your need for hormone replacement therapy with a thorough history followed up by comprehensive testing. Once we determine where hormonal deficiencies exist, patients are prescribed precise dosages of bio-identical hormones based upon their specific and particular needs. <strong>This hormone replacement therapy plan is aimed at helping you look and feel your best.</strong> Our hormones are made up especially for our practice at a holistic (compounding) pharmacy. Our goal is to get the desired results with the lowest possible dosages.\r\n\r\n<a href=\"https://www.drfields.com/wp-content/uploads/2019/06/self_test.pdf\"><img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fields-hormone-level-quiz.jpg\" alt=\"\" /></a>\r\n\r\n<strong>Once hormone replacement therapy helps bring your levels back to optimal concentration, it may help you feel more energized, achieve a leaner, stronger physique, stabilize blood pressure and cholesterol levels, increase bone strength, boost memory, improve skin tone and more.</strong>\r\n\r\n<strong>So what are you waiting for? As time goes on, your hormone deficiencies will only get worse.\r\nCall us now for your personal hormone consultation.</strong>\r\n\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\r\n 	<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n 	<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n 	<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n 	<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n 	<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n 	<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Bio-Identical Hormones','','draft','open','closed','','bio-identical-hormones','','','2020-10-05 23:52:56','2020-10-05 23:52:56','',0,'https://www.drfields.com/?p=1831',0,'post','',0),(1832,8,'2019-06-14 14:48:06','2019-06-14 14:48:06','Bio Identical Hormones','Bio Identical Hormones','','inherit','open','closed','','bio-identical-hormones','','','2019-06-14 14:48:12','2019-06-14 14:48:12','',1831,'https://www.drfields.com/wp-content/uploads/2019/06/Bio-Identical-Hormones.jpg',0,'attachment','image/jpeg',0),(1833,8,'2019-06-14 14:48:38','2019-06-14 14:48:38','Fields Hormone Level Quiz','Fields Hormone Level Quiz','Fields Hormone Level Quiz','inherit','open','closed','','fields-hormone-level-quiz','','','2019-06-14 14:48:38','2019-06-14 14:48:38','',0,'https://www.drfields.com/wp-content/uploads/2019/06/fields-hormone-level-quiz.jpg',0,'attachment','image/jpeg',0),(1835,8,'2019-06-14 14:49:01','2019-06-14 14:49:01','Contact Us2','Contact Us2','Contact Us2','inherit','open','closed','','contact_us2','','','2019-06-14 14:49:01','2019-06-14 14:49:01','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg',0,'attachment','image/jpeg',0),(1836,8,'2019-06-14 14:50:37','2019-06-14 14:50:37','<div class=\"col-md-8\">\r\n<h4>Bio-Identical Hormones</h2>\r\n\r\n<strong><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Bio-Identical-Hormones.jpg\" alt=\"Bio Identical Hormones\" width=\"200\" height=\"171\" class=\"alignleft size-full wp-image-1832\" />Is It For You?</span></strong>\r\n\r\n<strong>As we age, our hormone production changes. When hormones are in balance, studies show that your body operates at its healthiest and most efficient level. </strong>Unfortunately, the levels of the hormones your body needs to function optimally decreases as you age. And with the stresses of life, whether physical, mental or emotional, our hormone systems have added demands.<strong> Although originally thought of for women during the menopausal years, hormone deficiency can affect women and men at any age. More recent therapies promise anti-aging effects and possible deferral of the diseases of aging.</strong>\r\n\r\n<strong>Some things that can be affected by a hormone deficiency are:</strong> hot flashes; memory loss; fatigue; muscle strength; libido; insomnia, effects of aging; irritability; mood; hair loss, immune function, stress; healing after a sprain, strain or injury; muscle aches; vaginal dryness; dry skin; bone density; insomnia; blood pressure; blood sugar levels; constipation and more.\r\n\r\n<a href=\"http://www.drfields.com/Contact-Us\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg\" alt=\"\" class=\"aligncenter\"/></a>\r\n\r\n<strong>At Pacific Prolotherapy and Medical Wellness Center we use Bio-Identical Hormones</strong> to supplement what is out of balance in your body. <strong>Bio-identical hormone replacement therapy (BHRT) uses supplemental doses of hormones with a chemical structure identical to endogenous human hormones (hormones naturally produced in the human body).</strong> BHRT differs from conventional hormone replacement therapy which by definition uses animal or synthetic hormones whose structures differ from those produced in the human body. Conventional hormone replacement therapy also uses patented medicines that come in standard sizes. This is generally a one-size-fits-all dosage regime.\r\n\r\n<strong>In an individualized approach like the one at Pacific Prolotherapy and Medical Wellness Center</strong>,\r\nwe begin by evaluating your need for hormone replacement therapy with a thorough history followed up by comprehensive testing. Once we determine where hormonal deficiencies exist, patients are prescribed precise dosages of bio-identical hormones based upon their specific and particular needs. <strong>This hormone replacement therapy plan is aimed at helping you look and feel your best.</strong> Our hormones are made up especially for our practice at a holistic (compounding) pharmacy. Our goal is to get the desired results with the lowest possible dosages.\r\n\r\n<a href=\"http://www.drfields.com/Portals/0/Images/self_test.pdf\"  ><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/fields-hormone-level-quiz.jpg\" alt=\"\" class=\"aligncenter\"/></a>\r\n\r\n<strong>Once hormone replacement therapy helps bring your levels back to optimal concentration, it may help you feel more energized, achieve a leaner, stronger physique, stabilize blood pressure and cholesterol levels, increase bone strength, boost memory, improve skin tone and more.</strong>\r\n\r\n<strong>So what are you waiting for? As time goes on, your hormone deficiencies will only get worse.\r\nCall us now for your personal hormone consultation.</strong>\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\r\n<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Bio-Identical Hormones','','inherit','closed','closed','','1831-revision-v1','','','2019-06-14 14:50:37','2019-06-14 14:50:37','',1831,'https://www.drfields.com/uncategorized/1831-revision-v1/',0,'revision','',0),(1837,8,'2019-06-14 14:51:17','2019-06-14 14:51:17','<div class=\"col-md-8\">\r\n<h4>Musculo-Skeletal Laser Therapy</h4>\r\nLaser therapy is a new and cutting edge treatment that may benefit you. It stimulates cellular activity, expediting the healing processes to reduce inflammation and repair damaged tissue. It does this by deep tissue penetration which significantly increases the body\'s cellular production of ATP (Adenosine-triphosphate) to reduce inflammation and heal the inflamed area.\r\n<a href=\"https://www.drfields.com/contact/\"><img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg\" alt=\"\" /></a>\r\n\r\n<strong>Powerful deep tissue penetration safely and effectively treats more conditions than traditional low level laser therapy</strong>\r\n<ul>\r\n 	<li>Healing and pain relief with no side effects, drug interaction or invasive surgery.</li>\r\n 	<li>Treats acute and chronic conditions as well as post-surgical pain.</li>\r\n 	<li>Most treatments take only 10 minutes or less.</li>\r\n</ul>\r\n<strong>Are You a Potential Candidate?</strong>\r\n<ul>\r\n 	<li>If you have muscle/tendon/ligament or joint pain</li>\r\n 	<li>If you need <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or <a title=\"PRP Therapy\" href=\"/Regenerative-Techniques/PRP-Treatment\">PRP therapy</a> but are afraid of needles</li>\r\n 	<li>If you have trigger points that do not go away with rest or therapy</li>\r\n 	<li>If you have had <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or <a title=\"PRP Therapy\" href=\"/Regenerative-Techniques/PRP-Treatment\">PRP</a>, and wish to accelerate its response</li>\r\n 	<li>If you have the wound that is slow to heal and has been resistant to treatment</li>\r\n</ul>\r\n<strong>Conditions Laser Treats:</strong>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\">\r\n<ul>\r\n 	<li>Joint Pain (knee, shoulder, ankle, elbow, etc.)</li>\r\n 	<li>Back &amp; <a href=\"/conditions/chronic-pain/chronic-neck-pain/\">Neck Pain</a></li>\r\n 	<li>Acute Injuries/Swelling</li>\r\n 	<li>Chronic Conditions</li>\r\n 	<li>Sprains &amp; Strains</li>\r\n 	<li>Trigger Points</li>\r\n 	<li>Rib Pain</li>\r\n</ul>\r\n</td>\r\n<td valign=\"top\">\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Carpal Tunnel</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>Fractures</li>\r\n 	<li>Migraines</li>\r\n 	<li>Skin Wounds &amp; Rashes</li>\r\n 	<li>Neuropathy &amp; more</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>Treatment Facts</strong>\r\n<ul>\r\n 	<li>Average treatment time: 6 -10 minutes.</li>\r\n 	<li>Typical treatment schedule is 8 to 12 treatment sessions</li>\r\n 	<li>Recommended treatments per week; usually 2 – 3 times a week.</li>\r\n 	<li>Very comfortable for the patient; most feel a slight soothing warmth on their skin.</li>\r\n 	<li>Upon completion of the initial set of treatments, re-evaluation will be made.</li>\r\n 	<li>Laser Therapy has a curative component rather than simply treating symptoms</li>\r\n</ul>\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\r\n 	<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n 	<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n 	<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n 	<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n 	<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n 	<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Musculo-Skeletal Laser Therapy','','draft','open','closed','','musculo-skeletal-laser-therapy','','','2020-10-05 23:52:31','2020-10-05 23:52:31','',0,'https://www.drfields.com/?p=1837',0,'post','',0),(1838,8,'2019-06-14 14:51:17','2019-06-14 14:51:17','','Musculo-Skeletal Laser Therapy','','inherit','closed','closed','','1837-revision-v1','','','2019-06-14 14:51:17','2019-06-14 14:51:17','',1837,'https://www.drfields.com/uncategorized/1837-revision-v1/',0,'revision','',0),(1839,8,'2019-06-14 17:07:55','2019-06-14 17:07:55','<div class=\"col-md-8\">\n<h4>Musculo-Skeletal Laser Therapy</h4>\nLaser therapy is a new and cutting edge treatment that may benefit you. It stimulates cellular activity, expediting the healing processes to reduce inflammation and repair damaged tissue. It does this by deep tissue penetration which significantly increases the body\'s cellular production of ATP (Adenosine-triphosphate) to reduce inflammation and heal the inflamed area.\n<a href=\"https://www.drfields.com/contact/\"><img src=\"http://www.drfields.com/portals/0/images/Contact_us2.jpg\" alt=\"\" width=\"400\" height=\"50\" /></a>\n\n</center><strong>Powerful deep tissue penetration safely and effectively treats more conditions than traditional low level laser therapy</strong>\n<ul>\n 	<li>Healing and pain relief with no side effects, drug interaction or invasive surgery.</li>\n 	<li>Treats acute and chronic conditions as well as post-surgical pain.</li>\n 	<li>Most treatments take only 10 minutes or less.</li>\n</ul>\n<strong>Are You a Potential Candidate?</strong>\n<ul>\n 	<li>If you have muscle/tendon/ligament or joint pain</li>\n 	<li>If you need <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or <a title=\"PRP Therapy\" href=\"/Regenerative-Techniques/PRP-Treatment\">PRP therapy</a> but are afraid of needles</li>\n 	<li>If you have trigger points that do not go away with rest or therapy</li>\n 	<li>If you have had <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or <a title=\"PRP Therapy\" href=\"/Regenerative-Techniques/PRP-Treatment\">PRP</a>, and wish to accelerate its response</li>\n 	<li>If you have the wound that is slow to heal and has been resistant to treatment</li>\n</ul>\n<strong>Conditions Laser Treats:</strong>\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td valign=\"top\">\n<ul>\n 	<li>Joint Pain (knee, shoulder, ankle, elbow, etc.)</li>\n 	<li>Back &amp; <a href=\"/conditions/chronic-pain/chronic-neck-pain/\">Neck Pain</a></li>\n 	<li>Acute Injuries/Swelling</li>\n 	<li>Chronic Conditions</li>\n 	<li>Sprains &amp; Strains</li>\n 	<li>Trigger Points</li>\n 	<li>Rib Pain</li>\n</ul>\n</td>\n<td valign=\"top\">\n<ul>\n 	<li>Arthritis</li>\n 	<li>Carpal Tunnel</li>\n 	<li>Plantar Fasciitis</li>\n 	<li>Fractures</li>\n 	<li>Migraines</li>\n 	<li>Skin Wounds &amp; Rashes</li>\n 	<li>Neuropathy &amp; more</li>\n</ul>\n</td>\n</tr>\n</tbody>\n</table>\n<strong>Treatment Facts</strong>\n<ul>\n 	<li>Average treatment time: 6 -10 minutes.</li>\n 	<li>Typical treatment schedule is 8 to 12 treatment sessions</li>\n 	<li>Recommended treatments per week; usually 2 – 3 times a week.</li>\n 	<li>Very comfortable for the patient; most feel a slight soothing warmth on their skin.</li>\n 	<li>Upon completion of the initial set of treatments, re-evaluation will be made.</li>\n 	<li>Laser Therapy has a curative component rather than simply treating symptoms</li>\n</ul>\n</div>\n\n<div class=\"col-md-4\">\n<h5>Medical Services</h5>\n<ul>\n<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\n<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\n<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\n<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\n<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\n<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\n<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\n</ul>\n</div>','Musculo-Skeletal Laser Therapy','','inherit','closed','closed','','1837-autosave-v1','','','2019-06-14 17:07:55','2019-06-14 17:07:55','',1837,'https://www.drfields.com/uncategorized/1837-autosave-v1/',0,'revision','',0),(1840,8,'2019-06-14 14:55:14','2019-06-14 14:55:14','<div class=\"col-md-8\">\r\n<h4>Musculo-Skeletal Laser Therapy</h4>\r\n\r\nYour browser does not support the video tag.</video></div>\r\nLaser therapy is a new and cutting edge treatment that may benefit you.   It stimulates cellular activity, expediting the healing processes to reduce inflammation and repair damaged tissue.  It does this by deep tissue penetration which significantly increases the body\'s cellular production of ATP (Adenosine-triphosphate) to reduce inflammation and heal the inflamed area.\r\n<div></div>\r\n<center><a href=\"http://www.drfields.com/Contact-Us\"><img src=\"http://www.drfields.com/portals/0/images/Contact_us2.jpg\" alt=\"\" width=\"400\" height=\"50\" /></a>\r\n\r\n</center><strong>Powerful deep tissue penetration safely and effectively treats more conditions than traditional low level laser therapy</strong>\r\n<ul>\r\n 	<li>Healing and pain relief with no side effects, drug interaction or invasive surgery.</li>\r\n 	<li>Treats acute and chronic conditions as well as post-surgical pain.</li>\r\n 	<li>Most treatments take only 10 minutes or less.</li>\r\n</ul>\r\n<strong>Are You a Potential Candidate?</strong>\r\n<ul>\r\n 	<li>If you have muscle/tendon/ligament or joint pain</li>\r\n 	<li>If you need <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or <a title=\"PRP Therapy\" href=\"/Regenerative-Techniques/PRP-Treatment\">PRP therapy</a> but are afraid of needles</li>\r\n 	<li>If you have trigger points that do not go away with rest or therapy</li>\r\n 	<li>If you have had <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or <a title=\"PRP Therapy\" href=\"/Regenerative-Techniques/PRP-Treatment\">PRP</a>, and wish to accelerate its response</li>\r\n 	<li>If you have the wound that is slow to heal and has been resistant to treatment</li>\r\n</ul>\r\n<strong>Conditions Laser Treats:</strong>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\">\r\n<ul>\r\n 	<li>Joint Pain (knee, shoulder, ankle, elbow, etc.)</li>\r\n 	<li>Back &amp; <a href=\"/conditions/chronic-pain/chronic-neck-pain/\">Neck Pain</a></li>\r\n 	<li>Acute Injuries/Swelling</li>\r\n 	<li>Chronic Conditions</li>\r\n 	<li>Sprains &amp; Strains</li>\r\n 	<li>Trigger Points</li>\r\n 	<li>Rib Pain</li>\r\n</ul>\r\n</td>\r\n<td valign=\"top\">\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Carpal Tunnel</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>Fractures</li>\r\n 	<li>Migraines</li>\r\n 	<li>Skin Wounds &amp; Rashes</li>\r\n 	<li>Neuropathy &amp; more</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>Treatment Facts</strong>\r\n<ul>\r\n 	<li>Average treatment time: 6 -10 minutes.</li>\r\n 	<li>Typical treatment schedule is 8 to 12 treatment sessions</li>\r\n 	<li>Recommended treatments per week; usually 2 – 3 times a week.</li>\r\n 	<li>Very comfortable for the patient; most feel a slight soothing warmth on their skin.</li>\r\n 	<li>Upon completion of the initial set of treatments, re-evaluation will be made.</li>\r\n 	<li>Laser Therapy has a curative component rather than simply treating symptoms</li>\r\n</ul>\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\r\n<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Musculo-Skeletal Laser Therapy','','inherit','closed','closed','','1837-revision-v1','','','2019-06-14 14:55:14','2019-06-14 14:55:14','',1837,'https://www.drfields.com/uncategorized/1837-revision-v1/',0,'revision','',0),(1841,8,'2019-06-14 17:08:41','2019-06-14 17:08:41','<div class=\"col-md-8\">\r\n<h4>Musculo-Skeletal Laser Therapy</h4>\r\nLaser therapy is a new and cutting edge treatment that may benefit you. It stimulates cellular activity, expediting the healing processes to reduce inflammation and repair damaged tissue. It does this by deep tissue penetration which significantly increases the body\'s cellular production of ATP (Adenosine-triphosphate) to reduce inflammation and heal the inflamed area.\r\n<a href=\"https://www.drfields.com/contact/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg\" alt=\"\" class=\"aligncenter\"/></a>\r\n\r\n<strong>Powerful deep tissue penetration safely and effectively treats more conditions than traditional low level laser therapy</strong>\r\n<ul>\r\n 	<li>Healing and pain relief with no side effects, drug interaction or invasive surgery.</li>\r\n 	<li>Treats acute and chronic conditions as well as post-surgical pain.</li>\r\n 	<li>Most treatments take only 10 minutes or less.</li>\r\n</ul>\r\n<strong>Are You a Potential Candidate?</strong>\r\n<ul>\r\n 	<li>If you have muscle/tendon/ligament or joint pain</li>\r\n 	<li>If you need <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or <a title=\"PRP Therapy\" href=\"/Regenerative-Techniques/PRP-Treatment\">PRP therapy</a> but are afraid of needles</li>\r\n 	<li>If you have trigger points that do not go away with rest or therapy</li>\r\n 	<li>If you have had <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or <a title=\"PRP Therapy\" href=\"/Regenerative-Techniques/PRP-Treatment\">PRP</a>, and wish to accelerate its response</li>\r\n 	<li>If you have the wound that is slow to heal and has been resistant to treatment</li>\r\n</ul>\r\n<strong>Conditions Laser Treats:</strong>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\">\r\n<ul>\r\n 	<li>Joint Pain (knee, shoulder, ankle, elbow, etc.)</li>\r\n 	<li>Back &amp; <a href=\"/conditions/chronic-pain/chronic-neck-pain/\">Neck Pain</a></li>\r\n 	<li>Acute Injuries/Swelling</li>\r\n 	<li>Chronic Conditions</li>\r\n 	<li>Sprains &amp; Strains</li>\r\n 	<li>Trigger Points</li>\r\n 	<li>Rib Pain</li>\r\n</ul>\r\n</td>\r\n<td valign=\"top\">\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Carpal Tunnel</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>Fractures</li>\r\n 	<li>Migraines</li>\r\n 	<li>Skin Wounds &amp; Rashes</li>\r\n 	<li>Neuropathy &amp; more</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>Treatment Facts</strong>\r\n<ul>\r\n 	<li>Average treatment time: 6 -10 minutes.</li>\r\n 	<li>Typical treatment schedule is 8 to 12 treatment sessions</li>\r\n 	<li>Recommended treatments per week; usually 2 – 3 times a week.</li>\r\n 	<li>Very comfortable for the patient; most feel a slight soothing warmth on their skin.</li>\r\n 	<li>Upon completion of the initial set of treatments, re-evaluation will be made.</li>\r\n 	<li>Laser Therapy has a curative component rather than simply treating symptoms</li>\r\n</ul>\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\r\n<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Musculo-Skeletal Laser Therapy','','inherit','closed','closed','','1837-revision-v1','','','2019-06-14 17:08:41','2019-06-14 17:08:41','',1837,'https://www.drfields.com/uncategorized/1837-revision-v1/',0,'revision','',0),(1842,8,'2019-06-14 17:12:32','2019-06-14 17:12:32','<div class=\"col-md-8\">\n<h4>Bio-Identical Hormones</h2>\n\n<strong><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Bio-Identical-Hormones.jpg\" alt=\"Bio Identical Hormones\" width=\"200\" height=\"171\" class=\"alignleft size-full wp-image-1832\" />Is It For You?</span></strong>\n\n<strong>As we age, our hormone production changes. When hormones are in balance, studies show that your body operates at its healthiest and most efficient level. </strong>Unfortunately, the levels of the hormones your body needs to function optimally decreases as you age. And with the stresses of life, whether physical, mental or emotional, our hormone systems have added demands.<strong> Although originally thought of for women during the menopausal years, hormone deficiency can affect women and men at any age. More recent therapies promise anti-aging effects and possible deferral of the diseases of aging.</strong>\n\n<strong>Some things that can be affected by a hormone deficiency are:</strong> hot flashes; memory loss; fatigue; muscle strength; libido; insomnia, effects of aging; irritability; mood; hair loss, immune function, stress; healing after a sprain, strain or injury; muscle aches; vaginal dryness; dry skin; bone density; insomnia; blood pressure; blood sugar levels; constipation and more.\n\n<a href=\"https://www.drfields.com/contact/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg\" alt=\"\" class=\"aligncenter\"/></a>\n\n<strong>At Pacific Prolotherapy and Medical Wellness Center we use Bio-Identical Hormones</strong> to supplement what is out of balance in your body. <strong>Bio-identical hormone replacement therapy (BHRT) uses supplemental doses of hormones with a chemical structure identical to endogenous human hormones (hormones naturally produced in the human body).</strong> BHRT differs from conventional hormone replacement therapy which by definition uses animal or synthetic hormones whose structures differ from those produced in the human body. Conventional hormone replacement therapy also uses patented medicines that come in standard sizes. This is generally a one-size-fits-all dosage regime.\n\n<strong>In an individualized approach like the one at Pacific Prolotherapy and Medical Wellness Center</strong>,\nwe begin by evaluating your need for hormone replacement therapy with a thorough history followed up by comprehensive testing. Once we determine where hormonal deficiencies exist, patients are prescribed precise dosages of bio-identical hormones based upon their specific and particular needs. <strong>This hormone replacement therapy plan is aimed at helping you look and feel your best.</strong> Our hormones are made up especially for our practice at a holistic (compounding) pharmacy. Our goal is to get the desired results with the lowest possible dosages.\n\n<a href=\"https://www.drfields.com/wp-content/uploads/2019/06/self_test.pdf\"  ><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/fields-hormone-level-quiz.jpg\" alt=\"\" class=\"aligncenter\"/></a>\n\n<strong>Once hormone replacement therapy helps bring your levels back to optimal concentration, it may help you feel more energized, achieve a leaner, stronger physique, stabilize blood pressure and cholesterol levels, increase bone strength, boost memory, improve skin tone and more.</strong>\n\n<strong>So what are you waiting for? As time goes on, your hormone deficiencies will only get worse.\nCall us now for your personal hormone consultation.</strong>\n</div>\n\n<div class=\"col-md-4\">\n<h5>Medical Services</h5>\n<ul>\n<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\n<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\n<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\n<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\n<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\n<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\n<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\n</ul>\n</div>','Bio-Identical Hormones','','inherit','closed','closed','','1831-autosave-v1','','','2019-06-14 17:12:32','2019-06-14 17:12:32','',1831,'https://www.drfields.com/uncategorized/1831-autosave-v1/',0,'revision','',0),(1843,8,'2019-06-14 17:12:06','2019-06-14 17:12:06','','self_test','','inherit','open','closed','','self_test','','','2019-06-14 17:12:06','2019-06-14 17:12:06','',0,'https://www.drfields.com/wp-content/uploads/2019/06/self_test.pdf',0,'attachment','application/pdf',0),(1844,8,'2019-06-14 17:12:34','2019-06-14 17:12:34','<div class=\"col-md-8\">\r\n<h4>Bio-Identical Hormones</h2>\r\n\r\n<strong><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Bio-Identical-Hormones.jpg\" alt=\"Bio Identical Hormones\" width=\"200\" height=\"171\" class=\"alignleft size-full wp-image-1832\" />Is It For You?</span></strong>\r\n\r\n<strong>As we age, our hormone production changes. When hormones are in balance, studies show that your body operates at its healthiest and most efficient level. </strong>Unfortunately, the levels of the hormones your body needs to function optimally decreases as you age. And with the stresses of life, whether physical, mental or emotional, our hormone systems have added demands.<strong> Although originally thought of for women during the menopausal years, hormone deficiency can affect women and men at any age. More recent therapies promise anti-aging effects and possible deferral of the diseases of aging.</strong>\r\n\r\n<strong>Some things that can be affected by a hormone deficiency are:</strong> hot flashes; memory loss; fatigue; muscle strength; libido; insomnia, effects of aging; irritability; mood; hair loss, immune function, stress; healing after a sprain, strain or injury; muscle aches; vaginal dryness; dry skin; bone density; insomnia; blood pressure; blood sugar levels; constipation and more.\r\n\r\n<a href=\"https://www.drfields.com/contact/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg\" alt=\"\" class=\"aligncenter\"/></a>\r\n\r\n<strong>At Pacific Prolotherapy and Medical Wellness Center we use Bio-Identical Hormones</strong> to supplement what is out of balance in your body. <strong>Bio-identical hormone replacement therapy (BHRT) uses supplemental doses of hormones with a chemical structure identical to endogenous human hormones (hormones naturally produced in the human body).</strong> BHRT differs from conventional hormone replacement therapy which by definition uses animal or synthetic hormones whose structures differ from those produced in the human body. Conventional hormone replacement therapy also uses patented medicines that come in standard sizes. This is generally a one-size-fits-all dosage regime.\r\n\r\n<strong>In an individualized approach like the one at Pacific Prolotherapy and Medical Wellness Center</strong>,\r\nwe begin by evaluating your need for hormone replacement therapy with a thorough history followed up by comprehensive testing. Once we determine where hormonal deficiencies exist, patients are prescribed precise dosages of bio-identical hormones based upon their specific and particular needs. <strong>This hormone replacement therapy plan is aimed at helping you look and feel your best.</strong> Our hormones are made up especially for our practice at a holistic (compounding) pharmacy. Our goal is to get the desired results with the lowest possible dosages.\r\n\r\n<a href=\"https://www.drfields.com/wp-content/uploads/2019/06/self_test.pdf\"  ><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/fields-hormone-level-quiz.jpg\" alt=\"\" class=\"aligncenter\"/></a>\r\n\r\n<strong>Once hormone replacement therapy helps bring your levels back to optimal concentration, it may help you feel more energized, achieve a leaner, stronger physique, stabilize blood pressure and cholesterol levels, increase bone strength, boost memory, improve skin tone and more.</strong>\r\n\r\n<strong>So what are you waiting for? As time goes on, your hormone deficiencies will only get worse.\r\nCall us now for your personal hormone consultation.</strong>\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\r\n<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Bio-Identical Hormones','','inherit','closed','closed','','1831-revision-v1','','','2019-06-14 17:12:34','2019-06-14 17:12:34','',1831,'https://www.drfields.com/uncategorized/1831-revision-v1/',0,'revision','',0),(1845,8,'2019-06-14 17:16:53','2019-06-14 17:16:53','<div class=\"col-md-8\">\r\n<h4>Holistic Integrative Medicine</h4>\r\n<img class=\"alignleft size-full wp-image-1846\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Integrative-Medicine.jpg\" alt=\"Integrative Medicine\" width=\"200\" height=\"174\" />Holistic or Integrative Medicine is a multi-faceted approach to wellness. It is more than not being sick. Rather than focusing on illness or specific parts of the body, this approach to health considers the whole person. The goal is to achieve maximum well-being, where everything is functioning at the best possible level. Often referred to as personalized or individualized medicine, healthcare based on the integrated/holistic model is considered by most practitioners today to be the future of medicine.\r\n\r\nIt couples current scientific advances with the best that alternative medicine has to offer. It expands our ability to preserve health, increase longevity and speed recovery. It does not end when you leave the office. As a lifestyle, it includes a personal commitment to move toward the right end of the wellness continuum. No matter what their current status of health, people can improve their level of well-being. Even when there are temporary setbacks, movement is always headed toward wellness.\r\n\r\nAn integrative/holistic approach to healing goes beyond just eliminating symptoms. For example, taking an aspirin for a headache would be like disconnecting the oil light on the dash of a car when it flashes. The irritation is eliminated, but the real problem still exists. In holistic/integrative medicine, a symptom is considered a message that something needs attention. So, the symptom is used as a guide to look below the surface for the root cause. Then what really needs attention can be addressed.\r\n\r\n<a href=\"https://www.drfields.com/contact/\"><img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg\" alt=\"\" /></a>\r\n\r\nHolistic Medicine utilizes the most effective, safest and least expensive treatments to help individual patients achieve the best health possible. It appreciates the value of good scientific information, but it is not confined to evidence-based medicine, which strives to limit variables and identify which treatments are helpful for the majority of patients. Holistic/Integrative Medicine recognizes that patients can be very complex individuals, who might benefit from a variety of treatments, not all of which are \"proven\" effective by expensive randomized clinical trials. Holistic/Integrative Medicine puts a premium on treatments that are very low risk and affordable to most people. It tends to choose natural remedies, as opposed to drugs and surgery. It emphasizes mind-body connections, balance, homeostasis, and restoring normal function. It tries to achieve confidence and peacefulness in a medical world that too often creates fear and anxiety.\r\n\r\nHolistic Medicine supports reaching higher levels of wellness as well as preventing illness. People enjoy the vitality and well-being that results from their positive lifestyle changes, and are motivated to continue this process throughout their lives.\r\n\r\nPacific Prolotherapy and Wellness Center focuses on disease prevention. We explain and discuss all possible treatments with you, taking the time to answer your questions carefully and honestly.\r\n\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\r\n 	<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n 	<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n 	<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n 	<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n 	<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n 	<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Holistic Integrative Medicine','','draft','open','closed','','holistic-integrative-medicine','','','2020-10-05 22:48:15','2020-10-05 22:48:15','',0,'https://www.drfields.com/?p=1845',0,'post','',0),(1846,8,'2019-06-14 17:16:43','2019-06-14 17:16:43','Integrative Medicine','Integrative Medicine','','inherit','open','closed','','integrative-medicine','','','2019-06-14 17:16:48','2019-06-14 17:16:48','',1845,'https://www.drfields.com/wp-content/uploads/2019/06/Integrative-Medicine.jpg',0,'attachment','image/jpeg',0),(1847,8,'2019-06-14 17:16:53','2019-06-14 17:16:53','<div class=\"col-md-8\">\r\n<h4>Holistic Integrative Medicine</h4>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Integrative-Medicine.jpg\" alt=\"Integrative Medicine\" width=\"200\" height=\"174\" class=\"alignleft size-full wp-image-1846\" />Holistic or Integrative Medicine is a multi-faceted approach to wellness. It is more than not being sick.  Rather than focusing on illness or specific parts of the body, this approach to health considers the whole person. The goal is to achieve maximum well-being, where everything is functioning at the best possible level.  Often referred to as personalized or individualized medicine, healthcare based on the integrated/holistic model is considered by most practitioners today to be the future of medicine.\r\n\r\nIt couples current scientific advances with the best that alternative medicine has to offer. It expands our ability to preserve health, increase longevity and speed recovery. It does not end when you leave the office. As a lifestyle, it includes a personal commitment to move toward the right end of the wellness continuum. No matter what their current status of health, people can improve their level of well-being. Even when there are temporary setbacks, movement is always headed toward wellness.\r\n\r\nAn integrative/holistic approach to healing goes beyond just eliminating symptoms. For example, taking an aspirin for a headache would be like disconnecting the oil light on the dash of a car when it flashes. The irritation is eliminated, but the real problem still exists. In holistic/integrative medicine, a symptom is considered a message that something needs attention.  So, the symptom is used as a guide to look below the surface for the root cause. Then what really needs attention can be addressed.\r\n\r\n<a href=\"https://www.drfields.com/contact/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg\" alt=\"\" class=\"aligncenter\"></a>\r\n\r\nHolistic Medicine utilizes the most effective, safest and least expensive treatments to help individual patients achieve the best health possible. It appreciates the value of good scientific information, but it is not confined to evidence-based medicine, which strives to limit variables and identify which treatments are helpful for the majority of patients. Holistic/Integrative Medicine recognizes that patients can be very complex individuals, who might benefit from a variety of treatments, not all of which are \"proven\" effective by expensive randomized clinical trials. Holistic/Integrative Medicine puts a premium on treatments that are very low risk and affordable to most people. It tends to choose natural remedies, as opposed to drugs and surgery. It emphasizes mind-body connections, balance, homeostasis, and restoring normal function. It tries to achieve confidence and peacefulness in a medical world that too often creates fear and anxiety.\r\n\r\nHolistic Medicine supports reaching higher levels of wellness as well as preventing illness. People enjoy the vitality and well-being that results from their positive lifestyle changes, and are motivated to continue this process throughout their lives.\r\n\r\nPacific Prolotherapy and Wellness Center focuses on disease prevention. We explain and discuss all possible treatments with you, taking the time to answer your questions carefully and honestly.\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\r\n<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Holistic Integrative Medicine','','inherit','closed','closed','','1845-revision-v1','','','2019-06-14 17:16:53','2019-06-14 17:16:53','',1845,'https://www.drfields.com/uncategorized/1845-revision-v1/',0,'revision','',0),(1849,8,'2019-06-14 17:18:37','2019-06-14 17:18:37','Nutrition','Nutrition','','inherit','open','closed','','nutrition','','','2019-06-14 17:18:41','2019-06-14 17:18:41','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Nutrition.jpg',0,'attachment','image/jpeg',0),(1851,8,'2019-06-14 17:20:16','2019-06-14 17:20:16','<div class=\"col-md-8\">\r\n<h4>Chelation Therapy</span></h4>\r\n\r\nChelation (pronounced-“key·lay·shun”) was developed initially as an industrial application in the early 1900’s. It was not until the era of World War II that any medical application was recognized. Initially the treatment was for gas poisoning and exposure to radioactivity. The word, ‘chelation’ is taken from the Greek word “chele”, meaning “claw”. Using this sense of the word, it means to grab or remove an unwanted substance from the body. Chelation is the term used to describe the removal of heavy metal toxicity from the body, as in lead poisoning, iron overload, and aluminum overload. Chelation therapy using EDTA, ethylene diamine tetraacetic acid, has been approved by the U.S. Food and Drug Administration (FDA) as a treatment for lead poisoning and heavy metal toxicity for more than forty years.\r\n\r\nThe theory behind Chelation Therapy is that certain drugs, chelating agents, function by making chemical bonds with heavy metal ions in the body, making these metals less chemically reactive. The resulting compounds, bonded agents and heavy metals, become water soluble, allowing them to enter the bloodstream and be excreted through urination. The chelating process can also remove beneficial metals and nutrients from the body, for example, zinc and calcium; these must be supplemented under the direction of a physician. Because these heavy metal compounds are excreted through the urine, kidney function must also be monitored. To ensure absolute safety, Chelation Therapy should be done by a qualified, licensed physician.\r\n\r\nChelation Therapy has been successfully used for iron overload from multiple transfusions, aluminum overload due to hemodialysis, copper toxicity due to Wilson’s disease and acute heavy metal toxicity. As part of any therapeutic program, lifestyle modifications are encouraged. These would include stress reduction, caffeine avoidance, alcohol limitation, smoking cessation, exercise, and nutritional counseling.\r\n\r\nAt Pacific Prolotherapy and Medical Wellness Center, our goal is for our patients to have an active, healthy, pain free life. We want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment.\r\n\r\n<strong>Call today, (310) 776-6154</strong>.\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\r\n<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Chelation Therapy','','inherit','closed','closed','','1820-revision-v1','','','2019-06-14 17:20:16','2019-06-14 17:20:16','',1820,'https://www.drfields.com/uncategorized/1820-revision-v1/',0,'revision','',0),(1852,8,'2022-12-02 06:01:39','2019-06-14 17:23:03','','Testimonials','','publish','closed','closed','','testimonials','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=1852',58,'nav_menu_item','',0),(1853,8,'2019-06-19 05:46:28','2019-06-19 05:46:28','<div class=\"link_string\">\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\n</div>\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\n</div>\n\n<div class=\"clear\"></div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\n</div>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\n</div>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\n</div>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\n</div>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\n</div>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\n</div>\n\n<div class=\"clear\"></div>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>\n','Video Testimonials','','inherit','closed','closed','','1340-autosave-v1','','','2019-06-19 05:46:28','2019-06-19 05:46:28','',1340,'https://www.drfields.com/uncategorized/1340-autosave-v1/',0,'revision','',0),(1854,8,'2019-06-14 17:28:24','2019-06-14 17:28:24','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 17:28:24','2019-06-14 17:28:24','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1855,8,'2019-06-14 17:28:50','2019-06-14 17:28:50','<div class=\"youtube-click-div\" id=\"videoleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 17:28:50','2019-06-14 17:28:50','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1856,8,'2019-06-14 17:30:09','2019-06-14 17:30:09','<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 17:30:09','2019-06-14 17:30:09','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1857,8,'2019-06-14 17:32:04','2019-06-14 17:32:04','Priscilla','Priscilla','Priscilla','inherit','open','closed','','priscilla','','','2019-06-14 17:32:04','2019-06-14 17:32:04','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg',0,'attachment','image/jpeg',0),(1858,8,'2019-06-14 17:32:39','2019-06-14 17:32:39','<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]\r\n<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 17:32:39','2019-06-14 17:32:39','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1859,8,'2019-06-14 17:35:14','2019-06-14 17:35:14','Andy Stem Cell Knee','Andy Stem Cell Knee','Andy Stem Cell Knee','inherit','open','closed','','andy-stem-cell-knee','','','2019-06-14 17:35:14','2019-06-14 17:35:14','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg',0,'attachment','image/jpeg',0),(1860,8,'2019-06-14 17:35:55','2019-06-14 17:35:55','<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]\r\n<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]\r\n<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 17:35:55','2019-06-14 17:35:55','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1861,8,'2019-06-14 17:37:20','2019-06-14 17:37:20','Claire Stem Cell Knee ','Claire Stem Cell Knee','Claire Stem Cell Knee ','inherit','open','closed','','claire-stem-cell-knee','','','2019-06-14 17:37:20','2019-06-14 17:37:20','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg',0,'attachment','image/jpeg',0),(1862,8,'2019-06-14 17:37:46','2019-06-14 17:37:46','<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]\r\n<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]\r\n<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]\r\n<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 17:37:46','2019-06-14 17:37:46','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1863,8,'2019-06-14 17:39:43','2019-06-14 17:39:43','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]\r\n<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]\r\n<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]\r\n<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 17:39:43','2019-06-14 17:39:43','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1864,8,'2019-06-14 17:43:46','2019-06-14 17:43:46','Mark Back','Mark Back','Mark Back','inherit','open','closed','','mark-back','','','2019-06-14 17:43:46','2019-06-14 17:43:46','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg',0,'attachment','image/jpeg',0),(1865,8,'2019-06-14 17:43:55','2019-06-14 17:43:55','Glenn Stem Cell Knee','Glenn Stem Cell Knee','Glenn Stem Cell Knee','inherit','open','closed','','glenn-stem-cell-knee','','','2019-06-14 17:43:55','2019-06-14 17:43:55','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg',0,'attachment','image/jpeg',0),(1866,8,'2019-06-14 17:44:02','2019-06-14 17:44:02','Tony Prp Shoulder & Ankle','Tony Prp Shoulder & Ankle','Tony Prp Shoulder & Ankle','inherit','open','closed','','tony-prp-shoulder-ankle','','','2019-06-14 17:44:02','2019-06-14 17:44:02','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg',0,'attachment','image/jpeg',0),(1867,8,'2019-06-14 17:44:04','2019-06-14 17:44:04','Jerry Stem Cell Knee','Jerry Stem Cell Knee','Jerry Stem Cell Knee','inherit','open','closed','','jerry-stem-cell-knee','','','2019-06-14 17:44:04','2019-06-14 17:44:04','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg',0,'attachment','image/jpeg',0),(1868,8,'2019-06-14 17:44:14','2019-06-14 17:44:14','Athena Wrist','Athena Wrist','Athena Wrist','inherit','open','closed','','athena-wrist','','','2019-06-14 17:44:14','2019-06-14 17:44:14','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg',0,'attachment','image/jpeg',0),(1869,8,'2019-06-14 17:44:16','2019-06-14 17:44:16','Tom Stem Cell Knee','Tom Stem Cell Knee','Tom Stem Cell Knee','inherit','open','closed','','tom-stem-cell-knee','','','2019-06-14 17:44:16','2019-06-14 17:44:16','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg',0,'attachment','image/jpeg',0),(1870,8,'2019-06-14 17:44:18','2019-06-14 17:44:18','Larry Stem Cell Knee','Larry Stem Cell Knee','Larry Stem Cell Knee','inherit','open','closed','','larry-stem-cell-knee','','','2019-06-14 17:44:18','2019-06-14 17:44:18','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg',0,'attachment','image/jpeg',0),(1871,8,'2019-06-14 17:44:20','2019-06-14 17:44:20','Jeff Stem Cell Shoulder','Jeff Stem Cell Shoulder','Jeff Stem Cell Shoulder','inherit','open','closed','','jeff-stem-cell-shoulder','','','2019-06-14 17:44:20','2019-06-14 17:44:20','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg',0,'attachment','image/jpeg',0),(1872,8,'2019-06-14 17:47:11','2019-06-14 17:47:11','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]\r\n<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]\r\n<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]\r\n<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]\r\n<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"295\" height=\"220\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]\r\n<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 17:47:11','2019-06-14 17:47:11','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1873,8,'2019-06-14 17:50:17','2019-06-14 17:50:17','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]\r\n<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]\r\n<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]\r\n<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]\r\n<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]\r\n<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" \r\nanchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]\r\n<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 17:50:17','2019-06-14 17:50:17','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1874,8,'2019-06-14 17:51:04','2019-06-14 17:51:04','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]\r\n<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]\r\n<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]\r\n<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]\r\n<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]\r\n<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]\r\n<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 17:51:04','2019-06-14 17:51:04','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1875,8,'2019-06-14 17:51:35','2019-06-14 17:51:35','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]\r\n<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]\r\n<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]\r\n<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]\r\n<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]\r\n<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]\r\n<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 17:51:35','2019-06-14 17:51:35','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1876,8,'2019-06-14 17:54:16','2019-06-14 17:54:16','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]\r\n<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]\r\n<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]\r\n<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]\r\n<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]\r\n<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]\r\n<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" \r\nanchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]\r\n<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]\r\n<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 17:54:16','2019-06-14 17:54:16','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1877,8,'2019-06-14 17:55:04','2019-06-14 17:55:04','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]\r\n<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]\r\n<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]\r\n<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]\r\n<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]\r\n<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]\r\n<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]\r\n<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]\r\n<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 17:55:04','2019-06-14 17:55:04','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1878,8,'2019-06-14 17:56:09','2019-06-14 17:56:09','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 17:56:09','2019-06-14 17:56:09','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1879,8,'2019-06-14 17:57:25','2019-06-14 17:57:25','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n&nbsp;\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n&nbsp;\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n&nbsp;\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n&nbsp;\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 17:57:25','2019-06-14 17:57:25','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1880,8,'2019-06-14 18:03:45','2019-06-14 18:03:45','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]\r\n<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" \r\nanchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]\r\n<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" \r\nanchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]\r\n<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 18:03:45','2019-06-14 18:03:45','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1881,8,'2019-06-14 18:04:13','2019-06-14 18:04:13','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]\r\n<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]\r\n<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\"anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]\r\n<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 18:04:13','2019-06-14 18:04:13','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1882,8,'2019-06-14 18:06:24','2019-06-14 18:06:24','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]\r\n<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]\r\n<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]\r\n<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 18:06:24','2019-06-14 18:06:24','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1883,8,'2019-06-14 18:07:18','2019-06-14 18:07:18','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]\r\n<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]\r\n<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]\r\n<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 18:07:18','2019-06-14 18:07:18','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1884,8,'2019-06-14 18:09:39','2019-06-14 18:09:39','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 18:09:39','2019-06-14 18:09:39','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1885,8,'2019-06-14 18:15:06','2019-06-14 18:15:06','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 18:15:06','2019-06-14 18:15:06','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1886,8,'2019-06-14 18:16:14','2019-06-14 18:16:14','Mike Stem Cell','Mike Stem Cell','Mike Stem Cell','inherit','open','closed','','mike-stem-cell','','','2019-06-14 18:16:14','2019-06-14 18:16:14','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg',0,'attachment','image/jpeg',0),(1887,8,'2019-06-14 18:16:16','2019-06-14 18:16:16','Tisha Stem Cell Hip','Tisha Stem Cell Hip','Tisha Stem Cell Hip','inherit','open','closed','','tisha-stem-cell-hip','','','2019-06-14 18:16:16','2019-06-14 18:16:16','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg',0,'attachment','image/jpeg',0),(1888,8,'2019-06-14 18:16:18','2019-06-14 18:16:18','Robert B. Stem Cell Knee','Robert B. Stem Cell Knee','Robert B. Stem Cell Knee','inherit','open','closed','','robert-b-stem-cell-knee','','','2019-06-14 18:16:18','2019-06-14 18:16:18','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg',0,'attachment','image/jpeg',0),(1889,8,'2019-06-14 18:16:22','2019-06-14 18:16:22','Dr. Barry Leonard Prp Knee','Dr. Barry Leonard Prp Knee','Dr. Barry Leonard Prp Knee','inherit','open','closed','','dr-barry-leonard-prp-knee','','','2019-06-14 18:16:22','2019-06-14 18:16:22','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg',0,'attachment','image/jpeg',0),(1890,8,'2019-06-14 18:16:24','2019-06-14 18:16:24','Christopher Prp Knee','Christopher Prp Knee','Christopher Prp Knee','inherit','open','closed','','christopher-prp-knee','','','2019-06-14 18:16:24','2019-06-14 18:16:24','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg',0,'attachment','image/jpeg',0),(1891,8,'2019-06-14 18:16:34','2019-06-14 18:16:34','Dr. Eric (chiropractor) Low Back','Dr. Eric (chiropractor) Low Back','Dr. Eric (chiropractor) Low Back','inherit','open','closed','','dr-eric-chiropractor-low-back','','','2019-06-14 18:16:34','2019-06-14 18:16:34','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg',0,'attachment','image/jpeg',0),(1892,8,'2019-06-14 18:16:36','2019-06-14 18:16:36','Nanette Hip','Nanette Hip','Nanette Hip','inherit','open','closed','','nanette-hip','','','2019-06-14 18:16:36','2019-06-14 18:16:36','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg',0,'attachment','image/jpeg',0),(1893,8,'2019-06-14 18:16:39','2019-06-14 18:16:39','Tim Shoulder','Tim Shoulder','Tim Shoulder','inherit','open','closed','','tim-shoulder','','','2019-06-14 18:16:39','2019-06-14 18:16:39','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg',0,'attachment','image/jpeg',0),(1894,8,'2019-06-14 18:16:42','2019-06-14 18:16:42','May Knee','May Knee','May Knee','inherit','open','closed','','may-knee','','','2019-06-14 18:16:42','2019-06-14 18:16:42','',0,'https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg',0,'attachment','image/jpeg',0),(1895,8,'2019-06-14 18:16:44','2019-06-14 18:16:44','Gayle Low Back','Gayle Low Back','Gayle Low Back','inherit','open','closed','','gayle-low-back','','','2019-06-14 18:16:44','2019-06-14 18:16:44','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg',0,'attachment','image/jpeg',0),(1896,8,'2019-06-14 18:22:33','2019-06-14 18:22:33','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 18:22:33','2019-06-14 18:22:33','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1897,8,'2019-06-14 18:30:14','2019-06-14 18:30:14','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 18:30:14','2019-06-14 18:30:14','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1898,8,'2019-06-14 18:36:41','2019-06-14 18:36:41','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" \r\nanchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" \r\nanchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" \r\nanchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 18:36:41','2019-06-14 18:36:41','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1899,8,'2019-06-14 18:37:04','2019-06-14 18:37:04','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" \r\nanchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" \r\nanchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" \r\nanchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 18:37:04','2019-06-14 18:37:04','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1900,8,'2019-06-14 18:37:29','2019-06-14 18:37:29','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-14 18:37:29','2019-06-14 18:37:29','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1901,8,'2019-06-15 03:20:50','2019-06-15 03:20:50','Dan Shoulder','Dan Shoulder','Dan Shoulder','inherit','open','closed','','dan-shoulder','','','2019-06-15 03:20:50','2019-06-15 03:20:50','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg',0,'attachment','image/jpeg',0),(1902,8,'2019-06-15 03:21:59','2019-06-15 03:21:59','Patrick Low Back','Patrick Low Back','Patrick Low Back','inherit','open','closed','','patrick-low-back','','','2019-06-15 03:21:59','2019-06-15 03:21:59','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg',0,'attachment','image/jpeg',0),(1903,8,'2019-06-15 03:22:40','2019-06-15 03:22:40','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 03:22:40','2019-06-15 03:22:40','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1904,8,'2019-06-15 03:57:15','2019-06-15 03:57:15','Sam Sports Hernia','Sam Sports Hernia','Sam Sports Hernia','inherit','open','closed','','sam-sports-hernia','','','2019-06-15 03:57:15','2019-06-15 03:57:15','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg',0,'attachment','image/jpeg',0),(1905,8,'2019-06-15 03:57:38','2019-06-15 03:57:38','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 03:57:38','2019-06-15 03:57:38','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1906,8,'2019-06-15 04:02:00','2019-06-15 04:02:00','Gayle Shoulder','Gayle Shoulder','Gayle Shoulder','inherit','open','closed','','gayle-shoulder','','','2019-06-15 04:02:00','2019-06-15 04:02:00','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg',0,'attachment','image/jpeg',0),(1907,8,'2019-06-15 04:02:09','2019-06-15 04:02:09','Jeremy Ankle','Jeremy Ankle','Jeremy Ankle','inherit','open','closed','','jeremy-ankle','','','2019-06-15 04:02:09','2019-06-15 04:02:09','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg',0,'attachment','image/jpeg',0),(1908,8,'2019-06-15 04:02:11','2019-06-15 04:02:11','Rich Low Back','Rich Low Back','Rich Low Back','inherit','open','closed','','rich-low-back','','','2019-06-15 04:02:11','2019-06-15 04:02:11','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg',0,'attachment','image/jpeg',0),(1909,8,'2019-06-15 04:02:14','2019-06-15 04:02:14','Benjamin Shoulder','Benjamin Shoulder','Benjamin Shoulder','inherit','open','closed','','benjamin-shoulder','','','2019-06-15 04:02:14','2019-06-15 04:02:14','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg',0,'attachment','image/jpeg',0),(1910,8,'2019-06-15 04:02:16','2019-06-15 04:02:16','Patrick Hamstring','Patrick Hamstring','Patrick Hamstring','inherit','open','closed','','patrick-hamstring','','','2019-06-15 04:02:16','2019-06-15 04:02:16','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg',0,'attachment','image/jpeg',0),(1911,8,'2019-06-15 04:02:19','2019-06-15 04:02:19','Michael Ganglion Cyst','Michael Ganglion Cyst','Michael Ganglion Cyst','inherit','open','closed','','michael-ganglion-cyst','','','2019-06-15 04:02:19','2019-06-15 04:02:19','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg',0,'attachment','image/jpeg',0),(1912,8,'2019-06-15 04:02:22','2019-06-15 04:02:22','Josh Knee','Josh Knee','Josh Knee','inherit','open','closed','','josh-knee','','','2019-06-15 04:02:22','2019-06-15 04:02:22','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg',0,'attachment','image/jpeg',0),(1913,8,'2019-06-15 04:02:25','2019-06-15 04:02:25','Jamie Neck','Jamie Neck','Jamie Neck','inherit','open','closed','','jamie-neck','','','2019-06-15 04:02:25','2019-06-15 04:02:25','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg',0,'attachment','image/jpeg',0),(1914,8,'2019-06-15 04:02:27','2019-06-15 04:02:27','Ryan Shoulder','Ryan Shoulder','Ryan Shoulder','inherit','open','closed','','ryan-shoulder','','','2019-06-15 04:02:27','2019-06-15 04:02:27','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg',0,'attachment','image/jpeg',0),(1915,8,'2019-06-15 04:02:30','2019-06-15 04:02:30','Jennifer Low Back','Jennifer Low Back','Jennifer Low Back','inherit','open','closed','','jennifer-low-back','','','2019-06-15 04:02:30','2019-06-15 04:02:30','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg',0,'attachment','image/jpeg',0),(1916,8,'2019-06-15 04:02:32','2019-06-15 04:02:32','Cheryl Shoulder','Cheryl Shoulder','Cheryl Shoulder','inherit','open','closed','','cheryl-shoulder','','','2019-06-15 04:02:32','2019-06-15 04:02:32','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg',0,'attachment','image/jpeg',0),(1917,8,'2019-06-15 04:07:59','2019-06-15 04:07:59','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 04:07:59','2019-06-15 04:07:59','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1918,8,'2019-06-15 04:16:42','2019-06-15 04:16:42','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 04:16:42','2019-06-15 04:16:42','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1919,8,'2019-06-15 04:22:34','2019-06-15 04:22:34','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 04:22:34','2019-06-15 04:22:34','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1920,8,'2019-06-15 04:33:56','2019-06-15 04:33:56','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 04:33:56','2019-06-15 04:33:56','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1921,8,'2019-06-15 04:39:06','2019-06-15 04:39:06','Alex Knee','Alex Knee','Alex Knee','inherit','open','closed','','alex-knee','','','2019-06-15 04:39:06','2019-06-15 04:39:06','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg',0,'attachment','image/jpeg',0),(1922,8,'2019-06-15 04:39:07','2019-06-15 04:39:07','Moira Knee','Moira Knee','Moira Knee','inherit','open','closed','','moira-knee','','','2019-06-15 04:39:07','2019-06-15 04:39:07','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg',0,'attachment','image/jpeg',0),(1923,8,'2019-06-15 04:39:08','2019-06-15 04:39:08','Keith Shoulder','Keith Shoulder','Keith Shoulder','inherit','open','closed','','keith-shoulder','','','2019-06-15 04:39:08','2019-06-15 04:39:08','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg',0,'attachment','image/jpeg',0),(1924,8,'2019-06-15 04:39:10','2019-06-15 04:39:10','Nick Ankle','Nick Ankle','Nick Ankle','inherit','open','closed','','nick-ankle','','','2019-06-15 04:39:10','2019-06-15 04:39:10','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg',0,'attachment','image/jpeg',0),(1925,8,'2019-06-15 04:39:11','2019-06-15 04:39:11','Jan Hip','Jan Hip','Jan Hip','inherit','open','closed','','jan-hip','','','2019-06-15 04:39:11','2019-06-15 04:39:11','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg',0,'attachment','image/jpeg',0),(1926,8,'2019-06-15 04:39:13','2019-06-15 04:39:13','Elan Shoulder','Elan Shoulder','Elan Shoulder','inherit','open','closed','','elan-shoulder','','','2019-06-15 04:39:13','2019-06-15 04:39:13','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg',0,'attachment','image/jpeg',0),(1927,8,'2019-06-15 04:39:14','2019-06-15 04:39:14','Sam Back (spanish)','Sam Back (spanish)','Sam Back (spanish)','inherit','open','closed','','sam-back-spanish','','','2019-06-15 04:39:14','2019-06-15 04:39:14','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg',0,'attachment','image/jpeg',0),(1928,8,'2019-06-15 04:39:16','2019-06-15 04:39:16','Yelena Knee','Yelena Knee','Yelena Knee','inherit','open','closed','','yelena-knee','','','2019-06-15 04:39:16','2019-06-15 04:39:16','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg',0,'attachment','image/jpeg',0),(1929,8,'2019-06-15 04:39:17','2019-06-15 04:39:17','Jun Shoulder','Jun Shoulder','Jun Shoulder','inherit','open','closed','','jun-shoulder','','','2019-06-15 04:39:17','2019-06-15 04:39:17','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg',0,'attachment','image/jpeg',0),(1930,8,'2019-06-15 04:39:25','2019-06-15 04:39:25','Dale Knee','Dale Knee','Dale Knee','inherit','open','closed','','dale-knee','','','2019-06-15 04:39:25','2019-06-15 04:39:25','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg',0,'attachment','image/jpeg',0),(1931,8,'2019-06-15 04:39:25','2019-06-15 04:39:25','Bob Shoulder','Bob Shoulder','Bob Shoulder','inherit','open','closed','','bob-shoulder','','','2019-06-15 04:39:25','2019-06-15 04:39:25','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg',0,'attachment','image/jpeg',0),(1932,8,'2019-06-15 04:39:27','2019-06-15 04:39:27','Willie Knee','Willie Knee','Willie Knee','inherit','open','closed','','willie-knee','','','2019-06-15 04:39:27','2019-06-15 04:39:27','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg',0,'attachment','image/jpeg',0),(1933,8,'2019-06-15 04:43:44','2019-06-15 04:43:44','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 04:43:44','2019-06-15 04:43:44','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1934,8,'2019-06-15 05:28:04','2019-06-15 05:28:04','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 05:28:04','2019-06-15 05:28:04','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1935,8,'2019-06-15 05:31:59','2019-06-15 05:31:59','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 05:31:59','2019-06-15 05:31:59','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1936,8,'2019-06-15 05:38:46','2019-06-15 05:38:46','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 05:38:46','2019-06-15 05:38:46','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1937,8,'2019-06-15 05:42:09','2019-06-15 05:42:09','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 05:42:09','2019-06-15 05:42:09','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1938,8,'2019-06-15 05:43:06','2019-06-15 05:43:06','<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 05:43:06','2019-06-15 05:43:06','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1939,8,'2019-06-15 05:43:51','2019-06-15 05:43:51','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Knee-Testimonials\">Knee</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Hip-Testimonials\">Hip</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Neck-Testimonials\">Neck</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Foot-Testimonials\">Foot</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 05:43:51','2019-06-15 05:43:51','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1940,8,'2019-06-15 05:47:27','2019-06-15 05:47:27','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Knee-Testimonials\">Knee</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Hip-Testimonials\">Hip</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Neck-Testimonials\">Neck</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Foot-Testimonials\">Foot</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 05:47:27','2019-06-15 05:47:27','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1941,8,'2019-06-15 05:49:08','2019-06-15 05:49:08','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Knee-Testimonials\">Knee</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Hip-Testimonials\">Hip</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Neck-Testimonials\">Neck</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Foot-Testimonials\">Foot</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a>&nbsp;&nbsp;&nbsp;\r\n<a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 05:49:08','2019-06-15 05:49:08','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1942,8,'2019-06-15 05:54:48','2019-06-15 05:54:48','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a>\r\n<a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a>\r\n<a href=\"/Testimonials/Knee-Testimonials\">Knee</a>\r\n<a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a>\r\n<a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a>\r\n<a href=\"/Testimonials/Hip-Testimonials\">Hip</a>\r\n<a href=\"/Testimonials/Neck-Testimonials\">Neck</a>\r\n<a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a>\r\n<a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a>\r\n<a href=\"/Testimonials/Foot-Testimonials\">Foot</a>\r\n<a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a>\r\n<a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a>\r\n<a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a>\r\n<a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a>\r\n<a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 05:54:48','2019-06-15 05:54:48','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1943,8,'2019-06-15 05:59:19','2019-06-15 05:59:19','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a>\r\n<a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a>\r\n<a href=\"/Testimonials/Knee-Testimonials\">Knee</a>\r\n<a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a>\r\n<a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a>\r\n<a href=\"/Testimonials/Hip-Testimonials\">Hip</a>\r\n<a href=\"/Testimonials/Neck-Testimonials\">Neck</a>\r\n<a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a>\r\n<a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a>\r\n<a href=\"/Testimonials/Foot-Testimonials\">Foot</a>\r\n<a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a>\r\n<a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a>\r\n<a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a>\r\n<a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a>\r\n<a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 05:59:19','2019-06-15 05:59:19','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1944,8,'2019-06-15 06:09:21','2019-06-15 06:09:21','<div class=\"link_string\">\n<a href=\"/Testimonials/Video-Testimonials\">All</a>\n<a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a>\n<a href=\"/Testimonials/Knee-Testimonials\">Knee</a>\n<a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a>\n<a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a>\n<a href=\"/Testimonials/Hip-Testimonials\">Hip</a>\n<a href=\"/Testimonials/Neck-Testimonials\">Neck</a>\n<a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a>\n<a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a>\n<a href=\"/Testimonials/Foot-Testimonials\">Foot</a>\n<a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a>\n<a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a>\n<a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a>\n<a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a>\n<a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\n</div>\n\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla Knee\"]<strong>Priscilla -Knee - <span class=\"newtag\">NEW!</span></strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy -Knee - \"]<strong>Andy -Knee - <span class=\"newtag\">NEW!</span></strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Knee\"]<strong>Claire -Knee -<span class=\"newtag\">NEW!</span></strong>\n</div>\n\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn -Knee -<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee-<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom -Knee -<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry -Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary -Hip</strong>\n</div>\n','Stem Cell','','inherit','closed','closed','','1700-autosave-v1','','','2019-06-15 06:09:21','2019-06-15 06:09:21','',1700,'https://www.drfields.com/uncategorized/1700-autosave-v1/',0,'revision','',0),(1945,8,'2019-06-15 06:06:04','2019-06-15 06:06:04','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a>\r\n<a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a>\r\n<a href=\"/Testimonials/Knee-Testimonials\">Knee</a>\r\n<a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a>\r\n<a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a>\r\n<a href=\"/Testimonials/Hip-Testimonials\">Hip</a>\r\n<a href=\"/Testimonials/Neck-Testimonials\">Neck</a>\r\n<a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a>\r\n<a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a>\r\n<a href=\"/Testimonials/Foot-Testimonials\">Foot</a>\r\n<a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a>\r\n<a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a>\r\n<a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a>\r\n<a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a>\r\n<a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla Knee\"]<strong>Priscilla -Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy -Knee - \"]<strong>Andy -Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Knee\"]<strong>Claire -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>','Stem Cell','','inherit','closed','closed','','1700-revision-v1','','','2019-06-15 06:06:04','2019-06-15 06:06:04','',1700,'https://www.drfields.com/uncategorized/1700-revision-v1/',0,'revision','',0),(1946,8,'2019-06-15 06:10:02','2019-06-15 06:10:02','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a>\r\n<a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a>\r\n<a href=\"/Testimonials/Knee-Testimonials\">Knee</a>\r\n<a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a>\r\n<a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a>\r\n<a href=\"/Testimonials/Hip-Testimonials\">Hip</a>\r\n<a href=\"/Testimonials/Neck-Testimonials\">Neck</a>\r\n<a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a>\r\n<a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a>\r\n<a href=\"/Testimonials/Foot-Testimonials\">Foot</a>\r\n<a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a>\r\n<a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a>\r\n<a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a>\r\n<a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a>\r\n<a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla Knee\"]<strong>Priscilla -Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy -Knee - \"]<strong>Andy -Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Knee\"]<strong>Claire -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry -Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary -Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. -Knee\"]<strong>Robert B. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','inherit','closed','closed','','1700-revision-v1','','','2019-06-15 06:10:02','2019-06-15 06:10:02','',1700,'https://www.drfields.com/uncategorized/1700-revision-v1/',0,'revision','',0),(1947,8,'2019-06-15 06:11:25','2019-06-15 06:11:25','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a>\r\n<a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a>\r\n<a href=\"/Testimonials/Knee-Testimonials\">Knee</a>\r\n<a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a>\r\n<a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a>\r\n<a href=\"/Testimonials/Hip-Testimonials\">Hip</a>\r\n<a href=\"/Testimonials/Neck-Testimonials\">Neck</a>\r\n<a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a>\r\n<a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a>\r\n<a href=\"/Testimonials/Foot-Testimonials\">Foot</a>\r\n<a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a>\r\n<a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a>\r\n<a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a>\r\n<a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a>\r\n<a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla Knee\"]<strong>Priscilla - Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Knee - \"]<strong>Andy -Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Knee\"]<strong>Claire - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Knee\"]<strong>Robert B. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','inherit','closed','closed','','1700-revision-v1','','','2019-06-15 06:11:25','2019-06-15 06:11:25','',1700,'https://www.drfields.com/uncategorized/1700-revision-v1/',0,'revision','',0),(1948,8,'2019-06-15 06:16:00','2019-06-15 06:16:00','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a>\r\n<a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a>\r\n<a href=\"/Testimonials/Knee-Testimonials\">Knee</a>\r\n<a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a>\r\n<a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a>\r\n<a href=\"/Testimonials/Hip-Testimonials\">Hip</a>\r\n<a href=\"/Testimonials/Neck-Testimonials\">Neck</a>\r\n<a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a>\r\n<a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a>\r\n<a href=\"/Testimonials/Foot-Testimonials\">Foot</a>\r\n<a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a>\r\n<a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a>\r\n<a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a>\r\n<a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a>\r\n<a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla Knee\"]<strong>Priscilla - Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Knee - \"]<strong>Andy -Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Knee\"]<strong>Claire - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Knee\"]<strong>Robert B. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','inherit','closed','closed','','1700-revision-v1','','','2019-06-15 06:16:00','2019-06-15 06:16:00','',1700,'https://www.drfields.com/uncategorized/1700-revision-v1/',0,'revision','',0),(1950,8,'2019-06-15 06:25:11','2019-06-15 06:25:11','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a>\r\n<a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a>\r\n<a href=\"/Testimonials/Knee-Testimonials\">Knee</a>\r\n<a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a>\r\n<a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a>\r\n<a href=\"/Testimonials/Hip-Testimonials\">Hip</a>\r\n<a href=\"/Testimonials/Neck-Testimonials\">Neck</a>\r\n<a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a>\r\n<a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a>\r\n<a href=\"/Testimonials/Foot-Testimonials\">Foot</a>\r\n<a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a>\r\n<a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a>\r\n<a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a>\r\n<a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a>\r\n<a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Knee Testimonials','','inherit','closed','closed','','1702-revision-v1','','','2019-06-15 06:25:11','2019-06-15 06:25:11','',1702,'https://www.drfields.com/uncategorized/1702-revision-v1/',0,'revision','',0),(1951,8,'2019-06-15 06:25:44','2019-06-15 06:25:44','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a>\r\n<a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a>\r\n<a href=\"/Testimonials/Knee-Testimonials\">Knee</a>\r\n<a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a>\r\n<a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a>\r\n<a href=\"/Testimonials/Hip-Testimonials\">Hip</a>\r\n<a href=\"/Testimonials/Neck-Testimonials\">Neck</a>\r\n<a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a>\r\n<a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a>\r\n<a href=\"/Testimonials/Foot-Testimonials\">Foot</a>\r\n<a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a>\r\n<a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a>\r\n<a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a>\r\n<a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a>\r\n<a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Knee Testimonials','','inherit','closed','closed','','1702-revision-v1','','','2019-06-15 06:25:44','2019-06-15 06:25:44','',1702,'https://www.drfields.com/uncategorized/1702-revision-v1/',0,'revision','',0),(1952,8,'2019-06-15 06:27:55','2019-06-15 06:27:55','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a>\r\n<a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a>\r\n<a href=\"/Testimonials/Knee-Testimonials\">Knee</a>\r\n<a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a>\r\n<a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a>\r\n<a href=\"/Testimonials/Hip-Testimonials\">Hip</a>\r\n<a href=\"/Testimonials/Neck-Testimonials\">Neck</a>\r\n<a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a>\r\n<a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a>\r\n<a href=\"/Testimonials/Foot-Testimonials\">Foot</a>\r\n<a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a>\r\n<a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a>\r\n<a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a>\r\n<a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a>\r\n<a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Low Back Testimonials','','inherit','closed','closed','','1704-revision-v1','','','2019-06-15 06:27:55','2019-06-15 06:27:55','',1704,'https://www.drfields.com/uncategorized/1704-revision-v1/',0,'revision','',0),(1953,8,'2019-06-19 05:50:46','2019-06-19 05:50:46','<div class=\"link_string\">\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\n</div>\n\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\n</div>\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Low Back Testimonials','','inherit','closed','closed','','1704-autosave-v1','','','2019-06-19 05:50:46','2019-06-19 05:50:46','',1704,'https://www.drfields.com/uncategorized/1704-autosave-v1/',0,'revision','',0),(1954,8,'2019-06-15 06:30:44','2019-06-15 06:30:44','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a>\r\n<a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a>\r\n<a href=\"/Testimonials/Knee-Testimonials\">Knee</a>\r\n<a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a>\r\n<a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a>\r\n<a href=\"/Testimonials/Hip-Testimonials\">Hip</a>\r\n<a href=\"/Testimonials/Neck-Testimonials\">Neck</a>\r\n<a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a>\r\n<a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a>\r\n<a href=\"/Testimonials/Foot-Testimonials\">Foot</a>\r\n<a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a>\r\n<a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a>\r\n<a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a>\r\n<a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a>\r\n<a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Low Back Testimonials','','inherit','closed','closed','','1704-revision-v1','','','2019-06-15 06:30:44','2019-06-15 06:30:44','',1704,'https://www.drfields.com/uncategorized/1704-revision-v1/',0,'revision','',0),(1955,8,'2019-06-15 06:37:07','2019-06-15 06:37:07','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a>\r\n<a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a>\r\n<a href=\"/Testimonials/Knee-Testimonials\">Knee</a>\r\n<a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a>\r\n<a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a>\r\n<a href=\"/Testimonials/Hip-Testimonials\">Hip</a>\r\n<a href=\"/Testimonials/Neck-Testimonials\">Neck</a>\r\n<a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a>\r\n<a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a>\r\n<a href=\"/Testimonials/Foot-Testimonials\">Foot</a>\r\n<a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a>\r\n<a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a>\r\n<a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a>\r\n<a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a>\r\n<a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Low Back Testimonials','','inherit','closed','closed','','1704-revision-v1','','','2019-06-15 06:37:07','2019-06-15 06:37:07','',1704,'https://www.drfields.com/uncategorized/1704-revision-v1/',0,'revision','',0),(1956,8,'2019-06-15 06:55:11','2019-06-15 06:55:11','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Low Back Testimonials','','inherit','closed','closed','','1704-revision-v1','','','2019-06-15 06:55:11','2019-06-15 06:55:11','',1704,'https://www.drfields.com/uncategorized/1704-revision-v1/',0,'revision','',0),(1957,8,'2019-06-15 06:55:39','2019-06-15 06:55:39','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla Knee\"]<strong>Priscilla - Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Knee - \"]<strong>Andy -Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Knee\"]<strong>Claire - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Knee\"]<strong>Robert B. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','inherit','closed','closed','','1700-revision-v1','','','2019-06-15 06:55:39','2019-06-15 06:55:39','',1700,'https://www.drfields.com/uncategorized/1700-revision-v1/',0,'revision','',0),(1958,8,'2019-06-15 06:55:50','2019-06-15 06:55:50','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Knee Testimonials','','inherit','closed','closed','','1702-revision-v1','','','2019-06-15 06:55:50','2019-06-15 06:55:50','',1702,'https://www.drfields.com/uncategorized/1702-revision-v1/',0,'revision','',0),(1959,8,'2019-06-15 06:56:10','2019-06-15 06:56:10','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 06:56:10','2019-06-15 06:56:10','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1960,8,'2019-06-15 06:56:50','2019-06-15 06:56:50','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Low Back Testimonials','','inherit','closed','closed','','1704-revision-v1','','','2019-06-15 06:56:50','2019-06-15 06:56:50','',1704,'https://www.drfields.com/uncategorized/1704-revision-v1/',0,'revision','',0),(1961,8,'2019-06-15 06:57:15','2019-06-15 06:57:15','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-15 06:57:15','2019-06-15 06:57:15','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(1962,8,'2019-06-15 06:57:38','2019-06-15 06:57:38','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Knee Testimonials','','inherit','closed','closed','','1702-revision-v1','','','2019-06-15 06:57:38','2019-06-15 06:57:38','',1702,'https://www.drfields.com/uncategorized/1702-revision-v1/',0,'revision','',0),(1963,8,'2019-06-15 06:57:42','2019-06-15 06:57:42','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla Knee\"]<strong>Priscilla - Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Knee - \"]<strong>Andy -Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Knee\"]<strong>Claire - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Knee\"]<strong>Robert B. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','inherit','closed','closed','','1700-revision-v1','','','2019-06-15 06:57:42','2019-06-15 06:57:42','',1700,'https://www.drfields.com/uncategorized/1700-revision-v1/',0,'revision','',0),(1964,8,'2019-06-15 07:05:57','2019-06-15 07:05:57','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a>\r\n<a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Shoulder Testimonials','','inherit','closed','closed','','1706-revision-v1','','','2019-06-15 07:05:57','2019-06-15 07:05:57','',1706,'https://www.drfields.com/uncategorized/1706-revision-v1/',0,'revision','',0),(1965,8,'2019-06-15 07:06:12','2019-06-15 07:06:12','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Shoulder Testimonials','','inherit','closed','closed','','1706-revision-v1','','','2019-06-15 07:06:12','2019-06-15 07:06:12','',1706,'https://www.drfields.com/uncategorized/1706-revision-v1/',0,'revision','',0),(1966,8,'2019-06-15 07:16:02','2019-06-15 07:16:02','<div class=\"link_string\">\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\n</div>\n\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\n</div>\n\n\n\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Shoulder Testimonials','','inherit','closed','closed','','1706-autosave-v1','','','2019-06-15 07:16:02','2019-06-15 07:16:02','',1706,'https://www.drfields.com/uncategorized/1706-autosave-v1/',0,'revision','',0),(1967,8,'2019-06-15 07:07:45','2019-06-15 07:07:45','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Shoulder Testimonials','','inherit','closed','closed','','1706-revision-v1','','','2019-06-15 07:07:45','2019-06-15 07:07:45','',1706,'https://www.drfields.com/uncategorized/1706-revision-v1/',0,'revision','',0),(1968,8,'2019-06-15 07:16:06','2019-06-15 07:16:06','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Shoulder Testimonials','','inherit','closed','closed','','1706-revision-v1','','','2019-06-15 07:16:06','2019-06-15 07:16:06','',1706,'https://www.drfields.com/uncategorized/1706-revision-v1/',0,'revision','',0),(1969,8,'2019-06-15 07:17:42','2019-06-15 07:17:42','<div class=\"link_string\">\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\n</div>\n\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\n</div>\n\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Hip Testimonials','','inherit','closed','closed','','1708-autosave-v1','','','2019-06-15 07:17:42','2019-06-15 07:17:42','',1708,'https://www.drfields.com/uncategorized/1708-autosave-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (1970,8,'2019-06-15 07:18:07','2019-06-15 07:18:07','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Hip Testimonials','','inherit','closed','closed','','1708-revision-v1','','','2019-06-15 07:18:07','2019-06-15 07:18:07','',1708,'https://www.drfields.com/uncategorized/1708-revision-v1/',0,'revision','',0),(1971,8,'2019-06-15 07:24:54','2019-06-15 07:24:54','<div class=\"link_string\">\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\n</div>\n\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\n</div>\n\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Neck Testimonials','','inherit','closed','closed','','1711-autosave-v1','','','2019-06-15 07:24:54','2019-06-15 07:24:54','',1711,'https://www.drfields.com/uncategorized/1711-autosave-v1/',0,'revision','',0),(1972,8,'2019-06-15 07:25:26','2019-06-15 07:25:26','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Neck Testimonials','','inherit','closed','closed','','1711-revision-v1','','','2019-06-15 07:25:26','2019-06-15 07:25:26','',1711,'https://www.drfields.com/uncategorized/1711-revision-v1/',0,'revision','',0),(1974,8,'2019-06-15 07:27:27','2019-06-15 07:27:27','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Ankle Testimonials','','inherit','closed','closed','','1713-revision-v1','','','2019-06-15 07:27:27','2019-06-15 07:27:27','',1713,'https://www.drfields.com/uncategorized/1713-revision-v1/',0,'revision','',0),(1975,8,'2019-06-15 07:29:28','2019-06-15 07:29:28','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Elbow Testimonials','','inherit','closed','closed','','1715-revision-v1','','','2019-06-15 07:29:28','2019-06-15 07:29:28','',1715,'https://www.drfields.com/uncategorized/1715-revision-v1/',0,'revision','',0),(1976,8,'2019-06-15 07:30:21','2019-06-15 07:30:21','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"#centrevideo\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Elbow Testimonials','','inherit','closed','closed','','1715-revision-v1','','','2019-06-15 07:30:21','2019-06-15 07:30:21','',1715,'https://www.drfields.com/uncategorized/1715-revision-v1/',0,'revision','',0),(1977,8,'2019-06-15 07:31:21','2019-06-15 07:31:21','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Elbow Testimonials','','inherit','closed','closed','','1715-revision-v1','','','2019-06-15 07:31:21','2019-06-15 07:31:21','',1715,'https://www.drfields.com/uncategorized/1715-revision-v1/',0,'revision','',0),(1978,8,'2019-06-15 07:32:23','2019-06-15 07:32:23','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\" style=\"text-align:center !important\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Elbow Testimonials','','inherit','closed','closed','','1715-revision-v1','','','2019-06-15 07:32:23','2019-06-15 07:32:23','',1715,'https://www.drfields.com/uncategorized/1715-revision-v1/',0,'revision','',0),(1979,8,'2019-06-15 07:32:58','2019-06-15 07:32:58','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\" style=\"float:none\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Elbow Testimonials','','inherit','closed','closed','','1715-revision-v1','','','2019-06-15 07:32:58','2019-06-15 07:32:58','',1715,'https://www.drfields.com/uncategorized/1715-revision-v1/',0,'revision','',0),(1980,8,'2019-06-15 07:33:36','2019-06-15 07:33:36','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\" style=\"float:none\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Elbow Testimonials','','inherit','closed','closed','','1715-revision-v1','','','2019-06-15 07:33:36','2019-06-15 07:33:36','',1715,'https://www.drfields.com/uncategorized/1715-revision-v1/',0,'revision','',0),(1981,8,'2019-06-15 07:35:19','2019-06-15 07:35:19','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Elbow Testimonials','','inherit','closed','closed','','1715-revision-v1','','','2019-06-15 07:35:19','2019-06-15 07:35:19','',1715,'https://www.drfields.com/uncategorized/1715-revision-v1/',0,'revision','',0),(1982,8,'2019-06-15 07:36:35','2019-06-15 07:36:35','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Foot Testimonials','','inherit','closed','closed','','1717-revision-v1','','','2019-06-15 07:36:35','2019-06-15 07:36:35','',1717,'https://www.drfields.com/uncategorized/1717-revision-v1/',0,'revision','',0),(1983,8,'2019-06-15 07:37:27','2019-06-15 07:37:27','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Foot Testimonials','','inherit','closed','closed','','1717-revision-v1','','','2019-06-15 07:37:27','2019-06-15 07:37:27','',1717,'https://www.drfields.com/uncategorized/1717-revision-v1/',0,'revision','',0),(1984,8,'2019-06-15 07:38:54','2019-06-15 07:38:54','<div class=\"link_string\">\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\n</div>\n\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\n</div>\n\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Wrist Testimonials','','inherit','closed','closed','','1719-autosave-v1','','','2019-06-15 07:38:54','2019-06-15 07:38:54','',1719,'https://www.drfields.com/uncategorized/1719-autosave-v1/',0,'revision','',0),(1985,8,'2019-06-15 07:39:10','2019-06-15 07:39:10','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Wrist Testimonials','','inherit','closed','closed','','1719-revision-v1','','','2019-06-15 07:39:10','2019-06-15 07:39:10','',1719,'https://www.drfields.com/uncategorized/1719-revision-v1/',0,'revision','',0),(1986,8,'2019-06-15 07:43:40','2019-06-15 07:43:40','<div class=\"link_string\">\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\n</div>\n\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\n</div>\n\n&nbsp;\n\n','Sports Hernia Testimonials','','inherit','closed','closed','','1721-autosave-v1','','','2019-06-15 07:43:40','2019-06-15 07:43:40','',1721,'https://www.drfields.com/uncategorized/1721-autosave-v1/',0,'revision','',0),(1987,8,'2019-06-15 07:43:51','2019-06-15 07:43:51','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Sports Hernia Testimonials','','inherit','closed','closed','','1721-revision-v1','','','2019-06-15 07:43:51','2019-06-15 07:43:51','',1721,'https://www.drfields.com/uncategorized/1721-revision-v1/',0,'revision','',0),(1988,8,'2019-06-15 07:44:29','2019-06-15 07:44:29','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Sports Hernia Testimonials','','inherit','closed','closed','','1721-revision-v1','','','2019-06-15 07:44:29','2019-06-15 07:44:29','',1721,'https://www.drfields.com/uncategorized/1721-revision-v1/',0,'revision','',0),(1989,8,'2019-06-15 07:46:50','2019-06-15 07:46:50','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Spanish Testimonials','','inherit','closed','closed','','1723-revision-v1','','','2019-06-15 07:46:50','2019-06-15 07:46:50','',1723,'https://www.drfields.com/uncategorized/1723-revision-v1/',0,'revision','',0),(1990,8,'2019-06-15 07:48:22','2019-06-15 07:48:22','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Hamstring Testimonials','','inherit','closed','closed','','1725-revision-v1','','','2019-06-15 07:48:22','2019-06-15 07:48:22','',1725,'https://www.drfields.com/uncategorized/1725-revision-v1/',0,'revision','',0),(1991,8,'2019-06-15 07:50:38','2019-06-15 07:50:38','<div class=\"link_string\">\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\n</div>\n\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"centrevideo\">\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\n</div>\n\n&nbsp;\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Ganglion Cyst Testimonials','','inherit','closed','closed','','1727-autosave-v1','','','2019-06-15 07:50:38','2019-06-15 07:50:38','',1727,'https://www.drfields.com/uncategorized/1727-autosave-v1/',0,'revision','',0),(1992,8,'2019-06-15 07:50:47','2019-06-15 07:50:47','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Ganglion Cyst Testimonials','','inherit','closed','closed','','1727-revision-v1','','','2019-06-15 07:50:47','2019-06-15 07:50:47','',1727,'https://www.drfields.com/uncategorized/1727-revision-v1/',0,'revision','',0),(1993,8,'2019-06-15 07:52:26','2019-06-15 07:52:26','<div class=\"link_string\">\r\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Headache Testimonials','','inherit','closed','closed','','1729-revision-v1','','','2019-06-15 07:52:26','2019-06-15 07:52:26','',1729,'https://www.drfields.com/uncategorized/1729-revision-v1/',0,'revision','',0),(1995,8,'2019-06-15 08:14:50','2019-06-15 08:14:50','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\r\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\r\n\r\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> neck treatment at OrthoRegen.\r\n\r\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\r\nDr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\r\n\r\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\r\n','Neck Injury Treatment','','inherit','closed','closed','','536-revision-v1','','','2019-06-15 08:14:50','2019-06-15 08:14:50','',536,'https://www.drfields.com/uncategorized/536-revision-v1/',0,'revision','',0),(1996,8,'2019-06-15 08:16:08','2019-06-15 08:16:08','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr.doug – Headaches & Shoulder\"]\r\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Shoulder Treatment</h4>\r\nAt OrthoRegen, shoulder injuries are one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Shoulder injuries are common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive prolotherapy shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\r\n\r\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long term results. Dr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\r\n\">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist and swimmer, understands your desire to return to full participation in your training and competition.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Acromioclavicular joint arthrosis</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation</li>\r\n 	<li>Frozen shoulder</li>\r\n 	<li>Glenoid labrum tear</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Multi-directional instability</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Shoulder dislocation</li>\r\n 	<li>Shoulder instability</li>\r\n 	<li>Shoulder pain</li>\r\n 	<li>Shoulder separation</li>\r\n 	<li>SLAP lesion</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Swimmers shoulder</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendonosis</li>\r\n 	<li>Torn labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13106272458\">(310) 627-2458</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Shoulder-Testimonials/\">Shoulder Prolotherapy Testimonials page</a>.\r\n\r\n','Shoulder Injury Treatment','','inherit','closed','closed','','545-revision-v1','','','2019-06-15 08:16:08','2019-06-15 08:16:08','',545,'https://www.drfields.com/uncategorized/545-revision-v1/',0,'revision','',0),(1997,8,'2019-06-15 08:18:06','2019-06-15 08:18:06','<h4>Prolotherapy Back and Pelvic Treatment</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur – Low Back\"]\r\n<strong>Wilbur - Low Back</strong>\r\n</div>\r\nOne of the main reasons patients come to OrthoRegen is for back relief with our Prolotherapy Back Treatment. Back or pelvic injury is also the main reason our patients say, they have had to stop participation in sports.\r\n\r\nMany of the traditional treatments for back pain can actually be the cause for continuing problems. If you have tried NSAID medications (like Ibuprofen or Naproxen), nerve blocks, acupuncture or chiropractic adjustments, and have not found relief, join our growing patient list of people who have benefited from comprehensive treatment.\r\n\r\n<h4>Does Prolotherapy Back Treatment Work?</h4>\r\nWe are very successful at treating people for back and pelvic pain with our Prolotherapy Back treatment. We get them back to their sport without surgery, without medications, and without extended time off! To properly treat the lower back, the whole area needs to be treated. Especially in cases of sport injury trauma, patients find better and faster relief from the techniques used here at OrthoRegen. We will work to rehabilitate the whole athlete through nutritional and exercise regimens.\r\n\r\nIn our experience, the preferred way to treat back and pelvic with a comprehensive program of <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. In that way, patients see long term optimal results.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common back and pelvic pains and injuries that we treat with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Back pain</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Buttock pain</li>\r\n 	<li>Coccyx pain</li>\r\n 	<li>Degenerated discs</li>\r\n 	<li>Herniated discs</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Failed back fusion pain</li>\r\n 	<li>Failed back surgery syndrome</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>Muscle spasms</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Pelvic pain</li>\r\n 	<li>Retrolisthesis</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tailbone pain</li>\r\n 	<li>Thoracic spine pain</li>\r\n 	<li>SI instability</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Yoga injury</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy back treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13109560569\">(310) 956-0569</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Low-Back-Testimonials/\">Prolotherapy Back Testimonials page</a>.','Back Injury Treatment','','inherit','closed','closed','','567-revision-v1','','','2019-06-15 08:18:06','2019-06-15 08:18:06','',567,'https://www.drfields.com/uncategorized/567-revision-v1/',0,'revision','',0),(1998,8,'2019-06-15 08:18:39','2019-06-15 08:18:39','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer- Elbow\"]\r\n<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Elbow Treatment</h4>\r\nOrthoRegen offers you the most effective treatment for elbow injuries. Avoid the long term side effects of NSAID and cortisone injections with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> elbow treatment. We offer our patients experience and knowledgeable treatment for their elbow pain and injuries. From future Olympians to weekend warriors, we can help you return to your sport without surgery, without pain medications and without extended periods of time away from your sport.\r\n\r\n<h4>Why Prolotherapy Elbow Treatment with Dr. Fields?</h4>\r\nDr. Peter Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an experienced marathoner, long-distance cyclist and swimmer. He has participated in Triathlons as well as Ironman competitions. He understands the passion that athletes have to train and compete. In our experience, our comprehensive Prolotherapy elbow treatment is the best way to treat elbow injuries for long term positive results.\r\n\r\n<a class=\"buttonlink\" href=\"#\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common elbow pain and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li><a href=\"/conditions/chronic-pain/chronic-elbow-pain/\">Elbow pain</a></li>\r\n 	<li>Elbow sprain</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>Lateral epicondylitis</li>\r\n 	<li>Medial epicondylitis</li>\r\n 	<li>Post-surgical elbow pain</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendinosis</li>\r\n 	<li>Tennis elbow</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy elbow treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\r\n\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(310) 928-2886</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Elbow-Testimonials/\">Prolotherapy Elbow Testimonials page</a>.','Elbow Injury Treatment','','inherit','closed','closed','','582-revision-v1','','','2019-06-15 08:18:39','2019-06-15 08:18:39','',582,'https://www.drfields.com/uncategorized/582-revision-v1/',0,'revision','',0),(1999,8,'2019-06-15 08:20:45','2019-06-15 08:20:45','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\r\n<strong>Joel - Foot</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Foot and Ankle Treatment</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Are you looking for an alternative to surgery for your chronic ankle sprains? Every day, OrthoRegen treats people with foot and ankle injuries by the use of comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> foot treatments. Nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n\r\n<h4>Why Prolotherapy Foot Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  Like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. If you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. If you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Ankle instability</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Foot-Testimonials/\">Prolotherapy Foot Testimonials</a> and <a href=\"/Testimonials/Ankle-Testimonials/\">Ankle Testimonials</a> pages.','Foot Injury Treatment','','inherit','closed','closed','','595-revision-v1','','','2019-06-15 08:20:45','2019-06-15 08:20:45','',595,'https://www.drfields.com/uncategorized/595-revision-v1/',0,'revision','',0),(2000,8,'2019-06-15 08:59:52','2019-06-15 08:59:52','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Hand Injury Treatment Suzie Wrist\"]\r\n<strong>Suzie - Wrist</strong>\r\n</div>\r\n<h4>Prolotherapy Hand and Wrist Injuries and Treatment</h4>\r\nWhether you are suffering from a sprained finger from football or baseball, or wrist pain from tennis or golf, OrthoRegen treats numerous finger, hand and wrist injuries with comprehensive <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\r\n\">Prolotherapy</a> hand treatments. We can treat your pain or injury without surgery, without pain medications or without extended time away from training and competition.\r\n\r\nIn our experience, comprehensive Prolotherapy can successfully treat pain in your fingers, hands and wrists, with optimal long term results. Dr. Fields, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, can consult with you to determine if you are a candidate for <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Because of his participation in Triathlons and Ironman competitions, he understands your desire to return quickly to the sports in which you participate.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Common Hand and Wrist Injuries Treatable by Prolotheraphy</h4>\r\nThe most common finger, wrist and hand pain and injuries we treat with comprehensive Prolotherapy are:\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Baseball injuries</li>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Finger pain</li>\r\n 	<li>Football injuries</li>\r\n 	<li>Golf injuries</li>\r\n 	<li>Hand pain</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Sprain injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tennis injuries</li>\r\n 	<li>Thumb pain</li>\r\n 	<li>Wrist pain</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy hand and wrist treatments, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Knee-Testimonials/\">Prolotherapy Hand and Wrist Testimonials page</a>.','Hand Injury Treatment','','inherit','closed','closed','','615-revision-v1','','','2019-06-15 08:59:52','2019-06-15 08:59:52','',615,'https://www.drfields.com/uncategorized/615-revision-v1/',0,'revision','',0),(2001,8,'2019-06-15 09:15:54','2019-06-15 09:15:54','<h4>Sports Injuries Treatment</h4>\r\nHave sports injuries stopped you? Get back in the game with Prolotherapy and Dr. Peter A. Fields, The Athletic Doc®. At OrthoRegen we offer innovative, non-surgical treatments for your sports injury or chronic pain problems. Without unnecessary medication, prescriptions, cortisone shots or surgery, Prolotherapy can regenerate damaged or worn ligaments and strengthen weakened tendons. The most beneficial aspect of our non-surgical sports injuries treatment is that you can continue to train while you receive Prolotherapy treatments. We treat athletes of all skill and age levels: high school to college; amateur to professional athletes.\r\n\r\n<h4>How Can Prolotherapy Help Your Sports Injury?</h4>\r\nProlotherapy is an innovative treatment that stimulates the immune system to repair damaged tissue.”Prolo” comes from the word proliferate. Prolotherapy then, describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and other sports injuries. Receive treatment for your sports injuries with comprehensive Prolotherapy at OrthoRegen.\r\n\r\n<h4>Are You Suffering from a Sports Injury?</h4>\r\n<ul>\r\n 	<li><a href=\"/Conditions/Sports-Injuries/Knee-Injury-Treatment\">K</a><a href=\"/Conditions/Sports-Injuries/Knee-Injury-Treatment\">nee Pain</a></li>\r\n 	<li> ACL Tear</li>\r\n 	<li>Torn Meniscus</li>\r\n 	<li><a href=\"/Chronic-Pain/Chronic-Neck-Pain\">Neck pain</a></li>\r\n 	<li>Back Pain</li>\r\n 	<li>Shin Splints</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>Hamstring Strain</li>\r\n 	<li>IT Band Injury</li>\r\n 	<li>Turf Toe</li>\r\n</ul>\r\n<strong><em> Prolotherapy Sports Injuries Treatment can help you get back in the game – and get back quickly!</em></strong>\r\n\r\n<h4>Prolotherapy Doctor Treats Sports Injuries Without Surgery</h4>\r\nReceive treatment for your sports injuries by Ironman Triathlete Dr. Peter A. Fields. For over 25 years, Dr. Fields has been active in the sport of Triathlon. It is his experience as an athlete that allows him to understand the potential for injury and the demands of sports on the physical body. He also understands the passion athletes have to get back to training and competition, and their need to recover quickly from injury, because he has been there. In November 2012, Dr. Fields completed his second Ironman Triathlon, beating his 2011 time by better than 14 minutes. Dr. Fields is known as The Athletic Doc®. Wouldn’t you want to be treated by a sports doctor who is also an athlete?\r\n\r\nOur medical team finds that treating athletes is very rewarding. We can utilize a comprehensive health approach to help you reach your peak physical performance. <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> allows you to get back to training within a couple of days and does not involve periods of long recovery. Prolotherapy involves the injection of natural substances at the exact site of an injury. This stimulates the immune system to repair the sports injury. Areas often injured through sports related activities—ligaments, tendons, menisci, muscles, growth plates, joint capsules and cartilage are stimulated to heal. Anesthetics are also used to minimize any unpleasant pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Are You A Candidate for Non- Surgical Sports Injuries Treatment?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13106272458\">(310) 627-2458</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"/Testimonials/Knee-Testimonials/\">Testimonials page</a>.','Sports Injuries Treatment Overview','','inherit','closed','closed','','632-revision-v1','','','2019-06-15 09:15:54','2019-06-15 09:15:54','',632,'https://www.drfields.com/uncategorized/632-revision-v1/',0,'revision','',0),(2002,8,'2019-06-15 09:28:18','2019-06-15 09:28:18','\r\n<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Stem Cell Knee</strong>	\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong>	\r\n</div>\r\n\r\n<i>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"#\">Testimonials Page</a>.\r\n<div class=\"clear\"></div>\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\"  class=\"alignleft size-full wp-image-732\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" class=\"alignright size-full wp-image-735\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-06-15 09:28:18','2019-06-15 09:28:18','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(2003,8,'2019-06-15 09:33:18','2019-06-15 09:33:18','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Stem Cell Knee</strong>	\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong>	\r\n</div>\r\n\r\n<i>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\r\n<div class=\"clear\"></div>\r\n\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\"  class=\"alignleft size-full wp-image-732\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" class=\"alignright size-full wp-image-735\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-06-15 09:33:18','2019-06-15 09:33:18','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(2004,8,'2019-06-15 09:52:18','2019-06-15 09:52:18','<div class=\"inner\">\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\"  width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg\" alt=\"Finalhiking (4)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\"/>\r\n</div>\r\n\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg\" alt=\"Finalhiking (5)\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg\" alt=\"Finalhiking (6)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg\" alt=\"Finalhiking (7)\"  />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg\" alt=\"Finalhiking (8)\" />\r\n</div>\r\n\r\n<div class=\"clear\">\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg\" alt=\"Finalhiking (9)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg\" alt=\"Finalhiking (10)\" /></div>\r\n</div>','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-15 09:52:18','2019-06-15 09:52:18','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(2005,8,'2019-06-15 09:54:05','2019-06-15 09:54:05','<div class=\"inner\">\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\"/><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\"  width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\"/><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg\" alt=\"Finalhiking (4)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\"/>\r\n</div>\r\n\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg\" alt=\"Finalhiking (5)\"/><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg\" alt=\"Finalhiking (6)\"  /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg\" alt=\"Finalhiking (7)\"  /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg\" alt=\"Finalhiking (8)\" />\r\n</div>\r\n\r\n<div class=\"clear\">\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg\" alt=\"Finalhiking (9)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg\" alt=\"Finalhiking (10)\" /></div>\r\n</div>','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-15 09:54:05','2019-06-15 09:54:05','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(2006,8,'2019-06-15 09:55:01','2019-06-15 09:55:01','<div class=\"inner\">\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\"/><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\"  width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\"/><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg\" alt=\"Finalhiking (4)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\"/><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg\" alt=\"Finalhiking (5)\"/><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg\" alt=\"Finalhiking (6)\"  /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg\" alt=\"Finalhiking (7)\"  /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg\" alt=\"Finalhiking (8)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg\" alt=\"Finalhiking (9)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg\" alt=\"Finalhiking (10)\" /></div>\r\n</div>','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-15 09:55:01','2019-06-15 09:55:01','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(2007,8,'2019-06-15 10:00:35','2019-06-15 10:00:35','<div class=\"inner\">\r\n<div class=\"img-section\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\"/><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\"  width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\"/><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg\" alt=\"Finalhiking (4)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\"/><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg\" alt=\"Finalhiking (5)\"/><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg\" alt=\"Finalhiking (6)\"  /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg\" alt=\"Finalhiking (7)\"  /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg\" alt=\"Finalhiking (8)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg\" alt=\"Finalhiking (9)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg\" alt=\"Finalhiking (10)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\" width=\"157\" height=\"279\" class=\"aligncenter size-full wp-image-1791\" /></div>\r\n</div>','Finally hiking','','inherit','closed','closed','','1789-revision-v1','','','2019-06-15 10:00:35','2019-06-15 10:00:35','',1789,'https://www.drfields.com/uncategorized/1789-revision-v1/',0,'revision','',0),(2009,8,'2019-06-15 10:17:06','2019-06-15 10:17:06','<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n[caption id=\"attachment_4174\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-500x281.jpg\" alt=\"Foot Pain\" width=\"500\" height=\"281\" /> <strong><em>                        Resolve Foot Pain with Prolotherapy</em></strong>[/caption]\r\n\r\nAnnoying foot pain affects about a quarter of the population. And let\'s face it, most of us spend a lot of time on our feet. Every time we take a step, we put half of our body weight on our feet. Add running and jumping place into the mix, and you have even more stress placed on them. So, it doesn\'t come as any surprise then, that a bunch of Americans would end up with foot pain.\r\n\r\nPoorly fitting shoes can add to the pain too. And some foot shapes and conditions like flat foot can add to the problem too. Also, forefoot or toe problems, like hammer toe and bunions are conditions that can cause foot pain.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nOftentimes, an underlying problem of ligament or tendon injury or weakness is at the core and is the pain causing culprit.\r\n<h3>What Helps Foot Pain Besides Surgery?</h3>\r\n<h3><em>Regenerative Orthopedics like Prolotherapy, PRP, and Stem Cell Therapy Can!</em></h3>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nRegenerative therapies, like <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy,</a> are becoming more and more widespread as a form of non-surgical pain management. And they are very often used in relieving pain associated with tendon and ligament injuries in the joints. But how effective is it?\r\n<h3>How Effective Is Prolotherapy and What Does the Research Show?</h3>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nStudies have shown that Prolotherapy boosts the production of new collagen.1 And they have also shown that Prolotherapy improves ligament and tendon diameter and strength.2 Therefore, Prolotherapy doesn\'t just take some pain away. It can actually repair the tendon or ligament. And that is great news. Very often then, in tendon and ligament injury, the person can avoid surgery by choosing this therapy instead. And who doesn\'t want to avoid surgery?\r\n\r\n</div>\r\n<h3>What About Foot Pain from Plantar Fasciosis?</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nYeah, plantar fasciosis is a pretty painful foot condition. Can Prolotherapy help? In an article in the <em>British Journal of Sports Medicine</em>, the researchers noted that 16 out of 20 patient with plantar fasciosis who received Dextrose Prolotherapy had good to excellent results.3 And these were cases of chronic, persistent pain lasting an average of 21 months.3 That sounds like a lot of relief!\r\n<h3>Regenerative Orthopedics, Like Prolotherapy, Are Effective Treatment Options for Persistent Foot Pain</h3>\r\n<div class=\"page\" title=\"Page 8\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nDextrose Prolotherapy can be used on patients who have months or even years of unresolved foot pain. And Regenerative Orthopedics  can improve the quality of life for those who suffer from annoying, persistent foot pain. Patients who have received this treatment have reported \"less pain, stiffness, depressed and anxious thoughts, medication usage, as well as improved walking ability, sleep and exercise ability.\"Why put up with pain, when you have an alternative.\r\n\r\nGet rid of your foot pain. Call us today!\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n&nbsp;\r\n<h3>References</h3>\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n<ol>\r\n 	<li>Schmidt H. Effect of growth factors on proliferation of fibroblasts from the medial collateral and anterior cruciate ligaments. Journal of Orthopaedic Research. 1995;13:184-190.</li>\r\n 	<li>Hackett G. Joint stabilization: An experimental, histiologic study with comments on the clinical application in ligament proliferation. American Journal of Surgery. 1955;89:968-973</li>\r\n 	<li>Ryan MB, Wong AD, Gillies JH, Wong J, Traunton JE Sonographically guided intratendinous injections of hyperosmolar dextrose/lidocaine: a pilot study for the treatment of chronic plantar fasciitis. Br J Sports Med 2009;43 :303–306.</li>\r\n 	<li>Hauser, Ross A., Marion A. Hauser, and J. K. Cukla. \"A retrospective observational study on Hackett-Hemwall Dextrose Prolotherapy for unresolved foot and toe pain at an outpatient charity clinic in rural Illinois.\" <i>J Prolotherapy</i> 3 (2011): 543-551.</li>\r\n</ol>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\"><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\" alt=\"foot pain medium\" /></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\">Ankle/Foot</a></div>\r\n<div class=\"large_thumb\"></div>\r\n</div>\r\n</div>\r\n</div>','Foot Pain Resolution','','publish','open','closed','','ankle-foot','','','2020-09-28 00:19:58','2020-09-28 00:19:58','',0,'https://www.drfields.com/?p=2009',0,'post','',0),(2010,8,'2019-06-15 10:17:06','2019-06-15 10:17:06','<h6>TOPICS </h6>\r\nAchilles tendinopathy \r\nPlantar fasciosis\r\n\r\n<strong>Dextrose: Ryan et al 2009   Dextrose injection for chronic pain of Plantar fasciosis</strong>\r\nRyan MB, Wong AD, Gillies JH, Wong J, Traunton JE Sonographically guided intratendinous injections of hyperosmolar dextrose/lidocaine: a pilot study for the treatment of chronic plantar fasciitis. Br J Sports Med 2009;43 :303–306.\r\n\r\nThe is an article  about  injection of 25% dextrose in 20 consecutive patients with pain in the feet imitated by prssure over the plantar fascia.  Injections were given under ultrasound guidance. These were chronic cases with pain from 7 to 228 months (mean 21 months). Follow-up was for 6-20 months (mean 11.8) months from the final treatment. Three to 12 sessions (mean 3) were given at 2 week intervals. 16 out of 20 had good to excellent results.\r\n\r\nMy impression is that there were apparently no dropouts which is somewhat unusual in a study with foot injection every 2 weeks. This speaks well of the technique of the authors. However, the every 2 week frequency may have not allowed enough time in between to really determine the number of treatments needed with full healing intervals. There is always that balance between desire to move treatment along in an athlete and the desire to keep the number of treatments minimal. It is notable that, although ultrasound was used for injection there were no post treatment ultrasound results reported. Therefore there were no objective post treatment measures.  There also was not a group comparing blind injections to ultrasound guided.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Ankle Foot','','inherit','closed','closed','','2009-revision-v1','','','2019-06-15 10:17:06','2019-06-15 10:17:06','',2009,'https://www.drfields.com/uncategorized/2009-revision-v1/',0,'revision','',0),(2012,8,'2019-06-15 11:08:19','2019-06-15 11:08:19','<h2><strong>Dry Needling of Tendons Is NOT a Placebo</strong></h2>\r\n[caption id=\"attachment_4166\" align=\"alignright\" width=\"402\"]<img class=\"wp-image-4166\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Prolo-definition-500x376.png\" alt=\"Prolotherapy Definition\" width=\"402\" height=\"302\" /> <strong><i>Encourage even more tendon healing than dry needling with Prolotherapy!</i></strong>[/caption]\r\n\r\nDry needling of tendons is not a placebo, but is a treatment in and of itself.\r\n\r\nWe have a couple of takeaways in this article:\r\n<ol>\r\n 	<li>Since dry needling is not a placebo, then when researchers do studies that compare such treatments as PRP to dry needling. This needs to be understood and taken into consideration when comparing results. Dry needling is a treatment too. And dry needling has been shown to be effective at reducing painful tendon conditions.</li>\r\n 	<li>Dry needling encourages localized bleeding and fibroblastic proliferation. That means it boosts the body\'s natural healing cascade, which is also one of the healing mechanisms of Regenerative Orthopedics. But Regenerative Orthopedics also adds potent growth factors to begin tissue repair and regeneration at the injury site.</li>\r\n</ol>\r\n<h3>What Does the Research Say About Dry Needling as a Treatment?</h3>\r\n<a href=\"https://link.springer.com/journal/12178\" data-test=\"journal-link\"><i data-test=\"journal-title\">Current Reviews in Musculoskeletal Medicine</i></a> says, \"Dry needling involves inserting needles into the affected tendon, and it is thought to disrupt the chronic degenerative process and encourage localized bleeding and fibroblastic proliferation.\"1 Dextrose Prolotherapy works by similar means. But it also adds the benefit of dextrose. That means it will boost the body\'s natural healing cascade by introducing this natural substance.\r\n\r\nAnd dry needling has also been shown to have a positive effect by decreasing knee pain. A study in the <em>Journal of Clinical Medicine</em> demonstrates that \"low to moderate evidence suggests a positive effect of trigger point dry needling on pain and related disability in patellofemoral pain.\"2 Again, dry needling is a treatment in itself and not a placebo.\r\n\r\nAnd dry needling also decreases tennis elbow pain. A 2020 article in the journal <i>Clinical Rehabilitation </i>found that the the treatment reduced pain intensity. And it had a \"positive effect on pain-related disability, pressure pain sensitivity and strength at short-term in patients with lateral epicondylalgia (tennis elbow) of musculoskeletal origin.\"3\r\n<h3>Regenerative Orthopedics Boost the Healing Effect Even More</h3>\r\nThere is a benefit  to the healing process when a needle is inserted at the attachment of a tendon and of a ligament. And there is more of a benefit when the solutions used in Prolotherapy, PRP, and Stem Cell Therapy are part of the therapy. Regenerative Orthopedics are all injection techniques directed at tendons, ligaments, and other soft tissue structures. The treatments are very effective at reducing and eliminating the pain involved in a multitude of painful joint conditions.\r\n\r\nIt makes sense that if it is helpful to reduce pain by just inserting a needle into the tendon, then it is even more helpful to include solutions that boost the healing capacity. At OrthoRegen, we have many years of experience treating people with painful joint conditions, and getting them back to doing the activities and sports that they love. <a href=\"https://www.drfields.com/contact/\">Contact us today.</a>\r\n\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Sychev, Vladimir, Aharon S. Finestone, and Leonid Kalichman. \"Dry Needling as a Treatment Modality for Tendinopathy: a Narrative Review.\" <i>Current Reviews in Musculoskeletal Medicine</i> (2020): 1-8.</li>\r\n 	<li>Rahou-El-Bachiri, Youssef, et al. \"Effects of Trigger Point Dry Needling for the Management of Knee Pain Syndromes: A Systematic Review and Meta-Analysis.\" <i>Journal of Clinical Medicine</i> 9.7 (2020): 2044.</li>\r\n 	<li>Navarro-Santana, Marcos J., et al. \"Effects of trigger point dry needling on lateral epicondylalgia of musculoskeletal origin: a systematic review and meta-analysis.\" <i>Clinical Rehabilitation</i>(2020): 0269215520937468.</li>\r\n</ol>\r\n&nbsp;','Dry Needling of Tendons is Not a Placebo','','publish','open','closed','','dry-needling-is-not-a-placebo','','','2020-09-26 03:10:44','2020-09-26 03:10:44','',0,'https://www.drfields.com/?p=2012',0,'post','',0),(2013,8,'2019-06-15 11:08:19','2019-06-15 11:08:19','<h6>TOPICS </h6>\r\nNeedling of Tendons/Ligaments is Not a placebo\r\nChronic Low Back Pain\r\nCoccyx Pain  After Fracture \r\nDegenerative Disc Disease \r\nSacoiliac Pain \r\n \r\n<strong>Needling of Tendons/Ligaments  is NOT a placebo: Puncture of Cell membrane with inflammatory lipid release. </strong>\r\nIn the treatment of low back pain there are four treatment comparison studies. The control group in all back studies involved needle contact with attachments of ligaments and tendons. By injecting ligaments and tendons, there is needle contact with cell membranes of connective tissue cells. Disrupting cell membranes releases lipids, which in turn cause signaling of fibroblasts.Needling of Tendons is NOT a placebo: Microbleeding with platelet effects. \r\n\r\nIn addition, microbleeding from needle contact is expected, and Edwards and colleagues have demonstrated the potential healing effect of whole blood injection in patients with recalcitrant tennis elbow. Edwards SG, Calandruccio JH: Autologous blood injections for refractory lateral epicondylitis J Hand Surg [Am] 28(2):272, 2003.\r\n\r\nThe hope is that future studies on low back pain will include a near-placebo arm that avoids connective tissue contact or blood effects and that standard injection methods will be used. In the treatment of low back pain, standard treatment methods are now taught in cadaver courses offered by the American Academy of Orthopedic Medicine. An example of such a near-placebo would be needle insertion through skin without contacting bone or ligament.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Lower Back','','inherit','closed','closed','','2012-revision-v1','','','2019-06-15 11:08:19','2019-06-15 11:08:19','',2012,'https://www.drfields.com/uncategorized/2012-revision-v1/',0,'revision','',0),(2014,8,'2019-06-15 11:10:32','2019-06-15 11:10:32','[caption id=\"attachment_4139\" align=\"alignleft\" width=\"575\"]<img class=\" wp-image-4139\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/arthritis-symptoms-500x500.jpg\" alt=\"Arthritis Pain\" width=\"575\" height=\"575\" /> <strong>                                 <em> Prolotherapy Is More Effective Than Other Treatments</em></strong>[/caption]\r\n<h1>How Effective Is Prolotherapy Versus Exercise or Cortisone for Arthritis Pain?</h1>\r\n<em>Researchers in the Journal of Pain Research compared dextrose Prolotherapy to different arthritis pain treatments such as exercise, local anesthesia injections, and even cortisone injections. </em>\r\n\r\n<em>What did they conclude? </em>\r\n\r\n<em>Dextrose prolotherapy provided a better effect than exercise, local anesthetics, and probably corticosteroids at their 6 months follow-up.</em>\r\n\r\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/\">Read the full article by clicking here.</a>\r\n\r\nAnd take a look at the abstract below.\r\n<h3></h3>\r\n<h3></h3>\r\n<h2 class=\"content-title\">Comparative effectiveness of dextrose prolotherapy versus control injections and exercise in the management of osteoarthritis pain: a systematic review and meta-analysis</h2>\r\n<div class=\"half_rhythm\">\r\n<div class=\"contrib-group fm-author\"><a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Hung%20CY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Chen-Yu Hung</a>,<sup>1</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Hsiao%20MY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Ming-Yen Hsiao</a>,<sup>2,</sup><sup>3</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Chang%20KV%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Ke-Vin Chang</a>,<sup>1,</sup><sup>2</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Han%20DS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Der-Sheng Han</a>,<sup>1,</sup><sup>2</sup> and <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Wang%20TG%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Tyng-Guey Wang</a><sup>2,</sup><sup>3</sup></div>\r\n<div class=\"fm-panel half_rhythm\">\r\n<div class=\"togglers\"><a class=\"pmctoggle\" href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#\">Author information</a> <a class=\"pmctoggle\" href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#\">Copyright and License information</a> <a href=\"https://www.ncbi.nlm.nih.gov/pmc/about/disclaimer/\">Disclaimer</a></div>\r\n<div id=\"pmclinksbox\" class=\"links-box whole_rhythm\">\r\n<div class=\"fm-panel\">\r\n<h2 id=\"idm140468391900000title\" class=\"head no_bottom_margin ui-helper-clearfix\">Abstract</h2>\r\n<div>\r\n<div id=\"__sec1\" class=\"sec sec-first\">\r\n<h3 id=\"__sec1title\">Background</h3>\r\n<p id=\"__p1\" class=\"p p-first-last\">Increasing evidence has supported the use of dextrose prolotherapy for patients with osteoarthritis. However, the real benefits may be affected by differences in injection protocols, comparative regimens, and evaluation scales.</p>\r\n\r\n</div>\r\n<div id=\"__sec2\" class=\"sec\">\r\n<h3 id=\"__sec2title\">Methods</h3>\r\n<p id=\"__p2\" class=\"p p-first-last\">PubMed and Scopus were searched from the earliest record until February 2016. One single-arm study and five randomized controlled trials were included, comprising 326 participants. We estimated the effect sizes of pain reduction before and after serial dextrose injections and compared the values between dextrose prolotherapy, comparative regimens, and exercise 6 months after the initial injection.</p>\r\n\r\n</div>\r\n<div id=\"__sec3\" class=\"sec\">\r\n<h3 id=\"__sec3title\">Results</h3>\r\n<p id=\"__p3\" class=\"p p-first-last\">Regarding the treatment arm using dextrose prolotherapy, the effect sizes compared with baseline were 0.65 (95% confidence interval [CI], 0.14–1.17), 0.84 (95% CI, 0.40–1.27), 0.85 (95% CI, 0.60–1.10), and 0.87 (95% CI, 0.53–1.21) after the first, second, third, and fourth or more injections, respectively. The overall effect of dextrose was better than control injections (effect size, 0.36; 95% CI, 0.10–0.63).</p>\r\n<p class=\"p p-first-last\">Dextrose prolotherapy had a superior effect compared with local anesthesia (effect size, 0.38; 95% CI, 0.07–0.70) and exercise (effect size, 0.71; 95% CI, 0.30–1.11). There was an insignificant advantage of dextrose over corticosteroids (effect size, 0.31; 95% CI, –0.18 to 0.80) which was only estimated from one study.</p>\r\n\r\n</div>\r\n<div id=\"__sec4\" class=\"sec sec-last\">\r\n<h3 id=\"__sec4title\">Conclusion</h3>\r\n<p id=\"__p4\" class=\"p p-first-last\">Dextrose injections decreased pain in osteoarthritis patients but did not exhibit a positive dose–response relationship following serial injections. Dextrose prolotherapy was found to provide a better therapeutic effect than exercise, local anesthetics, and probably corticosteroids when patients were retested 6 months following the initial injection.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 class=\"sec\">Reference:</h3>\r\n</div>\r\nHung, Chen-Yu, et al. \"Comparative effectiveness of dextrose prolotherapy versus control injections and exercise in the management of osteoarthritis pain: a systematic review and meta-analysis.\" <i>Journal of pain research</i> 9 (2016): 847.\r\n\r\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/\">Read the full article by clicking here.</a>\r\n<h3>Take a look at more articles on Regenerative Orthopedic treatments for arthritis:</h3>\r\n<h4><a title=\"How Arthritis Affects Older Athletes\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/\">How Arthritis Affects Older Athletes</a></h4>\r\n<h4><a title=\"Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain\" href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a></h4>\r\nhttps://www.drfields.com/articles/magazine-column/townsend-letter-arthritis/\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n</div>\r\n</div>\r\n</div>','Arthritis Pain: How Effective Is Prolotherapy vs Exercise Or Cortisone?','','publish','open','closed','','arthritis-pain','','','2021-02-16 21:52:40','2021-02-16 21:52:40','',0,'https://www.drfields.com/?p=2014',0,'post','',0),(2015,8,'2019-06-15 11:10:32','2019-06-15 11:10:32','<strong>DEX: Reeves et al 2000:</strong> \r\n\r\n10% dextrose superior to hypotonic lidocaine in finger and thumb OA.  Injection was primarily periarticular here (medial and lateral) and in this study  10% dextrose was superior  with no obvious effect of control solution.  Reeves KD, Hassanein K. Randomized prospective placebo controlled double blind study of dextrose prolotherapy for osteoarthritic thumbs and finger (DIP, PIP and Trapeziometacarpal) joints: Evidence of Clinical Efficacy. Jnl Alt Compl Med 2000;6(4):311-320.  To open a PDF of the study click here -->View Finger Study  \r\nSubjects had finger pain an average of 5 years and met radiographic criteria for finger  \r\n \r\n<strong>Here is the abstract </strong>\r\n\r\nReeves KD; Hassanein K Randomized, prospective, placebo-controlled double-blind study of dextrose prolotherapy for osteoarthritic thumb and finger (DIP, PIP, and trapeziometacarpal) joints: evidence of clinical efficacy. J Altern Complement Med (United States), Aug 2000, 6(4) p311-20    OBJECTIVES: To determine the clinical benefit of dextrose prolotherapy (injection of growth factors or growth factor stimulators) in osteoarthritic finger joints. DESIGN: Prospective randomized double-blind placebo-controlled trial. SETTINGS/LOCATION: Outpatient physical medicine clinic. SUBJECTS: Six months of pain history was required in each joint studied as well as one of the following: grade 2 or 3 osteophyte, grade 2 or 3 joint narrowing, or grade 1 osteophyte plus grade 1 joint narrowing. Distal interphalangeal (DIP), proximal interphalangeal (PIP), and trapeziometacarpal (thumb CMC) joints were eligible. Thirteen patients (with seventy-four symptomatic osteoarthitic joints) received active treatment, and fourteen patients (with seventy-six symptomatic osteoarthritic joints) served as controls. INTERVENTION: One half milliliter (0.5 mL) of either 10% dextrose and 0.075% xylocaine in bacteriostatic water (active solution) or 0.075% xylocaine in bacteriostatic water (control solution) was injected on medial and lateral aspects of each affected joint. This was done at 0, 2, and 4 months with assessment at 6 months after first injection. OUTCOME MEASURES: One-hundred millimeter (100 mm) Visual Analogue Scale (VAS) for pain at rest, pain with joint movement and pain with grip, and goniometrically-measured joint flexion. RESULTS: Pain at rest and with grip improved more in the dextrose group but not significantly. Improvement in pain with movement of fingers improved significantly more in the dextrose group (42% versus 15% with a p value of .027). Flexion range of motion improved more in the dextrose group (p = .003). Side effects were minimal. CONCLUSION: Dextrose prolotherapy was clinically effective and safe in the treatment of pain with joint movement and range limitation in osteoarthritic finger joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Finger','','inherit','closed','closed','','2014-revision-v1','','','2019-06-15 11:10:32','2019-06-15 11:10:32','',2014,'https://www.drfields.com/uncategorized/2014-revision-v1/',0,'revision','',0),(2016,8,'2019-06-15 11:12:24','2019-06-15 11:12:24','<strong>DEX: Reeves et al 2000:</strong> \r\n\r\n10% dextrose superior to hypotonic lidocaine in finger and thumb OA.  Injection was primarily periarticular here (medial and lateral) and in this study  10% dextrose was superior  with no obvious effect of control solution.  Reeves KD, Hassanein K. Randomized prospective placebo controlled double blind study of dextrose <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">prolotherapy</a> for osteoarthritic thumbs and finger (DIP, PIP and Trapeziometacarpal) joints: Evidence of Clinical Efficacy. Jnl Alt Compl Med 2000;6(4):311-320.  To open a PDF of the study click here -->View Finger Study  \r\nSubjects had finger pain an average of 5 years and met radiographic criteria for finger  \r\n \r\n<strong>Here is the abstract </strong>\r\n\r\nReeves KD; Hassanein K Randomized, prospective, placebo-controlled double-blind study of dextrose <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">prolotherapy</a> for osteoarthritic thumb and finger (DIP, PIP, and trapeziometacarpal) joints: evidence of clinical efficacy. J Altern Complement Med (United States), Aug 2000, 6(4) p311-20    OBJECTIVES: To determine the clinical benefit of dextrose prolotherapy (injection of growth factors or growth factor stimulators) in osteoarthritic finger joints. DESIGN: Prospective randomized double-blind placebo-controlled trial. SETTINGS/LOCATION: Outpatient physical medicine clinic. SUBJECTS: Six months of pain history was required in each joint studied as well as one of the following: grade 2 or 3 osteophyte, grade 2 or 3 joint narrowing, or grade 1 osteophyte plus grade 1 joint narrowing. Distal interphalangeal (DIP), proximal interphalangeal (PIP), and trapeziometacarpal (thumb CMC) joints were eligible. Thirteen patients (with seventy-four symptomatic osteoarthitic joints) received active treatment, and fourteen patients (with seventy-six symptomatic osteoarthritic joints) served as controls. INTERVENTION: One half milliliter (0.5 mL) of either 10% dextrose and 0.075% xylocaine in bacteriostatic water (active solution) or 0.075% xylocaine in bacteriostatic water (control solution) was injected on medial and lateral aspects of each affected joint. This was done at 0, 2, and 4 months with assessment at 6 months after first injection. OUTCOME MEASURES: One-hundred millimeter (100 mm) Visual Analogue Scale (VAS) for pain at rest, pain with joint movement and pain with grip, and goniometrically-measured joint flexion. RESULTS: Pain at rest and with grip improved more in the dextrose group but not significantly. Improvement in pain with movement of fingers improved significantly more in the dextrose group (42% versus 15% with a p value of .027). Flexion range of motion improved more in the dextrose group (p = .003). Side effects were minimal. CONCLUSION: Dextrose prolotherapy was clinically effective and safe in the treatment of pain with joint movement and range limitation in osteoarthritic finger joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Finger','','inherit','closed','closed','','2014-revision-v1','','','2019-06-15 11:12:24','2019-06-15 11:12:24','',2014,'https://www.drfields.com/uncategorized/2014-revision-v1/',0,'revision','',0),(2017,8,'2019-06-15 11:13:05','2019-06-15 11:13:05','<strong>DEX: Reeves et al 2000:</strong> \r\n\r\n10% dextrose superior to hypotonic lidocaine in finger and thumb OA.  Injection was primarily periarticular here (medial and lateral) and in this study  10% dextrose was superior  with no obvious effect of control solution.  Reeves KD, Hassanein K. Randomized prospective placebo controlled double blind study of dextrose <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">prolotherapy</a> for osteoarthritic thumbs and finger (DIP, PIP and Trapeziometacarpal) joints: Evidence of Clinical Efficacy. Jnl Alt Compl Med 2000;6(4):311-320.  To open a PDF of the study click here -->View Finger Study  \r\nSubjects had finger pain an average of 5 years and met radiographic criteria for finger  \r\n \r\n<strong>Here is the abstract </strong>\r\n\r\nReeves KD; Hassanein K Randomized, prospective, placebo-controlled double-blind study of dextrose <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">prolotherapy</a> for osteoarthritic thumb and finger (DIP, PIP, and trapeziometacarpal) joints: evidence of clinical efficacy. J Altern Complement Med (United States), Aug 2000, 6(4) p311-20    OBJECTIVES: To determine the clinical benefit of dextrose prolotherapy (injection of growth factors or growth factor stimulators) in osteoarthritic finger joints. DESIGN: Prospective randomized double-blind placebo-controlled trial. SETTINGS/LOCATION: Outpatient physical medicine clinic. SUBJECTS: Six months of pain history was required in each joint studied as well as one of the following: grade 2 or 3 osteophyte, grade 2 or 3 joint narrowing, or grade 1 osteophyte plus grade 1 joint narrowing. Distal interphalangeal (DIP), proximal interphalangeal (PIP), and trapeziometacarpal (thumb CMC) joints were eligible. Thirteen patients (with seventy-four symptomatic osteoarthitic joints) received active treatment, and fourteen patients (with seventy-six symptomatic osteoarthritic joints) served as controls. INTERVENTION: One half milliliter (0.5 mL) of either 10% dextrose and 0.075% xylocaine in bacteriostatic water (active solution) or 0.075% xylocaine in bacteriostatic water (control solution) was injected on medial and lateral aspects of each affected joint. This was done at 0, 2, and 4 months with assessment at 6 months after first injection. OUTCOME MEASURES: One-hundred millimeter (100 mm) Visual Analogue Scale (VAS) for pain at rest, pain with joint movement and pain with grip, and goniometrically-measured joint flexion. RESULTS: Pain at rest and with grip improved more in the dextrose group but not significantly. Improvement in pain with movement of fingers improved significantly more in the dextrose group (42% versus 15% with a p value of .027). Flexion range of motion improved more in the dextrose group (p = .003). Side effects were minimal. CONCLUSION: Dextrose prolotherapy was clinically effective and safe in the treatment of pain with joint movement and range limitation in osteoarthritic finger joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img alt=\"foot pain medium\" title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"></a><a href=\"/ankle-foot/\">Ankle/Foot</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Knee\"><img alt=\"Knee Pain\" title=\"Knee Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Lower-Back\"><img alt=\"back pain medium\" title=\"back pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\">Lower Back</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Elbow\"><img alt=\"Elbow Pain\" title=\"Elbow Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\">Elbow</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Finger\"><img alt=\"Finger Pain\" title=\"Finger Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finger-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\">Finger</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"><img alt=\"Groin/Pelvis\" title=\"Groin/Pelvis\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Groin/Pelvis</a>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Finger','','inherit','closed','closed','','2014-autosave-v1','','','2019-06-15 11:13:05','2019-06-15 11:13:05','',2014,'https://www.drfields.com/uncategorized/2014-autosave-v1/',0,'revision','',0),(2018,8,'2019-06-15 11:13:13','2019-06-15 11:13:13','<strong>DEX: Reeves et al 2000:</strong> \r\n\r\n10% dextrose superior to hypotonic lidocaine in finger and thumb OA.  Injection was primarily periarticular here (medial and lateral) and in this study  10% dextrose was superior  with no obvious effect of control solution.  Reeves KD, Hassanein K. Randomized prospective placebo controlled double blind study of dextrose <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">prolotherapy</a> for osteoarthritic thumbs and finger (DIP, PIP and Trapeziometacarpal) joints: Evidence of Clinical Efficacy. Jnl Alt Compl Med 2000;6(4):311-320.  To open a PDF of the study click here -->View Finger Study  \r\nSubjects had finger pain an average of 5 years and met radiographic criteria for finger  \r\n \r\n<strong>Here is the abstract </strong>\r\n\r\nReeves KD; Hassanein K Randomized, prospective, placebo-controlled double-blind study of dextrose <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">prolotherapy</a> for osteoarthritic thumb and finger (DIP, PIP, and trapeziometacarpal) joints: evidence of clinical efficacy. J Altern Complement Med (United States), Aug 2000, 6(4) p311-20    OBJECTIVES: To determine the clinical benefit of dextrose prolotherapy (injection of growth factors or growth factor stimulators) in osteoarthritic finger joints. DESIGN: Prospective randomized double-blind placebo-controlled trial. SETTINGS/LOCATION: Outpatient physical medicine clinic. SUBJECTS: Six months of pain history was required in each joint studied as well as one of the following: grade 2 or 3 osteophyte, grade 2 or 3 joint narrowing, or grade 1 osteophyte plus grade 1 joint narrowing. Distal interphalangeal (DIP), proximal interphalangeal (PIP), and trapeziometacarpal (thumb CMC) joints were eligible. Thirteen patients (with seventy-four symptomatic osteoarthitic joints) received active treatment, and fourteen patients (with seventy-six symptomatic osteoarthritic joints) served as controls. INTERVENTION: One half milliliter (0.5 mL) of either 10% dextrose and 0.075% xylocaine in bacteriostatic water (active solution) or 0.075% xylocaine in bacteriostatic water (control solution) was injected on medial and lateral aspects of each affected joint. This was done at 0, 2, and 4 months with assessment at 6 months after first injection. OUTCOME MEASURES: One-hundred millimeter (100 mm) Visual Analogue Scale (VAS) for pain at rest, pain with joint movement and pain with grip, and goniometrically-measured joint flexion. RESULTS: Pain at rest and with grip improved more in the dextrose group but not significantly. Improvement in pain with movement of fingers improved significantly more in the dextrose group (42% versus 15% with a p value of .027). Flexion range of motion improved more in the dextrose group (p = .003). Side effects were minimal. CONCLUSION: Dextrose prolotherapy was clinically effective and safe in the treatment of pain with joint movement and range limitation in osteoarthritic finger joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img alt=\"foot pain medium\" title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"></a><a href=\"/ankle-foot/\">Ankle/Foot</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Knee\"><img alt=\"Knee Pain\" title=\"Knee Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Lower-Back\"><img alt=\"back pain medium\" title=\"back pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\">Lower Back</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Elbow\"><img alt=\"Elbow Pain\" title=\"Elbow Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\">Elbow</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Finger\"><img alt=\"Finger Pain\" title=\"Finger Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finger-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\">Finger</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"><img alt=\"Groin/Pelvis\" title=\"Groin/Pelvis\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Groin/Pelvis</a>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Finger','','inherit','closed','closed','','2014-revision-v1','','','2019-06-15 11:13:13','2019-06-15 11:13:13','',2014,'https://www.drfields.com/uncategorized/2014-revision-v1/',0,'revision','',0),(2019,8,'2019-06-15 11:13:46','2019-06-15 11:13:46','<h6>TOPICS </h6>\r\nAchilles tendinopathy \r\nPlantar fasciosis\r\n\r\n<strong>Dextrose: Ryan et al 2009   Dextrose injection for chronic pain of Plantar fasciosis</strong>\r\nRyan MB, Wong AD, Gillies JH, Wong J, Traunton JE Sonographically guided intratendinous injections of hyperosmolar dextrose/lidocaine: a pilot study for the treatment of chronic plantar fasciitis. Br J Sports Med 2009;43 :303–306.\r\n\r\nThe is an article  about  injection of 25% dextrose in 20 consecutive patients with pain in the feet imitated by prssure over the plantar fascia.  Injections were given under ultrasound guidance. These were chronic cases with pain from 7 to 228 months (mean 21 months). Follow-up was for 6-20 months (mean 11.8) months from the final treatment. Three to 12 sessions (mean 3) were given at 2 week intervals. 16 out of 20 had good to excellent results.\r\n\r\nMy impression is that there were apparently no dropouts which is somewhat unusual in a study with foot injection every 2 weeks. This speaks well of the technique of the authors. However, the every 2 week frequency may have not allowed enough time in between to really determine the number of treatments needed with full healing intervals. There is always that balance between desire to move treatment along in an athlete and the desire to keep the number of treatments minimal. It is notable that, although ultrasound was used for injection there were no post treatment ultrasound results reported. Therefore there were no objective post treatment measures.  There also was not a group comparing blind injections to ultrasound guided.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img alt=\"foot pain medium\" title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"></a><a href=\"/ankle-foot/\">Ankle/Foot</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Knee\"><img alt=\"Knee Pain\" title=\"Knee Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Lower-Back\"><img alt=\"back pain medium\" title=\"back pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\">Lower Back</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Elbow\"><img alt=\"Elbow Pain\" title=\"Elbow Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\">Elbow</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Finger\"><img alt=\"Finger Pain\" title=\"Finger Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finger-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\">Finger</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"><img alt=\"Groin/Pelvis\" title=\"Groin/Pelvis\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Groin/Pelvis</a>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Ankle Foot','','inherit','closed','closed','','2009-revision-v1','','','2019-06-15 11:13:46','2019-06-15 11:13:46','',2009,'https://www.drfields.com/uncategorized/2009-revision-v1/',0,'revision','',0),(2020,8,'2019-06-15 11:15:20','2019-06-15 11:15:20','[caption id=\"attachment_4134\" align=\"alignright\" width=\"547\"]<img class=\" wp-image-4134\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium-1.png\" alt=\"Osgood-Schlatter\" width=\"547\" height=\"547\" /> <strong>                 Is Prolotherapy Effective for Osgood-Schlatter Disease?</strong>[/caption]\r\n<h3>In this research article in the medical journal <em>\"Pediatrics\",</em> the authors look at whether Prolotherapy can achieve faster results than the usual care for Osgood-Schlatter Disease in the adolescent.</h3>\r\n<em>Osgood-Schlatter Disease is a childhood repetitive use injury that causes a painful lump below the kneecap. It commonly affects children experiencing growth spurts and those who play sports in which they regularly run and jump are most at risk. </em>\r\n\r\nWe are including the abstract here. <a href=\"http://Read the full article by clicking here.\">But you can read the full article by clicking here.</a>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n<h3>Hyperosmolar Dextrose Injection for Recalcitrant Osgood-Schlatter Disease</h3>\r\nGastón Andrés Topol, Leandro Ariel Podesta, Kenneth Dean Reeves, Marcelo Francisco Raya, Bradley Dean Fullerton and Hung-wen Yeh\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n<h4>WHAT’S KNOWN ON THIS SUBJECT:</h4>\r\nOsgood-Schlatter disease symptoms may wax and wane until maturity and affect sport confidence and participation periodically. Chronic sequelae may include anterior knee pain, kneeling discomfort, or sports limitation. Symptom reduction parallels resolution of patellar tendinopathy by MRI/ultrasound, although ossicles may persist radiographically.\r\n<h4><strong>WHAT THIS STUDY ADDS:</strong></h4>\r\nSmall-needle injection of the patellar tendon enthesis/tibial apophysis with 12.5% dextrose was safe and well tolerated in adolescents with recalcitrant Osgood- Schlatter disease. Dextrose injection resulted in more rapid and frequent achievement of unaltered sport and asymptomatic sport than did usual care.\r\n<h2>Abstract</h2>\r\nOBJECTIVE: To examine the potential of dextrose injection versus lido- caine injection versus supervised usual care to reduce sport alteration and sport-related symptoms in adolescent athletes with Osgood- Schlatter disease.\r\n\r\nPATIENTS AND METHODS: Girls aged 9 to 15 and boys aged 10 to 17 were randomly assigned to either therapist-supervised usual care or double-blind injection of 1% lidocaine solution with or without 12.5% dextrose. Injections were administered monthly for 3 months. All sub- jects were then offered dextrose injections monthly as needed. Unal- tered sport (Nirschl Pain Phase Scale 􏰀 4) and asymptomatic sport (Nirschl Pain Phase Scale 􏰁 0) were the threshold goals.\r\n\r\nRESULTS: Sixty-five knees in 54 athletes were treated. Compared with usual care at 3 months, unaltered sport was more common in both dextrose-treated (21 of 21 vs 13 of 22; P 􏰁 .001) and lidocaine-treated (20 of 22 vs 13 of 22; P 􏰁 .034) knees, and asymptomatic sport was more frequent in dextrose-treated knees than either lidocaine-treated (14 of 21 vs 5 of 22; P 􏰁 .006) or usual-care–treated (14 of 21 vs 3 of 22; P 􏰀 .001) knees. At 1 year, asymptomatic sport was more common in dextrose-treated knees than knees treated with only lidocaine (32 of 38 vs6of13;P􏰁.024)oronlyusualcare(32of38vs2of14;P􏰀.0001).\r\n\r\nCONCLUSIONS: Our results suggest superior symptom-reduction effi- cacy of injection therapy over usual care in the treatment of Osgood- Schlatter disease in adolescents. A significant component of the effect seems to be associated with the dextrose component of a dextrose/ lidocaine solution. Dextrose injection over the apophysis and patellar tendon origin was safe and well tolerated and resulted in more rapid and frequent achievement of unaltered sport and asymptomatic sport than usual care. Pediatrics 2011;128:e000\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">\r\n<p id=\"page-title\" class=\"highwire-cite-title\"><a href=\"https://pediatrics.aappublications.org/content/128/5/e1121\">Hyperosmolar Dextrose Injection for Recalcitrant Osgood-Schlatter Disease</a>. <span class=\"highwire-citation-authors\"><span class=\"highwire-citation-author first\" data-delta=\"0\">Gastón Andrés Topol</span>, <span class=\"highwire-citation-author has-tooltip hasTooltip author-popup-hover\" data-delta=\"1\" data-hasqtip=\"2\" aria-describedby=\"qtip-2\">Leandro Ariel Podesta</span>, <span class=\"highwire-citation-author has-tooltip hasTooltip\" data-delta=\"2\" data-hasqtip=\"1\" aria-describedby=\"qtip-1\">Kenneth Dean Reeves</span>, <span class=\"highwire-citation-author has-tooltip hasTooltip\" data-delta=\"3\" data-hasqtip=\"0\" aria-describedby=\"qtip-0\">Marcelo Francisco Raya</span>, <span class=\"highwire-citation-author\" data-delta=\"4\">Bradley Dean Fullerton</span> and <span class=\"highwire-citation-author\" data-delta=\"5\">Hung-wen Yeh. </span></span><em><span class=\"highwire-cite-metadata-journal highwire-cite-metadata\">Pediatrics. </span></em><span class=\"highwire-cite-metadata-date highwire-cite-metadata\">November 2011, </span><span class=\"highwire-cite-metadata-volume highwire-cite-metadata\">128 </span><span class=\"highwire-cite-metadata-issue highwire-cite-metadata\">(5) </span><span class=\"highwire-cite-metadata-pages highwire-cite-metadata\">e1121-e1128; </span><span class=\"highwire-cite-metadata-doi highwire-cite-metadata\">DOI: https://doi.org/10.1542/peds.2010-1931</span></p>\r\n\r\n</div>\r\n<div class=\"large_thumb\"><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a></div>\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n</div>\r\n</div>\r\n</div>','Osgood-Schlatter Disease','','publish','open','closed','','knee','','','2020-09-12 21:23:22','2020-09-12 21:23:22','',0,'https://www.drfields.com/?p=2020',0,'post','',0),(2021,8,'2019-06-15 11:15:20','2019-06-15 11:15:20','<h6>TOPICS </h6>\r\nACL Laxity\r\nBaker\'s Cyst \r\nJumper\'s Knee (See  Patellar Tendinosis) \r\nMedial Meniscus  Tear\r\nOsteoarthritis Of Knee \r\n \r\n<strong>ACL LAXITY DEX: Reeves et al 2003 </strong>\r\nDextrose tightens loose ACL ligament by simple Reeves KD Hassanein K Long term effects of dextrose prolotherapy for anterior cruciate ligament laxity: A prospective and consecutive patient study. Alt Ther Hlth Med  May-Jun 2003, 9(3): p58-62.\r\nTo read the entire study click here --> View ACL Laxity Study\r\n\r\nMethod:  16 knees with machine measured ACL laxity (KT-1000 arthrometer) were injected bimonthly with 10-25% dextrose solution for 1 year and then an average of 4 times yearly thereafter until 3 year follow-up.  \r\n\r\nSummary:   Using simple dextrose injection into 16 knees with a loose ACL ligament, 10/16 knees were no longer loose by machine measurement at time of follow-up, and symptoms  were improved. Symptom of osteoarthritits improved even in those who still tested loose.   At the 3 year follow-up  pain with walking had improved by 43% ,  subjective swelling improved 63%,  flexion range of motion improved by 10.5 degrees,  and KT1000 ADD (machine measure of ACL ligament looseness) improved by 71%. \r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img alt=\"foot pain medium\" title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"></a><a href=\"/ankle-foot/\">Ankle/Foot</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Knee\"><img alt=\"Knee Pain\" title=\"Knee Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Lower-Back\"><img alt=\"back pain medium\" title=\"back pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\">Lower Back</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Elbow\"><img alt=\"Elbow Pain\" title=\"Elbow Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\">Elbow</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Finger\"><img alt=\"Finger Pain\" title=\"Finger Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finger-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\">Finger</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"><img alt=\"Groin/Pelvis\" title=\"Groin/Pelvis\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Groin/Pelvis</a>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','','','inherit','closed','closed','','2020-revision-v1','','','2019-06-15 11:15:20','2019-06-15 11:15:20','',2020,'https://www.drfields.com/uncategorized/2020-revision-v1/',0,'revision','',0),(2022,8,'2019-06-15 11:15:32','2019-06-15 11:15:32','<h6>TOPICS </h6>\r\nACL Laxity\r\nBaker\'s Cyst \r\nJumper\'s Knee (See  Patellar Tendinosis) \r\nMedial Meniscus  Tear\r\nOsteoarthritis Of Knee \r\n \r\n<strong>ACL LAXITY DEX: Reeves et al 2003 </strong>\r\nDextrose tightens loose ACL ligament by simple Reeves KD Hassanein K Long term effects of dextrose prolotherapy for anterior cruciate ligament laxity: A prospective and consecutive patient study. Alt Ther Hlth Med  May-Jun 2003, 9(3): p58-62.\r\nTo read the entire study click here --> View ACL Laxity Study\r\n\r\nMethod:  16 knees with machine measured ACL laxity (KT-1000 arthrometer) were injected bimonthly with 10-25% dextrose solution for 1 year and then an average of 4 times yearly thereafter until 3 year follow-up.  \r\n\r\nSummary:   Using simple dextrose injection into 16 knees with a loose ACL ligament, 10/16 knees were no longer loose by machine measurement at time of follow-up, and symptoms  were improved. Symptom of osteoarthritits improved even in those who still tested loose.   At the 3 year follow-up  pain with walking had improved by 43% ,  subjective swelling improved 63%,  flexion range of motion improved by 10.5 degrees,  and KT1000 ADD (machine measure of ACL ligament looseness) improved by 71%. \r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img alt=\"foot pain medium\" title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"></a><a href=\"/ankle-foot/\">Ankle/Foot</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Knee\"><img alt=\"Knee Pain\" title=\"Knee Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Lower-Back\"><img alt=\"back pain medium\" title=\"back pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\">Lower Back</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Elbow\"><img alt=\"Elbow Pain\" title=\"Elbow Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\">Elbow</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Finger\"><img alt=\"Finger Pain\" title=\"Finger Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finger-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\">Finger</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"><img alt=\"Groin/Pelvis\" title=\"Groin/Pelvis\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Groin/Pelvis</a>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Knee','','inherit','closed','closed','','2020-revision-v1','','','2019-06-15 11:15:32','2019-06-15 11:15:32','',2020,'https://www.drfields.com/uncategorized/2020-revision-v1/',0,'revision','',0),(2023,8,'2019-06-15 11:15:37','2019-06-15 11:15:37','The Doctors Tv Show','The Doctors Tv Show','The Doctors Tv Show','inherit','open','closed','','the-doctors-tv-show','','','2019-06-15 11:15:37','2019-06-15 11:15:37','',0,'https://www.drfields.com/wp-content/uploads/2019/06/the-doctors-tv-show.jpg',0,'attachment','image/jpeg',0),(2024,8,'2019-06-15 11:18:59','2019-06-15 11:18:59','<header id=\"heading\" class=\"heading\">\r\n<div id=\"full-view-heading\" class=\"full-view\">\r\n\r\n[caption id=\"attachment_4124\" align=\"alignright\" width=\"530\"]<img class=\" wp-image-4124\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium-1.png\" alt=\"Tennis Elbow\" width=\"530\" height=\"530\" /> <strong>                  Prolotherapy Is a Lasting Treatment for Tennis Elbo</strong>w[/caption]\r\n<h3>Read this <em>Orthopedic Review and Research</em> Medical Journal Article about Tennis Elbow Treatment with Prolotherapy versus Cortisone Injections.</h3>\r\n<em>The article shows that patients improved with both Prolotherapy and Cortisone in the short-term. However, as we have discussed in <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">previous articles</a>, cortisone injections did not last in the long term. Here you will see that patients who received Prolotherapy, continued to improve at the 3 month follow-up. And those who received cortisone did not.</em>\r\n\r\n<header id=\"heading\" class=\"heading\">\r\n<div id=\"full-view-heading\" class=\"full-view\">\r\n<h3 class=\"heading-title\">Is Dextrose Prolotherapy Superior To Corticosteroid Injection In Patients With Chronic Lateral Epicondylitis?: A Randomized Clinical Trial</h3>\r\n<div class=\"inline-authors\">\r\n<div class=\"authors\">\r\n<div class=\"authors-list\"><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Bayat+M&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Masume Bayat\">Masume Bayat</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-1\">1</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Raeissadat+SA&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Seyed Ahmad Raeissadat\">Seyed Ahmad Raeissadat</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-2\">2</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Mortazavian+Babaki+M&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Maryam Mortazavian Babaki\">Maryam Mortazavian Babaki</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-3\">3</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Rahimi-Dehgolan+S&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Shahram Rahimi-Dehgolan\">Shahram Rahimi-Dehgolan</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-4\">4</a></sup></span></div>\r\n</div>\r\n</div>\r\n<div class=\"short-article-details\">Affiliations <button id=\"toggle-authors\" class=\"more-details\" data-alt-text=\"Collapse\" aria-controls=\"expanded-authors\" aria-expanded=\"false\" data-pinger-ignore=\"\">expand</button></div>\r\n<ul id=\"full-view-identifiers\" class=\"identifiers\"></ul>\r\n</div>\r\n</header>\r\n<div id=\"abstract\" class=\"abstract\">\r\n<h2 class=\"title\"><a href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/\">Abstract</a></h2>\r\n<div id=\"enc-abstract\" class=\"abstract-content selected\">\r\n\r\n<strong class=\"sub-title\">Purpose: </strong>To compare the efficacy of dextrose prolotherapy versus steroid injection in the treatment of patients with chronic lateral epicondylitis.\r\n\r\n<strong class=\"sub-title\">Methods: </strong>Thirty subjects with chronic lateral epicondylitis were randomly assigned into two groups of hypertonic dextrose or methylprednisolone injection. Participants were assessed through Quick DASH and VAS scores, once before injection, and then after 1- and 3-months follow-up. And two patients were excluded due to not completing the follow-up timepoints.\r\n\r\n<strong class=\"sub-title\">Results: </strong>In both groups VAS scores revealed significant improvement during the first month follow-up [mean difference (MD) = 1.9±3.3, versus 1.5±1.9 for the prolotherapy and steroid groups, respectively]. This declining trajectory continued at the third month visit in the prolotherapy group and MD reached 4.4±2.9, while it did not change remarkably in the steroid group (MD=1.9±3.4).\r\n\r\nIn fact, comparing VAS scores between the 1st- and 3rd-month time points did not reveal a significant improvement in the steroid group (<i>p</i>=0.6). Also, the Quick DASH index showed a similar pattern and improved remarkably in both groups during the first visit.\r\n<h4><strong>However, only the efficacy in the prolotherapy group persisted after 3-month follow-up (MD = 9.5±21.6, <i>p</i>=0.044)</strong>.</h4>\r\nOne month after injections no preference was observed between the two interventions (<i>p</i>=0.74 for VAS and 0.14 for Quick DASH score). However, the 3rd-month follow-up revealed a meaningful superiority (<i>p</i>=0.03 for VAS and <i>p</i>=0.01 for Quick DASH score) favoring the prolotherapy method.\r\n\r\n<strong class=\"sub-title\">Conclusion: </strong>Both methods were proven to be effective in the short-term treatment of chronic lateral epicondylitis, but dextrose prolotherapy seems to be slightly more efficacious than steroid injection over a longer period.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</header>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<h3 class=\"large_thumb\">Read other articles about cortisone or corticosteroid injections:</h3>\r\n<div>\r\n<h3><a title=\"Cortisone – Is it Really Good for You\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">Cortisone – Is it Really Good for You</a></h3>\r\n<h3><a title=\"Cortisone Injections Are As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-injections-are-as-safe-as-you-think/\">Cortisone Injections: Are They As Safe As You Think</a></h3>\r\n</div>\r\n<h3 class=\"large_thumb\">Reference:</h3>\r\n<div class=\"large_thumb\">Bayat M, Raeissadat SA, Mortazavian Babaki M, Rahimi-Dehgolan S. Is Dextrose Prolotherapy Superior To Corticosteroid Injection In Patients With Chronic Lateral Epicondylitis?: A Randomized Clinical Trial. Orthop Res Rev. 2019;11:167-175. Published 2019 Nov 5. doi:10.2147/ORR.S218698</div>\r\n</div>\r\n</div>\r\n</div>','Prolotherapy or Cortisone?','','publish','open','closed','','tennis-elbow-or-lateral-epicondylitis','','','2020-09-12 20:48:27','2020-09-12 20:48:27','',0,'https://www.drfields.com/?p=2024',0,'post','',0),(2025,8,'2019-06-15 11:18:59','2019-06-15 11:18:59','<strong>TOPICS</strong>\r\nExtensor tendinitis: (See extensor tendinosis)\r\nExtensor tendinosis\r\nTennis Elbow: (See extensor tendinosis)\r\n\r\n<strong>Extensor tendinosis: Dex and Sodium morrhuate: Scarpone et al 2008</strong>\r\nInjection of  combination of sodium morrhuate (.72%) and dextrose (10.7%)  on 3 occasions in patients with tennis elbow (lateral epicondylosis) resulted in marked improvement in pain, wrist extension and grip strenth in comparision to injection of saline. Scarpone M, Rabago DP, Zgierska A, Arbogast G, Snell E. The efficacy of <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">prolotherapy</a> for lateral epicondylosis: a pilot study [In Process Citation] Clin J Sport Med (United States), May 2008, 18(3) p248-54\r\n\r\nDr Scarpone et al reported this year in a randomized and controlled study that 12 adults with lateral epicondylosis injected at 0, 1 and 3 months with 0.72% sodium morrhuate, 10.7% dextrose, .29% lidocaine and .04% sensorcaine improved far more in pain levels (91% versus 33%; P &lt; .001) and extension strength (P &lt; .01) and grip strength (P &lt; .05) than 12 subjects given saline injection with the same number of needle punctures and volume. Note this is despite the fact that saline injection is not a placebo, suggesting that saline injection is indeed not equivalent to injection of a combination of sodium morrhuate and dextrose. Although a small study, these results and this design are excellent. Here is that abstract.   From the Department of Family Medicine, University of Wisconsin-Madison, Madison, Wisconsin.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\nABSTRACT: OBJECTIVES:: To assess whether prolotherapy, an injection-based therapy, improves elbow pain, grip strength, and extension strength in patients with lateral epicondylosis. SETTING:: Outpatient Sport Medicine clinic. STUDY DESIGN:: Double-blind randomized controlled trial. PARTICIPANTS:: Twenty-four adults with at least 6 months of refractory lateral epicondylosis. INTERVENTION:: Prolotherapy participants received injections of a solution made from 1 part 5% sodium morrhuate, 1.5 parts 50% dextrose, 0.5 parts 4% lidocaine, 0.5 parts 0.5% sensorcaine and 3.5 parts normal saline. Controls received injections of 0.9% saline. Three 0.5-ml injections were made at the supracondylar ridge, lateral epicondyle, and annular ligament at baseline and at 4 and 8 weeks. OUTCOME MEASURES:: The primary outcome was resting elbow pain (0 to 10 Likert scale). Secondary outcomes were extension and grip strength. Each was performed at baseline and at 8 and 16 weeks. One-year follow-up included pain assessment and effect of pain on activities of daily living. RESULTS:: The groups were similar at baseline. Compared to Controls, <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> subjects reported improved pain scores (4.5 +/- 1.7, 3.6 +/- 1.2, and 3.5 +/- 1.5 versus 5.1 +/- 0.8, 3.3 +/- 0.9, and 0.5 +/- 0.4 at baseline and at 8 and 16 weeks, respectively). At 16 weeks, these differences were significant compared to baseline scores within and among groups (P &lt; 0.001). Prolotherapy subjects also reported improved extension strength compared to Controls (P &lt; 0.01) and improved grip strength compared to baseline (P &lt; 0.05). Clinical improvement in Prolotherapy group subjects was maintained at 52 weeks. There were no adverse events. CONCLUSIONS:: Prolotherapy with dextrose and sodium morrhuate was well tolerated, effectively decreased elbow pain, and improved strength testing in subjects with refractory lateral epicondylosis compared to Control group injections.\r\n\r\n<strong>Extensor Tendinosis: PRP: Mishra  et al 2006. Treatment of tennis elbow.</strong>\r\n\r\n141 consecutive patients with elbow epicondylar pain. All failed a standardized physical therapy protocol and a variety of other nonoperative treatments. Either PRP injection of bupivicaine with 15 in the active group and 5 in the control group. Only 8 week followup with 60% improvement versus 16% in control. (Non blinded control). At 6 months 81% improvement. (All patients included) and at 12 months minimum 93% improvement. Blinding did not occur at IRB request, accounting in part of the very small control group. All had pain over medial or lateral epicondyle (14/15 lateral) and pain at the elbow with resistance of either resisted flexion or extension respectively. The number of patients that were able to be contacted was not mentioned. Nevertheless results were impressive. Noted is that a blinded clinical trial was approved and status of this is not clear.     MIshra A, Pavelko T.  Treatment of chronic elbow tendinosis with buffered platelet-rich plasma.  American Journal of Sports Medicine  Dec 2006 Volume 34: 1774-1778\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img alt=\"foot pain medium\" title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"></a><a href=\"/ankle-foot/\">Ankle/Foot</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Knee\"><img alt=\"Knee Pain\" title=\"Knee Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Lower-Back\"><img alt=\"back pain medium\" title=\"back pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\">Lower Back</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Elbow\"><img alt=\"Elbow Pain\" title=\"Elbow Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\">Elbow</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Finger\"><img alt=\"Finger Pain\" title=\"Finger Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finger-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\">Finger</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"><img alt=\"Groin/Pelvis\" title=\"Groin/Pelvis\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Groin/Pelvis</a>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n','Elbow','','inherit','closed','closed','','2024-revision-v1','','','2019-06-15 11:18:59','2019-06-15 11:18:59','',2024,'https://www.drfields.com/uncategorized/2024-revision-v1/',0,'revision','',0),(2026,8,'2019-06-15 11:21:40','2019-06-15 11:21:40','<strong>TOPICS</strong>\nExtensor tendinitis: (See extensor tendinosis)\nExtensor tendinosis\nTennis Elbow: (See extensor tendinosis)\n\n<strong>Extensor tendinosis: Dex and Sodium morrhuate: Scarpone et al 2008</strong>\nInjection of  combination of sodium morrhuate (.72%) and dextrose (10.7%)  on 3 occasions in patients with tennis elbow (lateral epicondylosis) resulted in marked improvement in pain, wrist extension and grip strenth in comparision to injection of saline. Scarpone M, Rabago DP, Zgierska A, Arbogast G, Snell E. The efficacy of <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">prolotherapy</a> for lateral epicondylosis: a pilot study [In Process Citation] Clin J Sport Med (United States), May 2008, 18(3) p248-54\n\nDr Scarpone et al reported this year in a randomized and controlled study that 12 adults with lateral epicondylosis injected at 0, 1 and 3 months with 0.72% sodium morrhuate, 10.7% dextrose, .29% lidocaine and .04% sensorcaine improved far more in pain levels (91% versus 33%; P &lt; .001) and extension strength (P &lt; .01) and grip strength (P &lt; .05) than 12 subjects given saline injection with the same number of needle punctures and volume. Note this is despite the fact that saline injection is not a placebo, suggesting that saline injection is indeed not equivalent to injection of a combination of sodium morrhuate and dextrose. Although a small study, these results and this design are excellent. Here is that abstract.   From the Department of Family Medicine, University of Wisconsin-Madison, Madison, Wisconsin.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\nABSTRACT: OBJECTIVES:: To assess whether prolotherapy, an injection-based therapy, improves elbow pain, grip strength, and extension strength in patients with lateral epicondylosis. SETTING:: Outpatient Sport Medicine clinic. STUDY DESIGN:: Double-blind randomized controlled trial. PARTICIPANTS:: Twenty-four adults with at least 6 months of refractory lateral epicondylosis. INTERVENTION:: Prolotherapy participants received injections of a solution made from 1 part 5% sodium morrhuate, 1.5 parts 50% dextrose, 0.5 parts 4% lidocaine, 0.5 parts 0.5% sensorcaine and 3.5 parts normal saline. Controls received injections of 0.9% saline. Three 0.5-ml injections were made at the supracondylar ridge, lateral epicondyle, and annular ligament at baseline and at 4 and 8 weeks. OUTCOME MEASURES:: The primary outcome was resting elbow pain (0 to 10 Likert scale). Secondary outcomes were extension and grip strength. Each was performed at baseline and at 8 and 16 weeks. One-year follow-up included pain assessment and effect of pain on activities of daily living. RESULTS:: The groups were similar at baseline. Compared to Controls, <a href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> subjects reported improved pain scores (4.5 +/- 1.7, 3.6 +/- 1.2, and 3.5 +/- 1.5 versus 5.1 +/- 0.8, 3.3 +/- 0.9, and 0.5 +/- 0.4 at baseline and at 8 and 16 weeks, respectively). At 16 weeks, these differences were significant compared to baseline scores within and among groups (P &lt; 0.001). Prolotherapy subjects also reported improved extension strength compared to Controls (P &lt; 0.01) and improved grip strength compared to baseline (P &lt; 0.05). Clinical improvement in Prolotherapy group subjects was maintained at 52 weeks. There were no adverse events. CONCLUSIONS:: Prolotherapy with dextrose and sodium morrhuate was well tolerated, effectively decreased elbow pain, and improved strength testing in subjects with refractory lateral epicondylosis compared to Control group injections.\n\n<strong>Extensor Tendinosis: PRP: Mishra  et al 2006. Treatment of tennis elbow.</strong>\n\n141 consecutive patients with elbow epicondylar pain. All failed a standardized physical therapy protocol and a variety of other nonoperative treatments. Either PRP injection of bupivicaine with 15 in the active group and 5 in the control group. Only 8 week followup with 60% improvement versus 16% in control. (Non blinded control). At 6 months 81% improvement. (All patients included) and at 12 months minimum 93% improvement. Blinding did not occur at IRB request, accounting in part of the very small control group. All had pain over medial or lateral epicondyle (14/15 lateral) and pain at the elbow with resistance of either resisted flexion or extension respectively. The number of patients that were able to be contacted was not mentioned. Nevertheless results were impressive. Noted is that a blinded clinical trial was approved and status of this is not clear.     MIshra A, Pavelko T.  Treatment of chronic elbow tendinosis with buffered platelet-rich plasma.  American Journal of Sports Medicine  Dec 2006 Volume 34: 1774-1778\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<div class=\"fullwidth color_bar row-full \">\n<div class=\"container\">\n<div class=\"row-fluid\">\n<div class=\"large_thumb\">\n<a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img alt=\"foot pain medium\" title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"></a><a href=\"/ankle-foot/\">Ankle/Foot</a>\n</div>\n<div class=\"large_thumb\">\n<a href=\"/Articles/Prolotherapy-Research/Knee\"><img alt=\"Knee Pain\" title=\"Knee Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a>\n</div>\n<div class=\"large_thumb\">\n<a href=\"/Articles/Prolotherapy-Research/Lower-Back\"><img alt=\"back pain medium\" title=\"back pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\">Lower Back</a>\n</div>\n<div class=\"large_thumb\">\n<a href=\"/Articles/Prolotherapy-Research/Elbow\"><img alt=\"Elbow Pain\" title=\"Elbow Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\">Elbow</a>\n</div>\n<div class=\"large_thumb\">\n<a href=\"/Articles/Prolotherapy-Research/Finger\"><img alt=\"Finger Pain\" title=\"Finger Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finger-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\">Finger</a>\n</div>\n<div class=\"large_thumb\">\n<a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"><img alt=\"Groin/Pelvis\" title=\"Groin/Pelvis\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Groin/Pelvis</a>\n</div>\n</div>\n</div>\n</div>\n','Elbow','','inherit','closed','closed','','2024-autosave-v1','','','2019-06-15 11:21:40','2019-06-15 11:21:40','',2024,'https://www.drfields.com/uncategorized/2024-autosave-v1/',0,'revision','',0),(2027,8,'2019-06-15 11:22:16','2019-06-15 11:22:16','<strong>TOPICS</strong>\r\nExtensor tendinitis: (See extensor tendinosis)\r\nExtensor tendinosis\r\nTennis Elbow: (See extensor tendinosis)\r\n\r\n<strong>Extensor tendinosis: Dex and Sodium morrhuate: Scarpone et al 2008</strong>\r\nInjection of  combination of sodium morrhuate (.72%) and dextrose (10.7%)  on 3 occasions in patients with tennis elbow (lateral epicondylosis) resulted in marked improvement in pain, wrist extension and grip strenth in comparision to injection of saline. Scarpone M, Rabago DP, Zgierska A, Arbogast G, Snell E. The efficacy of <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">prolotherapy</a> for lateral epicondylosis: a pilot study [In Process Citation] Clin J Sport Med (United States), May 2008, 18(3) p248-54\r\n\r\nDr Scarpone et al reported this year in a randomized and controlled study that 12 adults with lateral epicondylosis injected at 0, 1 and 3 months with 0.72% sodium morrhuate, 10.7% dextrose, .29% lidocaine and .04% sensorcaine improved far more in pain levels (91% versus 33%; P &lt; .001) and extension strength (P &lt; .01) and grip strength (P &lt; .05) than 12 subjects given saline injection with the same number of needle punctures and volume. Note this is despite the fact that saline injection is not a placebo, suggesting that saline injection is indeed not equivalent to injection of a combination of sodium morrhuate and dextrose. Although a small study, these results and this design are excellent. Here is that abstract.   From the Department of Family Medicine, University of Wisconsin-Madison, Madison, Wisconsin.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\nABSTRACT: OBJECTIVES:: To assess whether prolotherapy, an injection-based therapy, improves elbow pain, grip strength, and extension strength in patients with lateral epicondylosis. SETTING:: Outpatient Sport Medicine clinic. STUDY DESIGN:: Double-blind randomized controlled trial. PARTICIPANTS:: Twenty-four adults with at least 6 months of refractory lateral epicondylosis. INTERVENTION:: Prolotherapy participants received injections of a solution made from 1 part 5% sodium morrhuate, 1.5 parts 50% dextrose, 0.5 parts 4% lidocaine, 0.5 parts 0.5% sensorcaine and 3.5 parts normal saline. Controls received injections of 0.9% saline. Three 0.5-ml injections were made at the supracondylar ridge, lateral epicondyle, and annular ligament at baseline and at 4 and 8 weeks. OUTCOME MEASURES:: The primary outcome was resting elbow pain (0 to 10 Likert scale). Secondary outcomes were extension and grip strength. Each was performed at baseline and at 8 and 16 weeks. One-year follow-up included pain assessment and effect of pain on activities of daily living. RESULTS:: The groups were similar at baseline. Compared to Controls, <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> subjects reported improved pain scores (4.5 +/- 1.7, 3.6 +/- 1.2, and 3.5 +/- 1.5 versus 5.1 +/- 0.8, 3.3 +/- 0.9, and 0.5 +/- 0.4 at baseline and at 8 and 16 weeks, respectively). At 16 weeks, these differences were significant compared to baseline scores within and among groups (P &lt; 0.001). Prolotherapy subjects also reported improved extension strength compared to Controls (P &lt; 0.01) and improved grip strength compared to baseline (P &lt; 0.05). Clinical improvement in Prolotherapy group subjects was maintained at 52 weeks. There were no adverse events. CONCLUSIONS:: Prolotherapy with dextrose and sodium morrhuate was well tolerated, effectively decreased elbow pain, and improved strength testing in subjects with refractory lateral epicondylosis compared to Control group injections.\r\n\r\n<strong>Extensor Tendinosis: PRP: Mishra  et al 2006. Treatment of tennis elbow.</strong>\r\n\r\n141 consecutive patients with elbow epicondylar pain. All failed a standardized physical therapy protocol and a variety of other nonoperative treatments. Either PRP injection of bupivicaine with 15 in the active group and 5 in the control group. Only 8 week followup with 60% improvement versus 16% in control. (Non blinded control). At 6 months 81% improvement. (All patients included) and at 12 months minimum 93% improvement. Blinding did not occur at IRB request, accounting in part of the very small control group. All had pain over medial or lateral epicondyle (14/15 lateral) and pain at the elbow with resistance of either resisted flexion or extension respectively. The number of patients that were able to be contacted was not mentioned. Nevertheless results were impressive. Noted is that a blinded clinical trial was approved and status of this is not clear.     MIshra A, Pavelko T.  Treatment of chronic elbow tendinosis with buffered platelet-rich plasma.  American Journal of Sports Medicine  Dec 2006 Volume 34: 1774-1778\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img alt=\"foot pain medium\" title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"></a><a href=\"/ankle-foot/\">Ankle/Foot</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Knee\"><img alt=\"Knee Pain\" title=\"Knee Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Lower-Back\"><img alt=\"back pain medium\" title=\"back pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\">Lower Back</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Elbow\"><img alt=\"Elbow Pain\" title=\"Elbow Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\">Elbow</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Finger\"><img alt=\"Finger Pain\" title=\"Finger Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finger-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\">Finger</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"><img alt=\"Groin/Pelvis\" title=\"Groin/Pelvis\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Groin/Pelvis</a>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n','Elbow','','inherit','closed','closed','','2024-revision-v1','','','2019-06-15 11:22:16','2019-06-15 11:22:16','',2024,'https://www.drfields.com/uncategorized/2024-revision-v1/',0,'revision','',0),(2028,8,'2019-06-15 11:25:03','2019-06-15 11:25:03','<h3><strong>Take A Look at This Medical Journal Article About Groin Pain Resolved with Regenerative Therapy</strong></h3>\r\n<em>If you have groin pain after a sports injury or even after lifting or some other activity that ended in groin injury, you can find relief with regenerative therapies. If elite athletes can get relief, so can you. </em>\r\n\r\n<em>After monthly regenerative injections of dextrose and lidocaine, these athletes returned to full activity. <a href=\"https://prolotherapy.com/Topol_Regenerative%20Injection%20of%20Elite%20Athletes%20with%20Career-Altering%20Chronic%20Groin%20Pain%20Who%20Fail%20Conservative%20Treatment_2008.pdf\">Click here for the full article</a>, or check out the abstract below.</em>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n<h3><strong>Regenerative Injection of Elite Athletes with Career-Altering Chronic Groin Pain Who Fail Conservative Treatment</strong></h3>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nABSTRACT\r\n\r\nTopol GA, Reeves KD: Regenerative injection of elite athletes with career-altering chronic groin pain who fail conservative treatment: a consecutive case series. <a href=\"https://prolotherapy.com/Topol_Regenerative%20Injection%20of%20Elite%20Athletes%20with%20Career-Altering%20Chronic%20Groin%20Pain%20Who%20Fail%20Conservative%20Treatment_2008.pdf\">Am J Phys Med Rehabil 2008;87;890–902.</a>\r\n<h4>Objective: To obtain multisport and long-term outcome data from the use of     regenerative injection therapy on career-threatened athletes.</h4>\r\nDesign: Consecutive enrollment of elite performance-limited athletes with chronic groin/abdominal pain who failed a conservative treatment trial. The treatment consisted of monthly injections of 12.5% dextrose in 0.5% lidocaine in abdominal and adductor attachments on the pubis. Injection of the nociceptive source was confirmed by repetition of resistive testing 5 mins after injection.\r\n\r\nResults: Seventy-five athletes were enrolled. Seventy-two athletes (39 rugby, 29 soccer, and 4 other) completed the minimum two-treatment protocol. Their data revealed a mean groin pain history of 11 (3–60) mos. Average number of treatments received was 3 (1–6).\r\n\r\nIndividual paired t tests for Visual Analog Scale (VAS) of pain with sport (VAS Pain) and Nirschl pain phase scale measured at 0 and an average of 26 (6–73) mos indicated VAS Pain improvement of 82% (P 􏰀 10􏰁10) and Nirschl pain phase scale improvement of 78% (P 􏰀 10􏰁10).\r\n\r\nSix athletes did not improve following regenerative injection therapy treatment, and the remaining 66 returned to unrestricted sport. Return to unrestricted sport occurred in an average of 3 (1–5) mos.\r\n\r\nConclusions: Athletes returned to full elite-level performance in a timely and sustainable manner after regenerative injection therapy using dextrose.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\"><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Read more about Regenerative Orthopedics for Groin/Pelvis</a></div>\r\n</div>\r\n</div>\r\n</div>','Groin Pain Resolved with Regenerative Therapy','','publish','open','closed','','sports-hernia','','','2020-09-12 19:58:48','2020-09-12 19:58:48','',0,'https://www.drfields.com/?p=2028',0,'post','',0),(2029,8,'2019-06-15 11:25:03','2019-06-15 11:25:03','\r\n<strong>Groin Pain/Sports Hernia  Dextrose  Topol et al 2008. Dextrose Injection for Groin Pain and Sports Hernia in Elite Athletes </strong>\r\nDextrose 12.5% injection returns 66/72 elite rugby and soccer players to full sport who were prevented from high level\r\nABSTRACT\r\n\r\nTopol GA, Reeves KD: Regenerative injection of elite athletes with career-altering chronic groin pain who fail conservative treatment: a consecutive case series. Am J Phys Med Rehabil 2008;87; – .\r\n\r\nObjective: To obtain multisport and long-term outcome data from the use of regenerative injection therapy on career-threatened athletes.  Design: Consecutive enrollment of elite performance-limited athletes with chronic groin/abdominal pain who failed a conservative treatment trial and whose careers were threatened.   The treatment consisted of monthly injections of 12.5% dextrose in 0.5% lidocaine in abdominal and adductor attachments on the pubis. Injection of the nociceptive source was confirmed by repetition of resistive testing 5 mins after injection. Results: Seventy-five athletes were enrolled. Seventy-two athletes (39 rugby, 29 soccer, and 4 other) completed the minimum two-treatment protocol. Their data revealed a mean groin pain history of 11 (3–60) mos. Average number of treatments received was 3 (1–6). Individual paired t tests for Visual Analog Scale (VAS) of pain with sport (VAS Pain) and Nirschl pain phase scale measured at 0 and an average of 26 (6–73) mos indicated VAS Pain improvement of 82%  (P &lt;10 10 ). and Nirschl pain phase scale improvement of 78% (P &lt;10 10 ). Six athletes did not improve following regenerative injection therapy treatment, and the remaining 66 returned to unrestricted sport. Return to unrestricted sport occurred in an average of 3 (1–5) mos. Conclusions: Athletes returned to full elite-level performance in a timely and sustainable manner after regenerative injection therapy using dextrose.  Key Words: Growth Substances, Osteitis Pubis, Glucose, Tendonitis, Groin, Proliferating, Tendons, Sports Medicine, Athletic Injuries, Sports Hernia\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Groin Pain/Sports Hernia Dextrose:  Topol et al 2005. Injection for Groin Pain and Sports Hernia in Elite Athletes  </strong>\r\nDextrose 12.5% injection returns 22/24 elite rugby and soccer players to full sport who were prevented from high level play by chronic groin pain.  This involved treatment of abdominal muscle weakness, adductor sprain and osteitis pubis. Topol GA, Reeves KD, Hassanein K. Efficacy of Dextrose <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> in Elite Male Kicking-Sport Athletes With Chronic Groin Pain. Archives Phys Med Rehabil, 2005;86:697-702.\r\n\r\nParticipants: Twenty-two rugby and 2 soccer players with chronic groin pain that prevented full sports participation and who were non- responsive both to therapy and to a graded reintroduction into sports activity.   Intervention: Monthly injection of 12.5% dextrose and 0.5% lidocaine in thigh adductor origins, suprapubic abdominal insertions, and symphysis pubis, depending on palpation tenderness. Injections were given until complete resolution of pain or lack of improvement for 2 consecutive treatments.  Main Outcome Measures: Visual analogue scale (VAS) for pain with sports and the Nirschl Pain Phase Scale (NPPS), a measure of functional impairment from pain.  Results: The final data collection point was 6-32 months after treatment (mean, 17mo). A mean of 2.8 treatments were given. The mean reduction in pain during sports , as measured by the VAS, improved from 6.3 +/- 1.4 to 1.0 +/- 2.4 (P &lt; .001), and the mean reduction NPPS score improved from 5.3 +/- 0.7 to 0.8 +/- 1.9 (P &lt; .001). Twenty of 24 patients had no pain and 22 of 24 were unrestricted with sports at final data collection.  Conclusions: Dextrose <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">prolotherapy</a> showed marked efficacy for chronic groin pain in this group of elite rugby and soccer athletes.\r\n','Groin Pelvis','','inherit','closed','closed','','2028-revision-v1','','','2019-06-15 11:25:03','2019-06-15 11:25:03','',2028,'https://www.drfields.com/uncategorized/2028-revision-v1/',0,'revision','',0),(2030,8,'2019-06-15 11:25:28','2019-06-15 11:25:28','<strong>Groin Pain/Sports Hernia  Dextrose  Topol et al 2008. Dextrose Injection for Groin Pain and Sports Hernia in Elite Athletes </strong>\r\nDextrose 12.5% injection returns 66/72 elite rugby and soccer players to full sport who were prevented from high level\r\nABSTRACT\r\n\r\nTopol GA, Reeves KD: Regenerative injection of elite athletes with career-altering chronic groin pain who fail conservative treatment: a consecutive case series. Am J Phys Med Rehabil 2008;87; – .\r\n\r\nObjective: To obtain multisport and long-term outcome data from the use of regenerative injection therapy on career-threatened athletes.  Design: Consecutive enrollment of elite performance-limited athletes with chronic groin/abdominal pain who failed a conservative treatment trial and whose careers were threatened.   The treatment consisted of monthly injections of 12.5% dextrose in 0.5% lidocaine in abdominal and adductor attachments on the pubis. Injection of the nociceptive source was confirmed by repetition of resistive testing 5 mins after injection. Results: Seventy-five athletes were enrolled. Seventy-two athletes (39 rugby, 29 soccer, and 4 other) completed the minimum two-treatment protocol. Their data revealed a mean groin pain history of 11 (3–60) mos. Average number of treatments received was 3 (1–6). Individual paired t tests for Visual Analog Scale (VAS) of pain with sport (VAS Pain) and Nirschl pain phase scale measured at 0 and an average of 26 (6–73) mos indicated VAS Pain improvement of 82%  (P &lt;10 10 ). and Nirschl pain phase scale improvement of 78% (P &lt;10 10 ). Six athletes did not improve following regenerative injection therapy treatment, and the remaining 66 returned to unrestricted sport. Return to unrestricted sport occurred in an average of 3 (1–5) mos. Conclusions: Athletes returned to full elite-level performance in a timely and sustainable manner after regenerative injection therapy using dextrose.  Key Words: Growth Substances, Osteitis Pubis, Glucose, Tendonitis, Groin, Proliferating, Tendons, Sports Medicine, Athletic Injuries, Sports Hernia\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Groin Pain/Sports Hernia Dextrose:  Topol et al 2005. Injection for Groin Pain and Sports Hernia in Elite Athletes  </strong>\r\nDextrose 12.5% injection returns 22/24 elite rugby and soccer players to full sport who were prevented from high level play by chronic groin pain.  This involved treatment of abdominal muscle weakness, adductor sprain and osteitis pubis. Topol GA, Reeves KD, Hassanein K. Efficacy of Dextrose <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> in Elite Male Kicking-Sport Athletes With Chronic Groin Pain. Archives Phys Med Rehabil, 2005;86:697-702.\r\n\r\nParticipants: Twenty-two rugby and 2 soccer players with chronic groin pain that prevented full sports participation and who were non- responsive both to therapy and to a graded reintroduction into sports activity.   Intervention: Monthly injection of 12.5% dextrose and 0.5% lidocaine in thigh adductor origins, suprapubic abdominal insertions, and symphysis pubis, depending on palpation tenderness. Injections were given until complete resolution of pain or lack of improvement for 2 consecutive treatments.  Main Outcome Measures: Visual analogue scale (VAS) for pain with sports and the Nirschl Pain Phase Scale (NPPS), a measure of functional impairment from pain.  Results: The final data collection point was 6-32 months after treatment (mean, 17mo). A mean of 2.8 treatments were given. The mean reduction in pain during sports , as measured by the VAS, improved from 6.3 +/- 1.4 to 1.0 +/- 2.4 (P &lt; .001), and the mean reduction NPPS score improved from 5.3 +/- 0.7 to 0.8 +/- 1.9 (P &lt; .001). Twenty of 24 patients had no pain and 22 of 24 were unrestricted with sports at final data collection.  Conclusions: Dextrose <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">prolotherapy</a> showed marked efficacy for chronic groin pain in this group of elite rugby and soccer athletes.\r\n\r\n\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img alt=\"foot pain medium\" title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"></a><a href=\"/ankle-foot/\">Ankle/Foot</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Knee\"><img alt=\"Knee Pain\" title=\"Knee Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Lower-Back\"><img alt=\"back pain medium\" title=\"back pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\">Lower Back</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Elbow\"><img alt=\"Elbow Pain\" title=\"Elbow Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\">Elbow</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Finger\"><img alt=\"Finger Pain\" title=\"Finger Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finger-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\">Finger</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"><img alt=\"Groin/Pelvis\" title=\"Groin/Pelvis\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Groin/Pelvis</a>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n','Groin Pelvis','','inherit','closed','closed','','2028-revision-v1','','','2019-06-15 11:25:28','2019-06-15 11:25:28','',2028,'https://www.drfields.com/uncategorized/2028-revision-v1/',0,'revision','',0),(2031,8,'2019-06-15 11:29:37','2019-06-15 11:29:37','<div class=\"col-md-6\">\r\n<iframe src=\"\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe><p></p>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Fields on The Doctors TV Show</p>\r\n</div>\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" class=\"aligncenter\"/>\r\n<a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\" ><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;<strong>Dr. Fields on the Radio</strong></a>\r\n</div>\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-15 11:29:37','2019-06-15 11:29:37','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(2032,8,'2019-06-15 11:30:03','2019-06-15 11:30:03','\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" class=\"aligncenter\"/>\r\n<a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\" ><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;<strong>Dr. Fields on the Radio</strong></a>\r\n</div>\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-15 11:30:03','2019-06-15 11:30:03','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(2033,8,'2019-06-15 11:33:14','2019-06-15 11:33:14','','The-Doctors','Dr. Fields on The Doctors TV Show','inherit','open','closed','','the-doctors','','','2019-06-15 13:39:51','2019-06-15 13:39:51','',0,'https://www.drfields.com/wp-content/uploads/2019/06/The-Doctors.mp4',0,'attachment','video/mp4',0),(2034,8,'2019-06-15 13:10:47','2019-06-15 13:10:47','<div class=\"youtube-click-div \" id=\"videocentre\">\r\n<iframe src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-Doctors.mp4\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" class=\"aligncenter\"/>\r\n<a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\" ><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;<strong>Dr. Fields on the Radio</strong></a>\r\n</div>\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-15 13:10:47','2019-06-15 13:10:47','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(2035,8,'2019-06-15 13:11:16','2019-06-15 13:11:16','<div class=\"youtube-click-div \" id=\"videocentre\">\r\n<iframe src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-Doctors.mp4\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" class=\"aligncenter\"/>\r\n<a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\" ><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;<strong>Dr. Fields on the Radio</strong></a>\r\n</div>\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-15 13:11:16','2019-06-15 13:11:16','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(2036,8,'2019-06-15 13:11:35','2019-06-15 13:11:35','<div class=\"\" id=\"videocentre\">\r\n<iframe src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-Doctors.mp4\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" class=\"aligncenter\"/>\r\n<a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\" ><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;<strong>Dr. Fields on the Radio</strong></a>\r\n</div>\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-15 13:11:35','2019-06-15 13:11:35','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(2037,8,'2019-06-15 13:12:02','2019-06-15 13:12:02','<div class=\"youtube-click-div \" id=\"videocentre\">\r\n<iframe src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-Doctors.mp4\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" class=\"aligncenter\"/>\r\n<a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\" ><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;<strong>Dr. Fields on the Radio</strong></a>\r\n</div>\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-15 13:12:02','2019-06-15 13:12:02','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(2038,8,'2019-06-15 13:13:35','2019-06-15 13:13:35','<div class=\"youtube-click-div \" id=\"videocentre\">\r\n<iframe src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-Doctors.mp4\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n</div>\r\n<p>&nbsp;</p>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" class=\"aligncenter\"/>\r\n<a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\" ><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;<strong>Dr. Fields on the Radio</strong></a>\r\n</div>\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-15 13:13:35','2019-06-15 13:13:35','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(2039,8,'2019-06-15 13:40:04','2019-06-15 13:40:04','<div class=\"youtube-click-div \" id=\"videocentre\">\r\n[playlist type=\"video\" tracklist=\"false\" ids=\"2033\"]\r\n</div>\r\n<p>&nbsp;</p>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" class=\"aligncenter\"/>\r\n<a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\" ><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;<strong>Dr. Fields on the Radio</strong></a>\r\n</div>\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-15 13:40:04','2019-06-15 13:40:04','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(2040,8,'2019-06-15 13:43:47','2019-06-15 13:43:47','<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[playlist type=\"video\" tracklist=\"false\" ids=\"2033\"]\r\n</div>\r\n<p>&nbsp;</p>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" class=\"aligncenter\"/>\r\n<a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\" ><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;<strong>Dr. Fields on the Radio</strong></a>\r\n</div>\r\n','Doc on TV','','inherit','closed','closed','','1567-revision-v1','','','2019-06-15 13:43:47','2019-06-15 13:43:47','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(2041,8,'2019-06-17 06:35:02','2019-06-17 06:35:02','<h4><span id=\"dnn_ctr515_dnnTITLE_titleLabel\" class=\"TitleH2\">Guadalajara 2006</span></h4>\r\n&nbsp;\r\n<table class=\"resptable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_418\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-418\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-two-aides.jpg\" alt=\"Dr Fields And Two Aides\" width=\"225\" height=\"150\" /> Dr Fields And Two Aides[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_417\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-417\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-his-staff-and-a-patient1.jpg\" alt=\"Dr. Fields His Staff And A Patient1\" width=\"225\" height=\"150\" /> Dr. Fields His Staff And A Patient1[/caption]</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_419\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-419\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Steven-Liza-and-Peter.jpg\" alt=\"Steven, Liza And Peter\" width=\"225\" height=\"150\" /> Steven, Liza And Peter[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_420\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-420\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-gang-at-dinner.jpg\" alt=\"The Gang At Dinner\" width=\"225\" height=\"150\" /> The Gang At Dinner[/caption]</td>\r\n</tr>\r\n</tbody>\r\n</table>','Guadalajara 2006','','inherit','closed','closed','','416-revision-v1','','','2019-06-17 06:35:02','2019-06-17 06:35:02','',416,'https://www.drfields.com/uncategorized/416-revision-v1/',0,'revision','',0),(2042,8,'2019-06-17 07:20:37','2019-06-17 07:20:37','<h4>Honduras 2013</h4>\r\n\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\">The Final Party</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\">Olanchito - The Town</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\">Mid Weekend</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\">In The Clinic</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\">Before and After</a></li>\r\n</ul>\r\n\r\n<h4>Olanchito The Town<h4>','Olanchito The Town','','inherit','closed','closed','','585-revision-v1','','','2019-06-17 07:20:37','2019-06-17 07:20:37','',585,'https://www.drfields.com/uncategorized/585-revision-v1/',0,'revision','',0),(2043,8,'2019-06-17 07:40:17','2019-06-17 07:40:17','Cozumel 2013 Finish','Cozumel 2013 Finish','Cozumel 2013 Finish','inherit','open','closed','','cozumel-2013-finish','','','2019-06-17 07:40:17','2019-06-17 07:40:17','',131,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg',0,'attachment','image/jpeg',0),(2044,8,'2019-06-17 07:40:28','2019-06-17 07:40:28','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><em>Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></em></p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong class=\"subhead\">Pre Race</strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong class=\"subhead\">The Swim</strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong class=\"subhead\">The Bike</strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong class=\"subhead\">The Run</strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong class=\"subhead\">The Finish</strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n\r\n<p><strong class=\"subhead\">Final Thoughts:</strong><br>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\r\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\r\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\r\n\r\n<p><strong class=\"subhead\">Dedication:</strong><br>\r\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\r\n\r\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \r\nYour thoughts and well wishes helped me through my third Ironman.\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n</div>\r\n<div class=\"col-md-4\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Canada\" title=\"2013 Canada\" style=\"padding-left: 5px;\" width=\"160\" height=\"215\">\r\n<div style=\"text-align: center;\"><a href=\"https://photos.app.goo.gl/gaPdmofhlbBcBfFx2\" target=\"_blank\" rel=\"noopener noreferrer\">2013 Canada<br>\r\nClick For More Photos</a><br>\r\n<br>\r\n</div>\r\n<p style=\"text-align: center;\">\r\nClick below for Pictures &amp; Story</p>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n</div>\r\n</div>\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-17 07:40:28','2019-06-17 07:40:28','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(2045,8,'2019-06-17 07:41:28','2019-06-17 07:41:28','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><em>Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></em></p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong class=\"subhead\">Pre Race</strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong class=\"subhead\">The Swim</strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong class=\"subhead\">The Bike</strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong class=\"subhead\">The Run</strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong class=\"subhead\">The Finish</strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n\r\n<p><strong class=\"subhead\">Final Thoughts:</strong><br>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\r\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\r\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\r\n\r\n<p><strong class=\"subhead\">Dedication:</strong><br>\r\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\r\n\r\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \r\nYour thoughts and well wishes helped me through my third Ironman.\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Canada\" title=\"2013 Canada\" style=\"padding-left: 5px;\" width=\"160\" height=\"215\">\r\n<div style=\"text-align: center;\"><a href=\"https://photos.app.goo.gl/gaPdmofhlbBcBfFx2\" target=\"_blank\" rel=\"noopener noreferrer\">2013 Canada<br>\r\nClick For More Photos</a><br>\r\n<br>\r\n</div>\r\n<p style=\"text-align: center;\">\r\nClick below for Pictures &amp; Story</p>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n</div>\r\n</div>\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-17 07:41:28','2019-06-17 07:41:28','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(2046,8,'2019-06-17 07:50:32','2019-06-17 07:50:32','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><strong >On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p>&nbsp; </p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong class=\"subhead\">THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n\r\n<p>&nbsp; </p>\r\n<p>&nbsp; </p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong class=\"subhead\">THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong class=\"subhead\">THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong class=\"subhead\">THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n\r\n<div class=\"clear\"></div>\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img src=\"/portals/0/images/cozumel-2011-finish.jpg\" alt=\"2011 Cozumel\" title=\"2011 Cozumel\" width=\"160\" height=\"215\">\r\n<a href=\"https://photos.app.goo.gl/iYK2GiU2Wy4E6XNY2\" target=\"_blank\" rel=\"noopener noreferrer\">2011 Cozumel<br>\r\nClick For More Photos</a><br>\r\n<br>\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n</div>\r\n\r\n','Race Report 1st Ironman','','inherit','closed','closed','','92-revision-v1','','','2019-06-17 07:50:32','2019-06-17 07:50:32','',92,'https://www.drfields.com/uncategorized/92-revision-v1/',0,'revision','',0),(2047,8,'2019-06-17 07:50:57','2019-06-17 07:50:57','Cozumel 2011 Finish','Cozumel 2011 Finish','Cozumel 2011 Finish','inherit','open','closed','','cozumel-2011-finish-3','','','2019-06-17 07:50:57','2019-06-17 07:50:57','',92,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish-2.jpg',0,'attachment','image/jpeg',0),(2048,8,'2019-06-17 07:51:16','2019-06-17 07:51:16','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><strong >On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p>&nbsp; </p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong class=\"subhead\">THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n\r\n<p>&nbsp; </p>\r\n<p>&nbsp; </p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong class=\"subhead\">THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong class=\"subhead\">THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong class=\"subhead\">THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n\r\n<div class=\"clear\"></div>\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish-2.jpg\" alt=\"2011 Cozumel\" title=\"2011 Cozumel\" width=\"160\" height=\"215\">\r\n<a href=\"https://photos.app.goo.gl/iYK2GiU2Wy4E6XNY2\" target=\"_blank\" rel=\"noopener noreferrer\">2011 Cozumel<br>\r\nClick For More Photos</a><br>\r\n<br>\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n</div>\r\n\r\n','Race Report 1st Ironman','','inherit','closed','closed','','92-revision-v1','','','2019-06-17 07:51:16','2019-06-17 07:51:16','',92,'https://www.drfields.com/uncategorized/92-revision-v1/',0,'revision','',0),(2049,8,'2019-06-17 07:55:50','2019-06-17 07:55:50','Cozumel 2012 Finish','Cozumel 2012 Finish','Cozumel 2012 Finish','inherit','open','closed','','cozumel-2012-finish','','','2019-06-17 07:55:50','2019-06-17 07:55:50','',120,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish.jpg',0,'attachment','image/jpeg',0),(2050,8,'2019-06-17 09:45:55','2019-06-17 09:45:55','<div class=\"col-md-8\">\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\n\n<p class=\"text-center\" id=\"athletic-event\">November 25, 2012<br>\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\n\n<p>After finishing this race last year, I was back again to try and beat my time of 2011 time of 14 hrs. 4 mins and 7 sec. And with much pride, I am happy to announce that I did; finishing in 13hrs, 50 mins and 27sec.</p>\n\n<p>A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused. If your mind got the better of you, the day would be over.</p>\n\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 42 countries.</p>\n<p>It was a beautiful day; air temp about 74 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my journey was about to begin.</p>\n\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg\" alt=\"Cozumel 2012 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-123\" /><strong class=\"subhead\">THE SWIM</strong></span><br>\nThe water was a bit choppy and there was a strong current too. This did not bother me as swimming is my best event. After one last gel, I lined up with the others and then jumped off the pier into the ocean. One has to jump about 7-10 feet off the pier into the water. I positioned myself in a good spot up front and along the shore. The current would be flowing against us for the first 800 meters, so it was best to be close to the shore where the current is less. After treading water for 10 minutes or so, the horn went off. I go pretty fast at first to get away from the crowd. Due to the chop, I altered my stroke a bit to clear this. This brings ones arms slightly closer to the boy and I did develop a bit of an underarm chafe but this was soon forgotten. Once we turned around the first buoy, the current was with us and I let the current work with me for the next mile or so. The water was clear and you could see schools of fish swimming around as well as the scuba lifeguards, positioned on the bottom about 30 feet down. When I got to the final turn, the current was against me again, so I had to work a bit harder. There was no balloon or marker marking the pier so I just followed the crowd and sighted off the lifeguard paddlers and boats. Overall I was about 8 minutes slower than last year (one hour and nine minutes this year) but still felt pretty good. Later I was to learn that most people were 15 to 30 minutes slower than last year. In Ironman races (avg. participants about 2300), there is usually about 10-15 who do not make the 2 hrs. and 20 minute swim cutoff time. This year there was over 240! Very disappointing for them as they take your timing chip away as you exit the water. Some chose to do the race anyway; this was unofficial of course.</p>\n<p>As I exited the water, I ran quickly into the change tent (T1). I was determined to cut down my transition time this year – big time. I had opted to wear a Tri Suit under the speed suit (like in the Olympics) I swim in. This meant I did not have to change into separate clothing for the bike and run since the Tri suit is a two piece suit that one can ride and run in.</p>\n<p>Once inside, I quickly stripped the speed suit off, put on my helmet and bike shoes and was off to get my bike. You did not have to re-apply sunscreen as they had helpers in the change tent lathering your shoulders and upper arms (the exposed areas) with sunscreen. This was a big help.</p>\n\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-bike.jpg\" alt=\"Cozumel 2012 Bike\" width=\"160\" height=\"196\" class=\"alignleft size-full wp-image-125\" /><strong class=\"subhead\">THE BIKE</strong></span><br>\nThe first loop (it is a three lop ride) on the bike went well as there was not a lot of wind when we got to the back of the island. I also had changed my nutrition from last year and did not have the dreaded stomach problems that many triathletes have on the bike. The second loop, the winds really picked up. It was a tough 15-18 mile section with 15-20 mile an hour wind hitting you broad side. I did develop some left foot pain which happened sometimes when I ride over 70 miles. I wear a special bike shoe orthotics that keeps me from having right foot pain after I run and after riding. This had happened last year. So I removed my left orthotic. But shortly thereafter the right foot also bothered me so I removed that orthotic too. This essentially eliminated the pain. At mile 62 there is a special needs station where one leaves anything that they might want. Last year I rested there a bit but this year just grabbed what I needed from my bag and kept going. The third lap the wind got even more brutal and we were all slugging it out on the backside of the island. As I turned to head back into town at the 100 mile maker I went to slip the orthotics back in as it prevents me from having foot pain on the post ride run. The left one had fallen out of my bike jersey pocket but at least I had the right one. All in all I rode 12 minutes faster than last year.</p>\n\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-run.jpg\" alt=\"Cozumel 2012 Run\" width=\"160\" height=\"215\" class=\"alignleft size-full wp-image-127\" /><strong class=\"subhead\">THE RUN</strong></span><br>\nBack into town, I got off the bike at the bike to run transition area (T2). I quickly changed; again much quicker than last year and headed off to run the marathon. My legs were a bit heavy but somehow I was running well. This was especially good since I had a hamstring problem earlier in the year and had been running a lot in deep water instead of the land for my training. The heaviness quickly went away within the first mile and all was going good. I had only slight right hamstring discomfort and no real pain.</p>\n<p>We do approximately 4. 4 miles out and back for an 8.8 mile loop (three times). On the way back to town on the first loop, the foot pain (left and right) started to appear. I did take a Celebrex at 4am and another one on the third loop of the bike. When I got to town after 8.8 miles, I asked my good friend Angela (she was my aid throughout the race- and a great one at that) to go find ibuprofen (it works on a different pathway than Celebrex). When I got to the second turn around to head back to town (13.1 miles) my hamstring kicked in - big time. It was painful to run but I kept going. I changed my gait (made it an even shorter stride). There were plenty of people walking by then but I just dealt with it. I know there was medic tent at about 15 miles. I pulled in and asked for ice. They ace wrapped my upper thigh with lots of ice. This seemed to reduce the pain but I still was running slightly slower (the first 13.1miles had me on a 5+ hr. marathon pace - much better than the 5:35 of last year). As I entered town, Angela was there and handed me the ibuprofen. I took it and within minutes I was feeling quite good. Prior to this I had calculated my time and distance and knew that I could break 14 hrs. – and maybe by 30 minutes. The hamstring pain started to return about 19 miles. I got the leg wrapped with more ice again on the way out to the 4.8 final turn around. Before the last turn around I was forced to walk and run. This is something that I had never done before (walk that is), but the pain was pretty high. At the last three mile marker I got even more ice for my hamstring and decided to walk more than run. Soon thereafter I could not continue a run/walk pace due to pain but figured if I walked fast (walking was painful but not severe) I would break 14 hrs. So at that point I walked a 14-15 mile pace (off my Garmin wrist computer), which is still pretty fast. There were plenty of walkers and I was passing them. I had to save whatever run I had left in me for last few hundred meters up to the finish (no way was I going to walk that!). This is right in the middle of the park and all lite up with hundreds (if not more) of people yelling and screaming. So as I got close, I began to run (pain is temporary; finishing is forever!) the last hundred meters to the finish line where I heard the announcer say, once again, \"<strong class=\"subhead\"><span style=\"text-decoration: underline;\">Peter Fields, you are an Ironman!</span></strong>\"</p>\n\n<p>My time was13:50, not the 13:30 I might have had without the hamstring issue. <br>\nBut I did end up breaking the 14 hr. barrier (last year\'s time of 14:04), which I had set out to do. Mission accomplished. <br>\nAs I always say, age is mind over matter; if you don\'t mind- it does not matter!</p>\n\n\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" alt=\"Cozumel 2012 Finish2\" width=\"150\" height=\"268\" class=\"alignleft size-full wp-image-128\" /><strong class=\"subhead\">THE FINISH</strong></span><br>\nImmediately after crossing the finish line, after getting a big hug from Angela. I then went into the medical tent and to get a one liter IV bag of fluid (as a former ER doc I know what to say to get it done without waiting). Everyone is dehydrated to some point and this was much needed. Then off to get a post-race massage and some food. Unfortunately, caffeine gels kept me going during the last part of the run and my stomach did not really want any food. But it was nice just to sit down. Then cheered on the last finishers who are those are trying to make the 17 hr. cut-off at midnight. After collecting my gear and bike, I finally headed back to the hotel and got to bed at 2am. Not much success with that after being very jacked up all day, so the next day was to a big recovery and sleep day.</p>\n<p>Thank you for allowing me to share this with you and for taking the\n\ntime to read it. I want to thank everyone that offered me support and\nwishes. I am very grateful to each and every one of you.</p>\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\n<p class=\"text-center\"><strong class=\"subhead\">Peter A. Fields, MD DC</strong></span><br>\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\n</div>\n\n<div class=\"col-md-4\" id=\"sidebar2\">\n\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish.jpg\" alt=\"2012 Cozumel\" title=\"2012 Cozumel\" style=\"padding-left: 5px;\" width=\"160\" height=\"215\">\n<a href=\"https://photos.app.goo.gl/QCF7CgcEG8uOfLBs1\" target=\"_blank\" rel=\"noopener noreferrer\">2012 Cozumel<br>\nClick For More Photos</a><br>\nClick below for Pictures &amp; Story\n\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\n<a href=\"about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\n<a href=\"about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\n</div>\n\n','Race Report 2nd Ironman','','inherit','closed','closed','','120-autosave-v1','','','2019-06-17 09:45:55','2019-06-17 09:45:55','',120,'https://www.drfields.com/uncategorized/120-autosave-v1/',0,'revision','',0),(2051,8,'2019-06-17 07:56:32','2019-06-17 07:56:32','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 25, 2012<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p>After finishing this race last year, I was back again to try and beat my time of 2011 time of 14 hrs. 4 mins and 7 sec. And with much pride, I am happy to announce that I did; finishing in 13hrs, 50 mins and 27sec.</p>\r\n\r\n<p>A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused. If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 42 countries.</p>\r\n<p>It was a beautiful day; air temp about 74 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg\" alt=\"Cozumel 2012 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-123\" /><strong class=\"subhead\">THE SWIM</strong></span><br>\r\nThe water was a bit choppy and there was a strong current too. This did not bother me as swimming is my best event. After one last gel, I lined up with the others and then jumped off the pier into the ocean. One has to jump about 7-10 feet off the pier into the water. I positioned myself in a good spot up front and along the shore. The current would be flowing against us for the first 800 meters, so it was best to be close to the shore where the current is less. After treading water for 10 minutes or so, the horn went off. I go pretty fast at first to get away from the crowd. Due to the chop, I altered my stroke a bit to clear this. This brings ones arms slightly closer to the boy and I did develop a bit of an underarm chafe but this was soon forgotten. Once we turned around the first buoy, the current was with us and I let the current work with me for the next mile or so. The water was clear and you could see schools of fish swimming around as well as the scuba lifeguards, positioned on the bottom about 30 feet down. When I got to the final turn, the current was against me again, so I had to work a bit harder. There was no balloon or marker marking the pier so I just followed the crowd and sighted off the lifeguard paddlers and boats. Overall I was about 8 minutes slower than last year (one hour and nine minutes this year) but still felt pretty good. Later I was to learn that most people were 15 to 30 minutes slower than last year. In Ironman races (avg. participants about 2300), there is usually about 10-15 who do not make the 2 hrs. and 20 minute swim cutoff time. This year there was over 240! Very disappointing for them as they take your timing chip away as you exit the water. Some chose to do the race anyway; this was unofficial of course.</p>\r\n<p>As I exited the water, I ran quickly into the change tent (T1). I was determined to cut down my transition time this year – big time. I had opted to wear a Tri Suit under the speed suit (like in the Olympics) I swim in. This meant I did not have to change into separate clothing for the bike and run since the Tri suit is a two piece suit that one can ride and run in.</p>\r\n<p>Once inside, I quickly stripped the speed suit off, put on my helmet and bike shoes and was off to get my bike. You did not have to re-apply sunscreen as they had helpers in the change tent lathering your shoulders and upper arms (the exposed areas) with sunscreen. This was a big help.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-bike.jpg\" alt=\"Cozumel 2012 Bike\" width=\"160\" height=\"196\" class=\"alignleft size-full wp-image-125\" /><strong class=\"subhead\">THE BIKE</strong></span><br>\r\nThe first loop (it is a three lop ride) on the bike went well as there was not a lot of wind when we got to the back of the island. I also had changed my nutrition from last year and did not have the dreaded stomach problems that many triathletes have on the bike. The second loop, the winds really picked up. It was a tough 15-18 mile section with 15-20 mile an hour wind hitting you broad side. I did develop some left foot pain which happened sometimes when I ride over 70 miles. I wear a special bike shoe orthotics that keeps me from having right foot pain after I run and after riding. This had happened last year. So I removed my left orthotic. But shortly thereafter the right foot also bothered me so I removed that orthotic too. This essentially eliminated the pain. At mile 62 there is a special needs station where one leaves anything that they might want. Last year I rested there a bit but this year just grabbed what I needed from my bag and kept going. The third lap the wind got even more brutal and we were all slugging it out on the backside of the island. As I turned to head back into town at the 100 mile maker I went to slip the orthotics back in as it prevents me from having foot pain on the post ride run. The left one had fallen out of my bike jersey pocket but at least I had the right one. All in all I rode 12 minutes faster than last year.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-run.jpg\" alt=\"Cozumel 2012 Run\" width=\"160\" height=\"215\" class=\"alignleft size-full wp-image-127\" /><strong class=\"subhead\">THE RUN</strong></span><br>\r\nBack into town, I got off the bike at the bike to run transition area (T2). I quickly changed; again much quicker than last year and headed off to run the marathon. My legs were a bit heavy but somehow I was running well. This was especially good since I had a hamstring problem earlier in the year and had been running a lot in deep water instead of the land for my training. The heaviness quickly went away within the first mile and all was going good. I had only slight right hamstring discomfort and no real pain.</p>\r\n<p>We do approximately 4. 4 miles out and back for an 8.8 mile loop (three times). On the way back to town on the first loop, the foot pain (left and right) started to appear. I did take a Celebrex at 4am and another one on the third loop of the bike. When I got to town after 8.8 miles, I asked my good friend Angela (she was my aid throughout the race- and a great one at that) to go find ibuprofen (it works on a different pathway than Celebrex). When I got to the second turn around to head back to town (13.1 miles) my hamstring kicked in - big time. It was painful to run but I kept going. I changed my gait (made it an even shorter stride). There were plenty of people walking by then but I just dealt with it. I know there was medic tent at about 15 miles. I pulled in and asked for ice. They ace wrapped my upper thigh with lots of ice. This seemed to reduce the pain but I still was running slightly slower (the first 13.1miles had me on a 5+ hr. marathon pace - much better than the 5:35 of last year). As I entered town, Angela was there and handed me the ibuprofen. I took it and within minutes I was feeling quite good. Prior to this I had calculated my time and distance and knew that I could break 14 hrs. – and maybe by 30 minutes. The hamstring pain started to return about 19 miles. I got the leg wrapped with more ice again on the way out to the 4.8 final turn around. Before the last turn around I was forced to walk and run. This is something that I had never done before (walk that is), but the pain was pretty high. At the last three mile marker I got even more ice for my hamstring and decided to walk more than run. Soon thereafter I could not continue a run/walk pace due to pain but figured if I walked fast (walking was painful but not severe) I would break 14 hrs. So at that point I walked a 14-15 mile pace (off my Garmin wrist computer), which is still pretty fast. There were plenty of walkers and I was passing them. I had to save whatever run I had left in me for last few hundred meters up to the finish (no way was I going to walk that!). This is right in the middle of the park and all lite up with hundreds (if not more) of people yelling and screaming. So as I got close, I began to run (pain is temporary; finishing is forever!) the last hundred meters to the finish line where I heard the announcer say, once again, \"<strong class=\"subhead\"><span style=\"text-decoration: underline;\">Peter Fields, you are an Ironman!</span></strong>\"</p>\r\n\r\n<p>My time was13:50, not the 13:30 I might have had without the hamstring issue. <br>\r\nBut I did end up breaking the 14 hr. barrier (last year\'s time of 14:04), which I had set out to do. Mission accomplished. <br>\r\nAs I always say, age is mind over matter; if you don\'t mind- it does not matter!</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" alt=\"Cozumel 2012 Finish2\" width=\"150\" height=\"268\" class=\"alignleft size-full wp-image-128\" /><strong class=\"subhead\">THE FINISH</strong></span><br>\r\nImmediately after crossing the finish line, after getting a big hug from Angela. I then went into the medical tent and to get a one liter IV bag of fluid (as a former ER doc I know what to say to get it done without waiting). Everyone is dehydrated to some point and this was much needed. Then off to get a post-race massage and some food. Unfortunately, caffeine gels kept me going during the last part of the run and my stomach did not really want any food. But it was nice just to sit down. Then cheered on the last finishers who are those are trying to make the 17 hr. cut-off at midnight. After collecting my gear and bike, I finally headed back to the hotel and got to bed at 2am. Not much success with that after being very jacked up all day, so the next day was to a big recovery and sleep day.</p>\r\n<p>Thank you for allowing me to share this with you and for taking the\r\n\r\ntime to read it. I want to thank everyone that offered me support and\r\nwishes. I am very grateful to each and every one of you.</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n<p class=\"text-center\"><strong class=\"subhead\">Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n</div>\r\n\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish.jpg\" alt=\"2012 Cozumel\" title=\"2012 Cozumel\" style=\"padding-left: 5px;\" width=\"160\" height=\"215\">\r\n<a href=\"https://photos.app.goo.gl/QCF7CgcEG8uOfLBs1\" target=\"_blank\" rel=\"noopener noreferrer\">2012 Cozumel<br>\r\nClick For More Photos</a><br>\r\nClick below for Pictures &amp; Story\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n</div>\r\n\r\n','Race Report 2nd Ironman','','inherit','closed','closed','','120-revision-v1','','','2019-06-17 07:56:32','2019-06-17 07:56:32','',120,'https://www.drfields.com/uncategorized/120-revision-v1/',0,'revision','',0),(2052,8,'2019-06-17 08:04:07','2019-06-17 08:04:07','Ironman2014 Large','Ironman2014 Large','Ironman2014 Large','inherit','open','closed','','ironman2014-large-2','','','2019-06-17 08:04:07','2019-06-17 08:04:07','',153,'https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg',0,'attachment','image/jpeg',0),(2053,8,'2019-06-17 08:04:39','2019-06-17 08:04:39','<div class=col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<h6 class=\"text-center\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\nMy time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.\r\n\r\nSaturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.\r\n\r\n\r\n<strong class=\"subhead\">RACE DAY</strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.\r\nOn my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n\r\n<strong class=\"subhead\">THE SWIM</strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<strong class=\"subhead\">THE BIKE</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a180 degree turn again (like at the beginning) so we hat to really slow down But this was good thing as the street leading to this turn was lined with thousands of spectators cheering us on.  Occasionally at this point and other ones where there was an announcer I would hear \"and here is Peter from the United States\".  Always nice to hear to keep one going. My usual time is about 3hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins. I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs is where one can leave a bag that morning of anything they may want or need at that point. It is at the halfway point of the bike and another one at the halfway point of the run.  I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.  When I tossed the bottle away, it rolled to the feet of the small boy about 6 or 7 years old. His mom looked at him.  He just looked at it. I told him, in German, here\'s a present for you.  Take it home and clean it! It is yours. He just smiled at me as he reached for it.\r\nThen 8 miles into the second loop miles drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down.\r\nAll in all, it went well on the second loop.  The crowds were less due to the rain but there were, still crowds out there. At about mile 80 my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. \r\nMy second loop time was a bit slower due to the rain.\r\n It was 3 hours in 25 minutes. All in all I felt strong for the run. This was a good thing.\r\nIn town near T2, the crowds were there cheering loudly.\r\n\r\nGot off my bike in and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles.  Got my running shoes on and started off to run a marathon.\r\n\r\nPS several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n\r\n\r\n<p><strong class=\"subhead\">THE RUN</strong></p>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" class=\"alignleft size-full wp-image-174\" />When one leaves transition area two (T2) in an Ironman, you cannot think marathon. You just say are running from here to there and play this mental games with yourself the whole way. It was warm and sunny and about 75 degrees but not too hot. Plus there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So therefore I would pass the finish line 4 times. In this area were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the end the first turn around about 4.5 miles out. I had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake the beginning of each loop, so although brief, it was a nice view. After only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races).  I trained part of the time in the water for my run (deep water running).  This was very helpful as it took the stress of these two areas.  At this point everything was good and I had no pain.  As we passed through the finish line area (middle of the figure eight), we headed out again along a canal. Then we ran under a small foot bridge and onto a small (in width) cobblestone street lined with houses. We ran along this for about 3/4 of a mile then into the town square. People were sitting in cafes and cheering us on. Lots and lots of people. It was about 6 or 7 o\'clock at night and since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and run back to the starting area. I got back to starting point again and got my special needs bag - some extra nutrition. On the second loop my stomach started to feel little funny.  This is something that is very common with Ironman triathletes. Mine only lasted about again 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration or other things. I felt fairly lucky.  I would cheer these fellow athlete on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\nI just kept telling myself to keep going.  One foot after another...just keep going... Part of the way it was shady so that helped a lot too. The sun stays up until 9 o’clock so it never went down while I was running. Mile 18, I got a second wind. Felt very upbeat and in a good place so I was able to pick up pace.\r\nAt that point I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that you normally he runs a lot faster but not today. He told me to try to stay with him and we could talk so the time with go faster. So for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains one has after racing for over 13 hours. There was a small archway as one entered into the city square. There was a small bell on a string that it was hanging from. If you rung the bell (by tapping it with your hand) they would donate money to charity, so I rang it every time I passed it. At the final turn around, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run. The guy I was running with and I just kept talking. He was from Prague where I was going after the race so we were going to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As one comes with closer to the finish line, the noise level is incredible with cheering, cowbells and more. I then heard the announcer say:\r\n<strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling one has when you hear that never gets old.\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\nAnd at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes\r\nMy friend I met on the run the finished right behind me. I then met his wife and three kids.\r\nAfter a few minutes of walking around it was off to the massage tent and get some food.\r\n\r\nPS I finished around 8:30 pm. At 9 pm the sky opened up and it rained hard for about an hour.\r\n I was very fortunate not to go through that.\r\n\r\nI want to make everybody who took the time and effort to watch the update that were on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.\r\nCollectively, I want to thank massage therapist, my acupuncturist and my chiropractor. You all helped get me through.  And wonderful office staff who always took a great interest in what I was doing and put up with my long workouts that made me late sometimes.\r\n\r\nThere a few individuals that need to be singled out individually.\r\n I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.\r\n\r\nAnd then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race. \r\n\r\nI want to thank my very special friend Angela Past.  Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did).  She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time.  Wow!  Thank you so much for your emotional support when I needed it the most.\r\n\r\nAnd last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day.  My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day.  She has never lost faith in me and my abilities... Thank you mom!\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc®&nbsp;and 4X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n\r\n<img alt=\"Race Report 4th Ironman\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" style=\"text-align: center;\" width=\"204\" height=\"370\">\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-17 08:04:39','2019-06-17 08:04:39','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(2054,8,'2019-06-17 08:06:10','2019-06-17 08:06:10','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<h6 class=\"text-center\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\nMy time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.\r\n\r\nSaturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.\r\n\r\n\r\n<strong class=\"subhead\">RACE DAY</strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.\r\nOn my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n\r\n<strong class=\"subhead\">THE SWIM</strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<strong class=\"subhead\">THE BIKE</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a180 degree turn again (like at the beginning) so we hat to really slow down But this was good thing as the street leading to this turn was lined with thousands of spectators cheering us on.  Occasionally at this point and other ones where there was an announcer I would hear \"and here is Peter from the United States\".  Always nice to hear to keep one going. My usual time is about 3hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins. I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs is where one can leave a bag that morning of anything they may want or need at that point. It is at the halfway point of the bike and another one at the halfway point of the run.  I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.  When I tossed the bottle away, it rolled to the feet of the small boy about 6 or 7 years old. His mom looked at him.  He just looked at it. I told him, in German, here\'s a present for you.  Take it home and clean it! It is yours. He just smiled at me as he reached for it.\r\nThen 8 miles into the second loop miles drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down.\r\nAll in all, it went well on the second loop.  The crowds were less due to the rain but there were, still crowds out there. At about mile 80 my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. \r\nMy second loop time was a bit slower due to the rain.\r\n It was 3 hours in 25 minutes. All in all I felt strong for the run. This was a good thing.\r\nIn town near T2, the crowds were there cheering loudly.\r\n\r\nGot off my bike in and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles.  Got my running shoes on and started off to run a marathon.\r\n\r\nPS several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n\r\n\r\n<p><strong class=\"subhead\">THE RUN</strong></p>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" class=\"alignleft size-full wp-image-174\" />When one leaves transition area two (T2) in an Ironman, you cannot think marathon. You just say are running from here to there and play this mental games with yourself the whole way. It was warm and sunny and about 75 degrees but not too hot. Plus there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So therefore I would pass the finish line 4 times. In this area were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the end the first turn around about 4.5 miles out. I had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake the beginning of each loop, so although brief, it was a nice view. After only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races).  I trained part of the time in the water for my run (deep water running).  This was very helpful as it took the stress of these two areas.  At this point everything was good and I had no pain.  As we passed through the finish line area (middle of the figure eight), we headed out again along a canal. Then we ran under a small foot bridge and onto a small (in width) cobblestone street lined with houses. We ran along this for about 3/4 of a mile then into the town square. People were sitting in cafes and cheering us on. Lots and lots of people. It was about 6 or 7 o\'clock at night and since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and run back to the starting area. I got back to starting point again and got my special needs bag - some extra nutrition. On the second loop my stomach started to feel little funny.  This is something that is very common with Ironman triathletes. Mine only lasted about again 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration or other things. I felt fairly lucky.  I would cheer these fellow athlete on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\nI just kept telling myself to keep going.  One foot after another...just keep going... Part of the way it was shady so that helped a lot too. The sun stays up until 9 o’clock so it never went down while I was running. Mile 18, I got a second wind. Felt very upbeat and in a good place so I was able to pick up pace.\r\nAt that point I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that you normally he runs a lot faster but not today. He told me to try to stay with him and we could talk so the time with go faster. So for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains one has after racing for over 13 hours. There was a small archway as one entered into the city square. There was a small bell on a string that it was hanging from. If you rung the bell (by tapping it with your hand) they would donate money to charity, so I rang it every time I passed it. At the final turn around, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run. The guy I was running with and I just kept talking. He was from Prague where I was going after the race so we were going to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As one comes with closer to the finish line, the noise level is incredible with cheering, cowbells and more. I then heard the announcer say:\r\n<strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling one has when you hear that never gets old.\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\nAnd at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes\r\nMy friend I met on the run the finished right behind me. I then met his wife and three kids.\r\nAfter a few minutes of walking around it was off to the massage tent and get some food.\r\n\r\nPS I finished around 8:30 pm. At 9 pm the sky opened up and it rained hard for about an hour.\r\n I was very fortunate not to go through that.\r\n\r\nI want to make everybody who took the time and effort to watch the update that were on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.\r\nCollectively, I want to thank massage therapist, my acupuncturist and my chiropractor. You all helped get me through.  And wonderful office staff who always took a great interest in what I was doing and put up with my long workouts that made me late sometimes.\r\n\r\nThere a few individuals that need to be singled out individually.\r\n I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.\r\n\r\nAnd then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race. \r\n\r\nI want to thank my very special friend Angela Past.  Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did).  She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time.  Wow!  Thank you so much for your emotional support when I needed it the most.\r\n\r\nAnd last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day.  My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day.  She has never lost faith in me and my abilities... Thank you mom!\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc®&nbsp;and 4X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n\r\n<img alt=\"Race Report 4th Ironman\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" style=\"text-align: center;\" width=\"204\" height=\"370\">\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-17 08:06:10','2019-06-17 08:06:10','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(2055,8,'2019-06-17 08:09:44','2019-06-17 08:09:44','Ironman Brazil Finish','Ironman Brazil Finish','Ironman Brazil Finish','inherit','open','closed','','ironman-brazil-finish-2','','','2019-06-17 08:09:44','2019-06-17 08:09:44','',184,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-1.jpg',0,'attachment','image/jpeg',0),(2056,8,'2019-06-17 08:12:17','2019-06-17 08:12:17','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong class=\"subhead\">RACE DAY</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n<div class=\"clear\"></div>\r\n<br>\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n<div class=\"clear\"></div>\r\n\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\r\n\r\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\r\n\"Peter Fields, you are an Ironman”,\r\nI knew it was all worthwhile. \r\n\r\n\r\n<strong class=\"subhead\">FINAL THOUGHTS</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg\" alt=\"Ironman Brazil Finish\" width=\"200\" height=\"200\" class=\"alignright size-thumbnail wp-image-199\" />My race may have been slowed down by the problems I had on the run, but I was never discouraged. As my former coach told me, Ironman races are all about damage control. That thought helped me get through this race. I was very pleased that I did not get the two most common problems that affect athletes in an Ironman: stomach problems and/or mechanical problems on the bike.\r\nI felt exhausted and drained but nevertheless very satisfied to have finished my 5th Ironman. Some may ask why I punish my body? I was not punishing it; just challenging it. When one is prepared, it is not a punishment. Plus an Ironman is as much a mental challenge as a physical one.\r\n\r\nI leave you with a quote by the author Viktor Frankl, MD, holocaust survivor and world famous author from his book Man\'s Search For Meaning, which was my dad\'s favorite:\r\n\"Life can be pulled by goals just as surely as it can be pushed by drives.\"\r\n\r\nThere are too many to name, but I want to thank everybody out there who followed me during this race and offered me encouragement. I’d also like to thank everyone else who has written to me and even just thought about me before, during and/or after the race.\r\n\r\nThis race was dedicated to my mother who I lost last year, to my father who I lost 11 years ago and to my uncle who, at 89yo, survived a very tough time recently being in the hospital for 30 days. All three of them have meant a lot to me during my life and have encouraged me to never give up.\r\n\r\nLastly, a big shout out to my brother Norman. No matter where I have raced, he has always followed me the entire race on the computer. I heard him cheering me on the whole way; he has never forgotten his little brother.\r\nThanks bro!\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc® and 5X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n\r\n<a class=\"youtube\" href=\"https://www.youtube.com/watch?v=I-qqF2d40Tw\"><img alt=\"2015 Ironman Brazil Finish\" title=\"2015 Ironman Brazil Finish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-1.jpg\"></a>\r\n<strong><em>2015 Ironman Brazil Finish</em></strong>\r\n<br>\r\n<em><strong style=\"color: #3dbc5e;\">Click image above to view video</strong></em></p>\r\n\r\n<div class=\"clear\">\r\n<a href=\"https://photos.app.goo.gl/l3vcnRmnAzjUIFjy1\" target=\"_blank\" rel=\"noopener noreferrer\">2015 Cozumel<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-17 08:12:17','2019-06-17 08:12:17','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(2057,8,'2019-06-17 08:25:43','2019-06-17 08:25:43','Cozumel Finish 2015 275','Cozumel Finish 2015 275','Cozumel Finish 2015 275','inherit','open','closed','','cozumel-finish-2015-275-2','','','2019-06-17 08:25:43','2019-06-17 08:25:43','',217,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275-1.jpg',0,'attachment','image/jpeg',0),(2058,8,'2019-06-17 08:26:05','2019-06-17 08:26:05',',div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">PROLOGUE</strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p>\r\n<strong class=\"subhead\">RACE DAY</strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_248\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]\r\nI ran as quick as I could with my bike shoes on to my bike. You could carry them but then you end up getting gravel on your feet. I took the bike off the rack and ran towards the exit. You\'re not allowed to get on your bike until you leave the transition area. Immediately upon exiting, the transition area, I mounted my bike and took off to start the 112 mile ride.\r\n\r\nI had my power meet on the bike, which in addition to power, would provide me with my heart rate and speed which are essential when riding long distance. The roads were dry and the sun was shining bright and the temperature was in the low eighties. I felt pretty good on the first lap. As you head towards the back of the island the winds pick up. For this approximately 15 mile stretch the winds were about 20 miles an hour blowing on shore. It was tough but not that bad. As you turn towards town to end your first loop the winds were pushing you forward. This was a much needed relief. As you get to town, there were hundreds, if not more, people yelling and cheering. It was very exciting and invigorating. For lap two you again go by some of the hotels and there were people out there cheering.\r\n\r\nAs I got to the back of the island again, the wind picked up and was close to 30 miles an hour. It was getting pretty tough and you just hung in there. Unfortunately this meant that you were down on your triathlon riding bars ( the extended bars you put your forearms on so you can just about lie flat while riding) all the time so as not to let the wind hit you in the chest. It put a tremendous strain on my neck, which I found out later that everybody had the same. You just kept going and going. During this loop, I also stopped at the special needs station at mile 56. This is where you can pick up your nutritional supplies for the second half of the race so you do not need to carry all of them at once. Again as I looped through town the crowds were cheering and it was very nice to get words of encouragement.\r\n\r\nFor the third loop the temperature has risen towards the upper 80\'s and low 90\'s and the winds really were kicking in. Now they were close to 40 miles an hour. It was really brutal. I had ridden this course three times in the past but this time the winds were the strongest . But somehow I kept going and going and managed to endure it. As I made the last turn to head the 9 miles back to town I knew that I had completed this part. Slightly slower than I expected but with the wind it was a slower time for everyone. \r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-run-160.jpg\" alt=\"Cozumel 2015 Run 160\" width=\"160\" height=\"301\" class=\"size-full wp-image-263\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAs I came into town again the crowds were cheering and yelling loudly. I handed off my bike to one of the volunteers there and quickly grabbed my transition bag and ran into the tent. Off with the biking shoes, on with the running shoes, throw some water over myself to help cool me down, put on my running hat, grab some nutrition, go to the bathroom and I was out the door.\r\n\r\nOf course when you transition out of this tent there are thousands of people out there yelling and screaming. The sun was still up so it was still pretty hot with it being in the 90s, But I felt pretty good. For about the first four point 4.4 miles, which is the length of the course (you do this back and forth 3 times) I was a little tight and not so fluid in my running. Along the way of course there are people cheering for about a mile and a half as you get outside of town and then sporadically there were people at hotels who would come out along the road to cheer us on. When I hit the turn around I felt really good and for the next 8.8 miles my legs and body felt really strong. As I got back to town and finished the first 8.8 mile loop the sun was going down which was a blessing because it had been very hot outside.\r\n\r\nThe next 8.8 loop I felt good but the energy was starting to be drained. The bike had taken a tremendous toll, not only on me but on other runners too. But I persevered and kept going. The best thing was my hamstring was not bothering me which had slowed me down during my last two Ironman races. And in May 2015, I had raced Ironman Brazil, where I had a lot of feet problems. None of this came around this time.\r\n\r\nI saw many people out there that I knew from the Los Angeles area or other races. The camaraderie amongst the athletes is tremendous and it\'s something that we all rely on and count on. As I came into town finishing the second loop I knew I only had one more loop to go. I was tired and drained having been racing for almost 12 hrs., but just kept going. Of course along the way I took lots of nutrition and keep myself as hydrated as much as possible. There was no rain this year, which was also nice since the prior previous time I had done this race we were running through knee high puddles.\r\n\r\nAfter leaving town and getting to the final around, I knew only had 4.4 miles left to go and realized that it was in the bag for me. As I came back into town and saw the crowds again, I felt the exhilarating feeling that one can only feel when finishing an Ironman. At this point I only had about a mile to go and knew I have finally done it. That is not only finish my 6th Ironman but my second one in six months . This was a challenge that I set for myself. Like my parents had always told me, set your goals and go for it.\r\nNever say never.\r\n\r\nThe final 100 meters are unbelievable feeling. All ones aches and pains fade away. As I approached the finish line, which is slightly elevated and bathed in lights, I heard the announcer say for the sixth time,\r\n\"Peter Fields, you are an Ironman\".\r\nIt never gets old.\r\nI finally knew that I had completed my conquest of doing two Ironman races in one year.\r\n\r\nOf course the whole way during the race, I never forgot about my parents. I had my mom’s initials written on my left arm and on my right arm I had my dad\'s initials. Both of these people were so special in my life and I have never forgotten them for even one day since each of them passed. Whenever it got tough, I would place my hand on either forearm and feel their presence within me and hear their words of encouragement telling me never to give up. I know they would have been as proud of me as I am of them.\r\n\r\nI want to thank everybody who sent me good wishes, those who kept me in their thoughts and those who followed me on the internet. All your thoughts and wishes kept me strong the whole race.\r\nThere were a few very special people that never stopped thinking about me the whole race. You know who you are and words cannot say thank you enough. \r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc® and 6X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Ironman Cozumel Mexico\" title=\"Ironman Cozumel Mexico\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-1.jpg\" style=\"width: 204px; height: 345px;\">\r\nDr. Fields at the finish line\r\n<a href=\"https://goo.gl/photos/mMnjj9ioLVRkh56Q9\" target=\"_blank\" rel=\"noopener noreferrer\">2015 Cozumel<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-17 08:26:05','2019-06-17 08:26:05','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(2059,8,'2019-06-17 08:29:37','2019-06-17 08:29:37','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">PROLOGUE</strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p>\r\n<strong class=\"subhead\">RACE DAY</strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_248\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]\r\nI ran as quick as I could with my bike shoes on to my bike. You could carry them but then you end up getting gravel on your feet. I took the bike off the rack and ran towards the exit. You\'re not allowed to get on your bike until you leave the transition area. Immediately upon exiting, the transition area, I mounted my bike and took off to start the 112 mile ride.\r\n\r\nI had my power meet on the bike, which in addition to power, would provide me with my heart rate and speed which are essential when riding long distance. The roads were dry and the sun was shining bright and the temperature was in the low eighties. I felt pretty good on the first lap. As you head towards the back of the island the winds pick up. For this approximately 15 mile stretch the winds were about 20 miles an hour blowing on shore. It was tough but not that bad. As you turn towards town to end your first loop the winds were pushing you forward. This was a much needed relief. As you get to town, there were hundreds, if not more, people yelling and cheering. It was very exciting and invigorating. For lap two you again go by some of the hotels and there were people out there cheering.\r\n\r\nAs I got to the back of the island again, the wind picked up and was close to 30 miles an hour. It was getting pretty tough and you just hung in there. Unfortunately this meant that you were down on your triathlon riding bars ( the extended bars you put your forearms on so you can just about lie flat while riding) all the time so as not to let the wind hit you in the chest. It put a tremendous strain on my neck, which I found out later that everybody had the same. You just kept going and going. During this loop, I also stopped at the special needs station at mile 56. This is where you can pick up your nutritional supplies for the second half of the race so you do not need to carry all of them at once. Again as I looped through town the crowds were cheering and it was very nice to get words of encouragement.\r\n\r\nFor the third loop the temperature has risen towards the upper 80\'s and low 90\'s and the winds really were kicking in. Now they were close to 40 miles an hour. It was really brutal. I had ridden this course three times in the past but this time the winds were the strongest . But somehow I kept going and going and managed to endure it. As I made the last turn to head the 9 miles back to town I knew that I had completed this part. Slightly slower than I expected but with the wind it was a slower time for everyone. \r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-run-160.jpg\" alt=\"Cozumel 2015 Run 160\" width=\"160\" height=\"301\" class=\"size-full wp-image-263\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAs I came into town again the crowds were cheering and yelling loudly. I handed off my bike to one of the volunteers there and quickly grabbed my transition bag and ran into the tent. Off with the biking shoes, on with the running shoes, throw some water over myself to help cool me down, put on my running hat, grab some nutrition, go to the bathroom and I was out the door.\r\n\r\nOf course when you transition out of this tent there are thousands of people out there yelling and screaming. The sun was still up so it was still pretty hot with it being in the 90s, But I felt pretty good. For about the first four point 4.4 miles, which is the length of the course (you do this back and forth 3 times) I was a little tight and not so fluid in my running. Along the way of course there are people cheering for about a mile and a half as you get outside of town and then sporadically there were people at hotels who would come out along the road to cheer us on. When I hit the turn around I felt really good and for the next 8.8 miles my legs and body felt really strong. As I got back to town and finished the first 8.8 mile loop the sun was going down which was a blessing because it had been very hot outside.\r\n\r\nThe next 8.8 loop I felt good but the energy was starting to be drained. The bike had taken a tremendous toll, not only on me but on other runners too. But I persevered and kept going. The best thing was my hamstring was not bothering me which had slowed me down during my last two Ironman races. And in May 2015, I had raced Ironman Brazil, where I had a lot of feet problems. None of this came around this time.\r\n\r\nI saw many people out there that I knew from the Los Angeles area or other races. The camaraderie amongst the athletes is tremendous and it\'s something that we all rely on and count on. As I came into town finishing the second loop I knew I only had one more loop to go. I was tired and drained having been racing for almost 12 hrs., but just kept going. Of course along the way I took lots of nutrition and keep myself as hydrated as much as possible. There was no rain this year, which was also nice since the prior previous time I had done this race we were running through knee high puddles.\r\n\r\nAfter leaving town and getting to the final around, I knew only had 4.4 miles left to go and realized that it was in the bag for me. As I came back into town and saw the crowds again, I felt the exhilarating feeling that one can only feel when finishing an Ironman. At this point I only had about a mile to go and knew I have finally done it. That is not only finish my 6th Ironman but my second one in six months . This was a challenge that I set for myself. Like my parents had always told me, set your goals and go for it.\r\nNever say never.\r\n\r\nThe final 100 meters are unbelievable feeling. All ones aches and pains fade away. As I approached the finish line, which is slightly elevated and bathed in lights, I heard the announcer say for the sixth time,\r\n\"Peter Fields, you are an Ironman\".\r\nIt never gets old.\r\nI finally knew that I had completed my conquest of doing two Ironman races in one year.\r\n\r\nOf course the whole way during the race, I never forgot about my parents. I had my mom’s initials written on my left arm and on my right arm I had my dad\'s initials. Both of these people were so special in my life and I have never forgotten them for even one day since each of them passed. Whenever it got tough, I would place my hand on either forearm and feel their presence within me and hear their words of encouragement telling me never to give up. I know they would have been as proud of me as I am of them.\r\n\r\nI want to thank everybody who sent me good wishes, those who kept me in their thoughts and those who followed me on the internet. All your thoughts and wishes kept me strong the whole race.\r\nThere were a few very special people that never stopped thinking about me the whole race. You know who you are and words cannot say thank you enough. \r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc® and 6X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Ironman Cozumel Mexico\" title=\"Ironman Cozumel Mexico\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-1.jpg\" style=\"width: 204px; height: 345px;\">\r\nDr. Fields at the finish line\r\n<a href=\"https://goo.gl/photos/mMnjj9ioLVRkh56Q9\" target=\"_blank\" rel=\"noopener noreferrer\">2015 Cozumel<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-17 08:29:37','2019-06-17 08:29:37','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(2060,8,'2019-06-17 08:58:31','2019-06-17 08:58:31','Switzerland Finish 2016 275','Switzerland Finish 2016 275','Switzerland Finish 2016 275','inherit','open','closed','','switzerland-finish-2016-275','','','2019-06-17 08:58:31','2019-06-17 08:58:31','',302,'https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-2016-275.jpg',0,'attachment','image/jpeg',0),(2061,8,'2019-06-17 08:59:01','2019-06-17 08:59:01','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\n[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]After each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Dr. Fields, The Athletic Doc®, post race\" title=\"Dr. Fields, The Athletic Doc®, post race\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-2016-275.jpg\" style=\"width: 204px;\"><br>\r\nDr. Fields,<span style=\"color: #000000;\"><strong> The Athletic Doc<span style=\"font-size: 10px;\"><sup>®</sup></span>, </strong></span>post race\r\n<a href=\"https://goo.gl/photos/iYRMcML2UYWmW2pQ6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Switzerland<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2019-06-17 08:59:01','2019-06-17 08:59:01','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(2062,8,'2019-06-17 09:00:19','2019-06-17 09:00:19','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\n[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]After each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Dr. Fields, The Athletic Doc®, post race\" title=\"Dr. Fields, The Athletic Doc®, post race\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-2016-275.jpg\" style=\"width: 204px;\"><br>\r\n<strong> Dr. Fields,The Athletic Doc<span style=\"font-size: 10px;\"><sup>®</sup></span>, post race</strong>\r\n<a href=\"https://goo.gl/photos/iYRMcML2UYWmW2pQ6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Switzerland<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2019-06-17 09:00:19','2019-06-17 09:00:19','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(2063,8,'2019-06-17 09:03:19','2019-06-17 09:03:19','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\r\n\r\n<h6 class=\"text-center\">Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong><span>GETTING THERE</span></strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n\r\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n\r\n\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /><strong>Swim Start with his parents initials on his forearms</strong>[/caption]<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\nThe swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n<div class=\"clear\"></div>\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> <strong>Dr. Fields during the 26.2 mile run</strong>[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" class=\"size-full wp-image-332\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\r\n\r\n<div class=\"clear\"></div>\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"post race pic\" title=\"post race pic\" src=\"/portals/0/Images/Ironman%20Cozumel%202016/Cozumel-2016-Finisher-275.jpg\"><br>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong> <br>\r\nThe Athletic Doc<span style=\"font-size: 10px;\"><sup>®</sup></span>, </strong></span>post race pic\r\n<a href=\"https://goo.gl/photos/WqU8aVsvXa5SgLLo6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Cozumel<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2019-06-17 09:03:19','2019-06-17 09:03:19','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(2064,8,'2019-06-17 09:03:39','2019-06-17 09:03:39','Cozumel 2016 Finisher 275','Cozumel 2016 Finisher 275','Cozumel 2016 Finisher 275','inherit','open','closed','','cozumel-2016-finisher-275','','','2019-06-17 09:03:39','2019-06-17 09:03:39','',306,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finisher-275.jpg',0,'attachment','image/jpeg',0),(2065,8,'2019-06-17 09:03:58','2019-06-17 09:03:58','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\r\n\r\n<h6 class=\"text-center\">Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong><span>GETTING THERE</span></strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n\r\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n\r\n\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /><strong>Swim Start with his parents initials on his forearms</strong>[/caption]<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\nThe swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n<div class=\"clear\"></div>\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> <strong>Dr. Fields during the 26.2 mile run</strong>[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" class=\"size-full wp-image-332\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\r\n\r\n<div class=\"clear\"></div>\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"post race pic\" title=\"post race pic\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finisher-275.jpg\"><br>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong> <br>\r\nThe Athletic Doc<span style=\"font-size: 10px;\"><sup>®</sup></span>, </strong></span>post race pic\r\n<a href=\"https://goo.gl/photos/WqU8aVsvXa5SgLLo6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Cozumel<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2019-06-17 09:03:58','2019-06-17 09:03:58','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(2066,8,'2019-06-17 09:08:09','2019-06-17 09:08:09','Ironman Santa Rosa Finisher 2','Ironman Santa Rosa Finisher 2','Ironman Santa Rosa Finisher 2','inherit','open','closed','','ironman-santa-rosa-finisher-2','','','2019-06-17 09:08:09','2019-06-17 09:08:09','',348,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finisher-2.jpg',0,'attachment','image/jpeg',0),(2067,8,'2019-06-17 09:08:26','2019-06-17 09:08:26','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-santa-rosa-logo-blue.jpg\" alt=\"Ironman Santa Rosa Logo Blue\" width=\"230\" height=\"120\" class=\"aligncenter size-full wp-image-349\" />\r\n\r\n<h6 class=\"text-center\">Saturday July 29, 2017\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<p class=\"text-center\">\"Always keep moving forward in life\"\r\nYvette and Fred Fields</p>\r\n\r\nHere is my report on my 9th Ironman Triathlon.\r\n\r\n[caption id=\"attachment_355\" align=\"alignleft\" width=\"275\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg\" alt=\"Ironman Santa Rosa Snoopy\" width=\"275\" height=\"240\" class=\"size-full wp-image-355\" /><strong>Dr. Fields and Snoopy</strong>[/caption]<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\nThis one was a lot easier to get to than the others as it was my first Ironman in the US. Since it was in northern California, it was only a one hour and 20 minute flight up to Santa Rosa.  At the airport, I was greeted by Snoopy and Charlie Brown, as Santa Rosa is the home of Charles Schulz, the creator of Peanuts.  They both offered me encouragement on my race! Then it was driving into town, getting settled in and picking up my registration packet.  The next two days was spent checking out the course and trying to relax.\r\n\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">RACE DAY MORNING</strong>\r\n\r\nThis race was a bit different than other races. The lake where we swam in, Lake Sonoma, is 40 miles from downtown. This is very unusual when it is usually right at the start or within a few miles of the transition area.  So we had to report for buses leaving at 4 a.m. from the downtown area. This necessitated waking up around 2:30 so that I could have a proper breakfast. Then I had to drive down to the downtown area, park the car and walk over to where the buses were.  Fortunately my bike and other gear was already at the lake.  All I had with me was my nutrition and swimming gear. After that it was a one hour bus ride up to the lake, getting settled in by checking my bike, pumping the tires, filling the water bottles and loading the nutrition on the bike.  Then it was time to head down to the lake front. The day before, the water had been very warm, but the morning of the race they determined that it was still wetsuit legal (below 76 degrees). Since everyone else was wearing a I decided to wear one even though I get very warm in it.\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_354\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg\" alt=\"Ironman Santa Rosa Swim\" width=\"160\" height=\"240\" class=\"size-full wp-image-354\" /><strong>Swim Finish with his parents initials on his forearms</strong>[/caption]As we lined up to start to get in the water there were a few people without wetsuits. At that point, I thought maybe I should not have worn my wetsuit. Swimming is my best sport and the wetsuit does get restrictive in my arm swing, but I decided to keep it on anyway. As I entered the water I realized that the water was very warm. Since it was crowded, I stayed towards the outside of the swimmers because the fast swimmer group I was in can get very aggressive. Halfway through the first loop I realized I was getting too warm and I really didn\'t need the wetsuit. I made the unusual decision that when we ended the first lap I would take off the wetsuit. This first lap ended where you ran out on to the landing and back into the water. Usually this is at least 20, 30 or even 40 yards, but this time it was just a short little loop in and out of the water. As I came up onto the ramp I grabbed the leash that is attached to my zipper and pulled it down. Two race officials saw me doing this and asked I wanted help getting it off. This was a blessing. So I flopped down on the ground and they quickly pulled off the legs of my wetsuit (the hardest part to get off). Then I was back in the water. I lost a little time doing this but it was well worth it. The second lap went a lot better as I was not overheating. When you finished the swim there is a quarter-mile very steep hill that you must go up to get to your bicycle. They told people you cannot leave shoes or other foot gear down at the bottom. So most of us did not. But some people left shoes halfway up the hill. This was a violation of the rules but no one said anything. They did have some artificial grass type material down so that the road up was not too tough. But the hill is quite steep and many people, including myself, walked or fast walked most of the way so as not to exhaust ourselves for the bike ride. Quickly into the transition area, grab my gear, change in the tent and got onto my bike to begin the 112 mile ride.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_353\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg\" alt=\"Ironman Santa Rosa Bike 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-353\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]The bike had four thousand feet of climbing. I prepared for this so overall it was not too bad. It did start out with a small climb as we left the lake area. Then through some areas around wineries. Lots of wineries; at least 30 or more. It was not as scenic as other Ironman I have done because we did ride along a highway several times but pleasant when going by wineries.\r\n\r\nUnfortunately, the roads were not in great shape. There are a lot of uneven areas as well as small little potholes. This was even more difficult as it was extremely sunny. When you would go through an area that was shaded you could not see the road since you were wearing dark sunglasses. This made for an uncomfortable ride. Right before we got to town, at about the 65-mile mark, I got a flat. I did not notice it at first but as my speed dropped and I was pushing even harder, I had to get off the bike and check. Sure enough, the tire was flat. And it was the back tire, which takes more to change. But to my surprise, as I dismounted, one of the repair vehicles that circles the bike course (there were three or four of them) pulled up right behind me. What luck! The mechanic grabbed his pump and had my tire changed, pumped up and ready to go in less than two minutes. Faster I could have ever have done it. And without greasy hands too!\r\n\r\nSo back on the bike, I finally got to town where we than had to ride two 17-mile loops. This was invigorating as the crowd was there. Unfortunately, on these loops, the road got even worse. They were areas that were so bumpy one of the following riders said he thought he lost a crown. We all laughed. Although they predicted it to be in the 90s, it only went to about 86 or 87 degrees. But it was very sunny with no wind and with minimal shade, so it did get warm. All in all, I had a good bike ride.\r\n\r\nSo, as we entered town on the last loop, the crowds were cheering. The race had bike handlers as one gets off your bike, which are people who take your bike and rack it for you. Unfortunately, the race being slightly disorganized, they racked the bikes right there and then had the change tents after that. That meant you had to run about 50 yards alongside the bike rack areas in your bike shoes. Most places have it the other way around. But either way, it is always nice to get off the bike after 112 miles. Then it was into T2 tent and change into running shoes, visor, down some nutrition and out for the 26.2 mile marathon run.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_352\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg\" alt=\"Ironman Santa Rosa Run 2\" width=\"160\" height=\"288\" class=\"size-full wp-image-352\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]As we left the change tent, there were lots of people yelling and screaming encouragement. This was a good thing. It was now very sunny and very warm outside. Most of the run was done along a dry riverbed. There were some crowds at the beginning but not many after that. There was some shade but not everywhere, so the sun took its toll. There were several times you had to go over a little bridge, cross over the river bed and then come back, so the run was entirely flat. During the run, I had some difficulties with my foot which had been a common occurrence for me lately. Fortunately, I could adjust my running gait and keep going. The first 8.8 miles (the first loop) was pretty good. On the second one the foot pain got stronger and I had to walk/run quite a bit. But, as always, I just kept moving forward. There were a lot of runners out there for support. And of course, I was supporting the others that we’re not doing well. Being with the other athletes gave me tremendous moral support and the will to not give up. The second loop was tough as it took place during the 11th and 13th hours of racing, so keeping ones mind occupied is imperative. Dealing with my foot pain plus the physical and mental exhaustion that one experiences in an Ironman is always a challenge. As I began the third loop, I knew that if I made it to the turnaround at 4.4 miles, I was home free. As I made the final turn to head back towards town I knew that no matter how tough things got I was going to make it.[caption id=\"attachment_351\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-351\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I encouraged those that I passed as well as the ones that were only on their second loop. As I exited the riverbed area up onto the streets, I thought I only had less than a quarter mile to go, when in fact it was really over half a mile. Just then a guy ran up to me and said, “Hey Peter you\'re doing great”. I did not recognize him but I had my name on my running bib and thought he just saw that. He ran alongside of me and told me that his girlfriend was not far behind. He told me her name and that did not ring a bell either. It really didn’t matter as he was encouraging me, which was needed at that tme. He finally turned around to go back to meet her. As I ran off, the energy that he had given me would carry me the rest of the way. As I came down the final stretch I knew I was going to finish my 9th Ironman Triathlon. It was tough but Ironman are never easy. The exhilaration and enthusiasm of the crowd, and hearing the announcer say, ” Peter Fields, you are an Ironman!”, never gets old. Never.\r\n\r\nAs I came through the shoot and they took my pictures, I looked over and there was the young guy who I had seen as I exited the riverbed.  As I approached him, I recognized him as the son of one of my best friends.  We both laughed and embraced and I told him how appreciative I was for his encouragement.\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">POST SCRIPT</strong>\r\n\r\nThese races are not only a physical challenge but also a mental challenge. With the difficulties with the wetsuit, the warm water, the uneven roads, the heat, the flat tire and my foot problems on the run, this was not an easy race. But again, I persevered.\r\n\r\nI always keep a remembrance of my parents with me at all times in my race jersey pocket. When things would get bad, I would reach back and touch it and say thanks mom and dad for being with me. This kept me going through any difficulties I was having at the time. With all their struggles in their lives (fleeing near certain death in fascist Germany, emigrating with almost nothing, meeting each other in the US and building a new life and more), they just kept moving forward and never looked back. They taught me over and over again, that no matter how tough things get in life just keep putting one foot in front of the other and keep going. They supported me no matter what I did as long as I had my heart and mind in it. On this day, and every day of my life, I knew they are with me all the way.\r\n\r\nAs I said after they passed “You are not dead, dead or only those that one forgets”. I will never forget them as they never forgot me. This, and all of my races, are dedicated in their honor. I therefore start each race with their initials marked on my forearms.\r\n\r\nI want to thank you for taking the time to read this and for supporting me, whether on line, thinking about me or reading this.\r\n\r\n\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 9X Ironman Triathlete</strong>\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n	<a class=\"youtube\" href=\"https://www.youtube.com/watch?v=ds0_hCW9WA4\"><img alt=\"Ironman Santa Rosa Finisher\" title=\"Ironman Santa Rosa Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finisher-2.jpg\"></a>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong> <br>\r\nThe Athletic Doc<sup>®</sup>,<br>\r\n</strong></span>Post race pic<br>\r\n<br>\r\n<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em></p>\r\n<a href=\"https://photos.google.com/share/AF1QipOZKCkaR9a0fl-OfBkXj-Z46M__ixhQOKqFQiAB_sf0rQDWmGsv_NdpwYlUbChPfw?key=MWNqUHJtR0hwSmdyVVFxQ2t1WmY3ZkVTYlNFZ2FB\" target=\"_blank\" rel=\"noopener noreferrer\">2017 Santa Rosa<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n</div>','Race Report 9th Ironman','','inherit','closed','closed','','348-revision-v1','','','2019-06-17 09:08:26','2019-06-17 09:08:26','',348,'https://www.drfields.com/uncategorized/348-revision-v1/',0,'revision','',0),(2068,8,'2019-06-17 09:14:08','2019-06-17 09:14:08','Post Finish 400b','Post Finish 400b','Post Finish 400b','inherit','open','closed','','post-finish-400b','','','2019-06-17 09:14:08','2019-06-17 09:14:08','',361,'https://www.drfields.com/wp-content/uploads/2019/06/post-finish-400b.jpg',0,'attachment','image/jpeg',0),(2069,8,'2019-06-17 09:15:10','2019-06-17 09:15:10','</div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" class=\"aligncenter size-full wp-image-362\" />\r\n\r\n<h6 class=\"text-center\">Saturday, September 29, 2018\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<p class=\"text-center\">\"Never lose sight of your goals\"\r\nYvette and Fred Fields</p>\r\n\r\n<strong>Here’s the story of my 10th Ironman:</strong>\r\n\r\nIronman Maryland it was to be.\r\nI originally scheduled this to take place at Ironman Hamburg, Germany, June 30, 2018.\r\nHamburg is special for me as I lived there for 9 months many years ago.\r\nAnd both my parents were born in Germany.\r\nUnfortunately, it was not meant to be.\r\n\r\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake. The swim is my best part of the race and helps set me for the rest of the race. Also, in Europe when they cancel the swim they make you run first (not in the states where one just bikes and runs). No one practices running to biking. We practice swimming to biking and biking to running. So, after the 6K (4mile) mile starting run, I entered the transition area to get on the bike. But instead of being at the front of the crowd (as wold be if we had swum first), I was towards the back as I am not a fast runner. But either way I went off to do the 112-mile bike.\r\n\r\nThe first half of the bike (56 miles) went well. I felt strong and confident.\r\nAs I started the second loop (it was a double loop), I felt stomach pains.\r\nI had cramps and felt nauseous. My nutrition intake (I use only liquids) started to drop as my stomach could not take it. I usually take something in every 20 minutes. Then it was 30 minute, 40 minutes and more. This is not good as one must take in what you need and more on the bike so as not to run short during the marathon. The second half of my bike took an hour longer than the first half. This is very significant.\r\n\r\nWhen I transitioned to the run (T2), it took me quite a while to leave the transition area.\r\nAfter about five miles (I walked the last three miles due to lack of nutrition intake), I knew I was done.\r\nNo food, no water = no energy.\r\nInstead of attempting to go the whole way (which would have been impossible without bonking or\r\nworse passing out later), I decided to turn around and go back.\r\nSo, for my first time in over 60 triathlons, I did not finish.\r\nIt is hard to train but even harder to decide not to go on.\r\nBut for my overall health and safety, I knew that I had made the best choice.\r\n\r\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special Lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was Ironman Maryland at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate work outs.\r\n\r\n<strong class=\"subhead\">Getting There:</strong>\r\n\r\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross country flight to Philadelphia and a short flight to a small airport near Cambridge. Got to the hotel and checked in, looked over the course and got ready for race day which comes fast.The swim took place in a river that fed from the ocean. The day of the race the weather was very good. This race had lots of rain in the past but this day the weather was good\r\n\r\n<strong class=\"subhead\">The Swim 2.4 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-363\" />This race is notorious for rainy weather but race day was clear and without clouds. The swim takes place in a river that is fed from the ocean.  My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\r\n\r\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">The Bike 112 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"300\" height=\"250\" class=\"alignright size-full wp-image-364\" />There was some wind on the bike which picked up after 40 miles but somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours when my normal time for 56 miles is 3:10 or more\r\nI kept pushing ahead without exerting myself too much to save myself for the run.\r\nAnd I did not have any stomach problems!\r\n\r\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\r\n\r\n<strong class=\"subhead\">The run 26.2 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-365\" />As I exited the transition area to start my marathon run I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\r\n\r\nThis turned out to be my Achilles heel for this race.\r\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\r\n\r\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way after what had happened in Hamburg I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much. One of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely.\r\nThis helped a lot and kept me going without getting cold\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"300\" height=\"338\" class=\"alignright size-full wp-image-366\" />So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. There is a saying that in an Ironman that the run is 90% mental and the rest is in your head! Hahaha.\r\n\r\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\r\n\r\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\r\n</em>\r\n\r\nAll my aches and pains just faded away.\r\n\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">Postscript:</strong>\r\n\r\nAs with every race my parents’ spirit was with me the whole way. What they went through to survive fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\r\n\r\nA very dear friend of mine is going through a severe illness right now.I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\r\n\r\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\r\nfinishing my 10th Ironman.\r\nAnd of course, everyone who took the time to read this.\r\n\r\n<strong>Peter A. Fields, MD, DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n	<a class=\"youtube\" href=\"https://www.youtube.com/watch?v=qTJCmEnrqYg\"><img alt=\"Ironman Maryland 2018 Finisher\" title=\"Ironman Maryland 2018 Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/post-finish-400b.jpg\" style=\"width: 250px; height: 276px; vertical-align: middle; margin: 5px;\"></a>\r\n<img alt=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/post-finish-400b.jpg\" style=\"width: 250px; height: 276px; vertical-align: middle; margin: 5px;\" />\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong> <br>The Athletic Doc<sup>®</sup>,<br></strong></span>Post race pic<br>\r\n<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em></p>\r\n<a href=\"https://photos.google.com/share/AF1QipN-HsVLxHi_BQ_2nP6zLXP6J8ZTFSNJ6IOp8OWMOlpDKkKhr2mo1qrbf6IRAb3iPg?key=cnNlNUFmU0VxUEZuR0lhTmVOOXp3dDB2czNkMTNB\" target=\"_blank\" rel=\"noopener noreferrer\">2018 Maryland<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n','Race Report 10th Ironman','','inherit','closed','closed','','361-revision-v1','','','2019-06-17 09:15:10','2019-06-17 09:15:10','',361,'https://www.drfields.com/uncategorized/361-revision-v1/',0,'revision','',0),(2070,8,'2019-06-17 09:16:21','2019-06-17 09:16:21','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" class=\"aligncenter size-full wp-image-362\" />\r\n\r\n<h6 class=\"text-center\">Saturday, September 29, 2018\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<p class=\"text-center\">\"Never lose sight of your goals\"\r\nYvette and Fred Fields</p>\r\n\r\n<strong>Here’s the story of my 10th Ironman:</strong>\r\n\r\nIronman Maryland it was to be.\r\nI originally scheduled this to take place at Ironman Hamburg, Germany, June 30, 2018.\r\nHamburg is special for me as I lived there for 9 months many years ago.\r\nAnd both my parents were born in Germany.\r\nUnfortunately, it was not meant to be.\r\n\r\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake. The swim is my best part of the race and helps set me for the rest of the race. Also, in Europe when they cancel the swim they make you run first (not in the states where one just bikes and runs). No one practices running to biking. We practice swimming to biking and biking to running. So, after the 6K (4mile) mile starting run, I entered the transition area to get on the bike. But instead of being at the front of the crowd (as wold be if we had swum first), I was towards the back as I am not a fast runner. But either way I went off to do the 112-mile bike.\r\n\r\nThe first half of the bike (56 miles) went well. I felt strong and confident.\r\nAs I started the second loop (it was a double loop), I felt stomach pains.\r\nI had cramps and felt nauseous. My nutrition intake (I use only liquids) started to drop as my stomach could not take it. I usually take something in every 20 minutes. Then it was 30 minute, 40 minutes and more. This is not good as one must take in what you need and more on the bike so as not to run short during the marathon. The second half of my bike took an hour longer than the first half. This is very significant.\r\n\r\nWhen I transitioned to the run (T2), it took me quite a while to leave the transition area.\r\nAfter about five miles (I walked the last three miles due to lack of nutrition intake), I knew I was done.\r\nNo food, no water = no energy.\r\nInstead of attempting to go the whole way (which would have been impossible without bonking or\r\nworse passing out later), I decided to turn around and go back.\r\nSo, for my first time in over 60 triathlons, I did not finish.\r\nIt is hard to train but even harder to decide not to go on.\r\nBut for my overall health and safety, I knew that I had made the best choice.\r\n\r\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special Lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was Ironman Maryland at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate work outs.\r\n\r\n<strong class=\"subhead\">Getting There:</strong>\r\n\r\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross country flight to Philadelphia and a short flight to a small airport near Cambridge. Got to the hotel and checked in, looked over the course and got ready for race day which comes fast.The swim took place in a river that fed from the ocean. The day of the race the weather was very good. This race had lots of rain in the past but this day the weather was good\r\n\r\n<strong class=\"subhead\">The Swim 2.4 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-363\" />This race is notorious for rainy weather but race day was clear and without clouds. The swim takes place in a river that is fed from the ocean.  My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\r\n\r\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">The Bike 112 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"300\" height=\"250\" class=\"alignright size-full wp-image-364\" />There was some wind on the bike which picked up after 40 miles but somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours when my normal time for 56 miles is 3:10 or more\r\nI kept pushing ahead without exerting myself too much to save myself for the run.\r\nAnd I did not have any stomach problems!\r\n\r\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\r\n\r\n<strong class=\"subhead\">The run 26.2 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-365\" />As I exited the transition area to start my marathon run I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\r\n\r\nThis turned out to be my Achilles heel for this race.\r\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\r\n\r\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way after what had happened in Hamburg I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much. One of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely.\r\nThis helped a lot and kept me going without getting cold\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"300\" height=\"338\" class=\"alignright size-full wp-image-366\" />So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. There is a saying that in an Ironman that the run is 90% mental and the rest is in your head! Hahaha.\r\n\r\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\r\n\r\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\r\n</em>\r\n\r\nAll my aches and pains just faded away.\r\n\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">Postscript:</strong>\r\n\r\nAs with every race my parents’ spirit was with me the whole way. What they went through to survive fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\r\n\r\nA very dear friend of mine is going through a severe illness right now.I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\r\n\r\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\r\nfinishing my 10th Ironman.\r\nAnd of course, everyone who took the time to read this.\r\n\r\n<strong>Peter A. Fields, MD, DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n	<a class=\"youtube\" href=\"https://www.youtube.com/watch?v=qTJCmEnrqYg\"><img alt=\"Ironman Maryland 2018 Finisher\" title=\"Ironman Maryland 2018 Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/post-finish-400b.jpg\" style=\"width: 250px; height: 276px; vertical-align: middle; margin: 5px;\"></a>\r\n<img alt=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/post-finish-400b.jpg\" style=\"width: 250px; height: 276px; vertical-align: middle; margin: 5px;\" />\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong> <br>The Athletic Doc<sup>®</sup>,<br></strong></span>Post race pic<br>\r\n<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em></p>\r\n<a href=\"https://photos.google.com/share/AF1QipN-HsVLxHi_BQ_2nP6zLXP6J8ZTFSNJ6IOp8OWMOlpDKkKhr2mo1qrbf6IRAb3iPg?key=cnNlNUFmU0VxUEZuR0lhTmVOOXp3dDB2czNkMTNB\" target=\"_blank\" rel=\"noopener noreferrer\">2018 Maryland<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n','Race Report 10th Ironman','','inherit','closed','closed','','361-revision-v1','','','2019-06-17 09:16:21','2019-06-17 09:16:21','',361,'https://www.drfields.com/uncategorized/361-revision-v1/',0,'revision','',0),(2071,8,'2019-06-17 09:17:08','2019-06-17 09:17:08','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" class=\"aligncenter size-full wp-image-362\" />\r\n\r\n<h6 class=\"text-center\">Saturday, September 29, 2018\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<p class=\"text-center\">\"Never lose sight of your goals\"\r\nYvette and Fred Fields</p>\r\n\r\n<strong>Here’s the story of my 10th Ironman:</strong>\r\n\r\nIronman Maryland it was to be.\r\nI originally scheduled this to take place at Ironman Hamburg, Germany, June 30, 2018.\r\nHamburg is special for me as I lived there for 9 months many years ago.\r\nAnd both my parents were born in Germany.\r\nUnfortunately, it was not meant to be.\r\n\r\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake. The swim is my best part of the race and helps set me for the rest of the race. Also, in Europe when they cancel the swim they make you run first (not in the states where one just bikes and runs). No one practices running to biking. We practice swimming to biking and biking to running. So, after the 6K (4mile) mile starting run, I entered the transition area to get on the bike. But instead of being at the front of the crowd (as wold be if we had swum first), I was towards the back as I am not a fast runner. But either way I went off to do the 112-mile bike.\r\n\r\nThe first half of the bike (56 miles) went well. I felt strong and confident.\r\nAs I started the second loop (it was a double loop), I felt stomach pains.\r\nI had cramps and felt nauseous. My nutrition intake (I use only liquids) started to drop as my stomach could not take it. I usually take something in every 20 minutes. Then it was 30 minute, 40 minutes and more. This is not good as one must take in what you need and more on the bike so as not to run short during the marathon. The second half of my bike took an hour longer than the first half. This is very significant.\r\n\r\nWhen I transitioned to the run (T2), it took me quite a while to leave the transition area.\r\nAfter about five miles (I walked the last three miles due to lack of nutrition intake), I knew I was done.\r\nNo food, no water = no energy.\r\nInstead of attempting to go the whole way (which would have been impossible without bonking or\r\nworse passing out later), I decided to turn around and go back.\r\nSo, for my first time in over 60 triathlons, I did not finish.\r\nIt is hard to train but even harder to decide not to go on.\r\nBut for my overall health and safety, I knew that I had made the best choice.\r\n\r\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special Lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was Ironman Maryland at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate work outs.\r\n\r\n<strong class=\"subhead\">Getting There:</strong>\r\n\r\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross country flight to Philadelphia and a short flight to a small airport near Cambridge. Got to the hotel and checked in, looked over the course and got ready for race day which comes fast.The swim took place in a river that fed from the ocean. The day of the race the weather was very good. This race had lots of rain in the past but this day the weather was good\r\n\r\n<strong class=\"subhead\">The Swim 2.4 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-363\" />This race is notorious for rainy weather but race day was clear and without clouds. The swim takes place in a river that is fed from the ocean.  My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\r\n\r\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">The Bike 112 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"300\" height=\"250\" class=\"alignright size-full wp-image-364\" />There was some wind on the bike which picked up after 40 miles but somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours when my normal time for 56 miles is 3:10 or more\r\nI kept pushing ahead without exerting myself too much to save myself for the run.\r\nAnd I did not have any stomach problems!\r\n\r\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\r\n\r\n<strong class=\"subhead\">The run 26.2 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-365\" />As I exited the transition area to start my marathon run I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\r\n\r\nThis turned out to be my Achilles heel for this race.\r\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\r\n\r\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way after what had happened in Hamburg I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much. One of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely.\r\nThis helped a lot and kept me going without getting cold\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"300\" height=\"338\" class=\"alignright size-full wp-image-366\" />So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. There is a saying that in an Ironman that the run is 90% mental and the rest is in your head! Hahaha.\r\n\r\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\r\n\r\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\r\n</em>\r\n\r\nAll my aches and pains just faded away.\r\n\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">Postscript:</strong>\r\n\r\nAs with every race my parents’ spirit was with me the whole way. What they went through to survive fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\r\n\r\nA very dear friend of mine is going through a severe illness right now.I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\r\n\r\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\r\nfinishing my 10th Ironman.\r\nAnd of course, everyone who took the time to read this.\r\n\r\n<strong>Peter A. Fields, MD, DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n<a class=\"youtube\" href=\"https://www.youtube.com/watch?v=qTJCmEnrqYg\"><img alt=\"Ironman Maryland 2018 Finisher\" title=\"Ironman Maryland 2018 Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/post-finish-400b.jpg\" style=\"width: 250px; height: 276px; \"></a>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong> <br>The Athletic Doc<sup>®</sup>,<br></strong></span>Post race pic<br>\r\n<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em></p>\r\n<a href=\"https://photos.google.com/share/AF1QipN-HsVLxHi_BQ_2nP6zLXP6J8ZTFSNJ6IOp8OWMOlpDKkKhr2mo1qrbf6IRAb3iPg?key=cnNlNUFmU0VxUEZuR0lhTmVOOXp3dDB2czNkMTNB\" target=\"_blank\" rel=\"noopener noreferrer\">2018 Maryland<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2012-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/2011-Ironman-Cozumel-Finisher\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n','Race Report 10th Ironman','','inherit','closed','closed','','361-revision-v1','','','2019-06-17 09:17:08','2019-06-17 09:17:08','',361,'https://www.drfields.com/uncategorized/361-revision-v1/',0,'revision','',0),(2072,8,'2019-06-17 09:25:40','2019-06-17 09:25:40','<h4>The Athletic Doc<sup>®</h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" class=\"size-full wp-image-374\" /><strong> Pete Jacobs 2012 Ironman\r\nWorld Champion\r\n&amp; Dr. Peter A Fields</strong>[/caption]Dr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became  <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In July of 2017, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4 mile swim, a 112 mile bike and a 26.2 mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5> <strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health </h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5> About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is not only train hard but smart – as if your body depended on it</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"fullwidth color_bar row-full \">\r\n\r\n<div class=\"col-md-12\" id=\"aboutdocgallery\">\r\n<h4>Ironman Photos & Stories</h4>\r\n<ul>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\"><span>2017 Ironman Santa Rose</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\"><span>2016 Ironman Cozumel</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\"><span>2016 Ironman Switzerland</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\"><span>2015 Ironman Cozumel</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\"><span>2015 Ironman Brazil</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\"><span>2014 Ironman Austria</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\"><span>2013 Ironman Canada</span></a></li>\r\n<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\"><span>2012 Ironman Cozumel</span></a></li>\r\n</ul>\r\n</div></div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-06-17 09:25:40','2019-06-17 09:25:40','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(2073,8,'2019-06-17 09:46:03','2019-06-17 09:46:03','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 25, 2012<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p>After finishing this race last year, I was back again to try and beat my time of 2011 time of 14 hrs. 4 mins and 7 sec. And with much pride, I am happy to announce that I did; finishing in 13hrs, 50 mins and 27sec.</p>\r\n\r\n<p>A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused. If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 42 countries.</p>\r\n<p>It was a beautiful day; air temp about 74 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg\" alt=\"Cozumel 2012 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-123\" /><strong class=\"subhead\">THE SWIM</strong></span><br>\r\nThe water was a bit choppy and there was a strong current too. This did not bother me as swimming is my best event. After one last gel, I lined up with the others and then jumped off the pier into the ocean. One has to jump about 7-10 feet off the pier into the water. I positioned myself in a good spot up front and along the shore. The current would be flowing against us for the first 800 meters, so it was best to be close to the shore where the current is less. After treading water for 10 minutes or so, the horn went off. I go pretty fast at first to get away from the crowd. Due to the chop, I altered my stroke a bit to clear this. This brings ones arms slightly closer to the boy and I did develop a bit of an underarm chafe but this was soon forgotten. Once we turned around the first buoy, the current was with us and I let the current work with me for the next mile or so. The water was clear and you could see schools of fish swimming around as well as the scuba lifeguards, positioned on the bottom about 30 feet down. When I got to the final turn, the current was against me again, so I had to work a bit harder. There was no balloon or marker marking the pier so I just followed the crowd and sighted off the lifeguard paddlers and boats. Overall I was about 8 minutes slower than last year (one hour and nine minutes this year) but still felt pretty good. Later I was to learn that most people were 15 to 30 minutes slower than last year. In Ironman races (avg. participants about 2300), there is usually about 10-15 who do not make the 2 hrs. and 20 minute swim cutoff time. This year there was over 240! Very disappointing for them as they take your timing chip away as you exit the water. Some chose to do the race anyway; this was unofficial of course.</p>\r\n<p>As I exited the water, I ran quickly into the change tent (T1). I was determined to cut down my transition time this year – big time. I had opted to wear a Tri Suit under the speed suit (like in the Olympics) I swim in. This meant I did not have to change into separate clothing for the bike and run since the Tri suit is a two piece suit that one can ride and run in.</p>\r\n<p>Once inside, I quickly stripped the speed suit off, put on my helmet and bike shoes and was off to get my bike. You did not have to re-apply sunscreen as they had helpers in the change tent lathering your shoulders and upper arms (the exposed areas) with sunscreen. This was a big help.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-bike.jpg\" alt=\"Cozumel 2012 Bike\" width=\"160\" height=\"196\" class=\"alignleft size-full wp-image-125\" /><strong class=\"subhead\">THE BIKE</strong></span><br>\r\nThe first loop (it is a three lop ride) on the bike went well as there was not a lot of wind when we got to the back of the island. I also had changed my nutrition from last year and did not have the dreaded stomach problems that many triathletes have on the bike. The second loop, the winds really picked up. It was a tough 15-18 mile section with 15-20 mile an hour wind hitting you broad side. I did develop some left foot pain which happened sometimes when I ride over 70 miles. I wear a special bike shoe orthotics that keeps me from having right foot pain after I run and after riding. This had happened last year. So I removed my left orthotic. But shortly thereafter the right foot also bothered me so I removed that orthotic too. This essentially eliminated the pain. At mile 62 there is a special needs station where one leaves anything that they might want. Last year I rested there a bit but this year just grabbed what I needed from my bag and kept going. The third lap the wind got even more brutal and we were all slugging it out on the backside of the island. As I turned to head back into town at the 100 mile maker I went to slip the orthotics back in as it prevents me from having foot pain on the post ride run. The left one had fallen out of my bike jersey pocket but at least I had the right one. All in all I rode 12 minutes faster than last year.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-run.jpg\" alt=\"Cozumel 2012 Run\" width=\"160\" height=\"215\" class=\"alignleft size-full wp-image-127\" /><strong class=\"subhead\">THE RUN</strong></span><br>\r\nBack into town, I got off the bike at the bike to run transition area (T2). I quickly changed; again much quicker than last year and headed off to run the marathon. My legs were a bit heavy but somehow I was running well. This was especially good since I had a hamstring problem earlier in the year and had been running a lot in deep water instead of the land for my training. The heaviness quickly went away within the first mile and all was going good. I had only slight right hamstring discomfort and no real pain.</p>\r\n<p>We do approximately 4. 4 miles out and back for an 8.8 mile loop (three times). On the way back to town on the first loop, the foot pain (left and right) started to appear. I did take a Celebrex at 4am and another one on the third loop of the bike. When I got to town after 8.8 miles, I asked my good friend Angela (she was my aid throughout the race- and a great one at that) to go find ibuprofen (it works on a different pathway than Celebrex). When I got to the second turn around to head back to town (13.1 miles) my hamstring kicked in - big time. It was painful to run but I kept going. I changed my gait (made it an even shorter stride). There were plenty of people walking by then but I just dealt with it. I know there was medic tent at about 15 miles. I pulled in and asked for ice. They ace wrapped my upper thigh with lots of ice. This seemed to reduce the pain but I still was running slightly slower (the first 13.1miles had me on a 5+ hr. marathon pace - much better than the 5:35 of last year). As I entered town, Angela was there and handed me the ibuprofen. I took it and within minutes I was feeling quite good. Prior to this I had calculated my time and distance and knew that I could break 14 hrs. – and maybe by 30 minutes. The hamstring pain started to return about 19 miles. I got the leg wrapped with more ice again on the way out to the 4.8 final turn around. Before the last turn around I was forced to walk and run. This is something that I had never done before (walk that is), but the pain was pretty high. At the last three mile marker I got even more ice for my hamstring and decided to walk more than run. Soon thereafter I could not continue a run/walk pace due to pain but figured if I walked fast (walking was painful but not severe) I would break 14 hrs. So at that point I walked a 14-15 mile pace (off my Garmin wrist computer), which is still pretty fast. There were plenty of walkers and I was passing them. I had to save whatever run I had left in me for last few hundred meters up to the finish (no way was I going to walk that!). This is right in the middle of the park and all lite up with hundreds (if not more) of people yelling and screaming. So as I got close, I began to run (pain is temporary; finishing is forever!) the last hundred meters to the finish line where I heard the announcer say, once again, \"<strong class=\"subhead\"><span style=\"text-decoration: underline;\">Peter Fields, you are an Ironman!</span></strong>\"</p>\r\n\r\n<p>My time was13:50, not the 13:30 I might have had without the hamstring issue. <br>\r\nBut I did end up breaking the 14 hr. barrier (last year\'s time of 14:04), which I had set out to do. Mission accomplished. <br>\r\nAs I always say, age is mind over matter; if you don\'t mind- it does not matter!</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" alt=\"Cozumel 2012 Finish2\" width=\"150\" height=\"268\" class=\"alignleft size-full wp-image-128\" /><strong class=\"subhead\">THE FINISH</strong></span><br>\r\nImmediately after crossing the finish line, after getting a big hug from Angela. I then went into the medical tent and to get a one liter IV bag of fluid (as a former ER doc I know what to say to get it done without waiting). Everyone is dehydrated to some point and this was much needed. Then off to get a post-race massage and some food. Unfortunately, caffeine gels kept me going during the last part of the run and my stomach did not really want any food. But it was nice just to sit down. Then cheered on the last finishers who are those are trying to make the 17 hr. cut-off at midnight. After collecting my gear and bike, I finally headed back to the hotel and got to bed at 2am. Not much success with that after being very jacked up all day, so the next day was to a big recovery and sleep day.</p>\r\n<p>Thank you for allowing me to share this with you and for taking the\r\n\r\ntime to read it. I want to thank everyone that offered me support and\r\nwishes. I am very grateful to each and every one of you.</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n<p class=\"text-center\"><strong class=\"subhead\">Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n</div>\r\n\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish.jpg\" alt=\"2012 Cozumel\" title=\"2012 Cozumel\" style=\"padding-left: 5px;\" width=\"160\" height=\"215\">\r\n<a href=\"https://photos.app.goo.gl/QCF7CgcEG8uOfLBs1\" target=\"_blank\" rel=\"noopener noreferrer\">2012 Cozumel<br>\r\nClick For More Photos</a><br>\r\nClick below for Pictures &amp; Story\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n</div>\r\n\r\n','Race Report 2nd Ironman','','inherit','closed','closed','','120-revision-v1','','','2019-06-17 09:46:03','2019-06-17 09:46:03','',120,'https://www.drfields.com/uncategorized/120-revision-v1/',0,'revision','',0),(2074,8,'2019-06-17 09:49:19','2019-06-17 09:49:19','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><strong >On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p>&nbsp; </p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong class=\"subhead\">THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n\r\n<p>&nbsp; </p>\r\n<p>&nbsp; </p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong class=\"subhead\">THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong class=\"subhead\">THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong class=\"subhead\">THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n\r\n<div class=\"clear\"></div>\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish-2.jpg\" alt=\"2011 Cozumel\" title=\"2011 Cozumel\" width=\"160\" height=\"215\">\r\n<a href=\"https://photos.app.goo.gl/iYK2GiU2Wy4E6XNY2\" target=\"_blank\" rel=\"noopener noreferrer\">2011 Cozumel<br>\r\nClick For More Photos</a><br>\r\n<br>\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n</div>\r\n\r\n','Race Report 1st Ironman','','inherit','closed','closed','','92-revision-v1','','','2019-06-17 09:49:19','2019-06-17 09:49:19','',92,'https://www.drfields.com/uncategorized/92-revision-v1/',0,'revision','',0),(2075,8,'2019-06-17 09:49:32','2019-06-17 09:49:32','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<h6 class=\"text-center\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\nMy time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.\r\n\r\nSaturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.\r\n\r\n\r\n<strong class=\"subhead\">RACE DAY</strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.\r\nOn my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n\r\n<strong class=\"subhead\">THE SWIM</strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<strong class=\"subhead\">THE BIKE</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a180 degree turn again (like at the beginning) so we hat to really slow down But this was good thing as the street leading to this turn was lined with thousands of spectators cheering us on.  Occasionally at this point and other ones where there was an announcer I would hear \"and here is Peter from the United States\".  Always nice to hear to keep one going. My usual time is about 3hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins. I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs is where one can leave a bag that morning of anything they may want or need at that point. It is at the halfway point of the bike and another one at the halfway point of the run.  I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.  When I tossed the bottle away, it rolled to the feet of the small boy about 6 or 7 years old. His mom looked at him.  He just looked at it. I told him, in German, here\'s a present for you.  Take it home and clean it! It is yours. He just smiled at me as he reached for it.\r\nThen 8 miles into the second loop miles drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down.\r\nAll in all, it went well on the second loop.  The crowds were less due to the rain but there were, still crowds out there. At about mile 80 my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. \r\nMy second loop time was a bit slower due to the rain.\r\n It was 3 hours in 25 minutes. All in all I felt strong for the run. This was a good thing.\r\nIn town near T2, the crowds were there cheering loudly.\r\n\r\nGot off my bike in and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles.  Got my running shoes on and started off to run a marathon.\r\n\r\nPS several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n\r\n\r\n<p><strong class=\"subhead\">THE RUN</strong></p>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" class=\"alignleft size-full wp-image-174\" />When one leaves transition area two (T2) in an Ironman, you cannot think marathon. You just say are running from here to there and play this mental games with yourself the whole way. It was warm and sunny and about 75 degrees but not too hot. Plus there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So therefore I would pass the finish line 4 times. In this area were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the end the first turn around about 4.5 miles out. I had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake the beginning of each loop, so although brief, it was a nice view. After only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races).  I trained part of the time in the water for my run (deep water running).  This was very helpful as it took the stress of these two areas.  At this point everything was good and I had no pain.  As we passed through the finish line area (middle of the figure eight), we headed out again along a canal. Then we ran under a small foot bridge and onto a small (in width) cobblestone street lined with houses. We ran along this for about 3/4 of a mile then into the town square. People were sitting in cafes and cheering us on. Lots and lots of people. It was about 6 or 7 o\'clock at night and since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and run back to the starting area. I got back to starting point again and got my special needs bag - some extra nutrition. On the second loop my stomach started to feel little funny.  This is something that is very common with Ironman triathletes. Mine only lasted about again 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration or other things. I felt fairly lucky.  I would cheer these fellow athlete on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\nI just kept telling myself to keep going.  One foot after another...just keep going... Part of the way it was shady so that helped a lot too. The sun stays up until 9 o’clock so it never went down while I was running. Mile 18, I got a second wind. Felt very upbeat and in a good place so I was able to pick up pace.\r\nAt that point I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that you normally he runs a lot faster but not today. He told me to try to stay with him and we could talk so the time with go faster. So for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains one has after racing for over 13 hours. There was a small archway as one entered into the city square. There was a small bell on a string that it was hanging from. If you rung the bell (by tapping it with your hand) they would donate money to charity, so I rang it every time I passed it. At the final turn around, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run. The guy I was running with and I just kept talking. He was from Prague where I was going after the race so we were going to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As one comes with closer to the finish line, the noise level is incredible with cheering, cowbells and more. I then heard the announcer say:\r\n<strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling one has when you hear that never gets old.\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\nAnd at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes\r\nMy friend I met on the run the finished right behind me. I then met his wife and three kids.\r\nAfter a few minutes of walking around it was off to the massage tent and get some food.\r\n\r\nPS I finished around 8:30 pm. At 9 pm the sky opened up and it rained hard for about an hour.\r\n I was very fortunate not to go through that.\r\n\r\nI want to make everybody who took the time and effort to watch the update that were on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.\r\nCollectively, I want to thank massage therapist, my acupuncturist and my chiropractor. You all helped get me through.  And wonderful office staff who always took a great interest in what I was doing and put up with my long workouts that made me late sometimes.\r\n\r\nThere a few individuals that need to be singled out individually.\r\n I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.\r\n\r\nAnd then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race. \r\n\r\nI want to thank my very special friend Angela Past.  Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did).  She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time.  Wow!  Thank you so much for your emotional support when I needed it the most.\r\n\r\nAnd last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day.  My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day.  She has never lost faith in me and my abilities... Thank you mom!\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc®&nbsp;and 4X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n\r\n<img alt=\"Race Report 4th Ironman\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" style=\"text-align: center;\" width=\"204\" height=\"370\">\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-17 09:49:32','2019-06-17 09:49:32','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(2076,8,'2019-06-17 09:49:43','2019-06-17 09:49:43','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><em>Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></em></p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong class=\"subhead\">Pre Race</strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong class=\"subhead\">The Swim</strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong class=\"subhead\">The Bike</strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong class=\"subhead\">The Run</strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong class=\"subhead\">The Finish</strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n\r\n<p><strong class=\"subhead\">Final Thoughts:</strong><br>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\r\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\r\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\r\n\r\n<p><strong class=\"subhead\">Dedication:</strong><br>\r\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\r\n\r\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \r\nYour thoughts and well wishes helped me through my third Ironman.\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Canada\" title=\"2013 Canada\" style=\"padding-left: 5px;\" width=\"160\" height=\"215\">\r\n<div style=\"text-align: center;\"><a href=\"https://photos.app.goo.gl/gaPdmofhlbBcBfFx2\" target=\"_blank\" rel=\"noopener noreferrer\">2013 Canada<br>\r\nClick For More Photos</a><br>\r\n<br>\r\n</div>\r\n<p style=\"text-align: center;\">\r\nClick below for Pictures &amp; Story</p>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n</div>\r\n</div>\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-17 09:49:43','2019-06-17 09:49:43','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(2077,8,'2019-06-17 09:49:55','2019-06-17 09:49:55','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong class=\"subhead\">RACE DAY</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n<div class=\"clear\"></div>\r\n<br>\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n<div class=\"clear\"></div>\r\n\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\r\n\r\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\r\n\"Peter Fields, you are an Ironman”,\r\nI knew it was all worthwhile. \r\n\r\n\r\n<strong class=\"subhead\">FINAL THOUGHTS</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg\" alt=\"Ironman Brazil Finish\" width=\"200\" height=\"200\" class=\"alignright size-thumbnail wp-image-199\" />My race may have been slowed down by the problems I had on the run, but I was never discouraged. As my former coach told me, Ironman races are all about damage control. That thought helped me get through this race. I was very pleased that I did not get the two most common problems that affect athletes in an Ironman: stomach problems and/or mechanical problems on the bike.\r\nI felt exhausted and drained but nevertheless very satisfied to have finished my 5th Ironman. Some may ask why I punish my body? I was not punishing it; just challenging it. When one is prepared, it is not a punishment. Plus an Ironman is as much a mental challenge as a physical one.\r\n\r\nI leave you with a quote by the author Viktor Frankl, MD, holocaust survivor and world famous author from his book Man\'s Search For Meaning, which was my dad\'s favorite:\r\n\"Life can be pulled by goals just as surely as it can be pushed by drives.\"\r\n\r\nThere are too many to name, but I want to thank everybody out there who followed me during this race and offered me encouragement. I’d also like to thank everyone else who has written to me and even just thought about me before, during and/or after the race.\r\n\r\nThis race was dedicated to my mother who I lost last year, to my father who I lost 11 years ago and to my uncle who, at 89yo, survived a very tough time recently being in the hospital for 30 days. All three of them have meant a lot to me during my life and have encouraged me to never give up.\r\n\r\nLastly, a big shout out to my brother Norman. No matter where I have raced, he has always followed me the entire race on the computer. I heard him cheering me on the whole way; he has never forgotten his little brother.\r\nThanks bro!\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc® and 5X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n\r\n<a class=\"youtube\" href=\"https://www.youtube.com/watch?v=I-qqF2d40Tw\"><img alt=\"2015 Ironman Brazil Finish\" title=\"2015 Ironman Brazil Finish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-1.jpg\"></a>\r\n<strong><em>2015 Ironman Brazil Finish</em></strong>\r\n<br>\r\n<em><strong style=\"color: #3dbc5e;\">Click image above to view video</strong></em></p>\r\n\r\n<div class=\"clear\">\r\n<a href=\"https://photos.app.goo.gl/l3vcnRmnAzjUIFjy1\" target=\"_blank\" rel=\"noopener noreferrer\">2015 Cozumel<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-17 09:49:55','2019-06-17 09:49:55','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(2078,8,'2019-06-17 09:50:08','2019-06-17 09:50:08','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">PROLOGUE</strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p>\r\n<strong class=\"subhead\">RACE DAY</strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_248\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]\r\nI ran as quick as I could with my bike shoes on to my bike. You could carry them but then you end up getting gravel on your feet. I took the bike off the rack and ran towards the exit. You\'re not allowed to get on your bike until you leave the transition area. Immediately upon exiting, the transition area, I mounted my bike and took off to start the 112 mile ride.\r\n\r\nI had my power meet on the bike, which in addition to power, would provide me with my heart rate and speed which are essential when riding long distance. The roads were dry and the sun was shining bright and the temperature was in the low eighties. I felt pretty good on the first lap. As you head towards the back of the island the winds pick up. For this approximately 15 mile stretch the winds were about 20 miles an hour blowing on shore. It was tough but not that bad. As you turn towards town to end your first loop the winds were pushing you forward. This was a much needed relief. As you get to town, there were hundreds, if not more, people yelling and cheering. It was very exciting and invigorating. For lap two you again go by some of the hotels and there were people out there cheering.\r\n\r\nAs I got to the back of the island again, the wind picked up and was close to 30 miles an hour. It was getting pretty tough and you just hung in there. Unfortunately this meant that you were down on your triathlon riding bars ( the extended bars you put your forearms on so you can just about lie flat while riding) all the time so as not to let the wind hit you in the chest. It put a tremendous strain on my neck, which I found out later that everybody had the same. You just kept going and going. During this loop, I also stopped at the special needs station at mile 56. This is where you can pick up your nutritional supplies for the second half of the race so you do not need to carry all of them at once. Again as I looped through town the crowds were cheering and it was very nice to get words of encouragement.\r\n\r\nFor the third loop the temperature has risen towards the upper 80\'s and low 90\'s and the winds really were kicking in. Now they were close to 40 miles an hour. It was really brutal. I had ridden this course three times in the past but this time the winds were the strongest . But somehow I kept going and going and managed to endure it. As I made the last turn to head the 9 miles back to town I knew that I had completed this part. Slightly slower than I expected but with the wind it was a slower time for everyone. \r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-run-160.jpg\" alt=\"Cozumel 2015 Run 160\" width=\"160\" height=\"301\" class=\"size-full wp-image-263\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAs I came into town again the crowds were cheering and yelling loudly. I handed off my bike to one of the volunteers there and quickly grabbed my transition bag and ran into the tent. Off with the biking shoes, on with the running shoes, throw some water over myself to help cool me down, put on my running hat, grab some nutrition, go to the bathroom and I was out the door.\r\n\r\nOf course when you transition out of this tent there are thousands of people out there yelling and screaming. The sun was still up so it was still pretty hot with it being in the 90s, But I felt pretty good. For about the first four point 4.4 miles, which is the length of the course (you do this back and forth 3 times) I was a little tight and not so fluid in my running. Along the way of course there are people cheering for about a mile and a half as you get outside of town and then sporadically there were people at hotels who would come out along the road to cheer us on. When I hit the turn around I felt really good and for the next 8.8 miles my legs and body felt really strong. As I got back to town and finished the first 8.8 mile loop the sun was going down which was a blessing because it had been very hot outside.\r\n\r\nThe next 8.8 loop I felt good but the energy was starting to be drained. The bike had taken a tremendous toll, not only on me but on other runners too. But I persevered and kept going. The best thing was my hamstring was not bothering me which had slowed me down during my last two Ironman races. And in May 2015, I had raced Ironman Brazil, where I had a lot of feet problems. None of this came around this time.\r\n\r\nI saw many people out there that I knew from the Los Angeles area or other races. The camaraderie amongst the athletes is tremendous and it\'s something that we all rely on and count on. As I came into town finishing the second loop I knew I only had one more loop to go. I was tired and drained having been racing for almost 12 hrs., but just kept going. Of course along the way I took lots of nutrition and keep myself as hydrated as much as possible. There was no rain this year, which was also nice since the prior previous time I had done this race we were running through knee high puddles.\r\n\r\nAfter leaving town and getting to the final around, I knew only had 4.4 miles left to go and realized that it was in the bag for me. As I came back into town and saw the crowds again, I felt the exhilarating feeling that one can only feel when finishing an Ironman. At this point I only had about a mile to go and knew I have finally done it. That is not only finish my 6th Ironman but my second one in six months . This was a challenge that I set for myself. Like my parents had always told me, set your goals and go for it.\r\nNever say never.\r\n\r\nThe final 100 meters are unbelievable feeling. All ones aches and pains fade away. As I approached the finish line, which is slightly elevated and bathed in lights, I heard the announcer say for the sixth time,\r\n\"Peter Fields, you are an Ironman\".\r\nIt never gets old.\r\nI finally knew that I had completed my conquest of doing two Ironman races in one year.\r\n\r\nOf course the whole way during the race, I never forgot about my parents. I had my mom’s initials written on my left arm and on my right arm I had my dad\'s initials. Both of these people were so special in my life and I have never forgotten them for even one day since each of them passed. Whenever it got tough, I would place my hand on either forearm and feel their presence within me and hear their words of encouragement telling me never to give up. I know they would have been as proud of me as I am of them.\r\n\r\nI want to thank everybody who sent me good wishes, those who kept me in their thoughts and those who followed me on the internet. All your thoughts and wishes kept me strong the whole race.\r\nThere were a few very special people that never stopped thinking about me the whole race. You know who you are and words cannot say thank you enough. \r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc® and 6X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Ironman Cozumel Mexico\" title=\"Ironman Cozumel Mexico\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-1.jpg\" style=\"width: 204px; height: 345px;\">\r\nDr. Fields at the finish line\r\n<a href=\"https://goo.gl/photos/mMnjj9ioLVRkh56Q9\" target=\"_blank\" rel=\"noopener noreferrer\">2015 Cozumel<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-17 09:50:08','2019-06-17 09:50:08','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(2079,8,'2019-06-17 09:51:21','2019-06-17 09:51:21','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\n[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]After each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Dr. Fields, The Athletic Doc®, post race\" title=\"Dr. Fields, The Athletic Doc®, post race\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-2016-275.jpg\" style=\"width: 204px;\"><br>\r\n<strong> Dr. Fields,The Athletic Doc<span style=\"font-size: 10px;\"><sup>®</sup></span>, post race</strong>\r\n<a href=\"https://goo.gl/photos/iYRMcML2UYWmW2pQ6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Switzerland<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2019-06-17 09:51:21','2019-06-17 09:51:21','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(2080,8,'2019-06-17 09:51:34','2019-06-17 09:51:34','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\r\n\r\n<h6 class=\"text-center\">Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong><span>GETTING THERE</span></strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n\r\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n\r\n\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /><strong>Swim Start with his parents initials on his forearms</strong>[/caption]<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\nThe swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n<div class=\"clear\"></div>\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> <strong>Dr. Fields during the 26.2 mile run</strong>[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" class=\"size-full wp-image-332\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\r\n\r\n<div class=\"clear\"></div>\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"post race pic\" title=\"post race pic\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finisher-275.jpg\"><br>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong> <br>\r\nThe Athletic Doc<span style=\"font-size: 10px;\"><sup>®</sup></span>, </strong></span>post race pic\r\n<a href=\"https://goo.gl/photos/WqU8aVsvXa5SgLLo6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Cozumel<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2019-06-17 09:51:34','2019-06-17 09:51:34','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(2081,8,'2019-06-17 09:51:43','2019-06-17 09:51:43','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-santa-rosa-logo-blue.jpg\" alt=\"Ironman Santa Rosa Logo Blue\" width=\"230\" height=\"120\" class=\"aligncenter size-full wp-image-349\" />\r\n\r\n<h6 class=\"text-center\">Saturday July 29, 2017\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<p class=\"text-center\">\"Always keep moving forward in life\"\r\nYvette and Fred Fields</p>\r\n\r\nHere is my report on my 9th Ironman Triathlon.\r\n\r\n[caption id=\"attachment_355\" align=\"alignleft\" width=\"275\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg\" alt=\"Ironman Santa Rosa Snoopy\" width=\"275\" height=\"240\" class=\"size-full wp-image-355\" /><strong>Dr. Fields and Snoopy</strong>[/caption]<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\nThis one was a lot easier to get to than the others as it was my first Ironman in the US. Since it was in northern California, it was only a one hour and 20 minute flight up to Santa Rosa.  At the airport, I was greeted by Snoopy and Charlie Brown, as Santa Rosa is the home of Charles Schulz, the creator of Peanuts.  They both offered me encouragement on my race! Then it was driving into town, getting settled in and picking up my registration packet.  The next two days was spent checking out the course and trying to relax.\r\n\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">RACE DAY MORNING</strong>\r\n\r\nThis race was a bit different than other races. The lake where we swam in, Lake Sonoma, is 40 miles from downtown. This is very unusual when it is usually right at the start or within a few miles of the transition area.  So we had to report for buses leaving at 4 a.m. from the downtown area. This necessitated waking up around 2:30 so that I could have a proper breakfast. Then I had to drive down to the downtown area, park the car and walk over to where the buses were.  Fortunately my bike and other gear was already at the lake.  All I had with me was my nutrition and swimming gear. After that it was a one hour bus ride up to the lake, getting settled in by checking my bike, pumping the tires, filling the water bottles and loading the nutrition on the bike.  Then it was time to head down to the lake front. The day before, the water had been very warm, but the morning of the race they determined that it was still wetsuit legal (below 76 degrees). Since everyone else was wearing a I decided to wear one even though I get very warm in it.\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_354\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg\" alt=\"Ironman Santa Rosa Swim\" width=\"160\" height=\"240\" class=\"size-full wp-image-354\" /><strong>Swim Finish with his parents initials on his forearms</strong>[/caption]As we lined up to start to get in the water there were a few people without wetsuits. At that point, I thought maybe I should not have worn my wetsuit. Swimming is my best sport and the wetsuit does get restrictive in my arm swing, but I decided to keep it on anyway. As I entered the water I realized that the water was very warm. Since it was crowded, I stayed towards the outside of the swimmers because the fast swimmer group I was in can get very aggressive. Halfway through the first loop I realized I was getting too warm and I really didn\'t need the wetsuit. I made the unusual decision that when we ended the first lap I would take off the wetsuit. This first lap ended where you ran out on to the landing and back into the water. Usually this is at least 20, 30 or even 40 yards, but this time it was just a short little loop in and out of the water. As I came up onto the ramp I grabbed the leash that is attached to my zipper and pulled it down. Two race officials saw me doing this and asked I wanted help getting it off. This was a blessing. So I flopped down on the ground and they quickly pulled off the legs of my wetsuit (the hardest part to get off). Then I was back in the water. I lost a little time doing this but it was well worth it. The second lap went a lot better as I was not overheating. When you finished the swim there is a quarter-mile very steep hill that you must go up to get to your bicycle. They told people you cannot leave shoes or other foot gear down at the bottom. So most of us did not. But some people left shoes halfway up the hill. This was a violation of the rules but no one said anything. They did have some artificial grass type material down so that the road up was not too tough. But the hill is quite steep and many people, including myself, walked or fast walked most of the way so as not to exhaust ourselves for the bike ride. Quickly into the transition area, grab my gear, change in the tent and got onto my bike to begin the 112 mile ride.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_353\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg\" alt=\"Ironman Santa Rosa Bike 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-353\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]The bike had four thousand feet of climbing. I prepared for this so overall it was not too bad. It did start out with a small climb as we left the lake area. Then through some areas around wineries. Lots of wineries; at least 30 or more. It was not as scenic as other Ironman I have done because we did ride along a highway several times but pleasant when going by wineries.\r\n\r\nUnfortunately, the roads were not in great shape. There are a lot of uneven areas as well as small little potholes. This was even more difficult as it was extremely sunny. When you would go through an area that was shaded you could not see the road since you were wearing dark sunglasses. This made for an uncomfortable ride. Right before we got to town, at about the 65-mile mark, I got a flat. I did not notice it at first but as my speed dropped and I was pushing even harder, I had to get off the bike and check. Sure enough, the tire was flat. And it was the back tire, which takes more to change. But to my surprise, as I dismounted, one of the repair vehicles that circles the bike course (there were three or four of them) pulled up right behind me. What luck! The mechanic grabbed his pump and had my tire changed, pumped up and ready to go in less than two minutes. Faster I could have ever have done it. And without greasy hands too!\r\n\r\nSo back on the bike, I finally got to town where we than had to ride two 17-mile loops. This was invigorating as the crowd was there. Unfortunately, on these loops, the road got even worse. They were areas that were so bumpy one of the following riders said he thought he lost a crown. We all laughed. Although they predicted it to be in the 90s, it only went to about 86 or 87 degrees. But it was very sunny with no wind and with minimal shade, so it did get warm. All in all, I had a good bike ride.\r\n\r\nSo, as we entered town on the last loop, the crowds were cheering. The race had bike handlers as one gets off your bike, which are people who take your bike and rack it for you. Unfortunately, the race being slightly disorganized, they racked the bikes right there and then had the change tents after that. That meant you had to run about 50 yards alongside the bike rack areas in your bike shoes. Most places have it the other way around. But either way, it is always nice to get off the bike after 112 miles. Then it was into T2 tent and change into running shoes, visor, down some nutrition and out for the 26.2 mile marathon run.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_352\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg\" alt=\"Ironman Santa Rosa Run 2\" width=\"160\" height=\"288\" class=\"size-full wp-image-352\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]As we left the change tent, there were lots of people yelling and screaming encouragement. This was a good thing. It was now very sunny and very warm outside. Most of the run was done along a dry riverbed. There were some crowds at the beginning but not many after that. There was some shade but not everywhere, so the sun took its toll. There were several times you had to go over a little bridge, cross over the river bed and then come back, so the run was entirely flat. During the run, I had some difficulties with my foot which had been a common occurrence for me lately. Fortunately, I could adjust my running gait and keep going. The first 8.8 miles (the first loop) was pretty good. On the second one the foot pain got stronger and I had to walk/run quite a bit. But, as always, I just kept moving forward. There were a lot of runners out there for support. And of course, I was supporting the others that we’re not doing well. Being with the other athletes gave me tremendous moral support and the will to not give up. The second loop was tough as it took place during the 11th and 13th hours of racing, so keeping ones mind occupied is imperative. Dealing with my foot pain plus the physical and mental exhaustion that one experiences in an Ironman is always a challenge. As I began the third loop, I knew that if I made it to the turnaround at 4.4 miles, I was home free. As I made the final turn to head back towards town I knew that no matter how tough things got I was going to make it.[caption id=\"attachment_351\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-351\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I encouraged those that I passed as well as the ones that were only on their second loop. As I exited the riverbed area up onto the streets, I thought I only had less than a quarter mile to go, when in fact it was really over half a mile. Just then a guy ran up to me and said, “Hey Peter you\'re doing great”. I did not recognize him but I had my name on my running bib and thought he just saw that. He ran alongside of me and told me that his girlfriend was not far behind. He told me her name and that did not ring a bell either. It really didn’t matter as he was encouraging me, which was needed at that tme. He finally turned around to go back to meet her. As I ran off, the energy that he had given me would carry me the rest of the way. As I came down the final stretch I knew I was going to finish my 9th Ironman Triathlon. It was tough but Ironman are never easy. The exhilaration and enthusiasm of the crowd, and hearing the announcer say, ” Peter Fields, you are an Ironman!”, never gets old. Never.\r\n\r\nAs I came through the shoot and they took my pictures, I looked over and there was the young guy who I had seen as I exited the riverbed.  As I approached him, I recognized him as the son of one of my best friends.  We both laughed and embraced and I told him how appreciative I was for his encouragement.\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">POST SCRIPT</strong>\r\n\r\nThese races are not only a physical challenge but also a mental challenge. With the difficulties with the wetsuit, the warm water, the uneven roads, the heat, the flat tire and my foot problems on the run, this was not an easy race. But again, I persevered.\r\n\r\nI always keep a remembrance of my parents with me at all times in my race jersey pocket. When things would get bad, I would reach back and touch it and say thanks mom and dad for being with me. This kept me going through any difficulties I was having at the time. With all their struggles in their lives (fleeing near certain death in fascist Germany, emigrating with almost nothing, meeting each other in the US and building a new life and more), they just kept moving forward and never looked back. They taught me over and over again, that no matter how tough things get in life just keep putting one foot in front of the other and keep going. They supported me no matter what I did as long as I had my heart and mind in it. On this day, and every day of my life, I knew they are with me all the way.\r\n\r\nAs I said after they passed “You are not dead, dead or only those that one forgets”. I will never forget them as they never forgot me. This, and all of my races, are dedicated in their honor. I therefore start each race with their initials marked on my forearms.\r\n\r\nI want to thank you for taking the time to read this and for supporting me, whether on line, thinking about me or reading this.\r\n\r\n\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 9X Ironman Triathlete</strong>\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n	<a class=\"youtube\" href=\"https://www.youtube.com/watch?v=ds0_hCW9WA4\"><img alt=\"Ironman Santa Rosa Finisher\" title=\"Ironman Santa Rosa Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finisher-2.jpg\"></a>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong> <br>\r\nThe Athletic Doc<sup>®</sup>,<br>\r\n</strong></span>Post race pic<br>\r\n<br>\r\n<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em></p>\r\n<a href=\"https://photos.google.com/share/AF1QipOZKCkaR9a0fl-OfBkXj-Z46M__ixhQOKqFQiAB_sf0rQDWmGsv_NdpwYlUbChPfw?key=MWNqUHJtR0hwSmdyVVFxQ2t1WmY3ZkVTYlNFZ2FB\" target=\"_blank\" rel=\"noopener noreferrer\">2017 Santa Rosa<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n</div>','Race Report 9th Ironman','','inherit','closed','closed','','348-revision-v1','','','2019-06-17 09:51:43','2019-06-17 09:51:43','',348,'https://www.drfields.com/uncategorized/348-revision-v1/',0,'revision','',0),(2082,8,'2019-06-18 03:20:09','2019-06-18 03:20:09','[caption id=\"attachment_4115\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4115\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee.-avoid-replacement2-400x500.png\" alt=\"Avoid Knee Replacement\" width=\"400\" height=\"500\" /> <em>    Avoid Knee Replacement With Regenerative Orthopedics</em>[/caption]\r\n\r\nKnee pain, like all other types of joint pain, can appear suddenly or become an ongoing, chronic condition. And the most common cause of chronic knee pain and disability is arthritis, which frequently results in knee replacement. In this article, we will discuss ways to avoid knee replacement.\r\n\r\n<a class=\"buttonlink\" href=\"/Testimonials/Cellular-Regeneration-Testimonials/\">Click to See Stem Cell Testimonial Videos</a>\r\n<h3>Knee Pain and Its Common Treatments</h3>\r\nKnee pain can be caused by conditions like bursitis, tendonitis, sports injuries, degenerative joint disease, chondromalacia patellae and meniscal injury. All of these very often lead to the eventual surgical recommendation or intervention.\r\n\r\nBefore surgery, other more conservative therapies are usually attempted to bring relief from the knee pain. NSAIDs (non-steroidal anti-inflammatory drugs like Ibuprofen or Naprosyn) and steroid (cortisone) injections might be included in those initial recommendations.\r\n<h3>Are Steroids and NSAIDs Good Choices to Avoid Knee Replacement?</h3>\r\nSteroid injections and NSAIDs have been shown in studies to be effective in decreasing inflammation and providing pain relief in the short-term. Unfortunately, they have also been shown to change the properties of ligaments and other soft tissue. And those changes end up slowing down the healing process.\r\n\r\nBecause these medications inhibit soft tissue healing, their use is cautioned in those who have ligament and soft tissue injuries. Therefore, they should only be utilized for the shortest period of time, if used at all. Since they inhibit healing, they speed up the chance for joint replacement. So, they really are not a great choice if you are looking to avoid knee replacement.\r\n\r\nInstead, Regenerative Orthopedic techniques, such as Stem Cell Therapy, PRP and Prolotherapy should be sought, because they have been shown to strengthen and resolve ligament injuries, repair meniscal injuries, and rebuild cartilage in the knee.\r\n<h3>The RICE Protocol Is Pretty Common. Is it a Good Way to Avoid Knee Replacement?</h3>\r\nSo what about the RICE (rest, ice, compression and elevation) protocol? Everyone knows about the RICE protocol. And most people are quick to put it into action. It has to be a good choice. Right? Not really!\r\n\r\nAn interesting point is that the RICE protocol has been rescinded by its author due to its detrimental effect on healing. What? Yup! The RICE protocol actually hinders blood supply to the injury. And blood brings the healing factors to an injury. Remember…The river does not flow when it is frozen; and that ‘river’ is your blood.\r\n<h3>What about Hyaluronic Acid Injections? It\'s Natural, Isn\'t It? So That Means It Must Be Good!</h3>\r\nHyaluronic acid injections, such as Synvisc or Hyalgen, are some of the most popular conservative treatments for knee pain. Yes, hyaluronic acid is a substance naturally found in the body that provides cushion and lubrication to the joints. And it can be used as an oral supplement and as an injection that is given directly into the knee joint for the relief of knee pain.\r\n<h4><em>But are there drawbacks to the use of hyaluronic acid?</em></h4>\r\nOne drawback of hyaluronic acid is that if relief is actually experienced with hyaluronic acid injections, it is generally only for a short period of time. Also, studies have shown this treatment actually lacks clinical effectiveness. In fact, a systematic review of 89 studies that included over twelve thousand patients comparing hyaluronic acid injections to a sham treatment or to no intervention at all, found that hyaluronic acid supplementation to the knee produced minimal to non-existent results when it came to pain relief and function in knee arthritis patients.\r\n\r\nThat means thousands of patients in these studies received no relief at all. And if they did find relief, it was not much. Unfortunately, those that do find some pain relief with the use of hyaluronic acid, only experience results for a short period of time. And the treatment frequently becomes only a delay for the inevitable knee replacement, because all it does is lubricate a dysfunctional joint, and does not fix anything. In the end, it may delay the joint replacement, but does not help to avoid knee replacement.\r\n<h3>Are Cortisone Injections Really All That Bad for the Knee Joint?</h3>\r\nSteroids are used to provide anti-inflammatory relief in affected areas of the body. They lessen swelling, redness, itching and allergic reactions. And, in addition to their use for pain, they are also often used as part of the treatment for a number of different diseases, such as severe allergies or skin problems, asthma, or arthritis. In many of these cases, steroids are lifesaving!\r\n\r\nThe discovery that steroids could be injected into joints was received with enthusiasm, and led to widespread use. However, shortly after doctors started injecting cortisone and other steroids into knee joints in the 1950s, reports of terrible arthropathies, or joint diseases, began to surface. There was an obvious indication that all was not well with this treatment choice. Way back then, the researchers discouraged the use of steroids being injected into the joint, due to their side effects and cell death in the bone.\r\n\r\nSteroid injections accelerate cartilage degeneration and joint destruction. Cortisone has a deleterious effect on soft tissue healing by inhibiting blood flow to the injured area, new blood vessel formation, protein synthesis, fibroblast proliferation and ultimately collagen formation.\r\n\r\nCortisone weakens collagen and therefore soft tissue such as ligaments and tendons, which contributes to the development of conditions such as arthritis. And, as we know, this leads to the eventual knee replacement. Today, despite the dangers, cortisone use is widespread and has become the standard of care.\r\n<h3>Surgical Repair</h3>\r\nElimination of knee pain by arthroscopic shaving, cutting, or removal of tissue just delays the pain for a few years until the remaining tissue becomes degenerated. The athlete or any knee pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or steroid injection, the risk of developing long-term arthritis and the eventual knee replacement is greatly increased. The key to keeping the knee strong is to stimulate the area to heal. Remember, once surgery is done, it cannot be undone!\r\n<h3>Other Non-Surgical Treatments</h3>\r\nEven though the goal of many non-surgical treatments such as weight loss, exercise, physiotherapy, bracing, and orthotics, is to decrease pain and improve knee function, they are unable to repair the source of the pain, the ligament or soft tissue injury. Why is it so important to repair the ligaments and other soft tissue? Because the long-term consequence of ligament and soft tissue injuries that are left unhealed is arthritis.\r\n\r\nIs it any wonder the treatments mentioned above, including hyaluronic acid, do not last. And why they are unable to prevent the eventual knee replacement! You see, these treatments are unable to get to the root cause of the problem. The road to arthritis can only be remedied when the problem of ligament injury is addressed. None of the above treatments address this problem. But Regenerative Orthopedics does.\r\n<h3>Regenerative Orthopedics Is An Effective Treatment to Avoid Knee Replacement</h3>\r\nRegenerative Orthopedic therapies such as Stem Cell Therapy, PRP and Prolotherapy stimulate, rather than interfere with, the normal healing process. The treatments stimulate the normal inflammatory-reparative mechanisms of the body, boosting cartilage growth, strengthening the tendons and ligaments, and repairing the meniscus in a knee or the labrum in the hip or shoulder.\r\n\r\nThese regenerative treatments offer hope to those suffering from various types of knee pain and provide an effective, non-surgical option for those trying to avoid knee replacement.\r\n\r\nAs we say at OrthoRegen<sup>®</sup>:\r\nRegenerate First; Surgery Last!','Avoid Knee Replacement with Regenerative Orthopedics','','publish','open','closed','','avoid-knee-replacement-with-regenerative-orthopedics','','','2020-09-11 02:24:20','2020-09-11 02:24:20','',0,'https://www.drfields.com/?p=2082',0,'post','',0),(2083,8,'2019-06-18 03:20:09','2019-06-18 03:20:09','Knee pain, like all other types of joint pain, can appear suddenly or become an ongoing, chronic condition. The most common cause of chronic knee pain and disability is arthritis, which frequently results in knee replacement. Knee pain can also be caused by conditions like bursitis, tendonitis, sports injuries, degenerative joint disease, chondromalacia patellae and meniscal injury, all of which very often lead to the eventual surgical recommendation or intervention.\r\n\r\n<h6>Knee Pain Treatments</h6>\r\nBefore surgery, other more conservative therapies are usually attempted to bring relief from the knee pain. NSAIDs (non-steroidal anti-inflammatory drugs like Ibuprofen or Naprosyn) and steroid (cortisone) injections might be included in those initial recommendations. Are these treatments a good choice? Although steroid injections and NSAIDs have been shown in studies to be effective in decreasing inflammation and providing pain relief in the short-term, they unfortunately have also been shown to change the properties of ligaments and other soft tissue, which ends up slowing down the healing process. Because these medications inhibit soft tissue healing, their use is cautioned in those who have ligament and soft tissue injuries. Therefore, their use in ligament injuries should be used for the shortest period of time, if used at all. Instead, Regenerative Orthopedic techniques, such as Stem Cell Therapy, PRP and Prolotherapy, which have been shown to strengthen and resolve ligament injuries, repair meniscal injuries, and rebuild cartilage in the knee, should be sought.\r\n\r\n<h6>The RICE Protocol</h6>\r\nSo what about the RICE (rest, ice, compression and elevation) protocol? Everyone knows about the RICE protocol, and most people are quick to put it into action. However, an interesting point is that the RICE protocol has been rescinded by its author due to its detrimental effect on healing. Why? Because it hinders blood supply to the injury, and blood brings the healing factors to an injury. Remember…The river does not flow when it is frozen; and that ‘river’ is your blood.\r\n\r\n<h6>What about Hyaluronic Acid Injections?</h6>\r\nHyaluronic acid injections, such as Synvisc or Hyalgen, are some of the most popular conservative treatments for knee pain. Hyaluronic acid is a substance naturally found in the body that provides cushion and lubrication to the joints. It can be used as an oral supplement and as an injection that is given directly into the knee joint for the relief of knee pain. Are there drawbacks to the use of hyaluronic acid? \r\n\r\nIf relief is experienced with hyaluronic acid injections, it is generally only for a short period of time. Studies have shown this treatment to actually lack clinical effectiveness. In fact, a systematic review of 89 studies that included over twelve thousand patients comparing hyaluronic acid injections to a sham treatment or to no intervention at all, found that hyaluronic acid supplementation to the knee produced minimal to non-existent results when it came to pain relief and function in knee arthritis patients. That means thousands of patients in these studies received no relief at all, and if they did find relief, it was not much. Unfortunately, those that do find some pain relief with the use of hyaluronic acid, only experience results for a short period of time, and the treatment frequently becomes only a delay for the inevitable knee replacement, because all it does is lubricate a dysfunctional joint, and does not fix anything.  \r\n\r\n<h6>Other Non-Surgical Treatments</h6>\r\nEven though the goal of many non-surgical treatments such as weight loss, exercise, physiotherapy, bracing, and orthotics, is to decrease pain and improve function, they are unable to repair the source of the pain, the ligament or soft tissue injury. Why is it so important to repair the ligaments and other soft tissue? Because the long-term consequence of ligament and soft tissue injuries that are left unhealed is arthritis. Is it any wonder why the treatments mentioned above including hyaluronic acid do not last, and why they are unable to prevent the eventual knee replacement! You see, these treatments are unable to get to the root cause of the problem. The road to arthritis can only be remedied when the problem of ligament injury is addressed. None of the above treatments address this problem. Regenerative Orthopedics does.\r\n\r\n<h6>Are Cortisone Injections Really All That Bad?</h6>\r\nSteroids are used to provide anti-inflammatory relief in affected areas of the body. They lessen swelling, redness, itching and allergic reactions, and, in addition to their use for pain, are often used as part of the treatment for a number of different diseases, such as severe allergies or skin problems, asthma, or arthritis. In many of these cases, steroids are lifesaving! The discovery that steroids could be injected into joints was received with enthusiasm, and led to widespread use. However, shortly after doctors started injecting cortisone and other steroids into knee joints in the 1950s, reports of terrible arthropathies, or joint diseases, began to surface. There was an obvious indication that all was not well with this treatment choice. Way back then, the researchers discouraged the use of steroids being injected into the joint, due to their side effects and cell death in the bone.\r\n\r\nSteroid injections accelerate cartilage degeneration and joint destruction. Cortisone has a deleterious effect on soft tissue healing by inhibiting blood flow to the injured area, new blood vessel formation, protein synthesis, fibroblast proliferation and ultimately collagen formation. Cortisone weakens collagen and therefore soft tissue such as ligaments and tendons, which contributes to the development of conditions such as arthritis, which as we know, leads to the eventual joint replacement. Today, despite the dangers, cortisone use is widespread and has become the standard of care. \r\n\r\n<h6>Surgical Repair</h6>\r\nElimination of knee pain by arthroscopic shaving, cutting, or removal of tissue just delays the pain for a few years until the remaining tissue becomes degenerated. The athlete or any knee pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or steroid injection, the risk of developing long-term arthritis and the eventual knee replacement is greatly increased. The key to keeping the knee strong is to stimulate the area to heal. Remember, once surgery is done, it cannot be undone!\r\n\r\n<h6>Regenerative Orthopedics</h6>\r\nRegenerative Orthopedic therapies such as Stem Cell Therapy, PRP and Prolotherapy stimulate, rather than interfere with, the normal healing process. The treatments stimulate the normal inflammatory-reparative mechanisms of the body, boosting cartilage growth, strengthening the tendons and ligaments, and repairing the meniscus in a knee or the labrum in the hip or shoulder. These regenerative treatments offer hope to those suffering from various types of knee pain and provide an effective, non-surgical option for those trying to avoid knee replacement.\r\nAs we say at OrthoRegen:\r\nRegenerate First; Surgery Last!\r\n','Avoiding Knee Replacement with Regenerative Orthopedics','','inherit','closed','closed','','2082-revision-v1','','','2019-06-18 03:20:09','2019-06-18 03:20:09','',2082,'https://www.drfields.com/uncategorized/2082-revision-v1/',0,'revision','',0),(2084,8,'2022-09-15 03:55:12','2022-09-15 03:55:12','<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\n<h4>What Are Prolotherapy Treatments?</h4>\nProlotherapy treatments are a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\n\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall. But the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells. And it strengthens lax or torn tendons and ligaments. Ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\n\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\n\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\n<h4>What is Prolotherapy Treatment Like?</h4>\nThe Prolotherapy technique involves the injection of a proliferant that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>.\n\nProlotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\n\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\n\nProlotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more. And it is effective at treating many causes of chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis, and bursitis.\n\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\n\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\n<h4 class=\"text-center\">Video: What is Prolotherapy Treatment?</h4>\n<div style=\"display: table; margin: 0 auto;\">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]</div>\n<a class=\"buttonlink\" href=\"/regenerative-techniques/prolotherapy-videos/\">View More Videos on Prolotherapy</a>\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\nCall 310-453-1234 today for a phone consultation to see if Prolotherapy treatment can get you pain free\n\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-autosave-v1','','','2022-09-15 03:55:12','2022-09-15 03:55:12','',382,'https://www.drfields.com/uncategorized/382-autosave-v1/',0,'revision','',0),(2085,8,'2019-06-18 03:24:22','2019-06-18 03:24:22','\r\n<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<h4 class=\"text-center\">Video: What is Prolotherapy Treatment?</h4>\r\n<div style=\"display: table;margin: 0 auto;\">\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]\r\n</div>\r\n<a class=\"buttonlink\" href=\"/regenerative-techniques/prolotherapy-videos/\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-18 03:24:22','2019-06-18 03:24:22','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(2086,8,'2019-06-18 04:51:48','2019-06-18 04:51:48','<h6>TOPICS </h6>\r\nAchilles tendinopathy \r\nPlantar fasciosis\r\n\r\n<strong>Dextrose: Ryan et al 2009   Dextrose injection for chronic pain of Plantar fasciosis</strong>\r\nRyan MB, Wong AD, Gillies JH, Wong J, Traunton JE Sonographically guided intratendinous injections of hyperosmolar dextrose/lidocaine: a pilot study for the treatment of chronic plantar fasciitis. Br J Sports Med 2009;43 :303–306.\r\n\r\nThe is an article  about  injection of 25% dextrose in 20 consecutive patients with pain in the feet imitated by prssure over the plantar fascia.  Injections were given under ultrasound guidance. These were chronic cases with pain from 7 to 228 months (mean 21 months). Follow-up was for 6-20 months (mean 11.8) months from the final treatment. Three to 12 sessions (mean 3) were given at 2 week intervals. 16 out of 20 had good to excellent results.\r\n\r\nMy impression is that there were apparently no dropouts which is somewhat unusual in a study with foot injection every 2 weeks. This speaks well of the technique of the authors. However, the every 2 week frequency may have not allowed enough time in between to really determine the number of treatments needed with full healing intervals. There is always that balance between desire to move treatment along in an athlete and the desire to keep the number of treatments minimal. It is notable that, although ultrasound was used for injection there were no post treatment ultrasound results reported. Therefore there were no objective post treatment measures.  There also was not a group comparing blind injections to ultrasound guided.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img alt=\"foot pain medium\" title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\">Ankle/Foot</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Knee\"><img alt=\"Knee Pain\" title=\"Knee Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Lower-Back\"><img alt=\"back pain medium\" title=\"back pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\">Lower Back</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Elbow\"><img alt=\"Elbow Pain\" title=\"Elbow Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\">Elbow</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Finger\"><img alt=\"Finger Pain\" title=\"Finger Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finger-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\">Finger</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"><img alt=\"Groin/Pelvis\" title=\"Groin/Pelvis\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Groin/Pelvis</a>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Ankle Foot','','inherit','closed','closed','','2009-revision-v1','','','2019-06-18 04:51:48','2019-06-18 04:51:48','',2009,'https://www.drfields.com/uncategorized/2009-revision-v1/',0,'revision','',0),(2087,8,'2019-06-18 04:54:15','2019-06-18 04:54:15','<strong>DEX: Reeves et al 2000:</strong> \r\n\r\n10% dextrose superior to hypotonic lidocaine in finger and thumb OA.  Injection was primarily periarticular here (medial and lateral) and in this study  10% dextrose was superior  with no obvious effect of control solution.  Reeves KD, Hassanein K. Randomized prospective placebo controlled double blind study of dextrose <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">prolotherapy</a> for osteoarthritic thumbs and finger (DIP, PIP and Trapeziometacarpal) joints: Evidence of Clinical Efficacy. Jnl Alt Compl Med 2000;6(4):311-320.  To open a PDF of the study click here -->View Finger Study  \r\nSubjects had finger pain an average of 5 years and met radiographic criteria for finger  \r\n \r\n<strong>Here is the abstract </strong>\r\n\r\nReeves KD; Hassanein K Randomized, prospective, placebo-controlled double-blind study of dextrose <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">prolotherapy</a> for osteoarthritic thumb and finger (DIP, PIP, and trapeziometacarpal) joints: evidence of clinical efficacy. J Altern Complement Med (United States), Aug 2000, 6(4) p311-20    OBJECTIVES: To determine the clinical benefit of dextrose prolotherapy (injection of growth factors or growth factor stimulators) in osteoarthritic finger joints. DESIGN: Prospective randomized double-blind placebo-controlled trial. SETTINGS/LOCATION: Outpatient physical medicine clinic. SUBJECTS: Six months of pain history was required in each joint studied as well as one of the following: grade 2 or 3 osteophyte, grade 2 or 3 joint narrowing, or grade 1 osteophyte plus grade 1 joint narrowing. Distal interphalangeal (DIP), proximal interphalangeal (PIP), and trapeziometacarpal (thumb CMC) joints were eligible. Thirteen patients (with seventy-four symptomatic osteoarthitic joints) received active treatment, and fourteen patients (with seventy-six symptomatic osteoarthritic joints) served as controls. INTERVENTION: One half milliliter (0.5 mL) of either 10% dextrose and 0.075% xylocaine in bacteriostatic water (active solution) or 0.075% xylocaine in bacteriostatic water (control solution) was injected on medial and lateral aspects of each affected joint. This was done at 0, 2, and 4 months with assessment at 6 months after first injection. OUTCOME MEASURES: One-hundred millimeter (100 mm) Visual Analogue Scale (VAS) for pain at rest, pain with joint movement and pain with grip, and goniometrically-measured joint flexion. RESULTS: Pain at rest and with grip improved more in the dextrose group but not significantly. Improvement in pain with movement of fingers improved significantly more in the dextrose group (42% versus 15% with a p value of .027). Flexion range of motion improved more in the dextrose group (p = .003). Side effects were minimal. CONCLUSION: Dextrose prolotherapy was clinically effective and safe in the treatment of pain with joint movement and range limitation in osteoarthritic finger joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img alt=\"foot pain medium\" title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\">Ankle/Foot</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Knee\"><img alt=\"Knee Pain\" title=\"Knee Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Lower-Back\"><img alt=\"back pain medium\" title=\"back pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\">Lower Back</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Elbow\"><img alt=\"Elbow Pain\" title=\"Elbow Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\">Elbow</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Finger\"><img alt=\"Finger Pain\" title=\"Finger Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finger-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\">Finger</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"><img alt=\"Groin/Pelvis\" title=\"Groin/Pelvis\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Groin/Pelvis</a>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Finger','','inherit','closed','closed','','2014-revision-v1','','','2019-06-18 04:54:15','2019-06-18 04:54:15','',2014,'https://www.drfields.com/uncategorized/2014-revision-v1/',0,'revision','',0),(2088,8,'2019-06-18 04:56:36','2019-06-18 04:56:36','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" class=\"aligncenter size-full wp-image-362\" />\r\n\r\n<h6 class=\"text-center\">Saturday, September 29, 2018\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<p class=\"text-center\">\"Never lose sight of your goals\"\r\nYvette and Fred Fields</p>\r\n\r\n<strong>Here’s the story of my 10th Ironman:</strong>\r\n\r\nIronman Maryland it was to be.\r\nI originally scheduled this to take place at Ironman Hamburg, Germany, June 30, 2018.\r\nHamburg is special for me as I lived there for 9 months many years ago.\r\nAnd both my parents were born in Germany.\r\nUnfortunately, it was not meant to be.\r\n\r\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake. The swim is my best part of the race and helps set me for the rest of the race. Also, in Europe when they cancel the swim they make you run first (not in the states where one just bikes and runs). No one practices running to biking. We practice swimming to biking and biking to running. So, after the 6K (4mile) mile starting run, I entered the transition area to get on the bike. But instead of being at the front of the crowd (as wold be if we had swum first), I was towards the back as I am not a fast runner. But either way I went off to do the 112-mile bike.\r\n\r\nThe first half of the bike (56 miles) went well. I felt strong and confident.\r\nAs I started the second loop (it was a double loop), I felt stomach pains.\r\nI had cramps and felt nauseous. My nutrition intake (I use only liquids) started to drop as my stomach could not take it. I usually take something in every 20 minutes. Then it was 30 minute, 40 minutes and more. This is not good as one must take in what you need and more on the bike so as not to run short during the marathon. The second half of my bike took an hour longer than the first half. This is very significant.\r\n\r\nWhen I transitioned to the run (T2), it took me quite a while to leave the transition area.\r\nAfter about five miles (I walked the last three miles due to lack of nutrition intake), I knew I was done.\r\nNo food, no water = no energy.\r\nInstead of attempting to go the whole way (which would have been impossible without bonking or\r\nworse passing out later), I decided to turn around and go back.\r\nSo, for my first time in over 60 triathlons, I did not finish.\r\nIt is hard to train but even harder to decide not to go on.\r\nBut for my overall health and safety, I knew that I had made the best choice.\r\n\r\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special Lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was Ironman Maryland at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate work outs.\r\n\r\n<strong class=\"subhead\">Getting There:</strong>\r\n\r\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross country flight to Philadelphia and a short flight to a small airport near Cambridge. Got to the hotel and checked in, looked over the course and got ready for race day which comes fast.The swim took place in a river that fed from the ocean. The day of the race the weather was very good. This race had lots of rain in the past but this day the weather was good\r\n\r\n<strong class=\"subhead\">The Swim 2.4 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-363\" />This race is notorious for rainy weather but race day was clear and without clouds. The swim takes place in a river that is fed from the ocean.  My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\r\n\r\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">The Bike 112 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"300\" height=\"250\" class=\"alignright size-full wp-image-364\" />There was some wind on the bike which picked up after 40 miles but somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours when my normal time for 56 miles is 3:10 or more\r\nI kept pushing ahead without exerting myself too much to save myself for the run.\r\nAnd I did not have any stomach problems!\r\n\r\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\r\n\r\n<strong class=\"subhead\">The run 26.2 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-365\" />As I exited the transition area to start my marathon run I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\r\n\r\nThis turned out to be my Achilles heel for this race.\r\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\r\n\r\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way after what had happened in Hamburg I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much. One of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely.\r\nThis helped a lot and kept me going without getting cold\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"300\" height=\"338\" class=\"alignright size-full wp-image-366\" />So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. There is a saying that in an Ironman that the run is 90% mental and the rest is in your head! Hahaha.\r\n\r\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\r\n\r\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\r\n</em>\r\n\r\nAll my aches and pains just faded away.\r\n\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">Postscript:</strong>\r\n\r\nAs with every race my parents’ spirit was with me the whole way. What they went through to survive fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\r\n\r\nA very dear friend of mine is going through a severe illness right now.I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\r\n\r\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\r\nfinishing my 10th Ironman.\r\nAnd of course, everyone who took the time to read this.\r\n\r\n<strong>Peter A. Fields, MD, DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n<a class=\"youtube\" href=\"https://www.youtube.com/watch?v=qTJCmEnrqYg\"><img alt=\"Ironman Maryland 2018 Finisher\" title=\"Ironman Maryland 2018 Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/post-finish-400b.jpg\" style=\"width: 250px; height: 276px; \"></a>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong> <br>The Athletic Doc<sup>®</sup>,<br></strong></span>Post race pic<br>\r\n<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em></p>\r\n<a href=\"https://photos.google.com/share/AF1QipN-HsVLxHi_BQ_2nP6zLXP6J8ZTFSNJ6IOp8OWMOlpDKkKhr2mo1qrbf6IRAb3iPg?key=cnNlNUFmU0VxUEZuR0lhTmVOOXp3dDB2czNkMTNB\" target=\"_blank\" rel=\"noopener noreferrer\">2018 Maryland<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a><br>\r\n<a href=\"about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n</div>\r\n','Race Report 10th Ironman','','inherit','closed','closed','','361-revision-v1','','','2019-06-18 04:56:36','2019-06-18 04:56:36','',361,'https://www.drfields.com/uncategorized/361-revision-v1/',0,'revision','',0),(2089,8,'2019-06-18 04:57:19','2019-06-18 04:57:19','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" class=\"aligncenter size-full wp-image-362\" />\r\n\r\n<h6 class=\"text-center\">Saturday, September 29, 2018\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<p class=\"text-center\">\"Never lose sight of your goals\"\r\nYvette and Fred Fields</p>\r\n\r\n<strong>Here’s the story of my 10th Ironman:</strong>\r\n\r\nIronman Maryland it was to be.\r\nI originally scheduled this to take place at Ironman Hamburg, Germany, June 30, 2018.\r\nHamburg is special for me as I lived there for 9 months many years ago.\r\nAnd both my parents were born in Germany.\r\nUnfortunately, it was not meant to be.\r\n\r\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake. The swim is my best part of the race and helps set me for the rest of the race. Also, in Europe when they cancel the swim they make you run first (not in the states where one just bikes and runs). No one practices running to biking. We practice swimming to biking and biking to running. So, after the 6K (4mile) mile starting run, I entered the transition area to get on the bike. But instead of being at the front of the crowd (as wold be if we had swum first), I was towards the back as I am not a fast runner. But either way I went off to do the 112-mile bike.\r\n\r\nThe first half of the bike (56 miles) went well. I felt strong and confident.\r\nAs I started the second loop (it was a double loop), I felt stomach pains.\r\nI had cramps and felt nauseous. My nutrition intake (I use only liquids) started to drop as my stomach could not take it. I usually take something in every 20 minutes. Then it was 30 minute, 40 minutes and more. This is not good as one must take in what you need and more on the bike so as not to run short during the marathon. The second half of my bike took an hour longer than the first half. This is very significant.\r\n\r\nWhen I transitioned to the run (T2), it took me quite a while to leave the transition area.\r\nAfter about five miles (I walked the last three miles due to lack of nutrition intake), I knew I was done.\r\nNo food, no water = no energy.\r\nInstead of attempting to go the whole way (which would have been impossible without bonking or\r\nworse passing out later), I decided to turn around and go back.\r\nSo, for my first time in over 60 triathlons, I did not finish.\r\nIt is hard to train but even harder to decide not to go on.\r\nBut for my overall health and safety, I knew that I had made the best choice.\r\n\r\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special Lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was Ironman Maryland at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate work outs.\r\n\r\n<strong class=\"subhead\">Getting There:</strong>\r\n\r\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross country flight to Philadelphia and a short flight to a small airport near Cambridge. Got to the hotel and checked in, looked over the course and got ready for race day which comes fast.The swim took place in a river that fed from the ocean. The day of the race the weather was very good. This race had lots of rain in the past but this day the weather was good\r\n\r\n<strong class=\"subhead\">The Swim 2.4 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-363\" />This race is notorious for rainy weather but race day was clear and without clouds. The swim takes place in a river that is fed from the ocean.  My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\r\n\r\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">The Bike 112 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"300\" height=\"250\" class=\"alignright size-full wp-image-364\" />There was some wind on the bike which picked up after 40 miles but somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours when my normal time for 56 miles is 3:10 or more\r\nI kept pushing ahead without exerting myself too much to save myself for the run.\r\nAnd I did not have any stomach problems!\r\n\r\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\r\n\r\n<strong class=\"subhead\">The run 26.2 miles:</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-365\" />As I exited the transition area to start my marathon run I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\r\n\r\nThis turned out to be my Achilles heel for this race.\r\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\r\n\r\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way after what had happened in Hamburg I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much. One of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely.\r\nThis helped a lot and kept me going without getting cold\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"300\" height=\"338\" class=\"alignright size-full wp-image-366\" />So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. There is a saying that in an Ironman that the run is 90% mental and the rest is in your head! Hahaha.\r\n\r\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\r\n\r\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\r\n</em>\r\n\r\nAll my aches and pains just faded away.\r\n\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">Postscript:</strong>\r\n\r\nAs with every race my parents’ spirit was with me the whole way. What they went through to survive fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\r\n\r\nA very dear friend of mine is going through a severe illness right now.I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\r\n\r\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\r\nfinishing my 10th Ironman.\r\nAnd of course, everyone who took the time to read this.\r\n\r\n<strong>Peter A. Fields, MD, DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n<a class=\"youtube\" href=\"https://www.youtube.com/watch?v=qTJCmEnrqYg\"><img alt=\"Ironman Maryland 2018 Finisher\" title=\"Ironman Maryland 2018 Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/post-finish-400b.jpg\" style=\"width: 250px; height: 276px; \"></a>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong> <br>The Athletic Doc<sup>®</sup>,<br></strong></span>Post race pic<br>\r\n<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em></p>\r\n<a href=\"https://photos.google.com/share/AF1QipN-HsVLxHi_BQ_2nP6zLXP6J8ZTFSNJ6IOp8OWMOlpDKkKhr2mo1qrbf6IRAb3iPg?key=cnNlNUFmU0VxUEZuR0lhTmVOOXp3dDB2czNkMTNB\" target=\"_blank\" rel=\"noopener noreferrer\">2018 Maryland<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a><br>\r\n<a href=\"/About/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n</div>\r\n','Race Report 10th Ironman','','inherit','closed','closed','','361-revision-v1','','','2019-06-18 04:57:19','2019-06-18 04:57:19','',361,'https://www.drfields.com/uncategorized/361-revision-v1/',0,'revision','',0),(2090,8,'2019-06-18 04:57:57','2019-06-18 04:57:57','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 27, 2011<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><strong >On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong></p>\r\n<p class=\"text-center\">In Cozumel, Mexico at 9:04:07 pm to be exact.</p>\r\n\r\n<p>14 hrs, 4 mins and 7 sec earlier, at 7am, I began what was to be an epic day in my life. 2.4 mile swim, 112 mile bike, 26.2 mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.</p>\r\n\r\n<p>It was a beautiful day; air temp about 80 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.</p>\r\n\r\n<p>&nbsp; </p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\"  class=\"alignleft size-full wp-image-53\" /><strong class=\"subhead\">THE SWIM</strong></span><br>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs and bodies all around you. Sometimes even on top of you! It was a beautiful 2.4 mile swim in the 82 degree, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly and one hour and one minute later, I was climbing the stairs out of the water.</p>\r\n\r\n<p>&nbsp; </p>\r\n<p>&nbsp; </p>\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\"  class=\"alignleft size-full wp-image-56\" /><strong class=\"subhead\">THE BIKE</strong></span><br>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112 mile ride. It was three times around the Island. And although there weren\'t any hills, the back side of the island gets wind, so about 60 miles of the ride was into the wind. The air temp was now about 85 -87 degrees with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright. As I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.<br>\r\nHalfway through the bike I got my special needs bag from the volunteers, where I was able to reload with my own food (water I got from the aid stations). Here I was able to alleviate a potential major problem; about half an hour earlier, I had developed severe pain in my left foot. When I got off the bike I removed the left shoe support wedge (I have one in each shoe), which made the pain bearable. Fortunately I did not have any mechanical problems on the bike and best of all, no flats! When I was on the last nine miles, the skies darkened and then opened up with a torrential rain. It rained so hard, it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, it was into the change tent to put on running shoes and start the marathon.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\"  class=\"alignleft size-full wp-image-60\" /><strong class=\"subhead\">THE RUN</strong></span><br>\r\nWhen one leaves the tent, you cannot think marathon, since with over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run. The foot pain that I had on the bike disappeared as soon as I started to run. There where puddles everywhere (it was still raining lightly) and my feet did get a bit wet. Then about three miles into the run there was a street crossing with the water about knee high. So at that point the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue, but did not let it bother me - at least until the race was over.<br>\r\nI just kept telling myself to keep running. I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - just keep running; do not walk. It was a three lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds where going wild along a two mile stretch (along with my cheering squad!).</p>\r\n<p>With each lap, it became more of a mental game to staying \"in it\". The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\"  class=\"alignleft size-full wp-image-59\" /><strong class=\"subhead\">THE FINISH</strong></span><br>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful; no pain or exhaustion - only euphoria.</p>\r\n<p>As my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: \"Peter Fields, you are an Ironman!\"</p>\r\n<p>After a moment or two of realization of what I had just accomplished it was time for food, water, and a post-race massage</p>\r\n\r\n<div class=\"clear\"></div>\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish-2.jpg\" alt=\"2011 Cozumel\" title=\"2011 Cozumel\" width=\"160\" height=\"215\">\r\n<a href=\"https://photos.app.goo.gl/iYK2GiU2Wy4E6XNY2\" target=\"_blank\" rel=\"noopener noreferrer\">2011 Cozumel<br>\r\nClick For More Photos</a><br>\r\n<br>\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n</div>\r\n\r\n','Race Report 1st Ironman','','inherit','closed','closed','','92-revision-v1','','','2019-06-18 04:57:57','2019-06-18 04:57:57','',92,'https://www.drfields.com/uncategorized/92-revision-v1/',0,'revision','',0),(2091,8,'2019-06-18 04:58:35','2019-06-18 04:58:35','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\"  class=\"aligncenter size-full wp-image-43\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">November 25, 2012<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p>After finishing this race last year, I was back again to try and beat my time of 2011 time of 14 hrs. 4 mins and 7 sec. And with much pride, I am happy to announce that I did; finishing in 13hrs, 50 mins and 27sec.</p>\r\n\r\n<p>A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused. If your mind got the better of you, the day would be over.</p>\r\n\r\n<p>My day began at 4am, when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 42 countries.</p>\r\n<p>It was a beautiful day; air temp about 74 degrees, clear skies and not a cloud in sight. Now, after all the months of training, my journey was about to begin.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg\" alt=\"Cozumel 2012 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-123\" /><strong class=\"subhead\">THE SWIM</strong></span><br>\r\nThe water was a bit choppy and there was a strong current too. This did not bother me as swimming is my best event. After one last gel, I lined up with the others and then jumped off the pier into the ocean. One has to jump about 7-10 feet off the pier into the water. I positioned myself in a good spot up front and along the shore. The current would be flowing against us for the first 800 meters, so it was best to be close to the shore where the current is less. After treading water for 10 minutes or so, the horn went off. I go pretty fast at first to get away from the crowd. Due to the chop, I altered my stroke a bit to clear this. This brings ones arms slightly closer to the boy and I did develop a bit of an underarm chafe but this was soon forgotten. Once we turned around the first buoy, the current was with us and I let the current work with me for the next mile or so. The water was clear and you could see schools of fish swimming around as well as the scuba lifeguards, positioned on the bottom about 30 feet down. When I got to the final turn, the current was against me again, so I had to work a bit harder. There was no balloon or marker marking the pier so I just followed the crowd and sighted off the lifeguard paddlers and boats. Overall I was about 8 minutes slower than last year (one hour and nine minutes this year) but still felt pretty good. Later I was to learn that most people were 15 to 30 minutes slower than last year. In Ironman races (avg. participants about 2300), there is usually about 10-15 who do not make the 2 hrs. and 20 minute swim cutoff time. This year there was over 240! Very disappointing for them as they take your timing chip away as you exit the water. Some chose to do the race anyway; this was unofficial of course.</p>\r\n<p>As I exited the water, I ran quickly into the change tent (T1). I was determined to cut down my transition time this year – big time. I had opted to wear a Tri Suit under the speed suit (like in the Olympics) I swim in. This meant I did not have to change into separate clothing for the bike and run since the Tri suit is a two piece suit that one can ride and run in.</p>\r\n<p>Once inside, I quickly stripped the speed suit off, put on my helmet and bike shoes and was off to get my bike. You did not have to re-apply sunscreen as they had helpers in the change tent lathering your shoulders and upper arms (the exposed areas) with sunscreen. This was a big help.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-bike.jpg\" alt=\"Cozumel 2012 Bike\" width=\"160\" height=\"196\" class=\"alignleft size-full wp-image-125\" /><strong class=\"subhead\">THE BIKE</strong></span><br>\r\nThe first loop (it is a three lop ride) on the bike went well as there was not a lot of wind when we got to the back of the island. I also had changed my nutrition from last year and did not have the dreaded stomach problems that many triathletes have on the bike. The second loop, the winds really picked up. It was a tough 15-18 mile section with 15-20 mile an hour wind hitting you broad side. I did develop some left foot pain which happened sometimes when I ride over 70 miles. I wear a special bike shoe orthotics that keeps me from having right foot pain after I run and after riding. This had happened last year. So I removed my left orthotic. But shortly thereafter the right foot also bothered me so I removed that orthotic too. This essentially eliminated the pain. At mile 62 there is a special needs station where one leaves anything that they might want. Last year I rested there a bit but this year just grabbed what I needed from my bag and kept going. The third lap the wind got even more brutal and we were all slugging it out on the backside of the island. As I turned to head back into town at the 100 mile maker I went to slip the orthotics back in as it prevents me from having foot pain on the post ride run. The left one had fallen out of my bike jersey pocket but at least I had the right one. All in all I rode 12 minutes faster than last year.</p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-run.jpg\" alt=\"Cozumel 2012 Run\" width=\"160\" height=\"215\" class=\"alignleft size-full wp-image-127\" /><strong class=\"subhead\">THE RUN</strong></span><br>\r\nBack into town, I got off the bike at the bike to run transition area (T2). I quickly changed; again much quicker than last year and headed off to run the marathon. My legs were a bit heavy but somehow I was running well. This was especially good since I had a hamstring problem earlier in the year and had been running a lot in deep water instead of the land for my training. The heaviness quickly went away within the first mile and all was going good. I had only slight right hamstring discomfort and no real pain.</p>\r\n<p>We do approximately 4. 4 miles out and back for an 8.8 mile loop (three times). On the way back to town on the first loop, the foot pain (left and right) started to appear. I did take a Celebrex at 4am and another one on the third loop of the bike. When I got to town after 8.8 miles, I asked my good friend Angela (she was my aid throughout the race- and a great one at that) to go find ibuprofen (it works on a different pathway than Celebrex). When I got to the second turn around to head back to town (13.1 miles) my hamstring kicked in - big time. It was painful to run but I kept going. I changed my gait (made it an even shorter stride). There were plenty of people walking by then but I just dealt with it. I know there was medic tent at about 15 miles. I pulled in and asked for ice. They ace wrapped my upper thigh with lots of ice. This seemed to reduce the pain but I still was running slightly slower (the first 13.1miles had me on a 5+ hr. marathon pace - much better than the 5:35 of last year). As I entered town, Angela was there and handed me the ibuprofen. I took it and within minutes I was feeling quite good. Prior to this I had calculated my time and distance and knew that I could break 14 hrs. – and maybe by 30 minutes. The hamstring pain started to return about 19 miles. I got the leg wrapped with more ice again on the way out to the 4.8 final turn around. Before the last turn around I was forced to walk and run. This is something that I had never done before (walk that is), but the pain was pretty high. At the last three mile marker I got even more ice for my hamstring and decided to walk more than run. Soon thereafter I could not continue a run/walk pace due to pain but figured if I walked fast (walking was painful but not severe) I would break 14 hrs. So at that point I walked a 14-15 mile pace (off my Garmin wrist computer), which is still pretty fast. There were plenty of walkers and I was passing them. I had to save whatever run I had left in me for last few hundred meters up to the finish (no way was I going to walk that!). This is right in the middle of the park and all lite up with hundreds (if not more) of people yelling and screaming. So as I got close, I began to run (pain is temporary; finishing is forever!) the last hundred meters to the finish line where I heard the announcer say, once again, \"<strong class=\"subhead\"><span style=\"text-decoration: underline;\">Peter Fields, you are an Ironman!</span></strong>\"</p>\r\n\r\n<p>My time was13:50, not the 13:30 I might have had without the hamstring issue. <br>\r\nBut I did end up breaking the 14 hr. barrier (last year\'s time of 14:04), which I had set out to do. Mission accomplished. <br>\r\nAs I always say, age is mind over matter; if you don\'t mind- it does not matter!</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" alt=\"Cozumel 2012 Finish2\" width=\"150\" height=\"268\" class=\"alignleft size-full wp-image-128\" /><strong class=\"subhead\">THE FINISH</strong></span><br>\r\nImmediately after crossing the finish line, after getting a big hug from Angela. I then went into the medical tent and to get a one liter IV bag of fluid (as a former ER doc I know what to say to get it done without waiting). Everyone is dehydrated to some point and this was much needed. Then off to get a post-race massage and some food. Unfortunately, caffeine gels kept me going during the last part of the run and my stomach did not really want any food. But it was nice just to sit down. Then cheered on the last finishers who are those are trying to make the 17 hr. cut-off at midnight. After collecting my gear and bike, I finally headed back to the hotel and got to bed at 2am. Not much success with that after being very jacked up all day, so the next day was to a big recovery and sleep day.</p>\r\n<p>Thank you for allowing me to share this with you and for taking the\r\n\r\ntime to read it. I want to thank everyone that offered me support and\r\nwishes. I am very grateful to each and every one of you.</p>\r\n<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>\r\n<p class=\"text-center\"><strong class=\"subhead\">Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></span></p>\r\n</div>\r\n\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish.jpg\" alt=\"2012 Cozumel\" title=\"2012 Cozumel\" style=\"padding-left: 5px;\" width=\"160\" height=\"215\">\r\n<a href=\"https://photos.app.goo.gl/QCF7CgcEG8uOfLBs1\" target=\"_blank\" rel=\"noopener noreferrer\">2012 Cozumel<br>\r\nClick For More Photos</a><br>\r\nClick below for Pictures &amp; Story\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n</div>\r\n\r\n','Race Report 2nd Ironman','','inherit','closed','closed','','120-revision-v1','','','2019-06-18 04:58:35','2019-06-18 04:58:35','',120,'https://www.drfields.com/uncategorized/120-revision-v1/',0,'revision','',0),(2092,8,'2019-06-18 04:59:51','2019-06-18 04:59:51','<h6>TOPICS </h6>\r\nACL Laxity\r\nBaker\'s Cyst \r\nJumper\'s Knee (See  Patellar Tendinosis) \r\nMedial Meniscus  Tear\r\nOsteoarthritis Of Knee \r\n \r\n<strong>ACL LAXITY DEX: Reeves et al 2003 </strong>\r\nDextrose tightens loose ACL ligament by simple Reeves KD Hassanein K Long term effects of dextrose prolotherapy for anterior cruciate ligament laxity: A prospective and consecutive patient study. Alt Ther Hlth Med  May-Jun 2003, 9(3): p58-62.\r\nTo read the entire study click here --> View ACL Laxity Study\r\n\r\nMethod:  16 knees with machine measured ACL laxity (KT-1000 arthrometer) were injected bimonthly with 10-25% dextrose solution for 1 year and then an average of 4 times yearly thereafter until 3 year follow-up.  \r\n\r\nSummary:   Using simple dextrose injection into 16 knees with a loose ACL ligament, 10/16 knees were no longer loose by machine measurement at time of follow-up, and symptoms  were improved. Symptom of osteoarthritits improved even in those who still tested loose.   At the 3 year follow-up  pain with walking had improved by 43% ,  subjective swelling improved 63%,  flexion range of motion improved by 10.5 degrees,  and KT1000 ADD (machine measure of ACL ligament looseness) improved by 71%. \r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img alt=\"foot pain medium\" title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\">Ankle/Foot</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Knee\"><img alt=\"Knee Pain\" title=\"Knee Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Lower-Back\"><img alt=\"back pain medium\" title=\"back pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\">Lower Back</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Elbow\"><img alt=\"Elbow Pain\" title=\"Elbow Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\">Elbow</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Finger\"><img alt=\"Finger Pain\" title=\"Finger Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finger-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\">Finger</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"><img alt=\"Groin/Pelvis\" title=\"Groin/Pelvis\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Groin/Pelvis</a>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Knee','','inherit','closed','closed','','2020-revision-v1','','','2019-06-18 04:59:51','2019-06-18 04:59:51','',2020,'https://www.drfields.com/uncategorized/2020-revision-v1/',0,'revision','',0),(2093,8,'2019-06-18 05:00:33','2019-06-18 05:00:33','<strong>TOPICS</strong>\r\nExtensor tendinitis: (See extensor tendinosis)\r\nExtensor tendinosis\r\nTennis Elbow: (See extensor tendinosis)\r\n\r\n<strong>Extensor tendinosis: Dex and Sodium morrhuate: Scarpone et al 2008</strong>\r\nInjection of  combination of sodium morrhuate (.72%) and dextrose (10.7%)  on 3 occasions in patients with tennis elbow (lateral epicondylosis) resulted in marked improvement in pain, wrist extension and grip strenth in comparision to injection of saline. Scarpone M, Rabago DP, Zgierska A, Arbogast G, Snell E. The efficacy of <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">prolotherapy</a> for lateral epicondylosis: a pilot study [In Process Citation] Clin J Sport Med (United States), May 2008, 18(3) p248-54\r\n\r\nDr Scarpone et al reported this year in a randomized and controlled study that 12 adults with lateral epicondylosis injected at 0, 1 and 3 months with 0.72% sodium morrhuate, 10.7% dextrose, .29% lidocaine and .04% sensorcaine improved far more in pain levels (91% versus 33%; P &lt; .001) and extension strength (P &lt; .01) and grip strength (P &lt; .05) than 12 subjects given saline injection with the same number of needle punctures and volume. Note this is despite the fact that saline injection is not a placebo, suggesting that saline injection is indeed not equivalent to injection of a combination of sodium morrhuate and dextrose. Although a small study, these results and this design are excellent. Here is that abstract.   From the Department of Family Medicine, University of Wisconsin-Madison, Madison, Wisconsin.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\nABSTRACT: OBJECTIVES:: To assess whether prolotherapy, an injection-based therapy, improves elbow pain, grip strength, and extension strength in patients with lateral epicondylosis. SETTING:: Outpatient Sport Medicine clinic. STUDY DESIGN:: Double-blind randomized controlled trial. PARTICIPANTS:: Twenty-four adults with at least 6 months of refractory lateral epicondylosis. INTERVENTION:: Prolotherapy participants received injections of a solution made from 1 part 5% sodium morrhuate, 1.5 parts 50% dextrose, 0.5 parts 4% lidocaine, 0.5 parts 0.5% sensorcaine and 3.5 parts normal saline. Controls received injections of 0.9% saline. Three 0.5-ml injections were made at the supracondylar ridge, lateral epicondyle, and annular ligament at baseline and at 4 and 8 weeks. OUTCOME MEASURES:: The primary outcome was resting elbow pain (0 to 10 Likert scale). Secondary outcomes were extension and grip strength. Each was performed at baseline and at 8 and 16 weeks. One-year follow-up included pain assessment and effect of pain on activities of daily living. RESULTS:: The groups were similar at baseline. Compared to Controls, <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> subjects reported improved pain scores (4.5 +/- 1.7, 3.6 +/- 1.2, and 3.5 +/- 1.5 versus 5.1 +/- 0.8, 3.3 +/- 0.9, and 0.5 +/- 0.4 at baseline and at 8 and 16 weeks, respectively). At 16 weeks, these differences were significant compared to baseline scores within and among groups (P &lt; 0.001). Prolotherapy subjects also reported improved extension strength compared to Controls (P &lt; 0.01) and improved grip strength compared to baseline (P &lt; 0.05). Clinical improvement in Prolotherapy group subjects was maintained at 52 weeks. There were no adverse events. CONCLUSIONS:: Prolotherapy with dextrose and sodium morrhuate was well tolerated, effectively decreased elbow pain, and improved strength testing in subjects with refractory lateral epicondylosis compared to Control group injections.\r\n\r\n<strong>Extensor Tendinosis: PRP: Mishra  et al 2006. Treatment of tennis elbow.</strong>\r\n\r\n141 consecutive patients with elbow epicondylar pain. All failed a standardized physical therapy protocol and a variety of other nonoperative treatments. Either PRP injection of bupivicaine with 15 in the active group and 5 in the control group. Only 8 week followup with 60% improvement versus 16% in control. (Non blinded control). At 6 months 81% improvement. (All patients included) and at 12 months minimum 93% improvement. Blinding did not occur at IRB request, accounting in part of the very small control group. All had pain over medial or lateral epicondyle (14/15 lateral) and pain at the elbow with resistance of either resisted flexion or extension respectively. The number of patients that were able to be contacted was not mentioned. Nevertheless results were impressive. Noted is that a blinded clinical trial was approved and status of this is not clear.     MIshra A, Pavelko T.  Treatment of chronic elbow tendinosis with buffered platelet-rich plasma.  American Journal of Sports Medicine  Dec 2006 Volume 34: 1774-1778\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img alt=\"foot pain medium\" title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\">Ankle/Foot</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Knee\"><img alt=\"Knee Pain\" title=\"Knee Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Lower-Back\"><img alt=\"back pain medium\" title=\"back pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\">Lower Back</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Elbow\"><img alt=\"Elbow Pain\" title=\"Elbow Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\">Elbow</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Finger\"><img alt=\"Finger Pain\" title=\"Finger Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finger-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\">Finger</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"><img alt=\"Groin/Pelvis\" title=\"Groin/Pelvis\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Groin/Pelvis</a>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n','Elbow','','inherit','closed','closed','','2024-revision-v1','','','2019-06-18 05:00:33','2019-06-18 05:00:33','',2024,'https://www.drfields.com/uncategorized/2024-revision-v1/',0,'revision','',0),(2094,8,'2019-06-18 05:01:04','2019-06-18 05:01:04','<strong>Groin Pain/Sports Hernia  Dextrose  Topol et al 2008. Dextrose Injection for Groin Pain and Sports Hernia in Elite Athletes </strong>\r\nDextrose 12.5% injection returns 66/72 elite rugby and soccer players to full sport who were prevented from high level\r\nABSTRACT\r\n\r\nTopol GA, Reeves KD: Regenerative injection of elite athletes with career-altering chronic groin pain who fail conservative treatment: a consecutive case series. Am J Phys Med Rehabil 2008;87; – .\r\n\r\nObjective: To obtain multisport and long-term outcome data from the use of regenerative injection therapy on career-threatened athletes.  Design: Consecutive enrollment of elite performance-limited athletes with chronic groin/abdominal pain who failed a conservative treatment trial and whose careers were threatened.   The treatment consisted of monthly injections of 12.5% dextrose in 0.5% lidocaine in abdominal and adductor attachments on the pubis. Injection of the nociceptive source was confirmed by repetition of resistive testing 5 mins after injection. Results: Seventy-five athletes were enrolled. Seventy-two athletes (39 rugby, 29 soccer, and 4 other) completed the minimum two-treatment protocol. Their data revealed a mean groin pain history of 11 (3–60) mos. Average number of treatments received was 3 (1–6). Individual paired t tests for Visual Analog Scale (VAS) of pain with sport (VAS Pain) and Nirschl pain phase scale measured at 0 and an average of 26 (6–73) mos indicated VAS Pain improvement of 82%  (P &lt;10 10 ). and Nirschl pain phase scale improvement of 78% (P &lt;10 10 ). Six athletes did not improve following regenerative injection therapy treatment, and the remaining 66 returned to unrestricted sport. Return to unrestricted sport occurred in an average of 3 (1–5) mos. Conclusions: Athletes returned to full elite-level performance in a timely and sustainable manner after regenerative injection therapy using dextrose.  Key Words: Growth Substances, Osteitis Pubis, Glucose, Tendonitis, Groin, Proliferating, Tendons, Sports Medicine, Athletic Injuries, Sports Hernia\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Groin Pain/Sports Hernia Dextrose:  Topol et al 2005. Injection for Groin Pain and Sports Hernia in Elite Athletes  </strong>\r\nDextrose 12.5% injection returns 22/24 elite rugby and soccer players to full sport who were prevented from high level play by chronic groin pain.  This involved treatment of abdominal muscle weakness, adductor sprain and osteitis pubis. Topol GA, Reeves KD, Hassanein K. Efficacy of Dextrose <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> in Elite Male Kicking-Sport Athletes With Chronic Groin Pain. Archives Phys Med Rehabil, 2005;86:697-702.\r\n\r\nParticipants: Twenty-two rugby and 2 soccer players with chronic groin pain that prevented full sports participation and who were non- responsive both to therapy and to a graded reintroduction into sports activity.   Intervention: Monthly injection of 12.5% dextrose and 0.5% lidocaine in thigh adductor origins, suprapubic abdominal insertions, and symphysis pubis, depending on palpation tenderness. Injections were given until complete resolution of pain or lack of improvement for 2 consecutive treatments.  Main Outcome Measures: Visual analogue scale (VAS) for pain with sports and the Nirschl Pain Phase Scale (NPPS), a measure of functional impairment from pain.  Results: The final data collection point was 6-32 months after treatment (mean, 17mo). A mean of 2.8 treatments were given. The mean reduction in pain during sports , as measured by the VAS, improved from 6.3 +/- 1.4 to 1.0 +/- 2.4 (P &lt; .001), and the mean reduction NPPS score improved from 5.3 +/- 0.7 to 0.8 +/- 1.9 (P &lt; .001). Twenty of 24 patients had no pain and 22 of 24 were unrestricted with sports at final data collection.  Conclusions: Dextrose <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">prolotherapy</a> showed marked efficacy for chronic groin pain in this group of elite rugby and soccer athletes.\r\n\r\n\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img alt=\"foot pain medium\" title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\">Ankle/Foot</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Knee\"><img alt=\"Knee Pain\" title=\"Knee Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\"></a><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Lower-Back\"><img alt=\"back pain medium\" title=\"back pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\"></a><a href=\"/Articles/Prolotherapy-Research/Lower-Back\">Lower Back</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Elbow\"><img alt=\"Elbow Pain\" title=\"Elbow Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\"></a><a href=\"/Articles/Prolotherapy-Research/Elbow\">Elbow</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Finger\"><img alt=\"Finger Pain\" title=\"Finger Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finger-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\"></a><a href=\"/Articles/Prolotherapy-Research/Finger\">Finger</a>\r\n</div>\r\n<div class=\"large_thumb\">\r\n<a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"><img alt=\"Groin/Pelvis\" title=\"Groin/Pelvis\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium.png\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Groin/Pelvis</a>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n','Groin Pelvis','','inherit','closed','closed','','2028-revision-v1','','','2019-06-18 05:01:04','2019-06-18 05:01:04','',2028,'https://www.drfields.com/uncategorized/2028-revision-v1/',0,'revision','',0),(2095,8,'2019-06-18 05:03:24','2019-06-18 05:03:24','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" class=\"aligncenter size-full wp-image-134\" />\r\n\r\n<p class=\"text-center\" id=\"athletic-event\">Sunday August 25, 2013<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</p>\r\n\r\n<p class=\"text-center\"><em>Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></em></p>\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-138\" /><strong class=\"subhead\">Pre Race</strong></span><br>\r\n awoke at 3:30am so I could have breakfast by 4am. That way I would have three hours before the race, which starts at 7am, to properly digest everything. Once done eating, I stretched out and got dressed. I already had my gear ready to go which included the am, stuff plus the two special needs bags for the bike and the run. I then went downstairs to be driven to the village center, where I dropped off the special needs bags. Then I boarded one of several buses that were waiting to transport us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.</p>\r\n<p>When we got there it was not only still dark but about 45 degrees, so it was cold. But at least the rain from the previous day had stopped and no more was predicted. I planned well for the cold (60 degrees was not expected until noon or so). There is always a lot of tension floating around as over 2200 athletes check their gear, so you try your best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\nThe only thing ones brings in the morning is ones wetsuit, goggles and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit and then head down to the waterfront.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-140\" /><strong class=\"subhead\">The Swim</strong></span><br>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees which was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7am, the gun went off. It would be a long day. As always, I go out fast at the beginning of the swim (it is my best part). That way I try and get away from the majority of the crowd. Then I try and settle back into a good pace. There were a few turns prior to turning back on the fist loop (it was a two lop course), so it got really jammed and crowded; more than usual. I therefore did not really get into my good stroke pattern until the second lap. Plus I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around you. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.</p>\r\n<p><strong style=\"text-decoration: underline;\">T1 (Transition one)</strong></p>\r\n<p>I took a bit longer in the change tent as I put on knee warmers, wind vest, a riding jacket, a skull cap for under my helmet and long liner gloves over my riding gloves (I get cold easy!!).</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-142\" /><strong class=\"subhead\">The Bike</strong></span><br>\r\nThen I was off to the 112 mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views (when we looked up) were really spectacular. Being wet, I was glad to have everything on. I got rid of the jacket on the first big climb at about 10 miles. And a big climb it was going up about 1600 feet in 10 miles. Then back down and then rollers all the way back thru town. We were now at 40 mile. Riding thru the crowds, who really helped to cheer us along, was invigorating. I now got rid of the liner gloves (which were over m bike gloves) as it was now above 60 (eventually hit about 68 at 2-3 pm). Then some uphills and lots of downhills for the next 20 miles.</p>\r\n<p>After that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use. I took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised, but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. Wow, a business referral in an Ironman! Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.</p>\r\n<p>Then back to the hills. The last part from mile 85 to 112, was essentially all up hill. The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight some downhill riding all the way back to town. It was a tough time on the legs. As we approached town, the cheering again kept me going. Needless to say my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than Cozumel but with the hills here I was not disappointed.</p>\r\n<p><strong style=\"text-decoration: underline;\">T2 (Transition Two)</strong></p>\r\n<p>After handing off my bike to a handler, it was off the change tent, where I changed put on my running shoes (no clothing change as what I wear under my wetsuit is what I ride and run in), and restocked myself with a few gel packs (there are nutrition aid stations about every mile).On the way out they had volunteers (with grass skirts on!), putting sunscreen on the runners. This would be helpful as it was hot sunny and getting warm.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"160\" height=\"213\" class=\"alignleft size-full wp-image-143\" /><strong class=\"subhead\">The Run</strong></span><br>\r\nThe run had over 1100 feet of climbing, none of which we very long. So with the very hilly ride, it made for a tough run constantly going up and down hills already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs. And in addition we ran around a lake, over a wood bridge on a pond and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.</p>\r\n\r\n<p>At mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegederm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse. At mile five I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort and the extra weight got transferred laterally to my third and fourth toes. I altered my gait and it became a lot easier to run. At this point it was actually easier to run (mid foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually I was able to keep running and push thru it. As my mom always said, C\'est al vie, (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach. The blister pain I just but in the back of my mind as it never got worse. All in all I eventually figured out I would not break 14hrs as I had done last year but with the big hills on the ride, the hills on the run and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny it was quite warm being at 2200 feet, the ice at the aid stations was a help. I just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.</p>\r\n\r\n\r\n<p><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" class=\"alignleft size-full wp-image-144\" /><strong class=\"subhead\">The Finish</strong></span><br>\r\nSo as I got closer to the finish line, all the aches just stated to fade away. The last mile or so I just let it all go and ran a good pace. As I entered the final turn, the last 150 meters was jammed with the crowds cheering loudly. At this point, I knew I had made it. All the months of training were worth it. And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. Final run time was 5:52 with an overall time of 14:18.</p>\r\n\r\n<p><strong class=\"subhead\">Final Thoughts:</strong><br>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus it is as much a mental challenge, if not more than a physical one.</p>\r\n<p>I love the quote by Viktor Frankel, MD; Holocaust survivor and world famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).</p>\r\n<p><em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em></p>\r\n\r\n<p><strong class=\"subhead\">Dedication:</strong><br>\r\nAs you many of you know, each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.</p>\r\n\r\n<p>Thanks to everyone for inquiring about me and cheering from near and a far. I really appreciated all of it and words cannot say thank you enough. \r\nYour thoughts and well wishes helped me through my third Ironman.\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.</p>\r\n\r\n\r\n<p class=\"text-center\" ><strong>Peter A. Fields, MD DC</strong></span><br>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></span></p>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Canada\" title=\"2013 Canada\" style=\"padding-left: 5px;\" width=\"160\" height=\"215\">\r\n<div style=\"text-align: center;\"><a href=\"https://photos.app.goo.gl/gaPdmofhlbBcBfFx2\" target=\"_blank\" rel=\"noopener noreferrer\">2013 Canada<br>\r\nClick For More Photos</a><br>\r\n<br>\r\n</div>\r\n<p style=\"text-align: center;\">\r\nClick below for Pictures &amp; Story</p>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n</div>\r\n</div>\r\n\r\n','Race Report 3rd Ironman','','inherit','closed','closed','','131-revision-v1','','','2019-06-18 05:03:24','2019-06-18 05:03:24','',131,'https://www.drfields.com/uncategorized/131-revision-v1/',0,'revision','',0),(2096,8,'2019-06-18 05:03:32','2019-06-18 05:03:32','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<h6 class=\"text-center\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\nMy time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.\r\n\r\nSaturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.\r\n\r\n\r\n<strong class=\"subhead\">RACE DAY</strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.\r\nOn my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n\r\n<strong class=\"subhead\">THE SWIM</strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<strong class=\"subhead\">THE BIKE</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a180 degree turn again (like at the beginning) so we hat to really slow down But this was good thing as the street leading to this turn was lined with thousands of spectators cheering us on.  Occasionally at this point and other ones where there was an announcer I would hear \"and here is Peter from the United States\".  Always nice to hear to keep one going. My usual time is about 3hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins. I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs is where one can leave a bag that morning of anything they may want or need at that point. It is at the halfway point of the bike and another one at the halfway point of the run.  I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.  When I tossed the bottle away, it rolled to the feet of the small boy about 6 or 7 years old. His mom looked at him.  He just looked at it. I told him, in German, here\'s a present for you.  Take it home and clean it! It is yours. He just smiled at me as he reached for it.\r\nThen 8 miles into the second loop miles drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down.\r\nAll in all, it went well on the second loop.  The crowds were less due to the rain but there were, still crowds out there. At about mile 80 my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. \r\nMy second loop time was a bit slower due to the rain.\r\n It was 3 hours in 25 minutes. All in all I felt strong for the run. This was a good thing.\r\nIn town near T2, the crowds were there cheering loudly.\r\n\r\nGot off my bike in and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles.  Got my running shoes on and started off to run a marathon.\r\n\r\nPS several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n\r\n\r\n<p><strong class=\"subhead\">THE RUN</strong></p>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" class=\"alignleft size-full wp-image-174\" />When one leaves transition area two (T2) in an Ironman, you cannot think marathon. You just say are running from here to there and play this mental games with yourself the whole way. It was warm and sunny and about 75 degrees but not too hot. Plus there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So therefore I would pass the finish line 4 times. In this area were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the end the first turn around about 4.5 miles out. I had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake the beginning of each loop, so although brief, it was a nice view. After only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races).  I trained part of the time in the water for my run (deep water running).  This was very helpful as it took the stress of these two areas.  At this point everything was good and I had no pain.  As we passed through the finish line area (middle of the figure eight), we headed out again along a canal. Then we ran under a small foot bridge and onto a small (in width) cobblestone street lined with houses. We ran along this for about 3/4 of a mile then into the town square. People were sitting in cafes and cheering us on. Lots and lots of people. It was about 6 or 7 o\'clock at night and since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and run back to the starting area. I got back to starting point again and got my special needs bag - some extra nutrition. On the second loop my stomach started to feel little funny.  This is something that is very common with Ironman triathletes. Mine only lasted about again 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration or other things. I felt fairly lucky.  I would cheer these fellow athlete on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\nI just kept telling myself to keep going.  One foot after another...just keep going... Part of the way it was shady so that helped a lot too. The sun stays up until 9 o’clock so it never went down while I was running. Mile 18, I got a second wind. Felt very upbeat and in a good place so I was able to pick up pace.\r\nAt that point I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that you normally he runs a lot faster but not today. He told me to try to stay with him and we could talk so the time with go faster. So for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains one has after racing for over 13 hours. There was a small archway as one entered into the city square. There was a small bell on a string that it was hanging from. If you rung the bell (by tapping it with your hand) they would donate money to charity, so I rang it every time I passed it. At the final turn around, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run. The guy I was running with and I just kept talking. He was from Prague where I was going after the race so we were going to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As one comes with closer to the finish line, the noise level is incredible with cheering, cowbells and more. I then heard the announcer say:\r\n<strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling one has when you hear that never gets old.\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\nAnd at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes\r\nMy friend I met on the run the finished right behind me. I then met his wife and three kids.\r\nAfter a few minutes of walking around it was off to the massage tent and get some food.\r\n\r\nPS I finished around 8:30 pm. At 9 pm the sky opened up and it rained hard for about an hour.\r\n I was very fortunate not to go through that.\r\n\r\nI want to make everybody who took the time and effort to watch the update that were on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.\r\nCollectively, I want to thank massage therapist, my acupuncturist and my chiropractor. You all helped get me through.  And wonderful office staff who always took a great interest in what I was doing and put up with my long workouts that made me late sometimes.\r\n\r\nThere a few individuals that need to be singled out individually.\r\n I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.\r\n\r\nAnd then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race. \r\n\r\nI want to thank my very special friend Angela Past.  Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did).  She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time.  Wow!  Thank you so much for your emotional support when I needed it the most.\r\n\r\nAnd last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day.  My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day.  She has never lost faith in me and my abilities... Thank you mom!\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc®&nbsp;and 4X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n\r\n<img alt=\"Race Report 4th Ironman\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" style=\"text-align: center;\" width=\"204\" height=\"370\">\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2019-06-18 05:03:32','2019-06-18 05:03:32','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(2097,8,'2019-06-18 05:03:39','2019-06-18 05:03:39','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong class=\"subhead\">RACE DAY</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n<div class=\"clear\"></div>\r\n<br>\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n<div class=\"clear\"></div>\r\n\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\r\n\r\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\r\n\"Peter Fields, you are an Ironman”,\r\nI knew it was all worthwhile. \r\n\r\n\r\n<strong class=\"subhead\">FINAL THOUGHTS</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg\" alt=\"Ironman Brazil Finish\" width=\"200\" height=\"200\" class=\"alignright size-thumbnail wp-image-199\" />My race may have been slowed down by the problems I had on the run, but I was never discouraged. As my former coach told me, Ironman races are all about damage control. That thought helped me get through this race. I was very pleased that I did not get the two most common problems that affect athletes in an Ironman: stomach problems and/or mechanical problems on the bike.\r\nI felt exhausted and drained but nevertheless very satisfied to have finished my 5th Ironman. Some may ask why I punish my body? I was not punishing it; just challenging it. When one is prepared, it is not a punishment. Plus an Ironman is as much a mental challenge as a physical one.\r\n\r\nI leave you with a quote by the author Viktor Frankl, MD, holocaust survivor and world famous author from his book Man\'s Search For Meaning, which was my dad\'s favorite:\r\n\"Life can be pulled by goals just as surely as it can be pushed by drives.\"\r\n\r\nThere are too many to name, but I want to thank everybody out there who followed me during this race and offered me encouragement. I’d also like to thank everyone else who has written to me and even just thought about me before, during and/or after the race.\r\n\r\nThis race was dedicated to my mother who I lost last year, to my father who I lost 11 years ago and to my uncle who, at 89yo, survived a very tough time recently being in the hospital for 30 days. All three of them have meant a lot to me during my life and have encouraged me to never give up.\r\n\r\nLastly, a big shout out to my brother Norman. No matter where I have raced, he has always followed me the entire race on the computer. I heard him cheering me on the whole way; he has never forgotten his little brother.\r\nThanks bro!\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc® and 5X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n\r\n<a class=\"youtube\" href=\"https://www.youtube.com/watch?v=I-qqF2d40Tw\"><img alt=\"2015 Ironman Brazil Finish\" title=\"2015 Ironman Brazil Finish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-1.jpg\"></a>\r\n<strong><em>2015 Ironman Brazil Finish</em></strong>\r\n<br>\r\n<em><strong style=\"color: #3dbc5e;\">Click image above to view video</strong></em></p>\r\n\r\n<div class=\"clear\">\r\n<a href=\"https://photos.app.goo.gl/l3vcnRmnAzjUIFjy1\" target=\"_blank\" rel=\"noopener noreferrer\">2015 Cozumel<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2019-06-18 05:03:39','2019-06-18 05:03:39','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(2098,8,'2019-06-18 05:03:47','2019-06-18 05:03:47','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">PROLOGUE</strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p>\r\n<strong class=\"subhead\">RACE DAY</strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_248\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]\r\nI ran as quick as I could with my bike shoes on to my bike. You could carry them but then you end up getting gravel on your feet. I took the bike off the rack and ran towards the exit. You\'re not allowed to get on your bike until you leave the transition area. Immediately upon exiting, the transition area, I mounted my bike and took off to start the 112 mile ride.\r\n\r\nI had my power meet on the bike, which in addition to power, would provide me with my heart rate and speed which are essential when riding long distance. The roads were dry and the sun was shining bright and the temperature was in the low eighties. I felt pretty good on the first lap. As you head towards the back of the island the winds pick up. For this approximately 15 mile stretch the winds were about 20 miles an hour blowing on shore. It was tough but not that bad. As you turn towards town to end your first loop the winds were pushing you forward. This was a much needed relief. As you get to town, there were hundreds, if not more, people yelling and cheering. It was very exciting and invigorating. For lap two you again go by some of the hotels and there were people out there cheering.\r\n\r\nAs I got to the back of the island again, the wind picked up and was close to 30 miles an hour. It was getting pretty tough and you just hung in there. Unfortunately this meant that you were down on your triathlon riding bars ( the extended bars you put your forearms on so you can just about lie flat while riding) all the time so as not to let the wind hit you in the chest. It put a tremendous strain on my neck, which I found out later that everybody had the same. You just kept going and going. During this loop, I also stopped at the special needs station at mile 56. This is where you can pick up your nutritional supplies for the second half of the race so you do not need to carry all of them at once. Again as I looped through town the crowds were cheering and it was very nice to get words of encouragement.\r\n\r\nFor the third loop the temperature has risen towards the upper 80\'s and low 90\'s and the winds really were kicking in. Now they were close to 40 miles an hour. It was really brutal. I had ridden this course three times in the past but this time the winds were the strongest . But somehow I kept going and going and managed to endure it. As I made the last turn to head the 9 miles back to town I knew that I had completed this part. Slightly slower than I expected but with the wind it was a slower time for everyone. \r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-run-160.jpg\" alt=\"Cozumel 2015 Run 160\" width=\"160\" height=\"301\" class=\"size-full wp-image-263\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAs I came into town again the crowds were cheering and yelling loudly. I handed off my bike to one of the volunteers there and quickly grabbed my transition bag and ran into the tent. Off with the biking shoes, on with the running shoes, throw some water over myself to help cool me down, put on my running hat, grab some nutrition, go to the bathroom and I was out the door.\r\n\r\nOf course when you transition out of this tent there are thousands of people out there yelling and screaming. The sun was still up so it was still pretty hot with it being in the 90s, But I felt pretty good. For about the first four point 4.4 miles, which is the length of the course (you do this back and forth 3 times) I was a little tight and not so fluid in my running. Along the way of course there are people cheering for about a mile and a half as you get outside of town and then sporadically there were people at hotels who would come out along the road to cheer us on. When I hit the turn around I felt really good and for the next 8.8 miles my legs and body felt really strong. As I got back to town and finished the first 8.8 mile loop the sun was going down which was a blessing because it had been very hot outside.\r\n\r\nThe next 8.8 loop I felt good but the energy was starting to be drained. The bike had taken a tremendous toll, not only on me but on other runners too. But I persevered and kept going. The best thing was my hamstring was not bothering me which had slowed me down during my last two Ironman races. And in May 2015, I had raced Ironman Brazil, where I had a lot of feet problems. None of this came around this time.\r\n\r\nI saw many people out there that I knew from the Los Angeles area or other races. The camaraderie amongst the athletes is tremendous and it\'s something that we all rely on and count on. As I came into town finishing the second loop I knew I only had one more loop to go. I was tired and drained having been racing for almost 12 hrs., but just kept going. Of course along the way I took lots of nutrition and keep myself as hydrated as much as possible. There was no rain this year, which was also nice since the prior previous time I had done this race we were running through knee high puddles.\r\n\r\nAfter leaving town and getting to the final around, I knew only had 4.4 miles left to go and realized that it was in the bag for me. As I came back into town and saw the crowds again, I felt the exhilarating feeling that one can only feel when finishing an Ironman. At this point I only had about a mile to go and knew I have finally done it. That is not only finish my 6th Ironman but my second one in six months . This was a challenge that I set for myself. Like my parents had always told me, set your goals and go for it.\r\nNever say never.\r\n\r\nThe final 100 meters are unbelievable feeling. All ones aches and pains fade away. As I approached the finish line, which is slightly elevated and bathed in lights, I heard the announcer say for the sixth time,\r\n\"Peter Fields, you are an Ironman\".\r\nIt never gets old.\r\nI finally knew that I had completed my conquest of doing two Ironman races in one year.\r\n\r\nOf course the whole way during the race, I never forgot about my parents. I had my mom’s initials written on my left arm and on my right arm I had my dad\'s initials. Both of these people were so special in my life and I have never forgotten them for even one day since each of them passed. Whenever it got tough, I would place my hand on either forearm and feel their presence within me and hear their words of encouragement telling me never to give up. I know they would have been as proud of me as I am of them.\r\n\r\nI want to thank everybody who sent me good wishes, those who kept me in their thoughts and those who followed me on the internet. All your thoughts and wishes kept me strong the whole race.\r\nThere were a few very special people that never stopped thinking about me the whole race. You know who you are and words cannot say thank you enough. \r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc® and 6X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Ironman Cozumel Mexico\" title=\"Ironman Cozumel Mexico\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-1.jpg\" style=\"width: 204px; height: 345px;\">\r\nDr. Fields at the finish line\r\n<a href=\"https://goo.gl/photos/mMnjj9ioLVRkh56Q9\" target=\"_blank\" rel=\"noopener noreferrer\">2015 Cozumel<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2019-06-18 05:03:47','2019-06-18 05:03:47','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(2099,8,'2019-06-18 05:04:00','2019-06-18 05:04:00','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\n[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]After each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Dr. Fields, The Athletic Doc®, post race\" title=\"Dr. Fields, The Athletic Doc®, post race\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-2016-275.jpg\" style=\"width: 204px;\"><br>\r\n<strong> Dr. Fields,The Athletic Doc<span style=\"font-size: 10px;\"><sup>®</sup></span>, post race</strong>\r\n<a href=\"https://goo.gl/photos/iYRMcML2UYWmW2pQ6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Switzerland<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2019-06-18 05:04:00','2019-06-18 05:04:00','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(2100,8,'2019-06-18 05:04:08','2019-06-18 05:04:08','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\r\n\r\n<h6 class=\"text-center\">Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong><span>GETTING THERE</span></strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n\r\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n\r\n\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /><strong>Swim Start with his parents initials on his forearms</strong>[/caption]<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\nThe swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n<div class=\"clear\"></div>\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> <strong>Dr. Fields during the 26.2 mile run</strong>[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" class=\"size-full wp-image-332\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\r\n\r\n<div class=\"clear\"></div>\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 8X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"post race pic\" title=\"post race pic\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finisher-275.jpg\"><br>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong> <br>\r\nThe Athletic Doc<span style=\"font-size: 10px;\"><sup>®</sup></span>, </strong></span>post race pic\r\n<a href=\"https://goo.gl/photos/WqU8aVsvXa5SgLLo6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Cozumel<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2019-06-18 05:04:08','2019-06-18 05:04:08','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(2101,8,'2019-06-18 05:04:18','2019-06-18 05:04:18','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-santa-rosa-logo-blue.jpg\" alt=\"Ironman Santa Rosa Logo Blue\" width=\"230\" height=\"120\" class=\"aligncenter size-full wp-image-349\" />\r\n\r\n<h6 class=\"text-center\">Saturday July 29, 2017\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<p class=\"text-center\">\"Always keep moving forward in life\"\r\nYvette and Fred Fields</p>\r\n\r\nHere is my report on my 9th Ironman Triathlon.\r\n\r\n[caption id=\"attachment_355\" align=\"alignleft\" width=\"275\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg\" alt=\"Ironman Santa Rosa Snoopy\" width=\"275\" height=\"240\" class=\"size-full wp-image-355\" /><strong>Dr. Fields and Snoopy</strong>[/caption]<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\nThis one was a lot easier to get to than the others as it was my first Ironman in the US. Since it was in northern California, it was only a one hour and 20 minute flight up to Santa Rosa.  At the airport, I was greeted by Snoopy and Charlie Brown, as Santa Rosa is the home of Charles Schulz, the creator of Peanuts.  They both offered me encouragement on my race! Then it was driving into town, getting settled in and picking up my registration packet.  The next two days was spent checking out the course and trying to relax.\r\n\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">RACE DAY MORNING</strong>\r\n\r\nThis race was a bit different than other races. The lake where we swam in, Lake Sonoma, is 40 miles from downtown. This is very unusual when it is usually right at the start or within a few miles of the transition area.  So we had to report for buses leaving at 4 a.m. from the downtown area. This necessitated waking up around 2:30 so that I could have a proper breakfast. Then I had to drive down to the downtown area, park the car and walk over to where the buses were.  Fortunately my bike and other gear was already at the lake.  All I had with me was my nutrition and swimming gear. After that it was a one hour bus ride up to the lake, getting settled in by checking my bike, pumping the tires, filling the water bottles and loading the nutrition on the bike.  Then it was time to head down to the lake front. The day before, the water had been very warm, but the morning of the race they determined that it was still wetsuit legal (below 76 degrees). Since everyone else was wearing a I decided to wear one even though I get very warm in it.\r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_354\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg\" alt=\"Ironman Santa Rosa Swim\" width=\"160\" height=\"240\" class=\"size-full wp-image-354\" /><strong>Swim Finish with his parents initials on his forearms</strong>[/caption]As we lined up to start to get in the water there were a few people without wetsuits. At that point, I thought maybe I should not have worn my wetsuit. Swimming is my best sport and the wetsuit does get restrictive in my arm swing, but I decided to keep it on anyway. As I entered the water I realized that the water was very warm. Since it was crowded, I stayed towards the outside of the swimmers because the fast swimmer group I was in can get very aggressive. Halfway through the first loop I realized I was getting too warm and I really didn\'t need the wetsuit. I made the unusual decision that when we ended the first lap I would take off the wetsuit. This first lap ended where you ran out on to the landing and back into the water. Usually this is at least 20, 30 or even 40 yards, but this time it was just a short little loop in and out of the water. As I came up onto the ramp I grabbed the leash that is attached to my zipper and pulled it down. Two race officials saw me doing this and asked I wanted help getting it off. This was a blessing. So I flopped down on the ground and they quickly pulled off the legs of my wetsuit (the hardest part to get off). Then I was back in the water. I lost a little time doing this but it was well worth it. The second lap went a lot better as I was not overheating. When you finished the swim there is a quarter-mile very steep hill that you must go up to get to your bicycle. They told people you cannot leave shoes or other foot gear down at the bottom. So most of us did not. But some people left shoes halfway up the hill. This was a violation of the rules but no one said anything. They did have some artificial grass type material down so that the road up was not too tough. But the hill is quite steep and many people, including myself, walked or fast walked most of the way so as not to exhaust ourselves for the bike ride. Quickly into the transition area, grab my gear, change in the tent and got onto my bike to begin the 112 mile ride.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_353\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg\" alt=\"Ironman Santa Rosa Bike 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-353\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]The bike had four thousand feet of climbing. I prepared for this so overall it was not too bad. It did start out with a small climb as we left the lake area. Then through some areas around wineries. Lots of wineries; at least 30 or more. It was not as scenic as other Ironman I have done because we did ride along a highway several times but pleasant when going by wineries.\r\n\r\nUnfortunately, the roads were not in great shape. There are a lot of uneven areas as well as small little potholes. This was even more difficult as it was extremely sunny. When you would go through an area that was shaded you could not see the road since you were wearing dark sunglasses. This made for an uncomfortable ride. Right before we got to town, at about the 65-mile mark, I got a flat. I did not notice it at first but as my speed dropped and I was pushing even harder, I had to get off the bike and check. Sure enough, the tire was flat. And it was the back tire, which takes more to change. But to my surprise, as I dismounted, one of the repair vehicles that circles the bike course (there were three or four of them) pulled up right behind me. What luck! The mechanic grabbed his pump and had my tire changed, pumped up and ready to go in less than two minutes. Faster I could have ever have done it. And without greasy hands too!\r\n\r\nSo back on the bike, I finally got to town where we than had to ride two 17-mile loops. This was invigorating as the crowd was there. Unfortunately, on these loops, the road got even worse. They were areas that were so bumpy one of the following riders said he thought he lost a crown. We all laughed. Although they predicted it to be in the 90s, it only went to about 86 or 87 degrees. But it was very sunny with no wind and with minimal shade, so it did get warm. All in all, I had a good bike ride.\r\n\r\nSo, as we entered town on the last loop, the crowds were cheering. The race had bike handlers as one gets off your bike, which are people who take your bike and rack it for you. Unfortunately, the race being slightly disorganized, they racked the bikes right there and then had the change tents after that. That meant you had to run about 50 yards alongside the bike rack areas in your bike shoes. Most places have it the other way around. But either way, it is always nice to get off the bike after 112 miles. Then it was into T2 tent and change into running shoes, visor, down some nutrition and out for the 26.2 mile marathon run.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_352\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg\" alt=\"Ironman Santa Rosa Run 2\" width=\"160\" height=\"288\" class=\"size-full wp-image-352\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]As we left the change tent, there were lots of people yelling and screaming encouragement. This was a good thing. It was now very sunny and very warm outside. Most of the run was done along a dry riverbed. There were some crowds at the beginning but not many after that. There was some shade but not everywhere, so the sun took its toll. There were several times you had to go over a little bridge, cross over the river bed and then come back, so the run was entirely flat. During the run, I had some difficulties with my foot which had been a common occurrence for me lately. Fortunately, I could adjust my running gait and keep going. The first 8.8 miles (the first loop) was pretty good. On the second one the foot pain got stronger and I had to walk/run quite a bit. But, as always, I just kept moving forward. There were a lot of runners out there for support. And of course, I was supporting the others that we’re not doing well. Being with the other athletes gave me tremendous moral support and the will to not give up. The second loop was tough as it took place during the 11th and 13th hours of racing, so keeping ones mind occupied is imperative. Dealing with my foot pain plus the physical and mental exhaustion that one experiences in an Ironman is always a challenge. As I began the third loop, I knew that if I made it to the turnaround at 4.4 miles, I was home free. As I made the final turn to head back towards town I knew that no matter how tough things got I was going to make it.[caption id=\"attachment_351\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" width=\"160\" height=\"288\" class=\"size-full wp-image-351\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I encouraged those that I passed as well as the ones that were only on their second loop. As I exited the riverbed area up onto the streets, I thought I only had less than a quarter mile to go, when in fact it was really over half a mile. Just then a guy ran up to me and said, “Hey Peter you\'re doing great”. I did not recognize him but I had my name on my running bib and thought he just saw that. He ran alongside of me and told me that his girlfriend was not far behind. He told me her name and that did not ring a bell either. It really didn’t matter as he was encouraging me, which was needed at that tme. He finally turned around to go back to meet her. As I ran off, the energy that he had given me would carry me the rest of the way. As I came down the final stretch I knew I was going to finish my 9th Ironman Triathlon. It was tough but Ironman are never easy. The exhilaration and enthusiasm of the crowd, and hearing the announcer say, ” Peter Fields, you are an Ironman!”, never gets old. Never.\r\n\r\nAs I came through the shoot and they took my pictures, I looked over and there was the young guy who I had seen as I exited the riverbed.  As I approached him, I recognized him as the son of one of my best friends.  We both laughed and embraced and I told him how appreciative I was for his encouragement.\r\n<div class=\"clear\"></div>\r\n<strong class=\"subhead\">POST SCRIPT</strong>\r\n\r\nThese races are not only a physical challenge but also a mental challenge. With the difficulties with the wetsuit, the warm water, the uneven roads, the heat, the flat tire and my foot problems on the run, this was not an easy race. But again, I persevered.\r\n\r\nI always keep a remembrance of my parents with me at all times in my race jersey pocket. When things would get bad, I would reach back and touch it and say thanks mom and dad for being with me. This kept me going through any difficulties I was having at the time. With all their struggles in their lives (fleeing near certain death in fascist Germany, emigrating with almost nothing, meeting each other in the US and building a new life and more), they just kept moving forward and never looked back. They taught me over and over again, that no matter how tough things get in life just keep putting one foot in front of the other and keep going. They supported me no matter what I did as long as I had my heart and mind in it. On this day, and every day of my life, I knew they are with me all the way.\r\n\r\nAs I said after they passed “You are not dead, dead or only those that one forgets”. I will never forget them as they never forgot me. This, and all of my races, are dedicated in their honor. I therefore start each race with their initials marked on my forearms.\r\n\r\nI want to thank you for taking the time to read this and for supporting me, whether on line, thinking about me or reading this.\r\n\r\n\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 9X Ironman Triathlete</strong>\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n	<a class=\"youtube\" href=\"https://www.youtube.com/watch?v=ds0_hCW9WA4\"><img alt=\"Ironman Santa Rosa Finisher\" title=\"Ironman Santa Rosa Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finisher-2.jpg\"></a>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong> <br>\r\nThe Athletic Doc<sup>®</sup>,<br>\r\n</strong></span>Post race pic<br>\r\n<br>\r\n<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em></p>\r\n<a href=\"https://photos.google.com/share/AF1QipOZKCkaR9a0fl-OfBkXj-Z46M__ixhQOKqFQiAB_sf0rQDWmGsv_NdpwYlUbChPfw?key=MWNqUHJtR0hwSmdyVVFxQ2t1WmY3ZkVTYlNFZ2FB\" target=\"_blank\" rel=\"noopener noreferrer\">2017 Santa Rosa<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n</div>','Race Report 9th Ironman','','inherit','closed','closed','','348-revision-v1','','','2019-06-18 05:04:18','2019-06-18 05:04:18','',348,'https://www.drfields.com/uncategorized/348-revision-v1/',0,'revision','',0),(2107,8,'2019-06-18 07:41:05','2019-06-18 07:41:05','<p>&nbsp; </p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed (310) 453-1212 to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<p ><u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.</p>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2019-06-18 07:41:05','2019-06-18 07:41:05','',207,'https://www.drfields.com/uncategorized/207-revision-v1/',0,'revision','',0),(2108,8,'2019-06-18 07:42:11','2019-06-18 07:42:11','<h6>Fees</h6>\r\n\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time. \r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you instil pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\nWoman Paying\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>. \r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Fees & Policies','','inherit','closed','closed','','202-revision-v1','','','2019-06-18 07:42:11','2019-06-18 07:42:11','',202,'https://www.drfields.com/uncategorized/202-revision-v1/',0,'revision','',0),(2109,8,'2019-06-18 08:08:15','2019-06-18 08:08:15','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Non-Surgical Carpal Tunnel Treatment\" href=\"/articles/non-surgical-carpal-tunnel-treatment/\">Non-Surgical Carpal Tunnel Treatment</a></li>\r\n 	<li><a title=\"Osteoarthritis Knee Treatment\" href=\"/articles/osteoarthritis-knee-treatment/\">Osteoarthritis Knee Treatment</a></li>\r\n 	<li><a title=\"Hip Replacement Alternatives\" href=\"/articles/hip-replacement-alternatives/\">Hip Replacement Alternatives</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/acl-tear-repair/\">ACL TEAR Repair</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/foot-pain-treatment/\">Foot Pain Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/arthritis-neck-treatment/\">Arthritis Neck Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/back-pain-specialist/\">Back Pain Specialist</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','publish','closed','closed','','home','','','2023-09-20 02:30:20','2023-09-20 02:30:20','',0,'https://www.drfields.com/?page_id=2109',0,'page','',0),(2110,8,'2019-06-18 08:08:15','2019-06-18 08:08:15','\r\n<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div class=\"item\" id=\"slide1\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Congratulations Peter A. Fields, MD, DC</span><br>\r\n<span class=\"header_text_second\">The Athletic Doc® successfully climbed</span><br>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in Tanzania, Africa.19,341 feet!!!</span><br>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide2\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">New Article By Dr. Fields</span><br>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span><br>\r\n<span class=\"header_text_third\"> </span><br>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n\r\n<div class=\"item\" id=\"slide3\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints & Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide4\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Get Back In The Game!</span><br>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span><br>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Get Help Now!</a>\r\n</div>\r\n</div>\r\n</div>		\r\n	\r\n<div class=\"item\" id=\"slide5\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n	\r\n	\r\n<div class=\"col-md-4 box1\">\r\n<smalltext>What\'s</smalltext>\r\n<h3>New</h3>\r\n<ul>\r\n    <li><a href=\"/Office-Move\">Visit us at Our Location!</a></li>\r\n    <li><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n    <li class=\"last\"><a href=\"/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n    <li class=\"last\"><a href=\"/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n    <li class=\"last\"><a href=\"/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>	\r\n</div>\r\n	\r\n<div class=\"col-md-4 box2\" id=\"testimonials\">\r\n<smalltext>Patient</smalltext>\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n<p>\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>	\r\n</div>\r\n<div class=\"testimonial-item\">\r\n<p>\"I highly recommend it to anyone who needs to recover fast and get back out there.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>	\r\n</div>\r\n\r\n<div class=\"testimonial-item\">\r\n<p>\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n<div class=\"col-md-4 box3\">\r\n<smalltext>News &</smalltext>\r\n<h3>Events</h3>		\r\n<ul>\r\n    <li><a href=\"Articles/Health-News/Mexico-City-Lecture-2018\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Lectured in Mexico City&nbsp;</a></li>\r\n    <li><a href=\"Articles/Health-News/A5M-Conference-Australia-2017\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia&nbsp;</a></li>\r\n</ul>	\r\n</div>		\r\n	\r\n</div>\r\n</div>	\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span>&nbsp;by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\">	\r\n	</div>\r\n	<div class=\"col-md-7 about_holder\">\r\n\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor<br>\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"icon info\" title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\n<p>Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...</p>\r\n<a href=\"/about/bio-dr-fields/\" class=\"secondaryButton\">Read More</a></div>\r\n</div>\r\n\r\n	\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"Man Icon\" title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>	\r\n<p>Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...</p>\r\n<a class=\"secondaryButton\" href=\"/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a></div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n\r\n<div class=\"jumbotron-fluid\" id=\"tabs-section\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4\">\r\n<h1>Regenerative Techniques</h1>\r\n<ul id=\"faq-list\">\r\n<li>\r\n<a data-toggle=\"collapse\" class=\"collapsed\" href=\"#faq1\">Stem Cell <span class=\" icon-minus\"></span></a>\r\n<div id=\"faq1\" class=\"collapse\" data-parent=\"#faq-list\">\r\n<div class=\"accordion_image\"><a href=\"/Regenerative-Techniques/stem-cell-treatment/\"><img alt=\" stem green Cells\" title=\"stem green Cells\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-cells-green-2-small.jpg\"></a></div>	\r\n<a class=\"accordion_text\" href=\"/Regenerative-Techniques/stem-cell-treatment/\">Stem Cell is a great option for people who have been told they need joint replacement surgery.</a>\r\n</div>\r\n</li>\r\n<li>\r\n<a data-toggle=\"collapse\" href=\"#faq2\" class=\"collapsed\">PRP <span class=\" icon-minus\"></span></a>\r\n<div id=\"faq2\" class=\"collapse\" data-parent=\"#faq-list\">\r\n<div class=\"accordion_image\"><a href=\"/Regenerative-Techniques/PRP-Treatment\"><img alt=\"Blood Cells\" title=\"Blood Cells\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/blood-cell.jpg\"></a></div>	\r\n<a class=\"accordion_text\" href=\"/Regenerative-Techniques/PRP-Treatment\">PRP or Platelet Rich Plasma is a treatment for acute or chronic musculoskeletal injury or pain.</a>\r\n</div>\r\n</li>\r\n<li>\r\n<a data-toggle=\"collapse\" href=\"#faq3\" class=\"collapsed\">Prolotherapy<span class=\" icon-minus\"></span></a>\r\n<div id=\"faq3\" class=\"collapse\" data-parent=\"#faq-list\">\r\n<div class=\"accordion_image\"><a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\"><img alt=\"Blue Cells\" title=\"Blue Cells\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cells-blue-thumb.jpg\"></a></div>	\r\n<a class=\"accordion_text\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Whether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you</a>\r\n</div>\r\n</li>\r\n</ul>	\r\n</div>\r\n	\r\n<div class=\"col-md-4\">\r\n<h1>Articles</h1>\r\n<ul class=\"main\">\r\n<li><a href=\"/Snapping-Hip-Syndrome\">Snapping Hip Syndrome</a></li>\r\n<li><a href=\"/Articles/Prolo-News/Is-There-Help-for-Arthritis\">Is There help For Arthritis?&nbsp;</a></li>\r\n<li><span style=\"line-height:inherit;outline-offset:-2px;color:#989898\"><a href=\"/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></span></li>\r\n<li><a href=\"/Articles/Health-News/Knee-and-hip-replacements-increase-heart-attack-risk-briefly\">Knee And Hip Replacements Increase Heart Attack Risk Briefly</a></li>\r\n<li><a href=\"/Articles/A-wonderful-ending-to-an-almost-disastrous-event\">A wonderful ending to an almost disastrous event</a></li>\r\n<li><a href=\"/Articles/Prolo-News/How-to-Avoid-Joint-Spine-Surgery-and-Live-Pain-Free\">How To Avoid Joint &amp; Spine Surgery And Live Pain Free</a></li>\r\n</ul>	\r\n</div>	\r\n	\r\n<div class=\"col-md-4\">\r\n<h1>TV & Radio</h1>	\r\n<div class=\"tabs\">\r\n  <input type=\"radio\" name=\"tabs\" id=\"tabone\" checked=\"checked\">\r\n	<label for=\"tabone\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/tv-show-logo.png\"></label>\r\n  <div class=\"tab\">\r\n  <a href=\"/doc-on-tv\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/media-placeholder.jpg\"></a>\r\n    <p>Dr. Fields on National TV</p>\r\n  </div>\r\n  \r\n<input type=\"radio\" name=\"tabs\" id=\"tabtwo\">\r\n<label for=\"tabtwo\">Videos</label>\r\n<div class=\"tab\">\r\n<div class=\"owl-carousel video-carousel\">\r\n<div class=\"item\">\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\'); ?>\r\n<p>Dr. Fields Lectures in Las Vegas to 400+ Physicians</p>	\r\n</div>\r\n<div class=\"item\">\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\'); ?>\r\n<p>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</p>	\r\n</div>\r\n<div class=\"item\">\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\'); ?>\r\n<p>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</p>	\r\n</div>\r\n<div class=\"item\">\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\'); ?>\r\n<p>Interview with Dr. Fields</p>	\r\n</div>		\r\n</div>\r\n</div>\r\n  \r\n  <input type=\"radio\" name=\"tabs\" id=\"tabthree\">\r\n  <label for=\"tabthree\">Radio</label>\r\n  <div class=\"tab\">\r\n   <a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\"><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;Dr. Fields on the Radio</a>\r\n  </div>\r\n</div>	\r\n</div>		\r\n	\r\n</div>\r\n</div>	\r\n<div class=\"clear\"></div>	\r\n','Homepage','','inherit','closed','closed','','2109-revision-v1','','','2019-06-18 08:08:15','2019-06-18 08:08:15','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2112,8,'2019-06-18 08:15:20','2019-06-18 08:15:20','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div class=\"item\" id=\"slide1\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Congratulations Peter A. Fields, MD, DC</span><br>\r\n<span class=\"header_text_second\">The Athletic Doc® successfully climbed</span><br>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in Tanzania, Africa.19,341 feet!!!</span><br>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide2\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">New Article By Dr. Fields</span><br>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span><br>\r\n<span class=\"header_text_third\"> </span><br>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n\r\n<div class=\"item\" id=\"slide3\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints & Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide4\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Get Back In The Game!</span><br>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span><br>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Get Help Now!</a>\r\n</div>\r\n</div>\r\n</div>		\r\n	\r\n<div class=\"item\" id=\"slide5\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n	\r\n	\r\n<div class=\"col-md-4 box1\">\r\n<smalltext>What\'s</smalltext>\r\n<h3>New</h3>\r\n<ul>\r\n    <li><a href=\"/Office-Move\">Visit us at Our Location!</a></li>\r\n    <li><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n    <li class=\"last\"><a href=\"/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n    <li class=\"last\"><a href=\"/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n    <li class=\"last\"><a href=\"/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>	\r\n</div>\r\n	\r\n<div class=\"col-md-4 box2\" id=\"testimonials\">\r\n<smalltext>Patient</smalltext>\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n<p>\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>	\r\n</div>\r\n<div class=\"testimonial-item\">\r\n<p>\"I highly recommend it to anyone who needs to recover fast and get back out there.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>	\r\n</div>\r\n\r\n<div class=\"testimonial-item\">\r\n<p>\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n<div class=\"col-md-4 box3\">\r\n<smalltext>News &</smalltext>\r\n<h3>Events</h3>		\r\n<ul>\r\n    <li><a href=\"Articles/Health-News/Mexico-City-Lecture-2018\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Lectured in Mexico City&nbsp;</a></li>\r\n    <li><a href=\"Articles/Health-News/A5M-Conference-Australia-2017\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia&nbsp;</a></li>\r\n</ul>	\r\n</div>		\r\n	\r\n</div>\r\n</div>	\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span>&nbsp;by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\">	\r\n	</div>\r\n	<div class=\"col-md-7 about_holder\">\r\n\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor<br>\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"icon info\" title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\n<p>Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...</p>\r\n<a href=\"/about/bio-dr-fields/\" class=\"secondaryButton\">Read More</a></div>\r\n</div>\r\n\r\n	\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"Man Icon\" title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>	\r\n<p>Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...</p>\r\n<a class=\"secondaryButton\" href=\"/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a></div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n\r\n<div class=\"jumbotron-fluid\" id=\"tabs-section\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4\">\r\n<h1>Regenerative Techniques</h1>\r\n<ul id=\"faq-list\">\r\n<li>\r\n<a data-toggle=\"collapse\" class=\"collapsed\" href=\"#faq1\">Stem Cell <span class=\" icon-minus\"></span></a>\r\n<div id=\"faq1\" class=\"collapse\" data-parent=\"#faq-list\">\r\n<div class=\"accordion_image\"><a href=\"/Regenerative-Techniques/stem-cell-treatment/\"><img alt=\" stem green Cells\" title=\"stem green Cells\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-cells-green-2-small.jpg\"></a></div>	\r\n<a class=\"accordion_text\" href=\"/Regenerative-Techniques/stem-cell-treatment/\">Stem Cell is a great option for people who have been told they need joint replacement surgery.</a>\r\n</div>\r\n</li>\r\n<li>\r\n<a data-toggle=\"collapse\" href=\"#faq2\" class=\"collapsed\">PRP <span class=\" icon-minus\"></span></a>\r\n<div id=\"faq2\" class=\"collapse\" data-parent=\"#faq-list\">\r\n<div class=\"accordion_image\"><a href=\"/Regenerative-Techniques/PRP-Treatment\"><img alt=\"Blood Cells\" title=\"Blood Cells\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/blood-cell.jpg\"></a></div>	\r\n<a class=\"accordion_text\" href=\"/Regenerative-Techniques/PRP-Treatment\">PRP or Platelet Rich Plasma is a treatment for acute or chronic musculoskeletal injury or pain.</a>\r\n</div>\r\n</li>\r\n<li>\r\n<a data-toggle=\"collapse\" href=\"#faq3\" class=\"collapsed\">Prolotherapy<span class=\" icon-minus\"></span></a>\r\n<div id=\"faq3\" class=\"collapse\" data-parent=\"#faq-list\">\r\n<div class=\"accordion_image\"><a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\"><img alt=\"Blue Cells\" title=\"Blue Cells\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cells-blue-thumb.jpg\"></a></div>	\r\n<a class=\"accordion_text\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Whether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you</a>\r\n</div>\r\n</li>\r\n</ul>	\r\n</div>\r\n	\r\n<div class=\"col-md-4\">\r\n<h1>Articles</h1>\r\n<ul class=\"main\">\r\n<li><a href=\"/Snapping-Hip-Syndrome\">Snapping Hip Syndrome</a></li>\r\n<li><a href=\"/Articles/Prolo-News/Is-There-Help-for-Arthritis\">Is There help For Arthritis?&nbsp;</a></li>\r\n<li><span style=\"line-height:inherit;outline-offset:-2px;color:#989898\"><a href=\"/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></span></li>\r\n<li><a href=\"/Articles/Health-News/Knee-and-hip-replacements-increase-heart-attack-risk-briefly\">Knee And Hip Replacements Increase Heart Attack Risk Briefly</a></li>\r\n<li><a href=\"/Articles/A-wonderful-ending-to-an-almost-disastrous-event\">A wonderful ending to an almost disastrous event</a></li>\r\n<li><a href=\"/Articles/Prolo-News/How-to-Avoid-Joint-Spine-Surgery-and-Live-Pain-Free\">How To Avoid Joint &amp; Spine Surgery And Live Pain Free</a></li>\r\n</ul>	\r\n</div>	\r\n	\r\n<div class=\"col-md-4\">\r\n<h1>TV & Radio</h1>	\r\n<div class=\"tabs\">\r\n<input type=\"radio\" name=\"tabs\" id=\"tabone\" checked=\"checked\">\r\n<label for=\"tabone\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/tv-show-logo.png\"></label>\r\n<div class=\"tab\">\r\n<a href=\"/doc-on-tv\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/media-placeholder.jpg\"></a>\r\n<p>Dr. Fields on National TV</p>\r\n</div>\r\n  \r\n<input type=\"radio\" name=\"tabs\" id=\"tabtwo\">\r\n<label for=\"tabtwo\">Videos</label>\r\n<div class=\"tab\">\r\n<div class=\"owl-carousel video-carousel\">\r\n<div class=\"item\">\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\'); ?>\r\n<p>Dr. Fields Lectures in Las Vegas to 400+ Physicians</p>	\r\n</div>\r\n<div class=\"item\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<p>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</p>	\r\n</div>\r\n<div class=\"item\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<p>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</p>	\r\n</div>\r\n<div class=\"item\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<p>Interview with Dr. Fields</p>	\r\n</div>		\r\n</div>\r\n</div>\r\n  \r\n<input type=\"radio\" name=\"tabs\" id=\"tabthree\">\r\n<label for=\"tabthree\">Radio</label>\r\n<div class=\"tab\">\r\n<a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\"><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;Dr. Fields on the Radio</a>\r\n</div>\r\n</div>	\r\n</div>		\r\n</div>\r\n</div>	\r\n\r\n','Homepage','','inherit','closed','closed','','2109-revision-v1','','','2019-06-18 08:15:20','2019-06-18 08:15:20','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2113,8,'2019-06-18 08:17:01','2019-06-18 08:17:01','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div class=\"item\" id=\"slide1\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Congratulations Peter A. Fields, MD, DC</span><br>\r\n<span class=\"header_text_second\">The Athletic Doc® successfully climbed</span><br>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in Tanzania, Africa.19,341 feet!!!</span><br>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide2\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">New Article By Dr. Fields</span><br>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span><br>\r\n<span class=\"header_text_third\"> </span><br>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n\r\n<div class=\"item\" id=\"slide3\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints & Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide4\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Get Back In The Game!</span><br>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span><br>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Get Help Now!</a>\r\n</div>\r\n</div>\r\n</div>		\r\n	\r\n<div class=\"item\" id=\"slide5\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n	\r\n	\r\n<div class=\"col-md-4 box1\">\r\n<smalltext>What\'s</smalltext>\r\n<h3>New</h3>\r\n<ul>\r\n    <li><a href=\"/Office-Move\">Visit us at Our Location!</a></li>\r\n    <li><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n    <li class=\"last\"><a href=\"/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n    <li class=\"last\"><a href=\"/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n    <li class=\"last\"><a href=\"/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>	\r\n</div>\r\n	\r\n<div class=\"col-md-4 box2\" id=\"testimonials\">\r\n<smalltext>Patient</smalltext>\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n<p>\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>	\r\n</div>\r\n<div class=\"testimonial-item\">\r\n<p>\"I highly recommend it to anyone who needs to recover fast and get back out there.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>	\r\n</div>\r\n\r\n<div class=\"testimonial-item\">\r\n<p>\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n<div class=\"col-md-4 box3\">\r\n<smalltext>News &</smalltext>\r\n<h3>Events</h3>		\r\n<ul>\r\n    <li><a href=\"Articles/Health-News/Mexico-City-Lecture-2018\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Lectured in Mexico City&nbsp;</a></li>\r\n    <li><a href=\"Articles/Health-News/A5M-Conference-Australia-2017\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia&nbsp;</a></li>\r\n</ul>	\r\n</div>		\r\n	\r\n</div>\r\n</div>	\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span>&nbsp;by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\">	\r\n	</div>\r\n	<div class=\"col-md-7 about_holder\">\r\n\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor<br>\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"icon info\" title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\n<p>Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...</p>\r\n<a href=\"/about/bio-dr-fields/\" class=\"secondaryButton\">Read More</a></div>\r\n</div>\r\n\r\n	\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"Man Icon\" title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>	\r\n<p>Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...</p>\r\n<a class=\"secondaryButton\" href=\"/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a></div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n','Homepage','','inherit','closed','closed','','2109-revision-v1','','','2019-06-18 08:17:01','2019-06-18 08:17:01','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2114,8,'2019-06-18 08:18:22','2019-06-18 08:18:22','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div class=\"item\" id=\"slide1\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Congratulations Peter A. Fields, MD, DC</span><br>\r\n<span class=\"header_text_second\">The Athletic Doc® successfully climbed</span><br>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in Tanzania, Africa.19,341 feet!!!</span><br>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide2\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">New Article By Dr. Fields</span><br>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span><br>\r\n<span class=\"header_text_third\"> </span><br>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n\r\n<div class=\"item\" id=\"slide3\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints & Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide4\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Get Back In The Game!</span><br>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span><br>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Get Help Now!</a>\r\n</div>\r\n</div>\r\n</div>		\r\n	\r\n<div class=\"item\" id=\"slide5\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n	\r\n	\r\n<div class=\"col-md-4 box1\">\r\n<smalltext>What\'s</smalltext>\r\n<h3>New</h3>\r\n<ul>\r\n    <li><a href=\"/Office-Move\">Visit us at Our Location!</a></li>\r\n    <li><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n    <li class=\"last\"><a href=\"/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n    <li class=\"last\"><a href=\"/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n    <li class=\"last\"><a href=\"/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>	\r\n</div>\r\n	\r\n<div class=\"col-md-4 box2\" id=\"testimonials\">\r\n<smalltext>Patient</smalltext>\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n<p>\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>	\r\n</div>\r\n<div class=\"testimonial-item\">\r\n<p>\"I highly recommend it to anyone who needs to recover fast and get back out there.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>	\r\n</div>\r\n\r\n<div class=\"testimonial-item\">\r\n<p>\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n<div class=\"col-md-4 box3\">\r\n<smalltext>News &</smalltext>\r\n<h3>Events</h3>		\r\n<ul>\r\n    <li><a href=\"Articles/Health-News/Mexico-City-Lecture-2018\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Lectured in Mexico City&nbsp;</a></li>\r\n    <li><a href=\"Articles/Health-News/A5M-Conference-Australia-2017\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia&nbsp;</a></li>\r\n</ul>	\r\n</div>		\r\n	\r\n</div>\r\n</div>	\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span>&nbsp;by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\">	\r\n	</div>\r\n	<div class=\"col-md-7 about_holder\">\r\n\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor<br>\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"icon info\" title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\n<p>Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...</p>\r\n<a href=\"/about/bio-dr-fields/\" class=\"secondaryButton\">Read More</a></div>\r\n</div>\r\n\r\n	\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"Man Icon\" title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>	\r\n<p>Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...</p>\r\n<a class=\"secondaryButton\" href=\"/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a></div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n\r\n<div class=\"jumbotron-fluid\" id=\"tabs-section\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4\">\r\n<h1>Regenerative Techniques</h1>\r\n<ul id=\"faq-list\">\r\n<li>\r\n<a data-toggle=\"collapse\" class=\"collapsed\" href=\"#faq1\">Stem Cell <span class=\" icon-minus\"></span></a>\r\n<div id=\"faq1\" class=\"collapse\" data-parent=\"#faq-list\">\r\n<div class=\"accordion_image\"><a href=\"/Regenerative-Techniques/stem-cell-treatment/\"><img alt=\" stem green Cells\" title=\"stem green Cells\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-cells-green-2-small.jpg\"></a></div>	\r\n<a class=\"accordion_text\" href=\"/Regenerative-Techniques/stem-cell-treatment/\">Stem Cell is a great option for people who have been told they need joint replacement surgery.</a>\r\n</div>\r\n</li>\r\n<li>\r\n<a data-toggle=\"collapse\" href=\"#faq2\" class=\"collapsed\">PRP <span class=\" icon-minus\"></span></a>\r\n<div id=\"faq2\" class=\"collapse\" data-parent=\"#faq-list\">\r\n<div class=\"accordion_image\"><a href=\"/Regenerative-Techniques/PRP-Treatment\"><img alt=\"Blood Cells\" title=\"Blood Cells\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/blood-cell.jpg\"></a></div>	\r\n<a class=\"accordion_text\" href=\"/Regenerative-Techniques/PRP-Treatment\">PRP or Platelet Rich Plasma is a treatment for acute or chronic musculoskeletal injury or pain.</a>\r\n</div>\r\n</li>\r\n<li>\r\n<a data-toggle=\"collapse\" href=\"#faq3\" class=\"collapsed\">Prolotherapy<span class=\" icon-minus\"></span></a>\r\n<div id=\"faq3\" class=\"collapse\" data-parent=\"#faq-list\">\r\n<div class=\"accordion_image\"><a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\"><img alt=\"Blue Cells\" title=\"Blue Cells\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cells-blue-thumb.jpg\"></a></div>	\r\n<a class=\"accordion_text\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Whether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you</a>\r\n</div>\r\n</li>\r\n</ul>	\r\n</div>\r\n	\r\n<div class=\"col-md-4\">\r\n<h1>Articles</h1>\r\n<ul class=\"main\">\r\n<li><a href=\"/Snapping-Hip-Syndrome\">Snapping Hip Syndrome</a></li>\r\n<li><a href=\"/Articles/Prolo-News/Is-There-Help-for-Arthritis\">Is There help For Arthritis?&nbsp;</a></li>\r\n<li><span style=\"line-height:inherit;outline-offset:-2px;color:#989898\"><a href=\"/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></span></li>\r\n<li><a href=\"/Articles/Health-News/Knee-and-hip-replacements-increase-heart-attack-risk-briefly\">Knee And Hip Replacements Increase Heart Attack Risk Briefly</a></li>\r\n<li><a href=\"/Articles/A-wonderful-ending-to-an-almost-disastrous-event\">A wonderful ending to an almost disastrous event</a></li>\r\n<li><a href=\"/Articles/Prolo-News/How-to-Avoid-Joint-Spine-Surgery-and-Live-Pain-Free\">How To Avoid Joint &amp; Spine Surgery And Live Pain Free</a></li>\r\n</ul>	\r\n</div>	\r\n	\r\n<div class=\"col-md-4\">\r\n<h1>TV & Radio</h1>	\r\n<div class=\"tabs\">\r\n  <input type=\"radio\" name=\"tabs\" id=\"tabone\" checked=\"checked\">\r\n	<label for=\"tabone\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/tv-show-logo.png\"></label>\r\n  <div class=\"tab\">\r\n  <a href=\"/doc-on-tv\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/media-placeholder.jpg\"></a>\r\n    <p>Dr. Fields on National TV</p>\r\n  </div>\r\n  \r\n<input type=\"radio\" name=\"tabs\" id=\"tabtwo\">\r\n<label for=\"tabtwo\">Videos</label>\r\n<div class=\"tab\">\r\n<div class=\"owl-carousel video-carousel\">\r\n<div class=\"item\">\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\'); ?>\r\n<p>Dr. Fields Lectures in Las Vegas to 400+ Physicians</p>	\r\n</div>\r\n<div class=\"item\">\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\'); ?>\r\n<p>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</p>	\r\n</div>\r\n<div class=\"item\">\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\'); ?>\r\n<p>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</p>	\r\n</div>\r\n<div class=\"item\">\r\n<?php echo do_shortcode(\'[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\'); ?>\r\n<p>Interview with Dr. Fields</p>	\r\n</div>		\r\n</div>\r\n</div>\r\n  \r\n  <input type=\"radio\" name=\"tabs\" id=\"tabthree\">\r\n  <label for=\"tabthree\">Radio</label>\r\n  <div class=\"tab\">\r\n   <a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\"><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;Dr. Fields on the Radio</a>\r\n  </div>\r\n</div>	\r\n</div>		\r\n	\r\n</div>\r\n</div>	\r\n<div class=\"clear\"></div>	\r\n\r\n<?php get_footer();?>\r\n','Homepage','','inherit','closed','closed','','2109-revision-v1','','','2019-06-18 08:18:22','2019-06-18 08:18:22','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2115,8,'2019-06-18 08:18:50','2019-06-18 08:18:50','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div class=\"item\" id=\"slide1\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Congratulations Peter A. Fields, MD, DC</span><br>\r\n<span class=\"header_text_second\">The Athletic Doc® successfully climbed</span><br>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in Tanzania, Africa.19,341 feet!!!</span><br>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide2\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">New Article By Dr. Fields</span><br>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span><br>\r\n<span class=\"header_text_third\"> </span><br>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n\r\n<div class=\"item\" id=\"slide3\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints & Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide4\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Get Back In The Game!</span><br>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span><br>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Get Help Now!</a>\r\n</div>\r\n</div>\r\n</div>		\r\n	\r\n<div class=\"item\" id=\"slide5\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n	\r\n	\r\n<div class=\"col-md-4 box1\">\r\n<smalltext>What\'s</smalltext>\r\n<h3>New</h3>\r\n<ul>\r\n    <li><a href=\"/Office-Move\">Visit us at Our Location!</a></li>\r\n    <li><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n    <li class=\"last\"><a href=\"/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n    <li class=\"last\"><a href=\"/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n    <li class=\"last\"><a href=\"/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>	\r\n</div>\r\n	\r\n<div class=\"col-md-4 box2\" id=\"testimonials\">\r\n<smalltext>Patient</smalltext>\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n<p>\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>	\r\n</div>\r\n<div class=\"testimonial-item\">\r\n<p>\"I highly recommend it to anyone who needs to recover fast and get back out there.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>	\r\n</div>\r\n\r\n<div class=\"testimonial-item\">\r\n<p>\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n<div class=\"col-md-4 box3\">\r\n<smalltext>News &</smalltext>\r\n<h3>Events</h3>		\r\n<ul>\r\n    <li><a href=\"Articles/Health-News/Mexico-City-Lecture-2018\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Lectured in Mexico City&nbsp;</a></li>\r\n    <li><a href=\"Articles/Health-News/A5M-Conference-Australia-2017\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia&nbsp;</a></li>\r\n</ul>	\r\n</div>		\r\n	\r\n</div>\r\n</div>	\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span>&nbsp;by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\">	\r\n	</div>\r\n	<div class=\"col-md-7 about_holder\">\r\n\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor<br>\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"icon info\" title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\n<p>Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...</p>\r\n<a href=\"/about/bio-dr-fields/\" class=\"secondaryButton\">Read More</a></div>\r\n</div>\r\n\r\n	\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"Man Icon\" title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>	\r\n<p>Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...</p>\r\n<a class=\"secondaryButton\" href=\"/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a></div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n','Homepage','','inherit','closed','closed','','2109-revision-v1','','','2019-06-18 08:18:50','2019-06-18 08:18:50','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2116,8,'2019-06-18 08:20:59','2019-06-18 08:20:59','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div class=\"item\" id=\"slide1\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Congratulations Peter A. Fields, MD, DC</span><br>\r\n<span class=\"header_text_second\">The Athletic Doc® successfully climbed</span><br>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in Tanzania, Africa.19,341 feet!!!</span><br>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide2\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">New Article By Dr. Fields</span><br>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span><br>\r\n<span class=\"header_text_third\"> </span><br>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n\r\n<div class=\"item\" id=\"slide3\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints & Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide4\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Get Back In The Game!</span><br>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span><br>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Get Help Now!</a>\r\n</div>\r\n</div>\r\n</div>		\r\n	\r\n<div class=\"item\" id=\"slide5\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n	\r\n	\r\n<div class=\"col-md-4 box1\">\r\n<smalltext>What\'s</smalltext>\r\n<h3>New</h3>\r\n<ul>\r\n    <li><a href=\"/Office-Move\">Visit us at Our Location!</a></li>\r\n    <li><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n    <li class=\"last\"><a href=\"/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n    <li class=\"last\"><a href=\"/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n    <li class=\"last\"><a href=\"/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>	\r\n</div>\r\n	\r\n<div class=\"col-md-4 box2\" id=\"testimonials\">\r\n<smalltext>Patient</smalltext>\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n<p>\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>	\r\n</div>\r\n<div class=\"testimonial-item\">\r\n<p>\"I highly recommend it to anyone who needs to recover fast and get back out there.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>	\r\n</div>\r\n\r\n<div class=\"testimonial-item\">\r\n<p>\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n<div class=\"col-md-4 box3\">\r\n<smalltext>News &</smalltext>\r\n<h3>Events</h3>		\r\n<ul>\r\n    <li><a href=\"Articles/Health-News/Mexico-City-Lecture-2018\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Lectured in Mexico City&nbsp;</a></li>\r\n    <li><a href=\"Articles/Health-News/A5M-Conference-Australia-2017\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia&nbsp;</a></li>\r\n</ul>	\r\n</div>		\r\n	\r\n</div>\r\n</div>	\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span>&nbsp;by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\">	\r\n	</div>\r\n	<div class=\"col-md-7 about_holder\">\r\n\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor<br>\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"icon info\" title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\n<p>Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...</p>\r\n<a href=\"/about/bio-dr-fields/\" class=\"secondaryButton\">Read More</a></div>\r\n</div>\r\n\r\n	\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"Man Icon\" title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>	\r\n<p>Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...</p>\r\n<a class=\"secondaryButton\" href=\"/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a></div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-06-18 08:20:59','2019-06-18 08:20:59','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2117,8,'2019-06-18 21:26:42','2019-06-18 21:26:42','<script type=\"text/javascript\"> var _rk = \'RK-31700-33477-20707\'; (function() { var rk = document.createElement(\'script\'); rk.type = \'text/javascript\'; rk.async = true; rk.src = \'//reputationdatabase.com/website_marketing/widget/\'+_rk; var s = document.getElementsByTagName(\'script\')[0];s.parentNode.insertBefore(rk, s);})();</script><div class=\'RK-31700-33477-20707-widget RK-WebWidget\'></div>\r\n<script type=\"text/javascript\"> var _rk = \'RK-31700-33477-20708\'; (function() { var rk = document.createElement(\'script\'); rk.type = \'text/javascript\'; rk.async = true; rk.src = \'//reputationdatabase.com/website_marketing/widget/\'+_rk; var s = document.getElementsByTagName(\'script\')[0];s.parentNode.insertBefore(rk, s);})();</script><div class=\'RK-31700-33477-20708-widget RK-WebWidget\'></div>','Directory Reviews','','publish','closed','closed','','directory-reviews','','','2019-06-18 21:28:29','2019-06-18 21:28:29','',0,'https://www.drfields.com/?page_id=2117',0,'page','',0),(2118,8,'2019-06-18 21:26:42','2019-06-18 21:26:42','Website Code To Stream Review\r\n<script type=\"text/javascript\"> var _rk = \'RK-31700-33477-20707\'; (function() { var rk = document.createElement(\'script\'); rk.type = \'text/javascript\'; rk.async = true; rk.src = \'//reputationdatabase.com/website_marketing/widget/\'+_rk; var s = document.getElementsByTagName(\'script\')[0];s.parentNode.insertBefore(rk, s);})();</script><div class=\'RK-31700-33477-20707-widget RK-WebWidget\'></div>','Directory Reviews','','inherit','closed','closed','','2117-revision-v1','','','2019-06-18 21:26:42','2019-06-18 21:26:42','',2117,'https://www.drfields.com/uncategorized/2117-revision-v1/',0,'revision','',0),(2119,8,'2019-06-18 21:28:21','2019-06-18 21:28:21','<script type=\"text/javascript\"> var _rk = \'RK-31700-33477-20707\'; (function() { var rk = document.createElement(\'script\'); rk.type = \'text/javascript\'; rk.async = true; rk.src = \'//reputationdatabase.com/website_marketing/widget/\'+_rk; var s = document.getElementsByTagName(\'script\')[0];s.parentNode.insertBefore(rk, s);})();</script><div class=\'RK-31700-33477-20707-widget RK-WebWidget\'></div>\n','Directory Reviews','','inherit','closed','closed','','2117-autosave-v1','','','2019-06-18 21:28:21','2019-06-18 21:28:21','',2117,'https://www.drfields.com/uncategorized/2117-autosave-v1/',0,'revision','',0),(2120,8,'2019-06-18 21:28:29','2019-06-18 21:28:29','<script type=\"text/javascript\"> var _rk = \'RK-31700-33477-20707\'; (function() { var rk = document.createElement(\'script\'); rk.type = \'text/javascript\'; rk.async = true; rk.src = \'//reputationdatabase.com/website_marketing/widget/\'+_rk; var s = document.getElementsByTagName(\'script\')[0];s.parentNode.insertBefore(rk, s);})();</script><div class=\'RK-31700-33477-20707-widget RK-WebWidget\'></div>\r\n<script type=\"text/javascript\"> var _rk = \'RK-31700-33477-20708\'; (function() { var rk = document.createElement(\'script\'); rk.type = \'text/javascript\'; rk.async = true; rk.src = \'//reputationdatabase.com/website_marketing/widget/\'+_rk; var s = document.getElementsByTagName(\'script\')[0];s.parentNode.insertBefore(rk, s);})();</script><div class=\'RK-31700-33477-20708-widget RK-WebWidget\'></div>','Directory Reviews','','inherit','closed','closed','','2117-revision-v1','','','2019-06-18 21:28:29','2019-06-18 21:28:29','',2117,'https://www.drfields.com/uncategorized/2117-revision-v1/',0,'revision','',0),(2123,8,'2019-06-19 04:51:29','2019-06-19 04:51:29','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Congratulations Peter A. Fields, MD, DC</span><br>\r\n<span class=\"header_text_second\">The Athletic Doc® successfully climbed</span><br>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in Tanzania, Africa.19,341 feet!!!</span><br>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">New Article By Dr. Fields</span><br>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span><br>\r\n<span class=\"header_text_third\"> </span><br>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints & Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide\" style=\"https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Get Back In The Game!</span><br>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span><br>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Get Help Now!</a>\r\n</div>\r\n</div>\r\n</div>		\r\n	\r\n<div class=\"item\" id=\"slide\" style=\"https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n	\r\n	\r\n<div class=\"col-md-4 box1\">\r\n<smalltext>What\'s</smalltext>\r\n<h3>New</h3>\r\n<ul>\r\n    <li><a href=\"/Office-Move\">Visit us at Our Location!</a></li>\r\n    <li><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n    <li class=\"last\"><a href=\"/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n    <li class=\"last\"><a href=\"/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n    <li class=\"last\"><a href=\"/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>	\r\n</div>\r\n	\r\n<div class=\"col-md-4 box2\" id=\"testimonials\">\r\n<smalltext>Patient</smalltext>\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n<p>\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>	\r\n</div>\r\n<div class=\"testimonial-item\">\r\n<p>\"I highly recommend it to anyone who needs to recover fast and get back out there.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>	\r\n</div>\r\n\r\n<div class=\"testimonial-item\">\r\n<p>\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n<div class=\"col-md-4 box3\">\r\n<smalltext>News &</smalltext>\r\n<h3>Events</h3>		\r\n<ul>\r\n    <li><a href=\"Articles/Health-News/Mexico-City-Lecture-2018\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Lectured in Mexico City&nbsp;</a></li>\r\n    <li><a href=\"Articles/Health-News/A5M-Conference-Australia-2017\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia&nbsp;</a></li>\r\n</ul>	\r\n</div>		\r\n	\r\n</div>\r\n</div>	\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span>&nbsp;by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\">	\r\n	</div>\r\n	<div class=\"col-md-7 about_holder\">\r\n\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor<br>\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"icon info\" title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\n<p>Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...</p>\r\n<a href=\"/about/bio-dr-fields/\" class=\"secondaryButton\">Read More</a></div>\r\n</div>\r\n\r\n	\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"Man Icon\" title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>	\r\n<p>Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...</p>\r\n<a class=\"secondaryButton\" href=\"/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a></div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-06-19 04:51:29','2019-06-19 04:51:29','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2124,8,'2019-06-19 04:53:27','2019-06-19 04:53:27','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Congratulations Peter A. Fields, MD, DC</span><br>\r\n<span class=\"header_text_second\">The Athletic Doc® successfully climbed</span><br>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in Tanzania, Africa.19,341 feet!!!</span><br>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">New Article By Dr. Fields</span><br>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span><br>\r\n<span class=\"header_text_third\"> </span><br>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints & Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Get Back In The Game!</span><br>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span><br>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Get Help Now!</a>\r\n</div>\r\n</div>\r\n</div>		\r\n	\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n	\r\n	\r\n<div class=\"col-md-4 box1\">\r\n<smalltext>What\'s</smalltext>\r\n<h3>New</h3>\r\n<ul>\r\n    <li><a href=\"/Office-Move\">Visit us at Our Location!</a></li>\r\n    <li><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n    <li class=\"last\"><a href=\"/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n    <li class=\"last\"><a href=\"/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n    <li class=\"last\"><a href=\"/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>	\r\n</div>\r\n	\r\n<div class=\"col-md-4 box2\" id=\"testimonials\">\r\n<smalltext>Patient</smalltext>\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n<p>\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>	\r\n</div>\r\n<div class=\"testimonial-item\">\r\n<p>\"I highly recommend it to anyone who needs to recover fast and get back out there.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>	\r\n</div>\r\n\r\n<div class=\"testimonial-item\">\r\n<p>\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n<div class=\"col-md-4 box3\">\r\n<smalltext>News &</smalltext>\r\n<h3>Events</h3>		\r\n<ul>\r\n    <li><a href=\"Articles/Health-News/Mexico-City-Lecture-2018\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Lectured in Mexico City&nbsp;</a></li>\r\n    <li><a href=\"Articles/Health-News/A5M-Conference-Australia-2017\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia&nbsp;</a></li>\r\n</ul>	\r\n</div>		\r\n	\r\n</div>\r\n</div>	\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span>&nbsp;by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\">	\r\n	</div>\r\n	<div class=\"col-md-7 about_holder\">\r\n\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor<br>\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"icon info\" title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\n<p>Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...</p>\r\n<a href=\"/about/bio-dr-fields/\" class=\"secondaryButton\">Read More</a></div>\r\n</div>\r\n\r\n	\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"Man Icon\" title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>	\r\n<p>Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...</p>\r\n<a class=\"secondaryButton\" href=\"/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a></div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-06-19 04:53:27','2019-06-19 04:53:27','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2125,8,'2019-06-19 05:01:53','2019-06-19 05:01:53','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Congratulations Peter A. Fields, MD, DC</span><br>\r\n<span class=\"header_text_second\">The Athletic Doc® successfully climbed</span><br>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in Tanzania, Africa.19,341 feet!!!</span><br>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">New Article By Dr. Fields</span><br>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span><br>\r\n<span class=\"header_text_third\"> </span><br>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints & Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Get Back In The Game!</span><br>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span><br>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Get Help Now!</a>\r\n</div>\r\n</div>\r\n</div>		\r\n	\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n	\r\n	\r\n<div class=\"col-md-4 box1\">\r\n<smalltext>What\'s</smalltext>\r\n<h3>New</h3>\r\n<ul>\r\n    <li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n    <li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n    <li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n    <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n    <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>	\r\n</div>\r\n	\r\n<div class=\"col-md-4 box2\" id=\"testimonials\">\r\n<smalltext>Patient</smalltext>\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n<p>\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>	\r\n</div>\r\n<div class=\"testimonial-item\">\r\n<p>\"I highly recommend it to anyone who needs to recover fast and get back out there.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>	\r\n</div>\r\n\r\n<div class=\"testimonial-item\">\r\n<p>\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n<div class=\"col-md-4 box3\">\r\n<smalltext>News &</smalltext>\r\n<h3>Events</h3>		\r\n<ul>\r\n    <li><a href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Lectured in Mexico City&nbsp;</a></li>\r\n    <li><a href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia&nbsp;</a></li>\r\n</ul>	\r\n</div>		\r\n	\r\n</div>\r\n</div>	\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span>&nbsp;by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\">	\r\n	</div>\r\n	<div class=\"col-md-7 about_holder\">\r\n\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor<br>\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"icon info\" title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\n<p>Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...</p>\r\n<a href=\"https://www.drfields.com/about/bio-dr-fields/\" class=\"secondaryButton\">Read More</a></div>\r\n</div>\r\n\r\n	\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"Man Icon\" title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>	\r\n<p>Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...</p>\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a></div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-06-19 05:01:53','2019-06-19 05:01:53','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2126,8,'2019-06-19 05:03:20','2019-06-19 05:03:20','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-eating-fruit.jpg\"  alt=\"Woman Eating Fruit\" width=\"200\" height=\"253\" class=\"size-full wp-image-806 alignleft\" /> <strong>The Future of Your Health – Your Best Investment</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. Some of the treatments out there promoted by conventional medicine are doing their job- that is getting people better. But some can actually make you worse, or affect different parts of the body in a negative way. What good is it if it cures your specific ailment only to give you a different one.\r\n\r\nWhen you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more. There is an underlying cause for each of your symptoms and that will take time and effort on our part and yours to find out what that may be. For this reason, more and more people are starting to get concerned about and involved in, their own health care. Just treating the symptoms will not make the problem go away; one must get to the cause of the problem and fix that. This approach is what Integrative/Holistic medicine is all about.\r\n\r\nThe U.S. Centers for Disease Control and Prevention reports that the key factors influencing an individual\'s state of health have not changed significantly over the past 20 years. Heredity accounts for 18% and the environment is 19%. Everyday lifestyle choices are 53%. The decisions people make about their life and habits are therefore by far the largest factor in determining their state of wellness.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\" >Los Angeles Prolotherapy doctor</a> and <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\">PRP Doctor</a> and the founder of OrthoRegen.\r\n\r\nAt OrthoRegen we want to help you to achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. Only you can decide what is fair and worth this investment when it comes to out-of-pocket costs for your health care. We will make every effort to instil the feeling that what you spend was worth it. After all, this is your health that we are talking about.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2019-06-19 05:03:20','2019-06-19 05:03:20','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(2127,8,'2019-06-19 05:04:54','2019-06-19 05:04:54','<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. Unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. But these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A Fields.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD DC, \"<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>What Is Prolotherapy?</h4>\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> is a shortened form of \"proliferation therapy\" and is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\r\n\r\nWhen the body suffers an injury, it responds by producing growth factors. The process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand: areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. This means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\r\n\r\nUnfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\r\n\r\n<h4>How Does Prolotherapy Work?</h4>\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\r\n\r\n<h4>Does Prolotherapy Work?</h4>\r\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"https://www.drfields.com/how-prolotherapy-can-eliminate-joint-pain-without-surgery/\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\r\n\r\n<h4>What Conditions Can Be Treated With Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\n<h4>How Did Prolotherapy Begin?</h4>\r\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\r\n\r\nProlotherapy has been shown to have a beneficial effect for many patients and to help them <a href=\"https://www.drfields.com/articles/prolo-news/joint-surgery-think-again-learn-about-prolotherapy/\">avoid surgery</a> as a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\r\n\r\n<h4>What Can I Expect From Prolotherapy Treatment?</h4>\r\nBefore you can be treated using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\r\n\">Prolotherapy</a>, you will be examined by Dr. Peter A Fields, the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition, review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\r\n\r\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\r\n\r\nYou are then sent home to rest and gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\r\n\r\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\r\n\r\n<h4>Los Angeles Prolotherapy</h4>\r\nPeter A. Fields MD DC is an internationally recognized expert in the field of regenerative medicine, specifically in all forms of Prolotherapy – dextrose Prolotherapy, PRP Prolotherapy and Stem Cell. Dr. Fields is known as the “The Athletic Doc®” has completed nine Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\r\n\r\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\" The professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs and have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\r\n\r\n<h4>Are you a Candidate for Prolotherapy?</h4\r\n>\r\nCall <a href=\"tel://1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','inherit','closed','closed','','1667-revision-v1','','','2019-06-19 05:04:54','2019-06-19 05:04:54','',1667,'https://www.drfields.com/uncategorized/1667-revision-v1/',0,'revision','',0),(2128,8,'2019-06-19 05:12:15','2019-06-19 05:12:15','<div class=\"col-md-8\">\r\n<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignright size-full wp-image-1685\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\r\n\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\r\n<ul>\r\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\r\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\r\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\r\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\n<h4>How To Eliminate Chronic Joint Pain Without Surgery</h4>\r\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"http://dentalimplantsmalibu.com/contact/\">Contact my office today</a> or call me at <a href=\"tel:310-455-8242\">310-455-8242</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christa - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Christa, a former college athlete, had knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Eric - Lower Back</p>\r\n<p>Dr. Eric had low back pain since age 15. Damaged ligaments caused his pain &amp; tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Now Eric has his life back.</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/vMWJVoJaVJs?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Nanette - Hip</p>\r\n<p>Personal trainer &amp; triathlete, Nanette, had a bicycle accident and could not walk, ride or work any more. Dr. Fields started Prolotherapy 6 months ago. She can now sit, squat, walk, run, climb, lift. “Miraculous,” she says.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/MYI_vSJe378?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeremy. - Ankle</p>\r\n<p>Cortisone didn’t help Jeremy’s repeated ankle injuries. He had just two options: Prolotherapy or “Surgery with no guarantee.” After Prolotherapy treatment by Dr. Fields, he is now he’s back to running 3-5 times per week and feeling great!</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VkDlCmTq6dE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Wilbur - Shoulder </p>\r\n<p>Wilbur, a firefighter who hurt his shoulders, had limited range of motion. Dr. Fields began Prolotherapy treatment immediately. Now he’s doing core power yoga 5x week!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/AioI5BZz3UE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Tim - Shoulder </p>\r\n<p>Shoulder injury kept Tim from working out. His Orthopedic surgeon told him to stop any shoulder exercise: “Your days are over,” he said. Now he’s back to normal after 6 Prolotherapy treatments by Dr. Fields.</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will Prolotherapy Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for Prolotherapy and eliminating your joint pain without surgery. Schedule your consultation by calling our office now at <a href=\"tel:1-310-455-8242\"><strong>310-455-8242</strong></a>or fill out this form.\r\n\r\n[contact-form-7 id=\"1696\" title=\"Consulation form\"]\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2019-06-19 05:12:15','2019-06-19 05:12:15','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(2129,8,'2019-06-19 05:13:49','2019-06-19 05:13:49','<div class=\"col-md-8\">\r\n<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignright size-full wp-image-1685\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\r\n\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\r\n<ul>\r\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\r\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\r\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\r\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\n<h4>How To Eliminate Chronic Joint Pain Without Surgery</h4>\r\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/contact/\">Contact my office today</a> or call me at <a href=\"tel:310-455-8242\">310-455-8242</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christa - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Christa, a former college athlete, had knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Eric - Lower Back</p>\r\n<p>Dr. Eric had low back pain since age 15. Damaged ligaments caused his pain &amp; tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Now Eric has his life back.</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/vMWJVoJaVJs?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Nanette - Hip</p>\r\n<p>Personal trainer &amp; triathlete, Nanette, had a bicycle accident and could not walk, ride or work any more. Dr. Fields started Prolotherapy 6 months ago. She can now sit, squat, walk, run, climb, lift. “Miraculous,” she says.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/MYI_vSJe378?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeremy. - Ankle</p>\r\n<p>Cortisone didn’t help Jeremy’s repeated ankle injuries. He had just two options: Prolotherapy or “Surgery with no guarantee.” After Prolotherapy treatment by Dr. Fields, he is now he’s back to running 3-5 times per week and feeling great!</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VkDlCmTq6dE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Wilbur - Shoulder </p>\r\n<p>Wilbur, a firefighter who hurt his shoulders, had limited range of motion. Dr. Fields began Prolotherapy treatment immediately. Now he’s doing core power yoga 5x week!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/AioI5BZz3UE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Tim - Shoulder </p>\r\n<p>Shoulder injury kept Tim from working out. His Orthopedic surgeon told him to stop any shoulder exercise: “Your days are over,” he said. Now he’s back to normal after 6 Prolotherapy treatments by Dr. Fields.</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will Prolotherapy Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for Prolotherapy and eliminating your joint pain without surgery. Schedule your consultation by calling our office now at <a href=\"tel:1-310-455-8242\"><strong>310-455-8242</strong></a>or fill out this form.\r\n\r\n[contact-form-7 id=\"1696\" title=\"Consulation form\"]\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2019-06-19 05:13:49','2019-06-19 05:13:49','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(2130,8,'2019-06-19 05:14:51','2019-06-19 05:14:51','<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong>\r\n</div>\r\nLos Angeles PRP treatments at OrthoRegen with Peter A. Fields MD DC are a modern, effective and less invasive way to deal with joint and muscle pain and injury for athletes or anyone who wants quick and healthy relief.\r\n\r\nAs a pioneer of treatments involving <strong>PRP in Los Angeles</strong>, Peter A Fields MD DC works with patients who need fast relief from joint and muscle pain but who also want the latest and most natural healing methods available.\r\n<div class=\"clearfix\"></div>\r\n\r\n<h4>What Is PRP Prolotherapy?</h4>\r\nThere are two ways prolotherapy can be administered. In <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose prolotherapy</a>, a solution is injected that is created from organic substances, while PRP prolotherapy uses platelets from the patient\'s own body. While more expensive and time-consuming, PRP has worked well in some cases in which dextrose prolotherapy proved ineffective.\r\n\r\nPRP prolotherapy has been shown to be highly effective at stimulating tissue repair and regenerating weak muscles, joints and other body components. When injected into an injury or pain site, prolotherapy fluids often have remarkable outcomes in terms of patient recovery times and lack of side effects.\r\n\r\nPRP treatment specifically focuses on giving patients doses of their own platelets, derived from drawn blood. Blood contains a certain number of platelets per fluid unit. By concentrating those platelets and reinjecting them into the body, not only can tissues heal remarkably quickly but the patient is not exposed to drugs or other foreign substances that can cause reactions.\r\n\r\n<h4>PRP vs. Surgery and Other Methods</h4>\r\nWhile there are many methods, including surgery, for treating injury or pain, PRP has some distinct advantages, including:\r\n<ul>\r\n 	<li>Less pain and shorter recovery time when compared to surgery or other invasive methods</li>\r\n 	<li>No addictive drugs.</li>\r\n 	<li>Short recovery time</li>\r\n 	<li>Quicker healing time</li>\r\n 	<li>No long-term treatment outlook</li>\r\n</ul>\r\nPRP prolotherapy is more expensive than other forms of prolotherapy, so the professionals at OrthoRegen may try other methods before recommending this particular treatment option.\r\n\r\n<h4>What Conditions Can Be Treated With PRP and Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles PRP and Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\nLos Angeles PRP Doctor\r\n\r\nPeter A. Fields, MD DC, also known as \"<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" is a Los Angeles PRP Doctor with years of experience in working with PRP and prolotherapy candidates and can help patients decide what is the right method of treatment for their particular needs. All it takes is a consultation.\r\n\r\nPRP Prolotherapy can be a miracle when it comes to ending joint damage and muscle pain, especially when compare to invasive surgery. OrthoRegen is ready to help people like you who want to learn just how simple it can be to treat your chronic and acute joint and muscle pain. Call our Los Angeles PRP Clinic at <a href=\"tel://1-424-325-6695\">424-325-6695</a> to schedule a consultation or to talk with the Doctor. You can also <a href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a> via email to set up an in-person consultation.','Los Angeles PRP Prolotherapy','','inherit','closed','closed','','1669-revision-v1','','','2019-06-19 05:14:51','2019-06-19 05:14:51','',1669,'https://www.drfields.com/uncategorized/1669-revision-v1/',0,'revision','',0),(2131,8,'2019-06-19 05:16:41','2019-06-19 05:16:41','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Congratulations Peter A. Fields, MD, DC</span><br>\r\n<span class=\"header_text_second\">The Athletic Doc® successfully climbed</span><br>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in Tanzania, Africa.19,341 feet!!!</span><br>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">New Article By Dr. Fields</span><br>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span><br>\r\n<span class=\"header_text_third\"> </span><br>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints & Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Get Back In The Game!</span><br>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span><br>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Get Help Now!</a>\r\n</div>\r\n</div>\r\n</div>		\r\n	\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<div class=\"slide content\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n</div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n	\r\n	\r\n<div class=\"col-md-4 box1\">\r\n<smalltext>What\'s</smalltext>\r\n<h3>New</h3>\r\n<ul>\r\n    <li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n    <li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n    <li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n    <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n    <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>	\r\n</div>\r\n	\r\n<div class=\"col-md-4 box2\" id=\"testimonials\">\r\n<smalltext>Patient</smalltext>\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n<p>\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>	\r\n</div>\r\n<div class=\"testimonial-item\">\r\n<p>\"I highly recommend it to anyone who needs to recover fast and get back out there.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>	\r\n</div>\r\n\r\n<div class=\"testimonial-item\">\r\n<p>\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n<div class=\"col-md-4 box3\">\r\n<smalltext>News &</smalltext>\r\n<h3>Events</h3>		\r\n<ul>\r\n    <li><a href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Lectured in Mexico City&nbsp;</a></li>\r\n    <li><a href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia&nbsp;</a></li>\r\n</ul>	\r\n</div>		\r\n	\r\n</div>\r\n</div>	\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span>&nbsp;by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\">	\r\n	</div>\r\n	<div class=\"col-md-7 about_holder\">\r\n\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor<br>\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"icon info\" title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\n<p>Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...</p>\r\n<a href=\"https://www.drfields.com/about/bio-dr-fields/\" class=\"secondaryButton\">Read More</a></div>\r\n</div>\r\n\r\n	\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"Man Icon\" title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>	\r\n<p>Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...</p>\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a></div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-06-19 05:16:41','2019-06-19 05:16:41','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2132,8,'2019-06-19 05:17:28','2019-06-19 05:17:28','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignleft size-full wp-image-955\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc®</h4>\r\n\r\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" rel=\"noopener noreferrer\" target=\"_blank\">The Athletic Doc®</a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n\r\n<h4>Director of OrthoRegen</h4>\r\n\r\nDr. Fields is the Director of <a href=\"https://orthoregen.com/\" rel=\"noopener noreferrer\" target=\"_blank\">OrthoRegen</a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\" >Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\r\n\r\n<h4>Regenerative Medicine Expert</h4> \r\n\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\" >national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n\r\n<h4>Hackett-Hemwall Foundation Instructor</h4> \r\n\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.\r\n\r\n<h4>Prolotherapy Doctor</h4>\r\n\r\nDr. Fields is the leading expert in the field or <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h6>The Athletic Doc®</h6>\r\n\r\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc® has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"text-center\" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong>\r\n</div>','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2019-06-19 05:17:28','2019-06-19 05:17:28','',216,'https://www.drfields.com/uncategorized/216-revision-v1/',0,'revision','',0),(2133,8,'2019-06-19 05:20:43','2019-06-19 05:20:43','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" class=\"alignleft size-full wp-image-1685\" /><h4>Prolotherapy Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\r\n\r\n<h4>What is a Prolotherapy Doctor?</h4>\r\n\r\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\r\n\r\n<h4>What is Prolotherapy Treatment?</h4>\r\n\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n\r\n<h4>How Prolotherapy Treatment Works</h4>\r\n\r\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"https://orthoregen.com/\" rel=\"noopener noreferrer\" >OrthoRegen</a>\r\n\r\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\r\n\r\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\r\n\r\n<h4>What Conditions Can Dr. Fields  Help You With:</h4>\r\n\r\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\r\n\r\n<ul><li><strong>Chronic Conditions like…</strong></li>\r\n<ul><li>Arthritis Pain</li>\r\n        <li>Sciatica Pain</li>\r\n        <li>Pinched Nerves</li>\r\n        <li>Athletic Injuries</li>\r\n        <li>Tension Headaches</li>\r\n        <li>Migraine Headaches</li>\r\n       <li>Herniated Discs</li>\r\n        <li>Degenerative Discs</li>\r\n        <li>TMJ syndrome</li>\r\n        <li>Weak Joints</li>\r\n        <li>Sore Muscles</li>\r\n</ul>\r\n    <li><strong>Knee Injuries:</strong></li>\r\n        <ul><li>ACL Tear</li>\r\n        <li>Runners\' Knee</li>\r\n        <li>Radial Meniscus Tear</li>\r\n        <li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hip Injuries:</strong></li>\r\n        <ul><li>Torn Labrum</li>\r\n        <li>Acetabular labrum Tear</li>\r\n        <li>Labral Tear</li>\r\n        <li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Neck Injuries:</strong></li>\r\n        <ul><li>Whiplash</li>\r\n       <li>TMJ Syndrome</li>\r\n        <li>Migraine Headaches</li>\r\n        <li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Shoulder Injuries:</strong></li>\r\n        <ul><li>Labral Tear</li>\r\n        <li>Rotator Cuff Tear</li>\r\n        <li>Swimmers Shoulder</li>\r\n        <li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Back Injuries:</strong></li>\r\n        <ul><li>Herniated discs</li>\r\n        <li>Sacroiliac injury</li>\r\n        <li>Lower back pain</li>\r\n        <li>See a complete list of Back Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Elbow Injuries:</strong></li>\r\n        <ul><li>Tendonitis</li>\r\n        <li>Tennis elbow</li>\r\n        <li>Golfers elbow</li>\r\n        <li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Foot and Ankle Injuries:</strong></li>\r\n        <ul><li>Achilles tendinopathy</li>\r\n        <li>Ankle Sprains</li>\r\n        <li>Plantar Fasciitis</li>\r\n        <li>See a complete list of Foot  Injuries Treated with Prolotherapy here.</li></ul>\r\n    <li><strong>Hand Injuries:</strong></li>\r\n       <ul><li>Carpal tunnel</li>\r\n        <li>Overuse injury</li>\r\n        <li>Finger pain</li>\r\n        <li>See a complete list of Hand  Injuries Treated with Prolotherapy here.</li></ul>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\n\r\nCall <a href=\"tel:310-455-8242\" rel=\"noopener noreferrer\" >310-455-8242</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\" >contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Doctor','','inherit','closed','closed','','229-revision-v1','','','2019-06-19 05:20:43','2019-06-19 05:20:43','',229,'https://www.drfields.com/uncategorized/229-revision-v1/',0,'revision','',0),(2134,8,'2019-06-19 05:21:53','2019-06-19 05:21:53','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_first\">Congratulations Peter A. Fields, MD, DC</span><br>\r\n<span class=\"header_text_second\">The Athletic Doc® successfully climbed</span><br>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in Tanzania, Africa.19,341 feet!!!</span><br>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_first\">New Article By Dr. Fields</span><br>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span><br>\r\n<span class=\"header_text_third\"> </span><br>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>	\r\n</div>\r\n</div>	\r\n	\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints & Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_first\">Get Back In The Game!</span><br>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span><br>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Get Help Now!</a>\r\n</div>\r\n</div>		\r\n	\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span><br>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span><br>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span><br>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n	\r\n	\r\n<div class=\"col-md-4 box1\">\r\n<smalltext>What\'s</smalltext>\r\n<h3>New</h3>\r\n<ul>\r\n    <li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n    <li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n    <li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n    <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n    <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>	\r\n</div>\r\n	\r\n<div class=\"col-md-4 box2\" id=\"testimonials\">\r\n<smalltext>Patient</smalltext>\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n<p>\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>	\r\n</div>\r\n<div class=\"testimonial-item\">\r\n<p>\"I highly recommend it to anyone who needs to recover fast and get back out there.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>	\r\n</div>\r\n\r\n<div class=\"testimonial-item\">\r\n<p>\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n<div class=\"col-md-4 box3\">\r\n<smalltext>News &</smalltext>\r\n<h3>Events</h3>		\r\n<ul>\r\n    <li><a href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Lectured in Mexico City&nbsp;</a></li>\r\n    <li><a href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia&nbsp;</a></li>\r\n</ul>	\r\n</div>		\r\n	\r\n</div>\r\n</div>	\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span>&nbsp;by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\">	\r\n	</div>\r\n	<div class=\"col-md-7 about_holder\">\r\n\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor<br>\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"icon info\" title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\n<p>Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...</p>\r\n<a href=\"https://www.drfields.com/about/bio-dr-fields/\" class=\"secondaryButton\">Read More</a></div>\r\n</div>\r\n\r\n	\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"Man Icon\" title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>	\r\n<p>Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...</p>\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a></div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-06-19 05:21:53','2019-06-19 05:21:53','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2135,8,'2019-06-19 05:22:09','2019-06-19 05:22:09','<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<h4 class=\"text-center\">Video: What is Prolotherapy Treatment?</h4>\r\n<div style=\"display: table;margin: 0 auto;\">\r\n[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]\r\n</div>\r\n<a class=\"buttonlink\" href=\"/regenerative-techniques/prolotherapy-videos/\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-06-19 05:22:09','2019-06-19 05:22:09','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(2136,8,'2019-06-19 05:23:56','2019-06-19 05:23:56','<h4>PRP Platelet Rich Plasma</h4>\r\n\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\r\n\r\n<h4>Why Does PRP Treatment Work?</h4>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\"  class=\"alignright size-full wp-image-642\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood.  A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This  highly concentrated  amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\r\n\r\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\r\n\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>It primes the area that is damaged,  which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>PRP Treatment Frequently Asked Questions</h4>\r\n<h6><strong>What is PRP Treatment?</strong></h6>\r\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n\r\n<h6>What does PRP mean?</h6>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\r\n\r\n<h6>What conditions are treated with PRP?</h6>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" class=\"alignleft size-full wp-image-712\" /><h6>What are some common diagnoses treated with PRP?</h6>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, Bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h6>How is PRP treatment administered?</h6>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n\r\n<h6>Is PRP curative?</h6>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\r\n\r\n<h6>How does PRP work to heal?</h6>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\r\n\r\n<h6>Is PRP painful?</h6>\r\nPatients typically tolerate the procedure well although post-injection soreness is sometime experienced.\r\n\r\n<h6>How many PRP treatments do you need?</h6>\r\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\r\n\r\n<h6>How far apart are PRP treatments spaced?</h6>\r\nTypically about every 6 weeks if indicated.<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\"  class=\"alignright size-full wp-image-644\" />\r\n\r\n<h6>What can you expect after getting PRP?</h6>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\r\n\r\n<h6>Are there side effects/complications of PRP?</h6>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n\r\n<h6>How long does it take the PRP to “work”?</h6>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n\r\n<h6>Platelet Rich Plasma (PRP) Therapy in the News:</h6>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>\r\n','PRP Treatment','','inherit','closed','closed','','414-revision-v1','','','2019-06-19 05:23:56','2019-06-19 05:23:56','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(2137,8,'2019-06-19 05:24:36','2019-06-19 05:24:36','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Stem Cell Knee</strong>	\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong>	\r\n</div>\r\n\r\n<i>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\r\n<div class=\"clear\"></div>\r\n\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\"  class=\"alignleft size-full wp-image-732\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" class=\"alignright size-full wp-image-735\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-06-19 05:24:36','2019-06-19 05:24:36','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (2138,8,'2019-06-19 05:25:33','2019-06-19 05:25:33','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_first\">Congratulations Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in Tanzania, Africa.19,341 feet!!!</span>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span>\r\n<span class=\"header_text_third\"> </span>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>	\r\n</div>\r\n</div>	\r\n	\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints & Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Get Help Now!</a>\r\n</div>\r\n</div>		\r\n	\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>	\r\n</div>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n	\r\n	\r\n<div class=\"col-md-4 box1\">\r\n<smalltext>What\'s</smalltext>\r\n<h3>New</h3>\r\n<ul>\r\n    <li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n    <li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n    <li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n    <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n    <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>	\r\n</div>\r\n	\r\n<div class=\"col-md-4 box2\" id=\"testimonials\">\r\n<smalltext>Patient</smalltext>\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n<p>\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>	\r\n</div>\r\n<div class=\"testimonial-item\">\r\n<p>\"I highly recommend it to anyone who needs to recover fast and get back out there.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>	\r\n</div>\r\n\r\n<div class=\"testimonial-item\">\r\n<p>\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n<div class=\"col-md-4 box3\">\r\n<smalltext>News &</smalltext>\r\n<h3>Events</h3>		\r\n<ul>\r\n    <li><a href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Lectured in Mexico City&nbsp;</a></li>\r\n    <li><a href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia&nbsp;</a></li>\r\n</ul>	\r\n</div>		\r\n	\r\n</div>\r\n</div>	\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span>&nbsp;by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\">	\r\n	</div>\r\n	<div class=\"col-md-7 about_holder\">\r\n\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor<br>\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"icon info\" title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\n<p>Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...</p>\r\n<a href=\"https://www.drfields.com/about/bio-dr-fields/\" class=\"secondaryButton\">Read More</a></div>\r\n</div>\r\n\r\n	\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"Man Icon\" title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>	\r\n<p>Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...</p>\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a></div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-06-19 05:25:33','2019-06-19 05:25:33','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2140,8,'2019-06-19 05:31:04','2019-06-19 05:31:04','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. It is usually the ligaments and tendons that are injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n\r\n<strong>Ligament Injuries in the Elbow</strong>\r\n\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. In tennis elbow it is the <strong>extensor tendons</strong> which move the wrist up, that can be damaged. In golfer’s elbow it is the <strong>flexor tendons</strong>, that move the wrist down, that get injured. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n\r\n<strong>The Most Common Elbow Injuries </strong>\r\n\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? Are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+13109560569\">(310) 956-0569</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Elbow Pain','','inherit','closed','closed','','524-revision-v1','','','2019-06-19 05:31:04','2019-06-19 05:31:04','',524,'https://www.drfields.com/uncategorized/524-revision-v1/',0,'revision','',0),(2141,8,'2019-06-19 05:32:13','2019-06-19 05:32:13','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Prolotherapy Hip Injury\'\"]\r\n<strong>Chris - Hip</strong>\r\n</div>\r\n<h4>Prolotherapy Hip and Groin Injury Treatment</h4>\r\nHip and groin injuries can quickly become debilitating and escalate into athletic career ending injuries. MRI and arthroscopic surgery are routinely recommended for patients. Other patients may spend months or longer on pain medication, while undergoing rounds of physical therapy. <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment offers a successful alternative to pain medication and surgery, for hip and groin injuries. OrthoRegen offers comprehensive treatment for your hip injuries and groin pain without pain medication, surgery or extended time away from the sport you love.\r\n\r\n<h4>Who Is Prolotherapy Hip Treatment For?</h4>\r\nOur patients include Olympic hopefuls to weekend warriors. Dr. Peter Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an Ironman Triathlete. He understands the concerns of injured athletes, hoping to return quickly to their chosen sport. His clinical experience has shown that Prolotherapy hip treatment is the preferred way to treat hip injuries and groin pain for optimal long term results. We can get you back into your sport without surgery, without medication, and without extended time away from your sport.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment are:</strong>\r\n<ul>\r\n 	<li>Acetabular labrum tear</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Femoroacetabular impingement</li>\r\n 	<li>Groin pain</li>\r\n 	<li>Hip instability</li>\r\n 	<li>Hip impingement</li>\r\n 	<li>Hip pain</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Post pelvic fusion pain</li>\r\n 	<li>Post-surgical hip pain</li>\r\n 	<li>Pubic symphysis injury</li>\r\n 	<li>Pubis pain</li>\r\n 	<li>Pupalgia</li>\r\n 	<li>Snapping hip syndrome</li>\r\n 	<li>Torn Labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy hip treatment, as well as PRP Prolotherapy and Stem Cell Prolotherapy. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13103407407\">(310) 340-7407</a>','Hip Injury Treatment','','inherit','closed','closed','','528-revision-v1','','','2019-06-19 05:32:13','2019-06-19 05:32:13','',528,'https://www.drfields.com/uncategorized/528-revision-v1/',0,'revision','',0),(2142,8,'2019-06-19 05:33:04','2019-06-19 05:33:04','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Knee Treatment</h4>\r\nKnee injuries are one of the most common problems we treat with Prolotherapy knee treatment at OrthoRegen. The knee joint is one of the most crucial joints in the body. Normal knee function is vital to involvement in everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\r\n\r\nThere are also two forms of cartilage in the knee. Articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement, and the cartilage meniscus which is two semicircular discs providing cushioning and support for the bones. The knee is extremely vulnerable to injury in one or a combination of these elements. In the case of knee injury, we recommend our <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> knee treatment to strengthen and repair damaged tissue, ligaments and tendons.\r\n\r\n<h4>How Prolotherapy Knee Treatment Works</h4>\r\nOur Prolotherapy knee treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word proliferate. Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment for your knee injuries with comprehensive Prolotherapy at OrthoRegen.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13107766154\">(310) 776-6154</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" class=\"alignright size-full wp-image-1307\" />Dr. Peter A. Fields is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>. For over 25 years Dr. Fields has been active in the sport of Triathlon. In November 2012 he completed his second Ironman Triathlon, beating his time by 14 minutes. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nContact us to see if you are a candidate for <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\r\n\r\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>ACL tear Anterior Cruciate Ligament injury</li>\r\n 	<li>Arthritis of the knee</li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li>Chondromalacia patellae</li>\r\n 	<li>Complex meniscus tear</li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Knee pain after surgery</li>\r\n 	<li>Knee popping</li>\r\n 	<li>Knee replacement pain</li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li>Ligament laxity</li>\r\n 	<li>Ligament sprain</li>\r\n 	<li>Ligament tear</li>\r\n 	<li>Medial Collateral Ligament (MCL) injury</li>\r\n 	<li>Meniscus tear</li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li>Patellofemoral syndrome</li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li>Runners knee</li>\r\n 	<li>Tendinosis</li>\r\n</ul>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-revision-v1','','','2019-06-19 05:33:04','2019-06-19 05:33:04','',533,'https://www.drfields.com/uncategorized/533-revision-v1/',0,'revision','',0),(2143,8,'2019-06-19 05:33:46','2019-06-19 05:33:46','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr.doug – Headaches & Shoulder\"]\r\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Shoulder Treatment</h4>\r\nAt OrthoRegen, shoulder injuries are one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Shoulder injuries are common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive prolotherapy shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\r\n\r\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\r\n\">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist and swimmer, understands your desire to return to full participation in your training and competition.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Acromioclavicular joint arthrosis</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation</li>\r\n 	<li>Frozen shoulder</li>\r\n 	<li>Glenoid labrum tear</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Multi-directional instability</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Shoulder dislocation</li>\r\n 	<li>Shoulder instability</li>\r\n 	<li>Shoulder pain</li>\r\n 	<li>Shoulder separation</li>\r\n 	<li>SLAP lesion</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Swimmers shoulder</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendonosis</li>\r\n 	<li>Torn labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13106272458\">(310) 627-2458</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials/\">Shoulder Prolotherapy Testimonials page</a>.\r\n\r\n','Shoulder Injury Treatment','','inherit','closed','closed','','545-revision-v1','','','2019-06-19 05:33:46','2019-06-19 05:33:46','',545,'https://www.drfields.com/uncategorized/545-revision-v1/',0,'revision','',0),(2144,8,'2019-06-19 05:34:52','2019-06-19 05:34:52','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\r\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\r\n\r\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> neck treatment at OrthoRegen.\r\n\r\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\r\nDr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\r\n\r\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\r\n','Neck Injury Treatment','','inherit','closed','closed','','536-revision-v1','','','2019-06-19 05:34:52','2019-06-19 05:34:52','',536,'https://www.drfields.com/uncategorized/536-revision-v1/',0,'revision','',0),(2145,8,'2019-06-19 05:35:33','2019-06-19 05:35:33','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\r\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\r\n\r\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> neck treatment at OrthoRegen.\r\n\r\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\r\nDr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\r\n\r\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\r\n','Neck Injury Treatment','','inherit','closed','closed','','536-revision-v1','','','2019-06-19 05:35:33','2019-06-19 05:35:33','',536,'https://www.drfields.com/uncategorized/536-revision-v1/',0,'revision','',0),(2146,8,'2019-06-19 05:36:36','2019-06-19 05:36:36','<h4>Prolotherapy Back and Pelvic Treatment</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur – Low Back\"]\r\n<strong>Wilbur - Low Back</strong>\r\n</div>\r\nOne of the main reasons patients come to OrthoRegen is for back relief with our Prolotherapy Back Treatment. Back or pelvic injury is also the main reason our patients say, they have had to stop participation in sports.\r\n\r\nMany of the traditional treatments for back pain can actually be the cause for continuing problems. If you have tried NSAID medications (like Ibuprofen or Naproxen), nerve blocks, acupuncture or chiropractic adjustments, and have not found relief, join our growing patient list of people who have benefited from comprehensive treatment.\r\n\r\n<h4>Does Prolotherapy Back Treatment Work?</h4>\r\nWe are very successful at treating people for back and pelvic pain with our Prolotherapy Back treatment. We get them back to their sport without surgery, without medications, and without extended time off! To properly treat the lower back, the whole area needs to be treated. Especially in cases of sport injury trauma, patients find better and faster relief from the techniques used here at OrthoRegen. We will work to rehabilitate the whole athlete through nutritional and exercise regimens.\r\n\r\nIn our experience, the preferred way to treat back and pelvic with a comprehensive program of <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. In that way, patients see long term optimal results.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common back and pelvic pains and injuries that we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Back pain</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Buttock pain</li>\r\n 	<li>Coccyx pain</li>\r\n 	<li>Degenerated discs</li>\r\n 	<li>Herniated discs</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Failed back fusion pain</li>\r\n 	<li>Failed back surgery syndrome</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>Muscle spasms</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Pelvic pain</li>\r\n 	<li>Retrolisthesis</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tailbone pain</li>\r\n 	<li>Thoracic spine pain</li>\r\n 	<li>SI instability</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Yoga injury</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy back treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13109560569\">(310) 956-0569</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials/\">Prolotherapy Back Testimonials page</a>.','Back Injury Treatment','','inherit','closed','closed','','567-revision-v1','','','2019-06-19 05:36:36','2019-06-19 05:36:36','',567,'https://www.drfields.com/uncategorized/567-revision-v1/',0,'revision','',0),(2147,8,'2019-06-19 05:38:19','2019-06-19 05:38:19','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer- Elbow\"]\r\n<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Elbow Treatment</h4>\r\nOrthoRegen offers you the most effective treatment for elbow injuries. Avoid the long term side effects of NSAID and cortisone injections with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> elbow treatment. We offer our patients experience and knowledgeable treatment for their elbow pain and injuries. From future Olympians to weekend warriors, we can help you return to your sport without surgery, without pain medications and without extended periods of time away from your sport.\r\n\r\n<h4>Why Prolotherapy Elbow Treatment with Dr. Fields?</h4>\r\nDr. Peter Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an experienced marathoner, long-distance cyclist and swimmer. He has participated in Triathlons as well as Ironman competitions. He understands the passion that athletes have to train and compete. In our experience, our comprehensive Prolotherapy elbow treatment is the best way to treat elbow injuries for long term positive results.\r\n\r\n<a class=\"buttonlink\" href=\"http://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common elbow pain and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Elbow pain</a></li>\r\n 	<li>Elbow sprain</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>Lateral epicondylitis</li>\r\n 	<li>Medial epicondylitis</li>\r\n 	<li>Post-surgical elbow pain</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendinosis</li>\r\n 	<li>Tennis elbow</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy elbow treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\r\n\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(310) 928-2886</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials/\">Prolotherapy Elbow Testimonials page</a>.','Elbow Injury Treatment','','inherit','closed','closed','','582-revision-v1','','','2019-06-19 05:38:19','2019-06-19 05:38:19','',582,'https://www.drfields.com/uncategorized/582-revision-v1/',0,'revision','',0),(2148,8,'2019-06-19 05:39:55','2019-06-19 05:39:55','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\r\n<strong>Joel - Foot</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Foot and Ankle Treatment</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Are you looking for an alternative to surgery for your chronic ankle sprains? Every day, OrthoRegen treats people with foot and ankle injuries by the use of comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> foot treatments. Nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n\r\n<h4>Why Prolotherapy Foot Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  Like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. If you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. If you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Ankle instability</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials/\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials/\">Ankle Testimonials</a> pages.','Foot Injury Treatment','','inherit','closed','closed','','595-revision-v1','','','2019-06-19 05:39:55','2019-06-19 05:39:55','',595,'https://www.drfields.com/uncategorized/595-revision-v1/',0,'revision','',0),(2149,8,'2019-06-19 05:42:57','2019-06-19 05:42:57','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Hand Injury Treatment Suzie Wrist\"]\r\n<strong>Suzie - Wrist</strong>\r\n</div>\r\n<h4>Prolotherapy Hand and Wrist Injuries and Treatment</h4>\r\nWhether you are suffering from a sprained finger from football or baseball, or wrist pain from tennis or golf, OrthoRegen treats numerous finger, hand and wrist injuries with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\r\n\">Prolotherapy</a> hand treatments. We can treat your pain or injury without surgery, without pain medications or without extended time away from training and competition.\r\n\r\nIn our experience, comprehensive Prolotherapy can successfully treat pain in your fingers, hands and wrists, with optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, can consult with you to determine if you are a candidate for <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Because of his participation in Triathlons and Ironman competitions, he understands your desire to return quickly to the sports in which you participate.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Common Hand and Wrist Injuries Treatable by Prolotheraphy</h4>\r\nThe most common finger, wrist and hand pain and injuries we treat with comprehensive Prolotherapy are:\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Baseball injuries</li>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Finger pain</li>\r\n 	<li>Football injuries</li>\r\n 	<li>Golf injuries</li>\r\n 	<li>Hand pain</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Sprain injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tennis injuries</li>\r\n 	<li>Thumb pain</li>\r\n 	<li>Wrist pain</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy hand and wrist treatments, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Prolotherapy Hand and Wrist Testimonials page</a>.','Hand Injury Treatment','','inherit','closed','closed','','615-revision-v1','','','2019-06-19 05:42:57','2019-06-19 05:42:57','',615,'https://www.drfields.com/uncategorized/615-revision-v1/',0,'revision','',0),(2150,8,'2019-06-19 05:44:47','2019-06-19 05:44:47','<h4>Sports Injuries Treatment</h4>\r\nHave sports injuries stopped you? Get back in the game with Prolotherapy and Dr. Peter A. Fields, The Athletic Doc®. At OrthoRegen we offer innovative, non-surgical treatments for your sports injury or chronic pain problems. Without unnecessary medication, prescriptions, cortisone shots or surgery, Prolotherapy can regenerate damaged or worn ligaments and strengthen weakened tendons. The most beneficial aspect of our non-surgical sports injuries treatment is that you can continue to train while you receive Prolotherapy treatments. We treat athletes of all skill and age levels: high school to college; amateur to professional athletes.\r\n\r\n<h4>How Can Prolotherapy Help Your Sports Injury?</h4>\r\nProlotherapy is an innovative treatment that stimulates the immune system to repair damaged tissue.”Prolo” comes from the word proliferate. Prolotherapy then, describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and other sports injuries. Receive treatment for your sports injuries with comprehensive Prolotherapy at OrthoRegen.\r\n\r\n<h4>Are You Suffering from a Sports Injury?</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">K</a><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">nee Pain</a></li>\r\n 	<li> ACL Tear</li>\r\n 	<li>Torn Meniscus</li>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Neck-Pain\">Neck pain</a></li>\r\n 	<li>Back Pain</li>\r\n 	<li>Shin Splints</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>Hamstring Strain</li>\r\n 	<li>IT Band Injury</li>\r\n 	<li>Turf Toe</li>\r\n</ul>\r\n<strong><em> Prolotherapy Sports Injuries Treatment can help you get back in the game – and get back quickly!</em></strong>\r\n\r\n<h4>Prolotherapy Doctor Treats Sports Injuries Without Surgery</h4>\r\nReceive treatment for your sports injuries by Ironman Triathlete Dr. Peter A. Fields. For over 25 years, Dr. Fields has been active in the sport of Triathlon. It is his experience as an athlete that allows him to understand the potential for injury and the demands of sports on the physical body. He also understands the passion athletes have to get back to training and competition, and their need to recover quickly from injury, because he has been there. In November 2012, Dr. Fields completed his second Ironman Triathlon, beating his 2011 time by better than 14 minutes. Dr. Fields is known as The Athletic Doc®. Wouldn’t you want to be treated by a sports doctor who is also an athlete?\r\n\r\nOur medical team finds that treating athletes is very rewarding. We can utilize a comprehensive health approach to help you reach your peak physical performance. <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> allows you to get back to training within a couple of days and does not involve periods of long recovery. Prolotherapy involves the injection of natural substances at the exact site of an injury. This stimulates the immune system to repair the sports injury. Areas often injured through sports related activities—ligaments, tendons, menisci, muscles, growth plates, joint capsules and cartilage are stimulated to heal. Anesthetics are also used to minimize any unpleasant pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Are You A Candidate for Non- Surgical Sports Injuries Treatment?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13106272458\">(310) 627-2458</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Testimonials page</a>.','Sports Injuries Treatment Overview','','inherit','closed','closed','','632-revision-v1','','','2019-06-19 05:44:47','2019-06-19 05:44:47','',632,'https://www.drfields.com/uncategorized/632-revision-v1/',0,'revision','',0),(2151,8,'2019-06-19 05:47:08','2019-06-19 05:47:08','<div class=\"link_string\">\r\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>\r\n','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-06-19 05:47:08','2019-06-19 05:47:08','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(2152,8,'2019-06-19 05:48:33','2019-06-19 05:48:33','<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Video Testimonials</a></p>\r\n<p><strong><a name=\"Mindy\"></a>Elbow</strong></p>\r\n<p>I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.  It got so bad that I couldn\'t do everyday things, let alone hold a tennis racket.  After a year of pain, not playing tennis and numerous treatments with both a chiropractor and orthopedist, I didn\'t have much faith that anything would help.  My chiropractor referred me to Dr Fields.  Dr. Fields patiently explained how and why prolotherapy will work.  I figured that I had tried everything else and why not give it a try.  I had both Dextrose and PRP prolotherapy to try and fix my elbow.  I can happily say I am mostly pain free and back to playing tennis 4 to 5 days a week.  I am so happy you gave me my game back.</p>\r\n<p>Thanks for everything,<br>\r\nMindy</p>\r\n<p><strong><a name=\"Robert\"></a>Shoulder </strong></p>\r\n<p>After two orthopedic surgeons told me that my rotator cuff was too atrophied and weak for surgical repair, I discovered Prolotherapy. I researched the procedure and decided to try it. I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else. After only 5 treatments, I am back to multiple sets of 200lbs. on the bench press and push-ups which really hurt before. It took 15 weeks as opposed to nine months of recovery for rotator cuff surgery and I have no pain whatsoever.</p>\r\n<p>Robert L. Miller 69 yo<br>\r\nReal Estate Developer<br>\r\nFormer - US Navy Lieutenant J.G</p>\r\n<p style=\"text-align: center;\">\r\n<a href=\"/Contact-Dr-Fields\" class=\"btn-more\"><em class=\"fa fa-phone\"></em>&nbsp;&nbsp;Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><strong><a name=\"Colin\"></a>Elbow</strong></p>\r\n<p>I am very active and work out four to five days a week. I had experienced elbow pain for more than one year. I finally went to see a leading orthopedic surgeon who specializes in sports medicine. During the next 14 months, I was given three cortisone injections and had six acupuncture/acupressure treatments. I was also given anti-inflammatory medicine as well. After all of this, there was no discernable difference. I was unable to work out and was possibly looking at elbow reconstruction.</p>\r\n<p>I was then was referred to Peter A. Fields, MD, DC by my chiropractor. After a thorough examination, Dr Fields decided that Prolotherapy would be beneficial for me. After only two or three treatments, I was able to start getting back to working out and lifting. Following the full course of treatments, I am without any pain and working out as usual. For me finding Prolotherpay not only fixed my problem but helped me avoid surgery.</p>\r\n<p>Thanks Dr Fields! <br>\r\n<br>\r\nColin , 60 yo CEO, Kurgan-Cheviot <br>\r\nMass Production Jewelry Business</p>\r\n<p><strong>Foot </strong></p>\r\n<p>I came to see Dr Peter Fields basically as my \"last resort.\" <br>\r\nI had pain in my left foot for well over 6 years. <br>\r\nI am a runner - not world class or even a competitive runner, but I LOVE to run - running is my passion. I had reached a point where I couldn\'t run a half a mile without bursting into tears from the pain! And I have been known to have a pretty high pain tolerance. I had run 3 marathons and now I couldn\'t run a mile.</p>\r\n<p>I had seen numerous orthopedic surgeons…… and not one doctor was able to help me. They couldn\'t find anything wrong with my foot- I think they thought I was nuts! But this pain was REAL and I couldn\'t run!</p>\r\n<p>I finally went to see my podiatrist – who gave me 3 options: <br>\r\nwrapping my foot for the rest of my life; surgery; or I could try Prolotherapy. Well, I opted to try Prolotherapy. What could it hurt. I couldn\'t afford to take 6 months off for foot surgery so Prolotherapy was my last option.</p>\r\n<p><strong><a name=\"Penny\"></a>WOW is all I can say!</strong></p>\r\n<p>I have my running back! Prolotherapy and Dr Fields gave me back my running! <br>\r\nRunning brings me peace, joy and happiness! I can run and I run PAIN FREE!!</p>\r\n<p>I can\'t tell you how happy this has made me! I thought I would have to quit running! <br>\r\nBut I didn\'t! I came to see Dr Fields…and it was the best thing I ever did! <br>\r\nI had approximately 8 treatments on my left foot with AMAZING results. <br>\r\nI am pain free now! To me it\'s a miracle! <br>\r\nIt\'s been a huge transition: crying after a half a mile to running half marathons again, and maybe another marathon down the road!</p>\r\n<p>Dr Fields gave me back my running! <br>\r\nThank you so very much!</p>\r\n<p>Penny 44 yo<br>\r\nCamera Assistant in the Film Industry<br>\r\nHalf and Full Marathon Runner and a Wannabe Triathlete!</p>\r\n<p style=\"text-align: center;\">\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com\">  Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><strong><a name=\"Amy\"></a>S.I Joint/hip </strong></p>\r\n<p>I just thought I would drop you a quick note to thank you for the time and effort you took with me to make sure that I got the proper treatment for my SI joint/hip issue. After months of visits to an orthopedic doctor, physical therapy, chiropractic adjustments and time off from running and riding, nothing was helping my injury. As a very athletic person, this was very upsetting and frustrating.</p>\r\n<p>When it was suggested I try Prolotherapy, I booked an appointment in hopes something would work (after Googling the treatment to see what I could learn!). I want you to know how much it meant to me that you took so much time to learn about the history of my injury, my training and overall health. It was really great to have someone answer ALL of my questions about the treatment, advise me about what I could do training wise and what to expect over the course of the treatment. Five treatments later I am thrilled to tell you that my injury and pain has all but disappeared. Just three weeks ago, I completed a half-Ironman triathlon in Sonoma, something that seemed impossible earlier in the season.</p>\r\n<p>The Prolotherapy certainly worked very well, but I attribute my recovery to more than just the treatment. It was concern, caring and skill as a doctor and chiropractor that helped me get back to what I love…running, riding and swimming.<br>\r\nThanks again for what you do.<br>\r\nWith my best,</p>\r\n<p>Amy 36 yo<br>\r\nVice President of Development <br>\r\nArthritis Foundation of America/Southern California Chapter<br>\r\nMember of the Los Angeles Triathlon Club</p>\r\n<p><strong><a name=\"Geri\"></a>Ankle</strong></p>\r\n<p>As they say, getting older is not for sissies! In 2006, I broke my right ankle (yes, in a stupid accident), and was in a cast for the requisite 6 weeks. I was turned loose to recover on my own by using it normally, or as normally as I could. Even though it had been a relatively minor break, it took about one year for me to stop limping and \"remembering\" the break with every painful step that I took.</p>\r\n<p>In 2008, I had a significantly more serious dislocation of my left ankle from another stupid accident. The pain in this one was excruciating.</p>\r\n<p>Six more weeks in a cast, then six weeks of physical therapy. <br>\r\nThe pain was still present; I wondered if my pain would again last for a year or more (as many of the \'medical\' websites state is the case with a sub-talar dislocation). I then began seeing Dr. Peter Fields to receive prolotherapy treatments for my aching left ankle.</p>\r\n<p>Within five treatments, my pain was gone or mostly gone! <br>\r\nI know that the prolotherapy helped me to heal faster and stronger. <br>\r\nToday, I occasionally get a twinge in the area but is nothing like the \"every step\" pain that I had experienced with my previous injury.</p>\r\n<p>I credit the prolotherapy and Dr. Fields\' deft application to my recovery. <br>\r\nNext, I am going to try to remember to stop having stupid accidents! <br>\r\nThanks, again, Dr. Fields</p>\r\n<p>Geri 53 yo MHROD, CPT, CPLP<br>\r\nPerformance Consulting and Organization Development</p>\r\n<p><strong><a name=\"Nathania\"></a>Rib/Chest Wall Pain</strong></p>\r\n<p>For seven years I have had rib/chest wall pain. <br>\r\nBefore I started treatment with Dr Fields, the pain would come on about once every month; debilitating pain that even with pain medicines would keep me housebound and curled up on the couch for two to three days at time.</p>\r\n<p>I thought that I had tried everything including regular chiropractic visits, anti-inflammatory medicine, pain medicine and more to get rid of the pain. <br>\r\nI am a very active and physically fit person who goes to the gym 5- 6 times a week.<br>\r\nThis was ruining my life.</p>\r\n<p>I wanted to let you know that as of now (as of our last treatment), I am pain-free and fully able to enjoy life again!</p>\r\n<p>In 5 short sessions, you turned me from a skeptic into a believer and I can\'t thank you enough.What you do over there is nothing short of pure magic and I believe, believe, BELIEVE!!</p>\r\n<p>Prolotherapy has changed my life and eradicated 7 years of constant pain and you are and will remain the shining star who has given me my life back.</p>\r\n<p>Thank you for everything and I will continue to refer anyone and everyone who I believe could benefit from this treatment.</p>\r\n<p>Thanks again and keep up the good work- you are doing something amazing for people who are desperate and exhausted about their situations and I can\'t thank you enough.</p>\r\n<p>Nathania, 27 years old</p>\r\n<p style=\"text-align: center;\">\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com\">  Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><strong><a name=\"Mrs\"></a>Shoulder</strong></p>\r\n<p>I am not a medical doctor. However, I am a Clinical Laboratory Scientist (CLS), with a strong educational background in body mechanics. I am also an amateur triathlete. I injured a ligament in my right arm during training. This created a constant nagging pain my shoulder.</p>\r\n<p>I thought I was just \"stuck with it\", as I happened to be over 50, and would have to tolerate this pain due to my age. No matter what I did, the arm just didn\'t seem to get better.</p>\r\n<p>I read about Prolotherapy and did some research on it. I went to see Dr. Fields to get Prolotherapy treatments. After five treatments over four months, the pain in shoulder was completely eliminated. From my personal experience, Prolotherapy is a viable way to treat injured tendons and ligaments. The bottom line: either choose to use healthy, relatively safe alternative procedures like Prolotherapy. Or get expensive MRI\'s that miss 50% of injuries, have surgery and/or take pain-killers in order to \"get by\".</p>\r\n<p>Prolotherapy treatment is not an overnight cure. But what are a few days of discomfort to promote healing versus a lifetime of chronic pain? <br>\r\nThis was a no-brainer for me</p>\r\n<p>Sincerely,<br>\r\nMary, B.S., CLS 51 yo <br>\r\nMember of the Los Angeles Triathlon Club</p>\r\n<p><strong><a name=\"Jane\"></a>Knee</strong></p>\r\n<p>I started Prolotherapy treatments in December for a problem with my left knee. I could barely bend it and had a lot of pain. From the first treatment, I saw improvement. When you were finished, I could bend the knee so much more and without pain. And even after 9 months post treatment, I\'m continually improving the amount I can bend it! But that\'s not all. After the left knee was better, you then started treatment on my right knee for a re-injury of an old torn meniscus. After two Prolotherapy treatments, the pain is gone! It happened so fast, I forgot to thank you. So, here it is Dr. Fields - Thank You so much for giving me my knee\'s back!</p>\r\n<p>Best Regards,<br>\r\n<br>\r\nJane , 62 years old<br>\r\nCertified Professional Redesigner<br>\r\nReDesign LA!</p>\r\n<p><strong><a name=\"Lois\"></a>Knee</strong></p>\r\n<p>I had been having pain and swelling in both knees due to Arthritis. I could not tolerate pain pills. My daughter referred me to Dr. Peter Fields for Prolotherapy treatment. On my first visit to his office in Santa Monica, he examined my knees and explained the procedure to me. I had an appointment on December 1, 2006 for my first Prolotherapy injections on my right knee, alternating with right and left knee a week apart. <br>\r\nAfter the final treatments ended I am still without all the pain and have more muscle strength in my legs.</p>\r\n<p>Lois - 72 yo</p>\r\n<p style=\"text-align: center;\">\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com\">  Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><strong><a name=\"Katherine\"></a>Toes</strong></p>\r\n<p>In January 2007, I went to see Dr. Fields on a recommendation from my podiatrist. I was training for the Los Angeles Marathon, and I was having really bad pain in the second toe of my left foot. I had bunion surgery ten years ago that was causing the problem in my foot. I was unable to complete a run over 13 miles and my foot would hurt for days after attempting a long run.</p>\r\n<p>On Dr. Fields advice, I had four Prolotherapy treatments prior to the marathon. On March 4, 2007, I proudly completed my first marathon. I had another four treatments after the marathon, my foot no longer hurts and I am still running today. My treatments took place in a span of about 6 months. Dr. Fields is an athlete and I think this made a difference in how he treated me and my foot. He never discouraged me from running the marathon. In addition to the help with my foot, Dr.Fields helped me with vitamins and supplements to help my overall health and performance. <br>\r\nI think Dr. Fields is great!!</p>\r\n<p>Katherine 46 yo<br>\r\nMarathon Runner and very active mom of two small children</p>\r\n<p><strong><a name=\"Sharon\"></a>Knee and Achilles Tendon</strong></p>\r\n<p>I am 68 years old and was enduring chronic pain from osteoarthritis in the knees and an old Achilles tendon injury. Because of the pain, I could not even move about the house without using my walker and was unable to stand long enough to do most of the things I wanted to do. I had been seeing an orthopedic surgeon and was about to undergo arthroscopic surgery on both knees.</p>\r\n<p>My husband had heard about prolotherapy, so we did a little research on it. <br>\r\nWe discovered Dr. Fields, and I made the decision to postpone the surgery and begin prolotherapy with him.</p>\r\n<p>I had a series of eight treatment sessions over a period of about nine months, during which Dr. Fields treated both knees and one Achilles tendon. The results have been remarkably positive!</p>\r\n<p>I am not completely pain free, but I can now move about the house and yard and do the chores I love to do, without the walker. My legs feel much stronger, with less pain, and I am very happy I did not get the surgery.</p>\r\n<p>We had to travel more than 60 miles one way for each treatment session with Dr. Fields, and it was well worth it. If you decide on prolotherapy, you probably cannot find a better or more professional practitioner than Dr. Peter Fields.</p>\r\n<p>Sharon, 68 yo</p>\r\n<p><strong><a name=\"Paul\"></a>Foot</strong></p>\r\n<p>I have been an avid runner for over 20 years and my t shirt collection and metals are something to see. I have run over 500 races, from marathons to 5K\'s. I have been lucky to be virtually injury free except for a pain in my left forefoot (metatarsal) area. I tried everything for the pain including seeing numerous doctors (podiatrists to sports medicine docs). I also tried three months of rest, multiple cortisone shots and many anti-inflammatory medicines. No matter what I did, the pain would come back whenever I would start running again. Then a friend asked me if I heard of Prolotherapy. I laughed and said \"No, but I\'ve tried just about everything else, what have I got to lose\". My friend gave me the web site for Peter A. Fields MD, DC, but even then I was a skeptic. After months of frustration, I finally decided to give Prolotherapy a try so I set up an appointment and went to see Dr Fields.</p>\r\n<p>Dr Fields and his staff are extremely nice and everything was explained thoroughly. It sounded too good to be true. With nothing to lose but the pain, I went for it. After about six treatments, I am almost back to 100%. I just completed my second half marathon, back to back 10-Ks and I am training for a full marathon. My T shirt and medal collect are growing again thanks to Dr Fields. Prolotherapy Works!!!!!</p>\r\n<p>Paul age 53<br>\r\nAvid runner and racer</p>\r\n<p style=\"text-align: center;\">\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com\">  Schedule Your Appointment Today!</a>\r\n</p>\r\n<p><em>*The testimonials reflect the real-life experiences of individuals who used our products and/or services. However, individual results may vary.</em></p>\r\n','Written Testimonials','','inherit','closed','closed','','1012-revision-v1','','','2019-06-19 05:48:33','2019-06-19 05:48:33','',1012,'https://www.drfields.com/uncategorized/1012-revision-v1/',0,'revision','',0),(2153,8,'2019-06-19 05:50:23','2019-06-19 05:50:23','<div class=\"link_string\">\r\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla Knee\"]<strong>Priscilla - Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Knee - \"]<strong>Andy -Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Knee\"]<strong>Claire - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Knee\"]<strong>Robert B. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','inherit','closed','closed','','1700-revision-v1','','','2019-06-19 05:50:23','2019-06-19 05:50:23','',1700,'https://www.drfields.com/uncategorized/1700-revision-v1/',0,'revision','',0),(2154,8,'2019-06-19 05:50:39','2019-06-19 05:50:39','<div class=\"link_string\">\r\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Knee Testimonials','','inherit','closed','closed','','1702-revision-v1','','','2019-06-19 05:50:39','2019-06-19 05:50:39','',1702,'https://www.drfields.com/uncategorized/1702-revision-v1/',0,'revision','',0),(2155,8,'2019-06-19 05:50:52','2019-06-19 05:50:52','<div class=\"link_string\">\r\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Low Back Testimonials','','inherit','closed','closed','','1704-revision-v1','','','2019-06-19 05:50:52','2019-06-19 05:50:52','',1704,'https://www.drfields.com/uncategorized/1704-revision-v1/',0,'revision','',0),(2156,8,'2019-06-19 05:51:07','2019-06-19 05:51:07','<div class=\"link_string\">\r\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Shoulder Testimonials','','inherit','closed','closed','','1706-revision-v1','','','2019-06-19 05:51:07','2019-06-19 05:51:07','',1706,'https://www.drfields.com/uncategorized/1706-revision-v1/',0,'revision','',0),(2157,8,'2019-06-19 05:51:21','2019-06-19 05:51:21','<div class=\"link_string\">\r\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Hip Testimonials','','inherit','closed','closed','','1708-revision-v1','','','2019-06-19 05:51:21','2019-06-19 05:51:21','',1708,'https://www.drfields.com/uncategorized/1708-revision-v1/',0,'revision','',0),(2158,8,'2019-06-19 05:51:33','2019-06-19 05:51:33','<div class=\"link_string\">\r\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Neck Testimonials','','inherit','closed','closed','','1711-revision-v1','','','2019-06-19 05:51:33','2019-06-19 05:51:33','',1711,'https://www.drfields.com/uncategorized/1711-revision-v1/',0,'revision','',0),(2159,8,'2019-06-19 05:51:44','2019-06-19 05:51:44','<div class=\"link_string\">\r\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Ankle Testimonials','','inherit','closed','closed','','1713-revision-v1','','','2019-06-19 05:51:44','2019-06-19 05:51:44','',1713,'https://www.drfields.com/uncategorized/1713-revision-v1/',0,'revision','',0),(2160,8,'2019-06-19 05:51:55','2019-06-19 05:51:55','<div class=\"link_string\">\r\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Elbow Testimonials','','inherit','closed','closed','','1715-revision-v1','','','2019-06-19 05:51:55','2019-06-19 05:51:55','',1715,'https://www.drfields.com/uncategorized/1715-revision-v1/',0,'revision','',0),(2161,8,'2019-06-19 05:52:04','2019-06-19 05:52:04','<div class=\"link_string\">\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\n</div>\n\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"centrevideo\">\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\n</div>\n\n&nbsp;\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Foot Testimonials','','inherit','closed','closed','','1717-autosave-v1','','','2019-06-19 05:52:04','2019-06-19 05:52:04','',1717,'https://www.drfields.com/uncategorized/1717-autosave-v1/',0,'revision','',0),(2162,8,'2019-06-19 05:52:09','2019-06-19 05:52:09','<div class=\"link_string\">\r\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Foot Testimonials','','inherit','closed','closed','','1717-revision-v1','','','2019-06-19 05:52:09','2019-06-19 05:52:09','',1717,'https://www.drfields.com/uncategorized/1717-revision-v1/',0,'revision','',0),(2163,8,'2019-06-19 05:52:41','2019-06-19 05:52:41','<div class=\"link_string\">\r\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Wrist Testimonials','','inherit','closed','closed','','1719-revision-v1','','','2019-06-19 05:52:41','2019-06-19 05:52:41','',1719,'https://www.drfields.com/uncategorized/1719-revision-v1/',0,'revision','',0),(2164,8,'2019-06-19 05:52:58','2019-06-19 05:52:58','<div class=\"link_string\">\r\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Sports Hernia Testimonials','','inherit','closed','closed','','1721-revision-v1','','','2019-06-19 05:52:58','2019-06-19 05:52:58','',1721,'https://www.drfields.com/uncategorized/1721-revision-v1/',0,'revision','',0),(2165,8,'2019-06-19 05:53:16','2019-06-19 05:53:16','<div class=\"link_string\">\r\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Spanish Testimonials','','inherit','closed','closed','','1723-revision-v1','','','2019-06-19 05:53:16','2019-06-19 05:53:16','',1723,'https://www.drfields.com/uncategorized/1723-revision-v1/',0,'revision','',0),(2166,8,'2019-06-19 05:53:28','2019-06-19 05:53:28','<div class=\"link_string\">\r\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Hamstring Testimonials','','inherit','closed','closed','','1725-revision-v1','','','2019-06-19 05:53:28','2019-06-19 05:53:28','',1725,'https://www.drfields.com/uncategorized/1725-revision-v1/',0,'revision','',0),(2167,8,'2019-06-19 05:53:39','2019-06-19 05:53:39','<div class=\"link_string\">\r\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Ganglion Cyst Testimonials','','inherit','closed','closed','','1727-revision-v1','','','2019-06-19 05:53:39','2019-06-19 05:53:39','',1727,'https://www.drfields.com/uncategorized/1727-revision-v1/',0,'revision','',0),(2168,8,'2019-06-19 05:53:44','2019-06-19 05:53:44','<div class=\"link_string\">\n<a href=\"/Testimonials/Video-Testimonials\">All</a><a href=\"/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"/Testimonials/Knee-Testimonials\">Knee</a><a href=\"/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"/Testimonials/Hip-Testimonials\">Hip</a><a href=\"/Testimonials/Neck-Testimonials\">Neck</a><a href=\"/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"/Testimonials/Foot-Testimonials\">Foot</a><a href=\"/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"/Testimonials/Headache-Testimonials\">Headache</a>\n</div>\n\n<p style=\"text-align: center;\"><a href=\"/testimonials/written-testimonials/\" class=\"buttonlink\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"centrevideo\">\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\n</div>\n\n&nbsp;\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Headache Testimonials','','inherit','closed','closed','','1729-autosave-v1','','','2019-06-19 05:53:44','2019-06-19 05:53:44','',1729,'https://www.drfields.com/uncategorized/1729-autosave-v1/',0,'revision','',0),(2169,8,'2019-06-19 05:53:49','2019-06-19 05:53:49','<div class=\"link_string\">\r\n<a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a>\r\n</div>\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Headache Testimonials','','inherit','closed','closed','','1729-revision-v1','','','2019-06-19 05:53:49','2019-06-19 05:53:49','',1729,'https://www.drfields.com/uncategorized/1729-revision-v1/',0,'revision','',0),(2170,8,'2019-06-19 18:12:49','2019-06-19 18:12:49','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_first\">Congratulations Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in Tanzania, Africa.19,341 feet!!!</span>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span>\r\n<span class=\"header_text_third\"> </span>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>	\r\n</div>\r\n</div>	\r\n	\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints & Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>\r\n\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Get Help Now!</a>\r\n</div>\r\n</div>		\r\n	\r\n<div class=\"item\" id=\"slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"><em class=\"icon-phone\"></em>&nbsp;&nbsp;Let\'s Get Started Today!</a>\r\n</div>\r\n</div>	\r\n</div>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n	\r\n	\r\n<div class=\"col-md-4 box1\">\r\n<smalltext>What\'s</smalltext>\r\n<h3>New</h3>\r\n<ul>\r\n    <li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n    <li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n    <li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n    <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n    <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>	\r\n</div>\r\n	\r\n<div class=\"col-md-4 box2\" id=\"testimonials\">\r\n<smalltext>Patient</smalltext>\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n<p>\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>	\r\n</div>\r\n<div class=\"testimonial-item\">\r\n<p>\"I highly recommend it to anyone who needs to recover fast and get back out there.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>	\r\n</div>\r\n\r\n<div class=\"testimonial-item\">\r\n<p>\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"</p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" class=\"testimonial-img\" alt=\"\">\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>	\r\n</div>\r\n</div>\r\n</div>	\r\n	\r\n<div class=\"col-md-4 box3\">\r\n<smalltext>News &</smalltext>\r\n<h3>Events</h3>		\r\n<ul>\r\n    <li><a href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Lectured in Mexico City&nbsp;</a></li>\r\n    <li><a href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\" style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia&nbsp;</a></li>\r\n</ul>	\r\n</div>		\r\n	\r\n</div>\r\n</div>	\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span>&nbsp;by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\">	\r\n	</div>\r\n	<div class=\"col-md-7 about_holder\">\r\n\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor<br>\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"icon info\" title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\n<p>Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...</p>\r\n<a href=\"https://www.drfields.com/about/dr-fields-bio/\" class=\"secondaryButton\">Read More</a></div>\r\n</div>\r\n\r\n	\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img alt=\"Man Icon\" title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\"></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>	\r\n<p>Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...</p>\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a></div>	\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-06-19 18:12:49','2019-06-19 18:12:49','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2171,8,'2022-08-26 04:56:15','2022-08-26 04:56:15','&nbsp;\n<h2>Stubborn, Chronic Neck Pain</h2>\nSince the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and rotate, but if you are unable to move your neck normally, your life can be severely disrupted, and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be Regenerative Orthopedics for chronic neck pain.\n<h2>What Causes Neck Pain?</h2>\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\n\n<em>Symptoms involved with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:</em>\n<ul>\n 	<li>Headaches</li>\n 	<li>Pain in the shoulder, arm, or hand</li>\n 	<li>Reduced range of motion in the neck</li>\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands, and feet.</li>\n</ul>\nIf you are experiencing ongoing neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty, and symptoms may begin to appear years after the disease begins.\n\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\n<strong>Mark - Neck</strong>\n\n<em>Other Causes of Neck Pain?</em>\n\nA strain or spasm of the muscles in the neck or inflammation of the neck may be a cause of the neck pain you feel. Pain in the neck can also be caused by injuries such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, disc herniation, a pinched nerve, meningitis, influenza, a heart attack, or torticollis can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture and sleeping on a pillow that is too high, can be causes of localized neck pain.\n\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\n<h3>Regenerative Orthopedics and Chronic Neck Pain</h3>\nMany patients are tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. Unfortunately, in many cases, these methods do not take care of the cause of the pain.\n\nMusculoskeletal pain is primarily due to weakness in the ligaments, tendons, and possibly cartilage. <strong>The good news is that Regenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy,  can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.</strong>\n<h3><em>What Does Research Say?</em></h3>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"section\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\n<em>The Journal of Spine Research conducted a clinical study to evaluate the safety and effectiveness of PRP for the treatment of neck and low back pain. The specific cause of the pain in the study participants was spinal disc herniation (HNP). The patients had already tried different conservative treatments that did not work. <strong>However, the PRP treatments resulted in over 80% improvement.</strong> Plus, the improvement lasted. These patients were followed for eight years.1</em>\n\n</div>\n</div>\n</div>\n</div>\nRegenerative Orthopedics work because they stimulate the healing cascade in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, leading to local inflammation in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the injected ligament, making it stronger.\n<h3>Are you a Candidate For Regenerative Orthopedics for Chronic Neck Pain?</h3>\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a safe, affordable option that allows you to keep working and remain active during recovery. These chronic neck pain treatments are among the few that encourage movement post-treatment. Movement is essential since it aids the healing process. By contrast, surgery requires you to reduce activity after treatment.\n\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\n<h3><strong>Reference</strong></h3>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"section\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\n1Cameron JA, Thielen KM (2017) Autologous Platelet Rich Plasma for Neck and Lower Back Pain Secondary to Spinal Disc Herniation: Midterm Results. Spine Res. Vol. 3 No. 2:10.\n\n</div>\n</div>\n</div>\n</div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stubborn, Persistent Neck Pain','','inherit','closed','closed','','509-autosave-v1','','','2022-08-26 04:56:15','2022-08-26 04:56:15','',509,'https://www.drfields.com/uncategorized/509-autosave-v1/',0,'revision','',0),(2172,8,'2019-06-19 19:31:24','2019-06-19 19:31:24','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in Tanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span><a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-06-19 19:31:24','2019-06-19 19:31:24','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2173,8,'2019-06-19 19:39:09','2019-06-19 19:39:09','<h2 class=\"text-center\">Please fill out the form below for your inquiries!</h2>\r\n[contact-form-7 id=\"4\" title=\"Contact page form\"]','Contact','','inherit','closed','closed','','29-autosave-v1','','','2019-06-19 19:39:09','2019-06-19 19:39:09','',29,'https://www.drfields.com/uncategorized/29-autosave-v1/',0,'revision','',0),(2176,8,'2019-06-25 02:18:39','0000-00-00 00:00:00','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\" style=\"text-align: left;\">\r\n\r\n[caption id=\"attachment_2181\" align=\"alignleft\" width=\"500\"]<img class=\"wp-image-2181 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-injury-500x500.png\" alt=\"Hip Injury\" width=\"500\" height=\"500\" /> Hip Injury[/caption]\r\n\r\nRegenerative, non-surgical treatments for painful hip conditions and arthritis have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results. Regenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">.</span> Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y9 pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>The Hip and Labrum</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. The hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis. But we move our hips a lot and put them through high rates of wear, so more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injury.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. Labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries. Symptoms include varying degrees of pain, including pain deep in the groin, as</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y15 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">well as clicking, popping, and a locking sensation in the hip joint. A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area. Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight distribution inside the joint, prompting the joint surfaces to rub roughly and then generating a breaking down of articular cartilage, which limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y1c pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y1d pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Regenerative Orthopedics aims to address the soft tissue weakness that transpired during the original injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred. The labrum has a poor blood supply, which makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability. Physical therapy can help strengthen the surrounding muscles, but cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y2 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">reduces pain and symptoms. Degenerative conditions, such as hip labral injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries and involves the injection of natural substances into the degenerated hip to stimulate healing. Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed, especially in very active people and athletes. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow), which is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\" style=\"text-align: left;\">Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable and will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration. Most painful hip conditions begin with</div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y10 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\" style=\"text-align: left;\">damage to the surrounding ligaments and progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Hip Labral Tears and Non-Surgical Treatment with Regenerative Orthopedics','','draft','closed','closed','','','','','2019-06-25 02:18:39','2019-06-25 02:18:39','',1045,'https://www.drfields.com/?page_id=2176',0,'page','',0),(2177,8,'2019-06-25 01:46:06','2019-06-25 01:46:06','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Regenerative, non-surgical treatments for painful hip conditions and arthritis have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results. Regenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">.</span> Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y9 pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>The Hip and Labrum</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. The hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis. But we move our hips a lot and put them through high rates of wear, so more and more, hip injuries, including tears to the</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ye pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injury.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. Labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries. Symptoms include varying degrees of pain, including pain deep in the groin, as</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y15 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">well as clicking, popping, and a locking sensation in the hip joint. A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area. Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y19 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">distribution inside the joint, prompting the joint surfaces to rub roughly and then generating a breaking down of articular cartilage, which limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y1c pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y1d pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Regenerative Orthopedics aims to address the soft tissue weakness that transpired during the original injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred. The labrum has a poor blood supply, which makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability. Physical therapy can help strengthen the surrounding muscles, but cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y2 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">reduces pain and symptoms. Degenerative conditions, such as hip labral injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries and involves the injection of natural substances into the degenerated hip to stimulate healing. Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed, especially in very active people and athletes. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow), which is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable and will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration. Most painful hip conditions begin with</div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y10 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">damage to the surrounding ligaments and progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Hip Labral Tears and Non-Surgical Treatment with Regenerative Orthopedics','','inherit','closed','closed','','2176-revision-v1','','','2019-06-25 01:46:06','2019-06-25 01:46:06','',2176,'https://www.drfields.com/uncategorized/2176-revision-v1/',0,'revision','',0),(2178,8,'2019-06-25 01:47:58','2019-06-25 01:47:58','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Regenerative, non-surgical treatments for painful hip conditions and arthritis have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results. Regenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">.</span> Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y9 pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>The Hip and Labrum</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. The hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis. But we move our hips a lot and put them through high rates of wear, so more and more, hip injuries, including tears to the</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ye pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injury.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. Labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries. Symptoms include varying degrees of pain, including pain deep in the groin, as</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y15 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">well as clicking, popping, and a locking sensation in the hip joint. A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area. Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y19 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">distribution inside the joint, prompting the joint surfaces to rub roughly and then generating a breaking down of articular cartilage, which limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y1c pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y1d pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Regenerative Orthopedics aims to address the soft tissue weakness that transpired during the original injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred. The labrum has a poor blood supply, which makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability. Physical therapy can help strengthen the surrounding muscles, but cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y2 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">reduces pain and symptoms. Degenerative conditions, such as hip labral injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries and involves the injection of natural substances into the degenerated hip to stimulate healing. Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed, especially in very active people and athletes. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow), which is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable and will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration. Most painful hip conditions begin with</div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y10 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">damage to the surrounding ligaments and progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Hip Labral Tears and Non-Surgical Treatment with Regenerative Orthopedics','','inherit','closed','closed','','2176-revision-v1','','','2019-06-25 01:47:58','2019-06-25 01:47:58','',2176,'https://www.drfields.com/uncategorized/2176-revision-v1/',0,'revision','',0),(2179,8,'2019-06-25 01:50:35','2019-06-25 01:50:35','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\" style=\"text-align: left;\">Regenerative, non-surgical treatments for painful hip conditions and arthritis have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results. Regenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">.</span> Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y9 pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>The Hip and Labrum</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. The hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis. But we move our hips a lot and put them through high rates of wear, so more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injury.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. Labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries. Symptoms include varying degrees of pain, including pain deep in the groin, as</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y15 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">well as clicking, popping, and a locking sensation in the hip joint. A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area. Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y19 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">distribution inside the joint, prompting the joint surfaces to rub roughly and then generating a breaking down of articular cartilage, which limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y1c pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y1d pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Regenerative Orthopedics aims to address the soft tissue weakness that transpired during the original injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred. The labrum has a poor blood supply, which makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability. Physical therapy can help strengthen the surrounding muscles, but cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y2 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">reduces pain and symptoms. Degenerative conditions, such as hip labral injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries and involves the injection of natural substances into the degenerated hip to stimulate healing. Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed, especially in very active people and athletes. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow), which is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable and will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration. Most painful hip conditions begin with</div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y10 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">damage to the surrounding ligaments and progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Hip Labral Tears and Non-Surgical Treatment with Regenerative Orthopedics','','inherit','closed','closed','','2176-revision-v1','','','2019-06-25 01:50:35','2019-06-25 01:50:35','',2176,'https://www.drfields.com/uncategorized/2176-revision-v1/',0,'revision','',0),(2180,8,'2019-06-25 01:51:45','2019-06-25 01:51:45','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\" style=\"text-align: left;\">Regenerative, non-surgical treatments for painful hip conditions and arthritis have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results. Regenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">.</span> Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y9 pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>The Hip and Labrum</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. The hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis. But we move our hips a lot and put them through high rates of wear, so more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injury.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. Labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries. Symptoms include varying degrees of pain, including pain deep in the groin, as</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y15 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">well as clicking, popping, and a locking sensation in the hip joint. A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area. Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight distribution inside the joint, prompting the joint surfaces to rub roughly and then generating a breaking down of articular cartilage, which limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y1c pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y1d pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Regenerative Orthopedics aims to address the soft tissue weakness that transpired during the original injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred. The labrum has a poor blood supply, which makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability. Physical therapy can help strengthen the surrounding muscles, but cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y2 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">reduces pain and symptoms. Degenerative conditions, such as hip labral injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries and involves the injection of natural substances into the degenerated hip to stimulate healing. Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed, especially in very active people and athletes. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow), which is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable and will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration. Most painful hip conditions begin with</div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y10 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">damage to the surrounding ligaments and progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Hip Labral Tears and Non-Surgical Treatment with Regenerative Orthopedics','','inherit','closed','closed','','2176-revision-v1','','','2019-06-25 01:51:45','2019-06-25 01:51:45','',2176,'https://www.drfields.com/uncategorized/2176-revision-v1/',0,'revision','',0),(2181,8,'2019-06-25 01:56:11','2019-06-25 01:56:11','Hip Injury','Hip Injury','Hip Injury','inherit','open','closed','','hip-injury','','','2019-06-25 01:56:11','2019-06-25 01:56:11','',2176,'https://www.drfields.com/wp-content/uploads/2019/06/hip-injury.png',0,'attachment','image/png',0),(2182,8,'2019-06-25 01:56:32','2019-06-25 01:56:32','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\" style=\"text-align: left;\">\r\n\r\n[caption id=\"attachment_2181\" align=\"alignleft\" width=\"1080\"]<img class=\"size-full wp-image-2181\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-injury.png\" alt=\"Hip Injury\" width=\"1080\" height=\"1080\" /> Hip Injury[/caption]\r\n\r\nRegenerative, non-surgical treatments for painful hip conditions and arthritis have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results. Regenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">.</span> Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y9 pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>The Hip and Labrum</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. The hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis. But we move our hips a lot and put them through high rates of wear, so more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injury.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. Labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries. Symptoms include varying degrees of pain, including pain deep in the groin, as</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y15 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">well as clicking, popping, and a locking sensation in the hip joint. A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area. Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight distribution inside the joint, prompting the joint surfaces to rub roughly and then generating a breaking down of articular cartilage, which limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y1c pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y1d pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Regenerative Orthopedics aims to address the soft tissue weakness that transpired during the original injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred. The labrum has a poor blood supply, which makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability. Physical therapy can help strengthen the surrounding muscles, but cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y2 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">reduces pain and symptoms. Degenerative conditions, such as hip labral injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries and involves the injection of natural substances into the degenerated hip to stimulate healing. Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed, especially in very active people and athletes. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow), which is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable and will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration. Most painful hip conditions begin with</div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y10 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">damage to the surrounding ligaments and progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Hip Labral Tears and Non-Surgical Treatment with Regenerative Orthopedics','','inherit','closed','closed','','2176-revision-v1','','','2019-06-25 01:56:32','2019-06-25 01:56:32','',2176,'https://www.drfields.com/uncategorized/2176-revision-v1/',0,'revision','',0),(2183,8,'2019-06-25 01:56:36','2019-06-25 01:56:36','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\" style=\"text-align: left;\">\r\n\r\n[caption id=\"attachment_2181\" align=\"alignleft\" width=\"1080\"]<img class=\"size-full wp-image-2181\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-injury.png\" alt=\"Hip Injury\" width=\"1080\" height=\"1080\" /> Hip Injury[/caption]\r\n\r\nRegenerative, non-surgical treatments for painful hip conditions and arthritis have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results. Regenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">.</span> Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y9 pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>The Hip and Labrum</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. The hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis. But we move our hips a lot and put them through high rates of wear, so more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injury.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. Labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries. Symptoms include varying degrees of pain, including pain deep in the groin, as</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y15 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">well as clicking, popping, and a locking sensation in the hip joint. A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area. Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight distribution inside the joint, prompting the joint surfaces to rub roughly and then generating a breaking down of articular cartilage, which limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y1c pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y1d pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Regenerative Orthopedics aims to address the soft tissue weakness that transpired during the original injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred. The labrum has a poor blood supply, which makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability. Physical therapy can help strengthen the surrounding muscles, but cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y2 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">reduces pain and symptoms. Degenerative conditions, such as hip labral injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries and involves the injection of natural substances into the degenerated hip to stimulate healing. Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed, especially in very active people and athletes. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow), which is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable and will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration. Most painful hip conditions begin with</div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y10 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">damage to the surrounding ligaments and progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Hip Labral Tears and Non-Surgical Treatment with Regenerative Orthopedics','','inherit','closed','closed','','2176-revision-v1','','','2019-06-25 01:56:36','2019-06-25 01:56:36','',2176,'https://www.drfields.com/uncategorized/2176-revision-v1/',0,'revision','',0),(2184,8,'2019-06-25 01:57:22','2019-06-25 01:57:22','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\" style=\"text-align: left;\">\r\n\r\n[caption id=\"attachment_2181\" align=\"alignleft\" width=\"500\"]<img class=\"wp-image-2181 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-injury-500x500.png\" alt=\"Hip Injury\" width=\"500\" height=\"500\" /> Hip Injury[/caption]\r\n\r\nRegenerative, non-surgical treatments for painful hip conditions and arthritis have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results. Regenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">.</span> Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y9 pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>The Hip and Labrum</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. The hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis. But we move our hips a lot and put them through high rates of wear, so more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injury.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. Labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries. Symptoms include varying degrees of pain, including pain deep in the groin, as</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y15 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">well as clicking, popping, and a locking sensation in the hip joint. A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area. Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight distribution inside the joint, prompting the joint surfaces to rub roughly and then generating a breaking down of articular cartilage, which limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y1c pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y1d pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Regenerative Orthopedics aims to address the soft tissue weakness that transpired during the original injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred. The labrum has a poor blood supply, which makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability. Physical therapy can help strengthen the surrounding muscles, but cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y2 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">reduces pain and symptoms. Degenerative conditions, such as hip labral injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries and involves the injection of natural substances into the degenerated hip to stimulate healing. Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed, especially in very active people and athletes. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow), which is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable and will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration. Most painful hip conditions begin with</div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y10 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">damage to the surrounding ligaments and progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Hip Labral Tears and Non-Surgical Treatment with Regenerative Orthopedics','','inherit','closed','closed','','2176-revision-v1','','','2019-06-25 01:57:22','2019-06-25 01:57:22','',2176,'https://www.drfields.com/uncategorized/2176-revision-v1/',0,'revision','',0),(2185,8,'2019-06-25 01:59:11','2019-06-25 01:59:11','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\" style=\"text-align: left;\">\r\n\r\n[caption id=\"attachment_2181\" align=\"alignleft\" width=\"500\"]<img class=\"wp-image-2181 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-injury-500x500.png\" alt=\"Hip Injury\" width=\"500\" height=\"500\" /> Hip Injury[/caption]\r\n\r\nRegenerative, non-surgical treatments for painful hip conditions and arthritis have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results. Regenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">.</span> Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y9 pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>The Hip and Labrum</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. The hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis. But we move our hips a lot and put them through high rates of wear, so more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injury.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. Labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries. Symptoms include varying degrees of pain, including pain deep in the groin, as</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y15 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">well as clicking, popping, and a locking sensation in the hip joint. A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area. Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight distribution inside the joint, prompting the joint surfaces to rub roughly and then generating a breaking down of articular cartilage, which limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y1c pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y1d pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Regenerative Orthopedics aims to address the soft tissue weakness that transpired during the original injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred. The labrum has a poor blood supply, which makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability. Physical therapy can help strengthen the surrounding muscles, but cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y2 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">reduces pain and symptoms. Degenerative conditions, such as hip labral injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries and involves the injection of natural substances into the degenerated hip to stimulate healing. Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed, especially in very active people and athletes. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow), which is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable and will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration. Most painful hip conditions begin with</div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y10 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">damage to the surrounding ligaments and progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Hip Labral Tears and Non-Surgical Treatment with Regenerative Orthopedics','','inherit','closed','closed','','2176-revision-v1','','','2019-06-25 01:59:11','2019-06-25 01:59:11','',2176,'https://www.drfields.com/uncategorized/2176-revision-v1/',0,'revision','',0),(2187,8,'2019-06-25 02:10:23','2019-06-25 02:10:23','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\" style=\"text-align: left;\">\r\n\r\n[caption id=\"attachment_2181\" align=\"alignleft\" width=\"500\"]<img class=\"wp-image-2181 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-injury-500x500.png\" alt=\"Hip Injury\" width=\"500\" height=\"500\" /> Hip Injury[/caption]\r\n\r\nRegenerative, non-surgical treatments for painful hip conditions and arthritis have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results. Regenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">.</span> Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y9 pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>The Hip and Labrum</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. The hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis. But we move our hips a lot and put them through high rates of wear, so more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injury.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. Labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries. Symptoms include varying degrees of pain, including pain deep in the groin, as</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y15 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">well as clicking, popping, and a locking sensation in the hip joint. A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area. Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight distribution inside the joint, prompting the joint surfaces to rub roughly and then generating a breaking down of articular cartilage, which limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y1c pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y1d pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Regenerative Orthopedics aims to address the soft tissue weakness that transpired during the original injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred. The labrum has a poor blood supply, which makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability. Physical therapy can help strengthen the surrounding muscles, but cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y2 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">reduces pain and symptoms. Degenerative conditions, such as hip labral injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries and involves the injection of natural substances into the degenerated hip to stimulate healing. Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed, especially in very active people and athletes. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow), which is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable and will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration. Most painful hip conditions begin with</div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y10 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">damage to the surrounding ligaments and progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Hip Labral Tears and Non-Surgical Treatment with Regenerative Orthopedics','','inherit','closed','closed','','2176-revision-v1','','','2019-06-25 02:10:23','2019-06-25 02:10:23','',2176,'https://www.drfields.com/uncategorized/2176-revision-v1/',0,'revision','',0),(2188,8,'2019-06-25 02:11:58','2019-06-25 02:11:58','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\" style=\"text-align: left;\">\r\n\r\n[caption id=\"attachment_2181\" align=\"alignleft\" width=\"500\"]<img class=\"wp-image-2181 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-injury-500x500.png\" alt=\"Hip Injury\" width=\"500\" height=\"500\" /> Hip Injury[/caption]\r\n\r\nRegenerative, non-surgical treatments for painful hip conditions and arthritis have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results. Regenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">.</span> Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y9 pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>The Hip and Labrum</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. The hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis. But we move our hips a lot and put them through high rates of wear, so more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injury.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. Labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries. Symptoms include varying degrees of pain, including pain deep in the groin, as</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y15 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">well as clicking, popping, and a locking sensation in the hip joint. A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area. Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight distribution inside the joint, prompting the joint surfaces to rub roughly and then generating a breaking down of articular cartilage, which limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h4 pg-1y1c pg-1ff2 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"><strong>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</strong></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y1d pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Regenerative Orthopedics aims to address the soft tissue weakness that transpired during the original injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred. The labrum has a poor blood supply, which makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability. Physical therapy can help strengthen the surrounding muscles, but cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y2 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">reduces pain and symptoms. Degenerative conditions, such as hip labral injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries and involves the injection of natural substances into the degenerated hip to stimulate healing. Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed, especially in very active people and athletes. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow), which is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\" style=\"text-align: left;\">Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable and will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration. Most painful hip conditions begin with</div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2y10 pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\" style=\"text-align: left;\">damage to the surrounding ligaments and progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Hip Labral Tears and Non-Surgical Treatment with Regenerative Orthopedics','','inherit','closed','closed','','2176-revision-v1','','','2019-06-25 02:11:58','2019-06-25 02:11:58','',2176,'https://www.drfields.com/uncategorized/2176-revision-v1/',0,'revision','',0),(2198,8,'2019-06-27 21:16:14','2019-06-27 21:16:14','Labral Tear','Labral Tear','Labral Tear','inherit','open','closed','','labral-tear','','','2019-06-27 21:16:14','2019-06-27 21:16:14','',1045,'https://www.drfields.com/wp-content/uploads/2019/06/labral-tear.png',0,'attachment','image/png',0),(2208,8,'2019-06-28 06:21:11','2019-06-28 06:21:11','<h1 class=\"heading-style\">Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3 class=\"heading-style\">Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2 class=\"heading-style\">Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<div class=\"btn-wrap\"><a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\"><a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Kilimanjaro Hiking to 15,500 Feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\"><a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Getting To Camp At 16,500 Feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\"><a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Kilimanjaro Final Camp At 18,500 Feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<div class=\"btn-wrap\"><a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" width=\"400\" />We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n<div class=\"btn-wrap\"><a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg\" width=\"400\" />Even though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I’ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I’ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can’t imagine what it’s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI’ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It’s a tremendous accomplishment, but something I would not want to repeat.\r\n<div class=\"btn-wrap\"><a href=\"/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" /></div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\" style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n&nbsp;\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','publish','closed','closed','','report-of-my-kilimanjaro-climb','','','2022-07-27 22:25:26','2022-07-27 22:25:26','',0,'https://www.drfields.com/?page_id=2208',0,'page','',0),(2209,8,'2019-06-28 06:18:04','2019-06-28 06:18:04','Klimanjaro (1)','Klimanjaro (1)','Klimanjaro (1)','inherit','open','closed','','klimanjaro-1','','','2019-06-28 06:18:04','2019-06-28 06:18:04','',0,'https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-1.jpg',0,'attachment','image/jpeg',0),(2210,8,'2019-06-28 06:18:05','2019-06-28 06:18:05','Klimanjaro (2)','Klimanjaro (2)','Klimanjaro (2)','inherit','open','closed','','klimanjaro-2','','','2019-09-19 01:18:41','2019-09-19 01:18:41','',2208,'https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg',0,'attachment','image/jpeg',0),(2211,8,'2019-06-28 06:18:05','2019-06-28 06:18:05','Klimanjaro (3)','Klimanjaro (3)','Klimanjaro (3)','inherit','open','closed','','klimanjaro-3','','','2019-06-28 06:18:05','2019-06-28 06:18:05','',0,'https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg',0,'attachment','image/jpeg',0),(2212,8,'2019-06-28 06:18:06','2019-06-28 06:18:06','Klimanjaro (4)','Klimanjaro (4)','Klimanjaro (4)','inherit','open','closed','','klimanjaro-4','','','2019-06-28 06:18:06','2019-06-28 06:18:06','',0,'https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-4.jpg',0,'attachment','image/jpeg',0),(2213,8,'2019-06-28 06:18:06','2019-06-28 06:18:06','Klimanjaro (5)','Klimanjaro (5)','Klimanjaro (5)','inherit','open','closed','','klimanjaro-5','','','2019-09-19 01:17:02','2019-09-19 01:17:02','',2208,'https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg',0,'attachment','image/jpeg',0),(2214,8,'2019-06-28 06:18:07','2019-06-28 06:18:07','Klimanjaro (6)','Klimanjaro (6)','Klimanjaro (6)','inherit','open','closed','','klimanjaro-6','','','2019-06-28 06:18:07','2019-06-28 06:18:07','',0,'https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-6.jpg',0,'attachment','image/jpeg',0),(2215,8,'2019-06-28 06:18:07','2019-06-28 06:18:07','Klimanjaro (7)','Klimanjaro (7)','Klimanjaro (7)','inherit','open','closed','','klimanjaro-7','','','2019-06-28 06:18:07','2019-06-28 06:18:07','',0,'https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-7.jpg',0,'attachment','image/jpeg',0),(2216,8,'2019-06-28 06:18:08','2019-06-28 06:18:08','Klimanjaro (8)','Klimanjaro (8)','Klimanjaro (8)','inherit','open','closed','','klimanjaro-8','','','2019-06-28 06:18:08','2019-06-28 06:18:08','',0,'https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg',0,'attachment','image/jpeg',0),(2217,8,'2019-06-28 06:18:09','2019-06-28 06:18:09','Klimanjaro (9)','Klimanjaro (9)','Klimanjaro (9)','inherit','open','closed','','klimanjaro-9','','','2019-06-28 06:18:09','2019-06-28 06:18:09','',0,'https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg',0,'attachment','image/jpeg',0),(2218,8,'2019-06-28 06:21:11','2019-06-28 06:21:11','<h4>Report of My Kilimanjaro Climb</h4>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\n<em><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-7.jpg\" alt=\"\" />\r\n</em>\r\n\r\nTen years ago, while doing volunteer medical work in Honduras, a nurse told me that she and her husband had just climbed Mount Kilimanjaro.  Upon returning to the States, I requested a brochure, and it has been sitting on my coffee table for the past ten years.  This year, I finally decided it was about time to climb Kilimanjaro.\r\n\r\n<h5>Arrival</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nAfter flying from Los Angeles to London and then to Nairobi, the plane finally arrived at the Kilimanjaro airport. A two-and-a-half-hour ride followed that flight, and half of it was on a very bumpy dirt road, before reaching the base camp destination. By now it was almost midnight, and I went straight to my tent, which amazingly was quite luxurious considering it was camping. It even included a sink, a bathroom and even a shower. I took advantage of a quick shower and went straight to bed.\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n\r\n<h5>Pre-Climb Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain and loosen our legs.\r\nIt was beautiful, with waterfalls and lots of lush plants and greenery. Later, the head guide went through my entire pack to make sure that we would be taking all we needed and that everything was in good shape. The rest of the day was spent relaxing, except for a short sunset hike of 10 minutes, where they had wine waiting for us at the top of the small hill.\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/Finally-hiking\"><strong>See Photos</strong></a>\r\n\r\n<h5>First Day Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-1.jpg\" alt=\"\" />\r\n\r\nAfter a two hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts, since we were only 3 degrees north of the equator. There we saw the more than 45 plus Sherpas that would accompany us. There were six Sherpa alone just to carry each person\'s equipment (there were six of us). Additionally, six Sherpa would carry our food for seven days, eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, plus about ten other Porters would carry all the tents, tables and chairs. There were also ten more to carry all of the other Porters’ food and equipment.\r\n\r\nWe had to register and show our passports, and after that we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7,700 feet and climbed to 9,300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9,300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a>\r\n\r\n<h5>Second Day Hike</h5>\r\nAt 6:30AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and afterwards we started off to hike again. We headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\nFor this type of hiking, it’s important to eat three square meals a day and drink a minimum of three liters of water daily for the required energy and for prevention of dehydration. I fortunately felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. In addition, I carried a Camelback system on my back, which is a water bag with tubing for drinking kept inside of my backpack, enabling me to drink copious amounts of water and stay hydrated. It was cold at night, but with the proper gear I felt warm.\r\n\r\n<h5>Day Three Hike</h5>\r\nWe had another early wake-up call and a good breakfast. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the Upper Heath Zone, because there were no longer any trees there, just a lot of different plants as well as volcanic rock, since the last active volcano took place there over 10,000 years ago.\r\n\r\nThe hiking was very slow and consistent, which in Swahili they call, “Polli, Polli.” Again, I felt very good when arriving at Moir Camp at 13,500 feet. We had beautiful views on the mountain as the clouds moved away. It was really spectacular!\r\n\r\n<h5>Day Four Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" />\r\n\r\nWe woke up again at 6:30AM, had breakfast at 7 and were hiking by 7:30. We had a shorter hike of only 3.1 miles, but we did climb 2,000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived in camp after hiking only 2 hours and 20 minutes to an elevation of 15,500 feet. The air was very thin at this elevation, and you think about every single step you take. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents.  I took about a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the magnificent skies at 15,500 feet in the southern hemisphere.\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a>\r\n\r\n<h5>Day Five Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" />\r\n\r\nWe had the usual wake-up call at 6:30AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees, and with the sun out, we were warm when we hiked but a little bit cooler when clouds were overhead. The hike was only one thousand feet of climbing, and a short hike to the base camp. Tomorrow’s big hike will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was cancelled. Tomorrow morning we will have a 4AM wake-up call in anticipation of a 2,300 foot elevation climb up to18,650 feet.\r\n\r\n<h5>Day Six Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-6.jpg\" alt=\"\" />\r\n\r\nWake-up call at 4AM and breakfast at 4:30. The slower hiker group left at 5. We left about 5:30. At this point, the altitude is over 16,000 feet, and everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it became extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlights. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountain side since the snow had obliterated the trail the night before. We were now at over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier for our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb and even needed to kneel on the next step up because the following step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air, meant we could only take three or four steps before needing to stop for a break. Finally, we reached Craters Ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. Once we did that, we were able to enjoy a well-deserved nap before an early dinner because we would be getting up again at 4AM to climb to the top of Mount Kilimanjaro!\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/16-500-feet-to-18-400\"><strong>See Photos</strong></a>\r\n\r\n<h5>Day Seven Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-4.jpg\" alt=\"\" />\r\n\r\nThe night was extremely cold, with ground temperatures dropping down to about zero degrees Fahrenheit. We did everything to keep ourselves warm. I slept on two thin air mattresses, and to stay warmer, laid my down jacket on top of my sleeping bag which was rated to zero degrees. It also had a liner inside which gave me an additional 25 degrees of warmth.\r\n\r\nWe were woken up at 4 AM. After eating and packing our stuff, we were off for a 75 minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. That was a miracle for me, because I usually always have cold hands and feet, even in Southern California! Nonetheless, my legs and face took the brunt of the cold, and we moved very, very slowly. After a very difficult, straight up climb, we had to cross a flat plane to the actual top of the mountain. It was really cold. The temperature was probably about minus 7 or 10 degrees Fahrenheit. The wind was blowing like crazy, at least 30 mph, and with the wind chill, it felt like negative 42 or 50 degrees Fahrenheit.\r\nBut all 6 of us had made it. It was a special feeling…an unbelievable feeling! Words are hard to describe it.  Yes, I had finally made it, and the views were spectacular!!\r\nI always carry some ashes of my parents no matter where I travel to in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it with me the entire way.\r\n\r\nWe all took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise, since it was only about 7 in the morning. We were close to the equator, and sunrise and sunsets are always around the same time without much variation from season to season.\r\nOnce we started to go down, we could immediately feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quadriceps muscles in the front of our upper legs really felt it, and we had downhill walking for the next 5 to 6 hours! We did stop for a small break for some lunch, but appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches and weakness.  I had none of that but did have loss of appetite and slight weakness going down for a short time.\r\n\r\nAnyway, we finally made it to the camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a>\r\n\r\n<h5>Day Eight Hike</h5>\r\nWe woke up at 6:30AM, which was a big difference from 4AM. Today would be our last night, and we would be saying goodbye to all the Porters. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so Porters gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3 minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7 hour hike downhill. Although it was not very steep, this dried up river bed was full of rocks and stones, making footing uneasy, and causing our quadriceps muscles to be even more on fire. But we knew the end was coming, helping us to press forward. We stopped for lunch and continued on. After about 7 hours, the final spot was in sight…the area where we would exit the park. Nothing could be sweeter! I signed out at the Ranger Station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days I could take a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7PM. That night, was my first night sleep in a bed in nine days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n\r\n<h5>Postscript</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet that sat on my coffee table for ten years, it was something I had had on my bucket list for all of that time. The adventure was quite challenging and extremely difficult at times. Some of our hikers had difficulty even moving. It was so hard that they required assistance. But we all persevered. In my life, I’ve completed 10 Ironman races so far. These competitions require monumental training. But during this Mount Kilimanjaro trek, with the long hike up to the crater from 16,800 feet to 18,400, and the subsequent days of summiting, followed by the 9,000 foot descent, I faced some of the hardest things that I\'ve ever done. And that includes my ten Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. It\'s similar to having a paper bag over your head and trying to breath. There were times I took two or three steps and then had to pause for 15, 20 or even 30 seconds, repeating that again and again and again.  Never looking ahead, only down, because sometimes ten feet took 30-60 seconds to cross.  All of this while enduring the sub-freezing temperature, the blowing snow and the wind chill factors. Nothing but grit and determination to kept us going.\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n\r\n<h5>Post Postscript</h5>\r\nThank you to everyone who sent me well wishes before, during, and after my climb.  It meant so much! I thank my parents who gave me the will and determination to achieve all of the goals in my life, no matter how hard they are. They always ingrained this determination in me and encouraged me to just put my head down and keep going. As I said above, they were with me the whole way and always will be.\r\n\r\n','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2019-06-28 06:21:11','2019-06-28 06:21:11','',2208,'https://www.drfields.com/uncategorized/2208-revision-v1/',0,'revision','',0),(2219,8,'2019-06-28 06:25:30','2019-06-28 06:25:30','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]','Day 1-Kiliminaro and base camp arrival','','publish','closed','closed','','day-1-kiliminaro-and-base-camp-arrival','','','2022-07-26 05:42:46','2022-07-26 05:42:46','',0,'https://www.drfields.com/?page_id=2219',0,'page','',0),(2220,8,'2019-06-28 06:23:42','2019-06-28 06:23:42','Drfieldday1kilimanaro (2)','Drfieldday1kilimanaro (2)','Drfieldday1kilimanaro (2)','inherit','open','closed','','drfieldday1kilimanaro-2','','','2019-06-28 06:23:42','2019-06-28 06:23:42','',0,'https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-2.jpg',0,'attachment','image/jpeg',0),(2221,8,'2019-06-28 06:23:43','2019-06-28 06:23:43','Drfieldday1kilimanaro (3)','Drfieldday1kilimanaro (3)','Drfieldday1kilimanaro (3)','inherit','open','closed','','drfieldday1kilimanaro-3','','','2019-06-28 06:23:43','2019-06-28 06:23:43','',0,'https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-3.jpg',0,'attachment','image/jpeg',0),(2222,8,'2019-06-28 06:23:44','2019-06-28 06:23:44','Drfieldday1kilimanaro (4)','Drfieldday1kilimanaro (4)','Drfieldday1kilimanaro (4)','inherit','open','closed','','drfieldday1kilimanaro-4','','','2019-06-28 06:23:44','2019-06-28 06:23:44','',0,'https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-4.jpg',0,'attachment','image/jpeg',0),(2223,8,'2019-06-28 06:23:45','2019-06-28 06:23:45','Drfieldday1kilimanaro (5)','Drfieldday1kilimanaro (5)','Drfieldday1kilimanaro (5)','inherit','open','closed','','drfieldday1kilimanaro-5','','','2019-06-28 06:23:45','2019-06-28 06:23:45','',0,'https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-5.jpg',0,'attachment','image/jpeg',0),(2224,8,'2019-06-28 06:23:45','2019-06-28 06:23:45','Drfieldday1kilimanaro (6)','Drfieldday1kilimanaro (6)','Drfieldday1kilimanaro (6)','inherit','open','closed','','drfieldday1kilimanaro-6','','','2019-06-28 06:23:45','2019-06-28 06:23:45','',0,'https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-6.jpg',0,'attachment','image/jpeg',0),(2225,8,'2019-06-28 06:23:46','2019-06-28 06:23:46','Drfieldday1kilimanaro (7)','Drfieldday1kilimanaro (7)','Drfieldday1kilimanaro (7)','inherit','open','closed','','drfieldday1kilimanaro-7','','','2019-06-28 06:23:46','2019-06-28 06:23:46','',0,'https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-7.jpg',0,'attachment','image/jpeg',0),(2226,8,'2019-06-28 06:23:47','2019-06-28 06:23:47','Drfieldday1kilimanaro (8)','Drfieldday1kilimanaro (8)','Drfieldday1kilimanaro (8)','inherit','open','closed','','drfieldday1kilimanaro-8','','','2019-06-28 06:23:47','2019-06-28 06:23:47','',0,'https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-8.jpg',0,'attachment','image/jpeg',0),(2227,8,'2019-06-28 06:23:47','2019-06-28 06:23:47','Drfieldday1kilimanaro (1)','Drfieldday1kilimanaro (1)','Drfieldday1kilimanaro (1)','inherit','open','closed','','drfieldday1kilimanaro-1','','','2019-06-28 06:23:47','2019-06-28 06:23:47','',0,'https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-1.jpg',0,'attachment','image/jpeg',0),(2228,8,'2019-06-28 06:25:30','2019-06-28 06:25:30','<div class=\"inner\" id=\"kiliminaroimg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-1.jpg\" alt=\"Drfieldday1kilimanaro (1)\"   />\r\n<img  src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-2.jpg\" alt=\"Drfieldday1kilimanaro (2)\"/><img  src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-3.jpg\" alt=\"Drfieldday1kilimanaro (3)\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-4.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-5.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-6.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-7.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-8.jpg\">\r\n\r\n</div>','Day 1-Kiliminaro and base camp arrival','','inherit','closed','closed','','2219-revision-v1','','','2019-06-28 06:25:30','2019-06-28 06:25:30','',2219,'https://www.drfields.com/uncategorized/2219-revision-v1/',0,'revision','',0),(2229,8,'2019-06-28 06:29:08','2019-06-28 06:29:08','<h4>Report of My Kilimanjaro Climb</h4>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\n<em><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-7.jpg\" alt=\"\" />\r\n</em>\r\n\r\nTen years ago, while doing volunteer medical work in Honduras, a nurse told me that she and her husband had just climbed Mount Kilimanjaro.  Upon returning to the States, I requested a brochure, and it has been sitting on my coffee table for the past ten years.  This year, I finally decided it was about time to climb Kilimanjaro.\r\n\r\n<h5>Arrival</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nAfter flying from Los Angeles to London and then to Nairobi, the plane finally arrived at the Kilimanjaro airport. A two-and-a-half-hour ride followed that flight, and half of it was on a very bumpy dirt road, before reaching the base camp destination. By now it was almost midnight, and I went straight to my tent, which amazingly was quite luxurious considering it was camping. It even included a sink, a bathroom and even a shower. I took advantage of a quick shower and went straight to bed.\r\n\r\n<a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n\r\n<h5>Pre-Climb Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain and loosen our legs.\r\nIt was beautiful, with waterfalls and lots of lush plants and greenery. Later, the head guide went through my entire pack to make sure that we would be taking all we needed and that everything was in good shape. The rest of the day was spent relaxing, except for a short sunset hike of 10 minutes, where they had wine waiting for us at the top of the small hill.\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/Finally-hiking\"><strong>See Photos</strong></a>\r\n\r\n<h5>First Day Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-1.jpg\" alt=\"\" />\r\n\r\nAfter a two hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts, since we were only 3 degrees north of the equator. There we saw the more than 45 plus Sherpas that would accompany us. There were six Sherpa alone just to carry each person\'s equipment (there were six of us). Additionally, six Sherpa would carry our food for seven days, eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, plus about ten other Porters would carry all the tents, tables and chairs. There were also ten more to carry all of the other Porters’ food and equipment.\r\n\r\nWe had to register and show our passports, and after that we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7,700 feet and climbed to 9,300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9,300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a>\r\n\r\n<h5>Second Day Hike</h5>\r\nAt 6:30AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and afterwards we started off to hike again. We headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\nFor this type of hiking, it’s important to eat three square meals a day and drink a minimum of three liters of water daily for the required energy and for prevention of dehydration. I fortunately felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. In addition, I carried a Camelback system on my back, which is a water bag with tubing for drinking kept inside of my backpack, enabling me to drink copious amounts of water and stay hydrated. It was cold at night, but with the proper gear I felt warm.\r\n\r\n<h5>Day Three Hike</h5>\r\nWe had another early wake-up call and a good breakfast. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the Upper Heath Zone, because there were no longer any trees there, just a lot of different plants as well as volcanic rock, since the last active volcano took place there over 10,000 years ago.\r\n\r\nThe hiking was very slow and consistent, which in Swahili they call, “Polli, Polli.” Again, I felt very good when arriving at Moir Camp at 13,500 feet. We had beautiful views on the mountain as the clouds moved away. It was really spectacular!\r\n\r\n<h5>Day Four Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" />\r\n\r\nWe woke up again at 6:30AM, had breakfast at 7 and were hiking by 7:30. We had a shorter hike of only 3.1 miles, but we did climb 2,000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived in camp after hiking only 2 hours and 20 minutes to an elevation of 15,500 feet. The air was very thin at this elevation, and you think about every single step you take. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents.  I took about a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the magnificent skies at 15,500 feet in the southern hemisphere.\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a>\r\n\r\n<h5>Day Five Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" />\r\n\r\nWe had the usual wake-up call at 6:30AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees, and with the sun out, we were warm when we hiked but a little bit cooler when clouds were overhead. The hike was only one thousand feet of climbing, and a short hike to the base camp. Tomorrow’s big hike will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was cancelled. Tomorrow morning we will have a 4AM wake-up call in anticipation of a 2,300 foot elevation climb up to18,650 feet.\r\n\r\n<h5>Day Six Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-6.jpg\" alt=\"\" />\r\n\r\nWake-up call at 4AM and breakfast at 4:30. The slower hiker group left at 5. We left about 5:30. At this point, the altitude is over 16,000 feet, and everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it became extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlights. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountain side since the snow had obliterated the trail the night before. We were now at over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier for our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb and even needed to kneel on the next step up because the following step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air, meant we could only take three or four steps before needing to stop for a break. Finally, we reached Craters Ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. Once we did that, we were able to enjoy a well-deserved nap before an early dinner because we would be getting up again at 4AM to climb to the top of Mount Kilimanjaro!\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/16-500-feet-to-18-400\"><strong>See Photos</strong></a>\r\n\r\n<h5>Day Seven Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-4.jpg\" alt=\"\" />\r\n\r\nThe night was extremely cold, with ground temperatures dropping down to about zero degrees Fahrenheit. We did everything to keep ourselves warm. I slept on two thin air mattresses, and to stay warmer, laid my down jacket on top of my sleeping bag which was rated to zero degrees. It also had a liner inside which gave me an additional 25 degrees of warmth.\r\n\r\nWe were woken up at 4 AM. After eating and packing our stuff, we were off for a 75 minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. That was a miracle for me, because I usually always have cold hands and feet, even in Southern California! Nonetheless, my legs and face took the brunt of the cold, and we moved very, very slowly. After a very difficult, straight up climb, we had to cross a flat plane to the actual top of the mountain. It was really cold. The temperature was probably about minus 7 or 10 degrees Fahrenheit. The wind was blowing like crazy, at least 30 mph, and with the wind chill, it felt like negative 42 or 50 degrees Fahrenheit.\r\nBut all 6 of us had made it. It was a special feeling…an unbelievable feeling! Words are hard to describe it.  Yes, I had finally made it, and the views were spectacular!!\r\nI always carry some ashes of my parents no matter where I travel to in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it with me the entire way.\r\n\r\nWe all took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise, since it was only about 7 in the morning. We were close to the equator, and sunrise and sunsets are always around the same time without much variation from season to season.\r\nOnce we started to go down, we could immediately feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quadriceps muscles in the front of our upper legs really felt it, and we had downhill walking for the next 5 to 6 hours! We did stop for a small break for some lunch, but appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches and weakness.  I had none of that but did have loss of appetite and slight weakness going down for a short time.\r\n\r\nAnyway, we finally made it to the camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a>\r\n\r\n<h5>Day Eight Hike</h5>\r\nWe woke up at 6:30AM, which was a big difference from 4AM. Today would be our last night, and we would be saying goodbye to all the Porters. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so Porters gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3 minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7 hour hike downhill. Although it was not very steep, this dried up river bed was full of rocks and stones, making footing uneasy, and causing our quadriceps muscles to be even more on fire. But we knew the end was coming, helping us to press forward. We stopped for lunch and continued on. After about 7 hours, the final spot was in sight…the area where we would exit the park. Nothing could be sweeter! I signed out at the Ranger Station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days I could take a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7PM. That night, was my first night sleep in a bed in nine days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n\r\n<h5>Postscript</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet that sat on my coffee table for ten years, it was something I had had on my bucket list for all of that time. The adventure was quite challenging and extremely difficult at times. Some of our hikers had difficulty even moving. It was so hard that they required assistance. But we all persevered. In my life, I’ve completed 10 Ironman races so far. These competitions require monumental training. But during this Mount Kilimanjaro trek, with the long hike up to the crater from 16,800 feet to 18,400, and the subsequent days of summiting, followed by the 9,000 foot descent, I faced some of the hardest things that I\'ve ever done. And that includes my ten Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. It\'s similar to having a paper bag over your head and trying to breath. There were times I took two or three steps and then had to pause for 15, 20 or even 30 seconds, repeating that again and again and again.  Never looking ahead, only down, because sometimes ten feet took 30-60 seconds to cross.  All of this while enduring the sub-freezing temperature, the blowing snow and the wind chill factors. Nothing but grit and determination to kept us going.\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n\r\n<h5>Post Postscript</h5>\r\nThank you to everyone who sent me well wishes before, during, and after my climb.  It meant so much! I thank my parents who gave me the will and determination to achieve all of the goals in my life, no matter how hard they are. They always ingrained this determination in me and encouraged me to just put my head down and keep going. As I said above, they were with me the whole way and always will be.\r\n\r\n','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2019-06-28 06:29:08','2019-06-28 06:29:08','',2208,'https://www.drfields.com/uncategorized/2208-revision-v1/',0,'revision','',0),(2230,8,'2019-06-28 06:30:44','2019-06-28 06:30:44','<h4>Report of My Kilimanjaro Climb</h4>\n<em>By Peter A. Fields, MD, DC</em>\n\n<em><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-7.jpg\" alt=\"\" />\n</em>\n\nTen years ago, while doing volunteer medical work in Honduras, a nurse told me that she and her husband had just climbed Mount Kilimanjaro.  Upon returning to the States, I requested a brochure, and it has been sitting on my coffee table for the past ten years.  This year, I finally decided it was about time to climb Kilimanjaro.\n\n<h5>Arrival</h5>\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\n\nAfter flying from Los Angeles to London and then to Nairobi, the plane finally arrived at the Kilimanjaro airport. A two-and-a-half-hour ride followed that flight, and half of it was on a very bumpy dirt road, before reaching the base camp destination. By now it was almost midnight, and I went straight to my tent, which amazingly was quite luxurious considering it was camping. It even included a sink, a bathroom and even a shower. I took advantage of a quick shower and went straight to bed.\n\n<a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\n\n<h5>Pre-Climb Hike</h5>\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\n\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain and loosen our legs.\nIt was beautiful, with waterfalls and lots of lush plants and greenery. Later, the head guide went through my entire pack to make sure that we would be taking all we needed and that everything was in good shape. The rest of the day was spent relaxing, except for a short sunset hike of 10 minutes, where they had wine waiting for us at the top of the small hill.\n\n<a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a>\n\n<h5>First Day Hike</h5>\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-1.jpg\" alt=\"\" />\n\nAfter a two hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts, since we were only 3 degrees north of the equator. There we saw the more than 45 plus Sherpas that would accompany us. There were six Sherpa alone just to carry each person\'s equipment (there were six of us). Additionally, six Sherpa would carry our food for seven days, eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, plus about ten other Porters would carry all the tents, tables and chairs. There were also ten more to carry all of the other Porters’ food and equipment.\n\nWe had to register and show our passports, and after that we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7,700 feet and climbed to 9,300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9,300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\n\n<a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a>\n\n<h5>Second Day Hike</h5>\nAt 6:30AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and afterwards we started off to hike again. We headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\nFor this type of hiking, it’s important to eat three square meals a day and drink a minimum of three liters of water daily for the required energy and for prevention of dehydration. I fortunately felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. In addition, I carried a Camelback system on my back, which is a water bag with tubing for drinking kept inside of my backpack, enabling me to drink copious amounts of water and stay hydrated. It was cold at night, but with the proper gear I felt warm.\n\n<h5>Day Three Hike</h5>\nWe had another early wake-up call and a good breakfast. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the Upper Heath Zone, because there were no longer any trees there, just a lot of different plants as well as volcanic rock, since the last active volcano took place there over 10,000 years ago.\n\nThe hiking was very slow and consistent, which in Swahili they call, “Polli, Polli.” Again, I felt very good when arriving at Moir Camp at 13,500 feet. We had beautiful views on the mountain as the clouds moved away. It was really spectacular!\n\n<h5>Day Four Hike</h5>\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" />\n\nWe woke up again at 6:30AM, had breakfast at 7 and were hiking by 7:30. We had a shorter hike of only 3.1 miles, but we did climb 2,000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived in camp after hiking only 2 hours and 20 minutes to an elevation of 15,500 feet. The air was very thin at this elevation, and you think about every single step you take. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents.  I took about a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the magnificent skies at 15,500 feet in the southern hemisphere.\n\n<a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a>\n\n<h5>Day Five Hike</h5>\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" />\n\nWe had the usual wake-up call at 6:30AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees, and with the sun out, we were warm when we hiked but a little bit cooler when clouds were overhead. The hike was only one thousand feet of climbing, and a short hike to the base camp. Tomorrow’s big hike will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was cancelled. Tomorrow morning we will have a 4AM wake-up call in anticipation of a 2,300 foot elevation climb up to18,650 feet.\n\n<h5>Day Six Hike</h5>\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-6.jpg\" alt=\"\" />\n\nWake-up call at 4AM and breakfast at 4:30. The slower hiker group left at 5. We left about 5:30. At this point, the altitude is over 16,000 feet, and everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it became extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlights. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountain side since the snow had obliterated the trail the night before. We were now at over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier for our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb and even needed to kneel on the next step up because the following step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air, meant we could only take three or four steps before needing to stop for a break. Finally, we reached Craters Ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. Once we did that, we were able to enjoy a well-deserved nap before an early dinner because we would be getting up again at 4AM to climb to the top of Mount Kilimanjaro!\n\n<a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a>\n\n<h5>Day Seven Hike</h5>\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-4.jpg\" alt=\"\" />\n\nThe night was extremely cold, with ground temperatures dropping down to about zero degrees Fahrenheit. We did everything to keep ourselves warm. I slept on two thin air mattresses, and to stay warmer, laid my down jacket on top of my sleeping bag which was rated to zero degrees. It also had a liner inside which gave me an additional 25 degrees of warmth.\n\nWe were woken up at 4 AM. After eating and packing our stuff, we were off for a 75 minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. That was a miracle for me, because I usually always have cold hands and feet, even in Southern California! Nonetheless, my legs and face took the brunt of the cold, and we moved very, very slowly. After a very difficult, straight up climb, we had to cross a flat plane to the actual top of the mountain. It was really cold. The temperature was probably about minus 7 or 10 degrees Fahrenheit. The wind was blowing like crazy, at least 30 mph, and with the wind chill, it felt like negative 42 or 50 degrees Fahrenheit.\nBut all 6 of us had made it. It was a special feeling…an unbelievable feeling! Words are hard to describe it.  Yes, I had finally made it, and the views were spectacular!!\nI always carry some ashes of my parents no matter where I travel to in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it with me the entire way.\n\nWe all took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise, since it was only about 7 in the morning. We were close to the equator, and sunrise and sunsets are always around the same time without much variation from season to season.\nOnce we started to go down, we could immediately feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quadriceps muscles in the front of our upper legs really felt it, and we had downhill walking for the next 5 to 6 hours! We did stop for a small break for some lunch, but appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches and weakness.  I had none of that but did have loss of appetite and slight weakness going down for a short time.\n\nAnyway, we finally made it to the camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\n\n<a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a>\n\n<h5>Day Eight Hike</h5>\nWe woke up at 6:30AM, which was a big difference from 4AM. Today would be our last night, and we would be saying goodbye to all the Porters. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\n\nAfter breakfast, the 40 or so Porters gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3 minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\n\nWe then set off for our last 6 to 7 hour hike downhill. Although it was not very steep, this dried up river bed was full of rocks and stones, making footing uneasy, and causing our quadriceps muscles to be even more on fire. But we knew the end was coming, helping us to press forward. We stopped for lunch and continued on. After about 7 hours, the final spot was in sight…the area where we would exit the park. Nothing could be sweeter! I signed out at the Ranger Station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\n\nWe had some lunch and then drove the rest of the way back to the lodge, a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days I could take a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7PM. That night, was my first night sleep in a bed in nine days. It was fantastic! The mission was accomplished!\n\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\n\n<h5>Postscript</h5>\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"\" />\n\nEven though the trip was not exactly as described in the pamphlet that sat on my coffee table for ten years, it was something I had had on my bucket list for all of that time. The adventure was quite challenging and extremely difficult at times. Some of our hikers had difficulty even moving. It was so hard that they required assistance. But we all persevered. In my life, I’ve completed 10 Ironman races so far. These competitions require monumental training. But during this Mount Kilimanjaro trek, with the long hike up to the crater from 16,800 feet to 18,400, and the subsequent days of summiting, followed by the 9,000 foot descent, I faced some of the hardest things that I\'ve ever done. And that includes my ten Ironman competitions.\n\nYou just can\'t imagine what it\'s like trying to move at that altitude. It\'s similar to having a paper bag over your head and trying to breath. There were times I took two or three steps and then had to pause for 15, 20 or even 30 seconds, repeating that again and again and again.  Never looking ahead, only down, because sometimes ten feet took 30-60 seconds to cross.  All of this while enduring the sub-freezing temperature, the blowing snow and the wind chill factors. Nothing but grit and determination to kept us going.\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\n\n<a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\n\n<h5>Post Postscript</h5>\nThank you to everyone who sent me well wishes before, during, and after my climb.  It meant so much! I thank my parents who gave me the will and determination to achieve all of the goals in my life, no matter how hard they are. They always ingrained this determination in me and encouraged me to just put my head down and keep going. As I said above, they were with me the whole way and always will be.\n\n','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-autosave-v1','','','2019-06-28 06:30:44','2019-06-28 06:30:44','',2208,'https://www.drfields.com/uncategorized/2208-autosave-v1/',0,'revision','',0),(2231,8,'2019-06-28 06:30:47','2019-06-28 06:30:47','<h4>Report of My Kilimanjaro Climb</h4>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\n<em><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-7.jpg\" alt=\"\" />\r\n</em>\r\n\r\nTen years ago, while doing volunteer medical work in Honduras, a nurse told me that she and her husband had just climbed Mount Kilimanjaro.  Upon returning to the States, I requested a brochure, and it has been sitting on my coffee table for the past ten years.  This year, I finally decided it was about time to climb Kilimanjaro.\r\n\r\n<h5>Arrival</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nAfter flying from Los Angeles to London and then to Nairobi, the plane finally arrived at the Kilimanjaro airport. A two-and-a-half-hour ride followed that flight, and half of it was on a very bumpy dirt road, before reaching the base camp destination. By now it was almost midnight, and I went straight to my tent, which amazingly was quite luxurious considering it was camping. It even included a sink, a bathroom and even a shower. I took advantage of a quick shower and went straight to bed.\r\n\r\n<a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n\r\n<h5>Pre-Climb Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain and loosen our legs.\r\nIt was beautiful, with waterfalls and lots of lush plants and greenery. Later, the head guide went through my entire pack to make sure that we would be taking all we needed and that everything was in good shape. The rest of the day was spent relaxing, except for a short sunset hike of 10 minutes, where they had wine waiting for us at the top of the small hill.\r\n\r\n<a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a>\r\n\r\n<h5>First Day Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-1.jpg\" alt=\"\" />\r\n\r\nAfter a two hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts, since we were only 3 degrees north of the equator. There we saw the more than 45 plus Sherpas that would accompany us. There were six Sherpa alone just to carry each person\'s equipment (there were six of us). Additionally, six Sherpa would carry our food for seven days, eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, plus about ten other Porters would carry all the tents, tables and chairs. There were also ten more to carry all of the other Porters’ food and equipment.\r\n\r\nWe had to register and show our passports, and after that we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7,700 feet and climbed to 9,300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9,300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n\r\n<a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a>\r\n\r\n<h5>Second Day Hike</h5>\r\nAt 6:30AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and afterwards we started off to hike again. We headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\nFor this type of hiking, it’s important to eat three square meals a day and drink a minimum of three liters of water daily for the required energy and for prevention of dehydration. I fortunately felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. In addition, I carried a Camelback system on my back, which is a water bag with tubing for drinking kept inside of my backpack, enabling me to drink copious amounts of water and stay hydrated. It was cold at night, but with the proper gear I felt warm.\r\n\r\n<h5>Day Three Hike</h5>\r\nWe had another early wake-up call and a good breakfast. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the Upper Heath Zone, because there were no longer any trees there, just a lot of different plants as well as volcanic rock, since the last active volcano took place there over 10,000 years ago.\r\n\r\nThe hiking was very slow and consistent, which in Swahili they call, “Polli, Polli.” Again, I felt very good when arriving at Moir Camp at 13,500 feet. We had beautiful views on the mountain as the clouds moved away. It was really spectacular!\r\n\r\n<h5>Day Four Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" />\r\n\r\nWe woke up again at 6:30AM, had breakfast at 7 and were hiking by 7:30. We had a shorter hike of only 3.1 miles, but we did climb 2,000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived in camp after hiking only 2 hours and 20 minutes to an elevation of 15,500 feet. The air was very thin at this elevation, and you think about every single step you take. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents.  I took about a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the magnificent skies at 15,500 feet in the southern hemisphere.\r\n\r\n<a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a>\r\n\r\n<h5>Day Five Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" />\r\n\r\nWe had the usual wake-up call at 6:30AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees, and with the sun out, we were warm when we hiked but a little bit cooler when clouds were overhead. The hike was only one thousand feet of climbing, and a short hike to the base camp. Tomorrow’s big hike will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was cancelled. Tomorrow morning we will have a 4AM wake-up call in anticipation of a 2,300 foot elevation climb up to18,650 feet.\r\n\r\n<h5>Day Six Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-6.jpg\" alt=\"\" />\r\n\r\nWake-up call at 4AM and breakfast at 4:30. The slower hiker group left at 5. We left about 5:30. At this point, the altitude is over 16,000 feet, and everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it became extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlights. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountain side since the snow had obliterated the trail the night before. We were now at over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier for our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb and even needed to kneel on the next step up because the following step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air, meant we could only take three or four steps before needing to stop for a break. Finally, we reached Craters Ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. Once we did that, we were able to enjoy a well-deserved nap before an early dinner because we would be getting up again at 4AM to climb to the top of Mount Kilimanjaro!\r\n\r\n<a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a>\r\n\r\n<h5>Day Seven Hike</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-4.jpg\" alt=\"\" />\r\n\r\nThe night was extremely cold, with ground temperatures dropping down to about zero degrees Fahrenheit. We did everything to keep ourselves warm. I slept on two thin air mattresses, and to stay warmer, laid my down jacket on top of my sleeping bag which was rated to zero degrees. It also had a liner inside which gave me an additional 25 degrees of warmth.\r\n\r\nWe were woken up at 4 AM. After eating and packing our stuff, we were off for a 75 minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. That was a miracle for me, because I usually always have cold hands and feet, even in Southern California! Nonetheless, my legs and face took the brunt of the cold, and we moved very, very slowly. After a very difficult, straight up climb, we had to cross a flat plane to the actual top of the mountain. It was really cold. The temperature was probably about minus 7 or 10 degrees Fahrenheit. The wind was blowing like crazy, at least 30 mph, and with the wind chill, it felt like negative 42 or 50 degrees Fahrenheit.\r\nBut all 6 of us had made it. It was a special feeling…an unbelievable feeling! Words are hard to describe it.  Yes, I had finally made it, and the views were spectacular!!\r\nI always carry some ashes of my parents no matter where I travel to in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it with me the entire way.\r\n\r\nWe all took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise, since it was only about 7 in the morning. We were close to the equator, and sunrise and sunsets are always around the same time without much variation from season to season.\r\nOnce we started to go down, we could immediately feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quadriceps muscles in the front of our upper legs really felt it, and we had downhill walking for the next 5 to 6 hours! We did stop for a small break for some lunch, but appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches and weakness.  I had none of that but did have loss of appetite and slight weakness going down for a short time.\r\n\r\nAnyway, we finally made it to the camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a>\r\n\r\n<h5>Day Eight Hike</h5>\r\nWe woke up at 6:30AM, which was a big difference from 4AM. Today would be our last night, and we would be saying goodbye to all the Porters. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so Porters gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3 minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7 hour hike downhill. Although it was not very steep, this dried up river bed was full of rocks and stones, making footing uneasy, and causing our quadriceps muscles to be even more on fire. But we knew the end was coming, helping us to press forward. We stopped for lunch and continued on. After about 7 hours, the final spot was in sight…the area where we would exit the park. Nothing could be sweeter! I signed out at the Ranger Station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days I could take a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7PM. That night, was my first night sleep in a bed in nine days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n\r\n<h5>Postscript</h5>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet that sat on my coffee table for ten years, it was something I had had on my bucket list for all of that time. The adventure was quite challenging and extremely difficult at times. Some of our hikers had difficulty even moving. It was so hard that they required assistance. But we all persevered. In my life, I’ve completed 10 Ironman races so far. These competitions require monumental training. But during this Mount Kilimanjaro trek, with the long hike up to the crater from 16,800 feet to 18,400, and the subsequent days of summiting, followed by the 9,000 foot descent, I faced some of the hardest things that I\'ve ever done. And that includes my ten Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. It\'s similar to having a paper bag over your head and trying to breath. There were times I took two or three steps and then had to pause for 15, 20 or even 30 seconds, repeating that again and again and again.  Never looking ahead, only down, because sometimes ten feet took 30-60 seconds to cross.  All of this while enduring the sub-freezing temperature, the blowing snow and the wind chill factors. Nothing but grit and determination to kept us going.\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n\r\n<h5>Post Postscript</h5>\r\nThank you to everyone who sent me well wishes before, during, and after my climb.  It meant so much! I thank my parents who gave me the will and determination to achieve all of the goals in my life, no matter how hard they are. They always ingrained this determination in me and encouraged me to just put my head down and keep going. As I said above, they were with me the whole way and always will be.\r\n\r\n','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2019-06-28 06:30:47','2019-06-28 06:30:47','',2208,'https://www.drfields.com/uncategorized/2208-revision-v1/',0,'revision','',0),(2232,8,'2019-06-28 06:32:55','2019-06-28 06:32:55','<h2>Kili- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_235333.mp4\"][/video]\r\n<br/>\r\n<h2>Kili- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n[video width=\"480\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190212_023336.mp4\"][/video]','Kili Getting to the trailhead','','publish','closed','closed','','kili-getting-to-the-trailhead','','','2022-07-26 07:31:31','2022-07-26 07:31:31','',0,'https://www.drfields.com/?page_id=2232',0,'page','',0),(2233,8,'2019-06-28 06:32:55','2019-06-28 06:32:55','<div id=\"kiliminaroimg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-1.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-5.jpg\">\r\n</div>a','Kili Getting to the trailhead','','inherit','closed','closed','','2232-revision-v1','','','2019-06-28 06:32:55','2019-06-28 06:32:55','',2232,'https://www.drfields.com/uncategorized/2232-revision-v1/',0,'revision','',0),(2234,8,'2019-06-28 06:33:16','2019-06-28 06:33:16','Killi Trailhead (1)','Killi Trailhead (1)','Killi Trailhead (1)','inherit','open','closed','','killi-trailhead-1','','','2019-06-28 06:33:16','2019-06-28 06:33:16','',0,'https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-1.jpg',0,'attachment','image/jpeg',0),(2235,8,'2019-06-28 06:33:17','2019-06-28 06:33:17','Killi Trailhead (2)','Killi Trailhead (2)','Killi Trailhead (2)','inherit','open','closed','','killi-trailhead-2','','','2019-06-28 06:33:17','2019-06-28 06:33:17','',0,'https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg',0,'attachment','image/jpeg',0),(2236,8,'2019-06-28 06:33:18','2019-06-28 06:33:18','Killi Trailhead (3)','Killi Trailhead (3)','Killi Trailhead (3)','inherit','open','closed','','killi-trailhead-3','','','2019-06-28 06:33:18','2019-06-28 06:33:18','',0,'https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg',0,'attachment','image/jpeg',0),(2237,8,'2019-06-28 06:33:18','2019-06-28 06:33:18','Killi Trailhead (4)','Killi Trailhead (4)','Killi Trailhead (4)','inherit','open','closed','','killi-trailhead-4','','','2019-06-28 06:33:18','2019-06-28 06:33:18','',0,'https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg',0,'attachment','image/jpeg',0),(2238,8,'2019-06-28 06:33:19','2019-06-28 06:33:19','Killi Trailhead (5)','Killi Trailhead (5)','Killi Trailhead (5)','inherit','open','closed','','killi-trailhead-5','','','2019-06-28 06:33:19','2019-06-28 06:33:19','',0,'https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-5.jpg',0,'attachment','image/jpeg',0),(2239,8,'2019-06-28 06:36:37','2019-06-28 06:36:37','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_194444.mp4\"][/video]\r\n\r\n</div>\r\n</div>','Kilimanjaro Hiking to 15,500 Feet','','publish','closed','closed','','kili-hiking-to-15500-feet','','','2022-07-28 04:22:59','2022-07-28 04:22:59','',0,'https://www.drfields.com/?page_id=2239',0,'page','',0),(2240,8,'2019-06-28 06:36:37','2019-06-28 06:36:37','<div id=\"kiliminaroimg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-1.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-2.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-3.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-5.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-6.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-7.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-8.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-9.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-10.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-11.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-12.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-13.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-14.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-15.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-16.jpg\">\r\n</div>','Kili Hiking to 15000 feet','','inherit','closed','closed','','2239-revision-v1','','','2019-06-28 06:36:37','2019-06-28 06:36:37','',2239,'https://www.drfields.com/uncategorized/2239-revision-v1/',0,'revision','',0),(2241,8,'2019-06-28 06:36:56','2019-06-28 06:36:56','Kilihiking15000 (1)','Kilihiking15000 (1)','Kilihiking15000 (1)','inherit','open','closed','','kilihiking15000-1','','','2019-06-28 06:36:56','2019-06-28 06:36:56','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-1.jpg',0,'attachment','image/jpeg',0),(2242,8,'2019-06-28 06:36:56','2019-06-28 06:36:56','Kilihiking15000 (2)','Kilihiking15000 (2)','Kilihiking15000 (2)','inherit','open','closed','','kilihiking15000-2','','','2019-06-28 06:36:56','2019-06-28 06:36:56','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-2.jpg',0,'attachment','image/jpeg',0),(2243,8,'2019-06-28 06:36:57','2019-06-28 06:36:57','Kilihiking15000 (3)','Kilihiking15000 (3)','Kilihiking15000 (3)','inherit','open','closed','','kilihiking15000-3','','','2019-06-28 06:36:57','2019-06-28 06:36:57','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-3.jpg',0,'attachment','image/jpeg',0),(2244,8,'2019-06-28 06:36:57','2019-06-28 06:36:57','Kilihiking15000 (4)','Kilihiking15000 (4)','Kilihiking15000 (4)','inherit','open','closed','','kilihiking15000-4','','','2019-06-28 06:36:57','2019-06-28 06:36:57','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg',0,'attachment','image/jpeg',0),(2245,8,'2019-06-28 06:36:58','2019-06-28 06:36:58','Kilihiking15000 (5)','Kilihiking15000 (5)','Kilihiking15000 (5)','inherit','open','closed','','kilihiking15000-5','','','2019-06-28 06:36:58','2019-06-28 06:36:58','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-5.jpg',0,'attachment','image/jpeg',0),(2246,8,'2019-06-28 06:36:59','2019-06-28 06:36:59','Kilihiking15000 (6)','Kilihiking15000 (6)','Kilihiking15000 (6)','inherit','open','closed','','kilihiking15000-6','','','2019-06-28 06:36:59','2019-06-28 06:36:59','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-6.jpg',0,'attachment','image/jpeg',0),(2247,8,'2019-06-28 06:36:59','2019-06-28 06:36:59','Kilihiking15000 (7)','Kilihiking15000 (7)','Kilihiking15000 (7)','inherit','open','closed','','kilihiking15000-7','','','2019-06-28 06:36:59','2019-06-28 06:36:59','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-7.jpg',0,'attachment','image/jpeg',0),(2248,8,'2019-06-28 06:37:00','2019-06-28 06:37:00','Kilihiking15000 (8)','Kilihiking15000 (8)','Kilihiking15000 (8)','inherit','open','closed','','kilihiking15000-8','','','2019-06-28 06:37:00','2019-06-28 06:37:00','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-8.jpg',0,'attachment','image/jpeg',0),(2249,8,'2019-06-28 06:37:00','2019-06-28 06:37:00','Kilihiking15000 (9)','Kilihiking15000 (9)','Kilihiking15000 (9)','inherit','open','closed','','kilihiking15000-9','','','2019-06-28 06:37:00','2019-06-28 06:37:00','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-9.jpg',0,'attachment','image/jpeg',0),(2250,8,'2019-06-28 06:37:01','2019-06-28 06:37:01','Kilihiking15000 (10)','Kilihiking15000 (10)','Kilihiking15000 (10)','inherit','open','closed','','kilihiking15000-10','','','2019-06-28 06:37:01','2019-06-28 06:37:01','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-10.jpg',0,'attachment','image/jpeg',0),(2251,8,'2019-06-28 06:37:01','2019-06-28 06:37:01','Kilihiking15000 (11)','Kilihiking15000 (11)','Kilihiking15000 (11)','inherit','open','closed','','kilihiking15000-11','','','2019-06-28 06:37:01','2019-06-28 06:37:01','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-11.jpg',0,'attachment','image/jpeg',0),(2252,8,'2019-06-28 06:37:02','2019-06-28 06:37:02','Kilihiking15000 (12)','Kilihiking15000 (12)','Kilihiking15000 (12)','inherit','open','closed','','kilihiking15000-12','','','2019-06-28 06:37:02','2019-06-28 06:37:02','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-12.jpg',0,'attachment','image/jpeg',0),(2253,8,'2019-06-28 06:37:02','2019-06-28 06:37:02','Kilihiking15000 (13)','Kilihiking15000 (13)','Kilihiking15000 (13)','inherit','open','closed','','kilihiking15000-13','','','2019-06-28 06:37:02','2019-06-28 06:37:02','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-13.jpg',0,'attachment','image/jpeg',0),(2254,8,'2019-06-28 06:37:03','2019-06-28 06:37:03','Kilihiking15000 (14)','Kilihiking15000 (14)','Kilihiking15000 (14)','inherit','open','closed','','kilihiking15000-14','','','2019-06-28 06:37:03','2019-06-28 06:37:03','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-14.jpg',0,'attachment','image/jpeg',0),(2255,8,'2019-06-28 06:37:04','2019-06-28 06:37:04','Kilihiking15000 (15)','Kilihiking15000 (15)','Kilihiking15000 (15)','inherit','open','closed','','kilihiking15000-15','','','2019-06-28 06:37:04','2019-06-28 06:37:04','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-15.jpg',0,'attachment','image/jpeg',0),(2256,8,'2019-06-28 06:37:04','2019-06-28 06:37:04','Kilihiking15000 (16)','Kilihiking15000 (16)','Kilihiking15000 (16)','inherit','open','closed','','kilihiking15000-16','','','2019-06-28 06:37:04','2019-06-28 06:37:04','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-16.jpg',0,'attachment','image/jpeg',0),(2257,8,'2019-06-28 06:40:28','2019-06-28 06:40:28','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_235706.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500.mp4\"][/video]\r\n\r\n\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405.mp4\"][/video]\r\n\r\n\r\n</div>\r\n</div>\r\n','Getting To Camp At 16,500 Feet','','publish','closed','closed','','16-500-feet-to-18-400','','','2022-07-27 22:21:17','2022-07-27 22:21:17','',0,'https://www.drfields.com/?page_id=2257',0,'page','',0),(2258,8,'2019-06-28 06:40:28','2019-06-28 06:40:28','<div id=\"kiliminaroimg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-1.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-2.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-3.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-4.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-5.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-6.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-7.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-8.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-9.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-10.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-11.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-14.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-15.jpg\">\r\n</div>','16500 feet to 18400','','inherit','closed','closed','','2257-revision-v1','','','2019-06-28 06:40:28','2019-06-28 06:40:28','',2257,'https://www.drfields.com/uncategorized/2257-revision-v1/',0,'revision','',0),(2259,8,'2019-06-28 06:40:58','2019-06-28 06:40:58','16500 18400 (14)','16500 18400 (14)','16500 18400 (14)','inherit','open','closed','','16500-18400-14','','','2019-06-28 06:40:58','2019-06-28 06:40:58','',0,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-14.jpg',0,'attachment','image/jpeg',0),(2260,8,'2019-06-28 06:40:58','2019-06-28 06:40:58','16500 18400 (15)','16500 18400 (15)','16500 18400 (15)','inherit','open','closed','','16500-18400-15','','','2019-06-28 06:40:58','2019-06-28 06:40:58','',0,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-15.jpg',0,'attachment','image/jpeg',0),(2261,8,'2019-06-28 06:41:00','2019-06-28 06:41:00','16500 18400 (1)','16500 18400 (1)','16500 18400 (1)','inherit','open','closed','','16500-18400-1','','','2019-06-28 06:41:00','2019-06-28 06:41:00','',0,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-1.jpg',0,'attachment','image/jpeg',0),(2262,8,'2019-06-28 06:41:02','2019-06-28 06:41:02','16500 18400 (2)','16500 18400 (2)','16500 18400 (2)','inherit','open','closed','','16500-18400-2','','','2019-06-28 06:41:02','2019-06-28 06:41:02','',0,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-2.jpg',0,'attachment','image/jpeg',0),(2263,8,'2019-06-28 06:41:03','2019-06-28 06:41:03','16500 18400 (3)','16500 18400 (3)','16500 18400 (3)','inherit','open','closed','','16500-18400-3','','','2019-06-28 06:41:03','2019-06-28 06:41:03','',0,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-3.jpg',0,'attachment','image/jpeg',0),(2264,8,'2019-06-28 06:41:04','2019-06-28 06:41:04','16500 18400 (4)','16500 18400 (4)','16500 18400 (4)','inherit','open','closed','','16500-18400-4','','','2019-06-28 06:41:04','2019-06-28 06:41:04','',0,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-4.jpg',0,'attachment','image/jpeg',0),(2265,8,'2019-06-28 06:41:05','2019-06-28 06:41:05','16500 18400 (5)','16500 18400 (5)','16500 18400 (5)','inherit','open','closed','','16500-18400-5','','','2019-06-28 06:41:05','2019-06-28 06:41:05','',0,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-5.jpg',0,'attachment','image/jpeg',0),(2266,8,'2019-06-28 06:41:06','2019-06-28 06:41:06','16500 18400 (6)','16500 18400 (6)','16500 18400 (6)','inherit','open','closed','','16500-18400-6','','','2019-06-28 06:41:06','2019-06-28 06:41:06','',0,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-6.jpg',0,'attachment','image/jpeg',0),(2267,8,'2019-06-28 06:41:07','2019-06-28 06:41:07','16500 18400 (7)','16500 18400 (7)','16500 18400 (7)','inherit','open','closed','','16500-18400-7','','','2019-06-28 06:41:07','2019-06-28 06:41:07','',0,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-7.jpg',0,'attachment','image/jpeg',0),(2268,8,'2019-06-28 06:41:09','2019-06-28 06:41:09','16500 18400 (8)','16500 18400 (8)','16500 18400 (8)','inherit','open','closed','','16500-18400-8','','','2019-06-28 06:41:09','2019-06-28 06:41:09','',0,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-8.jpg',0,'attachment','image/jpeg',0),(2269,8,'2019-06-28 06:41:10','2019-06-28 06:41:10','16500 18400 (9)','16500 18400 (9)','16500 18400 (9)','inherit','open','closed','','16500-18400-9','','','2019-06-28 06:41:10','2019-06-28 06:41:10','',0,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-9.jpg',0,'attachment','image/jpeg',0),(2270,8,'2019-06-28 06:41:12','2019-06-28 06:41:12','16500 18400 (10)','16500 18400 (10)','16500 18400 (10)','inherit','open','closed','','16500-18400-10','','','2019-06-28 06:41:12','2019-06-28 06:41:12','',0,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-10.jpg',0,'attachment','image/jpeg',0),(2271,8,'2019-06-28 06:41:14','2019-06-28 06:41:14','16500 18400 (11)','16500 18400 (11)','16500 18400 (11)','inherit','open','closed','','16500-18400-11','','','2019-06-28 06:41:14','2019-06-28 06:41:14','',0,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-11.jpg',0,'attachment','image/jpeg',0),(2272,8,'2019-06-28 06:41:15','2019-06-28 06:41:15','16500 18400 (12)','16500 18400 (12)','16500 18400 (12)','inherit','open','closed','','16500-18400-12','','','2019-06-28 06:41:15','2019-06-28 06:41:15','',0,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg',0,'attachment','image/jpeg',0),(2273,8,'2019-06-28 06:41:16','2019-06-28 06:41:16','16500 18400 (13)','16500 18400 (13)','16500 18400 (13)','inherit','open','closed','','16500-18400-13','','','2019-06-28 06:41:16','2019-06-28 06:41:16','',0,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg',0,'attachment','image/jpeg',0),(2274,8,'2019-06-28 06:46:01','2019-06-28 06:46:01','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234-1.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n</div>\r\n</div>','Kilimanjaro- final camp at 18,500 feet','','publish','closed','closed','','kilimanjaro-final-camp-at-18500-feet','','','2022-07-27 22:12:37','2022-07-27 22:12:37','',0,'https://www.drfields.com/?page_id=2274',0,'page','',0),(2275,8,'2019-06-28 06:46:01','2019-06-28 06:46:01','<div id=\"kiliminaroimg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-1.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-2.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-3.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-4.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-5.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-6.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\">\r\n</div>','Hiking to the summit 19341 feet!','','inherit','closed','closed','','2274-revision-v1','','','2019-06-28 06:46:01','2019-06-28 06:46:01','',2274,'https://www.drfields.com/uncategorized/2274-revision-v1/',0,'revision','',0),(2276,8,'2019-06-28 06:48:04','2019-06-28 06:48:04','Summit 19,341 (1)','Summit 19,341 (1)','Summit 19,341 (1)','inherit','open','closed','','summit-19341-1','','','2019-06-28 06:48:04','2019-06-28 06:48:04','',0,'https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-1.jpg',0,'attachment','image/jpeg',0),(2277,8,'2019-06-28 06:48:07','2019-06-28 06:48:07','Summit 19,341 (2)','Summit 19,341 (2)','Summit 19,341 (2)','inherit','open','closed','','summit-19341-2','','','2019-06-28 06:48:07','2019-06-28 06:48:07','',0,'https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-2.jpg',0,'attachment','image/jpeg',0),(2278,8,'2019-06-28 06:48:10','2019-06-28 06:48:10','Summit 19,341 (3)','Summit 19,341 (3)','Summit 19,341 (3)','inherit','open','closed','','summit-19341-3','','','2019-06-28 06:48:10','2019-06-28 06:48:10','',0,'https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-3.jpg',0,'attachment','image/jpeg',0),(2279,8,'2019-06-28 06:48:15','2019-06-28 06:48:15','Summit 19,341 (4)','Summit 19,341 (4)','Summit 19,341 (4)','inherit','open','closed','','summit-19341-4','','','2019-06-28 06:48:15','2019-06-28 06:48:15','',0,'https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-4.jpg',0,'attachment','image/jpeg',0),(2280,8,'2019-06-28 06:48:18','2019-06-28 06:48:18','Summit 19,341 (5)','Summit 19,341 (5)','Summit 19,341 (5)','inherit','open','closed','','summit-19341-5','','','2019-06-28 06:48:18','2019-06-28 06:48:18','',0,'https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-5.jpg',0,'attachment','image/jpeg',0),(2281,8,'2019-06-28 06:48:21','2019-06-28 06:48:21','Summit 19,341 (6)','Summit 19,341 (6)','Summit 19,341 (6)','inherit','open','closed','','summit-19341-6','','','2019-06-28 06:48:21','2019-06-28 06:48:21','',0,'https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-6.jpg',0,'attachment','image/jpeg',0),(2282,8,'2019-06-28 06:48:24','2019-06-28 06:48:24','Summit 19,341 (7)','Summit 19,341 (7)','Summit 19,341 (7)','inherit','open','closed','','summit-19341-7','','','2019-09-19 01:14:58','2019-09-19 01:14:58','',2208,'https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg',0,'attachment','image/jpeg',0),(2283,8,'2019-06-28 06:50:25','2019-06-28 06:50:25','[gallery columns=\"4\" size=\"wcstandard\" link=\"file\" captions=\"hide\" ids=\"2293,2287,2286,2285,2292,2291,2290,2289\"]','Sunrise up top and heading down','','publish','closed','closed','','sunrise-up-top-and-heading-down','','','2022-07-27 04:19:57','2022-07-27 04:19:57','',0,'https://www.drfields.com/?page_id=2283',0,'page','',0),(2284,8,'2019-06-28 06:50:25','2019-06-28 06:50:25','<div id=\"kiliminaroimg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-1.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-2.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-4.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-5.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-6.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-7.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-8.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-9.jpg\">\r\n</div>','Sunrise up top and heading down','','inherit','closed','closed','','2283-revision-v1','','','2019-06-28 06:50:25','2019-06-28 06:50:25','',2283,'https://www.drfields.com/uncategorized/2283-revision-v1/',0,'revision','',0),(2285,8,'2019-06-28 06:50:54','2019-06-28 06:50:54','Sunriseuptop (1)','Sunriseuptop (1)','Sunriseuptop (1)','inherit','open','closed','','sunriseuptop-1','','','2019-06-28 06:50:54','2019-06-28 06:50:54','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-1.jpg',0,'attachment','image/jpeg',0),(2286,8,'2019-06-28 06:50:55','2019-06-28 06:50:55','Sunriseuptop (2)','Sunriseuptop (2)','Sunriseuptop (2)','inherit','open','closed','','sunriseuptop-2','','','2019-06-28 06:50:55','2019-06-28 06:50:55','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-2.jpg',0,'attachment','image/jpeg',0),(2287,8,'2019-06-28 06:50:55','2019-06-28 06:50:55','Sunriseuptop (3)','Sunriseuptop (3)','Sunriseuptop (3)','inherit','open','closed','','sunriseuptop-3','','','2019-06-28 06:50:56','2019-06-28 06:50:56','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg',0,'attachment','image/jpeg',0),(2288,8,'2019-06-28 06:50:56','2019-06-28 06:50:56','Sunriseuptop (4)','Sunriseuptop (4)','Sunriseuptop (4)','inherit','open','closed','','sunriseuptop-4','','','2019-06-28 06:50:56','2019-06-28 06:50:56','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-4.jpg',0,'attachment','image/jpeg',0),(2289,8,'2019-06-28 06:50:57','2019-06-28 06:50:57','Sunriseuptop (5)','Sunriseuptop (5)','Sunriseuptop (5)','inherit','open','closed','','sunriseuptop-5','','','2019-06-28 06:50:57','2019-06-28 06:50:57','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-5.jpg',0,'attachment','image/jpeg',0),(2290,8,'2019-06-28 06:50:57','2019-06-28 06:50:57','Sunriseuptop (6)','Sunriseuptop (6)','Sunriseuptop (6)','inherit','open','closed','','sunriseuptop-6','','','2019-06-28 06:50:57','2019-06-28 06:50:57','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-6.jpg',0,'attachment','image/jpeg',0),(2291,8,'2019-06-28 06:50:58','2019-06-28 06:50:58','Sunriseuptop (7)','Sunriseuptop (7)','Sunriseuptop (7)','inherit','open','closed','','sunriseuptop-7','','','2019-06-28 06:50:58','2019-06-28 06:50:58','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-7.jpg',0,'attachment','image/jpeg',0),(2292,8,'2019-06-28 06:50:58','2019-06-28 06:50:58','Sunriseuptop (8)','Sunriseuptop (8)','Sunriseuptop (8)','inherit','open','closed','','sunriseuptop-8','','','2019-06-28 06:50:58','2019-06-28 06:50:58','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-8.jpg',0,'attachment','image/jpeg',0),(2293,8,'2019-06-28 06:50:59','2019-06-28 06:50:59','Sunriseuptop (9)','Sunriseuptop (9)','Sunriseuptop (9)','inherit','open','closed','','sunriseuptop-9','','','2019-06-28 06:50:59','2019-06-28 06:50:59','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-9.jpg',0,'attachment','image/jpeg',0),(2294,8,'2019-06-28 06:57:12','2019-06-28 06:57:12','[gallery columns=\"5\" size=\"wcstandard\" link=\"file\" display=\"grid\" captions=\"hide\" ids=\"2303,2302,2304,2301,2296,2299,2300,2297,2306\"]','Final goodbyes and certificates','','publish','closed','closed','','final-goodbyes-and-certificates','','','2022-07-28 04:06:18','2022-07-28 04:06:18','',0,'https://www.drfields.com/?page_id=2294',0,'page','',0),(2295,8,'2019-06-28 06:57:12','2019-06-28 06:57:12','<div id=\"kiliminaroimg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-2.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-3.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-4.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-5.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-6.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-7.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-8.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg\">\r\n</div>','Final goodbyes and certificates','','inherit','closed','closed','','2294-revision-v1','','','2019-06-28 06:57:12','2019-06-28 06:57:12','',2294,'https://www.drfields.com/uncategorized/2294-revision-v1/',0,'revision','',0),(2296,8,'2019-06-28 06:57:46','2019-06-28 06:57:46','Final Goodbyes (7)','Final Goodbyes (7)','Final Goodbyes (7)','inherit','open','closed','','final-goodbyes-7','','','2019-06-28 06:57:46','2019-06-28 06:57:46','',0,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-7.jpg',0,'attachment','image/jpeg',0),(2297,8,'2019-06-28 06:57:47','2019-06-28 06:57:47','Final Goodbyes (8)','Final Goodbyes (8)','Final Goodbyes (8)','inherit','open','closed','','final-goodbyes-8','','','2019-06-28 06:57:47','2019-06-28 06:57:47','',0,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-8.jpg',0,'attachment','image/jpeg',0),(2299,8,'2019-06-28 06:57:49','2019-06-28 06:57:49','Final Goodbyes (1)','Final Goodbyes (1)','Final Goodbyes (1)','inherit','open','closed','','final-goodbyes-1','','','2019-06-28 06:57:49','2019-06-28 06:57:49','',0,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg',0,'attachment','image/jpeg',0),(2300,8,'2019-06-28 06:57:49','2019-06-28 06:57:49','Final Goodbyes (2)','Final Goodbyes (2)','Final Goodbyes (2)','inherit','open','closed','','final-goodbyes-2','','','2019-06-28 06:57:49','2019-06-28 06:57:49','',0,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-2.jpg',0,'attachment','image/jpeg',0),(2301,8,'2019-06-28 06:57:50','2019-06-28 06:57:50','Final Goodbyes (3)','Final Goodbyes (3)','Final Goodbyes (3)','inherit','open','closed','','final-goodbyes-3','','','2019-06-28 06:57:50','2019-06-28 06:57:50','',0,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-3.jpg',0,'attachment','image/jpeg',0),(2302,8,'2019-06-28 06:57:50','2019-06-28 06:57:50','Final Goodbyes (4)','Final Goodbyes (4)','Final Goodbyes (4)','inherit','open','closed','','final-goodbyes-4','','','2019-06-28 06:57:50','2019-06-28 06:57:50','',0,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-4.jpg',0,'attachment','image/jpeg',0),(2303,8,'2019-06-28 06:57:51','2019-06-28 06:57:51','Final Goodbyes (5)','Final Goodbyes (5)','Final Goodbyes (5)','inherit','open','closed','','final-goodbyes-5','','','2019-06-28 06:57:51','2019-06-28 06:57:51','',0,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-5.jpg',0,'attachment','image/jpeg',0),(2304,8,'2019-06-28 06:57:52','2019-06-28 06:57:52','Final Goodbyes (6)','Final Goodbyes (6)','Final Goodbyes (6)','inherit','open','closed','','final-goodbyes-6','','','2019-06-28 06:57:52','2019-06-28 06:57:52','',0,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-6.jpg',0,'attachment','image/jpeg',0),(2305,8,'2019-06-28 06:58:57','2019-06-28 06:58:57','<div id=\"kiliminaroimg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-2.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-3.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-4.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-5.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-6.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-7.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-8.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\">\r\n</div>','Final goodbyes and certificates','','inherit','closed','closed','','2294-revision-v1','','','2019-06-28 06:58:57','2019-06-28 06:58:57','',2294,'https://www.drfields.com/uncategorized/2294-revision-v1/',0,'revision','',0),(2306,8,'2019-06-28 07:00:00','2019-06-28 07:00:00','Final Goodbyes (9)','Final Goodbyes (9)','Final Goodbyes (9)','inherit','open','closed','','final-goodbyes-9','','','2019-06-28 07:00:00','2019-06-28 07:00:00','',0,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg',0,'attachment','image/jpeg',0),(2307,8,'2019-06-28 07:00:16','2019-06-28 07:00:16','<div id=\"kiliminaroimg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-2.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-3.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-4.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-5.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-6.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-7.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-8.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg\">\r\n</div>','Final goodbyes and certificates','','inherit','closed','closed','','2294-revision-v1','','','2019-06-28 07:00:16','2019-06-28 07:00:16','',2294,'https://www.drfields.com/uncategorized/2294-revision-v1/',0,'revision','',0),(2309,8,'2019-06-28 07:08:17','2019-06-28 07:08:17','<img class=\"aligncenter size-full wp-image-2249\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/\r\nSantaMonicaSeminar3.png\" alt=\"Santamonicaseminar3\" width=\"499\" height=\"156\" />\r\n<div id=\"kiliminaroimg\">\r\n<h6 class=\"text-center\">Join us for a 2 Hour CE Seminar!\r\nWednesday, April 24th, 2019\r\nRegistration and Social Hour 6:00pm – 7:00pm\r\nDinner and CEPresentation 7:00pm - 9:pm\r\nSanta Monica Daily Grill\r\n2501 Colorado Ave, Santa Monica 90404</h6>\r\n\r\n<div id=\"athleticdoc\">\r\nRegenerative Orthopedics:\r\nNon-Surgical Repair With\r\nStemCells/PRP/Prolotherapy</div>\r\n\r\n<h6>Presented by Peter A. Fields, MD, DC\r\nThe Athletic Doc® and 10X Ironman Triathlete</h6>\r\n\r\n<strong>Use of Stem Cells and other natural substances can help repair\r\nones joint and spine and help one avoid surgery.\r\nOrthopedic Medicine is treating joints and spine without surgery which includes Prolotherapy, PRP and Stem Cell.</strong>\r\n\r\n<h6>In this lecture, you will learn:</h6>\r\n<strong>• Regenerating ones joints and spine is not in the future:\r\nit is happening today!\r\nThese techniques can benefit your patients\r\nand help them avoid surgery\r\n• Learn what the latest regenerative techniques are in Orthopedics\r\n• See and hear results from patients that have avoided surgery</strong>\r\n\r\n\r\n<h6>$20 for CCA Members\r\nand $45 for Non-Members\r\nRESERVE YOUR SEAT:<h6>\r\n<a href=\"https://ccalametro.com/meetings/meetings-list/join-us-for-ce-april-24th?mc_cid=738898dc63&mc_eid=[UNIQID]\" target=\"_blank\" rel=\"noopener noreferrer\">https://ccalametro.com/meetings/meetings-list/join-us-for-ce-april-24th</a>\r\n\r\n<h6>Please RSVP no later than Monday, April 22, 2019</h6>\r\nFor further questions email:<a href=\"mailto:info@ccalametro.com\">info@ccalametro.com</a>\r\n\r\n<h6 style=\"color:#0000ff\">This program is approved for 2 general CE hours by the Board of Chiropractic\r\nExaminers: CA-A-19-03-03017</h6>\r\n\r\n<h6>*The treatments discussed cannot be performed by a Chiropractor so this lecture is\r\ninformative only.</h6>\r\n\r\nPeter A. Fields, MD, DC treats joint injuries with Prolotherapy, PRP, or the Gold Standard in Stem Cell Therapy, which are designed to help repair the painful shoulder without cutting, suturing, sewing, or stapling. This is a natural injection therapy that strengthens painful, loose and unstable shoulder joints and the involved ligaments and tendons, creating a more stable, strong, and pain-free shoulder so the active person can continue working or engaging in the sports and activities they love!\r\n\r\n</div>','Santa Monica Daily Grill Lecture 04-19-19','','publish','closed','closed','','santa-monica-daily-grill-lecture-04-19-19','','','2019-06-28 07:08:17','2019-06-28 07:08:17','',0,'https://www.drfields.com/?page_id=2309',0,'page','',0),(2310,8,'2019-06-28 07:07:56','2019-06-28 07:07:56','Santamonicaseminar3','Santamonicaseminar3','Santamonicaseminar3','inherit','open','closed','','santamonicaseminar3','','','2019-06-28 07:07:57','2019-06-28 07:07:57','',0,'https://www.drfields.com/wp-content/uploads/2019/06/SantaMonicaSeminar3.png',0,'attachment','image/png',0),(2311,8,'2019-06-28 07:08:17','2019-06-28 07:08:17','<img class=\"aligncenter size-full wp-image-2249\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/\r\nSantaMonicaSeminar3.png\" alt=\"Santamonicaseminar3\" width=\"499\" height=\"156\" />\r\n<div id=\"kiliminaroimg\">\r\n<h6 class=\"text-center\">Join us for a 2 Hour CE Seminar!\r\nWednesday, April 24th, 2019\r\nRegistration and Social Hour 6:00pm – 7:00pm\r\nDinner and CEPresentation 7:00pm - 9:pm\r\nSanta Monica Daily Grill\r\n2501 Colorado Ave, Santa Monica 90404</h6>\r\n\r\n<div id=\"athleticdoc\">\r\nRegenerative Orthopedics:\r\nNon-Surgical Repair With\r\nStemCells/PRP/Prolotherapy</div>\r\n\r\n<h6>Presented by Peter A. Fields, MD, DC\r\nThe Athletic Doc® and 10X Ironman Triathlete</h6>\r\n\r\n<strong>Use of Stem Cells and other natural substances can help repair\r\nones joint and spine and help one avoid surgery.\r\nOrthopedic Medicine is treating joints and spine without surgery which includes Prolotherapy, PRP and Stem Cell.</strong>\r\n\r\n<h6>In this lecture, you will learn:</h6>\r\n<strong>• Regenerating ones joints and spine is not in the future:\r\nit is happening today!\r\nThese techniques can benefit your patients\r\nand help them avoid surgery\r\n• Learn what the latest regenerative techniques are in Orthopedics\r\n• See and hear results from patients that have avoided surgery</strong>\r\n\r\n\r\n<h6>$20 for CCA Members\r\nand $45 for Non-Members\r\nRESERVE YOUR SEAT:<h6>\r\n<a href=\"https://ccalametro.com/meetings/meetings-list/join-us-for-ce-april-24th?mc_cid=738898dc63&mc_eid=[UNIQID]\" target=\"_blank\" rel=\"noopener noreferrer\">https://ccalametro.com/meetings/meetings-list/join-us-for-ce-april-24th</a>\r\n\r\n<h6>Please RSVP no later than Monday, April 22, 2019</h6>\r\nFor further questions email:<a href=\"mailto:info@ccalametro.com\">info@ccalametro.com</a>\r\n\r\n<h6 style=\"color:#0000ff\">This program is approved for 2 general CE hours by the Board of Chiropractic\r\nExaminers: CA-A-19-03-03017</h6>\r\n\r\n<h6>*The treatments discussed cannot be performed by a Chiropractor so this lecture is\r\ninformative only.</h6>\r\n\r\nPeter A. Fields, MD, DC treats joint injuries with Prolotherapy, PRP, or the Gold Standard in Stem Cell Therapy, which are designed to help repair the painful shoulder without cutting, suturing, sewing, or stapling. This is a natural injection therapy that strengthens painful, loose and unstable shoulder joints and the involved ligaments and tendons, creating a more stable, strong, and pain-free shoulder so the active person can continue working or engaging in the sports and activities they love!\r\n\r\n</div>','Santa Monica Daily Grill Lecture 04-19-19','','inherit','closed','closed','','2309-revision-v1','','','2019-06-28 07:08:17','2019-06-28 07:08:17','',2309,'https://www.drfields.com/uncategorized/2309-revision-v1/',0,'revision','',0),(2312,8,'2019-06-28 07:11:14','2019-06-28 07:11:14','<h4>How To Avoid Joint Replacement Surgery</h4>\r\nHas your doctor told you that you have worn cartilage or no cartilage? That you have bone-on-bone in your joints? That you have arthritis?  Or that you have torn or damaged tissue in your joints?\r\n\r\nMore to the point, has your doctor told you that you need to have your joint replaced?\r\n\r\nEvery year, over 20 million people are told that the only solution to their joint pain -- whether it’s in their knee, hip, shoulder, or other joint -- can only be treated with a total joint replacement.\r\n\r\nAnd if you are like most people, you are scared at the idea of someone cutting out your joint and replacing it with an artificial one.\r\n\r\nI would be, too.\r\n\r\nMy name is Dr. Peter Fields, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic.\r\n\r\nAnd I’m here to tell you that in many cases, you do NOT need to have your joint replaced in order to be able to walk, run, lift, stand, sit, dance, raise your arms, play sports, or whatever it is that you currently cannot do.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint replacement surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nCall my office today at [phone] or fill out the contact form on this page and we will call you.','Mark Test','','publish','closed','closed','','mark-test','','','2019-10-18 09:05:41','2019-10-18 09:05:41','',0,'https://www.drfields.com/?page_id=2312',0,'page','',0),(2313,8,'2019-06-28 07:11:14','2019-06-28 07:11:14','<h4>How To Avoid Joint Replacement Surgery</h4>\r\nHas your doctor told you that you have worn cartilage or no cartilage? That you have bone-on-bone in your joints? That you have arthritis?  Or that you have torn or damaged tissue in your joints?\r\n\r\nMore to the point, has your doctor told you that you need to have your joint replaced?\r\n\r\nEvery year, over 20 million people are told that the only solution to their joint pain -- whether it’s in their knee, hip, shoulder, or other joint -- can only be treated with a total joint replacement.\r\n\r\nAnd if you are like most people, you are scared at the idea of someone cutting out your joint and replacing it with an artificial one.\r\n\r\nI would be, too.\r\n\r\nMy name is Dr. Peter Fields, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic.\r\n\r\nAnd I’m here to tell you that in many cases, you do NOT need to have your joint replaced in order to be able to walk, run, lift, stand, sit, dance, raise your arms, play sports, or whatever it is that you currently cannot do.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint replacement surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nCall my office today at 310-455-8242 or fill out the contact form on this page and we will call you.','Mark Test','','inherit','closed','closed','','2312-revision-v1','','','2019-06-28 07:11:14','2019-06-28 07:11:14','',2312,'https://www.drfields.com/uncategorized/2312-revision-v1/',0,'revision','',0),(2314,8,'2019-06-28 07:18:08','2019-06-28 07:18:08','[caption id=\"attachment_1849\" align=\"alignnone\" width=\"200\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Disclamer-img.jpg\" alt=\"Nutrition\" width=\"200\" height=\"313\" class=\"size-full wp-image-1849\" /> <h6>Disclaimer</h6>[/caption]\r\n\r\nHealth information in DrFields.com is not a substitute for medical advice or treatment. We urge you to consult with a qualified physician for diagnosis and for answers to your personal questions. We do not endorse, warrant, or guarantee the products, services, or information described or offered at recommended sites. The views and opinions of authors expressed on sites recommended do not necessarily reflect those of DrFields.com.','Disclamer','','publish','closed','closed','','disclamer','','','2019-06-28 07:21:36','2019-06-28 07:21:36','',0,'https://www.drfields.com/?page_id=2314',0,'page','',0),(2316,8,'2019-06-28 07:18:08','2019-06-28 07:18:08','[caption id=\"attachment_1849\" align=\"alignnone\" width=\"200\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Disclamer.jpg\" alt=\"Nutrition\" width=\"200\" height=\"313\" class=\"size-full wp-image-1849\" /> <h6>Disclaimer</h6>[/caption]\r\n\r\nHealth information in DrFields.com is not a substitute for medical advice or treatment. We urge you to consult with a qualified physician for diagnosis and for answers to your personal questions. We do not endorse, warrant, or guarantee the products, services, or information described or offered at recommended sites. The views and opinions of authors expressed on sites recommended do not necessarily reflect those of DrFields.com.','Disclamer','','inherit','closed','closed','','2314-revision-v1','','','2019-06-28 07:18:08','2019-06-28 07:18:08','',2314,'https://www.drfields.com/uncategorized/2314-revision-v1/',0,'revision','',0),(2317,8,'2019-06-28 07:21:06','2019-06-28 07:21:06','Disclamer Img','Disclamer Img','Disclamer Img','inherit','open','closed','','disclamer-img','','','2019-06-28 07:21:06','2019-06-28 07:21:06','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Disclamer-img.jpg',0,'attachment','image/jpeg',0),(2318,8,'2019-06-28 07:21:36','2019-06-28 07:21:36','[caption id=\"attachment_1849\" align=\"alignnone\" width=\"200\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Disclamer-img.jpg\" alt=\"Nutrition\" width=\"200\" height=\"313\" class=\"size-full wp-image-1849\" /> <h6>Disclaimer</h6>[/caption]\r\n\r\nHealth information in DrFields.com is not a substitute for medical advice or treatment. We urge you to consult with a qualified physician for diagnosis and for answers to your personal questions. We do not endorse, warrant, or guarantee the products, services, or information described or offered at recommended sites. The views and opinions of authors expressed on sites recommended do not necessarily reflect those of DrFields.com.','Disclamer','','inherit','closed','closed','','2314-revision-v1','','','2019-06-28 07:21:36','2019-06-28 07:21:36','',2314,'https://www.drfields.com/uncategorized/2314-revision-v1/',0,'revision','',0),(2319,8,'2019-06-28 07:23:03','2019-06-28 07:23:03','<h4>Neck and Shoulder Pain May Be Interconnected </h4>\r\n\r\nInjury to the ligaments of the neck can cause many types of aggravating and even disabling symptoms due to the multifaceted issues that stem from the instability that occurs in the neck when these ligaments are injured. Even though neck instability alone can generate a host of symptoms, there are occasions when the neck and the shoulder are both involved in eliciting pain and symptoms. Shoulder pain can also be complicated, because the joint is so flexible, making it more prone to injuries. But the interconnected duo can add to the complexity. In cases where both areas are involved, neck pain can refer to the shoulder due to the various joint attachments. If only the shoulder is treated, inadequate healing may occur due to the connection with the neck, which may need to be treated as well. An awareness of the interplay needs to be considered in treatment plans of those with neck and shoulder pain.\r\n\r\n<h4>What Happens with Neck Instability?</h4>\r\nWhen the neck or cervical spine is stable, it moves and functions normally. The neck remains in proper physiologic alignment, which protects the blood vessels, nerves and spinal cord. The neck has seven cervical vertebrae, with facet joints adjoining them, which help the neck to be flexible, bend, and twist. Nerves exit the spinal cord through these joint on their way to other parts of the body. If the ligaments become injured, these facet joints can get too much movement, which leads to neck instability. At this point, the cervical spine or neck has difficulty handling the demands placed upon it and the support becomes inadequate. A cycle of imbalance is created, generating changes in the alignment of the vertebrae of the neck and the adjacent joint structures. It’s not unlike a wobbly bicycle wheel that will eventually make the handle bar turn, and create a situation where riding is incredibly difficult. Increased motion in the facets will increase motion between the adjacent vertebrae and eventually the adjacent joint structures, including the shoulder joint. All of this extra motion causes excessive stress on the ligaments that are trying to support these structures. With this abnormal movement of the joints, the nerve endings within those structures will elicit pain and a variety of symptoms will be experienced.\r\n\r\n<h4>More about the Shoulder</h4>\r\nThe shoulder is one of the most flexible joints in the body. It’s a ball and socket joint, with a huge range of motion. The mobility and flexibility are great things, and come in very handy for all of the sports and activities they help us to perform. But when we use the shoulder over and over, the wear and tear from the repetitive movements or the damage from a current or previous injury can cause the supporting ring of ligaments in the shoulder to become too loose, allowing for excessive movement in the shoulder. Just like the neck, the extra movement will eventually lead to pain and make the shoulder susceptibility to further injury. The muscles that move the shoulder are called the rotator cuff muscles. When the ligaments of the shoulder are injured, these muscles are then called upon to try and keep the shoulder stable. The muscles will spasm from overuse, and they too will eventually fatigue, which may possibly lead to tears of the rotator cuff or injury to other joint structures.\r\n\r\n<h4>The Interconnectedness of the Shoulder and the Neck</h4>\r\nThe neck and shoulder are interconnected via joint structures and attachments, and this is why injury to one of them can affect the other. The anatomy of the neck and shoulder involves muscles and other soft tissue that overlap. When pain in these areas is experienced, it is essential to have a skilled clinician who can examine the structures and discern where the pain is coming from. It is very important to physically examine the patient, and carry out a functional exam. At times, if an MRI is ordered, only one of these areas (rather than both), will be imaged, and the root problem might be missed. The underlying problem may very well be injured tendons and ligaments.  The ligaments become unstable at some point, which causes the tendons to wear out. For example, a patient may be seen due to an MRI that shows they have shoulder spurs. But the spurs may not be what are producing the pain. When the area is examined by the physician, the underlying problems generating the pain may be the supra and infraspinatus tendons, which have become weakened by taking up the slack which originated from injured ligaments.\r\n\r\nThe ligament injuries may be old injuries in the shoulder or neck structures, which occurred earlier in life, such as from a sports injury, fall, or motor vehicle accident. The ligament injury could also be an overuse injury, such as that produced by prolonged overhead activities/swings, poor posture, or forward head positioning from repetitive mobile device usage. These injuries progress to unrelenting pain conditions, which may be helped temporarily by various therapies, but which often remain unresolved, because many conventional therapies are unable to heal ligament injuries. Tendons and ligaments have difficulty healing as a result of having a poor blood supply. Fortunately, Regenerative Orthopedic therapies, such as Stem Cell Therapy, PRP, and Prolotherapy repair structures like ligaments, tendons, and the rotator cuff, by increasing the blood supply to these structures and by giving the body, which has great reparative capabilities, the boost to heal itself. These regenerative options are a huge piece of the puzzle in helping people get better.\r\nShoulder, neck pain and instability can be successfully addressed with Regenerative Orthopedic techniques. This natural injection therapy strengthens loose and unstable joints and their ligaments and other soft tissue, creating more stable, strong, and pain-free movement in both the neck and the shoulder.','Neck and Shoulder Pain May Be Interconnected','','publish','closed','closed','','neck-and-shoulder-pain-may-be-interconnected','','','2019-06-28 07:23:03','2019-06-28 07:23:03','',0,'https://www.drfields.com/?page_id=2319',0,'page','',0),(2320,8,'2019-06-28 07:23:03','2019-06-28 07:23:03','<h4>Neck and Shoulder Pain May Be Interconnected </h4>\r\n\r\nInjury to the ligaments of the neck can cause many types of aggravating and even disabling symptoms due to the multifaceted issues that stem from the instability that occurs in the neck when these ligaments are injured. Even though neck instability alone can generate a host of symptoms, there are occasions when the neck and the shoulder are both involved in eliciting pain and symptoms. Shoulder pain can also be complicated, because the joint is so flexible, making it more prone to injuries. But the interconnected duo can add to the complexity. In cases where both areas are involved, neck pain can refer to the shoulder due to the various joint attachments. If only the shoulder is treated, inadequate healing may occur due to the connection with the neck, which may need to be treated as well. An awareness of the interplay needs to be considered in treatment plans of those with neck and shoulder pain.\r\n\r\n<h4>What Happens with Neck Instability?</h4>\r\nWhen the neck or cervical spine is stable, it moves and functions normally. The neck remains in proper physiologic alignment, which protects the blood vessels, nerves and spinal cord. The neck has seven cervical vertebrae, with facet joints adjoining them, which help the neck to be flexible, bend, and twist. Nerves exit the spinal cord through these joint on their way to other parts of the body. If the ligaments become injured, these facet joints can get too much movement, which leads to neck instability. At this point, the cervical spine or neck has difficulty handling the demands placed upon it and the support becomes inadequate. A cycle of imbalance is created, generating changes in the alignment of the vertebrae of the neck and the adjacent joint structures. It’s not unlike a wobbly bicycle wheel that will eventually make the handle bar turn, and create a situation where riding is incredibly difficult. Increased motion in the facets will increase motion between the adjacent vertebrae and eventually the adjacent joint structures, including the shoulder joint. All of this extra motion causes excessive stress on the ligaments that are trying to support these structures. With this abnormal movement of the joints, the nerve endings within those structures will elicit pain and a variety of symptoms will be experienced.\r\n\r\n<h4>More about the Shoulder</h4>\r\nThe shoulder is one of the most flexible joints in the body. It’s a ball and socket joint, with a huge range of motion. The mobility and flexibility are great things, and come in very handy for all of the sports and activities they help us to perform. But when we use the shoulder over and over, the wear and tear from the repetitive movements or the damage from a current or previous injury can cause the supporting ring of ligaments in the shoulder to become too loose, allowing for excessive movement in the shoulder. Just like the neck, the extra movement will eventually lead to pain and make the shoulder susceptibility to further injury. The muscles that move the shoulder are called the rotator cuff muscles. When the ligaments of the shoulder are injured, these muscles are then called upon to try and keep the shoulder stable. The muscles will spasm from overuse, and they too will eventually fatigue, which may possibly lead to tears of the rotator cuff or injury to other joint structures.\r\n\r\n<h4>The Interconnectedness of the Shoulder and the Neck</h4>\r\nThe neck and shoulder are interconnected via joint structures and attachments, and this is why injury to one of them can affect the other. The anatomy of the neck and shoulder involves muscles and other soft tissue that overlap. When pain in these areas is experienced, it is essential to have a skilled clinician who can examine the structures and discern where the pain is coming from. It is very important to physically examine the patient, and carry out a functional exam. At times, if an MRI is ordered, only one of these areas (rather than both), will be imaged, and the root problem might be missed. The underlying problem may very well be injured tendons and ligaments.  The ligaments become unstable at some point, which causes the tendons to wear out. For example, a patient may be seen due to an MRI that shows they have shoulder spurs. But the spurs may not be what are producing the pain. When the area is examined by the physician, the underlying problems generating the pain may be the supra and infraspinatus tendons, which have become weakened by taking up the slack which originated from injured ligaments.\r\n\r\nThe ligament injuries may be old injuries in the shoulder or neck structures, which occurred earlier in life, such as from a sports injury, fall, or motor vehicle accident. The ligament injury could also be an overuse injury, such as that produced by prolonged overhead activities/swings, poor posture, or forward head positioning from repetitive mobile device usage. These injuries progress to unrelenting pain conditions, which may be helped temporarily by various therapies, but which often remain unresolved, because many conventional therapies are unable to heal ligament injuries. Tendons and ligaments have difficulty healing as a result of having a poor blood supply. Fortunately, Regenerative Orthopedic therapies, such as Stem Cell Therapy, PRP, and Prolotherapy repair structures like ligaments, tendons, and the rotator cuff, by increasing the blood supply to these structures and by giving the body, which has great reparative capabilities, the boost to heal itself. These regenerative options are a huge piece of the puzzle in helping people get better.\r\nShoulder, neck pain and instability can be successfully addressed with Regenerative Orthopedic techniques. This natural injection therapy strengthens loose and unstable joints and their ligaments and other soft tissue, creating more stable, strong, and pain-free movement in both the neck and the shoulder.','Neck and Shoulder Pain May Be Interconnected','','inherit','closed','closed','','2319-revision-v1','','','2019-06-28 07:23:03','2019-06-28 07:23:03','',2319,'https://www.drfields.com/uncategorized/2319-revision-v1/',0,'revision','',0),(2321,8,'2019-06-28 07:24:56','2019-06-28 07:24:56','<div id=\"kiliminaroimg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-1.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-2.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-3.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-4.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-5.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-6.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-7.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-8.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-9.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-10.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-11.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-1.jpg\">\r\n</div>','Waking up at 15000+ feet','','publish','closed','closed','','waking-up-at-15-000-feet','','','2019-06-28 07:25:30','2019-06-28 07:25:30','',0,'https://www.drfields.com/?page_id=2321',0,'page','',0),(2322,8,'2019-06-28 07:24:56','2019-06-28 07:24:56','','Waking up at 15000+ feet','','inherit','closed','closed','','2321-revision-v1','','','2019-06-28 07:24:56','2019-06-28 07:24:56','',2321,'https://www.drfields.com/uncategorized/2321-revision-v1/',0,'revision','',0),(2323,8,'2019-06-28 07:25:30','2019-06-28 07:25:30','<div id=\"kiliminaroimg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-1.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-2.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-3.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-4.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-5.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-6.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-7.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-8.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-9.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-10.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-11.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-1.jpg\">\r\n</div>','Waking up at 15000+ feet','','inherit','closed','closed','','2321-revision-v1','','','2019-06-28 07:25:30','2019-06-28 07:25:30','',2321,'https://www.drfields.com/uncategorized/2321-revision-v1/',0,'revision','',0),(2324,8,'2019-06-28 07:28:09','2019-06-28 07:28:09','Walking15000+feet (1)','Walking15000+feet (1)','Walking15000+feet (1)','inherit','open','closed','','walking15000feet-1','','','2019-06-28 07:28:10','2019-06-28 07:28:10','',0,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-1.jpg',0,'attachment','image/jpeg',0),(2325,8,'2019-06-28 07:28:10','2019-06-28 07:28:10','Walking15000+feet (2)','Walking15000+feet (2)','Walking15000+feet (2)','inherit','open','closed','','walking15000feet-2','','','2019-06-28 07:28:10','2019-06-28 07:28:10','',0,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-2.jpg',0,'attachment','image/jpeg',0),(2326,8,'2019-06-28 07:28:11','2019-06-28 07:28:11','Walking15000+feet (3)','Walking15000+feet (3)','Walking15000+feet (3)','inherit','open','closed','','walking15000feet-3','','','2019-06-28 07:28:11','2019-06-28 07:28:11','',0,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-3.jpg',0,'attachment','image/jpeg',0),(2327,8,'2019-06-28 07:28:11','2019-06-28 07:28:11','Walking15000+feet (4)','Walking15000+feet (4)','Walking15000+feet (4)','inherit','open','closed','','walking15000feet-4','','','2019-06-28 07:28:11','2019-06-28 07:28:11','',0,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-4.jpg',0,'attachment','image/jpeg',0),(2328,8,'2019-06-28 07:28:12','2019-06-28 07:28:12','Walking15000+feet (5)','Walking15000+feet (5)','Walking15000+feet (5)','inherit','open','closed','','walking15000feet-5','','','2019-06-28 07:28:12','2019-06-28 07:28:12','',0,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-5.jpg',0,'attachment','image/jpeg',0),(2329,8,'2019-06-28 07:28:12','2019-06-28 07:28:12','Walking15000+feet (6)','Walking15000+feet (6)','Walking15000+feet (6)','inherit','open','closed','','walking15000feet-6','','','2019-06-28 07:28:12','2019-06-28 07:28:12','',0,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-6.jpg',0,'attachment','image/jpeg',0),(2330,8,'2019-06-28 07:28:13','2019-06-28 07:28:13','Walking15000+feet (7)','Walking15000+feet (7)','Walking15000+feet (7)','inherit','open','closed','','walking15000feet-7','','','2019-06-28 07:28:13','2019-06-28 07:28:13','',0,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-7.jpg',0,'attachment','image/jpeg',0),(2331,8,'2019-06-28 07:28:13','2019-06-28 07:28:13','Walking15000+feet (8)','Walking15000+feet (8)','Walking15000+feet (8)','inherit','open','closed','','walking15000feet-8','','','2019-06-28 07:28:13','2019-06-28 07:28:13','',0,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-8.jpg',0,'attachment','image/jpeg',0),(2332,8,'2019-06-28 07:28:14','2019-06-28 07:28:14','Walking15000+feet (9)','Walking15000+feet (9)','Walking15000+feet (9)','inherit','open','closed','','walking15000feet-9','','','2019-06-28 07:28:14','2019-06-28 07:28:14','',0,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-9.jpg',0,'attachment','image/jpeg',0),(2333,8,'2019-06-28 07:28:14','2019-06-28 07:28:14','Walking15000+feet (10)','Walking15000+feet (10)','Walking15000+feet (10)','inherit','open','closed','','walking15000feet-10','','','2019-06-28 07:28:14','2019-06-28 07:28:14','',0,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-10.jpg',0,'attachment','image/jpeg',0),(2334,8,'2019-06-28 07:28:15','2019-06-28 07:28:15','Walking15000+feet (11)','Walking15000+feet (11)','Walking15000+feet (11)','inherit','open','closed','','walking15000feet-11','','','2019-06-28 07:28:15','2019-06-28 07:28:15','',0,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-11.jpg',0,'attachment','image/jpeg',0),(2335,8,'2019-06-28 07:31:01','2019-06-28 07:31:01','<div class=\"col-md-8\">\r\n<h2>Non-Surgical Repair of Ligaments and Tendons</h2>\r\nAre you looking for a non-surgical treatment option for your joint injury?\r\n\r\nJoint repair using PRP is an exciting and cutting edge therapy for the stimulation of tissue repair and the regeneration of weakened, torn, or damaged ligaments and tendons.\r\n\r\n<strong>PRP (Platelet Rich Plasma) treatments are effective non-surgical options for joint injury repair.</strong> This non-surgical treatment is a great way for patients to avoid the pain, complications, and recovery time associated with joint surgery.\r\n\r\n<img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" />If you’ve been told by an orthopedic surgeon that <strong>you need surgery</strong> to repair your damaged joint, you may be facing a hospital visit, general anesthesia, risks of complications, weeks or months of limited ability on crutches or in a cast, and <strong>up to a year of recovery and physical therapy</strong> before the surgeon says things might be “normal” again.\r\n\r\nBefore you commit to a surgery that you may regret from the very first day, you should know <strong>that there IS an alternative to joint surgery</strong> that has none of those disadvantages.\r\n<h3>Non-Surgical Repair by Peter A. Fields, MD, DC</h3>\r\n<strong>My name is Dr. Peter A. Fields</strong>, and I am a leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, you do NOT need to have surgery to repair a severely damaged ligament, tendon, labrum, or meniscus and the pain that goes with it.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, non-surgical method of assisting the body to heal injured tendons and ligaments called <strong>Regenerative Orthopedics</strong>. These treatments help your body to regenerate and repair the damage in your joint.\r\n<h3>What is Regenerative Orthopedics?</h3>\r\n<strong>Regenerative Orthopedics</strong> is a treatment that causes an increase in nutrient-rich blood cells in the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. Your own body does the work to grow healthy, strong and vibrant tissue. It’s incredibly effective.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you fix your joint problem and eliminate your pain with…\r\n<ul>\r\n 	<li><strong> NO hospital stay </strong></li>\r\n 	<li><strong> NO general anesthesia </strong></li>\r\n 	<li><strong> NO surgery </strong></li>\r\n 	<li><strong> NO surgical complications </strong></li>\r\n 	<li><strong> NO long recovery </strong></li>\r\n</ul>\r\n<h3>Platelet Rich Plasma for Joint Repair</h3>\r\n<img class=\"size-medium wp-image-4992 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2022/06/PRP.-500x375.jpeg\" alt=\"Prp.\" width=\"500\" height=\"375\" />\r\n\r\n<strong>In certain joint injuries, we recommend PRP.</strong> PRP means “Platelet Rich Plasma”, and the therapy isolates the platelets from your own blood in a centrifuge, and then re-injects this “platelet rich plasma” -- with 7 to 10 times more concentrated growth factors -- where it’s needed. PRP is more effective in these severe situations and typically results in 80% to 85% reduction in joint pain and a similar increase in range of motion. And the results are permanent.\r\n\r\nIn addition to severe tendon and ligament tears, torn meniscus and torn labrum, PRP is also effective with torn achilles tendon, plantar fasciitis, tennis elbow, and a long list of severe sports injuries in any joint.\r\n<h3>Are You A Candidate for PRP?</h3>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-PRP-Repairs-Ligaments-and-Tendons-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for PRP Prolotherapy.\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/vQGBBEARjMk?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">May - Knee - <span style=\"color: #ff0000;\">NEW!</span></p>\r\nAfter a half marathon, May couldn’t even walk back to her car! She avoided surgery by having Prolotherapy and PRP from Dr. Fields, and now she’s back to running half and FULL marathons. “Dr Peter Fields is Awesome.”\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/hA1FVmxWixE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Leonard - Torn meniscus</p>\r\nDr. Leonard is a 61 Year Old Ironman competitor who avoided surgery in both knees with Dr. Fields’ PRP, and he is now back to racing!\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/hmq3WQRNSlk?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christopher - Knee</p>\r\nChristopher, a Pro basketball player, came from China to avoid torn meniscus surgery to receive PRP from Dr. Fields. He is now playing ball again after just 3 treatments.\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/rCf1JO5aNNA?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Tony - Shoulder &amp; Ankle</p>\r\nTony had two shoulder tears years ago that were treated by Dr. Fields, leading to a full recovery. Later, multiple ankle tears caused by ballet and obstacle course racing. Dr. Fields’ PRP got him competing again!\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h5>Will PRP Work For You?</h5>\r\nFind out if you\'re a candidate for PRP and repairing your ligaments and tendons without surgery. Schedule your consultation by calling our office now at [phone] or fill out this form.\r\n\r\n[form]\r\n\r\n</div>','Non-Surgical Repair of Ligaments and Tendons','','publish','closed','closed','','non-surgical-repair-of-ligaments-and-tendons','','','2022-06-05 00:59:16','2022-06-05 00:59:16','',0,'https://www.drfields.com/?page_id=2335',0,'page','',0),(2336,8,'2019-06-28 07:31:01','2019-06-28 07:31:01','<div class=\"col-md-8\">\r\n<h4>How PRP Repairs Severely Torn Ligaments and Tendons Without Surgery</h4>\r\n\r\nAs with almost any injury or condition, some are worse than others...and if you’ve been told that you have <strong>“severely torn” ligaments or tendons</strong>, or even a <strong>torn meniscus or torn labrum</strong>, your injury is in the “worse” category. But you already know that because of the extreme pain you are in.\r\n\r\n<img src=\"https://www.thegeminigeeks.com/server1/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignleft size-full wp-image-1685\" />If you’ve been told by an orthopedic surgeon that <strong>you need surgery</strong> to repair your damaged joint, then you are facing a hospital visit, general anesthesia, risks of complications, weeks or months of limited ability on crutches or in a cast, and <strong>up to a year of recovery and physical therapy</strong> before the surgeon says things might be “normal” again.\r\n\r\nBefore you commit to a surgery that you may regret from the very first day, you should know <strong>that there IS an alternative to joint surgery</strong> that has none of those disadvantages.\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, you do NOT need to have surgery to repair a severely damaged ligament, tendon, labrum, or meniscus and the pain that goes with it.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>. My Prolotherapy treatments help your body make new cells to repair the damage in your joint. And for severe tears injuries like yours, that means PRP Prolotherapy.\r\n\r\n<h4>What is Prolotherapy?</h4>\r\n<strong>>Prolotherapy</strong> is a treatment that causes an increase in nutrient-rich blood cells in the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. Your own body does the work to grow healthy, strong and vibrant tissue. It’s incredibly effective.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you fix your joint problem and eliminate your pain with…\r\n<ul>\r\n 	<li><strong> NO hospital stay </strong></li>\r\n 	<li><strong> NO general anesthesia </strong></li>\r\n 	<li><strong> NO surgery </strong></li>\r\n 	<li><strong> NO surgical complications </strong></li>\r\n 	<li><strong> NO long recovery </strong></li>\r\n</ul>\r\nWhen your injury is mild to moderate, we use Dextrose Prolotherapy. The dextrose formula causes your body to send platelets -- the part of your blood that contains healing growth factors -- to the affected area.\r\n\r\n<h4>What is PRP Prolotherapy?</h4>\r\n<strong>For more severe damage, we use PRP Prolotherapy.</strong> PRP means “Platelet Rich Plasma”, and the therapy isolates the platelets from your own blood in a centrifuge, and then re-injects this “platelet rich plasma” -- with 7 to 10 times more concentrated growth factors -- where it’s needed. PRP is more effective in these severe situations and typically results in 80% to 85% reduction in joint pain and a similar increase in range of motion. And the results are permanent.\r\n\r\nIn addition to severe tendon and ligament tears, torn meniscus and torn labrum, PRP is also effective with torn achilles tendon, plantar fasciitis, tennis elbow, and a long list of severe sports injuries in any joint.\r\n\r\n<h4>Are You A Candidate for PRP Prolotherapy?</h4>\r\n\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-PRP-Repairs-Ligaments-and-Tendons-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:4243256695\">424-325-6695</a> and set up a consultation to find out if you are a candidate for PRP Prolotherapy.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/vQGBBEARjMk?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> May - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>After a half marathon, May couldn’t even walk back to her car! She avoided surgery by having Prolotherapy and PRP from Dr. Fields, and now she’s back to running half and FULL marathons. “Dr Peter Fields is Awesome.”</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/hA1FVmxWixE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Leonard - Torn meniscus</p>\r\n<p>Dr. Leonard is a 61 Year Old Ironman competitor who avoided surgery in both knees with Dr. Fields’ PRP, and he is now back to racing!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/hmq3WQRNSlk?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Christopher - Knee</p>\r\n<p>Christopher, a Pro basketball player, came from China to avoid torn meniscus surgery to receive PRP from Dr. Fields. He is now playing ball again after just 3 treatments.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/rCf1JO5aNNA?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Tony - Shoulder &amp; Ankle</p>\r\n<p>Tony had two shoulder tears years ago that were treated by Dr. Fields, leading to a full recovery. Later, multiple ankle tears caused by ballet and obstacle course racing. Dr. Fields’ PRP got him competing again!</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will PRP Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for PRP and repairing your ligaments and tendons without surgery. Schedule your consultation by calling our office now at 424-325-6695 or fill out this form.\r\n\r\n[contact-form-7 id=\"1696\" title=\"Consulation form\"]\r\n</div>','How PRP Repairs Ligaments and Tendons Without Surgery','','inherit','closed','closed','','2335-revision-v1','','','2019-06-28 07:31:01','2019-06-28 07:31:01','',2335,'https://www.drfields.com/uncategorized/2335-revision-v1/',0,'revision','',0),(2337,8,'2019-06-28 07:32:24','2019-06-28 07:32:24','Stem Cell Doctor Peter Fields Md Dc','Stem Cell Doctor Peter Fields Md Dc','Stem Cell Doctor Peter Fields Md Dc','inherit','open','closed','','stem-cell-doctor-peter-fields-md-dc-2','','','2020-07-10 21:15:43','2020-07-10 21:15:43','',1436,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg',0,'attachment','image/jpeg',0),(2338,8,'2019-06-28 07:32:43','2019-06-28 07:32:43','<div class=\"col-md-8\">\r\n<h4>How PRP Repairs Severely Torn Ligaments and Tendons Without Surgery</h4>\r\n\r\nAs with almost any injury or condition, some are worse than others...and if you’ve been told that you have <strong>“severely torn” ligaments or tendons</strong>, or even a <strong>torn meniscus or torn labrum</strong>, your injury is in the “worse” category. But you already know that because of the extreme pain you are in.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignleft size-full wp-image-1685\" />If you’ve been told by an orthopedic surgeon that <strong>you need surgery</strong> to repair your damaged joint, then you are facing a hospital visit, general anesthesia, risks of complications, weeks or months of limited ability on crutches or in a cast, and <strong>up to a year of recovery and physical therapy</strong> before the surgeon says things might be “normal” again.\r\n\r\nBefore you commit to a surgery that you may regret from the very first day, you should know <strong>that there IS an alternative to joint surgery</strong> that has none of those disadvantages.\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, you do NOT need to have surgery to repair a severely damaged ligament, tendon, labrum, or meniscus and the pain that goes with it.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>. My Prolotherapy treatments help your body make new cells to repair the damage in your joint. And for severe tears injuries like yours, that means PRP Prolotherapy.\r\n\r\n<h4>What is Prolotherapy?</h4>\r\n<strong>>Prolotherapy</strong> is a treatment that causes an increase in nutrient-rich blood cells in the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. Your own body does the work to grow healthy, strong and vibrant tissue. It’s incredibly effective.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you fix your joint problem and eliminate your pain with…\r\n<ul>\r\n 	<li><strong> NO hospital stay </strong></li>\r\n 	<li><strong> NO general anesthesia </strong></li>\r\n 	<li><strong> NO surgery </strong></li>\r\n 	<li><strong> NO surgical complications </strong></li>\r\n 	<li><strong> NO long recovery </strong></li>\r\n</ul>\r\nWhen your injury is mild to moderate, we use Dextrose Prolotherapy. The dextrose formula causes your body to send platelets -- the part of your blood that contains healing growth factors -- to the affected area.\r\n\r\n<h4>What is PRP Prolotherapy?</h4>\r\n<strong>For more severe damage, we use PRP Prolotherapy.</strong> PRP means “Platelet Rich Plasma”, and the therapy isolates the platelets from your own blood in a centrifuge, and then re-injects this “platelet rich plasma” -- with 7 to 10 times more concentrated growth factors -- where it’s needed. PRP is more effective in these severe situations and typically results in 80% to 85% reduction in joint pain and a similar increase in range of motion. And the results are permanent.\r\n\r\nIn addition to severe tendon and ligament tears, torn meniscus and torn labrum, PRP is also effective with torn achilles tendon, plantar fasciitis, tennis elbow, and a long list of severe sports injuries in any joint.\r\n\r\n<h4>Are You A Candidate for PRP Prolotherapy?</h4>\r\n\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-PRP-Repairs-Ligaments-and-Tendons-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:4243256695\">424-325-6695</a> and set up a consultation to find out if you are a candidate for PRP Prolotherapy.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/vQGBBEARjMk?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> May - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>After a half marathon, May couldn’t even walk back to her car! She avoided surgery by having Prolotherapy and PRP from Dr. Fields, and now she’s back to running half and FULL marathons. “Dr Peter Fields is Awesome.”</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/hA1FVmxWixE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Leonard - Torn meniscus</p>\r\n<p>Dr. Leonard is a 61 Year Old Ironman competitor who avoided surgery in both knees with Dr. Fields’ PRP, and he is now back to racing!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/hmq3WQRNSlk?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Christopher - Knee</p>\r\n<p>Christopher, a Pro basketball player, came from China to avoid torn meniscus surgery to receive PRP from Dr. Fields. He is now playing ball again after just 3 treatments.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/rCf1JO5aNNA?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Tony - Shoulder &amp; Ankle</p>\r\n<p>Tony had two shoulder tears years ago that were treated by Dr. Fields, leading to a full recovery. Later, multiple ankle tears caused by ballet and obstacle course racing. Dr. Fields’ PRP got him competing again!</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will PRP Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for PRP and repairing your ligaments and tendons without surgery. Schedule your consultation by calling our office now at 424-325-6695 or fill out this form.\r\n\r\n[contact-form-7 id=\"1696\" title=\"Consulation form\"]\r\n</div>','How PRP Repairs Ligaments and Tendons Without Surgery','','inherit','closed','closed','','2335-revision-v1','','','2019-06-28 07:32:43','2019-06-28 07:32:43','',2335,'https://www.drfields.com/uncategorized/2335-revision-v1/',0,'revision','',0),(2339,8,'2019-06-28 07:37:29','2019-06-28 07:37:29','<div class=\"col-md-8\">\r\n<h4>How To Avoid Joint Replacement Surgery With Stem Cell Treatments</h4>\r\nHas your doctor told you that you have <strong>worn cartilage or no cartilage?</strong> That you have <strong>bone-on-bone</strong> in your joints? That you have <strong>arthritis</strong>? Or that you have<strong> torn or damaged tissue</strong> in your joints?\r\n\r\nMore to the point, has your doctor told you that you need to have your joint replaced? \r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignleft size-full wp-image-1685\" /> Every year, over 20 million people are told that the only solution to their joint pain -- whether it’s in their knee, hip, shoulder, or other joint -- can only be treated with a total joint replacement.\r\n\r\nAnd if you are like most people, <strong>you are scared</strong> at the idea of someone cutting out your joint and replacing it with an artificial one. \r\n\r\nI would be, too. \r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. \r\n\r\nAnd I’m here to tell you that in many cases, you do NOT need to have your joint replaced in order to be able to walk, run, lift, stand, sit, dance, raise your arms, play sports, or whatever it is that you currently cannot do. \r\n\r\nMy treatments have helped thousands of people <strong>resume their normal lives without joint replacement surgery,</strong> and there’s a very good chance that I can do the same for you.\r\n\r\nCall my office today at <a href=\"tel:+[phone_raw]\">[phone]</a>\r\n or <a href=\"https://www.thegeminigeeks.com/server1/contact\" >fill out the contact form</a> on this page and <strong>we will call you.</strong>\r\n\r\n\r\n<h4>Why Avoid Joint Replacement Surgery?</h4>\r\n\r\nThe best reason for avoiding joint replacement surgery is that you probably don’t need it in the first place. Arthritis.org reported that one third of total knee replacement surgeries were “inappropriate”. And many other joint replacements were done when the damage was only “mild or moderate.”\r\n\r\nAnd if you do have a total knee replacement, hip replacement, shoulder replacement or some other major orthopedic surgery, you are going to end up with a minimum of three months to a full year trying to recover.\r\n\r\nPlus you avoid any of the common complications of orthopedic surgery, including infection, bleeding into the joint, blood clots, complications from general anesthesia or implant failure.\r\n\r\n<h4>Stem Cell Treatment Restores Movement Without Surgery</h4>\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/regenerative-techniques/stem-cell-treatment\">My Gold Standard Stem Cell treatments</a> may help you avoid joint replacement surgery and all its complications. Plus, there is minimal recovery time because there is NO surgery, NO hospital, and NO general anesthesia. \r\n\r\nThe treatment is effective for patients diagnosed with arthritis, torn meniscus, labral tear, rotator cuff injury, torn or worn cartilage, and any other conditions which cause you to have a bone-on-bone condition or were told to have joint replacement surgery.\r\n\r\nWatch any of the video testimonials on this page, just to see how thankful my patients are to avoid joint replacement surgery.\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.thegeminigeeks.com/server1/contact\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/quj4K0wbfu4?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jerry - Stem Cell Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Jerry tore his meniscus a second time. Doctor prescribed a knee replacement, but after Stem Cell treatment is now playing softball again!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/NSQ6NTv4E7Q?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeff - Stem Cell Shoulder</p>\r\n<p>Had “tremendous” shoulder pain. Couldn’t sleep, sit up, lay on his side. His surgeon said “Just live with it!” So he traveled from his New Mexico home to see Dr. Peter Fields. See how he is now!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/MMQf25t2YVw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Priscilla - Stem Cell Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Prescilla, a Torn Meniscus and Arthritis patient, was told she had to have knee replacement surgery. She couldn’t stand for any length of time. Now she can walk, skip, and ride a bike! Listen to her story.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/YoXRC87KNuM?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Robert C. - Stem Cell Knee</p>\r\n<p>Used to be very active but now couldn’t walk. Now he is active again: already walking, surfing, and soon will be skiing again!</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/IajO8GpFeng?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Mary - Stem Cell Hip</p>\r\n<p>Couldn’t sleep or walk. Was told she needed hip replacement surgery. She saw Dr. Fields and can now walk and do ballet!</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will Stem Cell Treatments Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for Stem Cell Treatments so that you can avoid joint replacement surgery. Schedule your consultation by calling our office now a <a href=\"tel:+[phone_raw]\">[phone]</a> or fill out this form.\r\n\r\n[contact-form-7 id=\"1696\" title=\"Consulation form\"]\r\n</div>','Alternative to Joint Replacement Surgery','','publish','closed','closed','','alternative-to-joint-replacement-surgery','','','2019-10-18 09:01:34','2019-10-18 09:01:34','',0,'https://www.drfields.com/?page_id=2339',0,'page','',0),(2340,8,'2019-06-28 07:37:29','2019-06-28 07:37:29','<div class=\"col-md-8\">\r\n<h4>How To Avoid Joint Replacement Surgery With Stem Cell Treatments</h4>\r\nHas your doctor told you that you have <strong>worn cartilage or no cartilage?</strong> That you have <strong>bone-on-bone</strong> in your joints? That you have <strong>arthritis</strong>? Or that you have<strong> torn or damaged tissue</strong> in your joints?\r\n\r\nMore to the point, has your doctor told you that you need to have your joint replaced? \r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignleft size-full wp-image-1685\" /> Every year, over 20 million people are told that the only solution to their joint pain -- whether it’s in their knee, hip, shoulder, or other joint -- can only be treated with a total joint replacement.\r\n\r\nAnd if you are like most people, <strong>you are scared</strong> at the idea of someone cutting out your joint and replacing it with an artificial one. \r\n\r\nI would be, too. \r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. \r\n\r\nAnd I’m here to tell you that in many cases, you do NOT need to have your joint replaced in order to be able to walk, run, lift, stand, sit, dance, raise your arms, play sports, or whatever it is that you currently cannot do. \r\n\r\nMy treatments have helped thousands of people <strong>resume their normal lives without joint replacement surgery,</strong> and there’s a very good chance that I can do the same for you.\r\n\r\nCall my office today at <a href=\"tel:+1-310-455-8242\" >1-310-455-8242</a> or <a href=\"https://www.thegeminigeeks.com/server1/contact\" >fill out the contact form</a> on this page and <strong>we will call you.</strong>\r\n\r\n\r\n<h4>Why Avoid Joint Replacement Surgery?</h4>\r\n\r\nThe best reason for avoiding joint replacement surgery is that you probably don’t need it in the first place. Arthritis.org reported that one third of total knee replacement surgeries were “inappropriate”. And many other joint replacements were done when the damage was only “mild or moderate.”\r\n\r\nAnd if you do have a total knee replacement, hip replacement, shoulder replacement or some other major orthopedic surgery, you are going to end up with a minimum of three months to a full year trying to recover.\r\n\r\nPlus you avoid any of the common complications of orthopedic surgery, including infection, bleeding into the joint, blood clots, complications from general anesthesia or implant failure.\r\n\r\n<h4>Stem Cell Treatment Restores Movement Without Surgery</h4>\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/regenerative-techniques/stem-cell-treatment\">My Gold Standard Stem Cell treatments</a> may help you avoid joint replacement surgery and all its complications. Plus, there is minimal recovery time because there is NO surgery, NO hospital, and NO general anesthesia. \r\n\r\nThe treatment is effective for patients diagnosed with arthritis, torn meniscus, labral tear, rotator cuff injury, torn or worn cartilage, and any other conditions which cause you to have a bone-on-bone condition or were told to have joint replacement surgery.\r\n\r\nWatch any of the video testimonials on this page, just to see how thankful my patients are to avoid joint replacement surgery.\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.thegeminigeeks.com/server1/contact\">Contact my office today</a> or call me at <a href=\"tel:310-455-8242\">310-455-8242</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/quj4K0wbfu4?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jerry - Stem Cell Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Jerry tore his meniscus a second time. Doctor prescribed a knee replacement, but after Stem Cell treatment is now playing softball again!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/NSQ6NTv4E7Q?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeff - Stem Cell Shoulder</p>\r\n<p>Had “tremendous” shoulder pain. Couldn’t sleep, sit up, lay on his side. His surgeon said “Just live with it!” So he traveled from his New Mexico home to see Dr. Peter Fields. See how he is now!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/MMQf25t2YVw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Priscilla - Stem Cell Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Prescilla, a Torn Meniscus and Arthritis patient, was told she had to have knee replacement surgery. She couldn’t stand for any length of time. Now she can walk, skip, and ride a bike! Listen to her story.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/YoXRC87KNuM?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Robert C. - Stem Cell Knee</p>\r\n<p>Used to be very active but now couldn’t walk. Now he is active again: already walking, surfing, and soon will be skiing again!</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/IajO8GpFeng?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Mary - Stem Cell Hip</p>\r\n<p>Couldn’t sleep or walk. Was told she needed hip replacement surgery. She saw Dr. Fields and can now walk and do ballet!</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will Stem Cell Treatments Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for Stem Cell Treatments so that you can avoid joint replacement surgery. Schedule your consultation by calling our office now a <a href=\"tel:1-310-455-8242\"><strong>310-455-8242</strong></a>or fill out this form.\r\n\r\n[contact-form-7 id=\"1696\" title=\"Consulation form\"]\r\n</div>','Alternative to Joint Replacement Surgery','','inherit','closed','closed','','2339-revision-v1','','','2019-06-28 07:37:29','2019-06-28 07:37:29','',2339,'https://www.drfields.com/uncategorized/2339-revision-v1/',0,'revision','',0),(2343,8,'2019-06-28 08:11:54','2019-06-28 08:11:54','Dr Fields Fix Your Joints Banner','Dr Fields Fix Your Joints Banner','Dr Fields Fix Your Joints Banner','inherit','open','closed','','dr-fields-fix-your-joints-banner','','','2019-06-28 08:11:54','2019-06-28 08:11:54','',0,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-Fix-Your-Joints-Banner.jpg',0,'attachment','image/jpeg',0),(2344,8,'2019-06-28 08:11:56','2019-06-28 08:11:56','Cca Cal Chiro Logo','Cca Cal Chiro Logo','Cca Cal Chiro Logo','inherit','open','closed','','cca-cal-chiro-logo','','','2019-06-28 08:11:56','2019-06-28 08:11:56','',0,'https://www.drfields.com/wp-content/uploads/2019/06/CCA-Cal-Chiro-Logo.jpg',0,'attachment','image/jpeg',0),(2345,8,'2019-06-28 08:14:04','2019-06-28 08:14:04','[caption id=\"attachment_4112\" align=\"alignright\" width=\"526\"]<img class=\"wp-image-4112\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.-500x500.png\" alt=\"Joint Replacement Alternative\" width=\"526\" height=\"526\" /> <strong>              Avoid Joint Replacement With Stem Cell Therapy </strong>[/caption]\r\n<h3>Joint Replacement Is On the Rise</h3>\r\nJoint replacements are on the rise. They have increased so much that, in the last ten years, knee replacements have more than doubled and hip replacements more than tripled. <sup>i</sup> As life expectancy increases, this number will continue to go up.\r\n\r\nArthritis is the most common cause of chronic knee and hip pain, and this condition eventually leads to joint replacement.\r\n<h4>Traditional Therapies for Joint Pain</h4>\r\nThe goal of traditional therapies is to decrease pain and improve function. Treatments, such as weight loss, exercise, physiotherapy, bracing, and orthotics, may help temporarily. But they are unfortunately unable to actually repair the joint instability or the source of pain.\r\n\r\nThe increased mechanical stress caused by injury to the ligaments, meniscus, labrum, and other joint structures, changes the way the joint functions. And that makes the joint unstable and even more susceptible to further soft tissue injury.\r\n<h4>What Is the Result of Joint Instability Left Unrepaired?</h4>\r\nWhen left unrepaired, the long-lasting effect of continual joint instability is arthritis. Again, many conventional treatments do not last in providing pain relief because they fail to repair the instability. And they are also unable to prevent the eventual joint replacement. The road to arthritis, and the ensuing joint replacement, can only be remedied when the problem of joint instability is addressed.\r\n\r\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are conservative, non-surgical therapies generally recommended initially for pain alleviation. And although steroid injections and NSAIDs have been shown to be effective in decreasing inflammation and pain short-term, they do not reverse the disease.\r\n\r\nBut they do inhibit the properties of healing. And that\'s important to realize! For this reason, their use is cautioned in those who have joint injuries and arthritis. Interestingly, NSAIDs and corticosteroids have no beneficial effect on articular cartilage in arthritis. But instead, they accelerate the very disease for which they are most often used and prescribed. And they are a catalyst towards joint replacement.\r\n<h4>Did Researchers Just Find Out That Corticosteroids, Like Cortisone, Are Bad for Soft Tissue Healing?</h4>\r\nIt is interesting to point out that not long after doctors started injecting cortisone and other steroids into joints way back in the 1950s, reports of terrible joint diseases were already surfacing. And even back then, their intra-articular use was discouraged. Corticosteroid injections accelerate cartilage degeneration and joint destruction. Today, despite the dangers, cortisone use is widespread and has become the standard of care.\r\n\r\nWhat about the popular use of hyaluronic acid injections for joint pain? Unfortunately, those who do find some pain relief from hyaluronic acid, generally only experience short-term results. The use of hyaluronic acid injections, like Synvisc, are frequently designed to delay the inevitable joint replacement. Even the seemingly harmless RICE (rest, ice, compression and elevation) protocol has been rescinded by its author due to its detrimental effect on healing.\r\n<h4>Does Arthroscopic Surgery Prevent Joint Replacement?</h4>\r\nAn attempt to eliminate pain or a painful area by the arthroscopic shaving, cutting, or removal of tissue will only delay the pain for a few years until the remaining tissue becomes degenerated. And arthroscopy is a direct assault to the joint tissue. Arthroscopy, like the aforementioned treatments, may give some temporary relief of symptoms. But in the long-term, they will destabilize the joint and boost degeneration.\r\n\r\nIn the long-run, these surgeries can lead to even more surgeries and the eventual joint replacement. Athletes, who have surgical repair of injuries, like an ACL tear for example, have a low rate of return to sport, and a high rate of new injury. Surgery makes joint instability worse, not better.\r\n\r\nMany surgeries such as labral repair and ACL reconstruction can provide remarkable short-term pain relief. However, the replacement material will not function long-term like the original. And ACL grafts and labral repairs with titanium tacks just do not have the same pliability as the original tissue. They cannot restore the joint back to normal. Eventually, they will cause problems.\r\n\r\nThe athlete or any joint pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or corticosteroid injection, the risk of developing long-term arthritis and the eventual joint replacement is greatly increased. The key to keeping the joint strong is to stimulate the area to heal.\r\n<h4>Regenerative Orthopedics Using Stem Cell Treatment Repairs the Joint</h4>\r\nRegenerative Orthopedics stimulates healing and repairs the joint, rather than interfering with the normal healing process of the body. At OrthoRegen<sup>®</sup>, we use the Gold Standard in Regenerative Orthopedics. And we use Stem Cells from bone marrow and from fat. Both are excellent sources of Stem Cells.\r\n\r\nPRP is then used to stimulate the growth of these Stem Cells and to repair the ligaments inside of the joint. The remaining Stem Cells that are left over are used along with Prolotherapy to treat the outside of the joint. That\'s where there are many tendons and ligaments that control the joint and keep it stabilized. All of this is known as the Gold Standard in Stem Cell treatment, and is the only procedure we use at OrthoRegen<sup>®</sup>.\r\n<h4>Types of Regenerative Orthopedics</h4>\r\nStem Cell treatments, PRP and Prolotherapy, are all types of Regenerative Orthopedics. And they are all effective at stimulating the normal reparative mechanisms of the body, laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee, hip and shoulder labrum, and boosting the cartilage growth.\r\n\r\nThese treatments work to reduce the chance of long-term arthritis and the eventual joint replacement. Stem Cells, along with PRP and Prolotherapy, offer hope to those suffering from various types of joint pain and trying to avoid joint replacement.\r\n\r\nWhile surgery is necessary in a small percentage of patients, non-surgical regenerative therapies should be first-line, conservative treatments tried prior to surgery. The Gold Standard of Regenerative Orthopedics is effective even after surgery, when continued pain is experienced or for arthritis that was accelerated due to the surgery.\r\n\r\nKeep in mind that once surgery is done it cannot be undone!\r\n\r\n<hr />\r\n\r\n[i] Kim, S. Changes in surgical loads and economic burden of hip and knee replacements in the US: 1997–2004. Arthritis &amp; Rheumatism,2008: 59: 481–488. doi:10.1002/art.23525','Joint Replacement: What\'s the Alternative?','','publish','open','closed','','stem-cell-treatment-an-alternative-to-joint-replacement','','','2020-09-11 01:45:53','2020-09-11 01:45:53','',0,'https://www.drfields.com/?p=2345',0,'post','',0),(2346,8,'2019-06-28 08:14:04','2019-06-28 08:14:04','Joint replacements are on the rise. They have increased so much that, in the last ten years, knee replacements have more than doubled and hip replacements more than tripled. <sup>i</sup> As life expectancy increases, this number will continue to go up. Arthritis is the most common cause of chronic knee and hip pain, and this condition eventually leads to joint replacement. Other causes of knee and hip pain include bursitis, tendonitis, sports injuries, chondromalacia patellae, ligament injury, meniscal injury, hip impingement, and labral injury, all of which often lead to an eventual surgical recommendation or joint replacement intervention.\r\n\r\n<h4>Traditional Therapies for Joint Pain</h4>\r\nThe goal of traditional therapies is to decrease pain and improve function. Treatments, such as weight loss, exercise, physiotherapy, bracing, and orthotics, may help temporarily, but are unfortunately unable to actually repair the joint instability or source of the pain. The increased mechanical stress caused by injury to the ligaments, meniscus, labrum, etc. changes the way the joint functions and makes the joint unstable and even more susceptible to further soft tissue injury.\r\n\r\nWhat is the result? When left unrepaired, the long-lasting effect of continual joint instability is arthritis. Again, many conventional treatments do not last in providing pain relief because they fail to repair the instability. They are also unable to prevent the eventual joint replacement. The road to arthritis, and the ensuing joint replacement, can only be remedied when the problem of joint instability is addressed.\r\n\r\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are conservative, non-surgical therapies generally recommended initially for pain alleviation. Although steroid injections and NSAIDs have been shown to be effective in decreasing inflammation and pain short-term, they do not reverse the disease, but rather inhibit the properties of healing. For this reason, their use is cautioned in those who have joint injuries and arthritis. Interestingly, NSAIDs and corticosteroids have no beneficial effect on articular cartilage in arthritis, but rather accelerate the very disease for which they are most often used and prescribed, and are a catalyst towards joint replacement.\r\n\r\nIt is interesting to point out that not long after doctors started injecting cortisone and other steroids into joints way back in the 1950s, reports of terrible joint diseases were already surfacing, and even back then, their intra-articular use was discouraged. Corticosteroid injections accelerate cartilage degeneration and joint destruction. Today, despite the dangers, cortisone use is widespread and has become the standard of care.\r\n\r\nWhat about the popular use of hyaluronic acid injections for joint pain? Unfortunately, those who do find some pain relief from hyaluronic acid, generally only experience short-term results, which are frequently designed to delay the inevitable joint replacement. Even the seemingly harmless RICE (rest, ice, compression and elevation) protocol has been rescinded by its author due to its detrimental effect on healing.\r\n\r\n<h4>Does Arthroscopic Surgery Prevent Joint Replacement?</h4>\r\nAn attempt to eliminate pain or a painful area by the arthroscopic shaving, cutting, or removal of tissue will only delay the pain for a few years until the remaining tissue becomes degenerated. Arthroscopy is a direct assault to the joint tissue. Arthroscopy, like the aforementioned treatments, may give some temporary relief of symptoms, but in the long-term, will destabilize the joint and boost degeneration. In the long-run, these surgeries can lead to even more surgeries and the eventual joint replacement. Athletes, who have surgical repair of injuries, like an ACL tear for example, have a low rate of return to sport, and a high rate of new injury. Surgery makes joint instability worse, not better.\r\n\r\nMany surgeries such as labral repair and ACL reconstruction can provide remarkable short-term pain relief. However, the replacement material will not function long-term like the original. ACL grafts and labral repairs with titanium tacks just do not have the same pliability as the original tissue and cannot restore the joint back to normal. Eventually, they will cause problems. The athlete or any joint pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or corticosteroid injection, the risk of developing long-term arthritis and the eventual joint replacement is greatly increased. The key to keeping the joint strong is to stimulate the area to heal.\r\n\r\n<h4>Regenerative Orthopedics Using Stem Cells Repairs the Joint</h4>\r\nRegenerative Orthopedics stimulates healing and repairs the joint, rather than interfering with the normal healing process of the body. At OrthoRegen, we use the Gold Standard in Regenerative Orthopedics.  We use Stem Cells from bone marrow and from fat.  Both are excellent sources of Stem Cells.  PRP is then used to stimulate the growth of these Stem Cells and to repair the ligaments inside of the joint.  The remaining Stem Cells that are left over are used along with Prolotherapy to treat the outside of the joint, where there are many tendons and ligaments that control the joint and keep it stabilized. All of this is known as the Gold Standard in Stem Cell treatment, and is the only procedure we use at OrthoRegen.\r\n\r\nStem Cell treatments, PRP and Prolotherapy, are types of Regenerative Orthopedics. They are all effective at stimulating the normal reparative mechanisms of the body, laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee, hip and shoulder labrum, and boosting the cartilage growth. They work to reduce the chance of long-term arthritis and joint replacement. Stem Cells, along with PRP and Prolotherapy, offer hope to those suffering from various types of joint pain and trying to avoid joint replacement.\r\n\r\nWhile surgery is necessary in a small percentage of patients, non-surgical regenerative therapies should be first-line, conservative treatments tried prior to surgery.  The Gold Standard of Regenerative Orthopedics is effective even after surgery, when continued pain is experienced or for arthritis that was accelerated due to the surgery.\r\n\r\nOnce surgery is done it cannot be undone!\r\n\r\n<hr />\r\n\r\n[i] Kim, S. Changes in surgical loads and economic burden of hip and knee replacements in the US: 1997–2004. Arthritis &amp; Rheumatism,2008: 59: 481–488. doi:10.1002/art.23525\r\n','Stem Cell Treatment An Alternative to Joint Replacement','','inherit','closed','closed','','2345-revision-v1','','','2019-06-28 08:14:04','2019-06-28 08:14:04','',2345,'https://www.drfields.com/uncategorized/2345-revision-v1/',0,'revision','',0),(2347,8,'2019-06-28 08:15:07','2019-06-28 08:15:07','<h2>Knee Arthritis Treatment That Gets Rid of Pain at the Source</h2>\r\n[caption id=\"attachment_4729\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4729\" src=\"https://www.drfields.com/wp-content/uploads/2021/06/knee-arthritis-500x500.jpg\" alt=\"Knee Arthritis\" width=\"500\" height=\"500\" /> <strong>               Effective Non-Surgical Knee Arthritis Treatment</strong>[/caption]\r\n\r\nWe treat a lot of knees at our clinic. Part of the reason is that knee injuries are so prevalent. Another reason is that quite often, the other treatments patients receive only provide temporary relief.\r\n\r\nWhen an injury is left untreated or when the treatment fails to adequately repair an injury, the knee becomes unstable. The instability sets the knee up for a cycle of abnormal joint motion. And that promotes knee degeneration which destroys the joint over time. The result? The knee is set up for the development of arthritis.\r\n\r\nIf you already have arthritis in your knee, we can help. Even if surgery has been recommended due to the advanced nature of your arthritis, there is a good chance we can help. Studies have shown the effectiveness of this non-surgical Stem Cell Therapy to treat knee arthritis. 1,2\r\n\r\nIf you have injured your meniscus or ACL, Regenerative Orthopedics is also an effective therapy capable of repairing the injury and stopping the cycle that leads to arthritis.\r\n\r\n<strong>And...Regenerative Orthopedics is also an ideal treatment for anyone looking to avoid knee replacement!</strong>\r\n<h3>The Healthy Knee vs. An Injured Knee</h3>\r\nLet\'s talk a bit about our knees. The knee is the largest joint in the body and one of the more complex joints. To accomplish all of the tasks the knee needs to do, many forces and stressors are placed on it.\r\n\r\nA healthy knee moves smoothly during walking activities. And it also moves smoothly when running, jumping, and turning. One of the most important keys to a healthy knee is maintaining stability in response to the forces placed upon it. When any part of the knee joint is injured, such as the bony configuration, muscles, menisci, joint capsule, or ligaments, the whole stability of the knee is disrupted. And that causes symptoms and pain!\r\n\r\nWhen knee injury does occur, Regenerative Orthopedics can stop the disruption and stabilize the knee again. The treatment does this by promoting the healing of unstable and weakened ligaments and other injured joint structures. The result is the elimination of pain associated with knee conditions caused by abnormal joint motion.\r\n<h3>What About Knee Arthritis Treatment?</h3>\r\nKnee pain is one of the most common reasons people seek out medical help. And knee osteoarthritis is a primary player. Arthritis impairs the mobility and activity level of those who suffer from it. If you suffer from it, you sure know the effect it has on your life.\r\n\r\nThe prevalence of knee pain increases with age and is affected by lifestyle factors, such as obesity and lack of exercise. People living with Arthritis deal with chronic pain, joint stiffness, structural damage, and the progressive loss of cartilage. The condition can be disabling.\r\n\r\n<strong>But did you know the pain of arthritis does not come from the cartilage?</strong> Even though cartilage loss plays a central role in arthritis, it is not the source of pain. How can that be? It\'s because cartilage tissue does not contain nerve fibers.\r\n<h5><em>Nerve Fibers and Pain</em></h5>\r\nThe tissues containing many nerve fibers include the ligaments, tendons, meniscus, joint capsule, synovium, and periosteum. Arthritis pain is due to injury to these types of tissue. Since soft tissue is mainly responsible for the smooth movement of the knee joint, when abnormal forces are placed on them, injury occurs that disrupts the balance between normal motion and instability. This is where the painful process begins.\r\n\r\n<strong>The nerve endings that cause pain are also present where the ligaments and tendons insert into the bone, and this area can become a source of ongoing knee pain. Regenerative Orthopedic treatments are often directed at these sites. And as such, they are recognized as one of the most effective non-surgical therapies to treat knee pain.</strong>\r\n<h5><em>Ligaments And Pain</em></h5>\r\nLigaments play a crucial role in the stability of the knee because they guide the motion of the knee joints and restrain excessive motion to prevent dislocation. Ligament injuries are also the most common form of a knee injury. Ligament injury then upsets and disrupts the balance in the motion of the knee joint.\r\n\r\nInjuries that result in ligament damage also commonly result in injury to other knee structures, such as the meniscus, tendons, and cartilage. As mentioned, these injuries can eventually lead to arthritis, which can transpire within a few years with severe injuries or possibly over decades if the injury is less severe.\r\n<h3>Regenerative Orthopedic Treatments Heal the Soft Tissue Injuries</h3>\r\n[caption id=\"attachment_4734\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4734 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/06/Stem.Joint_.KW_-500x375.jpeg\" alt=\"Stem.joint.kw\" width=\"500\" height=\"375\" /> <strong>Non-Surgical Knee Arthritis Treatment &amp; Articular Defect Repair</strong>[/caption]\r\n\r\nAlthough many treatments may offer temporary pain relief, it is important to find a treatment that does more than chase the symptoms. And actual repair of the injured soft tissue is vital to restore normal motion to the knee joint.\r\n\r\nRegenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy, are effective therapies that do just that. These treatments stimulate healing of ligaments, tendons, and menisci and restore normal functioning of the knee joint, thus preventing the arthritic progression. In more advanced cases, the Gold Standard in Stem Cell Therapy can be used to promote the regeneration of articular cartilage.\r\n\r\nRegenerative Orthopedic treatments target and repair the structures generating the pain in knee arthritis, effectively resolving the pain. And Regenerative Orthopedic treatments give hope to arthritis sufferers because they provide not only pain relief but also joint repair, resulting in improved function and a better quality of life.\r\n\r\nStem Cell Therapy is an effective knee arthritis treatment as well as an articular cartilage defect repair.3 If you are suffering from knee arthritis pain, a knee injury, or even an articular cartilage defect, call us today. We\'d love to help you get back to doing what you love.\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Hamoud Al Faqeh, Bin Mohamed Yahya N H, Hui Cheng C, Bin Saim A, BtHj I R (2012) The potential of intra-articular injection of chondrogenic- induced bone marrow stem cells to retard the progression of osteoarthritis in a sheep model, Experimental Gerontology 47: 458- 464.</li>\r\n 	<li>Eslaminejad M B, Poor E M (2014) Mesenchymal stem cells as a potent cell source for articular cartilage regeneration. World J Stem Cells 6: 344- 354.</li>\r\n 	<li>\r\n<div class=\"page\" title=\"Page 12\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nHeba M Arakeep, et al. <a href=\"https://opastonline.com/wp-content/uploads/2019/01/repair-of-articular-cartilage-defects-using-bone-marrow-derived-mesenchymal-stem-cells-in-rabbits-scri-19.pdf\">Repair of Articular Cartilage Defects using Bone Marrow-Derived Mesenchymal Stem Cells in Rabbits</a>. Stem Cell Res Int (2019).  3: ( 1 ) 1 -12.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 11\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\"></div>\r\n</div>\r\n</div></li>\r\n</ol>','Knee Arthritis Treatment That Gets Rid of Pain at the Source','','publish','closed','closed','','knee-arthritis-treatment-that-get-srid-of-pain-at-the-source','','','2021-06-16 23:39:59','2021-06-16 23:39:59','',0,'https://www.drfields.com/?page_id=2347',0,'page','',0),(2348,8,'2019-06-28 08:15:07','2019-06-28 08:15:07','We treat a lot of knees at our clinic. Part of the reason is because knee injuries are so prevalent. Another reason is that quite often the other treatments patients receive, only provide temporary relief. When an injury is left untreated or when the treatment fails to adequately repair an injury, the knee becomes unstable. The instability sets the knee up for a cycle of abnormal joint motion, which promotes knee degeneration and destroys the joint over time, setting the knee up for the development of arthritis. If you already have arthritis in your knee, we can help. If you have injured your meniscus or ACL, Regenerative Orthopedics is an effective therapy capable of repairing the injury and stopping the cycle that leads to arthritis. Regenerative Orthopedics is also an ideal treatment for anyone looking to avoid knee replacement!\r\n\r\n<h4>The Healthy Knee vs An Injured Knee</h4>\r\nThe knee is the largest joint in the body and one of the more complex joints. In order to accomplish all of the tasks the knee needs to do, many forces and stressors are placed on it. A healthy knee moves smoothly during walking activities, and also when running, jumping and turning.  One of the most important keys to a healthy knee is maintaining stability in response to the forces placed upon it. When any part of the knee joint is injured, such as the bony configuration, muscles, menisci, joint capsule or the ligaments, the whole stability of the knee is disrupted, causing symptoms and pain. When knee injury does occur, Regenerative Orthopedics stops the disruption and stabilizes the knee again. The treatment does this by promoting the healing of unstable and weakened ligaments, and other injured joint structures, which then eliminates the pain associated with knee conditions caused by abnormal joint motion.\r\n\r\n<h4>Knee Pain from Arthritis</h4>\r\nKnee pain is one of the most common reasons people seek out medical help, and knee osteoarthritis is a primary player, impairing the mobility and activity level of those who suffer from it. The prevalence of knee pain increases with age, and is affected by lifestyle factors, such as obesity and lack of exercise. Arthritis sufferers deal with chronic pain, joint stiffness, structural damage, and the progressive loss of cartilage, which can be disabling. Did you know the pain of arthritis does not come from the cartilage? Even though cartilage loss plays a central role in arthritis, it is not the source of pain, since cartilage tissue does not contain nerve fibers. The tissue that does contain a lot of nerve fibers includes the ligaments, tendons, meniscus, joint capsule, synovium and periosteum. Arthritis pain is due to injury to these types of tissue. Since soft tissue is mainly responsible for the smooth movement of the knee joint, when abnormal forces are placed on them, injury occurs that disrupts the balance between normal motion and instability. This is where the painful process begins. The nerve endings that cause pain are also present where the ligaments and tendons insert to the bone, and this area can become a source of ongoing knee pain. Regenerative Orthopedic treatments are often directed at these sites and as such are recognized as one of the most effective non-surgical therapies to treat knee pain.\r\n\r\nLigaments play a crucial role in the stability of the knee, because they guide the motion of the knee joints, and restrain excessive motion to prevent dislocation. Ligament injuries are also the most common form of knee injury. Ligament injury then upsets and disrupts the balance in the motion of the knee joint. Injuries that result in ligament damage also commonly result in the injury to other knee structures, such as the meniscus, tendons and cartilage. As mentioned, these injuries can eventually lead to arthritis, which can transpire within a few years with severe injuries or possibly over decades if the injury is less severe.\r\n\r\n<h4>Regenerative Orthopedic Treatments Heal the Soft Tissue Injuries</h4>\r\nAlthough many treatments may offer temporary pain relief, it is important to find a treatment that does more than chase the symptoms, and one that actually repairs the injured soft tissue in order to restore normal motion to the knee joint. Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma and Prolotherapy are effective therapies that do just that. These treatments stimulate healing of ligaments, tendons and menisci, and restore normal functioning of the knee joint, thus preventing the arthritic progression. In more advanced cases, the Gold Standard in Stem Cell Therapy can be used to promote the regeneration of articular cartilage.\r\n\r\nRegenerative Orthopedic treatments target and repair the structures generating the pain in knee arthritis, effectively resolving the pain.  Regenerative Orthopedic treatments give hope to arthritis sufferers, because they provide not only pain relief, but also joint repair, resulting in improved function and a better quality of life.','Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain','','inherit','closed','closed','','2347-revision-v1','','','2019-06-28 08:15:07','2019-06-28 08:15:07','',2347,'https://www.drfields.com/uncategorized/2347-revision-v1/',0,'revision','',0),(2353,8,'2019-06-28 08:26:23','2019-06-28 08:26:23','[caption id=\"attachment_4105\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4105\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/meniscectomy-500x500.png\" alt=\"Meniscectomy\" width=\"500\" height=\"500\" /> <em><strong>                    Meniscectomy Didn\'t Fix Your Problem?</strong></em>[/caption]\r\n\r\nMenisci are C-shaped material in the knee which act as shock absorbers between the femur (upper leg) and tibia (lower leg). Each joint has two menisci to balance the body weight evenly and keep the knee stable.\r\n\r\nMenisci are often damaged in people who are active in sports (running, biking, tennis, hiking, golf, soccer, football) and most other activities that involve the knees. And they can also develop degenerative tears over time as we age.\r\n\r\nSymptoms of torn menisci include pain and swelling in the knee which may be accompanied with a sensation of the knee “giving away”. There may also be difficulties straightening the leg which may be associated with a catching or locking sensation.\r\n<h4>The Old Treatment for Meniscus Tears</h4>\r\nTraditionally, torn menisci were repaired surgically. And that involved cutting the torn parts out. However, several studies have proven that this operation is not a good option for damaged menisci.\r\n\r\nMany people have had them even though their problem was not significant. Just using an MRI to ‘convince’ people to have surgery is not good medicine. History and physical exam are much more important.\r\n\r\nIn 2013, a study showed that meniscus surgery in patients without arthritis was no better than a fake surgical procedure. Another study published in the New England Journal of Medicine in 2012 revealed that on average patients who had meniscus surgery did not do any better than those who skipped the operation and just had physical therapy.\r\n\r\nAnd a study done in 2002 by Baylor College of Medicine revealed that debridement (cutting away the damaged parts) of knees with arthritis and degenerative menisci tears was no better than placebo. The latest study in this area revealed that operations for meniscus locking were no better than placebo. Researchers evaluated 146 patients who had mechanical symptoms like occasional locking or knee catching which were thought to be caused by the menisci. And half of these patients had meniscus surgery while the other half had sham surgery. <strong><em>It was then found that the operation provided no benefit in relieving the catching or locking!</em></strong>\r\n<h4>PRP: A New Treatment for Meniscus Tears</h4>\r\nThe new treatment for meniscus tears does not involve cutting and removing. It entails boosting the body’s natural ability to repair the injured menisci so that they heal themselves. This treatment is a part of Regenerative Orthopedics and is known as platelet rich plasma (PRP) therapy.\r\n\r\n[caption id=\"attachment_2313\" align=\"alignright\" width=\"351\"]<img class=\"wp-image-2313\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-man.jpg\" alt=\"Meniscus Surgery and Pain\" width=\"351\" height=\"524\" /> Has Meniscus Surgery left you with continued knee pain?[/caption]\r\n\r\nPRP involves injecting platelets from the patient’s own blood into their injured knees. It should be accompanied by Dextrose Prolotherapy to the outside of the joint where important ligaments and tendons are.\r\n\r\nThe platelets then release their healing growth factors like platelet derived growth factor, vascular endothelial growth factor and more. These growth factors stimulate the growth of new tissue including the meniscus.\r\n\r\nPRP is cost effective when compared to menisci surgery since it is done in the doctor’s office and it does not require the patient to be admitted into a hospital. It also shields the patient from other risks associated with surgery (infection, medications, severe bleeding) and general anesthesia.\r\n\r\nPRP is also time effective since the patient can slowly resume their activities of normal living after the treatment. This is in comparison to the surgical operation which requires immobilization for several weeks.\r\n<h3><strong>Peter A. Fields, MD, DC is an expert in PRP Regenerative Therapy as well as Prolotherapy.</strong></h3>\r\nHe is also an <strong>expert in the field of Stem Cell Regenerative Therapy</strong> for those that have been told that they have worn out cartilage, bone on bone or have their knee, hip or shoulder replaced.\r\n\r\nThis procedure could save one from having their joint permanently removed and replaced, which sometimes can be disastrous.\r\n\r\nPlease give the OrthoRegen office a call 310-453-1234 at if you have any more questions about avoiding surgery on your joint and spine.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com\"> Schedule Your Appointment Today!</a>','Meniscus Surgery: A Failed Surgery','','publish','open','closed','','meniscus-surgery-a-failed-surgery-being-over-used','','','2020-09-07 21:18:59','2020-09-07 21:18:59','',0,'https://www.drfields.com/?p=2353',0,'post','',0),(2354,8,'2019-06-28 08:26:23','2019-06-28 08:26:23','Meniscus are C-shaped material in the knee which act as shock absorbers between the femur (upper leg) and tibia (lower leg). Each joint has two menisci to balance the body weight evenly and keep the knee stable. Menisci are often damaged in people who are active in sports (running, biking, tennis, hiking, golf, soccer, football) and most other activities that involve the knees. They can also develop degenerative tears over time as we age. Symptoms of torn meniscininclude pain and swelling in the knee which may be accompanied with a sensation of the knee “giving away”. There may also be difficulties straightening the leg which may be associated with a catching or locking sensation.\r\n\r\n<h4>The Old Treatment for Meniscus Tears</h4>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-man.jpg\" alt=\"Knee Pain Man\" width=\"250\" height=\"375\" class=\"alignright size-full wp-image-2313\" />Traditionally, torn menisci were repaired surgically in an operation where most are not repaired but actually which involved cutting the torn parts out. However, several studies have proven that this operation is not a good option for damaged menisci. Many people have them without significant dysfunction. Just using an MRI to ‘convince’ people to have surgery is not good medicine. History and physical exam are much more important. In 2013, a study showed that menisci surgery in patients without arthritis was no better than a fake surgical procedure. Another study published in the New England Journal of Medicine in 2012 revealed that on average patients who had meniscus surgery did not do any better than those who skipped the operation and just had physical therapy. And as early as study done in 2002 by Baylor College of Medicine revealed that debridement (cutting away the damaged parts) of knees with arthritis and degenerative menisci tears was no better than placebo. The latest study in this area revealed that operations for meniscus locking were no better than placebo. Researchers evaluated 146 patients who had mechanical symptoms like occasional locking or knee catching which were thought to be caused by the menisci. Half of these patients had meniscus surgery while the other half had sham surgery. It was then found that the operation provided no benefit in relieving the catching or locking!\r\n\r\n<h4>The New Treatment for Meniscus Tears</h4>\r\nThe new treatment for meniscus tears does not involve cutting and removing. It entails boosting the body’s natural ability to repair the injured menisci so that they heal themselves. This treatment is a part of Regenerative Orthopedics and is known as platelet rich plasma (PRP) therapy and it involves injecting platelets from the patient’s own blood into their injured knees. In should be accompanied by dextrose Prolotherapy to the outside of the joint where important ligaments and tendons are. The platelets then release their healing growth factors like platelet derived growth factor, vascular endothelial growth factor and more. These growth factors stimulate the growth of new tissue including the meniscus. PRP is cost effective when compared to menisci surgery since it is done in the doctor’s office and it does not require the patient to be admitted into a hospital. It also shields the patient from other risks associated with surgery (infection, medications, severe bleeding) and general anesthesia. PRP is also time effective since the patient can slowly resume their activities of normal living after the treatment. This is in comparison to the surgical operation which requires immobilization for several weeks.\r\n\r\n<strong>Peter A. Fields, MD, DC is an expert in PRP Regenerative Therapy as well as Prolotherapy.</strong>\r\n\r\nHe is also an <strong>expert in the field of Stem Cell Regenerative Therapy</strong> for those that have been told that they have worn out cartilage, bone on bone or have their knee, hip or shoulder replaced.\r\n\r\nThis procedure could save one from having their joint permanently removed and replaced, which sometimes can be disastrous.\r\n\r\nPlease give his office a call if you have any more questions about avoiding surgery on your joint and spine.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com\">  Schedule Your Appointment Today!</a>\r\n','Meniscus Surgery – A Failed Surgery Being Over Used','','inherit','closed','closed','','2353-revision-v1','','','2019-06-28 08:26:23','2019-06-28 08:26:23','',2353,'https://www.drfields.com/uncategorized/2353-revision-v1/',0,'revision','',0),(2355,8,'2019-06-28 08:27:43','2019-06-28 08:27:43','<h4>Regenerative Orthopedics: Non-Surgical Repair With Stem Regeneration/PRP/Prolotherapy</h4>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignleft size-full wp-image-955\" />Dr. Fields lectured at A4M 23rd Annual World Congress in Las Vegas on\r\n<strong>Saturday, December 12 at 3:30pm</strong>\r\n\r\nAbstract\r\n\r\n<strong>Surgery can always be done but never un-done.</strong>\r\nLearn about the techniques of Regenerative Orthopedics (Stem Regeneration/PRP/Prolotherapy) which offers patients the chance to avoid unnecessary orthopedic surgery and let one’s own body repair itself.\r\n\r\n<strong>These techniques let the body stimulate a weakened area and cause it to regenerate.</strong>\r\nIf one is being told that only surgery will fix thier ailing joints or spine, or are looking for an alternative to surgery, then then this lecture is a must!\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/A4M-Lecture-Las-Vegas.jpg\" alt=\"A4m Lecture Las Vegas\" width=\"450\" height=\"224\" class=\"alignright size-full wp-image-1103\" /><strong>Regenerating ones joints and spine is not in the future: it is happening today!</strong>\r\nLast year in the US there were over two million total joint replacements; and another 30 million joint surgeries. In increasing numbers, people are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer.\r\n\r\nIn this lecture one will learn:\r\n<ul>\r\n 	<li>Why Regenerative Medicine is better than surgery</li>\r\n 	<li>Learn the latest regenerative techniques in Orthopedics</li>\r\n 	<li>How these techniques can help your patients\r\nlive better lives</li>\r\n 	<li>See and hear results from patients that have\r\navoided surgery</li>\r\n</ul>\r\n<a href=\"http://www.a4mworldcongress.com/conference-agenda/\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.a4mworldcongress.com/conference-agenda/</a>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com\">  Schedule Your Appointment Today!</a>\r\n','A4M Conference 2015','','draft','open','closed','','a4m-conference-2015-2','','','2019-06-28 08:31:51','2019-06-28 08:31:51','',0,'https://www.drfields.com/?p=2355',0,'post','',0),(2356,8,'2019-06-28 08:27:43','2019-06-28 08:27:43','<h4>Regenerative Orthopedics: Non-Surgical Repair With Stem Regeneration/PRP/Prolotherapy</h4>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignleft size-full wp-image-955\" />Dr. Fields lectured at A4M 23rd Annual World Congress in Las Vegas on\r\n<strong>Saturday, December 12 at 3:30pm</strong>\r\n\r\nAbstract\r\n\r\n<strong>Surgery can always be done but never un-done.</strong>\r\nLearn about the techniques of Regenerative Orthopedics (Stem Regeneration/PRP/Prolotherapy) which offers patients the chance to avoid unnecessary orthopedic surgery and let one’s own body repair itself.\r\n\r\n<strong>These techniques let the body stimulate a weakened area and cause it to regenerate.</strong>\r\nIf one is being told that only surgery will fix thier ailing joints or spine, or are looking for an alternative to surgery, then then this lecture is a must!\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/A4M-Lecture-Las-Vegas.jpg\" alt=\"A4m Lecture Las Vegas\" width=\"450\" height=\"224\" class=\"alignright size-full wp-image-1103\" /><strong>Regenerating ones joints and spine is not in the future: it is happening today!</strong>\r\nLast year in the US there were over two million total joint replacements; and another 30 million joint surgeries. In increasing numbers, people are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer.\r\n\r\nIn this lecture one will learn:\r\n<ul>\r\n 	<li>Why Regenerative Medicine is better than surgery</li>\r\n 	<li>Learn the latest regenerative techniques in Orthopedics</li>\r\n 	<li>How these techniques can help your patients\r\nlive better lives</li>\r\n 	<li>See and hear results from patients that have\r\navoided surgery</li>\r\n</ul>\r\n<a href=\"http://www.a4mworldcongress.com/conference-agenda/\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.a4mworldcongress.com/conference-agenda/</a>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com\">  Schedule Your Appointment Today!</a>\r\n','A4M Conference 2015','','inherit','closed','closed','','2355-revision-v1','','','2019-06-28 08:27:43','2019-06-28 08:27:43','',2355,'https://www.drfields.com/uncategorized/2355-revision-v1/',0,'revision','',0),(2357,8,'2019-06-28 09:14:47','2019-06-28 09:14:47','Knee Pain Man','Knee Pain Man','Knee Pain Man','inherit','open','closed','','knee-pain-man','','','2019-06-28 09:14:47','2019-06-28 09:14:47','',0,'https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-man.jpg',0,'attachment','image/jpeg',0),(2362,8,'2019-07-02 23:14:56','2019-07-02 23:14:56','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">\r\n\r\nRegenerative, non-surgical treatments for painful hip labral tears have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results.\r\n\r\nRegenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">. </span>Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.\r\n\r\n[caption id=\"attachment_2198\" align=\"alignleft\" width=\"400\"]<img class=\"wp-image-2198 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/labral-tear-400x500.png\" alt=\"Labral Tear\" width=\"400\" height=\"500\" /> <em>            <strong>Non-Surgical Repair of Hip Labral Tears</strong></em>[/caption]\r\n\r\n</div>\r\n<h3>The Hip and Labrum</h3>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. And the hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis.</div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">But we move our hips a lot and put them through high rates of wear. So more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injur<span class=\"pg-1fc2 pg-1sc0\">y</span><span class=\"pg-1ff3 pg-1fs2 pg-1fc1\">.</span></div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"> The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. And labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries.</div>\r\n<div></div>\r\n<h3>Hip Labral Tear Symptoms</h3>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Symptoms include varying degrees of pain, including pain deep in the groin, as well as clicking, popping, and a locking sensation in the hip joint.</div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area.</div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight distribution inside the joint. And that prompts the joint surfaces to rub roughly and then generate a breaking down of articular cartilage. That limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<h3>Treatment Options for Hip Labral Tears</h3>\r\nThe labrum has a poor blood supply. And this makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective. That\'s because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability.\r\n\r\nPhysical therapy can help strengthen the surrounding muscles. But it cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.\r\n<div>\r\n<h3>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics aims to address the soft tissue weakness that transpired during the original hip labral tear injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred.\r\n\r\n</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and reduces pain and symptoms.</div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Degenerative conditions, such as hip labral tear injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries. And the non-surgical treatment involves the injection of natural substances into the degenerated hip to stimulate healing.</div>\r\n<h3>Cellular Therapies Such as PRP and Stem Cells</h3>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Sometimes in the treatment of labral tears, cellular therapies such as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cells</a> are also needed. Especially in very active people and athletes, or in conditions with more severe degeneration. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow). The solution is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable. And surgery will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration.</div>\r\n<div></div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Most painful hip conditions begin with damage to the surrounding ligaments. And they progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen<sup>®</sup>, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Hip Labral Tears? Get Non-Surgical Repair','','publish','open','closed','','hip-labral-tears-and-non-surgical-repair-with-regenerative-orthopedics','','','2020-09-07 20:59:58','2020-09-07 20:59:58','',0,'https://www.drfields.com/?p=2362',0,'post','',0),(2363,8,'2019-07-02 23:14:56','2019-07-02 23:14:56','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">\r\n\r\nRegenerative, non-surgical treatments for painful hip conditions and arthritis have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results. Regenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">. </span>Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.\r\n\r\n[caption id=\"attachment_2198\" align=\"alignleft\" width=\"400\"]<img class=\"wp-image-2198 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/labral-tear-400x500.png\" alt=\"Labral Tear\" width=\"400\" height=\"500\" /> <em>Hip Labral Tear</em>[/caption]\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<h2>The Hip and Labrum</h2>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">          The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. The hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis. But we move our hips a lot and put them through high rates of wear, so more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injur<span class=\"pg-1fc2 pg-1sc0\">y</span><span class=\"pg-1ff3 pg-1fs2 pg-1fc1\">.</span></div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">          The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. Labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries. Symptoms include varying degrees of pain, including pain deep in the groin, as well as clicking, popping, and a locking sensation in the hip joint. A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area. Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight distribution inside the joint, prompting the joint surfaces to rub roughly and then generating a breaking down of articular cartilage, which limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<div></div>\r\n<h2>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</h2>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y1d pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">          Regenerative Orthopedics aims to address the soft tissue weakness that transpired during the original injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred. The labrum has a poor blood supply, which makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability. Physical therapy can help strengthen the surrounding muscles, but cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">          Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and reduces pain and symptoms. Degenerative conditions, such as hip labral injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries and involves the injection of natural substances into the degenerated hip to stimulate healing. Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed, especially in very active people and athletes. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow), which is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">          Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable and will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration. Most painful hip conditions begin with damage to the surrounding ligaments and progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>','Hip Labral Tears and Non-Surgical Repair with Regenerative Orthopedics','','inherit','closed','closed','','2362-revision-v1','','','2019-07-02 23:14:56','2019-07-02 23:14:56','',2362,'https://www.drfields.com/uncategorized/2362-revision-v1/',0,'revision','',0),(2365,8,'2019-07-08 16:56:11','2019-07-08 16:56:11','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span><a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-08 16:56:11','2019-07-08 16:56:11','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2366,8,'2019-07-08 17:33:58','2019-07-08 17:33:58','<img class=\"size-full wp-image-2369 aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/image1-1.png\" alt=\"Image1 (1)\" width=\"320\" height=\"240\" />\r\n<h2 style=\"text-align: center;\"><b>The Athletic Doc® will be competing in his</b></h2>\r\n<h1 style=\"text-align: center; color: #4bacc6;\"><b>   </b><b>11</b><b>th</b><b> Ironman!!</b></h1>\r\n<h1 style=\"text-align: center;\"><b>  July 14, 2019 in Spain</b></h1>\r\n<img class=\"aligncenter size-full wp-image-2373\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/11th-ironman.png\" alt=\"11th Ironman\" width=\"437\" height=\"175\" />\r\n<h1 style=\"text-align: center;\"><b>     Follow Dr. Fields live</b></h1>\r\n<p style=\"text-align: center; color: #ff0000;\"><b>Go to Ironman.com</b></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Search Vitoria-Gasteiz (click athlete tracker)</span><span style=\"font-weight: 400;\">\r\n</span><b>or</b></p>\r\n\r\n<h2 style=\"text-align: center; color: #ff0000;\"><b>Download the Ironman Tracker App</b></h2>\r\n<h2 style=\"text-align: center;\"><b>      Go The Athletic Doc!</b></h2>\r\n<p style=\"text-align: center;\"><b>NOTE: Race starts at 8:30am Sunday the 14</b><b>th </b><b>local time</b></p>\r\n<p style=\"text-align: center;\"><b>(11:30 pm Sat Night July 13</b><b>th</b><b> LA time) </b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">There is a 9hour time difference.</span></p>\r\n<p style=\"text-align: center;\"><b>Dr Fields est. time is 13.5-14.5 hrs. Race number is 1919</b></p>','11th Ironman','','draft','closed','closed','','11th-ironman','','','2022-02-25 23:05:33','2022-02-25 23:05:33','',0,'https://www.drfields.com/?page_id=2366',0,'page','',0),(2367,8,'2019-07-08 17:33:58','2019-07-08 17:33:58','<p style=\"text-align: center;\"><strong>The Athletic Doc® will be competing in his</strong></p>\r\n<p style=\"text-align: center;\"><strong>   <u>11<sup>th</sup> Ironman!!</u></strong></p>\r\n<p style=\"text-align: center;\"><strong>  July 14, 2019 in Spain</strong></p>\r\n<p style=\"text-align: center;\"><strong>     Follow Dr. Fields live</strong></p>\r\n<p style=\"text-align: center;\"><strong>Go to Ironman.com</strong>\r\nSearch Vitoria-Gasteiz (click athlete tracker)\r\n<strong>or</strong></p>\r\n<p style=\"text-align: center;\"><strong>Download the Ironman Tracker App</strong></p>\r\n<p style=\"text-align: center;\"><strong>      Go The Athletic Doc!</strong></p>\r\n<p style=\"text-align: center;\"><strong>NOTE: Race starts at 8:30am Sunday the 14<sup>th </sup>local time</strong></p>\r\n<p style=\"text-align: center;\"><strong>(11:30 pm Sat Night July 13<sup>th</sup> LA time)</strong>\r\nThere is a 9hour time difference.</p>\r\n<p style=\"text-align: center;\"><strong>Dr Fields est. time is 13.5-14.5 hrs. Race number is 1919</strong></p>','11th Ironman','','inherit','closed','closed','','2366-revision-v1','','','2019-07-08 17:33:58','2019-07-08 17:33:58','',2366,'https://www.drfields.com/uncategorized/2366-revision-v1/',0,'revision','',0),(2369,8,'2019-07-08 17:47:03','2019-07-08 17:47:03','Image1 (1)','Image1 (1)','Image1 (1)','inherit','open','closed','','image1-1','','','2019-07-08 17:47:03','2019-07-08 17:47:03','',2366,'https://www.drfields.com/wp-content/uploads/2019/07/image1-1.png',0,'attachment','image/png',0),(2370,8,'2019-07-08 17:47:04','2019-07-08 17:47:04','Image2 (1)','Image2 (1)','Image2 (1)','inherit','open','closed','','image2-1','','','2019-07-08 17:47:04','2019-07-08 17:47:04','',2366,'https://www.drfields.com/wp-content/uploads/2019/07/image2-1.jpeg',0,'attachment','image/jpeg',0),(2371,8,'2019-07-08 21:40:49','2019-07-08 21:40:49','<img src=\"https://www.drfields.com/wp-content/uploads/2019/07/image1-1.png\" alt=\"Image1 (1)\" width=\"320\" height=\"240\" class=\"size-full wp-image-2369\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>The Athletic Doc® will be competing in his</strong></p>\r\n<p style=\"text-align: center;\"><strong>   <u>11<sup>th</sup> Ironman!!</u></strong></p>\r\n<p style=\"text-align: center;\"><strong>  July 14, 2019 in Spain</strong></p>\r\n<p style=\"text-align: center;\"><strong>     Follow Dr. Fields live</strong></p>\r\n<p style=\"text-align: center;\"><strong>Go to Ironman.com</strong>\r\nSearch Vitoria-Gasteiz (click athlete tracker)\r\n<strong>or</strong></p>\r\n<p style=\"text-align: center;\"><strong>Download the Ironman Tracker App</strong></p>\r\n<p style=\"text-align: center;\"><strong>      Go The Athletic Doc!</strong></p>\r\n<p style=\"text-align: center;\"><strong>NOTE: Race starts at 8:30am Sunday the 14<sup>th </sup>local time</strong></p>\r\n<p style=\"text-align: center;\"><strong>(11:30 pm Sat Night July 13<sup>th</sup> LA time)</strong>\r\nThere is a 9hour time difference.</p>\r\n<p style=\"text-align: center;\"><strong>Dr Fields est. time is 13.5-14.5 hrs. Race number is 1919</strong></p>','11th Ironman','','inherit','closed','closed','','2366-revision-v1','','','2019-07-08 21:40:49','2019-07-08 21:40:49','',2366,'https://www.drfields.com/uncategorized/2366-revision-v1/',0,'revision','',0),(2372,8,'2019-07-08 22:37:47','2019-07-08 22:37:47','\n\n<h2 style=\"text-align: center;\"><b>The Athletic Doc® will be competing in his</b></h2>\n<h1 style=\"text-align: center; color: #4bacc6;\"><b>   </b><b>11</b><b>th</b><b> Ironman!!</b></h1>\n<h1 style=\"text-align: center;\"><b>  July 14, 2019 in Spain</b></h1>\n<img class=\"aligncenter size-full wp-image-2373\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/11th-ironman.png\" alt=\"11th Ironman\" width=\"437\" height=\"175\" />\n<h1 style=\"text-align: center;\"><b>     Follow Dr. Fields live</b></h1>\n<p style=\"text-align: center; color: #ff0000;\"><b>Go to Ironman.com</b> <span style=\"font-weight: 400;\"></span></p>\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Search Vitoria-Gasteiz (click athlete tracker)</span><span style=\"font-weight: 400;\">\n</span><b>or</b></p>\n\n<h2 style=\"text-align: center; color: #ff0000;\"><b>Download the Ironman Tracker App</b></h2>\n<h2 style=\"text-align: center;\"><b>      Go The Athletic Doc!</b></h2>\n<p style=\"text-align: center;\"><b>NOTE: Race starts at 8:30am Sunday the 14</b><b>th </b><b>local time</b></p>\n<p style=\"text-align: center;\"><b>(11:30 pm Sat Night July 13</b><b>th</b><b> LA time) </b><span style=\"font-weight: 400;\">\n</span><span style=\"font-weight: 400;\">There is a 9hour time difference.</span></p>\n<p style=\"text-align: center;\"><b>Dr Fields est. time is 13.5-14.5 hrs. Race number is 1919</b></p>','11th Ironman','','inherit','closed','closed','','2366-autosave-v1','','','2019-07-08 22:37:47','2019-07-08 22:37:47','',2366,'https://www.drfields.com/uncategorized/2366-autosave-v1/',0,'revision','',0),(2373,8,'2019-07-08 22:32:43','2019-07-08 22:32:43','11th Ironman','11th Ironman','11th Ironman','inherit','open','closed','','11th-ironman-2','','','2019-07-08 22:32:43','2019-07-08 22:32:43','',2366,'https://www.drfields.com/wp-content/uploads/2019/07/11th-ironman.png',0,'attachment','image/png',0),(2374,8,'2019-07-08 22:33:55','2019-07-08 22:33:55','<p style=\"text-align: center;\"><b>The Athletic Doc® will be competing in his</b></p>\r\n<h3 style=\"text-align: center; color:#4bacc6;\"><b>   </b><b>11</b><b>th</b><b> Ironman!!</b></h3>\r\n<p style=\"text-align: center;\"><b>  July 14, 2019 in Spain</b></p>\r\n<img class=\"aligncenter size-full wp-image-2373\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/11th-ironman.png\" alt=\"11th Ironman\" width=\"437\" height=\"175\" />\r\n<p style=\"text-align: center;\"><b>     Follow Dr. Fields live</b></p>\r\n<p style=\"text-align: center;\"><b>Go to Ironman.com</b> <span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Search Vitoria-Gasteiz (click athlete tracker)</span><span style=\"font-weight: 400;\">\r\n</span><b>or</b></p>\r\n<p style=\"text-align: center;\"><b>Download the Ironman Tracker App</b></p>\r\n<p style=\"text-align: center;\"><b>      Go The Athletic Doc!</b></p>\r\n<p style=\"text-align: center;\"><b>NOTE: Race starts at 8:30am Sunday the 14</b><b>th </b><b>local time</b></p>\r\n<p style=\"text-align: center;\"><b>(11:30 pm Sat Night July 13</b><b>th</b><b> LA time) </b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">There is a 9hour time difference.</span></p>\r\n<p style=\"text-align: center;\"><b>Dr Fields est. time is 13.5-14.5 hrs. Race number is 1919</b></p>','11th Ironman','','inherit','closed','closed','','2366-revision-v1','','','2019-07-08 22:33:55','2019-07-08 22:33:55','',2366,'https://www.drfields.com/uncategorized/2366-revision-v1/',0,'revision','',0),(2375,8,'2019-07-08 22:35:40','2019-07-08 22:35:40','<p style=\"text-align: center;\"><b>The Athletic Doc® will be competing in his</b></p>\r\n\r\n<h1 style=\"text-align: center; color: #4bacc6;\"><b>   </b><b>11</b><b>th</b><b> Ironman!!</b></h1>\r\n<h1 style=\"text-align: center;\"><b>  July 14, 2019 in Spain</b></h1>\r\n<img class=\"aligncenter size-full wp-image-2373\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/11th-ironman.png\" alt=\"11th Ironman\" width=\"437\" height=\"175\" />\r\n<h1 style=\"text-align: center;\"><b>     Follow Dr. Fields live</b></h1>\r\n<p style=\"text-align: center; color:#ff0000;\"><b>Go to Ironman.com</b> <span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Search Vitoria-Gasteiz (click athlete tracker)</span><span style=\"font-weight: 400;\">\r\n</span><b>or</b></p>\r\n\r\n<h2 style=\"text-align: center; color:#ff0000;\"><b>Download the Ironman Tracker App</b></h2>\r\n<h2 style=\"text-align: center;\"><b>      Go The Athletic Doc!</b></h2>\r\n<p style=\"text-align: center;\"><b>NOTE: Race starts at 8:30am Sunday the 14</b><b>th </b><b>local time</b></p>\r\n<p style=\"text-align: center;\"><b>(11:30 pm Sat Night July 13</b><b>th</b><b> LA time) </b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">There is a 9hour time difference.</span></p>\r\n<p style=\"text-align: center;\"><b>Dr Fields est. time is 13.5-14.5 hrs. Race number is 1919</b></p>','11th Ironman','','inherit','closed','closed','','2366-revision-v1','','','2019-07-08 22:35:40','2019-07-08 22:35:40','',2366,'https://www.drfields.com/uncategorized/2366-revision-v1/',0,'revision','',0),(2376,8,'2019-07-08 22:36:43','2019-07-08 22:36:43','<h2 style=\"text-align: center;\"><b>The Athletic Doc® will be competing in his</b></h2>\r\n<h1 style=\"text-align: center; color: #4bacc6;\"><b>   </b><b>11</b><b>th</b><b> Ironman!!</b></h1>\r\n<h1 style=\"text-align: center;\"><b>  July 14, 2019 in Spain</b></h1>\r\n<img class=\"aligncenter size-full wp-image-2373\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/11th-ironman.png\" alt=\"11th Ironman\" width=\"437\" height=\"175\" />\r\n<h1 style=\"text-align: center;\"><b>     Follow Dr. Fields live</b></h1>\r\n<p style=\"text-align: center; color: #ff0000;\"><b>Go to Ironman.com</b> <span style=\"font-weight: 400;\"></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Search Vitoria-Gasteiz (click athlete tracker)</span><span style=\"font-weight: 400;\">\r\n</span><b>or</b></p>\r\n\r\n<h2 style=\"text-align: center; color: #ff0000;\"><b>Download the Ironman Tracker App</b></h2>\r\n<h2 style=\"text-align: center;\"><b>      Go The Athletic Doc!</b></h2>\r\n<p style=\"text-align: center;\"><b>NOTE: Race starts at 8:30am Sunday the 14</b><b>th </b><b>local time</b></p>\r\n<p style=\"text-align: center;\"><b>(11:30 pm Sat Night July 13</b><b>th</b><b> LA time) </b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">There is a 9hour time difference.</span></p>\r\n<p style=\"text-align: center;\"><b>Dr Fields est. time is 13.5-14.5 hrs. Race number is 1919</b></p>','11th Ironman','','inherit','closed','closed','','2366-revision-v1','','','2019-07-08 22:36:43','2019-07-08 22:36:43','',2366,'https://www.drfields.com/uncategorized/2366-revision-v1/',0,'revision','',0),(2377,8,'2019-07-08 22:38:01','2019-07-08 22:38:01','<img src=\"https://www.drfields.com/wp-content/uploads/2019/07/image1-1.png\" alt=\"Image1 (1)\" width=\"320\" height=\"240\" class=\"size-full wp-image-2369 aligncenter\" />\r\n\r\n<h2 style=\"text-align: center;\"><b>The Athletic Doc® will be competing in his</b></h2>\r\n<h1 style=\"text-align: center; color: #4bacc6;\"><b>   </b><b>11</b><b>th</b><b> Ironman!!</b></h1>\r\n<h1 style=\"text-align: center;\"><b>  July 14, 2019 in Spain</b></h1>\r\n<img class=\"aligncenter size-full wp-image-2373\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/11th-ironman.png\" alt=\"11th Ironman\" width=\"437\" height=\"175\" />\r\n<h1 style=\"text-align: center;\"><b>     Follow Dr. Fields live</b></h1>\r\n<p style=\"text-align: center; color: #ff0000;\"><b>Go to Ironman.com</b> <span style=\"font-weight: 400;\"></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Search Vitoria-Gasteiz (click athlete tracker)</span><span style=\"font-weight: 400;\">\r\n</span><b>or</b></p>\r\n\r\n<h2 style=\"text-align: center; color: #ff0000;\"><b>Download the Ironman Tracker App</b></h2>\r\n<h2 style=\"text-align: center;\"><b>      Go The Athletic Doc!</b></h2>\r\n<p style=\"text-align: center;\"><b>NOTE: Race starts at 8:30am Sunday the 14</b><b>th </b><b>local time</b></p>\r\n<p style=\"text-align: center;\"><b>(11:30 pm Sat Night July 13</b><b>th</b><b> LA time) </b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">There is a 9hour time difference.</span></p>\r\n<p style=\"text-align: center;\"><b>Dr Fields est. time is 13.5-14.5 hrs. Race number is 1919</b></p>','11th Ironman','','inherit','closed','closed','','2366-revision-v1','','','2019-07-08 22:38:01','2019-07-08 22:38:01','',2366,'https://www.drfields.com/uncategorized/2366-revision-v1/',0,'revision','',0),(2378,8,'2019-07-09 21:32:46','2019-07-09 21:32:46','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-09 21:32:46','2019-07-09 21:32:46','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2379,8,'2019-07-09 21:34:29','2019-07-09 21:34:29','admin@dentalimplantsmalibu.com\nfb6ph','admin@dentalimplantsmalibu.com','','publish','closed','closed','','admin-dentalimplantsmalibu-com','','','2019-07-09 21:34:29','2019-07-09 21:34:29','',0,'https://www.drfields.com/uncategorized/admin-dentalimplantsmalibu-com/',0,'flamingo_contact','',0),(2380,8,'2019-07-09 21:34:29','2019-07-09 21:34:29','brinkerd@yahoo.com\nDebi33445','brinkerd@yahoo.com','','publish','closed','closed','','brinkerd-yahoo-com','','','2019-07-09 21:34:29','2019-07-09 21:34:29','',0,'https://www.drfields.com/uncategorized/brinkerd-yahoo-com/',0,'flamingo_contact','',0),(2381,8,'2019-07-09 21:34:29','2019-07-09 21:34:29','support@websitesdepot.com\nwddevelopers','support@websitesdepot.com','','publish','closed','closed','','support-websitesdepot-com','','','2019-07-09 21:34:29','2019-07-09 21:34:29','',0,'https://www.drfields.com/uncategorized/support-websitesdepot-com/',0,'flamingo_contact','',0),(2383,0,'2019-07-10 03:01:19','2019-07-10 03:01:19','suzaun@hotmail.com\nJamesDut','suzaun@hotmail.com','','publish','closed','closed','','suzaun-hotmail-com','','','2019-07-10 03:01:19','2019-07-10 03:01:19','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2383',0,'flamingo_contact','',0),(2384,0,'2019-07-10 03:01:19','2019-07-10 03:01:19','JamesDut\nsuzaun@hotmail.com\n83522332935\n11am-1pm\nPaid Surveys: Earn $30,000 Or More Per Week: http://bit.do/eYLcr?XhgjDpc\nPaid Surveys: Earn $30,000 Or More Per Week: http://bit.do/eYLcr?XhgjDpc\nSend\n1\n185.212.171.150\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36\nhttps://www.drfields.com/contact/\nJuly 10, 2019\n3:01 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject','','','2019-07-10 03:01:19','2019-07-10 03:01:19','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2384',0,'flamingo_inbound','',0),(2386,8,'2019-07-10 15:04:02','2019-07-10 15:04:02','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n   <div class=\"owl-carousel slider-carousel\">\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/07/Ironman.-2009.jpg\');\">\r\n         <div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n            <span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n            <span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n         <div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n            <span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n            <span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n            <span class=\"header_text_second\">Snapping Hip Syndrome</span>\r\n            <a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n            <span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n            <span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n            <span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n            <span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n            <span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n            <span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a>\r\n         </div>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n   <div class=\"row\">\r\n      <div class=\"col-md-4 box1\">\r\n         What\'s\r\n         <h3>New</h3>\r\n         <ul>\r\n            <li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n            <li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n         </ul>\r\n      </div>\r\n      <div id=\"testimonials\" class=\"col-md-4 box2\">\r\n         Patient\r\n         <h3>Testimonials</h3>\r\n         <div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n            <div class=\"testimonial-item\">\r\n               \"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n               <h3>Larry</h3>\r\n               <h4>Stem Cell Knee</h4>\r\n            </div>\r\n            <div class=\"testimonial-item\">\r\n               \"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n               <h3>Chris, Pro Basketball Player</h3>\r\n               <h4>PRP Knee</h4>\r\n            </div>\r\n            <div class=\"testimonial-item\">\r\n               \"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n               <h3>Mary</h3>\r\n               <h4>Stem Cell Hip</h4>\r\n            </div>\r\n         </div>\r\n      </div>\r\n      <div class=\"col-md-4 box3\">\r\n         News &amp;\r\n         <h3>Events</h3>\r\n         <ul>\r\n            <li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n            <li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n         </ul>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div id=\"intro\">\r\n   <div class=\"container\">\r\n      <div class=\"col-md-12\">\r\n         <h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n         <p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n         <a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n   <div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n   <div class=\"col-md-7 about_holder\">\r\n      <h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n      <p class=\"intro_text\">Medical Physician and Chiropractor\r\n         The Athletic Doc<sup>®</sup> - 10x Ironman Triathlete\r\n      </p>\r\n   </div>\r\n   <div class=\"col-md-3\">\r\n      <div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n      <div class=\"about_text\">\r\n         <h3>About</h3>\r\n         Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n         <a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n      </div>\r\n   </div>\r\n   <div class=\"col-md-3\">\r\n      <div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n      <div class=\"about_text\">\r\n         <h3>10x Ironman</h3>\r\n         Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n         <a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-10 15:04:02','2019-07-10 15:04:02','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2388,8,'2019-07-10 15:05:28','2019-07-10 15:05:28','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n   <div class=\"owl-carousel slider-carousel\">\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/07/Vitoria-Gazteiz-banner-for-website.png\');\">\r\n         <div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n            <span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n            <span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n         <div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n            <span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n            <span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n            <span class=\"header_text_second\">Snapping Hip Syndrome</span>\r\n            <a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n            <span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n            <span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n            <span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n            <span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n            <span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n            <span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a>\r\n         </div>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n   <div class=\"row\">\r\n      <div class=\"col-md-4 box1\">\r\n         What\'s\r\n         <h3>New</h3>\r\n         <ul>\r\n            <li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n            <li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n         </ul>\r\n      </div>\r\n      <div id=\"testimonials\" class=\"col-md-4 box2\">\r\n         Patient\r\n         <h3>Testimonials</h3>\r\n         <div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n            <div class=\"testimonial-item\">\r\n               \"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n               <h3>Larry</h3>\r\n               <h4>Stem Cell Knee</h4>\r\n            </div>\r\n            <div class=\"testimonial-item\">\r\n               \"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n               <h3>Chris, Pro Basketball Player</h3>\r\n               <h4>PRP Knee</h4>\r\n            </div>\r\n            <div class=\"testimonial-item\">\r\n               \"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n               <h3>Mary</h3>\r\n               <h4>Stem Cell Hip</h4>\r\n            </div>\r\n         </div>\r\n      </div>\r\n      <div class=\"col-md-4 box3\">\r\n         News &amp;\r\n         <h3>Events</h3>\r\n         <ul>\r\n            <li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n            <li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n         </ul>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div id=\"intro\">\r\n   <div class=\"container\">\r\n      <div class=\"col-md-12\">\r\n         <h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n         <p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n         <a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n   <div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n   <div class=\"col-md-7 about_holder\">\r\n      <h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n      <p class=\"intro_text\">Medical Physician and Chiropractor\r\n         The Athletic Doc<sup>®</sup> - 10x Ironman Triathlete\r\n      </p>\r\n   </div>\r\n   <div class=\"col-md-3\">\r\n      <div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n      <div class=\"about_text\">\r\n         <h3>About</h3>\r\n         Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n         <a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n      </div>\r\n   </div>\r\n   <div class=\"col-md-3\">\r\n      <div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n      <div class=\"about_text\">\r\n         <h3>10x Ironman</h3>\r\n         Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n         <a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-10 15:05:28','2019-07-10 15:05:28','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2390,8,'2019-07-10 15:10:08','2019-07-10 15:10:08','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n   <div class=\"owl-carousel slider-carousel\">\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/07/dr-fields-11th-triathlon.jpg\');\">\r\n         <div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n            <span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n            <span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n         <div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n            <span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n            <span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n            <span class=\"header_text_second\">Snapping Hip Syndrome</span>\r\n            <a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n            <span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n            <span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n            <span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n            <span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n            <span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n            <span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a>\r\n         </div>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n   <div class=\"row\">\r\n      <div class=\"col-md-4 box1\">\r\n         What\'s\r\n         <h3>New</h3>\r\n         <ul>\r\n            <li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n            <li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n         </ul>\r\n      </div>\r\n      <div id=\"testimonials\" class=\"col-md-4 box2\">\r\n         Patient\r\n         <h3>Testimonials</h3>\r\n         <div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n            <div class=\"testimonial-item\">\r\n               \"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n               <h3>Larry</h3>\r\n               <h4>Stem Cell Knee</h4>\r\n            </div>\r\n            <div class=\"testimonial-item\">\r\n               \"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n               <h3>Chris, Pro Basketball Player</h3>\r\n               <h4>PRP Knee</h4>\r\n            </div>\r\n            <div class=\"testimonial-item\">\r\n               \"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n               <h3>Mary</h3>\r\n               <h4>Stem Cell Hip</h4>\r\n            </div>\r\n         </div>\r\n      </div>\r\n      <div class=\"col-md-4 box3\">\r\n         News &amp;\r\n         <h3>Events</h3>\r\n         <ul>\r\n            <li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n            <li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n         </ul>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div id=\"intro\">\r\n   <div class=\"container\">\r\n      <div class=\"col-md-12\">\r\n         <h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n         <p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n         <a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n   <div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n   <div class=\"col-md-7 about_holder\">\r\n      <h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n      <p class=\"intro_text\">Medical Physician and Chiropractor\r\n         The Athletic Doc<sup>®</sup> - 10x Ironman Triathlete\r\n      </p>\r\n   </div>\r\n   <div class=\"col-md-3\">\r\n      <div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n      <div class=\"about_text\">\r\n         <h3>About</h3>\r\n         Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n         <a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n      </div>\r\n   </div>\r\n   <div class=\"col-md-3\">\r\n      <div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n      <div class=\"about_text\">\r\n         <h3>10x Ironman</h3>\r\n         Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n         <a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-10 15:10:08','2019-07-10 15:10:08','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2391,8,'2019-07-10 15:11:48','2019-07-10 15:11:48','Dr Fields 11th Triathlon','Dr Fields 11th Triathlon','Dr Fields 11th Triathlon','inherit','open','closed','','dr-fields-11th-triathlon','','','2019-07-10 15:11:48','2019-07-10 15:11:48','',0,'https://www.drfields.com/wp-content/uploads/2019/07/dr-fields-11th-triathlon.jpg',0,'attachment','image/jpeg',0),(2392,8,'2019-07-10 15:15:21','2019-07-10 15:15:21','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n   <div class=\"owl-carousel slider-carousel\">\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/07/dr-fields-11th-triathlon.jpg\');\">\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n         <div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n            <span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n            <span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n            <span class=\"header_text_second\">Snapping Hip Syndrome</span>\r\n            <a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n            <span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n            <span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n            <span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n            <span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n            <span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n            <span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a>\r\n         </div>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n   <div class=\"row\">\r\n      <div class=\"col-md-4 box1\">\r\n         What\'s\r\n         <h3>New</h3>\r\n         <ul>\r\n            <li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n            <li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n         </ul>\r\n      </div>\r\n      <div id=\"testimonials\" class=\"col-md-4 box2\">\r\n         Patient\r\n         <h3>Testimonials</h3>\r\n         <div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n            <div class=\"testimonial-item\">\r\n               \"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n               <h3>Larry</h3>\r\n               <h4>Stem Cell Knee</h4>\r\n            </div>\r\n            <div class=\"testimonial-item\">\r\n               \"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n               <h3>Chris, Pro Basketball Player</h3>\r\n               <h4>PRP Knee</h4>\r\n            </div>\r\n            <div class=\"testimonial-item\">\r\n               \"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n               <h3>Mary</h3>\r\n               <h4>Stem Cell Hip</h4>\r\n            </div>\r\n         </div>\r\n      </div>\r\n      <div class=\"col-md-4 box3\">\r\n         News &amp;\r\n         <h3>Events</h3>\r\n         <ul>\r\n            <li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n            <li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n         </ul>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div id=\"intro\">\r\n   <div class=\"container\">\r\n      <div class=\"col-md-12\">\r\n         <h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n         <p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n         <a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n   <div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n   <div class=\"col-md-7 about_holder\">\r\n      <h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n      <p class=\"intro_text\">Medical Physician and Chiropractor\r\n         The Athletic Doc<sup>®</sup> - 10x Ironman Triathlete\r\n      </p>\r\n   </div>\r\n   <div class=\"col-md-3\">\r\n      <div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n      <div class=\"about_text\">\r\n         <h3>About</h3>\r\n         Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n         <a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n      </div>\r\n   </div>\r\n   <div class=\"col-md-3\">\r\n      <div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n      <div class=\"about_text\">\r\n         <h3>10x Ironman</h3>\r\n         Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n         <a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-10 15:15:21','2019-07-10 15:15:21','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2393,8,'2019-07-10 19:35:58','2019-07-10 19:35:58','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n   <div class=\"owl-carousel slider-carousel\">\r\n      <a href=\"https://www.drfields.com/11th-ironman/\"><div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/07/dr-fields-11th-triathlon.jpg\');\">\r\n      </div></a>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n         <div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n            <span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n            <span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n            <span class=\"header_text_second\">Snapping Hip Syndrome</span>\r\n            <a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n            <span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n            <span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n            <span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n            <span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n            <span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n            <span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a>\r\n         </div>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n   <div class=\"row\">\r\n      <div class=\"col-md-4 box1\">\r\n         What\'s\r\n         <h3>New</h3>\r\n         <ul>\r\n            <li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n            <li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n         </ul>\r\n      </div>\r\n      <div id=\"testimonials\" class=\"col-md-4 box2\">\r\n         Patient\r\n         <h3>Testimonials</h3>\r\n         <div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n            <div class=\"testimonial-item\">\r\n               \"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n               <h3>Larry</h3>\r\n               <h4>Stem Cell Knee</h4>\r\n            </div>\r\n            <div class=\"testimonial-item\">\r\n               \"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n               <h3>Chris, Pro Basketball Player</h3>\r\n               <h4>PRP Knee</h4>\r\n            </div>\r\n            <div class=\"testimonial-item\">\r\n               \"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n               <h3>Mary</h3>\r\n               <h4>Stem Cell Hip</h4>\r\n            </div>\r\n         </div>\r\n      </div>\r\n      <div class=\"col-md-4 box3\">\r\n         News &amp;\r\n         <h3>Events</h3>\r\n         <ul>\r\n            <li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n            <li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n         </ul>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div id=\"intro\">\r\n   <div class=\"container\">\r\n      <div class=\"col-md-12\">\r\n         <h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n         <p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n         <a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n   <div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n   <div class=\"col-md-7 about_holder\">\r\n      <h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n      <p class=\"intro_text\">Medical Physician and Chiropractor\r\n         The Athletic Doc<sup>®</sup> - 10x Ironman Triathlete\r\n      </p>\r\n   </div>\r\n   <div class=\"col-md-3\">\r\n      <div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n      <div class=\"about_text\">\r\n         <h3>About</h3>\r\n         Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n         <a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n      </div>\r\n   </div>\r\n   <div class=\"col-md-3\">\r\n      <div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n      <div class=\"about_text\">\r\n         <h3>10x Ironman</h3>\r\n         Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n         <a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-10 19:35:58','2019-07-10 19:35:58','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2394,8,'2019-07-10 19:38:56','2019-07-10 19:38:56','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n   <div class=\"owl-carousel slider-carousel\">\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n         <div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n            <span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n            <span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n            <span class=\"header_text_second\">Snapping Hip Syndrome</span>\r\n            <a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n            <span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n            <span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n            <span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n            <span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a>\r\n         </div>\r\n      </div>\r\n      <div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n         <div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n            <span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n            <span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n            <a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a>\r\n         </div>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n   <div class=\"row\">\r\n      <div class=\"col-md-4 box1\">\r\n         What\'s\r\n         <h3>New</h3>\r\n         <ul>\r\n            <li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n            <li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n            <li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n         </ul>\r\n      </div>\r\n      <div id=\"testimonials\" class=\"col-md-4 box2\">\r\n         Patient\r\n         <h3>Testimonials</h3>\r\n         <div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n            <div class=\"testimonial-item\">\r\n               \"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n               <h3>Larry</h3>\r\n               <h4>Stem Cell Knee</h4>\r\n            </div>\r\n            <div class=\"testimonial-item\">\r\n               \"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n               <h3>Chris, Pro Basketball Player</h3>\r\n               <h4>PRP Knee</h4>\r\n            </div>\r\n            <div class=\"testimonial-item\">\r\n               \"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n               <img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n               <h3>Mary</h3>\r\n               <h4>Stem Cell Hip</h4>\r\n            </div>\r\n         </div>\r\n      </div>\r\n      <div class=\"col-md-4 box3\">\r\n         News &amp;\r\n         <h3>Events</h3>\r\n         <ul>\r\n            <li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n            <li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n         </ul>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div id=\"intro\">\r\n   <div class=\"container\">\r\n      <div class=\"col-md-12\">\r\n         <h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n         <p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n         <a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n   <div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n   <div class=\"col-md-7 about_holder\">\r\n      <h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n      <p class=\"intro_text\">Medical Physician and Chiropractor\r\n         The Athletic Doc<sup>®</sup> - 10x Ironman Triathlete\r\n      </p>\r\n   </div>\r\n   <div class=\"col-md-3\">\r\n      <div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n      <div class=\"about_text\">\r\n         <h3>About</h3>\r\n         Peter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n         <a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n      </div>\r\n   </div>\r\n   <div class=\"col-md-3\">\r\n      <div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n      <div class=\"about_text\">\r\n         <h3>10x Ironman</h3>\r\n         Dr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n         <a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n      </div>\r\n   </div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-10 19:38:56','2019-07-10 19:38:56','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2395,8,'2019-07-10 19:39:41','2019-07-10 19:39:41','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-10 19:39:41','2019-07-10 19:39:41','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2396,8,'2019-07-10 19:40:18','2019-07-10 19:40:18','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/07/dr-fields-11th-triathlon.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-10 19:40:18','2019-07-10 19:40:18','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2397,8,'2019-07-10 19:41:15','2019-07-10 19:41:15','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/07/dr-fields-11th-triathlon.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-10 19:41:15','2019-07-10 19:41:15','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2398,8,'2019-07-10 19:41:33','2019-07-10 19:41:33','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/07/dr-fields-11th-triathlon.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-10 19:41:33','2019-07-10 19:41:33','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2399,8,'2019-07-10 19:45:46','2019-07-10 19:45:46','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/07/dr-fields-11th-triathlon.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;bottom: 110px;\"><a class=\"btn-more\" href=\"Contact-Us\" style=\"position: absolute;\r\n    bottom: 0px;\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-10 19:45:46','2019-07-10 19:45:46','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2400,8,'2019-07-10 19:46:29','2019-07-10 19:46:29','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/07/dr-fields-11th-triathlon.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;bottom: 110px;\"><a class=\"btn-more\" href=\"https://www.drfields.com/11th-ironman/\" style=\"position: absolute;\r\n    bottom: 0px;\">  Follow Dr. Fields Here!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Snapping Hip Syndrome</span>\r\n<a class=\"btn-more\" href=\"/Snapping-Hip-Syndrome\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-10 19:46:29','2019-07-10 19:46:29','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2419,8,'2019-07-11 16:39:24','2019-07-11 16:39:24','<strong>Is Surgery a Good Option for Meniscus Tears?</strong>\r\n\r\nMeniscal tears are quite common. So much so, that they are one of the most common injuries to the knee. Meniscal injuries are routinely treated with surgery, and many with meniscus injuries end up receiving some form of meniscectomy. Nearly 700,000 arthroscopic partial meniscectomies are performed annually in the US, at an estimated annual cost of $4 billion.<sup><a href=\"#_edn1\" name=\"_ednref1\">[i]</a></sup>  Is surgery of this type an effective way to treat meniscal injuries? Believe it or not, research shows that it is not! Several studies question the effectiveness of this procedure. One study found that almost half of patients who received non-operative treatment with nonsteroidal anti-inflammatory drugs improved well enough to avoid surgery.<sup><a href=\"#_edn2\" name=\"_ednref2\">[ii]</a></sup> Three other studies compared arthroscopic meniscectomies with sham surgeries. (A sham surgery is a faked surgical intervention that omits the step necessary for the surgery to be therapeutic.) What were the results?  They found no significant difference between meniscectomy and sham surgery, and they did not find meniscectomies to be effective.<sup><a href=\"#_edn3\" name=\"_ednref3\">[iii]</a></sup><sup>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup> Additionally, the most recent study showed the surgery did not reduce the mechanical symptoms of knee catching and locking.<sup><a href=\"#_edn5\" name=\"_ednref5\">[v]</a></sup> As you can see, the effectiveness of meniscectomies is questionable.\r\n\r\n<strong>If Meniscus Surgeries Are Ineffective, Then Why Are They Done?</strong>\r\n\r\nPatients usually believe the surgery will help their knee to function better and lessen the pain they are experiencing. When the knee locks and catches randomly, people want that to stop, especially since knee locking can be painful. If the person with these symptoms is an athlete, they want to get back to their sport quickly, and they think surgery is going to make that happen. People generally think that surgery can get them back to work or play sooner than other treatment options. But evidence and research does not back up this way of thinking. In fact, many patients are worse off after the surgery.\r\n\r\n<strong>If You Want to Keep Your Knee Intact, Then Keep Your Meniscus!</strong>\r\n\r\nWhen part of the knee, like the meniscus, is removed, the knee is unable to function normally. Removing the meniscus makes the knee unstable. The instability leads to the development of more knee problems. The joint instability that arises after removal of the meniscus negatively affects the interplay between the other structures of the knee, because extra stress is placed on them. When more stress is placed on the cartilage, degeneration is accelerated, boosting the arthritic process. More stress is also placed on the various ligaments and tendons supporting the knee, eventually damaging them and leading to the breakdown of the knee joint and irreversible joint damage. It has been proven in studies that new onset instability is demonstrated after a partial meniscectomy,<sup><a href=\"#_edn6\" name=\"_ednref6\">[vi]</a></sup><sup>,<a href=\"#_edn7\" name=\"_ednref7\">[vii]</a></sup> with significant rates of cartilage loss transpiring after both partial and complete meniscectomy, and that these procedures lead to degenerative arthritis and ligament injury in the knee. <sup><a href=\"#_edn8\" name=\"_ednref8\">[viii]</a></sup><sup>,<a href=\"#_edn9\" name=\"_ednref9\">[ix]</a></sup><sup>,<a href=\"#_edn10\" name=\"_ednref10\">[x]</a></sup> And this information is not new! Adverse effects associated with meniscectomy have been documented in the literature going as far back as 1923.<sup><a href=\"#_edn11\" name=\"_ednref11\">[xi]</a></sup><sup>,<a href=\"#_edn12\" name=\"_ednref12\">[xii]</a></sup><sup>,<a href=\"#_edn13\" name=\"_ednref13\">[xiii]</a></sup><sup>,<a href=\"#_edn14\" name=\"_ednref14\">[xiv]</a></sup>\r\n\r\n<strong>Regenerative Orthopedics Effectively Repairs Meniscus Tears Non-Surgically</strong>\r\n\r\nGiven the accumulation of evidence demonstrating not only the overwhelming lack of efficacy and benefit, but also the risk of serious adverse effects of this widely used procedure for meniscus tears, it is important to consider potential safe and effective alternatives. Regenerative Orthopedics is a non-surgical solution, used to effectively treat knee injuries such as meniscus tears, as well as other soft tissue injuries like ligament and tendon injuries.<sup><a href=\"#_edn15\" name=\"_ednref15\">[xv]</a></sup><sup>,<a href=\"#_edn16\" name=\"_ednref16\">[xvi]</a></sup> Regenerative Orthopedic treatments work by initiating the inflammatory stage of the healing process, raising the levels of growth factors, and initiating repair. The treatments stimulate new cell growth and rebuild depleted tissue, including the regeneration of cartilage.\r\n\r\nIn certain cases, Platelet Rich Plasma may be utilized. This involves the injection of your own blood components to facilitate the healing of tissue that has degenerated. Platelets are the storehouses of growth factors, and platelet rich plasma is abundant in growth factors, capable of stimulating healing of the injured tissue.\r\n\r\nRegenerative Orthopedic treatments can safely and effectively treat meniscus tears without the need for surgery, returning you quickly to the activities and sports you enjoy.\r\n\r\n<hr />\r\n\r\n<sup>[i]</sup> <span style=\"font-size: 10px;\">Lowry F. Real knee surgery no better than sham for meniscal tear. <em>Medscape Medical News</em>. December 27, 2013.</span>\r\n\r\n<sup>[ii]</sup> <span style=\"font-size: 10px;\">Rimington T, Mallik K, Evans D, Mroczek K, Reider B. A prospective study of the nonoperative treatment of degenerative meniscus tears. Orthopedics 2009 August; 32(8). DOI: 10.3928/01477447-20090624-06.</span>\r\n\r\n<sup>[iii]</sup> <span style=\"font-size: 10px;\">Sihvonen R, Paavola M, Malmivaara A, <em>et al</em>. Arthroscopic partial meniscectomy versus sham surgery for a degenerative meniscal tear. N Engl J Med. 2013; 369:2515-2524.</span>\r\n\r\n<sup>[iv]</sup> <span style=\"font-size: 10px;\">Khan M, Evaniew N, Bedi A, Ayeni OR, Bhandari M. Arthroscopic surgery for degenerative tears of the meniscus: a systematic review and meta-analysis. CMAJ.2014;186(14):1057-1064.</span>\r\n\r\n<sup>[v]</sup> <span style=\"font-size: 10px;\">Sihvonen R, Englund M, Turkiewicz A, Järvinen TLN. Mechanical symptoms and arthroscopic partial meniscectomy in patients with degenerative meniscus tear: a secondary analysis of a randomized trial. Ann Intern Med<em>. </em>Published online 9 February 2016 doi:10.7326/M15-0899.</span>\r\n\r\n<sup>[vi]</sup> <span style=\"font-size: 10px;\">Demange MK, Von Keudell A, Gomoll AH. Iatrogenic instability of the lateral meniscus after partial meniscectomy. Knee 2013; 20(5): 360-363.</span>\r\n\r\n<sup>[vii]</sup> <span style=\"font-size: 10px;\">Arno S, Hadley S, Campbell KA, et al. The effect of arthroscopic partial medial meniscectomy on tibiofemoral stability. Am J Sports Med. 2013; 41(1): 73-79.</span>\r\n\r\n<sup>[viii]</sup> <span style=\"font-size: 10px;\">Flavia M, Forbes A, Yuanyuan W, Rush G, Stuckey SL .Rate of knee cartilage loss after partial meniscectomy. The Journal of Rheumatology 2002;29(9):1954-1956.</span>\r\n\r\n<sup>[ix]</sup> <span style=\"font-size: 10px;\">Englund M, Roos EM, Lohmander LS. Impact of type of meniscal tear on radiographic symptomatic knee osteoarthritis. A sixteen-year follow-up of meniscectomy with matched controls. Arthritis and Rheumatism. 2003;48:2178-2187.</span>\r\n\r\n<sup>[x]</sup> <span style=\"font-size: 10px;\">Johnson RJ, Kettelkamp DB, Clark W, Leaverton P. Factors affecting late results after meniscectomy. The Journal of Bone and Joint Surgery1974;56A:719-729.</span>\r\n\r\n<sup>[xi]</sup> <span style=\"font-size: 10px;\">Berthiaume MJ, Raynauld JP, Martel-Pelletier J, et al. Meniscal tear and extrusion are strongly associated with progression of symptomatic knee osteoarthritis as assessed by quantitative magnetic resonance imaging. Ann Rheum Dis 2005;64(4):556-563.</span>\r\n\r\n<sup>[xii]</sup> <span style=\"font-size: 10px;\">Baratz M. Meniscal tears: the effect of meniscectomy and of repair on intra-articular contact areas and stress in the human knee. American Journal of Sports Medicine 1986;14:270-275.</span>\r\n\r\n<sup>[xiii]</sup> <span style=\"font-size: 10px;\">McNeill Love R.<em> </em>Prognosis after removal of semilunar cartilages.<em> </em>Br Med J 1923; 2:324–6.</span>\r\n\r\n<sup>[xiv]</sup> <span style=\"font-size: 10px;\">McDermott ID, Amis AA. The consequences of meniscectomy. Journal of Bone &amp; Joint Surgery, British Volume. 2006 Dec 1;88(12):1549-56.</span>\r\n\r\n<sup>[xv]</sup> <span style=\"font-size: 10px;\">Hackett GS, Hemwall GA, Montgomery GA. Ligament and Tendon Relaxation Treated by Prolotherapy. 5th ed. Oak Park, IL: Gustav A. Hemwall; 1993.</span>\r\n\r\n<sup>[xvi]</sup> <span style=\"font-size: 10px;\">Hauser RA, Blakemore PJ, Wang J, Steilen D. Structural basis of joint instability as cause for chronic musculoskeletal pain and its successful treatment with regenerative injection therapy (prolotherapy). The Open Pain Journal 2014; 7: 9-22.</span>','Is Surgery a Good Option for Meniscus Tears?','','publish','closed','closed','','is-surgery-a-good-option-for-meniscus-tears','','','2019-07-16 18:20:25','2019-07-16 18:20:25','',0,'https://www.drfields.com/?page_id=2419',0,'page','',0),(2420,8,'2019-07-11 16:39:24','2019-07-11 16:39:24','<strong>Is Surgery a Good Option for Meniscus Tears?</strong>\r\n\r\nMeniscal tears are quite common. So much so, that they are one of the most common injuries to the knee. Meniscal injuries are routinely treated with surgery, and many with meniscus injuries end up receiving some form of meniscectomy. Nearly 700,000 arthroscopic partial meniscectomies are performed annually in the US, at an estimated annual cost of $4 billion.<sup><a href=\"#_edn1\" name=\"_ednref1\">[i]</a></sup>  Is surgery of this type an effective way to treat meniscal injuries? Believe it or not, research show that it is not! Several studies question the effectiveness of this procedure. One study found that almost half of patients who received non-operative treatment with nonsteroidal anti-inflammatory drugs improved well enough to avoid surgery.<sup><a href=\"#_edn2\" name=\"_ednref2\">[ii]</a></sup> Three other studies compared arthroscopic meniscectomies with sham surgeries. A sham surgery is a faked surgical intervention that omits the step necessary for the surgery to be therapeutic. What were the results?  They found no significant difference between meniscectomy and sham surgery, and they did not find meniscectomies to be effective.<sup><a href=\"#_edn3\" name=\"_ednref3\">[iii]</a></sup><sup>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup> The most recent study, showed the surgery did not reduce the mechanical symptoms of knee catching and locking.<sup><a href=\"#_edn5\" name=\"_ednref5\">[v]</a></sup> As you can see, the effectiveness of meniscectomies is questionable.\r\n\r\n<strong>If Meniscus Surgeries Are Ineffective, Then Why Are They Done?</strong>\r\n\r\nPatients usually believe the surgery will help their knee to function better and lessen the pain they are experiencing. When the knee locks and catches randomly, people want that to stop, especially since knee locking can be painful. If the person with these symptoms is an athlete, they want to get back to their sport quickly, and they think surgery is going to make that happen. People generally think that surgery can get them back to work or play sooner than going through physical therapy or other treatment options. But evidence and research does not back this way of thinking. In fact, many patients are worse off after the surgery.\r\n\r\n<strong>If You Want to Keep Your Knee Intact, Then Keep Your Meniscus!</strong>\r\n\r\nWhen part of the knee, like the meniscus, is removed, the knee is unable to function normally. Removing the meniscus makes the knee unstable. The instability leads to the development of more knee problems. The joint instability that arises after removal of the meniscus negatively affects the interplay between the other structures of the knee, because extra stress is placed on them. When more stress is placed on the cartilage, degeneration is accelerated, boosting the arthritic process. More stress is also placed on the various ligaments and tendons supporting the knee, eventually damaging them and leading to the breakdown of the knee joint and irreversible joint damage. It has been proven in studies that new onset instability is demonstrated after partial meniscectomy,<sup><a href=\"#_edn6\" name=\"_ednref6\">[vi]</a></sup><sup>,<a href=\"#_edn7\" name=\"_ednref7\">[vii]</a></sup> with significant rates of cartilage loss transpiring after both partial and complete meniscectomy, and that these procedures lead to degenerative arthritis and ligament injury in the knee. <sup><a href=\"#_edn8\" name=\"_ednref8\">[viii]</a></sup><sup>,<a href=\"#_edn9\" name=\"_ednref9\">[ix]</a></sup><sup>,<a href=\"#_edn10\" name=\"_ednref10\">[x]</a></sup> And this information is not new! Adverse effects associated with meniscectomy have been documented in the literature going as far back as 1923.<sup><a href=\"#_edn11\" name=\"_ednref11\">[xi]</a></sup><sup>,<a href=\"#_edn12\" name=\"_ednref12\">[xii]</a></sup><sup>,<a href=\"#_edn13\" name=\"_ednref13\">[xiii]</a></sup><sup>,<a href=\"#_edn14\" name=\"_ednref14\">[xiv]</a></sup>\r\n\r\n<strong>Regenerative Orthopedics Effectively Repairs Meniscus Tears Non-Surgically</strong>\r\n\r\nGiven the accumulation of evidence <span style=\"text-decoration: line-through;\">t</span>hat demonstrates not only the overwhelming lack of efficacy and benefit, but also the risk of serious adverse effects of this widely used procedure for meniscus tears, it is important to consider potential safe and effective alternatives. Regenerative Orthopedics is a non-surgical solution, used to effectively treat knee injuries such as meniscus tears, as well as other soft tissue injuries like ligaments and tendons.<sup><a href=\"#_edn15\" name=\"_ednref15\">[xv]</a></sup><sup>,<a href=\"#_edn16\" name=\"_ednref16\">[xvi]</a></sup> Regenerative Orthopedic treatments work by initiating the inflammatory stage of the healing process, raising the levels of growth factors, and initiating repair. The treatments stimulate new cell growth and rebuild depleted tissue, including the regeneration of cartilage.\r\n\r\nIn certain cases, Platelet Rich Plasma may be utilized. This involves injection of your own blood components to facilitate the healing of tissue that has degenerated. Platelets are the storehouses of growth factors, and platelet rich plasma is abundant in growth factors, capable of stimulating healing of the injured tissue.\r\n\r\nRegenerative Orthopedic treatments can safely and effectively treat meniscus tears without the need for surgery, returning you quickly to the activities and sports you enjoy.\r\n\r\n<hr />\r\n\r\n<sup>[i]</sup> <span style=\"font-size:10px;\">Lowry F. Real knee surgery no better than sham for meniscal tear. <em>Medscape Medical News</em>. December 27, 2013.</span>\r\n\r\n<sup>[ii]</sup> <span style=\"font-size:10px;\">Rimington T, Mallik K, Evans D, Mroczek K, Reider B. A prospective study of the nonoperative treatment of degenerative meniscus tears. Orthopedics 2009 August; 32(8). DOI: 10.3928/01477447-20090624-06.</span>\r\n\r\n<sup>[iii]</sup> <span style=\"font-size:10px;\">Sihvonen R, Paavola M, Malmivaara A, <em>et al</em>. Arthroscopic partial meniscectomy versus sham surgery for a degenerative meniscal tear. N Engl J Med. 2013; 369:2515-2524.</span>\r\n\r\n<sup>[iv]</sup> <span style=\"font-size:10px;\">Khan M, Evaniew N, Bedi A, Ayeni OR, Bhandari M. Arthroscopic surgery for degenerative tears of the meniscus: a systematic review and meta-analysis. CMAJ.2014;186(14):1057-1064.</span>\r\n\r\n<sup>[v]</sup> <span style=\"font-size:10px;\">Sihvonen R, Englund M, Turkiewicz A, Järvinen TLN. Mechanical symptoms and arthroscopic partial meniscectomy in patients with degenerative meniscus tear: a secondary analysis of a randomized trial. Ann Intern Med<em>. </em>Published online 9 February 2016 doi:10.7326/M15-0899.</span>\r\n\r\n<sup>[vi]</sup> <span style=\"font-size:10px;\">Demange MK, Von Keudell A, Gomoll AH. Iatrogenic instability of the lateral meniscus after partial meniscectomy. Knee 2013; 20(5): 360-363.</span>\r\n\r\n<sup>[vii]</sup> <span style=\"font-size:10px;\">Arno S, Hadley S, Campbell KA, et al. The effect of arthroscopic partial medial meniscectomy on tibiofemoral stability. Am J Sports Med. 2013; 41(1): 73-79.</span>\r\n\r\n<sup>[viii]</sup> <span style=\"font-size:10px;\">Flavia M, Forbes A, Yuanyuan W, Rush G, Stuckey SL .Rate of knee cartilage loss after partial meniscectomy. The Journal of Rheumatology 2002;29(9):1954-1956.</span>\r\n\r\n<sup>[ix]</sup> <span style=\"font-size:10px;\">Englund M, Roos EM, Lohmander LS. Impact of type of meniscal tear on radiographic symptomatic knee osteoarthritis. A sixteen-year follow-up of meniscectomy with matched controls. Arthritis and Rheumatism. 2003;48:2178-2187.</span>\r\n\r\n<sup>[x]</sup> <span style=\"font-size:10px;\">Johnson RJ, Kettelkamp DB, Clark W, Leaverton P. Factors affecting late results after meniscectomy. The Journal of Bone and Joint Surgery1974;56A:719-729.</span>\r\n\r\n<sup>[xi]</sup> <span style=\"font-size:10px;\">Berthiaume MJ, Raynauld JP, Martel-Pelletier J, et al. Meniscal tear and extrusion are strongly associated with progression of symptomatic knee osteoarthritis as assessed by quantitative magnetic resonance imaging. Ann Rheum Dis 2005;64(4):556-563.</span>\r\n\r\n<sup>[xii]</sup> <span style=\"font-size:10px;\">Baratz M. Meniscal tears: the effect of meniscectomy and of repair on intra-articular contact areas and stress in the human knee. American Journal of Sports Medicine 1986;14:270-275.</span>\r\n\r\n<sup>[xiii]</sup> <span style=\"font-size:10px;\">McNeill Love R.<em> </em>Prognosis after removal of semilunar cartilages.<em> </em>Br Med J 1923; 2:324–6.</span>\r\n\r\n<sup>[xiv]</sup> <span style=\"font-size:10px;\">McDermott ID, Amis AA. The consequences of meniscectomy. Journal of Bone &amp; Joint Surgery, British Volume. 2006 Dec 1;88(12):1549-56.</span>\r\n\r\n<sup>[xv]</sup> <span style=\"font-size:10px;\">Hackett GS, Hemwall GA, Montgomery GA. Ligament and Tendon Relaxation Treated by Prolotherapy. 5th ed. Oak Park, IL: Gustav A. Hemwall; 1993.</span>\r\n\r\n<sup>[xvi]</sup> <span style=\"font-size:10px;\">Hauser RA, Blakemore PJ, Wang J, Steilen D. Structural basis of joint instability as cause for chronic musculoskeletal pain and its successful treatment with regenerative injection therapy (prolotherapy). The Open Pain Journal 2014; 7: 9-22.</span>','Is Surgery a Good Option for Meniscus Tears','','inherit','closed','closed','','2419-revision-v1','','','2019-07-11 16:39:24','2019-07-11 16:39:24','',2419,'https://www.drfields.com/uncategorized/2419-revision-v1/',0,'revision','',0),(2421,8,'2019-07-11 16:40:29','2019-07-11 16:40:29','<strong>Is Surgery a Good Option for Meniscus Tears?</strong>\r\n\r\nMeniscal tears are quite common. So much so, that they are one of the most common injuries to the knee. Meniscal injuries are routinely treated with surgery, and many with meniscus injuries end up receiving some form of meniscectomy. Nearly 700,000 arthroscopic partial meniscectomies are performed annually in the US, at an estimated annual cost of $4 billion.<sup><a href=\"#_edn1\" name=\"_ednref1\">[i]</a></sup>  Is surgery of this type an effective way to treat meniscal injuries? Believe it or not, research show that it is not! Several studies question the effectiveness of this procedure. One study found that almost half of patients who received non-operative treatment with nonsteroidal anti-inflammatory drugs improved well enough to avoid surgery.<sup><a href=\"#_edn2\" name=\"_ednref2\">[ii]</a></sup> Three other studies compared arthroscopic meniscectomies with sham surgeries. A sham surgery is a faked surgical intervention that omits the step necessary for the surgery to be therapeutic. What were the results?  They found no significant difference between meniscectomy and sham surgery, and they did not find meniscectomies to be effective.<sup><a href=\"#_edn3\" name=\"_ednref3\">[iii]</a></sup><sup>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup> The most recent study, showed the surgery did not reduce the mechanical symptoms of knee catching and locking.<sup><a href=\"#_edn5\" name=\"_ednref5\">[v]</a></sup> As you can see, the effectiveness of meniscectomies is questionable.\r\n\r\n<strong>If Meniscus Surgeries Are Ineffective, Then Why Are They Done?</strong>\r\n\r\nPatients usually believe the surgery will help their knee to function better and lessen the pain they are experiencing. When the knee locks and catches randomly, people want that to stop, especially since knee locking can be painful. If the person with these symptoms is an athlete, they want to get back to their sport quickly, and they think surgery is going to make that happen. People generally think that surgery can get them back to work or play sooner than going through physical therapy or other treatment options. But evidence and research does not back this way of thinking. In fact, many patients are worse off after the surgery.\r\n\r\n<strong>If You Want to Keep Your Knee Intact, Then Keep Your Meniscus!</strong>\r\n\r\nWhen part of the knee, like the meniscus, is removed, the knee is unable to function normally. Removing the meniscus makes the knee unstable. The instability leads to the development of more knee problems. The joint instability that arises after removal of the meniscus negatively affects the interplay between the other structures of the knee, because extra stress is placed on them. When more stress is placed on the cartilage, degeneration is accelerated, boosting the arthritic process. More stress is also placed on the various ligaments and tendons supporting the knee, eventually damaging them and leading to the breakdown of the knee joint and irreversible joint damage. It has been proven in studies that new onset instability is demonstrated after partial meniscectomy,<sup><a href=\"#_edn6\" name=\"_ednref6\">[vi]</a></sup><sup>,<a href=\"#_edn7\" name=\"_ednref7\">[vii]</a></sup> with significant rates of cartilage loss transpiring after both partial and complete meniscectomy, and that these procedures lead to degenerative arthritis and ligament injury in the knee. <sup><a href=\"#_edn8\" name=\"_ednref8\">[viii]</a></sup><sup>,<a href=\"#_edn9\" name=\"_ednref9\">[ix]</a></sup><sup>,<a href=\"#_edn10\" name=\"_ednref10\">[x]</a></sup> And this information is not new! Adverse effects associated with meniscectomy have been documented in the literature going as far back as 1923.<sup><a href=\"#_edn11\" name=\"_ednref11\">[xi]</a></sup><sup>,<a href=\"#_edn12\" name=\"_ednref12\">[xii]</a></sup><sup>,<a href=\"#_edn13\" name=\"_ednref13\">[xiii]</a></sup><sup>,<a href=\"#_edn14\" name=\"_ednref14\">[xiv]</a></sup>\r\n\r\n<strong>Regenerative Orthopedics Effectively Repairs Meniscus Tears Non-Surgically</strong>\r\n\r\nGiven the accumulation of evidence <span style=\"text-decoration: line-through;\">t</span>hat demonstrates not only the overwhelming lack of efficacy and benefit, but also the risk of serious adverse effects of this widely used procedure for meniscus tears, it is important to consider potential safe and effective alternatives. Regenerative Orthopedics is a non-surgical solution, used to effectively treat knee injuries such as meniscus tears, as well as other soft tissue injuries like ligaments and tendons.<sup><a href=\"#_edn15\" name=\"_ednref15\">[xv]</a></sup><sup>,<a href=\"#_edn16\" name=\"_ednref16\">[xvi]</a></sup> Regenerative Orthopedic treatments work by initiating the inflammatory stage of the healing process, raising the levels of growth factors, and initiating repair. The treatments stimulate new cell growth and rebuild depleted tissue, including the regeneration of cartilage.\r\n\r\nIn certain cases, Platelet Rich Plasma may be utilized. This involves injection of your own blood components to facilitate the healing of tissue that has degenerated. Platelets are the storehouses of growth factors, and platelet rich plasma is abundant in growth factors, capable of stimulating healing of the injured tissue.\r\n\r\nRegenerative Orthopedic treatments can safely and effectively treat meniscus tears without the need for surgery, returning you quickly to the activities and sports you enjoy.\r\n\r\n<hr />\r\n\r\n<sup>[i]</sup> <span style=\"font-size:10px;\">Lowry F. Real knee surgery no better than sham for meniscal tear. <em>Medscape Medical News</em>. December 27, 2013.</span>\r\n\r\n<sup>[ii]</sup> <span style=\"font-size:10px;\">Rimington T, Mallik K, Evans D, Mroczek K, Reider B. A prospective study of the nonoperative treatment of degenerative meniscus tears. Orthopedics 2009 August; 32(8). DOI: 10.3928/01477447-20090624-06.</span>\r\n\r\n<sup>[iii]</sup> <span style=\"font-size:10px;\">Sihvonen R, Paavola M, Malmivaara A, <em>et al</em>. Arthroscopic partial meniscectomy versus sham surgery for a degenerative meniscal tear. N Engl J Med. 2013; 369:2515-2524.</span>\r\n\r\n<sup>[iv]</sup> <span style=\"font-size:10px;\">Khan M, Evaniew N, Bedi A, Ayeni OR, Bhandari M. Arthroscopic surgery for degenerative tears of the meniscus: a systematic review and meta-analysis. CMAJ.2014;186(14):1057-1064.</span>\r\n\r\n<sup>[v]</sup> <span style=\"font-size:10px;\">Sihvonen R, Englund M, Turkiewicz A, Järvinen TLN. Mechanical symptoms and arthroscopic partial meniscectomy in patients with degenerative meniscus tear: a secondary analysis of a randomized trial. Ann Intern Med<em>. </em>Published online 9 February 2016 doi:10.7326/M15-0899.</span>\r\n\r\n<sup>[vi]</sup> <span style=\"font-size:10px;\">Demange MK, Von Keudell A, Gomoll AH. Iatrogenic instability of the lateral meniscus after partial meniscectomy. Knee 2013; 20(5): 360-363.</span>\r\n\r\n<sup>[vii]</sup> <span style=\"font-size:10px;\">Arno S, Hadley S, Campbell KA, et al. The effect of arthroscopic partial medial meniscectomy on tibiofemoral stability. Am J Sports Med. 2013; 41(1): 73-79.</span>\r\n\r\n<sup>[viii]</sup> <span style=\"font-size:10px;\">Flavia M, Forbes A, Yuanyuan W, Rush G, Stuckey SL .Rate of knee cartilage loss after partial meniscectomy. The Journal of Rheumatology 2002;29(9):1954-1956.</span>\r\n\r\n<sup>[ix]</sup> <span style=\"font-size:10px;\">Englund M, Roos EM, Lohmander LS. Impact of type of meniscal tear on radiographic symptomatic knee osteoarthritis. A sixteen-year follow-up of meniscectomy with matched controls. Arthritis and Rheumatism. 2003;48:2178-2187.</span>\r\n\r\n<sup>[x]</sup> <span style=\"font-size:10px;\">Johnson RJ, Kettelkamp DB, Clark W, Leaverton P. Factors affecting late results after meniscectomy. The Journal of Bone and Joint Surgery1974;56A:719-729.</span>\r\n\r\n<sup>[xi]</sup> <span style=\"font-size:10px;\">Berthiaume MJ, Raynauld JP, Martel-Pelletier J, et al. Meniscal tear and extrusion are strongly associated with progression of symptomatic knee osteoarthritis as assessed by quantitative magnetic resonance imaging. Ann Rheum Dis 2005;64(4):556-563.</span>\r\n\r\n<sup>[xii]</sup> <span style=\"font-size:10px;\">Baratz M. Meniscal tears: the effect of meniscectomy and of repair on intra-articular contact areas and stress in the human knee. American Journal of Sports Medicine 1986;14:270-275.</span>\r\n\r\n<sup>[xiii]</sup> <span style=\"font-size:10px;\">McNeill Love R.<em> </em>Prognosis after removal of semilunar cartilages.<em> </em>Br Med J 1923; 2:324–6.</span>\r\n\r\n<sup>[xiv]</sup> <span style=\"font-size:10px;\">McDermott ID, Amis AA. The consequences of meniscectomy. Journal of Bone &amp; Joint Surgery, British Volume. 2006 Dec 1;88(12):1549-56.</span>\r\n\r\n<sup>[xv]</sup> <span style=\"font-size:10px;\">Hackett GS, Hemwall GA, Montgomery GA. Ligament and Tendon Relaxation Treated by Prolotherapy. 5th ed. Oak Park, IL: Gustav A. Hemwall; 1993.</span>\r\n\r\n<sup>[xvi]</sup> <span style=\"font-size:10px;\">Hauser RA, Blakemore PJ, Wang J, Steilen D. Structural basis of joint instability as cause for chronic musculoskeletal pain and its successful treatment with regenerative injection therapy (prolotherapy). The Open Pain Journal 2014; 7: 9-22.</span>','Is Surgery a Good Option for Meniscus Tears?','','inherit','closed','closed','','2419-revision-v1','','','2019-07-11 16:40:29','2019-07-11 16:40:29','',2419,'https://www.drfields.com/uncategorized/2419-revision-v1/',0,'revision','',0),(2422,8,'2019-07-11 16:40:32','2019-07-11 16:40:32','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/07/dr-fields-11th-triathlon.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;bottom: 110px;\"><a class=\"btn-more\" href=\"https://www.drfields.com/11th-ironman/\" style=\"position: absolute;\r\n    bottom: 0px;\">  Follow Dr. Fields Here!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Is Surgery a Good Option for Meniscus Tears?</span>\r\n<a class=\"btn-more\" href=\"/is-surgery-a-good-option-for-meniscus-tears\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-11 16:40:32','2019-07-11 16:40:32','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2423,8,'2019-07-11 20:52:34','2019-07-11 20:52:34','Vitoria Gazteiz Banner','Vitoria Gazteiz Banner','Vitoria Gazteiz Banner','inherit','open','closed','','vitoria-gazteiz-banner','','','2019-07-11 20:52:34','2019-07-11 20:52:34','',2109,'https://www.drfields.com/wp-content/uploads/2019/07/Vitoria-Gazteiz-banner.png',0,'attachment','image/png',0),(2424,8,'2019-07-11 20:52:43','2019-07-11 20:52:43','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/07/Vitoria-Gazteiz-banner.png\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;bottom: 110px;\"><a class=\"btn-more\" href=\"https://www.drfields.com/11th-ironman/\" style=\"position: absolute;\r\n    bottom: 0px;\">  Follow Dr. Fields Here!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Is Surgery a Good Option for Meniscus Tears?</span>\r\n<a class=\"btn-more\" href=\"/is-surgery-a-good-option-for-meniscus-tears\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-11 20:52:43','2019-07-11 20:52:43','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2425,8,'2019-07-11 20:53:27','2019-07-11 20:53:27','Homepage Banner','Homepage Banner','Homepage Banner','inherit','open','closed','','homepage-banner','','','2019-07-11 20:53:27','2019-07-11 20:53:27','',2109,'https://www.drfields.com/wp-content/uploads/2019/07/homepage-banner.jpg',0,'attachment','image/jpeg',0),(2426,8,'2019-07-11 20:53:38','2019-07-11 20:53:38','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/07/homepage-banner.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;bottom: 110px;\"><a class=\"btn-more\" href=\"https://www.drfields.com/11th-ironman/\" style=\"position: absolute;\r\n    bottom: 0px;\">  Follow Dr. Fields Here!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Is Surgery a Good Option for Meniscus Tears?</span>\r\n<a class=\"btn-more\" href=\"/is-surgery-a-good-option-for-meniscus-tears\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-11 20:53:38','2019-07-11 20:53:38','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2428,0,'2019-07-12 21:03:51','2019-07-12 21:03:51','melaniewadefitness@gmail.com\nMelanie Wade','melaniewadefitness@gmail.com','','publish','closed','closed','','melaniewadefitness-gmail-com','','','2019-07-12 21:03:51','2019-07-12 21:03:51','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2428',0,'flamingo_contact','',0),(2429,0,'2019-07-12 21:03:51','2019-07-12 21:03:51','Melanie Wade\nmelaniewadefitness@gmail.com\n4083008330\n1pm-3pm\nHi. I was referred by my friend/chiropractor Marv who had stem cell therapy done by Dr. Fields. \r\n\r\nI injured my right knee at work while stepping off the fire engine.  The step off the engine is usually about 1-2 feet high.  We were parked on a high angle slope which created a 3-4 foot step. I instantly felt a pop and fell to the ground. I was rushed to ER where i found i had a fractured tibia and a torn meniscus. I was off duty for 8 months while recovering from a meniscectomy. I’ve had 2 PRP’s performed and i think it helped but I’m not too sure. I’ve heard amazing things about your practice and would appreciate an evaluation. \r\n\r\nMy goal is to return to the active lifestyle i had. I’m a full time firefighter for San Francisco fire department. Sports are my life. I’ve been a Crossfit games competitor and college softball player/ cross county runner and my dream is to stay active and not settle for more knee surgeries. Thank you\n2\n174.214.13.67\nMozilla/5.0 (iPhone; CPU iPhone OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1\nhttps://www.drfields.com/contact/\nJuly 12, 2019\n9:03 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-2','','','2019-07-12 21:03:51','2019-07-12 21:03:51','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2429',0,'flamingo_inbound','',0),(2430,0,'2019-07-13 12:47:55','2019-07-13 12:47:55','geneva.holliday@gmail.com\nGeneva Holliday','geneva.holliday@gmail.com','','publish','closed','closed','','geneva-holliday-gmail-com','','','2019-07-13 12:47:55','2019-07-13 12:47:55','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2430',0,'flamingo_contact','',0),(2431,0,'2019-07-13 12:47:55','2019-07-13 12:47:55','Geneva Holliday\ngeneva.holliday@gmail.com\n06-94050720\n9am-11am\nHello\r\n\r\nI want to say what a beautiful webshop you have made.\r\nI am a regular customer of your shop.\r\nI had visited your store last month, and I saw a very nice item i wanne order.\r\nBut I have a question! today I wanted to order it, but can not find the product anymore in your store.\r\nThe item looks like the first picture on this shop.  http://bit.ly/CellphoneScreenshot4635\r\nI hope you will sell it again soon.\r\nI\'ll wait.\r\n\r\nRegards\nHi\r\n\r\nI want to say what a nice site you have made.\r\nI am a regular customer of your shop.\r\nI had visited your webshop last month, and I saw a very nice item i wanne buy.\r\nBut I have a question! today I wanted to order it, but can not find the product anymore in your store.\r\nThe item looks like the first picture on this webshop.  http://bit.ly/CellphonePicture8362\r\nI hope you will sell it again soon.\r\nI\'ll wait.\r\n\r\nSincerely\n3\n78.154.180.12\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nJuly 13, 2019\n12:47 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-3','','','2019-07-13 12:47:55','2019-07-13 12:47:55','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2431',0,'flamingo_inbound','',0),(2432,0,'2019-07-13 19:02:25','2019-07-13 19:02:25','arthur.escobedo@gmail.com\nArthur Escobedo','arthur.escobedo@gmail.com','','publish','closed','closed','','arthur-escobedo-gmail-com','','','2019-07-13 19:02:25','2019-07-13 19:02:25','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2432',0,'flamingo_contact','',0),(2433,0,'2019-07-13 19:02:25','2019-07-13 19:02:25','Arthur Escobedo\narthur.escobedo@gmail.com\n030 74 48 30\n1pm-3pm\nFor less than $49 every month I can get hundreds of qualified buyers to visit your site. Would you be interested in finding out more? Just send a reply to this email address to get more details: morevisitors4you@gmail.com\nFor less than $40 per month I can get tons of high converting visitors to visit your site. Interested in how this works? Just reply to this email address for more information: morevisitors4you@gmail.com\n4\n104.245.145.4\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nJuly 13, 2019\n7:02 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-4','','','2019-07-13 19:02:25','2019-07-13 19:02:25','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2433',0,'flamingo_inbound','',0),(2434,8,'2019-07-16 02:39:04','2019-07-16 02:39:04','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Is Surgery a Good Option for Meniscus Tears?</span>\r\n<a class=\"btn-more\" href=\"/is-surgery-a-good-option-for-meniscus-tears\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-16 02:39:04','2019-07-16 02:39:04','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2435,0,'2019-07-16 07:31:58','2019-07-16 07:31:58','pamela.spann@gmail.com\nPamela Spann','pamela.spann@gmail.com','','publish','closed','closed','','pamela-spann-gmail-com','','','2019-07-16 07:31:58','2019-07-16 07:31:58','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2435',0,'flamingo_contact','',0),(2436,0,'2019-07-16 07:31:58','2019-07-16 07:31:58','Pamela Spann\npamela.spann@gmail.com\n418 7453\n3pm-5pm\nFor less than $39 per month I can get thousands of high converting visitors to come to your site. Want to learn more? Send a reply here for info: morevisitors4you@gmail.com\nFor less than $39 per month I can get hundreds of people who are ready to buy to come to your site. Interested in how this works? Reply here for details: morevisitors4you@gmail.com\n5\n184.75.211.148\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nJuly 16, 2019\n7:31 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-5','','','2019-07-16 07:31:58','2019-07-16 07:31:58','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2436',0,'flamingo_inbound','',0),(2438,8,'2019-07-16 18:19:37','2019-07-16 18:19:37','<strong>Is Surgery a Good Option for Meniscus Tears?</strong>\n\nMeniscal tears are quite common. So much so, that they are one of the most common injuries to the knee. Meniscal injuries are routinely treated with surgery, and many with meniscus injuries end up receiving some form of meniscectomy. Nearly 700,000 arthroscopic partial meniscectomies are performed annually in the US, at an estimated annual cost of $4 billion.<sup><a href=\"#_edn1\" name=\"_ednref1\">[i]</a></sup>  Is surgery of this type an effective way to treat meniscal injuries? Believe it or not, research shows that it is not! Several studies question the effectiveness of this procedure. One study found that almost half of patients who received non-operative treatment with nonsteroidal anti-inflammatory drugs improved well enough to avoid surgery.<sup><a href=\"#_edn2\" name=\"_ednref2\">[ii]</a></sup> Three other studies compared arthroscopic meniscectomies with sham surgeries. (A sham surgery is a faked surgical intervention that omits the step necessary for the surgery to be therapeutic.) What were the results?  They found no significant difference between meniscectomy and sham surgery, and they did not find meniscectomies to be effective.<sup><a href=\"#_edn3\" name=\"_ednref3\">[iii]</a></sup><sup>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup> Additionally, the most recent stud, showed the surgery did not reduce the mechanical symptoms of knee catching and locking.<sup><a href=\"#_edn5\" name=\"_ednref5\">[v]</a></sup> As you can see, the effectiveness of meniscectomies is questionable.\n\n<strong>If Meniscus Surgeries Are Ineffective, Then Why Are They Done?</strong>\n\nPatients usually believe the surgery will help their knee to function better and lessen the pain they are experiencing. When the knee locks and catches randomly, people want that to stop, especially since knee locking can be painful. If the person with these symptoms is an athlete, they want to get back to their sport quickly, and they think surgery is going to make that happen. People generally think that surgery can get them back to work or play sooner than other treatment options. But evidence and research does not back up this way of thinking. In fact, many patients are worse off after the surgery.\n\n<strong>If You Want to Keep Your Knee Intact, Then Keep Your Meniscus!</strong>\n\nWhen part of the knee, like the meniscus, is removed, the knee is unable to function normally. Removing the meniscus makes the knee unstable. The instability leads to the development of more knee problems. The joint instability that arises after removal of the meniscus negatively affects the interplay between the other structures of the knee, because extra stress is placed on them. When more stress is placed on the cartilage, degeneration is accelerated, boosting the arthritic process. More stress is also placed on the various ligaments and tendons supporting the knee, eventually damaging them and leading to the breakdown of the knee joint and irreversible joint damage. It has been proven in studies that new onset instability is demonstrated after a partial meniscectomy,<sup><a href=\"#_edn6\" name=\"_ednref6\">[vi]</a></sup><sup>,<a href=\"#_edn7\" name=\"_ednref7\">[vii]</a></sup> with significant rates of cartilage loss transpiring after both partial and complete meniscectomy, and that these procedures lead to degenerative arthritis and ligament injury in the knee. <sup><a href=\"#_edn8\" name=\"_ednref8\">[viii]</a></sup><sup>,<a href=\"#_edn9\" name=\"_ednref9\">[ix]</a></sup><sup>,<a href=\"#_edn10\" name=\"_ednref10\">[x]</a></sup> And this information is not new! Adverse effects associated with meniscectomy have been documented in the literature going as far back as 1923.<sup><a href=\"#_edn11\" name=\"_ednref11\">[xi]</a></sup><sup>,<a href=\"#_edn12\" name=\"_ednref12\">[xii]</a></sup><sup>,<a href=\"#_edn13\" name=\"_ednref13\">[xiii]</a></sup><sup>,<a href=\"#_edn14\" name=\"_ednref14\">[xiv]</a></sup>\n\n<strong>Regenerative Orthopedics Effectively Repairs Meniscus Tears Non-Surgically</strong>\n\nGiven the accumulation of evidence demonstrating not only the overwhelming lack of efficacy and benefit, but also the risk of serious adverse effects of this widely used procedure for meniscus tears, it is important to consider potential safe and effective alternatives. Regenerative Orthopedics is a non-surgical solution, used to effectively treat knee injuries such as meniscus tears, as well as other soft tissue injuries like ligament and tendons.<sup><a href=\"#_edn15\" name=\"_ednref15\">[xv]</a></sup><sup>,<a href=\"#_edn16\" name=\"_ednref16\">[xvi]</a></sup> Regenerative Orthopedic treatments work by initiating the inflammatory stage of the healing process, raising the levels of growth factors, and initiating repair. The treatments stimulate new cell growth and rebuild depleted tissue, including the regeneration of cartilage.\n\nIn certain cases, Platelet Rich Plasma may be utilized. This involves injection of your own blood components to facilitate the healing of tissue that has degenerated. Platelets are the storehouses of growth factors, and platelet rich plasma is abundant in growth factors, capable of stimulating healing of the injured tissue.\n\nRegenerative Orthopedic treatments can safely and effectively treat meniscus tears without the need for surgery, returning you quickly to the activities and sports you enjoy.\n\n<hr />\n\n<sup>[i]</sup> <span style=\"font-size: 10px;\">Lowry F. Real knee surgery no better than sham for meniscal tear. <em>Medscape Medical News</em>. December 27, 2013.</span>\n\n<sup>[ii]</sup> <span style=\"font-size: 10px;\">Rimington T, Mallik K, Evans D, Mroczek K, Reider B. A prospective study of the nonoperative treatment of degenerative meniscus tears. Orthopedics 2009 August; 32(8). DOI: 10.3928/01477447-20090624-06.</span>\n\n<sup>[iii]</sup> <span style=\"font-size: 10px;\">Sihvonen R, Paavola M, Malmivaara A, <em>et al</em>. Arthroscopic partial meniscectomy versus sham surgery for a degenerative meniscal tear. N Engl J Med. 2013; 369:2515-2524.</span>\n\n<sup>[iv]</sup> <span style=\"font-size: 10px;\">Khan M, Evaniew N, Bedi A, Ayeni OR, Bhandari M. Arthroscopic surgery for degenerative tears of the meniscus: a systematic review and meta-analysis. CMAJ.2014;186(14):1057-1064.</span>\n\n<sup>[v]</sup> <span style=\"font-size: 10px;\">Sihvonen R, Englund M, Turkiewicz A, Järvinen TLN. Mechanical symptoms and arthroscopic partial meniscectomy in patients with degenerative meniscus tear: a secondary analysis of a randomized trial. Ann Intern Med<em>. </em>Published online 9 February 2016 doi:10.7326/M15-0899.</span>\n\n<sup>[vi]</sup> <span style=\"font-size: 10px;\">Demange MK, Von Keudell A, Gomoll AH. Iatrogenic instability of the lateral meniscus after partial meniscectomy. Knee 2013; 20(5): 360-363.</span>\n\n<sup>[vii]</sup> <span style=\"font-size: 10px;\">Arno S, Hadley S, Campbell KA, et al. The effect of arthroscopic partial medial meniscectomy on tibiofemoral stability. Am J Sports Med. 2013; 41(1): 73-79.</span>\n\n<sup>[viii]</sup> <span style=\"font-size: 10px;\">Flavia M, Forbes A, Yuanyuan W, Rush G, Stuckey SL .Rate of knee cartilage loss after partial meniscectomy. The Journal of Rheumatology 2002;29(9):1954-1956.</span>\n\n<sup>[ix]</sup> <span style=\"font-size: 10px;\">Englund M, Roos EM, Lohmander LS. Impact of type of meniscal tear on radiographic symptomatic knee osteoarthritis. A sixteen-year follow-up of meniscectomy with matched controls. Arthritis and Rheumatism. 2003;48:2178-2187.</span>\n\n<sup>[x]</sup> <span style=\"font-size: 10px;\">Johnson RJ, Kettelkamp DB, Clark W, Leaverton P. Factors affecting late results after meniscectomy. The Journal of Bone and Joint Surgery1974;56A:719-729.</span>\n\n<sup>[xi]</sup> <span style=\"font-size: 10px;\">Berthiaume MJ, Raynauld JP, Martel-Pelletier J, et al. Meniscal tear and extrusion are strongly associated with progression of symptomatic knee osteoarthritis as assessed by quantitative magnetic resonance imaging. Ann Rheum Dis 2005;64(4):556-563.</span>\n\n<sup>[xii]</sup> <span style=\"font-size: 10px;\">Baratz M. Meniscal tears: the effect of meniscectomy and of repair on intra-articular contact areas and stress in the human knee. American Journal of Sports Medicine 1986;14:270-275.</span>\n\n<sup>[xiii]</sup> <span style=\"font-size: 10px;\">McNeill Love R.<em> </em>Prognosis after removal of semilunar cartilages.<em> </em>Br Med J 1923; 2:324–6.</span>\n\n<sup>[xiv]</sup> <span style=\"font-size: 10px;\">McDermott ID, Amis AA. The consequences of meniscectomy. Journal of Bone &amp; Joint Surgery, British Volume. 2006 Dec 1;88(12):1549-56.</span>\n\n<sup>[xv]</sup> <span style=\"font-size: 10px;\">Hackett GS, Hemwall GA, Montgomery GA. Ligament and Tendon Relaxation Treated by Prolotherapy. 5th ed. Oak Park, IL: Gustav A. Hemwall; 1993.</span>\n\n<sup>[xvi]</sup> <span style=\"font-size: 10px;\">Hauser RA, Blakemore PJ, Wang J, Steilen D. Structural basis of joint instability as cause for chronic musculoskeletal pain and its successful treatment with regenerative injection therapy (prolotherapy). The Open Pain Journal 2014; 7: 9-22.</span>','Is Surgery a Good Option for Meniscus Tears?','','inherit','closed','closed','','2419-autosave-v1','','','2019-07-16 18:19:37','2019-07-16 18:19:37','',2419,'https://www.drfields.com/uncategorized/2419-autosave-v1/',0,'revision','',0),(2439,8,'2019-07-16 18:20:14','2019-07-16 18:20:14','<strong>Is Surgery a Good Option for Meniscus Tears?</strong>\r\n\r\nMeniscal tears are quite common. So much so, that they are one of the most common injuries to the knee. Meniscal injuries are routinely treated with surgery, and many with meniscus injuries end up receiving some form of meniscectomy. Nearly 700,000 arthroscopic partial meniscectomies are performed annually in the US, at an estimated annual cost of $4 billion.<sup><a href=\"#_edn1\" name=\"_ednref1\">[i]</a></sup>  Is surgery of this type an effective way to treat meniscal injuries? Believe it or not, research shows that it is not! Several studies question the effectiveness of this procedure. One study found that almost half of patients who received non-operative treatment with nonsteroidal anti-inflammatory drugs improved well enough to avoid surgery.<sup><a href=\"#_edn2\" name=\"_ednref2\">[ii]</a></sup> Three other studies compared arthroscopic meniscectomies with sham surgeries. (A sham surgery is a faked surgical intervention that omits the step necessary for the surgery to be therapeutic.) What were the results?  They found no significant difference between meniscectomy and sham surgery, and they did not find meniscectomies to be effective.<sup><a href=\"#_edn3\" name=\"_ednref3\">[iii]</a></sup><sup>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup> Additionally, the most recent stud, showed the surgery did not reduce the mechanical symptoms of knee catching and locking.<sup><a href=\"#_edn5\" name=\"_ednref5\">[v]</a></sup> As you can see, the effectiveness of meniscectomies is questionable.\r\n\r\n<strong>If Meniscus Surgeries Are Ineffective, Then Why Are They Done?</strong>\r\n\r\nPatients usually believe the surgery will help their knee to function better and lessen the pain they are experiencing. When the knee locks and catches randomly, people want that to stop, especially since knee locking can be painful. If the person with these symptoms is an athlete, they want to get back to their sport quickly, and they think surgery is going to make that happen. People generally think that surgery can get them back to work or play sooner than other treatment options. But evidence and research does not back up this way of thinking. In fact, many patients are worse off after the surgery.\r\n\r\n<strong>If You Want to Keep Your Knee Intact, Then Keep Your Meniscus!</strong>\r\n\r\nWhen part of the knee, like the meniscus, is removed, the knee is unable to function normally. Removing the meniscus makes the knee unstable. The instability leads to the development of more knee problems. The joint instability that arises after removal of the meniscus negatively affects the interplay between the other structures of the knee, because extra stress is placed on them. When more stress is placed on the cartilage, degeneration is accelerated, boosting the arthritic process. More stress is also placed on the various ligaments and tendons supporting the knee, eventually damaging them and leading to the breakdown of the knee joint and irreversible joint damage. It has been proven in studies that new onset instability is demonstrated after a partial meniscectomy,<sup><a href=\"#_edn6\" name=\"_ednref6\">[vi]</a></sup><sup>,<a href=\"#_edn7\" name=\"_ednref7\">[vii]</a></sup> with significant rates of cartilage loss transpiring after both partial and complete meniscectomy, and that these procedures lead to degenerative arthritis and ligament injury in the knee. <sup><a href=\"#_edn8\" name=\"_ednref8\">[viii]</a></sup><sup>,<a href=\"#_edn9\" name=\"_ednref9\">[ix]</a></sup><sup>,<a href=\"#_edn10\" name=\"_ednref10\">[x]</a></sup> And this information is not new! Adverse effects associated with meniscectomy have been documented in the literature going as far back as 1923.<sup><a href=\"#_edn11\" name=\"_ednref11\">[xi]</a></sup><sup>,<a href=\"#_edn12\" name=\"_ednref12\">[xii]</a></sup><sup>,<a href=\"#_edn13\" name=\"_ednref13\">[xiii]</a></sup><sup>,<a href=\"#_edn14\" name=\"_ednref14\">[xiv]</a></sup>\r\n\r\n<strong>Regenerative Orthopedics Effectively Repairs Meniscus Tears Non-Surgically</strong>\r\n\r\nGiven the accumulation of evidence demonstrating not only the overwhelming lack of efficacy and benefit, but also the risk of serious adverse effects of this widely used procedure for meniscus tears, it is important to consider potential safe and effective alternatives. Regenerative Orthopedics is a non-surgical solution, used to effectively treat knee injuries such as meniscus tears, as well as other soft tissue injuries like ligament and tendon injuries.<sup><a href=\"#_edn15\" name=\"_ednref15\">[xv]</a></sup><sup>,<a href=\"#_edn16\" name=\"_ednref16\">[xvi]</a></sup> Regenerative Orthopedic treatments work by initiating the inflammatory stage of the healing process, raising the levels of growth factors, and initiating repair. The treatments stimulate new cell growth and rebuild depleted tissue, including the regeneration of cartilage.\r\n\r\nIn certain cases, Platelet Rich Plasma may be utilized. This involves the injection of your own blood components to facilitate the healing of tissue that has degenerated. Platelets are the storehouses of growth factors, and platelet rich plasma is abundant in growth factors, capable of stimulating healing of the injured tissue.\r\n\r\nRegenerative Orthopedic treatments can safely and effectively treat meniscus tears without the need for surgery, returning you quickly to the activities and sports you enjoy.\r\n\r\n<hr />\r\n\r\n<sup>[i]</sup> <span style=\"font-size: 10px;\">Lowry F. Real knee surgery no better than sham for meniscal tear. <em>Medscape Medical News</em>. December 27, 2013.</span>\r\n\r\n<sup>[ii]</sup> <span style=\"font-size: 10px;\">Rimington T, Mallik K, Evans D, Mroczek K, Reider B. A prospective study of the nonoperative treatment of degenerative meniscus tears. Orthopedics 2009 August; 32(8). DOI: 10.3928/01477447-20090624-06.</span>\r\n\r\n<sup>[iii]</sup> <span style=\"font-size: 10px;\">Sihvonen R, Paavola M, Malmivaara A, <em>et al</em>. Arthroscopic partial meniscectomy versus sham surgery for a degenerative meniscal tear. N Engl J Med. 2013; 369:2515-2524.</span>\r\n\r\n<sup>[iv]</sup> <span style=\"font-size: 10px;\">Khan M, Evaniew N, Bedi A, Ayeni OR, Bhandari M. Arthroscopic surgery for degenerative tears of the meniscus: a systematic review and meta-analysis. CMAJ.2014;186(14):1057-1064.</span>\r\n\r\n<sup>[v]</sup> <span style=\"font-size: 10px;\">Sihvonen R, Englund M, Turkiewicz A, Järvinen TLN. Mechanical symptoms and arthroscopic partial meniscectomy in patients with degenerative meniscus tear: a secondary analysis of a randomized trial. Ann Intern Med<em>. </em>Published online 9 February 2016 doi:10.7326/M15-0899.</span>\r\n\r\n<sup>[vi]</sup> <span style=\"font-size: 10px;\">Demange MK, Von Keudell A, Gomoll AH. Iatrogenic instability of the lateral meniscus after partial meniscectomy. Knee 2013; 20(5): 360-363.</span>\r\n\r\n<sup>[vii]</sup> <span style=\"font-size: 10px;\">Arno S, Hadley S, Campbell KA, et al. The effect of arthroscopic partial medial meniscectomy on tibiofemoral stability. Am J Sports Med. 2013; 41(1): 73-79.</span>\r\n\r\n<sup>[viii]</sup> <span style=\"font-size: 10px;\">Flavia M, Forbes A, Yuanyuan W, Rush G, Stuckey SL .Rate of knee cartilage loss after partial meniscectomy. The Journal of Rheumatology 2002;29(9):1954-1956.</span>\r\n\r\n<sup>[ix]</sup> <span style=\"font-size: 10px;\">Englund M, Roos EM, Lohmander LS. Impact of type of meniscal tear on radiographic symptomatic knee osteoarthritis. A sixteen-year follow-up of meniscectomy with matched controls. Arthritis and Rheumatism. 2003;48:2178-2187.</span>\r\n\r\n<sup>[x]</sup> <span style=\"font-size: 10px;\">Johnson RJ, Kettelkamp DB, Clark W, Leaverton P. Factors affecting late results after meniscectomy. The Journal of Bone and Joint Surgery1974;56A:719-729.</span>\r\n\r\n<sup>[xi]</sup> <span style=\"font-size: 10px;\">Berthiaume MJ, Raynauld JP, Martel-Pelletier J, et al. Meniscal tear and extrusion are strongly associated with progression of symptomatic knee osteoarthritis as assessed by quantitative magnetic resonance imaging. Ann Rheum Dis 2005;64(4):556-563.</span>\r\n\r\n<sup>[xii]</sup> <span style=\"font-size: 10px;\">Baratz M. Meniscal tears: the effect of meniscectomy and of repair on intra-articular contact areas and stress in the human knee. American Journal of Sports Medicine 1986;14:270-275.</span>\r\n\r\n<sup>[xiii]</sup> <span style=\"font-size: 10px;\">McNeill Love R.<em> </em>Prognosis after removal of semilunar cartilages.<em> </em>Br Med J 1923; 2:324–6.</span>\r\n\r\n<sup>[xiv]</sup> <span style=\"font-size: 10px;\">McDermott ID, Amis AA. The consequences of meniscectomy. Journal of Bone &amp; Joint Surgery, British Volume. 2006 Dec 1;88(12):1549-56.</span>\r\n\r\n<sup>[xv]</sup> <span style=\"font-size: 10px;\">Hackett GS, Hemwall GA, Montgomery GA. Ligament and Tendon Relaxation Treated by Prolotherapy. 5th ed. Oak Park, IL: Gustav A. Hemwall; 1993.</span>\r\n\r\n<sup>[xvi]</sup> <span style=\"font-size: 10px;\">Hauser RA, Blakemore PJ, Wang J, Steilen D. Structural basis of joint instability as cause for chronic musculoskeletal pain and its successful treatment with regenerative injection therapy (prolotherapy). The Open Pain Journal 2014; 7: 9-22.</span>','Is Surgery a Good Option for Meniscus Tears?','','inherit','closed','closed','','2419-revision-v1','','','2019-07-16 18:20:14','2019-07-16 18:20:14','',2419,'https://www.drfields.com/uncategorized/2419-revision-v1/',0,'revision','',0),(2440,8,'2019-07-16 18:20:25','2019-07-16 18:20:25','<strong>Is Surgery a Good Option for Meniscus Tears?</strong>\r\n\r\nMeniscal tears are quite common. So much so, that they are one of the most common injuries to the knee. Meniscal injuries are routinely treated with surgery, and many with meniscus injuries end up receiving some form of meniscectomy. Nearly 700,000 arthroscopic partial meniscectomies are performed annually in the US, at an estimated annual cost of $4 billion.<sup><a href=\"#_edn1\" name=\"_ednref1\">[i]</a></sup>  Is surgery of this type an effective way to treat meniscal injuries? Believe it or not, research shows that it is not! Several studies question the effectiveness of this procedure. One study found that almost half of patients who received non-operative treatment with nonsteroidal anti-inflammatory drugs improved well enough to avoid surgery.<sup><a href=\"#_edn2\" name=\"_ednref2\">[ii]</a></sup> Three other studies compared arthroscopic meniscectomies with sham surgeries. (A sham surgery is a faked surgical intervention that omits the step necessary for the surgery to be therapeutic.) What were the results?  They found no significant difference between meniscectomy and sham surgery, and they did not find meniscectomies to be effective.<sup><a href=\"#_edn3\" name=\"_ednref3\">[iii]</a></sup><sup>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup> Additionally, the most recent study showed the surgery did not reduce the mechanical symptoms of knee catching and locking.<sup><a href=\"#_edn5\" name=\"_ednref5\">[v]</a></sup> As you can see, the effectiveness of meniscectomies is questionable.\r\n\r\n<strong>If Meniscus Surgeries Are Ineffective, Then Why Are They Done?</strong>\r\n\r\nPatients usually believe the surgery will help their knee to function better and lessen the pain they are experiencing. When the knee locks and catches randomly, people want that to stop, especially since knee locking can be painful. If the person with these symptoms is an athlete, they want to get back to their sport quickly, and they think surgery is going to make that happen. People generally think that surgery can get them back to work or play sooner than other treatment options. But evidence and research does not back up this way of thinking. In fact, many patients are worse off after the surgery.\r\n\r\n<strong>If You Want to Keep Your Knee Intact, Then Keep Your Meniscus!</strong>\r\n\r\nWhen part of the knee, like the meniscus, is removed, the knee is unable to function normally. Removing the meniscus makes the knee unstable. The instability leads to the development of more knee problems. The joint instability that arises after removal of the meniscus negatively affects the interplay between the other structures of the knee, because extra stress is placed on them. When more stress is placed on the cartilage, degeneration is accelerated, boosting the arthritic process. More stress is also placed on the various ligaments and tendons supporting the knee, eventually damaging them and leading to the breakdown of the knee joint and irreversible joint damage. It has been proven in studies that new onset instability is demonstrated after a partial meniscectomy,<sup><a href=\"#_edn6\" name=\"_ednref6\">[vi]</a></sup><sup>,<a href=\"#_edn7\" name=\"_ednref7\">[vii]</a></sup> with significant rates of cartilage loss transpiring after both partial and complete meniscectomy, and that these procedures lead to degenerative arthritis and ligament injury in the knee. <sup><a href=\"#_edn8\" name=\"_ednref8\">[viii]</a></sup><sup>,<a href=\"#_edn9\" name=\"_ednref9\">[ix]</a></sup><sup>,<a href=\"#_edn10\" name=\"_ednref10\">[x]</a></sup> And this information is not new! Adverse effects associated with meniscectomy have been documented in the literature going as far back as 1923.<sup><a href=\"#_edn11\" name=\"_ednref11\">[xi]</a></sup><sup>,<a href=\"#_edn12\" name=\"_ednref12\">[xii]</a></sup><sup>,<a href=\"#_edn13\" name=\"_ednref13\">[xiii]</a></sup><sup>,<a href=\"#_edn14\" name=\"_ednref14\">[xiv]</a></sup>\r\n\r\n<strong>Regenerative Orthopedics Effectively Repairs Meniscus Tears Non-Surgically</strong>\r\n\r\nGiven the accumulation of evidence demonstrating not only the overwhelming lack of efficacy and benefit, but also the risk of serious adverse effects of this widely used procedure for meniscus tears, it is important to consider potential safe and effective alternatives. Regenerative Orthopedics is a non-surgical solution, used to effectively treat knee injuries such as meniscus tears, as well as other soft tissue injuries like ligament and tendon injuries.<sup><a href=\"#_edn15\" name=\"_ednref15\">[xv]</a></sup><sup>,<a href=\"#_edn16\" name=\"_ednref16\">[xvi]</a></sup> Regenerative Orthopedic treatments work by initiating the inflammatory stage of the healing process, raising the levels of growth factors, and initiating repair. The treatments stimulate new cell growth and rebuild depleted tissue, including the regeneration of cartilage.\r\n\r\nIn certain cases, Platelet Rich Plasma may be utilized. This involves the injection of your own blood components to facilitate the healing of tissue that has degenerated. Platelets are the storehouses of growth factors, and platelet rich plasma is abundant in growth factors, capable of stimulating healing of the injured tissue.\r\n\r\nRegenerative Orthopedic treatments can safely and effectively treat meniscus tears without the need for surgery, returning you quickly to the activities and sports you enjoy.\r\n\r\n<hr />\r\n\r\n<sup>[i]</sup> <span style=\"font-size: 10px;\">Lowry F. Real knee surgery no better than sham for meniscal tear. <em>Medscape Medical News</em>. December 27, 2013.</span>\r\n\r\n<sup>[ii]</sup> <span style=\"font-size: 10px;\">Rimington T, Mallik K, Evans D, Mroczek K, Reider B. A prospective study of the nonoperative treatment of degenerative meniscus tears. Orthopedics 2009 August; 32(8). DOI: 10.3928/01477447-20090624-06.</span>\r\n\r\n<sup>[iii]</sup> <span style=\"font-size: 10px;\">Sihvonen R, Paavola M, Malmivaara A, <em>et al</em>. Arthroscopic partial meniscectomy versus sham surgery for a degenerative meniscal tear. N Engl J Med. 2013; 369:2515-2524.</span>\r\n\r\n<sup>[iv]</sup> <span style=\"font-size: 10px;\">Khan M, Evaniew N, Bedi A, Ayeni OR, Bhandari M. Arthroscopic surgery for degenerative tears of the meniscus: a systematic review and meta-analysis. CMAJ.2014;186(14):1057-1064.</span>\r\n\r\n<sup>[v]</sup> <span style=\"font-size: 10px;\">Sihvonen R, Englund M, Turkiewicz A, Järvinen TLN. Mechanical symptoms and arthroscopic partial meniscectomy in patients with degenerative meniscus tear: a secondary analysis of a randomized trial. Ann Intern Med<em>. </em>Published online 9 February 2016 doi:10.7326/M15-0899.</span>\r\n\r\n<sup>[vi]</sup> <span style=\"font-size: 10px;\">Demange MK, Von Keudell A, Gomoll AH. Iatrogenic instability of the lateral meniscus after partial meniscectomy. Knee 2013; 20(5): 360-363.</span>\r\n\r\n<sup>[vii]</sup> <span style=\"font-size: 10px;\">Arno S, Hadley S, Campbell KA, et al. The effect of arthroscopic partial medial meniscectomy on tibiofemoral stability. Am J Sports Med. 2013; 41(1): 73-79.</span>\r\n\r\n<sup>[viii]</sup> <span style=\"font-size: 10px;\">Flavia M, Forbes A, Yuanyuan W, Rush G, Stuckey SL .Rate of knee cartilage loss after partial meniscectomy. The Journal of Rheumatology 2002;29(9):1954-1956.</span>\r\n\r\n<sup>[ix]</sup> <span style=\"font-size: 10px;\">Englund M, Roos EM, Lohmander LS. Impact of type of meniscal tear on radiographic symptomatic knee osteoarthritis. A sixteen-year follow-up of meniscectomy with matched controls. Arthritis and Rheumatism. 2003;48:2178-2187.</span>\r\n\r\n<sup>[x]</sup> <span style=\"font-size: 10px;\">Johnson RJ, Kettelkamp DB, Clark W, Leaverton P. Factors affecting late results after meniscectomy. The Journal of Bone and Joint Surgery1974;56A:719-729.</span>\r\n\r\n<sup>[xi]</sup> <span style=\"font-size: 10px;\">Berthiaume MJ, Raynauld JP, Martel-Pelletier J, et al. Meniscal tear and extrusion are strongly associated with progression of symptomatic knee osteoarthritis as assessed by quantitative magnetic resonance imaging. Ann Rheum Dis 2005;64(4):556-563.</span>\r\n\r\n<sup>[xii]</sup> <span style=\"font-size: 10px;\">Baratz M. Meniscal tears: the effect of meniscectomy and of repair on intra-articular contact areas and stress in the human knee. American Journal of Sports Medicine 1986;14:270-275.</span>\r\n\r\n<sup>[xiii]</sup> <span style=\"font-size: 10px;\">McNeill Love R.<em> </em>Prognosis after removal of semilunar cartilages.<em> </em>Br Med J 1923; 2:324–6.</span>\r\n\r\n<sup>[xiv]</sup> <span style=\"font-size: 10px;\">McDermott ID, Amis AA. The consequences of meniscectomy. Journal of Bone &amp; Joint Surgery, British Volume. 2006 Dec 1;88(12):1549-56.</span>\r\n\r\n<sup>[xv]</sup> <span style=\"font-size: 10px;\">Hackett GS, Hemwall GA, Montgomery GA. Ligament and Tendon Relaxation Treated by Prolotherapy. 5th ed. Oak Park, IL: Gustav A. Hemwall; 1993.</span>\r\n\r\n<sup>[xvi]</sup> <span style=\"font-size: 10px;\">Hauser RA, Blakemore PJ, Wang J, Steilen D. Structural basis of joint instability as cause for chronic musculoskeletal pain and its successful treatment with regenerative injection therapy (prolotherapy). The Open Pain Journal 2014; 7: 9-22.</span>','Is Surgery a Good Option for Meniscus Tears?','','inherit','closed','closed','','2419-revision-v1','','','2019-07-16 18:20:25','2019-07-16 18:20:25','',2419,'https://www.drfields.com/uncategorized/2419-revision-v1/',0,'revision','',0),(2441,0,'2019-07-17 17:22:04','2019-07-17 17:22:04','rachel@explainmybusiness.com\nRachel Winter','rachel@explainmybusiness.com','','publish','closed','closed','','rachel-explainmybusiness-com','','','2019-07-17 17:22:04','2019-07-17 17:22:04','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2441',0,'flamingo_contact','',0),(2442,0,'2019-07-17 17:22:04','2019-07-17 17:22:04','Rachel Winter\nrachel@explainmybusiness.com\n917-675-5528\n11am-1pm\nHey, I checked out your site and it looks great- but I noticed you\'re missing a promotional/explainer video, something that clearly defines what makes your business unique and stand out. \r\n\r\nWithout an Explainer Video potential customers bounce right off your page! \r\n\r\nMy team located in Israel creates these clear 30-60 second promotional style videos at affordable rates. \r\n\r\nCheck out our site www.explainmybusiness.com\nHey, I checked out your site and it looks great- but I noticed you\'re missing a promotional/explainer video, something that clearly defines what makes your business unique and stand out. \r\n\r\nWithout an Explainer Video potential customers bounce right off your page! \r\n\r\nMy team located in Israel creates these clear 30-60 second promotional style videos at affordable rates. \r\n\r\nCheck out our site www.explainmybusiness.com\n6\n107.167.229.126\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nJuly 17, 2019\n5:22 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-6','','','2019-07-17 17:22:04','2019-07-17 17:22:04','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2442',0,'flamingo_inbound','',0),(2443,0,'2019-07-19 02:08:22','2019-07-19 02:08:22','nimmo.claudia@gmail.com\nClaudia Nimmo','nimmo.claudia@gmail.com','','publish','closed','closed','','nimmo-claudia-gmail-com','','','2019-07-19 02:08:22','2019-07-19 02:08:22','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2443',0,'flamingo_contact','',0),(2444,0,'2019-07-19 02:08:22','2019-07-19 02:08:22','Claudia Nimmo\nnimmo.claudia@gmail.com\n(19) 8210-3712\n9am-11am\nStarting at just $39 monthly I can get hundreds of high converting visitors to come to your website. Interested in how this works? Send a reply here for info: grace5764wil@gmail.com\nStarting at just $49 per month I can get tons of people who are ready to buy to visit your site. Would you be interested in finding out more? Reply here for details: grace5764wil@gmail.com\n7\n104.245.145.26\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nJuly 19, 2019\n2:08 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-7','','','2019-07-19 02:08:22','2019-07-19 02:08:22','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2444',0,'flamingo_inbound','',0),(2445,0,'2019-07-19 16:15:12','2019-07-19 16:15:12','albertbudnitskiy90@gmail.com\nAlbert','albertbudnitskiy90@gmail.com','','publish','closed','closed','','albertbudnitskiy90-gmail-com','','','2019-07-19 16:15:12','2019-07-19 16:15:12','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2445',0,'flamingo_contact','',0),(2446,0,'2019-07-19 16:15:12','2019-07-19 16:15:12','Albert\nalbertbudnitskiy90@gmail.com\n2482078718\n3pm-5pm\nHi There, \r\n\r\nMy fiance has Spondylolisthesis.  In the past 6 months it has become very painful for her and we are looking to explore non-surgical options.  Have you dealt with Spondylolisthesis before in your practice? What kind of results have you seen?  Also, do you accept insurance?\r\n\r\nThanks,\r\nAlbert\n8\n148.87.23.14\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\nhttps://www.drfields.com/contact/\nJuly 19, 2019\n4:15 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-8','','','2019-07-19 16:15:12','2019-07-19 16:15:12','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2446',0,'flamingo_inbound','',0),(2448,0,'2019-08-16 17:45:27','2019-08-16 17:45:27','alan@websitedepot.com\nTest','alan@websitedepot.com','','publish','closed','closed','','alan-websitedepot-com','','','2019-08-16 17:45:27','2019-08-16 17:45:27','',0,'https://www.drfields.com/?post_type=flamingo_contact&#038;p=2448',0,'flamingo_contact','',0),(2449,0,'2019-07-19 19:26:47','2019-07-19 19:26:47','Test\nalan@websitedepot.com\n1231231234\n9am-11am\nTest\nTest\n9\n172.118.143.212\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\nhttps://www.drfields.com/contact/\nJuly 19, 2019\n7:26 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-9','','','2019-07-19 19:26:47','2019-07-19 19:26:47','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2449',0,'flamingo_inbound','',0),(2450,8,'2019-07-22 21:30:45','2019-07-22 21:30:45','<strong>Help for Arthritis of the Hip </strong>\r\n\r\nIf you have arthritis in your hip, you know how debilitating the disease can be. But how did you get to this point, and what can you do about it? The pain and destruction of arthritis of the hip do not happen overnight but occur through a sequence of events that has at its core, a loss of cartilage in the hip. The degenerative changes that occur through this process affect other hip joint structures, and will eventually lead to the narrowing of joint space and the growth of bone spurs. The cycle progresses until the movement of the hip joint becomes noticeably restricted. The ongoing hip pain, restriction in mobility, and disability caused by hip arthritis frequently lead sufferers to seek out relief, and their physician and/or surgeon will eventually recommend surgical replacement of the hip. Is a surgical hip replacement the only choice a hip arthritis sufferer has?\r\n\r\n<strong>Let’s Take a Deeper Look at the Arthritis Cycle</strong>\r\n\r\nWhat actually transpires before reaching the point of cartilage loss in the hip? Arthritis of the hip almost always begins with ligament weakness or injury. The hip joint is a ball-and-socket joint with massive ligaments. Healthy ligaments hold the bones together, and along with the cartilage enable the bones to glide evenly over one another when the joints go through their various motions. The ligaments are the structures primarily responsible for maintaining smooth joint motion, and making sure the joint doesn’t go out of place or move too much! But when the ligaments and other soft tissue structures of the hip face forces beyond what they can withstand, injury and failure occur, resulting in hip instability. These forces may be sudden, such as through a fall or accident, or over a period of time, when the ligaments are subjected over and over to abnormal forces during situations like when a person continually limps due to an ankle or knee injury. When the ligaments become injured, the entire hip joint will be unstable and will move abnormally. You can understand how the abnormal movement of the joint will then put undue stress on all of the other joint structures which will continue to weaken the ligaments more and more. Even the overgrowth of bone, as seen by the development of bone spurs, is part of the body’s attempts at stabilizing the abnormal joint motion occurring in the joint. The cycle of injury goes on, progressively degenerating the hip in the development of arthritis. At this point, the sufferer is faced with the question of how to relieve the pain and improve function, since mobility is often impaired. Surgical repair and hip replacement are needed at times, but more conservative treatments should be sought first.\r\n\r\n<strong>What Are the Treatment Options for Hip Arthritis? </strong>\r\n\r\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are commonly used to treat arthritis pain. Are these good options?  These pain relief options have been shown to be effective in decreasing inflammation and pain in the short-term.  However, these medications have some negative side effects. Unfortunately, they weaken soft tissue and inhibit the ability of the tissue, such as ligaments and tendons, to heal. For this reason, their use is cautioned in those who have ligament and soft tissue injuries. How do they weaken soft tissue? Cortisone actually weakens collagen and as such weakens the soft tissue. Can you see how taking something that weakens soft tissue will actually make injuries occur more easily and cause the joint to be more susceptible to injury and more unstable overall? It’s true! Cortisone contributes to the development of conditions such as arthritis and pushes the sufferer more rapidly down the road to the eventual joint replacement. For acute ligament injuries, these modalities should be used for the shortest period of time, if used at all. Instead, regenerative medicine techniques, such as Regenerative Orthopedics, which have been shown to resolve ligament injuries, repair tendon injuries, and rebuild cartilage in the hip, should be sought.\r\n\r\n<strong>Do Hyaluronic Acid Injections Work?</strong>\r\n\r\nHyaluronic acid injections, such as Synvisc or Hyalgen, are very popular conservative treatments for hip pain. Hyaluronic acid provides cushion and lubrication to the joints. It can be used as an oral supplement and as an injection that is given directly into the hip joint.\r\n\r\nBut does hyaluronic acid work and are there drawbacks to its use? Sometimes sufferers experience relief with hyaluronic acid injections, but the reprieve from pain is generally only for a short period of time. When you take a look at studies, the research has shown hyaluronic acid treatment to actually lack clinical effectiveness, with thousands of patients finding only minimal relief or no relief at all.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a> The treatment frequently becomes only a delay of the inevitable hip replacement, because <strong><em>it only lubricates a dysfunctional joint, without fixing anything.</em></strong>\r\n\r\n<strong>What about Arthroscopic Surgery? Is it beneficial?</strong>\r\n\r\nElimination of the painful area by arthroscopic shaving and cutting, or by the removal of tissue just delays the pain for a few years until the remaining tissue becomes degenerated. Arthroscopy is a direct assault to joint tissue and increases the arthritic process. Arthroscopy, like the aforementioned treatments, may relieve symptoms temporarily, but long-term will destabilize the joint and boost degeneration. The hip pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or cortisone injection, the risk of developing long-term arthritis and the eventual hip replacement is greatly increased. The key to keeping the hip strong is to stimulate the area to heal.\r\n\r\n<strong>How Can You Stop the Cycle of Instability in the Hip Joint?</strong>\r\n\r\nThe goal of many therapeutic, non-surgical modalities such as weight loss, exercise, physical therapy, bracing, and orthoses, is to decrease pain and improve function, but they are unable to repair the source of the pain or the cycle of joint instability that started the problem, to begin with. The increased mechanical stress caused by injury to the ligaments, tendons, labrum, etc. that altered the function of the hip joint and made the joint unstable and more susceptible to further soft tissue injury, needs to be stopped. If you don’t repair what caused the arthritis in the first place, it will only continue, since the long-lasting effect of continual joint instability is arthritis. Unfortunately, these treatments may fail because they are unable to repair this instability. The road to arthritis, and the ensuing joint replacement can only be remedied when the problem of joint instability is addressed.\r\n\r\nFortunately, Regenerative Orthopedics stops the cycle, because the treatments repair the soft tissue injuries, like ligament, tendon, and labrum injuries. Regenerative Orthopedics does not interfere with the normal healing process of the body, like cortisone and NSAIDS do, but rather stimulate the normal inflammatory-reparative mechanisms of the body, laying down new collagen, strengthening the tendons and ligaments, and boosting cartilage growth. The treatments reduce the chance of long-term arthritis. Regenerative Orthopedics offers hope to those suffering from hip arthritis and to those trying to avoid hip replacement. While surgery is necessary for a small percentage of patients, non-surgical regenerative therapies should be a first-line, conservative treatment tried prior to surgery.  If surgery has already been done and pain continues to be an issue, these treatments can be effective at reducing the pain from the arthritis that was accelerated due to surgery. For more advanced conditions, the Gold Standard in Stem Cell Therapy can be utilized, which offers a promising alternative to joint replacement and the opportunity for healing and return to function for those suffering from arthritic hip pain.\r\n\r\n<hr />\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Diehl P, Gerdesmeyer L, Schauwecker J, Kreuz PC, Gollwitzer H, Tischer T. Conservative therapy of osteoarthritis. Orthopade. 2013','Help for Arthritis of the Hip','','publish','closed','closed','','help-for-arthritis-of-the-hip','','','2019-07-23 21:21:54','2019-07-23 21:21:54','',0,'https://www.drfields.com/?page_id=2450',0,'page','',0),(2451,8,'2019-07-22 21:30:13','2019-07-22 21:30:13','If you have arthritis in your hip, you know how debilitating the disease can be. But how did you get to this point, and what can you do about it? The pain and destruction of arthritis of the hip does not happen overnight, but occurs through a sequence of events that has at its core, a loss of cartilage in the hip. The degenerative changes that occur through this process affect other hip joint structures, and will eventually lead to the narrowing of joint space and the growth of bone spurs. The cycle progresses until movement of the hip joint becomes noticeably restricted. The ongoing hip pain, restriction in mobility, and disability caused by hip arthritis frequently leads sufferers to seek out relief, and their physician and/or surgeon will eventually recommend surgical replacement of the hip. Is a surgical hip replacement the only choice a hip arthritis sufferer has?\r\n\r\n<strong>Let’s Take a Deeper Look at the Arthritis Cycle</strong>\r\n\r\nWhat actually transpires before reaching the point of cartilage loss in the hip? Arthritis of the hip almost always begins with ligament weakness or injury. The hip joint is a ball-and-socket joint with massive ligaments. Healthy ligaments hold the bones together, and along with the cartilage enable the bones to glide evenly over one another when the joints go through their various motions. The ligaments are the structures primarily responsible for maintaining smooth joint motion, and making sure the joint doesn’t go out of place or move too much! But when the ligaments and other soft tissue structures of the hip face forces beyond what they can withstand, injury and failure occur, resulting in hip instability. These forces may be sudden, such as through a fall or accident, or over a period of time, when the ligaments are subjected over and over to abnormal forces during situations like when a person continually limps due to an ankle or knee injury. When the ligaments become injured, the entire hip joint will be unstable and will move abnormally. You can understand how the abnormal movement of the joint will then put undue stress on all of the other joint structures which will continue to weaken the ligaments more and more. Even the overgrowth of bone, as seen by the development of bone spurs, is part of the body’s attempts at stabilizing the abnormal joint motion occurring in the joint. The cycle of injury goes on, progressively degenerating the hip in the development of arthritis. At this point, the sufferer is faced with the question of how to relieve the pain and improve function, since mobility is often impaired. Surgical repair and hip replacement are needed at times, but more conservative treatments should be sought first.\r\n\r\n<strong>What Are the Treatment Options for Hip Arthritis? </strong>\r\n\r\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are commonly used to treat arthritis pain. Are these good options?  These pain relief options have been shown to be effective in decreasing inflammation and pain in the short-term.  However, these medications have some negative side effects. Unfortunately, they weaken soft tissue and inhibit the ability of the tissue, such as ligaments and tendons, to heal. For this reason, their use is cautioned in those who have ligament and soft tissue injuries. How do they weaken soft tissue? Cortisone actually weakens collagen and as such weakens the soft tissue. Can you see how taking something that weakens soft tissue will actually make injuries occur more easily and cause the joint to be more susceptible to injury and more unstable overall? It’s true! Cortisone contributes to the development of conditions such as arthritis, and pushes the sufferer more rapidly down the road to the eventual joint replacement. For acute ligament injuries, these modalities should be used for the shortest period of time, if used at all. Instead, regenerative medicine techniques, such as Regenerative Orthopedics, which have been shown to resolve ligament injuries, repair tendon injuries, and rebuild cartilage in the hip, should be sought.\r\n\r\n<strong><em>Do Hyaluronic Acid Injections Work?</em></strong>\r\n\r\nHyaluronic acid injections, such as Synvisc or Hyalgen, are very popular conservative treatments for hip pain. Hyaluronic acid provides cushion and lubrication to the joints. It can be used as an oral supplement and as an injection that is given directly into the hip joint.\r\n\r\nBut does hyaluronic acid work and are there drawbacks to its use? Sometimes sufferers experience relief with hyaluronic acid injections, but the reprieve from pain is generally only for a short period of time. When you take a look at studies, the research has shown hyaluronic acid treatment to actually lack clinical effectiveness, with thousands of patients finding only minimal relief or no relief at all.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a> The treatment frequently becomes only a delay of the inevitable hip replacement, because <strong><em>it only lubricates a dysfunctional joint, without fixing anything.</em></strong>\r\n\r\n<strong>What about Arthroscopic Surgery? Is it beneficial?</strong>\r\n\r\nElimination of the painful area by arthroscopic shaving and cutting, or by the removal of tissue just delays the pain for a few years until the remaining tissue becomes degenerated. Arthroscopy is a direct assault to joint tissue, and increases the arthritic process. Arthroscopy, like the aforementioned treatments, may relieve symptoms temporarily, but long-term will destabilize the joint and boost degeneration. The hip pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or cortisone injection, the risk of developing long-term arthritis and the eventual hip replacement is greatly increased. The key to keeping the hip strong is to stimulate the area to heal.\r\n\r\n<strong>How Can You Stop the Cycle of Instability in the Hip Joint?</strong>\r\n\r\nThe goal of many therapeutic, non-surgical modalities such as weight loss, exercise, physical therapy, bracing, and orthoses, is to decrease pain and improve function, but they are unable to repair the source of the pain, or the cycle of joint instability that started the problem to begin with. The increased mechanical stress caused by injury to the ligaments, tendons, labrum, etc. that altered the function of the hip joint and made the joint unstable and more susceptible to further soft tissue injury, needs to be stopped. If you don’t repair what caused the arthritis in the first place, it will only continue, since the long-lasting effect of continual joint instability is arthritis. Unfortunately, these treatments may fail because they are unable to repair this instability. The road to arthritis, and the ensuing joint replacement, can only be remedied when the problem of joint instability is addressed.\r\n\r\nFortunately, Regenerative Orthopedics stops the cycle, because the treatments repair the soft tissue injuries, like ligament, tendon, and labrum injuries. Regenerative Orthopedics do not interfere with the normal healing process of the body, like cortisone and NSAIDS do, but rather stimulate the normal inflammatory-reparative mechanisms of the body, laying down new collagen, strengthening the tendons and ligaments, and boosting cartilage growth. The treatments reduce the chance of long-term arthritis. Regenerative Orthopedics offers hope to those suffering from hip arthritis and to those trying to avoid hip replacement. While surgery is necessary in a small percentage of patients, non-surgical regenerative therapies should be a first-line, conservative treatment tried prior to surgery.  If surgery has already been done and pain continues to be an issue, these treatments can be effective at reducing the pain from the arthritis that was accelerated due to surgery. For more advanced conditions, the Gold Standard in Stem Cell Therapy can be utilized, which offers a promising alternative to joint replacement and the opportunity for healing and return to function for those suffering from arthritic hip pain.\r\n\r\n<hr />\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Diehl P, Gerdesmeyer L, Schauwecker J, Kreuz PC, Gollwitzer H, Tischer T. Conservative therapy of osteoarthritis. Orthopade. 2013','Help for Arthritis of the Hip','','inherit','closed','closed','','2450-revision-v1','','','2019-07-22 21:30:13','2019-07-22 21:30:13','',2450,'https://www.drfields.com/uncategorized/2450-revision-v1/',0,'revision','',0),(2452,8,'2019-07-22 21:30:45','2019-07-22 21:30:45','<strong>Help for Arthritis of the Hip </strong>\r\n\r\nIf you have arthritis in your hip, you know how debilitating the disease can be. But how did you get to this point, and what can you do about it? The pain and destruction of arthritis of the hip does not happen overnight, but occurs through a sequence of events that has at its core, a loss of cartilage in the hip. The degenerative changes that occur through this process affect other hip joint structures, and will eventually lead to the narrowing of joint space and the growth of bone spurs. The cycle progresses until movement of the hip joint becomes noticeably restricted. The ongoing hip pain, restriction in mobility, and disability caused by hip arthritis frequently leads sufferers to seek out relief, and their physician and/or surgeon will eventually recommend surgical replacement of the hip. Is a surgical hip replacement the only choice a hip arthritis sufferer has?\r\n\r\n<strong>Let’s Take a Deeper Look at the Arthritis Cycle</strong>\r\n\r\nWhat actually transpires before reaching the point of cartilage loss in the hip? Arthritis of the hip almost always begins with ligament weakness or injury. The hip joint is a ball-and-socket joint with massive ligaments. Healthy ligaments hold the bones together, and along with the cartilage enable the bones to glide evenly over one another when the joints go through their various motions. The ligaments are the structures primarily responsible for maintaining smooth joint motion, and making sure the joint doesn’t go out of place or move too much! But when the ligaments and other soft tissue structures of the hip face forces beyond what they can withstand, injury and failure occur, resulting in hip instability. These forces may be sudden, such as through a fall or accident, or over a period of time, when the ligaments are subjected over and over to abnormal forces during situations like when a person continually limps due to an ankle or knee injury. When the ligaments become injured, the entire hip joint will be unstable and will move abnormally. You can understand how the abnormal movement of the joint will then put undue stress on all of the other joint structures which will continue to weaken the ligaments more and more. Even the overgrowth of bone, as seen by the development of bone spurs, is part of the body’s attempts at stabilizing the abnormal joint motion occurring in the joint. The cycle of injury goes on, progressively degenerating the hip in the development of arthritis. At this point, the sufferer is faced with the question of how to relieve the pain and improve function, since mobility is often impaired. Surgical repair and hip replacement are needed at times, but more conservative treatments should be sought first.\r\n\r\n<strong>What Are the Treatment Options for Hip Arthritis? </strong>\r\n\r\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are commonly used to treat arthritis pain. Are these good options?  These pain relief options have been shown to be effective in decreasing inflammation and pain in the short-term.  However, these medications have some negative side effects. Unfortunately, they weaken soft tissue and inhibit the ability of the tissue, such as ligaments and tendons, to heal. For this reason, their use is cautioned in those who have ligament and soft tissue injuries. How do they weaken soft tissue? Cortisone actually weakens collagen and as such weakens the soft tissue. Can you see how taking something that weakens soft tissue will actually make injuries occur more easily and cause the joint to be more susceptible to injury and more unstable overall? It’s true! Cortisone contributes to the development of conditions such as arthritis, and pushes the sufferer more rapidly down the road to the eventual joint replacement. For acute ligament injuries, these modalities should be used for the shortest period of time, if used at all. Instead, regenerative medicine techniques, such as Regenerative Orthopedics, which have been shown to resolve ligament injuries, repair tendon injuries, and rebuild cartilage in the hip, should be sought.\r\n\r\n<strong><em>Do Hyaluronic Acid Injections Work?</em></strong>\r\n\r\nHyaluronic acid injections, such as Synvisc or Hyalgen, are very popular conservative treatments for hip pain. Hyaluronic acid provides cushion and lubrication to the joints. It can be used as an oral supplement and as an injection that is given directly into the hip joint.\r\n\r\nBut does hyaluronic acid work and are there drawbacks to its use? Sometimes sufferers experience relief with hyaluronic acid injections, but the reprieve from pain is generally only for a short period of time. When you take a look at studies, the research has shown hyaluronic acid treatment to actually lack clinical effectiveness, with thousands of patients finding only minimal relief or no relief at all.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a> The treatment frequently becomes only a delay of the inevitable hip replacement, because <strong><em>it only lubricates a dysfunctional joint, without fixing anything.</em></strong>\r\n\r\n<strong>What about Arthroscopic Surgery? Is it beneficial?</strong>\r\n\r\nElimination of the painful area by arthroscopic shaving and cutting, or by the removal of tissue just delays the pain for a few years until the remaining tissue becomes degenerated. Arthroscopy is a direct assault to joint tissue, and increases the arthritic process. Arthroscopy, like the aforementioned treatments, may relieve symptoms temporarily, but long-term will destabilize the joint and boost degeneration. The hip pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or cortisone injection, the risk of developing long-term arthritis and the eventual hip replacement is greatly increased. The key to keeping the hip strong is to stimulate the area to heal.\r\n\r\n<strong>How Can You Stop the Cycle of Instability in the Hip Joint?</strong>\r\n\r\nThe goal of many therapeutic, non-surgical modalities such as weight loss, exercise, physical therapy, bracing, and orthoses, is to decrease pain and improve function, but they are unable to repair the source of the pain, or the cycle of joint instability that started the problem to begin with. The increased mechanical stress caused by injury to the ligaments, tendons, labrum, etc. that altered the function of the hip joint and made the joint unstable and more susceptible to further soft tissue injury, needs to be stopped. If you don’t repair what caused the arthritis in the first place, it will only continue, since the long-lasting effect of continual joint instability is arthritis. Unfortunately, these treatments may fail because they are unable to repair this instability. The road to arthritis, and the ensuing joint replacement, can only be remedied when the problem of joint instability is addressed.\r\n\r\nFortunately, Regenerative Orthopedics stops the cycle, because the treatments repair the soft tissue injuries, like ligament, tendon, and labrum injuries. Regenerative Orthopedics do not interfere with the normal healing process of the body, like cortisone and NSAIDS do, but rather stimulate the normal inflammatory-reparative mechanisms of the body, laying down new collagen, strengthening the tendons and ligaments, and boosting cartilage growth. The treatments reduce the chance of long-term arthritis. Regenerative Orthopedics offers hope to those suffering from hip arthritis and to those trying to avoid hip replacement. While surgery is necessary in a small percentage of patients, non-surgical regenerative therapies should be a first-line, conservative treatment tried prior to surgery.  If surgery has already been done and pain continues to be an issue, these treatments can be effective at reducing the pain from the arthritis that was accelerated due to surgery. For more advanced conditions, the Gold Standard in Stem Cell Therapy can be utilized, which offers a promising alternative to joint replacement and the opportunity for healing and return to function for those suffering from arthritic hip pain.\r\n\r\n<hr />\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Diehl P, Gerdesmeyer L, Schauwecker J, Kreuz PC, Gollwitzer H, Tischer T. Conservative therapy of osteoarthritis. Orthopade. 2013','Help for Arthritis of the Hip','','inherit','closed','closed','','2450-revision-v1','','','2019-07-22 21:30:45','2019-07-22 21:30:45','',2450,'https://www.drfields.com/uncategorized/2450-revision-v1/',0,'revision','',0),(2453,8,'2019-07-23 17:49:21','2019-07-23 17:49:21','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations <br/>Peter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc® <br/>successfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in <br/>Tanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Help for Arthritis of the Hip</span>\r\n<a class=\"btn-more\" href=\"/help-for-arthritis-of-the-hip\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-23 17:49:21','2019-07-23 17:49:21','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2454,8,'2019-07-25 21:05:29','2019-07-25 21:05:29','google@websitesdepot.com\nwdeditor','google@websitesdepot.com','','publish','closed','closed','','google-websitesdepot-com','','','2019-07-25 21:05:29','2019-07-25 21:05:29','',0,'https://www.drfields.com/?post_type=flamingo_contact&#038;p=2454',0,'flamingo_contact','',0),(2456,8,'2019-07-23 21:20:03','2019-07-23 21:20:03','<strong>Help for Arthritis of the Hip </strong>\n\nIf you have arthritis in your hip, you know how debilitating the disease can be. But how did you get to this point, and what can you do about it? The pain and destruction of arthritis of the hip do not happen overnight but occur through a sequence of events that has at its core, a loss of cartilage in the hip. The degenerative changes that occur through this process affect other hip joint structures, and will eventually lead to the narrowing of joint space and the growth of bone spurs. The cycle progresses until the movement of the hip joint becomes noticeably restricted. The ongoing hip pain, restriction in mobility, and disability caused by hip arthritis frequently leads sufferers to seek out relief, and their physician and/or surgeon will eventually recommend surgical replacement of the hip. Is a surgical hip replacement the only choice a hip arthritis sufferer has?\n\n<strong>Let’s Take a Deeper Look at the Arthritis Cycle</strong>\n\nWhat actually transpires before reaching the point of cartilage loss in the hip? Arthritis of the hip almost always begins with ligament weakness or injury. The hip joint is a ball-and-socket joint with massive ligaments. Healthy ligaments hold the bones together, and along with the cartilage enable the bones to glide evenly over one another when the joints go through their various motions. The ligaments are the structures primarily responsible for maintaining smooth joint motion, and making sure the joint doesn’t go out of place or move too much! But when the ligaments and other soft tissue structures of the hip face forces beyond what they can withstand, injury and failure occur, resulting in hip instability. These forces may be sudden, such as through a fall or accident, or over a period of time, when the ligaments are subjected over and over to abnormal forces during situations like when a person continually limps due to an ankle or knee injury. When the ligaments become injured, the entire hip joint will be unstable and will move abnormally. You can understand how the abnormal movement of the joint will then put undue stress on all of the other joint structures which will continue to weaken the ligaments more and more. Even the overgrowth of bone, as seen by the development of bone spurs, is part of the body’s attempts at stabilizing the abnormal joint motion occurring in the joint. The cycle of injury goes on, progressively degenerating the hip in the development of arthritis. At this point, the sufferer is faced with the question of how to relieve the pain and improve function, since mobility is often impaired. Surgical repair and hip replacement are needed at times, but more conservative treatments should be sought first.\n\n<strong>What Are the Treatment Options for Hip Arthritis? </strong>\n\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are commonly used to treat arthritis pain. Are these good options?  These pain relief options have been shown to be effective in decreasing inflammation and pain in the short-term.  However, these medications have some negative side effects. Unfortunately, they weaken soft tissue and inhibit the ability of the tissue, such as ligaments and tendons, to heal. For this reason, their use is cautioned in those who have ligament and soft tissue injuries. How do they weaken soft tissue? Cortisone actually weakens collagen and as such weakens the soft tissue. Can you see how taking something that weakens soft tissue will actually make injuries occur more easily and cause the joint to be more susceptible to injury and more unstable overall? It’s true! Cortisone contributes to the development of conditions such as arthritis, and pushes the sufferer more rapidly down the road to the eventual joint replacement. For acute ligament injuries, these modalities should be used for the shortest period of time, if used at all. Instead, regenerative medicine techniques, such as Regenerative Orthopedics, which have been shown to resolve ligament injuries, repair tendon injuries, and rebuild cartilage in the hip, should be sought.\n\n<strong><em>Do Hyaluronic Acid Injections Work?</em></strong>\n\nHyaluronic acid injections, such as Synvisc or Hyalgen, are very popular conservative treatments for hip pain. Hyaluronic acid provides cushion and lubrication to the joints. It can be used as an oral supplement and as an injection that is given directly into the hip joint.\n\nBut does hyaluronic acid work and are there drawbacks to its use? Sometimes sufferers experience relief with hyaluronic acid injections, but the reprieve from pain is generally only for a short period of time. When you take a look at studies, the research has shown hyaluronic acid treatment to actually lack clinical effectiveness, with thousands of patients finding only minimal relief or no relief at all.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a> The treatment frequently becomes only a delay of the inevitable hip replacement, because <strong><em>it only lubricates a dysfunctional joint, without fixing anything.</em></strong>\n\n<strong>What about Arthroscopic Surgery? Is it beneficial?</strong>\n\nElimination of the painful area by arthroscopic shaving and cutting, or by the removal of tissue just delays the pain for a few years until the remaining tissue becomes degenerated. Arthroscopy is a direct assault to joint tissue, and increases the arthritic process. Arthroscopy, like the aforementioned treatments, may relieve symptoms temporarily, but long-term will destabilize the joint and boost degeneration. The hip pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or cortisone injection, the risk of developing long-term arthritis and the eventual hip replacement is greatly increased. The key to keeping the hip strong is to stimulate the area to heal.\n\n<strong>How Can You Stop the Cycle of Instability in the Hip Joint?</strong>\n\nThe goal of many therapeutic, non-surgical modalities such as weight loss, exercise, physical therapy, bracing, and orthoses, is to decrease pain and improve function, but they are unable to repair the source of the pain, or the cycle of joint instability that started the problem to begin with. The increased mechanical stress caused by injury to the ligaments, tendons, labrum, etc. that altered the function of the hip joint and made the joint unstable and more susceptible to further soft tissue injury, needs to be stopped. If you don’t repair what caused the arthritis in the first place, it will only continue, since the long-lasting effect of continual joint instability is arthritis. Unfortunately, these treatments may fail because they are unable to repair this instability. The road to arthritis, and the ensuing joint replacement, can only be remedied when the problem of joint instability is addressed.\n\nFortunately, Regenerative Orthopedics stops the cycle, because the treatments repair the soft tissue injuries, like ligament, tendon, and labrum injuries. Regenerative Orthopedics do not interfere with the normal healing process of the body, like cortisone and NSAIDS do, but rather stimulate the normal inflammatory-reparative mechanisms of the body, laying down new collagen, strengthening the tendons and ligaments, and boosting cartilage growth. The treatments reduce the chance of long-term arthritis. Regenerative Orthopedics offers hope to those suffering from hip arthritis and to those trying to avoid hip replacement. While surgery is necessary in a small percentage of patients, non-surgical regenerative therapies should be a first-line, conservative treatment tried prior to surgery.  If surgery has already been done and pain continues to be an issue, these treatments can be effective at reducing the pain from the arthritis that was accelerated due to surgery. For more advanced conditions, the Gold Standard in Stem Cell Therapy can be utilized, which offers a promising alternative to joint replacement and the opportunity for healing and return to function for those suffering from arthritic hip pain.\n\n<hr />\n\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Diehl P, Gerdesmeyer L, Schauwecker J, Kreuz PC, Gollwitzer H, Tischer T. Conservative therapy of osteoarthritis. Orthopade. 2013','Help for Arthritis of the Hip','','inherit','closed','closed','','2450-autosave-v1','','','2019-07-23 21:20:03','2019-07-23 21:20:03','',2450,'https://www.drfields.com/uncategorized/2450-autosave-v1/',0,'revision','',0),(2457,8,'2019-07-23 21:21:24','2019-07-23 21:21:24','<strong>Help for Arthritis of the Hip </strong>\r\n\r\nIf you have arthritis in your hip, you know how debilitating the disease can be. But how did you get to this point, and what can you do about it? The pain and destruction of arthritis of the hip do not happen overnight but occur through a sequence of events that has at its core, a loss of cartilage in the hip. The degenerative changes that occur through this process affect other hip joint structures, and will eventually lead to the narrowing of joint space and the growth of bone spurs. The cycle progresses until the movement of the hip joint becomes noticeably restricted. The ongoing hip pain, restriction in mobility, and disability caused by hip arthritis frequently lead sufferers to seek out relief, and their physician and/or surgeon will eventually recommend surgical replacement of the hip. Is a surgical hip replacement the only choice a hip arthritis sufferer has?\r\n\r\n<strong>Let’s Take a Deeper Look at the Arthritis Cycle</strong>\r\n\r\nWhat actually transpires before reaching the point of cartilage loss in the hip? Arthritis of the hip almost always begins with ligament weakness or injury. The hip joint is a ball-and-socket joint with massive ligaments. Healthy ligaments hold the bones together, and along with the cartilage enable the bones to glide evenly over one another when the joints go through their various motions. The ligaments are the structures primarily responsible for maintaining smooth joint motion, and making sure the joint doesn’t go out of place or move too much! But when the ligaments and other soft tissue structures of the hip face forces beyond what they can withstand, injury and failure occur, resulting in hip instability. These forces may be sudden, such as through a fall or accident, or over a period of time, when the ligaments are subjected over and over to abnormal forces during situations like when a person continually limps due to an ankle or knee injury. When the ligaments become injured, the entire hip joint will be unstable and will move abnormally. You can understand how the abnormal movement of the joint will then put undue stress on all of the other joint structures which will continue to weaken the ligaments more and more. Even the overgrowth of bone, as seen by the development of bone spurs, is part of the body’s attempts at stabilizing the abnormal joint motion occurring in the joint. The cycle of injury goes on, progressively degenerating the hip in the development of arthritis. At this point, the sufferer is faced with the question of how to relieve the pain and improve function, since mobility is often impaired. Surgical repair and hip replacement are needed at times, but more conservative treatments should be sought first.\r\n\r\n<strong>What Are the Treatment Options for Hip Arthritis? </strong>\r\n\r\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are commonly used to treat arthritis pain. Are these good options?  These pain relief options have been shown to be effective in decreasing inflammation and pain in the short-term.  However, these medications have some negative side effects. Unfortunately, they weaken soft tissue and inhibit the ability of the tissue, such as ligaments and tendons, to heal. For this reason, their use is cautioned in those who have ligament and soft tissue injuries. How do they weaken soft tissue? Cortisone actually weakens collagen and as such weakens the soft tissue. Can you see how taking something that weakens soft tissue will actually make injuries occur more easily and cause the joint to be more susceptible to injury and more unstable overall? It’s true! Cortisone contributes to the development of conditions such as arthritis and pushes the sufferer more rapidly down the road to the eventual joint replacement. For acute ligament injuries, these modalities should be used for the shortest period of time, if used at all. Instead, regenerative medicine techniques, such as Regenerative Orthopedics, which have been shown to resolve ligament injuries, repair tendon injuries, and rebuild cartilage in the hip, should be sought.\r\n\r\n<strong>Do Hyaluronic Acid Injections Work?</strong>\r\n\r\nHyaluronic acid injections, such as Synvisc or Hyalgen, are very popular conservative treatments for hip pain. Hyaluronic acid provides cushion and lubrication to the joints. It can be used as an oral supplement and as an injection that is given directly into the hip joint.\r\n\r\nBut does hyaluronic acid work and are there drawbacks to its use? Sometimes sufferers experience relief with hyaluronic acid injections, but the reprieve from pain is generally only for a short period of time. When you take a look at studies, the research has shown hyaluronic acid treatment to actually lack clinical effectiveness, with thousands of patients finding only minimal relief or no relief at all.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a> The treatment frequently becomes only a delay of the inevitable hip replacement, because <strong><em>it only lubricates a dysfunctional joint, without fixing anything.</em></strong>\r\n\r\n<strong>What about Arthroscopic Surgery? Is it beneficial?</strong>\r\n\r\nElimination of the painful area by arthroscopic shaving and cutting, or by the removal of tissue just delays the pain for a few years until the remaining tissue becomes degenerated. Arthroscopy is a direct assault to joint tissue and increases the arthritic process. Arthroscopy, like the aforementioned treatments, may relieve symptoms temporarily, but long-term will destabilize the joint and boost degeneration. The hip pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or cortisone injection, the risk of developing long-term arthritis and the eventual hip replacement is greatly increased. The key to keeping the hip strong is to stimulate the area to heal.\r\n\r\n<strong>How Can You Stop the Cycle of Instability in the Hip Joint?</strong>\r\n\r\nThe goal of many therapeutic, non-surgical modalities such as weight loss, exercise, physical therapy, bracing, and orthoses, is to decrease pain and improve function, but they are unable to repair the source of the pain or the cycle of joint instability that started the problem, to begin with. The increased mechanical stress caused by injury to the ligaments, tendons, labrum, etc. that altered the function of the hip joint and made the joint unstable and more susceptible to further soft tissue injury, needs to be stopped. If you don’t repair what caused the arthritis in the first place, it will only continue, since the long-lasting effect of continual joint instability is arthritis. Unfortunately, these treatments may fail because they are unable to repair this instability. The road to arthritis, and the ensuing joint replacement can only be remedied when the problem of joint instability is addressed.\r\n\r\nFortunately, Regenerative Orthopedics stops the cycle, because the treatments repair the soft tissue injuries, like ligament, tendon, and labrum injuries. Regenerative Orthopedics does not interfere with the normal healing process of the body, like cortisone and NSAIDS do, but rather stimulate the normal inflammatory-reparative mechanisms of the body, laying down new collagen, strengthening the tendons and ligaments, and boosting cartilage growth. The treatments reduce the chance of long-term arthritis. Regenerative Orthopedics offers hope to those suffering from hip arthritis and to those trying to avoid hip replacement. While surgery is necessary for a small percentage of patients, non-surgical regenerative therapies should be a first-line, conservative treatment tried prior to surgery.  If surgery has already been done and pain continues to be an issue, these treatments can be effective at reducing the pain from the arthritis that was accelerated due to surgery. For more advanced conditions, the Gold Standard in Stem Cell Therapy can be utilized, which offers a promising alternative to joint replacement and the opportunity for healing and return to function for those suffering from arthritic hip pain.\r\n\r\n<hr />\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Diehl P, Gerdesmeyer L, Schauwecker J, Kreuz PC, Gollwitzer H, Tischer T. Conservative therapy of osteoarthritis. Orthopade. 2013','Help for Arthritis of the Hip','','inherit','closed','closed','','2450-revision-v1','','','2019-07-23 21:21:24','2019-07-23 21:21:24','',2450,'https://www.drfields.com/uncategorized/2450-revision-v1/',0,'revision','',0),(2458,0,'2019-07-24 13:41:51','2019-07-24 13:41:51','mimioverjoyed@gmail.com\nLeann Leonard','mimioverjoyed@gmail.com','','publish','closed','closed','','mimioverjoyed-gmail-com','','','2019-07-24 13:41:51','2019-07-24 13:41:51','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2458',0,'flamingo_contact','',0),(2459,0,'2019-07-24 13:41:51','2019-07-24 13:41:51','Leann Leonard\nmimioverjoyed@gmail.com\n(310) 990-0691\n9am-11am\nSignificant inflammation and tendinosis in left rotator cuff.\nI had a MRI and can have results sent to you for evaluation.\n10\n70.93.159.40\nMozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; EIE10;ENUSMCM; rv:11.0) like Gecko\nhttps://www.drfields.com/contact/\nJuly 24, 2019\n1:41 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-10','','','2019-07-24 13:41:51','2019-07-24 13:41:51','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2459',0,'flamingo_inbound','',0),(2460,0,'2019-07-24 14:49:46','2019-07-24 14:49:46','yi.ronald@gmail.com\nRonald Yi','yi.ronald@gmail.com','','publish','closed','closed','','yi-ronald-gmail-com','','','2019-07-24 14:49:46','2019-07-24 14:49:46','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2460',0,'flamingo_contact','',0),(2461,0,'2019-07-24 14:49:46','2019-07-24 14:49:46','Ronald Yi\nyi.ronald@gmail.com\n06-26294896\n11am-1pm\nWould you like to promote your ad on thousands of advertising sites every month? One tiny investment every month will get you virtually unlimited traffic to your site forever!To find out more check out our site here: http://post1000sofads.webhop.me\nWould you like to submit your business on thousands of advertising sites every month? One tiny investment every month will get you virtually unlimited traffic to your site forever!Get more info by visiting: http://post1000sofads.webhop.me\n11\n184.75.211.148\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nJuly 24, 2019\n2:49 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-11','','','2019-07-24 14:49:46','2019-07-24 14:49:46','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2461',0,'flamingo_inbound','',0),(2462,0,'2019-07-24 19:38:49','2019-07-24 19:38:49','kgarden248@gmail.com\nKimberly','kgarden248@gmail.com','','publish','closed','closed','','kgarden248-gmail-com','','','2019-07-24 19:38:49','2019-07-24 19:38:49','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2462',0,'flamingo_contact','',0),(2463,0,'2019-07-24 19:38:49','2019-07-24 19:38:49','Kimberly\nkgarden248@gmail.com\n8054508253\n3pm-5pm\nHello - I was diagnosed with hip dysplasia in 2016 (46 years old) while training for a half marathon. As active individual who loved running, my Dr. advised me not to run and try other exercises which I did. I was given a script for PT to help me with severe pain and it helped, however after doing exercises on my own the pain would come back so I had a cortesione shot which lasted for about a year then another which lasted 6 months and then more PT to manage the pain. Things have gotten progressively worse and I walk with a limp, I in in constant pain walking, sitting, standing, sleeping. \r\n\r\nOn June 16/17 I had two contrast MRIs of my hips and it showed left side labrum tear, gluteal tear of the minimus and medius and excess fluid in the bursa and on the right tears in the gluetal minimus and medius. I also had a terrible reaction to the dye in the MRI ( so they say) which created terrible pain and I was not able to walk on my left side so used crutches for a month. I was given steroids to help with inflammation and pain.\nI left a message but would be curious in potentially speaking with you. Do you take insurance? Please contact me so I can discuss further at 805-450-8253. I do appreciate your time and attention. Thank you, Kim\n12\n206.190.77.2\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\nhttps://www.drfields.com/contact/\nJuly 24, 2019\n7:38 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-12','','','2019-07-24 19:38:49','2019-07-24 19:38:49','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2463',0,'flamingo_inbound','',0),(2465,8,'2019-07-24 23:31:25','2019-07-24 23:31:25','<h6>Articles</h6>\r\n<ul>\r\n 	<li><a href=\"/Articles/Magazine-Column\">Magazine Column</a></li>\r\n 	<li><a href=\"m/Articles/Health-News\">Health News</a></li>\r\n 	<li><a href=\"/Articles/Prolo-News\">Prolo News</a></li>\r\n 	<li><a href=\"/Articles/Prolotherapy-Research\">Prolotherapy Research</a></li>\r\n</ul>\r\n<img class=\"aligncenter size-full wp-image-1088\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-pain.jpeg\" alt=\"Woman Pain\" width=\"200\" height=\"300\" />\r\n<h4>Chronic Pain? - Prolotherapy May Be the Answer</h4>\r\nMany of us have aches or pains that just won’t go away no matter what we do. Medications, rest, physical therapy, acupuncture, manipulation, etc. Somehow that pain either never goes away or just keeps coming back. But one thing many of us have not tried is Prolotherapy.\r\n\r\n<a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> is a technique that helps to stimulate the body’s ability to repair a painful area when the natural healing process is not enough. In most cases Prolotherapy is effective at eliminating chronic pain due to ligament and tendon weakness 80 to 90 percent of the time.\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation. These areas may have little or no blood flow, but they have lots of nerves. When they become weak, nerves around the ligaments and tendons become stretched and irritated which produces pain.\r\n\r\nProlotherapy involves the injection of a solution that causes an inflammatory response which stimulates the healing process. This results in a stronger or larger tendon or ligament that can the hold body structures in place more effectively.\r\n\r\nThe weakened area heals, and the patient\'s pain is reduced or eliminated.\r\nIt is also an excellent alternative to cortisone injections, which long term studies have shown to actually weaken tissue.\r\n\r\nMost patients require about 6 treatments to restore function and relieve pain.\r\nThe treatments are usually given at about 3-week intervals.\r\n\r\nIn addition to chronic pain, <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> is effective in back &amp; neck, shoulder, knee, and other joint pain; tendonitis, arthritis, herniated discs, and headaches.\r\n\r\nAnd if you have a sports injury, look no further than Prolotherapy.\r\nIf it involves a tendon or ligament, chances are prolotherapy will help.','Chronic Pain? - Prolotherapy May be the Answer','','inherit','closed','closed','','1461-revision-v1','','','2019-07-24 23:31:25','2019-07-24 23:31:25','',1461,'https://www.drfields.com/uncategorized/1461-revision-v1/',0,'revision','',0),(2466,8,'2019-07-24 23:32:36','2019-07-24 23:32:36','<h6></h6>\r\n<img class=\"aligncenter size-full wp-image-1086\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/joint-x-ray.jpeg\" alt=\"Joint X Ray\" width=\"200\" height=\"267\" />\r\n<h4>Joint Surgery? Think Again! Learn About Prolotherapy</h4>\r\nMost orthopedic surgeries usually do not require a quick decision. That is why they are called elective surgeries. The surgeon, the hospital or you can elect whether or not to have them. Remember that once surgery is done, there is no going back. Even if it does not work out as planned. And in addition to the surgery, there is rehabilitation time.\r\n\r\nSo, before you rush into anything, consider your options which should include <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>.\r\nEven if you have seen an Orthopedic Surgeon, you should also see an experienced Prolotherapist and have an evaluation.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n\r\nIf you are a good candidate for <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>, get four or five treatments. If this does not help, you will be no worse off. A general rule is that you should be at least 50% better after these treatments (usually you do not even need that many). Most patients do great and are at least 80-90% better with less pain and more function.\r\n\r\nRemember that it is your body and you should feel comfortable with the decision on how to treat it.\r\nUltimately, the decision is yours.','Joint Surgery? Think Again! Learn About Prolotherapy','','inherit','closed','closed','','1463-revision-v1','','','2019-07-24 23:32:36','2019-07-24 23:32:36','',1463,'https://www.drfields.com/uncategorized/1463-revision-v1/',0,'revision','',0),(2467,8,'2019-07-24 23:36:39','2019-07-24 23:36:39','<h6></h6>\n<img class=\"size-full wp-image-1086 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/joint-x-ray.jpeg\" alt=\"Joint X Ray\" width=\"200\" height=\"267\" />\n\nMost orthopedic surgeries usually do not require a quick decision. That is why they are called elective surgeries. The surgeon, the hospital or you can elect whether or not to have them. Remember that once surgery is done, there is no going back. Even if it does not work out as planned. And in addition to the surgery, there is rehabilitation time.\n\nSo, before you rush into anything, consider your options which should include <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>.\nEven if you have seen an Orthopedic Surgeon, you should also see an experienced Prolotherapist and have an evaluation.\n\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\n\nIf you are a good candidate for <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>, get four or five treatments. If this does not help, you will be no worse off. A general rule is that you should be at least 50% better after these treatments (usually you do not even need that many). Most patients do great and are at least 80-90% better with less pain and more function.\n\nRemember that it is your body and you should feel comfortable with the decision on how to treat it.\nUltimately, the decision is yours.','Joint Surgery? Think Again! Learn About Prolotherapy','','inherit','closed','closed','','1463-autosave-v1','','','2019-07-24 23:36:39','2019-07-24 23:36:39','',1463,'https://www.drfields.com/uncategorized/1463-autosave-v1/',0,'revision','',0),(2468,8,'2019-07-24 23:36:45','2019-07-24 23:36:45','<h6></h6>\r\n<img class=\"size-full wp-image-1086 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/joint-x-ray.jpeg\" alt=\"Joint X Ray\" width=\"200\" height=\"267\" />\r\n\r\nMost orthopedic surgeries usually do not require a quick decision. That is why they are called elective surgeries. The surgeon, the hospital or you can elect whether or not to have them. Remember that once surgery is done, there is no going back. Even if it does not work out as planned. And in addition to the surgery, there is rehabilitation time.\r\n\r\nSo, before you rush into anything, consider your options which should include <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>.\r\nEven if you have seen an Orthopedic Surgeon, you should also see an experienced Prolotherapist and have an evaluation.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n\r\nIf you are a good candidate for <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>, get four or five treatments. If this does not help, you will be no worse off. A general rule is that you should be at least 50% better after these treatments (usually you do not even need that many). Most patients do great and are at least 80-90% better with less pain and more function.\r\n\r\nRemember that it is your body and you should feel comfortable with the decision on how to treat it.\r\nUltimately, the decision is yours.','Joint Surgery? Think Again! Learn About Prolotherapy','','inherit','closed','closed','','1463-revision-v1','','','2019-07-24 23:36:45','2019-07-24 23:36:45','',1463,'https://www.drfields.com/uncategorized/1463-revision-v1/',0,'revision','',0),(2469,8,'2019-07-24 23:37:34','2019-07-24 23:37:34','&nbsp;\r\n\r\n<img class=\"size-full wp-image-1088 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-pain.jpeg\" alt=\"Woman Pain\" width=\"200\" height=\"300\" />\r\n\r\nMany of us have aches or pains that just won’t go away no matter what we do. Medications, rest, physical therapy, acupuncture, manipulation, etc. Somehow that pain either never goes away or just keeps coming back. But one thing many of us have not tried is Prolotherapy.\r\n\r\n<a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> is a technique that helps to stimulate the body’s ability to repair a painful area when the natural healing process is not enough. In most cases, Prolotherapy is effective at eliminating chronic pain due to ligament and tendon weakness 80 to 90 percent of the time.\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation. These areas may have little or no blood flow, but they have lots of nerves. When they become weak, nerves around the ligaments and tendons become stretched and irritated which produces pain.\r\n\r\nProlotherapy involves the injection of a solution that causes an inflammatory response which stimulates the healing process. This results in a stronger or larger tendon or ligament that can the hold body structures in place more effectively.\r\n\r\nThe weakened area heals, and the patient\'s pain is reduced or eliminated.\r\nIt is also an excellent alternative to cortisone injections, which long term studies have shown to actually weaken tissue.\r\n\r\nMost patients require about 6 treatments to restore function and relieve pain.\r\nThe treatments are usually given at about 3-week intervals.\r\n\r\nIn addition to chronic pain, <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> is effective in back &amp; neck, shoulder, knee, and other joint pain; tendonitis, arthritis, herniated discs, and headaches.\r\n\r\nAnd if you have a sports injury, look no further than Prolotherapy.\r\nIf it involves a tendon or ligament, chances are prolotherapy will help.','Chronic Pain? - Prolotherapy May be the Answer','','inherit','closed','closed','','1461-revision-v1','','','2019-07-24 23:37:34','2019-07-24 23:37:34','',1461,'https://www.drfields.com/uncategorized/1461-revision-v1/',0,'revision','',0),(2470,8,'2019-07-24 23:38:17','2019-07-24 23:38:17','&nbsp;\r\n\r\n<img class=\"size-full wp-image-1084 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/older-man-pain.jpg\" alt=\"Older Man Pain\" width=\"200\" height=\"300\" />\r\n\r\nWant to weaken your ligament-bone junction – then get cortisone injected into that area. Cortisone and other steroid injections all have the same detrimental effects on articular cartilage.\r\n\r\nCorticosteroids (steroids), such as cortisone and Prednisone, have an adverse effect on bone and soft tissue healing. They inhibit the synthesis of proteins, collagen, and Proteoglycans in articular cartilage, by inhibiting chondrocyte production, the cells that comprise and produce the articular cartilage. The net catabolic (breakdown) effect of steroids is inhibition of fibroblast production of collagen, ground substance, and new blood vessel formation. The result is weakened synovial joints, supporting structures, articular cartilage, ligaments, and tendons. This weakness increases the pain and the increased pain leads to more steroid injections.\r\n\r\nSteroids also limit calcium absorption by the gastrointestinal tract, inactivate <a href=\"/Articles/Health-News/Vitamin-D-Its-Not-Just-For-Bones-Anymore\">vitamin D</a> and increasing the urinary excretion of calcium. Bone also shows a decrease in calcium uptake with cortisone use, ultimately leading to weakness at the fibro-osseous junction. Corticosteroids also inhibit the release of growth hormone, which further decreases soft tissue and bone repair. Ultimately, corticosteroids lead to a decrease in bone, ligament, and tendon strength.\r\n\r\nAlthough anti-inflammatory medications and steroid injections reduce pain, they do so at the cost of destroying tissue. In one study, some joints were injected only one time. Even after one steroid injection, cartilage remained biochemically and metabolically impaired. Other studies have confirmed similar harmful effects of steroids on joint and cartilage tissue. A cortisone shot can permanently damage joints. <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> has the opposite effect—it permanently strengthens joints, ligaments, and tendons.\r\n\r\nSome professional athletes and weekend warriors want quick relief. The problem with cortisone is that the athlete may get pain relief, but it may be at the expense of permanent inability to participate in athletics. Athletes often receive cortisone shots in order to play. They return to the playing field with an injury after getting a steroid injection to relieve the pain. Unfortunately, they cannot feel the pain anymore so they play as if there was no injury. We know (see above) that the injury could not possibly be healed because of the tremendous anti-healing properties of cortisone. Thus the athlete is further injured from the cortisone, as well as playing with an injury, thereby worsening the already bad injury.\r\n\r\nBottom line- get a “quick fix” with steroid injections and set yourself up for further damage. Or fix your Problem for good with <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. The choice is yours.','Cortisone - Is it Really Good for You','','inherit','closed','closed','','1459-revision-v1','','','2019-07-24 23:38:17','2019-07-24 23:38:17','',1459,'https://www.drfields.com/uncategorized/1459-revision-v1/',0,'revision','',0),(2471,8,'2019-07-24 23:39:33','2019-07-24 23:39:33','&nbsp;\r\n\r\n<img class=\"size-full wp-image-1081 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/shoulder-joint-pain.jpg\" alt=\"Shoulder Joint Pain\" width=\"200\" height=\"199\" />Rotator cuff tears, AC joint separations, sprained or strained shoulders, unstable joint, impingement syndromes all are all well-known injuries in shoulders.\r\n\r\nThis is because shoulder problems are common with both recreational and more serious athletes. Each of these injuries, and more can be effectively treated with <a title=\"Prolotherapy\" href=\"https://www.drfields.com/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. Prolotherapy has many advantages over surgery, which first and foremost is the fact that it gets at the root cause of the athlete\'s problem, which is tendon or ligament weakness. It also has less rehabilitation time, costs less, and avoids the flaws associated with rotator cuff surgery.\r\n\r\nA study done at the Mayo Clinic in 1997 reported a complication rate of 38 percent in shoulders undergoing rotator cuff repair. In order of frequency, the complications of the surgery were frozen shoulder, deep infection, and dislocation. Many of these patients who developed frozen shoulder needed a second surgical procedure to remove the adhesions.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s free</a>\r\n\r\n<strong>Rotator Cuff Impingement and Tendonitis</strong>\r\n\r\nAll athletes are affected by this but it is even more common with pitchers, tennis players, swimmers and any sport that involves a throwing motion. Rotator cuff tendinitis occurs when the small muscles of the rotator cuff become strained causing weakness of these structures and subsequent tendonitis.\r\n\r\nImpingement syndrome occurs when the <a href=\"/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> tendon becomes pinched between the head of the humerus and the acromion process when the arm is raised above the head. This happens because the space gets narrowed, as occurs when the rotator cuff muscles weaken and the humeral head rides high in the socket or when bone spurs and calcium deposits narrow the space. Impingement also occurs when the contents of the subacromial space increase in size, most often due to a swollen rotator cuff tendon or bursa, which is painfully squeezed between the humeral head and the acromion process.\r\n\r\nTreatment for the above usually includes rest, non-steroidal anti-inflammatory drugs (NSAIDs), physical therapy, and cortisone injections. Cortisone has a strong anti-inflammatory property, so it may reduce the swelling in the tendon and bursa, relieving the symptoms. Most of the time, these treatments may temporarily help. But since the underlying cause has not been addressed the problem usually returns. Degenerative fraying and tearing of the tendon may occur if constant irritation of the tendon occurs over time. The way to treat this process is with <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. This, combined with gradual re-strengthening of the rotator cuff muscles, give an excellent chance for a full recovery and performance.','Prolotherapy for Shoulder','','inherit','closed','closed','','1457-revision-v1','','','2019-07-24 23:39:33','2019-07-24 23:39:33','',1457,'https://www.drfields.com/uncategorized/1457-revision-v1/',0,'revision','',0),(2472,8,'2019-07-24 23:40:58','2019-07-24 23:40:58','&nbsp;\n\n<img class=\"size-full wp-image-1078 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-smiling.jpg\" alt=\"Woman Smiling\" width=\"200\" height=\"184\" />\n\nProlotherapy is a natural and effective treatment to strengthen specific areas and eliminate the pain. Prolotherapy stimulates the body to repair the painful area and starts the growth of new healthy, strong tissue. One’s body – and their own immune system – proliferates the tissue.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nWhat makes an ideal <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> candidate:\n<ul>\n 	<li>Ligament or tendon pain</li>\n 	<li>Desire to get better and follow a treatment plan</li>\n 	<li>Positive mental outlook</li>\n 	<li>Healthy diet</li>\n 	<li>Strong immune system</li>\n</ul>\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\n\nArthritis and Fibromyalgia\nArthritis and Fibromyalgia sufferers have some or all of their pain or from ligament and tendon injury. When the underlying ligaments and tendons are weak, the muscles spasm to stabilize the joints, and pain occurs as is the case in Fibromyalgia. The same can be said for arthritis except the body is stabilizing the joints by the overgrowth of bone.\n\n<a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> works by causing a strengthening of ligaments which allows the stabilizing of joints. When this happens, the muscle spasms are stopped (as in Fibromyalgia) or the need for the body to overgrow bones (as in arthritis).','Prolotherapy - Is It For You','','inherit','closed','closed','','1454-autosave-v1','','','2019-07-24 23:40:58','2019-07-24 23:40:58','',1454,'https://www.drfields.com/uncategorized/1454-autosave-v1/',0,'revision','',0),(2473,8,'2019-07-24 23:41:19','2019-07-24 23:41:19','&nbsp;\r\n\r\n<img class=\"size-full wp-image-1078 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-smiling.jpg\" alt=\"Woman Smiling\" width=\"200\" height=\"184\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nProlotherapy is a natural and effective treatment to strengthen specific areas and eliminate the pain. Prolotherapy stimulates the body to repair the painful area and starts the growth of new healthy, strong tissue. One’s body – and their own immune system – proliferates the tissue.\r\n\r\nWhat makes an ideal <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> candidate:\r\n<ul>\r\n 	<li>Ligament or tendon pain</li>\r\n 	<li>Desire to get better and follow a treatment plan</li>\r\n 	<li>Positive mental outlook</li>\r\n 	<li>Healthy diet</li>\r\n 	<li>Strong immune system</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n\r\nArthritis and Fibromyalgia\r\nArthritis and Fibromyalgia sufferers have some or all of their pain or from ligament and tendon injury. When the underlying ligaments and tendons are weak, the muscles spasm to stabilize the joints, and pain occurs as is the case in Fibromyalgia. The same can be said for arthritis except the body is stabilizing the joints by the overgrowth of bone.\r\n\r\n<a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> works by causing a strengthening of ligaments which allows the stabilizing of joints. When this happens, the muscle spasms are stopped (as in Fibromyalgia) or the need for the body to overgrow bones (as in arthritis).','Prolotherapy - Is It For You','','inherit','closed','closed','','1454-revision-v1','','','2019-07-24 23:41:19','2019-07-24 23:41:19','',1454,'https://www.drfields.com/uncategorized/1454-revision-v1/',0,'revision','',0),(2474,8,'2019-07-24 23:42:16','2019-07-24 23:42:16','Many of us have aches or pains that just won’t go away no matter what we do. Medications, rest, physical therapy, acupuncture, manipulation, etc. Somehow that pain either never goes away or just keeps coming back. But one thing many of us have not tried is <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>.\r\n\r\nProlotherapy is a technique that helps to stimulate the body’s ability to repair a painful area when the natural healing process is not enough. In most cases, Prolotherapy is effective at eliminating <a href=\"/Chronic-Pain\">chronic pain</a> due to ligament and tendon weakness 80 to 90 percent of the time.\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation. These areas may have little or no blood flow, but they have lots of nerves. When they become weak, nerves around the ligaments and tendons become stretched and irritated which produces pain.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n\r\n<a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> involves the injection of a solution that causes an inflammatory response which stimulates the healing process. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the patient\'s pain is reduced or eliminated. It is also an excellent alternative to cortisone injections, which long term studies have shown to actually weaken tissue.\r\n\r\nMost patients require about 6 treatments to restore function and relieve pain. The treatments are usually given at about 3-week intervals.\r\n\r\nIn addition to sports injuries, Prolotherapy is effective in back &amp; neck, shoulder, knee, and other joint pain; tendonitis, arthritis, herniated disc and headaches. If it involves a tendon or ligament, chances are prolotherapy will help.','Chronic Pain or Injuries? Prolotherapy Might be the Answer','','inherit','closed','closed','','1452-revision-v1','','','2019-07-24 23:42:16','2019-07-24 23:42:16','',1452,'https://www.drfields.com/uncategorized/1452-revision-v1/',0,'revision','',0),(2475,8,'2019-07-24 23:43:03','2019-07-24 23:43:03','&nbsp;\r\n\r\n<img class=\"size-full wp-image-712 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" />\r\n<h4>What to Ask When Looking for a Prolotherapist</h4>\r\n<ul>\r\n 	<li>How much of the practice is dedicated to <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>? At least 50% of the doctor’s practice should be Prolotherapy and better if it is more.</li>\r\n 	<li>Does the doctor do Prolotherapy on every joint (back, knee’s shoulder, neck, ankle, feet, wrist, hand, etc)? If not, then ask why.</li>\r\n 	<li>Does the doctor do the Prolotherapy himself? Only a skilled, trained MD or DO should be doing the injections; not an assistant or mid-level practitioner (PA, Nurse Practitioner, etc).</li>\r\n 	<li>Where did the doctor learn their <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> skills? And do they take continuing education in it on a regular basis. Better yet if the doctor instructs others how to do it.</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>','What to Ask When Looking for a Prolotherapist','','inherit','closed','closed','','1450-revision-v1','','','2019-07-24 23:43:03','2019-07-24 23:43:03','',1450,'https://www.drfields.com/uncategorized/1450-revision-v1/',0,'revision','',0),(2476,8,'2019-07-24 23:48:07','2019-07-24 23:48:07','<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>','Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'','','inherit','closed','closed','','1436-revision-v1','','','2019-07-24 23:48:07','2019-07-24 23:48:07','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(2477,8,'2019-07-24 23:49:29','2019-07-24 23:49:29','<h2></h2>\n<img class=\"size-full wp-image-1003 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Man Knee Pain\" />\n\n<a href=\"https://www.drfields.com/wp-content/uploads/2019/06/Prolotherapy_lecture.pdf\">Download Dr. Fields Prolotherapy Lecture To 2/22/2009</a>','Download Dr. Fields Prolotherapy Lecture Today','','inherit','closed','closed','','1434-autosave-v1','','','2019-07-24 23:49:29','2019-07-24 23:49:29','',1434,'https://www.drfields.com/uncategorized/1434-autosave-v1/',0,'revision','',0),(2478,8,'2019-07-24 23:49:42','2019-07-24 23:49:42','<h2></h2>\r\n<img class=\"size-full wp-image-1003 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Man Knee Pain\" />\r\n\r\n<a href=\"https://www.drfields.com/wp-content/uploads/2019/06/Prolotherapy_lecture.pdf\">Download Dr. Fields Prolotherapy Lecture  2/22/2009</a>','Download Dr. Fields Prolotherapy Lecture Today','','inherit','closed','closed','','1434-revision-v1','','','2019-07-24 23:49:42','2019-07-24 23:49:42','',1434,'https://www.drfields.com/uncategorized/1434-revision-v1/',0,'revision','',0),(2479,8,'2019-07-24 23:51:15','2019-07-24 23:51:15','ROCKVILLE, Md -- April 23, 2014 -- The US Food and Drug Administration (FDA) is warning that injection of corticosteroids into the epidural space of the spine may result in rare but serious adverse events, including loss of vision, stroke, paralysis, and death.\r\n\r\nThe FDA is requiring the addition of a warning to the drug labels of injectable corticosteroids to describe these risks.\r\n\r\nInjectable corticosteroids are commonly used to reduce swelling or inflammation. Injecting corticosteroids into the epidural space of the spine has been a widespread practice for many decades; however, the effectiveness and safety of the drugs for this use have not been established, and the FDA has not approved corticosteroids for such use.\r\n\r\nThe FDA reviewed a sampling of cases from the FDA Adverse Event Reporting System (FAERS) database, as well as cases in the medical literature of serious neurologic adverse events associated with epidural corticosteroid injections. Serious adverse events included death, spinal cord infarction, paraplegia, quadriplegia, cortical blindness, stroke, seizures, nerve injury, and brain edema. Many cases were temporally associated with the corticosteroid injections, with adverse events occurring within minutes to 48 hours after the corticosteroid injections. In some cases, diagnoses of neurologic adverse events were confirmed through magnetic resonance imaging or computed tomography scan. Many patients did not recover from these reported adverse events.\r\n\r\n<strong>Additional Information for Healthcare Professionals</strong>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Rare but serious neurologic adverse events have been reported with epidural corticosteroid injections, including spinal cord infarction, paraplegia, quadriplegia, cortical blindness, stroke, and death.</li>\r\n 	<li>These serious neurologic events have been reported with and without the use of fluoroscopy.</li>\r\n 	<li>Discuss with patients the benefits and risks of epidural corticosteroid injections and other possible treatments.</li>\r\n 	<li>Counsel patients to seek emergency medical attention immediately if they experience symptoms after receiving an epidural corticosteroid injection, such as loss of vision or vision changes; tingling in their arms or legs; sudden weakness or numbness in their face, arm, or leg on one or both sides of the body; dizziness; severe headache; or seizures.</li>\r\n 	<li>Report adverse effects following epidural corticosteroid injections to the FDA MedWatch program: <a title=\"https://www.accessdata.fda.gov/scripts/medwatch/\" href=\"https://www.accessdata.fda.gov/scripts/medwatch/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.accessdata.fda.gov/scripts/medwatch/</a></li>\r\n</ul>\r\n</li>\r\n</ul>\r\nTo raise awareness of the risks of epidural corticosteroid injections in the medical community, the FDA’s Safe Use Initiative convened a panel of experts, including pain management experts to help define the techniques for such injections which would reduce preventable harm. The expert panel’s recommendations will be released when they are finalized.\r\n\r\nAs part of the FDA’s ongoing effort to investigate this issue, they plan to convene an Advisory Committee meeting of external experts in late 2014 to discuss the benefits and risks of epidural corticosteroid injections and to determine if further FDA actions are needed.\r\n\r\nInjectable corticosteroids include methylprednisolone, hydrocortisone, triamcinolone, betamethasone, and dexamethasone. This safety issue is unrelated to the contamination of compounded corticosteroid injection products reported in 2012.\r\n\r\nSOURCE: US Food and Drug Administration\r\n\r\n<a href=\"http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections</a>','FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections','','inherit','closed','closed','','1429-revision-v1','','','2019-07-24 23:51:15','2019-07-24 23:51:15','',1429,'https://www.drfields.com/uncategorized/1429-revision-v1/',0,'revision','',0),(2480,8,'2019-07-24 23:52:17','2019-07-24 23:52:17','ROCKVILLE, MD-The US Food and Drug Administration (FDA) is warning that injection of corticosteroids into the epidural space of the spine may result in rare but serious adverse events, including loss of vision, stroke, paralysis, and death.\r\n\r\nThe FDA is requiring the addition of a warning to the drug labels of injectable corticosteroids to describe these risks.\r\n\r\nInjectable corticosteroids are commonly used to reduce swelling or inflammation. Injecting corticosteroids into the epidural space of the spine has been a widespread practice for many decades; however, the effectiveness and safety of the drugs for this use have not been established, and the FDA has not approved corticosteroids for such use.\r\n\r\nThe FDA reviewed a sampling of cases from the FDA Adverse Event Reporting System (FAERS) database, as well as cases in the medical literature of serious neurologic adverse events associated with epidural corticosteroid injections. Serious adverse events included death, spinal cord infarction, paraplegia, quadriplegia, cortical blindness, stroke, seizures, nerve injury, and brain edema. Many cases were temporally associated with the corticosteroid injections, with adverse events occurring within minutes to 48 hours after the corticosteroid injections. In some cases, diagnoses of neurologic adverse events were confirmed through magnetic resonance imaging or computed tomography scan. Many patients did not recover from these reported adverse events.\r\n\r\n<strong>Additional Information for Healthcare Professionals</strong>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Rare but serious neurologic adverse events have been reported with epidural corticosteroid injections, including spinal cord infarction, paraplegia, quadriplegia, cortical blindness, stroke, and death.</li>\r\n 	<li>These serious neurologic events have been reported with and without the use of fluoroscopy.</li>\r\n 	<li>Discuss with patients the benefits and risks of epidural corticosteroid injections and other possible treatments.</li>\r\n 	<li>Counsel patients to seek emergency medical attention immediately if they experience symptoms after receiving an epidural corticosteroid injection, such as loss of vision or vision changes; tingling in their arms or legs; sudden weakness or numbness in their face, arm, or leg on one or both sides of the body; dizziness; severe headache; or seizures.</li>\r\n 	<li>Report adverse effects following epidural corticosteroid injections to the FDA MedWatch program: <a title=\"https://www.accessdata.fda.gov/scripts/medwatch/\" href=\"https://www.accessdata.fda.gov/scripts/medwatch/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.accessdata.fda.gov/scripts/medwatch/</a></li>\r\n</ul>\r\n</li>\r\n</ul>\r\nTo raise awareness of the risks of epidural corticosteroid injections in the medical community, the FDA’s Safe Use Initiative convened a panel of experts, including pain management experts to help define the techniques for such injections which would reduce preventable harm. The expert panel’s recommendations will be released when they are finalized.\r\n\r\nAs part of the FDA’s ongoing effort to investigate this issue, they plan to convene an Advisory Committee meeting of external experts in late 2014 to discuss the benefits and risks of epidural corticosteroid injections and to determine if further FDA actions are needed.\r\n\r\nInjectable corticosteroids include methylprednisolone, hydrocortisone, triamcinolone, betamethasone, and dexamethasone. This safety issue is unrelated to the contamination of compounded corticosteroid injection products reported in 2012.\r\n\r\nSOURCE: US Food and Drug Administration\r\n\r\n-- April 23, 2014 --\r\n\r\n<a href=\"http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections</a>','FDA Warns of Serious Neurologic Problems After Epidural Corticosteroid Injections','','inherit','closed','closed','','1429-revision-v1','','','2019-07-24 23:52:17','2019-07-24 23:52:17','',1429,'https://www.drfields.com/uncategorized/1429-revision-v1/',0,'revision','',0),(2481,8,'2020-02-18 18:29:04','2020-02-18 18:29:04','<strong>PROLOTHERAPY: DEXTROSE/PRP/STEM CELL ALTERNATIVE TREATMENTS TO AVOID JOINT</strong> <strong>AND BACK SURGERY. THE FUTURE IS NOW! </strong>BY PETER A. FIELDS, MD, DC\n\n<em>Presented at the American Academy of Anti-aging medicine; VI World Congress; Anti-aging and Regenerative Medicine</em>\n\nThe revitalization and regeneration of the joints and of the spinal column are not in the future; it is happening today! Last year in the United States there were almost 2 million total joint replacement surgeries and another 25 to 30 million partial joint surgeries. Because of the previous, each year people are seeking non-surgical alternatives to joint and spinal column surgery. Cutting a part of the joint or injecting it with steroids is not the only answer, let’s remember that <em>surgery can always take place, but can never be undone</em>. Several sources state that 40% of those surgeries could have been avoided.\n<p style=\"height: 172px;\"><img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-1.jpg\" alt=\"Prolo Spanish\" /> <img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-2.jpg\" alt=\"Prolo Spanish\" /><img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-3.jpg\" alt=\"Prolo Spanish\" /></p>\n<img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-4.jpg\" alt=\"Prolo Spanish\" />Those people who have been told that they have severe arthritis, who are bone against bone in their joint; that their joint has degenerated into a great quantity of cartilage which has worn away, and that the only thing left to do is to replace the joint. Now they have another option!\n\n<img class=\"alignright\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-5.jpg\" alt=\"Prolo Spanish\" />Stem cells have the potential to regenerate any type of the body’s tissue, and its use in regenerative medicine is growing more and more in the medical community as an alternative to invasive surgery, including cases where a replacement is required. What is remarkable about stem cells is the fact that when they are injected into a specific area of the body, they know the types of cells that the body needs – for example, the meniscus cells or cartilage cells. This is a very exciting moment in the field of REGENERATIVE MEDICINE.\n\n<img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-6.jpg\" alt=\"Prolo Spanish\" />The results show several patients who have shown a significant functional improvement. The patients that were submitted to arthroscopy after the transplant showed joint cartilage which was close to normal. MAGNETIC RESONANCE IMAGES (MRI\'s) have revealed complete healing with a congruent cartilage tissue, while other magnetic resonances of the patients showed congruence in the cartilaginous tissue.\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"alignright\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-7.jpg\" alt=\"Prolo Spanish\" />Several reviews by investigators have concluded that the autologous transplant of the mesenchyme cell culture of the bone marrow, of adipose tissue and of plasma rich in platelets are a great promise in the treatment of joint cartilage defects, particularly defects of great size (&gt; 4 cm). The clinical results have been positive at over 1 year after having been carried out. The procedure in several patients and the procedure’s success have been measured in longer periods of time.\n\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"\" width=\"160\" height=\"216\" />\n\n<em>In his medical practice, Dr. Peter Fields uses the four types of non-surgical procedures to revitalize and support joint regeneration: the stem cells from the bone marrow, the cells from the adipose tissue, the PRP and the prolotherapy with dextrose. All of these are considered different forms that cause the tissue to proliferate or regenerate. When the new tissue whether it is cartilage, bone, ligament, tendon, meniscus or other is regenerated, the joint becomes more vibrant and strong and it can once again work well. The objective is the same: stimulate to repair damaged tissues.</em>\n\n<strong>Peter A. Fields, MD, DC is one of the few doctors in the United States who is both a Doctor of Medicine and a Chiropractor. He is widely recognized as a leader in REGENERATIVE ORTHOPEDICS having been on numerous programs and quoted in magazines and on-line publications.</strong>\n\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Regenerative Medicine Lecture in Mexico City','','inherit','closed','closed','','1419-autosave-v1','','','2020-02-18 18:29:04','2020-02-18 18:29:04','',1419,'https://www.drfields.com/uncategorized/1419-autosave-v1/',0,'revision','',0),(2482,8,'2019-07-24 23:54:55','2019-07-24 23:54:55','<strong>PROLOTHERAPY: DEXTROSE/PRP/STEM CELL ALTERNATIVE TREATMENTS TO AVOID JOINT</strong> <strong>AND BACK SURGERY. THE FUTURE IS NOW! </strong>BY PETER A. FIELDS, MD, DC\r\n\r\n<em>Presented at the American Academy of Anti-aging medicine; VI World Congress; Anti-aging and Regenerative Medicine</em>\r\n\r\nThe revitalization and regeneration of the joints and of the spinal column are not in the future; it is happening today! Last year in the United States there were almost 2 million total joint replacement surgeries and another 25 to 30 million partial joint surgeries. Because of the previous, each year people are seeking non-surgical alternatives to joint and spinal column surgery. Cutting a part of the joint or injecting it with steroids is not the only answer, let’s remember that <em>surgery can always take place, but can never be undone</em>. Several sources state that 40% of those surgeries could have been avoided.\r\n<p style=\"height: 172px;\"><img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-1.jpg\" alt=\"Prolo Spanish\" /> <img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-2.jpg\" alt=\"Prolo Spanish\" /><img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-3.jpg\" alt=\"Prolo Spanish\" /></p>\r\n<img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-4.jpg\" alt=\"Prolo Spanish\" />Those people who have been told that they have severe arthritis, who are bone against bone in their joint; that their joint has degenerated into a great quantity of cartilage which has worn away, and that the only thing left to do is to replace the joint. Now they have another option!\r\n\r\n<img class=\"alignright\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-5.jpg\" alt=\"Prolo Spanish\" />Stem cells have the potential to regenerate any type of the body’s tissue, and its use in regenerative medicine is growing more and more in the medical community as an alternative to invasive surgery, including cases where a replacement is required. What is remarkable about stem cells is the fact that when they are injected into a specific area of the body, they know the types of cells that the body needs – for example, the meniscus cells or cartilage cells. This is a very exciting moment in the field of REGENERATIVE MEDICINE.\r\n\r\n<img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-6.jpg\" alt=\"Prolo Spanish\" />The results show several patients who have shown a significant functional improvement. The patients that were submitted to arthroscopy after the transplant showed joint cartilage which was close to normal. MAGNETIC RESONANCE IMAGES (MRI\'s) have revealed complete healing with a congruent cartilage tissue, while other magnetic resonances of the patients showed congruence in the cartilaginous tissue.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignright\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-7.jpg\" alt=\"Prolo Spanish\" />Several reviews by investigators have concluded that the autologous transplant of the mesenchyme cell culture of the bone marrow, of adipose tissue and of plasma rich in platelets are a great promise in the treatment of joint cartilage defects, particularly defects of great size (&gt; 4 cm). The clinical results have been positive at over 1 year after having been carried out. The procedure in several patients and the procedure’s success have been measured in longer periods of time.\r\n\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"\" width=\"160\" height=\"216\" />\r\n\r\n<em>In his medical practice, Dr. Peter Fields uses the four types of non-surgical procedures to revitalize and support joint regeneration: the stem cells from the bone marrow, the cells from the adipose tissue, the PRP and the prolotherapy with dextrose. All of these are considered different forms that cause the tissue to proliferate or regenerate. When the new tissue whether it is cartilage, bone, ligament, tendon, meniscus or other is regenerated, the joint becomes more vibrant and strong and it can once again work well. The objective is the same: stimulate to repair damaged tissues.</em>\r\n\r\n<strong>Peter A. Fields, MD, DC is one of the few doctors in the United States who is both a Doctor of Medicine and a Chiropractor. He is widely recognized as a leader in REGENERATIVE ORTHOPEDICS having been on numerous programs and quoted in magazines and on-line publications.</strong>\r\n\r\n<strong><a href=\"https://www.drfields.com/regenerative-medicine-lecture-in-mexico-city-spanish/\">(CLICK HERE FOR SPANISH VERSION)</a></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Regenerative Medicine Lecture in Mexico City','','inherit','closed','closed','','1419-revision-v1','','','2019-07-24 23:54:55','2019-07-24 23:54:55','',1419,'https://www.drfields.com/uncategorized/1419-revision-v1/',0,'revision','',0),(2483,8,'2019-07-24 23:55:55','2019-07-24 23:55:55','&nbsp;\r\n\r\n<img class=\"size-full wp-image-712 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" />\r\n<ul>\r\n 	<li>How much of the practice is dedicated to <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>? At least 50% of the doctor’s practice should be Prolotherapy and better if it is more.</li>\r\n 	<li>Does the doctor do Prolotherapy on every joint (back, knee’s shoulder, neck, ankle, feet, wrist, hand, etc)? If not, then ask why.</li>\r\n 	<li>Does the doctor do the Prolotherapy himself? Only a skilled, trained MD or DO should be doing the injections; not an assistant or mid-level practitioner (PA, Nurse Practitioner, etc).</li>\r\n 	<li>Where did the doctor learn their <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> skills? And do they take continuing education in it on a regular basis. Better yet if the doctor instructs others how to do it.</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>','What to Ask When Looking for a Prolotherapist','','inherit','closed','closed','','1450-revision-v1','','','2019-07-24 23:55:55','2019-07-24 23:55:55','',1450,'https://www.drfields.com/uncategorized/1450-revision-v1/',0,'revision','',0),(2484,0,'2019-07-25 17:11:57','2019-07-25 17:11:57','apelina@hotmail.com\nJamesDut','apelina@hotmail.com','','publish','closed','closed','','apelina-hotmail-com','','','2019-07-25 17:11:57','2019-07-25 17:11:57','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2484',0,'flamingo_contact','',0),(2485,0,'2019-07-25 17:11:57','2019-07-25 17:11:57','JamesDut\napelina@hotmail.com\n84842773733\n3pm-5pm\nHow to earn on investments in Bitcoin from $ 3000 per day: http://v.ht/KWLKru?jVatoeNafVcEJQ\nHow to earn on investments in Bitcoin from $ 3000 per day: http://v.ht/KWLKru?jVatoeNafVcEJQ\nSend\n13\n31.7.57.246\nMozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2\nhttps://www.drfields.com/contact/\nJuly 25, 2019\n5:11 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-13','','','2019-07-25 17:11:57','2019-07-25 17:11:57','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2485',0,'flamingo_inbound','',0),(2487,8,'2019-07-25 19:45:40','2019-07-25 19:45:40','Yelp','Yelp','Yelp','inherit','open','closed','','yelp','','','2019-07-25 19:45:40','2019-07-25 19:45:40','',0,'https://www.drfields.com/wp-content/uploads/2019/07/yelp.png',0,'attachment','image/png',0),(2488,0,'2019-07-25 22:20:35','2019-07-25 22:20:35','tami_goldsmith@earthlink.net\nTami Goldsmith','tami_goldsmith@earthlink.net','','publish','closed','closed','','tami_goldsmith-earthlink-net','','','2019-07-25 22:20:35','2019-07-25 22:20:35','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2488',0,'flamingo_contact','',0),(2489,0,'2019-07-25 22:20:35','2019-07-25 22:20:35','Tami Goldsmith\ntami_goldsmith@earthlink.net\n310-880-3945\n3pm-5pm\nRecurring ganglion cyst - Dr. Altchuler suggested treatment from you\nDo you have any availability tomorrow or Monday?\n14\n64.203.54.140\nMozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:66.0) Gecko/20100101 Firefox/66.0\nhttps://www.drfields.com/contact/\nJuly 25, 2019\n10:20 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-14','','','2019-07-25 22:20:35','2019-07-25 22:20:35','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2489',0,'flamingo_inbound','',0),(2490,0,'2019-07-26 02:15:28','2019-07-26 02:15:28','marriott.lillie@hotmail.com\nLillie Marriott','marriott.lillie@hotmail.com','','publish','closed','closed','','marriott-lillie-hotmail-com','','','2019-07-26 02:15:28','2019-07-26 02:15:28','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2490',0,'flamingo_contact','',0),(2491,0,'2019-07-26 02:15:28','2019-07-26 02:15:28','Lillie Marriott\nmarriott.lillie@hotmail.com\n05074 68 42 08\n9am-11am\nEnjoy thousands of qualified buyers sent directly to your site starting at only $37. Would you be interested in how this works? Simply reply to this email address for more information: isla7996gre@gmail.com\nReceive hundreds of people who are ready to buy delivered to your website for less than $39. Would you be interested in how this works? Just send us a reply to this email address for more details: isla7996gre@gmail.com\n15\n104.245.144.43\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nJuly 26, 2019\n2:15 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-15','','','2019-07-26 02:15:28','2019-07-26 02:15:28','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2491',0,'flamingo_inbound','',0),(2492,0,'2019-07-26 16:36:17','2019-07-26 16:36:17','janet@explainmybusiness.com\nJanet Baker','janet@explainmybusiness.com','','publish','closed','closed','','janet-explainmybusiness-com','','','2019-07-26 16:36:17','2019-07-26 16:36:17','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2492',0,'flamingo_contact','',0),(2493,0,'2019-07-26 16:36:17','2019-07-26 16:36:17','Janet Baker\njanet@explainmybusiness.com\n917-675-5528\n3pm-5pm\nHi there,\r\n\r\nI  was just checking out your website, and was very impressed with the quality, look and feel.\r\n\r\nI’m sure you have seen a lot of companies are starting to add animated videos to their websites, social media, and YouTube pages to help explain &amp; promote their services in a fun, clear, and engaging way. I think a 60-90 second animated video would be a perfect way for you to get your company\'s message across to more potential clients.\r\n\r\nMy team, located Both in Israel and USA, helps businesses create quality customized Character Animation, Motion Graphics, &amp; Whiteboard videos at affordable rates.\r\n\r\nI would be happy to set up a call for a consultation and price quote.\r\n\r\nLet\'s speak soon.\r\n\r\nBest Regards,\r\n\r\nJanet\r\nBusiness Manager\r\nExplainMyBusiness.com\nHi there,\r\n\r\nI  was just checking out your website, and was very impressed with the quality, look and feel.\r\n\r\nI’m sure you have seen a lot of companies are starting to add animated videos to their websites, social media, and YouTube pages to help explain &amp; promote their services in a fun, clear, and engaging way. I think a 60-90 second animated video would be a perfect way for you to get your company\'s message across to more potential clients.\r\n\r\nMy team, located Both in Israel and USA, helps businesses create quality customized Character Animation, Motion Graphics, &amp; Whiteboard videos at affordable rates.\r\n\r\nI would be happy to set up a call for a consultation and price quote.\r\n\r\nLet\'s speak soon.\r\n\r\nBest Regards,\r\n\r\nJanet\r\nBusiness Manager\r\nExplainMyBusiness.com\n16\n89.187.164.81\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nJuly 26, 2019\n4:36 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-16','','','2019-07-26 16:36:17','2019-07-26 16:36:17','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2493',0,'flamingo_inbound','',0),(2494,0,'2019-07-27 07:01:06','2019-07-27 07:01:06','jilllevy07@comcast.net\nJamesDut','jilllevy07@comcast.net','','publish','closed','closed','','jilllevy07-comcast-net','','','2019-07-27 07:01:06','2019-07-27 07:01:06','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2494',0,'flamingo_contact','',0),(2495,0,'2019-07-27 07:01:06','2019-07-27 07:01:06','JamesDut\njilllevy07@comcast.net\n82819563155\n11am-1pm\nCryptocurrency Trading &amp; Investing Strategy for 2019. Receive passive income of $ 70,000 per month: http://v.ht/WwJCQ?&amp;fujpf=o2g1ufle\nCryptocurrency Trading &amp; Investing Strategy for 2019. Receive passive income of $ 70,000 per month: http://v.ht/WwJCQ?&amp;fujpf=o2g1ufle\nSend\n17\n84.39.112.90\nMozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\nhttps://www.drfields.com/contact/\nJuly 27, 2019\n7:01 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-17','','','2019-07-27 07:01:06','2019-07-27 07:01:06','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2495',0,'flamingo_inbound','',0),(2496,0,'2019-07-27 07:06:31','2019-07-27 07:06:31','no3world@outlook.com\nBrent Smith','no3world@outlook.com','','publish','closed','closed','','no3world-outlook-com','','','2019-07-27 07:06:31','2019-07-27 07:06:31','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2496',0,'flamingo_contact','',0),(2497,0,'2019-07-27 07:06:31','2019-07-27 07:06:31','Brent Smith\nno3world@outlook.com\n5592604174\n11am-1pm\nUp till last year I have raced bmx competitively on and off since I was 12. I have multiple spots where I have degenerative discs. Pretty sure the vertebrae are trying to connect. Shows on X-ray a tail growing towards the other. I’d love to see what you could do to help me with my discomfort/pain and to get these episodes where I end up on the floor behind me.\n18\n209.218.208.186\nMozilla/5.0 (iPhone; CPU iPhone OS 12_3_1 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) CriOS/66.0.3359.122 Mobile/16F203 Safari/604.1\nhttps://www.drfields.com/contact/\nJuly 27, 2019\n7:06 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-18','','','2019-07-27 07:06:31','2019-07-27 07:06:31','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2497',0,'flamingo_inbound','',0),(2498,0,'2019-07-27 10:11:00','2019-07-27 10:11:00','lindsey.cahill@msn.com\nLindsey Cahill','lindsey.cahill@msn.com','','publish','closed','closed','','lindsey-cahill-msn-com','','','2019-07-27 10:11:00','2019-07-27 10:11:00','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2498',0,'flamingo_contact','',0),(2499,0,'2019-07-27 10:11:00','2019-07-27 10:11:00','Lindsey Cahill\nlindsey.cahill@msn.com\n0707-4823077\n9am-11am\nBoost to your website rankings! All in one premium SEO package for 5$\r\n\r\nOrder now: http://bit.ly/google-rocket\nBoost to your website rankings! All in one premium SEO package for 5$\r\n\r\nOrder now: http://bit.ly/google-rocket\n19\n151.237.179.214\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nJuly 27, 2019\n10:11 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-19','','','2019-07-27 10:11:00','2019-07-27 10:11:00','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2499',0,'flamingo_inbound','',0),(2501,8,'2019-07-29 14:33:26','2019-07-29 14:33:26','[caption id=\"attachment_4099\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4099\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/headaches-1-500x500.jpg\" alt=\"Headaches\" width=\"500\" height=\"500\" /> <strong><em>                        Are Headaches Coming From Your Neck?</em></strong>[/caption]\r\n<h3><b>Suffering from Headaches? </b><em><b>The Problem May Come From Your Neck.</b></em></h3>\r\n<span style=\"font-weight: 400;\">Headaches are a recurrent malady suffered by millions of Americans, causing pain and discomfort in the head, forehead, scalp, or neck. At times they are a mild nuisance. But headaches can become severe, even disabling, with the pain leading to difficulty at work, concentration, and performance of daily activities. </span>\r\n<h3><b>What is the Source of Headaches?</b></h3>\r\n<h4><b><i>Hormones</i></b></h4>\r\n<span style=\"font-weight: 400;\">Headaches have different sources, and the causative factors require some investigation. Hormones might be the culprit. Women may experience headaches during the menstrual cycle due to shifts in hormone levels. And when this is the case, there may be a need to balance the hormones, because the woman could have too much estrogen and not enough progesterone.</span>\r\n<h4><em><strong>Diet </strong></em></h4>\r\n<span style=\"font-weight: 400;\">Headache pain can often be </span><span style=\"font-weight: 400;\">corrected with diet. Food allergies or sensitivities can trigger headaches. And eating too many carbohydrates or not enough protein, for example, can alter blood chemistry. And that can prompt a headache or foster problems with the hormonal system, which can again lead to headaches.</span>\r\n<h4><strong><i>TMJ Syndrome</i></strong></h4>\r\n<span style=\"font-weight: 400;\">Temporomandibular</span><span style=\"font-weight: 400;\"> joint (TMJ) problems may contribute to headaches</span><span style=\"font-weight: 400;\">. Sufferers with TMJ have clicking at this joint, experience facial pain, and may notice a stiff mouth upon awakening after a night’s sleep. And all of this can then lead to a headache. TMJ syndrome, which often includes headaches, requires stabilization of the TMJ joint and ligament. Also, bite problems may be present, necessitating bite equilibration.</span>\r\n<h3><b>The Neck as the Source of Headaches</b></h3>\r\n<span style=\"font-weight: 400;\">It is not uncommon for the source of headaches to originate in the neck. Do you have neck pain before or during a headache? If you have neck pain followed by tension or migraine headache, then the source of the headache may very well be coming from your neck. </span>\r\n\r\n<span style=\"font-weight: 400;\">The most common neck problem producing headaches is an injury to the ligaments in the neck. How do you know if you have a ligament injury in your neck? You will hear grinding, crunching, and popping sounds when you turn your neck. And there is also a high probability that you crack your neck often. Injured ligaments generate instability in the neck, which induces muscle spasms in the neck as the muscles attempt to stabilize it. And the result is referral pain in the form of a tension headache in the forehead, back of the neck, or occiput. </span>\r\n<h3><em>Platelet Rich Plasma for Headaches</em></h3>\r\nDextrose Prolotherapy is often effective to treat headaches and achieve the desired results. In more severe cases, Platelet Rich Plasma, one of the types of Regenerative Orthopedics, may be recommended. This non-surgical treatment has also been shown in studies to be effective for chronic migraines.1\r\n<h4><strong><i>Cervicocranial Syndrome or </i><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><i>Barré-Liéou</i></a><i> Syndrome</i></strong></h4>\r\n<span style=\"font-weight: 400;\">Cervicocranial Syndrome, previously known as </span><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><span style=\"font-weight: 400;\">Barré-Liéou</span></a><span style=\"font-weight: 400;\"> Syndrome is a condition that causes a bunch of s</span><span style=\"font-weight: 400;\">ymptoms. The symptoms may include headache, dizziness, facial pain, ear pain, vertigo, tinnitus, loss of voice,</span> <span style=\"font-weight: 400;\">hoarseness, neck pain, and severe fatigue. </span>\r\n\r\n<span style=\"font-weight: 400;\">Instability of the neck or cervical spine is usually the source of these symptoms.</span><span style=\"font-weight: 400;\"> Neck instability involves increased motion between adjacent vertebrae which causes excessive stress on the supporting ligament structures. And the nerve endings within those structures elicit pain and a variety of symptoms.</span> <span style=\"font-weight: 400;\">In other words</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">neck instability causes extra movement in the neck bones. And this extra motion can cause the bones to push on the nerves and cause irritation of the nervous system, leading to headaches and a bunch of other symptoms. </span>\r\n<h4><strong><i>Occipital Neuralgia</i></strong></h4>\r\n<span style=\"font-weight: 400;\">Occipital neuralgia is another headache-causing condition related to neck instability. Those with this condition often experience sharp, stabbing pain in the lower part of the neck, the back of the head, and behind their eyes. The pain is typically one-sided. </span>\r\n\r\n<span style=\"font-weight: 400;\">The occipital nerve, which runs at the back of the head, can cause severe pain when injured. Many folks get nerve blocks for this pain. But these are not always effective at resolving the pain. Any instability of C1, C2, the first two neck vertebrae, can pinch or irritate the occipital nerve. And the extra motion along the spine can kink, press, and tighten on the nerves at the base of the skull. Neck instability symptoms include tenderness, clicking, grinding, and popping in the back of the head. </span>\r\n<h4><strong><i>Whiplash</i></strong></h4>\r\n<span style=\"font-weight: 400;\">Headaches can occur after whiplash injuries. During a whiplash injury, the head flexes and extends, in a forward and backward whip that injures the neck ligaments. </span><span style=\"font-weight: 400;\">Whiplash injuries are a common source of neck instability.</span>\r\n\r\n<span style=\"font-weight: 400;\">The lack of stable neck vertebrae can lead to further injury of the soft tissue and joint structures, as well as the possibility of nerve injury and irritation of the nervous system. And that can result in headaches and other symptoms. Whiplash often results in long-term pain, which is due to a ligament injury and malalignment of the neck vertebrae.</span>\r\n<h3><b>Regenerative Orthopedics Repairs Neck Instability</b></h3>\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics involves the injection of natural substances into the damaged ligaments. The treatment results in tightening, repair, and regeneration of the ligaments involved in TMJ and neck instability. The area becomes stabilized, thus eliminating the instability, muscle spasms, and associated neck and jaw pain, and other related symptoms. </span>\r\n\r\n<span style=\"font-weight: 400;\">For those who are tired of the disability and pain of severe headaches, and other conditions related to neck instability, Regenerative Orthopedics is a safe, non-surgical option that stops headache pain, decreases symptoms, and increases functionality in otherwise life-altering conditions.</span>\r\n<h3>References</h3>\r\n1Algawwam, Hayder Ghali, and Abdullah Ahmed Mohammad. \"The Effectiveness of Injection of Trigger Points with Platelet Rich Plasma as A Pain Management Method in Chronic Tension Type Headache.\" (2021).\r\n\r\n<iframe src=\"https://www.youtube.com/embed/EKGWkEAaqTM\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Headache Sufferer? It Could Be Your Neck.','','publish','open','closed','','suffering-from-headaches-the-problem-may-come-from-your-neck','','','2021-07-12 03:10:19','2021-07-12 03:10:19','',0,'https://www.drfields.com/?p=2501',0,'post','',0),(2502,8,'2019-07-29 14:33:26','2019-07-29 14:33:26','<b>Suffering from Headaches? The Problem May Come From Your Neck.</b>\r\n\r\n<span style=\"font-weight: 400;\">Headaches are a recurrent malady suffered by millions of Americans, causing pain and discomfort in the head, forehead, scalp, or neck. At times they are a mild nuisance, but headaches can become severe, even disabling, with the pain leading to difficulty at work, concentration and performance of daily activities. </span>\r\n\r\n<b>What is the Source of Headaches?</b>\r\n\r\n<b><i>Hormones</i></b>\r\n\r\n<span style=\"font-weight: 400;\">Headaches have different sources, and the causative factors require some investigation. Hormones might be the culprit. Women may experience headaches during the menstrual cycle due to shifts in hormone levels. When this is the case there may be a need to balance the hormones, because the woman could have too much estrogen and not enough progesterone.</span>\r\n\r\n<i><span style=\"font-weight: 400;\">Diet </span></i>\r\n\r\n<span style=\"font-weight: 400;\">Headache pain can often be </span><span style=\"font-weight: 400;\">corrected with diet. Food allergies or sensitivities can trigger headaches. Eating too many carbohydrates and not enough protein, for example, can alter blood chemistry, which can prompt a headache or foster problems with the hormonal system, which can again lead to headaches.</span>\r\n\r\n<i><span style=\"font-weight: 400;\">TMJ Syndrome</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Temporomandibular</span><span style=\"font-weight: 400;\"> joint (TMJ) problems may contribute to headaches</span><span style=\"font-weight: 400;\">. Sufferers with TMJ have clicking at this joint, experience facial pain, and may notice a stiff mouth upon awakening after a night’s sleep, all of which can then lead to a headache. TMJ syndrome, which often includes headaches, requires stabilization of the TMJ joint and ligament. Bite problems may also be present, necessitating bite equilibration.</span>\r\n\r\n<b>The Neck as the Source of Headaches</b>\r\n\r\n<span style=\"font-weight: 400;\">It is not uncommon for the source of headaches to originate in the neck. Do you have neck pain before or during a headache? If you have neck pain followed by a tension or migraine headache, then the source of the headache may very well be coming from your neck. The most common neck problem producing headaches is injury to the ligaments in the neck. How do you know if you have ligament injury in your neck? You will hear grinding, crunching, and popping sounds when you turn your neck. There is also a high probability that you crack your neck often. Injured ligaments generate instability in the neck, which induces muscle spasms in the neck as the muscles attempt to stabilize it. The result is referral pain in the form of a tension headache in the forehead, back of the neck, or occiput. </span>\r\n\r\n<i><span style=\"font-weight: 400;\">Cervicocranial Syndrome or </span></i><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><i><span style=\"font-weight: 400;\">Barré-Liéou</span></i></a><i><span style=\"font-weight: 400;\"> Syndrome</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Cervicocranial Syndrome, previously known as </span><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><span style=\"font-weight: 400;\">Barré-Liéou</span></a><span style=\"font-weight: 400;\"> Syndrome is a condition that causes a bunch of s</span><span style=\"font-weight: 400;\">ymptoms. The symptoms may include headache, dizziness, facial pain, ear pain, vertigo, tinnitus, loss of voice,</span> <span style=\"font-weight: 400;\">hoarseness, neck pain and severe fatigue. Instability of the neck or cervical spine is usually the source of these symptoms.</span><span style=\"font-weight: 400;\"> Neck instability involves increased motion between adjacent vertebrae which causes excessive stress on the supporting ligament structures and the nerve endings within those structures eliciting pain and a variety of symptoms.</span> <span style=\"font-weight: 400;\">In other words</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">neck instability causes extra movement in the neck bones, and this extra motion can cause the bones to push on the nerves and cause irritation of the nervous system, leading to headaches and a bunch of other symptoms. </span>\r\n\r\n<i><span style=\"font-weight: 400;\">Occipital Neuralgia</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Occipital neuralgia is another headache causing condition related to neck instability. Those with this condition often experience sharp, stabbing pain in the lower part of the neck, the back of the head, and behind their eyes. The pain is typically one-sided. The occipital nerve, which runs at the back of the head, can cause severe pain when injured. Many folks get nerve blocks for this pain, but these are not always effective at resolving the pain. Any instability of C1, C2, the first two neck vertebrae, can pinch or irritate the occipital nerve, and the extra motion along the spine can kink, press and tighten on the nerves at the base of the skull. Neck instability symptoms include tenderness, clicking, grinding and popping in the back of the head. </span>\r\n\r\n<i><span style=\"font-weight: 400;\">Whiplash</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Headaches can occur after whiplash injuries. During a whiplash injury the head flexes and extends, in a forward and backward whip that injures the neck ligaments. </span><span style=\"font-weight: 400;\">Whiplash injuries are a common source of neck instability.</span> <span style=\"font-weight: 400;\">The lack of stable neck vertebrae can lead to further injury of the soft tissue and joint structures, as well as the possibility of nerve injury and the irritation of the nervous system, which can result in headaches and other symptoms. Whiplash often results in long-term pain, which is due to ligament injury and malalignment of the neck vertebrae.</span>\r\n\r\n<b>Regenerative Orthopedics Repairs Neck Instability</b>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics involve the injection of natural substances into the damaged ligaments, which then results in tightening, repair and regeneration of the ligaments involved in TMJ and  neck instability. The treatments stabilize the area, thus eliminating the instability, muscle spasms and associated neck and jaw pain and other related symptoms. For those who are tired of the disability and pain of severe headaches, and other conditions related to neck instability, Regenerative Orthopedics is a safe, non-surgical option that stops headache pain, decreases symptoms, and increases functionality in otherwise life-altering conditions.</span>','Suffering from Headaches? The Problem May Come From Your Neck.','','inherit','closed','closed','','2501-revision-v1','','','2019-07-29 14:33:26','2019-07-29 14:33:26','',2501,'https://www.drfields.com/uncategorized/2501-revision-v1/',0,'revision','',0),(2503,8,'2019-07-29 14:50:12','2019-07-29 14:50:12','[caption id=\"attachment_4093\" align=\"alignright\" width=\"543\"]<img class=\" wp-image-4093\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/meniscus-injuries-500x500.png\" alt=\"Meniscus Injuries\" width=\"543\" height=\"543\" /> <em>    Meniscus Injuries? Repair them Non-Surgically with Regenerative Orthopedics</em>[/caption]\r\n<h3><b>Is Surgery a Good Option for Meniscus Tears?</b></h3>\r\n<span style=\"font-weight: 400;\">Meniscal tears are quite common. So much so, that they are one of the most common injuries to the knee. Meniscal injuries are routinely treated with surgery, and many with meniscus injuries end up receiving some form of meniscectomy. Nearly 700,000 arthroscopic partial meniscectomies are performed annually in the US, at an estimated annual cost of $4 billion.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\"> Is surgery of this type an effective way to treat meniscal injuries? Believe it or not, research show that it is not! Several studies question the effectiveness of this procedure. One study found that almost half of patients who received non-operative treatment with </span><span style=\"font-weight: 400;\">nonsteroidal anti-inflammatory drugs </span><span style=\"font-weight: 400;\">improved well enough to avoid surgery.</span> <span style=\"font-weight: 400;\">Three other studies compared arthroscopic meniscectomies with sham surgeries. A sham surgery is a faked surgical intervention that omits the step necessary for the surgery to be therapeutic. </span>\r\n<h4><strong><em>What W</em></strong><strong><i>ere the Results of the Research?  </i></strong></h4>\r\n<span style=\"font-weight: 400;\">They found no significant difference between meniscectomy and sham surgery, and they did not find meniscectomies to be effective. And t</span><span style=\"font-weight: 400;\">he most recent study, showed the surgery did not reduce the mechanical symptoms of knee catching and locking</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<span style=\"font-weight: 400;\">As you can see, the effectiveness of meniscectomies is questionable. </span><span style=\"font-weight: 400;\"> </span>\r\n<h3><b>If Meniscus Surgeries Are Ineffective, Then Why Are They Done?</b></h3>\r\n<span style=\"font-weight: 400;\">Patients usually believe the surgery will help their knee to function better and lessen the pain they are experiencing. When the knee locks and catches randomly, people want that to stop, especially since knee locking can be painful. If the person with these symptoms is an athlete, they want to get back to their sport quickly, and they think surgery is going to make that happen.</span>\r\n\r\n<span style=\"font-weight: 400;\"> People generally think that surgery can get them back to work or play sooner than going through physical therapy or other treatment options. But evidence and research does not back this way of thinking. In fact, many patients are worse off after the surgery.</span>\r\n<h3><b>If You Want to Keep Your Knee Intact, Then Keep Your Meniscus!</b></h3>\r\n<span style=\"font-weight: 400;\">When part of the knee, like the meniscus, is removed, the knee is unable to function normally. And removing the meniscus makes the knee unstable. The instability leads to the development of more knee problems. The joint instability that arises after removal of the meniscus negatively affects the interplay between the other structures of the knee. That\'s because extra stress is placed on them. </span>\r\n\r\n<span style=\"font-weight: 400;\">When more stress is placed on the cartilage, degeneration is accelerated, boosting the arthritic process. And more stress is also placed on the various ligaments and tendons supporting the knee, eventually damaging them. And this leads to the breakdown of the knee joint and irreversible joint damage. </span>\r\n\r\n<span style=\"font-weight: 400;\">It has been proven in studies that new onset instability is demonstrated after partial meniscectomy,</span><span style=\"font-weight: 400;\"> with significant rates of cartilage loss transpiring after both partial and complete meniscectomy. And also that these procedures lead to degenerative arthritis and ligament injury in the knee. </span><span style=\"font-weight: 400;\">And this information is not new! Adverse effects associated with meniscectomy have been documented in the literature going as far back as </span><span style=\"font-weight: 400;\">1923.</span>\r\n<h3><b>Regenerative Orthopedics Effectively Repairs Meniscus Tears Non-Surgically</b></h3>\r\n<span style=\"font-weight: 400;\">Given the accumulation of evidence </span><span style=\"font-weight: 400;\">t</span><span style=\"font-weight: 400;\">hat demonstrates not only the overwhelming lack of efficacy and benefit, but also the risk of serious adverse effects of this widely used procedure for meniscus tears, it is important to consider potential safe and effective alternatives. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is a non-surgical solution, used to effectively treat knee injuries such as meniscus tears, as well as other soft tissue injuries like ligaments and tendons.</span><span style=\"font-weight: 400;\">, </span> <span style=\"font-weight: 400;\">Regenerative Orthopedic treatments work by initiating the inflammatory stage of the healing process, raising the levels of growth factors, and initiating repair. The treatments stimulate new cell growth and rebuild depleted tissue, including the regeneration of cartilage.</span>\r\n\r\n<span style=\"font-weight: 400;\">In certain cases, Platelet Rich Plasma may be utilized. This involves injection of your own blood components to facilitate the healing of tissue that has degenerated. Platelets are the storehouses of growth factors, and platelet rich plasma is abundant in growth factors, capable of stimulating healing of the injured tissue.</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedic treatments can safely and effectively treat meniscus tears without the need for surgery, returning you quickly to the activities and sports you enjoy.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Meniscus Tears: Is Surgery a Good Option?','','publish','open','closed','','is-surgery-a-good-option-for-meniscus-tears','','','2020-09-07 20:26:11','2020-09-07 20:26:11','',0,'https://www.drfields.com/?p=2503',0,'post','',0),(2504,8,'2019-07-29 14:44:30','2019-07-29 14:44:30','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Is Surgery a Good Option for Meniscus Tears?</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/meniscus-surgery-a-failed-surgery-being-over-used/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-29 14:44:30','2019-07-29 14:44:30','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2506,8,'2019-07-29 14:50:12','2019-07-29 14:50:12','<b>Is Surgery a Good Option for Meniscus Tears?</b>\r\n\r\n<span style=\"font-weight: 400;\">Meniscal tears are quite common. So much so, that they are one of the most common injuries to the knee. Meniscal injuries are routinely treated with surgery, and many with meniscus injuries end up receiving some form of meniscectomy. Nearly 700,000 arthroscopic partial meniscectomies are performed annually in the US, at an estimated annual cost of $4 billion.</span><span style=\"font-weight: 400;\">  Is surgery of this type an effective way to treat meniscal injuries? Believe it or not, research show that it is not! Several studies question the effectiveness of this procedure. One study found that almost half of patients who received non-operative treatment with </span><span style=\"font-weight: 400;\">nonsteroidal anti-inflammatory drugs </span><span style=\"font-weight: 400;\">improved well enough to avoid surgery.</span> <span style=\"font-weight: 400;\">Three other studies compared arthroscopic meniscectomies with sham surgeries. A sham surgery is a faked surgical intervention that omits the step necessary for the surgery to be therapeutic. What were the results?  They found no significant difference between meniscectomy and sham surgery, and they did not find meniscectomies to be effective.</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\"> The most recent study, showed the surgery did not reduce the mechanical symptoms of knee catching and locking</span><span style=\"font-weight: 400;\">.</span><span style=\"font-weight: 400;\"> As you can see, the effectiveness of meniscectomies is questionable. </span>\r\n\r\n<span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>If Meniscus Surgeries Are Ineffective, Then Why Are They Done?</b>\r\n\r\n<span style=\"font-weight: 400;\">Patients usually believe the surgery will help their knee to function better and lessen the pain they are experiencing. When the knee locks and catches randomly, people want that to stop, especially since knee locking can be painful. If the person with these symptoms is an athlete, they want to get back to their sport quickly, and they think surgery is going to make that happen. People generally think that surgery can get them back to work or play sooner than going through physical therapy or other treatment options. But evidence and research does not back this way of thinking. In fact, many patients are worse off after the surgery.</span>\r\n\r\n<b>If You Want to Keep Your Knee Intact, Then Keep Your Meniscus!</b>\r\n\r\n<span style=\"font-weight: 400;\">When part of the knee, like the meniscus, is removed, the knee is unable to function normally. Removing the meniscus makes the knee unstable. The instability leads to the development of more knee problems. The joint instability that arises after removal of the meniscus negatively affects the interplay between the other structures of the knee, because extra stress is placed on them. When more stress is placed on the cartilage, degeneration is accelerated, boosting the arthritic process. More stress is also placed on the various ligaments and tendons supporting the knee, eventually damaging them and leading to the breakdown of the knee joint and irreversible joint damage. It has been proven in studies that new onset instability is demonstrated after partial meniscectomy,</span><span style=\"font-weight: 400;\">,</span><span style=\"font-weight: 400;\"> with significant rates of cartilage loss transpiring after both partial and complete meniscectomy, and that these procedures lead to degenerative arthritis and ligament injury in the knee. </span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">,</span><span style=\"font-weight: 400;\"> And this information is not new! Adverse effects associated with meniscectomy have been documented in the literature going as far back as </span><span style=\"font-weight: 400;\">1923.</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">, </span><i><span style=\"font-weight: 400;\">,</span></i>\r\n\r\n<span style=\"font-weight: 400;\">     </span>\r\n\r\n<b>Regenerative Orthopedics Effectively Repairs Meniscus Tears Non-Surgically</b>\r\n\r\n<span style=\"font-weight: 400;\">Given the accumulation of evidence </span><span style=\"font-weight: 400;\">t</span><span style=\"font-weight: 400;\">hat demonstrates not only the overwhelming lack of efficacy and benefit, but also the risk of serious adverse effects of this widely used procedure for meniscus tears, it is important to consider potential safe and effective alternatives. Regenerative Orthopedics is a non-surgical solution, used to effectively treat knee injuries such as meniscus tears, as well as other soft tissue injuries like ligaments and tendons.</span><span style=\"font-weight: 400;\">, </span> <span style=\"font-weight: 400;\">Regenerative Orthopedic treatments work by initiating the inflammatory stage of the healing process, raising the levels of growth factors, and initiating repair. The treatments stimulate new cell growth and rebuild depleted tissue, including the regeneration of cartilage.</span>\r\n\r\n<span style=\"font-weight: 400;\">In certain cases, Platelet Rich Plasma may be utilized. This involves injection of your own blood components to facilitate the healing of tissue that has degenerated. Platelets are the storehouses of growth factors, and platelet rich plasma is abundant in growth factors, capable of stimulating healing of the injured tissue.</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedic treatments can safely and effectively treat meniscus tears without the need for surgery, returning you quickly to the activities and sports you enjoy.</span>','Is Surgery a Good Option for Meniscus Tears?','','inherit','closed','closed','','2503-revision-v1','','','2019-07-29 14:50:12','2019-07-29 14:50:12','',2503,'https://www.drfields.com/uncategorized/2503-revision-v1/',0,'revision','',0),(2507,8,'2019-07-29 14:50:33','2019-07-29 14:50:33','<b>Is Surgery a Good Option for Meniscus Tears?</b>\r\n\r\n<span style=\"font-weight: 400;\">Meniscal tears are quite common. So much so, that they are one of the most common injuries to the knee. Meniscal injuries are routinely treated with surgery, and many with meniscus injuries end up receiving some form of meniscectomy. Nearly 700,000 arthroscopic partial meniscectomies are performed annually in the US, at an estimated annual cost of $4 billion.</span><span style=\"font-weight: 400;\">  Is surgery of this type an effective way to treat meniscal injuries? Believe it or not, research show that it is not! Several studies question the effectiveness of this procedure. One study found that almost half of patients who received non-operative treatment with </span><span style=\"font-weight: 400;\">nonsteroidal anti-inflammatory drugs </span><span style=\"font-weight: 400;\">improved well enough to avoid surgery.</span> <span style=\"font-weight: 400;\">Three other studies compared arthroscopic meniscectomies with sham surgeries. A sham surgery is a faked surgical intervention that omits the step necessary for the surgery to be therapeutic. What were the results?  They found no significant difference between meniscectomy and sham surgery, and they did not find meniscectomies to be effective.</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\"> The most recent study, showed the surgery did not reduce the mechanical symptoms of knee catching and locking</span><span style=\"font-weight: 400;\">.</span><span style=\"font-weight: 400;\"> As you can see, the effectiveness of meniscectomies is questionable. </span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>If Meniscus Surgeries Are Ineffective, Then Why Are They Done?</b>\r\n\r\n<span style=\"font-weight: 400;\">Patients usually believe the surgery will help their knee to function better and lessen the pain they are experiencing. When the knee locks and catches randomly, people want that to stop, especially since knee locking can be painful. If the person with these symptoms is an athlete, they want to get back to their sport quickly, and they think surgery is going to make that happen. People generally think that surgery can get them back to work or play sooner than going through physical therapy or other treatment options. But evidence and research does not back this way of thinking. In fact, many patients are worse off after the surgery.</span>\r\n\r\n<b>If You Want to Keep Your Knee Intact, Then Keep Your Meniscus!</b>\r\n\r\n<span style=\"font-weight: 400;\">When part of the knee, like the meniscus, is removed, the knee is unable to function normally. Removing the meniscus makes the knee unstable. The instability leads to the development of more knee problems. The joint instability that arises after removal of the meniscus negatively affects the interplay between the other structures of the knee, because extra stress is placed on them. When more stress is placed on the cartilage, degeneration is accelerated, boosting the arthritic process. More stress is also placed on the various ligaments and tendons supporting the knee, eventually damaging them and leading to the breakdown of the knee joint and irreversible joint damage. It has been proven in studies that new onset instability is demonstrated after partial meniscectomy,</span><span style=\"font-weight: 400;\">,</span><span style=\"font-weight: 400;\"> with significant rates of cartilage loss transpiring after both partial and complete meniscectomy, and that these procedures lead to degenerative arthritis and ligament injury in the knee. </span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">,</span><span style=\"font-weight: 400;\"> And this information is not new! Adverse effects associated with meniscectomy have been documented in the literature going as far back as </span><span style=\"font-weight: 400;\">1923.</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">, </span><i><span style=\"font-weight: 400;\">,</span></i>\r\n\r\n<b>Regenerative Orthopedics Effectively Repairs Meniscus Tears Non-Surgically</b>\r\n\r\n<span style=\"font-weight: 400;\">Given the accumulation of evidence </span><span style=\"font-weight: 400;\">t</span><span style=\"font-weight: 400;\">hat demonstrates not only the overwhelming lack of efficacy and benefit, but also the risk of serious adverse effects of this widely used procedure for meniscus tears, it is important to consider potential safe and effective alternatives. Regenerative Orthopedics is a non-surgical solution, used to effectively treat knee injuries such as meniscus tears, as well as other soft tissue injuries like ligaments and tendons.</span><span style=\"font-weight: 400;\">, </span> <span style=\"font-weight: 400;\">Regenerative Orthopedic treatments work by initiating the inflammatory stage of the healing process, raising the levels of growth factors, and initiating repair. The treatments stimulate new cell growth and rebuild depleted tissue, including the regeneration of cartilage.</span>\r\n\r\n<span style=\"font-weight: 400;\">In certain cases, Platelet Rich Plasma may be utilized. This involves injection of your own blood components to facilitate the healing of tissue that has degenerated. Platelets are the storehouses of growth factors, and platelet rich plasma is abundant in growth factors, capable of stimulating healing of the injured tissue.</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedic treatments can safely and effectively treat meniscus tears without the need for surgery, returning you quickly to the activities and sports you enjoy.</span>','Is Surgery a Good Option for Meniscus Tears?','','inherit','closed','closed','','2503-revision-v1','','','2019-07-29 14:50:33','2019-07-29 14:50:33','',2503,'https://www.drfields.com/uncategorized/2503-revision-v1/',0,'revision','',0),(2508,8,'2019-07-29 15:01:54','2019-07-29 15:01:54','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Is Surgery a Good Option for Meniscus Tears?</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/is-surgery-a-good-option-for-meniscus-tears/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-29 15:01:54','2019-07-29 15:01:54','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2509,0,'2019-07-29 15:12:19','2019-07-29 15:12:19','cdyarber@gmail.com\nCHRIS','cdyarber@gmail.com','','publish','closed','closed','','cdyarber-gmail-com','','','2019-07-29 15:12:19','2019-07-29 15:12:19','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2509',0,'flamingo_contact','',0),(2510,0,'2019-07-29 15:12:19','2019-07-29 15:12:19','CHRIS\ncdyarber@gmail.com\n6156185370\n3pm-5pm\nHey guys, I was recently made aware of you by a current patient who had great things to say. I\'m also an Ironman Triathlete and I live in Nashville, TN. Do you know of anyone in my area who is also athletic and doing similar work? I could travel to California to see you, but thought I would ask if you know of anyone you trust in the Nashville area?  I don\'t currently require anything medically, but in our sport you never know, so I thought I\'d reach out and ask.\r\n\r\nThanks for your time!\r\n\r\nChris\r\n615-618-5370\n20\n68.52.137.195\nMozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36\nhttps://www.drfields.com/contact/\nJuly 29, 2019\n3:12 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-20','','','2019-07-29 15:12:19','2019-07-29 15:12:19','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2510',0,'flamingo_inbound','',0),(2511,8,'2019-07-29 21:09:09','2019-07-29 21:09:09','<img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" />\r\n<h4>Prolotherapy Doctor</h4>\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\r\n<h4>What is a Prolotherapy Doctor?</h4>\r\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h4>How Prolotherapy Treatment Works</h4>\r\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"https://orthoregen.com/\" rel=\"noopener noreferrer\">OrthoRegen</a>\r\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\r\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\r\n<h4>What Conditions Can Dr. Fields Help You With:</h4>\r\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\r\n<ul>\r\n 	<li><strong>Chronic Conditions like…</strong>\r\n<ul>\r\n 	<li>Arthritis Pain</li>\r\n 	<li>Sciatica Pain</li>\r\n 	<li>Pinched Nerves</li>\r\n 	<li>Athletic Injuries</li>\r\n 	<li>Tension Headaches</li>\r\n 	<li>Migraine Headaches</li>\r\n 	<li>Herniated Discs</li>\r\n 	<li>Degenerative Discs</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak Joints</li>\r\n 	<li>Sore Muscles</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Knee Injuries:</strong>\r\n<ul>\r\n 	<li>ACL Tear</li>\r\n 	<li>Runners\' Knee</li>\r\n 	<li>Radial Meniscus Tear</li>\r\n 	<li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Hip Injuries:</strong>\r\n<ul>\r\n 	<li>Torn Labrum</li>\r\n 	<li>Acetabular labrum Tear</li>\r\n 	<li>Labral Tear</li>\r\n 	<li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Neck Injuries:</strong>\r\n<ul>\r\n 	<li>Whiplash</li>\r\n 	<li>TMJ Syndrome</li>\r\n 	<li>Migraine Headaches</li>\r\n 	<li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Shoulder Injuries:</strong>\r\n<ul>\r\n 	<li>Labral Tear</li>\r\n 	<li>Rotator Cuff Tear</li>\r\n 	<li>Swimmers Shoulder</li>\r\n 	<li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Back Injuries:</strong>\r\n<ul>\r\n 	<li>Herniated discs</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>See a complete list of Back Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Elbow Injuries:</strong>\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tennis elbow</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Foot and Ankle Injuries:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle Sprains</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>See a complete list of Foot Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Hand Injuries:</strong>\r\n<ul>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Finger pain</li>\r\n 	<li>See a complete list of Hand Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:310-455-8242\" rel=\"noopener noreferrer\">310-455-8242</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Prolotherapy Doctor','','inherit','closed','closed','','229-revision-v1','','','2019-07-29 21:09:09','2019-07-29 21:09:09','',229,'https://www.drfields.com/uncategorized/229-revision-v1/',0,'revision','',0),(2512,8,'2019-07-29 21:10:41','2019-07-29 21:10:41','<img class=\"alignleft size-full wp-image-955\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" />\n<h4>Peter A. Fields, MD, DC, The Athletic Doc®</h4>\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\n<h4>Director of OrthoRegen</h4>\nDr. Fields is the Director of <a href=\"https://orthoregen.com/\" target=\"_blank\" rel=\"noopener noreferrer\">OrthoRegen</a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\n<h4>Regenerative Medicine Expert</h4>\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\">national magazine</a> as well as lecturing at various conferences around the world on these techniques.\n<h4>Hackett-Hemwall Foundation Instructor</h4>\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.\n<h4>Prolotherapy Doctor</h4>\nDr. Fields is the leading expert in the field or <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\n<h6>The Athletic Doc®</h6>\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc® has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<div id=\"centrevideo\" class=\"text-center\">[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong></div>','Bio: Dr. Fields','','inherit','closed','closed','','216-autosave-v1','','','2019-07-29 21:10:41','2019-07-29 21:10:41','',216,'https://www.drfields.com/uncategorized/216-autosave-v1/',0,'revision','',0),(2513,8,'2019-07-29 21:12:26','2019-07-29 21:12:26','<img class=\"alignleft size-full wp-image-955\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc®</h4>\r\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n<h4>Director of OrthoRegen</h4>\r\nDr. Fields is the Director of <a href=\"https://orthoregen.com/\" target=\"_blank\" rel=\"noopener noreferrer\">OrthoRegen</a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\r\n<h4>Regenerative Medicine Expert</h4>\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\">national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n<h4>Hackett-Hemwall Foundation Instructor</h4>\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.\r\n<h4>Prolotherapy Doctor</h4>\r\nDr. Fields is the leading expert in the field or <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h6>The Athletic Doc®</h6>\r\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc® has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"centrevideo\" class=\"text-center\">[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong></div>','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2019-07-29 21:12:26','2019-07-29 21:12:26','',216,'https://www.drfields.com/uncategorized/216-revision-v1/',0,'revision','',0),(2514,8,'2019-07-29 21:18:41','2019-07-29 21:18:41','<img class=\"alignleft wp-image-1685 size-full\" title=\"prp los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"474\" height=\"752\" />\r\n<h4>PRP Doctor</h4>\r\nPeter A. Fields, MD DC, is a PRP Doctor in Los Angeles and the founder of OrthoRegen. Dr. Fields is a leading expert in using (PRP) Platelet Rich Plasma therapy to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world. Dr. Fields help people avoid unnecessary orthopedic surgeries whether arthroscopic or full surgery.\r\n<h4>What is a PRP Doctor?</h4>\r\nA PRP Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. PRP Doctors like Dr. Fields use Platelet Rich Plasma Injections that help accelerate the normal healing process. Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of PRP Regenerative Treatments.\r\n<h4>What Does PRP stand for?</h4>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as platelets, white blood cells, and red cells. The Harvest method that Dr. Fields uses concentrates the platelets 7-10 times of what is generally found in blood. Other systems concentrate them, but to a lesser extent.\r\n<h4>What is PRP Treatment?</h4>\r\nPRP treatment, as used in regenerative orthopedics, is a non-surgical healing treatment for healing soft tissue performed by a PRP Doctor. Dr. Fields makes precise injections of your own concentrated blood (PRP) into the affected areas to promote healing of musculoskeletal problems. Blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site.\r\n<h4>Is PRP Treatment Safe?</h4>\r\nPRP treatment is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities thoroughly with patients during the pre-treatment consultation.\r\nWhat Does a PRP Doctor Treat?\r\n\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that Dr. Fields treats. PRP has also been effective in treating arthritis, though more severe cases get better results with Dr. Fields’ Stem Cell treatments.\r\n\r\nDr. Fields has had great success in treating chronic pain and sports injuries including:\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Knee Injuries:</strong> ACL, MCL LCL, Meniscus, Arthritis, Kneecap Instability</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Knee Injuries Treated with Prolotherapy here\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Elbow Injuries:</strong> Tennis Elbow, Medial Epicondylitis,Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Elbow Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Shoulder Injuries:</strong> Rotator Cuff Tears, Labrum Tears, Tenositis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Shoulder Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Back Injuries:</strong> Arthritis, Facet Joints, Sacro-Iliac dysfunction</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Back Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hip Injuries:</strong> Tenositis, Bursitis,Labrum</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Hip Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Foot/Ankle Injuries:</strong> Ankle Sprains, Arthritis, Achilles Dysfunction, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Foot/Ankle Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hand/Wrist/ Injuries:</strong> Finger/Joint Tendinitis, Ligament Tears, Arthritis, Carpal tunnel</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Hand/Wrist Injuries Treated with Prolotherapy here.\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:310-455-8242\" rel=\"noopener noreferrer\">310-455-8242</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','PRP Doctor','','inherit','closed','closed','','266-revision-v1','','','2019-07-29 21:18:41','2019-07-29 21:18:41','',266,'https://www.drfields.com/uncategorized/266-revision-v1/',0,'revision','',0),(2515,8,'2019-07-29 21:18:58','2019-07-29 21:18:58','<img class=\"alignleft wp-image-1685 size-medium\" title=\"prp los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>PRP Doctor</h4>\r\nPeter A. Fields, MD DC, is a PRP Doctor in Los Angeles and the founder of OrthoRegen. Dr. Fields is a leading expert in using (PRP) Platelet Rich Plasma therapy to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world. Dr. Fields help people avoid unnecessary orthopedic surgeries whether arthroscopic or full surgery.\r\n<h4>What is a PRP Doctor?</h4>\r\nA PRP Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. PRP Doctors like Dr. Fields use Platelet Rich Plasma Injections that help accelerate the normal healing process. Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of PRP Regenerative Treatments.\r\n<h4>What Does PRP stand for?</h4>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as platelets, white blood cells, and red cells. The Harvest method that Dr. Fields uses concentrates the platelets 7-10 times of what is generally found in blood. Other systems concentrate them, but to a lesser extent.\r\n<h4>What is PRP Treatment?</h4>\r\nPRP treatment, as used in regenerative orthopedics, is a non-surgical healing treatment for healing soft tissue performed by a PRP Doctor. Dr. Fields makes precise injections of your own concentrated blood (PRP) into the affected areas to promote healing of musculoskeletal problems. Blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site.\r\n<h4>Is PRP Treatment Safe?</h4>\r\nPRP treatment is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities thoroughly with patients during the pre-treatment consultation.\r\nWhat Does a PRP Doctor Treat?\r\n\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that Dr. Fields treats. PRP has also been effective in treating arthritis, though more severe cases get better results with Dr. Fields’ Stem Cell treatments.\r\n\r\nDr. Fields has had great success in treating chronic pain and sports injuries including:\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Knee Injuries:</strong> ACL, MCL LCL, Meniscus, Arthritis, Kneecap Instability</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Knee Injuries Treated with Prolotherapy here\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Elbow Injuries:</strong> Tennis Elbow, Medial Epicondylitis,Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Elbow Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Shoulder Injuries:</strong> Rotator Cuff Tears, Labrum Tears, Tenositis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Shoulder Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Back Injuries:</strong> Arthritis, Facet Joints, Sacro-Iliac dysfunction</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Back Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hip Injuries:</strong> Tenositis, Bursitis,Labrum</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Hip Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Foot/Ankle Injuries:</strong> Ankle Sprains, Arthritis, Achilles Dysfunction, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Foot/Ankle Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hand/Wrist/ Injuries:</strong> Finger/Joint Tendinitis, Ligament Tears, Arthritis, Carpal tunnel</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Hand/Wrist Injuries Treated with Prolotherapy here.\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:310-455-8242\" rel=\"noopener noreferrer\">310-455-8242</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','PRP Doctor','','inherit','closed','closed','','266-revision-v1','','','2019-07-29 21:18:58','2019-07-29 21:18:58','',266,'https://www.drfields.com/uncategorized/266-revision-v1/',0,'revision','',0),(2516,8,'2019-07-29 21:37:44','2019-07-29 21:37:44','<h4>PRP Platelet Rich Plasma</h4>\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\n<h4>Why Does PRP Treatment Work?</h4>\n<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood. A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This highly concentrated amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\n\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\n\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\n<h4>Which Treatment is Right For Me?</h4>\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\n<ul>\n 	<li><strong>It is less painful.</strong></li>\n 	<li><strong>It primes the area that is damaged, which PRP does not.\n</strong></li>\n 	<li><strong>It is less expensive</strong></li>\n</ul>\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h4>PRP Treatment Frequently Asked Questions</h4>\n<h6><strong>What is PRP Treatment?</strong></h6>\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\n<h6>What does PRP mean?</h6>\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\n<h6>What conditions are treated with PRP?</h6>\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis.\n\n<img class=\"alignleft size-full wp-image-712\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" />\n<h6>What are some common diagnoses treated with PRP?</h6>\n<ul>\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\n 	<li>Hip: labrum, tenositis, Bursitis</li>\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\n</ul>\n<h6>How is PRP treatment administered?</h6>\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\n<h6>Is PRP curative?</h6>\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\n<h6>How does PRP work to heal?</h6>\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\n<h6>Is PRP painful?</h6>\nPatients typically tolerate the procedure well although post-injection soreness is sometime experienced.\n<h6>How many PRP treatments do you need?</h6>\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\n<h6>How far apart are PRP treatments spaced?</h6>\nTypically about every 6 weeks if indicated.<img class=\"alignright size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" data-wp-editing=\"1\" />\n<h6>What can you expect after getting PRP?</h6>\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\n<h6>Are there side effects/complications of PRP?</h6>\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\n<h6>How long does it take the PRP to “work”?</h6>\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\n<h6>Platelet Rich Plasma (PRP) Therapy in the News:</h6>\n<ul>\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\n</strong></li>\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\n</strong></li>\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\n</ul>','PRP Treatment','','inherit','closed','closed','','414-autosave-v1','','','2019-07-29 21:37:44','2019-07-29 21:37:44','',414,'https://www.drfields.com/uncategorized/414-autosave-v1/',0,'revision','',0),(2517,8,'2019-07-29 21:37:59','2019-07-29 21:37:59','<h4>PRP Platelet Rich Plasma</h4>\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\r\n<h4>Why Does PRP Treatment Work?</h4>\r\n<img class=\"alignright wp-image-642 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood. A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This highly concentrated amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\r\n\r\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>It primes the area that is damaged, which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>PRP Treatment Frequently Asked Questions</h4>\r\n<h6><strong>What is PRP Treatment?</strong></h6>\r\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n<h6>What does PRP mean?</h6>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\r\n<h6>What conditions are treated with PRP?</h6>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis.\r\n\r\n<img class=\"alignleft wp-image-712 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" />\r\n<h6>What are some common diagnoses treated with PRP?</h6>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, Bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h6>How is PRP treatment administered?</h6>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n<h6>Is PRP curative?</h6>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\r\n<h6>How does PRP work to heal?</h6>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\r\n<h6>Is PRP painful?</h6>\r\nPatients typically tolerate the procedure well although post-injection soreness is sometime experienced.\r\n<h6>How many PRP treatments do you need?</h6>\r\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\r\n<h6>How far apart are PRP treatments spaced?</h6>\r\nTypically about every 6 weeks if indicated.<img class=\"alignright wp-image-644 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h6>What can you expect after getting PRP?</h6>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\r\n<h6>Are there side effects/complications of PRP?</h6>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n<h6>How long does it take the PRP to “work”?</h6>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n<h6>Platelet Rich Plasma (PRP) Therapy in the News:</h6>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>','PRP Treatment','','inherit','closed','closed','','414-revision-v1','','','2019-07-29 21:37:59','2019-07-29 21:37:59','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(2518,8,'2019-07-29 21:46:36','2019-07-29 21:46:36','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\n<strong>Stem Cell Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\n<strong>Stem Cell Hip</strong></div>\n<i>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\n\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\n<div class=\"clear\"></div>\n<h4>Who Needs Stem Cell Treatment?</h4>\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<strong>If you have been told</strong> that you have any of these conditions...\n<ul>\n 	<li>Bone-on-bone</li>\n 	<li>Severe arthritis</li>\n 	<li>A degenerated joint</li>\n 	<li>Your cartilage has been worn away,</li>\n 	<li>The only option left is to have your joint replaced...</li>\n</ul>\n...you now have another option.\n\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\n<ul>\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\n</ul>\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\n\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\n\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\n<strong>Bone Marrow Stem Cells</strong>\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\n\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<strong>Adipose Stem Cells </strong>\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\n\n<img class=\"alignleft size-full wp-image-732\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\n\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\n<h4>Research On Stem Cell Treatment for Joints</h4>\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\n\n<img class=\"alignright wp-image-735 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\n\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\n\n&nbsp;\n\n<strong>Stem Cell Treatment Results</strong>\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\n\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\n\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-autosave-v1','','','2019-07-29 21:46:36','2019-07-29 21:46:36','',431,'https://www.drfields.com/uncategorized/431-autosave-v1/',0,'revision','',0),(2519,8,'2019-07-29 21:46:44','2019-07-29 21:46:44','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong></div>\r\n<i>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\r\n<div class=\"clear\"></div>\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"alignleft wp-image-732 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\" width=\"215\" height=\"167\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"alignright wp-image-735 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <strong>424-325-6695</strong>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-07-29 21:46:44','2019-07-29 21:46:44','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(2520,8,'2019-07-29 21:51:56','2019-07-29 21:51:56','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Jennifer - Elbow</strong></div>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. It is usually the ligaments and tendons that are injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n\r\n<strong>Ligament Injuries in the Elbow</strong>\r\n\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. In tennis elbow it is the <strong>extensor tendons</strong> which move the wrist up, that can be damaged. In golfer’s elbow it is the <strong>flexor tendons</strong>, that move the wrist down, that get injured. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n\r\n<strong>The Most Common Elbow Injuries </strong>\r\n\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? Are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+13109560569\">(310) 956-0569</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Elbow Pain','','inherit','closed','closed','','524-revision-v1','','','2019-07-29 21:51:56','2019-07-29 21:51:56','',524,'https://www.drfields.com/uncategorized/524-revision-v1/',0,'revision','',0),(2521,8,'2019-07-29 21:56:13','2019-07-29 21:56:13','<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n<h4 class=\"text-center\">Video: What is Prolotherapy Treatment?</h4>\r\n<div style=\"display: table; margin: 0 auto;\">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]</div>\r\n<a class=\"buttonlink\" href=\"/regenerative-techniques/prolotherapy-videos/\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:1-424-325-6695\">424-325-6695</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-07-29 21:56:13','2019-07-29 21:56:13','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(2522,8,'2019-07-29 22:00:24','2019-07-29 22:00:24','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Prolotherapy Hip Injury\'\"]\r\n<strong>Chris - Hip</strong></div>\r\n<h4>Prolotherapy Hip and Groin Injury Treatment</h4>\r\nHip and groin injuries can quickly become debilitating and escalate into athletic career ending injuries. MRI and arthroscopic surgery are routinely recommended for patients. Other patients may spend months or longer on pain medication, while undergoing rounds of physical therapy. <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment offers a successful alternative to pain medication and surgery, for hip and groin injuries. OrthoRegen offers comprehensive treatment for your hip injuries and groin pain without pain medication, surgery or extended time away from the sport you love.\r\n<h4>Who Is Prolotherapy Hip Treatment For?</h4>\r\nOur patients include Olympic hopefuls to weekend warriors. Dr. Peter Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an Ironman Triathlete. He understands the concerns of injured athletes, hoping to return quickly to their chosen sport. His clinical experience has shown that Prolotherapy hip treatment is the preferred way to treat hip injuries and groin pain for optimal long term results. We can get you back into your sport without surgery, without medication, and without extended time away from your sport.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment are:</strong>\r\n<ul>\r\n 	<li>Acetabular labrum tear</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Femoroacetabular impingement</li>\r\n 	<li>Groin pain</li>\r\n 	<li>Hip instability</li>\r\n 	<li>Hip impingement</li>\r\n 	<li>Hip pain</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Post pelvic fusion pain</li>\r\n 	<li>Post-surgical hip pain</li>\r\n 	<li>Pubic symphysis injury</li>\r\n 	<li>Pubis pain</li>\r\n 	<li>Pupalgia</li>\r\n 	<li>Snapping hip syndrome</li>\r\n 	<li>Torn Labrum</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy hip treatment, as well as PRP Prolotherapy and Stem Cell Prolotherapy. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+13103407407\">(310) 340-7407</a>','Hip Injury Treatment','','inherit','closed','closed','','528-revision-v1','','','2019-07-29 22:00:24','2019-07-29 22:00:24','',528,'https://www.drfields.com/uncategorized/528-revision-v1/',0,'revision','',0),(2523,8,'2019-07-29 22:04:12','2019-07-29 22:04:12','<h4>Prolotherapy for Chronic Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Prolotherapy for Chronic Knee Pain treatment.\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Osteoarthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Chronic osteoarthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudo gout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>How Prolotherapy Is Used To Treat Chronic Knee Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with prolotherapy</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+1-310-455-8242\">(310) 455-8242</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2019-07-29 22:04:12','2019-07-29 22:04:12','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(2524,8,'2019-07-29 22:06:48','2019-07-29 22:06:48','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\r\n<strong>Joel - Foot</strong></div>\r\n<h4>Prolotherapy Foot and Ankle Treatment</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Are you looking for an alternative to surgery for your chronic ankle sprains? Every day, OrthoRegen treats people with foot and ankle injuries by the use of comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> foot treatments. Nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n<h4>Why Prolotherapy Foot Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  Like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. If you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. If you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Ankle instability</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials/\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials/\">Ankle Testimonials</a> pages.','Foot Injury Treatment','','inherit','closed','closed','','595-revision-v1','','','2019-07-29 22:06:48','2019-07-29 22:06:48','',595,'https://www.drfields.com/uncategorized/595-revision-v1/',0,'revision','',0),(2525,8,'2019-07-31 18:18:15','2019-07-31 18:18:15','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Is Surgery a Good Option for Meniscus Tears?</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/is-surgery-a-good-option-for-meniscus-tears/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Is Surgery a Good Option for Meniscus Tears?</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/is-surgery-a-good-option-for-meniscus-tears/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-31 18:18:15','2019-07-31 18:18:15','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2526,8,'2019-07-31 18:25:26','2019-07-31 18:25:26','Headaches','Headaches','Headaches','inherit','open','closed','','headaches','','','2019-07-31 18:25:26','2019-07-31 18:25:26','',2109,'https://www.drfields.com/wp-content/uploads/2019/07/headaches.jpg',0,'attachment','image/jpeg',0),(2527,8,'2019-07-31 18:26:15','2019-07-31 18:26:15','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Is Surgery a Good Option for Meniscus Tears?</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/is-surgery-a-good-option-for-meniscus-tears/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/07/headaches.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Suffering from Headaches? The Problem May Come From Your Neck.</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/suffering-from-headaches-the-problem-may-come-from-your-neck/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-07-31 18:26:15','2019-07-31 18:26:15','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2528,8,'2019-07-31 18:27:02','2019-07-31 18:27:02','<b>Suffering from Headaches? The Problem May Come From Your Neck.</b>\r\n\r\n<span style=\"font-weight: 400;\">Headaches are a recurrent malady suffered by millions of Americans, causing pain and discomfort in the head, forehead, scalp, or neck. At times they are a mild nuisance, but headaches can become severe, even disabling, with the pain leading to difficulty at work, concentration and performance of daily activities. </span>\r\n\r\n<b>What is the Source of Headaches?</b>\r\n\r\n<b><i>Hormones</i></b>\r\n\r\n<span style=\"font-weight: 400;\">Headaches have different sources, and the causative factors require some investigation. Hormones might be the culprit. Women may experience headaches during the menstrual cycle due to shifts in hormone levels. When this is the case there may be a need to balance the hormones, because the woman could have too much estrogen and not enough progesterone.</span>\r\n\r\n<i><span style=\"font-weight: 400;\">Diet </span></i>\r\n\r\n<span style=\"font-weight: 400;\">Headache pain can often be </span><span style=\"font-weight: 400;\">corrected with diet. Food allergies or sensitivities can trigger headaches. Eating too many carbohydrates and not enough protein, for example, can alter blood chemistry, which can prompt a headache or foster problems with the hormonal system, which can again lead to headaches.</span>\r\n\r\n<i><span style=\"font-weight: 400;\">TMJ Syndrome</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Temporomandibular</span><span style=\"font-weight: 400;\"> joint (TMJ) problems may contribute to headaches</span><span style=\"font-weight: 400;\">. Sufferers with TMJ have clicking at this joint, experience facial pain, and may notice a stiff mouth upon awakening after a night’s sleep, all of which can then lead to a headache. TMJ syndrome, which often includes headaches, requires stabilization of the TMJ joint and ligament. Bite problems may also be present, necessitating bite equilibration.</span>\r\n\r\n<b>The Neck as the Source of Headaches</b>\r\n\r\n<span style=\"font-weight: 400;\">It is not uncommon for the source of headaches to originate in the neck. Do you have neck pain before or during a headache? If you have neck pain followed by a tension or migraine headache, then the source of the headache may very well be coming from your neck. The most common neck problem producing headaches is injury to the ligaments in the neck. How do you know if you have ligament injury in your neck? You will hear grinding, crunching, and popping sounds when you turn your neck. There is also a high probability that you crack your neck often. Injured ligaments generate instability in the neck, which induces muscle spasms in the neck as the muscles attempt to stabilize it. The result is referral pain in the form of a tension headache in the forehead, back of the neck, or occiput. </span>\r\n\r\n<i><span style=\"font-weight: 400;\">Cervicocranial Syndrome or </span></i><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><i><span style=\"font-weight: 400;\">Barré-Liéou</span></i></a><i><span style=\"font-weight: 400;\"> Syndrome</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Cervicocranial Syndrome, previously known as </span><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><span style=\"font-weight: 400;\">Barré-Liéou</span></a><span style=\"font-weight: 400;\"> Syndrome is a condition that causes a bunch of s</span><span style=\"font-weight: 400;\">ymptoms. The symptoms may include headache, dizziness, facial pain, ear pain, vertigo, tinnitus, loss of voice,</span> <span style=\"font-weight: 400;\">hoarseness, neck pain and severe fatigue. Instability of the neck or cervical spine is usually the source of these symptoms.</span><span style=\"font-weight: 400;\"> Neck instability involves increased motion between adjacent vertebrae which causes excessive stress on the supporting ligament structures and the nerve endings within those structures eliciting pain and a variety of symptoms.</span> <span style=\"font-weight: 400;\">In other words</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">neck instability causes extra movement in the neck bones, and this extra motion can cause the bones to push on the nerves and cause irritation of the nervous system, leading to headaches and a bunch of other symptoms. </span>\r\n\r\n<i><span style=\"font-weight: 400;\">Occipital Neuralgia</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Occipital neuralgia is another headache causing condition related to neck instability. Those with this condition often experience sharp, stabbing pain in the lower part of the neck, the back of the head, and behind their eyes. The pain is typically one-sided. The occipital nerve, which runs at the back of the head, can cause severe pain when injured. Many folks get nerve blocks for this pain, but these are not always effective at resolving the pain. Any instability of C1, C2, the first two neck vertebrae, can pinch or irritate the occipital nerve, and the extra motion along the spine can kink, press and tighten on the nerves at the base of the skull. Neck instability symptoms include tenderness, clicking, grinding and popping in the back of the head. </span>\r\n\r\n<i><span style=\"font-weight: 400;\">Whiplash</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Headaches can occur after whiplash injuries. During a whiplash injury the head flexes and extends, in a forward and backward whip that injures the neck ligaments. </span><span style=\"font-weight: 400;\">Whiplash injuries are a common source of neck instability.</span> <span style=\"font-weight: 400;\">The lack of stable neck vertebrae can lead to further injury of the soft tissue and joint structures, as well as the possibility of nerve injury and the irritation of the nervous system, which can result in headaches and other symptoms. Whiplash often results in long-term pain, which is due to ligament injury and malalignment of the neck vertebrae.</span>\r\n\r\n<b>Regenerative Orthopedics Repairs Neck Instability</b>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics involve the injection of natural substances into the damaged ligaments, which then results in tightening, repair and regeneration of the ligaments involved in TMJ and  neck instability. The treatments stabilize the area, thus eliminating the instability, muscle spasms and associated neck and jaw pain and other related symptoms. For those who are tired of the disability and pain of severe headaches, and other conditions related to neck instability, Regenerative Orthopedics is a safe, non-surgical option that stops headache pain, decreases symptoms, and increases functionality in otherwise life-altering conditions.</span>\r\n\r\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/EKGWkEAaqTM\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','Suffering from Headaches? The Problem May Come From Your Neck.','','inherit','closed','closed','','2501-revision-v1','','','2019-07-31 18:27:02','2019-07-31 18:27:02','',2501,'https://www.drfields.com/uncategorized/2501-revision-v1/',0,'revision','',0),(2530,0,'2019-09-27 20:08:05','2019-09-27 20:08:05','chad@websitedepot.com\nwebdepotdev','chad@websitedepot.com','','publish','closed','closed','','chad-websitedepot-com','','','2019-09-27 20:08:05','2019-09-27 20:08:05','',0,'https://www.drfields.com/?post_type=flamingo_contact&#038;p=2530',0,'flamingo_contact','',0),(2531,8,'2019-08-01 15:49:17','2019-08-01 15:49:17','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/07/headaches.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Suffering from Headaches? The Problem May Come From Your Neck.</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/suffering-from-headaches-the-problem-may-come-from-your-neck/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-08-01 15:49:17','2019-08-01 15:49:17','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2532,0,'2019-08-16 22:14:40','2019-08-16 22:14:40','support@monkeydigital.co\nGracenix','support@monkeydigital.co','','publish','closed','closed','','support-monkeydigital-co','','','2019-08-16 22:14:40','2019-08-16 22:14:40','',0,'https://www.drfields.com/?post_type=flamingo_contact&#038;p=2532',0,'flamingo_contact','',0),(2533,0,'2019-08-01 19:48:03','2019-08-01 19:48:03','Gracenix\nsupport@monkeydigital.co\n84527282788\n1pm-3pm\nHi there \r\nHave your website been affected by all the google updates that kept coming on and on, week after week? \r\nWe have the right solution for you, to recover all your ranks and put your keywords on a positive trend \r\n \r\nFind more about our plan, here \r\nhttps://monkeydigital.co/product/ranks-recovery-seo-plan/ \r\n \r\nContact us for more info at \r\nmonkeydigital.co@gmail.com\nHi there \r\nHave your website been affected by all the google updates that kept coming on and on, week after week? \r\nWe have the right solution for you, to recover all your ranks and put your keywords on a positive trend \r\n \r\nFind more about our plan, here \r\nhttps://monkeydigital.co/product/ranks-recovery-seo-plan/ \r\n \r\nContact us for more info at \r\nmonkeydigital.co@gmail.com\nSend\n21\n185.93.3.114\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64\nhttps://www.drfields.com/contact/\nAugust 1, 2019\n7:48 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-21','','','2019-08-01 19:48:03','2019-08-01 19:48:03','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2533',0,'flamingo_inbound','',0),(2534,8,'2022-12-02 06:01:38','2019-08-01 20:45:30',' ','','','publish','closed','closed','','2534','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=2534',1,'nav_menu_item','',0),(2535,8,'2022-12-02 06:01:38','2019-08-01 20:45:30','','Dr. Fields','','publish','closed','closed','','dr-fields','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=2535',3,'nav_menu_item','',0),(2536,8,'2019-08-01 20:45:04','2019-08-01 20:45:04','<img class=\"alignleft size-full wp-image-288\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" /><u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h6>Fees</h6>\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time.\r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img class=\"alignright\" style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" width=\"275\" /></a>\r\nInitial Regenerative Orthopedic Consultation: <strong>$550</strong>\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (fingers, toes, TMJ): <strong>$500</strong>\r\nMedium Joint (knee, shoulder, Wrist): <strong>$600</strong>\r\nLarge Joint (hip, Neck, Mid Back, or Low Back): <strong>$900</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n<h6>PRP Charges</h6>\r\nPRP Small joint: <strong>$1100</strong>\r\nPRP Medium joint: <strong>$1300</strong>\r\nPRP Large joint: <strong>$1600</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Questions + Costs','','publish','closed','closed','','questions-costs','','','2023-03-23 03:38:58','2023-03-23 03:38:58','',0,'https://www.drfields.com/?page_id=2536',0,'page','',0),(2537,8,'2019-08-01 20:33:35','2019-08-01 20:33:35','<p>&nbsp; </p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed (310) 453-1212 to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<p ><u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.</p>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h6>Fees</h6>\r\n\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time. \r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you instil pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\nWoman Paying\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>. \r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','','','inherit','closed','closed','','2536-revision-v1','','','2019-08-01 20:33:35','2019-08-01 20:33:35','',2536,'https://www.drfields.com/uncategorized/2536-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (2538,8,'2019-08-01 20:34:06','2019-08-01 20:34:06','\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed (310) 453-1212 to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<p ><u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.</p>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h6>Fees</h6>\r\n\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time. \r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you instil pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\nWoman Paying\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>. \r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Common uestions + Costs','','inherit','closed','closed','','2536-revision-v1','','','2019-08-01 20:34:06','2019-08-01 20:34:06','',2536,'https://www.drfields.com/uncategorized/2536-revision-v1/',0,'revision','',0),(2539,8,'2019-08-01 20:44:52','2019-08-01 20:44:52','\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed (310) 453-1212 to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<p ><u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.</p>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h6>Fees</h6>\r\n\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time. \r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you instil pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\nWoman Paying\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>. \r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Common Questions + Costs','','inherit','closed','closed','','2536-revision-v1','','','2019-08-01 20:44:52','2019-08-01 20:44:52','',2536,'https://www.drfields.com/uncategorized/2536-revision-v1/',0,'revision','',0),(2540,8,'2022-12-02 06:01:38','2019-08-01 20:46:46',' ','','','publish','closed','closed','','2540','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=2540',8,'nav_menu_item','',0),(2541,8,'2019-08-01 20:49:55','2019-08-01 20:49:55','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Is Surgery a Good Option for Meniscus Tears?</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/is-surgery-a-good-option-for-meniscus-tears/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/07/headaches.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Suffering from Headaches? The Problem May Come From Your Neck.</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/suffering-from-headaches-the-problem-may-come-from-your-neck/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-08-01 20:49:55','2019-08-01 20:49:55','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2542,8,'2019-08-01 20:50:12','2019-08-01 20:50:12','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Suffering from Headaches? The Problem May Come From Your Neck.</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/suffering-from-headaches-the-problem-may-come-from-your-neck/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-08-01 20:50:12','2019-08-01 20:50:12','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2543,8,'2019-08-01 20:52:47','2019-08-01 20:52:47','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed (310) 453-1212 to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<p ><u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.</p>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h6>Fees</h6>\r\n\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time. \r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you instil pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\nWoman Paying\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>. \r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Questions + Costs','','inherit','closed','closed','','2536-revision-v1','','','2019-08-01 20:52:47','2019-08-01 20:52:47','',2536,'https://www.drfields.com/uncategorized/2536-revision-v1/',0,'revision','',0),(2544,8,'2022-12-02 06:01:38','2019-08-01 21:15:19','','Video Testimonials','','publish','closed','closed','','video-testimonials','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=2544',33,'nav_menu_item','',0),(2545,8,'2019-08-01 21:01:40','0000-00-00 00:00:00','','Video Testimonial - Chronic Pain','','draft','closed','closed','','','','','2019-08-01 21:01:40','2019-08-01 21:01:40','',0,'https://www.drfields.com/?page_id=2545',0,'page','',0),(2547,8,'2019-08-02 04:17:07','2019-08-02 04:17:07','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Suffering from Headaches? The Problem May Come From Your Neck.</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/suffering-from-headaches-the-problem-may-come-from-your-neck/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"#\">Are you a good candidate?</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-08-02 04:17:07','2019-08-02 04:17:07','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2548,8,'2019-08-02 04:36:19','2019-08-02 04:36:19','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Suffering from Headaches? The Problem May Come From Your Neck.</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/suffering-from-headaches-the-problem-may-come-from-your-neck/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\">  Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-08-02 04:36:19','2019-08-02 04:36:19','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2549,0,'2019-08-03 17:02:38','2019-08-03 17:02:38','lenora_long@yahoo.com\nJamesDut','lenora_long@yahoo.com','','publish','closed','closed','','lenora_long-yahoo-com','','','2019-08-03 17:02:38','2019-08-03 17:02:38','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2549',0,'flamingo_contact','',0),(2550,0,'2019-08-03 17:02:38','2019-08-03 17:02:38','JamesDut\nlenora_long@yahoo.com\n85898232848\n11am-1pm\nForex trader makes $10,000 in minutes: http://comitime.tk/ku30?&amp;jscnx=F7zOJoUAnuM\nForex trader makes $10,000 in minutes: http://comitime.tk/ku30?&amp;jscnx=F7zOJoUAnuM\nSend\n22\n185.206.224.213\nMozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\nhttps://www.drfields.com/contact/\nAugust 3, 2019\n5:02 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-22','','','2019-08-03 17:02:38','2019-08-03 17:02:38','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2550',0,'flamingo_inbound','',0),(2551,0,'2019-08-04 01:11:38','2019-08-04 01:11:38','shalbert@webtraffic.icu\nSara Halbert','shalbert@webtraffic.icu','','publish','closed','closed','','shalbert-webtraffic-icu','','','2019-08-04 01:11:38','2019-08-04 01:11:38','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2551',0,'flamingo_contact','',0),(2552,0,'2019-08-04 01:11:38','2019-08-04 01:11:38','Sara Halbert\nshalbert@webtraffic.icu\n573-738-8918\n1pm-3pm\nI see your doing great things with your website, but like I said if you had more traffic, could you handle it? \r\n\r\nWe run a global advertising network that can drive more targeted traffic for you.  \r\n\r\nDo you want more targeted traffic?\r\n\r\nhttps://webtraffic.icu/up?=drfields.com\r\n\r\nSara\r\nwebtraffic.icu\r\n\r\n\r\n\r\n\r\n\r\n361 Southwest Drive Suite #731 Jones boro, Arkansas 7 2 4 0 1\r\n\r\nIf you don\'t want to receive future marketing messages about traffic, you can avoid them here:  https://webtraffic.icu/unsubscribe.php?site=drfields.com\nI see your doing great things with your website, but like I said if you had more traffic, could you handle it? \r\n\r\nWe run a global advertising network that can drive more targeted traffic for you.  \r\n\r\nDo you want more targeted traffic?\r\n\r\nhttps://webtraffic.icu/up?=drfields.com\r\n\r\nSara\r\nwebtraffic.icu\r\n\r\n\r\n\r\n\r\n\r\n361 Southwest Drive Suite #731 Jones boro, Arkansas 7 2 4 0 1\r\n\r\nIf you don\'t want to receive future marketing messages about traffic, you can avoid them here:  https://webtraffic.icu/unsubscribe.php?site=drfields.com\n23\n104.223.79.23\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nAugust 4, 2019\n1:11 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-23','','','2019-08-04 01:11:38','2019-08-04 01:11:38','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2552',0,'flamingo_inbound','',0),(2553,0,'2019-08-05 09:35:50','2019-08-05 09:35:50','spongetom19@yahoo.com\nJamesDut','spongetom19@yahoo.com','','publish','closed','closed','','spongetom19-yahoo-com','','','2019-08-05 09:35:50','2019-08-05 09:35:50','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2553',0,'flamingo_contact','',0),(2554,0,'2019-08-05 09:35:50','2019-08-05 09:35:50','JamesDut\nspongetom19@yahoo.com\n87369519234\n1pm-3pm\nInvest $ 5,000 in cryptocurrency once and get $ 70,000 passive income per month: http://itreacapdu.tk/2tj4?QY9yDYHttGKDNh\nInvest $ 5,000 in cryptocurrency once and get $ 70,000 passive income per month: http://itreacapdu.tk/2tj4?QY9yDYHttGKDNh\nSend\n24\n185.206.224.213\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54\nhttps://www.drfields.com/contact/\nAugust 5, 2019\n9:35 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-24','','','2019-08-05 09:35:50','2019-08-05 09:35:50','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2554',0,'flamingo_inbound','',0),(2555,8,'2019-08-06 00:00:16','2019-08-06 00:00:16','[caption id=\"attachment_4089\" align=\"alignright\" width=\"358\"]<img class=\"wp-image-4089 \" src=\"https://www.drfields.com/wp-content/uploads/2019/08/sciatical-400x500.png\" alt=\"Sciatica Symptoms\" width=\"358\" height=\"447\" /> <strong><em> Do Sciatica Symptoms Keep You Down?   Regenerative Orthopedics gets you back up!</em></strong>[/caption]\r\n<h2><strong>Relief from Sciatica Symptoms        </strong></h2>\r\nSciatica is a complaint that is tossed around quite frequently in the context of burning low back pain that shoots down a person’s buttocks, legs, and/or feet. And you’ve probably heard about sciatica or have mentioned it yourself! If you’ve had sciatica symptoms, there\'s a good chance a friend has recommended their favorite treatment or therapist to help you find some relief.\r\n\r\nBut did you know that sciatica is not actually a disease? Sure, it’s a real thing, but sciatica is a symptom, and not the disease or condition itself. The condition is called<strong> lumbar radiculopathy. </strong>Oftentimes, the terms sciatica and lumbar radiculopathy are used interchangeably. Lumbar refers to the lower back area and radiculopathy is a disease of the root of a nerve.\r\n\r\nFor those of you who have experienced the pain of lumbar radiculopathy or an actual pinched nerve, <strong>the pain is very excruciating</strong>. The sufferer commonly experiences burning pain shooting down the leg. And the pain is so bad it will stop you in your tracks.\r\n<h3>How Did You Get to this Point of Extreme Pain?</h3>\r\nThe common denominator for most back pain problems is spinal instability. Injury to the ligaments of the back occurred at some point. And typically from bending over and twisting with the knees in a locked position, which then stretched the ligaments, and made them vulnerable to injury. The result is weak and lax ligaments. And when ligaments of the lumbar spine are weak, the vertebrae can slip out of place and pinch the nerve.\r\n<h3><strong>What Are the Common Treatments for Sciatica Symptoms or Lumbar Radiculopathy?</strong></h3>\r\nChiropractors treat sciatica symptoms with much success and should be the first practitioners to see for this condition. You can also try treatments like massage and stretching for relief. But these therapies will only work on the surrounding muscles, and any relief will very likely be temporary.<span class=\"Apple-converted-space\"> </span>\r\n<h4><em>Regenerative Orthopedics Are One Treatment Option</em></h4>\r\nIf ligaments are weakened, the muscles will be going into spasm. That\'s because muscles spasm in an effort to stabilize the area that is currently unstable due to the ligament injury. Muscle-strengthening may be of benefit too. But remember that the underlying injury of the ligaments needs to be addressed. Regenerative Orthopedic treatments, such as Prolotherapy or PRP, are great options for addressing ligament injuries. And they are effective at both repairing and strengthening these types of soft tissue injuries.\r\n<h4><em>Non-Steroidal Anti-inflammatory Drugs (NSAIDs) and Cortisone Are Not Reparative Treatments</em></h4>\r\nNon-steroidal anti-inflammatory drugs (NSAIDs) are frequently used, but they are not reparative. So when you reach for an aspirin, Advil, or some other over-the-counter NSAID pain reliever, know that this is not a fix. Your physician may recommend prescription NSAID’s. But again, NSAID’s do not repair the injury. They may give you some relief, but they will not fix the underlying problem or heal the injury.\r\n\r\nIf sciatica symptoms do not resolve on their own and the pain continues, a cortisone injection may be recommended by your physician. Epidural cortisone injections may reduce the size of stressed nerve roots, but they do have side effects. Studies have shown that cortisone causes tissue like the ligaments to grow weaker. So, if weak tissue is the source of the problem, to begin with, then why use something that may make the problem worse? Instead, the spinal instability that is allowing the vertebral segments to move excessively needs to be addressed, so the pain can stop!\r\n<h4><strong><em>What About Painkillers and Anti-Depressants for Sciatica Symptoms?</em></strong></h4>\r\nHave you tried painkillers and found no lasting relief? Until the source of the problem is addressed, you may find yourself exhausted and frustrated at the failure of various therapies to provide long-lasting relief. Not to mention treatments that are ineffective at relieving lumbar radiculopathy and the sciatica symptoms.\r\n\r\nAre antidepressants and anticonvulsants being recommended? Although you may be depressed because of unending pain, good chance depression is not the source of your back pain. And what about the use of anticonvulsants to treat sciatica? In a 2018 article in the Journal of the American Medical Association (JAMA), the writers note that the commonly used anticonvulsant medication for sciatica called “pregabalin does not improve symptoms of sciatica but frequently has adverse effects.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nHave you exhausted conservative care options? And have you progressed to stronger medications like painkillers, antidepressants, and anticonvulsants, and are possibly facing the recommendations of surgery? Then it is time to look into a solution that actually repairs the injury. Regenerative Orthopedics can provide an effective option that results in relief and repair while utilizing a non-surgical solution for those with persistent sciatica symptoms and lumbar radiculopathy.\r\n<h4><em><strong>What if Surgery Has Been Recommended for Your Sciatica Symptoms?</strong></em></h4>\r\nIf you are facing surgery for relief from your symptoms, minimally invasive spine surgery may be the surgery you are considering. Surgery may give you relief. However, studies have shown that although there may be a rapid decrease in pain and disability after a few months, years down the road patients still experience mild to moderate pain post-surgery.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n<h3><strong>Regenerative Orthopedics to Strengthen Spinal Instability and Relieve Sciatica Symptoms</strong></h3>\r\nWhy choose surgery and treatments with side effects? Or those which also lack benefit when there is another option? Choose the path that actually repairs the injury and solves the problem. Regenerative Orthopedics is non-surgical, plus it is effective.\r\n\r\nAt OrthoRegen<sup>®</sup>, we treat all of the involved areas of the low back, including the injured ligaments and their attachments to stimulate the body’s own natural healing process. The treatment boosts the blood supply to the injured areas. And that brings reparative cells to the ligaments so they can heal. Remember that when the ligaments are weak, they allow for too much movement of the vertebrae. And with this extra movement a nerve can get pinched.\r\n\r\nRegenerative Orthopedic treatments to these areas strengthen and tighten the ligaments. That leads to stabilization of the lumbar spine, which stops the excessive movement, and repairs the underlying problem. The result is pain relief. Regenerative Orthopedics is effective at bringing pain relief and return to function for those suffering from sciatica symptoms and lumbar radiculopathy.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Morgan DJ, Dhruva SS, Coon ER, Wright SM, Korenstein D. 2018 Update on Medical Overuse. JAMA Internal Medicine. 2018 Dec 3.  [<a href=\"https://jamanetwork.com/journals/jamainternalmedicine/article-abstract/2717505\">JAMA</a>]\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Machado GC, Witzleb AJ, Fritsch C, Maher CG, Ferreira PH, Ferreira ML. Patients with sciatica still experience pain and disability 5 years after surgery: A systematic review with meta-analysis of cohort studies. Eur J Pain. 2016 May 12.[<a href=\"https://scholar.google.com/scholar?cluster=1973126208637694796&amp;hl=en&amp;as_sdt=0,31\">Google Scholar</a>]\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Relief from Sciatica Symptoms','','publish','open','closed','','relief-from-sciatica-symptoms','','','2021-05-08 02:25:37','2021-05-08 02:25:37','',0,'https://www.drfields.com/?p=2555',0,'post','',0),(2556,8,'2019-08-05 16:38:07','2019-08-05 16:38:07','<strong>Relief from Sciatica Symptoms</strong>\r\n\r\nSciatica is a complaint that is tossed around quite frequently in the context of burning low back pain that shoots down a person’s buttocks, legs, and/or feet. You’ve probably heard it or have said it yourself! If you’ve had this problem, good chance a friend has recommended their favorite treatment or therapist to help you find some relief. But did you know that sciatica is not actually a disease? Sure, it’s a real thing, but sciatica is a symptom, and not the disease or condition itself. The condition is called<strong> lumbar radiculopathy. </strong>Oftentimes the terms sciatica and lumbar radiculopathy are used interchangeably. Lumbar refers to the lower back area and radiculopathy is a disease of the root of a nerve.\r\n\r\nFor those of you who have experienced the pain of lumbar radiculopathy or an actual pinched nerve, the pain is very excruciating. The sufferer commonly experiences burning pain shooting down the leg, with pain so bad it will stop you in your tracks. How did you get to this point of extreme pain? The common denominator for most back pain problems is spinal instability. Injury to the ligaments of the back occurred at some point, typically from bending over and twisting with the knees in a locked position, which then stretched the ligaments, and made them vulnerable to injury. The result is weak and lax ligaments. When ligaments of the lumbar spine are weak, the vertebrae can slip out of place and pinch the nerve.\r\n\r\n<strong>What Are the Common Treatments for Sciatica or Lumbar Radiculopathy?</strong>\r\n\r\nMany folks try treatments like massage and stretching for relief, but these therapies will only work on the surrounding muscles, and any relief will very likely be temporary. If ligaments are weakened, the muscles will be going into spasm, because muscles spasm in an effort to stabilize the area that is currently unstable due to the ligament injury. A physical therapy plan to strengthen the muscles may be of benefit, but remember that the underlying injury of the ligaments needs to be addressed. Regenerative Orthopedic treatments, such as Prolotherapy, are great options for addressing ligament injuries, and are effective at repairing and strengthening these types of soft tissue injuries.\r\n\r\nNon-steroidal anti-inflammatory drugs (NSAIDS) are frequently used, but they are not reparative. So when you reach for aspirin, Advil, or some other over-the-counter NSAID pain reliever, know that this is not a fix. Your physician may recommend prescription NSAID’s, but again, NSAID’s do not repair the injury. They may give you some relief, but they will not fix the underlying problem or heal the injury. If sciatica symptoms do not resolve on their own and the pain continues, a cortisone injection may be recommended by your physician. Epidural cortisone injections may reduce the size of stressed nerve roots, but they do have side effects. Studies have shown that cortisone causes the tissue like the ligaments to grow weaker. So, if weak tissue is the source of the problem to begin with, then why use something that may make the problem worse? Instead, the spinal instability that is allowing the vertebral segments to move excessively needs to be addressed, so the pain can stop!\r\n\r\nHave you tried painkillers and found no lasting relief? Until the source of the problem is addressed, you may find yourself exhausted and frustrated at the failure of various therapies to provide long-lasting relief, and treatments that are ineffective at relieving lumbar radiculopathy and the sciatica symptoms. Are antidepressants and anticonvulsants being recommended? Although you may be depressed because of unending pain, good chance depression is not the source of your back pain. And what about the use of anticonvulsants to treat sciatica? In a 2018 article in the Journal of the American Medical Association (JAMA), the writers note that the commonly used anticonvulsant medication for sciatica called “pregabalin does not improve symptoms of sciatica but frequently has adverse effects.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a> If you have exhausted conservative care options, have progressed to stronger medications like painkillers, antidepressants, and anticonvulsants, and are possibly facing the recommendations of surgery, it is time to look into a solution that actually repairs the injury. Regenerative Orthopedics can provide an effective option that results in relief and repair while utilizing a non-surgical solution for those with persistent sciatica symptoms and lumbar radiculopathy.\r\n\r\n<strong>What if Surgery Has Been Recommended?</strong>\r\n\r\nIf you are facing surgery for relief from your symptoms, minimally invasive spinal surgery may be the surgery you are considering. Surgery may give you relief. However, studies have shown that although there may be a rapid decrease in pain and disability after a few months, years down the road patients still experience mild to moderate pain post-surgery.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n\r\n<strong>Regenerative Orthopedics to Strengthen the Spinal Instability and Relieve Sciatica Symptoms</strong>\r\n\r\nWhy choose surgery and treatments with side effects and which also lack benefit when there is another option? Choose the path that actually repairs the injury and solves the problem. Regenerative Orthopedics is non-surgical, plus it is effective. At OrthoRegen, we treat all of the involved areas of the low back including the injured ligaments and their attachments to stimulate the body’s own natural healing process. The treatment boosts the blood supply to the injured areas, which brings reparative cells to the ligaments so they can heal. Remember that when the ligaments are weak, they allow for too much movement of the vertebrae, and a nerve can get pinched. Regenerative Orthopedic treatments to these areas strengthen and tighten the ligaments, which will stabilize the lumbar spine, stop the excessive movement, and repair the underlying problem. The result is pain relief. Regenerative Orthopedics is effective at bringing pain relief and return to function for those suffering from sciatica symptoms and lumbar radiculopathy.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Morgan DJ, Dhruva SS, Coon ER, Wright SM, Korenstein D. 2018 Update on Medical Overuse. JAMA Internal Medicine. 2018 Dec 3.  [<a href=\"https://jamanetwork.com/journals/jamainternalmedicine/article-abstract/2717505\">JAMA</a>]\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Machado GC, Witzleb AJ, Fritsch C, Maher CG, Ferreira PH, Ferreira ML. Patients with sciatica still experience pain and disability 5 years after surgery: A systematic review with meta-analysis of cohort studies. Eur J Pain. 2016 May 12.[<a href=\"https://scholar.google.com/scholar?cluster=1973126208637694796&amp;hl=en&amp;as_sdt=0,31\">Google Scholar</a>]','Relief from Sciatica Symptoms','','inherit','closed','closed','','2555-revision-v1','','','2019-08-05 16:38:07','2019-08-05 16:38:07','',2555,'https://www.drfields.com/uncategorized/2555-revision-v1/',0,'revision','',0),(2557,0,'2019-08-05 18:00:27','2019-08-05 18:00:27','perez.duane42@gmail.com\nDuane Perez','perez.duane42@gmail.com','','publish','closed','closed','','perez-duane42-gmail-com','','','2019-08-05 18:00:27','2019-08-05 18:00:27','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2557',0,'flamingo_contact','',0),(2558,0,'2019-08-05 18:00:27','2019-08-05 18:00:27','Duane Perez\nperez.duane42@gmail.com\n06-71404090\n9am-11am\nHi there! \r\n \r\nYou Need Leads, Sales, Conversions, Traffic for drfields.com ?   Will Findet...\r\n\r\nI WILL SEND 5 MILLION MESSAGES VIA WEBSITE CONTACT FORM\r\n \r\nDon\'t believe me?  Since you\'re reading this message then you\'re living proof that contact form advertising works! \r\nWe can send your ad to people via their Website Contact Form. \r\n\r\nIF YOU ARE INTERESTED, Contact us =&gt;  lisaf2zw526@gmail.com\r\n \r\nRegards,\r\nPerez\nHowdy! \r\n \r\nYou Need Leads, Sales, Conversions, Traffic for drfields.com ?   Will Findet...\r\n\r\nI WILL SEND 5 MILLION MESSAGES VIA WEBSITE CONTACT FORM\r\n \r\nDon\'t believe me?  Since you\'re reading this message then you\'re living proof that contact form advertising works! \r\nWe can send your ad to people via their Website Contact Form. \r\n\r\nIF YOU ARE INTERESTED, Contact us =&gt;  lisaf2zw526@gmail.com\r\n \r\nRegards,\r\nPerez\n25\n23.254.226.105\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nAugust 5, 2019\n6:00 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-25','','','2019-08-05 18:00:27','2019-08-05 18:00:27','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2558',0,'flamingo_inbound','',0),(2559,0,'2019-08-05 18:16:54','2019-08-05 18:16:54','gewertzmd@yahoo.com\nGregory J Ewertz, MD.','gewertzmd@yahoo.com','','publish','closed','closed','','gewertzmd-yahoo-com','','','2019-08-05 18:16:54','2019-08-05 18:16:54','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2559',0,'flamingo_contact','',0),(2560,0,'2019-08-05 18:16:54','2019-08-05 18:16:54','Gregory J Ewertz, MD.\ngewertzmd@yahoo.com\n310-968-0143\n11am-1pm\nThrowing a ball without warming up \"tweaked\" my right shoulder about a month ago.  Shortly afterwards, while doing push-ups, I felt something like a tearing in that shoulder.  Now I have pain with raising my arm, especially laterally, associated with weakness.  Being a physician, I looked up rotator cuff injury, and I seem to have every symptom and sign.  I was contemplating a visit with an orthopedic surgeon and probable surgery, but Nadine Terheggen, whose son had prolotherapy for an hip injury, told me to consult with Dr. Fields.\n26\n69.238.162.225\nMozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\nhttps://www.drfields.com/contact/\nAugust 5, 2019\n6:16 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-26','','','2019-08-05 18:16:54','2019-08-05 18:16:54','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2560',0,'flamingo_inbound','',0),(2561,8,'2019-08-30 08:00:13','2019-08-30 08:00:13','<span style=\"font-weight: 400;\">Regenerative Orthopedics might not be as well known as they should be, but they can have an incredible impact on your life. When your tendons and ligaments hurt or are otherwise injured, it can take an awful toll on your life. Pain in your ligaments and tendons can make any physical activity more difficult: getting up, sitting down, walking and everything in between. </span><a href=\"https://www.drfields.com/articles/prolo-news/repairing-sports-injuries-with-regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Regenerative Orthopedics</b></a><span style=\"font-weight: 400;\"> are a great way to not only heal your wounded ligaments and tendons, but they are a way to do so without having to get surgery. At OrthoRegen we can help you to live free from the ligament and tendon pain that is putting a damper on your life.</span>\r\n<h2><b>How Regenerative Orthopedics Work</b></h2>\r\n<span style=\"font-weight: 400;\"><strong>Regenerative Orthopedics</strong> target the painful and injured joint structures. Prolotherapy, PRP, and <a href=\"https://www.cirm.ca.gov/patients/power-stem-cells\" target=\"_blank\" rel=\"noopener noreferrer\">Stem Cell Therapy</a> stimulate the body’s natural healing cascade, boosting the ability of the body to regenerate and repair. The treatment helps your body to make new cells. See, tendons and ligaments tend to not have the best circulation. That means that they don’t get the blood supply that other parts of your body might. And healing nutrients are in your blood. By encouraging the supply of these nutrients, your body is able to heal more quickly and completely. Instead of being outside of the circulation, or cut off from it, suddenly the area of your body will be awash in these nutrients. Then, the area will be able to heal. Even better, it will be able to heal using the body’s own natural, organic methods.</span>\r\n\r\n<img class=\"aligncenter wp-image-2563 size-full\" title=\"Regenerative Orthopedics\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedics-.jpg\" alt=\"Regenerative Orthopedics \" width=\"800\" height=\"544\" />\r\n<h3><b>Safe and Secure</b></h3>\r\n<span style=\"font-weight: 400;\">It’s perfectly understandable if you read the above section and thought something like: “Wow, that sounds effective.” But is it really? At OrthoRegen, we’ve been helping people with joint pain and injury for quite some time. We know how to administer Regenerative Orthopedics by using the Gold Standard of care. With effective treatment, you always want experience! Our practitioners have many, many years of experience in administering Regenerative Orthopedics, such as Prolotherapy, PRP, and Stem Cell Therapy.</span>\r\n\r\n<span style=\"font-weight: 400;\">We will do everything possible to make this treatment as non-invasive, and make the experience as positive as possible. In addition to being a non-invasive alternative to surgery, this treatment also features an alternative to general anesthesia. You never have to “go under” or anything like that. We will use a local anesthetic to help provide comfort during the procedure. Regenerative Orthopedics effectively provides you with the pain-free results you want, because it strengthens your ligaments and tendons, and gets you back quickly to the activities and sports you love. </span>\r\n<h4><b>In Only a Few Treatments</b></h4>\r\n<span style=\"font-weight: 400;\">If anyone says something like, “You only need one Prolotherapy treatment to get the maximum benefit,” they are not telling the whole truth. Sure, sometimes people get better with just one treatment. But it is important to understand that a reputable practitioner will tell you that the average number of treatments are 4-8 treatments sessions for proper healing. You have most likely been suffering with pain for a long time, and the problem did not just develop overnight. In the same way, the body, and specifically the ligament and tendon injuries, will take several months to fully regenerate and heal. </span>\r\n\r\n<span style=\"font-weight: 400;\">It’s important to note that, in addition to helping your ligaments and tendons, there are no real negative side effects to Regenerative Orthopedics. They benefit your body, without detracting anything from it. They heal and repair, rather than weaken the soft tissue. We mention this because we often have patients say something like, “How are these different from cortisone shots?” Well, you could get cortisone shots and they might be “effective,” but they are only a temporary, short-term, interim solution. Study after study has shown that the effectiveness of cortisone may diminish, and can even weaken the soft tissue eventually.</span>\r\n\r\n<span style=\"font-weight: 400;\">For many people, this might be the first time you are hearing about <strong>Regenerative Orthopedics</strong>.  We have several satisfied client testimonies that you are welcome to read and watch. Please call us if you have questions and if you would like to set up a consultation. Our phone number is [phone].</span>','Regenerative Orthopedics: A Rejuvenated You','','publish','open','closed','','regenerative-orthopedics-a-rejuvenated-you','','','2019-10-18 08:53:36','2019-10-18 08:53:36','',0,'https://www.drfields.com/?p=2561',0,'post','',0),(2562,8,'2019-08-05 21:48:03','2019-08-05 21:48:03','','Regenerative Orthopedics','','inherit','open','closed','','regenerative-orthopedics','','','2019-08-05 21:48:12','2019-08-05 21:48:12','',2561,'https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedics.jpg',0,'attachment','image/jpeg',0),(2563,8,'2019-08-05 21:48:22','2019-08-05 21:48:22','','Regenerative Orthopedics','','inherit','open','closed','','regenerative-orthopedics-2','','','2019-08-05 21:48:27','2019-08-05 21:48:27','',2561,'https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedics-.jpg',0,'attachment','image/jpeg',0),(2564,8,'2019-08-05 21:51:34','2019-08-05 21:51:34','<span style=\"font-weight: 400;\">Regenerative Orthopedics might not be as well known as they should be, but they can have an incredible impact on your life. When your tendons and ligaments hurt or are otherwise injured, it can take an awful toll on your life. Pain in your ligaments and tendons can make any physical activity more difficult: getting up, sitting down, walking and everything in between. </span><a href=\"https://www.drfields.com/articles/prolo-news/repairing-sports-injuries-with-regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Regenerative Orthopedics</b></a><span style=\"font-weight: 400;\"> are a great way to not only heal your wounded ligaments and tendons, but they are a way to do so without having to get surgery. At OrthoRegen we can help you to live free from the ligament and tendon pain that is putting a damper on your life.</span>\r\n<h2><b>How Regenerative Orthopedics Work</b></h2>\r\n<span style=\"font-weight: 400;\"><strong>Regenerative Orthopedics</strong> target the painful and injured joint structures. Prolotherapy, PRP, and <a href=\"https://www.cirm.ca.gov/patients/power-stem-cells\" target=\"_blank\" rel=\"noopener noreferrer\">Stem Cell Therapy</a> stimulate the body’s natural healing cascade, boosting the ability of the body to regenerate and repair. The treatment helps your body to make new cells. See, tendons and ligaments tend to not have the best circulation. That means that they don’t get the blood supply that other parts of your body might. And healing nutrients are in your blood. By encouraging the supply of these nutrients, your body is able to heal more quickly and completely. Instead of being outside of the circulation, or cut off from it, suddenly the area of your body will be awash in these nutrients. Then, the area will be able to heal. Even better, it will be able to heal using the body’s own natural, organic methods.</span>\r\n\r\n<img class=\"aligncenter wp-image-2563 size-full\" title=\"Regenerative Orthopedics\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedics-.jpg\" alt=\"Regenerative Orthopedics \" width=\"800\" height=\"544\" />\r\n<h3><b>Safe and Secure</b></h3>\r\n<span style=\"font-weight: 400;\">It’s perfectly understandable if you read the above section and thought something like: “Wow, that sounds effective.” But is it really? At OrthoRegen, we’ve been helping people with joint pain and injury for quite some time. We know how to administer Regenerative Orthopedics by using the Gold Standard of care. With effective treatment, you always want experience! Our practitioners have many, many years of experience in administering Regenerative Orthopedics, such as Prolotherapy, PRP, and Stem Cell Therapy.</span>\r\n\r\n<span style=\"font-weight: 400;\">We will do everything possible to make this treatment as non-invasive, and make the experience as positive as possible. In addition to being a non-invasive alternative to surgery, this treatment also features an alternative to general anesthesia. You never have to “go under” or anything like that. We will use a local anesthetic to help provide comfort during the procedure. Regenerative Orthopedics effectively provides you with the pain-free results you want, because it strengthens your ligaments and tendons, and gets you back quickly to the activities and sports you love. </span>\r\n<h4><b>In Only a Few Treatments</b></h4>\r\n<span style=\"font-weight: 400;\">If anyone says something like, “You only need one Prolotherapy treatment to get the maximum benefit,” they are not telling the whole truth. Sure, sometimes people get better with just one treatment. But it is important to understand that a reputable practitioner will tell you that the average number of treatments are 4-8 treatments sessions for proper healing. You have most likely been suffering with pain for a long time, and the problem did not just develop overnight. In the same way, the body, and specifically the ligament and tendon injuries, will take several months to fully regenerate and heal. </span>\r\n\r\n<span style=\"font-weight: 400;\">It’s important to note that, in addition to helping your ligaments and tendons, there are no real negative side effects to Regenerative Orthopedics. They benefit your body, without detracting anything from it. They heal and repair, rather than weaken the soft tissue. We mention this because we often have patients say something like, “How are these different from cortisone shots?” Well, you could get cortisone shots and they might be “effective,” but they are only a temporary, short-term, interim solution. Study after study has shown that the effectiveness of cortisone may diminish, and can even weaken the soft tissue eventually.</span>\r\n\r\n<span style=\"font-weight: 400;\">For many people, this might be the first time you are hearing about <strong>Regenerative Orthopedics</strong>.  We have several satisfied client testimonies that you are welcome to read and watch. Please call us if you have questions and if you would like to set up a consultation. Our phone number is (310) 453-1234.</span>','Regenerative Orthopedics: A Rejuvenated You','','inherit','closed','closed','','2561-revision-v1','','','2019-08-05 21:51:34','2019-08-05 21:51:34','',2561,'https://www.drfields.com/uncategorized/2561-revision-v1/',0,'revision','',0),(2565,8,'2019-08-16 08:00:50','2019-08-16 08:00:50','<span style=\"font-weight: 400;\">At OrthoRegen, we treat many joint</span> <span style=\"font-weight: 400;\">injuries with <a href=\"https://www.drfields.com/articles/prolo-news/repairing-sports-injuries-with-regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Regenerative Orthopedics</strong></a>. These therapies, include </span><b>Prolotherapy, PRP, and Stem Cell Therapy, and are effective for pretty </b><span style=\"font-weight: 400;\">much any joint of your body where there is a musculoskeletal injury. When you contact us, we’ll be happy to give a recommendation as to whether you are a good candidate for this non-surgical option. From there, we’ll figure out the right kind of Regenerative Orthopedic treatment option for your exact problem, to effectively repair your joint, and get you back quickly to the activities you love: </span><b>Pain-free</b><span style=\"font-weight: 400;\">.</span>\r\n<h2><b>Better than Surgery</b></h2>\r\n<span style=\"font-weight: 400;\">Many of our patients come to us when they’ve been told by someone else that it’s time to get surgery to fix their problem. Maybe they have lasting shoulder pain, or there’s a pain in one or both of their knees that just won’t go away. However, that doesn’t mean that surgery has to be the answer. In fact, <strong>Regenerative Orthopedics</strong> is almost invariably a better option. Not only can these treatments be more beneficial, but they also have much less down-time and recovery time.</span>\r\n\r\n<img class=\"aligncenter wp-image-2567 size-full\" title=\"Regenerative Orthopedic\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedic..jpg\" alt=\"Regenerative Orthopedic.\" width=\"800\" height=\"648\" />\r\n\r\n<span style=\"font-weight: 400;\">When you need surgery, you’re probably already in pain. After the surgery, you’re likely to be in plenty of pain, and then you’ll have to recover, possibly go through physical therapy, and so much more. The prolonged recovery time can cause you to be less effective at your job, or possibly even make you take time off. With <strong>Regenerative Orthopedics</strong>, you won’t need to take all that time off for recovery. Over the course of just a few Regenerative Orthopedic treatments, most people note improvement, and before you know it, you’ll be returning to the things in life you enjoy.</span>\r\n<h3><b>PRP </b></h3>\r\n<span style=\"font-weight: 400;\">The “PRP” stands for “<a href=\"https://en.wikipedia.org/wiki/Platelet-rich_plasma\" target=\"_blank\" rel=\"noopener noreferrer\">platelet-rich plasma</a>,” and is one form of <strong>Regenerative Orthopedics</strong>. Like so many of our other treatments, this really just uses what’s already in your body to treat you. In the case of PRP, we utilize your own blood to help your body recover. See, these platelets in your blood contain “growth factors,” which means that they can help get soft tissue repairing as it should. For many of our patients, that’s exactly what they need to repair the damaged soft tissue areas of their bodies.</span>\r\n\r\n<span style=\"font-weight: 400;\">The blood is centrifuged in a special way to cause the plasma to be rich in platelets or have a high concentration of platelets. So, the PRP we inject into the injured area is practically overflowing with growth factors. Then, this injured area of your body that’s been starving for tissue growth gets a giant helping of it. The more platelets in the damaged area, the faster and more completely your tissues will heal.</span>\r\n\r\n<span style=\"font-weight: 400;\">This is a treatment that’s been proven to be effective in joints all over the body. Many of our patients with hip labrum problems or knee meniscus injuries have responded wonderfully to this form of treatment, once again able to do the activities and sports they love. When joints are injured, it’s amazing how difficult simple motions are. You will be relieved to be able to walk, sit, or just use your knees and hips again without pain. </span>\r\n<h3><b>Dextrose Prolotherapy</b></h3>\r\n<span style=\"font-weight: 400;\">For many, this is known as the “original prolotherapy.” When Prolotherapy began in the ’30s, this was the form it took.  Think of your body as a machine. In order for the body to heal the parts of the body that need healing, it sometimes needs a boost. Especially, difficult to heal areas like ligaments and tendons that naturally just do not have a great flow of blood. Prolotherapy is a <strong>Regenerative Orthopedic</strong> therapy that can cause the body to kick into high gear and boost the healing cascade in order to stimulate blood flow and repair the soft tissue parts of your body that have been injured.</span>\r\n\r\n<span style=\"font-weight: 400;\">With this form of Prolotherapy, we inject the soft tissue parts of the joint that have been injured. Then, the blood and healing factors rush to heal the areas that have been damaged. We cause a very temporary and low-grade inflammation which makes your body spring into action. It’s important to note that this is a normal part of the healing process. Utilizing a local anesthetic, we make sure that you’re always comfortable during the treatment process.</span>\r\n<h3><b>Stem Cell Therapy</b></h3>\r\n<span style=\"font-weight: 400;\">In cases of severe degeneration or in certain joint injuries, we may recommend Stem Cell Therapy. We have great success with Stem Cell Therapy because we use the Gold Standard in Stem Cell Therapy utilizing Dextrose Prolotherapy, PRP, and stem cells from both fat and bone marrow. Just because someone has told you that you need surgery, remember that there are other options available. </span>\r\n\r\n<span style=\"font-weight: 400;\">These various <strong>Regenerative Orthopedic</strong> options are very effective at returning you to a vibrant and pain-free life again. Contact us today for a consultation at [phone], and we’ll be happy to let you know which of our treatments are right for your body.</span>','Regenerative Orthopedic Treatment Options: Getting Back on the Right Foot','','publish','open','closed','','regenerative-orthopedic-treatment-options-getting-back-on-the-right-foot','','','2022-01-06 01:10:25','2022-01-06 01:10:25','',0,'https://www.drfields.com/?p=2565',0,'post','',0),(2566,8,'2019-08-05 22:03:39','2019-08-05 22:03:39','','Regenerative Orthopedic..','','inherit','open','closed','','regenerative-orthopedic','','','2019-08-05 22:03:54','2019-08-05 22:03:54','',2565,'https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedic...jpg',0,'attachment','image/jpeg',0),(2567,8,'2019-08-05 22:04:09','2019-08-05 22:04:09','','Regenerative Orthopedic.','','inherit','open','closed','','regenerative-orthopedic-2','','','2019-08-05 22:04:19','2019-08-05 22:04:19','',2565,'https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedic..jpg',0,'attachment','image/jpeg',0),(2568,8,'2019-08-05 22:04:41','2019-08-05 22:04:41','<span style=\"font-weight: 400;\">At OrthoRegen, we treat many joint</span> <span style=\"font-weight: 400;\">injuries with <a href=\"https://www.drfields.com/articles/prolo-news/repairing-sports-injuries-with-regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Regenerative Orthopedics</strong></a>. These therapies, include </span><b>Prolotherapy, PRP, and Stem Cell Therapy, and are effective for pretty </b><span style=\"font-weight: 400;\">much any joint of your body where there is a musculoskeletal injury. When you contact us, we’ll be happy to give a recommendation as to whether you are a good candidate for this non-surgical option. From there, we’ll figure out the right kind of Regenerative Orthopedic treatment option for your exact problem, to effectively repair your joint, and get you back quickly to the activities you love: </span><b>Pain-free</b><span style=\"font-weight: 400;\">.</span>\r\n<h2><b>Better than Surgery</b></h2>\r\n<span style=\"font-weight: 400;\">Many of our patients come to us when they’ve been told by someone else that it’s time to get surgery to fix their problem. Maybe they have lasting shoulder pain, or there’s a pain in one or both of their knees that just won’t go away. However, that doesn’t mean that surgery has to be the answer. In fact, <strong>Regenerative Orthopedics</strong> is almost invariably a better option. Not only can these treatments be more beneficial, but they also have much less down-time and recovery time.</span>\r\n\r\n<img class=\"aligncenter wp-image-2567 size-full\" title=\"Regenerative Orthopedic\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedic..jpg\" alt=\"Regenerative Orthopedic.\" width=\"800\" height=\"648\" />\r\n\r\n<span style=\"font-weight: 400;\">When you need surgery, you’re probably already in pain. After the surgery, you’re likely to be in plenty of pain, and then you’ll have to recover, possibly go through physical therapy, and so much more. The prolonged recovery time can cause you to be less effective at your job, or possibly even make you take time off. With <strong>Regenerative Orthopedics</strong>, you won’t need to take all that time off for recovery. Over the course of just a few Regenerative Orthopedic treatments, most people note improvement, and before you know it, you’ll be returning to the things in life you enjoy.</span>\r\n<h3><b>PRP </b></h3>\r\n<span style=\"font-weight: 400;\">The “PRP” stands for “<a href=\"https://en.wikipedia.org/wiki/Platelet-rich_plasma\" target=\"_blank\" rel=\"noopener noreferrer\">platelet-rich plasma</a>,” and is one form of <strong>Regenerative Orthopedics</strong>. Like so many of our other treatments, this really just uses what’s already in your body to treat you. In the case of PRP, we utilize your own blood to help your body recover. See, these platelets in your blood contain “growth factors,” which means that they can help get soft tissue repairing as it should. For many of our patients, that’s exactly what they need to repair the damaged soft tissue areas of their bodies.</span>\r\n\r\n<span style=\"font-weight: 400;\">The blood is centrifuged in a special way to cause the plasma to be rich in platelets or have a high concentration of platelets. So, the PRP we inject into the injured area is practically overflowing with growth factors. Then, this injured area of your body that’s been starving for tissue growth gets a giant helping of it. The more platelets in the damaged area, the faster and more completely your tissues will heal.</span>\r\n\r\n<span style=\"font-weight: 400;\">This is a treatment that’s been proven to be effective in joints all over the body. Many of our patients with hip labrum problems or knee meniscus injuries have responded wonderfully to this form of treatment, once again able to do the activities and sports they love. When joints are injured, it’s amazing how difficult simple motions are. You will be relieved to be able to walk, sit, or just use your knees and hips again without pain. </span>\r\n\r\n<b>Dextrose Prolotherapy</b>\r\n\r\n<span style=\"font-weight: 400;\">For many, this is known as the “original prolotherapy.” When Prolotherapy began in the ’30s, this was the form it took.  Think of your body as a machine. In order for the body to heal the parts of the body that need healing, it sometimes needs a boost. Especially, difficult to heal areas like ligaments and tendons that naturally just do not have a great flow of blood. Prolotherapy is a <strong>Regenerative Orthopedic</strong> therapy that can cause the body to kick into high gear and boost the healing cascade in order to stimulate blood flow and repair the soft tissue parts of your body that have been injured.</span>\r\n\r\n<span style=\"font-weight: 400;\">With this form of Prolotherapy, we inject the soft tissue parts of the joint that have been injured. Then, the blood and healing factors rush to heal the areas that have been damaged. We cause a very temporary and low-grade inflammation which makes your body spring into action. It’s important to note that this is a normal part of the healing process. Utilizing a local anesthetic, we make sure that you’re always comfortable during the treatment process.</span>\r\n<h5><b>Stem Cell Therapy</b></h5>\r\n<span style=\"font-weight: 400;\">In cases of severe degeneration or in certain joint injuries, we may recommend Stem Cell Therapy. We have great success with Stem Cell Therapy, because we use the Gold Standard in Stem Cell Therapy utilizing Dextrose Prolotherapy, PRP, and stem cells from both fat and bone marrow. Just because someone has told you that you need surgery, remember that there are other options available. </span>\r\n\r\n<span style=\"font-weight: 400;\">There various <strong>Regenerative Orthopedic</strong> option are very effective at returning you to a You vibrant and pain-free life again. Contact us today for a consultation at (310) 453-1234, and we’ll be happy to let you know which of our treatments are right for your body.</span>','Regenerative Orthopedic Treatment Options: Getting Back on the Right Foot','','inherit','closed','closed','','2565-revision-v1','','','2019-08-05 22:04:41','2019-08-05 22:04:41','',2565,'https://www.drfields.com/uncategorized/2565-revision-v1/',0,'revision','',0),(2571,8,'2019-08-06 13:36:22','2019-08-06 13:36:22','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Relief from Sciatica Symptoms</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/relief-from-sciatica-symptoms/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-08-06 13:36:22','2019-08-06 13:36:22','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2572,8,'2019-08-06 19:45:40','2019-08-06 19:45:40','<div class=\"link_string\"><a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a></div>\r\n<p style=\"text-align: center;\"><a class=\"buttonlink\" href=\"https://www.drfields.com/testimonials/written-testimonials/\">  View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-08-06 19:45:40','2019-08-06 19:45:40','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(2573,0,'2019-08-07 19:38:30','2019-08-07 19:38:30','euro75pc@outlook.com\nH. Roenne','euro75pc@outlook.com','','publish','closed','closed','','euro75pc-outlook-com','','','2019-08-07 19:38:30','2019-08-07 19:38:30','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2573',0,'flamingo_contact','',0),(2574,8,'2019-08-07 19:38:30','2019-08-07 19:38:30','H. Roenne\neuro75pc@outlook.com\n83468493663\n3pm-5pm\nHave you ever wanted to start a solid, \"real-deal\" \r\nsuccessful online business but didn’t know how? \r\n \r\nPerhaps you’ve TRIED any of the these: \r\n \r\n- Affiliate marketing \r\n- Biz Opps & MLM \r\n- E-Commerce \r\n- Product creation \r\n \r\n... only to struggle and never getting any results? \r\n \r\nIf you’re looking for the simplest way of \"getting \r\ninto the money\" - then I invite you to attend this \r\nadvanced Live training: \r\n \r\nhttp://trck.me/FREE_Affiliate_Training/ \r\n \r\nBest regards \r\nH. Roenne\nHave you ever wanted to start a solid, \"real-deal\" \r\nsuccessful online business but didn’t know how? \r\n \r\nPerhaps you’ve TRIED any of the these: \r\n \r\n- Affiliate marketing \r\n- Biz Opps & MLM \r\n- E-Commerce \r\n- Product creation \r\n \r\n... only to struggle and never getting any results? \r\n \r\nIf you’re looking for the simplest way of \"getting \r\ninto the money\" - then I invite you to attend this \r\nadvanced Live training: \r\n \r\nhttp://trck.me/FREE_Affiliate_Training/ \r\n \r\nBest regards \r\nH. Roenne\nSend\n27\n199.115.117.108\nMozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.106\nhttps://www.drfields.com/contact/\nAugust 7, 2019\n7:38 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-27','','','2019-08-19 19:39:29','2019-08-19 19:39:29','',0,'https://www.drfields.com/?post_type=flamingo_inbound&#038;p=2574',0,'flamingo_inbound','',0),(2578,0,'2019-08-08 18:43:58','2019-08-08 18:43:58','mircgyhaelskymn@gmail.com\nMichaelcauct','mircgyhaelskymn@gmail.com','','publish','closed','closed','','mircgyhaelskymn-gmail-com','','','2019-08-08 18:43:58','2019-08-08 18:43:58','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2578',0,'flamingo_contact','',0),(2579,0,'2019-08-08 18:43:58','2019-08-08 18:43:58','Michaelcauct\nmircgyhaelskymn@gmail.com\n87896874373\n1pm-3pm\nDescry is  an prominent  profit seeking your team. drfields.com  http://anesbreeddis.tk/5co0\nDescry is  an prominent  profit seeking your team. drfields.com  http://anesbreeddis.tk/5co0\nSend\n28\n85.206.165.5\nMozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\nhttps://www.drfields.com/contact/\nAugust 8, 2019\n6:43 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-28','','','2019-08-08 18:43:58','2019-08-08 18:43:58','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2579',0,'flamingo_inbound','',0),(2580,0,'2019-08-08 23:46:05','2019-08-08 23:46:05','georgeperez83@gmail.com\nJorge Perez','georgeperez83@gmail.com','','publish','closed','closed','','georgeperez83-gmail-com','','','2019-08-08 23:46:05','2019-08-08 23:46:05','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2580',0,'flamingo_contact','',0),(2581,0,'2019-08-08 23:46:05','2019-08-08 23:46:05','Jorge Perez\ngeorgeperez83@gmail.com\n3239159765\n9am-11am\nI had a spinal fusion. T2-L2. \r\nI have endured 3 years of pain. Perhaps one of your treatment options can help?\n29\n172.116.85.84\nMozilla/5.0 (Linux; Android 8.1.0; LM-X410(FG)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36\nhttps://www.drfields.com/contact/\nAugust 8, 2019\n11:46 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-29','','','2019-08-08 23:46:05','2019-08-08 23:46:05','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2581',0,'flamingo_inbound','',0),(2582,0,'2019-08-09 05:38:39','2019-08-09 05:38:39','edwardm@lioncourtcrypto.net\nHarryEmold','edwardm@lioncourtcrypto.net','','publish','closed','closed','','edwardm-lioncourtcrypto-net','','','2019-08-09 05:38:39','2019-08-09 05:38:39','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2582',0,'flamingo_contact','',0),(2583,8,'2019-08-09 05:38:39','2019-08-09 05:38:39','HarryEmold\nedwardm@lioncourtcrypto.net\n86634886923\n1pm-3pm\nWe buy all crypto currencies at good rate, with reasonable commission between sellers and the mandates. \r\n \r\nContact us with the informations below if you are or have a potential seller. \r\n \r\nTel: +353 1 4378345 \r\nFax: +353 1 6865354 \r\nEmail: edwardm@lioncourtcrypto.com \r\n \r\nThank you, \r\nCrypto currencies Purchase Department, \r\nEdward Molina.\nWe buy all crypto currencies at good rate, with reasonable commission between sellers and the mandates. \r\n \r\nContact us with the informations below if you are or have a potential seller. \r\n \r\nTel: +353 1 4378345 \r\nFax: +353 1 6865354 \r\nEmail: edwardm@lioncourtcrypto.com \r\n \r\nThank you, \r\nCrypto currencies Purchase Department, \r\nEdward Molina.\nSend\n30\n84.17.47.133\nMozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36\nhttps://www.drfields.com/contact/\nAugust 9, 2019\n5:38 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-30','','','2019-08-19 19:39:10','2019-08-19 19:39:10','',0,'https://www.drfields.com/?post_type=flamingo_inbound&#038;p=2583',0,'flamingo_inbound','',0),(2584,0,'2019-08-09 10:28:33','2019-08-09 10:28:33','hunancy168@gmail.com\nNancy  Hu','hunancy168@gmail.com','','publish','closed','closed','','hunancy168-gmail-com','','','2019-08-09 10:28:33','2019-08-09 10:28:33','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2584',0,'flamingo_contact','',0),(2585,0,'2019-08-09 10:28:33','2019-08-09 10:28:33','Nancy  Hu\nhunancy168@gmail.com\n3106639067\n11am-1pm\nDegenerating 5-6.....\nWondering and hoping stem cells can help my condition\n31\n107.77.230.26\nMozilla/5.0 (iPhone; CPU iPhone OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1\nhttps://www.drfields.com/contact/\nAugust 9, 2019\n10:28 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-31','','','2019-08-09 10:28:33','2019-08-09 10:28:33','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2585',0,'flamingo_inbound','',0),(2586,8,'2019-08-09 18:34:24','2019-08-09 18:34:24','<span style=\"font-weight: 400;\">Imagine that your joints degenerate to the point where you are in constant, severe pain. You are wary of surgery, but your doctor tells you there’s a better method: stem cells. Somehow, he’s able to use stem cells to regenerate your joints or repair your spine. This isn’t something out of science fiction or a vision from a far-flung future: it’s the present. When you have the right </span><a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\" target=\"_blank\" rel=\"noopener noreferrer\"><b>stem cell doctor in Santa Monica</b></a><span style=\"font-weight: 400;\"> by your side, you can heal your joints and spine without surgery.</span>\r\n<h2><b>Restoring Your Painful Joints with Your Own Stem Cells</b></h2>\r\n<span style=\"font-weight: 400;\">At OrthoRegen, our Gold Standard in Stem Cell Therapy combines four regenerative Orthopedic procedures including two types of stem cells (fat and bone), PRP, and Dextrose Prolotherapy. That’s a lot of reparative cells and growth factors to do the job of healing and repair! Most other regenerative medicine clinics  only utilize one or two, at best. By using all four, we’re able to offer our patients a better, more comprehensive treatment. It’s important to realize these cells are autologous. That means they come from your own body, and we’re simply returning them to the injured areas of your body for repair and regeneration. </span>\r\n\r\n<img class=\"aligncenter wp-image-2588 size-full\" title=\"Stem Cell Doctor in Santa Monica\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Stem-Cell-Doctor-in-Santa-Monica.jpg\" alt=\"Stem Cell Doctor in Santa Monica\" width=\"800\" height=\"533\" />\r\n<h3><b>Injecting the Stem Cells</b></h3>\r\n<span style=\"font-weight: 400;\">Once we’ve drawn the regenerative cells, we centrifuge them and/or concentrate them. Through this process, we’re able to get a solution that has the highest possible amount of regenerative cells. Then, we inject them right into the injured or degenerated joint. The regenerative cells and growth factors get right to work boosting the healing cascade, so the joint can repair. Stem cells can regenerate all different kinds of joint structures: ligaments, meniscus, cartilage, and bone. So if joint structures are damaged, Regenerative Orthopedics has a great chance of repairing them.</span>\r\n<h4><b>Incorporating Platelet Rich Plasma</b></h4>\r\n<span style=\"font-weight: 400;\">We also use Platelet Rich Plasma (PRP) as part of the Gold Standard in Stem Cell Therapy  to accelerate the healing. PRP uses plasma derived from your own blood, with a highly concentrated amount of blood platelets. What makes these blood platelets so special is that they can speed up the body’s healing process through their vast amount of growth factors.</span>\r\n<h5><b>Dextrose Prolotherapy for Stabilization</b></h5>\r\n<span style=\"font-weight: 400;\">The final Regenerative Orthopedic procedure we utilize is Dextrose Prolotherapy.  With <a href=\"https://en.wikipedia.org/wiki/Prolotherapy\" target=\"_blank\" rel=\"noopener noreferrer\">Prolotherapy</a>, we inject a dextrose solution to trigger a mild inflammatory response in the body. This is the process the body naturally uses as part of the healing cascade. The tendons and ligaments are generally low in blood supply, and this technique stimulates the blood flow which provides these structures with the nutrition they need for healing. Dextrose Prolotherapy gives the body this boost to get the healing process into high gear. As part of Stem Cell therapy, the Dextrose Prolotherapy to the ligament and tendon structures on the outside of the joint repairs these injured joint structures so the joint can move normally, in a stable and normal fashion. </span>\r\n<h6><b>Contact Dr. Fields, Stem Cell Doctor in Santa Monica</b></h6>\r\n<span style=\"font-weight: 400;\">For most patients, only a handful of treatments are required for repair. That’s often far less time (especially considering recovery time) than surgery would require, to say nothing of how much pain surgery could leave you in. Wondering if you’re a good candidate for our stem cell treatment? Schedule an appointment with us by calling [phone].</span>','The Gold Standard Stem Cell Doctor in Santa Monica','','publish','open','closed','','the-gold-standard-stem-cell-doctor-in-santa-monica','','','2019-10-18 08:54:03','2019-10-18 08:54:03','',0,'https://www.drfields.com/?p=2586',0,'post','',0),(2587,8,'2019-08-10 18:42:08','2019-08-10 18:42:08','','Stem Cell Doctor in Santa Monica','','inherit','open','closed','','muscular-male-with-beard-happy-man-isolated-on-white-sportsman','','','2019-08-10 18:42:17','2019-08-10 18:42:17','',2586,'https://www.drfields.com/wp-content/uploads/2019/08/Stem-Cell-Doctor-in-Santa-Monica-.jpg',0,'attachment','image/jpeg',0),(2588,8,'2019-08-10 18:42:27','2019-08-10 18:42:27','','Stem Cell Doctor in Santa Monica','','inherit','open','closed','','a-doctor-injects-a-medical-injection-of-chondroprotector-and-hya','','','2019-08-10 18:42:35','2019-08-10 18:42:35','',2586,'https://www.drfields.com/wp-content/uploads/2019/08/Stem-Cell-Doctor-in-Santa-Monica.jpg',0,'attachment','image/jpeg',0),(2589,8,'2019-08-10 18:44:04','2019-08-10 18:44:04','<span style=\"font-weight: 400;\">Imagine that your joints degenerate to the point where you are in constant, severe pain. You are wary of surgery, but your doctor tells you there’s a better method: stem cells. Somehow, he’s able to use stem cells to regenerate your joints or repair your spine. This isn’t something out of science fiction or a vision from a far-flung future: it’s the present. When you have the right </span><a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\" target=\"_blank\" rel=\"noopener noreferrer\"><b>stem cell doctor in Santa Monica</b></a><span style=\"font-weight: 400;\"> by your side, you can heal your joints and spine without surgery.</span>\r\n<h2><b>Restoring Your Painful Joints with Your Own Stem Cells</b></h2>\r\n<span style=\"font-weight: 400;\">At OrthoRegen, our Gold Standard in Stem Cell Therapy combines four regenerative Orthopedic procedures including two types of stem cells (fat and bone), PRP, and Dextrose Prolotherapy. That’s a lot of reparative cells and growth factors to do the job of healing and repair! Most other regenerative medicine clinics  only utilize one or two, at best. By using all four, we’re able to offer our patients a better, more comprehensive treatment. It’s important to realize these cells are autologous. That means they come from your own body, and we’re simply returning them to the injured areas of your body for repair and regeneration. </span>\r\n\r\n<img class=\"aligncenter wp-image-2588 size-full\" title=\"Stem Cell Doctor in Santa Monica\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Stem-Cell-Doctor-in-Santa-Monica.jpg\" alt=\"Stem Cell Doctor in Santa Monica\" width=\"800\" height=\"533\" />\r\n<h3><b>Injecting the Stem Cells</b></h3>\r\n<span style=\"font-weight: 400;\">Once we’ve drawn the regenerative cells, we centrifuge them and/or concentrate them. Through this process, we’re able to get a solution that has the highest possible amount of regenerative cells. Then, we inject them right into the injured or degenerated joint. The regenerative cells and growth factors get right to work boosting the healing cascade, so the joint can repair. Stem cells can regenerate all different kinds of joint structures: ligaments, meniscus, cartilage, and bone. So if joint structures are damaged, Regenerative Orthopedics has a great chance of repairing them.</span>\r\n<h4><b>Incorporating Platelet Rich Plasma</b></h4>\r\n<span style=\"font-weight: 400;\">We also use Platelet Rich Plasma (PRP) as part of the Gold Standard in Stem Cell Therapy  to accelerate the healing. PRP uses plasma derived from your own blood, with a highly concentrated amount of blood platelets. What makes these blood platelets so special is that they can speed up the body’s healing process through their vast amount of growth factors.</span>\r\n<h5><b>Dextrose Prolotherapy for Stabilization</b></h5>\r\n<span style=\"font-weight: 400;\">The final Regenerative Orthopedic procedure we utilize is Dextrose Prolotherapy.  With <a href=\"https://en.wikipedia.org/wiki/Prolotherapy\" target=\"_blank\" rel=\"noopener noreferrer\">Prolotherapy</a>, we inject a dextrose solution to trigger a mild inflammatory response in the body. This is the process the body naturally uses as part of the healing cascade. The tendons and ligaments are generally low in blood supply, and this technique stimulates the blood flow which provides these structures with the nutrition they need for healing. Dextrose Prolotherapy gives the body this boost to get the healing process into high gear. As part of Stem Cell therapy, the Dextrose Prolotherapy to the ligament and tendon structures on the outside of the joint repairs these injured joint structures so the joint can move normally, in a stable and normal fashion. </span>\r\n<h6><b>Contact Dr. Fields, Stem Cell Doctor in Santa Monica</b></h6>\r\n<span style=\"font-weight: 400;\">For most patients, only a handful of treatments are required for repair. That’s often far less time (especially considering recovery time) than surgery would require, to say nothing of how much pain surgery could leave you in. Wondering if you’re a good candidate for our stem cell treatment? Schedule an appointment with us by calling (310) 453-1234.</span>','The Gold Standard Stem Cell Doctor in Santa Monica','','inherit','closed','closed','','2586-revision-v1','','','2019-08-10 18:44:04','2019-08-10 18:44:04','',2586,'https://www.drfields.com/uncategorized/2586-revision-v1/',0,'revision','',0),(2590,0,'2019-09-01 09:01:10','2019-09-01 09:01:10','raphaeIcosecoerics@gmail.com\nMarioGebra','raphaeIcosecoerics@gmail.com','','publish','closed','closed','','raphaeicosecoerics-gmail-com','','','2019-09-01 09:01:10','2019-09-01 09:01:10','',0,'https://www.drfields.com/?post_type=flamingo_contact&#038;p=2590',0,'flamingo_contact','',0),(2591,0,'2019-08-11 09:14:03','2019-08-11 09:14:03','MarioGebra\nraphaeIcosecoerics@gmail.com\n82282429462\n11am-1pm\nCiao!  drfields.com \r\n \r\nWe present \r\n \r\nSending your message through the feedback form which can be found on the sites in the Communication partition. Feedback forms are filled in by our program and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This technique raise the probability that your message will be open. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com\nCiao!  drfields.com \r\n \r\nWe present \r\n \r\nSending your message through the feedback form which can be found on the sites in the Communication partition. Feedback forms are filled in by our program and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This technique raise the probability that your message will be open. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com\nSend\n32\n83.97.23.233\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64\nhttps://www.drfields.com/contact/\nAugust 11, 2019\n9:14 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-32','','','2019-08-11 09:14:03','2019-08-11 09:14:03','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2591',0,'flamingo_inbound','',0),(2592,8,'2019-08-12 13:14:29','2019-08-12 13:14:29','<h3><strong>Painful Joints? Regenerative Orthopedics Works Even When Other Treatments Fail</strong></h3>\r\n[caption id=\"attachment_4086\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4086 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Sue.-knee.stem_-500x500.png\" alt=\"Stem Cell Therapy for Knee Pain\" width=\"500\" height=\"500\" /> Stem Cell Therapy Resolves Painful Joints Even When Other Treatments Fail[/caption]\r\n\r\nRegenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma (PRP), and Dextrose Prolotherapy are non-surgical treatments for numerous conditions causing painful joints. The treatments are often superior to many other treatments at effectively repairing joint injuries. And they eliminate joint pain, getting you back to the activities and the lifestyle you love.\r\n<h4>Is joint pain standing in the way of your enjoyment of sports?</h4>\r\nAre painful joints making it difficult to do normal, everyday things? At OrthoRegen<sup>®</sup>, we commonly see patients who have tried a number of different treatments in an effort to find relief from their painful knee, hip, shoulder, back, and multiple joint pain. They have tried over-the-counter medications, prescription medications, cortisone injections, massage, and other treatments, but are still in pain. You may have even tried surgery. Yet they are still in pain.\r\n\r\nDoes this sound like you? Do you continue to suffer with a painful joint condition even though it seems like you have tried everything, but still experience annoying pain? Unfortunately, this scenario repeats over and over. We hear it all of the time! But there is an answer!\r\n<h4>Regenerative Orthopedics: An Effective Joint Repair Solution</h4>\r\nRegenerative Orthopedics is effective at repairing many painful joint conditions even after other treatments have failed. How can this be? The reason is because many of the other treatments never treat the root cause of the problem. Think about it. Can Advil really fix a joint problem? Or does it just cover up the pain? Is the problem an Advil deficiency? When you think about it like that, it is obvious that these treatments aren’t the answer, but more of a band-aid approach.\r\n\r\nRegenerative Orthopedics has a greater chance at effectively repairing the joint injury and relieving the pain because it is directed at the root cause of the joint pain problem.  The underlying source of the majority of painful joint conditions is joint instability due to ligament and/or tendon injury and weakness. Fortunately, Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, work great at treating ligament and tendon injuries and weakness, and because of that, they are able to successfully repair joint instability.\r\n<h4><strong>How Do Regenerative Orthopedic Treatments Work?</strong></h4>\r\nIt’s pretty simple. Regenerative Orthopedics involve the injection of different types of natural solutions which are injected into the painful joint areas.  The process stimulates the body’s natural healing cascade, which triggers wound healing properties. This results in tightened and stronger ligaments and tendons, which make the entire joint structure more stable.\r\n\r\nAnd remember, the underlying source of most painful joint conditions is an unstable joint. Therefore, stabilization of the joint with Regenerative Orthopedics repairs the problem at its source and results in pain elimination. Regenerative Orthopedics is beneficial in repairing many different types of sports injuries and various types of persistent joint pain.\r\n<h4><strong>Regenerative Orthopedics Treats Most Painful Joint Conditions</strong></h4>\r\nAt OrthoRegen<sup>®</sup>, we have seen Regenerative Orthopedics effectively repair most joint injuries and painful joint conditions including neck, back, knee, hip, shoulder and other musculoskeletal pains that are due to ligament and tendon weakness, injury, and joint instability.\r\n\r\nIn joint injuries such as meniscal tears or labral tears, we have found that the addition of Platelet Rich Plasma, along with Dextrose Prolotherapy is an effective Regenerative Orthopedic technique.\r\n<h4>Regenerative Orthopedics and Arthritis</h4>\r\nEven arthritis can be treated with Regenerative Orthopedics, because arthritis also has at its core, a problem of joint instability. Regenerative Orthopedics strengthens the entire joint, because the whole joint is treated comprehensively. Persistent joint pain in arthritis is almost always due to underlying injured soft tissue, like the ligaments and tendons, and joint instability.\r\n\r\nLeft untreated, the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for degeneration and the arthritic process. Regenerative Orthopedics stimulates the repair of the injured joint structures, stops the abnormal joint motion, and halts the degenerative process.\r\n\r\nWhen degeneration of the joint is more severe, we may recommend the Gold Standard in Stem Cell Therapy. This treatment includes two forms of stem cells (bone and fat), PRP, and Dextrose Prolotherapy. We have found that this combination is quite amazing at regenerating the joint when cartilage has been lost. Plus, it stimulates the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability. And the result is in the elimination of pain and the return to function in degenerative joint conditions.\r\n\r\nRegenerative Orthopedics is an effective treatment option for painful joint conditions, even after many other treatments have failed to resolve your pain. If your pain has persisted to put a damper on your life after having tried numerous other treatments, we urge you to consider non-surgical Regenerative Orthopedics to resolve your joint pain.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Painful Joints?','','publish','open','closed','','painful-joints-regenerative-orthopedics-works-even-when-other-treatments-fail','','','2021-12-15 00:41:33','2021-12-15 00:41:33','',0,'https://www.drfields.com/?p=2592',0,'post','',0),(2593,8,'2019-08-12 13:14:29','2019-08-12 13:14:29','<strong>Painful Joints? Regenerative Orthopedics Works Even When Other Treatments Fail  </strong>\r\n\r\nRegenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma (PRP), and Dextrose Prolotherapy are non-surgical treatments for numerous painful joint conditions. The treatments are often superior to many other treatments at effectively repairing joint injuries, eliminating joint pain, and getting you back to the activities and the lifestyle you love.  Is joint pain standing in the way of your enjoyment of sports? Are painful joints making it difficult to do normal, everyday things? At OrthoRegen, we commonly see patients who have tried a number of different treatments in an effort to find relief from their painful knee, hip, shoulder, back, and multiple joint pain. They have tried over-the-counter medications, prescription medications, cortisone injections, massage, and other treatments, but are still in pain. Surgery may have been recommended or even performed already. Yet they are still in pain. Does this sound like you? Do you continue to suffer with a painful joint condition even though it seems like you have tried everything, but still experience annoying pain? Unfortunately, this scenario is repeated over and over. We hear it all of the time! But there is an answer! Regenerative Orthopedics is effective at repairing many painful joint conditions even after other treatments have failed. How can this be? The reason is because many of the other treatments never treat the root cause of the problem. Think about it. Can Advil really fix a joint problem or does it just cover up the pain? Is the problem an Advil deficiency? When you think about it like that, it is obvious that these treatments aren’t the answer, but more of a band-aid approach.\r\n\r\nRegenerative Orthopedics has a greater chance at effectively repairing the joint injury and relieving the pain because it is directed at the root cause of the joint pain problem.  The underlying source of the majority of painful joint conditions is joint instability due to ligament and/or tendon injury and weakness. Fortunately, Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, work great at treating ligament and tendon injuries and weakness, and because of that, they are able to successfully repair joint instability.\r\n\r\n<strong>How Do Regenerative Orthopedic Treatments Work?</strong>\r\n\r\nIt’s pretty simple. Regenerative Orthopedics involves the injection of different types of natural solutions which are injected into the painful joint areas.  The process stimulates the body’s natural healing cascade, which triggers wound healing properties. This results in tightened and stronger ligaments and tendons, which make the entire joint structure more stable. Remember, the underlying source of most painful joint conditions is an unstable joint. Therefore, stabilization of the joint with Regenerative Orthopedics repairs the problem at its source and results in pain elimination. Regenerative Orthopedics is beneficial in repairing many different types of sports injuries and various types of persistent joint pain.\r\n\r\n<strong>Does Regenerative Orthopedics Only Treat Specific Joints and Conditions? </strong>\r\n\r\nAt OrthoRegen, we have seen Regenerative Orthopedics effectively repair most joint injuries and painful joint conditions including neck, back, knee, hip, shoulder and other musculoskeletal pains that are due to ligament and tendon weakness, injury, and joint instability.\r\n\r\nIn joint injuries such as meniscal tears or labral tears, we have found that the addition of Platelet Rich Plasma, along with Dextrose Prolotherapy is an effective Regenerative Orthopedic technique.\r\n\r\nEven arthritis can be treated with Regenerative Orthopedics, because it also has at its core, a problem of joint instability. Regenerative Orthopedics strengthens the entire joint, because the whole joint is treated comprehensively. Persistent joint pain in arthritis is almost always due to underlying injured soft tissue, like the ligaments and tendons, and joint instability. Left untreated, the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for degeneration and the arthritic process. Regenerative Orthopedics stimulates the repair of the injured joint structures, stops the abnormal joint motions, and halts the degenerative process.  When degeneration of the joint is more severe, we may recommend the Gold Standard in Stem Cell Therapy, which includes two forms of stem cells (bone and fat), PRP, and Dextrose Prolotherapy. This treatment combination is quite amazing at regenerating the joint when cartilage has been lost, plus it stimulates the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability, and results in the elimination of pain and the return to function in degenerative joint conditions.\r\n\r\nRegenerative Orthopedics is an effective treatment option for painful joint conditions, even after many other treatments have failed to resolve your pain. If your pain has persisted to put a damper on your life after having tried numerous other treatments, we urge you to consider non-surgical Regenerative Orthopedics to resolve your joint pain.','Painful Joints? Regenerative Orthopedics Works Even When Other Treatments Fail ','','inherit','closed','closed','','2592-revision-v1','','','2019-08-12 13:14:29','2019-08-12 13:14:29','',2592,'https://www.drfields.com/uncategorized/2592-revision-v1/',0,'revision','',0),(2594,8,'2019-08-12 13:15:19','2019-08-12 13:15:19','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Painful Joints? Regenerative Orthopedics Works Even When Other Treatments Fail</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/painful-joints-regenerative-orthopedics-works-even-when-other-treatments-fail/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-08-12 13:15:19','2019-08-12 13:15:19','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2595,0,'2019-08-13 12:34:23','2019-08-13 12:34:23','mike@monkeydigital.co\nJavier Langlands','mike@monkeydigital.co','','publish','closed','closed','','mike-monkeydigital-co','','','2019-08-13 12:34:23','2019-08-13 12:34:23','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2595',0,'flamingo_contact','',0),(2596,8,'2019-08-13 12:34:23','2019-08-13 12:34:23','Javier Langlands\nmike@monkeydigital.co\n077 0044 7981\n3pm-5pm\nWhat will we do to increase your DA?\r\n\r\nOur Plan is very simple yet very effective. We have researched all available sources and gained access to thousands of High DA domains that are directly indexed and re-crawled by Moz Robots on each update. So, we will build and index:\r\n\r\n- 5000 DA30+ backlinks\r\n- 4000 TF10+ backlinks\r\n- 1000 EDU and Gov links\r\n\r\nstart boosting ranks and SEO metrics with our plan today:\r\nhttps://monkeydigital.co/product/moz-da-seo-plan/\r\n\r\nBest regards\r\nMike\r\nmonkeydigital.co@gmail.com\nWhat will we do to increase your DA?\r\n\r\nOur Plan is very simple yet very effective. We have researched all available sources and gained access to thousands of High DA domains that are directly indexed and re-crawled by Moz Robots on each update. So, we will build and index:\r\n\r\n- 5000 DA30+ backlinks\r\n- 4000 TF10+ backlinks\r\n- 1000 EDU and Gov links\r\n\r\nstart boosting ranks and SEO metrics with our plan today:\r\nhttps://monkeydigital.co/product/moz-da-seo-plan/\r\n\r\nBest regards\r\nMike\r\nmonkeydigital.co@gmail.com\n33\n46.243.221.36\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nAugust 13, 2019\n12:34 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-33','','','2019-08-19 19:38:59','2019-08-19 19:38:59','',0,'https://www.drfields.com/?post_type=flamingo_inbound&#038;p=2596',0,'flamingo_inbound','',0),(2598,0,'2019-08-14 06:04:54','2019-08-14 06:04:54','emma@bestcontent.top\nEmma Wilson','emma@bestcontent.top','','publish','closed','closed','','emma-bestcontent-top','','','2019-08-14 06:04:54','2019-08-14 06:04:54','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2598',0,'flamingo_contact','',0),(2599,8,'2019-08-14 06:04:54','2019-08-14 06:04:54','Emma Wilson\nemma@bestcontent.top\n805-372-1751\n9am-11am\nI\'ve received a few of your emails recently and it looks like you could use a little help with your copywriting.  I did too.  \r\n \r\nI recently started using CopyTemplates.com for my business so I can easily copy, paste and fill in the blanks using proven email, website copy and more.  I figured you could improve your copy as I did.  They have free email copy here too: \r\nhttps://bestcontent.top/best/?=drfields.com\r\n \r\nHave a great day!\r\n \r\n\r\n \r\nRegards,\r\nEmma\r\n\r\nP.S. - If you decide to get unlimited access to their copy portal, then you can use coupon code GREATCOPY to get an extra $50 off.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n500 Westover Dr #12733\r\nSanford, NC 27330\r\n\r\nThis is a marketing message. You can avoid future messages here:\r\nhttps://bestcontent.top/out.php?site=drfields.com\nI\'ve received a few of your emails recently and it looks like you could use a little help with your copywriting.  I did too.  \r\n \r\nI recently started using CopyTemplates.com for my business so I can easily copy, paste and fill in the blanks using proven email, website copy and more.  I figured you could improve your copy as I did.  They have free email copy here too: \r\nhttps://bestcontent.top/best/?=drfields.com\r\n \r\nHave a great day!\r\n \r\n\r\n \r\nRegards,\r\nEmma\r\n\r\nP.S. - If you decide to get unlimited access to their copy portal, then you can use coupon code GREATCOPY to get an extra $50 off.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n500 Westover Dr #12733\r\nSanford, NC 27330\r\n\r\nThis is a marketing message. You can avoid future messages here:\r\nhttps://bestcontent.top/out.php?site=drfields.com\n34\n191.101.199.10\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nAugust 14, 2019\n6:04 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-34','','','2019-08-19 19:38:56','2019-08-19 19:38:56','',0,'https://www.drfields.com/?post_type=flamingo_inbound&#038;p=2599',0,'flamingo_inbound','',0),(2600,0,'2019-08-14 21:34:17','2019-08-14 21:34:17','nino22oran@gmail.com\nhttp://cort.as/-MrBS','nino22oran@gmail.com','','publish','closed','closed','','nino22oran-gmail-com','','','2019-08-14 21:34:17','2019-08-14 21:34:17','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2600',0,'flamingo_contact','',0),(2601,0,'2019-08-14 21:34:17','2019-08-14 21:34:17','http://cort.as/-MrBS\nnino22oran@gmail.com\n85757896357\n11am-1pm\nhttps://hideuri.com/K0XB81\nhttps://hideuri.com/K0XB81\nSend\n35\n185.180.222.171\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54\nhttps://www.drfields.com/contact/\nAugust 14, 2019\n9:34 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-35','','','2019-08-14 21:34:17','2019-08-14 21:34:17','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2601',0,'flamingo_inbound','',0),(2602,0,'2019-08-15 05:03:09','2019-08-15 05:03:09','laura@explainmybusiness.com\nLaura Wiess','laura@explainmybusiness.com','','publish','closed','closed','','laura-explainmybusiness-com','','','2019-08-15 05:03:09','2019-08-15 05:03:09','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2602',0,'flamingo_contact','',0),(2603,8,'2019-08-15 05:03:09','2019-08-15 05:03:09','Laura Wiess\nlaura@explainmybusiness.com\n917-675-5528\n11am-1pm\nHey - I was checking out your site and I’m impressed with how clean and professional it looks. \r\n\r\nAdding video to your website has become an absolute MUST. Even something basic that clearly defines exactly what it is you\'re offering & why work with your company vs competitors...\r\n\r\nMy team, based out of Jerusalem and California, creates quality animated explainer videos.  Our award-winning videos are proven to increase customer engagement and decrease user bounce rate. \r\n\r\nEmail me back for some explainer video samples, pricing, or just to say hi!\r\n\r\n-Laura\r\n\r\nEmail: Laura@explainmybusiness.com\r\nWebsite: www.explainmybusiness.com\nHey - I was checking out your site and I’m impressed with how clean and professional it looks. \r\n\r\nAdding video to your website has become an absolute MUST. Even something basic that clearly defines exactly what it is you\'re offering & why work with your company vs competitors...\r\n\r\nMy team, based out of Jerusalem and California, creates quality animated explainer videos.  Our award-winning videos are proven to increase customer engagement and decrease user bounce rate. \r\n\r\nEmail me back for some explainer video samples, pricing, or just to say hi!\r\n\r\n-Laura\r\n\r\nEmail: Laura@explainmybusiness.com\r\nWebsite: www.explainmybusiness.com\n36\n89.187.164.159\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nAugust 15, 2019\n5:03 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-36','','','2019-08-19 19:38:52','2019-08-19 19:38:52','',0,'https://www.drfields.com/?post_type=flamingo_inbound&#038;p=2603',0,'flamingo_inbound','',0),(2604,0,'2019-08-16 17:45:27','2019-08-16 17:45:27','Alan\nalan@websitedepot.com\n3235078034\n1pm-3pm\nTest\nTest\n37\n23.243.83.13\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\nhttps://www.drfields.com/contact/\nAugust 16, 2019\n5:45 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-37','','','2019-08-16 17:45:27','2019-08-16 17:45:27','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2604',0,'flamingo_inbound','',0),(2605,8,'2019-08-16 22:14:40','2019-08-16 22:14:40','Austincitly\nsupport@monkeydigital.co\n89759344515\n1pm-3pm\nDropped in website’s rankings? Try our new Slow Link building Service. \r\nWe will run a slow & steady link building campaign for 7 days and send you a report with 140 live Social posts \r\n \r\nMore info and more variations in posts: \r\nhttps://monkeydigital.co/product/daily-social-posting-service/ \r\n \r\nThanks and regards \r\nMike \r\nmonkeydigital.co@gmail.com\nDropped in website’s rankings? Try our new Slow Link building Service. \r\nWe will run a slow & steady link building campaign for 7 days and send you a report with 140 live Social posts \r\n \r\nMore info and more variations in posts: \r\nhttps://monkeydigital.co/product/daily-social-posting-service/ \r\n \r\nThanks and regards \r\nMike \r\nmonkeydigital.co@gmail.com\nSend\n38\n84.17.51.125\nMozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36\nhttps://www.drfields.com/contact/\nAugust 16, 2019\n10:14 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-38','','','2019-08-19 19:38:41','2019-08-19 19:38:41','',0,'https://www.drfields.com/?post_type=flamingo_inbound&#038;p=2605',0,'flamingo_inbound','',0),(2606,0,'2019-08-17 07:06:30','2019-08-17 07:06:30','sodersten.ricky@googlemail.com\nRicky Sodersten','sodersten.ricky@googlemail.com','','publish','closed','closed','','sodersten-ricky-googlemail-com','','','2019-08-17 07:06:30','2019-08-17 07:06:30','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2606',0,'flamingo_contact','',0),(2607,0,'2019-08-17 07:06:30','2019-08-17 07:06:30','Ricky Sodersten\nsodersten.ricky@googlemail.com\n(61) 3664-5020\n3pm-5pm\nWould you like to submit your business on 1000\'s of Advertising sites every month? One tiny investment every month will get you virtually unlimited traffic to your site forever!To find out more check out our site here: http://moreadsposted.sytes.net\nDo you want to submit your ad on 1000\'s of Advertising sites monthly? Pay one low monthly fee and get virtually unlimited traffic to your site forever!To find out more check out our site here: http://moreadsposted.sytes.net\n39\n104.245.145.5\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nAugust 17, 2019\n7:06 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-39','','','2019-08-17 07:06:30','2019-08-17 07:06:30','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2607',0,'flamingo_inbound','',0),(2608,0,'2019-08-19 01:05:22','2019-08-19 01:05:22','brookecvsulsmith@aol.com\nBrooke Smith','brookecvsulsmith@aol.com','','publish','closed','closed','','brookecvsulsmith-aol-com','','','2019-08-19 01:05:22','2019-08-19 01:05:22','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2608',0,'flamingo_contact','',0),(2609,8,'2019-08-19 01:05:22','2019-08-19 01:05:22','Brooke Smith\nbrookecvsulsmith@aol.com\n(805) 372-1751\n9am-11am\nHi,\r\n  You have a great website.  May I ask how your SEO is doing?\r\n\r\nDo you have enough people coming to your website?\r\n\r\nWe can help improve your SEO.  \r\n\r\nhttps://businessseo.top/wal/?=drfields.com\r\n\r\nRegards,\r\nBrooke\r\nSEO Expert\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n500 Westover Dr #12733\r\nSanford, NC 27330\r\n\r\nIf you prefer not to receive commercial messages regarding seo for your business, please remove yourself here: https://www.businessseo.top/out.php/?site=drfields.com\nHi,\r\n  You have a great website.  May I ask how your SEO is doing?\r\n\r\nDo you have enough people coming to your website?\r\n\r\nWe can help improve your SEO.  \r\n\r\nhttps://businessseo.top/wal/?=drfields.com\r\n\r\nRegards,\r\nBrooke\r\nSEO Expert\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n500 Westover Dr #12733\r\nSanford, NC 27330\r\n\r\nIf you prefer not to receive commercial messages regarding seo for your business, please remove yourself here: https://www.businessseo.top/out.php/?site=drfields.com\n40\n196.196.47.32\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nAugust 19, 2019\n1:05 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-40','','','2019-08-19 17:20:18','2019-08-19 17:20:18','',0,'https://www.drfields.com/?post_type=flamingo_inbound&#038;p=2609',0,'flamingo_inbound','',0),(2611,8,'2019-08-20 00:00:34','2019-08-20 00:00:34','[caption id=\"attachment_4078\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4078\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Amniotic-400x500.jpg\" alt=\"Amniotic Stem Cells\" width=\"400\" height=\"500\" /> <em>     There are no Stem Cells in Amniotic \"Stem Cell\" Therapy</em>[/caption]\r\n\r\nSeminars about amniotic “stem cell” therapy are popping up everywhere. But it is important to know what advertisers are really talking about. At OrthoRegen<sup>®</sup>, we do not use amniotic “stem cell” therapy in our stem cell treatments.\r\n\r\nWe want you to be educated about amniotic therapy. Especially since there is a lot of misinformation surrounding amniotic “stem cell” therapy and umbilical cord blood “stem cell” therapy. <strong>We want to inform you on what these treatments are and also what they are not.</strong>\r\n<h4>Why Do We Put the Words \"Stem Cells\" in Quotations?</h4>\r\nThere is a reason we keep putting “stem cells” in quotations when we talking about amniotic “stem cells.” <em>That’s because there are <strong>NO</strong> actual stem cells in amniotic “stem cell” therapy.</em> That’s right! Both amniotic “stem cell” therapy and umbilical cord blood “stem cell” therapy have NO stem cells in the product.\r\n\r\nIn a very recent study of five commercial umbilical cord allograft products claiming to contain viable, undescribed \"stem cells,\" a group of researchers concluded, \"stem cells were not found within any of the commercial UC allograft products analyzed, and clinicians should remain wary of marketing claims stating otherwise.\"1 And patients seeking these products should be wary as well!\r\n\r\nThink about this scenario for a moment. There isn’t someone waiting for the mother to give birth, and someone who is collecting the afterbirth, and someone else delivering it to your doctor’s office, to then be injected into your degenerated or injured hip or knee by the clinician you have chosen, right?! No, that isn’t the way it happens.\r\n<h4>Amniotic Product Processing</h4>\r\nSure, the mother does donate the placental tissue. But the afterbirth materials are purchased by companies, and the companies process the materials in an effort to make sure they are disease-free. They are also freeze-dried. And all of these preservation processes kill all of the live cells. That leaves <strong>NO live stem cells in the product</strong>.\r\n\r\nAmniotic stem cells are being advertised all over the place. And people are fascinated with this very popular trend of using amniotic fluid for joint repair. But it needs to be clarified that amniotic “stem cell” therapy has NO actual stem cells, but rather growth factors and natural hyaluronic acid remnants found in the extracellular matrix of the amniotic tissue. If companies advertise in this way about the actual product you will receive, it is simply not true. Keep in mind that in their pre-donated state, the amniotic fluid does have an abundance of stem cells, but they do not survive the processing.\r\n<h4><strong>They Say My Stem Cells Are Too Old, Weak, or Too Few</strong></h4>\r\nSome seminars try to convince folks that their own stem cells are no good and that the donated cells are better for treating joint pain. That’s not true! This is another important point to understand… <strong><em>your own bone marrow, even if you are older, contains sufficient stem cells.</em></strong> Yours stem cells are just fine. And they are live stem cells.\r\n<h4><strong><em>How Can the Processed, “Dead” Cells They Promote Be Better?</em></strong></h4>\r\nThe push to say that your own cells are too weak, or too few and that their amniotic product is better does not make any sense when their product doesn’t contain any! Remember, cryopreserved, dehydrated amniotic products do not contain stem cells. Yes, amniotic fluid does contain growth factors. And these growth factors very well may work at helping joint pain. But there is a better way!\r\n<h4>Use Your Own Live Stem Cells</h4>\r\nGuess what?  You have growth factors in your own blood! Your own blood in the form of Platelet Rich Plasma (PRP) contains live growth factors too. And when we use PRP, if recommended in your particular case, we won’t be preserving it or freeze-drying it. It will be used right away. Again, the purchased, micronized amniotic product does contain growth factor material, but it is processed. Why not just use your own (autologous) live stem cells and PRP growth factors for your joint pain and injuries?\r\n\r\nUsing your own stem cells and blood is also safer as far as the transfer of disease or contaminants. True, the amniotic product is processed and freeze-dried, but problems of contamination have occurred. The CDC has reported instances of contamination of both amniotic products and cord blood with fecal matter and bacteria.2\r\n\r\nTo recap: the original amniotic fluid from the fetus does contain an abundance of stem cells in its pre-donated state. However, the procedure used in amniotic material processing alters the original relevant characteristics of the product thereby decreasing its ability and usefulness at regeneration and repair of injured or degenerated tissue. Once again, the amniotic “stem cell” therapy does <strong>not</strong> contain actual stem cells, but rather growth factors that may possibly activate your own stem cells.\r\n<h4><strong>They Say I Just Need One Injection</strong></h4>\r\nOne injection simply is not enough to heal your whole joint. Even if just one injection is advertised, it is not sufficient for complete healing. The most likely scenario is that your joint injury or pain progressed over time, and involves more than one joint structure. In order to provide an adequate repair of the joint and the pain relief you seek, a more comprehensive treatment would be necessary.\r\n\r\nIn most joint injuries, when one ligament is injured, additional ligaments and other soft tissue are generally injured as well. Unhealed joint injuries often lead to arthritis. And in this case, the entire joint is involved. One injection simply cannot treat all of those joint structures. A comprehensive treatment is necessary to strengthen, repair, and stabilize all of the involved structures. This also helps to prevent the continued breakdown of cartilage common in arthritis.\r\n\r\n<strong>A single injection is simply not comprehensive</strong> enough to reverse the damage affecting the entire joint. At OrthoRegen<sup>®</sup>, we address the entire joint with a multi-injection technique called <strong>Comprehensive Regenerative Orthopedics, in order to effectively treat the joint and return you to the pain-free life you desire</strong>.\r\n<h4><strong>Why Don’t We Use Amniotic “Stem Cell” Therapy?</strong></h4>\r\nAt OrthoRegen<sup>®</sup>, we use the Gold Standard in Stem Cell Therapy, which combines four different regenerative treatments that are extremely effective. <strong>And they utilize your own stem cells and growth factors.</strong>\r\n\r\nWe use adipose (fat) stem cells, which contain both live growth factors and live stem cells. Plus, we use bone marrow stem cells, which contain live growth factors and live stem cells. We also use Platelet Rich Plasma, which contains live growth factors. And then we use Dextrose Prolotherapy to strengthen any injured ligaments or tendons so the whole joint is treated and repaired. In comparison to amniotic “stem cell” therapy that only has processed growth factor material and no stem cells, it makes sense to choose the Gold Standard in Stem Cell Therapy that has been shown to be very effective.\r\n\r\nAnother great thing about Regenerative Orthopedics and the Gold Standard in Stem Cell Therapy is that it is non-surgical and requires basically no downtime. No extended time off of work is needed, and you can remain active.\r\n<h4>Research Shows the Effectiveness of Regenerative Orthopedics</h4>\r\nVarious trials and studies have shown the effectiveness of Dextrose Prolo­therapy alone in treating arthritis, as well as ligament and tendon injuries.3,4,5 When indicated, in advanced cases of degeneration, we recommend the Gold Standard of Stem Cell Therapy. In many cases of degeneration and injury, Prolotherapy alone is sufficient to bring the pain relief and repair needed, and the Gold Standard in Stem Cell Therapy is not required.\r\n\r\nIn cases that are more advanced, many other clinics use only one or two of these procedures. But we have discovered that this Gold Standard combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint. We comprehensively treat the entire joint with multiple injections of the Platelet Rich Plasma portion of the blood, adipose stem cells, and bone marrow stem cells. These regenerative treatments, along with Dextrose Prolotherapy in and around the involved joint offer benefits in terms of pain relief, regenerative properties, and cartilage repair for people with arthritis and all types of joint pain and injuries.\r\n\r\nIn our experience, we have discovered that this combination approach of live stem cells, growth factors, and regenerative therapies offers the best therapeutic regenerative approach for more advanced degenerative cases and particular injuries. The treatment addresses the whole joint and effectively heals the joint injuries, resolves pain, and restores function to return you quickly to the active life you desire.\r\n<h4>References</h4>\r\n1Berger DR, Centeno CJ, Kisiday JD, McIlwraith CW, Steinmetz NJ. Colony Forming Potential and Protein Composition of Commercial Umbilical Cord Allograft Products in Comparison With Autologous Orthobiologics. Am J Sports Med. 2021 Aug 16:3635465211031275. doi: 10.1177/03635465211031275. Epub ahead of print. PMID: 34398643.\r\n\r\n<em>2Notes from the Field:</em> Infections after Receipt of Bacterially Contaminated Umbilical Cord Blood-Derived Stem Cell Products for Other than Hematopoietic or Immunologic Reconstitution — United States, 2018. <em>Weekly</em> / December 21, 2018 /67(50);1397–1399.\r\n\r\n3Reeves KD, Hassanein K. Randomized prospective double-blind placebo-controlled study of dextrose prolotherapy\r\n\r\nor knee osteoarthritis with or without ACL laxity.  <em>Alt Ther Health Med</em>. 2000; 6(2):68–80.\r\n\r\n4Dagenais S, Yelland MJ, Del Mar C, Schoene ML. Prolotherapy injections for chronic low-back pain. <em>Cochrane Database Syst Rev</em>. Apr 18, 2007; (2): CD004059.\r\n\r\n5Rabago D, Zgierska A, Fortney L, et al. Hypertonic dextrose injections (prolotherapy) for knee osteoarthritis: results of a single-arm uncontrolled study with 1-year follow-up. <em>J Altern Complement Med</em>. 2012;18(4): 408–14.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Amniotic “Stem Cell” Therapy','','publish','open','closed','','amniotic-stem-cell-therapy','','','2021-08-22 23:55:33','2021-08-22 23:55:33','',0,'https://www.drfields.com/?p=2611',0,'post','',0),(2612,8,'2019-08-19 16:45:08','2019-08-19 16:45:08','Seminars about amniotic “stem cell” therapy are popping up everywhere, and it is important to know what advertisers are really talking about. At OrthoRegen, we do not use amniotic “stem cell” therapy in our stem cell treatments, but we do want you to be educated about amniotic therapy, especially since there is a lot of misinformation surrounding amniotic “stem cell” therapy and umbilical cord blood “stem cell” therapy. We want to inform you on what these treatments are and also what they are not.\r\n\r\nThere is a reason we keep putting “stem cells” in quotations when we talking about amniotic “stem cells.” That’s because there are NO actual stem cells in amniotic “stem cell” therapy. That’s right! Both amniotic “stem cell” therapy and umbilical cord blood “stem cell” therapy have NO stem cells in the product. Think about the scenario a minute. There isn’t someone waiting for the mother to give birth, and someone who is collecting the afterbirth, and someone else delivering it to your doctor’s office, to then be injected into your degenerated or injured hip or knee by the clinician you have chosen, right?! No, that isn’t the way it happens. Sure, the mother does donate the placental tissue. But the afterbirth materials are purchased by companies, and the companies process the materials in an effort to make sure they are disease-free. They are also freeze-dried. All of these preservation processes kill all of the live cells. That leaves <strong>NO live stem cells in the product</strong>. Amniotic stem cells are being advertised all over the place and people are fascinated with this very popular trend of using amniotic fluid for joint repair. But it needs to be clarified that amniotic “stem cell” therapy has NO actual stem cells, but rather growth factors and natural hyaluronic acid remnants found in the extracellular matrix of the amniotic tissue. If companies advertise in this way about the actual product you will receive, it is simply not true. Keep in mind that in their pre-donated state, the amniotic fluid does have an abundance of stem cells, but they do not survive the processing.\r\n\r\n<strong>They Say My Stem Cells Are Too Old, Weak, or Too Few</strong>\r\n\r\nSome seminars try to convince folks that their own stem cells are no good, and that the donated cells are better for treating joint pain. That’s not true! This is another important point to understand… your own bone marrow, even if you are older, contains sufficient stem cells. Yours stem cells are just fine. And they are live stem cells. How can the processed “dead” cells be better? The push to say that your own cells are too weak, or too few and that their amniotic product is better does not make any sense, when their product doesn’t contain any! Remember, cryopreserved, dehydrated amniotic products do not contain stem cells. Yes, amniotic fluid does contain growth factors. And these growth factors very well may work at helping joint pain. But guess what?  You have growth factors in your blood! Your own blood in the form of Platelet Rich Plasma (PRP) contains live growth factors too. And when we use PRP, if recommended in your particular case, we won’t be preserving it and freeze drying it. It will be used right away. Again, the purchased, micronized amniotic product does contain growth factor material, but it is processed. Why not just use your own (autologous) live stem cells and PRP growth factors for your joint pain and injuries?\r\n\r\nUsing your own stem cells and blood is also safer as far as the transfer of disease or contaminants. True, the amniotic product is processed and freeze-dried, but problems of contamination have occurred. The CDC has reported instances of contamination of both amniotic product and cord blood with fecal matter and bacteria.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nTo recap: original amniotic fluid from the fetus does contain an abundance of stem cells in its pre-donated state. However, the procedure used in amniotic material processing alters the original relevant characteristics of the product thereby decreasing its ability and usefulness at regeneration and repair of injured or degenerated tissue. Once again, the amniotic “stem cell” therapy does <strong>not</strong> contain actual stem cells, but rather growth factors that may possibly activate your own stem cells.\r\n\r\n<strong>They Say I Just Need One Injection</strong>\r\n\r\nOne injection simply is not enough to heal your whole joint. Even if just one injection is advertised, it is not sufficient for complete healing. The most likely scenario is that your joint injury or pain progressed over time, and involves more than one joint structure. In order to provide adequate repair of the joint and the pain relief you seek, a more comprehensive treatment would be necessary. In most joint injuries, when one ligament is injured, additional ligaments and other soft tissue are generally injured as well. Unhealed joint injuries often lead to arthritis, and in this case the entire joint is involved. One injection simply cannot treat all of those joint structures. A comprehensive treatment is necessary to strengthen, repair and stabilize all of the involved structures. This also helps to prevent the continued breakdown of cartilage common in arthritis. <strong>A single injection is simply not comprehensive</strong> enough to reverse the damage affecting the entire joint. At OrthoRegen, we address the entire joint with a multi-injection technique called <strong>Comprehensive Regenerative Orthopedics, in order to effectively treat the joint and return you to the pain-free life you desire</strong>.\r\n\r\n<strong>Why Don’t We Use Amniotic “Stem Cell” Therapy?</strong>\r\n\r\nAt OrthoRegen, we use the Gold Standard in Stem Cell Therapy, which combines four different regenerative treatments that are extremely effective and which utilize your own stem cells and growth factors. We use adipose (fat) stem cells, which contain both live growth factors and live stem cells. Plus, we use bone marrow stem cells, which contain live growth factors and live stem cells. We also use Platelet Rich Plasma, which contains live growth factors. And then we use Dextrose Prolotherapy to strengthen any injured ligaments or tendons so the whole joint is treated and repaired. In comparison to amniotic “stem cell” therapy that only has processed growth factor material and no stem cells, it makes sense that we would choose the Gold Standard in Stem Cell Therapy that has been shown to be very effective.\r\n\r\nAnother great thing about Regenerative Orthopedics and the Gold Standard in Stem Cell Therapy is that it is non-surgical and requires basically no downtime. No extended time off of work is needed, and you can remain active.\r\n\r\nVarious trials and studies have shown the effectiveness of Dextrose Prolo­therapy alone in treating arthritis, as well as ligament and tendon injuries.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a><sup>,<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup> When indicated, in advanced cases of degeneration, we recommend the entire regimen involved in the Gold Standard of Stem Cell Therapy. In many cases of degeneration and injury, Prolotherapy alone is sufficient to bring the pain relief and repair needed, and the Gold Standard in Stem Cell Therapy is not required. In cases that are more advanced, many other clinics use only one or two of these procedures, but we have discovered that this combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint. We comprehensively treat the entire joint with multiple injections of the Platelet Rich Plasma portion of the blood, adipose stem cells, and bone marrow stem cells. These regenerative treatments, along with Dextrose Prolotherapy in and around the involved joint offer benefits in terms of pain relief, regenerative properties, and cartilage repair for people with arthritis and all types of joint pain and injuries.  In our experience, we have discovered that this combination approach of live stem cells, growth factors, and regenerative therapies offers the best therapeutic regenerative approach for more advanced degenerative cases and particular injuries, addressing the whole joint and effectively healing the joint injuries, resolving pain, and restoring function to return you quickly to the active life you desire.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> <em>Notes from the Field:</em> Infections after Receipt of Bacterially Contaminated Umbilical Cord Blood–Derived Stem Cell Products for Other than Hematopoietic or Immunologic Reconstitution — United States, 2018. <em>Weekly</em> / December 21, 2018 /67(50);1397–1399.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Reeves KD, Hassanein K. Randomized prospective double-blind placebo-controlled study of dextrose prolotherapy\r\n\r\nor knee osteoarthritis with or without ACL laxity.  <em>Alt Ther Health Med</em>. 2000; 6(2):68–80.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Dagenais S, Yelland MJ, Del Mar C, Schoene ML. Prolotherapy injections for chronic low-back pain. <em>Cochrane Database Syst Rev</em>. Apr 18, 2007; (2): CD004059.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Rabago D, Zgierska A, Fortney L, et al. Hypertonic dextrose injections (prolotherapy) for knee osteoarthritis: results of a single-arm uncontrolled study with 1-year follow-up. <em>J Altern Complement Med</em>. 2012;18(4): 408–14.','Amniotic “Stem Cell” Therapy','','inherit','closed','closed','','2611-revision-v1','','','2019-08-19 16:45:08','2019-08-19 16:45:08','',2611,'https://www.drfields.com/uncategorized/2611-revision-v1/',0,'revision','',0),(2613,8,'2019-08-19 18:18:38','2019-08-19 18:18:38','<h4>PRP Platelet Rich Plasma</h4>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div col-md-4\">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"100%\" height=\"auto\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div col-md-4\">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"100%\" height=\"auto\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div col-md-4\">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"100%\" height=\"auto\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div class=\"clearfix\"></div>\r\n\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\r\n<h4>Why Does PRP Treatment Work?</h4>\r\n<img class=\"alignright wp-image-642 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood. A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This highly concentrated amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\r\n\r\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>It primes the area that is damaged, which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>PRP Treatment Frequently Asked Questions</h4>\r\n<h6><strong>What is PRP Treatment?</strong></h6>\r\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n<h6>What does PRP mean?</h6>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\r\n<h6>What conditions are treated with PRP?</h6>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis.\r\n\r\n<img class=\"alignleft wp-image-712 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" />\r\n<h6>What are some common diagnoses treated with PRP?</h6>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, Bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h6>How is PRP treatment administered?</h6>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n<h6>Is PRP curative?</h6>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\r\n<h6>How does PRP work to heal?</h6>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\r\n<h6>Is PRP painful?</h6>\r\nPatients typically tolerate the procedure well although post-injection soreness is sometime experienced.\r\n<h6>How many PRP treatments do you need?</h6>\r\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\r\n<h6>How far apart are PRP treatments spaced?</h6>\r\nTypically about every 6 weeks if indicated.<img class=\"alignright wp-image-644 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h6>What can you expect after getting PRP?</h6>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\r\n<h6>Are there side effects/complications of PRP?</h6>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n<h6>How long does it take the PRP to “work”?</h6>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n<h6>Platelet Rich Plasma (PRP) Therapy in the News:</h6>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>','PRP Treatment','','inherit','closed','closed','','414-autosave-v1','','','2019-08-19 18:18:38','2019-08-19 18:18:38','',414,'https://www.drfields.com/uncategorized/414-autosave-v1/',0,'revision','',0),(2614,8,'2019-08-19 18:18:50','2019-08-19 18:18:50','<h4>PRP Platelet Rich Plasma</h4>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div class=\"clearfix\"></div>\r\n\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>PRP Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) is a treatment for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\r\n<h4>Why Does PRP Treatment Work?</h4>\r\n<img class=\"alignright wp-image-642 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood. A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This highly concentrated amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\r\n\r\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>It primes the area that is damaged, which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>PRP Treatment Frequently Asked Questions</h4>\r\n<h6><strong>What is PRP Treatment?</strong></h6>\r\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n<h6>What does PRP mean?</h6>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\r\n<h6>What conditions are treated with PRP?</h6>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis.\r\n\r\n<img class=\"alignleft wp-image-712 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" />\r\n<h6>What are some common diagnoses treated with PRP?</h6>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, Bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h6>How is PRP treatment administered?</h6>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n<h6>Is PRP curative?</h6>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\r\n<h6>How does PRP work to heal?</h6>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\r\n<h6>Is PRP painful?</h6>\r\nPatients typically tolerate the procedure well although post-injection soreness is sometime experienced.\r\n<h6>How many PRP treatments do you need?</h6>\r\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\r\n<h6>How far apart are PRP treatments spaced?</h6>\r\nTypically about every 6 weeks if indicated.<img class=\"alignright wp-image-644 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h6>What can you expect after getting PRP?</h6>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\r\n<h6>Are there side effects/complications of PRP?</h6>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n<h6>How long does it take the PRP to “work”?</h6>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n<h6>Platelet Rich Plasma (PRP) Therapy in the News:</h6>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>','PRP Treatment','','inherit','closed','closed','','414-revision-v1','','','2019-08-19 18:18:50','2019-08-19 18:18:50','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(2616,8,'2019-08-19 18:24:18','2019-08-19 18:24:18','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+1-4243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2019-08-19 18:24:18','2019-08-19 18:24:18','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(2617,8,'2019-08-19 18:24:42','2019-08-19 18:24:42','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n\r\n<div class=\"clearfix\"></div>\r\n\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+1-4243256695\">(424) 325-6695</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2019-08-19 18:24:42','2019-08-19 18:24:42','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(2618,0,'2019-08-19 21:37:36','2019-08-19 21:37:36','alejandra@websitedepot.com\nAlejandra','alejandra@websitedepot.com','','publish','closed','closed','','alejandra-websitedepot-com','','','2019-08-19 21:37:36','2019-08-19 21:37:36','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2618',0,'flamingo_contact','',0),(2619,0,'2019-08-19 21:37:36','2019-08-19 21:37:36','Alejandra\nalejandra@websitedepot.com\n0000000000\n9am-11am\nTEST. Please respond if you received this email.\n34\n172.118.143.212\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\nhttps://www.drfields.com/contact/\nAugust 19, 2019\n9:37 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-41','','','2019-08-19 21:37:36','2019-08-19 21:37:36','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2619',0,'flamingo_inbound','',0),(2621,0,'2019-08-21 16:46:36','2019-08-21 16:46:36','ezekiel@websitedepot.com\nZeke','ezekiel@websitedepot.com','','publish','closed','closed','','ezekiel-websitedepot-com','','','2019-08-21 16:46:36','2019-08-21 16:46:36','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2621',0,'flamingo_contact','',0),(2622,0,'2019-08-21 16:46:36','2019-08-21 16:46:36','Zeke\nezekiel@websitedepot.com\n213-332-9255\n9am-11am\nThis is a test of contact form and email recipients\nNone.\n35\n172.118.143.212\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\nhttps://www.drfields.com/contact/\nAugust 21, 2019\n4:46 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-42','','','2019-08-21 16:46:36','2019-08-21 16:46:36','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2622',0,'flamingo_inbound','',0),(2623,8,'2019-08-21 16:59:22','2019-08-21 16:59:22','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Amniotic “Stem Cell” Therapy</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/amniotic-stem-cell-therapy/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-08-21 16:59:22','2019-08-21 16:59:22','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2624,8,'2019-08-21 18:11:06','2019-08-21 18:11:06','Content-Type: text/plain; charset = \"UTF-8\"\r\nContent-Transfer-Encoding: 8bit\r\n\r\nHello!\r\n\r\nSent by Postman 2.0.3 - https://wordpress.org/plugins/post-smtp/\r\n\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\" media=\"all\">\r\n.wporg-notification .im {\r\n	color: #888;\r\n} /* undo a GMail-inserted style */\r\n</style>\r\n</head>\r\n<body class=\"wporg-notification\">\r\n	<div style=\"background: #e8f6fe; font-family: &amp; quot; Helvetica Neue&amp;quot; , Helvetica ,Arial,sans-serif; font-size: 14px; color: #666; text-align: center; margin: 0; padding: 0\">\r\n		<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#e8f6fe\"	style=\"background: #e8f6fe; width: 100%;\">\r\n			<tbody>\r\n				<tr>\r\n					<td>\r\n						<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"padding: 0px; width: 100%;\"\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n										<div style=\"max-width: 600px; height: 400px; margin: 0 auto; overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/assets/email/poofytoo.png\');background-repeat: no-repeat;\">\r\n											<div style=\"margin:50px 0 0 300px; width:300px; font-size:2em;\">Hello! - &#20320;&#22909; - Bonjour! - &#2344;&#2350;&#2360;&#2381;&#2340;&#2375; - ¡Hola! - Ol&#225; - &#1055;&#1088;&#1080;&#1074;&#1077;&#1090;! - &#20170;&#26085;&#12399;</div>\r\n											<div style=\"text-align:right;font-size: 1.4em; color:black;margin:150px 0 0 200px;\">Sent by Postman 2.0.3\r\n												<br/><span style=\"font-size: 0.8em\"><a style=\"color:#3f73b9\" href=\"https://wordpress.org/plugins/post-smtp/\">https://wordpress.org/plugins/post-smtp/</a></span>\r\n											</div>\r\n										</div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						<br><span style=\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=\"color:#94c0dc\" href=\"http://poofytoo.com\">poofytoo.com</a> - Used with permission</span>\r\n					</td>\r\n				</tr>\r\n			</tbody>\r\n		</table>\r\n</body>\r\n</html>','Postman SMTP Test (www.drfields.com)','','private','closed','closed','','postman-smtp-test-www-drfields-com','','','2019-08-21 18:11:06','2019-08-21 18:11:06','',0,'https://www.drfields.com/postman_sent_mail/postman-smtp-test-www-drfields-com/',0,'postman_sent_mail','',0),(2625,0,'2019-08-21 18:12:00','2019-08-21 18:12:00','From: chad \nEmail: chad@websitesdepot.com\nPhone: 3237418490\n\nService:11am-1pm\n\nMessage Body:\ntest\n\nAny Other Comments:\ntest\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject','','','2019-08-21 18:12:00','2019-08-21 18:12:00','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject/',0,'postman_sent_mail','',0),(2626,0,'2019-09-04 20:11:23','2019-09-04 20:11:23','chad@websitesdepot.com\nchad','chad@websitesdepot.com','','publish','closed','closed','','chad-websitesdepot-com','','','2019-09-04 20:11:23','2019-09-04 20:11:23','',0,'https://www.drfields.com/?post_type=flamingo_contact&#038;p=2626',0,'flamingo_contact','',0),(2627,0,'2019-08-21 18:12:00','2019-08-21 18:12:00','chad\nchad@websitesdepot.com\n3237418490\n11am-1pm\ntest\ntest\n36\n208.251.181.122\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\nhttps://www.drfields.com/contact/\nAugust 21, 2019\n6:11 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-43','','','2019-08-21 18:12:00','2019-08-21 18:12:00','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2627',0,'flamingo_inbound','',0),(2628,0,'2019-08-21 18:20:18','2019-08-21 18:20:18','From: Danny Star PR Group \nEmail: ezekiel@websitesdepot.com\nPhone: 3237725204\n\nService:3pm-5pm\n\nMessage Body:\nTEST\n\nAny Other Comments:\nTEST\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-2','','','2019-08-21 18:20:18','2019-08-21 18:20:18','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-2/',0,'postman_sent_mail','',0),(2629,0,'2019-08-21 18:20:18','2019-08-21 18:20:18','ezekiel@websitesdepot.com\nDanny Star PR Group','ezekiel@websitesdepot.com','','publish','closed','closed','','ezekiel-websitesdepot-com','','','2019-08-21 18:20:18','2019-08-21 18:20:18','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2629',0,'flamingo_contact','',0),(2630,0,'2019-08-21 18:20:18','2019-08-21 18:20:18','Danny Star PR Group\nezekiel@websitesdepot.com\n3237725204\n3pm-5pm\nTEST\nTEST\n37\n172.118.143.212\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\nhttps://www.drfields.com/contact/\nAugust 21, 2019\n6:20 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-44','','','2019-08-21 18:20:18','2019-08-21 18:20:18','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2630',0,'flamingo_inbound','',0),(2631,0,'2019-08-21 22:56:06','2019-08-21 22:56:06','From: Karen Siles \nEmail: karen@primeconversions.top\nPhone: 323-129-2755\n\nService:1pm-3pm\n\nMessage Body:\nGreetings, after seeing your website I wanted to let you know that we work with businesses like yours to publish a custom marketing &amp; promotional video, featuring your business online.\r\n\r\nThe short video below shows you what this custom made video can do for your business:\r\n\r\nVisit the website below to learn more:\r\nhttps://www.primeconversions.top/success/?=drfields.com\r\n\r\nAlso, we will send you a free marketing report for your company – simply visit https://www.primeconversions.top/success/?=drfields.com\r\n \r\nThank you.\r\n\r\n-Karen\r\nAccount Manger\r\nvideoenhance1.com\r\n\r\n\r\n \r\n- This commercial message sent from PJLK Marketing LC\r\n4470 W Sunset Blvd #91359\r\nLos Angeles, CA 90027\r\n \r\nTo unsubscribe click here:\r\nhttps://primeconversions.top/out.php/?site=drfields.com\n\nAny Other Comments:\nGreetings, after seeing your website I wanted to let you know that we work with businesses like yours to publish a custom marketing &amp; promotional video, featuring your business online.\r\n\r\nThe short video below shows you what this custom made video can do for your business:\r\n\r\nVisit the website below to learn more:\r\nhttps://www.primeconversions.top/success/?=drfields.com\r\n\r\nAlso, we will send you a free marketing report for your company – simply visit https://www.primeconversions.top/success/?=drfields.com\r\n \r\nThank you.\r\n\r\n-Karen\r\nAccount Manger\r\nvideoenhance1.com\r\n\r\n\r\n \r\n- This commercial message sent from PJLK Marketing LC\r\n4470 W Sunset Blvd #91359\r\nLos Angeles, CA 90027\r\n \r\nTo unsubscribe click here:\r\nhttps://primeconversions.top/out.php/?site=drfields.com\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-3','','','2019-08-21 22:56:06','2019-08-21 22:56:06','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-3/',0,'postman_sent_mail','',0),(2632,0,'2019-08-21 22:56:06','2019-08-21 22:56:06','karen@primeconversions.top\nKaren Siles','karen@primeconversions.top','','publish','closed','closed','','karen-primeconversions-top','','','2019-08-21 22:56:06','2019-08-21 22:56:06','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2632',0,'flamingo_contact','',0),(2633,0,'2019-08-21 22:56:06','2019-08-21 22:56:06','Karen Siles\nkaren@primeconversions.top\n323-129-2755\n1pm-3pm\nGreetings, after seeing your website I wanted to let you know that we work with businesses like yours to publish a custom marketing &amp; promotional video, featuring your business online.\r\n\r\nThe short video below shows you what this custom made video can do for your business:\r\n\r\nVisit the website below to learn more:\r\nhttps://www.primeconversions.top/success/?=drfields.com\r\n\r\nAlso, we will send you a free marketing report for your company – simply visit https://www.primeconversions.top/success/?=drfields.com\r\n \r\nThank you.\r\n\r\n-Karen\r\nAccount Manger\r\nvideoenhance1.com\r\n\r\n\r\n \r\n- This commercial message sent from PJLK Marketing LC\r\n4470 W Sunset Blvd #91359\r\nLos Angeles, CA 90027\r\n \r\nTo unsubscribe click here:\r\nhttps://primeconversions.top/out.php/?site=drfields.com\nGreetings, after seeing your website I wanted to let you know that we work with businesses like yours to publish a custom marketing &amp; promotional video, featuring your business online.\r\n\r\nThe short video below shows you what this custom made video can do for your business:\r\n\r\nVisit the website below to learn more:\r\nhttps://www.primeconversions.top/success/?=drfields.com\r\n\r\nAlso, we will send you a free marketing report for your company – simply visit https://www.primeconversions.top/success/?=drfields.com\r\n \r\nThank you.\r\n\r\n-Karen\r\nAccount Manger\r\nvideoenhance1.com\r\n\r\n\r\n \r\n- This commercial message sent from PJLK Marketing LC\r\n4470 W Sunset Blvd #91359\r\nLos Angeles, CA 90027\r\n \r\nTo unsubscribe click here:\r\nhttps://primeconversions.top/out.php/?site=drfields.com\n38\n45.120.51.140\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nAugust 21, 2019\n10:56 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-45','','','2019-08-21 22:56:06','2019-08-21 22:56:06','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2633',0,'flamingo_inbound','',0),(2634,0,'2019-08-23 04:06:43','2019-08-23 04:06:43','From: George Martin \nEmail: george1@georgemartinjr.com\nPhone: (61) 4861-9780\n\nService:9am-11am\n\nMessage Body:\nWould you be interested in submitting a guest post on georgemartjr.com or possibly allowing us to submit a post to drfields.com ? Maybe you know by now that links are essential\r\nto building a brand online? If you are interested in submitting a post and obtaining a link to drfields.com , let me know and we will get it published in a speedy manner to our blog.\r\n\r\nHope to hear from you soon\r\nGeorge\n\nAny Other Comments:\nWould you be interested in submitting a guest post on georgemartjr.com or possibly allowing us to submit a post to drfields.com ? Maybe you know by now that links are essential\r\nto building a brand online? If you are interested in submitting a post and obtaining a link to drfields.com , let me know and we will get it published in a speedy manner to our blog.\r\n\r\nHope to hear from you soon\r\nGeorge\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-4','','','2019-08-23 04:06:43','2019-08-23 04:06:43','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-4/',0,'postman_sent_mail','',0),(2635,0,'2019-08-23 04:06:43','2019-08-23 04:06:43','george1@georgemartinjr.com\nGeorge Martin','george1@georgemartinjr.com','','publish','closed','closed','','george1-georgemartinjr-com','','','2019-08-23 04:06:43','2019-08-23 04:06:43','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2635',0,'flamingo_contact','',0),(2636,0,'2019-08-23 04:06:43','2019-08-23 04:06:43','George Martin\ngeorge1@georgemartinjr.com\n(61) 4861-9780\n9am-11am\nWould you be interested in submitting a guest post on georgemartjr.com or possibly allowing us to submit a post to drfields.com ? Maybe you know by now that links are essential\r\nto building a brand online? If you are interested in submitting a post and obtaining a link to drfields.com , let me know and we will get it published in a speedy manner to our blog.\r\n\r\nHope to hear from you soon\r\nGeorge\nWould you be interested in submitting a guest post on georgemartjr.com or possibly allowing us to submit a post to drfields.com ? Maybe you know by now that links are essential\r\nto building a brand online? If you are interested in submitting a post and obtaining a link to drfields.com , let me know and we will get it published in a speedy manner to our blog.\r\n\r\nHope to hear from you soon\r\nGeorge\n39\n2.38.135.103\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nAugust 23, 2019\n4:06 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-46','','','2019-08-23 04:06:43','2019-08-23 04:06:43','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2636',0,'flamingo_inbound','',0),(2637,0,'2019-08-23 12:13:35','2019-08-23 12:13:35','From: Pearline Barreiro \nEmail: pearline.barreiro@yahoo.com\nPhone: 415 39 540\n\nService:9am-11am\n\nMessage Body:\nWe will increase your Website TF in 30 days (Majestic SEO – Trust Flow) or we will refund you every cent. 100% Money back guarantee\r\n\r\nWe offer Guaranteed TF 20 and TF 30\r\n\r\nMajestic Trust Flow is the most important SEO metric since the dissapearance of Google Page Rank.\r\nEnsure confidence and trust in your website having a high Trust Flow score\r\n\r\nMore details about our service can be found here:\r\nhttps://monkeydigital.co/product/trust-flow-seo-package/\r\n\r\nBest regards\r\nMike\r\nmonkeydigital.co@gmail.com\n\nAny Other Comments:\nWe will increase your Website TF in 30 days (Majestic SEO – Trust Flow) or we will refund you every cent. 100% Money back guarantee\r\n\r\nWe offer Guaranteed TF 20 and TF 30\r\n\r\nMajestic Trust Flow is the most important SEO metric since the dissapearance of Google Page Rank.\r\nEnsure confidence and trust in your website having a high Trust Flow score\r\n\r\nMore details about our service can be found here:\r\nhttps://monkeydigital.co/product/trust-flow-seo-package/\r\n\r\nBest regards\r\nMike\r\nmonkeydigital.co@gmail.com\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-5','','','2019-08-23 12:13:35','2019-08-23 12:13:35','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-5/',0,'postman_sent_mail','',0),(2638,0,'2019-08-23 12:13:35','2019-08-23 12:13:35','pearline.barreiro@yahoo.com\nPearline Barreiro','pearline.barreiro@yahoo.com','','publish','closed','closed','','pearline-barreiro-yahoo-com','','','2019-08-23 12:13:35','2019-08-23 12:13:35','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2638',0,'flamingo_contact','',0),(2639,0,'2019-08-23 12:13:35','2019-08-23 12:13:35','Pearline Barreiro\npearline.barreiro@yahoo.com\n415 39 540\n9am-11am\nWe will increase your Website TF in 30 days (Majestic SEO – Trust Flow) or we will refund you every cent. 100% Money back guarantee\r\n\r\nWe offer Guaranteed TF 20 and TF 30\r\n\r\nMajestic Trust Flow is the most important SEO metric since the dissapearance of Google Page Rank.\r\nEnsure confidence and trust in your website having a high Trust Flow score\r\n\r\nMore details about our service can be found here:\r\nhttps://monkeydigital.co/product/trust-flow-seo-package/\r\n\r\nBest regards\r\nMike\r\nmonkeydigital.co@gmail.com\nWe will increase your Website TF in 30 days (Majestic SEO – Trust Flow) or we will refund you every cent. 100% Money back guarantee\r\n\r\nWe offer Guaranteed TF 20 and TF 30\r\n\r\nMajestic Trust Flow is the most important SEO metric since the dissapearance of Google Page Rank.\r\nEnsure confidence and trust in your website having a high Trust Flow score\r\n\r\nMore details about our service can be found here:\r\nhttps://monkeydigital.co/product/trust-flow-seo-package/\r\n\r\nBest regards\r\nMike\r\nmonkeydigital.co@gmail.com\n40\n172.111.129.38\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nAugust 23, 2019\n12:13 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-47','','','2019-08-23 12:13:35','2019-08-23 12:13:35','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2639',0,'flamingo_inbound','',0),(2640,0,'2019-08-25 10:30:12','2019-08-25 10:30:12','From: Jim Anthony \nEmail: sales@besttrafficpros.com\nPhone: 480-331-6775\n\nService:3pm-5pm\n\nMessage Body:\nHello, my name is Jim and I was just looking your website drfields.com\r\nover and thought I would message you on your contact form and offer\r\nsome help. I really like your site but I noticed you weren’t getting a\r\nlot of traffic and your Alexa ranking isn’t as strong as it could be.\r\n\r\n&gt;&gt;&gt;https://besttrafficpros.com\r\n\r\nFortunately, I may have an answer for you. I can get you 1,000’s of\r\nvisitors looking at drfields.com ready to buy your product, service or\r\nsign up for an offer and fast. Our advertising network of over 9000\r\nwebsites provides a low cost and effective online marketing solutions\r\nthat actually works. I can help your business get more online quality\r\ntraffic by advertising your business on websites that are targeted to\r\nyour specific market. The Internet is vast but you don’t have to spend\r\nhuge amounts of cash to jump start your business. I can get you 10,000\r\nhighly targeted visitors directly to your website for as little as\r\n$39.00 for a 30 day trial run.\r\n\r\n&gt;&gt;&gt;https://besttrafficpros.com\r\n\r\nIt has taken us 12 years to perfect our system and in addition to\r\nbeing exciting, it works!! We also have a special offer of 200,000\r\nTargeted visitors  spread over 60 days for a special one time charge\r\nof $299.00.\r\n\r\nIf you would like to talk personally and have specific questions, call\r\nme @ 480-331-6775 from 9am to 5pm MST. Also check out the short video\r\nhere and see how everything works.\r\n\r\nBest Regards,\r\nJim\r\nsupport@besttrafficpros.com\r\nBestTrafficPros.com\r\nhttps://besttrafficpros.com\r\n\r\nOur apologies if this reached you in error. If you\'d like to be placed on our removal list please visit here:\r\nhttps://zfrmz.com/vTN2gJq4qHlWtaZ1YFQO\n\nAny Other Comments:\nHello, my name is Jim and I was just looking your website drfields.com\r\nover and thought I would message you on your contact form and offer\r\nsome help. I really like your site but I noticed you weren’t getting a\r\nlot of traffic and your Alexa ranking isn’t as strong as it could be.\r\n\r\n&gt;&gt;&gt;https://besttrafficpros.com\r\n\r\nFortunately, I may have an answer for you. I can get you 1,000’s of\r\nvisitors looking at drfields.com ready to buy your product, service or\r\nsign up for an offer and fast. Our advertising network of over 9000\r\nwebsites provides a low cost and effective online marketing solutions\r\nthat actually works. I can help your business get more online quality\r\ntraffic by advertising your business on websites that are targeted to\r\nyour specific market. The Internet is vast but you don’t have to spend\r\nhuge amounts of cash to jump start your business. I can get you 10,000\r\nhighly targeted visitors directly to your website for as little as\r\n$39.00 for a 30 day trial run.\r\n\r\n&gt;&gt;&gt;https://besttrafficpros.com\r\n\r\nIt has taken us 12 years to perfect our system and in addition to\r\nbeing exciting, it works!! We also have a special offer of 200,000\r\nTargeted visitors  spread over 60 days for a special one time charge\r\nof $299.00.\r\n\r\nIf you would like to talk personally and have specific questions, call\r\nme @ 480-331-6775 from 9am to 5pm MST. Also check out the short video\r\nhere and see how everything works.\r\n\r\nBest Regards,\r\nJim\r\nsupport@besttrafficpros.com\r\nBestTrafficPros.com\r\nhttps://besttrafficpros.com\r\n\r\nOur apologies if this reached you in error. If you\'d like to be placed on our removal list please visit here:\r\nhttps://zfrmz.com/vTN2gJq4qHlWtaZ1YFQO\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-6','','','2019-08-25 10:30:12','2019-08-25 10:30:12','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-6/',0,'postman_sent_mail','',0),(2641,0,'2019-08-25 10:30:12','2019-08-25 10:30:12','sales@besttrafficpros.com\nJim Anthony','sales@besttrafficpros.com','','publish','closed','closed','','sales-besttrafficpros-com','','','2019-08-25 10:30:12','2019-08-25 10:30:12','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2641',0,'flamingo_contact','',0),(2642,0,'2019-08-25 10:30:12','2019-08-25 10:30:12','Jim Anthony\nsales@besttrafficpros.com\n480-331-6775\n3pm-5pm\nHello, my name is Jim and I was just looking your website drfields.com\r\nover and thought I would message you on your contact form and offer\r\nsome help. I really like your site but I noticed you weren’t getting a\r\nlot of traffic and your Alexa ranking isn’t as strong as it could be.\r\n\r\n&gt;&gt;&gt;https://besttrafficpros.com\r\n\r\nFortunately, I may have an answer for you. I can get you 1,000’s of\r\nvisitors looking at drfields.com ready to buy your product, service or\r\nsign up for an offer and fast. Our advertising network of over 9000\r\nwebsites provides a low cost and effective online marketing solutions\r\nthat actually works. I can help your business get more online quality\r\ntraffic by advertising your business on websites that are targeted to\r\nyour specific market. The Internet is vast but you don’t have to spend\r\nhuge amounts of cash to jump start your business. I can get you 10,000\r\nhighly targeted visitors directly to your website for as little as\r\n$39.00 for a 30 day trial run.\r\n\r\n&gt;&gt;&gt;https://besttrafficpros.com\r\n\r\nIt has taken us 12 years to perfect our system and in addition to\r\nbeing exciting, it works!! We also have a special offer of 200,000\r\nTargeted visitors  spread over 60 days for a special one time charge\r\nof $299.00.\r\n\r\nIf you would like to talk personally and have specific questions, call\r\nme @ 480-331-6775 from 9am to 5pm MST. Also check out the short video\r\nhere and see how everything works.\r\n\r\nBest Regards,\r\nJim\r\nsupport@besttrafficpros.com\r\nBestTrafficPros.com\r\nhttps://besttrafficpros.com\r\n\r\nOur apologies if this reached you in error. If you\'d like to be placed on our removal list please visit here:\r\nhttps://zfrmz.com/vTN2gJq4qHlWtaZ1YFQO\nHello, my name is Jim and I was just looking your website drfields.com\r\nover and thought I would message you on your contact form and offer\r\nsome help. I really like your site but I noticed you weren’t getting a\r\nlot of traffic and your Alexa ranking isn’t as strong as it could be.\r\n\r\n&gt;&gt;&gt;https://besttrafficpros.com\r\n\r\nFortunately, I may have an answer for you. I can get you 1,000’s of\r\nvisitors looking at drfields.com ready to buy your product, service or\r\nsign up for an offer and fast. Our advertising network of over 9000\r\nwebsites provides a low cost and effective online marketing solutions\r\nthat actually works. I can help your business get more online quality\r\ntraffic by advertising your business on websites that are targeted to\r\nyour specific market. The Internet is vast but you don’t have to spend\r\nhuge amounts of cash to jump start your business. I can get you 10,000\r\nhighly targeted visitors directly to your website for as little as\r\n$39.00 for a 30 day trial run.\r\n\r\n&gt;&gt;&gt;https://besttrafficpros.com\r\n\r\nIt has taken us 12 years to perfect our system and in addition to\r\nbeing exciting, it works!! We also have a special offer of 200,000\r\nTargeted visitors  spread over 60 days for a special one time charge\r\nof $299.00.\r\n\r\nIf you would like to talk personally and have specific questions, call\r\nme @ 480-331-6775 from 9am to 5pm MST. Also check out the short video\r\nhere and see how everything works.\r\n\r\nBest Regards,\r\nJim\r\nsupport@besttrafficpros.com\r\nBestTrafficPros.com\r\nhttps://besttrafficpros.com\r\n\r\nOur apologies if this reached you in error. If you\'d like to be placed on our removal list please visit here:\r\nhttps://zfrmz.com/vTN2gJq4qHlWtaZ1YFQO\n41\n62.24.109.83\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nAugust 25, 2019\n10:30 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-48','','','2019-08-25 10:30:12','2019-08-25 10:30:12','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2642',0,'flamingo_inbound','',0),(2643,0,'2019-08-26 15:01:22','2019-08-26 15:01:22','From: Diane Harrel \nEmail: ecommerce.1a@outlook.com\nPhone: 555-555-5555\n\nService:9am-11am\n\nMessage Body:\nHi,\r\n\r\nThis is Diane from DSI are you familiar with us?\r\n \r\nWe are the supplier of ready made dropshipping business websites\r\nand digital services sites. \r\n\r\nThe average markup is 300% on each product and service.\r\nYou keep the profit on every sale.\r\nWe design ready made business sites for $295 - $395 that is all we do.\r\n\r\nFree hosting permanantly, domain and social media marketing plan are included. \r\n\r\nTo see our latest available websites please visit us at https://dropshippingincome.com\r\n\r\nWe look forward to seing you there. \r\n\r\n\r\nBest,\r\nDiane\r\nDSI\n\nAny Other Comments:\nHi,\r\n\r\nThis is Diane from DSI are you familiar with us?\r\n \r\nWe are the supplier of ready made dropshipping business websites\r\nand digital services sites. \r\n\r\nThe average markup is 300% on each product and service.\r\nYou keep the profit on every sale.\r\nWe design ready made business sites for $295 - $395 that is all we do.\r\n\r\nFree hosting permanantly, domain and social media marketing plan are included. \r\n\r\nTo see our latest available websites please visit us at https://dropshippingincome.com\r\n\r\nWe look forward to seing you there. \r\n\r\n\r\nBest,\r\nDiane\r\nDSI\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-7','','','2019-08-26 15:01:22','2019-08-26 15:01:22','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-7/',0,'postman_sent_mail','',0),(2644,0,'2019-08-26 15:01:22','2019-08-26 15:01:22','ecommerce.1a@outlook.com\nDiane Harrel','ecommerce.1a@outlook.com','','publish','closed','closed','','ecommerce-1a-outlook-com','','','2019-08-26 15:01:22','2019-08-26 15:01:22','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2644',0,'flamingo_contact','',0),(2645,0,'2019-08-26 15:01:22','2019-08-26 15:01:22','Diane Harrel\necommerce.1a@outlook.com\n555-555-5555\n9am-11am\nHi,\r\n\r\nThis is Diane from DSI are you familiar with us?\r\n \r\nWe are the supplier of ready made dropshipping business websites\r\nand digital services sites. \r\n\r\nThe average markup is 300% on each product and service.\r\nYou keep the profit on every sale.\r\nWe design ready made business sites for $295 - $395 that is all we do.\r\n\r\nFree hosting permanantly, domain and social media marketing plan are included. \r\n\r\nTo see our latest available websites please visit us at https://dropshippingincome.com\r\n\r\nWe look forward to seing you there. \r\n\r\n\r\nBest,\r\nDiane\r\nDSI\nHi,\r\n\r\nThis is Diane from DSI are you familiar with us?\r\n \r\nWe are the supplier of ready made dropshipping business websites\r\nand digital services sites. \r\n\r\nThe average markup is 300% on each product and service.\r\nYou keep the profit on every sale.\r\nWe design ready made business sites for $295 - $395 that is all we do.\r\n\r\nFree hosting permanantly, domain and social media marketing plan are included. \r\n\r\nTo see our latest available websites please visit us at https://dropshippingincome.com\r\n\r\nWe look forward to seing you there. \r\n\r\n\r\nBest,\r\nDiane\r\nDSI\n42\n104.223.92.138\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nAugust 26, 2019\n3:01 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-49','','','2019-08-26 15:01:22','2019-08-26 15:01:22','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2645',0,'flamingo_inbound','',0),(2646,0,'2019-08-26 16:29:39','2019-08-26 16:29:39','From: dennise e catto \nEmail: dennisecatto@yahoo.com\nPhone: 8182510473\n\nService:9am-11am\n\nMessage Body:\nI have 3 buldged discs in my neck. with pain in the a.m. and some intermittent numbness in the arm. \r\n\r\nI have spoken to Dr Fields before regarding my issues and wanted to get his opinion.  Also my office number is 805-921-3213\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-8','','','2019-08-26 16:29:39','2019-08-26 16:29:39','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-8/',0,'postman_sent_mail','',0),(2647,0,'2019-08-26 16:29:39','2019-08-26 16:29:39','dennisecatto@yahoo.com\ndennise e catto','dennisecatto@yahoo.com','','publish','closed','closed','','dennisecatto-yahoo-com','','','2019-08-26 16:29:39','2019-08-26 16:29:39','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2647',0,'flamingo_contact','',0),(2648,0,'2019-08-26 16:29:39','2019-08-26 16:29:39','dennise e catto\ndennisecatto@yahoo.com\n8182510473\n9am-11am\nI have 3 buldged discs in my neck. with pain in the a.m. and some intermittent numbness in the arm. \r\n\r\nI have spoken to Dr Fields before regarding my issues and wanted to get his opinion.  Also my office number is 805-921-3213\n43\n199.76.61.202\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\nhttps://www.drfields.com/contact/\nAugust 26, 2019\n4:29 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-50','','','2019-08-26 16:29:39','2019-08-26 16:29:39','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2648',0,'flamingo_inbound','',0),(2650,8,'2019-08-27 05:26:26','2019-08-27 05:26:26','[caption id=\"attachment_4075\" align=\"alignleft\" width=\"539\"]<img class=\"wp-image-4075 \" src=\"https://www.drfields.com/wp-content/uploads/2019/08/knee-injury-500x500.png\" alt=\"Knee Injury Treatment\" width=\"539\" height=\"539\" /> <strong>Chondromalacia Patella Can Be Treated with Prolotherapy</strong>[/caption]\r\n\r\n<span style=\"font-weight: 400;\">In Chondromalacia Patella, the kneecap tracks abnormally making everyday activities difficult, interfering with sports, and causing knee pain. The condition is common in runners and athletes, especially in activities that involve a lot of running. And it can affect young, healthy individuals, as well as older adults. Chondromalacia patella is one of the causes of patellofemoral pain syndrome. </span>\r\n<h4><b>What Causes Chondromalacia Patella?</b></h4>\r\n<span style=\"font-weight: 400;\">Chondro means cartilage, malacia means breakdown, and patella means knee cap. So, when someone suffers from this condition, they will have cartilage breakdown and fraying underneath the knee cap. </span>\r\n\r\n<span style=\"font-weight: 400;\">Excessive, abnormal movement or hypermobility of the knee is considered a contributing factor in the development of chondromalacia patella</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<span style=\"font-weight: 400;\">Normally, the patella slides easily along the smooth surface of the patellar groove with bending and straightening of the knee. But with chondromalacia patella, the cartilage becomes rough and wears away.</span>\r\n\r\n&nbsp;\r\n<h4>Symptoms of Chondromalacia Patella</h4>\r\n<span style=\"font-weight: 400;\">The symptoms of chondromalacia patella include pain around the kneecap and clicking, cracking or popping sounds. And these tend to exacerbate with activity and worsen over time.</span>\r\n\r\n<span style=\"font-weight: 400;\">The kneecap ends up scraping the bones underneath the knee when the person moves the knee. The patella, or kneecap, is the largest “sesamoid” bone in the body, and it plays a crucial role in the bending and straightening of the knee. When there is a problem with the patella, the knee joint becomes unstable and movement becomes difficult and/or painful.</span>\r\n<h4>Chondromalacia Patella and Patellar Pain Syndrome</h4>\r\n<span style=\"font-weight: 400;\">Chondromalacia Patella is a type of patellar pain syndrome. And these syndromes often involve problems and injury of other soft tissue structures.</span> <span style=\"font-weight: 400;\">Patellar pain syndromes are often due to ligament injuries, meniscal tears, bony aberrations, muscle imbalances, or a combination of these conditions. </span>\r\n\r\n<span style=\"font-weight: 400;\">Patellar pain syndromes can be caused by trauma. But they are primarily due to anatomic or bio-mechanical conditions that are prone to “failure\" either in a bone or soft-tissue component. That means there may be injured ligaments or injured tendons, which are actually part of the underlying problem and adding to the tracking issue. If these other soft tissue injuries are not treated, the knee will remain unstable, creating a negative cycle and resulting in significant impairment.</span> <span style=\"font-weight: 400;\"> </span>\r\n<h4><b>What Are the Usual Treatments?</b></h4>\r\n<span style=\"font-weight: 400;\">Taping, strengthening exercises, and stretching are typical treatments for Chondromalacia Patella. These treatments may work for a short period of time. But generally do not cure the condition. Regenerative Orthopedics, on the other hand, can improve patellar tracking and relieve the symptoms of Chondromalacia Patella.</span>\r\n\r\n<span style=\"font-weight: 400;\">Physical therapy, to strengthen the quadriceps may be an important treatment component in Chondromalacia Patella. However, if the quadriceps tendon or other soft tissue, like ligaments are injured, then they need to be treated, because physical therapy success will otherwise be limited. </span>\r\n\r\n<span style=\"font-weight: 400;\">Let’s explain further.  If the soft tissue component is not treated, the joint will remain unstable, the abnormal movement will continue, the negative cycle is promoted, and the impairment and altered tracking of the patella</span><span style=\"font-weight: 400;\"> will persist.</span><span style=\"font-weight: 400;\"> Physical therapy, patellar taping, orthotics, ice applications, and soft braces do not address the underlying issues of joint instability caused by the ligament injury, tendon injury, or meniscal tears.  </span>\r\n<h4><em>And Surgery?</em></h4>\r\n<span style=\"font-weight: 400;\">Surgery is becoming more and more common for various knee conditions, and in some cases may be indicated. But unless a person is dealing with a fracture or a complete ligament rupture, a more conservative option should be considered.</span>\r\n<h4>Regenerative Orthopedics Works Even After You\'ve Tried Many Other Treatments for Chondromalacia Patella</h4>\r\n<span style=\"font-weight: 400;\">It is very possible that you have already tried various treatments, and even employed them over and over. But they continue to fall short in bringing you the relief and return to function and sport that you desire. Regenerative Orthopedics, on the other hand, can promote non-surgical repair of the ligament, tendon, and meniscus. And have been utilized with positive outcomes for patellar pain syndromes like Chondromalacia Patella.</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is a therapeutic option that can promote the repair of injured or degenerated soft tissue. The treatment boosts the physiologic healing processes of the joint, thereby ameliorating joint instability and potentially all of the related conditions above. Stem Cell Therapy, PRP, and Prolotherapy are regenerative techniques well suited for soft tissue injury of the knee joint. And they have been used to effectively treat a wide variety of knee pain conditions, including Chondromalacia Patella.</span>\r\n\r\n<span style=\"font-weight: 400;\"> Soft tissue injuries of the knee often have an unsatisfactory outcome due to incomplete healing and repair. Regenerative Orthopedics is a treatment technique that has been explored for conditions that require soft tissue healing, with the goal of restoring normal ligament and tendon function.</span> <span style=\"font-weight: 400;\"> </span><span style=\"font-weight: 400;\">Regenerative Orthopedics is a conservative treatment that reduces Chondromalacia Patella symptoms, improves function, and restores normal tracking of the patella, returning you quickly to the sport and activities you enjoy.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Chondromalacia Patella Treated Successfully','','publish','open','closed','','treating-chondromalacia-patella-successfully','','','2020-09-02 18:40:10','2020-09-02 18:40:10','',0,'https://www.drfields.com/?p=2650',0,'post','',0),(2651,8,'2019-08-27 05:26:26','2019-08-27 05:26:26','<span style=\"font-weight: 400;\">In Chondromalacia Patella, the kneecap tracks abnormally making everyday activities difficult, interfering with sports, and causing knee pain. The condition is common in runners and athletes, especially in activities that involve a lot of running, and can affect young, healthy individuals, as well as older adults. Chondromalacia patella is one of the causes of patellofemoral pain syndrome. </span>\r\n\r\n<b>What Causes Chondromalacia Patella?</b>\r\n\r\n<span style=\"font-weight: 400;\">Chondro means cartilage, malacia means breakdown, and patella means knee cap. So, when someone suffers from this condition, they will have cartilage breakdown and fraying underneath the knee cap. Excessive, abnormal movement or hypermobility of the knee is considered a contributing factor in the development of chondromalacia patella</span><span style=\"font-weight: 400;\">.</span> <span style=\"font-weight: 400;\">Normally, the patella slides easily along the smooth surface of the patellar groove with bending and straightening of the knee, but with chondromalacia patella, the cartilage becomes rough and wears away.</span><span style=\"font-weight: 400;\"> The symptoms of chondromalacia patella include pain around the kneecap and clicking, cracking or popping sounds, which tend to exacerbate with activity and worsen over time.</span>\r\n\r\n<span style=\"font-weight: 400;\">The kneecap ends up scraping the bones underneath the knee when the person moves the knee. The patella, or kneecap, is the largest “sesamoid” bone in the body, and it plays a crucial role in the bending and straightening of the knee. When there is a problem with the patella, the knee joint becomes unstable and movement becomes difficult and/or painful.</span>\r\n\r\n<span style=\"font-weight: 400;\">Chondromalacia Patella is a type of patellar pain syndrome, and these syndromes often involve problems and injury of other soft tissue structures.</span> <span style=\"font-weight: 400;\">Patellar pain syndromes are often due to ligament injuries, meniscal tears, bony aberrations, muscle imbalances, or a combination of these conditions. Patellar pain syndromes can be caused by trauma, but are primarily due to anatomic or biomechanical conditions that are prone to “failure’ either in a bone or soft-tissue component. That means there may be injured ligaments or injured tendons, which are actually part of the underlying problem and adding to the tracking issue. If these other soft tissue injuries are not treated, the knee will remain unstable, creating a negative cycle and resulting in significant impairment.</span> <span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>What are the usual treatments?</b>\r\n\r\n<span style=\"font-weight: 400;\">Taping, strengthening exercises, and stretching are typical treatments for Chondromalacia Patella, which may work for a short period of time, but generally do not cure the condition. Regenerative Orthopedics, on the other hand, can improve patellar tracking and relieve the symptoms of Chondromalacia Patella.</span>\r\n\r\n<span style=\"font-weight: 400;\">Surgery is becoming more and more common for various knee conditions, and in some cases may be indicated. But unless a person is dealing with a fracture or a complete ligament rupture, a more conservative option should be considered.</span>\r\n\r\n<span style=\"font-weight: 400;\">Physical therapy, to strengthen the quadriceps may be an important treatment component in Chondromalacia Patella. However, if the quadriceps tendon or other soft tissue, like ligaments are injured, then they need to be treated, because physical therapy success will otherwise be limited. Let’s explain further.  If the soft tissue component is not treated, the joint will remain unstable, the abnormal movement will continue, the negative cycle is promoted, and the impairment and altered tracking of the patella</span><span style=\"font-weight: 400;\"> will persist.</span><span style=\"font-weight: 400;\"> Physical therapy, patellar taping, orthotics, ice applications, and soft braces do not address the underlying issues of joint instability caused by the ligament injury, tendon injury, or meniscal tears.  </span>\r\n\r\n<span style=\"font-weight: 400;\">It is very possible that you have already tried various treatments, and even employed them over and over, but they continue to fall short in bringing you the relief and return to function and sport that you desire. Regenerative Orthopedics, on the other hand, can promote nonsurgical repair of the ligament, tendon, and meniscus, and have been utilized with positive outcomes for patellar pain syndromes like Chondromalacia Patella.</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is a therapeutic option that can promote the repair of injured or degenerated soft tissue by boosting the physiologic healing processes of the joint, thereby ameliorating joint instability and potentially all of the related conditions above. Stem Cell Therapy, PRP, and Prolotherapy are regenerative techniques well suited for soft tissue injury of the knee joint, and have been used to effectively treat a wide variety of knee pain conditions, including Chondromalacia Patella. Soft tissue injuries of the knee often have an unsatisfactory outcome due to incomplete healing and repair. Regenerative Orthopedics is a treatment technique that has been explored for conditions that require soft tissue healing, with the goal of restoring normal ligament and tendon function.</span> <span style=\"font-weight: 400;\"> </span><span style=\"font-weight: 400;\">Regenerative Orthopedics is a conservative treatment that reduces Chondromalacia Patella symptoms, improves function, and restores normal tracking of the patella, returning you quickly to the sport and activities you enjoy.</span><span style=\"font-weight: 400;\"> </span>','Treating Chondromalacia Patella Successfully','','inherit','closed','closed','','2650-revision-v1','','','2019-08-27 05:26:26','2019-08-27 05:26:26','',2650,'https://www.drfields.com/uncategorized/2650-revision-v1/',0,'revision','',0),(2652,8,'2019-08-27 05:27:11','2019-08-27 05:27:11','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Treating Chondromalacia Patella Successfully</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/treating-chondromalacia-patella-successfully/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-08-27 05:27:11','2019-08-27 05:27:11','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2653,0,'2019-08-27 12:57:06','2019-08-27 12:57:06','From: Edwina Hambleton \nEmail: edwina.hambleton@gmail.com\nPhone: 51 901 08 84\n\nService:11am-1pm\n\nMessage Body:\nHi\r\n\r\nI don\'t want to ruin your day,\r\nbut I have a few pictures of your employees, http://item.pictures/employees\r\nI don\'t think they are doing a good job.\r\n\r\nRegards\r\n\r\n \"Sent from my iPhone\"\n\nAny Other Comments:\nHi\r\n\r\nI don\'t want to ruin your day,\r\nbut I have a few pictures of your employees, http://item.pictures/employees\r\nI don\'t think they are doing a good job.\r\n\r\nYours truly\r\n\r\n \"Sent from my iPhone\"\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-9','','','2019-08-27 12:57:06','2019-08-27 12:57:06','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-9/',0,'postman_sent_mail','',0),(2654,0,'2019-08-27 12:57:06','2019-08-27 12:57:06','edwina.hambleton@gmail.com\nEdwina Hambleton','edwina.hambleton@gmail.com','','publish','closed','closed','','edwina-hambleton-gmail-com','','','2019-08-27 12:57:06','2019-08-27 12:57:06','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2654',0,'flamingo_contact','',0),(2655,0,'2019-08-27 12:57:06','2019-08-27 12:57:06','Edwina Hambleton\nedwina.hambleton@gmail.com\n51 901 08 84\n11am-1pm\nHi\r\n\r\nI don\'t want to ruin your day,\r\nbut I have a few pictures of your employees, http://item.pictures/employees\r\nI don\'t think they are doing a good job.\r\n\r\nRegards\r\n\r\n \"Sent from my iPhone\"\nHi\r\n\r\nI don\'t want to ruin your day,\r\nbut I have a few pictures of your employees, http://item.pictures/employees\r\nI don\'t think they are doing a good job.\r\n\r\nYours truly\r\n\r\n \"Sent from my iPhone\"\n44\n111.223.3.83\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nAugust 27, 2019\n12:57 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-51','','','2019-08-27 12:57:06','2019-08-27 12:57:06','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2655',0,'flamingo_inbound','',0),(2656,0,'2019-08-27 14:29:07','2019-08-27 14:29:07','From: Emmanuel Myles \nEmail: noreply@thewordpressclub6874.space\nPhone: (08) 8314 4686\n\nService:11am-1pm\n\nMessage Body:\nHello,\r\n\r\nAre you currently utilizing Wordpress/Woocommerce or maybe do you actually want to implement it later on ? We offer much more than 2500 premium plugins along with themes totally free to download : http://shriink.xyz/tKDHy\r\n\r\nThanks,\r\n\r\nEmmanuel\n\nAny Other Comments:\nHi,\r\n\r\nAre you presently operating Wordpress/Woocommerce or do you plan to use it as time goes by ? We offer over 2500 premium plugins and themes absolutely free to download : http://shriink.xyz/tKDHy\r\n\r\nRegards,\r\n\r\nEmmanuel\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-10','','','2019-08-27 14:29:07','2019-08-27 14:29:07','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-10/',0,'postman_sent_mail','',0),(2657,0,'2019-08-27 14:29:07','2019-08-27 14:29:07','noreply@thewordpressclub6874.space\nEmmanuel Myles','noreply@thewordpressclub6874.space','','publish','closed','closed','','noreply-thewordpressclub6874-space','','','2019-08-27 14:29:07','2019-08-27 14:29:07','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2657',0,'flamingo_contact','',0),(2658,0,'2019-08-27 14:29:07','2019-08-27 14:29:07','Emmanuel Myles\nnoreply@thewordpressclub6874.space\n(08) 8314 4686\n11am-1pm\nHello,\r\n\r\nAre you currently utilizing Wordpress/Woocommerce or maybe do you actually want to implement it later on ? We offer much more than 2500 premium plugins along with themes totally free to download : http://shriink.xyz/tKDHy\r\n\r\nThanks,\r\n\r\nEmmanuel\nHi,\r\n\r\nAre you presently operating Wordpress/Woocommerce or do you plan to use it as time goes by ? We offer over 2500 premium plugins and themes absolutely free to download : http://shriink.xyz/tKDHy\r\n\r\nRegards,\r\n\r\nEmmanuel\n45\n68.65.221.152\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nAugust 27, 2019\n2:29 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-52','','','2019-08-27 14:29:07','2019-08-27 14:29:07','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2658',0,'flamingo_inbound','',0),(2659,0,'2019-08-28 19:34:55','2019-08-28 19:34:55','From: Joelle Osias \nEmail: dr.joelle@gmail.com\nPhone: 6504448804\n\nService:9am-11am\n\nMessage Body:\nWant to refer my son. He has knee pain and partial patellar tendon tear.  Interested in prolo therapy, prp.\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-11','','','2019-08-28 19:34:55','2019-08-28 19:34:55','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-11/',0,'postman_sent_mail','',0),(2660,0,'2019-08-28 19:34:55','2019-08-28 19:34:55','dr.joelle@gmail.com\nJoelle Osias','dr.joelle@gmail.com','','publish','closed','closed','','dr-joelle-gmail-com','','','2019-08-28 19:34:55','2019-08-28 19:34:55','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2660',0,'flamingo_contact','',0),(2661,0,'2019-08-28 19:34:55','2019-08-28 19:34:55','Joelle Osias\ndr.joelle@gmail.com\n6504448804\n9am-11am\nWant to refer my son. He has knee pain and partial patellar tendon tear.  Interested in prolo therapy, prp.\n46\n5.38.69.208\nMozilla/5.0 (iPhone; CPU iPhone OS 12_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/76.0.3809.123 Mobile/15E148 Safari/605.1\nhttps://www.drfields.com/contact/\nAugust 28, 2019\n7:34 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-53','','','2019-08-28 19:34:55','2019-08-28 19:34:55','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2661',0,'flamingo_inbound','',0),(2662,0,'2019-08-28 22:28:19','2019-08-28 22:28:19','From: Ella \nEmail: Formato87881@outlook.com\nPhone: (219) 477-0619\n\nService:11am-1pm\n\nMessage Body:\nDo you have any Facebook page,YouTube video, Instagram profile or simply a Website? Do you want to get more likes/fans,followers,views or votes fast. We can promote and increase your social media presence affoardably and fast. \r\n \r\nPackages: \r\n \r\n1) 4,000 Facebook Fans/Likes($99)    = Order at:- https://reputationbunker.com/facebook.html \r\n2) 25,000 YouTube Views($50)         = Order at:- https://reputationbunker.com/ytviews.html \r\n3) 1,000 Instagram Followers($30)    = Order at:- https://reputationbunker.com/instagram.html \r\n \r\n \r\nYou can also order smaller or bigger package from our official website. \r\n \r\nDon\'t reply to this mail.We don\'t monitor inbox. \r\n \r\nThank You \r\n \r\n \r\nNote: - If this is not your interest, don\'t worry, we will not email you again.\n\nAny Other Comments:\nDo you have any Facebook page,YouTube video, Instagram profile or simply a Website? Do you want to get more likes/fans,followers,views or votes fast. We can promote and increase your social media presence affoardably and fast. \r\n \r\nPackages: \r\n \r\n1) 4,000 Facebook Fans/Likes($99)    = Order at:- https://reputationbunker.com/facebook.html \r\n2) 25,000 YouTube Views($50)         = Order at:- https://reputationbunker.com/ytviews.html \r\n3) 1,000 Instagram Followers($30)    = Order at:- https://reputationbunker.com/instagram.html \r\n \r\n \r\nYou can also order smaller or bigger package from our official website. \r\n \r\nDon\'t reply to this mail.We don\'t monitor inbox. \r\n \r\nThank You \r\n \r\n \r\nNote: - If this is not your interest, don\'t worry, we will not email you again.\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-12','','','2019-08-28 22:28:19','2019-08-28 22:28:19','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-12/',0,'postman_sent_mail','',0),(2663,0,'2019-08-28 22:28:19','2019-08-28 22:28:19','Formato87881@outlook.com\nElla','Formato87881@outlook.com','','publish','closed','closed','','formato87881-outlook-com','','','2019-08-28 22:28:19','2019-08-28 22:28:19','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2663',0,'flamingo_contact','',0),(2664,0,'2019-08-28 22:28:19','2019-08-28 22:28:19','Ella\nFormato87881@outlook.com\n(219) 477-0619\n11am-1pm\nDo you have any Facebook page,YouTube video, Instagram profile or simply a Website? Do you want to get more likes/fans,followers,views or votes fast. We can promote and increase your social media presence affoardably and fast. \r\n \r\nPackages: \r\n \r\n1) 4,000 Facebook Fans/Likes($99)    = Order at:- https://reputationbunker.com/facebook.html \r\n2) 25,000 YouTube Views($50)         = Order at:- https://reputationbunker.com/ytviews.html \r\n3) 1,000 Instagram Followers($30)    = Order at:- https://reputationbunker.com/instagram.html \r\n \r\n \r\nYou can also order smaller or bigger package from our official website. \r\n \r\nDon\'t reply to this mail.We don\'t monitor inbox. \r\n \r\nThank You \r\n \r\n \r\nNote: - If this is not your interest, don\'t worry, we will not email you again.\nDo you have any Facebook page,YouTube video, Instagram profile or simply a Website? Do you want to get more likes/fans,followers,views or votes fast. We can promote and increase your social media presence affoardably and fast. \r\n \r\nPackages: \r\n \r\n1) 4,000 Facebook Fans/Likes($99)    = Order at:- https://reputationbunker.com/facebook.html \r\n2) 25,000 YouTube Views($50)         = Order at:- https://reputationbunker.com/ytviews.html \r\n3) 1,000 Instagram Followers($30)    = Order at:- https://reputationbunker.com/instagram.html \r\n \r\n \r\nYou can also order smaller or bigger package from our official website. \r\n \r\nDon\'t reply to this mail.We don\'t monitor inbox. \r\n \r\nThank You \r\n \r\n \r\nNote: - If this is not your interest, don\'t worry, we will not email you again.\nSend\n47\n216.169.110.198\nMozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36\nhttps://www.drfields.com/contact/\nAugust 28, 2019\n10:28 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-54','','','2019-08-28 22:28:19','2019-08-28 22:28:19','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2664',0,'flamingo_inbound','',0),(2665,8,'2019-08-30 22:24:05','2019-08-30 22:24:05','<h4>Regenerative Orthopedics for Chronic, Persistent Hip Pain</h4>\r\n<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen<sup>®</sup> is to avoid hip replacement surgery. And the pain is usually due to damage caused by hip arthritis. The majority of these folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.</span>\r\n\r\n<span style=\"font-weight: 400;\">The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement. But they don’t want that and are looking for a way to avoid the surgery! That\'s why they choose Regenerative Orthopedics. The treatment gives them a non-surgical option and an alternative to hip replacement surgery.</span>\r\n<h4><b>Hip Pain and Arthritis</b></h4>\r\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. Also, the hip joint has a ring of cartilage that seals the ball and socket called the labrum. And the labrum helps to provide movement between the leg and pelvis. </span>\r\n\r\n<span style=\"font-weight: 400;\">Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities. And the symptoms can make even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4><b>What Causes Hip Pain?</b></h4>\r\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. And other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\r\n<h4><em><span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! </span></em></h4>\r\n<span style=\"font-weight: 400;\">At some point the hip joint becomes destabilized by injury. Most of our patients can recall some type of trauma to the hip. Or even a previous hip procedure. And traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. </span>\r\n\r\n<span style=\"font-weight: 400;\">And when the abnormal motion is not repaired and stabilized, the arthritis cycle is encouraged. </span><span style=\"font-weight: 400;\">Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion. And that destroys the hip joint further.  </span>\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4><strong>How does surgery cause arthritis to worsen? </strong></h4>\r\n<span style=\"font-weight: 400;\">In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip.  Just by inserting the large arthroscope into the hip stretches and weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability. And later, the development of arthritis. Surgeons may recommend surgery for all of these conditions.</span>\r\n\r\n<span style=\"font-weight: 400;\">Consider non-surgical Regenerative Orthopedics prior to opting for surgery. </span>\r\n<h4><b>Regenerative Orthopedics Treats Chronic Hip Pain</b></h4>\r\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication. </span>\r\n\r\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures. This stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited. And since this is the material in which ligaments and tendons are made, the result is tightened and stronger soft tissue structures.</span>\r\n<h4><strong>Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. </strong></h4>\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. And in cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  </span>\r\n\r\n<span style=\"font-weight: 400;\">When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\r\n<h4><b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b></h4>\r\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen<sup>®</sup> at </span><span style=\"font-weight: 400;\">[phone]</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Hip Pain Solutions','','publish','open','closed','','chronic-hip-pain','','','2021-01-26 23:30:53','2021-01-26 23:30:53','',0,'https://www.drfields.com/?p=2665',0,'post','',0),(2666,8,'2019-08-30 22:24:05','2019-08-30 22:24:05','<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen is to avoid hip replacement surgery, which is usually due to damage caused by hip arthritis. The majority of folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.  The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement, but they don’t want that and are looking for a way to avoid the surgery! Regenerative Orthopedics gives them a non-surgical option and an alternative to hip replacement surgery.</span>\r\n\r\n<b>The Hip and Arthritis</b>\r\n\r\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. The hip joint has a ring of cartilage that seals the ball and socket called the labrum, which helps to provide movement between the leg and pelvis. Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities, and sometimes makes even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\r\n\r\n<b>What Causes Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. Other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! At some point the hip joint was destabilized by injury. Most of our patients can recall some type of trauma to the hip, or even a previous hip procedure. Traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. Left unrepaired, this instability in the hip joint encourages the arthritis cycle. Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion, which destroys the hip joint further.  How does surgery cause arthritis to worsen? In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip, just to get the large arthroscope into the hip, and the stretching weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability, and later, the development of arthritis. Surgeons may recommend surgery for all of these conditions. But conservative, non-surgical options, including Regenerative Orthopedics, should be considered prior to opting for surgery. </span>\r\n\r\n<b>How Regenerative Orthopedics Is Used To Treat Chronic Hip Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication.</span>\r\n\r\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures, which stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited, and since this is the material in which ligaments and tendons are made, the result is tighten and stronger soft tissue structures.</span>\r\n\r\n<span style=\"font-weight: 400;\">Our goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. In cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\r\n\r\n<b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen at </span><span style=\"font-weight: 400;\">(310) 453-1234</span><span style=\"font-weight: 400;\">.</span>','Regenerative Orthopedics for Chronic, Persistent Hip Pain','','inherit','closed','closed','','2665-revision-v1','','','2019-08-30 22:24:05','2019-08-30 22:24:05','',2665,'https://www.drfields.com/uncategorized/2665-revision-v1/',0,'revision','',0),(2668,8,'2019-10-18 08:53:22','2019-10-18 08:53:22','<h4>Regenerative Orthopedics for Chronic, Persistent Hip Pain</h4>\n<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen is to avoid hip replacement surgery, which is usually due to damage caused by hip arthritis. The majority of folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.  The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement, but they don’t want that and are looking for a way to avoid the surgery! Regenerative Orthopedics gives them a non-surgical option and an alternative to hip replacement surgery.</span>\n\n<b>The Hip and Arthritis</b>\n\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. The hip joint has a ring of cartilage that seals the ball and socket called the labrum, which helps to provide movement between the leg and pelvis. Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities, and sometimes makes even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\n\n<b>What Causes Hip Pain?</b>\n\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. Other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\n\n<span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! At some point the hip joint was destabilized by injury. Most of our patients can recall some type of trauma to the hip, or even a previous hip procedure. Traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. Left unrepaired, this instability in the hip joint encourages the arthritis cycle. Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion, which destroys the hip joint further.  How does surgery cause arthritis to worsen? In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip, just to get the large arthroscope into the hip, and the stretching weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\n\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability, and later, the development of arthritis. Surgeons may recommend surgery for all of these conditions. But conservative, non-surgical options, including Regenerative Orthopedics, should be considered prior to opting for surgery. </span>\n\n<b>How Regenerative Orthopedics Is Used To Treat Chronic Hip Pain</b>\n\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication.</span>\n\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\n\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures, which stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited, and since this is the material in which ligaments and tendons are made, the result is tighten and stronger soft tissue structures.</span>\n\n<span style=\"font-weight: 400;\">Our goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. In cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\n\n<b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b>\n\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen at </span><span style=\"font-weight: 400;\">[]</span><span style=\"font-weight: 400;\">.</span>','Chronic Hip Pain','','inherit','closed','closed','','2665-autosave-v1','','','2019-10-18 08:53:22','2019-10-18 08:53:22','',2665,'https://www.drfields.com/uncategorized/2665-autosave-v1/',0,'revision','',0),(2669,8,'2019-08-30 22:33:44','2019-08-30 22:33:44','<h4>Regenerative Orthopedics for Chronic, Persistent Hip Pain</h4>\r\n<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen is to avoid hip replacement surgery, which is usually due to damage caused by hip arthritis. The majority of folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.  The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement, but they don’t want that and are looking for a way to avoid the surgery! Regenerative Orthopedics gives them a non-surgical option and an alternative to hip replacement surgery.</span>\r\n\r\n<b>The Hip and Arthritis</b>\r\n\r\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. The hip joint has a ring of cartilage that seals the ball and socket called the labrum, which helps to provide movement between the leg and pelvis. Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities, and sometimes makes even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\r\n\r\n<b>What Causes Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. Other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! At some point the hip joint was destabilized by injury. Most of our patients can recall some type of trauma to the hip, or even a previous hip procedure. Traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. Left unrepaired, this instability in the hip joint encourages the arthritis cycle. Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion, which destroys the hip joint further.  How does surgery cause arthritis to worsen? In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip, just to get the large arthroscope into the hip, and the stretching weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability, and later, the development of arthritis. Surgeons may recommend surgery for all of these conditions. But conservative, non-surgical options, including Regenerative Orthopedics, should be considered prior to opting for surgery. </span>\r\n\r\n<b>How Regenerative Orthopedics Is Used To Treat Chronic Hip Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication.</span>\r\n\r\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures, which stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited, and since this is the material in which ligaments and tendons are made, the result is tighten and stronger soft tissue structures.</span>\r\n\r\n<span style=\"font-weight: 400;\">Our goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. In cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\r\n\r\n<b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen at </span><span style=\"font-weight: 400;\">(310) 453-1234</span><span style=\"font-weight: 400;\">.</span>','Chronic Hip Pain','','inherit','closed','closed','','2665-revision-v1','','','2019-08-30 22:33:44','2019-08-30 22:33:44','',2665,'https://www.drfields.com/uncategorized/2665-revision-v1/',0,'revision','',0),(2670,8,'2022-12-02 06:01:39','2019-08-30 22:37:24',' ','','','publish','closed','closed','','2670','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=2670',46,'nav_menu_item','',0),(2671,0,'2019-08-31 14:29:15','2019-08-31 14:29:15','From: The Rudie\'s \nEmail: john.onlineleadsandtraffic.com@gmail.com\nPhone: 4044047812\n\nService:3pm-5pm\n\nMessage Body:\nHelping families make money is what this 32 year old company does.\n\nhttps://www.DidYouHearAboutThis.net\n\nIf you have a website, they increase your sales.\n\nIf you don\'t have a website, you can earn a living simply by referring people to websites.\n\nEither way, you win.\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-13','','','2019-08-31 14:29:15','2019-08-31 14:29:15','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-13/',0,'postman_sent_mail','',0),(2672,0,'2019-08-31 14:29:15','2019-08-31 14:29:15','john.onlineleadsandtraffic.com@gmail.com\nThe Rudie\'s','john.onlineleadsandtraffic.com@gmail.com','','publish','closed','closed','','john-onlineleadsandtraffic-com-gmail-com','','','2019-08-31 14:29:15','2019-08-31 14:29:15','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2672',0,'flamingo_contact','',0),(2673,0,'2019-08-31 14:29:15','2019-08-31 14:29:15','The Rudie\'s\njohn.onlineleadsandtraffic.com@gmail.com\n4044047812\n3pm-5pm\nHelping families make money is what this 32 year old company does.\n\nhttps://www.DidYouHearAboutThis.net\n\nIf you have a website, they increase your sales.\n\nIf you don\'t have a website, you can earn a living simply by referring people to websites.\n\nEither way, you win.\n48\n204.246.159.170\nMozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1 Safari/605.1.15\nhttps://www.drfields.com/contact/\nAugust 31, 2019\n2:29 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-55','','','2019-08-31 14:29:15','2019-08-31 14:29:15','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2673',0,'flamingo_inbound','',0),(2674,0,'2019-08-31 17:00:10','2019-08-31 17:00:10','From: Keesha Peak \nEmail: noreplymonkeydigital@gmail.com\nPhone: 06578 93 62 32\n\nService:3pm-5pm\n\nMessage Body:\nFastest and Most Effective Way to Dominate the Web. Dominate search engines and be on the top position for Google. EDU backlinks are considered more trustworthy therefore are harder to get\r\n\r\nYou will have backlinks on old EDU pages with high PA values, Actual page high authority, which makes it very valuable for your SEO efforts.\r\n\r\nRead more\r\nhttps://monkeydigital.co/product/edu-backlinks/\r\n\r\nregards\r\nMike\r\nmonkeydigital.co@gmail.com\n\nAny Other Comments:\nFastest and Most Effective Way to Dominate the Web. Dominate search engines and be on the top position for Google. EDU backlinks are considered more trustworthy therefore are harder to get\r\n\r\nYou will have backlinks on old EDU pages with high PA values, Actual page high authority, which makes it very valuable for your SEO efforts.\r\n\r\nRead more\r\nhttps://monkeydigital.co/product/edu-backlinks/\r\n\r\nregards\r\nMike\r\nmonkeydigital.co@gmail.com\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-14','','','2019-08-31 17:00:10','2019-08-31 17:00:10','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-14/',0,'postman_sent_mail','',0),(2675,0,'2019-08-31 17:00:10','2019-08-31 17:00:10','noreplymonkeydigital@gmail.com\nKeesha Peak','noreplymonkeydigital@gmail.com','','publish','closed','closed','','noreplymonkeydigital-gmail-com','','','2019-08-31 17:00:10','2019-08-31 17:00:10','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2675',0,'flamingo_contact','',0),(2676,0,'2019-08-31 17:00:10','2019-08-31 17:00:10','Keesha Peak\nnoreplymonkeydigital@gmail.com\n06578 93 62 32\n3pm-5pm\nFastest and Most Effective Way to Dominate the Web. Dominate search engines and be on the top position for Google. EDU backlinks are considered more trustworthy therefore are harder to get\r\n\r\nYou will have backlinks on old EDU pages with high PA values, Actual page high authority, which makes it very valuable for your SEO efforts.\r\n\r\nRead more\r\nhttps://monkeydigital.co/product/edu-backlinks/\r\n\r\nregards\r\nMike\r\nmonkeydigital.co@gmail.com\nFastest and Most Effective Way to Dominate the Web. Dominate search engines and be on the top position for Google. EDU backlinks are considered more trustworthy therefore are harder to get\r\n\r\nYou will have backlinks on old EDU pages with high PA values, Actual page high authority, which makes it very valuable for your SEO efforts.\r\n\r\nRead more\r\nhttps://monkeydigital.co/product/edu-backlinks/\r\n\r\nregards\r\nMike\r\nmonkeydigital.co@gmail.com\n49\n192.253.253.126\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nAugust 31, 2019\n5:00 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-56','','','2019-08-31 17:00:10','2019-08-31 17:00:10','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2676',0,'flamingo_inbound','',0),(2677,0,'2019-08-31 17:02:41','2019-08-31 17:02:41','From: Lisa (Eliza) Engle \nEmail: elizaengle@gmail.com\nPhone: 323-206-0122\n\nService:9am-11am\n\nMessage Body:\nI was referred to Dr Fields by my chiropractor, Dr Douglas Davis (Burbank). I have been diagnosed (by X-ray and MRI) with severe arthritus and degenerative disease in my lower back (L5-S1) I am 47 and have trouble sleeping due to pain and am somewhat limited in daily activities. I am interested in finding out if I am a stem cell candidate and what the costs and recovery time would be.\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-15','','','2019-08-31 17:02:41','2019-08-31 17:02:41','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-15/',0,'postman_sent_mail','',0),(2678,0,'2019-08-31 17:02:41','2019-08-31 17:02:41','elizaengle@gmail.com\nLisa (Eliza) Engle','elizaengle@gmail.com','','publish','closed','closed','','elizaengle-gmail-com','','','2019-08-31 17:02:41','2019-08-31 17:02:41','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2678',0,'flamingo_contact','',0),(2679,0,'2019-08-31 17:02:41','2019-08-31 17:02:41','Lisa (Eliza) Engle\nelizaengle@gmail.com\n323-206-0122\n9am-11am\nI was referred to Dr Fields by my chiropractor, Dr Douglas Davis (Burbank). I have been diagnosed (by X-ray and MRI) with severe arthritus and degenerative disease in my lower back (L5-S1) I am 47 and have trouble sleeping due to pain and am somewhat limited in daily activities. I am interested in finding out if I am a stem cell candidate and what the costs and recovery time would be.\n50\n47.232.184.236\nMozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15\nhttps://www.drfields.com/contact/\nAugust 31, 2019\n5:02 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-57','','','2019-08-31 17:02:41','2019-08-31 17:02:41','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2679',0,'flamingo_inbound','',0),(2680,0,'2019-09-01 05:01:49','2019-09-01 05:01:49','From: Zulma Polk \nEmail: zulma.polk@hotmail.com\nPhone: 033-5661909\n\nService:11am-1pm\n\nMessage Body:\nAre You interested in an advertising service that charges less than $50 monthly and delivers thousands of people who are ready to buy directly to your website? Send a reply to: lily5885mil@gmail.com to find out how this works.\n\nAny Other Comments:\nWould you be interested in an advertising service that charges less than $39 every month and sends tons of people who are ready to buy directly to your website? Send a reply to: lily5885mil@gmail.com to find out how this works.\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-16','','','2019-09-01 05:01:49','2019-09-01 05:01:49','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-16/',0,'postman_sent_mail','',0),(2681,0,'2019-09-01 05:01:50','2019-09-01 05:01:50','zulma.polk@hotmail.com\nZulma Polk','zulma.polk@hotmail.com','','publish','closed','closed','','zulma-polk-hotmail-com','','','2019-09-01 05:01:50','2019-09-01 05:01:50','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2681',0,'flamingo_contact','',0),(2682,0,'2019-09-01 05:01:50','2019-09-01 05:01:50','Zulma Polk\nzulma.polk@hotmail.com\n033-5661909\n11am-1pm\nAre You interested in an advertising service that charges less than $50 monthly and delivers thousands of people who are ready to buy directly to your website? Send a reply to: lily5885mil@gmail.com to find out how this works.\nWould you be interested in an advertising service that charges less than $39 every month and sends tons of people who are ready to buy directly to your website? Send a reply to: lily5885mil@gmail.com to find out how this works.\n51\n104.245.145.21\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nSeptember 1, 2019\n5:01 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-58','','','2019-09-01 05:01:50','2019-09-01 05:01:50','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2682',0,'flamingo_inbound','',0),(2683,0,'2019-09-01 09:01:10','2019-09-01 09:01:10','From: Larryfus \nEmail: raphaeIcosecoerics@gmail.com\nPhone: 83555198965\n\nService:3pm-5pm\n\nMessage Body:\nHi!  drfields.com \r\n \r\nWe present oneself \r\n \r\nSending your business proposition through the feedback form which can be found on the sites in the contact partition. Contact form are filled in by our application and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This technique raise the chances that your message will be read. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com\n\nAny Other Comments:\nHi!  drfields.com \r\n \r\nWe present oneself \r\n \r\nSending your business proposition through the feedback form which can be found on the sites in the contact partition. Contact form are filled in by our application and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This technique raise the chances that your message will be read. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-17','','','2019-09-01 09:01:10','2019-09-01 09:01:10','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-17/',0,'postman_sent_mail','',0),(2684,0,'2019-09-01 09:01:10','2019-09-01 09:01:10','Larryfus\nraphaeIcosecoerics@gmail.com\n83555198965\n3pm-5pm\nHi!  drfields.com \r\n \r\nWe present oneself \r\n \r\nSending your business proposition through the feedback form which can be found on the sites in the contact partition. Contact form are filled in by our application and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This technique raise the chances that your message will be read. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com\nHi!  drfields.com \r\n \r\nWe present oneself \r\n \r\nSending your business proposition through the feedback form which can be found on the sites in the contact partition. Contact form are filled in by our application and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This technique raise the chances that your message will be read. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com\nSend\n52\n108.62.5.91\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134\nhttps://www.drfields.com/contact/\nSeptember 1, 2019\n9:01 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-59','','','2019-09-01 09:01:10','2019-09-01 09:01:10','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2684',0,'flamingo_inbound','',0),(2685,0,'2019-09-02 08:28:56','2019-09-02 08:28:56','From: Ronaldthozy \nEmail: daniel_hernandez22@live.com\nPhone: 84393729964\n\nService:1pm-3pm\n\nMessage Body:\nPrefer note a kindoffer in place of you. http://geouticneutsel.tk/9r9us\n\nAny Other Comments:\nPrefer note a kindoffer in place of you. http://geouticneutsel.tk/9r9us\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-18','','','2019-09-02 08:28:56','2019-09-02 08:28:56','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-18/',0,'postman_sent_mail','',0),(2686,0,'2019-09-02 08:28:56','2019-09-02 08:28:56','daniel_hernandez22@live.com\nRonaldthozy','daniel_hernandez22@live.com','','publish','closed','closed','','daniel_hernandez22-live-com','','','2019-09-02 08:28:56','2019-09-02 08:28:56','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2686',0,'flamingo_contact','',0),(2687,0,'2019-09-02 08:28:56','2019-09-02 08:28:56','Ronaldthozy\ndaniel_hernandez22@live.com\n84393729964\n1pm-3pm\nPrefer note a kindoffer in place of you. http://geouticneutsel.tk/9r9us\nPrefer note a kindoffer in place of you. http://geouticneutsel.tk/9r9us\nSend\n53\n85.206.165.15\nMozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 2, 2019\n8:28 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-60','','','2019-09-02 08:28:56','2019-09-02 08:28:56','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2687',0,'flamingo_inbound','',0),(2688,0,'2019-09-03 05:35:11','2019-09-03 05:35:11','From: Eric \nEmail: eric@talkwithcustomer.com\nPhone: 416-385-3200\n\nService:9am-11am\n\nMessage Body:\nHello drfields.com,\r\n\r\nPeople ask, “why does TalkWithCustomer work so well?”\r\n\r\nIt’s simple.\r\n\r\nTalkWithCustomer enables you to connect with a prospective customer at EXACTLY the Perfect Time.\r\n\r\n- NOT one week, two weeks, three weeks after they’ve checked out your website drfields.com.\r\n- NOT with a form letter style email that looks like it was written by a bot.\r\n- NOT with a robocall that could come at any time out of the blue.\r\n\r\nTalkWithCustomer connects you to that person within seconds of THEM asking to hear from YOU.\r\n\r\nThey kick off the conversation.\r\n\r\nThey take that first step.\r\n\r\nThey ask to hear from you regarding what you have to offer and how it can make their life better. \r\n\r\nAnd it happens almost immediately. In real time. While they’re still looking over your website drfields.com, trying to make up their mind whether you are right for them.\r\n\r\nWhen you connect with them at that very moment it’s the ultimate in Perfect Timing – as one famous marketer put it, “you’re entering the conversation already going on in their mind.”\r\n\r\nYou can’t find a better opportunity than that.\r\n\r\nAnd you can’t find an easier way to seize that chance than TalkWithCustomer. \r\n\r\nCLICK HERE http://www.talkwithcustomer.com now to take a free, 14-day test drive and see what a difference “Perfect Timing” can make to your business.\r\n\r\nSincerely,\r\nEric\r\n\r\nPS:  If you’re wondering whether NOW is the perfect time to try TalkWithCustomer, ask yourself this:\r\n“Will doing what I’m already doing now produce up to 100X more leads?”\r\nBecause those are the kinds of results we know TalkWithCustomer can deliver.  \r\nIt shouldn’t even be a question, especially since it will cost you ZERO to give it a try. \r\nCLICK HERE http://www.talkwithcustomer.com to start your free 14-day test drive today.\r\n\r\nIf you\'d like to unsubscribe click here http://liveserveronline.com/talkwithcustomer.aspx?d=drfields.com\n\nAny Other Comments:\nHello drfields.com,\r\n\r\nPeople ask, “why does TalkWithCustomer work so well?”\r\n\r\nIt’s simple.\r\n\r\nTalkWithCustomer enables you to connect with a prospective customer at EXACTLY the Perfect Time.\r\n\r\n- NOT one week, two weeks, three weeks after they’ve checked out your website drfields.com.\r\n- NOT with a form letter style email that looks like it was written by a bot.\r\n- NOT with a robocall that could come at any time out of the blue.\r\n\r\nTalkWithCustomer connects you to that person within seconds of THEM asking to hear from YOU.\r\n\r\nThey kick off the conversation.\r\n\r\nThey take that first step.\r\n\r\nThey ask to hear from you regarding what you have to offer and how it can make their life better. \r\n\r\nAnd it happens almost immediately. In real time. While they’re still looking over your website drfields.com, trying to make up their mind whether you are right for them.\r\n\r\nWhen you connect with them at that very moment it’s the ultimate in Perfect Timing – as one famous marketer put it, “you’re entering the conversation already going on in their mind.”\r\n\r\nYou can’t find a better opportunity than that.\r\n\r\nAnd you can’t find an easier way to seize that chance than TalkWithCustomer. \r\n\r\nCLICK HERE http://www.talkwithcustomer.com now to take a free, 14-day test drive and see what a difference “Perfect Timing” can make to your business.\r\n\r\nSincerely,\r\nEric\r\n\r\nPS:  If you’re wondering whether NOW is the perfect time to try TalkWithCustomer, ask yourself this:\r\n“Will doing what I’m already doing now produce up to 100X more leads?”\r\nBecause those are the kinds of results we know TalkWithCustomer can deliver.  \r\nIt shouldn’t even be a question, especially since it will cost you ZERO to give it a try. \r\nCLICK HERE http://www.talkwithcustomer.com to start your free 14-day test drive today.\r\n\r\nIf you\'d like to unsubscribe click here http://liveserveronline.com/talkwithcustomer.aspx?d=drfields.com\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-19','','','2019-09-03 05:35:11','2019-09-03 05:35:11','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-19/',0,'postman_sent_mail','',0),(2689,0,'2019-09-03 05:35:11','2019-09-03 05:35:11','eric@talkwithcustomer.com\nEric','eric@talkwithcustomer.com','','publish','closed','closed','','eric-talkwithcustomer-com','','','2019-09-03 05:35:11','2019-09-03 05:35:11','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2689',0,'flamingo_contact','',0),(2690,0,'2019-09-03 05:35:11','2019-09-03 05:35:11','Eric\neric@talkwithcustomer.com\n416-385-3200\n9am-11am\nHello drfields.com,\r\n\r\nPeople ask, “why does TalkWithCustomer work so well?”\r\n\r\nIt’s simple.\r\n\r\nTalkWithCustomer enables you to connect with a prospective customer at EXACTLY the Perfect Time.\r\n\r\n- NOT one week, two weeks, three weeks after they’ve checked out your website drfields.com.\r\n- NOT with a form letter style email that looks like it was written by a bot.\r\n- NOT with a robocall that could come at any time out of the blue.\r\n\r\nTalkWithCustomer connects you to that person within seconds of THEM asking to hear from YOU.\r\n\r\nThey kick off the conversation.\r\n\r\nThey take that first step.\r\n\r\nThey ask to hear from you regarding what you have to offer and how it can make their life better. \r\n\r\nAnd it happens almost immediately. In real time. While they’re still looking over your website drfields.com, trying to make up their mind whether you are right for them.\r\n\r\nWhen you connect with them at that very moment it’s the ultimate in Perfect Timing – as one famous marketer put it, “you’re entering the conversation already going on in their mind.”\r\n\r\nYou can’t find a better opportunity than that.\r\n\r\nAnd you can’t find an easier way to seize that chance than TalkWithCustomer. \r\n\r\nCLICK HERE http://www.talkwithcustomer.com now to take a free, 14-day test drive and see what a difference “Perfect Timing” can make to your business.\r\n\r\nSincerely,\r\nEric\r\n\r\nPS:  If you’re wondering whether NOW is the perfect time to try TalkWithCustomer, ask yourself this:\r\n“Will doing what I’m already doing now produce up to 100X more leads?”\r\nBecause those are the kinds of results we know TalkWithCustomer can deliver.  \r\nIt shouldn’t even be a question, especially since it will cost you ZERO to give it a try. \r\nCLICK HERE http://www.talkwithcustomer.com to start your free 14-day test drive today.\r\n\r\nIf you\'d like to unsubscribe click here http://liveserveronline.com/talkwithcustomer.aspx?d=drfields.com\nHello drfields.com,\r\n\r\nPeople ask, “why does TalkWithCustomer work so well?”\r\n\r\nIt’s simple.\r\n\r\nTalkWithCustomer enables you to connect with a prospective customer at EXACTLY the Perfect Time.\r\n\r\n- NOT one week, two weeks, three weeks after they’ve checked out your website drfields.com.\r\n- NOT with a form letter style email that looks like it was written by a bot.\r\n- NOT with a robocall that could come at any time out of the blue.\r\n\r\nTalkWithCustomer connects you to that person within seconds of THEM asking to hear from YOU.\r\n\r\nThey kick off the conversation.\r\n\r\nThey take that first step.\r\n\r\nThey ask to hear from you regarding what you have to offer and how it can make their life better. \r\n\r\nAnd it happens almost immediately. In real time. While they’re still looking over your website drfields.com, trying to make up their mind whether you are right for them.\r\n\r\nWhen you connect with them at that very moment it’s the ultimate in Perfect Timing – as one famous marketer put it, “you’re entering the conversation already going on in their mind.”\r\n\r\nYou can’t find a better opportunity than that.\r\n\r\nAnd you can’t find an easier way to seize that chance than TalkWithCustomer. \r\n\r\nCLICK HERE http://www.talkwithcustomer.com now to take a free, 14-day test drive and see what a difference “Perfect Timing” can make to your business.\r\n\r\nSincerely,\r\nEric\r\n\r\nPS:  If you’re wondering whether NOW is the perfect time to try TalkWithCustomer, ask yourself this:\r\n“Will doing what I’m already doing now produce up to 100X more leads?”\r\nBecause those are the kinds of results we know TalkWithCustomer can deliver.  \r\nIt shouldn’t even be a question, especially since it will cost you ZERO to give it a try. \r\nCLICK HERE http://www.talkwithcustomer.com to start your free 14-day test drive today.\r\n\r\nIf you\'d like to unsubscribe click here http://liveserveronline.com/talkwithcustomer.aspx?d=drfields.com\n54\n155.94.129.119\nMozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0\nhttps://www.drfields.com/contact/\nSeptember 3, 2019\n5:35 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-61','','','2019-09-03 05:35:11','2019-09-03 05:35:11','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2690',0,'flamingo_inbound','',0),(2692,8,'2019-09-03 19:15:05','2019-09-03 19:15:05','Logo Orthoregen','Logo Orthoregen','Logo Orthoregen','inherit','open','closed','','logo-orthoregen-2','','','2019-09-03 19:15:05','2019-09-03 19:15:05','',0,'https://www.drfields.com/wp-content/uploads/2019/09/Logo-OrthoRegen.png',0,'attachment','image/png',0),(2693,8,'2019-09-03 19:15:20','2019-09-03 19:15:20','Cropped Logo Orthoregen.png','Cropped Logo Orthoregen.png','Cropped Logo Orthoregen.png','inherit','open','closed','','cropped-logo-orthoregen-png','','','2019-09-03 19:15:20','2019-09-03 19:15:20','',0,'https://www.drfields.com/wp-content/uploads/2019/09/cropped-Logo-OrthoRegen.png',0,'attachment','image/png',0),(2696,8,'2019-09-03 21:40:34','2019-09-03 21:40:34','<h2 class=\"text-center\">Please fill out the form below for your inquiries!</h2>\n[contact-form-7 id=\"4\" title=\"Contact page form\"]','Contact','','inherit','closed','closed','','29-autosave-v1','','','2019-09-03 21:40:34','2019-09-03 21:40:34','',29,'https://www.drfields.com/uncategorized/29-autosave-v1/',0,'revision','',0),(2697,8,'2019-09-03 22:08:03','2019-09-03 22:08:03','<h3><strong>Stroke As a Major Cause of Disability</strong></h3>\r\nAccording to a report from the World Health Organization [<a class=\"ref-link\" href=\"https://www.intechopen.com/books/new-insight-into-cerebrovascular-diseases-an-updated-comprehensive-review/rehabilitation-strategies-and-key-related-mechanisms-involved-in-stroke-recovery#B1\" data-ref-style=\"bibr\">1</a>], approximately 15 million people experience a stroke each year globally. And stroke is the third leading cause of death after heart disease and cancer, and a major cause of disability. With the aging of the American population and as obesity increases, more strokes are occurring: strokes occur in more than 795,000 U.S. citizens per year and result in 140,000 deaths with 77% of them first-time.<a href=\"https://franklinpierce.edu/about/Showcase2020/Projects/TherapyStrokeRehab-Ostrander.pdf\">[2] </a>In this article, we will look at how surgery can cause strokes.\r\n<h3><em>What Does the American Heart Association Say About Stroke?</em></h3>\r\nThe American Heart Association and the American Stroke Association have issued new guidelines aimed at reducing the incidence of stroke. Identifying lifestyle as having had the biggest impact on preventing stroke, the new guidelines urge not smoking, maintaining a healthy weight, exercising and eating a diet rich in fruits and vegetables, and maintaining healthy levels of cholesterol and blood pressure.\r\n\r\n<strong>Does Anyone Even Think About the Whether Surgery Can Cause Strokes?</strong>\r\n\r\n<span style=\"font-weight: 400;\">People often choose surgery without understanding the risks or potential long-term results of the surgery. When considering surgery, people may think about the recovery time, the cost incurred, and the loss of work hours. And they may even wonder if they really want an artificial joint or if they are up to dealing with the pain involved in the surgery. <strong><em>But does anyone think there may be a risk of stroke surrounding surgery?</em></strong> </span>\r\n\r\n<span style=\"font-weight: 400;\">Strokes are a risk factor that is discussed when people face heart surgery, because of the possibility of blood clots during the bypass and all of the manipulation of blood vessels. But what about during other surgeries that are lower risk surgeries? Evidence shows that strokes occur in those without heart conditions too. And they can happen to people who are not considered high risk and to those who had no symptoms before surgery. </span>\r\n\r\n<b>What Does the Research About Surgery and Strokes?</b>\r\n\r\n<span style=\"font-weight: 400;\">Let\'s take a look at the findings from several research studies that investigate the peri-operative stroke risk. Why? Because we want people to be educated. And they want to fully explore their options before choosing an elective surgery. </span><span style=\"font-weight: 400;\">Peri-operative stroke refers to a stroke that occurs during surgery or within 30 days after surgery.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">An article in the journal, “Lancet” <a href=\"https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(19)31795-7/fulltext\">[3]</a> investigated the occurrence of strokes in people who did not have stroke symptoms before the surgery. They also looked into the rate of cognitive decline after surgery. The study included 12 academic centers and 1114 people over a three year period. </span>\r\n\r\n<span style=\"font-weight: 400;\">What were the results? The researchers found that 78 people, or 7%, had a stroke.</span><span style=\"font-weight: 400;\"> What about cognitive decline? A third of those who did not have a stroke was shown to have cognitive decline. So, what does all that mean? <strong>There is a risk of stroke and problems with deteriorating brain function in 1 out of 14 people who have elective surgery, even if they were not high risk, to begin with. </strong></span>\r\n\r\n<em><strong>So, the research does say that surgery can cause stroke</strong></em>s.\r\n<h4>What Type of Surgery is High Risk?</h4>\r\n<span style=\"font-weight: 400;\">Stroke really is a possible complication in surgeries that don’t involve the heart or neurological system. The risk increases in people over 65. Plus, the risk of death is higher for those who have a peri-operative stroke. In the journal, “Anesthesiology,”<a href=\"https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1933494\">[4]</a> the researchers investigated specific things that increased the risk of stroke from surgery in the non-cardiac and non-neurological cases. They looked at all different types of surgeries, including hip replacements, biopsies, hernia repair, arthroscopies, and knee repairs. </span>\r\n\r\n<span style=\"font-weight: 400;\">This study found three types of surgeries with the highest risk, which included hip replacement, removal of part of the intestine, and removal of part of the lung.  Other specifics that increase risk included older age, kidney disease, COPD, tobacco use, and elevated blood pressure. For those who do experience a peri-operative stroke, the chance of dying within 30 days of the surgery is increased by 8 times. In this particular study, 229 of 173,028 people had a stroke during non-cardiac and non-neurologic surgery.</span>\r\n\r\n<b>What about Surgery and Anesthesia, and the Relationship to Stroke Risk?</b>\r\n\r\n<span style=\"font-weight: 400;\">Another study in the journal “Anesthesia”<a href=\"https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1946026\">[5]</a> took a look at stroke risk from surgery and anesthesia. They studied 1,455 stroke occurrences over a 25 year period, excluding those with cardiac, vascular, neurologic, and other high-risk conditions. What did they find? They were actually surprised to find out that surgery and anesthesia themselves were a significant risk of stroke, especially considering they left out the high-risk folks with cardiac, vascular, or neurologic problems. </span>\r\n\r\n<span style=\"font-weight: 400;\">One more journal actually said the reason for stroke after surgery is “clear and highly predictable: </span><b>surgery.</b><span style=\"font-weight: 400;\">”</span><span style=\"font-weight: 400;\"> <a href=\"https://pubmed.ncbi.nlm.nih.gov/24978064/\">[6]</a>Surgery is necessary sometimes. But when there are alternatives to surgery, these options should be sought out. Keep in mind that surgery is often recommended on the basis of an MRI finding. However, these findings may not even be the cause of the pain. </span>\r\n\r\n<span style=\"font-weight: 400;\">We encourage you to find a practitioner who will evaluate you well, and do a complete history and examination in order to make a proper diagnosis. Frequently, structural injuries, such as ligament and tendon injuries, are the underlying source of pain. Surgery often cuts through and removes some of these structures. That actually accelerates the arthritic process, and puts you in line for more surgery.</span>\r\n<h3>Regenerative Orthopedics As An Alternative to Surgery</h3>\r\n<span style=\"font-weight: 400;\">Fortunately, there is an alternative to surgery that is highly successful! Regenerative Orthopedics can be sought as a first-line, conservative treatment that can be tried before surgery. It is effective at relieving pain and allowing patients to return quickly to the sports, work, and activities they love. Since surgery can cause strokes, and anesthesia adds to the risk, it is great to know there is an alternative to surgery.</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is also an excellent choice for repair of joint injuries and painful musculoskeletal joint conditions while avoiding the risk of stroke and other risks of elective surgery. If you have already had surgery, but continue to experience joint pain, Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy is still an option for pain relief and return to function. When joint injuries are limiting your life, Regenerative Orthopedics can get you the results you want quickly, more safely, and at a dramatically lower cost than surgery.</span>\r\n\r\n<hr />\r\n\r\n1World Health Organization. The Atlas of Heart Disease and Stroke [Internet]. Available from: http://www.who.int/cardiovascular_diseases/resources/atlas/en/[Accessed: 21 Jun 2020]\r\n\r\n2Abbott, Taylor, and Mary Elizabeth Ostrander. \"What therapies are most beneficial for stroke rehabilitation?.\"\r\n\r\n<span style=\"font-weight: 400;\">3Perioperative covert stroke in patients undergoing non-cardiac surgery.</span><i><span style=\"font-weight: 400;\"> Lancet,</span></i><span style=\"font-weight: 400;\"> 2019. Doi.org/10.1016/SO140-6736(19)31795-7.</span>\r\n\r\n<span style=\"font-weight: 400;\">4Mashour GA, Shanks AM, Kheterpal S.Perioperative stroke, and associated mortality after noncardiac, non-neurologic surgery.</span> <i><span style=\"font-weight: 400;\">Anesthesiology.</span></i><span style=\"font-weight: 400;\"> 2011; </span>114<span style=\"font-weight: 400;\">: 1289-1296.</span>\r\n\r\n<span style=\"font-weight: 400;\">5G</span><span style=\"font-weight: 400;\">ilbert Y. Wong, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">David O. Warner, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Darrell R. Schroeder, M.S.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Kenneth P. Offord, M.S.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Mark A. Warner, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">et al. </span><span style=\"font-weight: 400;\">Risk of surgery and anesthesia for ischemic stroke. </span><i><span style=\"font-weight: 400;\">Anesthesiology</span></i><span style=\"font-weight: 400;\">. 2000; 92: 425.</span>\r\n\r\n<span style=\"font-weight: 400;\">6Mashour, George A. MD, Ph.D.</span><span style=\"font-weight: 400;\">*</span><span style=\"font-weight: 400;\">; Moore, Laurel E. MD; Lele, Abhijit V. MD; Robicsek, Steven A. MD; Gelb, Adrian W. MBChB</span><span style=\"font-weight: 400;\">. </span><span style=\"font-weight: 400;\">Perioperative care of patients at high risk for stroke during or after non-cardiac, non-neurologic surgery: A consensus statement from the Society for Neuroscience in Anesthesiology and Critical Care. </span><span style=\"font-weight: 400;\"> </span><i><span style=\"font-weight: 400;\">Journal of Neurosurgical Anesthesiology.</span></i> <span style=\"font-weight: 400;\"> 2014; 26(4): 273–285</span><span style=\"font-weight: 400;\">.</span>','Can Surgery Cause Strokes?','','publish','open','closed','','can-surgery-cause-strokes','','','2020-09-01 21:21:19','2020-09-01 21:21:19','',0,'https://www.drfields.com/?p=2697',0,'post','',0),(2698,8,'2019-09-03 22:08:03','2019-09-03 22:08:03','<span style=\"font-weight: 400;\">People often choose surgery without understanding the risks or potential long-term results of the surgery. When considering surgery, people may think about the recovery time, the cost incurred, and the loss of work hours. They may even wonder if they really want an artificial joint, and if they are up to dealing with the pain involved in surgery. But does anyone think there may be a risk of stroke surrounding surgery? Strokes are a risk factor that is discussed when people face heart surgery, because of the possibility of blood clots during the bypass and all of the manipulation of blood vessels. But what about during other surgeries that are lower risk surgeries? Evidence does show that strokes occur in those without heart conditions too, and in people who are not considered high risk and to those who had no symptoms before surgery. In this article, we will present the findings from several research studies that investigate the perioperative stroke risk, because we want people to be educated and to fully explore their options before choosing an elective surgery. </span><span style=\"font-weight: 400;\">Perioperative stroke refers to a stroke that occurs during surgery or within 30 days after surgery.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>What Does the Research Say About Strokes and Surgery?</b>\r\n\r\n<span style=\"font-weight: 400;\">An article in the journal, “Lancet” investigated the occurrence of strokes in people who did not have stroke symptoms before the surgery. They also looked into the rate of cognitive decline after surgery. The study included 12 academic centers and 1114 people over a three year period. What were the results? The researchers found that 78 people, or 7%, had a stroke.</span><span style=\"font-weight: 400;\"> What about cognitive decline? A third of those who did not have a stroke were shown to have cognitive decline. So, what does all that mean? There is a risk of stroke and problems with deteriorating brain function in 1 out of 14 people who have elective surgery, even if they were not high risk to begin with. </span>\r\n\r\n<span style=\"font-weight: 400;\">Stroke really is a possible complication in surgeries that don’t involve the heart or neurological system. The risk increases in people over 65. Plus, the risk of death is higher for those who have a perioperative stroke. In the journal, “Anesthesiology,” the researchers investigated specific things that increased the risk of stroke from surgery in the non-cardiac and non-neurological cases. They looked at all different types of surgeries, including hip replacements, biopsies, hernia repair, arthroscopies, and knee repairs. This study found three types of surgeries with highest risk, which included hip replacement, removal of part of the intestine, and removal of part of the lung.  Other specifics that increase risk included older age, kidney disease, COPD, tobacco use, and elevated blood pressure. For those who do experience a perioperative stroke, the chance of dying within 30 days of the surgery is increased by 8 times. In this particular study, 229 of 173,028 people had a stroke during non-cardiac and non-neurologic surgery. </span>\r\n\r\n<b>What about surgery and anesthesia?</b>\r\n\r\n<span style=\"font-weight: 400;\">Another study in the journal “Anesthesia” took a look at stroke risk from surgery and anesthesia. They studied 1,455 stroke occurrences over a 25 year period, excluding those with cardiac, vascular, neurologic, and other high-risk conditions. What did they find? They were actually surprised to find out that surgery and anesthesia themselves were a significant risk of stroke, especially considering they left out the high risk folks with cardiac, vascular, or neurologic problems. </span>\r\n\r\n<span style=\"font-weight: 400;\">One more journal actually said the reason for stroke after surgery is “clear and highly predictable: </span><b>surgery.</b><span style=\"font-weight: 400;\">”</span><span style=\"font-weight: 400;\"> Surgery is necessary sometimes. But when there are alternatives to surgery, these options should be sought out. Keep in mind that surgery is often recommended on the basis of an MRI finding. However, these finding may not even be the cause of the pain. We encourage you to find a practitioner who will evaluate you well, and do a complete history and examination in order to make a proper diagnosis. Frequently, structural injuries, such as ligament and tendon injuries, are the underlying source of pain. Surgery often cuts through and removes some of these structures, which actually accelerates the arthritic process, and puts you in line for more surgery.</span>\r\n\r\n<span style=\"font-weight: 400;\">Fortunately, there is an alternative to surgery that is highly successful! Regenerative Orthopedics can be sought as a first-line, conservative treatment that can be tried before surgery because it is effective at relieving pain and allowing patients to return quickly to the sports, work, and activities they love. It is also an excellent choice for repair of joint injuries and painful musculoskeletal joint conditions, while avoiding the risk of stroke and other risks of elective surgery. If you have already had surgery, but continue to experience joint pain, Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy is still an option for pain relief and return to function. When joint injuries are limiting your life, Regenerative Orthopedics can get you the results you want quickly, more safely, and at a dramatically lower cost than surgery.</span>\r\n\r\n<hr>\r\n\r\n<span style=\"font-weight: 400;\">Perioperative covert stroke in patients undergoing non-cardiac surgery.</span><i><span style=\"font-weight: 400;\"> Lancet,</span></i><span style=\"font-weight: 400;\"> 2019. Doi.org/10.1016/SO140-6736(19)31795-7</span>\r\n\r\n<span style=\"font-weight: 400;\">Mashour GA, Shanks AM, Kheterpal S.Perioperative stroke and associated mortality after noncardiac, nonneurologic surgery.</span> <i><span style=\"font-weight: 400;\">Anesthesiology.</span></i><span style=\"font-weight: 400;\"> 2011; </span><b>114</b><span style=\"font-weight: 400;\">: 1289-1296.</span>\r\n\r\n<a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Gilbert%c2%a0Y.+Wong\"><span style=\"font-weight: 400;\">Gilbert Y. Wong, M.D.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=David%c2%a0O.+Warner\"><span style=\"font-weight: 400;\">David O. Warner, M.D.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Darrell%c2%a0R.+Schroeder\"><span style=\"font-weight: 400;\">Darrell R. Schroeder, M.S.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Kenneth%c2%a0P.+Offord\"><span style=\"font-weight: 400;\">Kenneth P. Offord, M.S.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Mark%c2%a0A.+Warner\"><span style=\"font-weight: 400;\">Mark A. Warner, M.D.</span></a><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">et al. </span><span style=\"font-weight: 400;\">Risk of surgery and anesthesia for ischemic stroke. </span><i><span style=\"font-weight: 400;\">Anesthesiology</span></i><span style=\"font-weight: 400;\">. 2000; 92: 425.</span>\r\n\r\n<span style=\"font-weight: 400;\">Mashour, George A. MD, PhD</span><span style=\"font-weight: 400;\">*</span><span style=\"font-weight: 400;\">; Moore, Laurel E. MD; Lele, Abhijit V. MD; Robicsek, Steven A. MD; Gelb, Adrian W. MBChB</span><span style=\"font-weight: 400;\">. </span><span style=\"font-weight: 400;\">Perioperative care of patients at high risk for stroke during or after non-cardiac, non-neurologic surgery: Consensus statement from the Society for Neuroscience in Anesthesiology and Critical Care. </span><span style=\"font-weight: 400;\"> </span><i><span style=\"font-weight: 400;\">Journal of Neurosurgical Anesthesiology.</span></i> <a href=\"https://journals.lww.com/jnsa/toc/2014/10000\"><span style=\"font-weight: 400;\"> 2014; 26(4): 273–285</span></a><span style=\"font-weight: 400;\">.</span>','Can Surgery Cause Strokes?','','inherit','closed','closed','','2697-revision-v1','','','2019-09-03 22:08:03','2019-09-03 22:08:03','',2697,'https://www.drfields.com/uncategorized/2697-revision-v1/',0,'revision','',0),(2699,8,'2019-09-03 22:08:43','2019-09-03 22:08:43','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Can Surgery Cause Strokes?</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/can-surgery-cause-strokes/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-09-03 22:08:43','2019-09-03 22:08:43','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2701,0,'2019-09-04 19:00:57','2019-09-04 19:00:57','Bea Heller\nDrBHeller@yahoo.com\n7148980515\n1pm-3pm\nLeft and right Proximal fibular heads and interosseous ligaments injured during 2 MVAs. Left head seems very subluxated. It sticks out. Makes me look bowlegged.\r\n\r\nMy ortho would not do a pain injection at the lat head on left. Severely painful when walking. Seems like nerve pinched? He thought the injection could hurt the nerve.\r\n\r\nI cannot find a DC who adjusts extremities. March Charette DC is o linger doing the Foot Leveler seminars in California.\r\n\r\nAny way you can do an a adjustment to the fibular heads?\r\n\r\nThanks.\r\n\r\nBea Heller, DC\n55\n98.148.136.25\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 4, 2019\n7:00 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-62','','','2019-09-04 19:00:57','2019-09-04 19:00:57','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2701',0,'flamingo_inbound','',0),(2702,0,'2019-09-04 19:01:21','2019-09-04 19:01:21','Bea Heller\nDrBHeller@yahoo.com\n7148980515\n1pm-3pm\nLeft and right Proximal fibular heads and interosseous ligaments injured during 2 MVAs. Left head seems very subluxated. It sticks out. Makes me look bowlegged.\r\n\r\nMy ortho would not do a pain injection at the lat head on left. Severely painful when walking. Seems like nerve pinched? He thought the injection could hurt the nerve.\r\n\r\nI cannot find a DC who adjusts extremities. March Charette DC is no longer doing the Foot Leveler seminars in California.\r\n\r\nAny way you can do an a adjustment to the fibular heads?\r\n\r\nThanks.\r\n\r\nBea Heller, DC\n55\n98.148.136.25\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 4, 2019\n7:01 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-63','','','2019-09-04 19:01:21','2019-09-04 19:01:21','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2702',0,'flamingo_inbound','',0),(2703,0,'2019-09-04 19:21:23','2019-09-04 19:21:23','test\npcc@drfields.com\n3238612243\n9am-11am\ntest\ntest\n55\n206.192.206.237\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 4, 2019\n7:21 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-64','','','2019-09-04 19:21:23','2019-09-04 19:21:23','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2703',0,'flamingo_inbound','',0),(2704,0,'2019-09-04 19:40:23','2019-09-04 19:40:23','test\npcc@drfields.com\n3238612243\n9am-11am\ntest\ntest\n55\n206.192.206.237\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 4, 2019\n7:40 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-65','','','2019-09-04 19:40:23','2019-09-04 19:40:23','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2704',0,'flamingo_inbound','',0),(2705,0,'2019-09-04 19:40:48','2019-09-04 19:40:48','Peter Fields MD DC\ninfo@DrFields.com\n3104531234\n9am-11am\njjj\n55\n23.242.74.137\nMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\nhttps://www.drfields.com/contact/\nSeptember 4, 2019\n7:40 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-66','','','2019-09-04 19:40:48','2019-09-04 19:40:48','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2705',0,'flamingo_inbound','',0),(2706,0,'2019-09-04 19:40:50','2019-09-04 19:40:50','test\npcc@drfields.com\n3238612243\n9am-11am\ntest\ntest\n55\n206.192.206.237\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 4, 2019\n7:40 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-67','','','2019-09-04 19:40:50','2019-09-04 19:40:50','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2706',0,'flamingo_inbound','',0),(2707,0,'2019-09-04 19:40:55','2019-09-04 19:40:55','Peter Fields MD DC\ninfo@DrFields.com\n3104531234\n9am-11am\njjj\n55\n23.242.74.137\nMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\nhttps://www.drfields.com/contact/\nSeptember 4, 2019\n7:40 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-68','','','2019-09-04 19:40:55','2019-09-04 19:40:55','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2707',0,'flamingo_inbound','',0),(2708,0,'2019-09-04 19:44:18','2019-09-04 19:44:18','Zeke\nezekiel@websitedepot.com\n213-332-9255\n9am-11am\nThis is a test of the contact form.\nComments for test of contact inquiries\n55\n172.118.143.212\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 4, 2019\n7:44 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-69','','','2019-09-04 19:44:18','2019-09-04 19:44:18','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2708',0,'flamingo_inbound','',0),(2709,0,'2019-09-04 19:48:56','2019-09-04 19:48:56','Alan Rakin INSURANCE SERVICES\nezekiel@websitesdepot.com\n8002549164\n11am-1pm\ntest\ntest\n55\n172.118.143.212\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 4, 2019\n7:48 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-70','','','2019-09-04 19:48:56','2019-09-04 19:48:56','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2709',0,'flamingo_inbound','',0),(2710,0,'2019-09-04 19:54:23','2019-09-04 19:54:23','Peter Fields MD DC\ninfo@DrFields.com\n3104531234\n9am-11am\njjj\n55\n23.242.74.137\nMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\nhttps://www.drfields.com/contact/\nSeptember 4, 2019\n7:54 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-71','','','2019-09-04 19:54:23','2019-09-04 19:54:23','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2710',0,'flamingo_inbound','',0),(2711,0,'2019-09-04 19:54:25','2019-09-04 19:54:25','Peter Fields MD DC\ninfo@DrFields.com\n3104531234\n9am-11am\njjj\n55\n23.242.74.137\nMozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\nhttps://www.drfields.com/contact/\nSeptember 4, 2019\n7:54 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-72','','','2019-09-04 19:54:25','2019-09-04 19:54:25','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2711',0,'flamingo_inbound','',0),(2712,0,'2019-09-04 20:10:55','2019-09-04 20:10:55','chad\nchad@websitesdepot.com\n3237418490\n11am-1pm\ntest\ntest\n55\n208.251.181.122\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 4, 2019\n8:10 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-73','','','2019-09-04 20:10:55','2019-09-04 20:10:55','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2712',0,'flamingo_inbound','',0),(2713,0,'2019-09-04 20:11:23','2019-09-04 20:11:23','From: chad \nEmail: chad@websitesdepot.com\nPhone: 3237418490\n\nService:1pm-3pm\n\nMessage Body:\ntest\n\nAny Other Comments:\ntest\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-20','','','2019-09-04 20:11:23','2019-09-04 20:11:23','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-20/',0,'postman_sent_mail','',0),(2714,0,'2019-09-04 20:11:23','2019-09-04 20:11:23','chad\nchad@websitesdepot.com\n3237418490\n1pm-3pm\ntest\ntest\n55\n208.251.181.122\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 4, 2019\n8:11 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-74','','','2019-09-04 20:11:23','2019-09-04 20:11:23','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2714',0,'flamingo_inbound','',0),(2715,0,'2019-09-04 20:47:15','2019-09-04 20:47:15','From: Zeke \nEmail: ezekiel@seoexpertdanny.com\nPhone: 3239121105\n\nService:11am-1pm\n\nMessage Body:\nThis is a test\n\nAny Other Comments:\nThis is only a test\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-21','','','2019-09-04 20:47:15','2019-09-04 20:47:15','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-21/',0,'postman_sent_mail','',0),(2716,0,'2019-09-04 20:47:17','2019-09-04 20:47:17','ezekiel@seoexpertdanny.com\nZeke','ezekiel@seoexpertdanny.com','','publish','closed','closed','','ezekiel-seoexpertdanny-com','','','2019-09-04 20:47:17','2019-09-04 20:47:17','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2716',0,'flamingo_contact','',0),(2717,0,'2019-09-04 20:47:17','2019-09-04 20:47:17','Zeke\nezekiel@seoexpertdanny.com\n3239121105\n11am-1pm\nThis is a test\nThis is only a test\n56\n172.118.143.212\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 4, 2019\n8:47 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-75','','','2019-09-04 20:47:17','2019-09-04 20:47:17','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2717',0,'flamingo_inbound','',0),(2718,0,'2019-09-05 00:15:52','2019-09-05 00:15:52','From: Jeremy Colin \nEmail: jezcolin@mac.com\nPhone: 323 3504437\n\nService:9am-11am\n\nMessage Body:\nI am a 55 year old male with an arthritic right hip. Labral tear, and FAI conditions have caused pain for several years, but ramping up now. I\'ve used P.T with varying degrees of success. I\'m attempting to delay surgery (hip replacement) as long as possible.\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-22','','','2019-09-05 00:15:52','2019-09-05 00:15:52','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-22/',0,'postman_sent_mail','',0),(2719,0,'2019-09-05 00:15:52','2019-09-05 00:15:52','jezcolin@mac.com\nJeremy Colin','jezcolin@mac.com','','publish','closed','closed','','jezcolin-mac-com','','','2019-09-05 00:15:52','2019-09-05 00:15:52','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2719',0,'flamingo_contact','',0),(2720,0,'2019-09-05 00:15:52','2019-09-05 00:15:52','Jeremy Colin\njezcolin@mac.com\n323 3504437\n9am-11am\nI am a 55 year old male with an arthritic right hip. Labral tear, and FAI conditions have caused pain for several years, but ramping up now. I\'ve used P.T with varying degrees of success. I\'m attempting to delay surgery (hip replacement) as long as possible.\n57\n47.156.155.79\nMozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 5, 2019\n12:15 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-76','','','2019-09-05 00:15:52','2019-09-05 00:15:52','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2720',0,'flamingo_inbound','',0),(2721,0,'2019-09-05 15:48:00','2019-09-05 15:48:00','From: Don Most \nEmail: dmost8@gmail.com\nPhone: 8052086329\n\nService:9am-11am\n\nMessage Body:\nI’ve had lower back problems for over 35 years as a result of a spondilolisthesis.\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-23','','','2019-09-05 15:48:00','2019-09-05 15:48:00','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-23/',0,'postman_sent_mail','',0),(2722,0,'2019-09-05 15:48:00','2019-09-05 15:48:00','dmost8@gmail.com\nDon Most','dmost8@gmail.com','','publish','closed','closed','','dmost8-gmail-com','','','2019-09-05 15:48:00','2019-09-05 15:48:00','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2722',0,'flamingo_contact','',0),(2723,0,'2019-09-05 15:48:00','2019-09-05 15:48:00','Don Most\ndmost8@gmail.com\n8052086329\n9am-11am\nI’ve had lower back problems for over 35 years as a result of a spondilolisthesis.\n58\n107.185.220.140\nMozilla/5.0 (iPhone; CPU iPhone OS 12_3_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1\nhttps://www.drfields.com/contact/\nSeptember 5, 2019\n3:47 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-77','','','2019-09-05 15:48:00','2019-09-05 15:48:00','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2723',0,'flamingo_inbound','',0),(2724,8,'2019-09-06 18:58:01','2019-09-06 18:58:01','Raymond','Raymond','Raymond','inherit','open','closed','','raymond','','','2019-09-06 18:58:01','2019-09-06 18:58:01','',0,'https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg',0,'attachment','image/jpeg',0),(2725,8,'2019-09-06 18:58:02','2019-09-06 18:58:02','Stefan','Stefan','Stefan','inherit','open','closed','','stefan','','','2019-09-06 18:58:02','2019-09-06 18:58:02','',0,'https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg',0,'attachment','image/jpeg',0),(2726,8,'2019-09-06 18:58:02','2019-09-06 18:58:02','Tom','Tom','Tom','inherit','open','closed','','tom','','','2019-09-06 18:58:02','2019-09-06 18:58:02','',0,'https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg',0,'attachment','image/jpeg',0),(2727,8,'2019-09-06 18:58:03','2019-09-06 18:58:03','Bob','Bob','Bob','inherit','open','closed','','bob','','','2019-09-06 18:58:03','2019-09-06 18:58:03','',0,'https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg',0,'attachment','image/jpeg',0),(2728,8,'2019-09-06 18:58:03','2019-09-06 18:58:03','Dave','Dave','Dave','inherit','open','closed','','dave','','','2019-09-06 18:58:03','2019-09-06 18:58:03','',0,'https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg',0,'attachment','image/jpeg',0),(2729,8,'2019-09-06 18:58:04','2019-09-06 18:58:04','Kelsey','Kelsey','Kelsey','inherit','open','closed','','kelsey','','','2019-09-06 18:58:04','2019-09-06 18:58:04','',0,'https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg',0,'attachment','image/jpeg',0),(2730,8,'2019-09-06 19:08:23','2019-09-06 19:08:23','<div class=\"link_string\"><a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a></div>\r\n<p style=\"text-align: center;\"><a class=\"buttonlink\" href=\"https://www.drfields.com/testimonials/written-testimonials/\">  View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Stefan - Stem Cell <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-09-06 19:08:23','2019-09-06 19:08:23','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(2731,8,'2019-09-06 19:12:09','2019-09-06 19:12:09','<style>\r\n.youtubeleft{\r\nfloat:none!important;\r\n}\r\n</style>\r\n\r\n<div class=\"link_string\"><a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a></div>\r\n<p style=\"text-align: center;\"><a class=\"buttonlink\" href=\"https://www.drfields.com/testimonials/written-testimonials/\">  View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Stefan - Stem Cell <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-09-06 19:12:09','2019-09-06 19:12:09','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(2733,8,'2019-09-06 19:14:39','2019-09-06 19:14:39','<style>\r\n#youtubeleft{float:none!important;\r\n\r\n}\r\n</style>\r\n\r\n<div class=\"link_string\"><a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a></div>\r\n<p style=\"text-align: center;\"><a class=\"buttonlink\" href=\"https://www.drfields.com/testimonials/written-testimonials/\">  View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Stefan - Stem Cell <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-09-06 19:14:39','2019-09-06 19:14:39','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(2734,8,'2019-09-06 19:14:58','2019-09-06 19:14:58','<style>\r\n#youtubeleft{\r\n\r\n}\r\n</style>\r\n\r\n<div class=\"link_string\"><a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a></div>\r\n<p style=\"text-align: center;\"><a class=\"buttonlink\" href=\"https://www.drfields.com/testimonials/written-testimonials/\">  View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Stefan - Stem Cell <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-09-06 19:14:58','2019-09-06 19:14:58','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(2735,8,'2019-09-06 19:22:29','2019-09-06 19:22:29','Peter Neck','Peter Neck','Peter Neck','inherit','open','closed','','peter-neck','','','2019-09-06 19:22:29','2019-09-06 19:22:29','',0,'https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg',0,'attachment','image/jpeg',0),(2736,8,'2019-09-06 19:23:29','2019-09-06 19:23:29','<style>\r\n#youtubeleft{\r\n\r\n}\r\n</style>\r\n\r\n<div class=\"link_string\"><a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a></div>\r\n<p style=\"text-align: center;\"><a class=\"buttonlink\" href=\"https://www.drfields.com/testimonials/written-testimonials/\">  View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Stefan - Stem Cell <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-09-06 19:23:29','2019-09-06 19:23:29','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(2737,8,'2019-09-06 19:24:27','2019-09-06 19:24:27','<style>\r\n#youtubeleft{\r\n\r\n}\r\n</style>\r\n\r\n<div class=\"link_string\"><a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a></div>\r\n<p style=\"text-align: center;\"><a class=\"buttonlink\" href=\"https://www.drfields.com/testimonials/written-testimonials/\">  View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Stefan - Stem Cell <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-09-06 19:24:27','2019-09-06 19:24:27','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(2738,8,'2019-09-06 19:26:58','2019-09-06 19:26:58','Dr Doug','Dr Doug','Dr Doug','inherit','open','closed','','dr-doug','','','2019-09-06 19:26:58','2019-09-06 19:26:58','',0,'https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg',0,'attachment','image/jpeg',0),(2739,8,'2019-09-06 19:27:16','2019-09-06 19:27:16','Dr Doug','Dr Doug','Dr Doug','inherit','open','closed','','dr-doug-2','','','2019-09-06 19:27:16','2019-09-06 19:27:16','',0,'https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg',0,'attachment','image/jpeg',0),(2740,8,'2019-09-06 19:27:58','2019-09-06 19:27:58','<style>\r\n#youtubeleft{\r\n\r\n}\r\n</style>\r\n\r\n<div class=\"link_string\"><a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a></div>\r\n<p style=\"text-align: center;\"><a class=\"buttonlink\" href=\"https://www.drfields.com/testimonials/written-testimonials/\">  View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Stefan - Stem Cell <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Stem Videotestimonial\"]\r\n<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-09-06 19:27:58','2019-09-06 19:27:58','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(2741,8,'2019-09-06 19:36:51','2019-09-06 19:36:51','<style>\r\n#youtubeleft{\r\n\r\n}\r\n</style>\r\n\r\n<div class=\"link_string\"><a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a></div>\r\n<p style=\"text-align: center;\"><a class=\"buttonlink\" href=\"https://www.drfields.com/testimonials/written-testimonials/\">  View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Stem Videotestimonial\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stem Videotestimonial\"]<strong>Stefan - Stem Cell <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Stem Videotestimonial\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Stem Videotestimonial\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Stem Videotestimonial\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Stem Videotestimonial\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-09-06 19:36:51','2019-09-06 19:36:51','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(2742,8,'2019-09-06 19:41:36','2019-09-06 19:41:36','<style>\r\n#youtubeleft{\r\n\r\n}\r\n</style>\r\n\r\n<div class=\"link_string\"><a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a></div>\r\n<p style=\"text-align: center;\"><a class=\"buttonlink\" href=\"https://www.drfields.com/testimonials/written-testimonials/\">  View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-09-06 19:41:36','2019-09-06 19:41:36','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(2743,0,'2019-09-09 15:22:13','2019-09-09 15:22:13','From: Todd Frankum \nEmail: toddfrankum@me.com\nPhone: 3109104317\n\nService:9am-11am\n\nMessage Body:\nFor tax purposes can I please get a summary for charges from 2016-2017 when I was patient of Dr. Fields?  I had right sciata.\r\n\r\nThank you\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-24','','','2019-09-09 15:22:13','2019-09-09 15:22:13','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-24/',0,'postman_sent_mail','',0),(2744,0,'2019-09-09 15:22:13','2019-09-09 15:22:13','toddfrankum@me.com\nTodd Frankum','toddfrankum@me.com','','publish','closed','closed','','toddfrankum-me-com','','','2019-09-09 15:22:13','2019-09-09 15:22:13','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2744',0,'flamingo_contact','',0),(2745,0,'2019-09-09 15:22:13','2019-09-09 15:22:13','Todd Frankum\ntoddfrankum@me.com\n3109104317\n9am-11am\nFor tax purposes can I please get a summary for charges from 2016-2017 when I was patient of Dr. Fields?  I had right sciata.\r\n\r\nThank you\n59\n47.144.139.62\nMozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15\nhttps://www.drfields.com/contact/\nSeptember 9, 2019\n3:22 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-78','','','2019-09-09 15:22:13','2019-09-09 15:22:13','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2745',0,'flamingo_inbound','',0),(2746,8,'2019-09-09 20:05:00','2019-09-09 20:05:00','info@drfields.com\nDrFields','info@drfields.com','','publish','closed','closed','','info-drfields-com','','','2019-09-09 20:05:00','2019-09-09 20:05:00','',0,'https://www.drfields.com/?post_type=flamingo_contact&#038;p=2746',0,'flamingo_contact','',0),(2747,8,'2019-09-09 19:40:07','2019-09-09 19:40:07','New user registration on your site Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields:\r\n\r\nUsername: DrFields\r\n\r\nEmail: info@drfields.com\r\n','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] New User Registration','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-new-user-registration','','','2019-09-09 19:40:07','2019-09-09 19:40:07','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-new-user-registration/',0,'postman_sent_mail','',0),(2748,8,'2019-09-09 19:40:10','2019-09-09 19:40:10','Username: DrFields\r\n\r\nTo set your password, visit the following address:\r\n\r\n<https://www.drfields.com/wp-login.php?action=rp&key=DOxNzWzmnpcScj9ROpF6&login=DrFields>\r\n\r\nhttps://www.drfields.com/wp-login.php\r\n','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Login Details','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-login-details','','','2019-09-09 19:40:10','2019-09-09 19:40:10','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-login-details/',0,'postman_sent_mail','',0),(2749,8,'2019-09-09 20:23:47','2019-09-09 20:23:47','<div class=\"col-md-8\">\n\n[playlist ids=\"1587,1589,1588,2750\"]\n\n</div>\n<div class=\"col-md-4\"><img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" />\n<h6 class=\"text-center\">Peter A. Fields MD DC\nThe Athletic Doc®</h6>\n</div>','Dr. Fields on the Radio','','inherit','closed','closed','','1584-autosave-v1','','','2019-09-09 20:23:47','2019-09-09 20:23:47','',1584,'https://www.drfields.com/uncategorized/1584-autosave-v1/',0,'revision','',0),(2750,8,'2019-09-09 20:23:28','2019-09-09 20:23:28','\"Fields_RegenB\". Released: 2019.','Dr. Fields PRP Treamtment Spot KABC','','inherit','open','closed','','fields_regenb','','','2019-09-09 20:35:00','2019-09-09 20:35:00','',0,'https://www.drfields.com/wp-content/uploads/2019/09/Fields_RegenB.mp3',0,'attachment','audio/mpeg',0),(2751,8,'2019-09-09 20:23:28','2019-09-09 20:23:28','\"Fields_PRPC\". Released: 2019.','Dr. Fields Regenerative Orthopedics Spot KABC','','inherit','open','closed','','fields_prpc','','','2019-09-09 20:34:35','2019-09-09 20:34:35','',0,'https://www.drfields.com/wp-content/uploads/2019/09/Fields_PRPC.mp3',0,'attachment','audio/mpeg',0),(2752,8,'2019-09-09 20:23:29','2019-09-09 20:23:29','\"Fields_StemA1\". Released: 2019.','Dr. Fields Stem Cell Spot KABC','','inherit','open','closed','','fields_stema1','','','2019-09-09 20:34:57','2019-09-09 20:34:57','',0,'https://www.drfields.com/wp-content/uploads/2019/09/Fields_StemA1.mp3',0,'attachment','audio/mpeg',0),(2753,8,'2019-09-09 20:23:57','2019-09-09 20:23:57','<div class=\"col-md-8\">\r\n\r\n[playlist ids=\"1587,1589,1588,2750,2751,2752\"]\r\n\r\n</div>\r\n<div class=\"col-md-4\"><img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" />\r\n<h6 class=\"text-center\">Peter A. Fields MD DC\r\nThe Athletic Doc®</h6>\r\n</div>','Dr. Fields on the Radio','','inherit','closed','closed','','1584-revision-v1','','','2019-09-09 20:23:57','2019-09-09 20:23:57','',1584,'https://www.drfields.com/uncategorized/1584-revision-v1/',0,'revision','',0),(2754,0,'2019-09-09 22:04:21','2019-09-09 22:04:21','From: Asher Collins \nEmail: Asher@thechatsinc.org\nPhone: 0000000000\n\nService:11am-1pm\n\nMessage Body:\nHi,\r\n\r\nThis is Asher Collins from The Chats Inc. I have visited your website and noticed good traffic. We can convert that traffic into you client lead by equipping your website with 24-7 live chat service with live attendant availability which will increase your website conversion up to 35% and generate 3 times more leads from your visitor traffic, ensuring you don’t lose a single client visiting your website.\r\n\r\nPer Lead billing – No setup charges- Free non-qualified chats.\r\n\r\nYou can test the potential with $300 worth of free lead credit and continue if you see the results.\r\n\r\n\r\nIf you would like to explore this further - please let me know and we can take it from there!\r\n\r\nFor more info or to try the service, please reply or you can call me directly.\r\n\r\nBest,\r\nAsher Collins\r\nClient Relations\r\nAsher@thechatsinc.org\r\nwww.thechatsinc.net\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-25','','','2019-09-09 22:04:21','2019-09-09 22:04:21','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-25/',0,'postman_sent_mail','',0),(2755,0,'2019-09-09 22:04:21','2019-09-09 22:04:21','Asher@thechatsinc.org\nAsher Collins','Asher@thechatsinc.org','','publish','closed','closed','','asher-thechatsinc-org','','','2019-09-09 22:04:21','2019-09-09 22:04:21','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2755',0,'flamingo_contact','',0),(2756,0,'2019-09-09 22:04:21','2019-09-09 22:04:21','Asher Collins\nAsher@thechatsinc.org\n0000000000\n11am-1pm\nHi,\r\n\r\nThis is Asher Collins from The Chats Inc. I have visited your website and noticed good traffic. We can convert that traffic into you client lead by equipping your website with 24-7 live chat service with live attendant availability which will increase your website conversion up to 35% and generate 3 times more leads from your visitor traffic, ensuring you don’t lose a single client visiting your website.\r\n\r\nPer Lead billing – No setup charges- Free non-qualified chats.\r\n\r\nYou can test the potential with $300 worth of free lead credit and continue if you see the results.\r\n\r\n\r\nIf you would like to explore this further - please let me know and we can take it from there!\r\n\r\nFor more info or to try the service, please reply or you can call me directly.\r\n\r\nBest,\r\nAsher Collins\r\nClient Relations\r\nAsher@thechatsinc.org\r\nwww.thechatsinc.net\n60\n69.167.12.196\nMozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 9, 2019\n10:04 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-79','','','2019-09-09 22:04:21','2019-09-09 22:04:21','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2756',0,'flamingo_inbound','',0),(2758,8,'2019-09-11 21:28:25','2019-09-11 21:28:25','<style>\r\n#youtubeleft{</p>\r\n<p>}<br />\r\n</style>\r\n<div class=\"link_string\"><a href=\"https://www.drfields.com/Testimonials/Video-Testimonials\">All</a><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">Stem Cell</a><a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Knee</a><a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials\">Low Back</a><a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials\">Shoulder</a><a href=\"https://www.drfields.com/Testimonials/Hip-Testimonials\">Hip</a><a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials\">Neck</a><a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials\">Ankle</a><a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials\">Elbow</a><a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials\">Foot</a><a href=\"https://www.drfields.com/Testimonials/Wrist-Testimonials\">Wrist</a><a href=\"https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials\">Sports Hernia</a><a href=\"https://www.drfields.com/Testimonials/Spanish-Testimonials\">Spanish</a><a href=\"https://www.drfields.com/Testimonials/Hamstring-Testimonials\">Hamstring</a><a href=\"https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials\">Ganglion Cyst</a><a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials\">Headache</a></div>\r\n<p style=\"text-align: center;\"><a class=\"buttonlink\" href=\"https://www.drfields.com/testimonials/written-testimonials/\">  View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-09-11 21:28:25','2019-09-11 21:28:25','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(2760,8,'2019-09-12 13:35:04','2019-09-12 13:35:04','<h2>Stop Back Pain and the Endless Cycle of Chasing Symptoms</h2>\r\n<span style=\"font-weight: 400;\">So many people suffer from back pain, stuck in a cycle of pain medications, hours of therapy appointments, more prescription medications, over-the-counter medications, supplements, and more therapy. Only to continue to suffer from continued back pain. The cycle is an attempt to manage the pain. </span><span style=\"font-weight: 400;\">You might think, “Of course, I want to manage the pain!” But what if there is a better way and one that actually corrects the back pain problem. Regenerative Orthopedics can stop back pain and the cycle because it repairs the underlying source of pain. Since it treats at the source, it ends up resolving the pain.</span>\r\n\r\nStudies show the effectiveness of this non-surgical alternative. In one four-year study of 145 patients, 89% experienced more than 50% pain relief with Prolotherapy. Those are great results at improving quality of life and reducing pain!\r\n\r\n<span style=\"font-weight: 400;\">There\'s no need to continue chasing symptoms with ineffective treatments that keep you in the pain cycle. Instead, correct the problems with Regenerative Orthopedics and stop back pain and the endless cycle!</span>\r\n\r\n[caption id=\"attachment_4739\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4739\" src=\"https://www.drfields.com/wp-content/uploads/2019/09/Back-Pain.-Prolotherapy-500x375.jpeg\" alt=\"Back Pain. Prolotherapy\" width=\"500\" height=\"375\" /> <strong>                            Stop Back Pain with Prolotherapy</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h3><b>What Is the Reason Behind Most Back Pain?</b></h3>\r\n<span style=\"font-weight: 400;\">Since back pain is so common and a leading cause of disability, it is important to look at the reason for it. The underlying cause of most back pain issues is </span><b><i>spinal instability</i></b><span style=\"font-weight: 400;\">. </span>\r\n\r\n<span style=\"font-weight: 400;\">What is spinal instability you might ask? When you bend and twist and tweak your back, you injure soft tissue, like muscle and ligaments. Muscles have a great blood supply, so they heal quickly. Ligaments have a poor blood supply and take quite a while to heal. In fact, they heal quite poorly. </span>\r\n\r\n<span style=\"font-weight: 400;\">Unhealed ligaments are weak and lax, similar to stretched-out rubber bands. Ligaments connect bone to bone. So if the ligaments are weak, then the bone connection will be weak and wobbly. That bone connection or joint is then unstable. </span>\r\n<h3>The Vertebral Spine</h3>\r\n<span style=\"font-weight: 400;\">The vertebral bones in the back make up the spine. So when the ligaments in the spine are weak or wobbly, that makes for spinal instability. When these ligaments remain unhealed, the problem gets worse and worse. The ligaments get more lax and the spine becomes more unstable. You can imagine that if the joints of the spine become wobbly, that the bony structures will have difficulty moving as they should. </span>\r\n\r\n<span style=\"font-weight: 400;\">When motion in the vertebral joint connections stops being smooth, the abnormal motion causes the joint structures to degenerate. Instability and abnormal joint motion are behind all types of painful back conditions. Painful problems like bulging discs, arthritis, sciatica and degenerative joint disease can result from abnormal motion in the spine.</span>\r\n\r\n<span style=\"font-weight: 400;\"> The underlying problem is ligament weakness, which creates abnormal joint motion that will eventually damage the joint structures and elicit pain. Pain pills aren’t able to fix the weakened ligaments. And cortisone makes soft tissue weaker. So even if these things provide some short-term relief, they will eventually worsen the problem in the long run. Massage can’t strengthen weakened ligaments either.</span>\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3><em>Regenerative Orthopedics Can Stop Back Pain</em></h3>\r\n<span style=\"font-weight: 400;\">What’s the solution? The degenerative condition needs regenerative treatment. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are all regenerative treatments that strengthen ligaments, restore normal joint motion, and regenerate joint structures. Good quality <a href=\"https://lyfebotanicals.com/health/turmeric-back-pain/\">supplements</a>, like turmeric, which can aid in the healing process, are also of benefit.</span>\r\n<h3><b>Ligaments Are Structures that Provide Stability to the Joint</b></h3>\r\n<span style=\"font-weight: 400;\">As mentioned earlier, the most common cause of unresolved back pain is spinal instability, due to weakened and stretched-out ligaments. Ligaments are very important for the stability of the spine and for proper motion. In fact, they are some of the main stabilizing structures for the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Sure, those with back pain will definitely complain of muscle spasms and tightness, because muscles help with stability too. But muscles will spasm because they are overcompensating for the inability of the injured ligaments to keep the spine in place. Treatments that relieve muscle spasms will give temporary reprieve of the spasms. But they will not address the ligament weakness. Instability and pain will continue because the ligaments are unable to hold the adjacent bones of the spine together properly.</span>\r\n<h3><b>How Can You Stop Back Pain?</b></h3>\r\n<span style=\"font-weight: 400;\">Each year, thousands and thousands of people are disabled due to some type of painful back condition. Back pain is actually one of the main reasons people come to see us at OrthoRegen<sup>®</sup>. By the time they come to see us, they have usually tried numerous types of pills, treatments, and even surgery. </span>\r\n\r\n<span style=\"font-weight: 400;\">But they are in our office because the pain has not stopped!</span><span style=\"font-weight: 400;\"> That’s because these other treatments are only short-lived and because they only provide temporary relief. Even surgical treatments end up with poor rates of success. Surgery may emphasize the treatment of the disc, for example, but it misses treating the ligament injury which is the originating source of the pain. So the pain continues.</span>\r\n<h3>Ligaments Can Refer Pain Too</h3>\r\n<span style=\"font-weight: 400;\">The places where the ligaments attach to the bones are full of nerves, which elicit pain when stretched out or injured. Injured ligaments can send out referral pain down the back of the leg and even to the foot. They can also refer pain to the groin and pelvic floor. If weak ligaments exist, the physician knowledgeable in examination techniques can diagnose instability during the physical examination with varied maneuvers and positioning. Even palpating, or pressing with the thumb at the ligament attachments will elicit pain indicating ligament laxity.</span>\r\n\r\n<span style=\"font-weight: 400;\">Back pain is one of the easiest conditions to treat with Regenerative Orthopedics. Most often, the pain is located in the lower back, where the vertebrae of the lumbar spine meet the pelvis. Four structures adjoin there in a pretty small area, with all of it held together by ligaments, connecting the sacrum to the sides of the iliac crest and the ilium, while the lower part of the lumbar spine connects to the sacrum. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics to the ligaments in this area strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication. </span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Stop Back Pain with Regenerative Orthopedics','','publish','open','closed','','stop-back-pain','','','2021-06-18 21:48:51','2021-06-18 21:48:51','',0,'https://www.drfields.com/?p=2760',0,'post','',0),(2761,8,'2019-09-12 13:35:04','2019-09-12 13:35:04','<b>Stop the Back Pain Cycle</b>\r\n\r\n<span style=\"font-weight: 400;\">So many people suffer with back pain, stuck in a cycle of pain medications, hours of therapy appointments, more prescription medications, over the counter medications, supplements, and more therapy, only to continue to suffer from continued back pain. The cycle is an attempt to manage the pain. You might think, “Of course, I want to manage the pain!” But what if there is a better way, and one that actually corrects the back pain problem, repairs the underlying source of pain, and resolves the pain? Chasing symptoms keeps the sufferer in the pain cycle. Correcting the problems stops the back pain cycle!</span>\r\n\r\n<b>What Is the Reason Behind Most Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Since back pain is so common and a leading cause of disability, it is important to look at the reason for it. The underlying cause of most back pain issues is </span><b><i>spinal instability</i></b><span style=\"font-weight: 400;\">. What is spinal instability you might ask? When you bend and twist and tweak your back, you injure soft tissue, like muscle and ligaments. Muscles have a great blood supply, so they heal quickly. Ligaments have a poor blood supply, and take quite a while to heal. In fact, they heal quite poorly. Unhealed ligaments are weak and lax, similar to stretched out rubber bands. Ligaments connect bone to bone. So if the ligaments are weak, then the bone connection will be weak and wobbly. That bone connection or joint is then unstable. The bones in the back are vertebrae and make up the spine. So when the ligaments in the spine are weak or wobbly, that makes for spinal instability. When these ligaments remain unhealed, the problem gets worse and worse. The ligaments get more lax and the spine becomes more unstable. You can imagine that if the joints of the spine become wobbly, that the bony structures will have difficulty moving like they should. Smooth movement of the vertebral joint connections stops. The abnormal motion causes the joint structures to degenerate. Instability and abnormal joint motion is behind all types of painful back conditions, like bulging discs, arthritis, sciatica, and degenerative joint disease. The underlying problem is ligament weakness, which creates abnormal joint motion which will eventually damage the joint structures and elicit pain. Pain pills aren’t able to fix the weakened ligaments. Cortisone makes soft tissue weaker, so even if it provides some short-term relief, it will eventually worsen the problem in the long run. Massage can’t strengthen weakened ligaments either. What’s the solution? The degenerative condition needs a regenerative treatment. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are all regenerative treatments that strengthen ligaments, restore normal joint motion, and regenerate joint structures.</span>\r\n\r\n<b>Ligaments Are Structures that Provide Stability to the Joint</b>\r\n\r\n<span style=\"font-weight: 400;\">As mentioned earlier, the most common cause of unresolved back pain is spinal instability, due to weakened and stretched out ligaments. Ligaments are very important for stability of the spine and for proper motion. In fact, they are some of the main stabilizing structure for the joint. Sure, those with back pain will definitely complain of muscle spasms and tightness, because muscles help with stability too. But muscles will spasm because they are overcompensating for the inability of the injured ligaments to keep the spine in place. Treatments that relieve muscle spasms will give temporary reprieve of the spasms, but will not address the ligament weakness. Instability and pain will continue, because the ligaments are unable to hold the adjacent bones of the spine together properly.</span>\r\n\r\n<b>How to Treat Unresolved Back Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Each year, thousands and thousands of people are disabled due to some type of painful back condition. Back pain is actually one of the main reasons people come to see us at OrthoRegen. By the time they come to see us, they have usually tried numerous types of pills, treatments, and even surgery, but continue to experience pain. That’s because these other treatments only short-lived and temporary relief. Even surgical treatments end up with poor rates of success. Surgery may emphasize treatment of the disc, for example, but it misses treating the ligament injury which is the originating source of the pain. So pain continues.</span>\r\n\r\n<span style=\"font-weight: 400;\">The places where the ligaments attach to the bones are full of nerves, which elicit pain when stretched out or injured. Injured ligaments can send out referral pain down the back of the leg and even to the foot. They can also refer pain into the groin and pelvic floor. If weak ligaments exist, the physician knowledgeable in examination techniques can diagnose instability during the physical examination with varied maneuvers and positioning. Even palpating, or pressing with the thumb at the ligament attachments will elicit pain indicating ligament laxity.</span>\r\n\r\n<span style=\"font-weight: 400;\">Back pain is one of the easiest conditions to treat with Regenerative Orthopedics. Most often, the pain is located in the lower back, where the vertebrae of the lumbar spine meet the pelvis. Four structures adjoin there in a pretty small area, with all of it held together by ligaments, connecting the sacrum to the sides of the iliac crest and the ilium, while the lower part of the lumbar spine connects to the sacrum. Regenerative Orthopedics to the ligaments in this area strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication.</span>','Stop the Back Pain Cycle','','inherit','closed','closed','','2760-revision-v1','','','2019-09-12 13:35:04','2019-09-12 13:35:04','',2760,'https://www.drfields.com/uncategorized/2760-revision-v1/',0,'revision','',0),(2763,8,'2019-09-12 13:38:01','2019-09-12 13:38:01','<b>Stop the Back Pain Cycle</b>\r\n\r\n<span style=\"font-weight: 400;\">So many people suffer with back pain, stuck in a cycle of pain medications, hours of therapy appointments, more prescription medications, over the counter medications, supplements, and more therapy, only to continue to suffer from continued back pain. The cycle is an attempt to manage the pain. You might think, “Of course, I want to manage the pain!” But what if there is a better way, and one that actually corrects the back pain problem, repairs the underlying source of pain, and resolves the pain? Chasing symptoms keeps the sufferer in the pain cycle. Correcting the problems stops the back pain cycle!</span>\r\n\r\n<b>What Is the Reason Behind Most Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Since back pain is so common and a leading cause of disability, it is important to look at the reason for it. The underlying cause of most back pain issues is </span><b><i>spinal instability</i></b><span style=\"font-weight: 400;\">. What is spinal instability you might ask? When you bend and twist and tweak your back, you injure soft tissue, like muscle and ligaments. Muscles have a great blood supply, so they heal quickly. Ligaments have a poor blood supply, and take quite a while to heal. In fact, they heal quite poorly. Unhealed ligaments are weak and lax, similar to stretched out rubber bands. Ligaments connect bone to bone. So if the ligaments are weak, then the bone connection will be weak and wobbly. That bone connection or joint is then unstable. The bones in the back are vertebrae and make up the spine. So when the ligaments in the spine are weak or wobbly, that makes for spinal instability. When these ligaments remain unhealed, the problem gets worse and worse. The ligaments get more lax and the spine becomes more unstable. You can imagine that if the joints of the spine become wobbly, that the bony structures will have difficulty moving like they should. Smooth movement of the vertebral joint connections stops. The abnormal motion causes the joint structures to degenerate. Instability and abnormal joint motion is behind all types of painful back conditions, like bulging discs, arthritis, sciatica, and degenerative joint disease. The underlying problem is ligament weakness, which creates abnormal joint motion which will eventually damage the joint structures and elicit pain. Pain pills aren’t able to fix the weakened ligaments. Cortisone makes soft tissue weaker, so even if it provides some short-term relief, it will eventually worsen the problem in the long run. Massage can’t strengthen weakened ligaments either. What’s the solution? The degenerative condition needs a regenerative treatment. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are all regenerative treatments that strengthen ligaments, restore normal joint motion, and regenerate joint structures.</span>\r\n\r\n<b>Ligaments Are Structures that Provide Stability to the Joint</b>\r\n\r\n<span style=\"font-weight: 400;\">As mentioned earlier, the most common cause of unresolved back pain is spinal instability, due to weakened and stretched out ligaments. Ligaments are very important for stability of the spine and for proper motion. In fact, they are some of the main stabilizing structure for the joint. Sure, those with back pain will definitely complain of muscle spasms and tightness, because muscles help with stability too. But muscles will spasm because they are overcompensating for the inability of the injured ligaments to keep the spine in place. Treatments that relieve muscle spasms will give temporary reprieve of the spasms, but will not address the ligament weakness. Instability and pain will continue, because the ligaments are unable to hold the adjacent bones of the spine together properly.</span>\r\n\r\n<b>How to Treat Unresolved Back Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Each year, thousands and thousands of people are disabled due to some type of painful back condition. Back pain is actually one of the main reasons people come to see us at OrthoRegen. By the time they come to see us, they have usually tried numerous types of pills, treatments, and even surgery, but continue to experience pain. That’s because these other treatments only short-lived and temporary relief. Even surgical treatments end up with poor rates of success. Surgery may emphasize treatment of the disc, for example, but it misses treating the ligament injury which is the originating source of the pain. So pain continues.</span>\r\n\r\n<span style=\"font-weight: 400;\">The places where the ligaments attach to the bones are full of nerves, which elicit pain when stretched out or injured. Injured ligaments can send out referral pain down the back of the leg and even to the foot. They can also refer pain into the groin and pelvic floor. If weak ligaments exist, the physician knowledgeable in examination techniques can diagnose instability during the physical examination with varied maneuvers and positioning. Even palpating, or pressing with the thumb at the ligament attachments will elicit pain indicating ligament laxity.</span>\r\n\r\n<span style=\"font-weight: 400;\">Back pain is one of the easiest conditions to treat with Regenerative Orthopedics. Most often, the pain is located in the lower back, where the vertebrae of the lumbar spine meet the pelvis. Four structures adjoin there in a pretty small area, with all of it held together by ligaments, connecting the sacrum to the sides of the iliac crest and the ilium, while the lower part of the lumbar spine connects to the sacrum. Regenerative Orthopedics to the ligaments in this area strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication.</span>','Chronic Back Pain','','inherit','closed','closed','','2760-revision-v1','','','2019-09-12 13:38:01','2019-09-12 13:38:01','',2760,'https://www.drfields.com/uncategorized/2760-revision-v1/',0,'revision','',0),(2764,8,'2022-12-02 06:01:39','2019-09-12 13:38:25',' ','','','publish','closed','closed','','2764','','','2022-12-02 06:01:39','2022-12-02 06:01:39','',0,'https://www.drfields.com/?p=2764',47,'nav_menu_item','',0),(2765,0,'2019-09-16 00:06:30','2019-09-16 00:06:30','From: Janet Colley \nEmail: janetcolley789@gmail.com\nPhone: 6266469330\n\nService:11am-1pm\n\nMessage Body:\nI am on a cruise ship without any phone service. I have an appointment for this Tuesday the 17th at 1:30 pm for a recheck for stem cells. Our cruise ship had an oil spill upon refueling in Vancouver and we were delayed 5 1/2 hour for departure, thus our arrival into Los Angeles will be delayed with a best case scenario of arrival into Long Beach of 1:00 pm. By the time I get off the ship which will be a mad house, get my luggage, Uber to LAX to get my rental car, I am worried I will not get there before you close for the day.\r\nCurrently their is a good chance I will be staying in town for a few more days for business so this is my plan, as soon as I am able to get phone service I will call you and maybe we can reschedule for Thursday. I am so very very sorry to inconvenience you. I will call you Tuesday morning. Janet Colley\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-26','','','2019-09-16 00:06:30','2019-09-16 00:06:30','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-26/',0,'postman_sent_mail','',0),(2766,0,'2019-09-16 00:06:30','2019-09-16 00:06:30','janetcolley789@gmail.com\nJanet Colley','janetcolley789@gmail.com','','publish','closed','closed','','janetcolley789-gmail-com','','','2019-09-16 00:06:30','2019-09-16 00:06:30','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2766',0,'flamingo_contact','',0),(2767,0,'2019-09-16 00:06:30','2019-09-16 00:06:30','Janet Colley\njanetcolley789@gmail.com\n6266469330\n11am-1pm\nI am on a cruise ship without any phone service. I have an appointment for this Tuesday the 17th at 1:30 pm for a recheck for stem cells. Our cruise ship had an oil spill upon refueling in Vancouver and we were delayed 5 1/2 hour for departure, thus our arrival into Los Angeles will be delayed with a best case scenario of arrival into Long Beach of 1:00 pm. By the time I get off the ship which will be a mad house, get my luggage, Uber to LAX to get my rental car, I am worried I will not get there before you close for the day.\r\nCurrently their is a good chance I will be staying in town for a few more days for business so this is my plan, as soon as I am able to get phone service I will call you and maybe we can reschedule for Thursday. I am so very very sorry to inconvenience you. I will call you Tuesday morning. Janet Colley\n61\n162.249.178.141\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 16, 2019\n12:06 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-80','','','2019-09-16 00:06:30','2019-09-16 00:06:30','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2767',0,'flamingo_inbound','',0),(2768,0,'2019-09-17 21:19:18','2019-09-17 21:19:18','Richard Baeza\nrichardbaeza@sbcglobal.net\n9515005103\n9am-11am\nI had surgery to repair a torn labrum, bursitis, and bone spurs removal. I’ve been told that I no longer have cartilage in my shoulder. I have constant pain and can no longer enjoy things like lifting weights and playing baseball. Is there anything you can do for bone on bone shoulders?\n62\n174.195.205.12\nMozilla/5.0 (iPhone; CPU iPhone OS 12_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1\nhttps://www.drfields.com/contact/\nSeptember 17, 2019\n9:19 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','flamingo-spam','closed','closed','','your-subject-81','','','2019-09-17 21:19:18','2019-09-17 21:19:18','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2768',0,'flamingo_inbound','',0),(2769,0,'2019-09-17 21:19:18','2019-09-17 21:19:18','From: Richard Baeza \nEmail: richardbaeza@sbcglobal.net\nPhone: 9515005103\n\nService:9am-11am\n\nMessage Body:\nI had surgery to repair a torn labrum, bursitis, and bone spurs removal. I’ve been told that I no longer have cartilage in my shoulder. I have constant pain and can no longer enjoy things like lifting weights and playing baseball. Is there anything you can do for bone on bone shoulders?\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-27','','','2019-09-17 21:19:18','2019-09-17 21:19:18','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-27/',0,'postman_sent_mail','',0),(2770,0,'2019-09-17 21:19:18','2019-09-17 21:19:18','richardbaeza@sbcglobal.net\nRichard Baeza','richardbaeza@sbcglobal.net','','publish','closed','closed','','richardbaeza-sbcglobal-net','','','2019-09-17 21:19:18','2019-09-17 21:19:18','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2770',0,'flamingo_contact','',0),(2771,0,'2019-09-17 21:19:18','2019-09-17 21:19:18','Richard Baeza\nrichardbaeza@sbcglobal.net\n9515005103\n9am-11am\nI had surgery to repair a torn labrum, bursitis, and bone spurs removal. I’ve been told that I no longer have cartilage in my shoulder. I have constant pain and can no longer enjoy things like lifting weights and playing baseball. Is there anything you can do for bone on bone shoulders?\n62\n174.195.205.12\nMozilla/5.0 (iPhone; CPU iPhone OS 12_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1\nhttps://www.drfields.com/contact/\nSeptember 17, 2019\n9:19 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-82','','','2019-09-17 21:19:18','2019-09-17 21:19:18','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2771',0,'flamingo_inbound','',0),(2773,8,'2019-09-23 12:45:08','2019-09-23 12:45:08','<span style=\"font-weight: 400;\">The shoulder is quite an amazing, and incredibly mobile joint. But injury to the glenoid labrum of the shoulder can keep you from reaching your sport or professional goals. If you are a tradesman or woman whose work requires repetitive overhead motion to accomplish your trade, and shoulder pain is making your day almost impossible, a labral injury may be part of the problem.</span>\r\n<h3>Repetitive Overhead Motion Can Lead to Tears of the  Glenoid Labrum of the Shoulder</h3>\r\n<span style=\"font-weight: 400;\">Athletes and others who rely on their shoulders for the movements necessary to carry out their sports and professions are especially susceptible to injuries and tears of the glenoid labrum.  There are a couple types of labral tears. A SLAP tear (Superior Labral, Anterior to Posterior) is one of the most common, and results in a tear from the front to back of the glenoid labrum. Other labral tears include flap tears, Bankart lesions, and degenerative lesions. </span>\r\n\r\n<span style=\"font-weight: 400;\">With injury to the glenoid labrum of the shoulder, overhead strokes of a painter can be difficult too. Or the strum of a chord for a guitar player may bring shooting pains. And a pitcher might experience pain while throwing a ball compromising big hopes for the season. Shoulder pain from a glenoid labrum injury can put a major damper on your life. And those suffering from the injury want a quick way out of the discomfort in order to get their lives back. Getting there non-surgically would be an added bonus. </span>\r\n\r\n<span style=\"font-weight: 400;\">The shoulder has a lot of mobility.  The shoulder lacks big ligamentous structures to add to its ability to move well. But that also makes it more prone to injury, since big ligament structures would add support. The glenoid labrum provides some stabilization for the shoulder. So it is an important shoulder structure. </span>\r\n<h3><strong>What is the Glenoid Labrum of the Shoulder?</strong></h3>\r\n<span style=\"font-weight: 400;\">The glenoid labrum </span><span style=\"font-weight: 400;\">is a smooth ring of fibrous cartilage that surrounds the socket part of the shoulder- a ball and socket joint. The shoulder joint has three bones that come together: the scapula (shoulder blade), the clavicle (collar bone), and the humerus (upper arm bone). The glenoid labrum is located where the top part of the upper arm comes into contact with the socket in the scapula. And it forms a deep pocket that helps keep the humerus bone in the shoulder socket and provides pain-free range of motion.</span>\r\n<h3><span style=\"font-weight: 400;\"><strong>How does the glenoid labrum stabilize the shoulder and provide smooth movement?</strong> </span></h3>\r\n<span style=\"font-weight: 400;\">The ball at the top of the arm is larger than the socket. So the labrum helps to stabilize the shoulder by increasing the socket depth and providing a place for the ligaments and tendons to attach. </span><span style=\"font-weight: 400;\">When injured, the labrum is unable to do its job adequately. And pain and symptoms are experienced. </span>\r\n\r\n<span style=\"font-weight: 400;\">Injuries to the labrum occur during traumatic events, with repetitive motions, or from recurrent dislocations. Other soft tissue, such as the ligaments and tendons, are often injured along with the damaged labrum. This is because forces strong enough to injure the labrum will also be sufficiently forceful to injure them too. </span>\r\n\r\n<span style=\"font-weight: 400;\">Keep this in mind when seeking repair. Because all of the injured shoulder structures need to be treated in order to achieve complete healing of the shoulder joint. Otherwise, a cycle of shoulder injury, re-injury, and pain will be set in motion. </span>\r\n<h3><b>Symptoms of a Labral Tear</b><span style=\"font-weight: 400;\"> </span></h3>\r\n<span style=\"font-weight: 400;\">When the glenoid labrum is torn or injured, the shoulder may feel unstable, go out easily, and be susceptible to dislocations.  The shoulder may also click, catch, and lock because the torn parts get “trapped” when the shoulder joint moves. Pain is usually noticed with overhead activities, along with the popping, locking, catching, or grinding sensations during movement. Weakness, instability, and loss of range of motion may also be experienced. </span>\r\n\r\n<b>Glenoid Labrum Injuries Treated with Regenerative Orthopedics </b>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics effectively treats and repairs glenoid labrum injuries without the need for surgery. Athletes might consider surgery in an attempt to return quickly to their sport. But is a quick return the true outcome of surgical repair? Maybe not! </span>\r\n\r\n<span style=\"font-weight: 400;\">Researchers in the medical journal “Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery” say, “SLAP repair in throwing athletes should be approached with caution. Surgery may help improve symptoms but may not guarantee a return to the pre-injury level of competition. And even in the most expert of hands, the </span><b><i>rate of return to the pre-injury level of performance ranges from 38% to 60% and is as low as 10% for pitchers</i></b><span style=\"font-weight: 400;\">.”</span>\r\n<h3><span style=\"font-weight: 400;\"><strong>Regenerative Orthopedics Should be Sought as a Non-surgical Alternative</strong></span></h3>\r\n<span style=\"font-weight: 400;\">Surgery is needed on rare occasions, but should be a last resort. Non-Surgical Regenerative Orthopedics repairs the underlying joint instability of the shoulder joint, by treating all of the damaged soft tissue structures. Without this repair, the labral tear, ligament injury, or tendon damage will cause the shoulder to remain unstable. And shoulder problems, immobility and impingement will continue. </span>\r\n\r\n<span style=\"font-weight: 400;\">Besides being an effective treatment, Regenerative Orthopedics has several advantages. It is non-surgical, which avoids the risks of anesthesia, as well as the cutting, scraping, and probing. All of these can add to the instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Other advantages include minimal time missed from work, and no long recovery times. Regenerative Orthopedics stimulates repair of the labrum and other soft tissue structures of the shoulder, significantly improving pain levels, alleviating stiffness and the need for pain medication, and returning motion back to the shoulder joint. The repair allows for an accelerated return to sport and the profession you enjoy. </span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','The Glenoid Labrum of the Shoulder','','publish','open','closed','','the-glenoid-labrum-of-the-shoulder','','','2020-09-01 01:15:41','2020-09-01 01:15:41','',0,'https://www.drfields.com/?p=2773',0,'post','',0),(2774,8,'2019-09-18 15:45:43','2019-09-18 15:45:43','<span style=\"font-weight: 400;\">The shoulder is quite an amazing, and incredibly mobile joint. But injury to the glenoid labrum can keep you from reaching your sport or professional goals. If you are a tradesman or woman whose work requires repetitive overhead motion to accomplish your trade, and shoulder pain is making your day almost impossible, a labral injury may be part of the problem. Overhead strokes of a painter can be difficult, the strum of a chord for a guitar player might bring shooting pains, and a pitcher might experience pain while throwing a ball compromising big hopes for the season. Shoulder pain from a glenoid labrum injury can put a major damper on your life, and those suffering from the injury want a quick way out of the discomfort in order to get their lives back. Getting there non-surgically would be an added bonus. </span>\r\n\r\n<span style=\"font-weight: 400;\">The shoulder has a lot of mobility.  A lack of big ligamentous structures adds to the ability of the shoulder to move well, but that also makes it more prone to injury, since big ligament structures would add support. The glenoid labrum is a soft tissue structure that does provide stabilization for the shoulder, so it is an important shoulder structure. Athletes and others who rely on their shoulders for the movements necessary to carry out their sports and professions are especially susceptible to injuries and tears of the glenoid labrum.  There are a couple types of labral tears. A SLAP tear (Superior Labral, Anterior to Posterior) is one of the most common, and results in a tear from the front to back of the glenoid labrum. Other labral tears include flap tears, Bankart lesions, and degenerative lesions. </span>\r\n\r\n<span style=\"font-weight: 400;\">THE GLENOID LABRUM </span>\r\n\r\n<span style=\"font-weight: 400;\">The glenoid labrum </span><span style=\"font-weight: 400;\">is a smooth ring of fibrous cartilage that surrounds the socket part of the shoulder- a ball and socket joint. The shoulder joint has three bones that come together: the scapula (shoulder blade), the clavicle (collar bone), and the humerus (upper arm bone). The glenoid labrum is located where the top part of the upper arm comes into contact with the socket in the scapula, and it forms a deep pocket that helps keep the humerus bone in the shoulder socket and provides pain-free range of motion.</span> <span style=\"font-weight: 400;\">How does the glenoid labrum stabilize the shoulder and provide smooth movement? The ball at the top of the arm is larger than the socket, so the labrum helps to stabilize the shoulder by increasing the socket depth and providing a place for the ligaments and tendons to attach. </span><span style=\"font-weight: 400;\">When injured, the labrum is unable to do its job adequately, and pain and symptoms are experienced. Injuries to the labrum occur during traumatic events, with repetitive motions, or from recurrent dislocations. Other soft tissue, such as the ligaments and tendons, are often injured along with the damaged labrum, because forces strong enough to injure the labrum will also be sufficiently forceful to injure them too. Keep this in mind when seeking repair, because all the injured shoulder structures need to be treated in order to achieve complete healing of the shoulder joint. Otherwise, a cycle of shoulder injury, re-injury, and pain will be set in motion. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Symptoms of a Labral Tear</b><span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">When the glenoid labrum is torn or injured, the shoulder may feel unstable, go out easily, and be susceptible to dislocations.  The shoulder may also click, catch, and lock because the torn parts get “trapped” when the shoulder joint moves. Pain is usually noticed with overhead activities, along with the popping, locking, catching, or grinding sensations during movement. Weakness, instability, and loss of range of motion may also be experienced. </span>\r\n\r\n<b>Glenoid Labrum Treated with Regenerative Orthopedics </b>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics effectively treats and repairs glenoid labrum injuries without the need for surgery. Athletes might consider surgery in an attempt to return quickly to their sport. But is a quick return the true outcome of surgical repair? Maybe not! Researchers in the medical journal “Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery” say, “SLAP repair in throwing athletes should be approached with caution. Surgery may help improve symptoms but may not guarantee a return to the preinjury level of competition. Even in the most expert of hands, the </span><b><i>rate of return to the preinjury level of performance ranges from 38% to 60% and is as low as 10% for pitchers</i></b><span style=\"font-weight: 400;\">.”</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics should be sought as a non-surgical alternative. Surgery is needed on rare occasions, but should be a last resort. Regenerative Orthopedics repairs the underlying joint instability of the shoulder joint, by treating all of the damaged soft tissue structures. Without this repair, the labral tear, ligament injury, or tendon damage will cause the shoulder to remain unstable, and shoulder problems, immobility and impingement will continue. </span>\r\n\r\n<span style=\"font-weight: 400;\">Besides being an effective treatment, Regenerative Orthopedics has several advantages. It is non-surgical, which avoids the risks of anesthesia, as well as the cutting, scraping, and probing, which can add to the instability of the joint. Other advantages include minimal time missed from work, and no long recovery times. Regenerative Orthopedics stimulates repair of the labrum and other soft tissue structures of the shoulder, significantly improving pain levels, alleviating stiffness and the need for pain medication, and returning motion back to the shoulder joint. The repair allows for an accelerated return to sport and the profession you enjoy. </span>\r\n\r\n&nbsp;','The Glenoid Labrum of the Shoulder','','inherit','closed','closed','','2773-revision-v1','','','2019-09-18 15:45:43','2019-09-18 15:45:43','',2773,'https://www.drfields.com/uncategorized/2773-revision-v1/',0,'revision','',0),(2775,8,'2019-10-01 01:46:10','2019-10-01 01:46:10','<img class=\"size-medium wp-image-4233 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/IT-band-400x500.png\" alt=\"&quot;&lt;yoastmark\" />\r\n<h3>Iliotibial Band Repair</h3>\r\n<span style=\"font-weight: 400;\">Athletes are the ones who commonly suffer with this painful condition. And <strong>Iliotibial Band Syndrome (ITBS)</strong>  takes place more frequently in endurance athletes, like runners, cyclists, and in </span><span style=\"font-weight: 400;\">those who repeatedly squat</span><span style=\"font-weight: 400;\">. </span>\r\n\r\n<span style=\"font-weight: 400;\">The iliotibial band runs along the outside of the thigh, from the pelvis to the shinbone. The band crosses both the hip and the knee and is a structure that helps the knee to bend and straighten smoothly and in a stable fashion.  </span>\r\n\r\n<span style=\"font-weight: 400;\">The injury occurs most often because of overuse, as the band gets irritated from repeatedly crossing over the femoral epicondyle, a bony prominence on the thighbone, every time the knee bends and straightens. So, those with this condition will notice pain at the outside of the knee, especially when their heel strikes the ground while running.</span>\r\n<h3><b>More About the Iliotibial (IT) Band</b></h3>\r\n<span style=\"font-weight: 400;\">The iliotibial (IT) band is a dense band of tissue beginning at the iliac crest of the pelvis extending over the hip joint running down the outside part of the thigh, crossing over the outside of the knee and attaching to the shinbone. </span>\r\n\r\n<span style=\"font-weight: 400;\">The IT band forms from something called the tensor fascia lata and two of the gluteal muscles in the buttock. And then it stretches across the knee. Along with ligaments and other joint structures, the IT band plays a role in providing stability to both the knee and hip. </span>\r\n\r\n<span style=\"font-weight: 400;\">The band works to help abduct the leg, especially during walking, and it keeps the legs from crossing while walking. The IT band helps stabilize the outside part of the knee through its range of motion. The band moves back and forth when the knee is in motion.</span>\r\n\r\n<span style=\"font-weight: 400;\"> While the knee is bent, the band is located behind the femoral epicondyle near the knee joint. And then the band moves forward across the epicondyle when the knee is straightened. With iliotibial band syndrome, the band becomes irritated, and pain is experienced on the outer aspect of the knee</span><span style=\"font-weight: 400;\">.</span>\r\n<h3><b>What is Behind Iliotibial Band Syndrome?</b></h3>\r\n<span style=\"font-weight: 400;\">Although iliotibial band syndrome has generally been recognized as an injury caused by the friction that occurs as the band rubs back and forth over the bony epicondyle, recent studies have challenged this concept. When the knee is bent, the band is also compressed against the thigh bone, as it braces the knee when stress is placed on it. </span>\r\n\r\n<span style=\"font-weight: 400;\">And in instances when the knee is turned or rotated too much, the band can be injured as well. Therefore, another theory is that the injury occurs when the band is compressed at the epicondyle, causing irritation and inflammation there. Additionally, researchers suggest there is a fat pad full of nerves that are compressed between the iliotibial band and the epicondyle as the IT band is pulled towards the epicondyle. </span>\r\n<h4><em>Theories of How Iliotibial Band Syndrome Develops: </em></h4>\r\nAlthough there are different theories of how ITBS develops, most are in agreement that there is a component of irregular compression forces between the iliotibial band and the femoral epicondyle that generates the irritation and inflammation. Most likely, ITBS is the result of a combination of issues, including poor training habits, weakened soft tissue (muscle, ligament, and tendons), mechanical imbalances, and joint instability, especially involving the low back, pelvis, hips, and knees.\r\n\r\nThe injury occurs to the joint tissue because the joint begins to move in an abnormal fashion, irritating the tissue and altering the joint motion further. And the irritation of the joint tissues in iliotibial band syndrome is both the cause and effect of altered joint mechanics.\r\n<h3><em>Instability Adds to the Problem: </em></h3>\r\nAs an added problem, when instability is present, the sufferer will begin to walk in an altered pattern in an attempt to brace the knee. But this change in the walking pattern puts additional stress on the joint and can injure or tear the cartilage. Since the iliotibial band crosses both the hip and knee joints, injury can cause abnormal motion and instability at both the hip and knee. And this puts more and more stress on the iliotibial band.\r\n\r\nThe increased stress will rotate the kneecap and put increased pressure on the cartilage. If the symptoms are ignored, the irritation and inflammation will continue. And then scarring can develop, which can decrease the knee range of motion and cause pain even with reduced activity.\r\n<h3><em> Anatomic Issues:</em></h3>\r\nAnatomic issues can predispose folks to the development of iliotibial band syndrome. Leg-length discrepancies, an abnormally tilted pelvis, or bowed legs can cause the iliotibial band to become excessively tight or loose, which will increase the friction when the band as it crosses back and forth across the epicondyle, and change the stressors on the joint structures due to the abnormal way the anatomic issues cause the joint to move. All all of this will increase irritation, injury, and pain.\r\n<h3><em> Poor Training Habits: </em></h3>\r\nPoor training habits can have the same effect on the iliotibial band as the anatomic issues do. For example, runners who tend to always run on the same side of the road may repeatedly have one leg moving slightly downhill compared to the other. Also, always running downhill stresses the band. And cycling with the foot rotated inwards will increase the angle at which the band crosses over the epicondyle. All of these repeated activities can irritate the iliotibial band.\r\n<h3><b>Treatment for Iliotibial Band Syndrome</b></h3>\r\n<span style=\"font-weight: 400;\">Conservative treatment, including rest, modification of activity, and physical therapy are commonly recommended. Surgery to cut the IT band and “release” tension are occasionally recommended for cases that will not resolve, but conservative treatment should be sought first. </span>\r\n\r\n<span style=\"font-weight: 400;\">When the IT band and associated muscles are “tight,” a lot of strain is put on the ligaments, making muscle stretching and massage beneficial. The affected ligaments need to be treated as well because all of the involved structures become weakened by the abnormal motion. The joint instability in the hip and the knee needs to be properly diagnosed and treated in order to find the relief and the desired return to function. </span>\r\n<h3><strong>Treating Iliotibial Band Syndrome with Regenerative Orthopedics</strong></h3>\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is an effective and promising treatment option that can offer a non-surgical treatment solution for patients with persistent iliotibial band syndrome. Treatment into and around both the hip joint and the knee may very well be needed. </span>\r\n\r\n<span style=\"font-weight: 400;\">If the hip is found to be stable upon evaluation, and the knee alone is affected, then the athlete with iliotibial band syndrome will receive Regenerative Orthopedic treatments to the area on the lower leg where the iliotibial band attaches. </span>\r\n\r\n<span style=\"font-weight: 400;\">Additionally, if there are parts of the band itself that are tender, these areas can be treated as well. Generally, after just a couple of treatments, the athlete is able to start to work out again. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics offers a successful and much-needed alternative by stimulating the body to repair the supportive ligaments around the joints, heal the iliotibial band, as well as promote cartilage regeneration when necessary. The treatment is safe and effective for athletes suffering from chronic lateral knee pain, such as that experienced in iliotibial band syndrome.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>\r\n\r\n<a href=\"https://www.orthoregen.com/testimonials/\">Read Patient Testimonials</a>','Iliotibial Band Syndrome Repair','','publish','open','closed','','iliotibial-band-syndrome','','','2020-10-10 22:01:58','2020-10-10 22:01:58','',0,'https://www.drfields.com/?p=2775',0,'post','',0),(2776,8,'2019-09-18 15:46:42','2019-09-18 15:46:42','<span style=\"font-weight: 400;\">Iliotibial band syndrome (ITBS) is a painful knee condition that takes place more frequently in athletes, especially endurance athletes, like runners, cyclists, and in </span><span style=\"font-weight: 400;\">those who repeatedly squat</span><span style=\"font-weight: 400;\">. The iliotibial band runs along the outside of the thigh, from the pelvis to the shinbone. The band crosses both the hip and the knee, and is a structure that helps the knee to bend and straighten smoothly and in a stable fashion.  The injury occurs most often because of overuse, as the band gets irritated from repeatedly crossing over the femoral epicondyle, a bony prominence on the thighbone, every time the knee bends and straightens. Those with this condition will notice pain at the outside of the knee, especially when their heel strikes the ground while running.</span>\r\n\r\n<b>More About the Iliotibial Band</b>\r\n\r\n<span style=\"font-weight: 400;\">The iliotibial (IT) band is a dense band of tissue beginning at the iliac crest of the pelvis extending over the hip joint running down the outside part of the thigh, crossing over the outside of the knee and attaching to the shinbone. The iliotibial (IT) band forms from something called the tensor fascia lata and two of the gluteal muscles in the buttock and then it stretches across the knee. Along with ligaments and other joint structures, the iliotibial (IT) band plays a role in providing stability to both the knee and hip. The band works to help abduct the leg, especially during walking, and it keeps the legs from crossing while walking. The IT band helps stabilize the outside part of the knee through its range of motion. The band moves back and forth when the knee is in motion. While the knee is bent, the iliotibial band is located behind the femoral epicondyle near the knee joint. The band moves forward across the epicondyle when the knee is straightened. With iliotibial band syndrome, the band becomes irritated, and pain is experienced on the outer aspect of the knee</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<b>What is Behind Iliotibial Band Syndrome?</b>\r\n\r\n<span style=\"font-weight: 400;\">Although iliotibial band syndrome has generally been recognized as an injury caused by the friction that occurs as the band rubs back and forth over the bony epicondyle, recent studies have challenged this concept. When the knee is bent, the iliotibial band is also compressed against the thigh bone, as it braces the knee when stress is placed on it. In instances when the knee is turned or rotated too much, the band can be injured as well. Therefore, another theory is that the injury occurs when the band is compressed at the epicondyle, causing irritation and inflammation there. Additionally, researchers suggest there is a fat pad full of nerves that is compressed between the iliotibial band and the epicondyle as the IT band is pulled towards the epicondyle. </span>\r\n\r\n<span style=\"font-weight: 400;\">Although there are different theories of how iliotibial band syndrome develops, most are in agreement that there is a component of irregular compression forces between the iliotibial band and the femoral epicondyle that generates the irritation and inflammation. Most likely, iliotibial band syndrome is the result of a combination of issues, including poor training habits, weakened soft tissue (muscle, ligament, and tendons), mechanical imbalances, and joint instability, especially involving the low back, pelvis, hips, and knees.</span> <span style=\"font-weight: 400;\">Injury occurs to the joint tissue because the joint begins to move in an abnormal fashion, irritating the tissue and altering the joint motion further. The irritation of the joint tissues in iliotibial band syndrome is both the cause and effect of altered joint mechanics.  As an added problem, when instability is present, the sufferer will begin to walk in an altered pattern in an attempt to brace the knee, but this change in the walking pattern puts additional stress on the joint and can injure or tear the cartilage. Since the iliotibial band crosses both the hip and knee joints, injury can cause abnormal motion and instability at both the hip and knee, which puts more and more stress on the iliotibial band. The increased stress will rotate the kneecap and put increased pressure on the cartilage. If the symptoms are ignored, the irritation and inflammation will continue, and even scarring can develop, which can decrease knee range of motion and cause pain even with reduced activity.</span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Anatomic issues can predispose folks to the development of iliotibial band syndrome. Leg-length discrepancies, an abnormally tilted pelvis, or bowed legs can cause the iliotibial band to become excessively tight or loose, which will increase the friction when the band as it crosses back and forth across the epicondyle, and change the stressors on the joint structures due to the abnormal way the anatomic issues cause the joint to move, which all will increase irritation, injury, and pain.</span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Poor training habits can have the same effect on the iliotibial band as the anatomic issues do. For example, runners who tend to always run on the same side of the road may repeatedly have one leg moving slightly downhill compared to the other. Always running downhill also stresses the band, and cycling with the foot rotated inwards will increase the angle at which the band crosses over the epicondyle. All of these repeated activities can irritate the iliotibial band.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Treatment for Iliotibial Band Syndrome</b>\r\n\r\n<span style=\"font-weight: 400;\">Conservative treatment, including rest, modification of activity, and physical therapy is commonly recommended. Surgery to cut the IT band and “release” tension is occasionally recommended for cases that will not resolve, but conservative treatment should be sought first. When the IT band and associated muscles are “tight,” a lot of strain is put on the ligaments, making muscle stretching and massage beneficial. The affected ligaments need to be treated as well, because all of the involved structures become weakened by the abnormal motion. The joint instability in the hip and the knee needs to be properly diagnosed and treated in order to find the relief and the desired return to function. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is an effective and promising treatment option that can offer a non-surgical treatment solution for patients with persistent iliotibial band syndrome. Treatment into and around both the hip joint and the knee may very well be needed. If the hip is found to be stable upon evaluation, and the knee alone is affected, then the athlete with iliotibial band syndrome will receive Regenerative Orthopedic treatments to the area on the lower leg where the iliotibial band attaches. Additionally, if there are parts of the band itself that are tender, these areas can be treated as well. Generally, after just a couple of treatments, the athlete is able to start to work out again. Regenerative Orthopedics offers a successful and much-needed alternative by stimulating the body to repair the supportive ligaments around the joints, heal the iliotibial band, as well as promote cartilage regeneration when necessary. The treatment is safe and effective for athletes suffering with chronic lateral knee pain, such as that experienced in iliotibial band syndrome.</span>\r\n\r\n&nbsp;','Iliotibial Band Syndrome','','inherit','closed','closed','','2775-revision-v1','','','2019-09-18 15:46:42','2019-09-18 15:46:42','',2775,'https://www.drfields.com/uncategorized/2775-revision-v1/',0,'revision','',0),(2777,8,'2019-09-19 23:37:09','2019-09-19 23:37:09','<strong>AGREEMENT BETWEEN USER AND Dr. Fields</strong>\n\nThe Dr. Fields Web Site is comprised of various Web pages operated by Dr. Fields.\n\nThe Dr. Fields Web Site is offered to you conditioned on your acceptance without modification of the terms, conditions, and notices contained herein. Your use of the Dr. Fields Web Site constitutes your agreement to all such terms, conditions, and notices.\n\n<strong>MODIFICATION OF THESE TERMS OF USE</strong>\n\nDr. Fields reserves the right to change the terms, conditions, and notices under which the Dr. Fields Web Site is offered, including but not limited to the charges associated with the use of the Dr. Fields Web Site.\n\n<strong>LINKS TO THIRD PARTY SITES</strong>\n\nThe Dr. Fields Web Site may contain links to other Web Sites (\"Linked Sites\"). The Linked Sites are not under the control of Dr. Fields and Dr. Fields is not responsible for the contents of any Linked Site, including without limitation any link contained in a Linked Site, or any changes or updates to a Linked Site. Dr. Fields is not responsible for webcasting or any other form of transmission received from any Linked Site. Dr. Fields is providing these links to you only as a convenience, and the inclusion of any link does not imply endorsement by Dr. Fields of the site or any association with its operators.\n\n<strong>NO UNLAWFUL OR PROHIBITED USE</strong>\n\nAs a condition of your use of the Dr. Fields Web Site, you warrant to Dr. Fields that you will not use the Dr. Fields Web Site for any purpose that is unlawful or prohibited by these terms, conditions, and notices. You may not use the Dr. Fields Web Site in any manner which could damage, disable, overburden, or impair the Dr. Fields Web Site or interfere with any other party\'s use and enjoyment of the Dr. Fields Web Site. You may not obtain or attempt to obtain any materials or information through any means not intentionally made available or provided for through the Dr. Fields Web Sites.\n\n<strong>USE OF COMMUNICATION SERVICES</strong>\n\nThe Dr. Fields Web Site may contain bulletin board services, chat areas, news groups, forums, communities, personal web pages, calendars, and/or other message or communication facilities designed to enable you to communicate with the public at large or with a group (collectively, \"Communication Services\"), you agree to use the Communication Services only to post, send and receive messages and material that are proper and related to the particular Communication Service. By way of example, and not as a limitation, you agree that when using a Communication Service, you will not:\n<ul>\n 	<li>Defame, abuse, harass, stalk, threaten or otherwise violate the legal rights (such as rights of privacy and publicity) of others.</li>\n 	<li>Publish, post, upload, distribute or disseminate any inappropriate, profane, defamatory, infringing, obscene, indecent or unlawful topic, name, material or information.</li>\n 	<li>Upload files that contain software or other material protected by intellectual property laws (or by rights of privacy of publicity) unless you own or control the rights thereto or have received all necessary consents.</li>\n 	<li>Upload files that contain viruses, corrupted files, or any other similar software or programs that may damage the operation of another\'s computer.</li>\n 	<li>Advertise or offer to sell or buy any goods or services for any business purpose, unless such Communication Service specifically allows such messages.</li>\n 	<li>Conduct or forward surveys, contests, pyramid schemes or chain letters.</li>\n 	<li>Download any file posted by another user of a Communication Service that you know, or reasonably should know, cannot be legally distributed in such manner.</li>\n 	<li>Falsify or delete any author attributions, legal or other proper notices or proprietary designations or labels of the origin or source of software or other material contained in a file that is uploaded.</li>\n 	<li>Restrict or inhibit any other user from using and enjoying the Communication Services.</li>\n 	<li>Violate any code of conduct or other guidelines which may be applicable for any particular Communication Service.</li>\n 	<li>Harvest or otherwise collect information about others, including e-mail addresses, without their consent.</li>\n 	<li>Violate any applicable laws or regulations.</li>\n</ul>\nDr. Fields has no obligation to monitor the Communication Services. However, Dr. Fields reserves the right to review materials posted to a Communication Service and to remove any materials in its sole discretion. Dr. Fields reserves the right to terminate your access to any or all of the Communication Services at any time without notice for any reason whatsoever.\n\nDr. Fields reserves the right at all times to disclose any information as necessary to satisfy any applicable law, regulation, legal process or governmental request, or to edit, refuse to post or to remove any information or materials, in whole or in part, in Dr. Fields\'s sole discretion.\n\nAlways use caution when giving out any personally identifying information about yourself or your children in any Communication Service. Dr. Fields does not control or endorse the content, messages or information found in any Communication Service and, therefore, Dr. Fields specifically disclaims any liability with regard to the Communication Services and any actions resulting from your participation in any Communication Service. Managers and hosts are not authorized Dr. Fields spokespersons, and their views do not necessarily reflect those of Dr. Fields.\n\nMaterials uploaded to a Communication Service may be subject to posted limitations on usage, reproduction and/or dissemination. You are responsible for adhering to such limitations if you download the materials.\n\n<strong>MATERIALS PROVIDED TO Dr. Fields OR POSTED AT ANY Dr. Fields WEB SITE</strong>\nDr. Fields does not claim ownership of the materials you provide to Dr. Fields (including feedback and suggestions) or post, upload, input or submit to any Dr. Fields Web Site or its associated services (collectively \"Submissions\"). However, by posting, uploading, inputting, providing or submitting your Submission you are granting Dr. Fields, its affiliated companies and necessary sublicensees permission to use your Submission in connection with the operation of their Internet businesses including, without limitation, the rights to: copy, distribute, transmit, publicly display, publicly perform, reproduce, edit, translate and reformat your Submission; and to publish your name in connection with your Submission.\n\nNo compensation will be paid with respect to the use of your Submission, as provided herein. Dr. Fields is under no obligation to post or use any Submission you may provide and may remove any Submission at any time in Dr. Fields\'s sole discretion.\n\nBy posting, uploading, inputting, providing or submitting your Submission you warrant and represent that you own or otherwise control all of the rights to your Submission as described in this section including, without limitation, all the rights necessary for you to provide, post, upload, input or submit the Submissions.\n\n<strong>LIABILITY DISCLAIMER</strong>\n\nTHE INFORMATION, SOFTWARE, PRODUCTS, AND SERVICES INCLUDED IN OR AVAILABLE THROUGH THE Dr. Fields WEB SITE MAY INCLUDE INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION HEREIN. Dr. Fields AND/OR ITS SUPPLIERS MAY MAKE IMPROVEMENTS AND/OR CHANGES IN THE Dr. Fields WEB SITE AT ANY TIME. ADVICE RECEIVED VIA THE Dr. Fields WEB SITE SHOULD NOT BE RELIED UPON FOR PERSONAL, MEDICAL, LEGAL OR FINANCIAL DECISIONS AND YOU SHOULD CONSULT AN APPROPRIATE PROFESSIONAL FOR SPECIFIC ADVICE TAILORED TO YOUR SITUATION.\n\nDr. Fields AND/OR ITS SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY, RELIABILITY, AVAILABILITY, TIMELINESS, AND ACCURACY OF THE INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS CONTAINED ON THE Dr. Fields WEB SITE FOR ANY PURPOSE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, ALL SUCH INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OR CONDITION OF ANY KIND. Dr. Fields AND/OR ITS SUPPLIERS HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THIS INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS, INCLUDING ALL IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT.\n\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL Dr. Fields AND/OR ITS SUPPLIERS BE LIABLE FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, SPECIAL, CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF USE, DATA OR PROFITS, ARISING OUT OF OR IN ANY WAY CONNECTED WITH THE USE OR PERFORMANCE OF THE Dr. Fields WEB SITE, WITH THE DELAY OR INABILITY TO USE THE Dr. Fields WEB SITE OR RELATED SERVICES, THE PROVISION OF OR FAILURE TO PROVIDE SERVICES, OR FOR ANY INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS OBTAINED THROUGH THE Dr. Fields WEB SITE, OR OTHERWISE ARISING OUT OF THE USE OF THE Dr. Fields WEB SITE, WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, EVEN IF Dr. Fields OR ANY OF ITS SUPPLIERS HAS BEEN ADVISED OF THE POSSIBILITY OF DAMAGES. BECAUSE SOME STATES/JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU. IF YOU ARE DISSATISFIED WITH ANY PORTION OF THE Dr. Fields WEB SITE, OR WITH ANY OF THESE TERMS OF USE, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE USING THE Dr. Fields WEB SITE.\n\n<strong>SERVICE CONTACT :</strong> pcc@drfields.com\n\n<strong>TERMINATION/ACCESS RESTRICTION</strong>\n\nDr. Fields reserves the right, in its sole discretion, to terminate your access to the Dr. Fields Web Site and the related services or any portion thereof at any time, without notice. To the maximum extent permitted by law, this agreement is governed by the laws of the State of California, U.S.A. and you hereby consent to the exclusive jurisdiction and venue of courts in Los Angeles County, California, U.S.A. in all disputes arising out of or relating to the use of the Dr. Fields Web Site. Use of the Dr. Fields Web Site is unauthorized in any jurisdiction that does not give effect to all provisions of these terms and conditions, including without limitation this paragraph. You agree that no joint venture, partnership, employment, or agency relationship exists between you and Dr. Fields as a result of this agreement or use of the Dr. Fields Web Site. Dr. Fields\'s performance of this agreement is subject to existing laws and legal process, and nothing contained in this agreement is in derogation of Dr. Fields\'s right to comply with governmental, court and law enforcement requests or requirements relating to your use of the Dr. Fields Web Site or information provided to or gathered by Dr. Fields with respect to such use. If any part of this agreement is determined to be invalid or unenforceable pursuant to applicable law including, but not limited to, the warranty disclaimers and liability limitations set forth above, then the invalid or unenforceable provision will be deemed superseded by a valid, enforceable provision that most closely matches the intent of the original provision and the remainder of the agreement shall continue in effect. Unless otherwise specified herein, this agreement constitutes the entire agreement between the user and Dr. Fields with respect to the Dr. Fields Web Site and it supersedes all prior or contemporaneous communications and proposals, whether electronic, oral or written, between the user and Dr. Fields with respect to the Dr. Fields Web Site. A printed version of this agreement and of any notice given in electronic form shall be admissible in judicial or administrative proceedings based upon or relating to this agreement to the same extent and subject to the same conditions as other business documents and records originally generated and maintained in printed form. It is the express wish to the parties that this agreement and all related documents be drawn up in English.\n\n<strong>COPYRIGHT AND TRADEMARK NOTICES:</strong>\n\nAll contents of the Dr. Fields Web Site are: ©2019 OrthoRegen. All rights reserved.\n\n<strong>TRADEMARKS</strong>\n\n<u>THE ATHLETIC DOC is a registered trademark owned by and ORTHOREGEN is a trademark owned by Peter A. Fields MD, Inc., a California corporation.</u>\n\nThe names of actual companies and products mentioned herein may be the trademarks of their respective owners.\n\nAny rights not expressly granted herein are reserved.\n\n<strong>NOTICES AND PROCEDURE FOR MAKING CLAIMS OF COPYRIGHT INFRINGEMENT</strong>\n\nPursuant to Title 17, United States Code, Section 512(c)(2), notifications of claimed copyright infringement under United States copyright law should be sent to pcc@drfields.com. ALL INQUIRIES NOT RELEVANT  WILL RECEIVE NO RESPONSE.','Terms','','inherit','closed','closed','','977-autosave-v1','','','2019-09-19 23:37:09','2019-09-19 23:37:09','',977,'https://www.drfields.com/uncategorized/977-autosave-v1/',0,'revision','',0),(2778,8,'2019-09-18 22:07:58','2019-09-18 22:07:58','<strong>AGREEMENT BETWEEN USER AND Dr. Fields</strong>\r\n\r\nThe Dr. Fields Web Site is comprised of various Web pages operated by Dr. Fields.\r\n\r\nThe Dr. Fields Web Site is offered to you conditioned on your acceptance without modification of the terms, conditions, and notices contained herein. Your use of the Dr. Fields Web Site constitutes your agreement to all such terms, conditions, and notices.\r\n\r\n<strong>MODIFICATION OF THESE TERMS OF USE</strong>\r\n\r\nDr. Fields reserves the right to change the terms, conditions, and notices under which the Dr. Fields Web Site is offered, including but not limited to the charges associated with the use of the Dr. Fields Web Site.\r\n\r\n<strong>LINKS TO THIRD PARTY SITES</strong>\r\n\r\nThe Dr. Fields Web Site may contain links to other Web Sites (\"Linked Sites\"). The Linked Sites are not under the control of Dr. Fields and Dr. Fields is not responsible for the contents of any Linked Site, including without limitation any link contained in a Linked Site, or any changes or updates to a Linked Site. Dr. Fields is not responsible for webcasting or any other form of transmission received from any Linked Site. Dr. Fields is providing these links to you only as a convenience, and the inclusion of any link does not imply endorsement by Dr. Fields of the site or any association with its operators.\r\n\r\n<strong>NO UNLAWFUL OR PROHIBITED USE</strong>\r\n\r\nAs a condition of your use of the Dr. Fields Web Site, you warrant to Dr. Fields that you will not use the Dr. Fields Web Site for any purpose that is unlawful or prohibited by these terms, conditions, and notices. You may not use the Dr. Fields Web Site in any manner which could damage, disable, overburden, or impair the Dr. Fields Web Site or interfere with any other party\'s use and enjoyment of the Dr. Fields Web Site. You may not obtain or attempt to obtain any materials or information through any means not intentionally made available or provided for through the Dr. Fields Web Sites.\r\n\r\n<strong>USE OF COMMUNICATION SERVICES</strong>\r\n\r\nThe Dr. Fields Web Site may contain bulletin board services, chat areas, news groups, forums, communities, personal web pages, calendars, and/or other message or communication facilities designed to enable you to communicate with the public at large or with a group (collectively, \"Communication Services\"), you agree to use the Communication Services only to post, send and receive messages and material that are proper and related to the particular Communication Service. By way of example, and not as a limitation, you agree that when using a Communication Service, you will not:\r\n<ul>\r\n 	<li>Defame, abuse, harass, stalk, threaten or otherwise violate the legal rights (such as rights of privacy and publicity) of others.</li>\r\n 	<li>Publish, post, upload, distribute or disseminate any inappropriate, profane, defamatory, infringing, obscene, indecent or unlawful topic, name, material or information.</li>\r\n 	<li>Upload files that contain software or other material protected by intellectual property laws (or by rights of privacy of publicity) unless you own or control the rights thereto or have received all necessary consents.</li>\r\n 	<li>Upload files that contain viruses, corrupted files, or any other similar software or programs that may damage the operation of another\'s computer.</li>\r\n 	<li>Advertise or offer to sell or buy any goods or services for any business purpose, unless such Communication Service specifically allows such messages.</li>\r\n 	<li>Conduct or forward surveys, contests, pyramid schemes or chain letters.</li>\r\n 	<li>Download any file posted by another user of a Communication Service that you know, or reasonably should know, cannot be legally distributed in such manner.</li>\r\n 	<li>Falsify or delete any author attributions, legal or other proper notices or proprietary designations or labels of the origin or source of software or other material contained in a file that is uploaded.</li>\r\n 	<li>Restrict or inhibit any other user from using and enjoying the Communication Services.</li>\r\n 	<li>Violate any code of conduct or other guidelines which may be applicable for any particular Communication Service.</li>\r\n 	<li>Harvest or otherwise collect information about others, including e-mail addresses, without their consent.</li>\r\n 	<li>Violate any applicable laws or regulations.</li>\r\n</ul>\r\nDr. Fields has no obligation to monitor the Communication Services. However, Dr. Fields reserves the right to review materials posted to a Communication Service and to remove any materials in its sole discretion. Dr. Fields reserves the right to terminate your access to any or all of the Communication Services at any time without notice for any reason whatsoever.\r\n\r\nDr. Fields reserves the right at all times to disclose any information as necessary to satisfy any applicable law, regulation, legal process or governmental request, or to edit, refuse to post or to remove any information or materials, in whole or in part, in Dr. Fields\'s sole discretion.\r\n\r\nAlways use caution when giving out any personally identifying information about yourself or your children in any Communication Service. Dr. Fields does not control or endorse the content, messages or information found in any Communication Service and, therefore, Dr. Fields specifically disclaims any liability with regard to the Communication Services and any actions resulting from your participation in any Communication Service. Managers and hosts are not authorized Dr. Fields spokespersons, and their views do not necessarily reflect those of Dr. Fields.\r\n\r\nMaterials uploaded to a Communication Service may be subject to posted limitations on usage, reproduction and/or dissemination. You are responsible for adhering to such limitations if you download the materials.\r\n\r\n<strong>MATERIALS PROVIDED TO Dr. Fields OR POSTED AT ANY Dr. Fields WEB SITE</strong>\r\nDr. Fields does not claim ownership of the materials you provide to Dr. Fields (including feedback and suggestions) or post, upload, input or submit to any Dr. Fields Web Site or its associated services (collectively \"Submissions\"). However, by posting, uploading, inputting, providing or submitting your Submission you are granting Dr. Fields, its affiliated companies and necessary sublicensees permission to use your Submission in connection with the operation of their Internet businesses including, without limitation, the rights to: copy, distribute, transmit, publicly display, publicly perform, reproduce, edit, translate and reformat your Submission; and to publish your name in connection with your Submission.\r\n\r\nNo compensation will be paid with respect to the use of your Submission, as provided herein. Dr. Fields is under no obligation to post or use any Submission you may provide and may remove any Submission at any time in Dr. Fields\'s sole discretion.\r\n\r\nBy posting, uploading, inputting, providing or submitting your Submission you warrant and represent that you own or otherwise control all of the rights to your Submission as described in this section including, without limitation, all the rights necessary for you to provide, post, upload, input or submit the Submissions.\r\n\r\n<strong>LIABILITY DISCLAIMER</strong>\r\n\r\nTHE INFORMATION, SOFTWARE, PRODUCTS, AND SERVICES INCLUDED IN OR AVAILABLE THROUGH THE Dr. Fields WEB SITE MAY INCLUDE INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION HEREIN. Dr. Fields AND/OR ITS SUPPLIERS MAY MAKE IMPROVEMENTS AND/OR CHANGES IN THE Dr. Fields WEB SITE AT ANY TIME. ADVICE RECEIVED VIA THE Dr. Fields WEB SITE SHOULD NOT BE RELIED UPON FOR PERSONAL, MEDICAL, LEGAL OR FINANCIAL DECISIONS AND YOU SHOULD CONSULT AN APPROPRIATE PROFESSIONAL FOR SPECIFIC ADVICE TAILORED TO YOUR SITUATION.\r\n\r\nDr. Fields AND/OR ITS SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY, RELIABILITY, AVAILABILITY, TIMELINESS, AND ACCURACY OF THE INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS CONTAINED ON THE Dr. Fields WEB SITE FOR ANY PURPOSE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, ALL SUCH INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OR CONDITION OF ANY KIND. Dr. Fields AND/OR ITS SUPPLIERS HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THIS INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS, INCLUDING ALL IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT.\r\n\r\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL Dr. Fields AND/OR ITS SUPPLIERS BE LIABLE FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, SPECIAL, CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF USE, DATA OR PROFITS, ARISING OUT OF OR IN ANY WAY CONNECTED WITH THE USE OR PERFORMANCE OF THE Dr. Fields WEB SITE, WITH THE DELAY OR INABILITY TO USE THE Dr. Fields WEB SITE OR RELATED SERVICES, THE PROVISION OF OR FAILURE TO PROVIDE SERVICES, OR FOR ANY INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS OBTAINED THROUGH THE Dr. Fields WEB SITE, OR OTHERWISE ARISING OUT OF THE USE OF THE Dr. Fields WEB SITE, WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, EVEN IF Dr. Fields OR ANY OF ITS SUPPLIERS HAS BEEN ADVISED OF THE POSSIBILITY OF DAMAGES. BECAUSE SOME STATES/JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU. IF YOU ARE DISSATISFIED WITH ANY PORTION OF THE Dr. Fields WEB SITE, OR WITH ANY OF THESE TERMS OF USE, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE USING THE Dr. Fields WEB SITE.\r\n\r\n<strong>SERVICE CONTACT :</strong> pcc@drfields.com\r\n\r\n<strong>TERMINATION/ACCESS RESTRICTION</strong>\r\n\r\nDr. Fields reserves the right, in its sole discretion, to terminate your access to the Dr. Fields Web Site and the related services or any portion thereof at any time, without notice. GENERAL To the maximum extent permitted by law, this agreement is governed by the laws of the State of California, U.S.A. and you hereby consent to the exclusive jurisdiction and venue of courts in Los Angeles County, California, U.S.A. in all disputes arising out of or relating to the use of the Dr. Fields Web Site. Use of the Dr. Fields Web Site is unauthorized in any jurisdiction that does not give effect to all provisions of these terms and conditions, including without limitation this paragraph. You agree that no joint venture, partnership, employment, or agency relationship exists between you and Dr. Fields as a result of this agreement or use of the Dr. Fields Web Site. Dr. Fields\'s performance of this agreement is subject to existing laws and legal process, and nothing contained in this agreement is in derogation of Dr. Fields\'s right to comply with governmental, court and law enforcement requests or requirements relating to your use of the Dr. Fields Web Site or information provided to or gathered by Dr. Fields with respect to such use. If any part of this agreement is determined to be invalid or unenforceable pursuant to applicable law including, but not limited to, the warranty disclaimers and liability limitations set forth above, then the invalid or unenforceable provision will be deemed superseded by a valid, enforceable provision that most closely matches the intent of the original provision and the remainder of the agreement shall continue in effect. Unless otherwise specified herein, this agreement constitutes the entire agreement between the user and Dr. Fields with respect to the Dr. Fields Web Site and it supersedes all prior or contemporaneous communications and proposals, whether electronic, oral or written, between the user and Dr. Fields with respect to the Dr. Fields Web Site. A printed version of this agreement and of any notice given in electronic form shall be admissible in judicial or administrative proceedings based upon or relating to this agreement to the same extent and subject to the same conditions as other business documents and records originally generated and maintained in printed form. It is the express wish to the parties that this agreement and all related documents be drawn up in English.\r\n\r\n<strong>COPYRIGHT AND TRADEMARK NOTICES:</strong>\r\n\r\nAll contents of the Dr. Fields Web Site are: ©2019 OrthoRegen. All rights reserved.\r\n\r\n<strong>TRADEMARKS</strong>\r\n\r\n<u>THE ATHLETIC DOC is a registered trademark owned by and ORTHOREGEN is a trademark owned by Peter A. Fields MD, Inc., a California corporation.</u>\r\n\r\nThe names of actual companies and products mentioned herein may be the trademarks of their respective owners.\r\n\r\nAny rights not expressly granted herein are reserved.\r\n\r\n<strong>NOTICES AND PROCEDURE FOR MAKING CLAIMS OF COPYRIGHT INFRINGEMENT</strong>\r\n\r\nPursuant to Title 17, United States Code, Section 512(c)(2), notifications of claimed copyright infringement under United States copyright law should be sent to pcc@drfields.com. ALL INQUIRIES NOT RELEVANT  WILL RECEIVE NO RESPONSE. See Notice and Procedure for Making Claims of Copyright Infringement.','Terms','','inherit','closed','closed','','977-revision-v1','','','2019-09-18 22:07:58','2019-09-18 22:07:58','',977,'https://www.drfields.com/uncategorized/977-revision-v1/',0,'revision','',0),(2779,8,'2022-07-27 04:07:05','2022-07-27 04:07:05','<h1>Report of My Kilimanjaro Climb</h1>\n<em>By Peter A. Fields, MD, DC</em>\n\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\n<h3>Getting to Mount Kilimanjaro</h3>\n<div class=\"reports-img-desc\">\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\n<div class=\"reports-desc\">\n\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\n</div>\n</div>\n&nbsp;\n<h2>Kilimanjaro Pre-Hike</h2>\n<div class=\"reports-img-desc\">\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\n<div class=\"reports-desc\">\n\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\n</div>\n</div>\n&nbsp;\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\n<div class=\"reports-img-desc\">\n<div class=\"imgbox\"></div>\n<div class=\"reports-desc\">\n\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\n\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\n</div>\n</div>\n&nbsp;\n<h3>Hiking to 11,400 ft</h3>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\n<div class=\"reports-img-desc\">\n  <div class=\"imgbox\"></div>\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\n\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\n\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\n\n<div class=\"btn-wrap\">\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\n</div>\n&nbsp;\n<h3>Hiking to 13,400 ft</h3>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\n<div class=\"reports-img-desc\">\n  <div class=\"imgbox\"></div>\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\n\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\n<div class=\"btn-wrap\">\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\n</div>\n&nbsp;\n<h3>Kili Hiking to 15,500 feet</h3>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\n<div class=\"reports-img-desc\">\n  <div class=\"imgbox\"></div>\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\n<div class=\"btn-wrap\">\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\n</div>\n&nbsp;\n<h3>Getting to camp at 16,500 ft</h3>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\n<div class=\"reports-img-desc\">\n  <div class=\"imgbox\"></div>\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\n<div class=\"btn-wrap\">\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\n</div>\n\n&nbsp;\n<h3>Kilimanjaro Final Camp At 18,500 Feet</h3>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\n<div class=\"reports-img-desc\">\n  <div class=\"imgbox\"></div>\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \n\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\n\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\n\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\n\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\n\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\n\n<div class=\"btn-wrap\">\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\n</div>\n&nbsp;\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\n<div class=\"reports-img-desc\">\n  <div class=\"imgbox\"></div>\n  <div class=\"reports-desc\">The night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\n    \nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\n\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\n\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\n\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\n\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\n\n<div class=\"btn-wrap\">\n<a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\n</div>\n&nbsp;\n<h3>The descent and saying goodbye</h3>\n<div class=\"reports-img-desc\">\n  <div class=\"imgbox\"></div>\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" class=\"alignleft\" width=\"400\">We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\n\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\n\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\n\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\n\n<div class=\"btn-wrap\">\n<a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\n</div></div>\n</div>\n&nbsp;\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\n<div class=\"reports-img-desc\">\n  <div class=\"imgbox\"></div>\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg\" class=\"alignleft\" width=\"400\"/>Even though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I’ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I’ve ever done. And that includes all my Ironman competitions.\n\nYou just can’t imagine what it’s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\n\nI’ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It’s a tremendous accomplishment, but something I would not want to repeat.\n\n<div class=\"btn-wrap\">\n<a href=\"/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\n</div></div>\n</div>\n&nbsp;\n<div class=\"video-flex-wrap\">\n<div class=\"video-box\">\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\n</div>\n<div class=\"video-box\">\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\">\n</div>\n</div>\n\n&nbsp;\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\n\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\nAs I said above, they were with me the whole way and always will be.\n\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\n\n<strong>Peter A. Fields, MD, DC </strong>\n<strong>The Athletic Doc<sup>®</sup></strong>\n\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-autosave-v1','','','2022-07-27 04:07:05','2022-07-27 04:07:05','',2208,'https://www.drfields.com/uncategorized/2208-autosave-v1/',0,'revision','',0),(2780,8,'2019-09-19 01:34:49','2019-09-19 01:34:49','<h4>Report of My Kilimanjaro Climb</h4>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nTen years ago, while doing volunteer medical work in Honduras, a nurse told me that she and her husband had just climbed Mount Kilimanjaro. Upon returning to the States, I requested a brochure, and it has been sitting on my coffee table for the past ten years. This year, I finally decided it was about time to climb Kilimanjaro.\r\n<h3>Arrival</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nAfter flying from Los Angeles to London and then to Nairobi, the plane finally arrived at the Kilimanjaro airport. A two-and-a-half-hour ride followed that flight, and half of it was on a very bumpy dirt road, before reaching the base camp destination. By now it was almost midnight, and I went straight to my tent, which amazingly was quite luxurious considering it was camping. It even included a sink, a bathroom and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain and loosen our legs.\r\nIt was beautiful, with waterfalls and lots of lush plants and greenery. Later, the head guide went through my entire pack to make sure that we would be taking all we needed and that everything was in good shape. The rest of the day was spent relaxing, except for a short sunset hike of 10 minutes, where they had wine waiting for us at the top of the small hill.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike</h3>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts, since we were only 3 degrees north of the equator. There we saw the more than 45 plus Sherpas that would accompany us. There were six Sherpa alone just to carry each person\'s equipment (there were six of us). Additionally, six Sherpa would carry our food for seven days, eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, plus about ten other Porters would carry all the tents, tables and chairs. There were also ten more to carry all of the other Porters’ food and equipment.\r\n\r\nWe had to register and show our passports, and after that we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7,700 feet and climbed to 9,300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9,300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and afterwards we started off to hike again. We headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\nFor this type of hiking, it’s important to eat three square meals a day and drink a minimum of three liters of water daily for the required energy and for prevention of dehydration. I fortunately felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. In addition, I carried a Camelback system on my back, which is a water bag with tubing for drinking kept inside of my backpack, enabling me to drink copious amounts of water and stay hydrated. It was cold at night, but with the proper gear I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call and a good breakfast. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the Upper Heath Zone, because there were no longer any trees there, just a lot of different plants as well as volcanic rock, since the last active volcano took place there over 10,000 years ago.\r\n\r\nThe hiking was very slow and consistent, which in Swahili they call, “Polli, Polli.” Again, I felt very good when arriving at Moir Camp at 13,500 feet. We had beautiful views on the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30AM, had breakfast at 7 and were hiking by 7:30. We had a shorter hike of only 3.1 miles, but we did climb 2,000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived in camp after hiking only 2 hours and 20 minutes to an elevation of 15,500 feet. The air was very thin at this elevation, and you think about every single step you take. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I took about a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the magnificent skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees, and with the sun out, we were warm when we hiked but a little bit cooler when clouds were overhead. The hike was only one thousand feet of climbing, and a short hike to the base camp. Tomorrow’s big hike will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was cancelled. Tomorrow morning we will have a 4AM wake-up call in anticipation of a 2,300 foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4AM and breakfast at 4:30. The slower hiker group left at 5. We left about 5:30. At this point, the altitude is over 16,000 feet, and everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it became extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlights. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountain side since the snow had obliterated the trail the night before. We were now at over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier for our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb and even needed to kneel on the next step up because the following step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air, meant we could only take three or four steps before needing to stop for a break. Finally, we reached Craters Ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. Once we did that, we were able to enjoy a well-deserved nap before an early dinner because we would be getting up again at 4AM to climb to the top of Mount Kilimanjaro!\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341 [/caption]\r\n\r\nThe night was extremely cold, with ground temperatures dropping down to about zero degrees Fahrenheit. We did everything to keep ourselves warm. I slept on two thin air mattresses, and to stay warmer, laid my down jacket on top of my sleeping bag which was rated to zero degrees. It also had a liner inside which gave me an additional 25 degrees of warmth.\r\n\r\nWe were woken up at 4 AM. After eating and packing our stuff, we were off for a 75 minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. That was a miracle for me, because I usually always have cold hands and feet, even in Southern California! Nonetheless, my legs and face took the brunt of the cold, and we moved very, very slowly. After a very difficult, straight up climb, we had to cross a flat plane to the actual top of the mountain. It was really cold. The temperature was probably about minus 7 or 10 degrees Fahrenheit. The wind was blowing like crazy, at least 30 mph, and with the wind chill, it felt like negative 42 or 50 degrees Fahrenheit.\r\nBut all 6 of us had made it. It was a special feeling…an unbelievable feeling! Words are hard to describe it. Yes, I had finally made it, and the views were spectacular!!\r\nI always carry some ashes of my parents no matter where I travel to in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it with me the entire way.\r\n\r\nWe all took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise\r\n\r\nsince it was only about 7 in the morning. We were close to the equator, and sunrise and sunsets are always around the same time without much variation from season to season.\r\nOnce we started to go down, we could immediately feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quadriceps muscles in the front of our upper legs really felt it, and we had downhill walking for the next 5 to 6 hours! We did stop for a small break for some lunch, but appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches and weakness. I had none of that but did have loss of appetite and slight weakness going down for a short time.\r\n\r\nAnyway, we finally made it to the camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30AM, which was a big difference from 4AM. Today would be our last night, and we would be saying goodbye to all the Porters. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so Porters gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3 minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7 hour hike downhill. Although it was not very steep, this dried up river bed was full of rocks and stones, making footing uneasy, and causing our quadriceps muscles to be even more on fire. But we knew the end was coming, helping us to press forward. We stopped for lunch and continued on. After about 7 hours, the final spot was in sight…the area where we would exit the park. Nothing could be sweeter! I signed out at the Ranger Station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days I could take a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7PM. That night, was my first night sleep in a bed in nine days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Postscript</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet that sat on my coffee table for ten years, it was something I had had on my bucket list for all of that time. The adventure was quite challenging and extremely difficult at times. Some of our hikers had difficulty even moving. It was so hard that they required assistance. But we all persevered. In my life, I’ve completed 10 Ironman races so far. These competitions require monumental training. But during this Mount Kilimanjaro trek, with the long hike up to the crater from 16,800 feet to 18,400, and the subsequent days of summiting, followed by the 9,000 foot descent, I faced some of the hardest things that I\'ve ever done. And that includes my ten Ironman competitions.\r\n\r\n&nbsp;\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. It\'s similar to having a paper bag over your head and trying to breathe. There were times I took two or three steps and then had to pause for 15, 20 or even 30 seconds, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 30-60 seconds to cross. All of this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep us going.\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h2 style=\"text-align: center;\">Post Postscript</h2>\r\nThank you to everyone who sent me well wishes before, during, and after my climb. It meant so much! I thank my parents who gave me the will and determination to achieve all of the goals in my life, no matter how hard they are. They always ingrained this determination in me and encouraged me to just put my head down and keep going. As I said above, they were with me the whole way and always will be.','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2019-09-19 01:34:49','2019-09-19 01:34:49','',2208,'https://www.drfields.com/uncategorized/2208-revision-v1/',0,'revision','',0),(2782,8,'2019-09-19 23:40:06','2019-09-19 23:40:06','<strong>AGREEMENT BETWEEN USER AND Dr. Fields</strong>\r\n\r\nThe Dr. Fields Web Site is comprised of various Web pages operated by Dr. Fields.\r\n\r\nThe Dr. Fields Web Site is offered to you conditioned on your acceptance without modification of the terms, conditions, and notices contained herein. Your use of the Dr. Fields Web Site constitutes your agreement to all such terms, conditions, and notices.\r\n\r\n<strong>MODIFICATION OF THESE TERMS OF USE</strong>\r\n\r\nDr. Fields reserves the right to change the terms, conditions, and notices under which the Dr. Fields Web Site is offered, including but not limited to the charges associated with the use of the Dr. Fields Web Site.\r\n\r\n<strong>LINKS TO THIRD PARTY SITES</strong>\r\n\r\nThe Dr. Fields Web Site may contain links to other Web Sites (\"Linked Sites\"). The Linked Sites are not under the control of Dr. Fields and Dr. Fields is not responsible for the contents of any Linked Site, including without limitation any link contained in a Linked Site, or any changes or updates to a Linked Site. Dr. Fields is not responsible for webcasting or any other form of transmission received from any Linked Site. Dr. Fields is providing these links to you only as a convenience, and the inclusion of any link does not imply endorsement by Dr. Fields of the site or any association with its operators.\r\n\r\n<strong>NO UNLAWFUL OR PROHIBITED USE</strong>\r\n\r\nAs a condition of your use of the Dr. Fields Web Site, you warrant to Dr. Fields that you will not use the Dr. Fields Web Site for any purpose that is unlawful or prohibited by these terms, conditions, and notices. You may not use the Dr. Fields Web Site in any manner which could damage, disable, overburden, or impair the Dr. Fields Web Site or interfere with any other party\'s use and enjoyment of the Dr. Fields Web Site. You may not obtain or attempt to obtain any materials or information through any means not intentionally made available or provided for through the Dr. Fields Web Sites.\r\n\r\n<strong>USE OF COMMUNICATION SERVICES</strong>\r\n\r\nThe Dr. Fields Web Site may contain bulletin board services, chat areas, news groups, forums, communities, personal web pages, calendars, and/or other message or communication facilities designed to enable you to communicate with the public at large or with a group (collectively, \"Communication Services\"), you agree to use the Communication Services only to post, send and receive messages and material that are proper and related to the particular Communication Service. By way of example, and not as a limitation, you agree that when using a Communication Service, you will not:\r\n<ul>\r\n 	<li>Defame, abuse, harass, stalk, threaten or otherwise violate the legal rights (such as rights of privacy and publicity) of others.</li>\r\n 	<li>Publish, post, upload, distribute or disseminate any inappropriate, profane, defamatory, infringing, obscene, indecent or unlawful topic, name, material or information.</li>\r\n 	<li>Upload files that contain software or other material protected by intellectual property laws (or by rights of privacy of publicity) unless you own or control the rights thereto or have received all necessary consents.</li>\r\n 	<li>Upload files that contain viruses, corrupted files, or any other similar software or programs that may damage the operation of another\'s computer.</li>\r\n 	<li>Advertise or offer to sell or buy any goods or services for any business purpose, unless such Communication Service specifically allows such messages.</li>\r\n 	<li>Conduct or forward surveys, contests, pyramid schemes or chain letters.</li>\r\n 	<li>Download any file posted by another user of a Communication Service that you know, or reasonably should know, cannot be legally distributed in such manner.</li>\r\n 	<li>Falsify or delete any author attributions, legal or other proper notices or proprietary designations or labels of the origin or source of software or other material contained in a file that is uploaded.</li>\r\n 	<li>Restrict or inhibit any other user from using and enjoying the Communication Services.</li>\r\n 	<li>Violate any code of conduct or other guidelines which may be applicable for any particular Communication Service.</li>\r\n 	<li>Harvest or otherwise collect information about others, including e-mail addresses, without their consent.</li>\r\n 	<li>Violate any applicable laws or regulations.</li>\r\n</ul>\r\nDr. Fields has no obligation to monitor the Communication Services. However, Dr. Fields reserves the right to review materials posted to a Communication Service and to remove any materials in its sole discretion. Dr. Fields reserves the right to terminate your access to any or all of the Communication Services at any time without notice for any reason whatsoever.\r\n\r\nDr. Fields reserves the right at all times to disclose any information as necessary to satisfy any applicable law, regulation, legal process or governmental request, or to edit, refuse to post or to remove any information or materials, in whole or in part, in Dr. Fields\'s sole discretion.\r\n\r\nAlways use caution when giving out any personally identifying information about yourself or your children in any Communication Service. Dr. Fields does not control or endorse the content, messages or information found in any Communication Service and, therefore, Dr. Fields specifically disclaims any liability with regard to the Communication Services and any actions resulting from your participation in any Communication Service. Managers and hosts are not authorized Dr. Fields spokespersons, and their views do not necessarily reflect those of Dr. Fields.\r\n\r\nMaterials uploaded to a Communication Service may be subject to posted limitations on usage, reproduction and/or dissemination. You are responsible for adhering to such limitations if you download the materials.\r\n\r\n<strong>MATERIALS PROVIDED TO Dr. Fields OR POSTED AT ANY Dr. Fields WEB SITE</strong>\r\nDr. Fields does not claim ownership of the materials you provide to Dr. Fields (including feedback and suggestions) or post, upload, input or submit to any Dr. Fields Web Site or its associated services (collectively \"Submissions\"). However, by posting, uploading, inputting, providing or submitting your Submission you are granting Dr. Fields, its affiliated companies and necessary sublicensees permission to use your Submission in connection with the operation of their Internet businesses including, without limitation, the rights to: copy, distribute, transmit, publicly display, publicly perform, reproduce, edit, translate and reformat your Submission; and to publish your name in connection with your Submission.\r\n\r\nNo compensation will be paid with respect to the use of your Submission, as provided herein. Dr. Fields is under no obligation to post or use any Submission you may provide and may remove any Submission at any time in Dr. Fields\'s sole discretion.\r\n\r\nBy posting, uploading, inputting, providing or submitting your Submission you warrant and represent that you own or otherwise control all of the rights to your Submission as described in this section including, without limitation, all the rights necessary for you to provide, post, upload, input or submit the Submissions.\r\n\r\n<strong>LIABILITY DISCLAIMER</strong>\r\n\r\nTHE INFORMATION, SOFTWARE, PRODUCTS, AND SERVICES INCLUDED IN OR AVAILABLE THROUGH THE Dr. Fields WEB SITE MAY INCLUDE INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION HEREIN. Dr. Fields AND/OR ITS SUPPLIERS MAY MAKE IMPROVEMENTS AND/OR CHANGES IN THE Dr. Fields WEB SITE AT ANY TIME. ADVICE RECEIVED VIA THE Dr. Fields WEB SITE SHOULD NOT BE RELIED UPON FOR PERSONAL, MEDICAL, LEGAL OR FINANCIAL DECISIONS AND YOU SHOULD CONSULT AN APPROPRIATE PROFESSIONAL FOR SPECIFIC ADVICE TAILORED TO YOUR SITUATION.\r\n\r\nDr. Fields AND/OR ITS SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY, RELIABILITY, AVAILABILITY, TIMELINESS, AND ACCURACY OF THE INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS CONTAINED ON THE Dr. Fields WEB SITE FOR ANY PURPOSE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, ALL SUCH INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OR CONDITION OF ANY KIND. Dr. Fields AND/OR ITS SUPPLIERS HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THIS INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS, INCLUDING ALL IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT.\r\n\r\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL Dr. Fields AND/OR ITS SUPPLIERS BE LIABLE FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, SPECIAL, CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF USE, DATA OR PROFITS, ARISING OUT OF OR IN ANY WAY CONNECTED WITH THE USE OR PERFORMANCE OF THE Dr. Fields WEB SITE, WITH THE DELAY OR INABILITY TO USE THE Dr. Fields WEB SITE OR RELATED SERVICES, THE PROVISION OF OR FAILURE TO PROVIDE SERVICES, OR FOR ANY INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS OBTAINED THROUGH THE Dr. Fields WEB SITE, OR OTHERWISE ARISING OUT OF THE USE OF THE Dr. Fields WEB SITE, WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, EVEN IF Dr. Fields OR ANY OF ITS SUPPLIERS HAS BEEN ADVISED OF THE POSSIBILITY OF DAMAGES. BECAUSE SOME STATES/JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU. IF YOU ARE DISSATISFIED WITH ANY PORTION OF THE Dr. Fields WEB SITE, OR WITH ANY OF THESE TERMS OF USE, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE USING THE Dr. Fields WEB SITE.\r\n\r\n<strong>SERVICE CONTACT :</strong> pcc@drfields.com\r\n\r\n<strong>TERMINATION/ACCESS RESTRICTION</strong>\r\n\r\nDr. Fields reserves the right, in its sole discretion, to terminate your access to the Dr. Fields Web Site and the related services or any portion thereof at any time, without notice. To the maximum extent permitted by law, this agreement is governed by the laws of the State of California, U.S.A. and you hereby consent to the exclusive jurisdiction and venue of courts in Los Angeles County, California, U.S.A. in all disputes arising out of or relating to the use of the Dr. Fields Web Site. Use of the Dr. Fields Web Site is unauthorized in any jurisdiction that does not give effect to all provisions of these terms and conditions, including without limitation this paragraph. You agree that no joint venture, partnership, employment, or agency relationship exists between you and Dr. Fields as a result of this agreement or use of the Dr. Fields Web Site. Dr. Fields\'s performance of this agreement is subject to existing laws and legal process, and nothing contained in this agreement is in derogation of Dr. Fields\'s right to comply with governmental, court and law enforcement requests or requirements relating to your use of the Dr. Fields Web Site or information provided to or gathered by Dr. Fields with respect to such use. If any part of this agreement is determined to be invalid or unenforceable pursuant to applicable law including, but not limited to, the warranty disclaimers and liability limitations set forth above, then the invalid or unenforceable provision will be deemed superseded by a valid, enforceable provision that most closely matches the intent of the original provision and the remainder of the agreement shall continue in effect. Unless otherwise specified herein, this agreement constitutes the entire agreement between the user and Dr. Fields with respect to the Dr. Fields Web Site and it supersedes all prior or contemporaneous communications and proposals, whether electronic, oral or written, between the user and Dr. Fields with respect to the Dr. Fields Web Site. A printed version of this agreement and of any notice given in electronic form shall be admissible in judicial or administrative proceedings based upon or relating to this agreement to the same extent and subject to the same conditions as other business documents and records originally generated and maintained in printed form. It is the express wish to the parties that this agreement and all related documents be drawn up in English.\r\n\r\n<strong>COPYRIGHT AND TRADEMARK NOTICES:</strong>\r\n\r\nAll contents of the Dr. Fields Web Site are: ©2019 OrthoRegen. All rights reserved.\r\n\r\n<strong>TRADEMARKS</strong>\r\n\r\n<u>THE ATHLETIC DOC is a registered trademark owned by and ORTHOREGEN is a trademark owned by Peter A. Fields MD, Inc., a California corporation.</u>\r\n\r\nThe names of actual companies and products mentioned herein may be the trademarks of their respective owners.\r\n\r\nAny rights not expressly granted herein are reserved.\r\n\r\n<strong>NOTICES AND PROCEDURE FOR MAKING CLAIMS OF COPYRIGHT INFRINGEMENT</strong>\r\n\r\nPursuant to Title 17, United States Code, Section 512(c)(2), notifications of claimed copyright infringement under United States copyright law should be sent to pcc@drfields.com. ALL INQUIRIES NOT RELEVANT  WILL RECEIVE NO RESPONSE.','Terms','','inherit','closed','closed','','977-revision-v1','','','2019-09-19 23:40:06','2019-09-19 23:40:06','',977,'https://www.drfields.com/uncategorized/977-revision-v1/',0,'revision','',0),(2783,8,'2019-09-20 14:50:04','2019-09-20 14:50:04','<span style=\"font-weight: 400;\">People often choose surgery without understanding the risks or potential long-term results of the surgery. When considering surgery, people may think about the recovery time, the cost incurred, and the loss of work hours. They may even wonder if they really want an artificial joint, and if they are up to dealing with the pain involved in surgery. But does anyone think there may be a risk of stroke surrounding surgery? Strokes are a risk factor that is discussed when people face heart surgery, because of the possibility of blood clots during the bypass and all of the manipulation of blood vessels. But what about during other surgeries that are lower risk surgeries? Evidence does show that strokes occur in those without heart conditions too, and in people who are not considered high risk and to those who had no symptoms before surgery. In this article, we will present the findings from several research studies that investigate the perioperative stroke risk, because we want people to be educated and to fully explore their options before choosing an elective surgery. </span><span style=\"font-weight: 400;\">Perioperative stroke refers to a stroke that occurs during surgery or within 30 days after surgery.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>What Does the Research Say About Strokes and Surgery?</b>\r\n\r\n<span style=\"font-weight: 400;\">An article in the journal, “Lancet” investigated the occurrence of strokes in people who did not have stroke symptoms before the surgery. They also looked into the rate of cognitive decline after surgery. The study included 12 academic centers and 1114 people over a three year period. What were the results? The researchers found that 78 people, or 7%, had a stroke.</span><span style=\"font-weight: 400;\"> What about cognitive decline? A third of those who did not have a stroke were shown to have cognitive decline. So, what does all that mean? There is a risk of stroke and problems with deteriorating brain function in 1 out of 14 people who have elective surgery, even if they were not high risk to begin with. </span>\r\n\r\n<span style=\"font-weight: 400;\">Stroke really is a possible complication in surgeries that don’t involve the heart or neurological system. The risk increases in people over 65. Plus, the risk of death is higher for those who have a perioperative stroke. In the journal, “Anesthesiology,” the researchers investigated specific things that increased the risk of stroke from surgery in the non-cardiac and non-neurological cases. They looked at all different types of surgeries, including hip replacements, biopsies, hernia repair, arthroscopies, and knee repairs. This study found three types of surgeries with highest risk, which included hip replacement, removal of part of the intestine, and removal of part of the lung.  Other specifics that increase risk included older age, kidney disease, COPD, tobacco use, and elevated blood pressure. For those who do experience a perioperative stroke, the chance of dying within 30 days of the surgery is increased by 8 times. In this particular study, 229 of 173,028 people had a stroke during non-cardiac and non-neurologic surgery. </span>\r\n\r\n<b>What about surgery and anesthesia?</b>\r\n\r\n<span style=\"font-weight: 400;\">Another study in the journal “Anesthesia” took a look at stroke risk from surgery and anesthesia. They studied 1,455 stroke occurrences over a 25 year period, excluding those with cardiac, vascular, neurologic, and other high-risk conditions. What did they find? They were actually surprised to find out that surgery and anesthesia themselves were a significant risk of stroke, especially considering they left out the high risk folks with cardiac, vascular, or neurologic problems. </span>\r\n\r\n<span style=\"font-weight: 400;\">One more journal actually said the reason for stroke after surgery is “clear and highly predictable: </span><b>surgery.</b><span style=\"font-weight: 400;\">”</span><span style=\"font-weight: 400;\"> Surgery is necessary sometimes. But when there are alternatives to surgery, these options should be sought out. Keep in mind that surgery is often recommended on the basis of an MRI finding. However, these finding may not even be the cause of the pain. We encourage you to find a practitioner who will evaluate you well, and do a complete history and examination in order to make a proper diagnosis. Frequently, structural injuries, such as ligament and tendon injuries, are the underlying source of pain. Surgery often cuts through and removes some of these structures, which actually accelerates the arthritic process, and puts you in line for more surgery.</span>\r\n\r\n<span style=\"font-weight: 400;\">Fortunately, there is an alternative to surgery that is highly successful! Regenerative Orthopedics can be sought as a first-line, conservative treatment that can be tried before surgery because it is effective at relieving pain and allowing patients to return quickly to the sports, work, and activities they love. It is also an excellent choice for repair of joint injuries and painful musculoskeletal joint conditions, while avoiding the risk of stroke and other risks of elective surgery. If you have already had surgery, but continue to experience joint pain, Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy is still an option for pain relief and return to function. When joint injuries are limiting your life, Regenerative Orthopedics can get you the results you want quickly, more safely, and at a dramatically lower cost than surgery.</span>\r\n\r\n<hr />\r\n\r\n<span style=\"font-weight: 400;\">Perioperative covert stroke in patients undergoing non-cardiac surgery.</span><i><span style=\"font-weight: 400;\"> Lancet,</span></i><span style=\"font-weight: 400;\"> 2019. Doi.org/10.1016/SO140-6736(19)31795-7</span>\r\n\r\n<span style=\"font-weight: 400;\">Mashour GA, Shanks AM, Kheterpal S.Perioperative stroke and associated mortality after noncardiac, nonneurologic surgery.</span> <i><span style=\"font-weight: 400;\">Anesthesiology.</span></i><span style=\"font-weight: 400;\"> 2011; </span><b>114</b><span style=\"font-weight: 400;\">: 1289-1296.</span>\r\n\r\n<a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Gilbert%c2%a0Y.+Wong\"><span style=\"font-weight: 400;\">Gilbert Y. Wong, M.D.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=David%c2%a0O.+Warner\"><span style=\"font-weight: 400;\">David O. Warner, M.D.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Darrell%c2%a0R.+Schroeder\"><span style=\"font-weight: 400;\">Darrell R. Schroeder, M.S.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Kenneth%c2%a0P.+Offord\"><span style=\"font-weight: 400;\">Kenneth P. Offord, M.S.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Mark%c2%a0A.+Warner\"><span style=\"font-weight: 400;\">Mark A. Warner, M.D.</span></a><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">et al. </span><span style=\"font-weight: 400;\">Risk of surgery and anesthesia for ischemic stroke. </span><i><span style=\"font-weight: 400;\">Anesthesiology</span></i><span style=\"font-weight: 400;\">. 2000; 92: 425.</span>\r\n\r\n<span style=\"font-weight: 400;\">Mashour, George A. MD, PhD</span><span style=\"font-weight: 400;\">*</span><span style=\"font-weight: 400;\">; Moore, Laurel E. MD; Lele, Abhijit V. MD; Robicsek, Steven A. MD; Gelb, Adrian W. MBChB</span><span style=\"font-weight: 400;\">. </span><span style=\"font-weight: 400;\">Perioperative care of patients at high risk for stroke during or after non-cardiac, non-neurologic surgery: Consensus statement from the Society for Neuroscience in Anesthesiology and Critical Care. </span><span style=\"font-weight: 400;\"> </span><i><span style=\"font-weight: 400;\">Journal of Neurosurgical Anesthesiology.</span></i> <a href=\"https://journals.lww.com/jnsa/toc/2014/10000\"><span style=\"font-weight: 400;\"> 2014; 26(4): 273–285</span></a><span style=\"font-weight: 400;\">.</span>','Can Surgery Cause Strokes?','','inherit','closed','closed','','2697-revision-v1','','','2019-09-20 14:50:04','2019-09-20 14:50:04','',2697,'https://www.drfields.com/uncategorized/2697-revision-v1/',0,'revision','',0),(2785,8,'2019-09-23 22:40:09','2019-09-23 22:40:09','<span style=\"font-weight: 400;\">The shoulder is quite an amazing, and incredibly mobile joint. But injury to the glenoid labrum can keep you from reaching your sport or professional goals. If you are a tradesman or woman whose work requires repetitive overhead motion to accomplish your trade, and shoulder pain is making your day almost impossible, a labral injury may be part of the problem. Overhead strokes of a painter can be difficult, the strum of a chord for a guitar player might bring shooting pains, and a pitcher might experience pain while throwing a ball compromising big hopes for the season. Shoulder pain from a glenoid labrum injury can put a major damper on your life, and those suffering from the injury want a quick way out of the discomfort in order to get their lives back. Getting there non-surgically would be an added bonus. </span>\r\n\r\n<span style=\"font-weight: 400;\">The shoulder has a lot of mobility.  A lack of big ligamentous structures adds to the ability of the shoulder to move well, but that also makes it more prone to injury, since big ligament structures would add support. The glenoid labrum is a soft tissue structure that does provide stabilization for the shoulder, so it is an important shoulder structure. Athletes and others who rely on their shoulders for the movements necessary to carry out their sports and professions are especially susceptible to injuries and tears of the glenoid labrum.  There are a couple types of labral tears. A SLAP tear (Superior Labral, Anterior to Posterior) is one of the most common, and results in a tear from the front to back of the glenoid labrum. Other labral tears include flap tears, Bankart lesions, and degenerative lesions. </span>\r\n\r\n<span style=\"font-weight: 400;\">THE GLENOID LABRUM </span>\r\n\r\n<span style=\"font-weight: 400;\">The glenoid labrum </span><span style=\"font-weight: 400;\">is a smooth ring of fibrous cartilage that surrounds the socket part of the shoulder- a ball and socket joint. The shoulder joint has three bones that come together: the scapula (shoulder blade), the clavicle (collar bone), and the humerus (upper arm bone). The glenoid labrum is located where the top part of the upper arm comes into contact with the socket in the scapula, and it forms a deep pocket that helps keep the humerus bone in the shoulder socket and provides pain-free range of motion.</span> <span style=\"font-weight: 400;\">How does the glenoid labrum stabilize the shoulder and provide smooth movement? The ball at the top of the arm is larger than the socket, so the labrum helps to stabilize the shoulder by increasing the socket depth and providing a place for the ligaments and tendons to attach. </span><span style=\"font-weight: 400;\">When injured, the labrum is unable to do its job adequately, and pain and symptoms are experienced. Injuries to the labrum occur during traumatic events, with repetitive motions, or from recurrent dislocations. Other soft tissue, such as the ligaments and tendons, are often injured along with the damaged labrum, because forces strong enough to injure the labrum will also be sufficiently forceful to injure them too. Keep this in mind when seeking repair, because all the injured shoulder structures need to be treated in order to achieve complete healing of the shoulder joint. Otherwise, a cycle of shoulder injury, re-injury, and pain will be set in motion. </span>\r\n\r\n<b>Symptoms of a Labral Tear</b><span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">When the glenoid labrum is torn or injured, the shoulder may feel unstable, go out easily, and be susceptible to dislocations.  The shoulder may also click, catch, and lock because the torn parts get “trapped” when the shoulder joint moves. Pain is usually noticed with overhead activities, along with the popping, locking, catching, or grinding sensations during movement. Weakness, instability, and loss of range of motion may also be experienced. </span>\r\n\r\n<b>Glenoid Labrum Treated with Regenerative Orthopedics </b>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics effectively treats and repairs glenoid labrum injuries without the need for surgery. Athletes might consider surgery in an attempt to return quickly to their sport. But is a quick return the true outcome of surgical repair? Maybe not! Researchers in the medical journal “Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery” say, “SLAP repair in throwing athletes should be approached with caution. Surgery may help improve symptoms but may not guarantee a return to the preinjury level of competition. Even in the most expert of hands, the </span><b><i>rate of return to the preinjury level of performance ranges from 38% to 60% and is as low as 10% for pitchers</i></b><span style=\"font-weight: 400;\">.”</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics should be sought as a non-surgical alternative. Surgery is needed on rare occasions, but should be a last resort. Regenerative Orthopedics repairs the underlying joint instability of the shoulder joint, by treating all of the damaged soft tissue structures. Without this repair, the labral tear, ligament injury, or tendon damage will cause the shoulder to remain unstable, and shoulder problems, immobility and impingement will continue. </span>\r\n\r\n<span style=\"font-weight: 400;\">Besides being an effective treatment, Regenerative Orthopedics has several advantages. It is non-surgical, which avoids the risks of anesthesia, as well as the cutting, scraping, and probing, which can add to the instability of the joint. Other advantages include minimal time missed from work, and no long recovery times. Regenerative Orthopedics stimulates repair of the labrum and other soft tissue structures of the shoulder, significantly improving pain levels, alleviating stiffness and the need for pain medication, and returning motion back to the shoulder joint. The repair allows for an accelerated return to sport and the profession you enjoy. </span>\r\n\r\n&nbsp;','The Glenoid Labrum of the Shoulder','','inherit','closed','closed','','2773-revision-v1','','','2019-09-23 22:40:09','2019-09-23 22:40:09','',2773,'https://www.drfields.com/uncategorized/2773-revision-v1/',0,'revision','',0),(2786,0,'2019-09-24 04:42:48','2019-09-24 04:42:48','From: Mike Ivanov \n\nEmail: housedoctor911@yahoo.com\n\nPhone: 3233100609\n\nService:9am-11am\n\nMessage Body:\nHi dr. field\'s team!\r\nMy name is Mike Ivanov. I am a handyman with 30 years experience. A proud father of two children, and a believer. All the guys who work with me are my friends and partners. We do all repairs and remodeling quickly and efficiently: \r\n\r\nFurniture assembly, TV mounting, drywall holes repairs, leaking or clogged faucets, sinks and toilets, curtain hanging, security cameras, window replacement, door installation, flooring, tiling, painting and odd tasks - we do them all. \r\n\r\nWe proudly serve Los Angeles for 9 years and have no complaints. We serve during daytime, evenings, on weekends, on holidays and even at night to feed our families and give our children the good education.\r\n\r\nFor Service call or text 323-310-0609 and we come by and estimate.\r\n\r\nFrom an office chair assembly for $20 to a whole exterior painting for $$$ - you could rely your project with us. We don\'t take money up front (except for special order items). We are local so we buy local and can handle just about anything around your house or business. We usually can get to your job within hours, not weeks later!\r\n\r\nWe don\'t charge trip charges or service charges for estimates. If it\'s a small job, we often can quote those over the phone instantly. A lot of our competitors don\'t tell you what they charge and you have to pay just to find out! \r\n\r\nLook at our past projects\r\nhttps://www.instagram.com/westsidehandyman/\r\n(Email us housedoctor911@yahoo.com)\r\n\r\nMaterials can be pre-purchased and available on site or for smaller items we carry many materials needed for any job and we can provide them for a nominal fee. (tape, plastic, caulk, drywall, mud, screws, nails, etc)\r\n\r\nCall or text 323-310-0609 for estimate. I look forward to doing great work for you.\r\n\r\nThank you,\r\nMike\n\nAny Other Comments:\nHi dr. field\'s team!\r\nMy name is Mike Ivanov. I am a handyman with 30 years experience. A proud father of two children, and a believer. All the guys who work with me are my friends and partners. We do all repairs and remodeling quickly and efficiently: \r\n\r\nFurniture assembly, TV mounting, drywall holes repairs, leaking or clogged faucets, sinks and toilets, curtain hanging, security cameras, window replacement, door installation, flooring, tiling, painting and odd tasks - we do them all. \r\n\r\nWe proudly serve Los Angeles for 9 years and have no complaints. We serve during daytime, evenings, on weekends, on holidays and even at night to feed our families and give our children the good education.\r\n\r\nFor Service call or text 323-310-0609 and we come by and estimate.\r\n\r\nFrom an office chair assembly for $20 to a whole exterior painting for $$$ - you could rely your project with us. We don\'t take money up front (except for special order items). We are local so we buy local and can handle just about anything around your house or business. We usually can get to your job within hours, not weeks later!\r\n\r\nWe don\'t charge trip charges or service charges for estimates. If it\'s a small job, we often can quote those over the phone instantly. A lot of our competitors don\'t tell you what they charge and you have to pay just to find out! \r\n\r\nLook at our past projects\r\nhttps://www.instagram.com/westsidehandyman/\r\n(Email us housedoctor911@yahoo.com)\r\n\r\nMaterials can be pre-purchased and available on site or for smaller items we carry many materials needed for any job and we can provide them for a nominal fee. (tape, plastic, caulk, drywall, mud, screws, nails, etc)\r\n\r\nCall or text 323-310-0609 for estimate. I look forward to doing great work for you.\r\n\r\nThank you,\r\nMike\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-28','','','2019-09-24 04:42:48','2019-09-24 04:42:48','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-28/',0,'postman_sent_mail','',0),(2787,0,'2019-09-24 04:42:48','2019-09-24 04:42:48','housedoctor911@yahoo.com\nMike Ivanov','housedoctor911@yahoo.com','','publish','closed','closed','','housedoctor911-yahoo-com','','','2019-09-24 04:42:48','2019-09-24 04:42:48','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2787',0,'flamingo_contact','',0),(2788,0,'2019-09-24 04:42:48','2019-09-24 04:42:48','Mike Ivanov\nhousedoctor911@yahoo.com\n3233100609\n9am-11am\nHi dr. field\'s team!\r\nMy name is Mike Ivanov. I am a handyman with 30 years experience. A proud father of two children, and a believer. All the guys who work with me are my friends and partners. We do all repairs and remodeling quickly and efficiently: \r\n\r\nFurniture assembly, TV mounting, drywall holes repairs, leaking or clogged faucets, sinks and toilets, curtain hanging, security cameras, window replacement, door installation, flooring, tiling, painting and odd tasks - we do them all. \r\n\r\nWe proudly serve Los Angeles for 9 years and have no complaints. We serve during daytime, evenings, on weekends, on holidays and even at night to feed our families and give our children the good education.\r\n\r\nFor Service call or text 323-310-0609 and we come by and estimate.\r\n\r\nFrom an office chair assembly for $20 to a whole exterior painting for $$$ - you could rely your project with us. We don\'t take money up front (except for special order items). We are local so we buy local and can handle just about anything around your house or business. We usually can get to your job within hours, not weeks later!\r\n\r\nWe don\'t charge trip charges or service charges for estimates. If it\'s a small job, we often can quote those over the phone instantly. A lot of our competitors don\'t tell you what they charge and you have to pay just to find out! \r\n\r\nLook at our past projects\r\nhttps://www.instagram.com/westsidehandyman/\r\n(Email us housedoctor911@yahoo.com)\r\n\r\nMaterials can be pre-purchased and available on site or for smaller items we carry many materials needed for any job and we can provide them for a nominal fee. (tape, plastic, caulk, drywall, mud, screws, nails, etc)\r\n\r\nCall or text 323-310-0609 for estimate. I look forward to doing great work for you.\r\n\r\nThank you,\r\nMike\nHi dr. field\'s team!\r\nMy name is Mike Ivanov. I am a handyman with 30 years experience. A proud father of two children, and a believer. All the guys who work with me are my friends and partners. We do all repairs and remodeling quickly and efficiently: \r\n\r\nFurniture assembly, TV mounting, drywall holes repairs, leaking or clogged faucets, sinks and toilets, curtain hanging, security cameras, window replacement, door installation, flooring, tiling, painting and odd tasks - we do them all. \r\n\r\nWe proudly serve Los Angeles for 9 years and have no complaints. We serve during daytime, evenings, on weekends, on holidays and even at night to feed our families and give our children the good education.\r\n\r\nFor Service call or text 323-310-0609 and we come by and estimate.\r\n\r\nFrom an office chair assembly for $20 to a whole exterior painting for $$$ - you could rely your project with us. We don\'t take money up front (except for special order items). We are local so we buy local and can handle just about anything around your house or business. We usually can get to your job within hours, not weeks later!\r\n\r\nWe don\'t charge trip charges or service charges for estimates. If it\'s a small job, we often can quote those over the phone instantly. A lot of our competitors don\'t tell you what they charge and you have to pay just to find out! \r\n\r\nLook at our past projects\r\nhttps://www.instagram.com/westsidehandyman/\r\n(Email us housedoctor911@yahoo.com)\r\n\r\nMaterials can be pre-purchased and available on site or for smaller items we carry many materials needed for any job and we can provide them for a nominal fee. (tape, plastic, caulk, drywall, mud, screws, nails, etc)\r\n\r\nCall or text 323-310-0609 for estimate. I look forward to doing great work for you.\r\n\r\nThank you,\r\nMike\n63\n74.82.60.95\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 24, 2019\n4:42 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-83','','','2019-09-24 04:42:48','2019-09-24 04:42:48','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2788',0,'flamingo_inbound','',0),(2789,0,'2019-09-25 04:14:12','2019-09-25 04:14:12','From: Gaye Cayot \n\nEmail: gaye.cayot@gmail.com\n\nPhone: 562-743-5151\n\nService:1pm-3pm\n\nMessage Body:\nMy daughter is 21 years old and has been in chronic pain since she was 9 years old. For most of her life we believed that the illness affecting her was Reflex Sympathetic Dystrophy, however, that diagnosis did not really explain many of her symptoms. About two years ago we began to suspect that she actually has Hypermobility Ehlers-Danlos Syndrome. The National Institute of Health lists 59 possible symptoms of which Anna has 27.  Anna\'s right shoulder is the loosest joint in her body and is causing constant and intense pain.  This summer we tried to get her into Mayo Clinic, but they refused to see her because there is no treatment for H-EDS.  We are seeking some alternative treatments right now, but we need to be very careful not to make her worse. I would appreciate very much if you would respond whether you think you can help her or not. Thank you very much for your time.\n\nAny Other Comments:\nWe have used chiropractic and acupuncture treatment for years. However, the last couple of times the chiro treatment seemed to make her worse and the last few acupuncture  appointments had no effect.  Deep tissue massage makes her feel better, but only for a few hours.\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-29','','','2019-09-25 04:14:12','2019-09-25 04:14:12','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-29/',0,'postman_sent_mail','',0),(2790,0,'2019-09-25 04:14:12','2019-09-25 04:14:12','gaye.cayot@gmail.com\nGaye Cayot','gaye.cayot@gmail.com','','publish','closed','closed','','gaye-cayot-gmail-com','','','2019-09-25 04:14:12','2019-09-25 04:14:12','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2790',0,'flamingo_contact','',0),(2791,0,'2019-09-25 04:14:12','2019-09-25 04:14:12','Gaye Cayot\ngaye.cayot@gmail.com\n562-743-5151\n1pm-3pm\nMy daughter is 21 years old and has been in chronic pain since she was 9 years old. For most of her life we believed that the illness affecting her was Reflex Sympathetic Dystrophy, however, that diagnosis did not really explain many of her symptoms. About two years ago we began to suspect that she actually has Hypermobility Ehlers-Danlos Syndrome. The National Institute of Health lists 59 possible symptoms of which Anna has 27.  Anna\'s right shoulder is the loosest joint in her body and is causing constant and intense pain.  This summer we tried to get her into Mayo Clinic, but they refused to see her because there is no treatment for H-EDS.  We are seeking some alternative treatments right now, but we need to be very careful not to make her worse. I would appreciate very much if you would respond whether you think you can help her or not. Thank you very much for your time.\nWe have used chiropractic and acupuncture treatment for years. However, the last couple of times the chiro treatment seemed to make her worse and the last few acupuncture  appointments had no effect.  Deep tissue massage makes her feel better, but only for a few hours.\n64\n75.142.100.245\nMozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 25, 2019\n4:14 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-84','','','2019-09-25 04:14:12','2019-09-25 04:14:12','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2791',0,'flamingo_inbound','',0),(2792,0,'2019-09-26 21:56:32','2019-09-26 21:56:32','From: Dorthy Bright \n\nEmail: dorthy.bright@gmail.com\n\nPhone: 3107957135\n\nService:3pm-5pm\n\nMessage Body:\nI have chronic hip pain and have been researching stem cell injections. I have been told I am a good candidate.\n\nAny Other Comments:\nWhat is the cost per injection and how many injection are typical for treatment?\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-30','','','2019-09-26 21:56:32','2019-09-26 21:56:32','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-30/',0,'postman_sent_mail','',0),(2793,0,'2019-09-26 21:56:32','2019-09-26 21:56:32','dorthy.bright@gmail.com\nDorthy Bright','dorthy.bright@gmail.com','','publish','closed','closed','','dorthy-bright-gmail-com','','','2019-09-26 21:56:32','2019-09-26 21:56:32','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2793',0,'flamingo_contact','',0),(2794,0,'2019-09-26 21:56:32','2019-09-26 21:56:32','Dorthy Bright\ndorthy.bright@gmail.com\n3107957135\n3pm-5pm\nI have chronic hip pain and have been researching stem cell injections. I have been told I am a good candidate.\nWhat is the cost per injection and how many injection are typical for treatment?\n65\n47.176.27.178\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362\nhttps://www.drfields.com/contact/\nSeptember 26, 2019\n9:56 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-85','','','2019-09-26 21:56:32','2019-09-26 21:56:32','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2794',0,'flamingo_inbound','',0),(2795,8,'2019-09-27 20:06:05','2019-09-27 20:06:05','<h2 style=\"text-align: center;\">Thank you for contacting us.</h2>\r\n<h4 style=\"text-align: center;\">We will get back to you shortly.</h4>\r\n<h3 style=\"text-align: center;\">If you have any questions, please call  <a href=\"tel:+[phone_raw]\">[phone]</a></h3>','Thank You','','publish','closed','closed','','thank-you','','','2019-10-18 04:54:35','2019-10-18 04:54:35','',0,'https://www.drfields.com/?page_id=2795',0,'page','',0),(2796,8,'2019-09-27 20:06:05','2019-09-27 20:06:05','<h2 style=\"text-align: center;\">Thank you for contacting us.</h2>\r\n<h4 style=\"text-align: center;\">We will get back to you shortly.</h4>\r\n<h3 style=\"text-align: center;\">If you have any questions, please call <a href=\"tel:+4243616164\">(424) 361-6164</a></h3>','Thank You','','inherit','closed','closed','','2795-revision-v1','','','2019-09-27 20:06:05','2019-09-27 20:06:05','',2795,'https://www.drfields.com/uncategorized/2795-revision-v1/',0,'revision','',0),(2797,0,'2019-09-27 20:08:05','2019-09-27 20:08:05','From: chad \n\nEmail: chad@websitedepot.com\n\nPhone: 3237418490\n\nService:3pm-5pm\n\nMessage Body:\nTEST\n\nAny Other Comments:\nTEST 123\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-31','','','2019-09-27 20:08:05','2019-09-27 20:08:05','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-31/',0,'postman_sent_mail','',0),(2798,0,'2019-09-27 20:08:05','2019-09-27 20:08:05','chad\nchad@websitedepot.com\n3237418490\n3pm-5pm\nTEST\nTEST 123\n66\n208.251.181.122\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 27, 2019\n8:08 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-86','','','2019-09-27 20:08:05','2019-09-27 20:08:05','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2798',0,'flamingo_inbound','',0),(2799,0,'2019-09-27 20:15:55','2019-09-27 20:15:55','From: chad \n\nEmail: chad@me.com\n\nPhone: 8185614999\n\nService:9am-11am\n\nMessage Body:\ntest\n\nAny Other Comments:\ntest new\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-32','','','2019-09-27 20:15:55','2019-09-27 20:15:55','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-32/',0,'postman_sent_mail','',0),(2800,0,'2019-09-27 20:15:55','2019-09-27 20:15:55','chad@me.com\nchad','chad@me.com','','publish','closed','closed','','chad-me-com','','','2019-09-27 20:15:55','2019-09-27 20:15:55','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2800',0,'flamingo_contact','',0),(2801,0,'2019-09-27 20:15:55','2019-09-27 20:15:55','chad\nchad@me.com\n8185614999\n9am-11am\ntest\ntest new\n67\n208.251.181.122\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 27, 2019\n8:15 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-87','','','2019-09-27 20:15:55','2019-09-27 20:15:55','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2801',0,'flamingo_inbound','',0),(2802,8,'2019-09-27 20:55:56','2019-09-27 20:55:56','[video-menu-cat]\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\n</div>\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Low Back Testimonials','','inherit','closed','closed','','1704-autosave-v1','','','2019-09-27 20:55:56','2019-09-27 20:55:56','',1704,'https://www.drfields.com/uncategorized/1704-autosave-v1/',0,'revision','',0),(2803,8,'2019-09-27 20:54:26','2019-09-27 20:54:26','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a class=\"buttonlink\" href=\"https://www.drfields.com/testimonials/written-testimonials/\">  View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-09-27 20:54:26','2019-09-27 20:54:26','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(2805,8,'2019-09-27 20:55:33','2019-09-27 20:55:33','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla Knee\"]<strong>Priscilla - Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Knee - \"]<strong>Andy -Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Knee\"]<strong>Claire - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Knee\"]<strong>Robert B. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','inherit','closed','closed','','1700-revision-v1','','','2019-09-27 20:55:33','2019-09-27 20:55:33','',1700,'https://www.drfields.com/uncategorized/1700-revision-v1/',0,'revision','',0),(2806,8,'2019-09-27 20:55:39','2019-09-27 20:55:39','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Knee Testimonials','','inherit','closed','closed','','1702-revision-v1','','','2019-09-27 20:55:39','2019-09-27 20:55:39','',1702,'https://www.drfields.com/uncategorized/1702-revision-v1/',0,'revision','',0),(2807,8,'2019-09-27 20:55:59','2019-09-27 20:55:59','[video-menu-cat]\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\n</div>\n\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Shoulder Testimonials','','inherit','closed','closed','','1706-autosave-v1','','','2019-09-27 20:55:59','2019-09-27 20:55:59','',1706,'https://www.drfields.com/uncategorized/1706-autosave-v1/',0,'revision','',0),(2808,8,'2019-09-27 20:56:02','2019-09-27 20:56:02','[video-menu-cat]\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\n</div>\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Hip Testimonials','','inherit','closed','closed','','1708-autosave-v1','','','2019-09-27 20:56:02','2019-09-27 20:56:02','',1708,'https://www.drfields.com/uncategorized/1708-autosave-v1/',0,'revision','',0),(2809,8,'2019-09-27 20:56:06','2019-09-27 20:56:06','[video-menu-cat]\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\n</div>\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Neck Testimonials','','inherit','closed','closed','','1711-autosave-v1','','','2019-09-27 20:56:06','2019-09-27 20:56:06','',1711,'https://www.drfields.com/uncategorized/1711-autosave-v1/',0,'revision','',0),(2810,8,'2019-09-27 20:56:09','2019-09-27 20:56:09','[video-menu-cat]\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\n</div>\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Ankle Testimonials','','inherit','closed','closed','','1713-autosave-v1','','','2019-09-27 20:56:09','2019-09-27 20:56:09','',1713,'https://www.drfields.com/uncategorized/1713-autosave-v1/',0,'revision','',0),(2811,8,'2019-09-27 20:56:11','2019-09-27 20:56:11','[video-menu-cat]\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"centrevideo\">\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\n</div>\n\n&nbsp;\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Elbow Testimonials','','inherit','closed','closed','','1715-autosave-v1','','','2019-09-27 20:56:11','2019-09-27 20:56:11','',1715,'https://www.drfields.com/uncategorized/1715-autosave-v1/',0,'revision','',0),(2812,8,'2019-09-27 20:56:14','2019-09-27 20:56:14','[video-menu-cat]\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"centrevideo\">\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\n</div>\n\n&nbsp;\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Foot Testimonials','','inherit','closed','closed','','1717-autosave-v1','','','2019-09-27 20:56:14','2019-09-27 20:56:14','',1717,'https://www.drfields.com/uncategorized/1717-autosave-v1/',0,'revision','',0),(2813,8,'2019-09-27 20:56:16','2019-09-27 20:56:16','[video-menu-cat]\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\n</div>\n\n&nbsp;\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Wrist Testimonials','','inherit','closed','closed','','1719-autosave-v1','','','2019-09-27 20:56:16','2019-09-27 20:56:16','',1719,'https://www.drfields.com/uncategorized/1719-autosave-v1/',0,'revision','',0),(2814,8,'2019-09-27 20:56:17','2019-09-27 20:56:17','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Low Back Testimonials','','inherit','closed','closed','','1704-revision-v1','','','2019-09-27 20:56:17','2019-09-27 20:56:17','',1704,'https://www.drfields.com/uncategorized/1704-revision-v1/',0,'revision','',0),(2815,8,'2019-09-27 20:56:18','2019-09-27 20:56:18','[video-menu-cat]\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"centrevideo\">\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\n</div>\n\n&nbsp;\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Sports Hernia Testimonials','','inherit','closed','closed','','1721-autosave-v1','','','2019-09-27 20:56:18','2019-09-27 20:56:18','',1721,'https://www.drfields.com/uncategorized/1721-autosave-v1/',0,'revision','',0),(2816,8,'2019-09-27 20:56:19','2019-09-27 20:56:19','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Shoulder Testimonials','','inherit','closed','closed','','1706-revision-v1','','','2019-09-27 20:56:19','2019-09-27 20:56:19','',1706,'https://www.drfields.com/uncategorized/1706-revision-v1/',0,'revision','',0),(2817,8,'2019-09-27 20:56:19','2019-09-27 20:56:19','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Hip Testimonials','','inherit','closed','closed','','1708-revision-v1','','','2019-09-27 20:56:19','2019-09-27 20:56:19','',1708,'https://www.drfields.com/uncategorized/1708-revision-v1/',0,'revision','',0),(2818,8,'2019-09-27 20:56:20','2019-09-27 20:56:20','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Neck Testimonials','','inherit','closed','closed','','1711-revision-v1','','','2019-09-27 20:56:20','2019-09-27 20:56:20','',1711,'https://www.drfields.com/uncategorized/1711-revision-v1/',0,'revision','',0),(2819,8,'2019-09-27 20:56:20','2019-09-27 20:56:20','[video-menu-cat]\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\n</div>\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Spanish Testimonials','','inherit','closed','closed','','1723-autosave-v1','','','2019-09-27 20:56:20','2019-09-27 20:56:20','',1723,'https://www.drfields.com/uncategorized/1723-autosave-v1/',0,'revision','',0),(2820,8,'2019-09-27 20:56:21','2019-09-27 20:56:21','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Ankle Testimonials','','inherit','closed','closed','','1713-revision-v1','','','2019-09-27 20:56:21','2019-09-27 20:56:21','',1713,'https://www.drfields.com/uncategorized/1713-revision-v1/',0,'revision','',0),(2821,8,'2019-09-27 20:56:22','2019-09-27 20:56:22','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Elbow Testimonials','','inherit','closed','closed','','1715-revision-v1','','','2019-09-27 20:56:22','2019-09-27 20:56:22','',1715,'https://www.drfields.com/uncategorized/1715-revision-v1/',0,'revision','',0),(2822,8,'2019-09-27 20:56:22','2019-09-27 20:56:22','[video-menu-cat]\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\n</div>\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Hamstring Testimonials','','inherit','closed','closed','','1725-autosave-v1','','','2019-09-27 20:56:22','2019-09-27 20:56:22','',1725,'https://www.drfields.com/uncategorized/1725-autosave-v1/',0,'revision','',0),(2823,8,'2019-09-27 20:56:23','2019-09-27 20:56:23','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Foot Testimonials','','inherit','closed','closed','','1717-revision-v1','','','2019-09-27 20:56:23','2019-09-27 20:56:23','',1717,'https://www.drfields.com/uncategorized/1717-revision-v1/',0,'revision','',0),(2824,8,'2019-09-27 20:56:24','2019-09-27 20:56:24','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Wrist Testimonials','','inherit','closed','closed','','1719-revision-v1','','','2019-09-27 20:56:24','2019-09-27 20:56:24','',1719,'https://www.drfields.com/uncategorized/1719-revision-v1/',0,'revision','',0),(2825,8,'2019-09-27 20:56:24','2019-09-27 20:56:24','[video-menu-cat]\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"centrevideo\">\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\n</div>\n\n&nbsp;\n\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Ganglion Cyst Testimonials','','inherit','closed','closed','','1727-autosave-v1','','','2019-09-27 20:56:24','2019-09-27 20:56:24','',1727,'https://www.drfields.com/uncategorized/1727-autosave-v1/',0,'revision','',0),(2826,8,'2019-09-27 20:56:25','2019-09-27 20:56:25','[video-menu-cat]\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div class=\"youtube-click-div \" id=\"centrevideo\">\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\n</div>\n\n&nbsp;\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Headache Testimonials','','inherit','closed','closed','','1729-autosave-v1','','','2019-09-27 20:56:25','2019-09-27 20:56:25','',1729,'https://www.drfields.com/uncategorized/1729-autosave-v1/',0,'revision','',0),(2827,8,'2019-09-27 20:56:26','2019-09-27 20:56:26','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Sports Hernia Testimonials','','inherit','closed','closed','','1721-revision-v1','','','2019-09-27 20:56:26','2019-09-27 20:56:26','',1721,'https://www.drfields.com/uncategorized/1721-revision-v1/',0,'revision','',0),(2828,8,'2019-09-27 20:56:26','2019-09-27 20:56:26','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Spanish Testimonials','','inherit','closed','closed','','1723-revision-v1','','','2019-09-27 20:56:26','2019-09-27 20:56:26','',1723,'https://www.drfields.com/uncategorized/1723-revision-v1/',0,'revision','',0),(2829,8,'2019-09-27 20:56:27','2019-09-27 20:56:27','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Hamstring Testimonials','','inherit','closed','closed','','1725-revision-v1','','','2019-09-27 20:56:27','2019-09-27 20:56:27','',1725,'https://www.drfields.com/uncategorized/1725-revision-v1/',0,'revision','',0),(2830,8,'2019-09-27 20:56:28','2019-09-27 20:56:28','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Ganglion Cyst Testimonials','','inherit','closed','closed','','1727-revision-v1','','','2019-09-27 20:56:28','2019-09-27 20:56:28','',1727,'https://www.drfields.com/uncategorized/1727-revision-v1/',0,'revision','',0),(2831,8,'2019-09-27 20:56:29','2019-09-27 20:56:29','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Headache Testimonials','','inherit','closed','closed','','1729-revision-v1','','','2019-09-27 20:56:29','2019-09-27 20:56:29','',1729,'https://www.drfields.com/uncategorized/1729-revision-v1/',0,'revision','',0),(2832,8,'2019-09-27 20:57:12','2019-09-27 20:57:12','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2019-09-27 20:57:12','2019-09-27 20:57:12','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(2833,8,'2019-09-27 20:58:58','2019-09-27 20:58:58','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>','German Testimonials','','publish','closed','closed','','german-testimonials','','','2020-12-11 21:28:57','2020-12-11 21:28:57','',1268,'https://www.drfields.com/?page_id=2833',0,'page','',0),(2834,8,'2019-09-27 20:58:58','2019-09-27 20:58:58','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>','German Testimonials','','inherit','closed','closed','','2833-revision-v1','','','2019-09-27 20:58:58','2019-09-27 20:58:58','',2833,'https://www.drfields.com/uncategorized/2833-revision-v1/',0,'revision','',0),(2835,0,'2019-09-30 11:34:10','2019-09-30 11:34:10','From: Patricia Smith \n\nEmail: patriciapdsmith@gmail.com\n\nPhone: 08016862141\n\nService:9am-11am\n\nMessage Body:\ngoogle\n\nAny Other Comments:\nHello,\r\n \r\nHow are you? Hope you are fine.\r\n \r\nI have been checking your website quite often. It has seen that the main keywords are still not in top 10 rank. You know things of working;  I mean the procedure of working has changed a lot.\r\n \r\nSo I would like to have opportunity to work for you and this time we will bring the keywords to the top 10 spot with guaranteed period.\r\n \r\nThere is no wondering that it is possible now cause, I have found out that there are few things need to be done for better performances (Some we Discuss, in this email). Let me tell you some of them -\r\n \r\n1. Title Tag Optimization\r\n2. Meta Tag Optimization (Description, keyword and etc)\r\n3. Heading Tags Optimization\r\n4. Targeted keywords are not placed into tags\r\n5. Alt / Image tags Optimization\r\n6. Google Publisher is missing\r\n7. Custom 404 Page is missing\r\n8. The Products are not following Structured markup data\r\n9.  Website Speed Development (Both Mobile and Desktop)\r\n10. Off –Page SEO work\r\n \r\nLots are pending……………..\r\n \r\nYou can see these are the things that need to be done properly to make the keywords others to get into the top 10 spot in Google Search &amp; your sales Increase.\r\n \r\nAlso there is one more thing to mention that you did thousands of links that time for your website, which are considered as spam after Google roll outs several updates of Panda and penguin. We need to remove them too.\r\n \r\nSir/Madam, please give us a chance to fix these errors and we will give you rank on these keywords.\r\n \r\nPlease let me know if you encounter any problems or if there is anything you need. If this email has reached you by mistake or if you do not wish to take advantage of this advertising opportunity, please accept my apology for any inconvenience caused and rest assured that you will not be contacted again.\r\n \r\nMany thanks for your time and consideration,\r\n \r\nLooking forward\r\n             \r\nRegards\r\nPatricia Smith\r\n\r\nIf you did not wish to receive this, please reply with \"unsubscribe\" in the subject line.\r\n \r\nDisclaimer: This is an advertisement and a promotional mail strictly on the guidelines of CAN-SPAM Act of 2003. We have clearly mentioned the source mail-id of this mail and the subject lines and they are in no way misleading in any form. We have found your mail address through our own efforts on the web search and not through any illegal way. If you find this mail unsolicited, please reply with \"unsubscribe\" in the subject line and we will take care that you do not receive any further promotional mail.\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-33','','','2019-09-30 11:34:10','2019-09-30 11:34:10','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-33/',0,'postman_sent_mail','',0),(2836,0,'2019-09-30 11:34:10','2019-09-30 11:34:10','patriciapdsmith@gmail.com\nPatricia Smith','patriciapdsmith@gmail.com','','publish','closed','closed','','patriciapdsmith-gmail-com','','','2019-09-30 11:34:10','2019-09-30 11:34:10','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2836',0,'flamingo_contact','',0),(2837,0,'2019-09-30 11:34:10','2019-09-30 11:34:10','Patricia Smith\npatriciapdsmith@gmail.com\n08016862141\n9am-11am\ngoogle\nHello,\r\n \r\nHow are you? Hope you are fine.\r\n \r\nI have been checking your website quite often. It has seen that the main keywords are still not in top 10 rank. You know things of working;  I mean the procedure of working has changed a lot.\r\n \r\nSo I would like to have opportunity to work for you and this time we will bring the keywords to the top 10 spot with guaranteed period.\r\n \r\nThere is no wondering that it is possible now cause, I have found out that there are few things need to be done for better performances (Some we Discuss, in this email). Let me tell you some of them -\r\n \r\n1. Title Tag Optimization\r\n2. Meta Tag Optimization (Description, keyword and etc)\r\n3. Heading Tags Optimization\r\n4. Targeted keywords are not placed into tags\r\n5. Alt / Image tags Optimization\r\n6. Google Publisher is missing\r\n7. Custom 404 Page is missing\r\n8. The Products are not following Structured markup data\r\n9.  Website Speed Development (Both Mobile and Desktop)\r\n10. Off –Page SEO work\r\n \r\nLots are pending……………..\r\n \r\nYou can see these are the things that need to be done properly to make the keywords others to get into the top 10 spot in Google Search &amp; your sales Increase.\r\n \r\nAlso there is one more thing to mention that you did thousands of links that time for your website, which are considered as spam after Google roll outs several updates of Panda and penguin. We need to remove them too.\r\n \r\nSir/Madam, please give us a chance to fix these errors and we will give you rank on these keywords.\r\n \r\nPlease let me know if you encounter any problems or if there is anything you need. If this email has reached you by mistake or if you do not wish to take advantage of this advertising opportunity, please accept my apology for any inconvenience caused and rest assured that you will not be contacted again.\r\n \r\nMany thanks for your time and consideration,\r\n \r\nLooking forward\r\n             \r\nRegards\r\nPatricia Smith\r\n\r\nIf you did not wish to receive this, please reply with \"unsubscribe\" in the subject line.\r\n \r\nDisclaimer: This is an advertisement and a promotional mail strictly on the guidelines of CAN-SPAM Act of 2003. We have clearly mentioned the source mail-id of this mail and the subject lines and they are in no way misleading in any form. We have found your mail address through our own efforts on the web search and not through any illegal way. If you find this mail unsolicited, please reply with \"unsubscribe\" in the subject line and we will take care that you do not receive any further promotional mail.\n68\n103.218.236.199\nMozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\nhttps://www.drfields.com/contact/\nSeptember 30, 2019\n11:34 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-88','','','2019-09-30 11:34:10','2019-09-30 11:34:10','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2837',0,'flamingo_inbound','',0),(2838,0,'2019-09-30 15:20:23','2019-09-30 15:20:23','From: Jason Webster \n\nEmail: jasondwebster@me.com\n\nPhone: 9492460791\n\nService:3pm-5pm\n\nMessage Body:\nMulti level herniation and stinosis.\n\nAny Other Comments:\nAetna ppo coverage?\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-34','','','2019-09-30 15:20:23','2019-09-30 15:20:23','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-34/',0,'postman_sent_mail','',0),(2839,0,'2019-09-30 15:20:23','2019-09-30 15:20:23','jasondwebster@me.com\nJason Webster','jasondwebster@me.com','','publish','closed','closed','','jasondwebster-me-com','','','2019-09-30 15:20:23','2019-09-30 15:20:23','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2839',0,'flamingo_contact','',0),(2840,0,'2019-09-30 15:20:23','2019-09-30 15:20:23','Jason Webster\njasondwebster@me.com\n9492460791\n3pm-5pm\nMulti level herniation and stinosis.\nAetna ppo coverage?\n69\n172.58.27.132\nMozilla/5.0 (iPhone; CPU iPhone OS 13_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1\nhttps://www.drfields.com/contact/\nSeptember 30, 2019\n3:20 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-89','','','2019-09-30 15:20:23','2019-09-30 15:20:23','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2840',0,'flamingo_inbound','',0),(2842,8,'2019-10-01 22:00:43','2019-10-01 22:00:43','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>','German Testimonials','','inherit','closed','closed','','2833-autosave-v1','','','2019-10-01 22:00:43','2019-10-01 22:00:43','',2833,'https://www.drfields.com/uncategorized/2833-autosave-v1/',0,'revision','',0),(2843,8,'2020-02-13 03:49:15','2020-02-13 03:49:15','[video-menu-cat]\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\n<div class=\"clear\"></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\n<div class=\"clear\"></div>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-autosave-v1','','','2020-02-13 03:49:15','2020-02-13 03:49:15','',1340,'https://www.drfields.com/uncategorized/1340-autosave-v1/',0,'revision','',0),(2844,8,'2019-10-01 22:00:55','2019-10-01 22:00:55','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>','German Testimonials','','inherit','closed','closed','','2833-revision-v1','','','2019-10-01 22:00:55','2019-10-01 22:00:55','',2833,'https://www.drfields.com/uncategorized/2833-revision-v1/',0,'revision','',0),(2845,8,'2019-10-17 08:06:06','2019-10-17 08:06:06','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla Knee\"]<strong>Priscilla - Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Knee - \"]<strong>Andy -Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Knee\"]<strong>Claire - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Knee\"]<strong>Robert B. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','inherit','closed','closed','','1700-autosave-v1','','','2019-10-17 08:06:06','2019-10-17 08:06:06','',1700,'https://www.drfields.com/uncategorized/1700-autosave-v1/',0,'revision','',0),(2846,8,'2019-10-01 22:03:14','2019-10-01 22:03:14','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla Knee\"]<strong>Priscilla - Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Knee - \"]<strong>Andy -Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Knee\"]<strong>Claire - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Knee\"]<strong>Robert B. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','inherit','closed','closed','','1700-revision-v1','','','2019-10-01 22:03:14','2019-10-01 22:03:14','',1700,'https://www.drfields.com/uncategorized/1700-revision-v1/',0,'revision','',0),(2847,8,'2019-10-02 16:05:22','2019-10-02 16:05:22','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Iliotibial Band Syndrome</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/iliotibial-band-syndrome/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-10-02 16:05:22','2019-10-02 16:05:22','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2848,0,'2019-10-02 19:55:19','2019-10-02 19:55:19','From: Dr. Stacey Kupperman \n\nEmail: info@healthybynaturemed.com\n\nPhone: 3103109717\n\nService:3pm-5pm\n\nMessage Body:\nI am a Naturopathic Doctor, and have referred some patients to Dr. Fields.  I wanted to request that you send me some business cards and/or brochure to keep in my waiting room.  Office address:  Healthy By Nature  7250 Beverly Blvd Suite 101  Los Angeles, CA 90036\r\nThank you so much!\r\nDr. Stacey Kupperman\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-35','','','2019-10-02 19:55:19','2019-10-02 19:55:19','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-35/',0,'postman_sent_mail','',0),(2849,0,'2019-10-02 19:55:19','2019-10-02 19:55:19','info@healthybynaturemed.com\nDr. Stacey Kupperman','info@healthybynaturemed.com','','publish','closed','closed','','info-healthybynaturemed-com','','','2019-10-02 19:55:19','2019-10-02 19:55:19','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2849',0,'flamingo_contact','',0),(2850,0,'2019-10-02 19:55:19','2019-10-02 19:55:19','Dr. Stacey Kupperman\ninfo@healthybynaturemed.com\n3103109717\n3pm-5pm\nI am a Naturopathic Doctor, and have referred some patients to Dr. Fields.  I wanted to request that you send me some business cards and/or brochure to keep in my waiting room.  Office address:  Healthy By Nature  7250 Beverly Blvd Suite 101  Los Angeles, CA 90036\r\nThank you so much!\r\nDr. Stacey Kupperman\n70\n104.175.55.149\nMozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Safari/605.1.15\nhttps://www.drfields.com/contact/\nOctober 2, 2019\n7:55 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-90','','','2019-10-02 19:55:19','2019-10-02 19:55:19','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2850',0,'flamingo_inbound','',0),(2852,0,'2019-10-04 18:06:02','2019-10-04 18:06:02','From: RICHARD M WHITLEY \n\nEmail: richard.m.whitley@gmail.com\n\nPhone: (818)357-7282\n\nService:3pm-5pm\n\nMessage Body:\nWhile hiking in October, 2015, I suffered a medial meniscus tear in my left knee.  Over time it worsened, and I had arthroscopic surgery in January, 2016.  I had a quick recovery and am again running a couple times a week.  I still get an occasional stabbing pain in the knee while running, but then I slow down and change my stride a little bit and after a minute or two the pain is gone and I resume my normal running.  This happens in BOTH knees, and was occurring for many years before the tear, so it\'s not necessarily related to the tear.   Since I know I have less of my meniscus in my left knee, I was wondering if prolotherapy would be able to increase the cartilage there, or whether the fact that it was cut away surgically means that the amount lost is too great to be significantly changed by prolotherapy.  Do you have any experience with the effect of prolotherapy on joints where the cartilage had been surgically trimmed  back to remove the torn portions?\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-36','','','2019-10-04 18:06:02','2019-10-04 18:06:02','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-36/',0,'postman_sent_mail','',0),(2853,0,'2019-10-04 18:06:02','2019-10-04 18:06:02','richard.m.whitley@gmail.com\nRICHARD M WHITLEY','richard.m.whitley@gmail.com','','publish','closed','closed','','richard-m-whitley-gmail-com','','','2019-10-04 18:06:02','2019-10-04 18:06:02','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2853',0,'flamingo_contact','',0),(2854,0,'2019-10-04 18:06:02','2019-10-04 18:06:02','RICHARD M WHITLEY\nrichard.m.whitley@gmail.com\n(818)357-7282\n3pm-5pm\nWhile hiking in October, 2015, I suffered a medial meniscus tear in my left knee.  Over time it worsened, and I had arthroscopic surgery in January, 2016.  I had a quick recovery and am again running a couple times a week.  I still get an occasional stabbing pain in the knee while running, but then I slow down and change my stride a little bit and after a minute or two the pain is gone and I resume my normal running.  This happens in BOTH knees, and was occurring for many years before the tear, so it\'s not necessarily related to the tear.   Since I know I have less of my meniscus in my left knee, I was wondering if prolotherapy would be able to increase the cartilage there, or whether the fact that it was cut away surgically means that the amount lost is too great to be significantly changed by prolotherapy.  Do you have any experience with the effect of prolotherapy on joints where the cartilage had been surgically trimmed  back to remove the torn portions?\n71\n76.219.184.129\nMozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\nhttps://www.drfields.com/contact/\nOctober 4, 2019\n6:06 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-91','','','2019-10-04 18:06:02','2019-10-04 18:06:02','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2854',0,'flamingo_inbound','',0),(2855,0,'2019-10-04 21:40:56','2019-10-04 21:40:56','From: Sharon  Doheny \n\nEmail: shantishu30@gmail.com\n\nPhone: 310-476-1518\n\nService:9am-11am\n\nMessage Body:\nI had one knee replacement with dr. Yun about 7 years ago.  I have arthritis  bone on bone. Quit tennis after that surgery. Didn’t want to go through it again. My bad knee was in same condition as the one that was replaced. Now after one fall have been doing laser therapy with Dr. kraft. Has helped if I go consistently. Back to hurting and cannot bend knee too far and don’t want it to atrophy. My friend Deborah Johnson recommended you.\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-37','','','2019-10-04 21:40:56','2019-10-04 21:40:56','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-37/',0,'postman_sent_mail','',0),(2856,0,'2019-10-04 21:40:56','2019-10-04 21:40:56','shantishu30@gmail.com\nSharon  Doheny','shantishu30@gmail.com','','publish','closed','closed','','shantishu30-gmail-com','','','2019-10-04 21:40:56','2019-10-04 21:40:56','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2856',0,'flamingo_contact','',0),(2857,0,'2019-10-04 21:40:56','2019-10-04 21:40:56','Sharon  Doheny\nshantishu30@gmail.com\n310-476-1518\n9am-11am\nI had one knee replacement with dr. Yun about 7 years ago.  I have arthritis  bone on bone. Quit tennis after that surgery. Didn’t want to go through it again. My bad knee was in same condition as the one that was replaced. Now after one fall have been doing laser therapy with Dr. kraft. Has helped if I go consistently. Back to hurting and cannot bend knee too far and don’t want it to atrophy. My friend Deborah Johnson recommended you.\n72\n45.49.242.142\nMozilla/5.0 (iPad; CPU OS 12_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1\nhttps://www.drfields.com/contact/\nOctober 4, 2019\n9:40 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-92','','','2019-10-04 21:40:56','2019-10-04 21:40:56','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2857',0,'flamingo_inbound','',0),(2858,8,'2019-10-08 17:56:13','2019-10-08 17:56:13','[caption id=\"attachment_4049\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4049 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/MCL-tears-500x500.jpg\" alt=\"Medial Collateral Ligament Injuries\" width=\"500\" height=\"500\" /> <strong>          Repair Medial Collateral Ligament Injuries at OrthoRegen</strong>[/caption]\r\n\r\n<span style=\"font-weight: 400;\">The <b>Medial Collateral Ligament (</b><strong>MCL)</strong> is a vital knee structure for providing stability to the knee joint. It is one of four major ligaments of the knee, along with the anterior cruciate (ACL), the posterior cruciate (PCL), and the lateral collateral (LCL) ligaments, all of which stabilize the knee. Other ligaments are often injured when the medial collateral ligament is injured</span>\r\n\r\n<span style=\"font-weight: 400;\">MCL injuries also affect the meniscus. Since part of the MCL is attached to the meniscus, a tear of the meniscus can accompany an MCL injury. </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>Spontaneous or Self-Healing Is a Consideration in Medial Collateral Ligament Injuries</strong></span></h3>\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">When a ligament in the knee is injured, the most common ligament affected is the medial collateral ligament (MCL).  In general, the MCL is a very strong ligament. And it is pretty resilient when injured. In many circumstances, physicians will opt for non-surgical treatments, because they take into consideration the ability of the MCL to heal on its own. </span></span>\r\n\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">An athlete with injury to their MCL often returns to their usual training or routine after just a few weeks. But is this the best course of treatment for an injured MCL? In this article, we will explore the injury and healing process of the knee and its MCL, and also examine whether a medial collateral ligament injury should just heal on its own or if  this path allows for a weaker MCL. Also, does allowing the MCL heal on its own make one more susceptible to re-injury?</span>   </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>The Self-Healed MCL vs the Pre-Injured State</strong></span></h3>\r\n<span style=\"font-weight: 400;\">The MCL has a greater blood supply than the ACL one thing. And that adds to its greater ability to heal.  However, studies have shown that even though conservative therapy for MCL injuries has been shown to be more effective than in ACL or even PCL injuries, the healed MCL remains weaker and less efficient than the ligament in its pre-injured state. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament heals by scar formation, which is an inferior type of healing, which results in less strength than in normal ligaments. And the weak ligament leads to ligament laxity and an unstable joint. Joint instability as the result of an MCL injury begins the process of arthritis. The healing scarred ligament becomes longer and loose, which causes the joint to move and rotate differently. </span>\r\n\r\n<span style=\"font-weight: 400;\">The abnormal movement alters how the knee can handle loads and pressures placed upon it. The instability allows for more sliding between joint surfaces, and decreases the efficiency of the muscles. That leads to disruption of the underlying cartilage and bone, and boosts overall degeneration. The result is the eventual formation of arthritis.</span><span style=\"font-weight: 400;\">  </span>\r\n\r\n<b>An Injury to One Knee Structure Affects the Rest of the Knee</b>\r\n\r\n<span style=\"font-weight: 400;\">Wear and tear, trauma type injuries, and anything else that affects one ligament of the knee, will affect the other structures of the knee. The MCL helps the knee to bend and twist correctly. But when it is injured, those dynamics are changed. MCL injuries usually occur near where the ligament attaches to the thigh bone at the knee. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament attaches to a bony prominence called the medial condyle and assists in keeping the knee from hyperextending. When the MCL becomes weak and unstable, it starts a cascade of degeneration of the condyles. Since the medial condyle bears a lot of weight, the weak ligament boosts the wear on the bony condyle. And as the bone wears, the degeneration will also cause injury to the meniscus. </span>\r\n\r\n<span style=\"font-weight: 400;\">The cycle then continues as these bony attachments continue to degenerate, because the attached ligaments will lose their tautness and become even more loose and weak.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>Treatment of an Injured MCL</b>\r\n\r\n<span style=\"font-weight: 400;\">The care of MCL injuries ranges from conservative to surgical measures. Surgery involves the cutting and removal of tissue, and since medial collateral ligament injuries often involve other structures, that would entail even more cutting. </span>\r\n\r\n<span style=\"font-weight: 400;\">It is important to understand that removal and cutting of knee structures adds to knee instability and to further degeneration of the knee in the long run. So avoidance of surgery would be preferred. What can be done then? And what are your options, considering the inferior healing of the MCL when left to heal on its own?</span>\r\n<h3><strong>Regenerative Orthopedics Options for Medial Collateral Ligament Injuries</strong></h3>\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics, including <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a>, <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP</a>, and Prolotherapy are treatment options available for MCL injuries. They help to provide healing of the entire knee. And they also allow for stabilization of the injured MCL. Studies have shown that these treatments are effective at increasing the strength of the ligament at the attachment site, as well as boosting the overall ligament mass and strength. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics for MCL injuries encourages collagen formation at the knee joint. It stimulates the body to repair itself. And it heals the ligaments by stimulating new tissue formation, rather than scar tissue formation.When the ligament is completely torn, surgery is necessary. But Regenerative Orthopedics is helpful when both ends of the ligament remain attached to bone. And in 98% of ligament injuries this is the case, since the injuries are partial tears. </span>\r\n<h3>Strong Ligaments and Tendons Are Key to a Healthy Knee Joint</h3>\r\n<span style=\"font-weight: 400;\">The key to healthy knees is strong ligaments and tendons. In the case of the medial collateral ligament injuries, co-injury of ligaments, and other involved structures in MCL injuries, the goal is to treat the whole knee with Regenerative Orthopedics. The treatment will stimulate repair, and strengthen the injured and weakened structures. New collagen, the material the ligaments and tendons are made of, is deposited at the site of repair. </span>\r\n\r\n<span style=\"font-weight: 400;\">The end result is a stronger, more stable knee joint. Rather than just allowing the MCL to heal on its own, Regenerative Orthopedics ensures proper regeneration of the ligament tissue, allowing for effective elimination of pain, the repair of the MCL injury, and a safe return to sport and activities.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Medial Collateral Ligament Injuries','','publish','open','closed','','the-best-treatments-for-medial-collateral-ligament-injuries','','','2020-08-26 21:17:50','2020-08-26 21:17:50','',0,'https://www.drfields.com/?p=2858',0,'post','',0),(2859,8,'2019-10-08 17:56:13','2019-10-08 17:56:13','<span style=\"font-weight: 400;\">When a ligament in the knee is injured, the most common ligament affected is the medial collateral ligament (MCL).  In general, the MCL is a very strong ligament and is pretty resilient when injured, and in many circumstances, physicians will opt for non-surgical treatments, because they take into consideration the ability of the MCL to heal on its own. An athlete with injury to their MCL often returns to their usual training or routine after just a few weeks. But is this the best course of treatment for an injured MCL? In this article, we will explore the injury and healing process of the knee and its MCL, and also examine whether an injured MCL should just heal on its own or if  this path allows for a weaker MCL, and one more susceptible to re-injury.</span>\r\n\r\n<b>Let’s Take a Look at the Medial Collateral Ligament (MCL)</b>\r\n\r\n<span style=\"font-weight: 400;\">The MCL is a vital knee structure for providing stability to the knee joint. It is one of four major ligaments of the knee, along with the anterior cruciate (ACL), the posterior cruciate (PCL), and the lateral collateral (LCL) ligaments, all of which stabilize the knee. When the MCL is injured, very often these other ligaments are injured too! MCL injuries also affect the meniscus. Since part of the MCL is attached to the meniscus, a tear of the meniscus can also accompany an MCL injury. </span>\r\n\r\n<span style=\"font-weight: 400;\">Why is spontaneous or self-healing a consideration in MCL injuries? The MCL has a greater blood supply than the ACL, for example, which adds to its greater ability to heal.  However, studies have shown that even though conservative therapy for MCL injuries has been shown to be more effective than in ACL or even PCL injuries, the healed MCL remains weaker and less efficient than the ligament in its pre-injured state. The ligament heals by scar formation, which is an inferior type of healing, and results in less strength than in normal ligaments, and the weak ligament leads to ligament laxity and an unstable joint. Joint instability as the result of an MCL injury begins the process of arthritis. The healing scarred ligament becomes longer and loose, which causes the joint to move and rotate differently, which alters how the knee can handle loads and pressures placed upon it. The instability allows for more sliding between joint surfaces, decreasing the efficiency of the muscles, disrupting the underlying cartilage and bone, and boosts overall degeneration which leads to the eventual arthritis formation.</span><span style=\"font-weight: 400;\">     </span>\r\n\r\n<b>An Injury to One Knee Structure Affects the Rest of the Knee</b>\r\n\r\n<span style=\"font-weight: 400;\">Wear and tear, trauma type injuries, and anything else that affects one ligament of the knee, will affect the other structures of the knee. The MCL helps the knee to bend and twist correctly, but when it is injured, those dynamics are changed. MCL injuries usually occur near where the ligament attaches to the thigh bone at the knee. The ligament attaches to a bony prominence called the medial condyle and assists in keeping the knee from hyperextending. When the MCL becomes weak and unstable, it starts a cascade of degeneration of the condyles. Since the medial condyle bears a lot of weight, the weak ligament boosts the wear on the bony condyle, and as the bone wears, the degeneration will also cause injury to the meniscus. The cycle then continues as these bony attachments continue to degenerate, because the attached ligaments will lose their tautness and become even more loose and weak.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>Treatment of an Injured MCL</b>\r\n\r\n<span style=\"font-weight: 400;\">The care of MCL injuries ranges from conservative to surgical measures. Surgery involves the cutting and removal of tissue, and since MCL injuries often involve other structures, that would entail even more cutting. It is important to understand that removal and cutting of knee structures adds to knee instability and to further degeneration of the knee in the long run, so avoidance of surgery would be preferred. What can be done then, and what are your options, considering the inferior healing of the MCL when left to heal on its own? Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are treatment options available for MCL injuries, because they help to provide healing to the entire knee and also allow for stabilization of the injured MCL. Studies have shown that these treatments are effective at increasing the strength of the ligament at the attachment site, as well as boosting the overall ligament mass and strength. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics for MCL injuries encourages collagen formation at the knee joint, stimulates the body to repair itself, and heals the ligaments, by stimulating new tissue formation, rather than scar tissue formation. Surgery will be necessary when the ligament is completely torn, but Regenerative Orthopedics is helpful when both ends of the ligament remain attached to bone, and in 98% of ligament injuries this is the case, since the injuries are partial tears. </span>\r\n\r\n<span style=\"font-weight: 400;\">The key to healthy knees is strong ligaments and tendons. In the case of the injured MCL, co-injury of ligaments, and other involved structures in MCL injuries, the goal is to treat the whole knee with Regenerative Orthopedics to stimulate repair, and strengthen the injured and weakened structures. The treatment will lead to the deposits of new collagen, the material the ligaments and tendons are made of. The end result is a stronger, more stable knee joint. Rather than just allowing the MCL to heal on its own, Regenerative Orthopedics ensures proper regeneration of the ligament tissue, allowing for effective elimination of pain, the repair of the MCL injury, and a safe return to sport and activities.</span>','The Best Treatments for Medial Collateral Ligament Injuries','','inherit','closed','closed','','2858-revision-v1','','','2019-10-08 17:56:13','2019-10-08 17:56:13','',2858,'https://www.drfields.com/uncategorized/2858-revision-v1/',0,'revision','',0),(2860,8,'2019-10-08 17:59:25','2019-10-08 17:59:25','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">The Best Treatments for Medial Collateral Ligament Injuries</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/the-best-treatments-for-medial-collateral-ligament-injuries/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Office-Move\">Visit us at Our Location!</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-10-08 17:59:25','2019-10-08 17:59:25','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2861,0,'2019-10-09 00:18:46','2019-10-09 00:18:46','From: Danny Star \n\nEmail: danny@websitesdepot.com\n\nPhone: 8182359440\n\nService:9am-11am\n\nMessage Body:\nTest WD\n\nAny Other Comments:\nTest WD\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-38','','','2019-10-09 00:18:46','2019-10-09 00:18:46','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-38/',0,'postman_sent_mail','',0),(2862,0,'2019-10-09 00:18:46','2019-10-09 00:18:46','danny@websitesdepot.com\nDanny Star','danny@websitesdepot.com','','publish','closed','closed','','danny-websitesdepot-com','','','2019-10-09 00:18:46','2019-10-09 00:18:46','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2862',0,'flamingo_contact','',0),(2863,0,'2019-10-09 00:18:46','2019-10-09 00:18:46','Danny Star\ndanny@websitesdepot.com\n8182359440\n9am-11am\nTest WD\nTest WD\n73\n172.118.143.212\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\nhttps://www.drfields.com/contact/\nOctober 9, 2019\n12:18 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-93','','','2019-10-09 00:18:46','2019-10-09 00:18:46','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2863',0,'flamingo_inbound','',0),(2865,8,'2019-10-14 02:00:23','2019-10-14 02:00:23','[caption id=\"attachment_4044\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4044 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/Claire.-pro-triathlete-500x500.jpg\" alt=\"Claire. Pro Triathlete\" width=\"500\" height=\"500\" /> <strong>Claire, a Pro-Triathlete, avoided joint replacement with     Regenerative Orthopedics</strong>[/caption]\r\n<h2>Avoid Joint Replacement and Stay Active</h2>\r\nWe see many people in our office who want to avoid joint replacement. This scenario occurs more often than you might imagine. Folks of all ages come seeking treatment.\r\n\r\nThey come because they want to continue their distance running, weightlifting, bicycling, and other activities. They come because the pain is getting in the way of the things in life they enjoy, and they want that to change.\r\n<h3>Looking for an Alternative to Joint Replacement</h3>\r\nFrequently, they have been told that their problem, which is likely arthritis, is too advanced, and the only option left is a joint replacement. Meanwhile, the sufferer looks for an alternative, often left to chase symptoms, taking pain medications and trying various therapies in an attempt to find some relief.\r\n\r\nThey hear about OrthoRegen<sup>®</sup>, and call or email us, inquiring whether Regenerative Orthopedics can help them, so they don’t have to replace their joint. In the majority of musculoskeletal pain cases, Regenerative Orthopedics can give you pain relief, while improveing the function of your joint.\r\n\r\n<strong>Yes, Regenerative Orthopedics Works Even After Many Other Treatments Fail</strong>\r\n\r\nHow does Regenerative Orthopedics work if so many treatment options have already failed? Many treatment suggestions are therapies that ONLY prolong or delay the need for joint replacement. You are likely familiar with over-the-counter pain relievers and prescription medications like NSAIDS and steroids.\r\n\r\nThere are also injectable medications, such as corticosteroids and hyaluronic acid injections. These treatments are not curative though. And they only give temporary relief. Some, such as NSAIDS and steroids, actually weaken the joint further, which only promotes the arthritic process.\r\n\r\nRegenerative Orthopedics encourages collagen formation at the joint. It stimulates the body to repair itself, heals injured ligaments and tendons, and stimulates new tissue formation. And it doesn’t just cover up pain or chase symptoms.\r\n\r\n<strong>Regenerative Orthopedics Repairs the Joint.</strong>\r\n\r\nWhy not choose an alternative that works by repairing your joint and eliminating the pain? Regenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma, and Comprehensive Prolotherapy, is an effective way to treat your degenerated joint.. And it does it in a non-surgical manner.\r\n\r\n<strong>Be Aware! Not All Stem Cell Therapies Are Alike!</strong>\r\n\r\nIf you are like many who desire to avoid a joint replacement, you have probably already looked into Stem Cell Therapies. Or you have even gone to a seminar. If you have been to a seminar, the presenter may have emphasized the need to get some type of amniotic stem cell product.\r\n\r\nThe line of thinking is that if you are older, your stem cells are too old, so you need donated cells! This is not the truth! First of all, it is important to understand that amniotic “stem cells” are void of live stem cells. How is that possible? The process necessary to make them available to you actually kills the live cells.\r\n\r\nOn the other hand, your own stem cells are still alive and potent enough to work. Why use a donated product when you have your own <strong>live</strong> cells?\r\n\r\n<strong>What Does OrthoRegen<sup>®</sup> Do Differently Than Other Clinics?</strong>\r\n\r\nClinics in the United States that use a patient’s own stem cells, take the stem cells from bone marrow or from the fat in the abdominal area. Once they have retrieved the cells, they are then reintroduced into the degenerated or injured joint.\r\n\r\nAt OrthoRegen<sup>®</sup>, we use the Gold Standard in Stem Cell Therapy. Many other clinics use just one form of treatment. For example, they may use bone marrow stem cells only. Or they may possibly just use PRP. The Gold Standard encompasses four types of treatments, including stem cells from bone marrow, stem cells from fat, platelets from blood (PRP), and comprehensive dextrose Prolotherapy.\r\n<h3>Isn\'t Just One Type of Regenerative Therapy Enough?</h3>\r\nIn many instances, just one type of regenerative therapy may be sufficient enough to bring healing. Dextrose Prolotherapy, for example, is known to stimulate repair of a painful, degenerated area. As it boosts the normal healing abilities in the injured area, it also attracts immune cells to the degenerated structure for the purpose of repair and healing. And it is possible that we may recommend this therapy, depending on the diagnosis.\r\n\r\nHowever, when a joint is damaged or degenerated to the point where the surgeon wants to replace it, and greater levels of regeneration are needed due to the severity, it would make sense to choose the Gold Standard in Stem Cell Therapy. The Gold Standard is uniquely effective at repair of the degenerated joint.\r\n\r\n<strong>Avoid Joint Replacement with Regenerative Orthopedics</strong>\r\n\r\nBy treating the whole joint in a comprehensive manner, a more complete repair is established. The annoying, persistent and disabling pain of arthritis is almost always due to underlying injured soft tissue. Like in ligament and tendon injuries, which cause the joint to be unstable.\r\n\r\nThe injury to the soft tissue occurred after some type of trauma (even an old sprain) or wear and tear. And the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for the degeneration that occurs in the arthritic process. By treating the joint comprehensively, Regenerative Orthopedics stimulates the repair of the injured joint structures. The treatment stops the abnormal joint motion, and halts the degenerative process.\r\n<h3>Using the Gold Standard in Stem Cell Therapy</h3>\r\nWhen the Gold Standard in Stem Cell Therapy is used, this treatment combination helps to regenerate the joint when cartilage has been lost. It also stimulates the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability. The results are the elimination of pain and the return to function for those with degenerative joint conditions.\r\n\r\nRegenerative Orthopedics is an effective treatment option for those desiring to avoid surgery and get back to the sports and level of activities they love. Even after many other treatments have failed! Don’t let joint pain put a damper on your active lifestyle. Non-surgical Regenerative Orthopedics can resolve your joint pain and help you to meet your activity goals.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Avoid Joint Replacement and Stay Active','','publish','open','closed','','active-and-looking-to-avoid-joint-replacement','','','2020-08-26 17:39:34','2020-08-26 17:39:34','',0,'https://www.drfields.com/?p=2865',0,'post','',0),(2866,8,'2019-10-10 17:49:53','2019-10-10 17:49:53','We see many people in our office who want to avoid a joint replacement. This scenario occurs more often than you might imagine. Folks of all ages come seeking treatment so they can continue their distance running, weightlifting, bicycling, and other activities, because pain is getting in the way of the things in life they enjoy. Frequently, they have been told that their problem, which is likely arthritis, is too advanced, and the only option left is a joint replacement. Meanwhile, the sufferer looks for an alternative, often left to chase symptoms, taking pain medications and trying various therapies in an attempt to find some relief. They hear about OrthoRegen, and call or email us, inquiring whether Regenerative Orthopedics can help them, so they don’t have to replace their joint. In the majority of musculoskeletal pain cases, Regenerative Orthopedics can give you pain relief, while improveing the function of your joint.\r\n\r\n<strong>Yes, Regenerative Orthopedics Works Even After Many Other Treatments Fail</strong>\r\n\r\nHow does Regenerative Orthopedics work if so many treatment options have already failed? Many treatment suggestions are therapies that ONLY prolong or delay the need for joint replacement. You are likely familiar with over-the-counter pain relievers and prescription medications like NSAIDS and steroids. There are also injectable medications, such as corticosteroids and hyaluronic acid injections. These treatments are not curative though, and only give temporary relief. Some, such as NSAIDS and steroids, actually weaken the joint further, which only promotes the arthritic process.\r\n\r\nRegenerative Orthopedics encourages collagen formation at the joint, stimulates the body to repair itself, heals injured ligaments and tendons, and stimulates new tissue formation. It doesn’t just cover up pain or chase symptoms.\r\n\r\n<strong>Regenerative Orthopedics repairs the joint.</strong>\r\n\r\nWhy not choose an alternative that works by repairing your joint and eliminating the pain? Regenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma, and Comprehensive Prolotherapy, is an effective way to treat your degenerated joint, in a non-surgical manner.\r\n\r\n<strong>Be Aware! Not All Stem Cell Therapies Are Alike!</strong>\r\n\r\nIf you are like many who desire to avoid a joint replacement, you have probably already looked into Stem Cell Therapies, or even gone to a seminar. If you have been to a seminar, the presenter may have emphasized the need to get some type of amniotic stem cell product. The line of thinking is that if you are older, your stem cells are too old, so you need donated cells! This is not the truth! First of all, it is important to understand that amniotic “stem cells” are void of live stem cells, because the process necessary to make them available to you actually kills the live cells. On the other hand, your own stem cells are still alive and potent enough to work. Why use a donated product when you have your own <strong>live</strong> cells?\r\n\r\n<strong>What Does OrthoRegen Do Differently Than Other Clinics?</strong>\r\n\r\nClinics in the United States that use a patient’s own stem cells, take the stem cells from bone marrow or from the fat in the abdominal area. Once they have retrieved the cells, they are then reintroduced into the degenerated or injured joint.\r\n\r\nAt OrthoRegen, we use the Gold Standard in Stem Cell Therapy. Many other clinics use just one form of treatment. For example, they may use bone marrow stem cells only, or they may possibly just use PRP. The Gold Standard encompasses four types of treatments, including stem cells from bone marrow, stem cells from fat, platelets from blood (PRP), and comprehensive dextrose Prolotherapy. In many instances, just one type of regenerative therapy may be sufficient enough to bring healing. Dextrose Prolotherapy, for example, is known to stimulate repair of a painful, degenerated area, as it boosts the normal healing abilities in the injured area, attracting immune cells to the degenerated structure for the purpose of repair and healing. And it is possible that we may recommend this therapy, depending on the diagnosis. However, when a joint is damaged or degenerated to the point where the surgeon wants to replace it, and greater levels of regeneration are needed due to the severity, it would make sense to choose the Gold Standard in Stem Cell Therapy. The Gold Standard is uniquely effective at repair of the degenerated joint.\r\n\r\n<strong>Avoid Joint Replacement with Regenerative Orthopedics</strong>\r\n\r\nBy treating the whole joint in a comprehensive manner, a more complete repair is established. The annoying, persistent and disabling pain of arthritis is almost always due to underlying injured soft tissue, like the ligaments and tendons, which cause the joint to be unstable. The injury to the soft tissue occurred after some type of trauma (even an old sprain) or wear and tear, and the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for the degeneration that occurs in the arthritic process. By treating the joint comprehensively, Regenerative Orthopedics stimulates the repair of the injured joint structures, which stops the abnormal joint motion, and halts the degenerative process.\r\n\r\nWhen the Gold Standard in Stem Cell Therapy is used, this treatment combination helps to regenerate the joint when cartilage has been lost, while also stimulating the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability, and results in the elimination of pain and the return to function for those with degenerative joint conditions.\r\n\r\nRegenerative Orthopedics is an effective treatment option for those desiring to avoid surgery and get back to the sports and level of activities they love…even after many other treatments have failed. Don’t let joint pain put a damper on your active lifestyle. Non-surgical Regenerative Orthopedics can resolve your joint pain and help you to meet your activity goals.','Active and Looking To Avoid a Joint Replacement','','inherit','closed','closed','','2865-revision-v1','','','2019-10-10 17:49:53','2019-10-10 17:49:53','',2865,'https://www.drfields.com/uncategorized/2865-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (2867,0,'2019-10-11 16:56:16','2019-10-11 16:56:16','From: Jocelyn Sherman Falcioni \n\nEmail: jocelynr79@msn.com\n\nPhone: 9092625193\n\nService:3pm-5pm\n\nMessage Body:\nMy left knee has dislocated 30+ times since I was a child (I am now 40). I am currently considering Medial patellofemoral ligament reconstruction surgery, but was wondering if stem cell therapy might help to treat/cure the problem.\n\nAny Other Comments:\n\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-39','','','2019-10-11 16:56:16','2019-10-11 16:56:16','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-39/',0,'postman_sent_mail','',0),(2868,0,'2019-10-11 16:56:16','2019-10-11 16:56:16','jocelynr79@msn.com\nJocelyn Sherman Falcioni','jocelynr79@msn.com','','publish','closed','closed','','jocelynr79-msn-com','','','2019-10-11 16:56:16','2019-10-11 16:56:16','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2868',0,'flamingo_contact','',0),(2869,0,'2019-10-11 16:56:16','2019-10-11 16:56:16','Jocelyn Sherman Falcioni\njocelynr79@msn.com\n9092625193\n3pm-5pm\nMy left knee has dislocated 30+ times since I was a child (I am now 40). I am currently considering Medial patellofemoral ligament reconstruction surgery, but was wondering if stem cell therapy might help to treat/cure the problem.\n74\n159.115.9.80\nMozilla/5.0 (Linux; Android 9; Pixel 3a) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.101 Mobile Safari/537.36\nhttps://www.drfields.com/contact/\nOctober 11, 2019\n4:56 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-94','','','2019-10-11 16:56:16','2019-10-11 16:56:16','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2869',0,'flamingo_inbound','',0),(2870,0,'2019-10-14 21:01:20','2019-10-14 21:01:20','From: brian erbe \n\nEmail: bikeinfo27@gmail.com\n\nPhone: 831-345-4213\n\nService:3pm-5pm\n\nMessage Body:\nThe following is the findings of my last MRI (Nov 2018).  I am a 44 year old male.  \r\n\r\nMild multilevel degenerative changes of the cervical intervertebral disc and facets including 3mm mild annular disc bulges at C5-C6 and C6-C7\r\n\r\nSevere left C5-C6 neural foraminal narrowing. \r\n\r\nMild C6-C7 central canal stenosis.\n\nAny Other Comments:\nMy back goes out on me once or twice a month, causing me to not be able to work for a day or so.\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-40','','','2019-10-14 21:01:20','2019-10-14 21:01:20','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-40/',0,'postman_sent_mail','',0),(2871,0,'2019-10-14 21:01:20','2019-10-14 21:01:20','bikeinfo27@gmail.com\nbrian erbe','bikeinfo27@gmail.com','','publish','closed','closed','','bikeinfo27-gmail-com','','','2019-10-14 21:01:20','2019-10-14 21:01:20','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2871',0,'flamingo_contact','',0),(2872,0,'2019-10-14 21:01:20','2019-10-14 21:01:20','brian erbe\nbikeinfo27@gmail.com\n831-345-4213\n3pm-5pm\nThe following is the findings of my last MRI (Nov 2018).  I am a 44 year old male.  \r\n\r\nMild multilevel degenerative changes of the cervical intervertebral disc and facets including 3mm mild annular disc bulges at C5-C6 and C6-C7\r\n\r\nSevere left C5-C6 neural foraminal narrowing. \r\n\r\nMild C6-C7 central canal stenosis.\nMy back goes out on me once or twice a month, causing me to not be able to work for a day or so.\n75\n75.140.157.77\nMozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.2 Safari/605.1.15\nhttps://www.drfields.com/contact/\nOctober 14, 2019\n9:01 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-95','','','2019-10-14 21:01:20','2019-10-14 21:01:20','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2872',0,'flamingo_inbound','',0),(2873,0,'2019-10-15 06:30:59','2019-10-15 06:30:59','From: Cheryl S Syphus \n\nEmail: cherylsyphus2007@yahoo.com\n\nPhone: 9512056968\n\nService:11am-1pm\n\nMessage Body:\nI have been told I need a knee replacement.I would like to have a less invasive repair.\n\nAny Other Comments:\nWhat alternatives does Dr Fields have &amp; what is the cost.\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-41','','','2019-10-15 06:30:59','2019-10-15 06:30:59','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-41/',0,'postman_sent_mail','',0),(2874,0,'2019-10-15 06:30:59','2019-10-15 06:30:59','cherylsyphus2007@yahoo.com\nCheryl S Syphus','cherylsyphus2007@yahoo.com','','publish','closed','closed','','cherylsyphus2007-yahoo-com','','','2019-10-15 06:30:59','2019-10-15 06:30:59','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2874',0,'flamingo_contact','',0),(2875,0,'2019-10-15 06:30:59','2019-10-15 06:30:59','Cheryl S Syphus\ncherylsyphus2007@yahoo.com\n9512056968\n11am-1pm\nI have been told I need a knee replacement.I would like to have a less invasive repair.\nWhat alternatives does Dr Fields have &amp; what is the cost.\n76\n45.51.156.29\nMozilla/5.0 (iPhone; CPU iPhone OS 13_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/84.0.271182770 Mobile/15E148 Safari/605.1\nhttps://www.drfields.com/contact/\nOctober 15, 2019\n6:30 am\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-96','','','2019-10-15 06:30:59','2019-10-15 06:30:59','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2875',0,'flamingo_inbound','',0),(2877,0,'2019-10-15 21:57:32','2019-10-15 21:57:32','From: Noah Carter \n\nEmail: noah@chiromarketinginc.org\n\nPhone: 000-000-0000\n\nService:11am-1pm\n\nMessage Body:\nHi,\r\nAre You Struggling to Grow Your Chiropractic Clinic? With 24,000 Google Searches for Chiropractors EVERY SINGLE DAY, Are YOU Making Sure to Keep Your Clinic in front of People Who Want Your Services?\r\n\r\nnoah@chiromarketinginc.org is an agency for Chiropractors focused on getting you 3X more patients by using the power of Social Media &amp; Google Ads. 1000+ Chiro Clinics are using these proven methods to generate more patients online. We have a 14-day free trial to give you the confidence you need.\r\n\r\nThe internet is filled with an audience who can be in your next patient list. Will you take action?\r\n\r\nPlease email me at noah@chiromarketinginc.org &amp; we will get on a quick call to set up your Free Trial.\r\n\r\nClient relation\r\nNoah Carter\r\nnoah@chiromarketinginc.org\r\nwww.chiromarketinginc.org\n\nAny Other Comments:\nHi,\r\nAre You Struggling to Grow Your Chiropractic Clinic? With 24,000 Google Searches for Chiropractors EVERY SINGLE DAY, Are YOU Making Sure to Keep Your Clinic in front of People Who Want Your Services?\r\n\r\nnoah@chiromarketinginc.org is an agency for Chiropractors focused on getting you 3X more patients by using the power of Social Media &amp; Google Ads. 1000+ Chiro Clinics are using these proven methods to generate more patients online. We have a 14-day free trial to give you the confidence you need.\r\n\r\nThe internet is filled with an audience who can be in your next patient list. Will you take action?\r\n\r\nPlease email me at noah@chiromarketinginc.org &amp; we will get on a quick call to set up your Free Trial.\r\n\r\nClient relation\r\nNoah Carter\r\nnoah@chiromarketinginc.org\r\nwww.chiromarketinginc.org\n\n-- \nThis e-mail was sent from a contact form on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields (https://www.drfields.com)','Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields \"[your-subject]\"','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-42','','','2019-10-15 21:57:32','2019-10-15 21:57:32','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-your-subject-42/',0,'postman_sent_mail','',0),(2878,0,'2019-10-15 21:57:33','2019-10-15 21:57:33','noah@chiromarketinginc.org\nNoah Carter','noah@chiromarketinginc.org','','publish','closed','closed','','noah-chiromarketinginc-org','','','2019-10-15 21:57:33','2019-10-15 21:57:33','',0,'https://www.drfields.com/?post_type=flamingo_contact&p=2878',0,'flamingo_contact','',0),(2879,0,'2019-10-15 21:57:33','2019-10-15 21:57:33','Noah Carter\nnoah@chiromarketinginc.org\n000-000-0000\n11am-1pm\nHi,\r\nAre You Struggling to Grow Your Chiropractic Clinic? With 24,000 Google Searches for Chiropractors EVERY SINGLE DAY, Are YOU Making Sure to Keep Your Clinic in front of People Who Want Your Services?\r\n\r\nnoah@chiromarketinginc.org is an agency for Chiropractors focused on getting you 3X more patients by using the power of Social Media &amp; Google Ads. 1000+ Chiro Clinics are using these proven methods to generate more patients online. We have a 14-day free trial to give you the confidence you need.\r\n\r\nThe internet is filled with an audience who can be in your next patient list. Will you take action?\r\n\r\nPlease email me at noah@chiromarketinginc.org &amp; we will get on a quick call to set up your Free Trial.\r\n\r\nClient relation\r\nNoah Carter\r\nnoah@chiromarketinginc.org\r\nwww.chiromarketinginc.org\nHi,\r\nAre You Struggling to Grow Your Chiropractic Clinic? With 24,000 Google Searches for Chiropractors EVERY SINGLE DAY, Are YOU Making Sure to Keep Your Clinic in front of People Who Want Your Services?\r\n\r\nnoah@chiromarketinginc.org is an agency for Chiropractors focused on getting you 3X more patients by using the power of Social Media &amp; Google Ads. 1000+ Chiro Clinics are using these proven methods to generate more patients online. We have a 14-day free trial to give you the confidence you need.\r\n\r\nThe internet is filled with an audience who can be in your next patient list. Will you take action?\r\n\r\nPlease email me at noah@chiromarketinginc.org &amp; we will get on a quick call to set up your Free Trial.\r\n\r\nClient relation\r\nNoah Carter\r\nnoah@chiromarketinginc.org\r\nwww.chiromarketinginc.org\n77\n69.167.15.1\nMozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\nhttps://www.drfields.com/contact/\nOctober 15, 2019\n9:57 pm\n29\ncontact\nContact\nhttps://www.drfields.com/contact/\nDebi33445\nbrinkerd@yahoo.com\nStem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com\nadmin@dentalimplantsmalibu.com','[your-subject]','','publish','closed','closed','','your-subject-97','','','2019-10-15 21:57:33','2019-10-15 21:57:33','',0,'https://www.drfields.com/?post_type=flamingo_inbound&p=2879',0,'flamingo_inbound','',0),(2881,8,'2019-10-16 20:00:23','2019-10-16 20:00:23','Bill\nHolcroft\nbholcroft@webstractmarketing.com\nBill Holcroft','bholcroft@webstractmarketing.com','','publish','closed','closed','','bholcroft-webstractmarketing-com','','','2019-10-16 20:00:23','2019-10-16 20:00:23','',0,'https://www.drfields.com/?post_type=flamingo_contact&#038;p=2881',0,'flamingo_contact','',0),(2882,8,'2019-10-16 19:16:43','2019-10-16 19:16:43','New user registration on your site Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields:\r\n\r\nUsername: BillH\r\n\r\nEmail: bholcroft@webstractmarketing.com\r\n','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] New User Registration','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-new-user-registration-2','','','2019-10-16 19:16:43','2019-10-16 19:16:43','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-new-user-registration-2/',0,'postman_sent_mail','',0),(2883,8,'2019-10-16 19:16:46','2019-10-16 19:16:46','Username: BillH\r\n\r\nTo set your password, visit the following address:\r\n\r\n<https://www.drfields.com/wp-login.php?action=rp&key=oJ4FgtLzPfNhpgz8LlCb&login=BillH>\r\n\r\nhttps://www.drfields.com/wp-login.php\r\n','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Login Details','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-login-details-2','','','2019-10-16 19:16:46','2019-10-16 19:16:46','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-login-details-2/',0,'postman_sent_mail','',0),(2885,8,'2019-10-17 21:41:55','2019-10-17 21:41:55','webmaster@webstractmarketing.com\nwebsite-admin','webmaster@webstractmarketing.com','','publish','closed','closed','','webmaster-webstractmarketing-com','','','2019-10-17 21:41:55','2019-10-17 21:41:55','',0,'https://www.drfields.com/?post_type=flamingo_contact&#038;p=2885',0,'flamingo_contact','',0),(2886,8,'2019-10-16 20:17:12','2019-10-16 20:17:12','New user registration on your site Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields:\r\n\r\nUsername: website-admin\r\n\r\nEmail: webmaster@webstractmarketing.com\r\n','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] New User Registration','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-new-user-registration-3','','','2019-10-16 20:17:12','2019-10-16 20:17:12','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-new-user-registration-3/',0,'postman_sent_mail','',0),(2888,8,'2019-10-16 20:24:35','2019-10-16 20:24:35','Howdy website-admin,\n\nYou recently requested to have the administration email address on\nyour site changed.\n\nIf this is correct, please click on the following link to change it:\nhttps://www.drfields.com/wp-admin/options.php?adminhash=a21f55abe5d250a739b017142ef53c27\n\nYou can safely ignore and delete this email if you do not want to\ntake this action.\n\nThis email has been sent to webmaster@webstractmarketing.com\n\nRegards,\nAll at Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] New Admin Email Address','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-new-admin-email-address','','','2019-10-16 20:24:35','2019-10-16 20:24:35','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-new-admin-email-address/',0,'postman_sent_mail','',0),(2889,8,'2019-10-16 20:25:01','2019-10-16 20:25:01','Hi,\n\nThis notice confirms that the admin email address was changed on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields.\n\nThe new admin email address is webmaster@webstractmarketing.com.\n\nThis email has been sent to admin@dentalimplantsmalibu.com\n\nRegards,\nAll at Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Admin Email Changed','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-admin-email-changed','','','2019-10-16 20:25:01','2019-10-16 20:25:01','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-admin-email-changed/',0,'postman_sent_mail','',0),(2890,8,'2019-10-17 07:27:46','2019-10-17 07:27:46','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">The Best Treatments for Medial Collateral Ligament Injuries</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/the-best-treatments-for-medial-collateral-ligament-injuries/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-10-17 07:27:46','2019-10-17 07:27:46','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2891,8,'2019-10-17 08:06:16','2019-10-17 08:06:16','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla Knee\"]<strong>Priscilla - Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Knee - \"]<strong>Andy -Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Knee\"]<strong>Claire - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Knee\"]<strong>Robert B. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','inherit','closed','closed','','1700-revision-v1','','','2019-10-17 08:06:16','2019-10-17 08:06:16','',1700,'https://www.drfields.com/uncategorized/1700-revision-v1/',0,'revision','',0),(2892,8,'2019-10-17 08:11:57','2019-10-17 08:11:57','In Snapping Hip Syndrome, sufferers hear or feel a snap, pop, or click when they move their hip joint. Encountering these symptoms is not a normal process, but one that points to an injury or degenerative condition.\r\n<h2>What Is the Cause of Snapping Hip Syndrome?</h2>\r\nThere are several reasons Snapping Hip Syndrome occurs, and they can be due to problems either inside or outside of the hip joint.\r\n\r\nMost commonly, the condition involves a thick, wide tendon called the <em><strong>iliotibial band</strong> </em>that runs along the outside or lateral side of the hip joint. The iliotibial band snaps over the bony prominence, a part of the thigh bone that sticks out, called the greater trochanter on the outside of the hip.\r\n\r\nWhen a person with this condition moves into a standing position for example, the band may be positioned behind the trochanter. And then when bending the hip, the band will move and “snap” over towards the front of the bony prominence. Over time, irritation from this “snapping” may also result in bursitis.\r\n\r\nAnother tendon is involved in the second cause of Snapping Hip Syndrome, as it catches on underlying bony prominences of the pelvis. The <em><strong>iliopsoas tendon</strong></em> snaps over the iliopectineal eminence when bending or flexing the hip. The annoying snapping sensation or sound is generally the only symptom involved when the iliopsoas tendon is the source.\r\n\r\nAn additional area where snapping can occur is located where the ball of the hip joint fits into the socket. This snapping involves the <em><strong>rectus femoris</strong></em> tendon as it runs from inside the thighbone and up through the pelvis. When the hip joint bends and straightens, the tendon moves and snaps back and forth across the ball of the hip joint.\r\n\r\nThe least common cause of Snapping Hip Syndrome occurs inside the hip joint and involves a <em><strong>tear in the hip labrum or a tear in the cartilage</strong></em>. Bits of cartilage or even bone can also become loose inside the joint, in these types of injuries. These pieces are called loose fragments and can be an associated cause of Snapping Hip Syndrome which can cause the hip to lock up. In this scenario inside the hip, the sufferer often experiences pain that is disabling.\r\n\r\nA combination of the various causes, plus muscle injury can also occur. Additionally, if the problem is ongoing and the tendons remain lax over a prolonged period of time, Snapping Hip Syndrome can lead to arthritis.\r\n<h2>Who Experiences Snapping Hip Syndrome?</h2>\r\n[caption id=\"attachment_4032\" align=\"alignright\" width=\"510\"]<img class=\"wp-image-4032 \" src=\"https://www.drfields.com/wp-content/uploads/2019/10/Snapping-Hip-Syndrome-500x500.png\" alt=\"Snapping Hip Syndrome\" width=\"510\" height=\"510\" /> <strong>                                  Snapping Hip Syndrome in Athletes </strong>[/caption]\r\n\r\nSnapping Hip Syndrome is common in young athletes like ballet dancers, soccer players, and runners. Dancers and other athletes repetitively move their hip in order to perform their dance or sport.\r\n\r\nIf the hip and the tendons are moving abnormally, such as with Snapping Hip Syndrome, the abnormal rubbing and snapping of the tissue over bony prominences will occur again and again.\r\n\r\nWhen experiencing the symptoms, these athletes will frequently turn to treatments to relieve tight muscles, because they attribute their problem to overtraining. Treating muscles may give some relief, but will not repair the underlying injury to the ligaments, tendons, and/or hip labrum.\r\n\r\nTreatments that repair these soft tissue structures are necessary to stabilize the hip joint and stop the snapping from occurring.\r\n<h2>Regenerative Orthopedic Treatments for Snapping Hip Syndrome</h2>\r\nRegenerative Orthopedics directed towards the strengthening of these tendons and any involved ligaments, plus repair of the hip labrum, can tighten the joint and resolve the problem.\r\n\r\nOftentimes an underlying problem of looseness or laxity of the hip joint is involved, causing instability of the hip joint. Regenerative Orthopedics treats the hip instability, because it tightens and strengthens the injured and lax structures, and regenerates the areas that need healing. The treatment actually gets to the root cause of the problem, and is effective at repairing the injured soft tissue, and resolving the problem.\r\n\r\nThe injected solutions in Regenerative Orthopedic treatments draw immune cells and growth factors to the area in an effort to build new healthy soft tissue. The healing and repair boosts the body’s natural response of healing in soft-tissue injuries.  The result is ligaments and tendons that are stronger, and no longer loose.  The snapping and pain goes away, and the athlete can return to the sport they love.\r\n\r\nIf the cause of Snapping Hip Syndrome is a torn labrum or cartilage, a more advanced technique of Regenerative Orthopedics, including <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a> and/or PRP, may be required.  Labral tears respond well to these treatments. And cartilage, if involved, can regenerate too. If loose fragments are an issue, the physician will need to determine whether or not surgical removal is necessary.\r\n\r\nRegenerative Orthopedic treatments for Snapping Hip Syndrome get to the root cause of the condition. Specifically, the damaged connective tissues like tendons ligaments, and labrum, can be repaired and healed. That means you return quickly to the sports and activities you enjoy doing.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Snapping Hip Syndrome and Athletes','','publish','open','closed','','snapping-hip-syndrome','','','2020-08-26 01:22:56','2020-08-26 01:22:56','',0,'https://www.drfields.com/?p=2892',0,'post','',0),(2893,8,'2019-10-17 08:11:57','2019-10-17 08:11:57','In Snapping Hip Syndrome, sufferers hear or feel a snap, pop, or click when they move their hip joint. Encountering these symptoms is not a normal process, but one that points to an injury or degenerative condition.\r\n<h2>What Is the Cause of Snapping Hip Syndrome?</h2>\r\nThere are several reasons Snapping Hip Syndrome occurs, and they can be due to problems either inside or outside of the hip joint. Most commonly, the condition involves a thick, wide tendon called the iliotibial band that runs along the outside or lateral side of the hip joint. The iliotibial band snaps over the bony prominence, a part of the thigh bone that sticks out, called the greater trochanter on the outside of the hip.  When a person with this condition moves into a standing position for example, the band may be positioned behind the trochanter, and then when bending the hip, the band will move and “snap” over towards the front of the bony prominence. Over time, irritation from this “snapping” may also result in bursitis.\r\n\r\nAnother tendon is involved in the second cause of Snapping Hip Syndrome, as it catches on underlying bony prominences of the pelvis. The iliopsoas tendon snaps over the iliopectineal eminence when bending or flexing the hip. The annoying snapping sensation or sound is generally the only symptom involved when the iliopsoas tendon is the source.\r\n\r\nAn additional area where snapping can occur is where the ball of the hip joint fits into the socket. This snapping involves the rectus femoris tendon as it runs from inside the thighbone and up through the pelvis. When the hip joint bends and straightens, the tendon moves and snaps back and forth across the ball of the hip joint.\r\n\r\nThe least common cause of Snapping Hip Syndrome occurs inside the hip joint and involves a tear in the hip labrum or a tear in the cartilage. Bits of cartilage or even bone can also become loose inside the joint, in these types of injuries. These pieces are called loose fragments and can be an associated cause of Snapping Hip Syndrome which can cause the hip to lock up. In this scenario inside the hip, the sufferer often experiences pain that is disabling.\r\n\r\nA combination of the various causes, plus muscle injury can also occur. Additionally, if the problem is ongoing and the tendons remain lax over a prolonged period of time, Snapping Hip Syndrome can lead to arthritis.\r\n<h2>Who Experiences Snapping Hip Syndrome?</h2>\r\nSnapping Hip Syndrome is common in young athletes like ballet dancers, soccer players, and runners. Dancers and other athletes repetitively move their hip in order to perform their dance or sport. If the hip and the tendons are moving abnormally, such as with Snapping Hip Syndrome, the abnormal rubbing and snapping of the tissue over bony prominences will occur again and again. When experiencing the symptoms, these athletes will frequently turn to treatments to relieve tight muscles, because they attribute their problem to overtraining. Treating muscles may give some relief, but will not repair the underlying injury to the ligaments, tendons, and/or hip labrum. Treatments that repair these soft tissue structures are necessary to stabilize the hip joint and stop the snapping from occurring.\r\n<h2>Regenerative Orthopedic Treatments for Snapping Hip Syndrome</h2>\r\nRegenerative Orthopedics directed towards the strengthening of these tendons and any involved ligaments, plus repair of the hip labrum, can tighten the joint and resolve the problem. Oftentimes an underlying problem of looseness or laxity of the hip joint is involved, causing instability of the hip joint. Regenerative Orthopedics treats the hip instability, because it tightens and strengthens the injured and lax structures, and regenerates the areas that need healing. The treatment actually gets to the root cause of the problem, and is effective at repairing the injured soft tissue, and resolving the problem.\r\n\r\nThe injected solutions in Regenerative Orthopedic treatments draw immune cells and growth factors to the area in an effort to build new healthy soft tissue. The healing and repair boosts the body’s natural response of healing in soft-tissue injuries.  The result is ligaments and tendons that are stronger, and no longer loose.  The snapping and pain goes away, and the athlete can return to the sport they love.\r\n\r\nIf the cause of Snapping Hip Syndrome is a torn labrum or cartilage, a more advanced technique of Regenerative Orthopedics, including Stem Cell Therapy and/or PRP, may be required.  Labral tears respond well to these treatments, and cartilage can regenerate. If loose fragments are involved, the physician will need to determine whether or not surgical removal is necessary.\r\n\r\nRegenerative Orthopedic treatments for Snapping Hip Syndrome get to the root cause of the condition, specifically the damaged connective tissues like tendons ligaments, and labrum, and return you quickly to the activities you enjoy doing.','Snapping Hip Syndrome','','inherit','closed','closed','','2892-revision-v1','','','2019-10-17 08:11:57','2019-10-17 08:11:57','',2892,'https://www.drfields.com/uncategorized/2892-revision-v1/',0,'revision','',0),(2894,8,'2019-10-17 08:12:55','2019-10-17 08:12:55','[caption id=\"attachment_4027\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4027\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/Runners-Knee-500x500.jpg\" alt=\"Runners Knee\" width=\"500\" height=\"500\" /> Runners Knee[/caption]\r\n\r\nRunner’s Knee is a painful knee condition that is, like the name says, common in runners. Another name for Runner’s Knee is Patellofemoral Pain Syndrome (PFPS). And it is characterized by anterior knee pain.\r\n\r\nSufferers of this condition commonly experience pain behind and around the kneecap or patella. Runner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. It particularly affects adolescents and young adults. And it is quite common in younger recreational runners, with females suffering more frequently than males.\r\n\r\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur.\r\n\r\nThe patella not only moves up and down but also tilts and rotates. That allows for various points of contact between the patella and femur. Repetitive contact at these locations combined with the abnormal articulation of the patella is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome.\r\n\r\n&nbsp;\r\n\r\nPatellofemoral Pain Syndrome should be distinguished from chondromalacia. Chondromalacia is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\r\n<h2>What’s Behind Runner’s Knee?</h2>\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction may result from abnormal forces such as tight or weak quadriceps, subluxation, or dislocation of the patellofemoral joint can also present.\r\n\r\nRunner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. And anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Also, ligamentous, meniscal, and soft tissue damage can cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint. The abnormal movement leads to instability and improper tracking as the patella articulates with the patellofemoral groove in the femur.\r\n\r\nFor example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee (bending) as this movement increases the pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable. Especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces, and eventually the articular cartilage.\r\n<h2>What Are the Symptoms?</h2>\r\nBesides the tenderness behind, around, and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint. The pain typically occurs with activity. And it often worsens with activities that include steps, hills, and uneven surfaces.\r\n\r\nGoing downhill or downstairs aggravates the condition. Prolonged sitting can trigger pain due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\r\n<h2>How is Runner’s Knee Treated?</h2>\r\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, and orthotics. And physical therapy is often recommended. PT may include quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles, and iliotibial band stretching exercises.\r\n\r\n[caption id=\"attachment_4957\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4957\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/Runners-Knee.PRP_.Stems-4-500x419.png\" alt=\"Runner\'s Knee.prp.stems 4\" width=\"500\" height=\"419\" /> <strong>         PRP and Stem Cells Are Effective for Runner\'s Knee</strong>[/caption]\r\n\r\nThis approach may help temporarily. But it does not fix the problem of instability in the knee joint which is causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful. And exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee.\r\n\r\nRegenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella, will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening pulls the patella into the groove, which allows for a realignment of the patella.\r\nRegenerative Orthopedics along with vastus medialis strengthening will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee. The combination allows for a quick return to activities.\r\n<div class=\"vk-ContentBody sc-NQaSp cRMilg\">\r\n<p class=\"sc-hSBNlM iAaHRI\">A 2021 article in \"The American Journal of Sports Medicine\" says PRP, in combination with rehabilitation, is effective in reducing pain and improving activity levels for those with knee injuries like Runner\'s Knee.1</p>\r\n\r\n</div>\r\n<h3>References</h3>\r\nRodas, Gil, et al. \"Effect of autologous expanded bone marrow mesenchymal stem cells or leukocyte-poor platelet-rich plasma in chronic patellar tendinopathy (with gap&gt; 3 mm): preliminary outcomes after 6 months of a double-blind, randomized, prospective study.\" <i>The American Journal of Sports Medicine</i> 49.6 (2021): 1492-1504.\r\n<div class=\"sc-fvjPtz dgNjOL\"></div>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Runner’s Knee Pain','','publish','open','closed','','runners-knee-pain-2','','','2022-03-04 19:41:37','2022-03-04 19:41:37','',0,'https://www.drfields.com/?p=2894',0,'post','',0),(2895,8,'2019-10-17 08:12:55','2019-10-17 08:12:55','Runner’s Knee is a painful knee condition that is, like the name says, common in runners. Runner’s Knee is also called Patellofemoral Pain Syndrome (PFPS), and is characterized by anterior knee pain. Sufferers of this condition commonly experience pain behind and around the kneecap or patella. Runner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. Runner’s Knee particularly affects adolescents and young adults, is quite common in younger recreational runners, with females suffering more frequently than males.\r\n\r\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur. The patella not only moves up and down, but also tilts and rotates, allowing for various points of contact between the patella and femur. Repetitive contact at these locations combined with abnormal articulation of the patella, is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome. Patellofemoral Pain Syndrome should be distinguished from chondromalacia, which is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\r\n<h2>What’s Behind Runner’s Knee?</h2>\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. Anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. Anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint, which causes instability and improper tracking as the patella articulates with the patellofemoral groove in the femur. For example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee as this movement increases pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable, especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces, and eventually the articular cartilage.\r\n<h2>Runner’s Knee Symptoms</h2>\r\nBesides the tenderness behind, around and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint. The pain typically occurs with activity and often worsens with activities that include steps, hills, and uneven surfaces. Going downhill or downstairs aggravates the condition. Pain can also be triggered by prolonged sitting, due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\r\n<h2>How is Runner’s Knee Treated?</h2>\r\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, orthotics and physical therapy with quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles and iliotibial band stretching exercises. This approach may help temporarily, but it does not fix the problem of instability in the knee joint which is causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful, and exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee. Regenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening will pull the patella into the groove, allowing for a realignment of the patella.\r\nRegenerative Orthopedics along with vastus medialis strengthening will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee, allowing for a quick return to activities.','Runner’s Knee Pain','','inherit','closed','closed','','2894-revision-v1','','','2019-10-17 08:12:55','2019-10-17 08:12:55','',2894,'https://www.drfields.com/uncategorized/2894-revision-v1/',0,'revision','',0),(2897,8,'2019-10-17 08:14:05','2019-10-17 08:14:05','Runner’s Knee is a painful knee condition that is, like the name says, common in runners. Runner’s Knee is also called Patellofemoral Pain Syndrome (PFPS), and is characterized by anterior knee pain. Sufferers of this condition commonly experience pain behind and around the kneecap or patella. Runner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. Runner’s Knee particularly affects adolescents and young adults, is quite common in younger recreational runners, with females suffering more frequently than males.\n\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur. The patella not only moves up and down, but also tilts and rotates, allowing for various points of contact between the patella and femur. Repetitive contact at these locations combined with abnormal articulation of the patella, is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome. Patellofemoral Pain Syndrome should be distinguished from chondromalacia, which is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\n<h2>What’s Behind Runner’s Knee?</h2>\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. Anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\n\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. Anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\n\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint, which causes instability and improper tracking as the patella articulates with the patellofemoral groove in the femur. For example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee as this movement increases pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable, especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces, and eventually the articular cartilage.\n<h2>Runner’s Knee Symptoms</h2>\nBesides the tenderness behind, around and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint. The pain typically occurs with activity and often worsens with activities that include steps, hills, and uneven surfaces. Going downhill or downstairs aggravates the condition. Pain can also be triggered by prolonged sitting, due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\n<h2>How is Runner’s Knee Treated?</h2>\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, orthotics and physical therapy with quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles and iliotibial band stretching exercises. This approach may help temporarily, but it does not fix the problem of instability in the knee joint which is causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful, and exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee. Regenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening will pull the patella into the groove, allowing for a realignment of the patella.\nRegenerative Orthopedics along with vastus medialis strengthening will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee, allowing for a quick return to activities.','Runner’s Knee Pain','','inherit','closed','closed','','2894-autosave-v1','','','2019-10-17 08:14:05','2019-10-17 08:14:05','',2894,'https://www.drfields.com/uncategorized/2894-autosave-v1/',0,'revision','',0),(2898,8,'2019-10-17 08:15:48','0000-00-00 00:00:00','','Meniscus and Labral Tears','','draft','open','closed','','','','','2019-10-17 08:15:48','2019-10-17 08:15:48','',0,'https://www.drfields.com/?p=2898',0,'post','',0),(2899,8,'2019-10-17 08:16:11','2019-10-17 08:16:11','Meniscus tears of the knee and labral tears of the hip commonly occur from some form of trauma, such as that which transpires during a sporting event. The tears are not always immediate, but can arise after another structure of the hip or knee is damaged. Injury or damage to the joint inhibits normal functioning, and with continual use and wear and tear, the bones in the joint will rub against each other abnormally. Oftentimes, ligaments, tendons and the meniscus or labrum are all injured making the joint unstable and painful. As this course continues, the knee or hip joint will degenerate and progress to arthritis.\n\n<h4>The Meniscus Tears and Surgery</h4>\nThe menisci protect the cartilage in the knee from high stresses that are placed upon the joint. They are located between the femur and the tibia bones. Injury to the meniscus is one of the most common knee injuries where medical care is sought due to knee pain. Surgery is frequently recommended for various types of meniscus tears, including bucket handle tears, radial tears, horizontal tears, and oblique tears. When more than one of these patterns is present, the tear is called a complex tear.  Although frequently recommended, surgery, including arthroscopic surgery, adds to the instability of the joint, because joint structures are cut, scraped and removed. The meniscus and the articular cartilage are the most commonly removed structures, when arthroscopic surgery of the knee is performed. When the meniscus and cartilage are removed, the femur bone is unable to glide smoothly over the tibia, enhancing knee instability and hastening the arthritic rate. The dynamics within the joint are changed and the knee joint no longer functions normally. Arthroscopic surgery boosts arthritic degeneration, because pressure on the cartilage escalates when the meniscus is removed, and the joint becomes more unstable with the stretching, cutting and scraping of the ligaments, tendons and cartilage. The degeneration of the articular cartilage appears to be proportional to the size of the segment removed. The joint breakdown leads to further thinning of the remaining articular cartilage. This allows for increased pressure on the underlying tibia bone which then increases pressure on the ligaments. When the ligaments tear, the instability becomes even worse. The result of this breakdown of the joint is a cycle of knee pain, joint degeneration, structure damage, and even more pain.\n\n<h4>Hip Labral Tears</h4>\nThe hip labrum, along with various hip ligaments and the normal deep socket configuration of the anatomy of the hip joint, provide most of the stability of the hip. Injury to the ligaments, tendons and labrum, initiate the same damage and pain cycle that we described for the knee, which results in ongoing hip pain and can lead to hip arthritis. Surgical repair of the hip labrum and hip replacement are needed at times, but in our opinion, should be sought as a last resort. Just as removal of the meniscus increases instability in the knee, extraction of the labrum makes the hip joint more unstable, and will eventually degenerate the hip and lead to further arthritis.\n\n<h4>Treating Meniscus &amp; Labral Tears Non-Surgically with Regenerative Orthopedics</h4>\nNon-surgical options do exist to treat both meniscal and labral tears.  Regenerative Orthopedics, a regenerative injection therapy, has been successfully utilized to repair and regenerate the injured ligaments, tendons, meniscus, labrum and cartilage in injured and degenerated knee and hip joints. The therapy boosts collagen formation both outside and inside the knee and hip joint, by stimulating the body to repair itself. Comprehensively treating all of the ligament attachments of the joint, ensures the stability of the hip and knee joint, since treating the ligaments tightens the loose supporting structures, aiding in the elimination of pain. In cases of advanced degeneration and arthritis, the Gold Standard in Stem Cell Therapy can be utilized, which incorporates bone marrow stem cells, as well as adipose stem cells, plus Platelet Rich Plasma (PRP), and Prolotherapy  in a combined regenerative procedure. Stem cells can self-renew and differentiate (or change) into a variety of cell types, and repair injured tissue. PRP and Prolotherapy activate growth factors which augment stem cell proliferation and aid in the repair of conditions with cellular deficiencies, like a damaged meniscus or labrum. The Gold Standard in Stem Cell Therapy provides the cells and growth factors that the damaged tissues and degenerative conditions lack, to aid in their healing.\n\nMost painful joint conditions begin with joint instability due to damage to the surrounding ligaments. The instability can progress to meniscal injuries or labral degeneration and eventually to knee or hip arthritis. Treatments such as arthroscopy to repair these tears can actually increase the arthritic process. Non-surgical Regenerative Orthopedics is available as an excellent option to stimulate the body to repair the entire joint, and alleviate knee and hip pain, due to arthritis and/or as a result of ligament, tendon, meniscal and labral tears.\n','Meniscus and Labral Tears','','inherit','closed','closed','','1397-autosave-v1','','','2019-10-17 08:16:11','2019-10-17 08:16:11','',1397,'https://www.drfields.com/uncategorized/1397-autosave-v1/',0,'revision','',0),(2902,8,'2019-10-17 09:25:24','2019-10-17 09:25:24','<h2 class=\"text-center\">Please fill out the form below for your inquiries!</h2>\r\n[contact-form-7 id=\"4\" title=\"Contact page form\"]\r\n\r\n<div id=\"contact-frm\">\r\n[form]\r\n</div>','Contact','','inherit','closed','closed','','29-revision-v1','','','2019-10-17 09:25:24','2019-10-17 09:25:24','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(2903,8,'2019-10-17 10:17:05','2019-10-17 10:17:05','<h2 class=\"text-center\">Please fill out the form below for your inquiries!</h2>\r\n<div id=\"contact-frm\">\r\n[form]\r\n</div>','Contact','','inherit','closed','closed','','29-revision-v1','','','2019-10-17 10:17:05','2019-10-17 10:17:05','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(2904,8,'2019-10-17 17:03:49','2019-10-17 17:03:49','','iwp_log_5da89ef536c7e','','publish','closed','closed','','iwp_log_5da89ef536c7e','','','2019-10-17 17:03:49','2019-10-17 17:03:49','',0,'https://www.drfields.com/uncategorized/iwp_log_5da89ef536c7e/',0,'iwp_log','',0),(2905,8,'2019-10-17 17:03:51','2019-10-17 17:03:51','','iwp_log_5da89ef770bec','','publish','closed','closed','','iwp_log_5da89ef770bec','','','2019-10-17 17:03:51','2019-10-17 17:03:51','',0,'https://www.drfields.com/uncategorized/iwp_log_5da89ef770bec/',0,'iwp_log','',0),(2906,8,'2019-10-17 17:03:56','2019-10-17 17:03:56','','iwp_log_5da89efc72b74','','publish','closed','closed','','iwp_log_5da89efc72b74','','','2019-10-17 17:03:56','2019-10-17 17:03:56','',0,'https://www.drfields.com/uncategorized/iwp_log_5da89efc72b74/',0,'iwp_log','',0),(2907,8,'2019-10-17 17:04:04','2019-10-17 17:04:04','','iwp_log_5da89f040d96e','','publish','closed','closed','','iwp_log_5da89f040d96e','','','2019-10-17 17:04:04','2019-10-17 17:04:04','',0,'https://www.drfields.com/uncategorized/iwp_log_5da89f040d96e/',0,'iwp_log','',0),(2908,8,'2019-10-17 17:04:05','2019-10-17 17:04:05','','iwp_log_5da89f052eba8','','publish','closed','closed','','iwp_log_5da89f052eba8','','','2019-10-17 17:04:05','2019-10-17 17:04:05','',0,'https://www.drfields.com/uncategorized/iwp_log_5da89f052eba8/',0,'iwp_log','',0),(2909,0,'2019-10-17 21:37:28','2019-10-17 21:37:28','Someone has requested a password reset for the following account:\r\n\r\nSite Name: Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\r\n\r\nUsername: website-admin\r\n\r\nIf this was a mistake, just ignore this email and nothing will happen.\r\n\r\nTo reset your password, visit the following address:\r\n\r\n\r\n','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Password Reset','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-password-reset','','','2019-10-17 21:37:28','2019-10-17 21:37:28','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-password-reset/',0,'postman_sent_mail','',0),(2910,8,'2019-10-17 21:41:58','2019-10-17 21:41:58','Hi website-admin,\n\nThis notice confirms that your password was changed on Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields.\n\nIf you did not change your password, please contact the Site Administrator at\nwebmaster@webstractmarketing.com\n\nThis email has been sent to webmaster@webstractmarketing.com\n\nRegards,\nAll at Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields\nhttps://www.drfields.com','[Stem Cell PRP Prolotherapy Surgery Alternative Orthopedic Medicine Treatment - Dr Fields] Password Changed','','private','closed','closed','','stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-password-changed','','','2019-10-17 21:41:58','2019-10-17 21:41:58','',0,'https://www.drfields.com/postman_sent_mail/stem-cell-prp-prolotherapy-surgery-alternative-orthopedic-medicine-treatment-dr-fields-password-changed/',0,'postman_sent_mail','',0),(2911,8,'2019-10-17 23:10:36','2019-10-17 23:10:36','','iwp_log_5da8f4ec2ca34','','publish','closed','closed','','iwp_log_5da8f4ec2ca34','','','2019-10-17 23:10:36','2019-10-17 23:10:36','',0,'https://www.drfields.com/uncategorized/iwp_log_5da8f4ec2ca34/',0,'iwp_log','',0),(2912,8,'2019-10-18 03:54:37','2019-10-18 03:54:37','Overuse Injuries can happen in any joint of the body. Repetitive strain from repeat motion and overuse due to particular jobs and activities can lead to these injuries.  Injuries, such as Runner’s Knee, Rotator Cuff Tendonitis, and Tennis Elbow are examples of overuse injuries.\r\n\r\nOveruse injuries are progressive activity-related injuries linked to repetitive stress that is placed on the tendon, ligament or other joint structure. Individuals with overuse injuries may try to manage their pain on their own for a while. They may attempt to stabilize the knee, shoulder or elbow with a brace. Or calm the pain with over-the-counter medications. Or even rest the joint a bit in order to find enough relief to be able to play in the next game, continue to work, or participate in their upcoming event.\r\n<h2>Common Causes of Overuse Injuries</h2>\r\nDoing too much of the same activity strains the tendons, ligaments, and other soft tissue structures. Training error and improper technique may add to the possibility of an overuse injury. Using poor or improper form during training exercises, while running on uneven ground, and when swinging a tennis racket. Or even poor form when painting walls can overload the muscles, tendons, and ligaments, and cause an overuse injury.\r\n\r\nIn cases of Runners Knee, for example, the repeated stress again and again,  from the force of hitting hard surfaces while contracting the leg muscle when running, results in a weakening of the tendon and ligaments. In overuse injuries, many may think the tendon or ligaments are just inflamed. And although the injury may begin with inflammation, when left untreated, this overuse injury overloads the tendon and ligaments. The result is degeneration or even in a tear. Many cases of overuse injuries become chronic with instances of recurrence.\r\n<h2>Symptoms of Overuse Injuries</h2>\r\nIn the beginning, pain and tenderness are noted in the affected area after physical activity. As the problem progresses, the pain and discomfort occur during activity. Of course, symptoms vary with the various joints and from person to person. But as the condition advances, swelling and pain will restrict the ability to perform sports or particular activities. Eventually, the pain and symptoms will persist, even at rest.\r\n<h2>Treating Overuse Injuries</h2>\r\nChasing and suppressing symptoms with bracing and pain medications may keep the swelling down and provide momentary pain relief. But a knee sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. The debilitating pain can keep the individual and athlete searching for a cure.\r\n<h3>Is surgery the answer?</h3>\r\nSurgery prolongs the athlete’s return to sport.<a href=\"#_edn1\" name=\"_ednref1\"><sup>[i]</sup></a>  Fortunately, there are non-surgical options!\r\n\r\nHere’s what doctors in New York say about the overuse injury patellar tendonitis, “Due to its common refractory response (difficulty in treating) to conservative treatment, a variety of new treatments have emerged recently that include...<strong>Prolotherapy</strong>, <strong>platelet-rich plasma therapy (PRP)</strong><strong>,</strong> arthroscopic surgical procedures, surgical resection of the inferior patellar pole (cutting away tendon tissue at the kneecap)…”<a href=\"#_edn2\" name=\"_ednref2\"><sup>[ii]</sup></a>\r\n\r\nAt OrthoRegen<sup>®</sup>, the regenerative treatments we use for painful joint conditions include Platelet Rich Plasma and Prolotherapy. But the researchers listed surgery too! Why do surgery if PRP is good enough? And is PRP good enough to effectively treat overuse conditions?\r\n<h3>What Do the Studies Show?</h3>\r\nStudies done in Europe demonstrate the effectiveness of Platelet Rich Plasma for those with overuse conditions of the knee. And it is able to improve pain symptoms and functionality. Here is what they say: “The most important finding in our meta-analysis is that PRP injections are statistically better than the control group at longer term follow-up suggesting that PRP is an effective and worthwhile treatment for Patellar Tendinopathy. <a href=\"#_edn3\" name=\"_ednref3\">[iii]</a><sup>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup>\r\n\r\nA 2018 study agreed that multiple PRP injections offer the most satisfactory results.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a> Athletes are looking to non-surgical therapies such as Stem Cell Treatments, Platelet Rich Plasma, or Prolotherapy treatments, because they are showing improved outcomes in those with tendon and ligament conditions like Runner’s Knee.<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n<h2>Treating Overuse Injuries with Regenerative Orthopedics</h2>\r\nAt OrthoRegen<sup>®</sup>, using regenerative therapies like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy is what we do. By treating overuse injuries with Regenerative Orthopedics, athletes can get back to their sport. And other individuals and non-athletes can return to the activities they love.\r\n\r\nWe see substantial, consistent improvements in pain outcomes when treating those with overuse injuries.  <strong>Regenerative Orthopedics can treat various joint disorders including problems of the tendons. </strong>That\'s because the injections are directed at the weakened tendons and involved ligaments which stimulate a string of healing events. The healing events include an increase of blood supply, an influx of reparative cells, and the deposition of collagen cells. And when the collagen matures, it will strengthen and tighten the damaged tendons and ligaments.\r\n\r\n<strong>Why would we treat the ligaments too? </strong>\r\n\r\nThe ongoing and recurring joint pain in overuse conditions is rooted in joint instability. Patients with overuse injuries often have concurrent weakness in the ligaments of the joint. These ligaments play a huge role in stabilizing the joint. And when weak, will put more strain on the tendon and other joint structures.\r\n\r\nThe problem of weak ligaments needs to be addressed in treatment. Therefore, we treat the joint comprehensively, and make sure we treat any injured and weakened ligaments as well, in order to achieve the best results. Comprehensive treatment will result in repair and healing of the entire joint, tightening of the ligaments, and strengthening and repair of the tendons. So the joint and all of its structures will function normally. And the athletes and individuals who were sidelined by overuse injuries will be able return confidently and pain-free to the sport and activities they love.\r\n<h3>References</h3>\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Cook J L, Khan KM, Harcourt PR, <em>et al. </em><a href=\"http://bjsm.bmj.com/content/31/4/332.short\" target=\"_blank\" rel=\"noopener noreferrer\">A cross sectional study of 100 athletes with jumper’s knee managed conservatively and surgically.</a> The Victorian Institute of Sport Tendon Study Group. Br J Sports Med1997; 31: 332 – 336.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Christian RA, Rossy WH, Sherman OH. Patellar tendinopathy – recent developments toward treatment. Bull Hosp Jt Dis (2013). 2014;72(3):217-24.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Kaux JF, Bruyere O, Croisier JL, Forthomme B, Le Goff C, Crielaard JM. One-year follow-up of platelet-rich plasma infiltration to treat chronic proximal patellar tendinopathies. Acta Orthop Belg. 2015 Jun;81(2):251-6.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Dupley L, Charalambous CP. Platelet-Rich Plasma Injections as a Treatment for Refractory Patellar Tendinosis: A Meta-Analysis of Randomised Trials. Knee surgery &amp; related research. 2017 Sep;29(3):165.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Kopka M, Bradley JP. The Use of Biologic Agents in Athletes with Knee Injuries. J Knee Surg. 2016 Jul;29(5):379-86. doi: 10.1055/s-0036-1584194. Epub 2016 May 20.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Do Overuse Injuries Have You Sidelined?','','publish','open','closed','','do-overuse-injuries-have-you-sidelined','','','2020-08-25 17:03:09','2020-08-25 17:03:09','',0,'https://www.drfields.com/?p=2912',0,'post','',0),(2913,8,'2019-10-18 03:54:37','2019-10-18 03:54:37','<h2>Does Jumper’s Knee Have You Sidelined?</h2>\r\nJumper’s Knee is a painful knee condition commonly due to a sports-related overuse injury. Patellar tendonitis is another name for this progressive activity-related injury which is linked to repetitive stress that is placed on the patellar tendon. Individuals with Jumper’s Knee may try to manage the pain on their own for a while. They may attempt to stabilize the knee with a brace or knee sleeve, or calm the pain with over-the-counter medications, or even rest the knee a bit in order to be able to play in the next game or participate in their upcoming event.\r\n<h2>The Patellar Tendon and Jumper’s Knee</h2>\r\nThe patellar tendon connects the kneecap or patella to the shinbone. The tendon passes from the large muscle at the front of the thigh, over the kneecap and then connects to the shinbone. Although many may think their tendon is just inflamed, the main problem is more degenerative in nature. The repeated stress from the force of hitting hard surfaces while contracting the leg muscle during the jumping maneuver, over and over, results in a weakening of the tendon. Left untreated, this overuse injury from frequent jumping overloads the tendon and can degenerate it. Half of all cases of Jumper’s Knee become chronic with instances of recurrence.\r\n<h2>Symptoms of Jumper’s Knee</h2>\r\nNot everyone with Jumper’s Knee experiences the same symptoms, but there is generally pain and tenderness noted around the patellar tendon, especially when jumping, running, or even walking. Individuals with Jumper’s Knee may notice swelling of the knee and pain with bending or straightening of the leg, and pain behind the kneecap.\r\n<h2>Treating Jumper’s Knee</h2>\r\nChasing and suppressing symptoms with bracing and pain medications may keep the swelling down and provide momentary pain relief, but a knee sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. The debilitating pain, however, will keep the athlete searching for a cure.  Doctors may suggest surgery, because they consider Jumper’s Knee difficult to fix, especially since it tends to recur. However, surgery prolongs the athlete’s return to sport for more than six months.<a href=\"#_edn1\" name=\"_ednref1\"><sup>[i]</sup></a>  And what if the surgery fails? Then, those with a degenerated patellar tendon still have a condition that is difficult to fix. Are there other options? Here’s what doctors in New York say, “Due to its common refractory response (difficulty in treating) to conservative treatment, a variety of new treatments have emerged recently that include dry-needling, <strong>sclerosing injections (Prolotherapy)</strong>, <a href=\"https://www.caringmedical.com/what-is-prolotherapy-with-platelet-rich-plasma/\"><strong>platelet-rich plasma therapy</strong></a><strong> (PRP)</strong><strong>,</strong> arthroscopic surgical procedures, surgical resection of the inferior patellar pole (cutting away tendon tissue at the kneecap),”etc … <a href=\"#_edn2\" name=\"_ednref2\"><sup>[ii]</sup></a> At OrthoRegen, the regenerative treatments we use for painful joint conditions include Platelet Rich Plasma and Prolotherapy. But the researchers listed surgery too! Why do surgery if PRP is good enough? And is it good enough to effectively treat Jumper’s Knee? Studies done in Europe demonstrate the effectiveness of Platelet Rich Plasma for those with Jumper’s Knee, and its ability to improve pain symptoms and functionality, saying, “The most important finding in our meta-analysis is that PRP injections are statistically better than the control group at longer term follow-up suggesting that PRP is an effective and worthwhile treatment for Patellar Tendinopathy. <a href=\"#_edn3\" name=\"_ednref3\">[iii]</a><sup>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup> A 2018 study agreed that multiple PRP injections offer the most satisfactory results.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a> Athletes are looking to non-surgical therapies such as stem cell treatments and platelet rich plasma treatments, because they are showing improved outcomes in those with patellar tendon conditions like Jumper’s Knee.<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n<h2>Treating Jumper’s Knee with Regenerative Orthopedics</h2>\r\nAt OrthoRegen, using regenerative therapies like Platelet Rich Plasma, Stem Cell Therapy, and Prolotherapy is what we do. By treating Jumper’s Knee with Regenerative Orthopedics, athletes can get back to their sport. We see substantial, consistent improvements in pain outcomes when treating those with Jumper’s Knee and patellar tendon conditions.  <strong>Regenerative Orthopedics can treat various knee disorders including problems of the tendons, because the</strong><strong> injections directed at the weakened tendons and involved ligaments</strong> stimulate a string of healing events, which include an increase of blood supply, an influx of reparative cells, and the deposition of collagen cells. When the collagen matures, it will strengthen and tighten the damaged tendons and ligaments.\r\n\r\n<strong>Why would we treat the ligaments too? </strong>The ongoing and recurring kneecap pain in tendon conditions is rooted in knee instability. Patients with Jumper’s Knee often have concurrent weakness in the ligaments of the knee. These ligaments play a huge role in stabilizing the knee, and when weak, will put more strain on the patellar tendon. The problem of weak ligaments needs to be addressed in treatment. Therefore, we treat the knee comprehensively, and make sure we treat any injured and weakened ligaments as well, in order to achieve the best results. Comprehensive treatment will result in repair and healing, tightening of the ligaments, and strengthening and repair of the patellar tendon, so the knee and all of its structures function normally, and the athlete and individual sidelined by Jumper’s Knee can return confidently and pain-free to the sport and activities they love.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Cook J L, Khan KM, Harcourt PR, <em>et al. </em><a href=\"http://bjsm.bmj.com/content/31/4/332.short\">A cross sectional study of 100 athletes with jumper’s knee managed conservatively and surgically.</a> The Victorian Institute of Sport Tendon Study Group. Br J Sports Med1997; 31: 332 – 336.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Christian RA, Rossy WH, Sherman OH. Patellar tendinopathy – recent developments toward treatment. Bull Hosp Jt Dis (2013). 2014;72(3):217-24.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Kaux JF, Bruyere O, Croisier JL, Forthomme B, Le Goff C, Crielaard JM. One-year follow-up of platelet-rich plasma infiltration to treat chronic proximal patellar tendinopathies. Acta Orthop Belg. 2015 Jun;81(2):251-6.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Dupley L, Charalambous CP. Platelet-Rich Plasma Injections as a Treatment for Refractory Patellar Tendinosis: A Meta-Analysis of Randomised Trials. Knee surgery &amp; related research. 2017 Sep;29(3):165.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Kopka M, Bradley JP. The Use of Biologic Agents in Athletes with Knee Injuries. J Knee Surg. 2016 Jul;29(5):379-86. doi: 10.1055/s-0036-1584194. Epub 2016 May 20.','Does Jumper\'s Knee Have You Sidelined?','','inherit','closed','closed','','2912-revision-v1','','','2019-10-18 03:54:37','2019-10-18 03:54:37','',2912,'https://www.drfields.com/uncategorized/2912-revision-v1/',0,'revision','',0),(2914,8,'2019-10-18 03:55:40','2019-10-18 03:55:40','<h2>Does Jumper’s Knee Have You Sidelined?</h2>\r\nJumper’s Knee is a painful knee condition commonly due to a sports-related overuse injury. Patellar tendonitis is another name for this progressive activity-related injury which is linked to repetitive stress that is placed on the patellar tendon. Individuals with Jumper’s Knee may try to manage the pain on their own for a while. They may attempt to stabilize the knee with a brace or knee sleeve, or calm the pain with over-the-counter medications, or even rest the knee a bit in order to be able to play in the next game or participate in their upcoming event.\r\n<h2>The Patellar Tendon and Jumper’s Knee</h2>\r\nThe patellar tendon connects the kneecap or patella to the shinbone. The tendon passes from the large muscle at the front of the thigh, over the kneecap and then connects to the shinbone. Although many may think their tendon is just inflamed, the main problem is more degenerative in nature. The repeated stress from the force of hitting hard surfaces while contracting the leg muscle during the jumping maneuver, over and over, results in a weakening of the tendon. Left untreated, this overuse injury from frequent jumping overloads the tendon and can degenerate it. Half of all cases of Jumper’s Knee become chronic with instances of recurrence.\r\n<h2>Symptoms of Jumper’s Knee</h2>\r\nNot everyone with Jumper’s Knee experiences the same symptoms, but there is generally pain and tenderness noted around the patellar tendon, especially when jumping, running, or even walking. Individuals with Jumper’s Knee may notice swelling of the knee and pain with bending or straightening of the leg, and pain behind the kneecap.\r\n<h2>Treating Jumper’s Knee</h2>\r\nChasing and suppressing symptoms with bracing and pain medications may keep the swelling down and provide momentary pain relief, but a knee sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. The debilitating pain, however, will keep the athlete searching for a cure.  Doctors may suggest surgery, because they consider Jumper’s Knee difficult to fix, especially since it tends to recur. However, surgery prolongs the athlete’s return to sport for more than six months.<a href=\"#_edn1\" name=\"_ednref1\"><sup>[i]</sup></a>  And what if the surgery fails? Then, those with a degenerated patellar tendon still have a condition that is difficult to fix. Are there other options? Here’s what doctors in New York say, “Due to its common refractory response (difficulty in treating) to conservative treatment, a variety of new treatments have emerged recently that include dry-needling, <strong>sclerosing injections (Prolotherapy)</strong>, <a href=\"https://www.caringmedical.com/what-is-prolotherapy-with-platelet-rich-plasma/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>platelet-rich plasma therapy</strong></a><strong> (PRP)</strong><strong>,</strong> arthroscopic surgical procedures, surgical resection of the inferior patellar pole (cutting away tendon tissue at the kneecap),”etc … <a href=\"#_edn2\" name=\"_ednref2\"><sup>[ii]</sup></a> At OrthoRegen, the regenerative treatments we use for painful joint conditions include Platelet Rich Plasma and Prolotherapy. But the researchers listed surgery too! Why do surgery if PRP is good enough? And is it good enough to effectively treat Jumper’s Knee? Studies done in Europe demonstrate the effectiveness of Platelet Rich Plasma for those with Jumper’s Knee, and its ability to improve pain symptoms and functionality, saying, “The most important finding in our meta-analysis is that PRP injections are statistically better than the control group at longer term follow-up suggesting that PRP is an effective and worthwhile treatment for Patellar Tendinopathy. <a href=\"#_edn3\" name=\"_ednref3\">[iii]</a><sup>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup> A 2018 study agreed that multiple PRP injections offer the most satisfactory results.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a> Athletes are looking to non-surgical therapies such as stem cell treatments and platelet rich plasma treatments, because they are showing improved outcomes in those with patellar tendon conditions like Jumper’s Knee.<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n<h2>Treating Jumper’s Knee with Regenerative Orthopedics</h2>\r\nAt OrthoRegen, using regenerative therapies like Platelet Rich Plasma, Stem Cell Therapy, and Prolotherapy is what we do. By treating Jumper’s Knee with Regenerative Orthopedics, athletes can get back to their sport. We see substantial, consistent improvements in pain outcomes when treating those with Jumper’s Knee and patellar tendon conditions.  <strong>Regenerative Orthopedics can treat various knee disorders including problems of the tendons, because the</strong><strong> injections directed at the weakened tendons and involved ligaments</strong> stimulate a string of healing events, which include an increase of blood supply, an influx of reparative cells, and the deposition of collagen cells. When the collagen matures, it will strengthen and tighten the damaged tendons and ligaments.\r\n\r\n<strong>Why would we treat the ligaments too? </strong>The ongoing and recurring kneecap pain in tendon conditions is rooted in knee instability. Patients with Jumper’s Knee often have concurrent weakness in the ligaments of the knee. These ligaments play a huge role in stabilizing the knee, and when weak, will put more strain on the patellar tendon. The problem of weak ligaments needs to be addressed in treatment. Therefore, we treat the knee comprehensively, and make sure we treat any injured and weakened ligaments as well, in order to achieve the best results. Comprehensive treatment will result in repair and healing, tightening of the ligaments, and strengthening and repair of the patellar tendon, so the knee and all of its structures function normally, and the athlete and individual sidelined by Jumper’s Knee can return confidently and pain-free to the sport and activities they love.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Cook J L, Khan KM, Harcourt PR, <em>et al. </em><a href=\"http://bjsm.bmj.com/content/31/4/332.short\" target=\"_blank\" rel=\"noopener noreferrer\">A cross sectional study of 100 athletes with jumper’s knee managed conservatively and surgically.</a> The Victorian Institute of Sport Tendon Study Group. Br J Sports Med1997; 31: 332 – 336.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Christian RA, Rossy WH, Sherman OH. Patellar tendinopathy – recent developments toward treatment. Bull Hosp Jt Dis (2013). 2014;72(3):217-24.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Kaux JF, Bruyere O, Croisier JL, Forthomme B, Le Goff C, Crielaard JM. One-year follow-up of platelet-rich plasma infiltration to treat chronic proximal patellar tendinopathies. Acta Orthop Belg. 2015 Jun;81(2):251-6.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Dupley L, Charalambous CP. Platelet-Rich Plasma Injections as a Treatment for Refractory Patellar Tendinosis: A Meta-Analysis of Randomised Trials. Knee surgery &amp; related research. 2017 Sep;29(3):165.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Kopka M, Bradley JP. The Use of Biologic Agents in Athletes with Knee Injuries. J Knee Surg. 2016 Jul;29(5):379-86. doi: 10.1055/s-0036-1584194. Epub 2016 May 20.','Does Jumper\'s Knee Have You Sidelined?','','inherit','closed','closed','','2912-revision-v1','','','2019-10-18 03:55:40','2019-10-18 03:55:40','',2912,'https://www.drfields.com/uncategorized/2912-revision-v1/',0,'revision','',0),(2915,8,'2019-10-18 03:57:41','2019-10-18 03:57:41','We have made reference to cortisone injections in several previous articles regarding treatment options for joint pain, because cortisone (steroid injection) is generally recommended by conventional medicine. Cortisone treatment may only result in temporary relief. And it is frequently used to delay the eventual joint replacement.\r\n\r\nBut did you know this commonly used treatment option may not be as safe as you think? Recently released evidence in the medical journal “Radiology,” describes the negative risks of using cortisone injections. <a href=\"#_edn1\" name=\"_ednref1\">[i]</a>Although prior studies have been conducted showing cortisone to have a negative impact on joints, this most recent article helps to bring awareness to the adverse effects cortisone injections have on the joint.\r\n\r\n[caption id=\"attachment_4020\" align=\"alignright\" width=\"400\"]<img class=\"wp-image-4020 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2020/08/cortisone-400x500.png\" alt=\"Cortisone\" width=\"400\" height=\"500\" /> <strong>     Cortisone Injections Can Be Toxic to Cartilage</strong>[/caption]\r\n<h2>What Happens When Cortisone Is Injected Into the Joint?</h2>\r\n<em><strong>Cortisone appears to be toxic to cartilage.</strong></em> When cortisone is injected into the joint, it actually boosts the progression of the destruction of cartilage. That means it accelerates arthritis.\r\n\r\nOftentimes, cortisone is injected into joints for relief of arthritis pain and the symptoms associated with it. But doesn\'t it seem contrary then, to use a “treatment” that makes arthritis worse, in an effort to treat it? Cortisone destroys cartilage, boosts cell death in the joint, and increases bone loss.\r\n<h2>Behind the Use of Cortisone Injections</h2>\r\nArthritis is a very common disease of the joint that limits activity and quality of life. It often results in disability. In an effort to treat arthritis, physicians initially approach pain and symptom control in a non-surgical fashion, generally attempting to delay the eventual joint replacement.\r\n\r\nAdditionally, older or sicker patients may not be able to tolerate surgery, and in those cases, more conservative treatments are needed and recommended. Cortisone injections may provide some patients with days of relief. Others may get months of pain and symptom control with cortisone injections into the joint. For this reason it is a commonly performed treatment, because it does reduce the inflammation and swelling of arthritis.\r\n\r\nPhysicians have known there were risks involved in the use of cortisone injections into joints! <em><strong>Even though the study mentioned in this article is a new study, there have been many previous studies demonstrating the risks and the damage cortisone does to the joint structures.</strong></em> That is why, when your physician discusses cortisone injection with you, it is recommended that the injections not be given more than once every three months. Hopefully, the reason behind the limits is explained as well. It is important for the patient to be educated on the risks of treatment with cortisone injections.\r\n<h2>Cortisone Injections May Do More Harm than Good</h2>\r\nThe researchers in this most recent study looked at the effect of cortisone injected into knees and hips. And they found that cortisone boosted the progression of arthritis and <strong>accelerated the need for joint replacement surgery.</strong>\r\n\r\nThe researchers looked at 459 patients who received one to three cortisone injections into the hip or knee in 2018. Almost a tenth developed complications such as cartilage loss, stress fractures, bone loss, and joint destruction in the two to fifteen months following the injections. The authors note that this percentage may be an understatement because half of the participants did not receive follow-up imaging tests to assess the health of their joints.\r\n\r\n<strong>In summary, the studies are showing that cortisone injections accelerate arthritis and can be detrimental in the long-run</strong>. But even with this knowledge, cortisone injections continue to be recommended frequently for joint pain. Millions of Americans suffer from arthritis and its symptoms of pain, swelling, cartilage loss, and bone destruction. Sufferers want relief, and the injections often give relief. And they are also covered by insurance.\r\n<h3>Alternatives to Cortisone Injections</h3>\r\nGiven that cortisone injections are being given more and more to treat pain in patients with joint arthritis, what is the alternative? Especially when you consider that many arthritis sufferers are at the point where they need relief to just live day to day.\r\n\r\nThat’s where Regenerative Orthopedics comes in!  Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to<strong> actually repair the arthritic joint.</strong> These treatments provide pain relief. But they don’t provide relief at the expense of the joint. <em><strong>They actually heal the joint, strengthen the structures of the joints, and even boost growth of cartilage</strong></em>. Regenerative Orthopedics regenerates the joint rather than causing degeneration like what occurs with cortisone injections.\r\n\r\nThere is also minimal downtime needed to receive these regenerative treatments. That means you can continue to exercise, and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire, while returning function to your painful arthritic joint, and helping you to once again enjoy the activities you desire to do.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\"><strong>[i]</strong></a> Kompel AJ, Roemer FW, Murakami AM, Dias LE, Crema MD, Guermazi A.  Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology. Oct 15 2019. <a href=\"https://doi.org/10.1148/radiol.2019190341\" target=\"_blank\" rel=\"noopener noreferrer\">https://doi.org/10.1148/radiol.2019190341</a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Cortisone Injections: Are They As Safe As You Think','','publish','open','closed','','cortisone-injections-are-as-safe-as-you-think','','','2020-09-12 20:40:48','2020-09-12 20:40:48','',0,'https://www.drfields.com/?p=2915',0,'post','',0),(2916,8,'2019-10-18 03:57:41','2019-10-18 03:57:41','<h2>Cortisone Injections May Not Be As Safe As You Think</h2>\r\nWe have made reference to cortisone injections in several previous articles regarding treatment options for joint pain, because cortisone is generally recommended. The treatment may only result in temporary relief, and is frequently used to delay the eventual joint replacement. But did you know this commonly used treatment option may not be as safe as you think? Recently released evidence in the medical journal “Radiology,” describes the negative risks of using cortisone injections. <a href=\"#_edn1\" name=\"_ednref1\">[i]</a>Although prior studies have been conducted showing cortisone to have a negative impact on joints, this most recent article helps to bring awareness to the adverse effects cortisone injections have on the joint.\r\n<h2>What Happens When Cortisone Is Injected Into the Joint?</h2>\r\nCortisone appears to be toxic to cartilage. When cortisone is injected into the joint it actually accelerates the progression of arthritis. Oftentimes, cortisone is injected into joints for relief of arthritis pain and the symptoms associated with it. It would seem contrary then, to use a “treatment” that makes arthritis worse, in an effort to treat it! Right? Cortisone destroys cartilage, boosts cell death in the joint, and increases bone loss.\r\n<h2>Behind the Use of Cortisone Injections</h2>\r\nArthritis is a very common disease of the joint that limits activity and quality of life, and often results in disability. In an effort to treat arthritis, physicians initially approach pain and symptom control in a non-surgical fashion, generally attempting to delay the eventual joint replacement. Additionally, older or sicker patients may not be able to tolerate surgery, and in those cases, more conservative treatments are needed and recommended. Cortisone injections may provide some patients with days of relief, while others may get months of pain and symptom control with cortisone injections into the joint. For this reason it is a commonly performed treatment, as it reduces the inflammation and swelling of arthritis. Physicians have known there were risks involved! Even though the study mentioned in this article is a new study, there have been many previous studies demonstrating the risks and the damage cortisone does to the joint structures. That is why, when your physician discusses cortisone injection with you, it is recommended that the injections not be given more than once every three months. Hopefully, the reason behind the limits is explained as well, since it is important for the patient to be educated on the risks of treatment with cortisone injections.\r\n<h2>Cortisone Injections May Do More Harm than Good</h2>\r\nThe researchers in this most recent study looked at the effect of cortisone injected into knees and hips, and found that the cortisone boosted the progression of arthritis and accelerated the need for joint replacement surgery. The researchers looked at 459 patients who received one to three cortisone injections into the hip or knee in 2018. Almost a tenth of these developed complications such as cartilage loss, stress fractures, bone loss, and joint destruction in the two to fifteen months following the injections. The authors note that this percentage may be an understatement because half of the participants did not receive follow-up imaging tests to assess the health of their joints.\r\n\r\nIn summary, the studies are showing that cortisone injections accelerate arthritis and can be detrimental in the long-run. But even with this knowledge, cortisone injections continue to be recommended frequently for joint pain. Millions of Americans suffer from arthritis and its symptoms of pain, swelling, cartilage loss, and bone destruction. Sufferers want relief, and the injections often give relief. They are also covered by insurance.\r\n\r\nGiven that cortisone injections are being given more and more to treat pain in patients with joint arthritis, what is the alternative, especially since many sufferers are at the point where they need relief to just live day to day. That’s where Regenerative Orthopedics comes in!  Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to actually repair the arthritic joint. These treatments provide pain relief, but they don’t do so at the expense of the joint. They actually heal the joint, strengthen the structures of the joints, and even boost growth of cartilage. Regenerative Orthopedics regenerates the joint rather than causing degeneration like what occurs with cortisone injections.\r\n\r\nThere is also minimal downtime needed to receive these regenerative treatments, so you can continue to exercise, and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility and strengthen muscles around the joints.\r\n\r\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire, while returning function to your painful arthritic joint, and helping you to once again enjoy the activities you desire to do.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\"><strong>[i]</strong></a> Kompel AJ, Roemer FW, Murakami AM, Dias LE, Crema MD, Guermazi A.  Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology. Oct 15 2019. <a href=\"https://doi.org/10.1148/radiol.2019190341\">https://doi.org/10.1148/radiol.2019190341</a>\r\n\r\n&nbsp;','Cortisone Injections May Not Be As Safe As You Think','','inherit','closed','closed','','2915-revision-v1','','','2019-10-18 03:57:41','2019-10-18 03:57:41','',2915,'https://www.drfields.com/uncategorized/2915-revision-v1/',0,'revision','',0),(2917,8,'2019-10-18 04:00:58','2019-10-18 04:00:58','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">The Best Treatments for Medial Collateral Ligament Injuries</span>\r\n<a class=\"btn-more\" href=\"/articles/prolo-news/the-best-treatments-for-medial-collateral-ligament-injuries/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/does-jumpers-knee-have-you-sidelined/\">Does Jumper\'s Knee Have You Sidelined?</a></li>\r\n        <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-injections-may-not-be-as-safe-as-you-think/\">Cortisone Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-10-18 04:00:58','2019-10-18 04:00:58','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2918,8,'2019-10-18 04:02:55','2019-10-18 04:02:55','<h2>Cortisone Injections May Not Be As Safe As You Think</h2>\r\nWe have made reference to cortisone injections in several previous articles regarding treatment options for joint pain, because cortisone is generally recommended. The treatment may only result in temporary relief, and is frequently used to delay the eventual joint replacement. But did you know this commonly used treatment option may not be as safe as you think? Recently released evidence in the medical journal “Radiology,” describes the negative risks of using cortisone injections. <a href=\"#_edn1\" name=\"_ednref1\">[i]</a>Although prior studies have been conducted showing cortisone to have a negative impact on joints, this most recent article helps to bring awareness to the adverse effects cortisone injections have on the joint.\r\n<h2>What Happens When Cortisone Is Injected Into the Joint?</h2>\r\nCortisone appears to be toxic to cartilage. When cortisone is injected into the joint it actually accelerates the progression of arthritis. Oftentimes, cortisone is injected into joints for relief of arthritis pain and the symptoms associated with it. It would seem contrary then, to use a “treatment” that makes arthritis worse, in an effort to treat it! Right? Cortisone destroys cartilage, boosts cell death in the joint, and increases bone loss.\r\n<h2>Behind the Use of Cortisone Injections</h2>\r\nArthritis is a very common disease of the joint that limits activity and quality of life, and often results in disability. In an effort to treat arthritis, physicians initially approach pain and symptom control in a non-surgical fashion, generally attempting to delay the eventual joint replacement. Additionally, older or sicker patients may not be able to tolerate surgery, and in those cases, more conservative treatments are needed and recommended. Cortisone injections may provide some patients with days of relief, while others may get months of pain and symptom control with cortisone injections into the joint. For this reason it is a commonly performed treatment, as it reduces the inflammation and swelling of arthritis. Physicians have known there were risks involved! Even though the study mentioned in this article is a new study, there have been many previous studies demonstrating the risks and the damage cortisone does to the joint structures. That is why, when your physician discusses cortisone injection with you, it is recommended that the injections not be given more than once every three months. Hopefully, the reason behind the limits is explained as well, since it is important for the patient to be educated on the risks of treatment with cortisone injections.\r\n<h2>Cortisone Injections May Do More Harm than Good</h2>\r\nThe researchers in this most recent study looked at the effect of cortisone injected into knees and hips, and found that the cortisone boosted the progression of arthritis and accelerated the need for joint replacement surgery. The researchers looked at 459 patients who received one to three cortisone injections into the hip or knee in 2018. Almost a tenth of these developed complications such as cartilage loss, stress fractures, bone loss, and joint destruction in the two to fifteen months following the injections. The authors note that this percentage may be an understatement because half of the participants did not receive follow-up imaging tests to assess the health of their joints.\r\n\r\nIn summary, the studies are showing that cortisone injections accelerate arthritis and can be detrimental in the long-run. But even with this knowledge, cortisone injections continue to be recommended frequently for joint pain. Millions of Americans suffer from arthritis and its symptoms of pain, swelling, cartilage loss, and bone destruction. Sufferers want relief, and the injections often give relief. They are also covered by insurance.\r\n\r\nGiven that cortisone injections are being given more and more to treat pain in patients with joint arthritis, what is the alternative, especially since many sufferers are at the point where they need relief to just live day to day. That’s where Regenerative Orthopedics comes in!  Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to actually repair the arthritic joint. These treatments provide pain relief, but they don’t do so at the expense of the joint. They actually heal the joint, strengthen the structures of the joints, and even boost growth of cartilage. Regenerative Orthopedics regenerates the joint rather than causing degeneration like what occurs with cortisone injections.\r\n\r\nThere is also minimal downtime needed to receive these regenerative treatments, so you can continue to exercise, and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility and strengthen muscles around the joints.\r\n\r\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire, while returning function to your painful arthritic joint, and helping you to once again enjoy the activities you desire to do.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\"><strong>[i]</strong></a> Kompel AJ, Roemer FW, Murakami AM, Dias LE, Crema MD, Guermazi A.  Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology. Oct 15 2019. <a href=\"https://doi.org/10.1148/radiol.2019190341\" target=\"_blank\" rel=\"noopener noreferrer\">https://doi.org/10.1148/radiol.2019190341</a>\r\n\r\n&nbsp;','Cortisone Injections May Not Be As Safe As You Think','','inherit','closed','closed','','2915-revision-v1','','','2019-10-18 04:02:55','2019-10-18 04:02:55','',2915,'https://www.drfields.com/uncategorized/2915-revision-v1/',0,'revision','',0),(2919,8,'2019-10-18 04:51:41','2019-10-18 04:51:41','<h2 style=\"text-align: center;\">Thank you for contacting us.</h2>\r\n<h4 style=\"text-align: center;\">We will get back to you shortly.</h4>\r\n<h3 style=\"text-align: center;\">If you have any questions, please call  [phone_raw]</h3>','Thank You','','inherit','closed','closed','','2795-revision-v1','','','2019-10-18 04:51:41','2019-10-18 04:51:41','',2795,'https://www.drfields.com/uncategorized/2795-revision-v1/',0,'revision','',0),(2920,8,'2019-10-18 04:53:38','2019-10-18 04:53:38','<h2 style=\"text-align: center;\">Thank you for contacting us.</h2>\r\n<h4 style=\"text-align: center;\">We will get back to you shortly.</h4>\r\n<h3 style=\"text-align: center;\">If you have any questions, please call  <a href=\"tel:+[phone_raw]\"></h3>','Thank You','','inherit','closed','closed','','2795-revision-v1','','','2019-10-18 04:53:38','2019-10-18 04:53:38','',2795,'https://www.drfields.com/uncategorized/2795-revision-v1/',0,'revision','',0),(2921,8,'2019-10-18 04:54:15','2019-10-18 04:54:15','<h2 style=\"text-align: center;\">Thank you for contacting us.</h2>\r\n<h4 style=\"text-align: center;\">We will get back to you shortly.</h4>\r\n<h3 style=\"text-align: center;\">If you have any questions, please call  <a href=\"tel:+[phone_raw]\">[phone]</h3>','Thank You','','inherit','closed','closed','','2795-revision-v1','','','2019-10-18 04:54:15','2019-10-18 04:54:15','',2795,'https://www.drfields.com/uncategorized/2795-revision-v1/',0,'revision','',0),(2922,8,'2019-10-18 04:54:35','2019-10-18 04:54:35','<h2 style=\"text-align: center;\">Thank you for contacting us.</h2>\r\n<h4 style=\"text-align: center;\">We will get back to you shortly.</h4>\r\n<h3 style=\"text-align: center;\">If you have any questions, please call  <a href=\"tel:+[phone_raw]\">[phone]</a></h3>','Thank You','','inherit','closed','closed','','2795-revision-v1','','','2019-10-18 04:54:35','2019-10-18 04:54:35','',2795,'https://www.drfields.com/uncategorized/2795-revision-v1/',0,'revision','',0),(2923,8,'2019-10-18 08:34:02','2019-10-18 08:34:02','<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong>\r\n</div>\r\nLos Angeles PRP treatments at OrthoRegen with Peter A. Fields MD DC are a modern, effective and less invasive way to deal with joint and muscle pain and injury for athletes or anyone who wants quick and healthy relief.\r\n\r\nAs a pioneer of treatments involving <strong>PRP in Los Angeles</strong>, Peter A Fields MD DC works with patients who need fast relief from joint and muscle pain but who also want the latest and most natural healing methods available.\r\n<div class=\"clearfix\"></div>\r\n\r\n<h4>What Is PRP Prolotherapy?</h4>\r\nThere are two ways prolotherapy can be administered. In <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose prolotherapy</a>, a solution is injected that is created from organic substances, while PRP prolotherapy uses platelets from the patient\'s own body. While more expensive and time-consuming, PRP has worked well in some cases in which dextrose prolotherapy proved ineffective.\r\n\r\nPRP prolotherapy has been shown to be highly effective at stimulating tissue repair and regenerating weak muscles, joints and other body components. When injected into an injury or pain site, prolotherapy fluids often have remarkable outcomes in terms of patient recovery times and lack of side effects.\r\n\r\nPRP treatment specifically focuses on giving patients doses of their own platelets, derived from drawn blood. Blood contains a certain number of platelets per fluid unit. By concentrating those platelets and reinjecting them into the body, not only can tissues heal remarkably quickly but the patient is not exposed to drugs or other foreign substances that can cause reactions.\r\n\r\n<h4>PRP vs. Surgery and Other Methods</h4>\r\nWhile there are many methods, including surgery, for treating injury or pain, PRP has some distinct advantages, including:\r\n<ul>\r\n 	<li>Less pain and shorter recovery time when compared to surgery or other invasive methods</li>\r\n 	<li>No addictive drugs.</li>\r\n 	<li>Short recovery time</li>\r\n 	<li>Quicker healing time</li>\r\n 	<li>No long-term treatment outlook</li>\r\n</ul>\r\nPRP prolotherapy is more expensive than other forms of prolotherapy, so the professionals at OrthoRegen may try other methods before recommending this particular treatment option.\r\n\r\n<h4>What Conditions Can Be Treated With PRP and Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles PRP and Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\nLos Angeles PRP Doctor\r\n\r\nPeter A. Fields, MD DC, also known as \"<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" is a Los Angeles PRP Doctor with years of experience in working with PRP and prolotherapy candidates and can help patients decide what is the right method of treatment for their particular needs. All it takes is a consultation.\r\n\r\nPRP Prolotherapy can be a miracle when it comes to ending joint damage and muscle pain, especially when compare to invasive surgery. OrthoRegen is ready to help people like you who want to learn just how simple it can be to treat your chronic and acute joint and muscle pain. Call our Los Angeles PRP Clinic at <a href=\"tel:+[phone_raw]\">[phone]</a> to schedule a consultation or to talk with the Doctor. You can also <a href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a> via email to set up an in-person consultation.','Los Angeles PRP Prolotherapy','','inherit','closed','closed','','1669-revision-v1','','','2019-10-18 08:34:02','2019-10-18 08:34:02','',1669,'https://www.drfields.com/uncategorized/1669-revision-v1/',0,'revision','',0),(2924,8,'2019-10-18 08:35:07','2019-10-18 08:35:07','<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong>\r\n</div>\r\n<div class=\"youtube-click-div video_left\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong>\r\n</div>\r\n\r\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. Unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. But these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A Fields.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD DC, \"<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>What Is Prolotherapy?</h4>\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> is a shortened form of \"proliferation therapy\" and is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\r\n\r\nWhen the body suffers an injury, it responds by producing growth factors. The process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand: areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. This means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\r\n\r\nUnfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\r\n\r\n<h4>How Does Prolotherapy Work?</h4>\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\r\n\r\n<h4>Does Prolotherapy Work?</h4>\r\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"https://www.drfields.com/how-prolotherapy-can-eliminate-joint-pain-without-surgery/\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\r\n\r\n<h4>What Conditions Can Be Treated With Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\n<h4>How Did Prolotherapy Begin?</h4>\r\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\r\n\r\nProlotherapy has been shown to have a beneficial effect for many patients and to help them <a href=\"https://www.drfields.com/articles/prolo-news/joint-surgery-think-again-learn-about-prolotherapy/\">avoid surgery</a> as a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\r\n\r\n<h4>What Can I Expect From Prolotherapy Treatment?</h4>\r\nBefore you can be treated using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\r\n\">Prolotherapy</a>, you will be examined by Dr. Peter A Fields, the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition, review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\r\n\r\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\r\n\r\nYou are then sent home to rest and gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\r\n\r\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\r\n\r\n<h4>Los Angeles Prolotherapy</h4>\r\nPeter A. Fields MD DC is an internationally recognized expert in the field of regenerative medicine, specifically in all forms of Prolotherapy – dextrose Prolotherapy, PRP Prolotherapy and Stem Cell. Dr. Fields is known as the “The Athletic Doc®” has completed nine Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\r\n\r\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\" The professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs and have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\r\n\r\n<h4>Are you a Candidate for Prolotherapy?</h4\r\n>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','inherit','closed','closed','','1667-revision-v1','','','2019-10-18 08:35:07','2019-10-18 08:35:07','',1667,'https://www.drfields.com/uncategorized/1667-revision-v1/',0,'revision','',0),(2925,8,'2019-10-18 08:35:28','2019-10-18 08:35:28','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Hand Injury Treatment Suzie Wrist\"]\r\n<strong>Suzie - Wrist</strong>\r\n</div>\r\n<h4>Prolotherapy Hand and Wrist Injuries and Treatment</h4>\r\nWhether you are suffering from a sprained finger from football or baseball, or wrist pain from tennis or golf, OrthoRegen treats numerous finger, hand and wrist injuries with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\r\n\">Prolotherapy</a> hand treatments. We can treat your pain or injury without surgery, without pain medications or without extended time away from training and competition.\r\n\r\nIn our experience, comprehensive Prolotherapy can successfully treat pain in your fingers, hands and wrists, with optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, can consult with you to determine if you are a candidate for <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Because of his participation in Triathlons and Ironman competitions, he understands your desire to return quickly to the sports in which you participate.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Common Hand and Wrist Injuries Treatable by Prolotheraphy</h4>\r\nThe most common finger, wrist and hand pain and injuries we treat with comprehensive Prolotherapy are:\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Baseball injuries</li>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Finger pain</li>\r\n 	<li>Football injuries</li>\r\n 	<li>Golf injuries</li>\r\n 	<li>Hand pain</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Sprain injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tennis injuries</li>\r\n 	<li>Thumb pain</li>\r\n 	<li>Wrist pain</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy hand and wrist treatments, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Prolotherapy Hand and Wrist Testimonials page</a>.','Hand Injury Treatment','','inherit','closed','closed','','615-revision-v1','','','2019-10-18 08:35:28','2019-10-18 08:35:28','',615,'https://www.drfields.com/uncategorized/615-revision-v1/',0,'revision','',0),(2926,8,'2019-10-18 08:35:37','2019-10-18 08:35:37','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\r\n<strong>Joel - Foot</strong></div>\r\n<h4>Prolotherapy Foot and Ankle Treatment</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Are you looking for an alternative to surgery for your chronic ankle sprains? Every day, OrthoRegen treats people with foot and ankle injuries by the use of comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> foot treatments. Nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n<h4>Why Prolotherapy Foot Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  Like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. If you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. If you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Ankle instability</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+14243256695\">(424) 325-6695</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials/\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials/\">Ankle Testimonials</a> pages.','Foot Injury Treatment','','inherit','closed','closed','','595-revision-v1','','','2019-10-18 08:35:37','2019-10-18 08:35:37','',595,'https://www.drfields.com/uncategorized/595-revision-v1/',0,'revision','',0),(2927,8,'2019-10-18 08:37:16','2019-10-18 08:37:16','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\r\n<strong>Joel - Foot</strong></div>\r\n<h4>Prolotherapy Foot and Ankle Treatment</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Are you looking for an alternative to surgery for your chronic ankle sprains? Every day, OrthoRegen treats people with foot and ankle injuries by the use of comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> foot treatments. Nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n<h4>Why Prolotherapy Foot Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  Like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. If you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. If you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Ankle instability</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials/\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials/\">Ankle Testimonials</a> pages.','Foot Injury Treatment','','inherit','closed','closed','','595-revision-v1','','','2019-10-18 08:37:16','2019-10-18 08:37:16','',595,'https://www.drfields.com/uncategorized/595-revision-v1/',0,'revision','',0),(2928,8,'2019-10-18 08:41:03','2019-10-18 08:41:03','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer- Elbow\"]\r\n<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Elbow Treatment</h4>\r\nOrthoRegen offers you the most effective treatment for elbow injuries. Avoid the long term side effects of NSAID and cortisone injections with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> elbow treatment. We offer our patients experience and knowledgeable treatment for their elbow pain and injuries. From future Olympians to weekend warriors, we can help you return to your sport without surgery, without pain medications and without extended periods of time away from your sport.\r\n\r\n<h4>Why Prolotherapy Elbow Treatment with Dr. Fields?</h4>\r\nDr. Peter Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an experienced marathoner, long-distance cyclist and swimmer. He has participated in Triathlons as well as Ironman competitions. He understands the passion that athletes have to train and compete. In our experience, our comprehensive Prolotherapy elbow treatment is the best way to treat elbow injuries for long term positive results.\r\n\r\n<a class=\"buttonlink\" href=\"http://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common elbow pain and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Elbow pain</a></li>\r\n 	<li>Elbow sprain</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>Lateral epicondylitis</li>\r\n 	<li>Medial epicondylitis</li>\r\n 	<li>Post-surgical elbow pain</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendinosis</li>\r\n 	<li>Tennis elbow</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy elbow treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\r\n\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials/\">Prolotherapy Elbow Testimonials page</a>.','Elbow Injury Treatment','','inherit','closed','closed','','582-revision-v1','','','2019-10-18 08:41:03','2019-10-18 08:41:03','',582,'https://www.drfields.com/uncategorized/582-revision-v1/',0,'revision','',0),(2929,8,'2019-10-18 08:41:11','2019-10-18 08:41:11','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\r\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\r\n\r\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> neck treatment at OrthoRegen.\r\n\r\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\r\nDr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\r\n\r\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\r\n','Neck Injury Treatment','','inherit','closed','closed','','536-revision-v1','','','2019-10-18 08:41:11','2019-10-18 08:41:11','',536,'https://www.drfields.com/uncategorized/536-revision-v1/',0,'revision','',0),(2930,8,'2019-10-18 08:41:38','2019-10-18 08:41:38','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy for Chronic Neck Pain</h4>\r\nBecause the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and to rotate, but if you can\'t move your neck normally, your life can be severely disrupted and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be prolotherapy for chronic neck pain.\r\n\r\n<h4>What Causes Neck Pain?</h4>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\nSymptoms of <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands and feet.</li>\r\n</ul>\r\n\r\nIf you are experiencing minor neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty and symptoms may begin to appear years after the disease begins.\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck can be the causes of the neck pain you feel. Pain in the neck can also be caused by injury such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, a pinched nerve, meningitis, influenza, a heart attack or torticollis, can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture, and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Neck Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Neck Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic neck pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are you a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Chronic Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2019-10-18 08:41:38','2019-10-18 08:41:38','',509,'https://www.drfields.com/uncategorized/509-revision-v1/',0,'revision','',0),(2931,8,'2019-10-18 08:41:46','2019-10-18 08:41:46','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n\r\n<div class=\"clearfix\"></div>\r\n\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2019-10-18 08:41:46','2019-10-18 08:41:46','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(2932,8,'2019-10-18 08:41:57','2019-10-18 08:41:57','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong></div>\r\n<i>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\r\n<div class=\"clear\"></div>\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"alignleft wp-image-732 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\" width=\"215\" height=\"167\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"alignright wp-image-735 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <a href=\"tel:+[phone_raw]\">[phone]</a>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2019-10-18 08:41:57','2019-10-18 08:41:57','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(2933,8,'2019-10-18 08:42:07','2019-10-18 08:42:07','<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n<h4 class=\"text-center\">Video: What is Prolotherapy Treatment?</h4>\r\n<div style=\"display: table; margin: 0 auto;\">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]</div>\r\n<a class=\"buttonlink\" href=\"/regenerative-techniques/prolotherapy-videos/\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2019-10-18 08:42:07','2019-10-18 08:42:07','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(2934,8,'2019-10-18 08:43:25','2019-10-18 08:43:25','<div class=\"col-md-8\">\r\n<h4>How PRP Repairs Severely Torn Ligaments and Tendons Without Surgery</h4>\r\n\r\nAs with almost any injury or condition, some are worse than others...and if you’ve been told that you have <strong>“severely torn” ligaments or tendons</strong>, or even a <strong>torn meniscus or torn labrum</strong>, your injury is in the “worse” category. But you already know that because of the extreme pain you are in.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignleft size-full wp-image-1685\" />If you’ve been told by an orthopedic surgeon that <strong>you need surgery</strong> to repair your damaged joint, then you are facing a hospital visit, general anesthesia, risks of complications, weeks or months of limited ability on crutches or in a cast, and <strong>up to a year of recovery and physical therapy</strong> before the surgeon says things might be “normal” again.\r\n\r\nBefore you commit to a surgery that you may regret from the very first day, you should know <strong>that there IS an alternative to joint surgery</strong> that has none of those disadvantages.\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, you do NOT need to have surgery to repair a severely damaged ligament, tendon, labrum, or meniscus and the pain that goes with it.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>. My Prolotherapy treatments help your body make new cells to repair the damage in your joint. And for severe tears injuries like yours, that means PRP Prolotherapy.\r\n\r\n<h4>What is Prolotherapy?</h4>\r\n<strong>>Prolotherapy</strong> is a treatment that causes an increase in nutrient-rich blood cells in the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. Your own body does the work to grow healthy, strong and vibrant tissue. It’s incredibly effective.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you fix your joint problem and eliminate your pain with…\r\n<ul>\r\n 	<li><strong> NO hospital stay </strong></li>\r\n 	<li><strong> NO general anesthesia </strong></li>\r\n 	<li><strong> NO surgery </strong></li>\r\n 	<li><strong> NO surgical complications </strong></li>\r\n 	<li><strong> NO long recovery </strong></li>\r\n</ul>\r\nWhen your injury is mild to moderate, we use Dextrose Prolotherapy. The dextrose formula causes your body to send platelets -- the part of your blood that contains healing growth factors -- to the affected area.\r\n\r\n<h4>What is PRP Prolotherapy?</h4>\r\n<strong>For more severe damage, we use PRP Prolotherapy.</strong> PRP means “Platelet Rich Plasma”, and the therapy isolates the platelets from your own blood in a centrifuge, and then re-injects this “platelet rich plasma” -- with 7 to 10 times more concentrated growth factors -- where it’s needed. PRP is more effective in these severe situations and typically results in 80% to 85% reduction in joint pain and a similar increase in range of motion. And the results are permanent.\r\n\r\nIn addition to severe tendon and ligament tears, torn meniscus and torn labrum, PRP is also effective with torn achilles tendon, plantar fasciitis, tennis elbow, and a long list of severe sports injuries in any joint.\r\n\r\n<h4>Are You A Candidate for PRP Prolotherapy?</h4>\r\n\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-PRP-Repairs-Ligaments-and-Tendons-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for PRP Prolotherapy.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/vQGBBEARjMk?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> May - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>After a half marathon, May couldn’t even walk back to her car! She avoided surgery by having Prolotherapy and PRP from Dr. Fields, and now she’s back to running half and FULL marathons. “Dr Peter Fields is Awesome.”</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/hA1FVmxWixE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Leonard - Torn meniscus</p>\r\n<p>Dr. Leonard is a 61 Year Old Ironman competitor who avoided surgery in both knees with Dr. Fields’ PRP, and he is now back to racing!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/hmq3WQRNSlk?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Christopher - Knee</p>\r\n<p>Christopher, a Pro basketball player, came from China to avoid torn meniscus surgery to receive PRP from Dr. Fields. He is now playing ball again after just 3 treatments.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/rCf1JO5aNNA?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Tony - Shoulder &amp; Ankle</p>\r\n<p>Tony had two shoulder tears years ago that were treated by Dr. Fields, leading to a full recovery. Later, multiple ankle tears caused by ballet and obstacle course racing. Dr. Fields’ PRP got him competing again!</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will PRP Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for PRP and repairing your ligaments and tendons without surgery. Schedule your consultation by calling our office now at 424-325-6695 or fill out this form.\r\n\r\n[contact-form-7 id=\"1696\" title=\"Consulation form\"]\r\n</div>','How PRP Repairs Ligaments and Tendons Without Surgery','','inherit','closed','closed','','2335-revision-v1','','','2019-10-18 08:43:25','2019-10-18 08:43:25','',2335,'https://www.drfields.com/uncategorized/2335-revision-v1/',0,'revision','',0),(2935,8,'2019-10-18 08:45:37','2019-10-18 08:45:37','<div class=\"col-md-8\">\r\n<h4>How PRP Repairs Severely Torn Ligaments and Tendons Without Surgery</h4>\r\n\r\nAs with almost any injury or condition, some are worse than others...and if you’ve been told that you have <strong>“severely torn” ligaments or tendons</strong>, or even a <strong>torn meniscus or torn labrum</strong>, your injury is in the “worse” category. But you already know that because of the extreme pain you are in.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignleft size-full wp-image-1685\" />If you’ve been told by an orthopedic surgeon that <strong>you need surgery</strong> to repair your damaged joint, then you are facing a hospital visit, general anesthesia, risks of complications, weeks or months of limited ability on crutches or in a cast, and <strong>up to a year of recovery and physical therapy</strong> before the surgeon says things might be “normal” again.\r\n\r\nBefore you commit to a surgery that you may regret from the very first day, you should know <strong>that there IS an alternative to joint surgery</strong> that has none of those disadvantages.\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, you do NOT need to have surgery to repair a severely damaged ligament, tendon, labrum, or meniscus and the pain that goes with it.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>. My Prolotherapy treatments help your body make new cells to repair the damage in your joint. And for severe tears injuries like yours, that means PRP Prolotherapy.\r\n\r\n<h4>What is Prolotherapy?</h4>\r\n<strong>>Prolotherapy</strong> is a treatment that causes an increase in nutrient-rich blood cells in the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. Your own body does the work to grow healthy, strong and vibrant tissue. It’s incredibly effective.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you fix your joint problem and eliminate your pain with…\r\n<ul>\r\n 	<li><strong> NO hospital stay </strong></li>\r\n 	<li><strong> NO general anesthesia </strong></li>\r\n 	<li><strong> NO surgery </strong></li>\r\n 	<li><strong> NO surgical complications </strong></li>\r\n 	<li><strong> NO long recovery </strong></li>\r\n</ul>\r\nWhen your injury is mild to moderate, we use Dextrose Prolotherapy. The dextrose formula causes your body to send platelets -- the part of your blood that contains healing growth factors -- to the affected area.\r\n\r\n<h4>What is PRP Prolotherapy?</h4>\r\n<strong>For more severe damage, we use PRP Prolotherapy.</strong> PRP means “Platelet Rich Plasma”, and the therapy isolates the platelets from your own blood in a centrifuge, and then re-injects this “platelet rich plasma” -- with 7 to 10 times more concentrated growth factors -- where it’s needed. PRP is more effective in these severe situations and typically results in 80% to 85% reduction in joint pain and a similar increase in range of motion. And the results are permanent.\r\n\r\nIn addition to severe tendon and ligament tears, torn meniscus and torn labrum, PRP is also effective with torn achilles tendon, plantar fasciitis, tennis elbow, and a long list of severe sports injuries in any joint.\r\n\r\n<h4>Are You A Candidate for PRP Prolotherapy?</h4>\r\n\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-PRP-Repairs-Ligaments-and-Tendons-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for PRP Prolotherapy.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/vQGBBEARjMk?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> May - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>After a half marathon, May couldn’t even walk back to her car! She avoided surgery by having Prolotherapy and PRP from Dr. Fields, and now she’s back to running half and FULL marathons. “Dr Peter Fields is Awesome.”</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/hA1FVmxWixE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Leonard - Torn meniscus</p>\r\n<p>Dr. Leonard is a 61 Year Old Ironman competitor who avoided surgery in both knees with Dr. Fields’ PRP, and he is now back to racing!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/hmq3WQRNSlk?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Christopher - Knee</p>\r\n<p>Christopher, a Pro basketball player, came from China to avoid torn meniscus surgery to receive PRP from Dr. Fields. He is now playing ball again after just 3 treatments.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/rCf1JO5aNNA?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Tony - Shoulder &amp; Ankle</p>\r\n<p>Tony had two shoulder tears years ago that were treated by Dr. Fields, leading to a full recovery. Later, multiple ankle tears caused by ballet and obstacle course racing. Dr. Fields’ PRP got him competing again!</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will PRP Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for PRP and repairing your ligaments and tendons without surgery. Schedule your consultation by calling our office now at [phone] or fill out this form.\r\n\r\n[contact-form-7 id=\"1696\" title=\"Consulation form\"]\r\n</div>','How PRP Repairs Ligaments and Tendons Without Surgery','','inherit','closed','closed','','2335-revision-v1','','','2019-10-18 08:45:37','2019-10-18 08:45:37','',2335,'https://www.drfields.com/uncategorized/2335-revision-v1/',0,'revision','',0),(2936,8,'2019-10-18 08:46:36','2019-10-18 08:46:36','<div class=\"col-md-8\">\r\n<h4>How PRP Repairs Severely Torn Ligaments and Tendons Without Surgery</h4>\r\n\r\nAs with almost any injury or condition, some are worse than others...and if you’ve been told that you have <strong>“severely torn” ligaments or tendons</strong>, or even a <strong>torn meniscus or torn labrum</strong>, your injury is in the “worse” category. But you already know that because of the extreme pain you are in.\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignleft size-full wp-image-1685\" />If you’ve been told by an orthopedic surgeon that <strong>you need surgery</strong> to repair your damaged joint, then you are facing a hospital visit, general anesthesia, risks of complications, weeks or months of limited ability on crutches or in a cast, and <strong>up to a year of recovery and physical therapy</strong> before the surgeon says things might be “normal” again.\r\n\r\nBefore you commit to a surgery that you may regret from the very first day, you should know <strong>that there IS an alternative to joint surgery</strong> that has none of those disadvantages.\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, you do NOT need to have surgery to repair a severely damaged ligament, tendon, labrum, or meniscus and the pain that goes with it.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>. My Prolotherapy treatments help your body make new cells to repair the damage in your joint. And for severe tears injuries like yours, that means PRP Prolotherapy.\r\n\r\n<h4>What is Prolotherapy?</h4>\r\n<strong>>Prolotherapy</strong> is a treatment that causes an increase in nutrient-rich blood cells in the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. Your own body does the work to grow healthy, strong and vibrant tissue. It’s incredibly effective.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you fix your joint problem and eliminate your pain with…\r\n<ul>\r\n 	<li><strong> NO hospital stay </strong></li>\r\n 	<li><strong> NO general anesthesia </strong></li>\r\n 	<li><strong> NO surgery </strong></li>\r\n 	<li><strong> NO surgical complications </strong></li>\r\n 	<li><strong> NO long recovery </strong></li>\r\n</ul>\r\nWhen your injury is mild to moderate, we use Dextrose Prolotherapy. The dextrose formula causes your body to send platelets -- the part of your blood that contains healing growth factors -- to the affected area.\r\n\r\n<h4>What is PRP Prolotherapy?</h4>\r\n<strong>For more severe damage, we use PRP Prolotherapy.</strong> PRP means “Platelet Rich Plasma”, and the therapy isolates the platelets from your own blood in a centrifuge, and then re-injects this “platelet rich plasma” -- with 7 to 10 times more concentrated growth factors -- where it’s needed. PRP is more effective in these severe situations and typically results in 80% to 85% reduction in joint pain and a similar increase in range of motion. And the results are permanent.\r\n\r\nIn addition to severe tendon and ligament tears, torn meniscus and torn labrum, PRP is also effective with torn achilles tendon, plantar fasciitis, tennis elbow, and a long list of severe sports injuries in any joint.\r\n\r\n<h4>Are You A Candidate for PRP Prolotherapy?</h4>\r\n\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-PRP-Repairs-Ligaments-and-Tendons-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for PRP Prolotherapy.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/vQGBBEARjMk?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> May - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>After a half marathon, May couldn’t even walk back to her car! She avoided surgery by having Prolotherapy and PRP from Dr. Fields, and now she’s back to running half and FULL marathons. “Dr Peter Fields is Awesome.”</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/hA1FVmxWixE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Leonard - Torn meniscus</p>\r\n<p>Dr. Leonard is a 61 Year Old Ironman competitor who avoided surgery in both knees with Dr. Fields’ PRP, and he is now back to racing!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/hmq3WQRNSlk?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Christopher - Knee</p>\r\n<p>Christopher, a Pro basketball player, came from China to avoid torn meniscus surgery to receive PRP from Dr. Fields. He is now playing ball again after just 3 treatments.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/rCf1JO5aNNA?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Tony - Shoulder &amp; Ankle</p>\r\n<p>Tony had two shoulder tears years ago that were treated by Dr. Fields, leading to a full recovery. Later, multiple ankle tears caused by ballet and obstacle course racing. Dr. Fields’ PRP got him competing again!</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will PRP Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for PRP and repairing your ligaments and tendons without surgery. Schedule your consultation by calling our office now at [phone] or fill out this form.\r\n\r\n[form]\r\n</div>','How PRP Repairs Ligaments and Tendons Without Surgery','','inherit','closed','closed','','2335-revision-v1','','','2019-10-18 08:46:36','2019-10-18 08:46:36','',2335,'https://www.drfields.com/uncategorized/2335-revision-v1/',0,'revision','',0),(2937,8,'2019-10-18 08:53:25','2019-10-18 08:53:25','<h4>Regenerative Orthopedics for Chronic, Persistent Hip Pain</h4>\r\n<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen is to avoid hip replacement surgery, which is usually due to damage caused by hip arthritis. The majority of folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.  The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement, but they don’t want that and are looking for a way to avoid the surgery! Regenerative Orthopedics gives them a non-surgical option and an alternative to hip replacement surgery.</span>\r\n\r\n<b>The Hip and Arthritis</b>\r\n\r\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. The hip joint has a ring of cartilage that seals the ball and socket called the labrum, which helps to provide movement between the leg and pelvis. Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities, and sometimes makes even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\r\n\r\n<b>What Causes Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. Other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! At some point the hip joint was destabilized by injury. Most of our patients can recall some type of trauma to the hip, or even a previous hip procedure. Traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. Left unrepaired, this instability in the hip joint encourages the arthritis cycle. Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion, which destroys the hip joint further.  How does surgery cause arthritis to worsen? In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip, just to get the large arthroscope into the hip, and the stretching weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability, and later, the development of arthritis. Surgeons may recommend surgery for all of these conditions. But conservative, non-surgical options, including Regenerative Orthopedics, should be considered prior to opting for surgery. </span>\r\n\r\n<b>How Regenerative Orthopedics Is Used To Treat Chronic Hip Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication.</span>\r\n\r\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures, which stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited, and since this is the material in which ligaments and tendons are made, the result is tighten and stronger soft tissue structures.</span>\r\n\r\n<span style=\"font-weight: 400;\">Our goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. In cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\r\n\r\n<b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen at </span><span style=\"font-weight: 400;\">[phone]</span><span style=\"font-weight: 400;\">.</span>','Chronic Hip Pain','','inherit','closed','closed','','2665-revision-v1','','','2019-10-18 08:53:25','2019-10-18 08:53:25','',2665,'https://www.drfields.com/uncategorized/2665-revision-v1/',0,'revision','',0),(2938,8,'2019-10-18 08:53:36','2019-10-18 08:53:36','<span style=\"font-weight: 400;\">Regenerative Orthopedics might not be as well known as they should be, but they can have an incredible impact on your life. When your tendons and ligaments hurt or are otherwise injured, it can take an awful toll on your life. Pain in your ligaments and tendons can make any physical activity more difficult: getting up, sitting down, walking and everything in between. </span><a href=\"https://www.drfields.com/articles/prolo-news/repairing-sports-injuries-with-regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Regenerative Orthopedics</b></a><span style=\"font-weight: 400;\"> are a great way to not only heal your wounded ligaments and tendons, but they are a way to do so without having to get surgery. At OrthoRegen we can help you to live free from the ligament and tendon pain that is putting a damper on your life.</span>\r\n<h2><b>How Regenerative Orthopedics Work</b></h2>\r\n<span style=\"font-weight: 400;\"><strong>Regenerative Orthopedics</strong> target the painful and injured joint structures. Prolotherapy, PRP, and <a href=\"https://www.cirm.ca.gov/patients/power-stem-cells\" target=\"_blank\" rel=\"noopener noreferrer\">Stem Cell Therapy</a> stimulate the body’s natural healing cascade, boosting the ability of the body to regenerate and repair. The treatment helps your body to make new cells. See, tendons and ligaments tend to not have the best circulation. That means that they don’t get the blood supply that other parts of your body might. And healing nutrients are in your blood. By encouraging the supply of these nutrients, your body is able to heal more quickly and completely. Instead of being outside of the circulation, or cut off from it, suddenly the area of your body will be awash in these nutrients. Then, the area will be able to heal. Even better, it will be able to heal using the body’s own natural, organic methods.</span>\r\n\r\n<img class=\"aligncenter wp-image-2563 size-full\" title=\"Regenerative Orthopedics\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedics-.jpg\" alt=\"Regenerative Orthopedics \" width=\"800\" height=\"544\" />\r\n<h3><b>Safe and Secure</b></h3>\r\n<span style=\"font-weight: 400;\">It’s perfectly understandable if you read the above section and thought something like: “Wow, that sounds effective.” But is it really? At OrthoRegen, we’ve been helping people with joint pain and injury for quite some time. We know how to administer Regenerative Orthopedics by using the Gold Standard of care. With effective treatment, you always want experience! Our practitioners have many, many years of experience in administering Regenerative Orthopedics, such as Prolotherapy, PRP, and Stem Cell Therapy.</span>\r\n\r\n<span style=\"font-weight: 400;\">We will do everything possible to make this treatment as non-invasive, and make the experience as positive as possible. In addition to being a non-invasive alternative to surgery, this treatment also features an alternative to general anesthesia. You never have to “go under” or anything like that. We will use a local anesthetic to help provide comfort during the procedure. Regenerative Orthopedics effectively provides you with the pain-free results you want, because it strengthens your ligaments and tendons, and gets you back quickly to the activities and sports you love. </span>\r\n<h4><b>In Only a Few Treatments</b></h4>\r\n<span style=\"font-weight: 400;\">If anyone says something like, “You only need one Prolotherapy treatment to get the maximum benefit,” they are not telling the whole truth. Sure, sometimes people get better with just one treatment. But it is important to understand that a reputable practitioner will tell you that the average number of treatments are 4-8 treatments sessions for proper healing. You have most likely been suffering with pain for a long time, and the problem did not just develop overnight. In the same way, the body, and specifically the ligament and tendon injuries, will take several months to fully regenerate and heal. </span>\r\n\r\n<span style=\"font-weight: 400;\">It’s important to note that, in addition to helping your ligaments and tendons, there are no real negative side effects to Regenerative Orthopedics. They benefit your body, without detracting anything from it. They heal and repair, rather than weaken the soft tissue. We mention this because we often have patients say something like, “How are these different from cortisone shots?” Well, you could get cortisone shots and they might be “effective,” but they are only a temporary, short-term, interim solution. Study after study has shown that the effectiveness of cortisone may diminish, and can even weaken the soft tissue eventually.</span>\r\n\r\n<span style=\"font-weight: 400;\">For many people, this might be the first time you are hearing about <strong>Regenerative Orthopedics</strong>.  We have several satisfied client testimonies that you are welcome to read and watch. Please call us if you have questions and if you would like to set up a consultation. Our phone number is [phone].</span>','Regenerative Orthopedics: A Rejuvenated You','','inherit','closed','closed','','2561-revision-v1','','','2019-10-18 08:53:36','2019-10-18 08:53:36','',2561,'https://www.drfields.com/uncategorized/2561-revision-v1/',0,'revision','',0),(2939,8,'2019-10-18 08:53:51','2019-10-18 08:53:51','<span style=\"font-weight: 400;\">At OrthoRegen, we treat many joint</span> <span style=\"font-weight: 400;\">injuries with <a href=\"https://www.drfields.com/articles/prolo-news/repairing-sports-injuries-with-regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Regenerative Orthopedics</strong></a>. These therapies, include </span><b>Prolotherapy, PRP, and Stem Cell Therapy, and are effective for pretty </b><span style=\"font-weight: 400;\">much any joint of your body where there is a musculoskeletal injury. When you contact us, we’ll be happy to give a recommendation as to whether you are a good candidate for this non-surgical option. From there, we’ll figure out the right kind of Regenerative Orthopedic treatment option for your exact problem, to effectively repair your joint, and get you back quickly to the activities you love: </span><b>Pain-free</b><span style=\"font-weight: 400;\">.</span>\r\n<h2><b>Better than Surgery</b></h2>\r\n<span style=\"font-weight: 400;\">Many of our patients come to us when they’ve been told by someone else that it’s time to get surgery to fix their problem. Maybe they have lasting shoulder pain, or there’s a pain in one or both of their knees that just won’t go away. However, that doesn’t mean that surgery has to be the answer. In fact, <strong>Regenerative Orthopedics</strong> is almost invariably a better option. Not only can these treatments be more beneficial, but they also have much less down-time and recovery time.</span>\r\n\r\n<img class=\"aligncenter wp-image-2567 size-full\" title=\"Regenerative Orthopedic\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedic..jpg\" alt=\"Regenerative Orthopedic.\" width=\"800\" height=\"648\" />\r\n\r\n<span style=\"font-weight: 400;\">When you need surgery, you’re probably already in pain. After the surgery, you’re likely to be in plenty of pain, and then you’ll have to recover, possibly go through physical therapy, and so much more. The prolonged recovery time can cause you to be less effective at your job, or possibly even make you take time off. With <strong>Regenerative Orthopedics</strong>, you won’t need to take all that time off for recovery. Over the course of just a few Regenerative Orthopedic treatments, most people note improvement, and before you know it, you’ll be returning to the things in life you enjoy.</span>\r\n<h3><b>PRP </b></h3>\r\n<span style=\"font-weight: 400;\">The “PRP” stands for “<a href=\"https://en.wikipedia.org/wiki/Platelet-rich_plasma\" target=\"_blank\" rel=\"noopener noreferrer\">platelet-rich plasma</a>,” and is one form of <strong>Regenerative Orthopedics</strong>. Like so many of our other treatments, this really just uses what’s already in your body to treat you. In the case of PRP, we utilize your own blood to help your body recover. See, these platelets in your blood contain “growth factors,” which means that they can help get soft tissue repairing as it should. For many of our patients, that’s exactly what they need to repair the damaged soft tissue areas of their bodies.</span>\r\n\r\n<span style=\"font-weight: 400;\">The blood is centrifuged in a special way to cause the plasma to be rich in platelets or have a high concentration of platelets. So, the PRP we inject into the injured area is practically overflowing with growth factors. Then, this injured area of your body that’s been starving for tissue growth gets a giant helping of it. The more platelets in the damaged area, the faster and more completely your tissues will heal.</span>\r\n\r\n<span style=\"font-weight: 400;\">This is a treatment that’s been proven to be effective in joints all over the body. Many of our patients with hip labrum problems or knee meniscus injuries have responded wonderfully to this form of treatment, once again able to do the activities and sports they love. When joints are injured, it’s amazing how difficult simple motions are. You will be relieved to be able to walk, sit, or just use your knees and hips again without pain. </span>\r\n\r\n<b>Dextrose Prolotherapy</b>\r\n\r\n<span style=\"font-weight: 400;\">For many, this is known as the “original prolotherapy.” When Prolotherapy began in the ’30s, this was the form it took.  Think of your body as a machine. In order for the body to heal the parts of the body that need healing, it sometimes needs a boost. Especially, difficult to heal areas like ligaments and tendons that naturally just do not have a great flow of blood. Prolotherapy is a <strong>Regenerative Orthopedic</strong> therapy that can cause the body to kick into high gear and boost the healing cascade in order to stimulate blood flow and repair the soft tissue parts of your body that have been injured.</span>\r\n\r\n<span style=\"font-weight: 400;\">With this form of Prolotherapy, we inject the soft tissue parts of the joint that have been injured. Then, the blood and healing factors rush to heal the areas that have been damaged. We cause a very temporary and low-grade inflammation which makes your body spring into action. It’s important to note that this is a normal part of the healing process. Utilizing a local anesthetic, we make sure that you’re always comfortable during the treatment process.</span>\r\n<h5><b>Stem Cell Therapy</b></h5>\r\n<span style=\"font-weight: 400;\">In cases of severe degeneration or in certain joint injuries, we may recommend Stem Cell Therapy. We have great success with Stem Cell Therapy, because we use the Gold Standard in Stem Cell Therapy utilizing Dextrose Prolotherapy, PRP, and stem cells from both fat and bone marrow. Just because someone has told you that you need surgery, remember that there are other options available. </span>\r\n\r\n<span style=\"font-weight: 400;\">There various <strong>Regenerative Orthopedic</strong> option are very effective at returning you to a You vibrant and pain-free life again. Contact us today for a consultation at [phone], and we’ll be happy to let you know which of our treatments are right for your body.</span>','Regenerative Orthopedic Treatment Options: Getting Back on the Right Foot','','inherit','closed','closed','','2565-revision-v1','','','2019-10-18 08:53:51','2019-10-18 08:53:51','',2565,'https://www.drfields.com/uncategorized/2565-revision-v1/',0,'revision','',0),(2940,8,'2019-10-18 08:54:03','2019-10-18 08:54:03','<span style=\"font-weight: 400;\">Imagine that your joints degenerate to the point where you are in constant, severe pain. You are wary of surgery, but your doctor tells you there’s a better method: stem cells. Somehow, he’s able to use stem cells to regenerate your joints or repair your spine. This isn’t something out of science fiction or a vision from a far-flung future: it’s the present. When you have the right </span><a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\" target=\"_blank\" rel=\"noopener noreferrer\"><b>stem cell doctor in Santa Monica</b></a><span style=\"font-weight: 400;\"> by your side, you can heal your joints and spine without surgery.</span>\r\n<h2><b>Restoring Your Painful Joints with Your Own Stem Cells</b></h2>\r\n<span style=\"font-weight: 400;\">At OrthoRegen, our Gold Standard in Stem Cell Therapy combines four regenerative Orthopedic procedures including two types of stem cells (fat and bone), PRP, and Dextrose Prolotherapy. That’s a lot of reparative cells and growth factors to do the job of healing and repair! Most other regenerative medicine clinics  only utilize one or two, at best. By using all four, we’re able to offer our patients a better, more comprehensive treatment. It’s important to realize these cells are autologous. That means they come from your own body, and we’re simply returning them to the injured areas of your body for repair and regeneration. </span>\r\n\r\n<img class=\"aligncenter wp-image-2588 size-full\" title=\"Stem Cell Doctor in Santa Monica\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Stem-Cell-Doctor-in-Santa-Monica.jpg\" alt=\"Stem Cell Doctor in Santa Monica\" width=\"800\" height=\"533\" />\r\n<h3><b>Injecting the Stem Cells</b></h3>\r\n<span style=\"font-weight: 400;\">Once we’ve drawn the regenerative cells, we centrifuge them and/or concentrate them. Through this process, we’re able to get a solution that has the highest possible amount of regenerative cells. Then, we inject them right into the injured or degenerated joint. The regenerative cells and growth factors get right to work boosting the healing cascade, so the joint can repair. Stem cells can regenerate all different kinds of joint structures: ligaments, meniscus, cartilage, and bone. So if joint structures are damaged, Regenerative Orthopedics has a great chance of repairing them.</span>\r\n<h4><b>Incorporating Platelet Rich Plasma</b></h4>\r\n<span style=\"font-weight: 400;\">We also use Platelet Rich Plasma (PRP) as part of the Gold Standard in Stem Cell Therapy  to accelerate the healing. PRP uses plasma derived from your own blood, with a highly concentrated amount of blood platelets. What makes these blood platelets so special is that they can speed up the body’s healing process through their vast amount of growth factors.</span>\r\n<h5><b>Dextrose Prolotherapy for Stabilization</b></h5>\r\n<span style=\"font-weight: 400;\">The final Regenerative Orthopedic procedure we utilize is Dextrose Prolotherapy.  With <a href=\"https://en.wikipedia.org/wiki/Prolotherapy\" target=\"_blank\" rel=\"noopener noreferrer\">Prolotherapy</a>, we inject a dextrose solution to trigger a mild inflammatory response in the body. This is the process the body naturally uses as part of the healing cascade. The tendons and ligaments are generally low in blood supply, and this technique stimulates the blood flow which provides these structures with the nutrition they need for healing. Dextrose Prolotherapy gives the body this boost to get the healing process into high gear. As part of Stem Cell therapy, the Dextrose Prolotherapy to the ligament and tendon structures on the outside of the joint repairs these injured joint structures so the joint can move normally, in a stable and normal fashion. </span>\r\n<h6><b>Contact Dr. Fields, Stem Cell Doctor in Santa Monica</b></h6>\r\n<span style=\"font-weight: 400;\">For most patients, only a handful of treatments are required for repair. That’s often far less time (especially considering recovery time) than surgery would require, to say nothing of how much pain surgery could leave you in. Wondering if you’re a good candidate for our stem cell treatment? Schedule an appointment with us by calling [phone].</span>','The Gold Standard Stem Cell Doctor in Santa Monica','','inherit','closed','closed','','2586-revision-v1','','','2019-10-18 08:54:03','2019-10-18 08:54:03','',2586,'https://www.drfields.com/uncategorized/2586-revision-v1/',0,'revision','',0),(2941,8,'2019-10-18 08:54:50','2019-10-18 08:54:50','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<p ><u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.</p>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h6>Fees</h6>\r\n\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time. \r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you instil pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\nWoman Paying\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>. \r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Questions + Costs','','inherit','closed','closed','','2536-revision-v1','','','2019-10-18 08:54:50','2019-10-18 08:54:50','',2536,'https://www.drfields.com/uncategorized/2536-revision-v1/',0,'revision','',0),(2942,8,'2019-10-18 08:55:00','2019-10-18 08:55:00','<div class=\"col-md-8\">\r\n<h4>How To Avoid Joint Replacement Surgery With Stem Cell Treatments</h4>\r\nHas your doctor told you that you have <strong>worn cartilage or no cartilage?</strong> That you have <strong>bone-on-bone</strong> in your joints? That you have <strong>arthritis</strong>? Or that you have<strong> torn or damaged tissue</strong> in your joints?\r\n\r\nMore to the point, has your doctor told you that you need to have your joint replaced? \r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignleft size-full wp-image-1685\" /> Every year, over 20 million people are told that the only solution to their joint pain -- whether it’s in their knee, hip, shoulder, or other joint -- can only be treated with a total joint replacement.\r\n\r\nAnd if you are like most people, <strong>you are scared</strong> at the idea of someone cutting out your joint and replacing it with an artificial one. \r\n\r\nI would be, too. \r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. \r\n\r\nAnd I’m here to tell you that in many cases, you do NOT need to have your joint replaced in order to be able to walk, run, lift, stand, sit, dance, raise your arms, play sports, or whatever it is that you currently cannot do. \r\n\r\nMy treatments have helped thousands of people <strong>resume their normal lives without joint replacement surgery,</strong> and there’s a very good chance that I can do the same for you.\r\n\r\nCall my office today at <a href=\"tel:+[phone_raw]\">[phone]</a>\r\n or <a href=\"https://www.thegeminigeeks.com/server1/contact\" >fill out the contact form</a> on this page and <strong>we will call you.</strong>\r\n\r\n\r\n<h4>Why Avoid Joint Replacement Surgery?</h4>\r\n\r\nThe best reason for avoiding joint replacement surgery is that you probably don’t need it in the first place. Arthritis.org reported that one third of total knee replacement surgeries were “inappropriate”. And many other joint replacements were done when the damage was only “mild or moderate.”\r\n\r\nAnd if you do have a total knee replacement, hip replacement, shoulder replacement or some other major orthopedic surgery, you are going to end up with a minimum of three months to a full year trying to recover.\r\n\r\nPlus you avoid any of the common complications of orthopedic surgery, including infection, bleeding into the joint, blood clots, complications from general anesthesia or implant failure.\r\n\r\n<h4>Stem Cell Treatment Restores Movement Without Surgery</h4>\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/regenerative-techniques/stem-cell-treatment\">My Gold Standard Stem Cell treatments</a> may help you avoid joint replacement surgery and all its complications. Plus, there is minimal recovery time because there is NO surgery, NO hospital, and NO general anesthesia. \r\n\r\nThe treatment is effective for patients diagnosed with arthritis, torn meniscus, labral tear, rotator cuff injury, torn or worn cartilage, and any other conditions which cause you to have a bone-on-bone condition or were told to have joint replacement surgery.\r\n\r\nWatch any of the video testimonials on this page, just to see how thankful my patients are to avoid joint replacement surgery.\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.thegeminigeeks.com/server1/contact\">Contact my office today</a> or call me at <a href=\"tel:310-455-8242\">310-455-8242</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/quj4K0wbfu4?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jerry - Stem Cell Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Jerry tore his meniscus a second time. Doctor prescribed a knee replacement, but after Stem Cell treatment is now playing softball again!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/NSQ6NTv4E7Q?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeff - Stem Cell Shoulder</p>\r\n<p>Had “tremendous” shoulder pain. Couldn’t sleep, sit up, lay on his side. His surgeon said “Just live with it!” So he traveled from his New Mexico home to see Dr. Peter Fields. See how he is now!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/MMQf25t2YVw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Priscilla - Stem Cell Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Prescilla, a Torn Meniscus and Arthritis patient, was told she had to have knee replacement surgery. She couldn’t stand for any length of time. Now she can walk, skip, and ride a bike! Listen to her story.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/YoXRC87KNuM?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Robert C. - Stem Cell Knee</p>\r\n<p>Used to be very active but now couldn’t walk. Now he is active again: already walking, surfing, and soon will be skiing again!</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/IajO8GpFeng?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Mary - Stem Cell Hip</p>\r\n<p>Couldn’t sleep or walk. Was told she needed hip replacement surgery. She saw Dr. Fields and can now walk and do ballet!</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will Stem Cell Treatments Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for Stem Cell Treatments so that you can avoid joint replacement surgery. Schedule your consultation by calling our office now a <a href=\"tel:1-310-455-8242\"><strong>310-455-8242</strong></a>or fill out this form.\r\n\r\n[contact-form-7 id=\"1696\" title=\"Consulation form\"]\r\n</div>','Alternative to Joint Replacement Surgery','','inherit','closed','closed','','2339-revision-v1','','','2019-10-18 08:55:00','2019-10-18 08:55:00','',2339,'https://www.drfields.com/uncategorized/2339-revision-v1/',0,'revision','',0),(2943,8,'2019-10-18 08:56:29','2019-10-18 08:56:29','<div class=\"col-md-8\">\r\n<h4>How To Avoid Joint Replacement Surgery With Stem Cell Treatments</h4>\r\nHas your doctor told you that you have <strong>worn cartilage or no cartilage?</strong> That you have <strong>bone-on-bone</strong> in your joints? That you have <strong>arthritis</strong>? Or that you have<strong> torn or damaged tissue</strong> in your joints?\r\n\r\nMore to the point, has your doctor told you that you need to have your joint replaced? \r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignleft size-full wp-image-1685\" /> Every year, over 20 million people are told that the only solution to their joint pain -- whether it’s in their knee, hip, shoulder, or other joint -- can only be treated with a total joint replacement.\r\n\r\nAnd if you are like most people, <strong>you are scared</strong> at the idea of someone cutting out your joint and replacing it with an artificial one. \r\n\r\nI would be, too. \r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. \r\n\r\nAnd I’m here to tell you that in many cases, you do NOT need to have your joint replaced in order to be able to walk, run, lift, stand, sit, dance, raise your arms, play sports, or whatever it is that you currently cannot do. \r\n\r\nMy treatments have helped thousands of people <strong>resume their normal lives without joint replacement surgery,</strong> and there’s a very good chance that I can do the same for you.\r\n\r\nCall my office today at <a href=\"tel:+[phone_raw]\">[phone]</a>\r\n or <a href=\"https://www.thegeminigeeks.com/server1/contact\" >fill out the contact form</a> on this page and <strong>we will call you.</strong>\r\n\r\n\r\n<h4>Why Avoid Joint Replacement Surgery?</h4>\r\n\r\nThe best reason for avoiding joint replacement surgery is that you probably don’t need it in the first place. Arthritis.org reported that one third of total knee replacement surgeries were “inappropriate”. And many other joint replacements were done when the damage was only “mild or moderate.”\r\n\r\nAnd if you do have a total knee replacement, hip replacement, shoulder replacement or some other major orthopedic surgery, you are going to end up with a minimum of three months to a full year trying to recover.\r\n\r\nPlus you avoid any of the common complications of orthopedic surgery, including infection, bleeding into the joint, blood clots, complications from general anesthesia or implant failure.\r\n\r\n<h4>Stem Cell Treatment Restores Movement Without Surgery</h4>\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/regenerative-techniques/stem-cell-treatment\">My Gold Standard Stem Cell treatments</a> may help you avoid joint replacement surgery and all its complications. Plus, there is minimal recovery time because there is NO surgery, NO hospital, and NO general anesthesia. \r\n\r\nThe treatment is effective for patients diagnosed with arthritis, torn meniscus, labral tear, rotator cuff injury, torn or worn cartilage, and any other conditions which cause you to have a bone-on-bone condition or were told to have joint replacement surgery.\r\n\r\nWatch any of the video testimonials on this page, just to see how thankful my patients are to avoid joint replacement surgery.\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.thegeminigeeks.com/server1/contact\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/quj4K0wbfu4?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jerry - Stem Cell Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Jerry tore his meniscus a second time. Doctor prescribed a knee replacement, but after Stem Cell treatment is now playing softball again!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/NSQ6NTv4E7Q?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeff - Stem Cell Shoulder</p>\r\n<p>Had “tremendous” shoulder pain. Couldn’t sleep, sit up, lay on his side. His surgeon said “Just live with it!” So he traveled from his New Mexico home to see Dr. Peter Fields. See how he is now!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/MMQf25t2YVw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Priscilla - Stem Cell Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Prescilla, a Torn Meniscus and Arthritis patient, was told she had to have knee replacement surgery. She couldn’t stand for any length of time. Now she can walk, skip, and ride a bike! Listen to her story.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/YoXRC87KNuM?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Robert C. - Stem Cell Knee</p>\r\n<p>Used to be very active but now couldn’t walk. Now he is active again: already walking, surfing, and soon will be skiing again!</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/IajO8GpFeng?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Mary - Stem Cell Hip</p>\r\n<p>Couldn’t sleep or walk. Was told she needed hip replacement surgery. She saw Dr. Fields and can now walk and do ballet!</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will Stem Cell Treatments Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for Stem Cell Treatments so that you can avoid joint replacement surgery. Schedule your consultation by calling our office now a <a href=\"tel:1-310-455-8242\"><strong>310-455-8242</strong></a>or fill out this form.\r\n\r\n[contact-form-7 id=\"1696\" title=\"Consulation form\"]\r\n</div>','Alternative to Joint Replacement Surgery','','inherit','closed','closed','','2339-revision-v1','','','2019-10-18 08:56:29','2019-10-18 08:56:29','',2339,'https://www.drfields.com/uncategorized/2339-revision-v1/',0,'revision','',0),(2944,8,'2019-10-18 08:58:10','2019-10-18 08:58:10','<div class=\"col-md-8\">\r\n<h4>How To Avoid Joint Replacement Surgery With Stem Cell Treatments</h4>\r\nHas your doctor told you that you have <strong>worn cartilage or no cartilage?</strong> That you have <strong>bone-on-bone</strong> in your joints? That you have <strong>arthritis</strong>? Or that you have<strong> torn or damaged tissue</strong> in your joints?\r\n\r\nMore to the point, has your doctor told you that you need to have your joint replaced? \r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignleft size-full wp-image-1685\" /> Every year, over 20 million people are told that the only solution to their joint pain -- whether it’s in their knee, hip, shoulder, or other joint -- can only be treated with a total joint replacement.\r\n\r\nAnd if you are like most people, <strong>you are scared</strong> at the idea of someone cutting out your joint and replacing it with an artificial one. \r\n\r\nI would be, too. \r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. \r\n\r\nAnd I’m here to tell you that in many cases, you do NOT need to have your joint replaced in order to be able to walk, run, lift, stand, sit, dance, raise your arms, play sports, or whatever it is that you currently cannot do. \r\n\r\nMy treatments have helped thousands of people <strong>resume their normal lives without joint replacement surgery,</strong> and there’s a very good chance that I can do the same for you.\r\n\r\nCall my office today at <a href=\"tel:+[phone_raw]\">[phone]</a>\r\n or <a href=\"https://www.thegeminigeeks.com/server1/contact\" >fill out the contact form</a> on this page and <strong>we will call you.</strong>\r\n\r\n\r\n<h4>Why Avoid Joint Replacement Surgery?</h4>\r\n\r\nThe best reason for avoiding joint replacement surgery is that you probably don’t need it in the first place. Arthritis.org reported that one third of total knee replacement surgeries were “inappropriate”. And many other joint replacements were done when the damage was only “mild or moderate.”\r\n\r\nAnd if you do have a total knee replacement, hip replacement, shoulder replacement or some other major orthopedic surgery, you are going to end up with a minimum of three months to a full year trying to recover.\r\n\r\nPlus you avoid any of the common complications of orthopedic surgery, including infection, bleeding into the joint, blood clots, complications from general anesthesia or implant failure.\r\n\r\n<h4>Stem Cell Treatment Restores Movement Without Surgery</h4>\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/regenerative-techniques/stem-cell-treatment\">My Gold Standard Stem Cell treatments</a> may help you avoid joint replacement surgery and all its complications. Plus, there is minimal recovery time because there is NO surgery, NO hospital, and NO general anesthesia. \r\n\r\nThe treatment is effective for patients diagnosed with arthritis, torn meniscus, labral tear, rotator cuff injury, torn or worn cartilage, and any other conditions which cause you to have a bone-on-bone condition or were told to have joint replacement surgery.\r\n\r\nWatch any of the video testimonials on this page, just to see how thankful my patients are to avoid joint replacement surgery.\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.thegeminigeeks.com/server1/contact\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/quj4K0wbfu4?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jerry - Stem Cell Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Jerry tore his meniscus a second time. Doctor prescribed a knee replacement, but after Stem Cell treatment is now playing softball again!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/NSQ6NTv4E7Q?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeff - Stem Cell Shoulder</p>\r\n<p>Had “tremendous” shoulder pain. Couldn’t sleep, sit up, lay on his side. His surgeon said “Just live with it!” So he traveled from his New Mexico home to see Dr. Peter Fields. See how he is now!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/MMQf25t2YVw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Priscilla - Stem Cell Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Prescilla, a Torn Meniscus and Arthritis patient, was told she had to have knee replacement surgery. She couldn’t stand for any length of time. Now she can walk, skip, and ride a bike! Listen to her story.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/YoXRC87KNuM?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Robert C. - Stem Cell Knee</p>\r\n<p>Used to be very active but now couldn’t walk. Now he is active again: already walking, surfing, and soon will be skiing again!</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/IajO8GpFeng?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Mary - Stem Cell Hip</p>\r\n<p>Couldn’t sleep or walk. Was told she needed hip replacement surgery. She saw Dr. Fields and can now walk and do ballet!</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will Stem Cell Treatments Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for Stem Cell Treatments so that you can avoid joint replacement surgery. Schedule your consultation by calling our office now a <a href=\"tel:+[phone_raw]\">[phone]</a>\r\nor fill out this form.\r\n\r\n[contact-form-7 id=\"1696\" title=\"Consulation form\"]\r\n</div>','Alternative to Joint Replacement Surgery','','inherit','closed','closed','','2339-revision-v1','','','2019-10-18 08:58:10','2019-10-18 08:58:10','',2339,'https://www.drfields.com/uncategorized/2339-revision-v1/',0,'revision','',0),(2945,8,'2019-10-18 09:01:34','2019-10-18 09:01:34','<div class=\"col-md-8\">\r\n<h4>How To Avoid Joint Replacement Surgery With Stem Cell Treatments</h4>\r\nHas your doctor told you that you have <strong>worn cartilage or no cartilage?</strong> That you have <strong>bone-on-bone</strong> in your joints? That you have <strong>arthritis</strong>? Or that you have<strong> torn or damaged tissue</strong> in your joints?\r\n\r\nMore to the point, has your doctor told you that you need to have your joint replaced? \r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignleft size-full wp-image-1685\" /> Every year, over 20 million people are told that the only solution to their joint pain -- whether it’s in their knee, hip, shoulder, or other joint -- can only be treated with a total joint replacement.\r\n\r\nAnd if you are like most people, <strong>you are scared</strong> at the idea of someone cutting out your joint and replacing it with an artificial one. \r\n\r\nI would be, too. \r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. \r\n\r\nAnd I’m here to tell you that in many cases, you do NOT need to have your joint replaced in order to be able to walk, run, lift, stand, sit, dance, raise your arms, play sports, or whatever it is that you currently cannot do. \r\n\r\nMy treatments have helped thousands of people <strong>resume their normal lives without joint replacement surgery,</strong> and there’s a very good chance that I can do the same for you.\r\n\r\nCall my office today at <a href=\"tel:+[phone_raw]\">[phone]</a>\r\n or <a href=\"https://www.thegeminigeeks.com/server1/contact\" >fill out the contact form</a> on this page and <strong>we will call you.</strong>\r\n\r\n\r\n<h4>Why Avoid Joint Replacement Surgery?</h4>\r\n\r\nThe best reason for avoiding joint replacement surgery is that you probably don’t need it in the first place. Arthritis.org reported that one third of total knee replacement surgeries were “inappropriate”. And many other joint replacements were done when the damage was only “mild or moderate.”\r\n\r\nAnd if you do have a total knee replacement, hip replacement, shoulder replacement or some other major orthopedic surgery, you are going to end up with a minimum of three months to a full year trying to recover.\r\n\r\nPlus you avoid any of the common complications of orthopedic surgery, including infection, bleeding into the joint, blood clots, complications from general anesthesia or implant failure.\r\n\r\n<h4>Stem Cell Treatment Restores Movement Without Surgery</h4>\r\n\r\n<a href=\"https://www.thegeminigeeks.com/server1/regenerative-techniques/stem-cell-treatment\">My Gold Standard Stem Cell treatments</a> may help you avoid joint replacement surgery and all its complications. Plus, there is minimal recovery time because there is NO surgery, NO hospital, and NO general anesthesia. \r\n\r\nThe treatment is effective for patients diagnosed with arthritis, torn meniscus, labral tear, rotator cuff injury, torn or worn cartilage, and any other conditions which cause you to have a bone-on-bone condition or were told to have joint replacement surgery.\r\n\r\nWatch any of the video testimonials on this page, just to see how thankful my patients are to avoid joint replacement surgery.\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.thegeminigeeks.com/server1/contact\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/quj4K0wbfu4?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jerry - Stem Cell Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Jerry tore his meniscus a second time. Doctor prescribed a knee replacement, but after Stem Cell treatment is now playing softball again!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/NSQ6NTv4E7Q?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeff - Stem Cell Shoulder</p>\r\n<p>Had “tremendous” shoulder pain. Couldn’t sleep, sit up, lay on his side. His surgeon said “Just live with it!” So he traveled from his New Mexico home to see Dr. Peter Fields. See how he is now!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/MMQf25t2YVw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Priscilla - Stem Cell Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Prescilla, a Torn Meniscus and Arthritis patient, was told she had to have knee replacement surgery. She couldn’t stand for any length of time. Now she can walk, skip, and ride a bike! Listen to her story.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/YoXRC87KNuM?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Robert C. - Stem Cell Knee</p>\r\n<p>Used to be very active but now couldn’t walk. Now he is active again: already walking, surfing, and soon will be skiing again!</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/IajO8GpFeng?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Mary - Stem Cell Hip</p>\r\n<p>Couldn’t sleep or walk. Was told she needed hip replacement surgery. She saw Dr. Fields and can now walk and do ballet!</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will Stem Cell Treatments Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for Stem Cell Treatments so that you can avoid joint replacement surgery. Schedule your consultation by calling our office now a <a href=\"tel:+[phone_raw]\">[phone]</a> or fill out this form.\r\n\r\n[contact-form-7 id=\"1696\" title=\"Consulation form\"]\r\n</div>','Alternative to Joint Replacement Surgery','','inherit','closed','closed','','2339-revision-v1','','','2019-10-18 09:01:34','2019-10-18 09:01:34','',2339,'https://www.drfields.com/uncategorized/2339-revision-v1/',0,'revision','',0),(2946,8,'2019-10-18 09:05:02','2019-10-18 09:05:02','<h4>How To Avoid Joint Replacement Surgery</h4>\r\nHas your doctor told you that you have worn cartilage or no cartilage? That you have bone-on-bone in your joints? That you have arthritis?  Or that you have torn or damaged tissue in your joints?\r\n\r\nMore to the point, has your doctor told you that you need to have your joint replaced?\r\n\r\nEvery year, over 20 million people are told that the only solution to their joint pain -- whether it’s in their knee, hip, shoulder, or other joint -- can only be treated with a total joint replacement.\r\n\r\nAnd if you are like most people, you are scared at the idea of someone cutting out your joint and replacing it with an artificial one.\r\n\r\nI would be, too.\r\n\r\nMy name is Dr. Peter Fields, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic.\r\n\r\nAnd I’m here to tell you that in many cases, you do NOT need to have your joint replaced in order to be able to walk, run, lift, stand, sit, dance, raise your arms, play sports, or whatever it is that you currently cannot do.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint replacement surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nCall my office today at [phone] or fill out the contact form on this page and we will call you.','Mark Test','','inherit','closed','closed','','2312-revision-v1','','','2019-10-18 09:05:02','2019-10-18 09:05:02','',2312,'https://www.drfields.com/uncategorized/2312-revision-v1/',0,'revision','',0),(2947,8,'2019-10-18 09:06:15','2019-10-18 09:06:15','<div class=\"col-md-8\">\r\n<h4>Chelation Therapy</span></h4>\r\n\r\nChelation (pronounced-“key·lay·shun”) was developed initially as an industrial application in the early 1900’s. It was not until the era of World War II that any medical application was recognized. Initially the treatment was for gas poisoning and exposure to radioactivity. The word, ‘chelation’ is taken from the Greek word “chele”, meaning “claw”. Using this sense of the word, it means to grab or remove an unwanted substance from the body. Chelation is the term used to describe the removal of heavy metal toxicity from the body, as in lead poisoning, iron overload, and aluminum overload. Chelation therapy using EDTA, ethylene diamine tetraacetic acid, has been approved by the U.S. Food and Drug Administration (FDA) as a treatment for lead poisoning and heavy metal toxicity for more than forty years.\r\n\r\nThe theory behind Chelation Therapy is that certain drugs, chelating agents, function by making chemical bonds with heavy metal ions in the body, making these metals less chemically reactive. The resulting compounds, bonded agents and heavy metals, become water soluble, allowing them to enter the bloodstream and be excreted through urination. The chelating process can also remove beneficial metals and nutrients from the body, for example, zinc and calcium; these must be supplemented under the direction of a physician. Because these heavy metal compounds are excreted through the urine, kidney function must also be monitored. To ensure absolute safety, Chelation Therapy should be done by a qualified, licensed physician.\r\n\r\nChelation Therapy has been successfully used for iron overload from multiple transfusions, aluminum overload due to hemodialysis, copper toxicity due to Wilson’s disease and acute heavy metal toxicity. As part of any therapeutic program, lifestyle modifications are encouraged. These would include stress reduction, caffeine avoidance, alcohol limitation, smoking cessation, exercise, and nutritional counseling.\r\n\r\nAt Pacific Prolotherapy and Medical Wellness Center, our goal is for our patients to have an active, healthy, pain free life. We want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment.\r\n\r\n<strong>Call today, [phone]</strong>.\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\r\n<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Chelation Therapy','','inherit','closed','closed','','1820-revision-v1','','','2019-10-18 09:06:15','2019-10-18 09:06:15','',1820,'https://www.drfields.com/uncategorized/1820-revision-v1/',0,'revision','',0),(2948,8,'2019-10-18 09:06:49','2019-10-18 09:06:49','<div class=\"col-md-8\">\r\n<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignright size-full wp-image-1685\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\r\n\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\r\n<ul>\r\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\r\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\r\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\r\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\n<h4>How To Eliminate Chronic Joint Pain Without Surgery</h4>\r\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/contact/\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christa - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Christa, a former college athlete, had knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Eric - Lower Back</p>\r\n<p>Dr. Eric had low back pain since age 15. Damaged ligaments caused his pain &amp; tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Now Eric has his life back.</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/vMWJVoJaVJs?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Nanette - Hip</p>\r\n<p>Personal trainer &amp; triathlete, Nanette, had a bicycle accident and could not walk, ride or work any more. Dr. Fields started Prolotherapy 6 months ago. She can now sit, squat, walk, run, climb, lift. “Miraculous,” she says.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/MYI_vSJe378?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeremy. - Ankle</p>\r\n<p>Cortisone didn’t help Jeremy’s repeated ankle injuries. He had just two options: Prolotherapy or “Surgery with no guarantee.” After Prolotherapy treatment by Dr. Fields, he is now he’s back to running 3-5 times per week and feeling great!</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VkDlCmTq6dE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Wilbur - Shoulder </p>\r\n<p>Wilbur, a firefighter who hurt his shoulders, had limited range of motion. Dr. Fields began Prolotherapy treatment immediately. Now he’s doing core power yoga 5x week!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/AioI5BZz3UE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Tim - Shoulder </p>\r\n<p>Shoulder injury kept Tim from working out. His Orthopedic surgeon told him to stop any shoulder exercise: “Your days are over,” he said. Now he’s back to normal after 6 Prolotherapy treatments by Dr. Fields.</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will Prolotherapy Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for Prolotherapy and eliminating your joint pain without surgery. Schedule your consultation by calling our office now at <a href=\"tel:+[phone_raw]\">[phone]</a>\r\nor fill out this form.\r\n\r\n[contact-form-7 id=\"1696\" title=\"Consulation form\"]\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2019-10-18 09:06:49','2019-10-18 09:06:49','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(2949,8,'2019-10-18 09:09:24','2019-10-18 09:09:24','<div class=\"col-md-8\">\r\n<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignright size-full wp-image-1685\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\r\n\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\r\n<ul>\r\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\r\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\r\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\r\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\n<h4>How To Eliminate Chronic Joint Pain Without Surgery</h4>\r\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/contact/\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christa - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Christa, a former college athlete, had knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Eric - Lower Back</p>\r\n<p>Dr. Eric had low back pain since age 15. Damaged ligaments caused his pain &amp; tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Now Eric has his life back.</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/vMWJVoJaVJs?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Nanette - Hip</p>\r\n<p>Personal trainer &amp; triathlete, Nanette, had a bicycle accident and could not walk, ride or work any more. Dr. Fields started Prolotherapy 6 months ago. She can now sit, squat, walk, run, climb, lift. “Miraculous,” she says.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/MYI_vSJe378?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeremy. - Ankle</p>\r\n<p>Cortisone didn’t help Jeremy’s repeated ankle injuries. He had just two options: Prolotherapy or “Surgery with no guarantee.” After Prolotherapy treatment by Dr. Fields, he is now he’s back to running 3-5 times per week and feeling great!</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VkDlCmTq6dE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Wilbur - Shoulder </p>\r\n<p>Wilbur, a firefighter who hurt his shoulders, had limited range of motion. Dr. Fields began Prolotherapy treatment immediately. Now he’s doing core power yoga 5x week!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/AioI5BZz3UE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Tim - Shoulder </p>\r\n<p>Shoulder injury kept Tim from working out. His Orthopedic surgeon told him to stop any shoulder exercise: “Your days are over,” he said. Now he’s back to normal after 6 Prolotherapy treatments by Dr. Fields.</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will Prolotherapy Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for Prolotherapy and eliminating your joint pain without surgery. Schedule your consultation by calling our office now at <a href=\"tel:+[phone_raw]\">[phone]</a> or fill out this form.\r\n\r\n[contact-form-7 id=\"1696\" title=\"Consulation form\"]\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2019-10-18 09:09:24','2019-10-18 09:09:24','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(2950,8,'2019-10-18 09:09:55','2019-10-18 09:09:55','<div class=\"col-md-8\">\r\n<h4>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h4>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have been trying to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" class=\"alignright size-full wp-image-1685\" />You may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since none of those treatments provided a permanent solution to your pain, are you wondering if you finally have to have surgery so you can move freely without pain and live a normal life?\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, nonsurgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy</strong>, which helps your body make new cells to repair the damage in your joint.\r\n\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nMost joint pain is caused by weakened, torn or damaged tendons or ligaments. These tissues have very low blood flow, which inhibits their ability to repair themselves on their own. Making things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are relaxed and weak...\r\n<ul>\r\n 	<li>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></li>\r\n 	<li>Which causes <strong>arthritis-like</strong> pain...</li>\r\n 	<li>Then the nerves surrounding soft tissues become stretched and irritated...</li>\r\n 	<li>Causing you <strong>even more </strong><strong>pain</strong>.</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\n<h4>How To Eliminate Chronic Joint Pain Without Surgery</h4>\r\nThis is why Prolotherapy is so effective. The treatment causes an increase in nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/contact/\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for Stem Cell.\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christa - Knee -&nbsp;<span style=\"color: #ff0000;\">NEW!</span></p>\r\n<p>Christa, a former college athlete, had knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Eric - Lower Back</p>\r\n<p>Dr. Eric had low back pain since age 15. Damaged ligaments caused his pain &amp; tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Now Eric has his life back.</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/vMWJVoJaVJs?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Nanette - Hip</p>\r\n<p>Personal trainer &amp; triathlete, Nanette, had a bicycle accident and could not walk, ride or work any more. Dr. Fields started Prolotherapy 6 months ago. She can now sit, squat, walk, run, climb, lift. “Miraculous,” she says.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/MYI_vSJe378?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeremy. - Ankle</p>\r\n<p>Cortisone didn’t help Jeremy’s repeated ankle injuries. He had just two options: Prolotherapy or “Surgery with no guarantee.” After Prolotherapy treatment by Dr. Fields, he is now he’s back to running 3-5 times per week and feeling great!</p>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/VkDlCmTq6dE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Wilbur - Shoulder </p>\r\n<p>Wilbur, a firefighter who hurt his shoulders, had limited range of motion. Dr. Fields began Prolotherapy treatment immediately. Now he’s doing core power yoga 5x week!</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"col-md-6\">\r\n<iframe src=\"https://www.youtube.com/embed/AioI5BZz3UE?rel=0&amp;wmode=opaque\" allow=\"autoplay; encrypted-media\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"> Tim - Shoulder </p>\r\n<p>Shoulder injury kept Tim from working out. His Orthopedic surgeon told him to stop any shoulder exercise: “Your days are over,” he said. Now he’s back to normal after 6 Prolotherapy treatments by Dr. Fields.</p>\r\n</div>\r\n</div>\r\n\r\n</div>\r\n\r\n<div class=\"col-md-4\">\r\n<h5>Will Prolotherapy Work For You?</h5>\r\n\r\nFind out if you\'re a candidate for Prolotherapy and eliminating your joint pain without surgery. Schedule your consultation by calling our office now at <a href=\"tel:+[phone_raw]\">[phone]</a> or fill out this form.\r\n\r\n[form]\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2019-10-18 09:09:55','2019-10-18 09:09:55','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(2951,8,'2019-10-18 09:11:10','2019-10-18 09:11:10','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" class=\"alignleft size-full wp-image-1685\" /><h4>Stem Cell Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is Stem Cell Doctor in Los Angeles and the founder of OrthoRegen. Dr. Fields is a leading expert in using Stem Cell Treatments for joints and Spine Regeneration. Dr. Fields help people avoid unnecessary orthopaedic surgeries whether full surgery or arthroscopic procedure. Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of Stem Cell  Regenerative Treatments.\r\n\r\n<h4>What is a Stem Cell Doctor?</h4>\r\n\r\nA Stem Cell Doctor provides regenerative orthopaedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields uses Stem Cell therapy to regenerate body tissue. Regenerative medicine is growing in popularity in the medical world as an alternative to invasive orthopaedic surgeries including joint replacement. The remarkable thing about Stem Cells is that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example,  cartilage cells or meniscus cells.\r\n\r\n<h4>What Conditions Can a Stem Cell Doctor Help?</h4>\r\n\r\nDr. Fields treats weakened, torn or damaged ligaments, as well as tendons, torn cartilage, muscle tears, menisci or labrums. Stem Cell treatment has also been effective in treating severe arthritis conditions.\r\n\r\n<strong>Dr. Fields has had great success in treating joint conditions with Stem Cell Therapy including:</strong>\r\n<ul>\r\n   <li>Bone-on-Bone</li>\r\n    <li>Severe Arthritis</li>\r\n    <li>Degenerated Joint</li>\r\n    <li>Torn, Worn or Missing Cartilage</li></ul>\r\n\r\nSee more about Stem Cell Treatment.\r\n\r\n<h4>What is Stem Cell Treatment?</h4>\r\n\r\nStem Cell treatment is an injection of stem cells into the joint or affected area to promote healing. This procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries.\r\n\r\nDr. Fields  Stem Cell technique one of the four Gold Standards Regenerative Orthopedics procedures to help you avoid invasive surgery.\r\n\r\nStem Cell Treatment, as used in regenerative orthopaedics, is a non-surgical healing treatment for healing soft tissue performed by a Stem Cell Doctor. Stem Cell treatment is the transplantation of autologous culture-expanded bone marrow mesenchymal stem cells in platelet rich-fibrin glue.\r\n\r\n<h4>Is Stem Cell Treatment Safe?</h4>\r\n\r\nStem Cell treatment is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. The Stem Cell Doctor will discuss these possibilities fully with patients during the pre-treatment consultation. This is only recommended after a very thorough history and physical exam.\r\n\r\n<h4>Are You A Candidate for Stem Cell Treatment?</h4>\r\n\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s shoulder replacement surgery, hip replacement surgery, knee replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to bone-on-bone, arthritis or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nSpine Surgery and Joint Replacement Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, long recovery times, potential (dangerous) complications, and the need to have the procedure redone at some point.\r\n\r\nMake an appointment with our Stem Cell Doctor for an evaluation to see if you are a good candidate for Dr. Fields Gold Standard Stem Cell Treatment for - Spine and Joints. Call <a href=\"tel:+[phone_raw]\">[phone]</a>\r\n to Schedule Your Appointment Today!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Stem Cell Doctor','','inherit','closed','closed','','292-revision-v1','','','2019-10-18 09:11:10','2019-10-18 09:11:10','',292,'https://www.drfields.com/uncategorized/292-revision-v1/',0,'revision','',0),(2952,8,'2019-10-18 09:11:23','2019-10-18 09:11:23','<h4>Prolotherapy for Chronic Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Prolotherapy for Chronic Knee Pain treatment.\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Osteoarthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Chronic osteoarthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudo gout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>How Prolotherapy Is Used To Treat Chronic Knee Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with prolotherapy</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2019-10-18 09:11:23','2019-10-18 09:11:23','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(2953,8,'2019-10-18 09:11:39','2019-10-18 09:11:39','<h4>Prolotherapy for Chronic Shoulder Pain</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n\r\nIt\'s easy to take your own body for granted when your body is working well. But when a part of your body, such as your shoulder, begins to hurt or hurts for an extended period of time, you quickly realize how much you depend on your shoulders for reaching, raising your arm, lifting yourself up or even just opening a cupboard. That\'s why so many people with shoulder pain or injuries look to <strong>Prolotherapy for chronic shoulder pain</strong> treatment.\r\n\r\n<h4>Causes of Shoulder Pain</h4>\r\nThe muscles and joints of the shoulder allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso and allow the arm to move a full 360°. This tremendous range of motion also makes the shoulder extremely unstable, and far more prone to dislocation and injury than other joints.\r\n\r\nBecause the rounded head or ball of the upper arm bone (humerus) is larger than the socket of the shoulder bone (scapula), this area is especially susceptible to injury. The shoulder joint consists of bones, muscles and ligaments that are all subject to stress and overuse.\r\n\r\nCommon causes of shoulder pain can be:\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation and attendant injury</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Adhesive capsulated (frozen shoulder)</li>\r\n 	<li>Fracture</li>\r\n 	<li>Poor posture.</li>\r\n</ul>\r\nBut the <strong>most common cause of chronic pain in the shoulder is arthritis</strong>. This can take many forms such as: osteoarthritis, rheumatoid, traumatic, and gouty arthritis.\r\n\r\n<h4>Which Kind of Shoulder Pain Do You Have?</h4>\r\nIf you are experiencing pain from a rotator cuff injury, you will feel a dull aching pain, which worsens with movement.  A rotator cuff injury includes any type of irritation or damage to your <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> muscles or tendons. Causes of a rotator cuff injury may include falling, lifting and repetitive arm activities — especially those done overhead.\r\n\r\n<strong>Shoulder tendonitis</strong> can produce symptoms including a slow onset of discomfort, pain in the upper third of your arm and difficulty sleeping on the side of that arm.\r\n\r\nRedness and swelling that is tender and warm to the touch can be caused by <strong>bursitis</strong>.\r\n\r\nMinor shoulder pain, ‘clicking’, ‘giving way’, or frozen shoulder, are symptoms of <strong>arthritis</strong>. Osteoarthritis can begin as early as thirty, but symptoms can appear later, as the condition progresses.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Shoulder Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Shoulder Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic shoulder pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, shoulder surgery requires you reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic shoulder pain? Would you like a <strong>second opinion before you have irreversible shoulder surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Chronic Shoulder Pain','','inherit','closed','closed','','511-revision-v1','','','2019-10-18 09:11:39','2019-10-18 09:11:39','',511,'https://www.drfields.com/uncategorized/511-revision-v1/',0,'revision','',0),(2954,8,'2019-10-18 09:12:41','2019-10-18 09:12:41','<img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" />\r\n<h4>Prolotherapy Doctor</h4>\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\r\n<h4>What is a Prolotherapy Doctor?</h4>\r\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h4>How Prolotherapy Treatment Works</h4>\r\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"https://orthoregen.com/\" rel=\"noopener noreferrer\">OrthoRegen</a>\r\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\r\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\r\n<h4>What Conditions Can Dr. Fields Help You With:</h4>\r\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\r\n<ul>\r\n 	<li><strong>Chronic Conditions like…</strong>\r\n<ul>\r\n 	<li>Arthritis Pain</li>\r\n 	<li>Sciatica Pain</li>\r\n 	<li>Pinched Nerves</li>\r\n 	<li>Athletic Injuries</li>\r\n 	<li>Tension Headaches</li>\r\n 	<li>Migraine Headaches</li>\r\n 	<li>Herniated Discs</li>\r\n 	<li>Degenerative Discs</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak Joints</li>\r\n 	<li>Sore Muscles</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Knee Injuries:</strong>\r\n<ul>\r\n 	<li>ACL Tear</li>\r\n 	<li>Runners\' Knee</li>\r\n 	<li>Radial Meniscus Tear</li>\r\n 	<li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Hip Injuries:</strong>\r\n<ul>\r\n 	<li>Torn Labrum</li>\r\n 	<li>Acetabular labrum Tear</li>\r\n 	<li>Labral Tear</li>\r\n 	<li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Neck Injuries:</strong>\r\n<ul>\r\n 	<li>Whiplash</li>\r\n 	<li>TMJ Syndrome</li>\r\n 	<li>Migraine Headaches</li>\r\n 	<li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Shoulder Injuries:</strong>\r\n<ul>\r\n 	<li>Labral Tear</li>\r\n 	<li>Rotator Cuff Tear</li>\r\n 	<li>Swimmers Shoulder</li>\r\n 	<li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Back Injuries:</strong>\r\n<ul>\r\n 	<li>Herniated discs</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>See a complete list of Back Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Elbow Injuries:</strong>\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tennis elbow</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Foot and Ankle Injuries:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle Sprains</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>See a complete list of Foot Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Hand Injuries:</strong>\r\n<ul>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Finger pain</li>\r\n 	<li>See a complete list of Hand Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Prolotherapy Doctor','','inherit','closed','closed','','229-revision-v1','','','2019-10-18 09:12:41','2019-10-18 09:12:41','',229,'https://www.drfields.com/uncategorized/229-revision-v1/',0,'revision','',0),(2955,8,'2019-10-18 09:12:55','2019-10-18 09:12:55','<p>&nbsp; </p>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" class=\"alignleft size-full wp-image-288\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<p ><u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.</p>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2019-10-18 09:12:55','2019-10-18 09:12:55','',207,'https://www.drfields.com/uncategorized/207-revision-v1/',0,'revision','',0),(2956,8,'2019-10-18 09:13:08','2019-10-18 09:13:08','<img class=\"alignleft wp-image-1685 size-medium\" title=\"prp los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>PRP Doctor</h4>\r\nPeter A. Fields, MD DC, is a PRP Doctor in Los Angeles and the founder of OrthoRegen. Dr. Fields is a leading expert in using (PRP) Platelet Rich Plasma therapy to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world. Dr. Fields help people avoid unnecessary orthopedic surgeries whether arthroscopic or full surgery.\r\n<h4>What is a PRP Doctor?</h4>\r\nA PRP Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. PRP Doctors like Dr. Fields use Platelet Rich Plasma Injections that help accelerate the normal healing process. Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of PRP Regenerative Treatments.\r\n<h4>What Does PRP stand for?</h4>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as platelets, white blood cells, and red cells. The Harvest method that Dr. Fields uses concentrates the platelets 7-10 times of what is generally found in blood. Other systems concentrate them, but to a lesser extent.\r\n<h4>What is PRP Treatment?</h4>\r\nPRP treatment, as used in regenerative orthopedics, is a non-surgical healing treatment for healing soft tissue performed by a PRP Doctor. Dr. Fields makes precise injections of your own concentrated blood (PRP) into the affected areas to promote healing of musculoskeletal problems. Blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site.\r\n<h4>Is PRP Treatment Safe?</h4>\r\nPRP treatment is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities thoroughly with patients during the pre-treatment consultation.\r\nWhat Does a PRP Doctor Treat?\r\n\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that Dr. Fields treats. PRP has also been effective in treating arthritis, though more severe cases get better results with Dr. Fields’ Stem Cell treatments.\r\n\r\nDr. Fields has had great success in treating chronic pain and sports injuries including:\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Knee Injuries:</strong> ACL, MCL LCL, Meniscus, Arthritis, Kneecap Instability</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Knee Injuries Treated with Prolotherapy here\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Elbow Injuries:</strong> Tennis Elbow, Medial Epicondylitis,Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Elbow Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Shoulder Injuries:</strong> Rotator Cuff Tears, Labrum Tears, Tenositis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Shoulder Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Back Injuries:</strong> Arthritis, Facet Joints, Sacro-Iliac dysfunction</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Back Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hip Injuries:</strong> Tenositis, Bursitis,Labrum</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Hip Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Foot/Ankle Injuries:</strong> Ankle Sprains, Arthritis, Achilles Dysfunction, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Foot/Ankle Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hand/Wrist/ Injuries:</strong> Finger/Joint Tendinitis, Ligament Tears, Arthritis, Carpal tunnel</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Hand/Wrist Injuries Treated with Prolotherapy here.\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','PRP Doctor','','inherit','closed','closed','','266-revision-v1','','','2019-10-18 09:13:08','2019-10-18 09:13:08','',266,'https://www.drfields.com/uncategorized/266-revision-v1/',0,'revision','',0),(2957,8,'2019-10-18 16:18:32','2019-10-18 16:18:32','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignright size-full wp-image-955\" />\r\n\r\n\r\n<strong>Peter A. Fields, M.D., D.C.</strong>\r\n(Prolotherapy, Holistic Medicine, Sports Medicine)\r\nOrthoRegen\r\n2730 Wilshire Blvd, Suite 220\r\nSanta Monica, CA 90403\r\nPhone: [phone]\r\nFax: 310-453-1212\r\n\r\n<strong>Eleanor Hynote, M.D.</strong>\r\n(Internal Medicine, Clinical Nutrition, Metabolism, and\r\nIntegrative Medicine)\r\nPhoenix Well Care\r\n3417 Valle Verde Drive\r\nNapa, CA 94558\r\nPhone: 707-255-4172\r\nFax: 707-255-2605\r\n\r\n<strong>James F. Lineback, M.D.</strong>\r\n(Internal and Chest Medicine, Chronic Disease\r\nManagement, Anti-Aging)\r\nNewport Longevity Medical Group\r\n400 Newport center Drive, Suite 401\r\nNewport Beach, CA 92660-5303\r\nPhone: 949-760-8600\r\nFax: 949-721-9121\r\n\r\n<strong>Robert E. Markison, M.D., F.A.C.S</strong>\r\n(Associate Clinical Professor of Surgery, UCSF\r\nHand Surgeon)\r\nMedical Arts Building\r\n2000 Van Ness Ave., Suite 204\r\nSan Francisco, can CA 94109-3017\r\nPhone: 415-929-5900\r\nFax: 415-929-5909\r\n\r\n<strong>Ron Rothenberg, M.D.</strong>\r\n(Anti-Aging)\r\nCalifornia Healthspan Institute\r\n320 Sante Fe Drive, Suite 211\r\nEncinitas, CA 92024\r\nToll-Free Number: 800-943-3331\r\nPhone: 760-635-1996\r\nFax: 760-635-1994\r\n\r\n<strong>Julian Whitaker, M.D.</strong>\r\n(Alternative Medicine, Anti-Aging)\r\nWhitaker Wellness Institute\r\n4321 Birch Street, Suite 100\r\nNewport Beach, CA 92660\r\nToll-Free Number: 800-488-1500\r\nPhone: 949-851-1550\r\n','Dr. Sinatra\'s List of Top Doctors List','','inherit','closed','closed','','1500-revision-v1','','','2019-10-18 16:18:32','2019-10-18 16:18:32','',1500,'https://www.drfields.com/uncategorized/1500-revision-v1/',0,'revision','',0),(2958,8,'2019-10-19 03:26:25','2019-10-19 03:26:25','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Does Jumper’s Knee Have You Sidelined?</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/does-jumpers-knee-have-you-sidelined/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/does-jumpers-knee-have-you-sidelined/\">Does Jumper\'s Knee Have You Sidelined?</a></li>\r\n        <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-injections-may-not-be-as-safe-as-you-think/\">Cortisone Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-10-19 03:26:25','2019-10-19 03:26:25','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2959,8,'2019-10-21 08:56:19','2019-10-21 08:56:19','<h4>Sports Injuries Treatment</h4>\r\nHave sports injuries stopped you? Get back in the game with Prolotherapy and Dr. Peter A. Fields, The Athletic Doc®. At OrthoRegen we offer innovative, non-surgical treatments for your sports injury or chronic pain problems. Without unnecessary medication, prescriptions, cortisone shots or surgery, Prolotherapy can regenerate damaged or worn ligaments and strengthen weakened tendons. The most beneficial aspect of our non-surgical sports injuries treatment is that you can continue to train while you receive Prolotherapy treatments. We treat athletes of all skill and age levels: high school to college; amateur to professional athletes.\r\n\r\n<h4>How Can Prolotherapy Help Your Sports Injury?</h4>\r\nProlotherapy is an innovative treatment that stimulates the immune system to repair damaged tissue.”Prolo” comes from the word proliferate. Prolotherapy then, describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and other sports injuries. Receive treatment for your sports injuries with comprehensive Prolotherapy at OrthoRegen.\r\n\r\n<h4>Are You Suffering from a Sports Injury?</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">K</a><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">nee Pain</a></li>\r\n 	<li> ACL Tear</li>\r\n 	<li>Torn Meniscus</li>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Neck-Pain\">Neck pain</a></li>\r\n 	<li>Back Pain</li>\r\n 	<li>Shin Splints</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>Hamstring Strain</li>\r\n 	<li>IT Band Injury</li>\r\n 	<li>Turf Toe</li>\r\n</ul>\r\n<strong><em> Prolotherapy Sports Injuries Treatment can help you get back in the game – and get back quickly!</em></strong>\r\n\r\n<h4>Prolotherapy Doctor Treats Sports Injuries Without Surgery</h4>\r\nReceive treatment for your sports injuries by Ironman Triathlete Dr. Peter A. Fields. For over 25 years, Dr. Fields has been active in the sport of Triathlon. It is his experience as an athlete that allows him to understand the potential for injury and the demands of sports on the physical body. He also understands the passion athletes have to get back to training and competition, and their need to recover quickly from injury, because he has been there. In November 2012, Dr. Fields completed his second Ironman Triathlon, beating his 2011 time by better than 14 minutes. Dr. Fields is known as The Athletic Doc®. Wouldn’t you want to be treated by a sports doctor who is also an athlete?\r\n\r\nOur medical team finds that treating athletes is very rewarding. We can utilize a comprehensive health approach to help you reach your peak physical performance. <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> allows you to get back to training within a couple of days and does not involve periods of long recovery. Prolotherapy involves the injection of natural substances at the exact site of an injury. This stimulates the immune system to repair the sports injury. Areas often injured through sports related activities—ligaments, tendons, menisci, muscles, growth plates, joint capsules and cartilage are stimulated to heal. Anesthetics are also used to minimize any unpleasant pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Are You A Candidate for Non- Surgical Sports Injuries Treatment?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Testimonials page</a>.','Sports Injuries Treatment Overview','','inherit','closed','closed','','632-revision-v1','','','2019-10-21 08:56:19','2019-10-21 08:56:19','',632,'https://www.drfields.com/uncategorized/632-revision-v1/',0,'revision','',0),(2960,8,'2019-10-21 08:56:32','2019-10-21 08:56:32','<h4>Prolotherapy Back and Pelvic Treatment</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur – Low Back\"]\r\n<strong>Wilbur - Low Back</strong>\r\n</div>\r\nOne of the main reasons patients come to OrthoRegen is for back relief with our Prolotherapy Back Treatment. Back or pelvic injury is also the main reason our patients say, they have had to stop participation in sports.\r\n\r\nMany of the traditional treatments for back pain can actually be the cause for continuing problems. If you have tried NSAID medications (like Ibuprofen or Naproxen), nerve blocks, acupuncture or chiropractic adjustments, and have not found relief, join our growing patient list of people who have benefited from comprehensive treatment.\r\n\r\n<h4>Does Prolotherapy Back Treatment Work?</h4>\r\nWe are very successful at treating people for back and pelvic pain with our Prolotherapy Back treatment. We get them back to their sport without surgery, without medications, and without extended time off! To properly treat the lower back, the whole area needs to be treated. Especially in cases of sport injury trauma, patients find better and faster relief from the techniques used here at OrthoRegen. We will work to rehabilitate the whole athlete through nutritional and exercise regimens.\r\n\r\nIn our experience, the preferred way to treat back and pelvic with a comprehensive program of <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. In that way, patients see long term optimal results.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common back and pelvic pains and injuries that we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Back pain</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Buttock pain</li>\r\n 	<li>Coccyx pain</li>\r\n 	<li>Degenerated discs</li>\r\n 	<li>Herniated discs</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Failed back fusion pain</li>\r\n 	<li>Failed back surgery syndrome</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>Muscle spasms</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Pelvic pain</li>\r\n 	<li>Retrolisthesis</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tailbone pain</li>\r\n 	<li>Thoracic spine pain</li>\r\n 	<li>SI instability</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Yoga injury</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy back treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials/\">Prolotherapy Back Testimonials page</a>.','Back Injury Treatment','','inherit','closed','closed','','567-revision-v1','','','2019-10-21 08:56:32','2019-10-21 08:56:32','',567,'https://www.drfields.com/uncategorized/567-revision-v1/',0,'revision','',0),(2961,8,'2019-10-21 08:56:40','2019-10-21 08:56:40','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr.doug – Headaches & Shoulder\"]\r\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Shoulder Treatment</h4>\r\nAt OrthoRegen, shoulder injuries are one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Shoulder injuries are common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive prolotherapy shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\r\n\r\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\r\n\">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist and swimmer, understands your desire to return to full participation in your training and competition.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen are:</strong>\r\n<ul>\r\n 	<li>Acromioclavicular joint arthrosis</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation</li>\r\n 	<li>Frozen shoulder</li>\r\n 	<li>Glenoid labrum tear</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Multi-directional instability</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Shoulder dislocation</li>\r\n 	<li>Shoulder instability</li>\r\n 	<li>Shoulder pain</li>\r\n 	<li>Shoulder separation</li>\r\n 	<li>SLAP lesion</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Swimmers shoulder</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendonosis</li>\r\n 	<li>Torn labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials/\">Shoulder Prolotherapy Testimonials page</a>.\r\n\r\n','Shoulder Injury Treatment','','inherit','closed','closed','','545-revision-v1','','','2019-10-21 08:56:40','2019-10-21 08:56:40','',545,'https://www.drfields.com/uncategorized/545-revision-v1/',0,'revision','',0),(2962,8,'2019-10-21 08:56:59','2019-10-21 08:56:59','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Knee Treatment</h4>\r\nKnee injuries are one of the most common problems we treat with Prolotherapy knee treatment at OrthoRegen. The knee joint is one of the most crucial joints in the body. Normal knee function is vital to involvement in everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\r\n\r\nThere are also two forms of cartilage in the knee. Articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement, and the cartilage meniscus which is two semicircular discs providing cushioning and support for the bones. The knee is extremely vulnerable to injury in one or a combination of these elements. In the case of knee injury, we recommend our <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> knee treatment to strengthen and repair damaged tissue, ligaments and tendons.\r\n\r\n<h4>How Prolotherapy Knee Treatment Works</h4>\r\nOur Prolotherapy knee treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word proliferate. Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment for your knee injuries with comprehensive Prolotherapy at OrthoRegen.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" class=\"alignright size-full wp-image-1307\" />Dr. Peter A. Fields is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>. For over 25 years Dr. Fields has been active in the sport of Triathlon. In November 2012 he completed his second Ironman Triathlon, beating his time by 14 minutes. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nContact us to see if you are a candidate for <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\r\n\r\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>ACL tear Anterior Cruciate Ligament injury</li>\r\n 	<li>Arthritis of the knee</li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li>Chondromalacia patellae</li>\r\n 	<li>Complex meniscus tear</li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Knee pain after surgery</li>\r\n 	<li>Knee popping</li>\r\n 	<li>Knee replacement pain</li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li>Ligament laxity</li>\r\n 	<li>Ligament sprain</li>\r\n 	<li>Ligament tear</li>\r\n 	<li>Medial Collateral Ligament (MCL) injury</li>\r\n 	<li>Meniscus tear</li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li>Patellofemoral syndrome</li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li>Runners knee</li>\r\n 	<li>Tendinosis</li>\r\n</ul>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-revision-v1','','','2019-10-21 08:56:59','2019-10-21 08:56:59','',533,'https://www.drfields.com/uncategorized/533-revision-v1/',0,'revision','',0),(2963,8,'2019-10-21 08:57:16','2019-10-21 08:57:16','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Prolotherapy Hip Injury\'\"]\r\n<strong>Chris - Hip</strong></div>\r\n<h4>Prolotherapy Hip and Groin Injury Treatment</h4>\r\nHip and groin injuries can quickly become debilitating and escalate into athletic career ending injuries. MRI and arthroscopic surgery are routinely recommended for patients. Other patients may spend months or longer on pain medication, while undergoing rounds of physical therapy. <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment offers a successful alternative to pain medication and surgery, for hip and groin injuries. OrthoRegen offers comprehensive treatment for your hip injuries and groin pain without pain medication, surgery or extended time away from the sport you love.\r\n<h4>Who Is Prolotherapy Hip Treatment For?</h4>\r\nOur patients include Olympic hopefuls to weekend warriors. Dr. Peter Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an Ironman Triathlete. He understands the concerns of injured athletes, hoping to return quickly to their chosen sport. His clinical experience has shown that Prolotherapy hip treatment is the preferred way to treat hip injuries and groin pain for optimal long term results. We can get you back into your sport without surgery, without medication, and without extended time away from your sport.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment are:</strong>\r\n<ul>\r\n 	<li>Acetabular labrum tear</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Femoroacetabular impingement</li>\r\n 	<li>Groin pain</li>\r\n 	<li>Hip instability</li>\r\n 	<li>Hip impingement</li>\r\n 	<li>Hip pain</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Post pelvic fusion pain</li>\r\n 	<li>Post-surgical hip pain</li>\r\n 	<li>Pubic symphysis injury</li>\r\n 	<li>Pubis pain</li>\r\n 	<li>Pupalgia</li>\r\n 	<li>Snapping hip syndrome</li>\r\n 	<li>Torn Labrum</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy hip treatment, as well as PRP Prolotherapy and Stem Cell Prolotherapy. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+[phone_raw]\">[phone]</a>\r\n','Hip Injury Treatment','','inherit','closed','closed','','528-revision-v1','','','2019-10-21 08:57:16','2019-10-21 08:57:16','',528,'https://www.drfields.com/uncategorized/528-revision-v1/',0,'revision','',0),(2964,8,'2019-10-21 08:57:28','2019-10-21 08:57:28','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Jennifer - Elbow</strong></div>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. It is usually the ligaments and tendons that are injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n\r\n<strong>Ligament Injuries in the Elbow</strong>\r\n\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. In tennis elbow it is the <strong>extensor tendons</strong> which move the wrist up, that can be damaged. In golfer’s elbow it is the <strong>flexor tendons</strong>, that move the wrist down, that get injured. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n\r\n<strong>The Most Common Elbow Injuries </strong>\r\n\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? Are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Elbow Pain','','inherit','closed','closed','','524-revision-v1','','','2019-10-21 08:57:28','2019-10-21 08:57:28','',524,'https://www.drfields.com/uncategorized/524-revision-v1/',0,'revision','',0),(2969,8,'2019-10-22 06:42:04','2019-10-22 06:42:04','<strong>Do Overuse Injuries Have You Sidelined?</strong>\n\nOveruse Injuries are painful joint conditions that can occur in any joint of the body. Repetitive strain from repeat motion and overuse which may transpire in sports or particular jobs and activities can lead to these injuries.  Injuries, such as Runner’s Knee, Rotator Cuff Tendonitis, and Tennis Elbow are examples of overuse injuries, which are progressive activity-related injuries linked to repetitive stress that is placed on the tendon, ligament or other joint structure. Individuals with overuse injuries may try to manage their pain on their own for a while. They may attempt to stabilize the knee, shoulder or elbow with a brace, or calm the pain with over-the-counter medications, or even rest the joint a bit in order to find enough relief to be able to play in the next game, continue to work, or participate in their upcoming event.\n\n&nbsp;\n\n<strong>Common Causes of Overuse Injuries</strong>\n\nDoing too much of the same activity strains the tendons, ligaments, and other soft tissue structures. Training error and improper technique may add to the possibility of an overuse injury. Using poor or improper form during training exercises, while running on uneven ground, when swinging a tennis racket, or even with painting walls, can overload the muscles, tendons, and ligaments, and cause an overuse injury. In cases of Runners Knee, for example, the repeated stress from the force of hitting hard surfaces while contracting the leg muscle when running, again and again, results in a weakening of the tendon and ligaments. In overuse injuries, many may think their tendon or ligaments are just inflamed, and although the injury may begin with inflammation, when left untreated, this overuse injury overloads the tendon and ligaments, resulting in degeneration or even in a tear. Many cases of overuse injuries become chronic with instances of recurrence.\n\n&nbsp;\n\n<strong>Symptoms of Overuse Injuries</strong>\n\nIn the beginning, pain and tenderness are noted in the affected area after physical activity. As the problem progresses, the pain and discomfort occur during activity. Of course, symptoms vary with the various joints and from person to person, but as the condition advances, swelling and pain will restrict the ability to perform sports or particular activities. Eventually, the pain and symptoms will persist, even at rest.\n\n&nbsp;\n\n<strong>Treating Overuse Injuries</strong>\n\nChasing and suppressing symptoms with bracing and pain medications may keep the swelling down and provide momentary pain relief, but a knee sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. The debilitating pain, however, will keep the individual and athlete searching for a cure.  Is surgery the answer? Surgery prolongs the athlete’s return to sport.<a href=\"#_edn1\" name=\"_ednref1\"><sup>[i]</sup></a>  Fortunately, there are non-surgical options! Here’s what doctors in New York say about the overuse injury patellar tendonitis, “Due to its common refractory response (difficulty in treating) to conservative treatment, a variety of new treatments have emerged recently that include...<strong>Prolotherapy</strong>, <strong>platelet-rich plasma therapy (PRP)</strong><strong>,</strong> arthroscopic surgical procedures, surgical resection of the inferior patellar pole (cutting away tendon tissue at the kneecap)…”<a href=\"#_edn2\" name=\"_ednref2\"><sup>[ii]</sup></a>\n\n&nbsp;\n\nAt OrthoRegen, the regenerative treatments we use for painful joint conditions include Platelet Rich Plasma and Prolotherapy. But the researchers listed surgery too! Why do surgery if PRP is good enough? And is it good enough to effectively treat overuse conditions? Studies done in Europe demonstrate the effectiveness of Platelet Rich Plasma for those with overuse conditions of the knee, and its ability to improve pain symptoms and functionality, saying, “The most important finding in our meta-analysis is that PRP injections are statistically better than the control group at longer term follow-up suggesting that PRP is an effective and worthwhile treatment for Patellar Tendinopathy. <a href=\"#_edn3\" name=\"_ednref3\">[iii]</a><sup>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup> A 2018 study agreed that multiple PRP injections offer the most satisfactory results.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a> Athletes are looking to non-surgical therapies such as Stem Cell Treatments, Platelet Rich Plasma or Prolotherapy treatments, because they are showing improved outcomes in those with tendon and ligament conditions like Runner’s Knee.<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\n\n<strong>Treating Overuse Injuries with Regenerative Orthopedics</strong>\n\nAt OrthoRegen, using regenerative therapies like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy is what we do. By treating overuse injuries with Regenerative Orthopedics, athletes can get back to their sport, and individuals can return to the activities they love. We see substantial, consistent improvements in pain outcomes when treating those with overuse injuries.  <strong>Regenerative Orthopedics can treat various joint disorders including problems of the tendons, because the</strong><strong> injections directed at the weakened tendons and involved ligaments</strong> stimulate a string of healing events, which include an increase of blood supply, an influx of reparative cells, and the deposition of collagen cells. When the collagen matures, it will strengthen and tighten the damaged tendons and ligaments.\n\n&nbsp;\n\n<strong>Why would we treat the ligaments too? </strong>The ongoing and recurring joint pain in overuse conditions is rooted in joint instability. Patients with overuse injuries often have concurrent weakness in the ligaments of the joint. These ligaments play a huge role in stabilizing the joint, and when weak, will put more strain on the tendon and other joint structures. The problem of weak ligaments needs to be addressed in treatment. Therefore, we treat the joint comprehensively, and make sure we treat any injured and weakened ligaments as well, in order to achieve the best results. Comprehensive treatment will result in repair and healing of the entire joint, tightening of the ligaments, and strengthening and repair of the tendons, so the joint and all of its structures function normally, and the athletes and individuals who were sidelined by overuse injuries can return confidently and pain-free to the sport and activities they love.\n\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Cook J L, Khan KM, Harcourt PR, <em>et al. </em><a href=\"http://bjsm.bmj.com/content/31/4/332.short\">A cross sectional study of 100 athletes with jumper’s knee managed conservatively and surgically.</a> The Victorian Institute of Sport Tendon Study Group. Br J Sports Med1997; 31: 332 – 336.\n\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Christian RA, Rossy WH, Sherman OH. Patellar tendinopathy – recent developments toward treatment. Bull Hosp Jt Dis (2013). 2014;72(3):217-24.\n\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Kaux JF, Bruyere O, Croisier JL, Forthomme B, Le Goff C, Crielaard JM. One-year follow-up of platelet-rich plasma infiltration to treat chronic proximal patellar tendinopathies. Acta Orthop Belg. 2015 Jun;81(2):251-6.\n\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Dupley L, Charalambous CP. Platelet-Rich Plasma Injections as a Treatment for Refractory Patellar Tendinosis: A Meta-Analysis of Randomised Trials. Knee surgery &amp; related research. 2017 Sep;29(3):165.\n\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.\n\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Kopka M, Bradley JP. The Use of Biologic Agents in Athletes with Knee Injuries. J Knee Surg. 2016 Jul;29(5):379-86. doi: 10.1055/s-0036-1584194. Epub 2016 May 20.','Does Jumper\'s Knee Have You Sidelined?','','inherit','closed','closed','','2912-autosave-v1','','','2019-10-22 06:42:04','2019-10-22 06:42:04','',2912,'https://www.drfields.com/uncategorized/2912-autosave-v1/',0,'revision','',0),(2970,8,'2019-10-22 06:43:00','2019-10-22 06:43:00','Overuse Injuries are painful joint conditions that can occur in any joint of the body. Repetitive strain from repeat motion and overuse which may transpire in sports or particular jobs and activities can lead to these injuries.  Injuries, such as Runner’s Knee, Rotator Cuff Tendonitis, and Tennis Elbow are examples of overuse injuries, which are progressive activity-related injuries linked to repetitive stress that is placed on the tendon, ligament or other joint structure. Individuals with overuse injuries may try to manage their pain on their own for a while. They may attempt to stabilize the knee, shoulder or elbow with a brace, or calm the pain with over-the-counter medications, or even rest the joint a bit in order to find enough relief to be able to play in the next game, continue to work, or participate in their upcoming event.\r\n<h2>Common Causes of Overuse Injuries</h2>\r\nDoing too much of the same activity strains the tendons, ligaments, and other soft tissue structures. Training error and improper technique may add to the possibility of an overuse injury. Using poor or improper form during training exercises, while running on uneven ground, when swinging a tennis racket, or even with painting walls, can overload the muscles, tendons, and ligaments, and cause an overuse injury. In cases of Runners Knee, for example, the repeated stress from the force of hitting hard surfaces while contracting the leg muscle when running, again and again, results in a weakening of the tendon and ligaments. In overuse injuries, many may think their tendon or ligaments are just inflamed, and although the injury may begin with inflammation, when left untreated, this overuse injury overloads the tendon and ligaments, resulting in degeneration or even in a tear. Many cases of overuse injuries become chronic with instances of recurrence.\r\n<h2>Symptoms of Overuse Injuries</h2>\r\nIn the beginning, pain and tenderness are noted in the affected area after physical activity. As the problem progresses, the pain and discomfort occur during activity. Of course, symptoms vary with the various joints and from person to person, but as the condition advances, swelling and pain will restrict the ability to perform sports or particular activities. Eventually, the pain and symptoms will persist, even at rest.\r\n<h2>Treating Overuse Injuries</h2>\r\nChasing and suppressing symptoms with bracing and pain medications may keep the swelling down and provide momentary pain relief, but a knee sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. The debilitating pain, however, will keep the individual and athlete searching for a cure.  Is surgery the answer? Surgery prolongs the athlete’s return to sport.<a href=\"#_edn1\" name=\"_ednref1\"><sup>[i]</sup></a>  Fortunately, there are non-surgical options! Here’s what doctors in New York say about the overuse injury patellar tendonitis, “Due to its common refractory response (difficulty in treating) to conservative treatment, a variety of new treatments have emerged recently that include...<strong>Prolotherapy</strong>, <strong>platelet-rich plasma therapy (PRP)</strong><strong>,</strong> arthroscopic surgical procedures, surgical resection of the inferior patellar pole (cutting away tendon tissue at the kneecap)…”<a href=\"#_edn2\" name=\"_ednref2\"><sup>[ii]</sup></a>\r\n\r\nAt OrthoRegen, the regenerative treatments we use for painful joint conditions include Platelet Rich Plasma and Prolotherapy. But the researchers listed surgery too! Why do surgery if PRP is good enough? And is it good enough to effectively treat overuse conditions? Studies done in Europe demonstrate the effectiveness of Platelet Rich Plasma for those with overuse conditions of the knee, and its ability to improve pain symptoms and functionality, saying, “The most important finding in our meta-analysis is that PRP injections are statistically better than the control group at longer term follow-up suggesting that PRP is an effective and worthwhile treatment for Patellar Tendinopathy. <a href=\"#_edn3\" name=\"_ednref3\">[iii]</a><sup>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup> A 2018 study agreed that multiple PRP injections offer the most satisfactory results.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a> Athletes are looking to non-surgical therapies such as Stem Cell Treatments, Platelet Rich Plasma or Prolotherapy treatments, because they are showing improved outcomes in those with tendon and ligament conditions like Runner’s Knee.<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n<h2>Treating Overuse Injuries with Regenerative Orthopedics</h2>\r\nAt OrthoRegen, using regenerative therapies like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy is what we do. By treating overuse injuries with Regenerative Orthopedics, athletes can get back to their sport, and individuals can return to the activities they love. We see substantial, consistent improvements in pain outcomes when treating those with overuse injuries.  <strong>Regenerative Orthopedics can treat various joint disorders including problems of the tendons, because the</strong><strong> injections directed at the weakened tendons and involved ligaments</strong> stimulate a string of healing events, which include an increase of blood supply, an influx of reparative cells, and the deposition of collagen cells. When the collagen matures, it will strengthen and tighten the damaged tendons and ligaments.\r\n\r\n<strong>Why would we treat the ligaments too? </strong>The ongoing and recurring joint pain in overuse conditions is rooted in joint instability. Patients with overuse injuries often have concurrent weakness in the ligaments of the joint. These ligaments play a huge role in stabilizing the joint, and when weak, will put more strain on the tendon and other joint structures. The problem of weak ligaments needs to be addressed in treatment. Therefore, we treat the joint comprehensively, and make sure we treat any injured and weakened ligaments as well, in order to achieve the best results. Comprehensive treatment will result in repair and healing of the entire joint, tightening of the ligaments, and strengthening and repair of the tendons, so the joint and all of its structures function normally, and the athletes and individuals who were sidelined by overuse injuries can return confidently and pain-free to the sport and activities they love.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Cook J L, Khan KM, Harcourt PR, <em>et al. </em><a href=\"http://bjsm.bmj.com/content/31/4/332.short\" target=\"_blank\" rel=\"noopener noreferrer\">A cross sectional study of 100 athletes with jumper’s knee managed conservatively and surgically.</a> The Victorian Institute of Sport Tendon Study Group. Br J Sports Med1997; 31: 332 – 336.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Christian RA, Rossy WH, Sherman OH. Patellar tendinopathy – recent developments toward treatment. Bull Hosp Jt Dis (2013). 2014;72(3):217-24.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Kaux JF, Bruyere O, Croisier JL, Forthomme B, Le Goff C, Crielaard JM. One-year follow-up of platelet-rich plasma infiltration to treat chronic proximal patellar tendinopathies. Acta Orthop Belg. 2015 Jun;81(2):251-6.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Dupley L, Charalambous CP. Platelet-Rich Plasma Injections as a Treatment for Refractory Patellar Tendinosis: A Meta-Analysis of Randomised Trials. Knee surgery &amp; related research. 2017 Sep;29(3):165.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Kopka M, Bradley JP. The Use of Biologic Agents in Athletes with Knee Injuries. J Knee Surg. 2016 Jul;29(5):379-86. doi: 10.1055/s-0036-1584194. Epub 2016 May 20.','Do Overuse Injuries Have You Sidelined?','','inherit','closed','closed','','2912-revision-v1','','','2019-10-22 06:43:00','2019-10-22 06:43:00','',2912,'https://www.drfields.com/uncategorized/2912-revision-v1/',0,'revision','',0),(2971,8,'2019-10-22 06:44:31','2019-10-22 06:44:31','We have made reference to cortisone and steroid injections in several previous articles regarding treatment options for joint pain, because cortisone is generally recommended by conventional medicine. The treatment may only result in temporary relief, and is frequently used to delay the eventual joint replacement. But did you know this commonly used treatment option may not be as safe as you think? Recently released evidence in the medical journal “Radiology,” describes the negative risks of using cortisone injections. <a href=\"#_edn1\" name=\"_ednref1\">[i]</a>Although prior studies have been conducted showing cortisone to have a negative impact on joints, this most recent article helps to bring awareness to the adverse effects cortisone injections have on the joint.\n<h2>What Happens When Cortisone Is Injected Into the Joint?</h2>\nCortisone appears to be toxic to cartilage. When cortisone is injected into the joint it actually boosts the progression of the destruction of cartilage and therefore accelerates arthritis. Oftentimes, cortisone is injected into joints for relief of arthritis pain and the symptoms associated with it. It would seem contrary then, to use a “treatment” that makes arthritis worse, in an effort to treat it! Right? Cortisone destroys cartilage, boosts cell death in the joint, and increases bone loss.\n<h2>Behind the Use of Cortisone Injections</h2>\nArthritis is a very common disease of the joint that limits activity and quality of life, and often results in disability. In an effort to treat arthritis, physicians initially approach pain and symptom control in a non-surgical fashion, generally attempting to delay the eventual joint replacement. Additionally, older or sicker patients may not be able to tolerate surgery, and in those cases, more conservative treatments are needed and recommended. Cortisone injections may provide some patients with days of relief, while others may get months of pain and symptom control with cortisone injections into the joint. For this reason it is a commonly performed treatment, as it reduces the inflammation and swelling of arthritis.\n\nPhysicians have known there were risks involved in the use of cortisone injections into joints! Even though the study mentioned in this article is a new study, there have been many previous studies demonstrating the risks and the damage cortisone does to the joint structures. That is why, when your physician discusses cortisone injection with you, it is recommended that the injections not be given more than once every three months. Hopefully, the reason behind the limits is explained as well, since it is important for the patient to be educated on the risks of treatment with cortisone injections.\n<h2>Cortisone Injections May Do More Harm than Good</h2>\nThe researchers in this most recent study looked at the effect of cortisone injected into knees and hips, and found that the cortisone boosted the progression of arthritis and <strong>accelerated the need for joint replacement surgery.</strong> The researchers looked at 459 patients who received one to three cortisone injections into the hip or knee in 2018. Almost a tenth of these developed complications such as cartilage loss, stress fractures, bone loss, and joint destruction in the two to fifteen months following the injections. The authors note that this percentage may be an understatement because half of the participants did not receive follow-up imaging tests to assess the health of their joints.\n\n<strong>In summary, the studies are showing that cortisone injections accelerate arthritis and can be detrimental in the long-run</strong>. But even with this knowledge, cortisone injections continue to be recommended frequently for joint pain. Millions of Americans suffer from arthritis and its symptoms of pain, swelling, cartilage loss, and bone destruction. Sufferers want relief, and the injections often give relief. They are also covered by insurance.\n\nGiven that cortisone injections are being given more and more to treat pain in patients with joint arthritis, what is the alternative, especially since many sufferers are at the point where they need relief to just live day to day.\n\nThat’s where Regenerative Orthopedics comes in!  <strong>Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to actually repair the arthritic joint.</strong> These treatments provide pain relief, but they don’t do so at the expense of the joint. They actually heal the joint, strengthen the structures of the joints, and even boost growth of cartilage. Regenerative Orthopedics <strong>regenerates the joint</strong> rather than causing degeneration like what occurs with cortisone injections.\n\nThere is also minimal downtime needed to receive these regenerative treatments, so you can continue to exercise, and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility and strengthen muscles around the joints.\n\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire, while returning function to your painful arthritic joint, and helping you to once again enjoy the activities you desire to do.\n<h1><a href=\"#_ednref1\" name=\"_edn1\"><strong>[i]</strong></a> Kompel AJ, Roemer FW, Murakami AM, Dias LE, Crema MD, Guermazi A.  Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology. Oct 15 2019. <a href=\"https://doi.org/10.1148/radiol.2019190341\">https://doi.org/10.1148/radiol.2019190341</a></h1>\n&nbsp;','Cortisone (Steroid) Injections May Not Be As Safe As You Think','','inherit','closed','closed','','2915-autosave-v1','','','2019-10-22 06:44:31','2019-10-22 06:44:31','',2915,'https://www.drfields.com/uncategorized/2915-autosave-v1/',0,'revision','',0),(2972,8,'2019-10-22 06:44:46','2019-10-22 06:44:46','We have made reference to cortisone and steroid injections in several previous articles regarding treatment options for joint pain, because cortisone is generally recommended by conventional medicine. The treatment may only result in temporary relief, and is frequently used to delay the eventual joint replacement. But did you know this commonly used treatment option may not be as safe as you think? Recently released evidence in the medical journal “Radiology,” describes the negative risks of using cortisone injections. <a href=\"#_edn1\" name=\"_ednref1\">[i]</a>Although prior studies have been conducted showing cortisone to have a negative impact on joints, this most recent article helps to bring awareness to the adverse effects cortisone injections have on the joint.\r\n<h2>What Happens When Cortisone Is Injected Into the Joint?</h2>\r\nCortisone appears to be toxic to cartilage. When cortisone is injected into the joint it actually boosts the progression of the destruction of cartilage and therefore accelerates arthritis. Oftentimes, cortisone is injected into joints for relief of arthritis pain and the symptoms associated with it. It would seem contrary then, to use a “treatment” that makes arthritis worse, in an effort to treat it! Right? Cortisone destroys cartilage, boosts cell death in the joint, and increases bone loss.\r\n<h2>Behind the Use of Cortisone Injections</h2>\r\nArthritis is a very common disease of the joint that limits activity and quality of life, and often results in disability. In an effort to treat arthritis, physicians initially approach pain and symptom control in a non-surgical fashion, generally attempting to delay the eventual joint replacement. Additionally, older or sicker patients may not be able to tolerate surgery, and in those cases, more conservative treatments are needed and recommended. Cortisone injections may provide some patients with days of relief, while others may get months of pain and symptom control with cortisone injections into the joint. For this reason it is a commonly performed treatment, as it reduces the inflammation and swelling of arthritis.\r\n\r\nPhysicians have known there were risks involved in the use of cortisone injections into joints! Even though the study mentioned in this article is a new study, there have been many previous studies demonstrating the risks and the damage cortisone does to the joint structures. That is why, when your physician discusses cortisone injection with you, it is recommended that the injections not be given more than once every three months. Hopefully, the reason behind the limits is explained as well, since it is important for the patient to be educated on the risks of treatment with cortisone injections.\r\n<h2>Cortisone Injections May Do More Harm than Good</h2>\r\nThe researchers in this most recent study looked at the effect of cortisone injected into knees and hips, and found that the cortisone boosted the progression of arthritis and <strong>accelerated the need for joint replacement surgery.</strong> The researchers looked at 459 patients who received one to three cortisone injections into the hip or knee in 2018. Almost a tenth of these developed complications such as cartilage loss, stress fractures, bone loss, and joint destruction in the two to fifteen months following the injections. The authors note that this percentage may be an understatement because half of the participants did not receive follow-up imaging tests to assess the health of their joints.\r\n\r\n<strong>In summary, the studies are showing that cortisone injections accelerate arthritis and can be detrimental in the long-run</strong>. But even with this knowledge, cortisone injections continue to be recommended frequently for joint pain. Millions of Americans suffer from arthritis and its symptoms of pain, swelling, cartilage loss, and bone destruction. Sufferers want relief, and the injections often give relief. They are also covered by insurance.\r\n\r\nGiven that cortisone injections are being given more and more to treat pain in patients with joint arthritis, what is the alternative, especially since many sufferers are at the point where they need relief to just live day to day.\r\n\r\nThat’s where Regenerative Orthopedics comes in!  <strong>Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to actually repair the arthritic joint.</strong> These treatments provide pain relief, but they don’t do so at the expense of the joint. They actually heal the joint, strengthen the structures of the joints, and even boost growth of cartilage. Regenerative Orthopedics <strong>regenerates the joint</strong> rather than causing degeneration like what occurs with cortisone injections.\r\n\r\nThere is also minimal downtime needed to receive these regenerative treatments, so you can continue to exercise, and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility and strengthen muscles around the joints.\r\n\r\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire, while returning function to your painful arthritic joint, and helping you to once again enjoy the activities you desire to do.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\"><strong>[i]</strong></a> Kompel AJ, Roemer FW, Murakami AM, Dias LE, Crema MD, Guermazi A.  Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology. Oct 15 2019. <a href=\"https://doi.org/10.1148/radiol.2019190341\" target=\"_blank\" rel=\"noopener noreferrer\">https://doi.org/10.1148/radiol.2019190341</a>\r\n\r\n&nbsp;','Cortisone (Steroid) Injections May Not Be As Safe As You Think','','inherit','closed','closed','','2915-revision-v1','','','2019-10-22 06:44:46','2019-10-22 06:44:46','',2915,'https://www.drfields.com/uncategorized/2915-revision-v1/',0,'revision','',0),(2973,8,'2019-10-22 06:54:42','2019-10-22 06:54:42','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Do Overuse Injuries Have You Sidelined?</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/does-jumpers-knee-have-you-sidelined/\">Does Jumper\'s Knee Have You Sidelined?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-injections-may-not-be-as-safe-as-you-think/\">Cortisone Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-10-22 06:54:42','2019-10-22 06:54:42','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2974,8,'2019-10-22 06:56:17','2019-10-22 06:56:17','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Do Overuse Injuries Have You Sidelined?</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-10-22 06:56:17','2019-10-22 06:56:17','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(2975,8,'2019-10-23 21:09:18','2019-10-23 21:09:18','','iwp_log_5db0c17ecb547','','publish','closed','closed','','iwp_log_5db0c17ecb547','','','2019-10-23 21:09:18','2019-10-23 21:09:18','',0,'https://www.drfields.com/uncategorized/iwp_log_5db0c17ecb547/',0,'iwp_log','',0),(3061,8,'2019-10-30 03:48:04','2019-10-30 03:48:04','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think//\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-10-30 03:48:04','2019-10-30 03:48:04','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3062,8,'2019-10-30 03:49:05','2019-10-30 03:49:05','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-10-30 03:49:05','2019-10-30 03:49:05','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3063,8,'2019-10-31 09:54:50','0000-00-00 00:00:00','','','','draft','closed','closed','','','','','2019-10-31 09:54:50','2019-10-31 09:54:50','',0,'https://www.drfields.com/?page_id=3063',0,'page','',0),(3134,8,'2019-11-01 05:32:28','2019-11-01 05:32:28','<h2>Why Regenerative Orthopedics Is the Ideal Sports Medicine</h2>\r\nWe see athletes of all ages in our clinic all of the time. It doesn’t matter if you are 15 or 95. Because if you love sports or enjoy an active lifestyle, you don’t want to have to stop because of an injury. And Regenerative Orthopedics is the ideal sports medicine to get you back in the game!\r\n\r\nSports injuries from ligament tears, meniscus injuries, tendon injuries, wear and tear, and other soft tissue injuries are common reasons people seek care. In fact, over 90% of athletic injuries involve stretched, torn or weakened soft tissue of some sort. Sports injuries, whether of the ankle, knee, shoulder, hip, or back occur when the repetitive strain of the athletic activity is too much for a particular ligament, tendon, or muscle to perform.\r\n\r\n[caption id=\"attachment_3792\" align=\"alignleft\" width=\"395\"]<img class=\" wp-image-3792\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/joint-injury.do-what-you-love-Copy-2-1-500x500.png\" alt=\"Joint Injury.do What You Love Copy 2 (1)\" width=\"395\" height=\"395\" /> <strong>Keep Doing What You Love</strong>[/caption]\r\n<h2>How Do Injuries Occur to the Meniscus, Tendons, and Other Soft Tissue?</h2>\r\nInjury to these soft tissue structures can transpire from a sudden traumatic injury or as a result of accumulative damage over the years. Many are considered an acute exacerbation of a chronic injury. Whether you run 3, 6, 10 miles or even a marathon, ride your bike, participate in martial arts, lift weights, play golf or tennis, the repetitive impact from athletic events can be enough to damage the various soft tissue structures.\r\n\r\nOver time the joint degenerates as these non-healed soft tissue injuries destabilize the joint. And Regenerative Orthopedics is an ideal sports medicine because it is extremely effective at healing and repairing these soft tissue injuries.\r\n<h2>Why Use Regenerative Orthopedics as the Ideal Sports Medicine?</h2>\r\nDoesn’t the body just heal on its own? Unfortunately, not all of these structures heal well on their own. Soft tissue structures like the cartilage, discs, labrum, ligaments, menisci and tendons are whiter in nature. That means they have a poor blood supply.\r\n\r\nBlood is what nourishes the joint. And therefore, the blood poor structures have a compromised healing ability after injury. These structures aren’t like muscles. You’ve probably noticed when you pull a muscle, or sustain a muscle injury, that in time, it will get better. Why is that? The muscles are red. That means they have a good blood supply and repair more easily. Regenerative Orthopedics helps the body to get more blood to these blood poor structures so they can heal more efficiently.\r\n<h2>The Role of the Ligaments</h2>\r\nIn order for the joint to function like it should, all of the joint structures, including the white tissue structures, the muscles and the bony structures need to be well. They all work together to stabilize the joint and keep it working optimally. But the ligaments are the primary stabilizing structures.\r\n\r\nLigaments are key at maintaining joint health. Unfortunately, ligament injuries are one of the most common causes of pain from sport-related injuries. And they are white tissue structures. Plus, injured ligaments generate pain. They are a sensory organ with free nerve endings. The weakness that occurs after ligament injury to the knee, for example, may give rise to Runner’s knee, meniscal tears, chondromalacia patella, bone spurs and eventually to arthritis.\r\n\r\nWhen the ligament is injured, the harmony between the soft tissue, muscles and bony structures is disrupted. This interferes with mobility and joint stability. What results is an unstable joint, one that moves abnormally, and functions poorly. That results in more and more damage. When the ligaments are left untreated, the body will try to stabilize the joint by causing ongoing muscle spasms, and joint swelling. And eventually, bone spurs will form and arthritis will develop. A cycle of persistent pain is the result.\r\n<h3>Injury and the Path to Arthritis</h3>\r\nInvolvement in athletics provides us with physical, emotional and mental well-being. However, when we’re faced with injury, we often set into motion the cycle of instability in the joint as mentioned above. This cycle also leads to the eventual development of arthritis. The path to arthritis can occur within a few years with severe injuries, or take decades to develop when the injury is less severe.\r\n\r\n<span lang=\"en\">Although progressive cartilage loss with its inhibition of joint motion plays a central role in arthritis, injury to other soft tissue structures actually initiates the change in equilibrium that leads to this breakdown of cartilage and the path to arthritis. </span>Athletes of all ages desire to be as fit as when in the prime of their athletic careers. But the pain and symptoms from non-healed sports injuries interferes with that dream!\r\n\r\nRegenerative Orthopedics is the ideal sports medicine because in gets the athlete back on the path of healing and to reaching their goals and dreams.\r\n<h2>Treatment for Sports Injuries</h2>\r\nStandard treatments for sports injuries usually only involve the management of symptoms. Some of these treatments include pain medications, cortisone/steroid injections, physical therapy, massage and other therapies to provide pain relief. These treatments may work to relieve pain temporarily or momentarily reduce the pain and inflammation.\r\n\r\nBut when the athlete turns off the pain signal with medication use, while the joint is still injured, and continues to play and remain active on an injured joint, further damage ensues. It is important to realize that these treatment modalities do not repair soft tissue injuries, such as tendon, ligament, and meniscus tears, nor do they regenerate cartilage.\r\n<h3>Regenerative Orthopedics Is the Ideal Sports Medicine to Stimulate the Body to Repair</h3>\r\nThe key to keeping joints strong is to stimulate the area to heal. Regenerative Orthopedics does just that. And it offers hope to those suffering from sports injuries. They are the ideal treatment for sports injuries because they get you back to doing what you love.\r\n\r\nPlus, these therapies are non-surgical. <em><strong>The treatments regenerate and repair the damaged ligaments and soft tissues. And they allow the athlete to continue with their desired activity</strong></em>. Non-surgical regenerative therapies, including Stem Cell Therapy, PRP, and Prolotherapy, stimulate the natural regenerative processes in and around the joint. And they facilitate the restoration of the degenerated soft tissue to a healthy state. The result is improved joint support and function, and reduced pain and symptoms.\r\n\r\nRegenerative Orthopedics involves the injection of natural solutions. And sometimes, depending on the nature of injury or degeneration, will also include injections of an autologous preparation, from a person’s own plasma (blood), fat or bone marrow, injected directly into the damaged joint to accelerate the healing process.\r\n<h2>Sports injuries do not need to put an end to the enjoyment of sports activities. There is an effective option for repair!</h2>\r\nRegenerative Orthopedics <span lang=\"en\">is a great non-surgical treatment ideal for</span> offering not only pain relief from sports injuries, but healing and reparation at the source of the injury. This regeneration and repair enables the athlete of all ages to speedily return to the sport or activity they love with minimal lifestyle interruption.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Regenerative Orthopedics: The Ideal Sports Medicine','','publish','open','closed','','why-regenerative-orthopedics-are-the-ideal-sports-medicine','','','2020-08-25 03:01:52','2020-08-25 03:01:52','',0,'https://www.drfields.com/?p=3134',0,'post','',0),(3135,8,'2019-11-01 05:32:28','2019-11-01 05:32:28','<h2>Why Regenerative Orthopedics Are the Ideal Sports Medicine</h2>\r\nWe see athletes of all ages in our clinic all of the time. It doesn’t matter if you are 15 or 95, because if you love sports or enjoy an active lifestyle, you don’t want to have to stop because of an injury. Sports injuries from ligament tears, meniscus injuries, tendon injuries, wear and tear, and other soft tissue injuries are common reasons people seek care. In fact, over 90% of athletic injuries involve stretched, torn or weakened soft tissue of some sort. Sports injuries, whether of the ankle, knee, shoulder, hip, or back occur when the repetitive strain of the athletic activity is too much for a particular ligament, tendon, or muscle to perform.\r\n<h2>How Do Injuries Occur to the Meniscus, Tendons, and Other Soft Tissue?</h2>\r\nInjury to these soft tissue structures can transpire from a sudden traumatic injury or as a result of accumulative damage over the years. Many are considered an acute exacerbation of a chronic injury. Whether you run 3, 6, 10 miles or even a marathon, ride your bike, participate in martial arts, lift weights, play golf or tennis, the repetitive impact from athletic events can be enough to damage the various soft tissue structures. Over time the joint degenerates as these non-healed soft tissue injuries destabilize the joint.\r\n<h2>What Do We Mean by Non-Healed Soft Tissue?</h2>\r\nDoesn’t the body just heal on its own? Unfortunately, not all of these structures heal well on their own. Soft tissue structures like the cartilage, discs, labrum, ligaments, menisci and tendons are whiter in nature, which means they have a poor blood supply. Blood is what nourishes the joint, and therefore, the blood poor structures have a compromised healing ability after injury. These structures aren’t like muscles. You’ve probably noticed when you pull a muscle, or sustain a muscle injury, that in time, it will get better. Why is that? The muscles are red, which means they have a good blood supply and repair more easily.\r\n<h2>The Role of the Ligaments</h2>\r\nIn order for the joint to function like it should, all of the joint structures, including the white tissue structures, the muscles and the bony structures need to be well. They all work together to stabilize the joint and keep it working optimally, but the ligaments are the primary stabilizing structures. Ligaments are key at maintaining joint health. Unfortunately, ligament injuries are one of the most common causes of pain from sport-related injuries. And they are white tissue structures. Plus, injured ligaments generate pain, because they are a sensory organ, with free nerve endings. The weakness that occurs after ligament injury to the knee, for example, may give rise to Runner’s knee, meniscal tears, chondromalacia patella, bone spurs and eventually to arthritis. When the ligament is injured, the harmony between the soft tissue, muscles and bony structures is disrupted, interfering with mobility and joint stability. What results is an unstable joint, one that moves abnormally, functions poorly, and becomes more and more damaged. When the ligaments are left untreated, the body will try to stabilize the joint by causing ongoing muscle spasms, joint swelling and eventually bone spur formation and degenerative arthritis...a cycle of persistent pain.\r\n\r\nInvolvement in athletics provides us with physical, emotional and mental well-being. However, when we’re faced with injury, we often set into motion the cycle of instability in the joint as mentioned above. This cycle also leads to the eventual development of arthritis, which can occur within a few years with severe injuries, or take decades to develop when the injury is less severe. <span lang=\"en\">Although progressive cartilage loss with its inhibition of joint motion plays a central role in arthritis, injury to other soft tissue structures actually initiates the change in equilibrium that leads to this breakdown of cartilage and the path to arthritis. </span>Athletes of all ages desire to be as fit as when in the prime of their athletic careers. But the pain and symptoms from non-healed sports injuries interferes with that dream!\r\n<h2>Treatment for Sports Injuries</h2>\r\nStandard treatments for sports injuries usually only involve the management of symptoms, which may include pain medications, cortisone/steroid injections, physical therapy, massage and other therapies to provide pain relief. These treatments may work to relieve pain temporarily or momentarily reduce the pain and inflammation. But when the athlete turns off the pain signal with medication use, while the joint is still injured, and continues to play and remain active on an injured joint, further damage ensues. It is important to realize that these treatment modalities do not repair soft tissue injuries, such as tendon, ligament, and meniscus tears, nor do they regenerate cartilage.\r\n\r\nThe key to keeping joints strong is to stimulate the area to heal. Regenerative Orthopedics does just that, offering hope to those suffering from sports injuries. They are the ideal treatment for sports injuries because they get you back to doing what you love. Plus, these therapies are non-surgical. The treatments regenerate and repair the damaged ligaments and soft tissue, allowing the athlete to continue with their desired activity. Non-surgical regenerative therapies, including Stem Cell Therapy, PRP, and Prolotherapy, stimulate the natural regenerative processes in and around the joint and facilitate the restoration of the degenerated soft tissue to a healthy state, improving joint support and function, and reducing pain and symptoms.\r\n\r\nRegenerative Orthopedics involves the injection of natural solutions, and sometimes, depending on the nature of injury or degeneration, will also include injections of an autologous preparation, from a person’s own plasma (blood), fat or bone marrow, injected directly into the damaged joint to accelerate the healing process.\r\n<h2>Sports injuries do not need to put an end to the enjoyment of sports activities. There is an effective option for repair!</h2>\r\nRegenerative Orthopedics <span lang=\"en\">is a great non-surgical treatment ideal for</span> offering not only pain relief from sports injuries, but healing and reparation at the source of the injury. This regeneration and repair enables the athlete of all ages to speedily return to the sport or activity they love with minimal lifestyle interruption.','Why Regenerative Orthopedics Are the Ideal Sports Medicine','','inherit','closed','closed','','3134-revision-v1','','','2019-11-01 05:32:28','2019-11-01 05:32:28','',3134,'https://www.drfields.com/uncategorized/3134-revision-v1/',0,'revision','',0),(3136,8,'2019-11-01 05:44:23','2019-11-01 05:44:23','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-01 05:44:23','2019-11-01 05:44:23','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3137,8,'2019-11-01 05:46:32','2019-11-01 05:46:32','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n        <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-01 05:46:32','2019-11-01 05:46:32','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3188,8,'2019-11-01 18:08:00','2019-11-01 18:08:00','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div id=\"search-articles\">\r\n    <div class=\"container\">\r\n        <div class=\"col-md-12\">\r\n            <h1 class=\"text-center\">Search <b>Dr. Fields&rsquo;</b> Articles</h1>\r\n            <form id=\"searchform\" method=\"get\" action=\"<?php echo home_url(\'/\'); ?>\">\r\n                <input type=\"text\" class=\"search-field\" name=\"s\" placeholder=\"Search Dr. Fields\' Articles\" value=\"<?php the_search_query(); ?>\">\r\n                <input type=\"submit\" value=\"Search\">\r\n            </form>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-01 18:08:00','2019-11-01 18:08:00','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3189,8,'2019-11-01 18:26:46','2019-11-01 18:26:46','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div id=\"search-articles\">\r\n    <div class=\"container\">\r\n        <div class=\"col-md-12\">\r\n            <h1 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h1>\r\n            <form id=\"searchform\" method=\"get\" action=\"<?php echo home_url(\'/\'); ?>\">\r\n                <input type=\"text\" class=\"search-field\" name=\"s\" placeholder=\"Search Dr. Fields\\\' Articles\" value=\"<?php the_search_query(); ?>\">\r\n                <input type=\"submit\" value=\"Search\">\r\n            </form>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-01 18:26:46','2019-11-01 18:26:46','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3190,8,'2019-11-01 18:27:32','2019-11-01 18:27:32','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div id=\"search-articles\">\r\n    <div class=\"container\">\r\n        <div class=\"col-md-12\">\r\n            <h1 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h1>\r\n            <form id=\"searchform\" method=\"get\" action=\"<?php echo home_url(\'/\'); ?>\">\r\n                <input type=\"text\" class=\"search-field\" name=\"s\" placeholder=\"Search Dr. Fields\' Articles\" value=\"<?php the_search_query(); ?>\">\r\n                <input type=\"submit\" value=\"Search\">\r\n            </form>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-01 18:27:32','2019-11-01 18:27:32','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3191,8,'2019-11-01 18:33:26','2019-11-01 18:33:26','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div id=\"search-articles\">\r\n    <div class=\"container\">\r\n        <div class=\"col-md-12\">\r\n            <h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n            <form id=\"searchform\" method=\"get\" action=\"<?php echo home_url(\'/\'); ?>\">\r\n                <input type=\"text\" class=\"search-field\" name=\"s\" placeholder=\"Search Dr. Fields\' Articles\" value=\"<?php the_search_query(); ?>\">\r\n                <input type=\"submit\" value=\"Search\">\r\n            </form>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-01 18:33:26','2019-11-01 18:33:26','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3192,8,'2019-11-01 19:41:57','2019-11-01 19:41:57','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div id=\"search-articles\">\r\n    <div class=\"container\">\r\n        <div class=\"col-md-12\">\r\n            <h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n            <form id=\"searchform\" method=\"get\" action=\"/\">\r\n                <input type=\"text\" class=\"search-field\" name=\"s\" placeholder=\"Search Dr. Fields\' Articles\">\r\n                <input type=\"submit\" value=\"Search\">\r\n            </form>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-01 19:41:57','2019-11-01 19:41:57','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3193,8,'2019-11-04 05:01:53','2019-11-04 05:01:53','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\" title=\"Read More\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Get Help Now!\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Let\'s Get Started Today!\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div id=\"search-articles\">\r\n    <div class=\"container\">\r\n        <div class=\"col-md-12\">\r\n            <h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n            <form id=\"searchform\" method=\"get\" action=\"/\">\r\n                <input type=\"text\" class=\"search-field\" name=\"s\" placeholder=\"Search Dr. Fields\' Articles\">\r\n                <input type=\"submit\" value=\"Search\">\r\n            </form>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-04 05:01:53','2019-11-04 05:01:53','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3194,8,'2019-11-04 05:10:55','2019-11-04 05:10:55','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\" title=\"Read More\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Let\'s Get Started Today!\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Get Help Now!\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Let\'s Get Started Today!\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div id=\"search-articles\">\r\n    <div class=\"container\">\r\n        <div class=\"col-md-12\">\r\n            <h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n            <form id=\"searchform\" method=\"get\" action=\"/\">\r\n                <input type=\"text\" class=\"search-field\" name=\"s\" placeholder=\"Search Dr. Fields\' Articles\">\r\n                <input type=\"submit\" value=\"Search\">\r\n            </form>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-04 05:10:55','2019-11-04 05:10:55','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3195,8,'2019-11-04 05:14:03','2019-11-04 05:14:03','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\" title=\"Read More\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Let\'s Get Started Today!\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Get Help Now!\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Let\'s Get Started Today!\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\" title=\"Why Regenerative Orthopedics Are the Ideal Sports Medicine\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\" title=\"Do Overuse Injuries Have You Sidelined?\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\" title=\"Cortisone (Steroid) Injections May Not Be As Safe As You Think\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\" title=\"New Stem Cell Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\" title=\"Snapping Hip Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\" title=\"Runner\'s Knee Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\" title=\"Meniscus and Labral Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div id=\"search-articles\">\r\n    <div class=\"container\">\r\n        <div class=\"col-md-12\">\r\n            <h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n            <form id=\"searchform\" method=\"get\" action=\"/\">\r\n                <input type=\"text\" class=\"search-field\" name=\"s\" placeholder=\"Search Dr. Fields\' Articles\">\r\n                <input type=\"submit\" value=\"Search\">\r\n            </form>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-04 05:14:03','2019-11-04 05:14:03','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3196,8,'2019-11-04 05:24:29','2019-11-04 05:24:29','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\" title=\"Read More\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Let\'s Get Started Today!\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Get Help Now!\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Let\'s Get Started Today!\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\" title=\"Why Regenerative Orthopedics Are the Ideal Sports Medicine\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\" title=\"Do Overuse Injuries Have You Sidelined?\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\" title=\"Cortisone (Steroid) Injections May Not Be As Safe As You Think\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\" title=\"New Stem Cell Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\" title=\"Snapping Hip Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\" title=\"Runner\'s Knee Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\" title=\"Meniscus and Labral Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" title=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" title=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\" title=\"Dr. Fields Lectured in Mexico City\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div id=\"search-articles\">\r\n    <div class=\"container\">\r\n        <div class=\"col-md-12\">\r\n            <h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n            <form id=\"searchform\" method=\"get\" action=\"/\">\r\n                <input type=\"text\" class=\"search-field\" name=\"s\" placeholder=\"Search Dr. Fields\' Articles\">\r\n                <input type=\"submit\" value=\"Search\">\r\n            </form>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\" title=\"Read More About U\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\" title=\"Are you a good candidate?\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-04 05:24:29','2019-11-04 05:24:29','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3197,8,'2019-11-04 05:42:12','2019-11-04 05:42:12','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\" title=\"Read More\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Let\'s Get Started Today!\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Get Help Now!\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Let\'s Get Started Today!\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\" title=\"Why Regenerative Orthopedics Are the Ideal Sports Medicine\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\" title=\"Do Overuse Injuries Have You Sidelined?\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\" title=\"Cortisone (Steroid) Injections May Not Be As Safe As You Think\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\" title=\"New Stem Cell Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\" title=\"Snapping Hip Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\" title=\"Runner\'s Knee Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\" title=\"Meniscus and Labral Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" title=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" title=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\" title=\"Dr. Fields Lectured in Mexico City\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div id=\"search-articles\">\r\n    <div class=\"container\">\r\n        <div class=\"col-md-12\">\r\n            <h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n            <form id=\"searchform\" method=\"get\" action=\"/\">\r\n                <input type=\"text\" class=\"search-field\" name=\"s\" placeholder=\"Search Dr. Fields\' Articles\">\r\n                <input type=\"submit\" value=\"Search\">\r\n            </form>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\" title=\"Read More About U\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\" title=\"Are you a good candidate?\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\" title=\"Read More\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" title=\"Read More\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-04 05:42:12','2019-11-04 05:42:12','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3198,8,'2019-11-04 06:02:50','2019-11-04 06:02:50','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</span>\r\n<a class=\"btn-more\" href=\"/articles/regenerative-orthopedics/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\" title=\"Read More\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Let\'s Get Started Today!\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Get Help Now!\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" href=\"Contact-Us\" title=\"Let\'s Get Started Today!\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\" title=\"Why Regenerative Orthopedics Are the Ideal Sports Medicine\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\" title=\"Do Overuse Injuries Have You Sidelined?\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\" title=\"Cortisone (Steroid) Injections May Not Be As Safe As You Think\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\" title=\"New Stem Cell Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Snapping-Hip-Syndrome\" title=\"Snapping Hip Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\" title=\"Runner\'s Knee Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\" title=\"Meniscus and Labral Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" title=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" title=\"\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\" title=\"Dr. Fields Lectured in Mexico City\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div id=\"search-articles\">\r\n    <div class=\"container\">\r\n        <div class=\"col-md-12\">\r\n            <h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n            <form id=\"searchform\" method=\"get\" action=\"/\">\r\n                <input type=\"text\" class=\"search-field\" name=\"s\" placeholder=\"What\'s Your Condition?\">\r\n                <input type=\"submit\" value=\"Search\">\r\n            </form>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" href=\"Our-Office/Our-Philosophy\" title=\"Read More About U\">Read More About Us</a>\r\n<a id=\"candidateButton\" href=\"/contact/\" title=\"Are you a good candidate?\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/dr-fields-bio/\" title=\"Read More\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" title=\"Read More\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-04 06:02:50','2019-11-04 06:02:50','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3199,8,'2019-11-08 04:07:09','2019-11-08 04:07:09','[caption id=\"attachment_4007\" align=\"alignleft\" width=\"439\"]<img class=\" wp-image-4007\" src=\"https://www.drfields.com/wp-content/uploads/2020/08/Foot-pain-copy-1-500x500.jpg\" alt=\"The Shoes We Wear\" width=\"439\" height=\"439\" /> Do you wear pointy, closed-toed shoes?[/caption]\r\n\r\nPersistent foot and toe pain affects an incredibly large part of our population. And it\'s no wonder. We spend hours on our feet every day, working, playing, and engaging in everyday activities. Some of us pound our feet running marathons, while others try to reach that goal of 10,000 steps a day. Each of those steps generates a force on the foot.\r\n\r\nAdd to that, activities like jumping and running, and the force we place on our feet increases that much more. During an average day, the feet support a combined force equivalent to several hundred tons. It is not surprising, then, that the majority of us experience foot pain at some point in our lives.\r\n<h2>Factors That Cultivate Problems of Foot Pain</h2>\r\nWe can compound our problems of foot pain by our choices of footwear. Improper foot mechanics with walking, running and intense training can cause problems with our feet too. Various physical conditions such as high arches, fallen arches, degenerative arthritis, bony abnormalities, flat-footedness, inflammatory joint diseases and excess weight also predispose us to foot pain.\r\n\r\n&nbsp;\r\n<h2>More about the Foot</h2>\r\nThe foot, if we include the toes and ankle, contains 26 bones. That\'s a lot of bones. Plus, all of those bones make up 33 joints supported by more than 100 muscles, tendons and ligaments. Any of these structures can become weakened or injured. And that means a whole lot of different structures can get injured. Those injuries destabilize the foot, because they cause insufficient ligament and tendon support for proper motion in the joints. The result is foot pain due to the joints of the foot becoming weak, lax, and unstable.\r\n<h2>What Happens When the Foot Joints Become Unstable?</h2>\r\nInstability in any joint typically begins with an injury to the ligaments and tendons that support the joint. Because the joint is no longer held in place by healthy ligaments and tendons, abnormal joint motion develops. This abnormality in the movement of the joint results in a greater amount of pressure being exerted on the different parts of the joint.\r\n\r\nAll of the structures of the joint can become damaged. Even the cartilage. When cartilage degenerates, the joint will crunch and grind. As time passes, the body reacts to this instability by contracting the muscles in the area. You will experience that as muscle spasms.\r\n\r\nEventually, these tense muscles fatigue and lose their strength. Then the ligaments and tendons will try even harder to stabilize the joints. But they will become damaged further. That is the cycle of abnormal joint motion. And it results in degeneration of the joint. The body responds to the failure of these various soft tissue structures by increasing bone mass in an attempt to stabilize the joint. In other words, arthritis will develop. And arthritis is a frequent diagnosis related to foot pain.\r\n<h2>Some Common Foot and Toe Conditions</h2>\r\nInstability of the joints of the foot can also result in a number of toe and forefoot conditions. These include Morton’s Neuroma, bunions (hallux valgus), and a stiff, degenerated, big toe called hallus rigidis.  The origin of these conditions can be traced back to an original ligament injury or weakness.\r\n<h3><em>Morton’s Neuroma</em></h3>\r\nMorton’s Neuroma refers to a fibrous tissue formation around nerve tissue in the spaces between the toes. It results in symptoms like sharp pains, burning sensations, and paresthesias (abnormal sensations).\r\n\r\nThis condition is not traditionally thought of as being an instability problem. However, injury to ligaments of the foot can cause excessive motion between the bones of the toes, causing irritation of the bursa or a nerve, and can result in a significant enlargement of the nerve. This enlargement can cause further trauma and worsening of the symptoms. And they can be quite severe.\r\n\r\nMorton’s Neuroma most often affects women who frequently wear pointed, high-heeled and close-toed shoes, the mechanics of which transfer body weight to the toes, placing undo force on the toes and their ligaments.\r\n<h3><em>Bunions</em></h3>\r\nBunions are another widespread, persistent foot complaint, also commonly seen in women. This growth in boney tissue occurs mainly on the medial side of the foot, producing the characteristic bump or bunion. Joint instability here causes the bones of the toes to move in an abnormal fashion. This shift leads to the formation of the boney projection on the medial side of the toe in an attempt to stabilize joint motion.\r\n<h3><em>Stiff Big Toe or Hallux Rigidus</em></h3>\r\nHallux rigidus is a disorder of the joint at the base of the big toe, which causes pain and stiffness in the toe. Over time, the toe becomes increasingly more difficult to bend.\r\n\r\nHallux refers to the big toe. And rigidus means the toe is rigid. The condition is caused by degenerating cartilage in the metatarsophalangeal (MTP) joint of the big toe. Eventually, it will lead to the formation of bone spurs around the joint—a last ditch effort of the body to stabilize the joint.\r\n\r\nThe underlying condition of both bunions and hallux rigidus is instability that causes arthritis of the MTP joint.\r\n\r\nAbnormal joint shifts are what precipitate the pathological bone growth associated with bunions, reducing movement in both flexion and extension, and leading to hallux rigidus and to a potentially frozen joint.\r\n<h2>Treatment for Foot and Toe Pain</h2>\r\nStandard treatment for foot pain is generally conservative, beginning with choosing properly fitting shoes. NSAIDs are often prescribed, along with physical therapy. When foot and toe pain continue, surgery is frequently considered. In fact, surgery on the first metatarsophalangeal joint is one of the most common surgery performed.\r\n\r\n[caption id=\"attachment_4008\" align=\"alignright\" width=\"358\"]<img class=\" wp-image-4008\" src=\"https://www.drfields.com/wp-content/uploads/2020/08/Penny.-foot-500x500.jpg\" alt=\"Penny. Foot\" width=\"358\" height=\"358\" /> Regenerative Orthopedics instead of Surgery for foot and toe pain![/caption]\r\n<h3>Regenerative Orthopedics for Foot and Toe Pain</h3>\r\nDespite the commonality of these treatments, a large percentage of people continue to suffer with foot and toe pain. An effective alternative treatment for reduction and elimination of this pain is Regenerative Orthopedics, because it addresses the underlying cause of the problem, the joint instability caused by ligament and tendon injury.\r\n\r\nBy strengthening ligaments and tendons, Regenerative Orthopedics can stop the pathologic cascade causing these persistent foot conditions, stabilizing the joint and bringing pain relief.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Persistent Foot Pain and Toe Pain','','publish','open','closed','','persistent-foot-and-toe-pain','','','2020-08-25 00:17:57','2020-08-25 00:17:57','',0,'https://www.drfields.com/?p=3199',0,'post','',0),(3200,8,'2019-11-08 04:07:09','2019-11-08 04:07:09','Persistent foot and toe pain affects an incredibly large part of our population. We spend hours on our feet every day, working, playing, and engaging in everyday activities. Some may be pounding their feet running marathons, while others try to reach that goal of 10,000 steps a day. Each of those steps generates a force on the foot. Add to that, activities like jumping and running, and the force placed on the foot increases that much more. During an average day, the feet support a combined force equivalent to several hundred tons. It is not surprising, then, that the majority of us experience foot pain at some point in our lives.\r\n<h2>Factors That Cultivate Problems of Foot Pain</h2>\r\nWe can compound our problems of foot pain by our choices of footwear. Improper foot mechanics with walking, running and intense training can cause problems with our feet too. Various physical conditions such as high arches, fallen arches, degenerative arthritis, bony abnormalities, flat-footedness, inflammatory joint diseases and excess weight also predispose us to foot pain.\r\n<h2>More about the Foot</h2>\r\nThe foot, if we include the toes and ankle, contains 26 bones. All of those bones make up 33 joints supported by more than 100 muscles, tendons and ligaments. Any of these structures can become weakened or injured, which will then destabilize the foot, due to insufficient ligament and tendon support for proper motion in those joints. The result is foot pain due to the joints of the foot becoming weak, lax, and unstable.\r\n<h2>What Happens When the Foot Joints Become Unstable</h2>\r\nInstability in any joint typically begins with an injury to the ligaments and tendons which support the joint. Because the joint is no longer held in place by healthy ligaments and tendons, abnormal joint motion develops. This abnormality in the movement of the joint results in a greater amount of pressure being exerted on the different parts of the joint. All of the structures of the joint can become damaged, including the cartilage. When cartilage degenerates, there will be a crunching and grinding in the joint. With time, the body reacts to this instability by contracting the muscles in the area. You’ll experience that as muscle spasms. Eventually these tense muscles will fatigue and lose their strength. Then the ligaments and tendons will try even harder to stabilize the joints, but they will become damaged further. That is the cycle of abnormal joint motion will degenerate the joint. The body responds to the failure of these various soft tissue structures by increasing bone mass in an attempt to stabilize the joint. One result is arthritis, a frequent diagnosis related to foot pain.\r\n<h2>Some Common Foot  and Toe Conditions</h2>\r\nInstability of the joints of the foot can also result in a number of forefoot conditions. These include Morton’s Neuroma, bunions (hallux valgus), and a stiff, degenerated, big toe called hallus rigidis.  The origin of these conditions can be traced back to an original ligament injury or weakness.\r\n<h3><em>Morton’s Neuroma</em></h3>\r\nMorton’s Neuroma refers to a fibrous tissue formation around nerve tissue in the spaces between the toes and results in symptoms that include sharp pains, burning sensations, and paresthesias (abnormal sensations). This condition is not traditionally thought of as being an instability problem. However, injury to ligaments of the foot can cause excessive motion between the bones of the toes, causing irritation of the bursa or a nerve, and can result in a significant enlargement of the nerve. This enlargement can cause further trauma and worsening of the symptoms, which can be quite severe. Morton’s Neuroma most often affects women who frequently wear pointed, high-heeled and close-toed shoes, the mechanics of which transfer body weight to the toes, placing undo force on the toes and their ligaments.\r\n<h3><em>Bunions</em></h3>\r\nBunions are another widespread, persistent foot complaint, also commonly seen in women. This growth in boney tissue occurs mainly on the medial side of the foot, producing the characteristic bump or bunion. Joint instability here causes the bones of the toes to move in an abnormal fashion with this shift leading to the formation of this boney projection on the medial side of the toe in an attempt to stabilize joint motion.\r\n<h3><em>Stiff Big Toe or Hallux Rigidus</em></h3>\r\nHallux rigidus is a disorder of the joint at the base of the big toe, which causes pain and stiffness in the toe. Over time, the toe becomes increasingly more difficult to bend. Hallux refers to the big toe, and rigidus means the toe is rigid. The condition is caused by degenerating cartilage in the metatarsophalangeal (MTP) joint of the big toe, which will eventually lead to the formation of bone spurs that form around the joint—a last ditch effort of the body to recover joint stability and stabilize the joint. The underlying condition of both bunions and hallux rigidus is instability that causes arthritis of the MTP joint.\r\n\r\nAbnormal joint shifts are what precipitate the pathological bone growth associated with bunions, reducing movement in both flexion and extension, and leading to hallux rigidus and to a potentially frozen joint.\r\n<h2>Treatment for Foot Pain</h2>\r\nStandard treatment for foot pain is generally conservative, beginning with choosing properly fitting shoes. NSAIDs are often prescribed along with physical therapy. When foot and toe pain continue, surgery is frequently considered. In fact, surgery on the first metatarsophalangeal joint is amongst the most common surgery performed.\r\n\r\nDespite the commonality of these treatments, a large percentage of people continue to suffer with foot and toe pain. An effective alternative treatment for reduction and elimination of this pain is Regenerative Orthopedics, because it addresses the underlying cause of the problem, the joint instability caused by ligament and tendon injury. By strengthening ligaments and tendons, Regenerative Orthopedics can stop the pathologic cascade causing these persistent foot conditions, stabilizing the joint and bringing pain relief.','Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics','','inherit','closed','closed','','3199-revision-v1','','','2019-11-08 04:07:09','2019-11-08 04:07:09','',3199,'https://www.drfields.com/uncategorized/3199-revision-v1/',0,'revision','',0),(3201,8,'2019-11-08 04:12:22','2019-11-08 04:12:22','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Why Regenerative Orthopedics Are the Ideal Sports Medicine\" href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a title=\"Do Overuse Injuries Have You Sidelined?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a title=\"Cortisone (Steroid) Injections May Not Be As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a title=\"New Stem Cell Testimonials\" href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a title=\"Snapping Hip Syndrome\" href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a title=\"Runner\'s Knee Pain\" href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Meniscus and Labral Tears\" href=\"https://www.drfields.com/Articles/Prolo-News/Meniscus-and-Labral-Tears\">Meniscus and Labral Tears</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-08 04:12:22','2019-11-08 04:12:22','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3202,8,'2019-11-08 04:15:35','2019-11-08 04:15:35','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li class=\"last\"><a title=\"Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</a></li> \r\n 	<li><a title=\"Why Regenerative Orthopedics Are the Ideal Sports Medicine\" href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a title=\"Do Overuse Injuries Have You Sidelined?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a title=\"Cortisone (Steroid) Injections May Not Be As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a title=\"New Stem Cell Testimonials\" href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a title=\"Snapping Hip Syndrome\" href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	<li class=\"last\"><a title=\"Runner\'s Knee Pain\" href=\"https://www.drfields.com/Articles/Prolo-News/Runners-Knee-Pain\">Runner\'s Knee Pain</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-08 04:15:35','2019-11-08 04:15:35','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3297,8,'2019-11-14 04:46:30','2019-11-14 04:46:30','<b>Do you experience elbow pain?</b> You are not alone, especially if you perform repetitive tasks involving your arms and hands like doing carpentry, secretarial work, or computer work. You may even be a  pianist, guitarist, tennis player, or do any other skill or activity that requires repeated activities day after day.\r\n\r\n<iframe class=\"alignright\" src=\"https://www.youtube.com/embed/RJCzx6yt0zY\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nIt\'s not surprising, really, that doing the same thing day in and day out could cause a structure to break down. Think about how you feel after spending a day working in the yard, or joining a new workout at the gym. Or even doing some other activity you’re not accustomed to.\r\n\r\nWe pretty much expect to have some amount of muscle soreness with exercise. That is normal. During exercise, muscle cells are temporarily “injured,” as part of a normal process to multiply muscle cells.\r\n\r\nUnfortunately though, the same isn’t true with ligaments and tendons. They also break down from repetitive use, but they don’t have a very good capacity to heal well on their own. Muscles repair pretty well on their own, because they have an adequate blood supply, but ligaments and tendons do not.\r\n<h2>Elbow Pain May be the Result of Ligament or Tendon Injuries</h2>\r\nMovement and exercise are necessary for health of all of the joint structures and to keep the body strong and healthy. But repetitive motion, day in and day out, can result in wear and tear.\r\n\r\nHow do you know when soreness is a problem? When soreness occurs after activity, keep in mind that normal soreness after exercise should not last more than a few hours. When soreness lasts longer, you are probably exercising too much or need to take more breaks. Muscle injuries generally heal with rest. When pain persists even after rest, the cause is oftentimes a ligament injury.\r\n<h3><em>Elbow Ligaments</em></h3>\r\nThe ligaments of the elbow provide stability to the elbow. They attach bone to bone, and different ligaments support various functions of the elbow, stabilizing the elbow as it goes through movements.\r\n\r\nFor instance, the radial collateral ligament of the elbow prevents the elbow from hyperextending. Other ligaments keep the arm bones from rotating too much.  When these ligaments are weakened or damaged, they become unable to protect the elbow from excessive and unnatural movement. And that places stress on all of the structures of the elbow.\r\n<h3><em>The Role of Tendons</em></h3>\r\nPain from repetitive motion may also result in a tendon injury. While ligaments attach bone to bone, stabilizing them, the tendons connect muscle to bone, and along with the muscles, enable the bones to move. Those with tendon injuries usually feel pain during activity. But ligament injuries may also be painful even while at rest.\r\n<h3>Structures Causing Elbow Pain Need Treatment for Proper Repair</h3>\r\nA very high percentage of persistent elbow pain involves a ligament injury. But many physicians only diagnose the problem as a tendon injury. Tennis Elbow, for example, is a commonly diagnosed tendon injury that often involves a ligament injury too.  It is important to treat all of the involved structures in order to fix the problem and get rid of the pain.\r\n\r\nA ligament injury can lead to a tendon injury, or injury to another structure of the elbow joint. So it is very important to treat the underlying source of injury and pain. Otherwise, the repaired tendon is likely to become reinjured because the joint will remain unstable due to the underlying ligament injury.\r\n<h2>Elbow Pain Treatments</h2>\r\nCortisone or steroid injections are a common treatment option for tendon injuries. But as we have discussed in previous articles, cortisone will actually weaken the tendons and the ligaments.\r\n\r\nElbow injuries, whether due to ligament injuries, tendon injuries, or both, are better repaired using Regenerative Orthopedic treatment options. They strengthen and regenerate the structures rather than weakening and degenerating them.  Yes, cortisone may provide some temporary pain control. But in the long-run, it will have a damaging effect on the joint and will actually boost the arthritic process.<strong> </strong>\r\n\r\nRegenerative Orthopedics for unresolved elbow pain decrease pain and stiffness, and restore quality of life.  The pain alleviating aspects of Regenerative Orthopedics are well documented.\r\n<h3>What Does Research Show?</h3>\r\nStudies demonstrate its effectiveness at significantly improving pain levels while also increasing grip strength and improving function, because it actually heals the tendons and ligaments.\r\n<ul>\r\n 	<li>In the <em>Clinical Journal of Sports Medicine</em>, doctors found that patients who received Prolotherapy, a Regenerative Orthopedic option, showed significant improvement in pain levels compared with patients given saline injection. Plus, their extension strength and grip strength were markedly improved.[i]</li>\r\n 	<li>Published research of patients with elbow pain due to Tennis Elbow treated with Prolotherapy shows a decrease in pain from a level of 6.79 to a level of 2.95, which is statistically significance.[ii]</li>\r\n 	<li>In another study, research demonstrates a significant reduction in elbow pain from Tennis Elbow in patients who received Prolotherapy, along with evidence of tendon healing observed via ultrasound imaging.[iii]</li>\r\n</ul>\r\nRegenerative Orthopedics works by stimulating the normal healing process of the body by the injection of natural healing solutions into the pain generating trigger points of the elbow. The result is strengthened ligaments and tendons, a stabilized elbow, and an end to elbow pain.\r\n\r\n[i] Scarpone M, Rabago DP, Zgierska A, Arbogast G, Snell E. The efficacy of prolotherapy for lateral epicondylosis: a pilot study. Clin J Sport Med. 2008;18(3):248–54.\r\n\r\n[ii] Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow. J Korean Acad Rehabil Med. 2002;26:764–8.\r\n\r\n[iii] Park JH, Song IS, Lee JB, et al. Ultrasonographic findings of healing of torn tendon in the patients with lateral epicondylitis after prolotherapy. J Korean Soc Med Ultrasound. 2003;22(3):177–83.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Persistent Elbow Pain','','publish','open','closed','','persistent-elbow-pain','','','2020-08-24 22:04:34','2020-08-24 22:04:34','',0,'https://www.drfields.com/?p=3297',0,'post','',0),(3298,8,'2019-11-14 04:46:30','2019-11-14 04:46:30','People who experience elbow pain are typically those who perform repetitive tasks involving their arms and hands. These tasks may include activities and professions like carpentry, secretarial work, computer work, pianists, guitarists, tennis players, and many other skills that require repeated activities day after day. It’s not surprising, really, that doing the same thing day in and day out could cause a structure to break down. Think about how you feel after spending a day working in the yard, or joining a new work out at the gym, or doing some other activity you’re not accustomed to. We pretty much expect to have some amount of muscle soreness. That is normal. During exercise, muscle cells are temporarily “injured,” as part of a normal process to multiply muscle cells. Unfortunately though, the same isn’t true with ligaments and tendons. They also break down from repetitive use, but they don’t have a very good capacity to heal well on their own. Muscles repair pretty well on their own, because they have an adequate blood supply, but ligaments and tendons do not.\r\n<h2>Elbow Pain May be the Result of Ligament or Tendon Injuries</h2>\r\nMovement and exercise are necessary for health of all of the joint structures and to keep the body strong and healthy. But repetitive motion, day in and day out, can result in wear and tear. How do you know when soreness is a problem? When soreness occurs after activity, keep in mind that normal soreness after exercise should not last more than a few hours. When soreness lasts longer, you are probably exercising too much or need to take more breaks. Muscle injuries generally heal with rest. When pain persists even after rest, the cause is oftentimes a ligament injury.\r\n<h3><em>Elbow Ligaments</em></h3>\r\nThe ligaments of the elbow provide stability to the elbow. They attach bone to bone, and different ligaments support various functions of the elbow, stabilizing the elbow as it goes through movements. For instance, the radial collateral ligament of the elbow prevents the elbow from hyperextending. Other ligaments keep the arm bones from rotating too much.  When these ligaments are weakened or damaged, they become unable to protect the elbow from excessive and unnatural movement, placing stress on all of the structures of the elbow.\r\n<h3><em>The Role of Tendons</em></h3>\r\nPain from repetitive motion may also result in a tendon injury. While ligaments attach bone to bone, stabilizing them, the tendons connect muscle to bone, and along with the muscles, enable the bones to move. Those with tendon injuries usually feel pain during activity, but ligament injuries may also be painful even while at rest.\r\n<h2>All Involved Structures Need Treatment for Proper Repair</h2>\r\nA very high percentage of persistent elbow pain involves a ligament injury, but many physicians only diagnose the problem as a tendon injury. Tennis Elbow, for example, is a commonly diagnosed tendon injury that often has a concurrent ligament injury.  It is important to treat all of the involved structures in order to fix the problem and get rid of the pain. A ligament injury can lead to a tendon injury, or injury to another structure of the elbow joint, so it is very important to treat the underlying source of injury and pain. Otherwise, the repaired tendon is likely to become reinjured because the joint will remain unstable due to the underlying ligament injury.\r\n<h2>Elbow Pain Treatments</h2>\r\nCortisone or steroid injections are a common treatment option for tendon injuries, but as we have discussed in previous articles, cortisone will actually weaken the tendons and the ligaments. Elbow injuries, whether due to ligament injuries, tendon injuries, or both, are better repaired using Regenerative Orthopedic treatment options which strengthen and regenerate the structures rather than weakening and degenerating them.  Yes, cortisone may provide some temporary pain control, but in the long-run, will have a damaging effect on the joint and actually boost the arthritic process.<strong> </strong>\r\n\r\nRegenerative Orthopedics for unresolved elbow pain decrease pain and stiffness, and restore quality of life.  The pain alleviating aspects of Regenerative Orthopedics are well documented, with studies demonstrating its effectiveness at significantly improving pain levels while also increasing grip strength and improving function, because it actually heals the tendons and ligaments.\r\n<ul>\r\n 	<li>In the <em>Clinical Journal of Sports Medicine</em>, doctors found that patients who received Prolotherapy, a Regenerative Orthopedic option, showed significant improvement in pain levels compared with patients given saline injection. Plus, their extension strength and grip strength were markedly improved.[i]</li>\r\n 	<li>Published research of patients with elbow pain due to Tennis Elbow treated with Prolotherapy resulted in a decrease in pain from a level of 6.79 to a level of 2.95, which is statistically significance.[ii]</li>\r\n 	<li>In another study, research demonstrated a significant reduction in elbow pain from Tennis Elbow in patients who received Prolotherapy, along with evidence of tendon healing observed via ultrasound imaging.[iii]</li>\r\n</ul>\r\nRegenerative Orthopedics works by stimulating the normal healing process of the body by the injection of natural healing solutions into the pain generating trigger points of the elbow. The result is strengthened ligaments and tendons, a stabilized elbow, and an end to elbow pain.\r\n\r\n[i] Scarpone M, Rabago DP, Zgierska A, Arbogast G, Snell E. The efficacy of prolotherapy for lateral epicondylosis: a pilot study. Clin J Sport Med. 2008;18(3):248–54.\r\n\r\n[ii] Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow. J Korean Acad Rehabil Med. 2002;26:764–8.\r\n\r\n[iii] Park JH, Song IS, Lee JB, et al. Ultrasonographic findings of healing of torn tendon in the patients with lateral epicondylitis after prolotherapy. J Korean Soc Med Ultrasound. 2003;22(3):177–83.','Persistent Elbow Pain','','inherit','closed','closed','','3297-revision-v1','','','2019-11-14 04:46:30','2019-11-14 04:46:30','',3297,'https://www.drfields.com/uncategorized/3297-revision-v1/',0,'revision','',0),(3299,8,'2019-11-14 04:53:59','2019-11-14 04:53:59','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Persistent Elbow Pain</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"/articles/regenerative-orthopedics/persistent-elbow-pain/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n<li class=\"last\"><a title=\"Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</a></li>\r\n 	<li><a title=\"Why Regenerative Orthopedics Are the Ideal Sports Medicine\" href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a title=\"Do Overuse Injuries Have You Sidelined?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a title=\"Cortisone (Steroid) Injections May Not Be As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a title=\"New Stem Cell Testimonials\" href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	<li class=\"last\"><a title=\"Snapping Hip Syndrome\" href=\"https://www.drfields.com/Snapping-Hip-Syndrome\">Snapping Hip Syndrome </a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-14 04:53:59','2019-11-14 04:53:59','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3301,8,'2019-11-21 04:19:50','2019-11-21 04:19:50','<h3>Cervical Instability: Neck Pain and Symptoms That Change Your Life</h3>\r\nWhen neck injuries occur, like after car accidents, sports injuries, or even wear and tear, the sufferer often lives with neck pain and other disabling symptoms. In this article, we are not referring to a catastrophic neck injury, but one that very often may be considered \"minor.\" Yet the sufferer still lives with symptoms that alter their ability to live normally. The cause may very well be cervical instability, a disorder of the neck or cervical spine that can result in a myriad of symptoms.\r\n<h3>The Uniqueness of the Cervical Spine</h3>\r\nThe neck is unique because it consists of vertebrae that are smaller and more mobile than all of the movable vertebrae of the spine. The high degree of mobility in the neck or cervical spine is necessary in order to move the head through all the different ranges of motion we put it through. Blood is also transported through the neck on the way to the brain by means of the vertebral artery. The artery goes up through an opening called the transverse foramina in the vertebrae of the neck.\r\n\r\nWhy are these features important when discussing neck pain, symptoms, and instability? Well first of all, although the mobility of the neck is great and necessary in order to get things done and function like we like to, this same feature makes the neck vulnerable to injury.\r\n<h3>Ligaments are Affected by Neck Injuries Too. And When Injured, Cause Cervical Instability and Pain!</h3>\r\nSecondly, when an injury to the neck occurs, ligaments are affected. The ligaments are structures that are primarily responsible for joining bones. And they are especially vulnerable when trauma occurs. When the neck is stable, it moves and functions normally. And that\'s because it is remaining in proper alignment. Plus, proper alignment and function protects the blood vessels, nerves, and spinal cord. But an injury to the ligaments changes this whole dynamic because it causes the cervical spine to become unstable.\r\n\r\nAn unstable cervical spine cannot provide adequate support to function properly. But why does the instability make a difference? The instability alters the alignment of the neck which creates a cycle of imbalance between the different neck structures. It also causes too much movement of the neighboring vertebrae. And that stresses the ligaments that support the vertebrae. It also puts undue pressure on the nerve endings within those structures. The result is neck pain! A host of other possible symptoms are set into motion as a result of the various blood vessels and nerves running through the neck vertebrae.\r\n<h2><strong>Whiplash Injuries Are Examples of Cervical Instability </strong></h2>\r\n<img class=\"alignright size-medium wp-image-3311\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-1-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" />People who have experienced whiplash, often have symptoms that seem to last and last. <em>These symptoms are frequently a result of the instability of the vertebrae of the neck, or cervical instability.</em>\r\n\r\nWhiplash injuries are a common cause of cervical instability. The head is literally “whipped” in these injuries. The sudden acceleration and deceleration during rear-end collisions is an example of whiplash. During whiplash, a severe flexion is generated followed by an extension of the neck, in a whip-type motion forward and backward.\r\n\r\nThe backward hyperextension is often associated with more injury to the muscles and ligaments because it lacks the limiting effect of the chin meets the chest in the forward “whip.” Excessive motion in hyperextension severely strains the involved muscles and ligaments. This motion also compresses the adjoining vertebrae.\r\n\r\nLet\'s consider a person who is looking in the rearview mirror at the time of the collision. The rotated neck position puts the ligaments in even greater vulnerability for injury. Why? Well, these particular ligaments are those that help in side to side head movements and they are more susceptible when in this position.\r\n\r\nAs the ligaments become weaker, they are unable to provide a stable neck structure.  And that leads to even more injury and an ongoing provocation of the nerve endings. The ongoing provocation alters a part of the nervous system called the sympathetic nervous system (SNS). And then the SNS becomes increasingly activated. The result of an overactive SNS is a myriad of symptoms, including a syndrome of symptoms referred to as Barré-Liéou Syndrome. We\'ll talk about some of the symptoms of cervical instability below.\r\n<h3><strong>What Are the Symptoms of Cervical Instability?</strong></h3>\r\nSymptoms of neck instability or cervical instability include neck pain, muscle spasms, cracking sounds, and numbness in the arms and legs. Also, remember how we discussed the unique anatomical relationship of the vertebral arteries through the transverse foramina?\r\n\r\nInstability of the neck can cause a change in the flow of the arterial blood through the vertebrae when they are moving excessively. The vertebral artery provides circulation to half of the brain. Therefore, the extra mobile vertebrae can pinch off this artery, fostering an insufficiency of blood supply as it travels up to the brain. The condition is called vertebrobasilar insufficiency (VBI). Symptoms of VBI include neck pain, headaches/migraines, dizziness, drop attacks, dizziness, difficulty swallowing and/or speaking, and disturbances in hearing and vision.\r\n<h3><strong>Repair the Neck, And Relieve the Pain of Cervical Instability with Regenerative Orthopedics</strong></h3>\r\n[caption id=\"attachment_3310\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-3310 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" /> <em><strong>       Repair the spine &amp; Relieve Cervical Instability Symptoms</strong></em>[/caption]\r\n\r\nAll of these symptoms can perplex many clinicians. Meanwhile, the sufferer lives with debilitating symptoms. Oftentimes, they go from doctor to doctor, seeking some type of relief from the many and varied symptoms they experience.\r\n\r\nChiropractors do a great job at not only assessing these problems but treating them.  But when Chiropractors are not able to solve the problem or find a complete solution, one must look elsewhere.\r\n\r\nTalk with your chiropractor about Regenerative Orthopedics and what it can do to save your neck from surgery. Many chiropractors know Peter A. Fields, MD, DC, and have heard him lecture, as Dr. Fields is both an MD and a chiropractor.\r\n\r\nRegenerative Orthopedics is actually a great solution to the puzzle of neck pain and cervical instability. Stem Cell Therapy, PRP, and Prolotherapy are types of regenerative therapies that repair the injured ligaments at the core of the problem. Regenerative Orthopedics involves regenerative injection therapies that tighten, repair, and regenerate the ligaments involved in neck instability. The treatments eliminate the unstable movement, associated neck pain, and multiple symptoms.\r\n\r\nRegenerative Orthopedics is a safe non-surgical option that brings stability back to the neck and its structures, which results in increased functional ability. Those who suffer from all of these symptoms as a result of the instability of the neck or cervical spine can finally get relief from this life-altering condition.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Cervical Instability: Neck Pain That Changes Your Life','','publish','open','closed','','cervical-instability','','','2021-03-09 03:03:00','2021-03-09 03:03:00','',0,'https://www.drfields.com/?p=3301',0,'post','',0),(3302,8,'2019-11-21 04:19:50','2019-11-21 04:19:50','When neck injuries occur, like after car accidents, sports injuries, or even wear and tear, the sufferer often lives with disabling symptoms. In this article, we are not referring to a catastrophic neck injury, but one that very often may be considered minor. Yet the sufferer still lives with symptoms that alter their ability to live normally. The reason may very well be instability in the neck and related to the uniqueness of the neck itself.\r\n\r\nThe neck is unique because it consists of vertebrae that are smaller and more mobile than all of the movable vertebrae of the spine. Another name for the neck is the cervical spine. The high degree of mobility in the neck or cervical spine is necessary in order to move the head through all the different ranges of motion we put it through. Blood is also transported through the neck on the way to the brain by means of the vertebral artery, which goes up through an opening called the transverse foramina in the vertebrae of the neck. Why are these features important when discussing neck pain, symptoms, and instability? Well first of all, although the mobility of the neck is great and necessary in order to get things done and function like we like to, this same feature makes us vulnerable to injury.\r\n\r\nSecondly, when an injury to the neck occurs, ligaments are affected. The ligaments are structures that are primarily responsible for joining bones, and they are especially vulnerable when trauma occurs. When the neck is stable, it moves and functions normally, while remaining in proper alignment, which protects the blood vessels, nerves and spinal cord. But injury to the ligaments changes this whole dynamic, because it causes the cervical spine to become unstable. With instability of the cervical spine comes inadequate support when the neck is called upon to function. Neck alignment is changed and a cycle of imbalance is created between the different neck structures. This causes too much movement of the neighboring vertebrae which stresses the ligaments that support them, and puts undue pressure on the nerve endings within those structures. The result is pain! It also sets into motion a host of other possible symptoms that can arise due to the various blood vessels and nerves running through the neck vertebrae.\r\n<h2>Whiplash Injuries Are Examples of Instability of the Neck</h2>\r\nPeople who have experienced whiplash, often have symptoms that seem to last and last. These symptoms are frequently a result of instability of the vertebrae of the neck, or in other words, cervical instability. Whiplash injuries are a common cause of cervical instability. The head is literally “whipped” in these injuries. The sudden acceleration and deceleration during rear end collisions is an example of whiplash, which generates a severe flexion and then an extension of the neck, in a whip-type motion forward and backward. The backward hyperextension is often associated with more injury to the muscles and ligaments, because it lacks the limiting effect of the chin meeting the chest in the forward “whip.” The excessive motion in hyperextension severely strains the involved muscles and ligaments. The motion also compresses the adjoining vertebrae.\r\n\r\nIf the person driving, for example, is looking in the rear view mirror at the time of collision, the rotated neck position puts the ligaments in an even greater vulnerability to injury, because these particular ligaments that help in side to side head movements are more susceptible in this position. As the ligaments become weaker, they are unable to provide a stable neck structure, which leads to even more injury, and an ongoing provocation of the nerve endings. The ongoing provocation alters a part of the nervous system called the sympathetic nervous system which becomes increasingly activated. This can result in a myriad of symptoms, including a syndrome of symptoms referred to as Barré-Liéou Syndrome.\r\n<h2><strong>Symptoms from Instability of the Neck</strong></h2>\r\nSymptoms of neck or cervical instability include neck pain, muscle spasms, cracking sounds, and numbness in the arms and legs. Also, remember how we discussed the unique anatomical relationship of the vertebral arteries through the transverse foramina? Instability of the neck can cause a change in the flow of the arterial blood through the vertebrae when they are moving excessively. This artery provides circulation to half of the brain, so the extra mobile vertebrae can pinch it off, fostering an insufficiency of blood supply as it travels up to the brain. The condition is called vertebrobasilar insufficiency (VBI) with its associated symptoms of neck pain, headaches/migraines, dizziness, drop attacks, dizziness, difficulty swallowing and/or speaking, and disturbances in hearing and vision.\r\n<h2><strong>How Can You Treat Neck Instability?</strong></h2>\r\nAll of these symptoms can perplex many clinicians. Meanwhile, the sufferer lives with debilitating symptoms, oftentimes going from doctor to doctor, seeking some type of relief from the many and varied symptoms they experience. Chiropractors do a great job at not only assessing these problems but treating them.  But when Chiropractors are not able to solve the problem, or find a complete solution, one must look elsewhere.\r\n\r\nRegenerative Orthopedics is actually a great solution to the puzzle of cervical instability, because the regenerative therapies like Prolotherapy, repair the injured ligaments that are at the core of the problem. Regenerative Orthopedics are regenerative injection therapies that tighten, repair, and regenerate the ligaments involved in neck instability, eliminating the unstable movement, associated pain, and multiple symptoms. Regenerative Orthopedics is a safe non-surgical option that brings stability back to the neck and its structures, which results in increased functional ability. Those who suffer from these symptoms as a result of instability of the neck or cervical spine can finally get relief from this life-altering condition.','An Answer for Life Altering Neck Pain and Instability','','inherit','closed','closed','','3301-revision-v1','','','2019-11-21 04:19:50','2019-11-21 04:19:50','',3301,'https://www.drfields.com/uncategorized/3301-revision-v1/',0,'revision','',0),(3303,8,'2019-11-21 04:38:17','2019-11-21 04:38:17','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">An Answer for Life-Altering Neck Pain and Instability</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n       <li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</a></li>\r\n 	<li><a title=\"Why Regenerative Orthopedics Are the Ideal Sports Medicine\" href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a title=\"Do Overuse Injuries Have You Sidelined?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a title=\"Cortisone (Steroid) Injections May Not Be As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a title=\"New Stem Cell Testimonials\" href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-21 04:38:17','2019-11-21 04:38:17','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3304,8,'2019-11-25 22:43:27','2019-11-25 22:43:27','<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/RJCzx6yt0zY\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe> People who experience elbow pain are typically those who perform repetitive tasks involving their arms and hands. These tasks may include activities and professions like carpentry, secretarial work, computer work, pianists, guitarists, tennis players, and many other skills that require repeated activities day after day. It’s not surprising, really, that doing the same thing day in and day out could cause a structure to break down. Think about how you feel after spending a day working in the yard, or joining a new work out at the gym, or doing some other activity you’re not accustomed to. We pretty much expect to have some amount of muscle soreness. That is normal. During exercise, muscle cells are temporarily “injured,” as part of a normal process to multiply muscle cells. Unfortunately though, the same isn’t true with ligaments and tendons. They also break down from repetitive use, but they don’t have a very good capacity to heal well on their own. Muscles repair pretty well on their own, because they have an adequate blood supply, but ligaments and tendons do not.\r\n<h2>Elbow Pain May be the Result of Ligament or Tendon Injuries</h2>\r\nMovement and exercise are necessary for health of all of the joint structures and to keep the body strong and healthy. But repetitive motion, day in and day out, can result in wear and tear. How do you know when soreness is a problem? When soreness occurs after activity, keep in mind that normal soreness after exercise should not last more than a few hours. When soreness lasts longer, you are probably exercising too much or need to take more breaks. Muscle injuries generally heal with rest. When pain persists even after rest, the cause is oftentimes a ligament injury.\r\n<h3><em>Elbow Ligaments</em></h3>\r\nThe ligaments of the elbow provide stability to the elbow. They attach bone to bone, and different ligaments support various functions of the elbow, stabilizing the elbow as it goes through movements. For instance, the radial collateral ligament of the elbow prevents the elbow from hyperextending. Other ligaments keep the arm bones from rotating too much.  When these ligaments are weakened or damaged, they become unable to protect the elbow from excessive and unnatural movement, placing stress on all of the structures of the elbow.\r\n<h3><em>The Role of Tendons</em></h3>\r\nPain from repetitive motion may also result in a tendon injury. While ligaments attach bone to bone, stabilizing them, the tendons connect muscle to bone, and along with the muscles, enable the bones to move. Those with tendon injuries usually feel pain during activity, but ligament injuries may also be painful even while at rest.\r\n<h2>All Involved Structures Need Treatment for Proper Repair</h2>\r\nA very high percentage of persistent elbow pain involves a ligament injury, but many physicians only diagnose the problem as a tendon injury. Tennis Elbow, for example, is a commonly diagnosed tendon injury that often has a concurrent ligament injury.  It is important to treat all of the involved structures in order to fix the problem and get rid of the pain. A ligament injury can lead to a tendon injury, or injury to another structure of the elbow joint, so it is very important to treat the underlying source of injury and pain. Otherwise, the repaired tendon is likely to become reinjured because the joint will remain unstable due to the underlying ligament injury.\r\n<h2>Elbow Pain Treatments</h2>\r\nCortisone or steroid injections are a common treatment option for tendon injuries, but as we have discussed in previous articles, cortisone will actually weaken the tendons and the ligaments. Elbow injuries, whether due to ligament injuries, tendon injuries, or both, are better repaired using Regenerative Orthopedic treatment options which strengthen and regenerate the structures rather than weakening and degenerating them.  Yes, cortisone may provide some temporary pain control, but in the long-run, will have a damaging effect on the joint and actually boost the arthritic process.<strong> </strong>\r\n\r\nRegenerative Orthopedics for unresolved elbow pain decrease pain and stiffness, and restore quality of life.  The pain alleviating aspects of Regenerative Orthopedics are well documented, with studies demonstrating its effectiveness at significantly improving pain levels while also increasing grip strength and improving function, because it actually heals the tendons and ligaments.\r\n<ul>\r\n 	<li>In the <em>Clinical Journal of Sports Medicine</em>, doctors found that patients who received Prolotherapy, a Regenerative Orthopedic option, showed significant improvement in pain levels compared with patients given saline injection. Plus, their extension strength and grip strength were markedly improved.[i]</li>\r\n 	<li>Published research of patients with elbow pain due to Tennis Elbow treated with Prolotherapy resulted in a decrease in pain from a level of 6.79 to a level of 2.95, which is statistically significance.[ii]</li>\r\n 	<li>In another study, research demonstrated a significant reduction in elbow pain from Tennis Elbow in patients who received Prolotherapy, along with evidence of tendon healing observed via ultrasound imaging.[iii]</li>\r\n</ul>\r\nRegenerative Orthopedics works by stimulating the normal healing process of the body by the injection of natural healing solutions into the pain generating trigger points of the elbow. The result is strengthened ligaments and tendons, a stabilized elbow, and an end to elbow pain.\r\n\r\n[i] Scarpone M, Rabago DP, Zgierska A, Arbogast G, Snell E. The efficacy of prolotherapy for lateral epicondylosis: a pilot study. Clin J Sport Med. 2008;18(3):248–54.\r\n\r\n[ii] Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow. J Korean Acad Rehabil Med. 2002;26:764–8.\r\n\r\n[iii] Park JH, Song IS, Lee JB, et al. Ultrasonographic findings of healing of torn tendon in the patients with lateral epicondylitis after prolotherapy. J Korean Soc Med Ultrasound. 2003;22(3):177–83.','Persistent Elbow Pain','','inherit','closed','closed','','3297-revision-v1','','','2019-11-25 22:43:27','2019-11-25 22:43:27','',3297,'https://www.drfields.com/uncategorized/3297-revision-v1/',0,'revision','',0),(3305,8,'2019-11-25 22:43:43','2019-11-25 22:43:43','<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/RJCzx6yt0zY\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" class=\"alignright\" allowfullscreen></iframe> People who experience elbow pain are typically those who perform repetitive tasks involving their arms and hands. These tasks may include activities and professions like carpentry, secretarial work, computer work, pianists, guitarists, tennis players, and many other skills that require repeated activities day after day. It’s not surprising, really, that doing the same thing day in and day out could cause a structure to break down. Think about how you feel after spending a day working in the yard, or joining a new work out at the gym, or doing some other activity you’re not accustomed to. We pretty much expect to have some amount of muscle soreness. That is normal. During exercise, muscle cells are temporarily “injured,” as part of a normal process to multiply muscle cells. Unfortunately though, the same isn’t true with ligaments and tendons. They also break down from repetitive use, but they don’t have a very good capacity to heal well on their own. Muscles repair pretty well on their own, because they have an adequate blood supply, but ligaments and tendons do not.\r\n<h2>Elbow Pain May be the Result of Ligament or Tendon Injuries</h2>\r\nMovement and exercise are necessary for health of all of the joint structures and to keep the body strong and healthy. But repetitive motion, day in and day out, can result in wear and tear. How do you know when soreness is a problem? When soreness occurs after activity, keep in mind that normal soreness after exercise should not last more than a few hours. When soreness lasts longer, you are probably exercising too much or need to take more breaks. Muscle injuries generally heal with rest. When pain persists even after rest, the cause is oftentimes a ligament injury.\r\n<h3><em>Elbow Ligaments</em></h3>\r\nThe ligaments of the elbow provide stability to the elbow. They attach bone to bone, and different ligaments support various functions of the elbow, stabilizing the elbow as it goes through movements. For instance, the radial collateral ligament of the elbow prevents the elbow from hyperextending. Other ligaments keep the arm bones from rotating too much.  When these ligaments are weakened or damaged, they become unable to protect the elbow from excessive and unnatural movement, placing stress on all of the structures of the elbow.\r\n<h3><em>The Role of Tendons</em></h3>\r\nPain from repetitive motion may also result in a tendon injury. While ligaments attach bone to bone, stabilizing them, the tendons connect muscle to bone, and along with the muscles, enable the bones to move. Those with tendon injuries usually feel pain during activity, but ligament injuries may also be painful even while at rest.\r\n<h2>All Involved Structures Need Treatment for Proper Repair</h2>\r\nA very high percentage of persistent elbow pain involves a ligament injury, but many physicians only diagnose the problem as a tendon injury. Tennis Elbow, for example, is a commonly diagnosed tendon injury that often has a concurrent ligament injury.  It is important to treat all of the involved structures in order to fix the problem and get rid of the pain. A ligament injury can lead to a tendon injury, or injury to another structure of the elbow joint, so it is very important to treat the underlying source of injury and pain. Otherwise, the repaired tendon is likely to become reinjured because the joint will remain unstable due to the underlying ligament injury.\r\n<h2>Elbow Pain Treatments</h2>\r\nCortisone or steroid injections are a common treatment option for tendon injuries, but as we have discussed in previous articles, cortisone will actually weaken the tendons and the ligaments. Elbow injuries, whether due to ligament injuries, tendon injuries, or both, are better repaired using Regenerative Orthopedic treatment options which strengthen and regenerate the structures rather than weakening and degenerating them.  Yes, cortisone may provide some temporary pain control, but in the long-run, will have a damaging effect on the joint and actually boost the arthritic process.<strong> </strong>\r\n\r\nRegenerative Orthopedics for unresolved elbow pain decrease pain and stiffness, and restore quality of life.  The pain alleviating aspects of Regenerative Orthopedics are well documented, with studies demonstrating its effectiveness at significantly improving pain levels while also increasing grip strength and improving function, because it actually heals the tendons and ligaments.\r\n<ul>\r\n 	<li>In the <em>Clinical Journal of Sports Medicine</em>, doctors found that patients who received Prolotherapy, a Regenerative Orthopedic option, showed significant improvement in pain levels compared with patients given saline injection. Plus, their extension strength and grip strength were markedly improved.[i]</li>\r\n 	<li>Published research of patients with elbow pain due to Tennis Elbow treated with Prolotherapy resulted in a decrease in pain from a level of 6.79 to a level of 2.95, which is statistically significance.[ii]</li>\r\n 	<li>In another study, research demonstrated a significant reduction in elbow pain from Tennis Elbow in patients who received Prolotherapy, along with evidence of tendon healing observed via ultrasound imaging.[iii]</li>\r\n</ul>\r\nRegenerative Orthopedics works by stimulating the normal healing process of the body by the injection of natural healing solutions into the pain generating trigger points of the elbow. The result is strengthened ligaments and tendons, a stabilized elbow, and an end to elbow pain.\r\n\r\n[i] Scarpone M, Rabago DP, Zgierska A, Arbogast G, Snell E. The efficacy of prolotherapy for lateral epicondylosis: a pilot study. Clin J Sport Med. 2008;18(3):248–54.\r\n\r\n[ii] Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow. J Korean Acad Rehabil Med. 2002;26:764–8.\r\n\r\n[iii] Park JH, Song IS, Lee JB, et al. Ultrasonographic findings of healing of torn tendon in the patients with lateral epicondylitis after prolotherapy. J Korean Soc Med Ultrasound. 2003;22(3):177–83.','Persistent Elbow Pain','','inherit','closed','closed','','3297-revision-v1','','','2019-11-25 22:43:43','2019-11-25 22:43:43','',3297,'https://www.drfields.com/uncategorized/3297-revision-v1/',0,'revision','',0),(3306,8,'2019-11-26 03:16:18','2019-11-26 03:16:18','<img class=\"alignright size-medium wp-image-3397\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Wilbur-back-500x500.png\" alt=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" width=\"500\" height=\"500\" />Degenerative disc disease is a common disorder of the spine that can result in persistent low back, thoracic, and neck pain. While it is widely diagnosed, degenerative disc disease is also widely misunderstood by the medical community and lay public alike.\r\n\r\n<em><strong> Perhaps the greatest misconception is the idea that the degenerated discs themselves are the primary cause of pain</strong></em> and therefore require a treatment geared towards replacement or repair of the discs, and missing an important underlying source of instability and pain.\r\n<h2>Spinal Discs</h2>\r\nSpinal discs work as a type of shock absorber between the vertebrae, or bones, of your <a href=\"https://www.webmd.com/back-pain/discs-of-the-spine\">spine</a>. They help your back to stay flexible and allow you to bend and twist. With age, spinal discs can show signs of wear and tear. They begin to break down and may not work as efficiently. Nearly everyone\'s spinal discs will break down with age, but not everyone will feel pain.\r\n\r\nA person with a degenerated, bulging, or herniated disc noted on an MRI, must realize that this may be a coincidental finding and unrelated to the actual pain he or she is experiencing. How can that be? In Degenerative Disc Disease,  the disc is losing water and flattening. It is normal for this to occur with age. Interestingly, it is also normal for a disc to bulge while bending. So what is causing the pain then? It is very likely that the pain is being caused by injured ligaments, which are full of nerve tissue, and will send pain signals when tweaked.\r\n<h2>What Causes Degenerative Disc Disease in the First Place?</h2>\r\nThe disc begins to degenerate as soon as the ligaments of the spine weaken. This happens after some sort of injury to the ligaments, including wear and tear. The weak and loose ligaments allow for an unstable spine and one where the vertebrae are able to move too much, resulting in more injury and pain.\r\n\r\nIn an effort to stabilize the vertebrae, the body tenses the muscles, in an attempt to correct the problem. A person will experience this as muscle spasms. The excessive movement puts extra stress on all of the structures of the spine, including the discs. The discs will respond to the added stress by flattening.\r\n\r\nA downward cycle of degeneration is created because the ligaments will now have to work even harder, since the discs can’t do their job correctly, which then weakens the ligaments further, and then adds to the response of the discs to flatten. The sufferer will of course experience pain as a result of the degeneration. The added stress and pressure may cause the disc to herniate. When a disc herniates, it means the soft, gelatinous solution inside is no longer held in place by the tough outer ring of tissue and the disc is now in a weakened state.\r\n<h2>Regenerative Orthopedics Treats the Instability and Resolves the Pain</h2>\r\n<img class=\"alignright wp-image-3398\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Gayle-Low-back-cycle-1-500x500.png\" alt=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" width=\"450\" height=\"450\" />Regenerative Orthopedics is an effective treatment to stop the cycle of \"Degenerative Disc Disease.\" Since the underlying problem that starts the discs to degenerate is the instability of the spine due to ligament weakness or injury, it would make sense then to strengthen and repair the ligaments. What treatment does that? Right…Regenerative Orthopedics!\r\n\r\nIn the 1950s, a doctor named George S. Hackett studied the pathology of chronic low back pain and disc degeneration. He published research linking these conditions to the instability of the vertebral column. He was one of the first doctors to ever point to ligament laxity or weakness as a reason that discs become degenerated.\r\n<h3>More About The Discs</h3>\r\nThe soft, compressible spinal discs lie between two vertebrae and provide cushion and shock absorption. The facet joint is where the top vertebrae contact the vertebrae below. This joint is surrounded by a capsule made up of ligaments. Together these segments are known as facet joints. Every time one bends forward, backward, or twists, pressure is put on these facets. They are under a lot of strain all day long!\r\n\r\nThe vertebrae themselves are held together through a mesh of ligaments that hold the spine in alignment and take the pressure off the facet joints. Dr. Hackett recognized that if the ligaments are loose or damaged, they allow excessive movement of the vertebrae and put extra gravitational pressure on the discs. We’ve noted earlier that when this happens, discs can protrude or herniate. Addressing the underlying ligament laxity is key to treating disc degeneration as well as preventing further damage and degeneration.\r\n\r\nBy applying Regenerative Orthopedics, such as Stem Cell Therapy, PRP, Prolotherapy, to the weakened ligaments, the ligaments become strengthened, thereby halting the progressive degeneration of the intervertebral discs. A patient with persistent back pain can be treated with these regenerative injections into the weakened vertebrae of the low back, mid-back, and neck.  Regenerative Orthopedics is very effective at alleviating pain from degenerative disc disease.\r\n<h2>Spinal Fusion Misses the Mark In The Treatment of Degenerative Disc Disease</h2>\r\nUnfortunately, the focus of degenerative disc treatment today is often centered on treating the discs, and this treatment is oftentimes surgery. Surgeries can include a discectomy, which removes part of the disc, or may mean removal of the entire disc and replacing it with a cadaver or artificial disc. In some cases, spinal fusion is recommended. During spinal fusion, the damaged discs are removed and replaced, and the affected levels of the vertebrae are then permanently fused together.\r\n\r\nWhile these methods increase joint space by inserting replacement discs, they do not address the problem of vertebral instability due to weakened ligaments, and therefore do nothing to actually take pressure off of those discs or preventing the facet joints from further breakdown.\r\n\r\nIt is important to understand that the facets are more commonly the cause of pain. These are where the vertebra on the top connects to the vertebra on the bottom. The vertebrae are surrounded by a thick capsule of ligaments that becomes weakened, torn, or damaged over time, resulting in a lot of pain. Spinal fusion actually encourages increased degeneration at the sites above and below the fusion, frequently resulting in more pain.\r\n<h2>Overreliance on Imaging Procedures</h2>\r\nAnother factor hindering our understanding of vertebral instability and ligament weakness is the dependence on imaging to diagnose and treat musculoskeletal injuries. Of course, MRI imaging is very helpful in the medical fields. However, many rely on imaging instead of using physical examination and good history taking for diagnosing. And as we said earlier, MRI’s can misdiagnose disc herniations.\r\n\r\nIt is important to rule out ligament injury and instability and treat it accordingly especially since a large majority of disc degeneration is due to vertebral instability and ligament weakness. With proper treatment, through therapies like Regenerative Orthopedics, physicians are able to accurately treat the source of their patients’ pain.\r\n\r\nRather than undergoing unnecessary surgeries that do not address the root cause of the symptoms, choose instead to seek out a less invasive treatment capable of strengthening weakened ligaments and tendons and thereby eliminating pressure on the vertebral discs.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Degenerative Disc Disease Treatment','','publish','open','closed','','degenerative-disc-disease-proper-diagnosis-and-treatment','','','2020-08-13 21:14:56','2020-08-13 21:14:56','',0,'https://www.drfields.com/?p=3306',0,'post','',0),(3307,8,'2019-11-26 03:16:18','2019-11-26 03:16:18','Degenerative disc disease is a common disorder of the spine that can result in persistent low back, thoracic, and neck pain. While it is widely diagnosed, degenerative disc disease is also widely misunderstood by the medical community and lay public alike.  Perhaps the greatest misconception is the idea that the degenerated discs themselves are the primary cause of pain and therefore require a treatment geared towards replacement or repair of the discs, and missing an important underlying source of instability and pain.\r\n<h2><strong>Spinal Discs</strong></h2>\r\nSpinal discs work as a type of shock absorber between the vertebrae, or bones, of your <a href=\"https://www.webmd.com/back-pain/discs-of-the-spine\">spine</a>. They help your back to stay flexible, and allow you to bend and twist. With age, spinal discs can show signs of wear and tear. They begin to break down and may not work as efficiently. Nearly everyone\'s spinal discs will break down with age, but not everyone will feel pain. A person with a degenerated, bulging, or herniated disc noted on an MRI, must realize that this may be a coincidental finding and unrelated to the actual pain he or she is experiencing. How can that be? A degenerated disc is a disc that is losing water and flattening. It is normal for this to occur with age. Interestingly, it is also normal for a disc to bulge while bending. So what is causing the pain then? It is very likely that the pain is being caused by injured ligaments, which are full of nerve tissue, and will send pain signals when tweaked.\r\n<h2><strong>What Causes the Disc to Degenerate in the First Place?</strong></h2>\r\nThe disc begins to degenerate as soon as the ligaments of the spine weaken. This happens after some sort of injury to the ligaments, including wear and tear. The weak and loose ligaments allow for an unstable spine and one where the vertebrae are able to move too much, resulting in more injury and pain. In an effort to stabilize the vertebrae, the body tenses the muscles, in an attempt to correct the problem. A person will experience this as muscle spasms. The excessive movement puts extra stress on all of the structures of the spine, including the discs. The discs will respond to the added stress by flattening. A downward cycle of degeneration is created, because the ligaments will now have to work even harder, since the discs can’t do their job correctly, which then weakens the ligaments further, and then adds to the response of the discs to flatten. The sufferer will of course experience pain as a result of the degeneration. The added stress and pressure may cause the disc to herniate. When a disc herniates, it means the soft, gelatinous solution inside is no longer held in place by the tough outer ring of tissue and the disc is now in a weakened state.\r\n<h2><strong>Regenerative Orthopedics Treats the Instability and Resolves the Pain</strong></h2>\r\nRegenerative Orthopedics is an effective treatment to stop the cycle of degeneration. Since the underlying problem that starts the discs to degenerate is instability of the spine due to ligament weakness or injury, it would make sense then to strengthen and repair the ligaments. What treatment does that? Right…Regenerative Orthopedics!  In the 1950’s, a doctor named George S. Hackett studied the pathology of chronic low back pain and disc degeneration, and published research linking these conditions to instability of the vertebral column. He was one of the first doctors to ever point to ligament laxity or weakness as a reason that discs become degenerated.\r\n\r\nThe soft, compressible spinal discs lie between two vertebrae and provide cushion and absorb shock. Together these segments are known as facet joints. The vertebrae themselves are held together through a mesh of ligaments that hold the spine in alignment and take pressure off of the facet joints. Dr. Hackett recognized that if the ligaments are loose or damaged, they allow excessive movement of the vertebrae and put extra gravitational pressure on the discs. We’ve noted earlier that when this happens, discs can protrude or herniate. Addressing the underlying ligament laxity is key to treating disc degeneration as well as preventing further damage and degeneration.\r\n\r\nBy applying Regenerative Orthopedics, such as Stem Cell Therapy, PRP, Prolotherapy, to the weakened ligaments, the ligaments become strengthened, thereby halting the progressive degeneration of the intervertebral discs. A patient with persistent back pain can be treated with these regenerative injections into the weakened vertebrae of the low back, mid-back, and neck.  Regenerative Orthopedics is very effective at alleviating pain from degenerative disc disease.\r\n<h2><strong>Spinal Fusion Misses the Mark In The Treatment of Degenerative Disc Disease</strong></h2>\r\nUnfortunately, the focus of degenerative disc treatment today is often centered on treating the discs, and this treatment is oftentimes surgery. Surgeries can include a discectomy, which removes part of the disc, or may mean removal of the entire disc and replacing it with a cadaver or artificial disc. In some cases, spinal fusion is recommended. During spinal fusion, the damaged discs are removed and replaced, and the affected levels of the vertebrae are then permanently fused together. While these methods increase joint space by inserting replacement discs, they do not address the problem of vertebral instability due to weakened ligaments, and therefore do nothing to actually take pressure off of those discs or preventing the facet joints from further breakdown. It is important to understand that the facets are more commonly the cause of pain. These are where the vertebra on the top connects to the vertebra on the bottom. The vertebra are surrounded by a thick capsule of ligaments that becomes weakened, torn or damaged over time, resulting in a lot of pain. Spinal fusion actually encourages increased degeneration at the sites above and below the fusion, frequently resulting in more pain.\r\n<h2><strong>Overreliance on Imaging Procedures</strong></h2>\r\nAnother factor hindering our understanding of vertebral instability and ligament weakness is the dependence on imaging to diagnose and treat musculoskeletal injuries. Of course, MRI imaging is very helpful in the medical fields. However, many rely on imaging instead of using physical examination and good history taking for diagnosing. And as we said earlier, MRI’s can misdiagnose disc herniations. It is important to rule out ligament injury and instability and treat it accordingly especially since a large majority of disc degeneration is due to vertebral instability and ligament weakness. With proper treatment, through therapies like Regenerative Orthopedics, physicians are able to accurately treat the source of their patients’ pain. Rather than undergoing unnecessary surgeries that do not address the root cause of the symptoms, choose instead to seek out a less invasive treatment capable of strengthening weakened ligaments and tendons and thereby eliminating pressure on the vertebral discs.','Degenerative Disc Disease: Proper Diagnosis and Treatment','','inherit','closed','closed','','3306-revision-v1','','','2019-11-26 03:16:18','2019-11-26 03:16:18','',3306,'https://www.drfields.com/uncategorized/3306-revision-v1/',0,'revision','',0),(3308,8,'2019-11-26 03:19:21','2019-11-26 03:19:21','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Degenerative Disc Disease: Proper Diagnosis and Treatment</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</a></li>\r\n 	<li><a title=\"Why Regenerative Orthopedics Are the Ideal Sports Medicine\" href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a title=\"Do Overuse Injuries Have You Sidelined?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a title=\"Cortisone (Steroid) Injections May Not Be As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a title=\"New Stem Cell Testimonials\" href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-11-26 03:19:21','2019-11-26 03:19:21','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3309,8,'2019-11-27 04:25:42','2019-11-27 04:25:42','When neck injuries occur, like after car accidents, sports injuries, or even wear and tear, the sufferer often lives with disabling symptoms. In this article, we are not referring to a catastrophic neck injury, but one that very often may be considered minor. Yet the sufferer still lives with symptoms that alter their ability to live normally. The reason may very well be instability in the neck and related to the uniqueness of the neck itself.\n\nThe neck is unique because it consists of vertebrae that are smaller and more mobile than all of the movable vertebrae of the spine. Another name for the neck is the cervical spine. The high degree of mobility in the neck or cervical spine is necessary in order to move the head through all the different ranges of motion we put it through. Blood is also transported through the neck on the way to the brain by means of the vertebral artery, which goes up through an opening called the transverse foramina in the vertebrae of the neck. Why are these features important when discussing neck pain, symptoms, and instability? Well first of all, although the mobility of the neck is great and necessary in order to get things done and function like we like to, this same feature makes us vulnerable to injury.\n\nSecondly, when an injury to the neck occurs, ligaments are affected. The ligaments are structures that are primarily responsible for joining bones, and they are especially vulnerable when trauma occurs. When the neck is stable, it moves and functions normally, while remaining in proper alignment, which protects the blood vessels, nerves and spinal cord. But injury to the ligaments changes this whole dynamic, because it causes the cervical spine to become unstable. With instability of the cervical spine comes inadequate support when the neck is called upon to function. Neck alignment is changed and a cycle of imbalance is created between the different neck structures. This causes too much movement of the neighboring vertebrae which stresses the ligaments that support them, and puts undue pressure on the nerve endings within those structures. The result is pain! It also sets into motion a host of other possible symptoms that can arise due to the various blood vessels and nerves running through the neck vertebrae.\n<h2><strong>Whiplash Injuries Are Examples of Instability of the Neck</strong></h2>\n<img class=\"alignright size-medium wp-image-3311\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-1-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" />People who have experienced whiplash, often have symptoms that seem to last and last. These symptoms are frequently a result of instability of the vertebrae of the neck, or in other words, cervical instability. Whiplash injuries are a common cause of cervical instability. The head is literally “whipped” in these injuries. The sudden acceleration and deceleration during rear end collisions is an example of whiplash, which generates a severe flexion and then an extension of the neck, in a whip-type motion forward and backward. The backward hyperextension is often associated with more injury to the muscles and ligaments, because it lacks the limiting effect of the chin meeting the chest in the forward “whip.” The excessive motion in hyperextension severely strains the involved muscles and ligaments. The motion also compresses the adjoining vertebrae.\n\nIf the person driving, for example, is looking in the rear view mirror at the time of collision, the rotated neck position puts the ligaments in an even greater vulnerability to injury, because these particular ligaments that help in side to side head movements are more susceptible in this position. As the ligaments become weaker, they are unable to provide a stable neck structure, which leads to even more injury, and an ongoing provocation of the nerve endings. The ongoing provocation alters a part of the nervous system called the sympathetic nervous system which becomes increasingly activated. This can result in a myriad of symptoms, including a syndrome of symptoms referred to as Barré-Liéou Syndrome.\n<h2><strong>Symptoms from Instability of the Neck</strong></h2>\nSymptoms of neck or cervical instability include neck pain, muscle spasms, cracking sounds, and numbness in the arms and legs. Also, remember how we discussed the unique anatomical relationship of the vertebral arteries through the transverse foramina? Instability of the neck can cause a change in the flow of the arterial blood through the vertebrae when they are moving excessively. This artery provides circulation to half of the brain, so the extra mobile vertebrae can pinch it off, fostering an insufficiency of blood supply as it travels up to the brain. The condition is called vertebrobasilar insufficiency (VBI) with its associated symptoms of neck pain, headaches/migraines, dizziness, drop attacks, dizziness, difficulty swallowing and/or speaking, and disturbances in hearing and vision.\n<h2><strong>How Can You Treat Neck Instability?</strong></h2>\nAll of these symptoms can perplex many clinicians. Meanwhile, the sufferer lives with debilitating symptoms, oftentimes going from doctor to doctor, seeking some type of relief from the many and varied symptoms they experience. Chiropractors do a great job at not only assessing these problems but treating them.  But when Chiropractors are not able to solve the problem, or find a complete solution, one must look elsewhere. Talk with your chiropractor about Regenerative Orthopedics and what it can do to save your neck from surgery. Many chiropractors know Peter A. Fields, MD, DC, and have heard him lecture, as Dr. Fields is both an MD and a chiropractor.\n\nRegenerative Orthopedics is actually a great solution to the puzzle of cervical instability, because the regenerative therapies like Stem Cell Therapy, PRP, and Prolotherapy, repair the injured ligaments that are at the core of the problem. Regenerative Orthopedics are regenerative injection therapies that tighten, repair, and regenerate the ligaments involved in neck instability, eliminating the unstable movement, associated pain, and multiple symptoms. Regenerative Orthopedics is a safe non-surgical option that brings stability back to the neck and its structures, which results in increased functional ability. Those who suffer from these symptoms as a result of instability of the neck or cervical spine can finally get relief from this life-altering condition.','An Answer for Life Altering Neck Pain and Instability','','inherit','closed','closed','','3301-autosave-v1','','','2019-11-27 04:25:42','2019-11-27 04:25:42','',3301,'https://www.drfields.com/uncategorized/3301-autosave-v1/',0,'revision','',0),(3310,8,'2019-11-27 04:23:58','2019-11-27 04:23:58','','An Answer for Life Altering Neck Pain and Instability','','inherit','open','closed','','cervivcal-instability-v271119','','','2019-11-27 04:25:42','2019-11-27 04:25:42','',3301,'https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119.png',0,'attachment','image/png',0),(3311,8,'2019-11-27 04:24:01','2019-11-27 04:24:01','','An Answer for Life Altering Neck Pain and Instability','','inherit','open','closed','','cervivcal-instability-v271119-2','','','2019-11-27 04:24:14','2019-11-27 04:24:14','',3301,'https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-1.png',0,'attachment','image/png',0),(3312,8,'2019-11-27 04:25:46','2019-11-27 04:25:46','When neck injuries occur, like after car accidents, sports injuries, or even wear and tear, the sufferer often lives with disabling symptoms. In this article, we are not referring to a catastrophic neck injury, but one that very often may be considered minor. Yet the sufferer still lives with symptoms that alter their ability to live normally. The reason may very well be instability in the neck and related to the uniqueness of the neck itself.\r\n\r\nThe neck is unique because it consists of vertebrae that are smaller and more mobile than all of the movable vertebrae of the spine. Another name for the neck is the cervical spine. The high degree of mobility in the neck or cervical spine is necessary in order to move the head through all the different ranges of motion we put it through. Blood is also transported through the neck on the way to the brain by means of the vertebral artery, which goes up through an opening called the transverse foramina in the vertebrae of the neck. Why are these features important when discussing neck pain, symptoms, and instability? Well first of all, although the mobility of the neck is great and necessary in order to get things done and function like we like to, this same feature makes us vulnerable to injury.\r\n\r\nSecondly, when an injury to the neck occurs, ligaments are affected. The ligaments are structures that are primarily responsible for joining bones, and they are especially vulnerable when trauma occurs. When the neck is stable, it moves and functions normally, while remaining in proper alignment, which protects the blood vessels, nerves and spinal cord. But injury to the ligaments changes this whole dynamic, because it causes the cervical spine to become unstable. With instability of the cervical spine comes inadequate support when the neck is called upon to function. Neck alignment is changed and a cycle of imbalance is created between the different neck structures. This causes too much movement of the neighboring vertebrae which stresses the ligaments that support them, and puts undue pressure on the nerve endings within those structures. The result is pain! It also sets into motion a host of other possible symptoms that can arise due to the various blood vessels and nerves running through the neck vertebrae.\r\n<h2><strong>Whiplash Injuries Are Examples of Instability of the Neck</strong></h2>\r\n<img class=\"alignright size-medium wp-image-3311\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-1-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" />People who have experienced whiplash, often have symptoms that seem to last and last. These symptoms are frequently a result of instability of the vertebrae of the neck, or in other words, cervical instability. Whiplash injuries are a common cause of cervical instability. The head is literally “whipped” in these injuries. The sudden acceleration and deceleration during rear end collisions is an example of whiplash, which generates a severe flexion and then an extension of the neck, in a whip-type motion forward and backward. The backward hyperextension is often associated with more injury to the muscles and ligaments, because it lacks the limiting effect of the chin meeting the chest in the forward “whip.” The excessive motion in hyperextension severely strains the involved muscles and ligaments. The motion also compresses the adjoining vertebrae.\r\n\r\nIf the person driving, for example, is looking in the rear view mirror at the time of collision, the rotated neck position puts the ligaments in an even greater vulnerability to injury, because these particular ligaments that help in side to side head movements are more susceptible in this position. As the ligaments become weaker, they are unable to provide a stable neck structure, which leads to even more injury, and an ongoing provocation of the nerve endings. The ongoing provocation alters a part of the nervous system called the sympathetic nervous system which becomes increasingly activated. This can result in a myriad of symptoms, including a syndrome of symptoms referred to as Barré-Liéou Syndrome.\r\n<h2><strong>Symptoms from Instability of the Neck</strong></h2>\r\nSymptoms of neck or cervical instability include neck pain, muscle spasms, cracking sounds, and numbness in the arms and legs. Also, remember how we discussed the unique anatomical relationship of the vertebral arteries through the transverse foramina? Instability of the neck can cause a change in the flow of the arterial blood through the vertebrae when they are moving excessively. This artery provides circulation to half of the brain, so the extra mobile vertebrae can pinch it off, fostering an insufficiency of blood supply as it travels up to the brain. The condition is called vertebrobasilar insufficiency (VBI) with its associated symptoms of neck pain, headaches/migraines, dizziness, drop attacks, dizziness, difficulty swallowing and/or speaking, and disturbances in hearing and vision.\r\n<h2><strong>How Can You Treat Neck Instability?</strong></h2>\r\n<img class=\"alignright size-medium wp-image-3310\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" />All of these symptoms can perplex many clinicians. Meanwhile, the sufferer lives with debilitating symptoms, oftentimes going from doctor to doctor, seeking some type of relief from the many and varied symptoms they experience. Chiropractors do a great job at not only assessing these problems but treating them.  But when Chiropractors are not able to solve the problem, or find a complete solution, one must look elsewhere. Talk with your chiropractor about Regenerative Orthopedics and what it can do to save your neck from surgery. Many chiropractors know Peter A. Fields, MD, DC, and have heard him lecture, as Dr. Fields is both an MD and a chiropractor.\r\n\r\nRegenerative Orthopedics is actually a great solution to the puzzle of cervical instability, because the regenerative therapies like Stem Cell Therapy, PRP, and Prolotherapy, repair the injured ligaments that are at the core of the problem. Regenerative Orthopedics are regenerative injection therapies that tighten, repair, and regenerate the ligaments involved in neck instability, eliminating the unstable movement, associated pain, and multiple symptoms. Regenerative Orthopedics is a safe non-surgical option that brings stability back to the neck and its structures, which results in increased functional ability. Those who suffer from these symptoms as a result of instability of the neck or cervical spine can finally get relief from this life-altering condition.','An Answer for Life Altering Neck Pain and Instability','','inherit','closed','closed','','3301-revision-v1','','','2019-11-27 04:25:46','2019-11-27 04:25:46','',3301,'https://www.drfields.com/uncategorized/3301-revision-v1/',0,'revision','',0),(3375,9,'2020-08-13 21:07:22','2020-08-13 21:07:22','<img class=\"alignright size-medium wp-image-3397\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Wilbur-back-500x500.png\" alt=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" width=\"500\" height=\"500\" />Degenerative disc disease is a common disorder of the spine that can result in persistent low back, thoracic, and neck pain. While it is widely diagnosed, degenerative disc disease is also widely misunderstood by the medical community and lay public alike.\n\n<em><strong> Perhaps the greatest misconception is the idea that the degenerated discs themselves are the primary cause of pain</strong></em> and therefore require a treatment geared towards replacement or repair of the discs, and missing an important underlying source of instability and pain.\n<h2>Spinal Discs</h2>\nSpinal discs work as a type of shock absorber between the vertebrae, or bones, of your <a href=\"https://www.webmd.com/back-pain/discs-of-the-spine\">spine</a>. They help your back to stay flexible and allow you to bend and twist. With age, spinal discs can show signs of wear and tear. They begin to break down and may not work as efficiently. Nearly everyone\'s spinal discs will break down with age, but not everyone will feel pain.\n\nA person with a degenerated, bulging, or herniated disc noted on an MRI, must realize that this may be a coincidental finding and unrelated to the actual pain he or she is experiencing. How can that be? In Degenerative Disc Disease,  the disc is losing water and flattening. It is normal for this to occur with age. Interestingly, it is also normal for a disc to bulge while bending. So what is causing the pain then? It is very likely that the pain is being caused by injured ligaments, which are full of nerve tissue, and will send pain signals when tweaked.\n<h2>What Causes Degenerative Disc Disease in the First Place?</h2>\nThe disc begins to degenerate as soon as the ligaments of the spine weaken. This happens after some sort of injury to the ligaments, including wear and tear. The weak and loose ligaments allow for an unstable spine and one where the vertebrae are able to move too much, resulting in more injury and pain.\n\nIn an effort to stabilize the vertebrae, the body tenses the muscles, in an attempt to correct the problem. A person will experience this as muscle spasms. The excessive movement puts extra stress on all of the structures of the spine, including the discs. The discs will respond to the added stress by flattening.\n\nA downward cycle of degeneration is created because the ligaments will now have to work even harder, since the discs can’t do their job correctly, which then weakens the ligaments further, and then adds to the response of the discs to flatten. The sufferer will of course experience pain as a result of the degeneration. The added stress and pressure may cause the disc to herniate. When a disc herniates, it means the soft, gelatinous solution inside is no longer held in place by the tough outer ring of tissue and the disc is now in a weakened state.\n<h2>Regenerative Orthopedics Treats the Instability and Resolves the Pain</h2>\n<img class=\"alignright  wp-image-3398\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Gayle-Low-back-cycle-1-500x500.png\" alt=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" width=\"450\" height=\"450\" />Regenerative Orthopedics is an effective treatment to stop the cycle of \"Degenerative Disc Disease.\" Since the underlying problem that starts the discs to degenerate is the instability of the spine due to ligament weakness or injury, it would make sense then to strengthen and repair the ligaments. What treatment does that? Right…Regenerative Orthopedics!\n\nIn the 1950s, a doctor named George S. Hackett studied the pathology of chronic low back pain and disc degeneration. He published research linking these conditions to the instability of the vertebral column. He was one of the first doctors to ever point to ligament laxity or weakness as a reason that discs become degenerated.\n<h3>More About The Discs</h3>\nThe soft, compressible spinal discs lie between two vertebrae and provide cushion and shock absorption. The facet joint is where the top vertebrae contact the vertebrae below. This joint is surrounded by a capsule made up of ligaments. Together these segments are known as facet joints. Every time one bends forward, backward, or twists, pressure is put on these facets. They are under a lot of strain all day long!\n\nThe vertebrae themselves are held together through a mesh of ligaments that hold the spine in alignment and take the pressure off the facet joints. Dr. Hackett recognized that if the ligaments are loose or damaged, they allow excessive movement of the vertebrae and put extra gravitational pressure on the discs. We’ve noted earlier that when this happens, discs can protrude or herniate. Addressing the underlying ligament laxity is key to treating disc degeneration as well as preventing further damage and degeneration.\n\nBy applying Regenerative Orthopedics, such as Stem Cell Therapy, PRP, Prolotherapy, to the weakened ligaments, the ligaments become strengthened, thereby halting the progressive degeneration of the intervertebral discs. A patient with persistent back pain can be treated with these regenerative injections into the weakened vertebrae of the low back, mid-back, and neck.  Regenerative Orthopedics is very effective at alleviating pain from degenerative disc disease.\n<h2>Spinal Fusion Misses the Mark In The Treatment of Degenerative Disc Disease</h2>\nUnfortunately, the focus of degenerative disc treatment today is often centered on treating the discs, and this treatment is oftentimes surgery. Surgeries can include a discectomy, which removes part of the disc, or may mean removal of the entire disc and replacing it with a cadaver or artificial disc. In some cases, spinal fusion is recommended. During spinal fusion, the damaged discs are removed and replaced, and the affected levels of the vertebrae are then permanently fused together.\n\nWhile these methods increase joint space by inserting replacement discs, they do not address the problem of vertebral instability due to weakened ligaments, and therefore do nothing to actually take pressure off of those discs or preventing the facet joints from further breakdown.\n\nIt is important to understand that the facets are more commonly the cause of pain. These are where the vertebra on the top connects to the vertebra on the bottom. The vertebrae are surrounded by a thick capsule of ligaments that becomes weakened, torn, or damaged over time, resulting in a lot of pain. Spinal fusion actually encourages increased degeneration at the sites above and below the fusion, frequently resulting in more pain.\n<h2>Overreliance on Imaging Procedures</h2>\nAnother factor hindering our understanding of vertebral instability and ligament weakness is the dependence on imaging to diagnose and treat musculoskeletal injuries. Of course, MRI imaging is very helpful in the medical fields. However, many rely on imaging instead of using physical examination and good history taking for diagnosing. And as we said earlier, MRI’s can misdiagnose disc herniations.\n\nIt is important to rule out ligament injury and instability and treat it accordingly especially since a large majority of disc degeneration is due to vertebral instability and ligament weakness. With proper treatment, through therapies like Regenerative Orthopedics, physicians are able to accurately treat the source of their patients’ pain.\n\nRather than undergoing unnecessary surgeries that do not address the root cause of the symptoms, choose instead to seek out a less invasive treatment capable of strengthening weakened ligaments and tendons and thereby eliminating pressure on the vertebral discs.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Degenerative Disc Disease Treatment & Diagnosis','','inherit','closed','closed','','3306-autosave-v1','','','2020-08-13 21:07:22','2020-08-13 21:07:22','',3306,'https://www.drfields.com/uncategorized/3306-autosave-v1/',0,'revision','',0),(3376,9,'2019-12-04 01:24:32','2019-12-04 01:24:32','<em><strong>Degenerative disc disease</strong></em> is a common disorder of the spine that can result in annoying low back, thoracic, and neck pain. While it is widely diagnosed, degenerative disc disease is also widely misunderstood by the medical community and lay public alike.  Perhaps the greatest misconception is the idea that the degenerated discs themselves are the primary cause of pain and therefore require a treatment geared towards replacement or repair of the discs, and missing an important underlying source of instability and pain.\r\n<h2><strong>Spinal Discs</strong></h2>\r\nSpinal discs work as a type of shock absorber between the vertebrae, or bones, of your spine. They help your back to stay flexible and allow you to bend and twist. With age, spinal discs can show signs of wear and tear. They begin to break down and may not work as efficiently. Nearly everyone\'s spinal discs will break down with age, but not everyone will feel pain. A person with a degenerated, bulging, or herniated disc noted on an MRI, must realize that this may be a coincidental finding and unrelated to the actual pain he or she is experiencing. How can that be? A degenerated disc is a disc that is losing water and flattening. It is normal for this to occur with age. Interestingly, it is also normal for a disc to bulge while bending. So what is causing the pain then? It is very likely that the pain is being caused by injured ligaments, which are full of nerve tissue, and will send pain signals when tweaked.\r\n<h2><strong>What Causes the Disc to Degenerate in the First Place?</strong></h2>\r\nThe disc begins to degenerate as soon as the ligaments of the spine weaken. This happens after some sort of injury to the ligaments, including wear and tear. The weak and loose ligaments allow for an unstable spine and one where the vertebrae are able to move too much, resulting in more injury and pain. In an effort to stabilize the vertebrae, the body tenses the muscles, in an attempt to correct the problem. A person will experience this as muscle spasms. The excessive movement puts extra stress on all of the structures of the spine, including the discs. The discs will respond to the added stress by flattening. A downward cycle of degeneration is created because the ligaments will now have to work even harder, since the discs can’t do their job correctly, which then weakens the ligaments further, and then adds to the response of the discs to flatten. The sufferer will of course experience pain as a result of the degeneration. The added stress and pressure may cause the disc to herniate. When a disc herniates, it means the soft, gelatinous solution inside is no longer held in place by the tough outer ring of tissue and the disc is now in a weakened state.\r\n<h2><strong>Regenerative Orthopedics Treats the Instability and Resolves the Pain</strong></h2>\r\nRegenerative Orthopedics is an effective treatment to stop the cycle of degeneration. Since the underlying problem that starts the discs to degenerate is instability of the spine due to ligament weakness or injury, it would make sense then to strengthen and repair the ligaments. What treatment does that? Right…Regenerative Orthopedics!  In the 1950s, a doctor named George S. Hackett studied the pathology of chronic low back pain and disc degeneration and published research linking these conditions to the instability of the vertebral column. He was one of the first doctors to ever point to ligament laxity or weakness as a reason that discs become degenerated.\r\n\r\nThe soft, compressible spinal discs lie between two vertebrae and provide cushion and shock absorption. The facet joint refers to the location where the top vertebrae contact the vertebrae below. This joint is also surrounded by a capsule made up of ligaments. Together these segments are known as facet joints. Every time one bends forward, backward, or twists, there is pressure put on these facets. As you can imagine, the facets are put under a lot of strain all day long! The vertebrae themselves are held together through a mesh of ligaments that hold the spine in alignment and take some pressure off of the facet joints. Dr. Hackett recognized that if the ligaments are loose or damaged, they allow excessive movement of the vertebrae and put extra gravitational pressure on the discs. We’ve noted earlier that when this happens, discs can protrude or herniate. Addressing the underlying ligament laxity is key to treating disc degeneration as well as preventing further damage and degeneration.\r\n\r\nBy applying Regenerative Orthopedics, such as Stem Cell Therapy, PRP, Prolotherapy, to the weakened ligaments, the ligaments become strengthened, thereby halting the progressive degeneration of the intervertebral discs. A patient with persistent back pain can be treated with these regenerative injections into the weakened vertebrae of the low back, mid-back, and neck.  Regenerative Orthopedics is very effective at alleviating pain from degenerative disc disease.\r\n<h2><strong>Spinal Fusion Misses the Mark In The Treatment of Degenerative Disc Disease</strong></h2>\r\nUnfortunately, the focus of degenerative disc treatment today is often centered on treating the discs, and this treatment is oftentimes surgery. Surgeries can include a discectomy, which removes part of the disc, or may mean removal of the entire disc and replacing it with a cadaver or artificial disc. In some cases, spinal fusion is recommended. During spinal fusion, the damaged discs are removed and replaced, and the affected levels of the vertebrae are then permanently fused together. While these methods increase joint space by inserting replacement discs, they do not address the problem of vertebral instability due to weakened ligaments, and therefore do nothing to actually take pressure off of those discs or preventing the facet joints from further breakdown. It is important to understand that the facets are more commonly the cause of pain. These are where the vertebra on the top connects to the vertebra on the bottom. The vertebra are surrounded by a thick capsule of ligaments that becomes weakened, torn or damaged over time, resulting in a lot of pain. Spinal fusion actually encourages increased degeneration at the sites above and below the fusion, frequently resulting in more pain.\r\n<h2><strong>Overreliance on Imaging Procedures</strong></h2>\r\nAnother factor hindering our understanding of vertebral instability and ligament weakness is the dependence on imaging to diagnose and treat musculoskeletal injuries. Of course, MRI imaging is very helpful in the medical fields. However, many rely on imaging instead of using physical examination and good history taking for diagnosing. And as we said earlier, MRI’s can misdiagnose disc herniations. It is important to rule out ligament injury and instability and treat it accordingly especially since a large majority of disc degeneration is due to vertebral instability and ligament weakness. With proper treatment, through therapies like Regenerative Orthopedics, physicians are able to accurately treat the source of their patients’ pain. Rather than undergoing unnecessary surgeries that do not address the root cause of the symptoms, choose instead to seek out a less invasive treatment capable of strengthening weakened ligaments and tendons and thereby eliminating pressure on the vertebral discs.','Degenerative Disc Disease: Proper Diagnosis and Treatment','','inherit','closed','closed','','3306-revision-v1','','','2019-12-04 01:24:32','2019-12-04 01:24:32','',3306,'https://www.drfields.com/uncategorized/3306-revision-v1/',0,'revision','',0),(3377,9,'2019-12-04 01:27:04','2019-12-04 01:27:04','Gayle. Low Back Cycle Copy','Gayle. Low Back Cycle Copy','Gayle. Low Back Cycle Copy','inherit','open','closed','','gayle-low-back-cycle-copy','','','2019-12-04 01:27:04','2019-12-04 01:27:04','',0,'https://www.drfields.com/wp-content/uploads/2019/12/Gayle.-Low-back-cycle-Copy.png',0,'attachment','image/png',0),(3378,9,'2019-12-04 01:27:11','2019-12-04 01:27:11','Wilbur. Back','Wilbur. Back','Wilbur. Back','inherit','open','closed','','wilbur-back','','','2019-12-04 01:27:11','2019-12-04 01:27:11','',0,'https://www.drfields.com/wp-content/uploads/2019/12/Wilbur.-back.png',0,'attachment','image/png',0),(3379,9,'2019-12-04 01:29:14','2019-12-04 01:29:14','Gayle. Low Back Cycle Copy','Gayle. Low Back Cycle Copy','Gayle. Low Back Cycle Copy','inherit','open','closed','','gayle-low-back-cycle-copy-2','','','2019-12-04 01:29:14','2019-12-04 01:29:14','',0,'https://www.drfields.com/wp-content/uploads/2019/12/Gayle.-Low-back-cycle-Copy-1.png',0,'attachment','image/png',0),(3380,9,'2019-12-04 01:29:22','2019-12-04 01:29:22','Wilbur. Back','Wilbur. Back','Wilbur. Back','inherit','open','closed','','wilbur-back-2','','','2019-12-04 01:31:30','2019-12-04 01:31:30','',3306,'https://www.drfields.com/wp-content/uploads/2019/12/Wilbur.-back-1.png',0,'attachment','image/png',0),(3381,9,'2019-12-04 01:30:58','2019-12-04 01:30:58','<em><strong>Degenerative disc disease</strong></em> is a common disorder of the spine that can result in annoying and persistent low back, thoracic, and neck pain. While it is widely diagnosed, degenerative disc disease is also widely misunderstood by the medical community and lay public alike.  Perhaps the greatest misconception is the idea that the degenerated discs themselves are the primary cause of pain and therefore require a treatment geared towards replacement or repair of the discs, and missing an important underlying source of instability and pain.\r\n<h2><strong>Spinal Discs</strong></h2>\r\nSpinal discs work as a type of shock absorber between the vertebrae, or bones, of your spine. They help your back to stay flexible and allow you to bend and twist. With age, spinal discs can show signs of wear and tear. They begin to break down and may not work as efficiently. Nearly everyone\'s spinal discs will break down with age, but not everyone will feel pain. A person with a degenerated, bulging, or herniated disc noted on an MRI, must realize that this may be a coincidental finding and unrelated to the actual pain he or she is experiencing. How can that be? A degenerated disc is a disc that is losing water and flattening. It is normal for this to occur with age. Interestingly, it is also normal for a disc to bulge while bending. So what is causing the pain then? It is very likely that the pain is being caused by injured ligaments, which are full of nerve tissue, and will send pain signals when tweaked.\r\n<h2><strong>What Causes the Disc to Degenerate in the First Place?</strong></h2>\r\nThe disc begins to degenerate as soon as the ligaments of the spine weaken. This happens after some sort of injury to the ligaments, including wear and tear. The weak and loose ligaments allow for an unstable spine and one where the vertebrae are able to move too much, resulting in more injury and pain. In an effort to stabilize the vertebrae, the body tenses the muscles, in an attempt to correct the problem. A person will experience this as muscle spasms. The excessive movement puts extra stress on all of the structures of the spine, including the discs. The discs will respond to the added stress by flattening. A downward cycle of degeneration is created because the ligaments will now have to work even harder, since the discs can’t do their job correctly, which then weakens the ligaments further, and then adds to the response of the discs to flatten. The sufferer will of course experience pain as a result of the degeneration. The added stress and pressure may cause the disc to herniate. When a disc herniates, it means the soft, gelatinous solution inside is no longer held in place by the tough outer ring of tissue and the disc is now in a weakened state.\r\n<h2><strong>Regenerative Orthopedics Treats the Instability and Resolves the Pain</strong></h2>\r\nRegenerative Orthopedics is an effective treatment to stop the cycle of degeneration. Since the underlying problem that starts the discs to degenerate is instability of the spine due to ligament weakness or injury, it would make sense then to strengthen and repair the ligaments. What treatment does that? Right…Regenerative Orthopedics!  In the 1950s, a doctor named George S. Hackett studied the pathology of chronic low back pain and disc degeneration and published research linking these conditions to the instability of the vertebral column. He was one of the first doctors to ever point to ligament laxity or weakness as a reason that discs become degenerated.\r\n\r\nThe soft, compressible spinal discs lie between two vertebrae and provide cushion and shock absorption. The facet joint refers to the location where the top vertebrae contact the vertebrae below. This joint is also surrounded by a capsule made up of ligaments. Together these segments are known as facet joints. Every time one bends forward, backward, or twists, there is pressure put on these facets. As you can imagine, the facets are put under a lot of strain all day long! The vertebrae themselves are held together through a mesh of ligaments that hold the spine in alignment and take some pressure off of the facet joints. Dr. Hackett recognized that if the ligaments are loose or damaged, they allow excessive movement of the vertebrae and put extra gravitational pressure on the discs. We’ve noted earlier that when this happens, discs can protrude or herniate. Addressing the underlying ligament laxity is key to treating disc degeneration as well as preventing further damage and degeneration.\r\n\r\nBy applying Regenerative Orthopedics, such as Stem Cell Therapy, PRP, Prolotherapy, to the weakened ligaments, the ligaments become strengthened, thereby halting the progressive degeneration of the intervertebral discs. A patient with persistent back pain can be treated with these regenerative injections into the weakened vertebrae of the low back, mid-back, and neck.  Regenerative Orthopedics is very effective at alleviating pain from degenerative disc disease.\r\n<h2><strong>Spinal Fusion Misses the Mark In The Treatment of Degenerative Disc Disease</strong></h2>\r\nUnfortunately, the focus of degenerative disc treatment today is often centered on treating the discs, and this treatment is oftentimes surgery. Surgeries can include a discectomy, which removes part of the disc or may mean the removal of the entire disc and replacing it with a cadaver or artificial disc. In some cases, spinal fusion is recommended. During spinal fusion, the damaged discs are removed and replaced, and the affected levels of the vertebrae are then permanently fused together. While these methods increase joint space by inserting replacement discs, they do not address the problem of vertebral instability due to weakened ligaments, and therefore do nothing to actually take the pressure off of those discs or preventing the facet joints from further breakdown. It is important to understand that the facets are more commonly the cause of pain. These are where the vertebra on the top connects to the vertebra on the bottom. The vertebrae are surrounded by a thick capsule of ligaments that becomes weakened, torn or damaged over time, resulting in a lot of pain. Spinal fusion actually encourages increased degeneration at the sites above and below the fusion, frequently resulting in more pain.\r\n<h2><strong>Overreliance on Imaging Procedures</strong></h2>\r\nAnother factor hindering our understanding of vertebral instability and ligament weakness is the dependence on imaging to diagnose and treat musculoskeletal injuries. Of course, MRI imaging is very helpful in the medical field. However, many rely on imaging instead of using physical examination and good history taking for diagnosing. And as we said earlier, MRI’s can misdiagnose disc herniations. It is important to rule out ligament injury and instability and treat it accordingly especially since a large majority of disc degeneration is due to vertebral instability and ligament weakness. With proper treatment, through therapies like Regenerative Orthopedics, physicians are able to accurately treat the source of their patients’ pain. Rather than undergoing unnecessary surgeries that do not address the root cause of the symptoms, choose instead to seek out a less invasive treatment capable of strengthening weakened ligaments and tendons and thereby eliminating pressure on the vertebral discs.','Degenerative Disc Disease: Proper Diagnosis and Treatment','','inherit','closed','closed','','3306-revision-v1','','','2019-12-04 01:30:58','2019-12-04 01:30:58','',3306,'https://www.drfields.com/uncategorized/3306-revision-v1/',0,'revision','',0),(3382,9,'2019-12-04 01:31:22','2019-12-04 01:31:22','Gayle. Low Back Cycle Copy','Gayle. Low Back Cycle Copy','Gayle. Low Back Cycle Copy','inherit','open','closed','','gayle-low-back-cycle-copy-3','','','2019-12-04 01:31:22','2019-12-04 01:31:22','',3306,'https://www.drfields.com/wp-content/uploads/2019/11/Gayle.-Low-back-cycle-Copy.png',0,'attachment','image/png',0),(3383,9,'2019-12-04 01:33:32','2019-12-04 01:33:32','<img class=\"alignright wp-image-3380 \" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Wilbur.-back-1-500x500.png\" alt=\"\" width=\"419\" height=\"419\" />\r\n\r\n<em><strong>Degenerative disc disease</strong></em> is a common disorder of the spine that can result in annoying and persistent low back, thoracic, and neck pain. While it is widely diagnosed, degenerative disc disease is also widely misunderstood by the medical community and lay public alike.  Perhaps the greatest misconception is the idea that the degenerated discs themselves are the primary cause of pain and therefore require a treatment geared towards replacement or repair of the discs, and missing an important underlying source of instability and pain.\r\n<h2><strong>Spinal Discs</strong></h2>\r\nSpinal discs work as a type of shock absorber between the vertebrae, or bones, of your spine. They help your back to stay flexible and allow you to bend and twist. With age, spinal discs can show signs of wear and tear. They begin to break down and may not work as efficiently. Nearly everyone\'s spinal discs will break down with age, but not everyone will feel pain. A person with a degenerated, bulging, or herniated disc noted on an MRI, must realize that this may be a coincidental finding and unrelated to the actual pain he or she is experiencing. How can that be? A degenerated disc is a disc that is losing water and flattening. It is normal for this to occur with age. Interestingly, it is also normal for a disc to bulge while bending. So what is causing the pain then? It is very likely that the pain is being caused by injured ligaments, which are full of nerve tissue, and will send pain signals when tweaked.\r\n<h2><strong>What Causes the Disc to Degenerate in the First Place?</strong></h2>\r\nThe disc begins to degenerate as soon as the ligaments of the spine weaken. This happens after some sort of injury to the ligaments, including wear and tear. The weak and loose ligaments allow for an unstable spine and one where the vertebrae are able to move too much, resulting in more injury and pain. In an effort to stabilize the vertebrae, the body tenses the muscles, in an attempt to correct the problem. A person will experience this as muscle spasms. The excessive movement puts extra stress on all of the structures of the spine, including the discs. The discs will respond to the added stress by flattening. A downward cycle of degeneration is created because the ligaments will now have to work even harder, since the discs can’t do their job correctly, which then weakens the ligaments further, and then adds to the response of the discs to flatten. The sufferer will of course experience pain as a result of the degeneration. The added stress and pressure may cause the disc to herniate. When a disc herniates, it means the soft, gelatinous solution inside is no longer held in place by the tough outer ring of tissue and the disc is now in a weakened state.\r\n<h2><strong>Regenerative Orthopedics Treats the Instability and Resolves the Pain</strong></h2>\r\nRegenerative Orthopedics is an effective treatment to stop the cycle of degeneration. Since the underlying problem that starts the discs to degenerate is instability of the spine due to ligament weakness or injury, it would make sense then to strengthen and repair the ligaments. What treatment does that? Right…Regenerative Orthopedics!  In the 1950s, a doctor named George S. Hackett studied the pathology of chronic low back pain and disc degeneration and published research linking these conditions to the instability of the vertebral column. He was one of the first doctors to ever point to ligament laxity or weakness as a reason that discs become degenerated.\r\n\r\nThe soft, compressible spinal discs lie between two vertebrae and provide cushion and shock absorption. The facet joint refers to the location where the top vertebrae contact the vertebrae below. This joint is also surrounded by a capsule made up of ligaments. Together these segments are known as facet joints. Every time one bends forward, backward, or twists, there is pressure put on these facets. As you can imagine, the facets are put under a lot of strain all day long! The vertebrae themselves are held together through a mesh of ligaments that hold the spine in alignment and take some pressure off of the facet joints. Dr. Hackett recognized that if the ligaments are loose or damaged, they allow excessive movement of the vertebrae and put extra gravitational pressure on the discs. We’ve noted earlier that when this happens, discs can protrude or herniate. Addressing the underlying ligament laxity is key to treating disc degeneration as well as preventing further damage and degeneration.\r\n\r\nBy applying Regenerative Orthopedics, such as Stem Cell Therapy, PRP, Prolotherapy, to the weakened ligaments, the ligaments become strengthened, thereby halting the progressive degeneration of the intervertebral discs. A patient with persistent back pain can be treated with these regenerative injections into the weakened vertebrae of the low back, mid-back, and neck.  Regenerative Orthopedics is very effective at alleviating pain from degenerative disc disease.\r\n<h2><strong>Spinal Fusion Misses the Mark In The Treatment of Degenerative Disc Disease</strong></h2>\r\nUnfortunately, the focus of degenerative disc treatment today is often centered on treating the discs, and this treatment is oftentimes surgery. Surgeries can include a discectomy, which removes part of the disc or may mean the removal of the entire disc and replacing it with a cadaver or artificial disc. In some cases, spinal fusion is recommended. During spinal fusion, the damaged discs are removed and replaced, and the affected levels of the vertebrae are then permanently fused together. While these methods increase joint space by inserting replacement discs, they do not address the problem of vertebral instability due to weakened ligaments, and therefore do nothing to actually take the pressure off of those discs or preventing the facet joints from further breakdown. It is important to understand that the facets are more commonly the cause of pain. These are where the vertebra on the top connects to the vertebra on the bottom. The vertebrae are surrounded by a thick capsule of ligaments that becomes weakened, torn or damaged over time, resulting in a lot of pain. Spinal fusion actually encourages increased degeneration at the sites above and below the fusion, frequently resulting in more pain.\r\n<h2><strong>Overreliance on Imaging Procedures</strong></h2>\r\nAnother factor hindering our understanding of vertebral instability and ligament weakness is the dependence on imaging to diagnose and treat musculoskeletal injuries. Of course, MRI imaging is very helpful in the medical field. However, many rely on imaging instead of using physical examination and good history taking for diagnosing. And as we said earlier, MRI’s can misdiagnose disc herniations. It is important to rule out ligament injury and instability and treat it accordingly especially since a large majority of disc degeneration is due to vertebral instability and ligament weakness. With proper treatment, through therapies like Regenerative Orthopedics, physicians are able to accurately treat the source of their patients’ pain. Rather than undergoing unnecessary surgeries that do not address the root cause of the symptoms, choose instead to seek out a less invasive treatment capable of strengthening weakened ligaments and tendons and thereby eliminating pressure on the vertebral discs.','Degenerative Disc Disease: Proper Diagnosis and Treatment','','inherit','closed','closed','','3306-revision-v1','','','2019-12-04 01:33:32','2019-12-04 01:33:32','',3306,'https://www.drfields.com/uncategorized/3306-revision-v1/',0,'revision','',0),(3385,9,'2019-12-04 01:35:14','2019-12-04 01:35:14','<img class=\"alignright wp-image-3380 \" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Wilbur.-back-1-500x500.png\" alt=\"\" width=\"419\" height=\"419\" />\r\n\r\n<em><strong>Degenerative disc disease</strong></em> is a common disorder of the spine that can result in annoying and persistent low back, thoracic, and neck pain. While it is widely diagnosed, degenerative disc disease is also widely misunderstood by the medical community and lay public alike.  Perhaps the greatest misconception is the idea that the degenerated discs themselves are the primary cause of pain and therefore require a treatment geared towards replacement or repair of the discs, and missing an important underlying source of instability and pain.\r\n<h2><strong>Spinal Discs</strong></h2>\r\nSpinal discs work as a type of shock absorber between the vertebrae, or bones, of your spine. They help your back to stay flexible and allow you to bend and twist. With age, spinal discs can show signs of wear and tear. They begin to break down and may not work as efficiently. Nearly everyone\'s spinal discs will break down with age, but not everyone will feel pain. A person with a degenerated, bulging, or herniated disc noted on an MRI, must realize that this may be a coincidental finding and unrelated to the actual pain he or she is experiencing. How can that be? A degenerated disc is a disc that is losing water and flattening. It is normal for this to occur with age. Interestingly, it is also normal for a disc to bulge while bending. So what is causing the pain then? It is very likely that the pain is being caused by injured ligaments, which are full of nerve tissue, and will send pain signals when tweaked.\r\n<h2><strong>What Causes the Disc to Degenerate in the First Place?</strong></h2>\r\nThe disc begins to degenerate as soon as the ligaments of the spine weaken. This happens after some sort of injury to the ligaments, including wear and tear. The weak and loose ligaments allow for an unstable spine and one where the vertebrae are able to move too much, resulting in more injury and pain. In an effort to stabilize the vertebrae, the body tenses the muscles, in an attempt to correct the problem. A person will experience this as muscle spasms. The excessive movement puts extra stress on all of the structures of the spine, including the discs. The discs will respond to the added stress by flattening. A downward cycle of degeneration is created because the ligaments will now have to work even harder, since the discs can’t do their job correctly, which then weakens the ligaments further, and then adds to the response of the discs to flatten. The sufferer will of course experience pain as a result of the degeneration. The added stress and pressure may cause the disc to herniate. When a disc herniates, it means the soft, gelatinous solution inside is no longer held in place by the tough outer ring of tissue and the disc is now in a weakened state.\r\n\r\n<img class=\"alignleft wp-image-3382 \" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Gayle.-Low-back-cycle-Copy-500x500.png\" alt=\"\" width=\"416\" height=\"416\" />\r\n<h2><strong>Regenerative Orthopedics Treats the Instability and Resolves the Pain</strong></h2>\r\nRegenerative Orthopedics is an effective treatment to stop the cycle of degeneration. Since the underlying problem that starts the discs to degenerate is instability of the spine due to ligament weakness or injury, it would make sense then to strengthen and repair the ligaments. What treatment does that? Right…Regenerative Orthopedics!  In the 1950s, a doctor named George S. Hackett studied the pathology of chronic low back pain and disc degeneration and published research linking these conditions to the instability of the vertebral column. He was one of the first doctors to ever point to ligament laxity or weakness as a reason that discs become degenerated.\r\n\r\nThe soft, compressible spinal discs lie between two vertebrae and provide cushion and shock absorption. The facet joint refers to the location where the top vertebrae contact the vertebrae below. This joint is also surrounded by a capsule made up of ligaments. Together these segments are known as facet joints. Every time one bends forward, backward, or twists, there is pressure put on these facets. As you can imagine, the facets are put under a lot of strain all day long! The vertebrae themselves are held together through a mesh of ligaments that hold the spine in alignment and take some pressure off of the facet joints. Dr. Hackett recognized that if the ligaments are loose or damaged, they allow excessive movement of the vertebrae and put extra gravitational pressure on the discs. We’ve noted earlier that when this happens, discs can protrude or herniate. Addressing the underlying ligament laxity is key to treating disc degeneration as well as preventing further damage and degeneration.\r\n\r\nBy applying Regenerative Orthopedics, such as Stem Cell Therapy, PRP, Prolotherapy, to the weakened ligaments, the ligaments become strengthened, thereby halting the progressive degeneration of the intervertebral discs. A patient with persistent back pain can be treated with these regenerative injections into the weakened vertebrae of the low back, mid-back, and neck.  Regenerative Orthopedics is very effective at alleviating pain from degenerative disc disease.\r\n<h2><strong>Spinal Fusion Misses the Mark In The Treatment of Degenerative Disc Disease</strong></h2>\r\nUnfortunately, the focus of degenerative disc treatment today is often centered on treating the discs, and this treatment is oftentimes surgery. Surgeries can include a discectomy, which removes part of the disc or may mean the removal of the entire disc and replacing it with a cadaver or artificial disc. In some cases, spinal fusion is recommended. During spinal fusion, the damaged discs are removed and replaced, and the affected levels of the vertebrae are then permanently fused together. While these methods increase joint space by inserting replacement discs, they do not address the problem of vertebral instability due to weakened ligaments, and therefore do nothing to actually take the pressure off of those discs or preventing the facet joints from further breakdown. It is important to understand that the facets are more commonly the cause of pain. These are where the vertebra on the top connects to the vertebra on the bottom. The vertebrae are surrounded by a thick capsule of ligaments that becomes weakened, torn or damaged over time, resulting in a lot of pain. Spinal fusion actually encourages increased degeneration at the sites above and below the fusion, frequently resulting in more pain.\r\n<h2><strong>Overreliance on Imaging Procedures</strong></h2>\r\nAnother factor hindering our understanding of vertebral instability and ligament weakness is the dependence on imaging to diagnose and treat musculoskeletal injuries. Of course, MRI imaging is very helpful in the medical field. However, many rely on imaging instead of using physical examination and good history taking for diagnosing. And as we said earlier, MRI’s can misdiagnose disc herniations. It is important to rule out ligament injury and instability and treat it accordingly especially since a large majority of disc degeneration is due to vertebral instability and ligament weakness. With proper treatment, through therapies like Regenerative Orthopedics, physicians are able to accurately treat the source of their patients’ pain. Rather than undergoing unnecessary surgeries that do not address the root cause of the symptoms, choose instead to seek out a less invasive treatment capable of strengthening weakened ligaments and tendons and thereby eliminating pressure on the vertebral discs.','Degenerative Disc Disease: Proper Diagnosis and Treatment','','inherit','closed','closed','','3306-revision-v1','','','2019-12-04 01:35:14','2019-12-04 01:35:14','',3306,'https://www.drfields.com/uncategorized/3306-revision-v1/',0,'revision','',0),(3386,9,'2019-12-04 01:39:01','2019-12-04 01:39:01','&nbsp;\r\n<h4>Honduras</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\">The Final Party</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\">Olanchito - The Town</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\">Mid Weekend</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\">In The Clinic</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\">Before and After</a></li>\r\n</ul>\r\n<h4>Before and After</h4>','Before and After','','inherit','closed','closed','','591-revision-v1','','','2019-12-04 01:39:01','2019-12-04 01:39:01','',591,'https://www.drfields.com/uncategorized/591-revision-v1/',0,'revision','',0),(3387,9,'2019-12-04 01:39:39','2019-12-04 01:39:39','&nbsp;\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-626\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" /></div>\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-625\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1029.jpg\" alt=\"Dscn1029\" width=\"255\" height=\"191\" /></div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-624\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1134.jpg\" alt=\"Dscn1134\" width=\"255\" height=\"191\" /></div>\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-623\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" /></div>\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-622\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0938.jpg\" alt=\"Dscn0938\" width=\"255\" height=\"191\" /></div>\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-621\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0947.jpg\" alt=\"Dscn0947\" width=\"255\" height=\"191\" /></div>\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-620\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1154.jpg\" alt=\"Dscn1154\" width=\"191\" height=\"255\" /></div>\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-619\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1150.jpg\" alt=\"Dscn1150\" width=\"191\" height=\"255\" /></div>\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-618\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1053.jpg\" alt=\"Dscn1053\" width=\"255\" height=\"191\" /></div>\r\n<div class=\"col-md-5\"><img class=\"aligncenter size-full wp-image-616\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1059.jpg\" alt=\"Dscn1059\" width=\"255\" height=\"191\" /></div>','Honduras','','inherit','closed','closed','','627-revision-v1','','','2019-12-04 01:39:39','2019-12-04 01:39:39','',627,'https://www.drfields.com/uncategorized/627-revision-v1/',0,'revision','',0),(3388,9,'2019-12-04 01:41:38','2019-12-04 01:41:38','&nbsp;\r\n<h4>Honduras</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\">The Final Party</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\">Olanchito - The Town</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\">Mid Weekend</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\">In The Clinic</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\">Before and After</a></li>\r\n</ul>\r\n<h4>In The Clinic</h4>','In the Clinic','','inherit','closed','closed','','589-revision-v1','','','2019-12-04 01:41:38','2019-12-04 01:41:38','',589,'https://www.drfields.com/uncategorized/589-revision-v1/',0,'revision','',0),(3389,9,'2019-12-04 01:44:54','2019-12-04 01:44:54','Check out our photos from our Honduras missions trip in 2011.\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_563\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-563\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/With-two-other-student-docs-and-a-patient.jpg\" alt=\"With Two Other Student Docs And A Patient\" width=\"255\" height=\"191\" /> With Two Other Student Docs And A Patient[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_562\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-562\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/With-a-local-translator-a-student-doc-from-Italy-and-a-patient.jpg\" alt=\"With A Local Translator, A Student Doc From Italy And A Patient\" width=\"255\" height=\"191\" /> With A Local Translator, A Student Doc From Italy And A Patient[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_561\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-561\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Teaching-a-doc.jpg\" alt=\"Teaching A Doc\" width=\"255\" height=\"191\" /> Teaching A Doc[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_560\" align=\"aligncenter\" width=\"191\"]<img class=\"size-full wp-image-560\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-the-dentist-Dr-Mansilla.jpg\" alt=\"Dr Fields With The Dentist, Dr Mansilla\" width=\"191\" height=\"191\" /> Dr Fields With The Dentist, Dr Mansilla[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_559\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-559\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-Mary-Doherty-HHF-Operations-Director.jpg\" alt=\"Dr Fields And Mary Doherty, Hhf Operations Director\" width=\"255\" height=\"191\" /> Dr Fields And Mary Doherty, Hhf Operations Director[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_558\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-558\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-Olanchito-group.jpg\" alt=\"The Olanchito Group\" width=\"255\" height=\"191\" /> The Olanchito Group[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_557\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-557\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-helps-out-the-dentist.jpg\" alt=\"Dr Fields Helps Out The Dentist!\" width=\"255\" height=\"191\" /> Dr Fields Helps Out The Dentist![/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_556\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-556\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-a-student-doc-and-a-patient.jpg\" alt=\"Dr Fields With A Student Doc And A Patient\" width=\"255\" height=\"191\" /> Dr Fields With A Student Doc And A Patient[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_555\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-555\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-another-doc-and-a-helper.jpg\" alt=\"Dr Fields With Another Doc And A Helper\" width=\"255\" height=\"191\" /> Dr Fields With Another Doc And A Helper[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_554\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-554\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-another-doc-our-translator-and-a-patient.jpg\" alt=\"Dr Fields With Another Doc, Our Translator And A Patient\" width=\"255\" height=\"191\" /> Dr Fields With Another Doc, Our Translator And A Patient[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_553\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-553\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-other-docs-at-the-final-dinner.jpg\" alt=\"Dr Fields With Other Docs At The Final Dinner\" width=\"255\" height=\"166\" /> Dr Fields With Other Docs At The Final Dinner[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_552\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-552\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-a-helper-and-Dr-Bones.jpg\" alt=\"Dr Fields, A Helper And Dr Bones!\" width=\"255\" height=\"191\" /> Dr Fields, A Helper And Dr Bones![/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_551\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-551\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Having-dinner-in-Olanchito.jpg\" alt=\"Having Dinner In Olanchito\" width=\"255\" height=\"191\" /> Having Dinner In Olanchito[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_550\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-550\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-street-scene-in-the-main-city.jpg\" alt=\"Local Street Scene In The Main City\" width=\"255\" height=\"191\" /> Local Street Scene In The Main City[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_549\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-549\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/The-bigger-city.jpg\" alt=\"The Bigger City\" width=\"255\" height=\"191\" /> The Bigger City[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_548\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-548\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Treating-a-patient-with-a-student-doc.jpg\" alt=\"Treating A Patient With A Student Doc\" width=\"255\" height=\"191\" /> Treating A Patient With A Student Doc[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_547\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-547\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/With-a-local-translator.jpg\" alt=\"With A Local Translator\" width=\"255\" height=\"191\" /> With A Local Translator[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_546\" align=\"aligncenter\" width=\"200\"]<img class=\"size-full wp-image-546\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/With-Disbel-Mansilla-DDS-and-her-staff.jpg\" alt=\"With Disbel Mansilla, Dds And Her Staff\" width=\"200\" height=\"191\" /> With Disbel Mansilla, Dds And Her Staff[/caption]\r\n\r\n</div>','Honduras 2011','','inherit','closed','closed','','543-revision-v1','','','2019-12-04 01:44:54','2019-12-04 01:44:54','',543,'https://www.drfields.com/uncategorized/543-revision-v1/',0,'revision','',0),(3390,9,'2019-12-04 01:46:29','2019-12-04 01:46:29','<img class=\"alignnone wp-image-1685 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc®</h4>\r\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n<h4>Director of OrthoRegen</h4>\r\nDr. Fields is the Director of <a href=\"https://orthoregen.com/\" target=\"_blank\" rel=\"noopener noreferrer\">OrthoRegen</a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\r\n<h4>Regenerative Medicine Expert</h4>\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\">national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n<h4>Hackett-Hemwall Foundation Instructor</h4>\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.\r\n<h4>Prolotherapy Doctor</h4>\r\nDr. Fields is the leading expert in the field or <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h6>The Athletic Doc®</h6>\r\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc® has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"centrevideo\" class=\"text-center\">[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong></div>','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2019-12-04 01:46:29','2019-12-04 01:46:29','',216,'https://www.drfields.com/uncategorized/216-revision-v1/',0,'revision','',0),(3391,9,'2019-12-04 01:46:48','2019-12-04 01:46:48','<img class=\"alignleft wp-image-1685 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc®</h4>\r\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n<h4>Director of OrthoRegen</h4>\r\nDr. Fields is the Director of <a href=\"https://orthoregen.com/\" target=\"_blank\" rel=\"noopener noreferrer\">OrthoRegen</a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\r\n<h4>Regenerative Medicine Expert</h4>\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\">national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n<h4>Hackett-Hemwall Foundation Instructor</h4>\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.\r\n<h4>Prolotherapy Doctor</h4>\r\nDr. Fields is the leading expert in the field or <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h6>The Athletic Doc®</h6>\r\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc® has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"centrevideo\" class=\"text-center\">[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong></div>','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2019-12-04 01:46:48','2019-12-04 01:46:48','',216,'https://www.drfields.com/uncategorized/216-revision-v1/',0,'revision','',0),(3393,9,'2023-08-11 20:53:40','2023-08-11 20:53:40','<h2 style=\"text-align: left;\">The Athletic Doc<sup>®</sup></h2>\nPeter A. Fields, MD, DC has become known as <strong>The Athletic Doc<sup>®.  </sup></strong>\n\nHe not only treats athletes but is an athlete himself, so he understands the desire to keep active. So if you suffer an injury, he gets what it means to you to get back into the game or to return quickly to your sport.\n\n[caption id=\"attachment_374\" align=\"alignright\" width=\"498\"]<img class=\" wp-image-374\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"498\" height=\"369\" /> <em><strong> Pete Jacobs 2012 Ironman World Champion and Dr. Fields           (The Atletic Doc<sup>®)</sup></strong></em><span style=\"font-size: 16px;\">He not only treats athletes in his practice but is an athlete himself.</span>[/caption]\n<h3>How Doctor Fields Became <strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong></h3>\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has led to him becoming known as <strong>The Athletic Doc<sup>®</sup></strong>. To date, he has completed eleven Ironman Triathlons. An Ironman Triathlon is a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\n\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking, or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\n\n[caption id=\"attachment_4938\" align=\"alignleft\" width=\"359\"]<img class=\" wp-image-4938\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/3c2609ba-657a-4097-a191-6a009c32f46e-366x500.jpg\" alt=\"The Athletic Doc Scuba Diving\" width=\"359\" height=\"490\" /> <strong>      <em>The Athletic Doc Scuba Diving</em></strong>[/caption]\n<h3><strong class=\"subhead\">Peter A. Fields, MD, DC</strong> Keeps Active and Fit to Maintain Optimal Health</h3>\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods, and white flour or white sugar products. <em>The Athletic Doc<sup>®</sup></em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic, and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water, and have some quiet time in his life.\n\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\n<h2>About Peter A. Fields, MD, DC</h2>\nDr. Fields is the Director of OrthoRegen<sup>®</sup> in Santa Monica, California, one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr. Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic.\n\nDr. Fields is a leading expert in Regenerative Orthopedic treatments such as Stem Cells, PRP, and Prolotherapy, to help people reduce pain and prevent joint replacement.\n\n<strong><em>The Athletic Doc<sup>®</sup> motto is \"not only train hard but smart – as if your body depended on it\"</em></strong>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<div class=\"fullwidth color_bar\">\n<div id=\"aboutdocgallery\" class=\"col-md-12\">\n<h4>Ironman Photos &amp; Stories</h4>\n<ul>\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" />2017 Ironman Santa Rose</a></li>\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" />2016 Ironman Cozumel</a></li>\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" />2016 Ironman Switzerland</a></li>\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\" />2015 Ironman Cozumel</a></li>\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\" />2015 Ironman Brazil</a></li>\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\" />2014 Ironman Austria</a></li>\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" />2013 Ironman Canada</a></li>\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" />2012 Ironman Cozumel</a></li>\n</ul>\n</div>\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-autosave-v1','','','2023-08-11 20:53:40','2023-08-11 20:53:40','',373,'https://www.drfields.com/uncategorized/373-autosave-v1/',0,'revision','',0),(3394,9,'2019-12-04 01:50:38','2019-12-04 01:50:38','<h4>The Athletic Doc<sup>®</sup></h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img class=\"size-full wp-image-374\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" /> <strong> Pete Jacobs 2012 Ironman<br />World Champion<br />&amp; Dr. Peter A Fields</strong>[/caption]\r\n\r\nDr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became <strong class=\"subhead\">The Athletic Doc®.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc®</strong>. In November 2019, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5><strong class=\"subhead\">The Athletic Doc®</strong> Keeps Active and Fit to Maintain Optimal Health</h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods, and white flour or white sugar products. <em>The Athletic Doc ®</em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5>About <strong>The Athletic Doc® </strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr. Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr. Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc® motto is \"not only train hard but smart – as if your body depended on it\"</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div id=\"aboutdocgallery\" class=\"col-md-12\">\r\n<h4>Ironman Photos &amp; Stories</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" />2017 Ironman Santa Rose</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" />2016 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" />2016 Ironman Switzerland</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\" />2015 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\" />2015 Ironman Brazil</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\" />2014 Ironman Austria</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" />2013 Ironman Canada</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" />2012 Ironman Cozumel</a></li>\r\n</ul>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2019-12-04 01:50:38','2019-12-04 01:50:38','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(3395,9,'2019-12-04 01:52:54','2019-12-04 01:52:54','<div class=\"col-md-8\">\r\n<h4>Chelation Therapy</h4>\r\nChelation (pronounced-“key·lay·shun”) was developed initially as an industrial application in the early 1900’s. It was not until the era of World War II that any medical application was recognized. Initially the treatment was for gas poisoning and exposure to radioactivity. The word, ‘chelation’ is taken from the Greek word “chele”, meaning “claw”. Using this sense of the word, it means to grab or remove an unwanted substance from the body. Chelation is the term used to describe the removal of heavy metal toxicity from the body, as in lead poisoning, iron overload, and aluminum overload. Chelation therapy using EDTA, ethylene diamine tetraacetic acid, has been approved by the U.S. Food and Drug Administration (FDA) as a treatment for lead poisoning and heavy metal toxicity for more than forty years.\r\n\r\nThe theory behind Chelation Therapy is that certain drugs, chelating agents, function by making chemical bonds with heavy metal ions in the body, making these metals less chemically reactive. The resulting compounds, bonded agents and heavy metals, become water soluble, allowing them to enter the bloodstream and be excreted through urination. The chelating process can also remove beneficial metals and nutrients from the body, for example, zinc and calcium; these must be supplemented under the direction of a physician. Because these heavy metal compounds are excreted through the urine, kidney function must also be monitored. To ensure absolute safety, Chelation Therapy should be done by a qualified, licensed physician.\r\n\r\nChelation Therapy has been successfully used for iron overload from multiple transfusions, aluminum overload due to hemodialysis, copper toxicity due to Wilson’s disease and acute heavy metal toxicity. As part of any therapeutic program, lifestyle modifications are encouraged. These would include stress reduction, caffeine avoidance, alcohol limitation, smoking cessation, exercise, and nutritional counseling.\r\n\r\nAt Pacific Prolotherapy and Medical Wellness Center, our goal is for our patients to have an active, healthy, pain free life. We want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment.\r\n\r\n<strong>Call today, [phone]</strong>.\r\n\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\r\n 	<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n 	<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n 	<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n 	<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n 	<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n 	<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Chelation Therapy','','inherit','closed','closed','','1820-revision-v1','','','2019-12-04 01:52:54','2019-12-04 01:52:54','',1820,'https://www.drfields.com/uncategorized/1820-revision-v1/',0,'revision','',0),(3396,8,'2019-12-04 03:21:19','2019-12-04 03:21:19','Degenerative disc disease is a common disorder of the spine that can result in persistent low back, thoracic, and neck pain. While it is widely diagnosed, degenerative disc disease is also widely misunderstood by the medical community and lay public alike.  Perhaps the greatest misconception is the idea that the degenerated discs themselves are the primary cause of pain and therefore require a treatment geared towards replacement or repair of the discs, and missing an important underlying source of instability and pain.\n<h2>Spinal Discs</h2>\nSpinal discs work as a type of shock absorber between the vertebrae, or bones, of your <a href=\"https://www.webmd.com/back-pain/discs-of-the-spine\">spine</a>. They help your back to stay flexible, and allow you to bend and twist. With age, spinal discs can show signs of wear and tear. They begin to break down and may not work as efficiently. Nearly everyone\'s spinal discs will break down with age, but not everyone will feel pain. A person with a degenerated, bulging, or herniated disc noted on an MRI, must realize that this may be a coincidental finding and unrelated to the actual pain he or she is experiencing. How can that be? A degenerated disc is a disc that is losing water and flattening. It is normal for this to occur with age. Interestingly, it is also normal for a disc to bulge while bending. So what is causing the pain then? It is very likely that the pain is being caused by injured ligaments, which are full of nerve tissue, and will send pain signals when tweaked.\n<h2>What Causes the Disc to Degenerate in the First Place?</h2>\nThe disc begins to degenerate as soon as the ligaments of the spine weaken. This happens after some sort of injury to the ligaments, including wear and tear. The weak and loose ligaments allow for an unstable spine and one where the vertebrae are able to move too much, resulting in more injury and pain. In an effort to stabilize the vertebrae, the body tenses the muscles, in an attempt to correct the problem. A person will experience this as muscle spasms. The excessive movement puts extra stress on all of the structures of the spine, including the discs. The discs will respond to the added stress by flattening. A downward cycle of degeneration is created, because the ligaments will now have to work even harder, since the discs can’t do their job correctly, which then weakens the ligaments further, and then adds to the response of the discs to flatten. The sufferer will of course experience pain as a result of the degeneration. The added stress and pressure may cause the disc to herniate. When a disc herniates, it means the soft, gelatinous solution inside is no longer held in place by the tough outer ring of tissue and the disc is now in a weakened state.\n<h2>Regenerative Orthopedics Treats the Instability and Resolves the Pain</h2>\nRegenerative Orthopedics is an effective treatment to stop the cycle of degeneration. Since the underlying problem that starts the discs to degenerate is instability of the spine due to ligament weakness or injury, it would make sense then to strengthen and repair the ligaments. What treatment does that? Right…Regenerative Orthopedics!  In the 1950’s, a doctor named George S. Hackett studied the pathology of chronic low back pain and disc degeneration, and published research linking these conditions to instability of the vertebral column. He was one of the first doctors to ever point to ligament laxity or weakness as a reason that discs become degenerated.\n\nThe soft, compressible spinal discs lie between two vertebrae and provide cushion and shock absorption. The facet joint is where the top vertebrae contact the vertebrae below. This joint is surrounded by a capsule made up of ligaments. Together these segments are known as facet joints. Every time one bends forward, backward, or twists, pressure is put on these facets. They are under a lot of strain all day long!\n\nThe vertebrae themselves are held together through a mesh of ligaments that hold the spine in alignment and take pressure off the facet joints. Dr. Hackett recognized that if the ligaments are loose or damaged, they allow excessive movement of the vertebrae and put extra gravitational pressure on the discs. We’ve noted earlier that when this happens, discs can protrude or herniate. Addressing the underlying ligament laxity is key to treating disc degeneration as well as preventing further damage and degeneration.\n\nBy applying Regenerative Orthopedics, such as Stem Cell Therapy, PRP, Prolotherapy, to the weakened ligaments, the ligaments become strengthened, thereby halting the progressive degeneration of the intervertebral discs. A patient with persistent back pain can be treated with these regenerative injections into the weakened vertebrae of the low back, mid-back, and neck.  Regenerative Orthopedics is very effective at alleviating pain from degenerative disc disease.\n<h2>Spinal Fusion Misses the Mark In The Treatment of Degenerative Disc Disease</h2>\nUnfortunately, the focus of degenerative disc treatment today is often centered on treating the discs, and this treatment is oftentimes surgery. Surgeries can include a discectomy, which removes part of the disc, or may mean removal of the entire disc and replacing it with a cadaver or artificial disc. In some cases, spinal fusion is recommended. During spinal fusion, the damaged discs are removed and replaced, and the affected levels of the vertebrae are then permanently fused together. While these methods increase joint space by inserting replacement discs, they do not address the problem of vertebral instability due to weakened ligaments, and therefore do nothing to actually take pressure off of those discs or preventing the facet joints from further breakdown. It is important to understand that the facets are more commonly the cause of pain. These are where the vertebra on the top connects to the vertebra on the bottom. The vertebra are surrounded by a thick capsule of ligaments that becomes weakened, torn or damaged over time, resulting in a lot of pain. Spinal fusion actually encourages increased degeneration at the sites above and below the fusion, frequently resulting in more pain.\n<h2>Overreliance on Imaging Procedures</h2>\nAnother factor hindering our understanding of vertebral instability and ligament weakness is the dependence on imaging to diagnose and treat musculoskeletal injuries. Of course, MRI imaging is very helpful in the medical fields. However, many rely on imaging instead of using physical examination and good history taking for diagnosing. And as we said earlier, MRI’s can misdiagnose disc herniations. It is important to rule out ligament injury and instability and treat it accordingly especially since a large majority of disc degeneration is due to vertebral instability and ligament weakness. With proper treatment, through therapies like Regenerative Orthopedics, physicians are able to accurately treat the source of their patients’ pain. Rather than undergoing unnecessary surgeries that do not address the root cause of the symptoms, choose instead to seek out a less invasive treatment capable of strengthening weakened ligaments and tendons and thereby eliminating pressure on the vertebral discs.','Degenerative Disc Disease: Proper Diagnosis and Treatment','','inherit','closed','closed','','3306-autosave-v1','','','2019-12-04 03:21:19','2019-12-04 03:21:19','',3306,'https://www.drfields.com/uncategorized/3306-autosave-v1/',0,'revision','',0),(3397,8,'2019-12-04 03:21:20','2019-12-04 03:21:20','Wilbur Back','Degenerative Disc Disease: Proper Diagnosis and Treatment','','inherit','open','closed','','wilbur-back-3','','','2019-12-04 03:21:30','2019-12-04 03:21:30','',3306,'https://www.drfields.com/wp-content/uploads/2019/11/Wilbur-back.png',0,'attachment','image/png',0),(3398,8,'2019-12-04 03:22:14','2019-12-04 03:22:14','','Degenerative Disc Disease: Proper Diagnosis and Treatment','','inherit','open','closed','','gayle-low-back-cycle-1','','','2019-12-04 03:22:27','2019-12-04 03:22:27','',3306,'https://www.drfields.com/wp-content/uploads/2019/11/Gayle-Low-back-cycle-1.png',0,'attachment','image/png',0),(3399,8,'2019-12-04 03:22:34','2019-12-04 03:22:34','<img class=\"alignright size-medium wp-image-3397\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Wilbur-back-500x500.png\" alt=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" width=\"500\" height=\"500\" />Degenerative disc disease is a common disorder of the spine that can result in persistent low back, thoracic, and neck pain. While it is widely diagnosed, degenerative disc disease is also widely misunderstood by the medical community and lay public alike.  Perhaps the greatest misconception is the idea that the degenerated discs themselves are the primary cause of pain and therefore require a treatment geared towards replacement or repair of the discs, and missing an important underlying source of instability and pain.\r\n<h2>Spinal Discs</h2>\r\nSpinal discs work as a type of shock absorber between the vertebrae, or bones, of your <a href=\"https://www.webmd.com/back-pain/discs-of-the-spine\">spine</a>. They help your back to stay flexible, and allow you to bend and twist. With age, spinal discs can show signs of wear and tear. They begin to break down and may not work as efficiently. Nearly everyone\'s spinal discs will break down with age, but not everyone will feel pain. A person with a degenerated, bulging, or herniated disc noted on an MRI, must realize that this may be a coincidental finding and unrelated to the actual pain he or she is experiencing. How can that be? A degenerated disc is a disc that is losing water and flattening. It is normal for this to occur with age. Interestingly, it is also normal for a disc to bulge while bending. So what is causing the pain then? It is very likely that the pain is being caused by injured ligaments, which are full of nerve tissue, and will send pain signals when tweaked.\r\n<h2>What Causes the Disc to Degenerate in the First Place?</h2>\r\nThe disc begins to degenerate as soon as the ligaments of the spine weaken. This happens after some sort of injury to the ligaments, including wear and tear. The weak and loose ligaments allow for an unstable spine and one where the vertebrae are able to move too much, resulting in more injury and pain. In an effort to stabilize the vertebrae, the body tenses the muscles, in an attempt to correct the problem. A person will experience this as muscle spasms. The excessive movement puts extra stress on all of the structures of the spine, including the discs. The discs will respond to the added stress by flattening. A downward cycle of degeneration is created, because the ligaments will now have to work even harder, since the discs can’t do their job correctly, which then weakens the ligaments further, and then adds to the response of the discs to flatten. The sufferer will of course experience pain as a result of the degeneration. The added stress and pressure may cause the disc to herniate. When a disc herniates, it means the soft, gelatinous solution inside is no longer held in place by the tough outer ring of tissue and the disc is now in a weakened state.\r\n<h2>Regenerative Orthopedics Treats the Instability and Resolves the Pain</h2>\r\n<img class=\"alignright size-medium wp-image-3398\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Gayle-Low-back-cycle-1-500x500.png\" alt=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" width=\"500\" height=\"500\" />Regenerative Orthopedics is an effective treatment to stop the cycle of degeneration. Since the underlying problem that starts the discs to degenerate is instability of the spine due to ligament weakness or injury, it would make sense then to strengthen and repair the ligaments. What treatment does that? Right…Regenerative Orthopedics!  In the 1950’s, a doctor named George S. Hackett studied the pathology of chronic low back pain and disc degeneration, and published research linking these conditions to instability of the vertebral column. He was one of the first doctors to ever point to ligament laxity or weakness as a reason that discs become degenerated.\r\n\r\nThe soft, compressible spinal discs lie between two vertebrae and provide cushion and shock absorption. The facet joint is where the top vertebrae contact the vertebrae below. This joint is surrounded by a capsule made up of ligaments. Together these segments are known as facet joints. Every time one bends forward, backward, or twists, pressure is put on these facets. They are under a lot of strain all day long!\r\n\r\nThe vertebrae themselves are held together through a mesh of ligaments that hold the spine in alignment and take pressure off the facet joints. Dr. Hackett recognized that if the ligaments are loose or damaged, they allow excessive movement of the vertebrae and put extra gravitational pressure on the discs. We’ve noted earlier that when this happens, discs can protrude or herniate. Addressing the underlying ligament laxity is key to treating disc degeneration as well as preventing further damage and degeneration.\r\n\r\nBy applying Regenerative Orthopedics, such as Stem Cell Therapy, PRP, Prolotherapy, to the weakened ligaments, the ligaments become strengthened, thereby halting the progressive degeneration of the intervertebral discs. A patient with persistent back pain can be treated with these regenerative injections into the weakened vertebrae of the low back, mid-back, and neck.  Regenerative Orthopedics is very effective at alleviating pain from degenerative disc disease.\r\n<h2>Spinal Fusion Misses the Mark In The Treatment of Degenerative Disc Disease</h2>\r\nUnfortunately, the focus of degenerative disc treatment today is often centered on treating the discs, and this treatment is oftentimes surgery. Surgeries can include a discectomy, which removes part of the disc, or may mean removal of the entire disc and replacing it with a cadaver or artificial disc. In some cases, spinal fusion is recommended. During spinal fusion, the damaged discs are removed and replaced, and the affected levels of the vertebrae are then permanently fused together. While these methods increase joint space by inserting replacement discs, they do not address the problem of vertebral instability due to weakened ligaments, and therefore do nothing to actually take pressure off of those discs or preventing the facet joints from further breakdown. It is important to understand that the facets are more commonly the cause of pain. These are where the vertebra on the top connects to the vertebra on the bottom. The vertebra are surrounded by a thick capsule of ligaments that becomes weakened, torn or damaged over time, resulting in a lot of pain. Spinal fusion actually encourages increased degeneration at the sites above and below the fusion, frequently resulting in more pain.\r\n<h2>Overreliance on Imaging Procedures</h2>\r\nAnother factor hindering our understanding of vertebral instability and ligament weakness is the dependence on imaging to diagnose and treat musculoskeletal injuries. Of course, MRI imaging is very helpful in the medical fields. However, many rely on imaging instead of using physical examination and good history taking for diagnosing. And as we said earlier, MRI’s can misdiagnose disc herniations. It is important to rule out ligament injury and instability and treat it accordingly especially since a large majority of disc degeneration is due to vertebral instability and ligament weakness. With proper treatment, through therapies like Regenerative Orthopedics, physicians are able to accurately treat the source of their patients’ pain. Rather than undergoing unnecessary surgeries that do not address the root cause of the symptoms, choose instead to seek out a less invasive treatment capable of strengthening weakened ligaments and tendons and thereby eliminating pressure on the vertebral discs.','Degenerative Disc Disease: Proper Diagnosis and Treatment','','inherit','closed','closed','','3306-revision-v1','','','2019-12-04 03:22:34','2019-12-04 03:22:34','',3306,'https://www.drfields.com/uncategorized/3306-revision-v1/',0,'revision','',0),(3400,8,'2019-12-04 03:24:22','2019-12-04 03:24:22','<img class=\"alignright size-medium wp-image-3397\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Wilbur-back-500x500.png\" alt=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" width=\"500\" height=\"500\" />Degenerative disc disease is a common disorder of the spine that can result in persistent low back, thoracic, and neck pain. While it is widely diagnosed, degenerative disc disease is also widely misunderstood by the medical community and lay public alike.  Perhaps the greatest misconception is the idea that the degenerated discs themselves are the primary cause of pain and therefore require a treatment geared towards replacement or repair of the discs, and missing an important underlying source of instability and pain.\r\n<h2>Spinal Discs</h2>\r\nSpinal discs work as a type of shock absorber between the vertebrae, or bones, of your <a href=\"https://www.webmd.com/back-pain/discs-of-the-spine\">spine</a>. They help your back to stay flexible, and allow you to bend and twist. With age, spinal discs can show signs of wear and tear. They begin to break down and may not work as efficiently. Nearly everyone\'s spinal discs will break down with age, but not everyone will feel pain. A person with a degenerated, bulging, or herniated disc noted on an MRI, must realize that this may be a coincidental finding and unrelated to the actual pain he or she is experiencing. How can that be? A degenerated disc is a disc that is losing water and flattening. It is normal for this to occur with age. Interestingly, it is also normal for a disc to bulge while bending. So what is causing the pain then? It is very likely that the pain is being caused by injured ligaments, which are full of nerve tissue, and will send pain signals when tweaked.\r\n<h2>What Causes the Disc to Degenerate in the First Place?</h2>\r\nThe disc begins to degenerate as soon as the ligaments of the spine weaken. This happens after some sort of injury to the ligaments, including wear and tear. The weak and loose ligaments allow for an unstable spine and one where the vertebrae are able to move too much, resulting in more injury and pain. In an effort to stabilize the vertebrae, the body tenses the muscles, in an attempt to correct the problem. A person will experience this as muscle spasms. The excessive movement puts extra stress on all of the structures of the spine, including the discs. The discs will respond to the added stress by flattening. A downward cycle of degeneration is created, because the ligaments will now have to work even harder, since the discs can’t do their job correctly, which then weakens the ligaments further, and then adds to the response of the discs to flatten. The sufferer will of course experience pain as a result of the degeneration. The added stress and pressure may cause the disc to herniate. When a disc herniates, it means the soft, gelatinous solution inside is no longer held in place by the tough outer ring of tissue and the disc is now in a weakened state.\r\n<h2>Regenerative Orthopedics Treats the Instability and Resolves the Pain</h2>\r\n<img class=\"alignright size-medium wp-image-3398\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Gayle-Low-back-cycle-1-500x500.png\" alt=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" width=\"500\" height=\"500\" />Regenerative Orthopedics is an effective treatment to stop the cycle of degeneration. Since the underlying problem that starts the discs to degenerate is instability of the spine due to ligament weakness or injury, it would make sense then to strengthen and repair the ligaments. What treatment does that? Right…Regenerative Orthopedics!  In the 1950’s, a doctor named George S. Hackett studied the pathology of chronic low back pain and disc degeneration, and published research linking these conditions to instability of the vertebral column. He was one of the first doctors to ever point to ligament laxity or weakness as a reason that discs become degenerated. The soft, compressible spinal discs lie between two vertebrae and provide cushion and shock absorption. The facet joint is where the top vertebrae contact the vertebrae below. This joint is surrounded by a capsule made up of ligaments. Together these segments are known as facet joints. Every time one bends forward, backward, or twists, pressure is put on these facets. They are under a lot of strain all day long!\r\n\r\nThe vertebrae themselves are held together through a mesh of ligaments that hold the spine in alignment and take pressure off the facet joints. Dr. Hackett recognized that if the ligaments are loose or damaged, they allow excessive movement of the vertebrae and put extra gravitational pressure on the discs. We’ve noted earlier that when this happens, discs can protrude or herniate. Addressing the underlying ligament laxity is key to treating disc degeneration as well as preventing further damage and degeneration.\r\n\r\nBy applying Regenerative Orthopedics, such as Stem Cell Therapy, PRP, Prolotherapy, to the weakened ligaments, the ligaments become strengthened, thereby halting the progressive degeneration of the intervertebral discs. A patient with persistent back pain can be treated with these regenerative injections into the weakened vertebrae of the low back, mid-back, and neck.  Regenerative Orthopedics is very effective at alleviating pain from degenerative disc disease.\r\n<h2>Spinal Fusion Misses the Mark In The Treatment of Degenerative Disc Disease</h2>\r\nUnfortunately, the focus of degenerative disc treatment today is often centered on treating the discs, and this treatment is oftentimes surgery. Surgeries can include a discectomy, which removes part of the disc, or may mean removal of the entire disc and replacing it with a cadaver or artificial disc. In some cases, spinal fusion is recommended. During spinal fusion, the damaged discs are removed and replaced, and the affected levels of the vertebrae are then permanently fused together. While these methods increase joint space by inserting replacement discs, they do not address the problem of vertebral instability due to weakened ligaments, and therefore do nothing to actually take pressure off of those discs or preventing the facet joints from further breakdown. It is important to understand that the facets are more commonly the cause of pain. These are where the vertebra on the top connects to the vertebra on the bottom. The vertebra are surrounded by a thick capsule of ligaments that becomes weakened, torn or damaged over time, resulting in a lot of pain. Spinal fusion actually encourages increased degeneration at the sites above and below the fusion, frequently resulting in more pain.\r\n<h2>Overreliance on Imaging Procedures</h2>\r\nAnother factor hindering our understanding of vertebral instability and ligament weakness is the dependence on imaging to diagnose and treat musculoskeletal injuries. Of course, MRI imaging is very helpful in the medical fields. However, many rely on imaging instead of using physical examination and good history taking for diagnosing. And as we said earlier, MRI’s can misdiagnose disc herniations. It is important to rule out ligament injury and instability and treat it accordingly especially since a large majority of disc degeneration is due to vertebral instability and ligament weakness. With proper treatment, through therapies like Regenerative Orthopedics, physicians are able to accurately treat the source of their patients’ pain. Rather than undergoing unnecessary surgeries that do not address the root cause of the symptoms, choose instead to seek out a less invasive treatment capable of strengthening weakened ligaments and tendons and thereby eliminating pressure on the vertebral discs.','Degenerative Disc Disease: Proper Diagnosis and Treatment','','inherit','closed','closed','','3306-revision-v1','','','2019-12-04 03:24:22','2019-12-04 03:24:22','',3306,'https://www.drfields.com/uncategorized/3306-revision-v1/',0,'revision','',0),(3403,8,'2019-12-06 04:09:48','2019-12-06 04:09:48','Sider 01 V4','Sider 01 V4','Sider 01 V4','inherit','open','closed','','sider-01-v4','','','2019-12-06 04:09:48','2019-12-06 04:09:48','',0,'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V4.jpg',0,'attachment','image/jpeg',0),(3404,8,'2019-12-06 04:10:17','2019-12-06 04:10:17','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V4.jpg\');\">\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Degenerative Disc Disease: Proper Diagnosis and Treatment</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</a></li>\r\n 	<li><a title=\"Why Regenerative Orthopedics Are the Ideal Sports Medicine\" href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a title=\"Do Overuse Injuries Have You Sidelined?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a title=\"Cortisone (Steroid) Injections May Not Be As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a title=\"New Stem Cell Testimonials\" href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-12-06 04:10:17','2019-12-06 04:10:17','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3405,8,'2019-12-06 19:28:44','2019-12-06 19:28:44','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V4.jpg\');\">\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Degenerative Disc Disease: Proper Diagnosis and Treatment</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</a></li>\r\n 	<li><a title=\"Why Regenerative Orthopedics Are the Ideal Sports Medicine\" href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a title=\"Do Overuse Injuries Have You Sidelined?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a title=\"Cortisone (Steroid) Injections May Not Be As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a title=\"New Stem Cell Testimonials\" href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-12-06 19:28:44','2019-12-06 19:28:44','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3407,8,'2019-12-06 20:01:52','2019-12-06 20:01:52','Slider 01 V4 New','Slider 01 V4 New','Slider 01 V4 New','inherit','open','closed','','slider-01-v4-new','','','2019-12-06 20:01:53','2019-12-06 20:01:53','',0,'https://www.drfields.com/wp-content/uploads/2019/12/Slider-01-V4-new.jpg',0,'attachment','image/jpeg',0),(3408,8,'2019-12-06 20:02:23','2019-12-06 20:02:23','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Slider-01-V4-new.jpg\');\">\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Degenerative Disc Disease: Proper Diagnosis and Treatment</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</a></li>\r\n 	<li><a title=\"Why Regenerative Orthopedics Are the Ideal Sports Medicine\" href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a title=\"Do Overuse Injuries Have You Sidelined?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a title=\"Cortisone (Steroid) Injections May Not Be As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a title=\"New Stem Cell Testimonials\" href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-12-06 20:02:23','2019-12-06 20:02:23','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3409,8,'2019-12-10 03:46:59','2019-12-10 03:46:59','Tendonitis is the most common injury to the knee. In general, knee tendonitis refers to inflammation, irritation, or tear of a knee tendon, the thick fibrous cords that attach muscles to bone. One of the most frequent types of tendonitis of the knee is pes anserinus tendonitis, which involves the pes anserinus tendons that lie on the inside and just below the knee joint and which prevent the lower leg from twisting outward while running.\r\n\r\nMiddle-aged adult runners are most susceptible to the development of pes anserinus tendonitis, the most common form. Two other types of knee tendonitis are popliteus tendonitis and semi-membranous tendonitis.\r\n\r\nPatellar tendonitis is inflammation of the patellar tendon, which attaches the kneecap to the tibia or shinbone. The patellar tendon helps your muscles extend your knee.\r\n<h2>How Does Knee Tendonitis Develop?</h2>\r\n<h2><img class=\"alignright size-medium wp-image-3411\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/May-Athlete-Knee-v101219-500x500.jpg\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" /></h2>\r\nTendonitis is caused by overuse, injury, or aging. The pain is usually the result of a small tear in or inflammation of the tendon. Tendonitis can also be associated with inflammatory diseases that occur throughout the body, such as rheumatoid arthritis. Popliteus tendonitis is caused by excessive inward rolling of the feet, called pronation, as well as running downhill, which tends to put excessive stress on this tendon and can cause it to tear or become inflamed. Pes anserine tendonitis, on the other hand, is characterized by inflammation of the medial knee and often coexists with other knee disorders. Semi-membranous tendonitis is characterized by swelling over the posteromedial aspect of the knee and tenderness with resisted flexion or outward-turned strain.\r\n\r\nPatellar tendonitis is an acute condition, such as knee pain following a run. If the tendon is stressed repeatedly, tiny tears can occur in the tendon. If this process persists, the tendon degenerates causing another more chronic tendon condition known as tendinosis.\r\n<h2>Symptoms of Knee Tendonitis</h2>\r\nKnee tendonitis commonly produces pain, tenderness, and stiffness near a joint and is aggravated by movement. The inflamed tendons in the knee are usually painful when moved or touched, and the tendon sheaths may be visibly swollen from the accumulation of fluid and inflammation. Moving the joints near the tendon even slightly may also cause severe pain. The pain may be worse when ascending or descending stairs, when getting up from a seated position, and at night.\r\n<h2>What Is the Typical Treatment for Tendonitis?</h2>\r\nThe typical treatment regime for tendonitis, such as knee tendonitis, rotator cuff tendonitis, or patellar tendonitis, includes rest, ice, non-steroidal anti-inflammatory drugs (NSAIDs), and cortisone injections. Unfortunately, this approach is not able to strengthen the weakened tendon and, thus, does not alleviate the persistent pain that people with this condition experience.\r\n\r\nWhile ice, anti-inflammatory drugs, and cortisone injections may produce short-term pain benefit, they actually inhibit the healing process, because they boost the degeneration of soft tissue and therefore accelerate cartilage degeneration. If the individual with knee tendonitis receives cortisone injections into the tendon, or if they take anti-inflammatories for a very long time, the tendonitis will become tendinosis. This means the tendon becomes degenerated.\r\n\r\nOther modern medical treatment options include cryotherapy and massage. But again, although they may provide pain relief, they do not address the root of the problem – weakened and/or injured tendons and ligaments. When the patient tries these treatment modalities and the pain persists, patients who experience tendonitis may be referred to a surgeon. Unfortunately, surgery has consequences and side effects and may make the problem worse.\r\n<h2>Using Regenerative Orthopedics to Treat Tendonitis</h2>\r\n<img class=\"alignright size-medium wp-image-3410\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Josh-knee-v101219-500x500.png\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" />In treating tendonitis, we recommend stimulating tendon repair and strengthening any weakened or lax ligaments with therapy that includes movement, exercise, and regenerative treatment. This approach will encourage the damaged tissues to heal as quickly as possible.\r\n\r\nKeep in mind, when someone with tendonitis continues to work out while using pain medications or after receiving cortisone injections, they may block the pain, but the tendon will continue to degenerate. You may not feel it at the time, since the pain is being blocked, but more damage is being done to the tendon. It is better to stop the particular athletics that caused the tendonitis.\r\n\r\nYes, movement and exercise are important, but it is necessary to proceed with an exercise that does not put a lot of tension on the tendon. Cycling and swimming are examples of this type of exercise, as long as they do not cause excessive pain. These types of exercise are recommended because movement encourages healing of the tendon.\r\n\r\nRegenerative Orthopedics is used in cases of knee tendonitis, when the tendon does not continue to improve every week or if a tendonitis injury requires extra-quick healing, such as is the case with many athletes. When degeneration of the tendon has transpired, or tendinosis is present, the condition benefits tremendously from these treatments.\r\n\r\nWhen the tendon cannot heal on its own, an underlying ligament problem and joint instability may be occurring, allowing for too much movement of the knee joint. This movement irritates the tendon because the tendon is unable to contract against a stable knee. Regenerative Orthopedics strengthens both the weakened tendons and ligaments.\r\n\r\nComprehensive treatment to the knee involves multiple injections of <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP</a> or a dextrose-based solution or both directed at the affected tendons, ligaments, and other affected structures of the knee. This triggers the immune system to initiate repair of the injured tendons and ligaments. Blood supply dramatically increases in the injured area.\r\n\r\nThe body is alerted that healing needs to take place and reparative cells are sent to the treated area of the knee in need of healing. The body also lays down new collagen in the treated areas, thereby strengthening the weakened structures. Once the tendons and ligaments are strengthened, the joint stabilizes and the tendonitis or tendinosis conditions resolve.\r\n<h2>Think Regenerative Orthopedics May Be for You? Call us!</h2>\r\nTo schedule an appointment, call us on the same line <a href=\"https://www.drfields.com/contact/\">310-453-1234</a> and tell us more about your case. OrthoRegen<sup>®</sup> is a full-time Regenerative Orthopedics medical office with extensive experience in regenerative therapies such as the Gold Standard in Stem Cell therapy, Platelet Rich Plasma, and Prolotherapy regenerative injection solutions. Peter A. Fields, MD, DC is both an MD and a chiropractor.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Knee Tendonitis Treatment','','publish','open','closed','','knee-tendonitis-treatment','','','2020-08-13 19:42:13','2020-08-13 19:42:13','',0,'https://www.drfields.com/?p=3409',0,'post','',0),(3410,8,'2019-12-10 03:46:01','2019-12-10 03:46:01','','Knee Tendonitis Treatment','','inherit','open','closed','','josh-knee-v101219','','','2019-12-10 03:46:54','2019-12-10 03:46:54','',3409,'https://www.drfields.com/wp-content/uploads/2019/12/Josh-knee-v101219.png',0,'attachment','image/png',0),(3411,8,'2019-12-10 03:46:05','2019-12-10 03:46:05','','Knee Tendonitis Treatment','','inherit','open','closed','','may-athlete-knee-v101219','','','2019-12-10 03:46:34','2019-12-10 03:46:34','',3409,'https://www.drfields.com/wp-content/uploads/2019/12/May-Athlete-Knee-v101219.jpg',0,'attachment','image/jpeg',0),(3412,8,'2019-12-10 03:46:59','2019-12-10 03:46:59','Tendonitis is the most common injury to the knee. In general, it refers to an inflammation, irritation or tear of a tendon, the thick fibrous cords that attach muscles to bone. One of the most frequent types of tendonitis of the knee is pes anserinus tendonitis, which involves the pes anserinus tendons that lie on the inside and just below the knee joint and which prevent the lower leg from twisting outward while running. Middle-aged adult runners are most susceptible to the development of pes anserinus tendonitis, the most common form. Two other types of knee tendonitis are popliteus tendonitis and semi-membranous tendonitis.\r\n\r\nPatellar tendonitis is inflammation of the patellar tendon, which attaches the kneecap to the tibia or shinbone.The patellar tendon helps your muscles extend your knee.\r\n<h2>How Does Knee Tendonitis Develop?</h2>\r\n<img class=\"alignright size-medium wp-image-3411\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/May-Athlete-Knee-v101219-500x500.jpg\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" />Tendonitis is caused by overuse, injury or aging. The pain is usually the result of a small tear in or inflammation of the tendon. Tendonitis can also be associated with inflammatory diseases that occur throughout the body, such as rheumatoid arthritis. Popliteus tendonitis is caused by excessive inward rolling of the feet, called pronation, as well as running downhill, which tends to put excessive stress on this tendon and can cause it to tear or become inflamed. Pes anserine tendonitis, on the other hand, is characterized by inflammation of the medial knee, and often coexists with other knee disorders. Semi-membranous tendonitis is characterized by swelling over the posteromedial aspect of the knee and tenderness with resisted flexion or outward-turned strain.\r\n\r\nPatellar tendonitis is an acute condition, such as knee pain following a run. If the tendon is stressed repeatedly, tiny tears can occur in the tendon. If this process persists, the tendon degenerates causing another more chronic tendon condition known as tendinosis.\r\n<h2>Symptoms of Knee Tendonitis</h2>\r\nKnee tendonitis commonly produces pain, tenderness and stiffness near a joint and is aggravated by movement. The inflamed tendons in the knee are usually painful when moved or touched, and the tendon sheaths may be visibly swollen from the accumulation of fluid and inflammation. Moving the joints near the tendon even slightly may also cause severe pain. The pain may be worse when ascending or descending stairs, when getting up from a seated position, and at night.\r\n<h2>What Is the Typical Treatment for Tendonitis?</h2>\r\nThe typical treatment regime for tendonitis, such as knee tendonitis, rotator cuff tendonitis or patellar tendonitis, includes rest, ice, non-steroidal anti-inflammatory drugs (NSAIDs), and cortisone injections. Unfortunately, this approach is not able to strengthen the weakened tendon and, thus, does not alleviate the persistent pain that people with this condition experience. While ice, anti-inflammatory drugs and cortisone injections may produce short-term pain benefit, they actually inhibit the healing process, because they boost the degeneration of soft tissue and therefore accelerate cartilage degeneration. If the individual with tendonitis receives cortisone injections into the tendon, or if they take anti-inflammatories for a very long time, the tendonitis will become tendinosis. This means the tendon becomes degenerated.\r\n\r\nOther modern medical treatment options include cryotherapy and massage. But again, although they may provide pain relief, they do not address the root of the problem – weakened and/or injured tendons and ligaments. When the patient tries these treatment modalities and the pain persists, patients who experience tendonitis may be referred to a surgeon. Unfortunately, surgery has consequences and side effects and may make the problem worse.\r\n<h2>Using Regenerative Orthopedics to Treat Tendonitis</h2>\r\n<img class=\"alignright size-medium wp-image-3410\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Josh-knee-v101219-500x500.png\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" />In treating tendonitis, we recommend stimulating tendon repair and strengthening any weakened or lax ligaments with therapy that includes movement, exercise, and regenerative treatment. This approach will encourage the damaged tissues to heal as quickly as possible.  Keep in mind, when someone with tendonitis continues to work out while using pain medications or after receiving cortisone injections, they may block the pain, but the tendon will continue to degenerate. You may not feel it at the time, since the pain is being blocked, but more damage is being done to the tendon. It is better to stop the particular athletics that caused the tendonitis. Yes, movement and exercise are important, but it is necessary to proceed with an exercise that does not put a lot of tension on the tendon. Cycling and swimming are examples of this type of exercise, as long as they do not cause excessive pain. These types of exercise are recommended because movement encourages healing of the tendon.\r\n\r\nRegenerative Orthopedics is used in cases of tendonitis, when the tendon does not continue to improve every week or if a tendonitis injury requires extra-quick healing, such as is the case with many athletes. When degeneration of the tendon has transpired, or tendinosis is present, the condition benefits tremendously from these treatments. When the tendon cannot heal on its own, an underlying ligament problem and joint instability may be occurring, allowing for too much movement of the knee joint. This movement irritates the tendon because the tendon is unable to contract against a stable knee. Regenerative Orthopedics strengthens both the weakened tendons and ligaments.\r\n\r\nComprehensive treatment to the knee involves multiple injections of PRP or a dextrose-based solution or both directed at the affected tendons, ligaments and other affected structures of the knee. This triggers the immune system to initiate repair of the injured tendons and ligaments. Blood supply dramatically increases at the injured area. The body is alerted that healing needs to take place and reparative cells are sent to the treated area of the knee in need of healing. The body also lays down new collagen at the treated areas, thereby strengthening the weakened structures. Once the tendons and ligaments are strengthened, the joint stabilizes and the tendonitis or tendinosis conditions resolve.\r\n<h2>Think Regenerative Orthopedics May Be for You? Call us!</h2>\r\nTo schedule an appointment, call us at 310-453-1234 and tell us more about your case. OrthoRegen is a full-time Regenerative Orthopedics medical office with extensive experience in regenerative therapies such as the Gold Standard in Stem Cell therapy, Platelet Rich Plasma, and Prolotherapy regenerative injection solutions. Peter A. Fields, MD, DC is both an MD and a chiropractor.','Knee Tendonitis Treatment','','inherit','closed','closed','','3409-revision-v1','','','2019-12-10 03:46:59','2019-12-10 03:46:59','',3409,'https://www.drfields.com/uncategorized/3409-revision-v1/',0,'revision','',0),(3413,8,'2019-12-10 03:47:32','2019-12-10 03:47:32','Tendonitis is the most common injury to the knee. In general, it refers to an inflammation, irritation or tear of a tendon, the thick fibrous cords that attach muscles to bone. One of the most frequent types of tendonitis of the knee is pes anserinus tendonitis, which involves the pes anserinus tendons that lie on the inside and just below the knee joint and which prevent the lower leg from twisting outward while running. Middle-aged adult runners are most susceptible to the development of pes anserinus tendonitis, the most common form. Two other types of knee tendonitis are popliteus tendonitis and semi-membranous tendonitis.\r\n\r\nPatellar tendonitis is inflammation of the patellar tendon, which attaches the kneecap to the tibia or shinbone.The patellar tendon helps your muscles extend your knee.\r\n<h2><img class=\"alignright size-medium wp-image-3411\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/May-Athlete-Knee-v101219-500x500.jpg\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" />How Does Knee Tendonitis Develop?</h2>\r\nTendonitis is caused by overuse, injury or aging. The pain is usually the result of a small tear in or inflammation of the tendon. Tendonitis can also be associated with inflammatory diseases that occur throughout the body, such as rheumatoid arthritis. Popliteus tendonitis is caused by excessive inward rolling of the feet, called pronation, as well as running downhill, which tends to put excessive stress on this tendon and can cause it to tear or become inflamed. Pes anserine tendonitis, on the other hand, is characterized by inflammation of the medial knee, and often coexists with other knee disorders. Semi-membranous tendonitis is characterized by swelling over the posteromedial aspect of the knee and tenderness with resisted flexion or outward-turned strain.\r\n\r\nPatellar tendonitis is an acute condition, such as knee pain following a run. If the tendon is stressed repeatedly, tiny tears can occur in the tendon. If this process persists, the tendon degenerates causing another more chronic tendon condition known as tendinosis.\r\n<h2>Symptoms of Knee Tendonitis</h2>\r\nKnee tendonitis commonly produces pain, tenderness and stiffness near a joint and is aggravated by movement. The inflamed tendons in the knee are usually painful when moved or touched, and the tendon sheaths may be visibly swollen from the accumulation of fluid and inflammation. Moving the joints near the tendon even slightly may also cause severe pain. The pain may be worse when ascending or descending stairs, when getting up from a seated position, and at night.\r\n<h2>What Is the Typical Treatment for Tendonitis?</h2>\r\nThe typical treatment regime for tendonitis, such as knee tendonitis, rotator cuff tendonitis or patellar tendonitis, includes rest, ice, non-steroidal anti-inflammatory drugs (NSAIDs), and cortisone injections. Unfortunately, this approach is not able to strengthen the weakened tendon and, thus, does not alleviate the persistent pain that people with this condition experience. While ice, anti-inflammatory drugs and cortisone injections may produce short-term pain benefit, they actually inhibit the healing process, because they boost the degeneration of soft tissue and therefore accelerate cartilage degeneration. If the individual with tendonitis receives cortisone injections into the tendon, or if they take anti-inflammatories for a very long time, the tendonitis will become tendinosis. This means the tendon becomes degenerated.\r\n\r\nOther modern medical treatment options include cryotherapy and massage. But again, although they may provide pain relief, they do not address the root of the problem – weakened and/or injured tendons and ligaments. When the patient tries these treatment modalities and the pain persists, patients who experience tendonitis may be referred to a surgeon. Unfortunately, surgery has consequences and side effects and may make the problem worse.\r\n<h2>Using Regenerative Orthopedics to Treat Tendonitis</h2>\r\n<img class=\"alignright size-medium wp-image-3410\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Josh-knee-v101219-500x500.png\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" />In treating tendonitis, we recommend stimulating tendon repair and strengthening any weakened or lax ligaments with therapy that includes movement, exercise, and regenerative treatment. This approach will encourage the damaged tissues to heal as quickly as possible.  Keep in mind, when someone with tendonitis continues to work out while using pain medications or after receiving cortisone injections, they may block the pain, but the tendon will continue to degenerate. You may not feel it at the time, since the pain is being blocked, but more damage is being done to the tendon. It is better to stop the particular athletics that caused the tendonitis. Yes, movement and exercise are important, but it is necessary to proceed with an exercise that does not put a lot of tension on the tendon. Cycling and swimming are examples of this type of exercise, as long as they do not cause excessive pain. These types of exercise are recommended because movement encourages healing of the tendon.\r\n\r\nRegenerative Orthopedics is used in cases of tendonitis, when the tendon does not continue to improve every week or if a tendonitis injury requires extra-quick healing, such as is the case with many athletes. When degeneration of the tendon has transpired, or tendinosis is present, the condition benefits tremendously from these treatments. When the tendon cannot heal on its own, an underlying ligament problem and joint instability may be occurring, allowing for too much movement of the knee joint. This movement irritates the tendon because the tendon is unable to contract against a stable knee. Regenerative Orthopedics strengthens both the weakened tendons and ligaments.\r\n\r\nComprehensive treatment to the knee involves multiple injections of PRP or a dextrose-based solution or both directed at the affected tendons, ligaments and other affected structures of the knee. This triggers the immune system to initiate repair of the injured tendons and ligaments. Blood supply dramatically increases at the injured area. The body is alerted that healing needs to take place and reparative cells are sent to the treated area of the knee in need of healing. The body also lays down new collagen at the treated areas, thereby strengthening the weakened structures. Once the tendons and ligaments are strengthened, the joint stabilizes and the tendonitis or tendinosis conditions resolve.\r\n<h2>Think Regenerative Orthopedics May Be for You? Call us!</h2>\r\nTo schedule an appointment, call us at 310-453-1234 and tell us more about your case. OrthoRegen is a full-time Regenerative Orthopedics medical office with extensive experience in regenerative therapies such as the Gold Standard in Stem Cell therapy, Platelet Rich Plasma, and Prolotherapy regenerative injection solutions. Peter A. Fields, MD, DC is both an MD and a chiropractor.','Knee Tendonitis Treatment','','inherit','closed','closed','','3409-revision-v1','','','2019-12-10 03:47:32','2019-12-10 03:47:32','',3409,'https://www.drfields.com/uncategorized/3409-revision-v1/',0,'revision','',0),(3414,8,'2019-12-10 03:47:50','2019-12-10 03:47:50','Tendonitis is the most common injury to the knee. In general, it refers to an inflammation, irritation or tear of a tendon, the thick fibrous cords that attach muscles to bone. One of the most frequent types of tendonitis of the knee is pes anserinus tendonitis, which involves the pes anserinus tendons that lie on the inside and just below the knee joint and which prevent the lower leg from twisting outward while running. Middle-aged adult runners are most susceptible to the development of pes anserinus tendonitis, the most common form. Two other types of knee tendonitis are popliteus tendonitis and semi-membranous tendonitis.\r\n\r\nPatellar tendonitis is inflammation of the patellar tendon, which attaches the kneecap to the tibia or shinbone.The patellar tendon helps your muscles extend your knee.\r\n<h2>How Does Knee Tendonitis Develop?</h2>\r\n<h2><img class=\"alignright size-medium wp-image-3411\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/May-Athlete-Knee-v101219-500x500.jpg\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" /></h2>\r\nTendonitis is caused by overuse, injury or aging. The pain is usually the result of a small tear in or inflammation of the tendon. Tendonitis can also be associated with inflammatory diseases that occur throughout the body, such as rheumatoid arthritis. Popliteus tendonitis is caused by excessive inward rolling of the feet, called pronation, as well as running downhill, which tends to put excessive stress on this tendon and can cause it to tear or become inflamed. Pes anserine tendonitis, on the other hand, is characterized by inflammation of the medial knee, and often coexists with other knee disorders. Semi-membranous tendonitis is characterized by swelling over the posteromedial aspect of the knee and tenderness with resisted flexion or outward-turned strain.\r\n\r\nPatellar tendonitis is an acute condition, such as knee pain following a run. If the tendon is stressed repeatedly, tiny tears can occur in the tendon. If this process persists, the tendon degenerates causing another more chronic tendon condition known as tendinosis.\r\n\r\n&nbsp;\r\n<h2>Symptoms of Knee Tendonitis</h2>\r\nKnee tendonitis commonly produces pain, tenderness and stiffness near a joint and is aggravated by movement. The inflamed tendons in the knee are usually painful when moved or touched, and the tendon sheaths may be visibly swollen from the accumulation of fluid and inflammation. Moving the joints near the tendon even slightly may also cause severe pain. The pain may be worse when ascending or descending stairs, when getting up from a seated position, and at night.\r\n<h2>What Is the Typical Treatment for Tendonitis?</h2>\r\nThe typical treatment regime for tendonitis, such as knee tendonitis, rotator cuff tendonitis or patellar tendonitis, includes rest, ice, non-steroidal anti-inflammatory drugs (NSAIDs), and cortisone injections. Unfortunately, this approach is not able to strengthen the weakened tendon and, thus, does not alleviate the persistent pain that people with this condition experience. While ice, anti-inflammatory drugs and cortisone injections may produce short-term pain benefit, they actually inhibit the healing process, because they boost the degeneration of soft tissue and therefore accelerate cartilage degeneration. If the individual with tendonitis receives cortisone injections into the tendon, or if they take anti-inflammatories for a very long time, the tendonitis will become tendinosis. This means the tendon becomes degenerated.\r\n\r\nOther modern medical treatment options include cryotherapy and massage. But again, although they may provide pain relief, they do not address the root of the problem – weakened and/or injured tendons and ligaments. When the patient tries these treatment modalities and the pain persists, patients who experience tendonitis may be referred to a surgeon. Unfortunately, surgery has consequences and side effects and may make the problem worse.\r\n<h2>Using Regenerative Orthopedics to Treat Tendonitis</h2>\r\n<img class=\"alignright size-medium wp-image-3410\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Josh-knee-v101219-500x500.png\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" />In treating tendonitis, we recommend stimulating tendon repair and strengthening any weakened or lax ligaments with therapy that includes movement, exercise, and regenerative treatment. This approach will encourage the damaged tissues to heal as quickly as possible.  Keep in mind, when someone with tendonitis continues to work out while using pain medications or after receiving cortisone injections, they may block the pain, but the tendon will continue to degenerate. You may not feel it at the time, since the pain is being blocked, but more damage is being done to the tendon. It is better to stop the particular athletics that caused the tendonitis. Yes, movement and exercise are important, but it is necessary to proceed with an exercise that does not put a lot of tension on the tendon. Cycling and swimming are examples of this type of exercise, as long as they do not cause excessive pain. These types of exercise are recommended because movement encourages healing of the tendon.\r\n\r\nRegenerative Orthopedics is used in cases of tendonitis, when the tendon does not continue to improve every week or if a tendonitis injury requires extra-quick healing, such as is the case with many athletes. When degeneration of the tendon has transpired, or tendinosis is present, the condition benefits tremendously from these treatments. When the tendon cannot heal on its own, an underlying ligament problem and joint instability may be occurring, allowing for too much movement of the knee joint. This movement irritates the tendon because the tendon is unable to contract against a stable knee. Regenerative Orthopedics strengthens both the weakened tendons and ligaments.\r\n\r\nComprehensive treatment to the knee involves multiple injections of PRP or a dextrose-based solution or both directed at the affected tendons, ligaments and other affected structures of the knee. This triggers the immune system to initiate repair of the injured tendons and ligaments. Blood supply dramatically increases at the injured area. The body is alerted that healing needs to take place and reparative cells are sent to the treated area of the knee in need of healing. The body also lays down new collagen at the treated areas, thereby strengthening the weakened structures. Once the tendons and ligaments are strengthened, the joint stabilizes and the tendonitis or tendinosis conditions resolve.\r\n<h2>Think Regenerative Orthopedics May Be for You? Call us!</h2>\r\nTo schedule an appointment, call us at 310-453-1234 and tell us more about your case. OrthoRegen is a full-time Regenerative Orthopedics medical office with extensive experience in regenerative therapies such as the Gold Standard in Stem Cell therapy, Platelet Rich Plasma, and Prolotherapy regenerative injection solutions. Peter A. Fields, MD, DC is both an MD and a chiropractor.','Knee Tendonitis Treatment','','inherit','closed','closed','','3409-revision-v1','','','2019-12-10 03:47:50','2019-12-10 03:47:50','',3409,'https://www.drfields.com/uncategorized/3409-revision-v1/',0,'revision','',0),(3415,8,'2019-12-10 03:51:37','2019-12-10 03:51:37','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Slider-01-V4-new.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Knee Tendonitis Treatment</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</a></li>\r\n 	<li><a title=\"Why Regenerative Orthopedics Are the Ideal Sports Medicine\" href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a title=\"Do Overuse Injuries Have You Sidelined?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a title=\"Cortisone (Steroid) Injections May Not Be As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a title=\"New Stem Cell Testimonials\" href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-12-10 03:51:37','2019-12-10 03:51:37','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3416,8,'2019-12-09 06:00:32','2019-12-09 06:00:32','<em>Although many treatments may offer temporary pain relief for arthritis, it is important to find a treatment that does more than chase the symptoms and one that actually repairs the injured soft tissue in order to restore normal motion to the knee joint. In this article in The Townsend Letter, Peter A. Fields, MD, DC discusses Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy which are effective therapies for repair and restoration of motion. These treatments stimulate healing of ligaments, tendons, and restore the normal functioning of the joint, thus preventing the arthritic progression.</em>\r\n\r\n[caption id=\"attachment_3462\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-3462 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-01.jpg\" alt=\"Page 01\" width=\"955\" height=\"1249\" /> Page 01[/caption]\r\n\r\n[caption id=\"attachment_3465\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3465\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-02.jpg\" alt=\"Page 02\" width=\"955\" height=\"1249\" /> Page 02[/caption]\r\n\r\n[caption id=\"attachment_3466\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3466\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-3.jpg\" alt=\"Page 3\" width=\"955\" height=\"1249\" /> Page 03[/caption]\r\n\r\n[caption id=\"attachment_3467\" align=\"aligncenter\" width=\"955\"]<a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"wp-image-3467 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-04.jpg\" alt=\"Page 04\" width=\"955\" height=\"1249\" /></a> Page 04[/caption]\r\n\r\nPeter A. Fields, MD, DC enjoys writing articles in The Townsend Letter and right here on the OrthoRegen <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">website</a> to keep you informed on Regenerative Orthopedics and current health issues. Click <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/\">here</a> to read more articles about Regenerative Orthopedics for arthritis.\r\n\r\nIf you would like us to write about any particular topic, please <a href=\"https://www.drfields.com/contact/\">contact us</a> and let us know of any topic you would want to include.\r\n\r\nAre you a good candidate for Regenerative Orthopedics? Feel free to call us at 310-453-1234.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>\r\n\r\n<em>Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.</em>\r\n<h4><em>Director of OrthoRegen<sup>®</sup></em></h4>\r\n<em>Peter A. Fields, MD, DC is the Director of <a href=\"https://orthoregen.com/\" target=\"_blank\" rel=\"noopener noreferrer\">OrthoRegen<sup>®</sup></a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. Athletes and non-athletes alike come from around the US and the world to receive treatment, because Dr. Fields helps them to avoid unnecessary joint surgeries. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid joint replacement.</em>','Townsend Letter: Arthritis','','publish','open','closed','','townsend-letter-arthritis','','','2020-08-13 20:55:50','2020-08-13 20:55:50','',0,'https://www.drfields.com/?p=3416',0,'post','',0),(3417,8,'2019-12-10 04:27:08','2019-12-10 04:27:08','<img class=\"aligncenter size-full wp-image-1207\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article-2014_Page_1.jpg\" alt=\"Fields July Article 2014 Page 1\" width=\"955\" height=\"1244\" />\n\n<img class=\"aligncenter size-full wp-image-1208\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article2014_Page_2.jpg\" alt=\"Fields July Article2014 Page 2\" width=\"1650\" height=\"2150\" />','July 2014 Townsend Article','','inherit','closed','closed','','1524-autosave-v1','','','2019-12-10 04:27:08','2019-12-10 04:27:08','',1524,'https://www.drfields.com/uncategorized/1524-autosave-v1/',0,'revision','',0),(3418,8,'2019-12-10 04:29:26','2019-12-10 04:29:26','Fields Cover','Fields Cover','Fields Cover','inherit','open','closed','','fields-cover','','','2019-12-10 04:29:26','2019-12-10 04:29:26','',3416,'https://www.drfields.com/wp-content/uploads/2019/12/Fields-cover.jpg',0,'attachment','image/jpeg',0),(3419,8,'2019-12-10 04:31:07','2019-12-10 04:31:07','Osteoarthritis remains the most common joint disease in the world, representing a major cause of disability and an enormous financial and economic burden. Oftentimes, those with degenerated joints end up needing surgical repair or joint replacement. Regenerative medicine is growing in popularity in the medical world as an alternative to surgery. Since surgery comes with many disadvantages, regenerative treatments, like Stem Cell Therapy, offer a way to alleviate pain and restore cartilage providing an exciting way to repair joints in a non-surgical manner.\r\n\r\n<strong>Osteoarthritis: The Disease and its Progression</strong>\r\n\r\nOsteoarthritis is a chronic disease that debilitates the articular joints. It occurs through a sequence of events that has at its core, a loss of joint cartilage, and is characterized by chronic pain, joint stiffness, structural damage and bone remodeling through the progressive loss of cartilage. The disease process affects other joint structures, and eventually will lead to joint space narrowing and bony overgrowth, progressing until joint movement becomes noticeably restricted. Bony overgrowth with the appearance of bone spurs or osteophytes, detected by x-ray, has become the criterion for diagnosing advanced osteoarthritis or radiographic osteoarthritis.\r\n\r\nMany people do not realize what occurs before the cartilage loss. Osteoarthritis almost always begins with unresolved ligament weakness or injury. The weakened and lax ligaments allow for abnormal motion in the joint. With each movement the joint makes, time after time, the joint wears down and becomes damaged.\r\n\r\nJoints are composed of two bones covered with articular cartilage. Healthy cartilage allows the joint to slide, because it has a smooth lubricated surface. Healthy ligaments hold the bones together, and along with the cartilage enable the bones to glide evenly over one another when the joints are in motion. When the ligaments are weak, the bones will glide over one another in an uneven manner, causing one area of bone to bear additional weight on the articular cartilage when the joint is stressed. This uneven distribution expands with ongoing joint stress, weakening the ligaments further, and causing instability of the joint. The increase in abnormal weight distribution inside the joint causes a breakdown of the articular cartilage. Without this surface, the joint loses its smooth gliding motion and becomes limited in its movement. With the ligaments unable to stabilize the joint, the muscles and their tendons will tense in an attempt to stabilize the weakened area, but they too will eventually weaken, producing “knots” and eliciting painful trigger points. The unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing, exposure of the underlying subchondral bone and precipitating a process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called osteoarthritis.\r\n\r\nArticular cartilage has no blood supply, and therefore tends to heal slowly and imperfectly. Cartilage also lacks a neural network and does not elicit pain itself. The pain in osteoarthritis occurs from the pressure on the subchondral bone after the loss of cartilage tissue and from the stress on the tendons and ligaments of the joint.\r\n\r\n<strong>Treatment for Osteoarthritis</strong>\r\n\r\nThere are many medications and procedures that have been tried over the years for relief of pain and treatment of osteoarthritis, but there is still no cure. Exercise, medications, physical therapy, and lifestyle modification may provide symptom relief, but they do nothing to regenerate the joint. Icing the joint and the use of nonsteroidal anti-inflammatory medicines to decrease the swelling, will unfortunately inhibit the natural inflammatory response and normal healing mechanism of the body for soft tissue repair. As such, NSAID’s reduce the body’s ability to repair and hasten the osteoarthritic process. There are however, treatments available that stimulate the regenerative processes in the joint to facilitate the restoration of degenerated cartilage to a healthy state. One regenerative technique that has shown success is Stem Cell Therapy, a non-surgical treatment supplying the affected joint with chondrogenic (cartilage forming) bone marrow-derived mesenchymal stem cells (BMSC). Stem cells have been shown in research to speed up and enhance bone and cartilage repair in osteoarthritic joints.1 Injecting these cells into the degenerated joint supports chondrogenesis, or the process by which cartilage is developed. Since surgery comes with many disadvantages, Stem Cell Therapy to repair defects of articular cartilage provides an exciting alternative. Another fascinating research finding involves evidence of the reduction in the usual progressive destruction of articular cartilage in arthritic disease by mesenchymal/bone marrow stem cells.  Bone marrow stem cells appear to suppress inflammation and release growth factors that combat arthritis and the degenerative process, enabling healing mechanisms to repair articular cartilage and relieve the chronic pain of arthritis. 2\r\n\r\n<strong>A Combination Treatment Far Above the Rest</strong>\r\n\r\n<span lang=\"en\">In our practice, we </span><span lang=\"en\">use the Gold Standard in Stem Cell Therapy, which combines several different regenerative treatments </span><span lang=\"en\">to effectively repair </span><span lang=\"en\">osteo</span><span lang=\"en\">arthritic joints. </span><span lang=\"en\">The treatments are non-surgical, requiring basically no down time, and allowing the patient to stay active. </span> <span lang=\"en\">There is also no</span><span lang=\"en\"> extended time off of work</span><span lang=\"en\"> necessary. </span><span lang=\"en\">Regenerative Orthopedic Therapies are reparative and effective non-surgical alternatives</span><span lang=\"en\">.</span> Dextrose Prolotherapy is a technique that is used to aid the body in healing by prompting it to create new collagen. Various trials and studies have shown the effectiveness of Dextrose Prolotherapy in treating osteoarthritis, as well as ligament and tendon injuries.<a href=\"#sdendnote1sym\" name=\"sdendnote1anc\">i</a>,<a href=\"#sdendnote2sym\" name=\"sdendnote2anc\">ii</a>,<a href=\"#sdendnote3sym\" name=\"sdendnote3anc\">iii</a> Since these regenerative treatments are effective at repairing ligaments and tendons, treatment earlier on in the process has the potential to prevent damage and help with avoidance of the lifestyle adjustments that often transpire with the disease. <span lang=\"en\">In </span><span lang=\"en\">many</span><span lang=\"en\"> cases, Prolotherapy alone is sufficient to bring the pain relief and repair needed. When cases of degeneration are advanced</span>, we turn to the Gold Standard in Stem Cell Therapy, which combines Prolotherapy with components of blood, fat, and bone marrow. Many clinics use only one or two of these procedures, but we have discovered that this combination acts as an amazing regenerative solution to reverse the damage of osteoarthritis on the joint. We comprehensively treat the entire joint with multiple injections of the Platelet Rich Plasma portion of the blood, progenitor cells from a lipoaspirate, and bone marrow aspiration. These regenerative treatments, along with Dextrose Prolotherapy in and around the involved joint offer benefits in terms of pain relief, regenerative properties, and cartilage repair for people affected by musculoskeletal disorders such as osteoarthritis. Dextrose Prolotherapy involves the injection of a hypersmolar dextrose solution into an injury site to elicit localized inflammation, which is the first step in healing the damaged area. The dextrose solution acts as a proliferant via the induction of local inflammatory and wound healing cascades, including fibroblast cells that make collagen. With the addition of the Gold Standard in Stem Cell Therapy, the goal is to enhance the effects of hypertonic Dextrose Prolotherapy and improve treatment outcomes in patients with advanced arthritic conditions. All solutions are centrifuged and concentrated to get a solution with the most concentration of stem cells.  In our experience, we have discovered that these stem cells act as great proliferant solutions for regeneration. We utilize this style of treatment because it addresses the whole joint and not just the effect. That is why it is considered the Gold Standard.\r\n\r\n<strong>What is the Expected Outcome?</strong>\r\n\r\nPatients treated with the Gold Standard in Stem Cell Therapy report significantly decreased pain and significant gains in function and quality of life, exercise ability, range of motion, as well as losses in stiffness and crepitus. These regenerative therapies in conjunction with Dextrose Prolotherapy are a safe and effective treatment for osteoarthritis, one that has the potential to slow down the progression of osteoarthritis and one that promotes the regeneration of articular cartilage. The treatment is essentially a new paradigm in the treatment of osteoarthritis, and one that decrease the need for surgical joint repair and replacement.\r\n\r\n<strong>Not a One Shot Magic Cure</strong>\r\n\r\nAll Stem Cell Treatments are not alike, so it is important to do your homework. Treatments are advertised that may involve just one injection of stem cells, and one injection is most likely insufficient to adequately repair the injured joint. Without comprehensive repair of the joint, sufficient pain relief may not occur. The joint injury that eventually results in osteoarthritis, as noted earlier, involves multiple joint structures. The ligaments that were injured and began the cycle of abnormal joint motion all need to be treated. The degeneration and breakdown of cartilage that is present in arthritis transpires over time. If one ligament is injured, there’s a huge likelihood that other ligaments or soft tissue are also injured. A comprehensive treatment is necessary to strengthen, repair and stabilize ligaments and structures of the joint to prevent destructive forces from continuing the breakdown of cartilage common in osteoarthritis. A single injection is simply not comprehensive enough to reverse the damage affecting the entire joint. In our practice, we address these unnatural hypermobile forces with a multi-injection technique called Comprehensive Regenerative Orthopedics.\r\n\r\nOsteoarthritis is a challenging condition to treat, but Regenerative Injection Therapies offer an effective way to meet the challenge and have been proven to work well to effectively activate cells for regeneration and repair in degenerated osteoarthritic joints and offer the potential for enhancing the quality of life of individuals with the disease.\r\n\r\n<strong><a href=\"https://www.drfields.com/Articles/Prolo-News\">Click here for more articles by Dr. Fields</a></strong>\r\n\r\n1. Wakitani S, Goto T, Pineda SJ, Young RG, Mansour JM, Caplan AI, Goldberg VM. Mesenchymal cell-based repair of large, full-thickness defects of articular cartilage J. Bone Joint Surg. Am. 1994;76:579-92.\r\n2. Burke J, Hunter M, Kolhe R, Isales C, Hamrick M, Fulzele S. Therapeutic potential of mesenchymal stem cell based therapy for osteoarthritis. Clinical and translational medicine. 2016 Aug 10;5(1):27.\r\n<div id=\"sdendnote1\">\r\n\r\n<a href=\"#sdendnote1anc\" name=\"sdendnote1sym\">i</a> Reeves KD, Hassanein K. Randomized prospective double-blind placebo-controlled study of dextrose prolotherapy for knee osteoarthritis with or without ACL laxity. Alt Ther Health Med. 2000; 6(2):68–80.\r\n\r\n</div>\r\n<div id=\"sdendnote2\">\r\n\r\n<a href=\"#sdendnote2anc\" name=\"sdendnote2sym\">ii</a> Dagenais S, Yelland MJ, Del Mar C, Schoene ML. Prolotherapy injections for chronic low-back pain. Cochrane Database Syst Rev. Apr 18, 2007; (2): CD004059.\r\n\r\n</div>\r\n<div id=\"sdendnote3\">\r\n\r\n<a href=\"#sdendnote3anc\" name=\"sdendnote3sym\">iii</a> Rabago D, Zgierska A, Fortney L, et al. Hypertonic dextrose injections (prolotherapy) for knee osteoarthritis: results of a single-arm uncontrolled study with 1-year follow-up. J Altern Complement Med. 2012;18(4): 408–14.\r\n\r\n</div>','Magazine Article on Stem Cell','','inherit','closed','closed','','3416-revision-v1','','','2019-12-10 04:31:07','2019-12-10 04:31:07','',3416,'https://www.drfields.com/uncategorized/3416-revision-v1/',0,'revision','',0),(3420,8,'2019-12-10 04:32:53','2019-12-10 04:32:53','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Slider-01-V4-new.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Knee Tendonitis Treatment</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n	<li class=\"last\"><a title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/magazine-article-on-stem-cell/\">Magazine Article on Stem Cell</a></li>\r\n \r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</a></li>\r\n 	<li><a title=\"Why Regenerative Orthopedics Are the Ideal Sports Medicine\" href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a title=\"Do Overuse Injuries Have You Sidelined?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a title=\"Cortisone (Steroid) Injections May Not Be As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a title=\"New Stem Cell Testimonials\" href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-12-10 04:32:53','2019-12-10 04:32:53','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3462,8,'2019-12-10 09:18:57','2019-12-10 09:18:57','Page 01','Page 01','Page 01','inherit','open','closed','','page-01','','','2019-12-10 09:18:57','2019-12-10 09:18:57','',3416,'https://www.drfields.com/wp-content/uploads/2019/12/Page-01.jpg',0,'attachment','image/jpeg',0),(3463,8,'2020-02-18 17:47:16','2020-02-18 17:47:16','[caption id=\"attachment_3462\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-3462 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-01.jpg\" alt=\"Page 01\" width=\"955\" height=\"1249\" /> Page 01[/caption]\n\n[caption id=\"attachment_3465\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3465\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-02.jpg\" alt=\"Page 02\" width=\"955\" height=\"1249\" /> Page 02[/caption]\n\n[caption id=\"attachment_3466\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3466\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-3.jpg\" alt=\"Page 3\" width=\"955\" height=\"1249\" /> Page 03[/caption]\n\n[caption id=\"attachment_3467\" align=\"aligncenter\" width=\"955\"]<a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\"><img class=\"wp-image-3467 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-04.jpg\" alt=\"Page 04\" width=\"955\" height=\"1249\" /></a> <br />Page 04[/caption]','June 2019 Townsend Article','','inherit','closed','closed','','3416-autosave-v1','','','2020-02-18 17:47:16','2020-02-18 17:47:16','',3416,'https://www.drfields.com/uncategorized/3416-autosave-v1/',0,'revision','',0),(3464,8,'2019-12-10 09:20:57','2019-12-10 09:20:57','<img class=\"aligncenter size-full wp-image-1212\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-1.gif\" alt=\"Townsend Article Feb Mar 2014 1\" width=\"955\" height=\"1249\" data-wp-editing=\"1\" />\n\n<img class=\"aligncenter size-full wp-image-1213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-2.gif\" alt=\"Townsend Article Feb Mar 2014 2\" width=\"955\" height=\"1249\" />','February March 2014 Townsend Article','','inherit','closed','closed','','1526-autosave-v1','','','2019-12-10 09:20:57','2019-12-10 09:20:57','',1526,'https://www.drfields.com/uncategorized/1526-autosave-v1/',0,'revision','',0),(3465,8,'2019-12-10 09:21:24','2019-12-10 09:21:24','Page 02','Page 02','Page 02','inherit','open','closed','','page-02','','','2019-12-10 09:21:24','2019-12-10 09:21:24','',3416,'https://www.drfields.com/wp-content/uploads/2019/12/Page-02.jpg',0,'attachment','image/jpeg',0),(3466,8,'2019-12-10 09:22:15','2019-12-10 09:22:15','Page 3','Page 3','Page 3','inherit','open','closed','','page-3','','','2019-12-10 09:22:15','2019-12-10 09:22:15','',3416,'https://www.drfields.com/wp-content/uploads/2019/12/page-3.jpg',0,'attachment','image/jpeg',0),(3467,8,'2019-12-10 09:22:34','2019-12-10 09:22:34','Page 04','Page 04','Page 04','inherit','open','closed','','page-04','','','2019-12-10 09:22:34','2019-12-10 09:22:34','',3416,'https://www.drfields.com/wp-content/uploads/2019/12/page-04.jpg',0,'attachment','image/jpeg',0),(3468,8,'2019-12-10 09:23:03','2019-12-10 09:23:03','[caption id=\"attachment_3462\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-3462 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-01.jpg\" alt=\"Page 01\" width=\"955\" height=\"1249\" /> Page 01[/caption]\r\n\r\n[caption id=\"attachment_3465\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3465\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-02.jpg\" alt=\"Page 02\" width=\"955\" height=\"1249\" /> Page 02[/caption]\r\n\r\n[caption id=\"attachment_3466\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3466\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-3.jpg\" alt=\"Page 3\" width=\"955\" height=\"1249\" /> Page 3[/caption]\r\n\r\n[caption id=\"attachment_3467\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3467\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-04.jpg\" alt=\"Page 04\" width=\"955\" height=\"1249\" /> Page 04[/caption]','Magazine Article on Stem Cell','','inherit','closed','closed','','3416-revision-v1','','','2019-12-10 09:23:03','2019-12-10 09:23:03','',3416,'https://www.drfields.com/uncategorized/3416-revision-v1/',0,'revision','',0),(3469,8,'2019-12-10 09:24:01','2019-12-10 09:24:01','<img class=\"aligncenter size-full wp-image-1212\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-1.gif\" alt=\"Townsend Article Feb Mar 2014 1\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-2.gif\" alt=\"Townsend Article Feb Mar 2014 2\" width=\"955\" height=\"1249\" />','February March 2014 Townsend Article','','inherit','closed','closed','','1526-revision-v1','','','2019-12-10 09:24:01','2019-12-10 09:24:01','',1526,'https://www.drfields.com/uncategorized/1526-revision-v1/',0,'revision','',0),(3470,8,'2019-12-10 19:46:28','2019-12-10 19:46:28','11th Ironman Completed','11th Ironman Completed','11th Ironman Completed','inherit','open','closed','','sider-01-v7','','','2019-12-10 19:47:30','2019-12-10 19:47:30','',0,'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V7.jpg',0,'attachment','image/jpeg',0),(3471,8,'2019-12-10 19:52:32','2019-12-10 19:52:32','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V7.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC<br>The Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a>\r\n</div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Knee Tendonitis Treatment</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/magazine-article-on-stem-cell/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</a></li>\r\n 	<li><a title=\"Why Regenerative Orthopedics Are the Ideal Sports Medicine\" href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a title=\"Do Overuse Injuries Have You Sidelined?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a title=\"Cortisone (Steroid) Injections May Not Be As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a title=\"New Stem Cell Testimonials\" href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-12-10 19:52:32','2019-12-10 19:52:32','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3472,8,'2019-12-10 19:54:33','2019-12-10 19:54:33','11th Ironman Completed','11th Ironman Completed','11th Ironman Completed','inherit','open','closed','','sider-01-v8','','','2019-12-10 19:54:48','2019-12-10 19:54:48','',0,'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg',0,'attachment','image/jpeg',0),(3473,8,'2019-12-10 19:55:13','2019-12-10 19:55:13','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC<br>The Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a>\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Knee Tendonitis Treatment</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/magazine-article-on-stem-cell/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</a></li>\r\n 	<li><a title=\"Why Regenerative Orthopedics Are the Ideal Sports Medicine\" href=\"https://www.drfields.com/articles/why-regenerative-orthopedics-are-the-ideal-sports-medicine/\">Why Regenerative Orthopedics Are the Ideal Sports Medicine</a></li>\r\n 	<li><a title=\"Do Overuse Injuries Have You Sidelined?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/\">Do Overuse Injuries Have You Sidelined?</a></li>\r\n 	<li><a title=\"Cortisone (Steroid) Injections May Not Be As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-steroid-injections-may-not-be-as-safe-as-you-think/\">Cortisone (Steroid) Injections May Not Be As Safe As You Think</a></li>\r\n 	<li><a title=\"New Stem Cell Testimonials\" href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials\">New Stem Cell Testimonials</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-12-10 19:55:13','2019-12-10 19:55:13','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3474,8,'2019-12-11 03:46:00','2019-12-11 03:46:00','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC<br>The Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a>\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Knee Tendonitis Treatment</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/magazine-article-on-stem-cell/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-12-11 03:46:00','2019-12-11 03:46:00','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3475,8,'2019-12-11 03:49:08','2019-12-11 03:49:08','[caption id=\"attachment_3462\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-3462 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-01.jpg\" alt=\"Page 01\" width=\"955\" height=\"1249\" /> Page 01[/caption]\r\n\r\n[caption id=\"attachment_3465\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3465\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-02.jpg\" alt=\"Page 02\" width=\"955\" height=\"1249\" /> Page 02[/caption]\r\n\r\n[caption id=\"attachment_3466\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3466\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-3.jpg\" alt=\"Page 3\" width=\"955\" height=\"1249\" /> Page 3[/caption]\r\n\r\n[caption id=\"attachment_3467\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3467\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-04.jpg\" alt=\"Page 04\" width=\"955\" height=\"1249\" /> Page 04[/caption]','June 2019 Townsend Article','','inherit','closed','closed','','3416-revision-v1','','','2019-12-11 03:49:08','2019-12-11 03:49:08','',3416,'https://www.drfields.com/uncategorized/3416-revision-v1/',0,'revision','',0),(3476,8,'2019-12-11 04:24:47','2019-12-11 04:24:47','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC<br>The Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a>\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Knee Tendonitis Treatment</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-12-11 04:24:47','2019-12-11 04:24:47','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3477,8,'2019-12-11 04:26:51','2019-12-11 04:26:51','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC<br>The Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a>\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Knee Tendonitis Treatment</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\" style=\"color: #0a2745;font-weight: 700;\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-12-11 04:26:51','2019-12-11 04:26:51','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3478,8,'2019-12-12 03:37:56','2019-12-12 03:37:56','Tendonitis is the most common injury to the knee. In general, it refers to an inflammation, irritation or tear of a tendon, the thick fibrous cords that attach muscles to bone. One of the most frequent types of tendonitis of the knee is pes anserinus tendonitis, which involves the pes anserinus tendons that lie on the inside and just below the knee joint and which prevent the lower leg from twisting outward while running. Middle-aged adult runners are most susceptible to the development of pes anserinus tendonitis, the most common form. Two other types of knee tendonitis are popliteus tendonitis and semi-membranous tendonitis.\r\n\r\nPatellar tendonitis is inflammation of the patellar tendon, which attaches the kneecap to the tibia or shinbone.The patellar tendon helps your muscles extend your knee.\r\n<h2>How Does Knee Tendonitis Develop?</h2>\r\n<h2><img class=\"alignright size-medium wp-image-3411\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/May-Athlete-Knee-v101219-500x500.jpg\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" /></h2>\r\nTendonitis is caused by overuse, injury or aging. The pain is usually the result of a small tear in or inflammation of the tendon. Tendonitis can also be associated with inflammatory diseases that occur throughout the body, such as rheumatoid arthritis. Popliteus tendonitis is caused by excessive inward rolling of the feet, called pronation, as well as running downhill, which tends to put excessive stress on this tendon and can cause it to tear or become inflamed. Pes anserine tendonitis, on the other hand, is characterized by inflammation of the medial knee, and often coexists with other knee disorders. Semi-membranous tendonitis is characterized by swelling over the posteromedial aspect of the knee and tenderness with resisted flexion or outward-turned strain.\r\n\r\nPatellar tendonitis is an acute condition, such as knee pain following a run. If the tendon is stressed repeatedly, tiny tears can occur in the tendon. If this process persists, the tendon degenerates causing another more chronic tendon condition known as tendinosis.\r\n\r\n&nbsp;\r\n<h2>Symptoms of Knee Tendonitis</h2>\r\nKnee tendonitis commonly produces pain, tenderness and stiffness near a joint and is aggravated by movement. The inflamed tendons in the knee are usually painful when moved or touched, and the tendon sheaths may be visibly swollen from the accumulation of fluid and inflammation. Moving the joints near the tendon even slightly may also cause severe pain. The pain may be worse when ascending or descending stairs, when getting up from a seated position, and at night.\r\n<h2>What Is the Typical Treatment for Tendonitis?</h2>\r\nThe typical treatment regime for tendonitis, such as knee tendonitis, rotator cuff tendonitis or patellar tendonitis, includes rest, ice, non-steroidal anti-inflammatory drugs (NSAIDs), and cortisone injections. Unfortunately, this approach is not able to strengthen the weakened tendon and, thus, does not alleviate the persistent pain that people with this condition experience. While ice, anti-inflammatory drugs and cortisone injections may produce short-term pain benefit, they actually inhibit the healing process, because they boost the degeneration of soft tissue and therefore accelerate cartilage degeneration. If the individual with tendonitis receives cortisone injections into the tendon, or if they take anti-inflammatories for a very long time, the tendonitis will become tendinosis. This means the tendon becomes degenerated.\r\n\r\nOther modern medical treatment options include cryotherapy and massage. But again, although they may provide pain relief, they do not address the root of the problem – weakened and/or injured tendons and ligaments. When the patient tries these treatment modalities and the pain persists, patients who experience tendonitis may be referred to a surgeon. Unfortunately, surgery has consequences and side effects and may make the problem worse.\r\n<h2>Using Regenerative Orthopedics to Treat Tendonitis</h2>\r\n<img class=\"alignright size-medium wp-image-3410\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Josh-knee-v101219-500x500.png\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" />In treating tendonitis, we recommend stimulating tendon repair and strengthening any weakened or lax ligaments with therapy that includes movement, exercise, and regenerative treatment. This approach will encourage the damaged tissues to heal as quickly as possible.  Keep in mind, when someone with tendonitis continues to work out while using pain medications or after receiving cortisone injections, they may block the pain, but the tendon will continue to degenerate. You may not feel it at the time, since the pain is being blocked, but more damage is being done to the tendon. It is better to stop the particular athletics that caused the tendonitis. Yes, movement and exercise are important, but it is necessary to proceed with an exercise that does not put a lot of tension on the tendon. Cycling and swimming are examples of this type of exercise, as long as they do not cause excessive pain. These types of exercise are recommended because movement encourages healing of the tendon.\r\n\r\nRegenerative Orthopedics is used in cases of tendonitis, when the tendon does not continue to improve every week or if a tendonitis injury requires extra-quick healing, such as is the case with many athletes. When degeneration of the tendon has transpired, or tendinosis is present, the condition benefits tremendously from these treatments. When the tendon cannot heal on its own, an underlying ligament problem and joint instability may be occurring, allowing for too much movement of the knee joint. This movement irritates the tendon because the tendon is unable to contract against a stable knee. Regenerative Orthopedics strengthens both the weakened tendons and ligaments.\r\n\r\nComprehensive treatment to the knee involves multiple injections of PRP or a dextrose-based solution or both directed at the affected tendons, ligaments and other affected structures of the knee. This triggers the immune system to initiate repair of the injured tendons and ligaments. Blood supply dramatically increases at the injured area. The body is alerted that healing needs to take place and reparative cells are sent to the treated area of the knee in need of healing. The body also lays down new collagen at the treated areas, thereby strengthening the weakened structures. Once the tendons and ligaments are strengthened, the joint stabilizes and the tendonitis or tendinosis conditions resolve.\r\n<h2>Think Regenerative Orthopedics May Be for You? Call us!</h2>\r\nTo schedule an appointment, call us at <a href=\"https://www.drfields.com/contact/\">310-453-1234</a> and tell us more about your case. OrthoRegen is a full-time Regenerative Orthopedics medical office with extensive experience in regenerative therapies such as the Gold Standard in Stem Cell therapy, Platelet Rich Plasma, and Prolotherapy regenerative injection solutions. Peter A. Fields, MD, DC is both an MD and a chiropractor.','Knee Tendonitis Treatment','','inherit','closed','closed','','3409-revision-v1','','','2019-12-12 03:37:56','2019-12-12 03:37:56','',3409,'https://www.drfields.com/uncategorized/3409-revision-v1/',0,'revision','',0),(3479,8,'2019-12-12 03:39:16','2019-12-12 03:39:16','Tendonitis is the most common injury to the knee. In general, it refers to an inflammation, irritation or tear of a tendon, the thick fibrous cords that attach muscles to bone. One of the most frequent types of tendonitis of the knee is pes anserinus tendonitis, which involves the pes anserinus tendons that lie on the inside and just below the knee joint and which prevent the lower leg from twisting outward while running. Middle-aged adult runners are most susceptible to the development of pes anserinus tendonitis, the most common form. Two other types of knee tendonitis are popliteus tendonitis and semi-membranous tendonitis.\r\n\r\nPatellar tendonitis is inflammation of the patellar tendon, which attaches the kneecap to the tibia or shinbone.The patellar tendon helps your muscles extend your knee.\r\n<h2>How Does Knee Tendonitis Develop?</h2>\r\n<h2><img class=\"alignright size-medium wp-image-3411\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/May-Athlete-Knee-v101219-500x500.jpg\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" /></h2>\r\nTendonitis is caused by overuse, injury or aging. The pain is usually the result of a small tear in or inflammation of the tendon. Tendonitis can also be associated with inflammatory diseases that occur throughout the body, such as rheumatoid arthritis. Popliteus tendonitis is caused by excessive inward rolling of the feet, called pronation, as well as running downhill, which tends to put excessive stress on this tendon and can cause it to tear or become inflamed. Pes anserine tendonitis, on the other hand, is characterized by inflammation of the medial knee, and often coexists with other knee disorders. Semi-membranous tendonitis is characterized by swelling over the posteromedial aspect of the knee and tenderness with resisted flexion or outward-turned strain.\r\n\r\nPatellar tendonitis is an acute condition, such as knee pain following a run. If the tendon is stressed repeatedly, tiny tears can occur in the tendon. If this process persists, the tendon degenerates causing another more chronic tendon condition known as tendinosis.\r\n\r\n&nbsp;\r\n<h2>Symptoms of Knee Tendonitis</h2>\r\nKnee tendonitis commonly produces pain, tenderness and stiffness near a joint and is aggravated by movement. The inflamed tendons in the knee are usually painful when moved or touched, and the tendon sheaths may be visibly swollen from the accumulation of fluid and inflammation. Moving the joints near the tendon even slightly may also cause severe pain. The pain may be worse when ascending or descending stairs, when getting up from a seated position, and at night.\r\n<h2>What Is the Typical Treatment for Tendonitis?</h2>\r\nThe typical treatment regime for tendonitis, such as knee tendonitis, rotator cuff tendonitis or patellar tendonitis, includes rest, ice, non-steroidal anti-inflammatory drugs (NSAIDs), and cortisone injections. Unfortunately, this approach is not able to strengthen the weakened tendon and, thus, does not alleviate the persistent pain that people with this condition experience. While ice, anti-inflammatory drugs and cortisone injections may produce short-term pain benefit, they actually inhibit the healing process, because they boost the degeneration of soft tissue and therefore accelerate cartilage degeneration. If the individual with tendonitis receives cortisone injections into the tendon, or if they take anti-inflammatories for a very long time, the tendonitis will become tendinosis. This means the tendon becomes degenerated.\r\n\r\nOther modern medical treatment options include cryotherapy and massage. But again, although they may provide pain relief, they do not address the root of the problem – weakened and/or injured tendons and ligaments. When the patient tries these treatment modalities and the pain persists, patients who experience tendonitis may be referred to a surgeon. Unfortunately, surgery has consequences and side effects and may make the problem worse.\r\n<h2>Using Regenerative Orthopedics to Treat Tendonitis</h2>\r\n<img class=\"alignright size-medium wp-image-3410\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Josh-knee-v101219-500x500.png\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" />In treating tendonitis, we recommend stimulating tendon repair and strengthening any weakened or lax ligaments with therapy that includes movement, exercise, and regenerative treatment. This approach will encourage the damaged tissues to heal as quickly as possible.  Keep in mind, when someone with tendonitis continues to work out while using pain medications or after receiving cortisone injections, they may block the pain, but the tendon will continue to degenerate. You may not feel it at the time, since the pain is being blocked, but more damage is being done to the tendon. It is better to stop the particular athletics that caused the tendonitis. Yes, movement and exercise are important, but it is necessary to proceed with an exercise that does not put a lot of tension on the tendon. Cycling and swimming are examples of this type of exercise, as long as they do not cause excessive pain. These types of exercise are recommended because movement encourages healing of the tendon.\r\n\r\nRegenerative Orthopedics is used in cases of tendonitis, when the tendon does not continue to improve every week or if a tendonitis injury requires extra-quick healing, such as is the case with many athletes. When degeneration of the tendon has transpired, or tendinosis is present, the condition benefits tremendously from these treatments. When the tendon cannot heal on its own, an underlying ligament problem and joint instability may be occurring, allowing for too much movement of the knee joint. This movement irritates the tendon because the tendon is unable to contract against a stable knee. Regenerative Orthopedics strengthens both the weakened tendons and ligaments.\r\n\r\nComprehensive treatment to the knee involves multiple injections of PRP or a dextrose-based solution or both directed at the affected tendons, ligaments and other affected structures of the knee. This triggers the immune system to initiate repair of the injured tendons and ligaments. Blood supply dramatically increases at the injured area. The body is alerted that healing needs to take place and reparative cells are sent to the treated area of the knee in need of healing. The body also lays down new collagen at the treated areas, thereby strengthening the weakened structures. Once the tendons and ligaments are strengthened, the joint stabilizes and the tendonitis or tendinosis conditions resolve.\r\n<h2>Think Regenerative Orthopedics May Be for You? Call us!</h2>\r\nTo schedule an appointment, call us on the same line <a href=\"https://www.drfields.com/contact/\">310-453-1234</a> and tell us more about your case. OrthoRegen is a full-time Regenerative Orthopedics medical office with extensive experience in regenerative therapies such as the Gold Standard in Stem Cell therapy, Platelet Rich Plasma, and Prolotherapy regenerative injection solutions. Peter A. Fields, MD, DC is both an MD and a chiropractor.','Knee Tendonitis Treatment','','inherit','closed','closed','','3409-revision-v1','','','2019-12-12 03:39:16','2019-12-12 03:39:16','',3409,'https://www.drfields.com/uncategorized/3409-revision-v1/',0,'revision','',0),(3482,8,'2019-12-12 03:57:19','2019-12-12 03:57:19','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Knee Tendonitis Treatment</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">\"2020 REHAB SYMPOSIUM\" - \"Regenerative Orthopedics with Dr. Peter Fields\"</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-12-12 03:57:19','2019-12-12 03:57:19','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3483,8,'2019-12-12 04:01:55','2019-12-12 04:01:55','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">Knee Tendonitis Treatment</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-pain-and-toe-conditions-treatment-with-regenerative-orthopedics/\">Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-12-12 04:01:55','2019-12-12 04:01:55','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3484,8,'2019-12-13 03:43:29','2019-12-13 03:43:29','[caption id=\"attachment_3979\" align=\"alignleft\" width=\"309\"]<img class=\" wp-image-3979\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/arthritis.do-what-you-love-500x500.png\" alt=\"Keep Doing What You Love\" width=\"309\" height=\"309\" /> <em>Older Athletes Can Keep Doing What They Love</em>[/caption]\r\n\r\n<strong>     Athletes want to maintain their level of exercise and activity over the years. Understandably so! </strong>Exercise is one of the most effective ways to improve and maintain health. Keeping active physically is correlated with lower risks of cardiovascular disease, lower blood pressure, weight reduction, as well as the provision of an increased sense of well-being.  It’s no wonder that more and more people are becoming active in exercise programs and desire to maintain a level of physical activity throughout life. But is exercise associated with a higher risk of arthritis?\r\n\r\nAthletes—and especially long-time athletes—may wonder if increased joint stress leads to premature “wearing out” of the joints and the development of arthritis.\r\n\r\n&nbsp;\r\n\r\n<em>Studies seem to show that joint injury is the main factor that increases the arthritic risk in athletes. And exercise itself has more of a protective role.</em>\r\n\r\nFor example, having well-developed muscles decreases the loading on the cartilage and thus has a protective effect. <strong>Animal research also shows that exercise, such as running, is not harmful to normal joints even under high loads and over long distances</strong>. However, the same type of exercise done on an injured joint will lead to arthritic change.\r\n\r\nActivities, like bicycling and pool exercises, that maintain flexibility, strengthen the muscle and boost coordination, <strong>actually protect the cartilaginous surfaces</strong>, because they help to maintain joint function.\r\n<h2>Sports Injuries in the Older Athlete</h2>\r\nSports injuries and traumas accumulate over a person\'s life and these can damage the ligaments and cartilage. It is not uncommon for athletes to injure joints. And it is this injury or the non-healing of it that causes the degenerative process to start in the joints.\r\n\r\nThe repetitive low-grade impact from athletic events can be enough to damage the soft tissues and start the arthritic process. Some studies do note an increased incidence of arthritis in particular sports due to their vigorous nature and their propensity to lead to trauma. For example, wrestlers, boxers, baseball pitchers, cyclists, gymnasts, ballet dancers, soccer players, weight lifters, and football players have all been reported to have degenerative joint disease due to sports-related stress. This degeneration occurs due to soft tissue injuries (non-healed injuries) that were not fully addressed.\r\n<h2>The Older Athlete Desires to Stay Fit</h2>\r\nThe hope for the older athlete is to be as fit as when in the prime of their athletic careers. Often, however, this is not the case because of the degeneration that has occurred due to non-healed sports injuries. Sports injuries that lead to symptomatic arthritis later on in life are generally those that occur to the ligaments. That\'s because the ligament injury causes the joint to become unstable.\r\n\r\nTypically, bone spurs develop in the ligaments/fascia (as in plantar fasciitis). And these are generally a sign that the ligaments were no longer able to stabilize the joint. The body responds by bringing in reinforcement in the form of additional bone formation. <strong>This additional bone formation is called arthritis.</strong>\r\n\r\nAthletes want to play sports for a lifetime. Unfortunately for many, the degenerative changes that occur due to non-healed old athletic injuries, combined with a decreased ability to heal, and the natural degeneration that occurs with aging, make sporting injuries commonplace in the older athlete. A lifetime of microtraumas in ligaments and tendons over the years, along with weakening muscles and poor flexibility, can lead to a reoccurrence of these injuries.\r\n<h2><em>The Natural Progression of Arthritis Starts with Ligament Injury</em></h2>\r\nWhat causes the mechanical and molecular events in arthritis to occur? Although cartilage lacks nerve fibers, could cartilage wear and tear be the origin of arthritis? An article published in <em>Gerontology</em> conducts a literary review to prove that arthritis starts with ligament damage. After reviewing numerous research articles, the authors conclude that subchondral bone changes (the bone just beneath cartilage) precede any cartilage change associated with arthritis. These bone changes are due to a loss of tension on the bone at the ligament/bone insertion.<sup>1</sup>\r\n\r\n<em><strong>“The earliest change appears to be at the ligament-bone insertion site</strong></em><strong>.</strong>  We propose that it is a change in the ligament that leads to an alteration in the tension on the bone at the bone-insertion site which precipitates bone remodeling (injury to subchondral bone). The health and integrity of the overlying articular cartilage depend on the mechanical properties of its bony bed.  Ligament injury precedes the subchondral bone changes and these changes occur before articular cartilage degeneration.”<sup>1</sup>\r\n\r\nTaking into account the progression of arthritis, it becomes clear that ligament integrity or lack of integrity is what needs to be treated to prevent further joint destruction. In other words, ligament laxity causes bone changes that in turn cause cartilage change and damage. Ligament laxity is due to ligament damage.\r\n<h2><strong><em>Consider this! </em></strong></h2>\r\nWhen researchers attempt to stimulate arthritis or degeneration in a joint, they do so by damaging the ligaments around the joint. Wow! What happens then? Once the ligaments are damaged, the instability that is created increases the pressure in the joint where the ligaments were injured. The increased pressure then causes an acceleration of the degenerative process. Eventually, the body will stabilize the segment by overgrowing bone. This overgrowth of bone is typically read on x-rays as <a href=\"http://www.getprolo.com/prolotherapy-can-prevent-the-development-of-traumatic-arthritis/\">bone spurs</a>, spondylosis, or fused joints.\r\n<h2><strong>Treatments to Keep the Older Athlete Active</strong></h2>\r\n<em>Gerontology</em> points out the need for therapeutic strategies to be redirected at the healing of the ligament damage- the initial cause of arthritis. Fortunately, Regenerative Orthopedics does just this and can repair the degenerated joint.\r\n\r\nStandard arthritis treatments generally involve only symptom management rather than repair of the joint and include NSAIDs, cortisone shots, and even surgery to provide pain relief.\r\n\r\n<strong><em><u>The most common surgery is arthroscopy which in numerous medical studies was found to be no more effective than placebo in regard to arthritis. </u></em></strong>\r\n\r\nJoint replacements are being recommended more and more, demonstrated by the fact that hundreds of thousands are performed every year. All of these treatments are anti-healing and can cause further degeneration of arthritic joints. <strong>And once the surgery is done it cannot be undone!</strong>\r\n\r\nRegenerative Orthopedics directed at the painful sites where ligaments and tendons connect to bone, as well as at trigger points and adjacent joint spaces, produce a healing response. Along with growth factor stimulation, this induces healing and strengthening of the damaged or diseased structure. The result is the repair of the damaged ligaments and soft tissue which allows the aging athlete to continue with their desired activity and sport. Regenerative Orthopedics can reverse joint damage and alleviate arthritis pain. A number of case studies have shown the success of regenerative techniques in patients with diagnosed arthritis.<sup>2,3</sup>\r\n<h2>Exercise is Beneficial for Older Athlete</h2>\r\nIn a study of almost 17,000 people examined from 1970-1995, high levels of physical activity <strong>were not</strong> associated with symptomatic arthritis in older men and women runners over age 50. Six other reviews on the effectiveness of exercise, both of high and low intensity, on the management of arthritis in the elderly found clinical outcomes of arthritis to be improved.<sup>4 </sup>\r\n\r\nAccording to scientific studies, exercise and recreational activities appear to <strong>not</strong> cause wear-and-tear on the joints.  This can be seen in medical research over many years which supports the findings that exercise is beneficial rather than harmful. The author of a systematic review of multiple medical databases said, “The first consideration with respect to exercise is whether “wear and tear” resulting from repetitive use of articular cartilage is the primary driver for degenerative change. If this were the case, the exercise would lead to progressive arthritis. According to the evidence presented here, this does not seem to be the case.”<sup>5</sup>\r\n<h2>Regenerative Orthopedics for Arthritis in Older Athletes</h2>\r\nIn our opinion, Regenerative Orthopedics is the treatment of choice for treating joint pain in older athletes, due to ligament and other soft tissue injuries. And it is amazing how many athletes end up avoiding surgery once they are treated with Regenerative Orthopedics, because the treatment eliminates the pain, stabilizes the joint, and returns function.\r\n\r\nRegenerative Orthopedics can make a significant impact on the rehabilitation of the injured older athlete. Despite age, typically only four or five sessions are needed for the athletes to achieve complete healing and be back to their physical best. Injections involving the knees, shoulders, hips, ankles, elbows, and other joints can easily be performed with, often, dramatic results and improvement.\r\n<ol>\r\n 	<li>Bailey AJ, Mansell JP. Do subchondral bone changes exacerbate or precede articular cartilage destruction in osteoarthritis of the elderly? Gerontology 1997; 43:296-304.</li>\r\n</ol>\r\n<ol start=\"2\">\r\n 	<li>Hauser R, Woldin B. Treating Osteoarthritic Joints Using Dextrose Prolotherapy and Direct Bone Marrow Aspirate Injection Therapy. <em>Open Arthritis J</em>. 2014; 7:1-9.</li>\r\n</ol>\r\n<ol start=\"3\">\r\n 	<li>Cusi M, Saunders J, Hungerford B, Wisbey-Roth T, Lucas P, Wilson S. The use of prolotherapy in the sacroiliac joint. <em>Br J Sports Med</em>. Feb 2010;44(2):100-104.</li>\r\n</ol>\r\n<ol start=\"4\">\r\n 	<li>Hootman J. Osteoarthritis in elderly persons: Risks of exercise and exercise as therapy. <em>Clinical Journal of Sport Medicine</em>. 2010; 20(3):223.</li>\r\n 	<li>Bosomworth NJ. Exercise and knee osteoarthritis: benefit or hazard? Can Fam Physician 2009; 55:871-878.</li>\r\n</ol>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','How Arthritis Affects Older Athletes','','publish','open','closed','','how-arthritis-affects-older-athletes','','','2020-08-13 19:32:46','2020-08-13 19:32:46','',0,'https://www.drfields.com/?p=3484',0,'post','',0),(3485,8,'2019-12-13 03:43:29','2019-12-13 03:43:29','Athletes want to maintain their level of exercise and activity over the years. Understandably so! Exercise is one of the most effective ways to improve and maintain health. Keeping active physically is correlated with lower risks of cardiovascular disease, lower blood pressure, weight reduction, as well as the provision of an increased sense of well-being.  It’s no wonder that more and more people are becoming active in exercise programs and desire to maintain a level of physical activity throughout life. But is exercise associated with a higher risk of arthritis? Athletes—and especially long-time athletes—may wonder if increased joint stress leads to premature “wearing out” of the joints and the development of arthritis. Studies seem to show that joint injury is the main factor that increases the arthritic risk in athletes. Exercise itself has more of a protective role.\r\n\r\nFor example, having well-developed muscles decreases the loading on the cartilage and thus has a protective effect. <strong>Animal research also shows that exercise, such as running, is not harmful to normal joints even under high loads and over long distances</strong>. However, the same type of exercise done on an injured joint, will lead to arthritic change.\r\n\r\nActivities, like bicycling and pool exercises, that maintain flexibility, strengthen the muscle, and boost coordination, <strong>actually protect the cartilaginous surfaces</strong>, because they help to maintain joint function.\r\n<h2>Sports Injuries in the Older Athlete</h2>\r\nSports injuries and traumas may accumulate over one’s life and these can damage the ligaments and cartilage. It is not uncommon for athletes to injure joints. It is this injury or the non-healing of it that causes the degenerative process to start in the joints. The repetitive low-grade impact from athletic events can be enough to damage the soft tissues and start the arthritic process. Some studies do note an increased incidence of arthritis in particular sports due to their vigorous nature and their propensity to lead to trauma. For example, wrestlers, boxers, baseball pitchers, cyclists, gymnasts, ballet dancers, soccer players, weight lifters, and football players have all been reported to have degenerative joint disease due to sports-related stress. This degeneration occurs due to soft tissue injuries (non-healed injuries) that were not fully addressed.\r\n<h2>The Older Athlete Desires to Stay Fit</h2>\r\nThe hope for the older athlete is to be as fit as when in the prime of their athletic careers. Often, however, this is not the case because of the degeneration that has occurred due to non-healed sports injuries. Sports injuries that lead to symptomatic arthritis later on are generally those that occur to the ligaments, because the ligament injury causes the joint to become unstable. Typically, bone spurs develop in the ligaments/fascia (as in plantar fasciitis) and these are generally a sign that the ligaments were no longer able to stabilize the joint, and therefore the body brings in reinforcement in the form of additional bone formation. This additional bone formation is called arthritis.\r\n\r\nSporting activities should be performed for a lifetime. Unfortunately for many, the degenerative changes that occur due to non-healed old athletic injuries, combined with a decreased ability to heal, and the natural degeneration that occurs with aging, make sporting injuries commonplace in the older athlete. A lifetime of microtraumas in ligaments and tendons over the years, along with weakening muscles and poor flexibility, can lead to a reoccurrence of these injuries.\r\n<h2><em>The Natural Progression of Arthritis Starts with Ligament Injury</em></h2>\r\nWhat causes the mechanical and molecular events in arthritis to occur? Although cartilage lacks nerve fibers, could cartilage wear and tear be the origin of arthritis? An article published in <em>Gerontology</em> conducts a literary review to prove that arthritis starts with ligament damage. Reviewing numerous research articles, the authors conclude that subchondral bone changes (the bone just beneath cartilage) precede any cartilage change associated with arthritis. These bone changes are due to a loss of tension on bone at the ligament/bone insertion.<sup>1</sup>\r\n\r\n<em><strong>“The earliest change appears to be at the ligament-bone insertion site</strong></em><strong>.</strong>  We propose that it is a change in the ligament that leads to an alteration in the tension on the bone at the bone-insertion site which precipitates bone remodeling (injury to subchondral bone). The health and integrity of the overlying articular cartilage depends on the mechanical properties of its bony bed.  Ligament injury precedes the subchondral bone changes and these changes occur before articular cartilage degeneration.”<sup>1</sup>\r\n\r\nTaking into account the progression of arthritis, it becomes clear that the ligament integrity or lack of integrity is what needs to be treated to prevent further joint destruction. In other words, ligament laxity causes bone changes that in turn cause cartilage change and damage. Ligament laxity is due to ligament damage.\r\n<h2><strong><em>Consider this! </em></strong></h2>\r\nWhen researchers attempt to stimulate arthritis or degeneration in a joint, they do so by damaging the ligaments around the joint. The instability that is created increases the pressure in the joint where the ligaments were injured. The increased pressure then causes an acceleration of the degenerative process. Eventually the body will stabilize the segment by overgrowing bone. This overgrowth of bone is typically read on x-rays as <a href=\"http://www.getprolo.com/prolotherapy-can-prevent-the-development-of-traumatic-arthritis/\">bone spurs</a>, spondylosis, or fused joints.\r\n<h2><strong>Treatments to Keep the Older Athlete Active</strong></h2>\r\n<em>Gerontology</em> points out the need for therapeutic strategies to be redirected at the healing of the ligament damage- the initial cause of arthritis. Fortunately, Regenerative Orthopedics does just this, and can repair the degenerated joint.\r\n\r\nStandard arthritis treatments generally involve only symptom management rather than repair of the joint, and include NSAIDS, cortisone shots, and even surgery to provide pain relief.\r\n\r\n<strong><em><u>The most common surgery is arthroscopy which in numerous medical studies was found to be no more effective than placebo in regard to arthritis. </u></em></strong>\r\n\r\nJoint replacements are being recommended more and more, demonstrated by the fact that hundreds of thousands are performed every year. All of these treatments are anti-healing and can cause further degeneration of arthritic joints. <strong>And once surgery is done it cannot be un-done!</strong>\r\n\r\nRegenerative Orthopedics directed at the painful sites where ligaments and tendons connect to bone, as well as at trigger points and adjacent joint spaces, produce a healing response, along with growth factor stimulation, which induce healing and strengthening of the damaged or diseased structure. This repairs the damaged ligaments and soft tissue, and allows the aging athlete to continue with their desired activity and sport. Regenerative Orthopedics can reverse joint damage and alleviate arthritis pain. A number of case studies have shown the success of regenerative techniques in patients with diagnosed arthritis.<sup>2,3</sup>\r\n<h2>Exercise is Beneficial for Older Athlete</h2>\r\nIn a study of almost 17,000 people examined from 1970-1995, high levels of physical activity <strong>were not</strong> associated with symptomatic arthritis in older men and women runners over age 50. Six other reviews on the effectiveness of exercise, both of high and low intensity, on the management of arthritis in the elderly found clinical outcomes of arthritis to be improved.<sup>4 </sup>\r\n\r\nExercise and recreational activities appear not to cause wear-and-tear on the joints according to the scientific studies. This can be seen in medical research over many years which support the findings that exercise is beneficial rather than harmful. The author of a systematic review of multiple medical data bases said this, “The first consideration with respect to exercise is whether “wear and tear” resulting from repetitive use of articular cartilage is the primary driver for degenerative change. If this were the case, exercise would lead to progressive arthritis. According to the evidence presented here, this does not seem to be the case.”<sup>5</sup>\r\n<h2>Regenerative Orthopedics for Arthritis in Older Athletes</h2>\r\nIn our opinion, Regenerative Orthopedics is the treatment of choice for treating joint pain in older athletes, due to ligament and other soft tissue injury. It is amazing how many athletes end up avoiding surgery once they are treated with Regenerative Orthopedics, because the treatment eliminates the pain, stabilizes the joint, and returns function.\r\n\r\nRegenerative Orthopedics can make a significant impact in the rehabilitation of the injured older athlete. Despite age, typically only four or five sessions are needed for the athletes to achieve complete healing and be back to their physical best. Injections involving the knees, shoulders, hips, ankles, elbows and more can easily be performed with, often, dramatic results and improvement.\r\n<ol>\r\n 	<li>Bailey AJ, Mansell JP. Do subchondral bone changes exacerbate or precede articular cartilage destruction in osteoarthritis of the elderly? Gerontology 1997; 43:296-304.</li>\r\n</ol>\r\n<ol start=\"2\">\r\n 	<li>Hauser R, Woldin B. Treating Osteoarthritic Joints Using Dextrose Prolotherapy and Direct Bone Marrow Aspirate Injection Therapy. <em>Open Arthritis J</em>. 2014; 7:1-9.</li>\r\n</ol>\r\n<ol start=\"3\">\r\n 	<li>Cusi M, Saunders J, Hungerford B, Wisbey-Roth T, Lucas P, Wilson S. The use of prolotherapy in the sacroiliac joint. <em>Br J Sports Med</em>. Feb 2010;44(2):100-104.</li>\r\n</ol>\r\n<ol start=\"4\">\r\n 	<li>Hootman J. Osteoarthritis in elderly persons: Risks of exercise and exercise as therapy. <em>Clinical Journal of Sport Medicine</em>. 2010; 20(3):223.</li>\r\n 	<li>Bosomworth NJ. Exercise and knee osteoarthritis: benefit or hazard? Can Fam Physician 2009; 55:871-878.</li>\r\n</ol>','How Arthritis Affects the Older Athlete','','inherit','closed','closed','','3484-revision-v1','','','2019-12-13 03:43:29','2019-12-13 03:43:29','',3484,'https://www.drfields.com/uncategorized/3484-revision-v1/',0,'revision','',0),(3486,8,'2019-12-13 03:48:28','2019-12-13 03:48:28','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n        <li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2019-12-13 03:48:28','2019-12-13 03:48:28','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3487,8,'2019-12-17 04:17:16','2019-12-17 04:17:16','<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/Q9wC21l7XRs\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','Lectures','','publish','closed','closed','','lectures','','','2019-12-17 04:18:59','2019-12-17 04:18:59','',0,'https://www.drfields.com/?page_id=3487',0,'page','',0),(3488,8,'2019-12-17 04:17:16','2019-12-17 04:17:16','','Lectures','','inherit','closed','closed','','3487-revision-v1','','','2019-12-17 04:17:16','2019-12-17 04:17:16','',3487,'https://www.drfields.com/uncategorized/3487-revision-v1/',0,'revision','',0),(3489,8,'2019-12-17 04:18:59','2019-12-17 04:18:59','<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/Q9wC21l7XRs\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','Lectures','','inherit','closed','closed','','3487-revision-v1','','','2019-12-17 04:18:59','2019-12-17 04:18:59','',3487,'https://www.drfields.com/uncategorized/3487-revision-v1/',0,'revision','',0),(3490,8,'2019-12-17 08:51:19','2019-12-17 08:51:19','<div class=\"review-us\">\r\n	<div class=\"fleft\">\r\n      <a title=\"Facebook\" href=\"https://www.facebook.com/PeterAFieldsMDDC/\" target=\"_blank\" rel=\"noopener noreferrer\">\r\n        <img title=\"Facebook\"  src=\"https://www.drfields.com/wp-content/uploads/2019/12/facebook-v141219.jpg\" alt=\"Facebook\" >\r\n      </a>\r\n   </div>\r\n   <div class=\"fleft\">\r\n      <a title=\"Yelp\" href=\"https://www.yelp.com/biz/peter-a-fields-md-dc-santa-monica-3?osq=peter+fields\" target=\"_blank\" rel=\"noopener noreferrer\">\r\n        <img title=\"Yelp\"  src=\"https://www.drfields.com/wp-content/uploads/2019/12/yelp-v141219.jpg\" alt=\"Yelp\">\r\n      </a>\r\n   </div>\r\n   <div class=\"fleft\">\r\n      <a title=\"Google Plus\" href=\"https://www.google.com/search?q=peter+fields&oq=peter+fields+&aqs=chrome..69i57j35i39j0l3j69i60l3.4139j0j4&sourceid=chrome&ie=UTF-8#lrd=0x80c2bb37ac9f2427:0xc7e5f010fb1173b5,1,,,\" target=\"_blank\"  rel=\"noopener noreferrer\">\r\n         <img title=\"Google Plus\"  src=\"https://www.drfields.com/wp-content/uploads/2019/12/google-v141219.jpg\" alt=\"Google Plus\">\r\n      </a>\r\n   </div>\r\n   <div class=\"fleft\">\r\n      <a title=\"Youtube\" href=\"https://www.youtube.com/user/prolotherapy1\" target=\"_blank\"  rel=\"noopener noreferrer\">\r\n        <img title=\"Youtube\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/youtube-v141219.jpg\" alt=\"Youtube\" >\r\n      </a>\r\n   </div>\r\n   \r\n</div>','Review Us','','publish','closed','closed','','review-us','','','2019-12-17 09:17:52','2019-12-17 09:17:52','',0,'https://www.drfields.com/?page_id=3490',0,'page','',0),(3491,8,'2019-12-17 08:51:19','2019-12-17 08:51:19','','Review','','inherit','closed','closed','','3490-revision-v1','','','2019-12-17 08:51:19','2019-12-17 08:51:19','',3490,'https://www.drfields.com/uncategorized/3490-revision-v1/',0,'revision','',0),(3492,8,'2022-12-02 06:01:38','2019-12-17 08:52:19',' ','','','publish','closed','closed','','3492','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=3492',30,'nav_menu_item','',0),(3493,8,'2019-12-17 08:58:52','2019-12-17 08:58:52','Yelp V141219','Yelp V141219','Yelp V141219','inherit','open','closed','','yelp-v141219','','','2019-12-17 08:58:52','2019-12-17 08:58:52','',0,'https://www.drfields.com/wp-content/uploads/2019/12/yelp-v141219.jpg',0,'attachment','image/jpeg',0),(3494,8,'2019-12-17 08:58:54','2019-12-17 08:58:54','Youtube V141219','Youtube V141219','Youtube V141219','inherit','open','closed','','youtube-v141219','','','2019-12-17 08:58:54','2019-12-17 08:58:54','',0,'https://www.drfields.com/wp-content/uploads/2019/12/youtube-v141219.jpg',0,'attachment','image/jpeg',0),(3495,8,'2019-12-17 08:58:55','2019-12-17 08:58:55','Facebook V141219','Facebook V141219','Facebook V141219','inherit','open','closed','','facebook-v141219','','','2019-12-17 08:58:55','2019-12-17 08:58:55','',0,'https://www.drfields.com/wp-content/uploads/2019/12/facebook-v141219.jpg',0,'attachment','image/jpeg',0),(3496,8,'2019-12-17 08:58:56','2019-12-17 08:58:56','Google V141219','Google V141219','Google V141219','inherit','open','closed','','google-v141219','','','2019-12-17 08:58:56','2019-12-17 08:58:56','',0,'https://www.drfields.com/wp-content/uploads/2019/12/google-v141219.jpg',0,'attachment','image/jpeg',0),(3497,8,'2019-12-17 09:13:41','2019-12-17 09:13:41','<div class=\"review-us\">\r\n	<div class=\"fleft\">\r\n      <a title=\"Facebook\" href=\"https://www.facebook.com/PeterAFieldsMDDC/\" target=\"_blank\" rel=\"noopener noreferrer\">\r\n        <img title=\"Facebook\"  src=\"https://www.drfields.com/wp-content/uploads/2019/12/facebook-v141219.jpg\" alt=\"Facebook\" >\r\n      </a>\r\n   </div>\r\n   <div class=\"fleft\">\r\n      <a title=\"Yelp\" href=\"https://www.yelp.com/biz/peter-a-fields-md-dc-santa-monica-3?osq=peter+fields\" target=\"_blank\" rel=\"noopener noreferrer\">\r\n        <img title=\"Yelp\"  src=\"https://www.drfields.com/wp-content/uploads/2019/12/yelp-v141219.jpg\" alt=\"Yelp\">\r\n      </a>\r\n   </div>\r\n   <div class=\"fleft\">\r\n      <a title=\"Google Plus\" href=\"https://www.google.com/search?q=peter+fields&oq=peter+fields+&aqs=chrome..69i57j35i39j0l3j69i60l3.4139j0j4&sourceid=chrome&ie=UTF-8#lrd=0x80c2bb37ac9f2427:0xc7e5f010fb1173b5,1,,,\" target=\"_blank\"  rel=\"noopener noreferrer\">\r\n         <img title=\"Google Plus\"  src=\"https://www.drfields.com/wp-content/uploads/2019/12/google-v141219.jpg\" alt=\"Google Plus\">\r\n      </a>\r\n   </div>\r\n   <div class=\"fleft\">\r\n      <a title=\"Youtube\" href=\"https://www.youtube.com/user/prolotherapy1\" target=\"_blank\"  rel=\"noopener noreferrer\">\r\n        <img title=\"Youtube\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/youtube-v141219.jpg\" alt=\"Youtube\" >\r\n      </a>\r\n   </div>\r\n   \r\n</div>','Review','','inherit','closed','closed','','3490-revision-v1','','','2019-12-17 09:13:41','2019-12-17 09:13:41','',3490,'https://www.drfields.com/uncategorized/3490-revision-v1/',0,'revision','',0),(3498,8,'2019-12-17 09:17:52','2019-12-17 09:17:52','<div class=\"review-us\">\r\n	<div class=\"fleft\">\r\n      <a title=\"Facebook\" href=\"https://www.facebook.com/PeterAFieldsMDDC/\" target=\"_blank\" rel=\"noopener noreferrer\">\r\n        <img title=\"Facebook\"  src=\"https://www.drfields.com/wp-content/uploads/2019/12/facebook-v141219.jpg\" alt=\"Facebook\" >\r\n      </a>\r\n   </div>\r\n   <div class=\"fleft\">\r\n      <a title=\"Yelp\" href=\"https://www.yelp.com/biz/peter-a-fields-md-dc-santa-monica-3?osq=peter+fields\" target=\"_blank\" rel=\"noopener noreferrer\">\r\n        <img title=\"Yelp\"  src=\"https://www.drfields.com/wp-content/uploads/2019/12/yelp-v141219.jpg\" alt=\"Yelp\">\r\n      </a>\r\n   </div>\r\n   <div class=\"fleft\">\r\n      <a title=\"Google Plus\" href=\"https://www.google.com/search?q=peter+fields&oq=peter+fields+&aqs=chrome..69i57j35i39j0l3j69i60l3.4139j0j4&sourceid=chrome&ie=UTF-8#lrd=0x80c2bb37ac9f2427:0xc7e5f010fb1173b5,1,,,\" target=\"_blank\"  rel=\"noopener noreferrer\">\r\n         <img title=\"Google Plus\"  src=\"https://www.drfields.com/wp-content/uploads/2019/12/google-v141219.jpg\" alt=\"Google Plus\">\r\n      </a>\r\n   </div>\r\n   <div class=\"fleft\">\r\n      <a title=\"Youtube\" href=\"https://www.youtube.com/user/prolotherapy1\" target=\"_blank\"  rel=\"noopener noreferrer\">\r\n        <img title=\"Youtube\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/youtube-v141219.jpg\" alt=\"Youtube\" >\r\n      </a>\r\n   </div>\r\n   \r\n</div>','Review Us','','inherit','closed','closed','','3490-revision-v1','','','2019-12-17 09:17:52','2019-12-17 09:17:52','',3490,'https://www.drfields.com/uncategorized/3490-revision-v1/',0,'revision','',0),(3499,8,'2019-12-17 19:26:54','2019-12-17 19:26:54','','iwp_log_5df92bfe0534e','','publish','closed','closed','','iwp_log_5df92bfe0534e','','','2019-12-17 19:26:54','2019-12-17 19:26:54','',0,'https://www.drfields.com/uncategorized/iwp_log_5df92bfe0534e/',0,'iwp_log','',0),(3500,8,'2019-12-17 19:27:13','2019-12-17 19:27:13','','iwp_log_5df92c11a1d8e','','publish','closed','closed','','iwp_log_5df92c11a1d8e','','','2019-12-17 19:27:13','2019-12-17 19:27:13','',0,'https://www.drfields.com/uncategorized/iwp_log_5df92c11a1d8e/',0,'iwp_log','',0),(3501,8,'2019-12-17 19:27:22','2019-12-17 19:27:22','','iwp_log_5df92c1a51591','','publish','closed','closed','','iwp_log_5df92c1a51591','','','2019-12-17 19:27:22','2019-12-17 19:27:22','',0,'https://www.drfields.com/uncategorized/iwp_log_5df92c1a51591/',0,'iwp_log','',0),(3502,8,'2019-12-17 19:27:34','2019-12-17 19:27:34','','iwp_log_5df92c262a1e2','','publish','closed','closed','','iwp_log_5df92c262a1e2','','','2019-12-17 19:27:34','2019-12-17 19:27:34','',0,'https://www.drfields.com/uncategorized/iwp_log_5df92c262a1e2/',0,'iwp_log','',0),(3504,8,'2020-07-08 21:22:40','2020-07-08 21:22:40','Logo Orthoregen V181219','OrthoRegen-Logo-R','','inherit','open','closed','','orthoregen-logo-r','','','2020-07-08 21:22:40','2020-07-08 21:22:40','',0,'https://www.drfields.com/wp-content/uploads/2019/12/OrthoRegen-Logo-R.png',0,'attachment','image/png',0),(3506,8,'2019-12-20 13:50:50','2019-12-20 13:50:50','','iwp_log_5dfd426f1c96c','','publish','closed','closed','','iwp_log_5dfd426f1c96c','','','2019-12-20 13:50:50','2019-12-20 13:50:50','',0,'https://www.drfields.com/uncategorized/iwp_log_5dfd426f1c96c/',0,'iwp_log','',0),(3508,8,'2020-01-14 18:52:51','2020-01-14 18:52:51','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article By Dr. Fields</span>\r\n<!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n        <li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-01-14 18:52:51','2020-01-14 18:52:51','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3509,8,'2020-01-14 18:55:18','2020-01-14 18:55:18','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_second\">New Article By Dr. Fields</span>\r\n<!--<span class=\"header_text_first\">New Article By Dr. Fields</span>-->\r\n<!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n        <li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-01-14 18:55:18','2020-01-14 18:55:18','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (3510,8,'2020-01-14 18:56:07','2020-01-14 18:56:07','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n        <li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	<li class=\"last\"><a title=\"Persistent Elbow Pain\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/\">Persistent Elbow Pain</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-01-14 18:56:07','2020-01-14 18:56:07','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3511,8,'2020-01-20 03:42:38','2020-01-20 03:42:38','Is your hip pain from bursitis? Have you been treating your hip pain with bursitis treatments like steroids and non-steroidal anti-inflammatories? There are times these treatments help to give some relief, but many people continue to experience a substantial amount of discomfort even after trying them. Plus, continued use of steroids injected into a degenerated joint can unfortunately increase the rate of degeneration.\r\n\r\nWhy not treat the pain with treatments that regenerate rather than degenerate the joint structures? In this article, we will discuss hip bursitis,  various treatment options, and other reasons for hip pain that cause bursitis like symptoms.\r\n<h2>Is Your Hip Pain Really Bursitis?</h2>\r\n<strong><em>We see quite a few patients</em></strong> who come to our office for treatment of bursitis who do not actually have bursitis. Bursitis is so painful that even touching the skin over the painful area is difficult to tolerate. If the area can be palpated with a lot of pressure by the doctor, the patient may not have bursitis. What could the problem be then?\r\n<h3><em>Hip Bursitis or Badly Degenerated Tendons?</em></h3>\r\n<strong><em>Hip Bursitis, or trochanteric bursitis, is actually rare!</em></strong> Multiple studies have shown that patients presenting with bursitis type symptoms actually have tendinopathy (tendon degeneration) of their gluteal tendons. These tendons attach near the bursa and often fool providers into thinking the patients have bursitis. <em><strong>Badly degenerated tendons are what they really have. And they need regeneration! </strong></em>\r\n\r\nOn top of that, as we mentioned, steroid injections are often used as the treatment for true bursitis. So when steroids are injected into the degenerated tendons, they actually can cause them to degenerate faster! Tendinopathy of the gluteus minimus or gluteus medius is often at the root of greater trochanteric pain syndrome.\r\n\r\nRegenerative Orthopedics including Stem Cell Therapy, PRP, and Prolotherapy is a safe and effective treatment option for bursitis, tendinopathy, and other underlying soft tissue injuries of the hip.\r\n<h2>More About Bursitis</h2>\r\nTrue bursitis is an inflammation of the bursae, which are small, fluid-filled sacs that lubricate and cushion pressure points between the bones, tendons, and muscles of joints. And the bursae help the joints to move with ease. So when the bursae become inflamed due to bursitis, movement or pressure can be painful. Bursitis often affects areas around the joints in the elbows or hips.\r\n<h3>Hip Bursitis</h3>\r\nHip bursitis involves a bursal sac that is inflamed between the hip bone and glutei muscle attachments. The bursal sac inflames because of injury to the soft tissue structures. The bursal sacs decrease the friction of the soft tissue structure and the underlying bone. This allows the tendon or muscle to glide across the bone more easily. Bursitis pain usually goes away within a week or so with proper treatment, but recurrent flare-ups are common as well as frustrating.<strong> </strong>\r\n<h2>Bursitis Causes</h2>\r\nCommon causes of bursitis are overuse, stress, or direct trauma to a joint, such as repeated bumping or prolonged pressure. Bursitis may result from an infection, arthritis, or gout. Bursitis may also be due to the repetitive motion related to certain activities. Tendonitis, which involves the irritation or inflammation of tendons, or tendinopathy (degenerated tendon) are again oftentimes misdiagnosed as bursitis.\r\n<h2>What Are the Symptoms of Hip Bursitis?</h2>\r\nSymptoms of hip bursitis include a dull ache or stiffness in the affected hip. Bursitis pain often worsens with movement or pressure. And the area may be swollen and feel warm to the touch. Intermittent redness of the skin in the area of the inflamed bursae may be another symptom.\r\n\r\nVisible swelling or skin redness is usually absent from bursitis of the hip because the bursae are located beneath some of the body’s bulkiest muscles. Pain is primarily centered over the greater trochanter, a portion of the femur that juts out just below where the bone joins the hip.\r\n<h2>Current Treatment Options for Bursitis</h2>\r\nSince bursitis is an inflammation of the fluid-filled sac, or bursa that lies between a tendon and skin, or between a tendon and bone, bursitis treatment often involves the use of non-steroidal anti-inflammatory drugs (NSAIDS) such as ibuprofen and steroids such as cortisone.\r\n\r\nIf the problem is not true bursitis, the steroid injections to decrease the inflammation will usually not work to eliminate the pain, since inflammation is not the real problem. The steroid will, however, inhibit fibroblastic proliferation or the process by which soft tissue structures such as ligaments, tendons, and muscles grow and repair, and result in a weakening of the joint.\r\n<h3>NSAIDs Can Cause More Problems</h3>\r\nNSAIDs are associated with a higher risk of cardiovascular- and gastrointestinal-related adverse events. The FDA issued a medication guide for NSAIDs <strong>recommending physicians prescribe the lowest dose for the shortest time possible</strong>.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nAs physicians become educated on the side effects of these medications, they hopefully decrease their use of them. “As years of experience increased, practitioners were more likely to prescribe lower doses of corticosteroid in musculoskeletal injections.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n\r\nNewer therapies are sought to replace NSAIDs due to their significant side-effect profile. Regenerative Orthopedics is both a safe and effective treatment option for bursitis pain from various causes.\r\n<h2>Hip Bursitis Diagnosis Accuracy</h2>\r\nFor the person diagnosed with bursitis, first, consider whether the diagnosis is correct or not. There have been several studies on hip bursitis symptoms, demonstrating, as we noted earlier, that the pain is coming from tendinopathy rather than from bursitis.\r\n\r\n“Some studies have questioned the real involvement of the trochanteric bursa in greater trochanteric pain syndrome, and tendinopathy of the gluteus medius and/or minimus has been proposed as an important cause of this syndrome.”<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a> One study of 75 patients with pain and point tenderness over the greater trochanter, revealed that only 8 had fluid pooling in the trochanteric bursae per sonography.<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\r\n\r\nAnother study showed that only a minority of patients had bursitis, because in 700 out of 877 patients the pain <strong>was not from bursitis</strong>, but rather, it related to “some combination of pathology <strong>involving the gluteus medius and gluteus minimus tendons as well as the iliotibial band</strong>.”<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\r\n\r\nAnd one more found that only 5 of 124 patients with trochanteric pain had bursitis, plus most of those with bursitis also had associated tendinopathy.<sup>iv</sup>\r\n<h2>Bursitis Treatment with Regenerative Orthopedics</h2>\r\nRegenerative Orthopedics stimulate the body to repair painful areas. And that includes those with both true bursitis and tendinopathies. An experienced Regenerative Orthopedics doctor will be able to ascertain what structure is causing the pain.\r\n\r\nIn the hip, the soft tissue structures that attach to the greater trochanter are often involved, including the glutei muscles. Regenerative Orthopedic treatments to these soft tissue structures stimulate them to repair. Once they are fully repaired, the ‘bursitis’ pain resolves.\r\n\r\nPlatelet Rich Plasma (PRP) is one of the Regenerative Orthopedic treatment options that may be recommended for bursitis pain.\r\n<h3>A Study on PRP for Hip Bursitis</h3>\r\nA study presented at the 2014 meeting of the American Academy of Surgeons showed PRP to be very effective in the treatment of severe bursitis of the hip. The study compared one injection of PRP to one injection of cortisone. The cortisone demonstrated only short-term effectiveness. PRP provided both short and long-term pain relief from a condition that is difficult to treat successfully.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nRegenerative Orthopedic options like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy all accomplish repair of the affected soft tissue. And your clinician will recommend which treatment will most effectively repair and regenerate your hip, bringing relief from bursitis pain.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Sofat N. Kuttapitiya A. <a href=\"http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4089899/\" target=\"_blank\" rel=\"noopener noreferrer\">Future directions for the management of pain in osteoarthritis.</a><a href=\"http://www.futuremedicine.com/doi/pdf/10.2217/ijr.14.10\" target=\"_blank\" rel=\"noopener noreferrer\"><em>Int J Rheumatol. </em>Apr 2014; 9(2): 197–276. </a>\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Lazaro D, Alon L, Ramessar N, Cabas-Vargas J, Shwin K, Stefanov D.  Intra-articular, bursa, and tendon sheath injections: A survey of practice patterns among members of the American College of Rheumatology. <em>Journal of Rheumatology.</em>2014; 20(2): 91-93. doi: 10.1097/RHU.0000000000000080\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Quiroz C, Ruta S, Rosa J, Navarta DA, Garcia-Monaco R, Soriano ER. <a href=\"http://www.reumatologia.org.ar.preview.hybrid-sites.com/docs/2013-Ultrasound-Evaluation-Of-The-Greater-Trochanter-Pain-Syndrome-Bursitis-Or-Tendinopathy.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">Ultrasound evaluation of the Greater Trochanter Pain Syndrome: Bursitis or tendinopathy?</a>\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Connell DA, Bass C, Sykes CJ, Young D, Edwards E. Sonographic evaluation of gluteus medius and minimus tendinopathy. <a href=\"http://link.springer.com/journal/330\" target=\"_blank\" rel=\"noopener noreferrer\"><em>European Radiology</em></a>. 2003; 13(6): 1339-1347.6.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Long%20SS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Long SS</a><sup>1</sup>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Surrey%20DE%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Surrey DE</a>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Nazarian%20LN%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Nazarian LN</a>.Sonography of greater trochanteric pain syndrome and the rarity of primary bursitis.<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/24147479\" target=\"_blank\" rel=\"noopener noreferrer\">AJR Am J Roentgenol.</a> 2013 Nov;201(5):1083-6. doi: 10.2214/AJR.12.10038.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Goel K,Riley LP. Platelet Rich Plasma (PRP)treatment more effective than cortisone for severe hip bursitis. <a href=\"http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf</a>.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Is Your Hip Pain from Bursitis?','','publish','open','closed','','is-your-hip-bursitis-treatment-working','','','2020-08-09 00:19:39','2020-08-09 00:19:39','',0,'https://www.drfields.com/?p=3511',0,'post','',0),(3512,8,'2020-01-20 03:42:38','2020-01-20 03:42:38','Have you been treating your hip pain with bursitis treatments like steroids and non-steroidal anti-inflammatories? There are times these treatments help to give some relief, but many people continue to experience a substantial amount of discomfort even after trying them. Continued use of steroids injected into a degenerated joint can unfortunately increase the rate of degeneration. Why not treat the pain with treatments that regenerate rather than degenerate the joint structures?\r\n<h2>Is It Really Bursitis?</h2>\r\n<strong><em>We see quite a few patients</em></strong> who come to our office for treatment of bursitis who do not actually have bursitis. Bursitis is so painful that even touching the skin over the painful area is difficult to tolerate. If the area can be palpated with a lot of pressure by the doctor, the patient may not have bursitis. What could the problem be then?\r\n\r\n<strong><em>Hip Bursitis, or trochanteric bursitis, is actually rare!</em></strong> Multiple studies have shown that patients presenting with bursitis type symptoms actually have tendinopathy (tendon degeneration) of their gluteal tendons, which attach near the bursa and often fool providers into thinking the patients have bursitis. What they really have are badly degenerated tendons that need regeneration! On top of that, as we mentioned, steroid injections are often used as the treatment for true bursitis, so when steroids are injected into the degenerated tendons, they actually can cause them to degenerate faster! Tendinopathy of the gluteus minimus or gluteus medius are often the tendons involved in greater trochanteric pain syndrome.\r\n\r\nRegenerative Orthopedics including Stem Cell Therapy, PRP, and Prolotherapy are safe and effective treatment options for bursitis, tendinopathy and other underlying soft tissue injuries of the hip.\r\n<h2>More About Bursitis</h2>\r\nTrue bursitis is an inflammation of the bursae, which are small, fluid-filled sacs that lubricate and cushion pressure points between the bones, tendons and muscles of joints. Bursae help the joints to move with ease. When they become inflamed due to bursitis, movement or pressure can be painful. Bursitis often affects areas around the joints in the elbows or hips. Hip bursitis entails a bursal sac inflamed between the hip bone and glutei muscle attachments. The bursal sac becomes inflamed because of injury to the soft tissue structures. The bursal sacs are there to decrease the friction of the soft tissue structure and the underlying bone. They let the tendon or muscle glide across the bone more easily. Bursitis pain usually goes away within a week or so with proper treatment, but recurrent flare-ups are common as well as frustrating.<strong> </strong>\r\n<h2>Bursitis Causes</h2>\r\nCommon causes of bursitis include overuse, stress or direct trauma to a joint, such as repeated bumping or prolonged pressure. Bursitis may result from an infection, arthritis or gout. Bursitis may also be due to the repetitive motion related to certain activities. Tendonitis, which involves the irritation or inflammation of tendons, or tendinopathy (degenerated tendon) are again oftentimes misdiagnosed as bursitis.\r\n<h2>What Are the Symptoms of Hip Bursitis?</h2>\r\nSymptoms of hip bursitis include a dull ache or stiffness in the affected hip. The pain often worsens with movement or pressure, and the area may be swollen and feel warm to the touch. Intermittent redness of the skin in the area of the inflamed bursae may be another symptom. Visible swelling or skin redness is usually absent from bursitis of the hip because the bursae are located beneath some of the body’s bulkiest muscles. Pain is primarily centered over the greater trochanter, a portion of the femur that juts out just below where the bone joins the hip.\r\n<h2>Current Treatment Options for Bursitis</h2>\r\nSince bursitis is an inflammation of the fluid-filled sac, or bursa that lies between a tendon and skin, or between a tendon and bone, bursitis treatment has involved the use of non-steroidal anti-inflammatory drugs (NSAIDS) such as ibuprofen, and steroids such as cortisone. If the problem is not true bursitis, the steroid injections by the orthopedist to decrease the inflammation of the bursitis will commonly not work to eliminate the pain, since inflammation is not the real problem. The steroid will, however, inhibit fibroblastic proliferation or the process by which soft tissue structures such as ligaments, tendons and muscles grow and repair, and result in a weakening of the joint.\r\n\r\nNSAIDS are associated with a higher risk of cardiovascular- and gastrointestinal-related adverse events. The FDA issued a medication guide for NSAIDs <strong>recommending physicians prescribe the lowest dose for the shortest time possible</strong>.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nAs physicians become educated on side effects of these medications, they hopefully decrease their use of them. “As years of experience increased, practitioners were more likely to prescribe lower doses of corticosteroid in musculoskeletal injections.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n\r\nDue to their significant side-effect profile, newer therapies are sought to replace them. Regenerative Orthopedics is both safe and effective to treat bursitis pain from various causes.\r\n<h2>Hip Bursitis Diagnosis Accuracy</h2>\r\nFor the person diagnosed with bursitis, first consider whether the diagnosis is correct or not. There have been several studies on hip bursitis symptoms, demonstrating, as we noted earlier, that the pain is coming from tendinopathy rather than from bursitis. “Some studies have questioned the real involvement of the trochanteric bursa in greater trochanteric pain syndrome, and tendinopathy of the gluteus medius and/or minimus has been proposed as an important cause of this syndrome.”<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a> One study of 75 patients with pain and point tenderness over the greater trochanter, revealed that only 8 had fluid pooling in the trochanteric bursae per sonography.<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a> Another study showed that only a minority of patients had bursitis, because in 700 out of 877 patients the pain <strong>was not from bursitis</strong>, but rather, it related to “some combination of pathology <strong>involving the gluteus medius and gluteus minimus tendons as well as the iliotibial band</strong>.”<a href=\"#_edn5\" name=\"_ednref5\">[v]</a> And one more found that only 5 of 124 patients with trochanteric pain had bursitis, plus most of those with bursitis also had associated tendinopathy.<sup>iv</sup>\r\n<h2>Bursitis Treatment with Regenerative Orthopedics</h2>\r\nRegenerative Orthopedics stimulate the body to repair painful areas and those with both true bursitis and tendinopathies. An experienced Regenerative Orthopedics doctor will be able to ascertain what structure is causing the pain. In the hip, the soft tissue structures that attach to the greater trochanter are often involved, including the glutei muscles. Regenerative Orthopedic treatments to these soft tissue structures stimulate them to repair. Once they are fully repaired the ‘bursitis’ pain resolves.\r\n\r\nPlatelet Rich Plasma (PRP) is one of the Regenerative Orthopedic treatment options that may be recommended for bursitis pain. A study presented at the 2014 meeting of the American Academy of Surgeons showed PRP to be very effective in the treatment of severe bursitis of the hip. The study compared one injection of PRP to one injection of cortisone. The cortisone only demonstrated short-term effectiveness. PRP provided both short and long-term pain relief from a condition that is difficult to treat successfully.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nRegenerative Orthopedic options like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy all accomplish repair of the affected soft tissue, and your clinician will recommend which treatment will most effectively repair and regenerate your hip, bringing relief from bursitis pain.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Sofat N. Kuttapitiya A. <a href=\"http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4089899/\">Future directions for the management of pain in osteoarthritis.</a><a href=\"http://www.futuremedicine.com/doi/pdf/10.2217/ijr.14.10\"><em>Int J Rheumatol. </em>Apr 2014; 9(2): 197–276. </a>\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Lazaro D, Alon L, Ramessar N, Cabas-Vargas J, Shwin K, Stefanov D.  Intra-articular, bursa, and tendon sheath injections: A survey of practice patterns among members of the American College of Rheumatology. <em>Journal of Rheumatology.</em>2014; 20(2): 91-93. doi: 10.1097/RHU.0000000000000080\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Quiroz C, Ruta S, Rosa J, Navarta DA, Garcia-Monaco R, Soriano ER. <a href=\"http://www.reumatologia.org.ar.preview.hybrid-sites.com/docs/2013-Ultrasound-Evaluation-Of-The-Greater-Trochanter-Pain-Syndrome-Bursitis-Or-Tendinopathy.pdf\">Ultrasound evaluation of the Greater Trochanter Pain Syndrome: Bursitis or tendinopathy?</a>\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Connell DA, Bass C, Sykes CJ, Young D, Edwards E. Sonographic evaluation of gluteus medius and minimus tendinopathy. <a href=\"http://link.springer.com/journal/330\"><em>European Radiology</em></a>. 2003; 13(6): 1339-1347.6.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Long%20SS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\">Long SS</a><sup>1</sup>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Surrey%20DE%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\">Surrey DE</a>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Nazarian%20LN%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\">Nazarian LN</a>.Sonography of greater trochanteric pain syndrome and the rarity of primary bursitis.<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/24147479\">AJR Am J Roentgenol.</a> 2013 Nov;201(5):1083-6. doi: 10.2214/AJR.12.10038.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Goel K,Riley LP. Platelet Rich Plasma (PRP)treatment more effective than cortisone for severe hip bursitis. <a href=\"http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf\">http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf</a>.','Is Your Hip Bursitis Treatment Working?','','inherit','closed','closed','','3511-revision-v1','','','2020-01-20 03:42:38','2020-01-20 03:42:38','',3511,'https://www.drfields.com/uncategorized/3511-revision-v1/',0,'revision','',0),(3513,8,'2020-01-20 03:46:38','2020-01-20 03:46:38','Have you been treating your hip pain with bursitis treatments like steroids and non-steroidal anti-inflammatories? There are times these treatments help to give some relief, but many people continue to experience a substantial amount of discomfort even after trying them. Continued use of steroids injected into a degenerated joint can unfortunately increase the rate of degeneration. Why not treat the pain with treatments that regenerate rather than degenerate the joint structures?\n<h2>Is It Really Bursitis?</h2>\n<strong><em>We see quite a few patients</em></strong> who come to our office for treatment of bursitis who do not actually have bursitis. Bursitis is so painful that even touching the skin over the painful area is difficult to tolerate. If the area can be palpated with a lot of pressure by the doctor, the patient may not have bursitis. What could the problem be then?\n\n<strong><em>Hip Bursitis, or trochanteric bursitis, is actually rare!</em></strong> Multiple studies have shown that patients presenting with bursitis type symptoms actually have tendinopathy (tendon degeneration) of their gluteal tendons, which attach near the bursa and often fool providers into thinking the patients have bursitis. What they really have are badly degenerated tendons that need regeneration! On top of that, as we mentioned, steroid injections are often used as the treatment for true bursitis, so when steroids are injected into the degenerated tendons, they actually can cause them to degenerate faster! Tendinopathy of the gluteus minimus or gluteus medius are often the tendons involved in greater trochanteric pain syndrome.\n\nRegenerative Orthopedics including Stem Cell Therapy, PRP, and Prolotherapy are safe and effective treatment options for bursitis, tendinopathy and other underlying soft tissue injuries of the hip.\n<h2>More About Bursitis</h2>\nTrue bursitis is an inflammation of the bursae, which are small, fluid-filled sacs that lubricate and cushion pressure points between the bones, tendons and muscles of joints. Bursae help the joints to move with ease. When they become inflamed due to bursitis, movement or pressure can be painful. Bursitis often affects areas around the joints in the elbows or hips. Hip bursitis entails a bursal sac inflamed between the hip bone and glutei muscle attachments. The bursal sac becomes inflamed because of injury to the soft tissue structures. The bursal sacs are there to decrease the friction of the soft tissue structure and the underlying bone. They let the tendon or muscle glide across the bone more easily. Bursitis pain usually goes away within a week or so with proper treatment, but recurrent flare-ups are common as well as frustrating.<strong> </strong>\n<h2>Bursitis Causes</h2>\nCommon causes of bursitis include overuse, stress or direct trauma to a joint, such as repeated bumping or prolonged pressure. Bursitis may result from an infection, arthritis or gout. Bursitis may also be due to the repetitive motion related to certain activities. Tendonitis, which involves the irritation or inflammation of tendons, or tendinopathy (degenerated tendon) are again oftentimes misdiagnosed as bursitis.\n<h2>What Are the Symptoms of Hip Bursitis?</h2>\nSymptoms of hip bursitis include a dull ache or stiffness in the affected hip. The pain often worsens with movement or pressure, and the area may be swollen and feel warm to the touch. Intermittent redness of the skin in the area of the inflamed bursae may be another symptom. Visible swelling or skin redness is usually absent from bursitis of the hip because the bursae are located beneath some of the body’s bulkiest muscles. Pain is primarily centered over the greater trochanter, a portion of the femur that juts out just below where the bone joins the hip.\n<h2>Current Treatment Options for Bursitis</h2>\nSince bursitis is an inflammation of the fluid-filled sac, or bursa that lies between a tendon and skin, or between a tendon and bone, bursitis treatment has involved the use of non-steroidal anti-inflammatory drugs (NSAIDS) such as ibuprofen, and steroids such as cortisone. If the problem is not true bursitis, the steroid injections by the orthopedist to decrease the inflammation of the bursitis will commonly not work to eliminate the pain, since inflammation is not the real problem. The steroid will, however, inhibit fibroblastic proliferation or the process by which soft tissue structures such as ligaments, tendons and muscles grow and repair, and result in a weakening of the joint.\n\nNSAIDS are associated with a higher risk of cardiovascular- and gastrointestinal-related adverse events. The FDA issued a medication guide for NSAIDs <strong>recommending physicians prescribe the lowest dose for the shortest time possible</strong>.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\n\nAs physicians become educated on side effects of these medications, they hopefully decrease their use of them. “As years of experience increased, practitioners were more likely to prescribe lower doses of corticosteroid in musculoskeletal injections.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\n\nDue to their significant side-effect profile, newer therapies are sought to replace them. Regenerative Orthopedics is both safe and effective to treat bursitis pain from various causes.\n<h2>Hip Bursitis Diagnosis Accuracy</h2>\nFor the person diagnosed with bursitis, first consider whether the diagnosis is correct or not. There have been several studies on hip bursitis symptoms, demonstrating, as we noted earlier, that the pain is coming from tendinopathy rather than from bursitis. “Some studies have questioned the real involvement of the trochanteric bursa in greater trochanteric pain syndrome, and tendinopathy of the gluteus medius and/or minimus has been proposed as an important cause of this syndrome.”<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a> One study of 75 patients with pain and point tenderness over the greater trochanter, revealed that only 8 had fluid pooling in the trochanteric bursae per sonography.<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a> Another study showed that only a minority of patients had bursitis, because in 700 out of 877 patients the pain <strong>was not from bursitis</strong>, but rather, it related to “some combination of pathology <strong>involving the gluteus medius and gluteus minimus tendons as well as the iliotibial band</strong>.”<a href=\"#_edn5\" name=\"_ednref5\">[v]</a> And one more found that only 5 of 124 patients with trochanteric pain had bursitis, plus most of those with bursitis also had associated tendinopathy.<sup>iv</sup>\n<h2>Bursitis Treatment with Regenerative Orthopedics</h2>\nRegenerative Orthopedics stimulate the body to repair painful areas and those with both true bursitis and tendinopathies. An experienced Regenerative Orthopedics doctor will be able to ascertain what structure is causing the pain. In the hip, the soft tissue structures that attach to the greater trochanter are often involved, including the glutei muscles. Regenerative Orthopedic treatments to these soft tissue structures stimulate them to repair. Once they are fully repaired the ‘bursitis’ pain resolves.\n\nPlatelet Rich Plasma (PRP) is one of the Regenerative Orthopedic treatment options that may be recommended for bursitis pain. A study presented at the 2014 meeting of the American Academy of Surgeons showed PRP to be very effective in the treatment of severe bursitis of the hip. The study compared one injection of PRP to one injection of cortisone. The cortisone only demonstrated short-term effectiveness. PRP provided both short and long-term pain relief from a condition that is difficult to treat successfully.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\n\nRegenerative Orthopedic options like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy all accomplish repair of the affected soft tissue, and your clinician will recommend which treatment will most effectively repair and regenerate your hip, bringing relief from bursitis pain.\n\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Sofat N. Kuttapitiya A. <a href=\"http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4089899/\" target=\"_blank\" rel=\"noopener noreferrer\">Future directions for the management of pain in osteoarthritis.</a><a href=\"http://www.futuremedicine.com/doi/pdf/10.2217/ijr.14.10\" target=\"_blank\" rel=\"noopener noreferrer\"><em>Int J Rheumatol. </em>Apr 2014; 9(2): 197–276. </a>\n\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Lazaro D, Alon L, Ramessar N, Cabas-Vargas J, Shwin K, Stefanov D.  Intra-articular, bursa, and tendon sheath injections: A survey of practice patterns among members of the American College of Rheumatology. <em>Journal of Rheumatology.</em>2014; 20(2): 91-93. doi: 10.1097/RHU.0000000000000080\n\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Quiroz C, Ruta S, Rosa J, Navarta DA, Garcia-Monaco R, Soriano ER. <a href=\"http://www.reumatologia.org.ar.preview.hybrid-sites.com/docs/2013-Ultrasound-Evaluation-Of-The-Greater-Trochanter-Pain-Syndrome-Bursitis-Or-Tendinopathy.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">Ultrasound evaluation of the Greater Trochanter Pain Syndrome: Bursitis or tendinopathy?</a>\n\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Connell DA, Bass C, Sykes CJ, Young D, Edwards E. Sonographic evaluation of gluteus medius and minimus tendinopathy. <a href=\"http://link.springer.com/journal/330\" target=\"_blank\" rel=\"noopener noreferrer\"><em>European Radiology</em></a>. 2003; 13(6): 1339-1347.6.\n\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Long%20SS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Long SS</a><sup>1</sup>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Surrey%20DE%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\">Surrey DE</a>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Nazarian%20LN%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Nazarian LN</a>.Sonography of greater trochanteric pain syndrome and the rarity of primary bursitis.<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/24147479\" target=\"_blank\" rel=\"noopener noreferrer\">AJR Am J Roentgenol.</a> 2013 Nov;201(5):1083-6. doi: 10.2214/AJR.12.10038.\n\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Goel K,Riley LP. Platelet Rich Plasma (PRP)treatment more effective than cortisone for severe hip bursitis. <a href=\"http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf</a>.','Is Your Hip Bursitis Treatment Working?','','inherit','closed','closed','','3511-autosave-v1','','','2020-01-20 03:46:38','2020-01-20 03:46:38','',3511,'https://www.drfields.com/uncategorized/3511-autosave-v1/',0,'revision','',0),(3514,8,'2020-01-20 03:44:17','2020-01-20 03:44:17','Have you been treating your hip pain with bursitis treatments like steroids and non-steroidal anti-inflammatories? There are times these treatments help to give some relief, but many people continue to experience a substantial amount of discomfort even after trying them. Continued use of steroids injected into a degenerated joint can unfortunately increase the rate of degeneration. Why not treat the pain with treatments that regenerate rather than degenerate the joint structures?\r\n<h2>Is It Really Bursitis?</h2>\r\n<strong><em>We see quite a few patients</em></strong> who come to our office for treatment of bursitis who do not actually have bursitis. Bursitis is so painful that even touching the skin over the painful area is difficult to tolerate. If the area can be palpated with a lot of pressure by the doctor, the patient may not have bursitis. What could the problem be then?\r\n\r\n<strong><em>Hip Bursitis, or trochanteric bursitis, is actually rare!</em></strong> Multiple studies have shown that patients presenting with bursitis type symptoms actually have tendinopathy (tendon degeneration) of their gluteal tendons, which attach near the bursa and often fool providers into thinking the patients have bursitis. What they really have are badly degenerated tendons that need regeneration! On top of that, as we mentioned, steroid injections are often used as the treatment for true bursitis, so when steroids are injected into the degenerated tendons, they actually can cause them to degenerate faster! Tendinopathy of the gluteus minimus or gluteus medius are often the tendons involved in greater trochanteric pain syndrome.\r\n\r\nRegenerative Orthopedics including Stem Cell Therapy, PRP, and Prolotherapy are safe and effective treatment options for bursitis, tendinopathy and other underlying soft tissue injuries of the hip.\r\n<h2>More About Bursitis</h2>\r\nTrue bursitis is an inflammation of the bursae, which are small, fluid-filled sacs that lubricate and cushion pressure points between the bones, tendons and muscles of joints. Bursae help the joints to move with ease. When they become inflamed due to bursitis, movement or pressure can be painful. Bursitis often affects areas around the joints in the elbows or hips. Hip bursitis entails a bursal sac inflamed between the hip bone and glutei muscle attachments. The bursal sac becomes inflamed because of injury to the soft tissue structures. The bursal sacs are there to decrease the friction of the soft tissue structure and the underlying bone. They let the tendon or muscle glide across the bone more easily. Bursitis pain usually goes away within a week or so with proper treatment, but recurrent flare-ups are common as well as frustrating.<strong> </strong>\r\n<h2>Bursitis Causes</h2>\r\nCommon causes of bursitis include overuse, stress or direct trauma to a joint, such as repeated bumping or prolonged pressure. Bursitis may result from an infection, arthritis or gout. Bursitis may also be due to the repetitive motion related to certain activities. Tendonitis, which involves the irritation or inflammation of tendons, or tendinopathy (degenerated tendon) are again oftentimes misdiagnosed as bursitis.\r\n<h2>What Are the Symptoms of Hip Bursitis?</h2>\r\nSymptoms of hip bursitis include a dull ache or stiffness in the affected hip. The pain often worsens with movement or pressure, and the area may be swollen and feel warm to the touch. Intermittent redness of the skin in the area of the inflamed bursae may be another symptom. Visible swelling or skin redness is usually absent from bursitis of the hip because the bursae are located beneath some of the body’s bulkiest muscles. Pain is primarily centered over the greater trochanter, a portion of the femur that juts out just below where the bone joins the hip.\r\n<h2>Current Treatment Options for Bursitis</h2>\r\nSince bursitis is an inflammation of the fluid-filled sac, or bursa that lies between a tendon and skin, or between a tendon and bone, bursitis treatment has involved the use of non-steroidal anti-inflammatory drugs (NSAIDS) such as ibuprofen, and steroids such as cortisone. If the problem is not true bursitis, the steroid injections by the orthopedist to decrease the inflammation of the bursitis will commonly not work to eliminate the pain, since inflammation is not the real problem. The steroid will, however, inhibit fibroblastic proliferation or the process by which soft tissue structures such as ligaments, tendons and muscles grow and repair, and result in a weakening of the joint.\r\n\r\nNSAIDS are associated with a higher risk of cardiovascular- and gastrointestinal-related adverse events. The FDA issued a medication guide for NSAIDs <strong>recommending physicians prescribe the lowest dose for the shortest time possible</strong>.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nAs physicians become educated on side effects of these medications, they hopefully decrease their use of them. “As years of experience increased, practitioners were more likely to prescribe lower doses of corticosteroid in musculoskeletal injections.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n\r\nDue to their significant side-effect profile, newer therapies are sought to replace them. Regenerative Orthopedics is both safe and effective to treat bursitis pain from various causes.\r\n<h2>Hip Bursitis Diagnosis Accuracy</h2>\r\nFor the person diagnosed with bursitis, first consider whether the diagnosis is correct or not. There have been several studies on hip bursitis symptoms, demonstrating, as we noted earlier, that the pain is coming from tendinopathy rather than from bursitis. “Some studies have questioned the real involvement of the trochanteric bursa in greater trochanteric pain syndrome, and tendinopathy of the gluteus medius and/or minimus has been proposed as an important cause of this syndrome.”<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a> One study of 75 patients with pain and point tenderness over the greater trochanter, revealed that only 8 had fluid pooling in the trochanteric bursae per sonography.<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a> Another study showed that only a minority of patients had bursitis, because in 700 out of 877 patients the pain <strong>was not from bursitis</strong>, but rather, it related to “some combination of pathology <strong>involving the gluteus medius and gluteus minimus tendons as well as the iliotibial band</strong>.”<a href=\"#_edn5\" name=\"_ednref5\">[v]</a> And one more found that only 5 of 124 patients with trochanteric pain had bursitis, plus most of those with bursitis also had associated tendinopathy.<sup>iv</sup>\r\n<h2>Bursitis Treatment with Regenerative Orthopedics</h2>\r\nRegenerative Orthopedics stimulate the body to repair painful areas and those with both true bursitis and tendinopathies. An experienced Regenerative Orthopedics doctor will be able to ascertain what structure is causing the pain. In the hip, the soft tissue structures that attach to the greater trochanter are often involved, including the glutei muscles. Regenerative Orthopedic treatments to these soft tissue structures stimulate them to repair. Once they are fully repaired the ‘bursitis’ pain resolves.\r\n\r\nPlatelet Rich Plasma (PRP) is one of the Regenerative Orthopedic treatment options that may be recommended for bursitis pain. A study presented at the 2014 meeting of the American Academy of Surgeons showed PRP to be very effective in the treatment of severe bursitis of the hip. The study compared one injection of PRP to one injection of cortisone. The cortisone only demonstrated short-term effectiveness. PRP provided both short and long-term pain relief from a condition that is difficult to treat successfully.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nRegenerative Orthopedic options like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy all accomplish repair of the affected soft tissue, and your clinician will recommend which treatment will most effectively repair and regenerate your hip, bringing relief from bursitis pain.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Sofat N. Kuttapitiya A. <a href=\"http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4089899/\" target=\"_blank\" rel=\"noopener noreferrer\">Future directions for the management of pain in osteoarthritis.</a><a href=\"http://www.futuremedicine.com/doi/pdf/10.2217/ijr.14.10\" target=\"_blank\" rel=\"noopener noreferrer\"><em>Int J Rheumatol. </em>Apr 2014; 9(2): 197–276. </a>\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Lazaro D, Alon L, Ramessar N, Cabas-Vargas J, Shwin K, Stefanov D.  Intra-articular, bursa, and tendon sheath injections: A survey of practice patterns among members of the American College of Rheumatology. <em>Journal of Rheumatology.</em>2014; 20(2): 91-93. doi: 10.1097/RHU.0000000000000080\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Quiroz C, Ruta S, Rosa J, Navarta DA, Garcia-Monaco R, Soriano ER. <a href=\"http://www.reumatologia.org.ar.preview.hybrid-sites.com/docs/2013-Ultrasound-Evaluation-Of-The-Greater-Trochanter-Pain-Syndrome-Bursitis-Or-Tendinopathy.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">Ultrasound evaluation of the Greater Trochanter Pain Syndrome: Bursitis or tendinopathy?</a>\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Connell DA, Bass C, Sykes CJ, Young D, Edwards E. Sonographic evaluation of gluteus medius and minimus tendinopathy. <a href=\"http://link.springer.com/journal/330\" target=\"_blank\" rel=\"noopener noreferrer\"><em>European Radiology</em></a>. 2003; 13(6): 1339-1347.6.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Long%20SS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\">Long SS</a><sup>1</sup>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Surrey%20DE%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\">Surrey DE</a>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Nazarian%20LN%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Nazarian LN</a>.Sonography of greater trochanteric pain syndrome and the rarity of primary bursitis.<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/24147479\" target=\"_blank\" rel=\"noopener noreferrer\">AJR Am J Roentgenol.</a> 2013 Nov;201(5):1083-6. doi: 10.2214/AJR.12.10038.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Goel K,Riley LP. Platelet Rich Plasma (PRP)treatment more effective than cortisone for severe hip bursitis. <a href=\"http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf</a>.','Is Your Hip Bursitis Treatment Working?','','inherit','closed','closed','','3511-revision-v1','','','2020-01-20 03:44:17','2020-01-20 03:44:17','',3511,'https://www.drfields.com/uncategorized/3511-revision-v1/',0,'revision','',0),(3515,8,'2020-01-20 03:46:50','2020-01-20 03:46:50','Have you been treating your hip pain with bursitis treatments like steroids and non-steroidal anti-inflammatories? There are times these treatments help to give some relief, but many people continue to experience a substantial amount of discomfort even after trying them. Continued use of steroids injected into a degenerated joint can unfortunately increase the rate of degeneration. Why not treat the pain with treatments that regenerate rather than degenerate the joint structures?\r\n<h2>Is It Really Bursitis?</h2>\r\n<strong><em>We see quite a few patients</em></strong> who come to our office for treatment of bursitis who do not actually have bursitis. Bursitis is so painful that even touching the skin over the painful area is difficult to tolerate. If the area can be palpated with a lot of pressure by the doctor, the patient may not have bursitis. What could the problem be then?\r\n\r\n<strong><em>Hip Bursitis, or trochanteric bursitis, is actually rare!</em></strong> Multiple studies have shown that patients presenting with bursitis type symptoms actually have tendinopathy (tendon degeneration) of their gluteal tendons, which attach near the bursa and often fool providers into thinking the patients have bursitis. What they really have are badly degenerated tendons that need regeneration! On top of that, as we mentioned, steroid injections are often used as the treatment for true bursitis, so when steroids are injected into the degenerated tendons, they actually can cause them to degenerate faster! Tendinopathy of the gluteus minimus or gluteus medius are often the tendons involved in greater trochanteric pain syndrome.\r\n\r\nRegenerative Orthopedics including Stem Cell Therapy, PRP, and Prolotherapy are safe and effective treatment options for bursitis, tendinopathy and other underlying soft tissue injuries of the hip.\r\n<h2>More About Bursitis</h2>\r\nTrue bursitis is an inflammation of the bursae, which are small, fluid-filled sacs that lubricate and cushion pressure points between the bones, tendons and muscles of joints. Bursae help the joints to move with ease. When they become inflamed due to bursitis, movement or pressure can be painful. Bursitis often affects areas around the joints in the elbows or hips. Hip bursitis entails a bursal sac inflamed between the hip bone and glutei muscle attachments. The bursal sac becomes inflamed because of injury to the soft tissue structures. The bursal sacs are there to decrease the friction of the soft tissue structure and the underlying bone. They let the tendon or muscle glide across the bone more easily. Bursitis pain usually goes away within a week or so with proper treatment, but recurrent flare-ups are common as well as frustrating.<strong> </strong>\r\n<h2>Bursitis Causes</h2>\r\nCommon causes of bursitis include overuse, stress or direct trauma to a joint, such as repeated bumping or prolonged pressure. Bursitis may result from an infection, arthritis or gout. Bursitis may also be due to the repetitive motion related to certain activities. Tendonitis, which involves the irritation or inflammation of tendons, or tendinopathy (degenerated tendon) are again oftentimes misdiagnosed as bursitis.\r\n<h2>What Are the Symptoms of Hip Bursitis?</h2>\r\nSymptoms of hip bursitis include a dull ache or stiffness in the affected hip. The pain often worsens with movement or pressure, and the area may be swollen and feel warm to the touch. Intermittent redness of the skin in the area of the inflamed bursae may be another symptom. Visible swelling or skin redness is usually absent from bursitis of the hip because the bursae are located beneath some of the body’s bulkiest muscles. Pain is primarily centered over the greater trochanter, a portion of the femur that juts out just below where the bone joins the hip.\r\n<h2>Current Treatment Options for Bursitis</h2>\r\nSince bursitis is an inflammation of the fluid-filled sac, or bursa that lies between a tendon and skin, or between a tendon and bone, bursitis treatment has involved the use of non-steroidal anti-inflammatory drugs (NSAIDS) such as ibuprofen, and steroids such as cortisone. If the problem is not true bursitis, the steroid injections by the orthopedist to decrease the inflammation of the bursitis will commonly not work to eliminate the pain, since inflammation is not the real problem. The steroid will, however, inhibit fibroblastic proliferation or the process by which soft tissue structures such as ligaments, tendons and muscles grow and repair, and result in a weakening of the joint.\r\n\r\nNSAIDS are associated with a higher risk of cardiovascular- and gastrointestinal-related adverse events. The FDA issued a medication guide for NSAIDs <strong>recommending physicians prescribe the lowest dose for the shortest time possible</strong>.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nAs physicians become educated on side effects of these medications, they hopefully decrease their use of them. “As years of experience increased, practitioners were more likely to prescribe lower doses of corticosteroid in musculoskeletal injections.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n\r\nDue to their significant side-effect profile, newer therapies are sought to replace them. Regenerative Orthopedics is both safe and effective to treat bursitis pain from various causes.\r\n<h2>Hip Bursitis Diagnosis Accuracy</h2>\r\nFor the person diagnosed with bursitis, first consider whether the diagnosis is correct or not. There have been several studies on hip bursitis symptoms, demonstrating, as we noted earlier, that the pain is coming from tendinopathy rather than from bursitis. “Some studies have questioned the real involvement of the trochanteric bursa in greater trochanteric pain syndrome, and tendinopathy of the gluteus medius and/or minimus has been proposed as an important cause of this syndrome.”<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a> One study of 75 patients with pain and point tenderness over the greater trochanter, revealed that only 8 had fluid pooling in the trochanteric bursae per sonography.<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a> Another study showed that only a minority of patients had bursitis, because in 700 out of 877 patients the pain <strong>was not from bursitis</strong>, but rather, it related to “some combination of pathology <strong>involving the gluteus medius and gluteus minimus tendons as well as the iliotibial band</strong>.”<a href=\"#_edn5\" name=\"_ednref5\">[v]</a> And one more found that only 5 of 124 patients with trochanteric pain had bursitis, plus most of those with bursitis also had associated tendinopathy.<sup>iv</sup>\r\n<h2>Bursitis Treatment with Regenerative Orthopedics</h2>\r\nRegenerative Orthopedics stimulate the body to repair painful areas and those with both true bursitis and tendinopathies. An experienced Regenerative Orthopedics doctor will be able to ascertain what structure is causing the pain. In the hip, the soft tissue structures that attach to the greater trochanter are often involved, including the glutei muscles. Regenerative Orthopedic treatments to these soft tissue structures stimulate them to repair. Once they are fully repaired the ‘bursitis’ pain resolves.\r\n\r\nPlatelet Rich Plasma (PRP) is one of the Regenerative Orthopedic treatment options that may be recommended for bursitis pain. A study presented at the 2014 meeting of the American Academy of Surgeons showed PRP to be very effective in the treatment of severe bursitis of the hip. The study compared one injection of PRP to one injection of cortisone. The cortisone only demonstrated short-term effectiveness. PRP provided both short and long-term pain relief from a condition that is difficult to treat successfully.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nRegenerative Orthopedic options like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy all accomplish repair of the affected soft tissue, and your clinician will recommend which treatment will most effectively repair and regenerate your hip, bringing relief from bursitis pain.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Sofat N. Kuttapitiya A. <a href=\"http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4089899/\" target=\"_blank\" rel=\"noopener noreferrer\">Future directions for the management of pain in osteoarthritis.</a><a href=\"http://www.futuremedicine.com/doi/pdf/10.2217/ijr.14.10\" target=\"_blank\" rel=\"noopener noreferrer\"><em>Int J Rheumatol. </em>Apr 2014; 9(2): 197–276. </a>\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Lazaro D, Alon L, Ramessar N, Cabas-Vargas J, Shwin K, Stefanov D.  Intra-articular, bursa, and tendon sheath injections: A survey of practice patterns among members of the American College of Rheumatology. <em>Journal of Rheumatology.</em>2014; 20(2): 91-93. doi: 10.1097/RHU.0000000000000080\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Quiroz C, Ruta S, Rosa J, Navarta DA, Garcia-Monaco R, Soriano ER. <a href=\"http://www.reumatologia.org.ar.preview.hybrid-sites.com/docs/2013-Ultrasound-Evaluation-Of-The-Greater-Trochanter-Pain-Syndrome-Bursitis-Or-Tendinopathy.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">Ultrasound evaluation of the Greater Trochanter Pain Syndrome: Bursitis or tendinopathy?</a>\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Connell DA, Bass C, Sykes CJ, Young D, Edwards E. Sonographic evaluation of gluteus medius and minimus tendinopathy. <a href=\"http://link.springer.com/journal/330\" target=\"_blank\" rel=\"noopener noreferrer\"><em>European Radiology</em></a>. 2003; 13(6): 1339-1347.6.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Long%20SS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Long SS</a><sup>1</sup>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Surrey%20DE%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Surrey DE</a>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Nazarian%20LN%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Nazarian LN</a>.Sonography of greater trochanteric pain syndrome and the rarity of primary bursitis.<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/24147479\" target=\"_blank\" rel=\"noopener noreferrer\">AJR Am J Roentgenol.</a> 2013 Nov;201(5):1083-6. doi: 10.2214/AJR.12.10038.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Goel K,Riley LP. Platelet Rich Plasma (PRP)treatment more effective than cortisone for severe hip bursitis. <a href=\"http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf</a>.','Is Your Hip Bursitis Treatment Working?','','inherit','closed','closed','','3511-revision-v1','','','2020-01-20 03:46:50','2020-01-20 03:46:50','',3511,'https://www.drfields.com/uncategorized/3511-revision-v1/',0,'revision','',0),(3516,8,'2020-01-20 03:52:51','2020-01-20 03:52:51','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-01-20 03:52:51','2020-01-20 03:52:51','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3517,8,'2020-01-20 04:01:19','2020-01-20 04:01:19','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 10x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>10x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-01-20 04:01:19','2020-01-20 04:01:19','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3519,8,'2020-01-28 16:51:15','2020-01-28 16:51:15','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"An Answer for Life-Altering Neck Pain and Instability\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/an-answer-for-life-altering-neck-pain-and-instability/\">An Answer for Life-Altering Neck Pain and Instability</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-01-28 16:51:15','2020-01-28 16:51:15','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3520,8,'2020-01-28 17:21:38','2020-01-28 17:21:38','Cozumel Finish Line C 160','Cozumel Finish Line C 160','Cozumel Finish Line C 160','inherit','open','closed','','cozumel-finish-line-c-160','','','2020-01-28 17:21:38','2020-01-28 17:21:38','',0,'https://www.drfields.com/wp-content/uploads/2020/01/Cozumel-finish-line-C-160.jpg',0,'attachment','image/jpeg',0),(3522,8,'2020-01-28 20:51:09','2020-01-28 20:51:09','Sm Cca Lecture','Sm Cca Lecture','Sm Cca Lecture','inherit','open','closed','','sm-cca-lecture','','','2020-01-28 20:51:09','2020-01-28 20:51:09','',0,'https://www.drfields.com/wp-content/uploads/2020/01/sm-cca-lecture.jpg',0,'attachment','image/jpeg',0),(3524,8,'2020-02-06 21:38:19','2020-02-06 21:38:19','<h4>Report of My Kilimanjaro Climb (late by almost a year!)</h4>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting there</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nFirst an 11-hour flight to London where I had a 36 hour layover. Then 9 ½ hour flight to Nairobi, where I spent 24 hours. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival to Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike</h3>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts, since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). The six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For the hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration and more can happen. The guides made sure that we wold eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback style drinking system so was drinking copious amounts of water. At night it was cold but with the proper gear I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more.. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago) .\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views on the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived in camp after hiking only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so every step you take you think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well need nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing, and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was cancelled. Tomorrow morning, we will have a 4AM wake-up call in anticipation of a 2,300 foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4AM and breakfast at 4:30. The slow group left at 5. We ( my hiking partner , me and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountain side since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air, meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75 minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 F with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr) and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise, since it was only about 7 in the morning. We were almsot on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two our quads really felt it, and we would be walking down hill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time.. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30AM, which was a big difference from 4AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3 minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7 hour hike downhill. Although it was not very steep, it was a dried up river bedands full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7PM. That night, was my first night sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Postscript</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000 foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow and the wind chill factors. Nothing but grit and determination to keep you going. But thee views were spectacular and the feeling of being literally on top of the world, made it all wroth it.\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h2 style=\"text-align: center;\">Post Postscript</h2>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2020-02-06 21:38:19','2020-02-06 21:38:19','',2208,'https://www.drfields.com/uncategorized/2208-revision-v1/',0,'revision','',0),(3525,8,'2020-02-06 21:57:19','2020-02-06 21:57:19','<h4>Report of My Kilimanjaro Climb (late by almost a year!)</h4>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting there</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nFirst an 11-hour flight to London where I had a 36 hour layover. Then 9 ½ hour flight to Nairobi, where I spent 24 hours. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival to Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts, since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). The six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For the hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration and more can happen. The guides made sure that we wold eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback style drinking system so was drinking copious amounts of water. At night it was cold but with the proper gear I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more.. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago) .\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views on the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived in camp after hiking only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so every step you take you think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well need nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing, and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was cancelled. Tomorrow morning, we will have a 4AM wake-up call in anticipation of a 2,300 foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4AM and breakfast at 4:30. The slow group left at 5. We ( my hiking partner , me and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountain side since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air, meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75 minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 F with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr) and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise, since it was only about 7 in the morning. We were almsot on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two our quads really felt it, and we would be walking down hill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time.. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30AM, which was a big difference from 4AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3 minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7 hour hike downhill. Although it was not very steep, it was a dried up river bedands full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7PM. That night, was my first night sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Postscript</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000 foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow and the wind chill factors. Nothing but grit and determination to keep you going. But thee views were spectacular and the feeling of being literally on top of the world, made it all wroth it.\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h2 style=\"text-align: center;\">Post Postscript</h2>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2020-02-06 21:57:19','2020-02-06 21:57:19','',2208,'https://www.drfields.com/uncategorized/2208-revision-v1/',0,'revision','',0),(3526,8,'2020-02-10 17:36:30','2020-02-10 17:36:30','[caption id=\"attachment_3742\" align=\"alignleft\" width=\"392\"]<img class=\" wp-image-3742\" src=\"https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png\" alt=\"Kelsey. Knee.stems Copy\" width=\"392\" height=\"392\" /> <a href=\"https://youtu.be/jhN7D30YcYI\">Click to Watch Video about Stem Cell Therapy</a>[/caption]\r\n<p style=\"text-align: left;\">At OrthoRegen<sup>®</sup>, the Stem Cell Therapy we use for injuries to the joints and spine is The Gold Standard for stem cell regeneration. What makes it the Gold Standard? We don’t use just one type of regenerative therapy but use four different kinds of Regenerative Orthopedics. And that helps you to avoid invasive surgery.</p>\r\n<p style=\"text-align: left;\">Many other clinics only use one or two of these procedures. But, not all four. We use bone marrow stem cells as well as adipose (fat) stem cells. We also use <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate healing. In addition, we use <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. And without it, failure rates are high.</p>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is what is referred to as <em>The Gold Standard for stem cell regeneration</em>. And when is the Gold Standard recommended? We choose to use this procedure in various different circumstances. Examples include cases where people have been told they either need their joint replaced, have bone-on-bone, advanced arthritis, cartilage loss, or a combination of these.\r\n\r\nIn this article, we would like to discuss Stem Cell Therapy for the regeneration of a degenerated joint. The goal of this treatment, as with all forms of Regenerative Orthopedics, is to stimulate injured tissues to repair.\r\n<h2><strong>What Is the Basis Behind Stem Cell Therapy?</strong></h2>\r\nIn conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. And with arthritis, the joint is in a <em>state where it is breaking down</em>. What we want to do with Stem Cell Therapy is to get the joint in a state of <em>building up. </em>When we use this treatment, we stimulate the body to repair the area to get it stronger. Stem Cell Therapy probably works by a lot of different mechanisms but here are some proposed mechanisms:\r\n<ul>\r\n 	<li>Reduces the instability in the joint that leads to arthritis in the first place</li>\r\n 	<li>Stimulates the growth of the cells (extracellular matrix) that make the tissues that are causing the ongoing pain and/or instability</li>\r\n 	<li>Stimulates the cells already present to make extracellular matrix</li>\r\n 	<li>The cells that help to build cartilage are called chondrocytes. Stem Cell Therapy involves the injections of the precursor cells (stem cells) that will differentiate into adult chondrocytes</li>\r\n</ul>\r\nWhile the exact mechanisms by which Stem Cell Therapy works can be debated, the bottom line for the patient is,<strong> <em>“Do I get rid of my pain and get back to the activities I desire?”</em> In the majority of cases, the answer is, “<em>Yes!</em>”</strong>\r\n<h2><strong>Conditions That Can Be Treated with Stem Cell Therapy</strong></h2>\r\nAny condition helped by one type of Regenerative Orthopedics (Stem Cell Therapy, PRP, Prolotherapy) can, at least theoretically, be helped by another type of Regenerative Orthopedics. While Stem Cell Therapy is typically not used for ligament and tendon injuries, it surely can be used for those conditions.\r\n\r\nMost clinics, including OrthoRegen<sup>®</sup>, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those who are involved in treating people with articular cartilage degeneration or joint injury know that the vast majority of them improve when these patients are treated with Stem Cell Therapy.\r\n<h2><strong>Adult Stem Cell Injections, NOT Embryonic Stem Cell Injections</strong></h2>\r\nThe Stem Cell Therapy done at OrthoRegen<sup>®</sup> has nothing to do with embryonic stem cell therapy. Most research and studies have shown that cord blood does <strong>NOT</strong> have many if any, stem cells.\r\n\r\nWe only use the patient’s own adult stem cells. We take the bone marrow from the patient’s own tibia or iliac crest bones. And then use fat from the abdominal or buttock areas so that the stem cells are the freshest. Additionally, there is no cross-contamination this way! We then inject these cells into the defective joint.\r\n<h2>Why Do We Use PRP with Stem Cells from Bone Marrow and Fat?</h2>\r\nAt OrthoRegen<sup>®</sup>, we only use the <strong>Gold Standard in Stem Cell Therapy. The Gold Standard</strong> includes bone marrow stem cells, fat stem cells, PRP, and Dextrose Prolotherapy. Stem cells are great, but they need to be directed as to what to do. Some of the directors are the growth factors that are in the platelets.\r\n\r\nPlatelets aid the stem cells in their various jobs including differentiation and then aid in the differentiated cells making the extracellular matrix to repair the injured tissue. One could think of the stem cells as construction workers and the platelets (and their growth factors) as their supervisors, telling them what to do. Platelet Rich Plasma contains a myriad of substances that stimulate healing, like platelet-derived growth factor, which attracts immune system cells to the injured area to enhance ligament and tendon healing. And fibroblast growth factor which promotes the growth of the cells involved in collagen and cartilage formation.\r\n\r\nWe have found that Comprehensive Regenerative Orthopedics using the combination of all of these regenerative treatments works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\r\n<ol>\r\n 	<li>Akens MK, Hurtig MB. Influence of species and anatomical location on chondrocyte expression. <em>BMC Musculoskeletal Disorders</em>. 2005; 6:23.</li>\r\n 	<li>Guilak F, Estes BT, Dickman BO. 2010 Nicolas Andry Award: Multipotent adult stem cells from adipose tissue for musculoskeletal tissue engineering. <em>Clinical</em><em> Orthopedics and Related Research. 2010;468:2530-2540.</em></li>\r\n</ol>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Stem Cell Therapy at OrthoRegen: Why We\'re Different','','publish','open','closed','','stem-cell-therapy-at-orthoregen-why-we-are-different','','','2020-08-08 23:09:17','2020-08-08 23:09:17','',0,'https://www.drfields.com/?p=3526',0,'post','',0),(3527,8,'2020-02-10 17:36:30','2020-02-10 17:36:30','At OrthoRegen, the Stem Cell technique we use for injuries to the joints and spine is The Gold Standard for stem cell regeneration. We don’t use just one type of regenerative therapy, but use four different kinds of Regenerative Orthopedics to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four. We use bone marrow stem cells as well as adipose (fat) stem cells. We also use <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing. In addition, we use <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. Without it, failure rates are high.\r\n\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is referred to as The Gold Standard for stem cell regeneration. We choose to use this procedure in cases where people have been told they either need their joint replaced, have bone-on-bone, advanced arthritis, cartilage loss or a combination of these.\r\n\r\nIn this article, we would like to discuss Stem Cell Therapy for the regeneration of a degenerated joint. The goal of Stem Cell Therapy, as with all forms of Regenerative Orthopedics, is to stimulate injured tissues to repair.\r\n<h2><strong>What Is the Basis Behind Stem Cell Therapy?</strong></h2>\r\nIn conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. The joint is in a <em>state where it is breaking down</em>. What we want to do with Stem Cell Therapy is to get the joint in a state of <em>building up. </em>When we use Stem Cell Therapy, we are stimulating the body to repair the area to get it stronger. Stem Cell Therapy probably works by a lot of different mechanism but here are some proposed mechanisms:\r\n<ul>\r\n 	<li>Reduces the instability in the joint that leads to the arthritis in the first place</li>\r\n 	<li>Stimulates the growth of the cells (extracellular matrix) that make the tissues that are causing the ongoing pain and/or instability</li>\r\n 	<li>Stimulates the cells already present to make extracellular matrix</li>\r\n 	<li>The cells that help to build cartilage are called chondrocytes. Stem Cell Therapy involves the injections of the precursor cells (stem cells) that will differentiate into adult chondrocytes</li>\r\n</ul>\r\nWhile the exact mechanisms by which Stem Cell Therapy works can be debated, the bottom line for the patient is,<strong> <em>“Do I get rid of my pain and get back to the activities I desire?”</em> In the majority of cases the answer is, “<em>Yes!</em>”</strong>\r\n<h2><strong>Conditions That Can Be Treated with Stem Cell Therapy</strong></h2>\r\nAny condition that is helped by one type of Regenerative Orthopedics (Stem Cell Therapy, PRP, Prolotherapy) can at least theoretically be helped by another type of Regenerative Orthopedics. While Stem Cell Therapy is typically not used for ligament and tendon injuries, it surely can be used for those conditions. Most clinics, including OrthoRegen, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those who are involved in treating people with articular cartilage degeneration or joint injury know that when these patients are treated with Stem Cell Therapy, the vast majority of them improve.\r\n<h2><strong>Adult Stem Cell Injections, NOT Embryonic Stem Cell Injections</strong></h2>\r\nThe Stem Cell Therapy done at OrthoRegen has nothing to do with embryonic stem cell therapy. Most research and studies have shown that cord blood does <strong>NOT</strong> have many, if any, stem cells. We only use the patient’s own adult stem cells. We take the bone marrow from the patient’s own tibia or iliac crest bones and use fat from the abdominal or buttock areas so that the stem cells are the freshest. Additionally, there is no cross contamination this way! We then inject these cells into the defective joint.\r\n<h2>Why Do We Use PRP with Stem Cells from Bone Marrow and Fat?</h2>\r\nAt OrthoRegen, we only use the <strong>Gold Standard in Stem Cell Therapy</strong>, which includes bone marrow stem cells, fat stem cells, PRP, and Dextrose Prolotherapy. Stem cells are great, but they need to be directed as to what to do. Some of the directors are the growth factors that are in the platelets. Platelets aid the stem cells in their various jobs including differentiation and then aid in the differentiated cells making the extracellular matrix to repair the injured tissue. One could think of the stem cells as construction workers and the platelets (and their growth factors) as their supervisors, telling them what to do. Platelet Rich Plasma contains a myriad of substances that stimulate healing, like platelet-derived growth factor, which attracts immune system cells to the injured area to enhance ligament and tendon healing. And fibroblast growth factor which promotes the growth of the cells involved in collagen and cartilage formation.\r\n\r\nWe have found that Comprehensive Regenerative Orthopedics using the combination of all of these regenerative treatments works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\r\n<ol>\r\n 	<li>Akens MK, Hurtig MB. Influence of species and anatomical location on chondrocyte expression. <em>BMC Musculoskeletal Disorders</em>. 2005; 6:23.</li>\r\n 	<li>Guilak F, Estes BT, Dickman BO. 2010 Nicolas Andry Award: Multipotent adult stem cells from adipose tissue for musculoskeletal tissue engineering. <em>Clinical</em><em> Orthopedics and Related Research. 2010;468:2530-2540.</em></li>\r\n</ol>','Stem Cell Therapy at OrthoRegen - Why We are Different','','inherit','closed','closed','','3526-revision-v1','','','2020-02-10 17:36:30','2020-02-10 17:36:30','',3526,'https://www.drfields.com/uncategorized/3526-revision-v1/',0,'revision','',0),(3528,8,'2020-02-10 17:40:23','2020-02-10 17:40:23','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li> 	\r\n<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	<li class=\"last\"><a title=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/\">Degenerative Disc Disease: Proper Diagnosis and Treatment</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-02-10 17:40:23','2020-02-10 17:40:23','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3529,8,'2020-02-13 03:49:27','2020-02-13 03:49:27','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2020-02-13 03:49:27','2020-02-13 03:49:27','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(3531,8,'2020-02-18 17:18:49','2020-02-18 17:18:49','','iwp_log_5e4c1c795e7bd','','publish','closed','closed','','iwp_log_5e4c1c795e7bd','','','2020-02-18 17:18:49','2020-02-18 17:18:49','',0,'https://www.drfields.com/uncategorized/iwp_log_5e4c1c795e7bd/',0,'iwp_log','',0),(3532,8,'2020-02-18 17:18:58','2020-02-18 17:18:58','','iwp_log_5e4c1c828fea2','','publish','closed','closed','','iwp_log_5e4c1c828fea2','','','2020-02-18 17:18:58','2020-02-18 17:18:58','',0,'https://www.drfields.com/uncategorized/iwp_log_5e4c1c828fea2/',0,'iwp_log','',0),(3533,8,'2020-02-18 17:37:05','2020-02-18 17:37:05','Medical Education','Medical Education','Medical Education','inherit','open','closed','','medical-education','','','2020-02-18 17:37:05','2020-02-18 17:37:05','',0,'https://www.drfields.com/wp-content/uploads/2020/02/medical-education.jpg',0,'attachment','image/jpeg',0),(3535,8,'2020-02-18 17:46:00','2020-02-18 17:46:00','[caption id=\"attachment_3462\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-3462 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-01.jpg\" alt=\"Page 01\" width=\"955\" height=\"1249\" /> Page 01[/caption]\r\n\r\n[caption id=\"attachment_3465\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3465\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-02.jpg\" alt=\"Page 02\" width=\"955\" height=\"1249\" /> Page 02[/caption]\r\n\r\n[caption id=\"attachment_3466\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3466\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-3.jpg\" alt=\"Page 3\" width=\"955\" height=\"1249\" /> Page 3[/caption]\r\n\r\n[caption id=\"attachment_3467\" align=\"aligncenter\" width=\"955\"]<a href=\"https://www.drfields.com/articles/regenerative-orthopedics/><img class=\"size-full wp-image-3467\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-04.jpg\" alt=\"Page 04\" width=\"955\" height=\"1249\" /></a> Page 04[/caption]','June 2019 Townsend Article','','inherit','closed','closed','','3416-revision-v1','','','2020-02-18 17:46:00','2020-02-18 17:46:00','',3416,'https://www.drfields.com/uncategorized/3416-revision-v1/',0,'revision','',0),(3536,8,'2020-02-18 17:47:33','2020-02-18 17:47:33','[caption id=\"attachment_3462\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-3462 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-01.jpg\" alt=\"Page 01\" width=\"955\" height=\"1249\" /> Page 01[/caption]\r\n\r\n[caption id=\"attachment_3465\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3465\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-02.jpg\" alt=\"Page 02\" width=\"955\" height=\"1249\" /> Page 02[/caption]\r\n\r\n[caption id=\"attachment_3466\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3466\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-3.jpg\" alt=\"Page 3\" width=\"955\" height=\"1249\" /> Page 03[/caption]\r\n\r\n[caption id=\"attachment_3467\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-3467 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-04.jpg\" alt=\"Page 04\" width=\"955\" height=\"1249\" /> Page 04[/caption]','June 2019 Townsend Article','','inherit','closed','closed','','3416-revision-v1','','','2020-02-18 17:47:33','2020-02-18 17:47:33','',3416,'https://www.drfields.com/uncategorized/3416-revision-v1/',0,'revision','',0),(3537,8,'2020-02-18 17:48:47','2020-02-18 17:48:47','[caption id=\"attachment_3462\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-3462 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-01.jpg\" alt=\"Page 01\" width=\"955\" height=\"1249\" /> Page 01[/caption]\r\n\r\n[caption id=\"attachment_3465\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3465\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-02.jpg\" alt=\"Page 02\" width=\"955\" height=\"1249\" /> Page 02[/caption]\r\n\r\n[caption id=\"attachment_3466\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3466\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-3.jpg\" alt=\"Page 3\" width=\"955\" height=\"1249\" /> Page 03[/caption]\r\n\r\n[caption id=\"attachment_3467\" align=\"aligncenter\" width=\"955\"]<a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"wp-image-3467 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-04.jpg\" alt=\"Page 04\" width=\"955\" height=\"1249\" /></a> Page 04[/caption]','June 2019 Townsend Article','','inherit','closed','closed','','3416-revision-v1','','','2020-02-18 17:48:47','2020-02-18 17:48:47','',3416,'https://www.drfields.com/uncategorized/3416-revision-v1/',0,'revision','',0),(3538,8,'2020-02-18 18:29:06','2020-02-18 18:29:06','<strong>PROLOTHERAPY: DEXTROSE/PRP/STEM CELL ALTERNATIVE TREATMENTS TO AVOID JOINT</strong> <strong>AND BACK SURGERY. THE FUTURE IS NOW! </strong>BY PETER A. FIELDS, MD, DC\r\n\r\n<em>Presented at the American Academy of Anti-aging medicine; VI World Congress; Anti-aging and Regenerative Medicine</em>\r\n\r\nThe revitalization and regeneration of the joints and of the spinal column are not in the future; it is happening today! Last year in the United States there were almost 2 million total joint replacement surgeries and another 25 to 30 million partial joint surgeries. Because of the previous, each year people are seeking non-surgical alternatives to joint and spinal column surgery. Cutting a part of the joint or injecting it with steroids is not the only answer, let’s remember that <em>surgery can always take place, but can never be undone</em>. Several sources state that 40% of those surgeries could have been avoided.\r\n<p style=\"height: 172px;\"><img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-1.jpg\" alt=\"Prolo Spanish\" /> <img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-2.jpg\" alt=\"Prolo Spanish\" /><img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-3.jpg\" alt=\"Prolo Spanish\" /></p>\r\n<img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-4.jpg\" alt=\"Prolo Spanish\" />Those people who have been told that they have severe arthritis, who are bone against bone in their joint; that their joint has degenerated into a great quantity of cartilage which has worn away, and that the only thing left to do is to replace the joint. Now they have another option!\r\n\r\n<img class=\"alignright\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-5.jpg\" alt=\"Prolo Spanish\" />Stem cells have the potential to regenerate any type of the body’s tissue, and its use in regenerative medicine is growing more and more in the medical community as an alternative to invasive surgery, including cases where a replacement is required. What is remarkable about stem cells is the fact that when they are injected into a specific area of the body, they know the types of cells that the body needs – for example, the meniscus cells or cartilage cells. This is a very exciting moment in the field of REGENERATIVE MEDICINE.\r\n\r\n<img class=\"alignleft\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-6.jpg\" alt=\"Prolo Spanish\" />The results show several patients who have shown a significant functional improvement. The patients that were submitted to arthroscopy after the transplant showed joint cartilage which was close to normal. MAGNETIC RESONANCE IMAGES (MRI\'s) have revealed complete healing with a congruent cartilage tissue, while other magnetic resonances of the patients showed congruence in the cartilaginous tissue.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignright\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-7.jpg\" alt=\"Prolo Spanish\" />Several reviews by investigators have concluded that the autologous transplant of the mesenchyme cell culture of the bone marrow, of adipose tissue and of plasma rich in platelets are a great promise in the treatment of joint cartilage defects, particularly defects of great size (&gt; 4 cm). The clinical results have been positive at over 1 year after having been carried out. The procedure in several patients and the procedure’s success have been measured in longer periods of time.\r\n\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"\" width=\"160\" height=\"216\" />\r\n\r\n<em>In his medical practice, Dr. Peter Fields uses the four types of non-surgical procedures to revitalize and support joint regeneration: the stem cells from the bone marrow, the cells from the adipose tissue, the PRP and the prolotherapy with dextrose. All of these are considered different forms that cause the tissue to proliferate or regenerate. When the new tissue whether it is cartilage, bone, ligament, tendon, meniscus or other is regenerated, the joint becomes more vibrant and strong and it can once again work well. The objective is the same: stimulate to repair damaged tissues.</em>\r\n\r\n<strong>Peter A. Fields, MD, DC is one of the few doctors in the United States who is both a Doctor of Medicine and a Chiropractor. He is widely recognized as a leader in REGENERATIVE ORTHOPEDICS having been on numerous programs and quoted in magazines and on-line publications.</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Regenerative Medicine Lecture in Mexico City','','inherit','closed','closed','','1419-revision-v1','','','2020-02-18 18:29:06','2020-02-18 18:29:06','',1419,'https://www.drfields.com/uncategorized/1419-revision-v1/',0,'revision','',0),(3540,8,'2020-02-20 04:09:40','2020-02-20 04:09:40','Are you experiencing sciatica pain going down your leg? And did the pain begin years ago with aggravating pain in the gluts or the back of the thigh? Or are you noticing new symptoms of tingling down to the calf and toes? Sciatica pain and symptoms often occur with sitting, standing, and walking; and may be relieved with lying down. Does that sound like you?\r\n<h3>Seeing A Chiropractor for Sciatica Pain</h3>\r\nChiropractors should be the first physician to see about sciatica pain because this is an area they treat all of the time. But if the pain continues after giving chiropractic a chance (several or more treatments are usually needed), and then also trying other various treatment modalities, like acupuncture, massage, and physical therapy, the next step would be Regenerative Orthopedics as a solution for this persistent pain.\r\n\r\nDid you receive an MRI with a report revealing some type of encroachment on a nerve root in the lower back area, which is pinching the nerve, and possibly some displacement and/or degeneration in the vertebrae of the lower back? These are common on MRI reports when experiencing sciatica pain. The displacement mentioned in the report may include forward or backward movement of the vertebrae. And this movement pinches the nerve root due to <em>instability in the lumbar spine caused by ligament laxity</em>.\r\n<h2>Sciatica Pain May Be the Result of Lax Ligaments</h2>\r\nLigaments are a type of connective tissue that connects bone to bone. And ligaments help to stabilize the spine and other joints. Injured ligaments are often lax. When they become lax or loose, they have difficulty healing because they have a pretty poor blood supply.\r\n\r\nRegenerative Orthopedics stimulates the body to boost the blood supply and fibroblasts in the injured areas, resulting in repair of the injured ligaments. The fibroblasts are the cells through which collagen is made and by which tendons and ligaments repair.\r\n\r\nRegenerative Orthopedics helps strengthen and tighten the ligaments. This results in stabilization of the joints of the lumbar spine which then stops the pinching of the nerve.\r\n<h2>Cortisone vs Dextrose Caudal Epidural</h2>\r\nA lumbar epidural is an injection into the epidural space of the lumbar spine. When patients experience referred pain, either cortisone (steroid) or dextrose injections can be used. Steroids are strong anti-inflammatories. But they need to be limited to no more than 3-4 injections each year in order to prevent the thinning of the bone and connective tissue damage.\r\n\r\n[caption id=\"attachment_4822\" align=\"alignright\" width=\"544\"]<img class=\" wp-image-4822\" src=\"https://www.drfields.com/wp-content/uploads/2020/02/Cortisone-500x375.jpeg\" alt=\"Cortisone\" width=\"544\" height=\"408\" /> <strong>A Problem with Cortisone Is That It Is Just a Bandaid Over Degeneration</strong>[/caption]\r\n\r\nAt OrthoRegen<sup>®</sup>, we endeavor to build up the soft tissue and joint structures. Because of that, we do not use substances like cortisone, because it causes degeneration and inhibits healing. Instead, we use a dextrose solution to reduce the swelling of the nerve without the anti-inflammatory effect and the steroid side effects.\r\n\r\nRegenerative Orthopedics eliminate or reduce pain, numbness, and tingling, enabling the former sciatica pain sufferer to be able to sit, stand, and walk without any pain or annoying symptoms. The treatment effectively resolves the symptoms and results in pain-free living.\r\n\r\nHere at OrthoRegen<sup>®</sup>, we practice a comprehensive approach to Regenerative Orthopedics. And it\'s a great alternative to surgery and joint replacement. The treatment helps regenerate connective soft tissues and accelerates recovery.\r\n\r\nLumbar instability results in an array of symptoms. And they include sacroiliac pain, lower back pain, sciatic pain, and referred leg pain. All of these symptoms can be treated effectively with Regenerative Orthopedics.  So, if you are suffering from any of the symptoms listed above and would like to learn more, you can give us a call at (310)453-1234. We’d love to help you eliminate your sciatica symptoms.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Treat Sciatica Pain Non-Surgically','','publish','open','closed','','treat-sciatica-pain-non-surgically','','','2021-08-06 21:45:47','2021-08-06 21:45:47','',0,'https://www.drfields.com/?p=3540',0,'post','',0),(3541,8,'2020-02-20 04:09:40','2020-02-20 04:09:40','Are you experiencing sciatica pain going down your leg? The pain may have begun years ago with aggravating pain in the gluts or the back of the thigh. Are you noticing new symptoms of tingling down to the calf and toes? Sciatica pain and symptoms may occur with sitting, standing, and walking; and may be relieved with lying down.\r\n\r\nChiropractors should be your first physician to see about sciatica pain as this is an area they treat all of the time. But if the pain continues after giving chiropractic a chance (several or more treatments are usually needed), and then also trying other various treatment modalities, like acupuncture, massage, and physical therapy, the next step would be Regenerative Orthopedics as a solution for this persistent pain.\r\n\r\nDid you receive an MRI with a report revealing some type of encroachment on a nerve root in the lower back area, which is pinching the nerve, and possibly some displacement and/or degeneration in the vertebrae of the lower back? These are not uncommon on MRI reports when experiencing sciatica pain. The displacement mentioned on the report may include forward or backward movement of the vertebrae which pinches the nerve root due to <em>instability in the lumbar spine caused by ligament laxity</em>.\r\n<h2>How Do Ligaments Become Lax?</h2>\r\nLigaments are a type of connective tissue that connect bone to bone and help stabilize the spine and other joints. Injured ligaments have difficulty healing because they have a pretty poor blood supply. Regenerative Orthopedics stimulates the body to boost the blood supply and fibroblasts at the injured areas, resulting in repair of the injured ligaments. The fibroblasts are the cells through which collagen is made and by which tendons and ligaments repair.\r\n\r\nRegenerative Orthopedics helps strengthen and tighten the ligaments thereby stabilizing the joints of the lumbar spine which then stops the pinching of the nerve.\r\n<h2>Cortisone vs Dextrose Caudal Epidural</h2>\r\nA lumbar epidural is an injection into the epidural space of the lumbar spine. When patients are having referred pain, a cortisone (steroid) or dextrose injection can be used. Steroids are strong anti-inflammatories and must be limited to no more that 3-4 injections each year in order to prevent thinning of the bone and connective tissue damage.\r\n\r\nAt OrthoRegen, we endeavor to build up the soft tissue and joint structures, and do not use substances like cortisone, which cause degeneration and inhibit healing. Instead, the dextrose solution can be used to reduce the swelling of the nerve without the anti-inflammatory effect and the steroid side effects.\r\n\r\nRegenerative Orthopedics eliminate or reduce pain, numbness, and tingling, enabling the former sciatica sufferer to be able to sit, stand, and walk without any pain or annoying symptoms. The treatment is very effective at achieving symptom resolution and pain-free living.\r\n\r\nHere at OrthoRegen, we practice a comprehensive approach to Regenerative Orthopedics as an alternative to surgery and joint replacement in order to help regenerate connective soft tissues and accelerate recovery. Lumbar instability can cause an array of symptoms including sacroiliac pain, lower back pain, sciatic symptoms, and referred leg pain. All can be treated effectively with Regenerative Orthopedics.  If you are suffering from any of the symptoms listed above and would like to learn more, you can give us a call at (310)453-1234. We’d love to help you eliminate your sciatica symptoms.','Treat Sciatica Pain Non-Surgically','','inherit','closed','closed','','3540-revision-v1','','','2020-02-20 04:09:40','2020-02-20 04:09:40','',3540,'https://www.drfields.com/uncategorized/3540-revision-v1/',0,'revision','',0),(3543,8,'2020-02-20 04:12:37','2020-02-20 04:12:37','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-02-20 04:12:37','2020-02-20 04:12:37','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3544,9,'2021-05-08 02:22:37','2021-05-08 02:22:37','[caption id=\"attachment_4089\" align=\"alignleft\" width=\"400\"]<img class=\"wp-image-4089 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/sciatical-400x500.png\" alt=\"Sciatica Symptoms\" width=\"400\" height=\"500\" /> <strong><em> Do Sciatica symptoms keeping you down?   Regenerative Orthopedics gets you back up!</em></strong>[/caption]\n<h2><strong>Relief from Sciatica Symptoms         </strong></h2>\nSciatica is a complaint that is tossed around quite frequently in the context of burning low back pain that shoots down a person’s buttocks, legs, and/or feet. And you’ve probably heard about sciatica or have mentioned it yourself! If you’ve had sciatica symptoms, there\'s a good chance a friend has recommended their favorite treatment or therapist to help you find some relief.\n\nBut did you know that sciatica is not actually a disease? Sure, it’s a real thing, but sciatica is a symptom, and not the disease or condition itself. The condition is called<strong> lumbar radiculopathy. </strong>Oftentimes, the terms sciatica and lumbar radiculopathy are used interchangeably. Lumbar refers to the lower back area and radiculopathy is a disease of the root of a nerve.\n\nFor those of you who have experienced the pain of lumbar radiculopathy or an actual pinched nerve, <strong>the pain is very excruciating</strong>. The sufferer commonly experiences burning pain shooting down the leg. And the pain is so bad it will stop you in your tracks.\n<h3>How Did You Get to this Point of Extreme Pain?</h3>\nThe common denominator for most back pain problems is spinal instability. Injury to the ligaments of the back occurred at some point. And typically from bending over and twisting with the knees in a locked position, which then stretched the ligaments, and made them vulnerable to injury. The result is weak and lax ligaments. And when ligaments of the lumbar spine are weak, the vertebrae can slip out of place and pinch the nerve.\n<h3><strong>What Are the Common Treatments for Sciatica Symptoms or Lumbar Radiculopathy?</strong></h3>\nChiropractors treat sciatica symptoms with much success and should be the first practitioners to see for this condition. You can also try treatments like massage and stretching for relief. But these therapies will only work on the surrounding muscles, and any relief will very likely be temporary.<span class=\"Apple-converted-space\"> </span>\n<h4><em>Regenerative Orthopedics Are One Treatment Option</em></h4>\nIf ligaments are weakened, the muscles will be going into spasm. That\'s because muscles spasm in an effort to stabilize the area that is currently unstable due to the ligament injury. Muscle-strengthening may be of benefit too. But remember that the underlying injury of the ligaments needs to be addressed. Regenerative Orthopedic treatments, such as Prolotherapy or PRP, are great options for addressing ligament injuries. And they are effective at both repairing and strengthening these types of soft tissue injuries.\n<h4><em>Non-Steroidal Anti-inflammatory Drugs (NSAIDs) and Cortisone Are Not Reparative Treatments</em></h4>\nNon-steroidal anti-inflammatory drugs (NSAIDs) are frequently used, but they are not reparative. So when you reach for an aspirin, Advil, or some other over-the-counter NSAID pain reliever, know that this is not a fix. Your physician may recommend prescription NSAID’s. But again, NSAID’s do not repair the injury. They may give you some relief, but they will not fix the underlying problem or heal the injury.\n\nIf sciatica symptoms do not resolve on their own and the pain continues, a cortisone injection may be recommended by your physician. Epidural cortisone injections may reduce the size of stressed nerve roots, but they do have side effects. Studies have shown that cortisone causes tissue like the ligaments to grow weaker. So, if weak tissue is the source of the problem, to begin with, then why use something that may make the problem worse? Instead, the spinal instability that is allowing the vertebral segments to move excessively needs to be addressed, so the pain can stop!\n<h4><strong><em>What About Painkillers and Anti-Depressants for Sciatica Symptoms?</em></strong></h4>\nHave you tried painkillers and found no lasting relief? Until the source of the problem is addressed, you may find yourself exhausted and frustrated at the failure of various therapies to provide long-lasting relief. Not to mention treatments that are ineffective at relieving lumbar radiculopathy and the sciatica symptoms.\n\nAre antidepressants and anticonvulsants being recommended? Although you may be depressed because of unending pain, good chance depression is not the source of your back pain. And what about the use of anticonvulsants to treat sciatica? In a 2018 article in the Journal of the American Medical Association (JAMA), the writers note that the commonly used anticonvulsant medication for sciatica called “pregabalin does not improve symptoms of sciatica but frequently has adverse effects.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\n\nHave you exhausted conservative care options? And have you progressed to stronger medications like painkillers, antidepressants, and anticonvulsants, and are possibly facing the recommendations of surgery? Then it is time to look into a solution that actually repairs the injury. Regenerative Orthopedics can provide an effective option that results in relief and repair while utilizing a non-surgical solution for those with persistent sciatica symptoms and lumbar radiculopathy.\n<h4><em><strong>What if Surgery Has Been Recommended for Your Sciatica Symptoms?</strong></em></h4>\nIf you are facing surgery for relief from your symptoms, minimally invasive spine surgery may be the surgery you are considering. Surgery may give you relief. However, studies have shown that although there may be a rapid decrease in pain and disability after a few months, years down the road patients still experience mild to moderate pain post-surgery.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\n<h3><strong>Regenerative Orthopedics to Strengthen Spinal Instability and Relieve Sciatica Symptoms</strong></h3>\nWhy choose surgery and treatments with side effects? Or those which also lack benefit when there is another option? Choose the path that actually repairs the injury and solves the problem. Regenerative Orthopedics is non-surgical, plus it is effective.\n\nAt OrthoRegen<sup>®</sup>, we treat all of the involved areas of the low back, including the injured ligaments and their attachments to stimulate the body’s own natural healing process. The treatment boosts the blood supply to the injured areas. And that brings reparative cells to the ligaments so they can heal. Remember that when the ligaments are weak, they allow for too much movement of the vertebrae. And with this extra movement a nerve can get pinched.\n\nRegenerative Orthopedic treatments to these areas strengthen and tighten the ligaments. That leads to stabilization of the lumbar spine, which stops the excessive movement, and repairs the underlying problem. The result is pain relief. Regenerative Orthopedics is effective at bringing pain relief and return to function for those suffering from sciatica symptoms and lumbar radiculopathy.\n\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Morgan DJ, Dhruva SS, Coon ER, Wright SM, Korenstein D. 2018 Update on Medical Overuse. JAMA Internal Medicine. 2018 Dec 3.  [<a href=\"https://jamanetwork.com/journals/jamainternalmedicine/article-abstract/2717505\">JAMA</a>]\n\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Machado GC, Witzleb AJ, Fritsch C, Maher CG, Ferreira PH, Ferreira ML. Patients with sciatica still experience pain and disability 5 years after surgery: A systematic review with meta-analysis of cohort studies. Eur J Pain. 2016 May 12.[<a href=\"https://scholar.google.com/scholar?cluster=1973126208637694796&amp;hl=en&amp;as_sdt=0,31\">Google Scholar</a>]\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Relief from Sciatica Symptoms','','inherit','closed','closed','','2555-autosave-v1','','','2021-05-08 02:22:37','2021-05-08 02:22:37','',2555,'https://www.drfields.com/uncategorized/2555-autosave-v1/',0,'revision','',0),(3545,9,'2020-02-26 00:41:02','2020-02-26 00:41:02','<strong>Relief from Sciatica Symptoms</strong>\r\n\r\nSciatica is a complaint that is tossed around quite frequently in the context of burning low back pain that shoots down a person’s buttocks, legs, and/or feet. You’ve probably heard it or have said it yourself! If you’ve had this problem, a good chance a friend has recommended their favorite treatment or therapist to help you find some relief. But did you know that sciatica is not actually a disease? Sure, it’s a real thing, but sciatica is a symptom, and not the disease or condition itself. The condition is called<strong> lumbar radiculopathy. </strong>Oftentimes the terms sciatica and lumbar radiculopathy are used interchangeably. Lumbar refers to the lower back area and radiculopathy is a disease of the root of a nerve.\r\n\r\nFor those of you who have experienced the pain of lumbar radiculopathy or an actual pinched nerve, the pain is very excruciating. The sufferer commonly experiences burning pain shooting down the leg, with pain so bad it will stop you in your tracks. How did you get to this point of extreme pain? The common denominator for most back pain problems is spinal instability. Injury to the ligaments of the back occurred at some point, typically from bending over and twisting with the knees in a locked position, which then stretched the ligaments, and made them vulnerable to injury. The result is weak and lax ligaments. When ligaments of the lumbar spine are weak, the vertebrae can slip out of place and pinch the nerve.\r\n\r\n<strong>What Are the Common Treatments for Sciatica or Lumbar Radiculopathy?</strong>\r\n\r\nChiropractors treat sciatica with much success and should be the first practitioners to see for this condition. You can also try treatments like massage and stretching for relief, but these therapies will only work on the surrounding muscles, and any relief will very likely be temporary.<span class=\"Apple-converted-space\"> </span>\r\n\r\nIf ligaments are weakened, the muscles will be going into spasm, because muscles spasm in an effort to stabilize the area that is currently unstable due to the ligament injury. Muscle-strengthening may be of benefit, but remember that the underlying injury of the ligaments needs to be addressed. Regenerative Orthopedic treatments, such as Prolotherapy or PRP, are great options for addressing ligament injuries and are effective at repairing and strengthening these types of soft tissue injuries.\r\n\r\nNon-steroidal anti-inflammatory drugs (NSAIDs) are frequently used, but they are not reparative. So when you reach for an aspirin, Advil, or some other over-the-counter NSAID pain reliever, know that this is not a fix. Your physician may recommend prescription NSAID’s, but again, NSAID’s do not repair the injury. They may give you some relief, but they will not fix the underlying problem or heal the injury. If sciatica symptoms do not resolve on their own and the pain continues, a cortisone injection may be recommended by your physician. Epidural cortisone injections may reduce the size of stressed nerve roots, but they do have side effects. Studies have shown that cortisone causes tissue like the ligaments to grow weaker. So, if weak tissue is the source of the problem, to begin with, then why use something that may make the problem worse? Instead, the spinal instability that is allowing the vertebral segments to move excessively needs to be addressed, so the pain can stop!\r\n\r\nHave you tried painkillers and found no lasting relief? Until the source of the problem is addressed, you may find yourself exhausted and frustrated at the failure of various therapies to provide long-lasting relief and treatments that are ineffective at relieving lumbar radiculopathy and the sciatica symptoms. Are antidepressants and anticonvulsants being recommended? Although you may be depressed because of unending pain, good chance depression is not the source of your back pain. And what about the use of anticonvulsants to treat sciatica? In a 2018 article in the Journal of the American Medical Association (JAMA), the writers note that the commonly used anticonvulsant medication for sciatica called “pregabalin does not improve symptoms of sciatica but frequently has adverse effects.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a> If you have exhausted conservative care options, have progressed to stronger medications like painkillers, antidepressants, and anticonvulsants, and are possibly facing the recommendations of surgery, it is time to look into a solution that actually repairs the injury. Regenerative Orthopedics can provide an effective option that results in relief and repair while utilizing a non-surgical solution for those with persistent sciatica symptoms and lumbar radiculopathy.\r\n\r\n<strong>What if Surgery Has Been Recommended?</strong>\r\n\r\nIf you are facing surgery for relief from your symptoms, minimally invasive spine surgery may be the surgery you are considering. Surgery may give you relief. However, studies have shown that although there may be a rapid decrease in pain and disability after a few months, years down the road patients still experience mild to moderate pain post-surgery.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n\r\n<strong>Regenerative Orthopedics to Strengthen Spinal Instability and Relieve Sciatica Symptoms</strong>\r\n\r\nWhy choose surgery and treatments with side effects and which also lack benefit when there is another option? Choose the path that actually repairs the injury and solves the problem. Regenerative Orthopedics is non-surgical, plus it is effective. At OrthoRegen, we treat all of the involved areas of the low back including the injured ligaments and their attachments to stimulate the body’s own natural healing process. The treatment boosts the blood supply to the injured areas, which brings reparative cells to the ligaments so they can heal. Remember that when the ligaments are weak, they allow for too much movement of the vertebrae, and a nerve can get pinched. Regenerative Orthopedic treatments to these areas strengthen and tighten the ligaments, which will stabilize the lumbar spine, stop the excessive movement, and repair the underlying problem. The result is pain relief. Regenerative Orthopedics is effective at bringing pain relief and return to function for those suffering from sciatica symptoms and lumbar radiculopathy.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Morgan DJ, Dhruva SS, Coon ER, Wright SM, Korenstein D. 2018 Update on Medical Overuse. JAMA Internal Medicine. 2018 Dec 3.  [<a href=\"https://jamanetwork.com/journals/jamainternalmedicine/article-abstract/2717505\">JAMA</a>]\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Machado GC, Witzleb AJ, Fritsch C, Maher CG, Ferreira PH, Ferreira ML. Patients with sciatica still experience pain and disability 5 years after surgery: A systematic review with meta-analysis of cohort studies. Eur J Pain. 2016 May 12.[<a href=\"https://scholar.google.com/scholar?cluster=1973126208637694796&amp;hl=en&amp;as_sdt=0,31\">Google Scholar</a>]','Relief from Sciatica Symptoms','','inherit','closed','closed','','2555-revision-v1','','','2020-02-26 00:41:02','2020-02-26 00:41:02','',2555,'https://www.drfields.com/uncategorized/2555-revision-v1/',0,'revision','',0),(3547,8,'2020-03-04 20:52:08','2020-03-04 20:52:08','When we are confronted with a joint replacement recommendation by our doctor it is so important to get informed and know what to expect. Many of us are concerned about the pain, the recovery time, and the cost. But have you ever thought about having allergic reactions to joint replacements?\r\n\r\nAllergy to the implant materials is an actual issue. And it\'s a new concern for individuals with joint pain who face joint replacement. It’s also another good reason to investigate other options when confronted with a surgical referral. In several previous articles, we have discussed how Regenerative Orthopedics is an effective alternative to surgery and one that really should be strongly considered.\r\n<h3>Are Joint Replacements Bad?</h3>\r\nOf course, there are times when surgery is necessary. However, every time a surgeon cuts, shaves, and/or removes parts of a joint, there is always an increased possibility for the development of arthritis, degeneration, and further pain in that joint. That’s because the removal of tissue causes the joints to become more unstable. The soft tissue structures are what provide much of the stability in the joint. So when they are cut or removed, the joint stability it altered.  Besides, why go through the pain and expense of surgery when you don’t need to? Now, allergic reactions to joint replacements are another reason to look for an alternative to surgery. And scientists are documenting the risk of allergy from implants.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n<h3>What Are Scientists Saying About Allergic Reactions to Joint Replacements and Metal Implants?</h3>\r\n“Metal allergy is in fact a well-documented factor in the failure of implants, and the need for allergy testing in sensitive patients is well recognized by both implant manufacturers and by surgeons alike.” And in this study, “All of the samples studied contained a consistent yet low percentage of components to which allergies have been contributed.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a> But even small amounts are sufficient to cause an allergic reaction.\r\n<h3>What are the Symptoms of Allergic Reactions to Joint Replacements and Metal Implants?</h3>\r\n“Patients suffering from metal hypersensitivity may have numerous local symptoms associated with an overactive immune system, such as localized pain, swelling, cutaneous allergic reactions, joint and muscle pain, implant failure, apparent recurrent infections around the operation site, and possible systemic reactions such as fibromyalgia, chronic fatigue and cognitive impairment.”<sup>ii </sup>As you can see, some of these hypersensitivity reactions result in chronic auto-immune type illnesses. That is a far cry from what the individual thought they were signing up for when they choose the route of the surgical implant…freedom from pain and suffering.\r\n\r\nTitanium used to be thought of as one of the safer metals, and in fact was used as the implant of choice for patients suffering from allergies to nickel, chrome, and cobalt. However, the titanium implants also contain these previously noted metals that are causing allergic responses.<sup>ii</sup>\r\n\r\nMetals usually found in common medical-grade alloys include cobalt, nickel, chrome, stainless steel, and titanium. Many also contain various detectable impurities like aluminum, iron, vanadium, and more.<sup>ii</sup>\r\n\r\nIt is of utmost importance that if you have an allergy to these metals, that you are thoroughly informed about the potential reaction that might result from the choice of implant materials.<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a>\r\n<h2>Corrosion of Implant Materials</h2>\r\n<strong>Allergic reactions to joint replacements are not the only problem that can occur with implant materials. There is also an issue of corrosion of the implants with wear and tear</strong>.\r\n\r\nNo matter what materials are used in joint replacements, wear of the implant is a predictable problem.  In fact, wear is the major reason orthopedic implants malfunction. That malfunction actually hastens the problem of corrosion. When implant materials are chosen, they are chosen because of their higher resistance to wear, like metal alloy and ceramics.\r\n\r\nIn hip implants, titanium and its alloys are often used for fabricating the femoral component. And the ball is prepared by either cobalt-chromium alloy or other hard ceramics. The debris that is released with the wear that damages the implant can begin a biological process that activates a brutal inflammatory reaction. The corrosion that transpires from the friction that results from this wear is actually a huge worry because it discharges non-compatible metallic ions that are dispersed into the body. <a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\r\n\r\nResearch articles demonstrate plenty of evidence about the issue of corrosion of implants and how the debris results in disease. One article discusses how cobalt alloy debris has been implicated in the early failure of some designs of current total joint implants, and also how the debris from cobalt implants causes an extreme inflammatory reaction and even bone loss.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\r\n\r\nHere is an excerpt from another article: “Immune reactions to orthopedic implant debris are the primary cause of total joint replacement (TJR) failure over the long term (15–20 years). It has been well established that implant debris causes local inflammation, limiting the long-term performance of the over one million total joint replacements (TJR) implanted each year in the US. Implant debris induces a subtle inflammatory cascade resulting in a slow progression of bone loss… that over time leads to implant failure.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nThe researchers say in these studies that the debris from implants is definitely a problem and that it causes disease. Obviously, this is not a good scenario.\r\n<h3>So, Where Does the Debris from Wear and Tear of the Implant Go?</h3>\r\nThe scientists find the debris in the lymph nodes, liver, and spleen according to the research looking at the dissemination of wear particles. “Metallic wear particles in the liver or spleen were more prevalent in patients who had had a failed hip arthroplasty (seven of eight) than in patients who had had a primary hip (two of eleven) or knee replacement (two of ten).\r\n\r\nMetallic wear particles were detected in the lymph nodes in 68 percent (nineteen) of the twenty-eight patients with an implant from whom lymph nodes were available for study.\r\n\r\nIn this study, the systemic distribution of metallic and polyethylene wear particles was a common finding. Both in patients with a previously failed implant and in those with a primary total joint prosthesis. The prevalence of particles in the liver or spleen was greater after reconstructions with mechanical failure.”<a href=\"#_edn7\" name=\"_ednref7\">[vii]</a>\r\n<h3>Regenerative Orthopedics: An Alternative to Joint Replacement</h3>\r\nMany people contact our office because they are experiencing joint pain and are looking for an <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-treatment-an-alternative-to-joint-replacement/\">alternative to a surgical joint replacement.</a> We offer very effective non-surgical options with Regenerative Orthopedics, including <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a>.\r\n\r\nAt OrthoRegen<sup>®</sup>, we only use the Gold Standard in Stem Cell Therapy, and the procedure only has to be done once. Plus, this non-surgical therapy not only provides a non-surgical option but also helps you to avoid an allergic response from the implants used in joint replacement or the pathology that can occur from the debris caused by corrosion.\r\n\r\nWe strongly recommend looking into non-surgical Regenerative Orthopedics with Peter A. Fields, MD, DC, and OrthoRegen<sup>®</sup> for the repair of painful joints before opting for a joint replacement. Call us today at 310-453-1234.\r\n\r\nRemember, once surgery has been done, it cannot be undone.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Laitinen, Minna, et al. \"High blood metal ion levels in 19 of 22 patients with metal-on-metal hinge knee replacements: A cause for concern.\" <em>Acta Orthopaedica</em> 88.3 (2017): 269-274.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Harloff, Thomas, et al. \"Titanium allergy or not?.\" <em>Health</em> 2.04 (2010): 306.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Guenther D, Thomas P, Kendoff D, Omar M, Gehrke T, Haasper C. Allergic reactions in arthroplasty: myth or serious problem? Int Orthop. 2016 Feb;40(2):239-44. doi: 10.1007/s00264-015-3001-6. Epub 2015 Nov 2.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Gao, Chengde, et al. \"Highly biodegradable and bioactive Fe-Pd-bredigite biocomposites prepared by selective laser melting.\" <em>Journal of advanced research</em> 20 (2019): 91-104.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Samelko, Lauryn, et al. \"Cobalt alloy implant debris induces inflammation and bone loss primarily through danger signaling, not TLR4 activation: implications for DAMP-ening implant related inflammation.\" <em>PLoS One</em> 11.7 (2016).\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Samelko, Lauryn, et al. \"TLR4 (not TLR2) dominate cognate TLR activity associated with CoCrMo implant particles.\" <em>Journal of Orthopaedic Research</em> 35.5 (2017): 1007-1017.\r\n\r\n<a href=\"#_ednref7\" name=\"_edn7\">[vii]</a> Urban, Robert M., et al. \"Dissemination of wear particles to the liver, spleen, and abdominal lymph nodes of patients with hip or knee replacement.\" <em>JBJS</em> 82.4 (2000): 457.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Allergic Reactions to Joint Replacements','','publish','open','closed','','allergic-reactions-and-problems-of-corrosion-with-joint-replacements','','','2020-08-01 02:16:05','2020-08-01 02:16:05','',0,'https://www.drfields.com/?p=3547',0,'post','',0),(3548,8,'2020-03-04 20:52:08','2020-03-04 20:52:08','When we are confronted with a joint replacement recommendation by our doctor it is so important to get informed and know what to expect. We are often concerned about the pain, the recovery time, and the cost. But have you ever thought about having an allergy to the materials used in the replacement implant? Allergy to the implant materials is an actual issue, and a new concern for individual with joint pain facing joint replacement. It’s also another good reason to investigate other options when confronted with a surgical referral. In several previous articles, we have discussed how Regenerative Orthopedics is as an effective alternative to surgery, and one that really should be strongly considered. Why not just have surgery? Of course, there are times when surgery is necessary. However, every time a surgeon cuts, shaves and/or removes parts of a joint, there is always an increased possibility for the development of arthritis, degeneration and further pain in that joint. That’s because the removal of tissue causes the joint to become more unstable, since these soft tissue structures are what provide much of the stability in the joint.  Besides, why go through the pain and expense of surgery when you don’t need to? Now there is another reason to look for an alternative to surgery…scientists are documenting the risk of allergy from implants.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nWhat is being said about allergy from metal implants? “Metal allergy is in fact a well-documented factor in the failure of implants, and the need for allergy testing in sensitive patients is well recognized by both implant manufacturers and by surgeons alike.” And in this study, “All of the samples studied contained a consistent yet low percentage of components to which allergies have been contributed.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a> But even small amounts are sufficient to cause an allergic reaction.\r\n\r\nWhat are the symptoms of metal allergy? “Patients suffering from metal hypersensitivity may have numerous local symptoms associated with an overactive immune system, such as localized pain, swelling, cutaneous allergic reactions, joint and muscle pain, implant failure, apparent recurrent infections around the operation site, and possible systemic reactions such as fibromyalgia, chronic fatigue and cognitive impairment.”<sup>ii </sup>As you can, some of these hypersensitivity reactions are chronic auto-immune type illnesses. A far cry from what the individual thought they were signing up for when choosing the surgical implant…freedom from pain and suffering.\r\n\r\nTitanium used to be thought of as one of the safer metals, and in fact was used as the implant of choice for patients suffering from allergies to nickel, chrome, and cobalt. However, the titanium implants also contain these previously noted metals that are causing allergic responses.<sup>ii</sup>\r\n\r\nMetals usually found in common medical grade alloys include cobalt, nickel, chrome, stainless steel, and titanium. Many also contain various detectable impurities like aluminum, iron, vanadium, and more.<sup>ii</sup>\r\n\r\nIt is of utmost importance if you have an allergy to these metals, that you are thoroughly informed about the potential reaction that might result from the choice of implant materials.<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a>\r\n<h2>Corrosion of Implant Materials</h2>\r\n<strong>Allergic response is not the only problem that can occur with implant materials. There is also an issue of corrosion of the implants with wear and tear</strong>.\r\n\r\nNo matter what materials are used in joint replacements, wear of the implant is a predictable problem.  In fact, wear is the major reason orthopedic implants malfunction. That malfunction actually hastens the problem of corrosion. When implant materials are chosen, they are chosen because of their higher resistance to wear, like metal alloy and ceramics. In hip implants, titanium and its alloys are often used for fabricating the femoral component, and the ball is prepared by either cobalt-chromium alloy or other hard ceramics. The debris that is released with the wear that damages the implant can begin a biological process that activates a brutal inflammatory reaction. The corrosion that transpires from the friction that results from this wear is actually a huge worry because it discharges non-compatible metallic ions that are dispersed into the body. <a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\r\n\r\nResearch articles demonstrate plenty of evidence about the issue of corrosion of implants and how the debris results in disease. One article discusses how cobalt alloy debris has been implicated in the early failure of some designs of current total joint implants, and also how the debris from cobalt implants causes an extreme inflammatory reaction and even bone loss.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\r\n\r\nHere is an excerpt from another article: “Immune reactions to orthopedic implant debris are the primary cause of total joint replacement (TJR) failure over the long term (15–20 years). It has been well established that implant debris causes local inflammation, limiting the long-term performance of the over one million total joint replacements (TJR) implanted each year in the US. Implant debris induces a subtle inflammatory cascade resulting in a slow progression of bone loss… that over time leads to implant failure.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nThe researchers are saying that the debris from implants is definitely a problem and that it causes disease. Obviously, this is not a good scenario.\r\n\r\nSo, where does the debris go? In research looking at the dissemination of wear particles, the scientists find the debris in the lymph nodes, liver and spleen. “Metallic wear particles in the liver or spleen were more prevalent in patients who had had a failed hip arthroplasty (seven of eight) than in patients who had had a primary hip (two of eleven) or knee replacement (two of ten). Metallic wear particles were detected in the lymph nodes in 68 percent (nineteen) of the twenty-eight patients with an implant from whom lymph nodes were available for study. In this study, systemic distribution of metallic and polyethylene wear particles was a common finding, both in patients with a previously failed implant and in those with a primary total joint prosthesis. The prevalence of particles in the liver or spleen was greater after reconstructions with mechanical failure.”<a href=\"#_edn7\" name=\"_ednref7\">[vii]</a>\r\n\r\nMany people contact our office because they are experiencing joint pain and are looking for an alternative to a surgical joint replacement. We offer very effective non-surgical options with Regenerative Orthopedics, including Stem Cell Therapy. At OrthoRegen, we only use the Gold Standard in Stem Cell Therapy, and the procedure only has to be done once. Plus, this non-surgical therapy not only provides a non-surgical option, but also helps you to avoid an allergic response from the implants used in joint replacement or the pathology that can occur from the debris caused by corrosion.\r\n\r\nWe strongly recommend looking into non-surgical Regenerative Orthopedics with Peter A. Fields, MD, DC and OrthoRegen for repair of painful joints before opting for a joint replacement.\r\n\r\nRemember, once surgery has been done, it cannot be un-done.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Laitinen, Minna, et al. \"High blood metal ion levels in 19 of 22 patients with metal-on-metal hinge knee replacements: A cause for concern.\" <em>Acta orthopaedica</em> 88.3 (2017): 269-274.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Harloff, Thomas, et al. \"Titanium allergy or not?.\" <em>Health</em> 2.04 (2010): 306.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Guenther D, Thomas P, Kendoff D, Omar M, Gehrke T, Haasper C. Allergic reactions in arthroplasty: myth or serious problem? Int Orthop. 2016 Feb;40(2):239-44. doi: 10.1007/s00264-015-3001-6. Epub 2015 Nov 2.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Gao, Chengde, et al. \"Highly biodegradable and bioactive Fe-Pd-bredigite biocomposites prepared by selective laser melting.\" <em>Journal of advanced research</em> 20 (2019): 91-104.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Samelko, Lauryn, et al. \"Cobalt alloy implant debris induces inflammation and bone loss primarily through danger signaling, not TLR4 activation: implications for DAMP-ening implant related inflammation.\" <em>PLoS One</em> 11.7 (2016).\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Samelko, Lauryn, et al. \"TLR4 (not TLR2) dominate cognate TLR activity associated with CoCrMo implant particles.\" <em>Journal of Orthopaedic Research</em> 35.5 (2017): 1007-1017.\r\n\r\n<a href=\"#_ednref7\" name=\"_edn7\">[vii]</a> Urban, Robert M., et al. \"Dissemination of wear particles to the liver, spleen, and abdominal lymph nodes of patients with hip or knee replacement.\" <em>JBJS</em> 82.4 (2000): 457.','Allergic Reactions and Problems of Corrosion with Joint Replacements','','inherit','closed','closed','','3547-revision-v1','','','2020-03-04 20:52:08','2020-03-04 20:52:08','',3547,'https://www.drfields.com/uncategorized/3547-revision-v1/',0,'revision','',0),(3549,8,'2020-03-04 20:57:44','2020-03-04 20:57:44','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\"></a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-04 20:57:44','2020-03-04 20:57:44','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3550,8,'2020-03-04 20:58:42','2020-03-04 20:58:42','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-04 20:58:42','2020-03-04 20:58:42','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3552,9,'2022-01-06 02:21:17','2022-01-06 02:21:17','<div>\n<h2>Regenerative Orthopedics for Knee Injuries</h2>\n</div>\n<div>Knee injuries are one of the most common problems we treat at OrthoRegen.<sup>®.  </sup></div>\n<div>And we successfully treat knee injuries with Regenerative Orthopedics, which include Stem Cell Therapy, Platelet Rich Plasma (PRP), and Prolotherapy.  Which type of Regenerative Orthopedic treatment is best for the knee?  That would depend on your particular injury.  Below are a few videos where our patients tell you a bit about their injury and how they did after treatment:</div>\n<div></div>\n<div></div>\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\n<strong>Christa - Knee</strong></div>\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\n<strong>Adam - Knee </strong></div>\n<h3>The Knee</h3>\nThe knee joint is one of the most crucial joints in the body, and knee function is vital to carrying out everyday activities.\n\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone).  The patella or kneecap sits to the front of these bones.\n<h4><em>Knee Ligaments</em></h4>\nThe four main ligaments connect the femur and tibia at the knee: the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the medial (MCL) and lateral (LCL) collateral ligaments (on either side of the joint).\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h4><em>Cartilage and Other Joint Structures</em></h4>\nThere are other essential structures in the knee, including articular cartilage.  The cartilage protects the ends of both bones and the back of the patella, allowing for smooth movement.\n\nThe meniscus is another knee structure.  It consists of two semicircular discs providing cushioning and support for the bones.\n\nOur knees are incredibly vulnerable to injury.  Any of these structures, or a combination of them, can be involved when the knee is injured.  And when knee injuries do occur, we recommend <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair the damaged tissue, ligaments, tendons, and other structures and get you back quickly to the activities you love.\n<h3>How Regenerative Orthopedics Works to Treat the Knee</h3>\n[caption id=\"attachment_4925\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4925\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-stem-cells-500x375.jpeg\" alt=\"Knee Stem Cells\" width=\"500\" height=\"375\" /> <strong>               <em>Regenerative Orthopedics for Knee Injuries</em></strong>[/caption]\n\nRegenerative Orthopedics are innovative therapies that treat the knee by stimulating the body\'s healing cascade to repair damaged tissue.\n\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> is one type of regenerative treatment that is effective for knee injuries.  \"Prolo\" comes from the word proliferate.  Therefore, Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the soft tissue, such as the ligaments and tendons.  The proliferation of the fibroblasts encourages the formation of new, robust tissue.  Why is this important?  Because this process is precisely what is needed to repair ligament, tendon, and meniscus injuries.\n\nThe clinician may recommend platelet Rich Plasma (PRP) in some knee injury cases.  The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Specific injuries will require more potent means for healing and regeneration.  And when necessary, these concentrated platelets provide that means because they contain large reservoirs of growth factors.  How do growth factors help?  They have the potential to significantly accelerate the normal healing process, naturally.\n<h3>Stem Cell Therapy</h3>\nStem Cell Treatments for joints are an excellent alternative for people who have been told they need joint replacement surgery.  At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Treatments</a>.  The treatment is an effective non-surgical alternative that has a great chance of helping you to <em>Avoid Joint Replacement Surgery</em>.\n\nThese Regenerative Orthopedic treatments are exciting and new cutting-edge therapies that can stimulate knee repair by regenerating weakened, torn, or damaged ligaments, tendons, and the menisci of the knee joint.\n\nDon\'t wait!  Contact us soon, so you can avoid surgery too, by receiving non-surgical treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\n\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\n<h4>Are You A Candidate for Regenerative Orthopedics for Your Knee Injuries?</h4>\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>.  To see if you are a candidate for one of our Regenerative Orthopedic treatments or a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\nStill not convinced?  Check out more testimonials on this page and our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\n\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, DC is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>.  For over 25 years, Dr. Fields has been active as a triathlete and has completed numerous Ironman competitions.  His experience as an athlete allows him to understand the demands on the physical body, the potential for injury, and the passion of the athlete to get back to participating in the sport they love.\n\nOur goal at OrthoRegen<sup>®</sup> is to help you improve your health, recover quickly, and get back to doing what you love to do!\n<h3><strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Regenerative Orthopedics include:</strong></h3>\n<ul>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\n 	<li>Breaststrokers knee</li>\n 	<li>Bucket handle tear of the meniscus</li>\n 	<li>Cartilage lesion</li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\n 	<li>Flap tear</li>\n 	<li>Horizontal tear</li>\n 	<li>Jumpers knee</li>\n 	<li>Knee instability</li>\n 	<li>Post-surgical knee pain</li>\n 	<li>Knee popping</li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Pain after Knee Replacement</a></li>\n 	<li>Knee stiffness</li>\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\n 	<li>Ligament sprain</li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\n 	<li>Oblique meniscus tear</li>\n 	<li>Overuse injuries</li>\n 	<li>Parrot beak tear</li>\n 	<li>Patellar tracking</li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\n 	<li>Post-surgical knee pain</li>\n 	<li>Radial meniscus tear</li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\n</ul>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Regenerative Orthopedics for Knee Injuries','','inherit','closed','closed','','533-autosave-v1','','','2022-01-06 02:21:17','2022-01-06 02:21:17','',533,'https://www.drfields.com/uncategorized/533-autosave-v1/',0,'revision','',0),(3553,9,'2020-03-08 02:57:52','2020-03-08 02:57:52','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong></div>\r\n<h4>Regenerative Orthopedic Knee Treatments</h4>\r\nKnee injuries are one of the most common problems we treat with Regenerative Orthopedic knee treatments at OrthoRegen, and that\'s important because the knee joint is one of the most crucial joints in the body, not to mention that knee function is vital to involvement in everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\r\n\r\nThere are also two forms of cartilage in the knee, including articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement. The meniscus is another type of cartilage, which consists of two semicircular discs providing cushioning and support for the bones. Our knees are extremely vulnerable to injury in one or a combination of these elements. In the case of a knee injury, we recommend our <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair damaged tissue, ligaments, and tendons, to get you back quickly to the activities you love.\r\n<h4>How Regenerative Orthopedics Works to Treat the Knee</h4>\r\nRegenerative Orthopedics are innovative therapies that treat the knee bu stimulating the immune system to repair damaged tissue. Prolotherapy is one type of regenerative treatment that is effective for knee injuries. \"Prolo\" comes from the word proliferate, and Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the ligaments and tendons. The proliferation of the fibroblasts encourages new, strong, tissue to be formed. Why is this important? Because this new tissue is exactly what is needed to repair ligament, tendon, and meniscus injuries.\r\n\r\nIn some cases of knee injury, Platelet Rich Plasma (PRP) may be recommended. The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Certain injuries will require more potent means for healing and regeneration. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, tendons, and the menisci of the knee joint.\r\n\r\nReceive treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nPeter A. Fields, MD, DC and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Regenerative Orthopedic treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, Dc is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>. For over 25 years, Dr. Fields has been active in the sport of Triathlon. In 2019, he completed his 11th Ironman Triathlon, in Cozumel, Mexico. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nContact us to see if you are a candidate for Regenerative Orthopedics or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\r\n\r\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Knee pain after surgery</li>\r\n 	<li>Knee popping</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Knee replacement pain</a></li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\r\n 	<li>Ligament sprain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-revision-v1','','','2020-03-08 02:57:52','2020-03-08 02:57:52','',533,'https://www.drfields.com/uncategorized/533-revision-v1/',0,'revision','',0),(3554,9,'2020-03-08 02:59:14','2020-03-08 02:59:14','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong></div>\r\n<h4>Regenerative Orthopedic Knee Treatments</h4>\r\nKnee injuries are one of the most common problems we treat with Regenerative Orthopedic knee treatments at OrthoRegen, and that\'s important because the knee joint is one of the most crucial joints in the body, not to mention that knee function is vital to involvement in everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\r\n\r\nThere are also two forms of cartilage in the knee, including articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement. The meniscus is another type of cartilage, which consists of two semicircular discs providing cushioning and support for the bones. Our knees are extremely vulnerable to injury in one or a combination of these elements. In the case of a knee injury, we recommend our <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair damaged tissue, ligaments, and tendons, to get you back quickly to the activities you love.\r\n<h4>How Regenerative Orthopedics Works to Treat the Knee</h4>\r\nRegenerative Orthopedics are innovative therapies that treat the knee by stimulating the immune system to repair damaged tissue. Prolotherapy is one type of regenerative treatment that is effective for knee injuries. \"Prolo\" comes from the word proliferate, and Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the ligaments and tendons. The proliferation of the fibroblasts encourages new, strong, tissue to be formed. Why is this important? Because this new tissue is exactly what is needed to repair ligament, tendon, and meniscus injuries.\r\n\r\nIn some cases of knee injury, Platelet Rich Plasma (PRP) may be recommended. The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Certain injuries will require more potent means for healing and regeneration. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, tendons, and the menisci of the knee joint.\r\n\r\nReceive treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nPeter A. Fields, MD, DC and our staff at OrthoRegen offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Regenerative Orthopedic treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, Dc is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>. For over 25 years, Dr. Fields has been active in the sport of Triathlon. In 2019, he completed his 11th Ironman Triathlon, in Cozumel, Mexico. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nContact us to see if you are a candidate for Regenerative Orthopedics or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\r\n\r\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Knee pain after surgery</li>\r\n 	<li>Knee popping</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Knee replacement pain</a></li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\r\n 	<li>Ligament sprain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-revision-v1','','','2020-03-08 02:59:14','2020-03-08 02:59:14','',533,'https://www.drfields.com/uncategorized/533-revision-v1/',0,'revision','',0),(3556,9,'2020-03-11 01:48:23','2020-03-11 01:48:23','Exercising is exciting, and so much better for us than inactivity. It is always important to stay within your range of abilities when exercising because going from little or no exercise to a vigorous regimen can set you up for injuries. And of course, we know that injuries can happen to people from all levels of ability, even professional athletes. Exercise injuries can occur suddenly, like with a fall, or after lifting weights that are too heavy. They can also be more subtle, and transpire over weeks or months, in instances such as using poor form over and over. The risk of injury is very real. Frequent causes of sports injuries include overtraining, poor abdominal support, too lengthy runs, unfamiliarity with gym equipment or exercises, and the use of poor technique or posture. Typical injuries for those who are not used to working out include back pain, tendinitis, and pulled muscles.\r\n<h4>Tips to Prevent Exercise Injuries Before They Occur</h4>\r\nWhen exercising, folks need to begin by staying closer to the intensity of activity they are accustomed to and not go immediately from low intensity to high intensity. Going from zero to 60 in a workout regimen can set you up for sports injuries. Pick activities within your fitness and balance levels, and those your body can handle. If the goal is to improve general health and not be sedentary, people can progress slowly while listening to their body, without the need to throw around heavy weights and do intense workouts. After periods of inactivity, running, and even vigorous walking, can be damaging or cause an exercise injury. Start out slowly and work up to longer times and distances. Sure, you may have been a distance runner in high school, but that doesn’t mean you can jump right into that level of running without proper training. To prevent sports injuries, start by easing your way into new exercise routines and gradually build up to heavier weights, faster or longer bike rides, and a more vigorous walking or jogging routine.\r\n\r\nA common mistake people make is to work through the pain felt while exercising, thinking it will eventually go away. The repeated injury, in addition to the use of poor form, puts too much strain on the joints. These exercise injuries are referred to as overuse injuries and are typical injuries seen by physicians. Tendonitis is an example of an overuse injury from repetitive activity that aggravates the joint. It’s normal to experience muscle soreness after working out, but when that pain lasts more than a few days, that exercise injury has not healed and it’s time to talk to your doctor.\r\n\r\nSeeking the advice of a physician prior to initiating an exercise program is always recommended. Make use of a trainer, to educate and supervise for proper form, use of equipment, and variety and frequency of exercise. Those who are accustomed to exercise may also experience sports injuries, so always be aware of the repeated stress various exercises can place on joints, and use proper body mechanics and posturing.\r\n<h4>What Happens When Injuries Are Not Addressed?</h4>\r\nUnaddressed exercise injuries, overuse injuries, and cumulative traumas can cause damage to the joint’s ligaments, tendons, and cartilage. Whether you are riding the waves, running on the beach, pounding the pavement, or climbing some new height, the repetitive low-grade impact can be enough to damage the soft tissues.\r\n\r\nWhen these injuries are not addressed, and the soft tissue is not repaired, degeneration of the joint can occur. Unhealed soft tissue makes the joint unstable, which allows for extra and abnormal motion in the joint. Many sports injuries lead to symptomatic arthritis in later years due to injured ligaments and joint instability. The body makes attempts to stabilize the joint, which may result in painful muscle spasms at first. Over time, the body will deposit calcium along the lines of stress, producing bone spurs. Bone spurs are typically a sign that the ligaments were no longer able to stabilize the joint, and the body has sent in reinforcement in the form of additional bone. Arthritis has taken place.\r\n<h4>Treating Exercise and Sports Injuries with Regenerative Orthopedics</h4>\r\nStandard treatments for musculoskeletal injuries resulting in joint pain involve symptom management utilizing NSAIDs, cortisone injections, physical therapy, and chiropractic to provide pain relief. These modalities can often provide relief for sports injuries, but for those who have already exhausted these methods, and continue to experience pain, Regenerative Orthopedics should be sought. If cartilage damage has taken place, Stem Cell Therapy may be part of the treatment plan.\r\n\r\nRegenerative Orthopedics is a great treatment option that is very effective for injuries that arise from overzealous exercising, and for those injuries that occur during athletic events because the treatments regenerate and repair the damaged ligaments and soft tissue, allowing the exerciser and athlete to continue with their desired activity. If you’ve injured yourself while trying a new exercise or sport, or are a regular exerciser or athlete with a sports injury, Regenerative Orthopedics can get you back to the activity you love.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>','Injured While Exercising?','','inherit','closed','closed','','1414-revision-v1','','','2020-03-11 01:48:23','2020-03-11 01:48:23','',1414,'https://www.drfields.com/uncategorized/1414-revision-v1/',0,'revision','',0),(3557,9,'2020-03-11 01:50:57','2020-03-11 01:50:57','Sports Injuries','Sports Injuries','Sports Injuries','inherit','open','closed','','sports-injuries-2','','','2020-03-11 01:50:57','2020-03-11 01:50:57','',1414,'https://www.drfields.com/wp-content/uploads/2019/06/sports-injuries.png',0,'attachment','image/png',0),(3559,9,'2020-03-11 01:52:31','2020-03-11 01:52:31','Exercising is exciting, and so much better for us than inactivity. It is always important to stay within your range of abilities when exercising because going from little or no exercise to a vigorous regimen can set you up for injuries. And of course, we know that injuries can happen to people from all levels of ability, even professional athletes. Exercise injuries can occur suddenly, like with a fall, or after lifting weights that are too heavy. They can also be more subtle, and transpire over weeks or months, in instances such as using poor form over and over. The risk of injury is very real. Frequent causes of sports injuries include overtraining, poor abdominal support, too lengthy runs, unfamiliarity with gym equipment or exercises, and the use of poor technique or posture. Typical injuries for those who are not used to working out include back pain, tendinitis, and pulled muscles.\r\n\r\n<img class=\" wp-image-3557\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/sports-injuries-400x500.png\" alt=\"Sports Injuries\" width=\"324\" height=\"405\" />\r\n<h4>Tips to Prevent Exercise Injuries Before They Occur</h4>\r\nWhen exercising, folks need to begin by staying closer to the intensity of activity they are accustomed to and not go immediately from low intensity to high intensity. Going from zero to 60 in a workout regimen can set you up for sports injuries. Pick activities within your fitness and balance levels, and those your body can handle. If the goal is to improve general health and not be sedentary, people can progress slowly while listening to their body, without the need to throw around heavy weights and do intense workouts. After periods of inactivity, running, and even vigorous walking, can be damaging or cause an exercise injury. Start out slowly and work up to longer times and distances. Sure, you may have been a distance runner in high school, but that doesn’t mean you can jump right into that level of running without proper training. To prevent sports injuries, start by easing your way into new exercise routines and gradually build up to heavier weights, faster or longer bike rides, and a more vigorous walking or jogging routine.\r\n\r\nA common mistake people make is to work through the pain felt while exercising, thinking it will eventually go away. The repeated injury, in addition to the use of poor form, puts too much strain on the joints. These exercise injuries are referred to as overuse injuries and are typical injuries seen by physicians. Tendonitis is an example of an overuse injury from repetitive activity that aggravates the joint. It’s normal to experience muscle soreness after working out, but when that pain lasts more than a few days, that exercise injury has not healed and it’s time to talk to your doctor.\r\n\r\nSeeking the advice of a physician prior to initiating an exercise program is always recommended. Make use of a trainer, to educate and supervise for proper form, use of equipment, and variety and frequency of exercise. Those who are accustomed to exercise may also experience sports injuries, so always be aware of the repeated stress various exercises can place on joints, and use proper body mechanics and posturing.\r\n<h4>What Happens When Injuries Are Not Addressed?</h4>\r\nUnaddressed exercise injuries, overuse injuries, and cumulative traumas can cause damage to the joint’s ligaments, tendons, and cartilage. Whether you are riding the waves, running on the beach, pounding the pavement, or climbing some new height, the repetitive low-grade impact can be enough to damage the soft tissues.\r\n\r\nWhen these injuries are not addressed, and the soft tissue is not repaired, degeneration of the joint can occur. Unhealed soft tissue makes the joint unstable, which allows for extra and abnormal motion in the joint. Many sports injuries lead to symptomatic arthritis in later years due to injured ligaments and joint instability. The body makes attempts to stabilize the joint, which may result in painful muscle spasms at first. Over time, the body will deposit calcium along the lines of stress, producing bone spurs. Bone spurs are typically a sign that the ligaments were no longer able to stabilize the joint, and the body has sent in reinforcement in the form of additional bone. Arthritis has taken place.\r\n<h4>Treating Exercise and Sports Injuries with Regenerative Orthopedics</h4>\r\nStandard treatments for musculoskeletal injuries resulting in joint pain involve symptom management utilizing NSAIDs, cortisone injections, physical therapy, and chiropractic to provide pain relief. These modalities can often provide relief for sports injuries, but for those who have already exhausted these methods, and continue to experience pain, Regenerative Orthopedics should be sought. If cartilage damage has taken place, Stem Cell Therapy may be part of the treatment plan.\r\n\r\nRegenerative Orthopedics is a great treatment option that is very effective for injuries that arise from overzealous exercising, and for those injuries that occur during athletic events because the treatments regenerate and repair the damaged ligaments and soft tissue, allowing the exerciser and athlete to continue with their desired activity. If you’ve injured yourself while trying a new exercise or sport, or are a regular exerciser or athlete with a sports injury, Regenerative Orthopedics can get you back to the activity you love.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>','Injured While Exercising?','','inherit','closed','closed','','1414-revision-v1','','','2020-03-11 01:52:31','2020-03-11 01:52:31','',1414,'https://www.drfields.com/uncategorized/1414-revision-v1/',0,'revision','',0),(3560,9,'2020-03-11 02:00:49','2020-03-11 02:00:49','Exercising is exciting, and so much better for us than inactivity. It is always important to stay within your range of abilities when exercising because going from little or no exercise to a vigorous regimen can set you up for injuries. And of course, we know that injuries can happen to people from all levels of ability, even professional athletes. Exercise injuries can occur suddenly, like with a fall, or after lifting weights that are too heavy. They can also be more subtle, and transpire over weeks or months, in instances such as using poor form over and over. The risk of injury is very real. Frequent causes of sports injuries include overtraining, poor abdominal support, too lengthy runs, unfamiliarity with gym equipment or exercises, and the use of poor technique or posture. Typical injuries for those who are not used to working out include back pain, tendinitis, and pulled muscles.\r\n<h4>Tips to Prevent Exercise Injuries Before They Occur</h4>\r\nWhen exercising, folks need to begin by staying closer to the intensity of activity they are accustomed to and not go immediately from low intensity to high intensity. Going from zero to 60 in a workout regimen can set you up for sports injuries. Pick activities within your fitness and balance levels, and those your body can handle. If the goal is to improve general health and not be sedentary, people can progress slowly while listening to their body, without the need to throw around heavy weights and do intense workouts. After periods of inactivity, running, and even vigorous walking, can be damaging or cause an exercise injury. Start out slowly an<img class=\"alignleft wp-image-3557\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/sports-injuries-400x500.png\" alt=\"Sports Injuries\" width=\"324\" height=\"405\" />d work up to longer times and distances. Sure, you may have been a distance runner in high school, but that doesn’t mean you can jump right into that level of running without proper training. To prevent sports injuries, start by easing your way into new exercise routines and gradually build up to heavier weights, faster or longer bike rides, and a more vigorous walking or jogging routine.\r\n\r\nA common mistake people make is to work through the pain felt while exercising, thinking it will eventually go away. The repeated injury, in addition to the use of poor form, puts too much strain on the joints. These exercise injuries are referred to as overuse injuries and are typical injuries seen by physicians. Tendonitis is an example of an overuse injury from repetitive activity that aggravates the joint. It’s normal to experience muscle soreness after working out, but when that pain lasts more than a few days, that exercise injury has not healed and it’s time to talk to your doctor.\r\n\r\nSeeking the advice of a physician prior to initiating an exercise program is always recommended. Make use of a trainer, to educate and supervise for proper form, use of equipment, and variety and frequency of exercise. Those who are accustomed to exercise may also experience sports injuries, so always be aware of the repeated stress various exercises can place on joints, and use proper body mechanics and posturing.\r\n<h4>What Happens When Injuries Are Not Addressed?</h4>\r\nUnaddressed exercise injuries, overuse injuries, and cumulative traumas can cause damage to the joint’s ligaments, tendons, and cartilage. Whether you are riding the waves, running on the beach, pounding the pavement, or climbing some new height, the repetitive low-grade impact can be enough to damage the soft tissues.\r\n\r\nWhen these injuries are not addressed, and the soft tissue is not repaired, degeneration of the joint can occur. Unhealed soft tissue makes the joint unstable, which allows for extra and abnormal motion in the joint. Many sports injuries lead to symptomatic arthritis in later years due to injured ligaments and joint instability. The body makes attempts to stabilize the joint, which may result in painful muscle spasms at first. Over time, the body will deposit calcium along the lines of stress, producing bone spurs. Bone spurs are typically a sign that the ligaments were no longer able to stabilize the joint, and the body has sent in reinforcement in the form of additional bone. Arthritis has taken place.\r\n<h4>Treating Exercise and Sports Injuries with Regenerative Orthopedics</h4>\r\nStandard treatments for musculoskeletal injuries resulting in joint pain involve symptom management utilizing NSAIDs, cortisone injections, physical therapy, and chiropractic to provide pain relief. These modalities can often provide relief for sports injuries, but for those who have already exhausted these methods, and continue to experience pain, Regenerative Orthopedics should be sought. If cartilage damage has taken place, Stem Cell Therapy may be part of the treatment plan.\r\n\r\nRegenerative Orthopedics is a great treatment option that is very effective for injuries that arise from overzealous exercising, and for those injuries that occur during athletic events because the treatments regenerate and repair the damaged ligaments and soft tissue, allowing the exerciser and athlete to continue with their desired activity. If you’ve injured yourself while trying a new exercise or sport, or are a regular exerciser or athlete with a sports injury, Regenerative Orthopedics can get you back to the activity you love.\r\n\r\n<a href=\"https://www.drfields.com/testimonials/video-testimonials/\">Click here to watch videos from patients who have received Regenerative Orthopedics.</a>','Injured While Exercising?','','inherit','closed','closed','','1414-revision-v1','','','2020-03-11 02:00:49','2020-03-11 02:00:49','',1414,'https://www.drfields.com/uncategorized/1414-revision-v1/',0,'revision','',0),(3562,9,'2020-03-11 02:05:59','2020-03-11 02:05:59','Exercising is exciting, and so much better for us than inactivity. It is always important to stay within your range of abilities when exercising because going from little or no exercise to a vigorous regimen can set you up for injuries. And of course, we know that injuries can happen to people from all levels of ability, even professional athletes. Exercise injuries can occur suddenly, like with a fall, or after lifting weights that are too heavy. They can also be more subtle, and transpire over weeks or months, in instances such as using poor form over and over. The risk of injury is very real. Frequent causes of sports injuries include overtraining, poor abdominal support, too lengthy runs, unfamiliarity with gym equipment or exercises, and the use of poor technique or posture. Typical injuries for those who are not used to working out include back pain, tendinitis, and pulled muscles.\r\n<h4>Tips to Prevent Exercise Injuries Before They Occur</h4>\r\nWhen exercising, folks need to begin by staying closer to the intensity of activity they are accustomed to and not go immediately from low intensity to high intensity. Going from zero to 60 in a workout regimen can set you up for sports injuries. Pick activities within your fitness and balance levels, and those your body can handle. If the goal is to improve general health and not be sedentary, people can progress slowly while listening to their body, without the need to throw around heavy weights and do intense workouts. After periods of inactivity, running, and even vigorous walking, can be damaging or cause an exercise injury. Start out slowly and work up to longer times and distances. Sure, you may have been a distance runner in high school, but that doesn’t mean you can jump right into that level of running without proper training. To prevent sports injuries, start by easing your way into new exercise routines and gradually build up to heavier weights, faster or longer bike rides, and a more vigorous walking or jogging routine.\r\n\r\nA common mistake people make is to work through the pain felt while exercising, thinking it will eventually go away. The repeated injury, in addition to the use of poor form, puts too much strain on the joints. These exercise injuries are referred to as overuse injuries and are typical injuries seen by physicians. Tendonitis is an example of an overuse injury from repetitive activity that aggravates the joint. It’s normal to experience muscle soreness after working out, but when that pain lasts more than a few days, that exercise injury has not healed and it’s time to talk to your doctor.\r\n\r\nSeeking the advice of a physician prior to initiating an exercise program is always recommended. Make use of a trainer, to educate and supervise for proper form, use of equipment, and variety and frequency of exercise. Those who are accustomed to exercise may also experience sports injuries, so always be aware of the repeated stress various exercises can place on joints, and use proper body mechanics and posturing.\r\n<h4>What Happens When Injuries Are Not Addressed?</h4>\r\nUnaddressed exercise injuries, overuse injuries, and cumulative traumas can cause damage to the joint’s ligaments, tendons, and cartilage. Whether you are riding the waves, running on the beach, pounding the pavement, or climbing some new height, the repetitive low-grade impact can be enough to damage the soft tissues.\r\n\r\nWhen these injuries are not addressed, and the soft tissue is not repaired, degeneration of the joint can occur. Unhealed soft tissue makes the joint unstable, which allows for extra and abnormal motion in the joint. Many sports injuries lead to symptomatic arthritis in later years due to injured ligaments and joint instability. The body makes attempts to stabilize the joint, which may result in painful muscle spasms at first. Over time, the body will deposit calcium along the lines of stress, producing bone spurs. Bone spurs are typically a sign that the ligaments were no longer able to stabilize the joint, and the body has sent in reinforcement in the form of additional bone. Arthritis has taken place.\r\n<h4>Treating Exercise and Sports Injuries with Regenerative Orthopedics</h4>\r\nStandard treatments for musculoskeletal injuries resulting in joint pain involve symptom management utilizing NSAIDs, cortisone injections, physical therapy, and chiropractic to provide pain relief. These modalities can often provide relief for sports injuries, but for those who have already exhausted these methods, and continue to experience pain, Regenerative Orthopedics should be sought. If cartilage damage has taken place, Stem Cell Therapy may be part of the treatment plan.\r\n\r\nRegenerative Orthopedics is a great treatment option that is very effective for injuries that arise from overzealous exercising, and for those injuries that occur during athletic events because the treatments regenerate and repair the damaged ligaments and soft tissue, allowing the exerciser and athlete to continue with their desired activity. If you’ve injured yourself while trying a new exercise or sport, or are a regular exerciser or athlete with a sports injury, Regenerative Orthopedics can get you back to the activity you love.\r\n\r\n<a href=\"https://www.drfields.com/testimonials/video-testimonials/\">Click here to watch videos from patients who have received Regenerative Orthopedics.</a>','Injured While Exercising?','','inherit','closed','closed','','1414-revision-v1','','','2020-03-11 02:05:59','2020-03-11 02:05:59','',1414,'https://www.drfields.com/uncategorized/1414-revision-v1/',0,'revision','',0),(3563,9,'2020-03-11 02:07:09','2020-03-11 02:07:09','<strong><em>Exercising is exciting</em></strong>, and so much better for us than inactivity. It is always important to stay within your range of abilities when exercising because going from little or no exercise to a vigorous regimen can set you up for injuries. And of course, we know that injuries can happen to people from all levels of ability, even professional athletes. Exercise injuries can occur suddenly, like with a fall, or after lifting weights that are too heavy. They can also be more subtle, and transpire over weeks or months, in instances such as using poor form over and over. The risk of injury is very real. Frequent causes of sports injuries include overtraining, poor abdominal support, too lengthy runs, unfamiliarity with gym equipment or exercises, and the use of poor technique or posture. Typical injuries for those who are not used to working out include back pain, tendinitis, and pulled muscles.\r\n<h4>Tips to Prevent Exercise Injuries Before They Occur</h4>\r\nWhen exercising, folks need to begin by staying closer to the intensity of activity they are accustomed to and not go immediately from low intensity to high intensity. Going from zero to 60 in a workout regimen can set you up for sports injuries. Pick activities within your fitness and balance levels, and those your body can handle. If the goal is to improve general health and not be sedentary, people can progress slowly while listening to their body, without the need to throw around heavy weights and do intense workouts. After periods of inactivity, running, and even vigorous walking, can be damaging or cause an exercise injury. Start out slowly and work up to longer times and distances. Sure, you may have been a distance runner in high school, but that doesn’t mean you can jump right into that level of running without proper training. To prevent sports injuries, start by easing your way into new exercise routines and gradually build up to heavier weights, faster or longer bike rides, and a more vigorous walking or jogging routine.\r\n\r\nA common mistake people make is to work through the pain felt while exercising, thinking it will eventually go away. The repeated injury, in addition to the use of poor form, puts too much strain on the joints. These exercise injuries are referred to as overuse injuries and are typical injuries seen by physicians. Tendonitis is an example of an overuse injury from repetitive activity that aggravates the joint. It’s normal to experience muscle soreness after working out, but when that pain lasts more than a few days, that exercise injury has not healed and it’s time to talk to your doctor.\r\n\r\nSeeking the advice of a physician prior to initiating an exercise program is always recommended. Make use of a trainer, to educate and supervise for proper form, use of equipment, and variety and frequency of exercise. Those who are accustomed to exercise may also experience sports injuries, so always be aware of the repeated stress various exercises can place on joints, and use proper body mechanics and posturing.\r\n<h4>What Happens When Injuries Are Not Addressed?</h4>\r\nUnaddressed exercise injuries, overuse injuries, and cumulative traumas can cause damage to the joint’s ligaments, tendons, and cartilage. Whether you are riding the waves, running on the beach, pounding the pavement, or climbing some new height, the repetitive low-grade impact can be enough to damage the soft tissues.\r\n\r\nWhen these injuries are not addressed, and the soft tissue is not repaired, degeneration of the joint can occur. Unhealed soft tissue makes the joint unstable, which allows for extra and abnormal motion in the joint. Many sports injuries lead to symptomatic arthritis in later years due to injured ligaments and joint instability. The body makes attempts to stabilize the joint, which may result in painful muscle spasms at first. Over time, the body will deposit calcium along the lines of stress, producing bone spurs. Bone spurs are typically a sign that the ligaments were no longer able to stabilize the joint, and the body has sent in reinforcement in the form of additional bone. Arthritis has taken place.\r\n<h4>Treating Exercise and Sports Injuries with Regenerative Orthopedics</h4>\r\nStandard treatments for musculoskeletal injuries resulting in joint pain involve symptom management utilizing NSAIDs, cortisone injections, physical therapy, and chiropractic to provide pain relief. These modalities can often provide relief for sports injuries, but for those who have already exhausted these methods, and continue to experience pain, Regenerative Orthopedics should be sought. If cartilage damage has taken place, Stem Cell Therapy may be part of the treatment plan.\r\n\r\nRegenerative Orthopedics is a great treatment option that is very effective for injuries that arise from overzealous exercising, and for those injuries that occur during athletic events because the treatments regenerate and repair the damaged ligaments and soft tissue, allowing the exerciser and athlete to continue with their desired activity. If you’ve injured yourself while trying a new exercise or sport, or are a regular exerciser or athlete with a sports injury, Regenerative Orthopedics can get you back to the activity you love.\r\n\r\n<a href=\"https://www.drfields.com/testimonials/video-testimonials/\">Click here to watch videos from patients who have received Regenerative Orthopedics.</a>','Injured While Exercising?','','inherit','closed','closed','','1414-revision-v1','','','2020-03-11 02:07:09','2020-03-11 02:07:09','',1414,'https://www.drfields.com/uncategorized/1414-revision-v1/',0,'revision','',0),(3564,8,'2020-03-11 23:15:02','2020-03-11 23:15:02','2020 Rehab Symposium Slider 11 (1) (1)','2020 Rehab Symposium Slider 11 (1) (1)','2020 Rehab Symposium Slider 11 (1) (1)','inherit','open','closed','','2020-rehab-symposium-slider-11-1-1','','','2020-03-11 23:15:02','2020-03-11 23:15:02','',0,'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11-1-1.jpg',0,'attachment','image/jpeg',0),(3565,8,'2020-03-11 23:17:09','2020-03-11 23:17:09','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11-1-1.jpg\');\">\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Read More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-11 23:17:09','2020-03-11 23:17:09','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3566,8,'2020-03-11 23:17:26','2020-03-11 23:17:26','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item first-slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11-1-1.jpg\');\">\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Read More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-11 23:17:26','2020-03-11 23:17:26','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3567,8,'2020-03-11 23:21:56','2020-03-11 23:21:56','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n\r\n<div id=\"slide\" class=\"item first-slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11-1-1.jpg\');\">\r\n<a href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\">\r\n</a>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Read More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-11 23:21:56','2020-03-11 23:21:56','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3568,8,'2020-03-11 23:22:22','2020-03-11 23:22:22','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<a href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\">\r\n<div id=\"slide\" class=\"item first-slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11-1-1.jpg\');\">\r\n\r\n\r\n</div>\r\n</a>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Read More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-11 23:22:22','2020-03-11 23:22:22','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3569,8,'2020-03-11 23:23:27','2020-03-11 23:23:27','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item first-slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11-1-1.jpg\');\">\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Read More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-11 23:23:27','2020-03-11 23:23:27','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3570,8,'2020-03-11 23:24:40','2020-03-11 23:24:40','2020 Rehab Symposium Slider 11.mar','2020 Rehab Symposium Slider 11.mar','2020 Rehab Symposium Slider 11.mar','inherit','open','closed','','2020-rehab-symposium-slider-11-mar','','','2020-03-11 23:24:40','2020-03-11 23:24:40','',0,'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_.jpg',0,'attachment','image/jpeg',0),(3572,8,'2020-03-11 23:26:05','2020-03-11 23:26:05','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item first-slide\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_.jpg\');\">\r\n<div class=\"carousel-caption\"><a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">Read More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-11 23:26:05','2020-03-11 23:26:05','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3573,8,'2020-03-11 23:29:37','2020-03-11 23:29:37','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">2020 Rehab Symposium</span>\r\n<span class=\"header_text_second\">March 13th-15th, 2020 in Phoenix, Arizona</span>\r\n<span class=\"header_text_third\">Guest Speaker Dr. Peter Fields MD, DC for the AMERICAN CHIROPRACTIC ASSOCIATION REHAB COUNCIL</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-11 23:29:37','2020-03-11 23:29:37','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3574,8,'2020-03-11 23:29:47','2020-03-11 23:29:47','2020 Rehab Symposium Slider 11.mar','2020 Rehab Symposium Slider 11.mar','2020 Rehab Symposium Slider 11.mar','inherit','open','closed','','2020-rehab-symposium-slider-11-mar-2','','','2020-03-11 23:29:47','2020-03-11 23:29:47','',0,'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg',0,'attachment','image/jpeg',0),(3575,8,'2020-03-11 23:30:10','2020-03-11 23:30:10','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">2020 Rehab Symposium</span>\r\n<span class=\"header_text_second\">March 13th-15th, 2020 in Phoenix, Arizona</span>\r\n<span class=\"header_text_third\">Guest Speaker Dr. Peter Fields MD, DC for the AMERICAN CHIROPRACTIC ASSOCIATION REHAB COUNCIL</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-11 23:30:10','2020-03-11 23:30:10','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3576,8,'2020-03-11 23:30:42','2020-03-11 23:30:42','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">2020 Rehab Symposium</span>\r\n<span class=\"header_text_second\">Guest Speaker Dr. Peter Fields MD, DC for the AMERICAN CHIROPRACTIC ASSOCIATION REHAB COUNCIL</span>\r\n<span class=\"header_text_third\">March 13th-15th, 2020 in Phoenix, Arizona</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-11 23:30:42','2020-03-11 23:30:42','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3577,8,'2020-03-11 23:31:16','2020-03-11 23:31:16','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">2020 Rehab Symposium</span>\r\n<span class=\"header_text_second\">Guest Speaker Dr. Peter Fields MD, DC for the American Chiropractic Association Rehab Council</span>\r\n<span class=\"header_text_third\">March 13th-15th, 2020 in Phoenix, Arizona</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-11 23:31:16','2020-03-11 23:31:16','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3578,8,'2020-03-11 23:31:56','2020-03-11 23:31:56','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Guest Speaker Dr. Peter Fields MD, DC for the American Chiropractic Association Rehab Council</span>\r\n<span class=\"header_text_second\">2020 Rehab Symposium</span>\r\n<span class=\"header_text_third\">March 13th-15th, 2020 in Phoenix, Arizona</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-11 23:31:56','2020-03-11 23:31:56','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3579,8,'2020-03-12 03:49:52','2020-03-12 03:49:52','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Guest Speaker Peter A. Fields MD, DC for the American Chiropractic Association Rehab Council</span>\r\n<span class=\"header_text_second\">2020 Rehab Symposium</span>\r\n<span class=\"header_text_third\">March 13th-15th, 2020 in Phoenix, Arizona</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-12 03:49:52','2020-03-12 03:49:52','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3581,8,'2020-03-12 19:07:42','2020-03-12 19:07:42','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the 2020 Rehab Symposium</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-12 19:07:42','2020-03-12 19:07:42','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3582,8,'2020-03-12 19:56:51','2020-03-12 19:56:51','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the 2020 Rehab Symposium</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-12 19:56:51','2020-03-12 19:56:51','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3583,8,'2020-03-13 03:52:12','2020-03-13 03:52:12','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the 2020 Rehab Symposium</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n      <li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        <li class=\"last\"><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-13 03:52:12','2020-03-13 03:52:12','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3584,8,'2020-03-16 03:55:38','2020-03-16 03:55:38','Are you experiencing pain in the shoulder that makes you cringe whenever you move it? And the pain is impacting everything you do, making both work and play almost impossible? You may have even been diagnosed with a problem of the Rotator Cuff, or some type of tendinopathy, which may include tendons that are worn, injured, stretched, or even torn. You may have been diagnosed with Rotator Cuff Tendonitis, and we\'ll talk about how you can get rid of the pain without the need for surgery.\r\n<h3><em>A Bit of Shoulder A</em><em>natomy</em></h3>\r\nFour muscles inside of the shoulder allow us to rotate our arm. These four muscles form a cuff of tendons around the top of the arm or the humeral head. If the rotator cuff is torn, it means there is a tear of one or more of the tendons of those four rotator cuff muscles of the shoulder. A rotator cuff “injury” might include any type of irritation or overuse of either the tendons or the muscles. Rotator cuff tendonitis is one of those injuries.\r\n<h2>More on The Anatomy of the Shoulder and the Rotator Cuff</h2>\r\nThe shoulder is made up of two joints, the glenohumeral joint and the acromioclavicular joint. The first one, the glenohumeral joint,  is a ball and socket joint formed by the top of the humerus and the socket of the scapula. The four muscles and tendons of the <strong>rotator cuff </strong>surround the glenohumeral joint and hold the head of the humerus into the scapula. What does the rotator cuff do? The rotator cuff functions to stabilize the shoulder and allow the arms to move through a full range of motion. The rotator cuff works together with the deltoid muscle to provide motion and strength to the shoulder for activities that require motion above the waist and shoulders.<strong> </strong>\r\n\r\n<strong><em>Tendinopathy, Tendonitis, and Tendinosis</em></strong>\r\n\r\nYes, these words look pretty similar, but they mean different things. <strong>Tendinopathy</strong> is a problem of the tendon that results in pain, swelling, and impaired function. Both tendonitis and tendinosis are a type of tendinopathy. <strong>Tendonitis</strong> is an inflammation or irritation of a tendon. And when tendonitis is left untreated, it can become <strong>tendinosis</strong>, which is a degeneration of the tendon.\r\n\r\n[caption id=\"attachment_3956\" align=\"alignleft\" width=\"500\"]<a href=\"https://youtu.be/rCf1JO5aNNA\"><img class=\"size-medium wp-image-3956\" src=\"https://www.drfields.com/wp-content/uploads/2020/03/Tony-Shoulder-500x377.png\" alt=\"Tony Shoulder\" width=\"500\" height=\"377\" /></a> Tony\'s Shoulder Tears were Repaired with PRP Prolotherapy. <a href=\"https://youtu.be/rCf1JO5aNNA\">Click to watch.</a>[/caption]\r\n<h2>Rotator Cuff Tendonitis</h2>\r\nIn the rest of this article, we will concentrate on rotator cuff tendonitis. Tendonitis is more common in adults over 40 years of age. Because as we age, the tendons become less elastic, tolerate less stress, and are more susceptible to injury.\r\n\r\nRotator cuff tendonitis occurs when the small muscles of the rotator cuff, the supraspinatus, infraspinatus, teres minor, and subscapularis, become strained causing weakness of these structures and subsequent tendonitis.\r\n\r\nWhile the deltoid muscle is the big and strong muscle of the shoulder, as seen on many well-built athletes, the small and relatively weak rotator cuff muscles perform key functions. The supraspinatus helps seat the humeral head (ball) into the glenoid cavity (socket) when the arm is raised from the side (abducted). The infraspinatus and teres minor rotate the forearm away from the body or in the hand-waving position (external rotation), and the subscapularis rotates the forearm towards the body (internal rotation).\r\n\r\nAll of those structures maintain quite an intricate balance between motion and joint stability. But it becomes altered with injury, creating a new state of imbalance and joint instability through a weakness in structures like the ligaments, tendons, and muscles of the rotator cuff. And what\'s the result? You guessed it...pain and impaired function. Rotator cuff tendonitis is often caused by or associated with repetitive overhead activities, as the rotator cuff is most vulnerable in this position.\r\n\r\nThe tendons of the rotator cuff pass underneath a bony area on their way to attaching to the top part of the arm bone. Rotator cuff tendonitis arises when inflammation or bony spurs narrow the space available for the rotator cuff tendons. And sandwiched between the two bones, wear and tear of the rotator cuff can take place, exacerbating this inflammation and pain.\r\n<h2>Development of Rotator Cuff Tendonitis</h2>\r\nRotator cuff tendonitis refers to irritation of these tendons and inflammation of the lining of these tendons. As mentioned previously, rotator cuff tendonitis most often occurs as a result of activities in which the arm is moved over the head repeatedly. Examples include sports activities such as tennis, pitching, swimming, or lifting weights over the head.\r\n\r\nAnd it\'s not just sporting activities that can cause it.  Other causes of rotator cuff tendonitis include occupational overuse, such as working with the arm overhead for many hours or days; impingement syndrome; an existing weakness of the rotator cuff muscles, ligaments, or tendons; use of improper technique during an occupational activity. Other things that can lead to this condition include poor posture; sleeping on the same arm each night; cervical spine nerve pinching; an improper training schedule, such as too much too soon; a direct trauma, such as a fall directly onto the shoulder or onto an outstretched arm; poor muscle control or coordination; poor posture over the years; or a loose or unstable shoulder joint following a previous dislocation. If the rotator cuff continues to be injured or inflamed it will eventually tear, resulting in a more serious problem.\r\n<h2>Symptoms of Rotator Cuff Tendonitis</h2>\r\nThe classic symptoms of rotator cuff tendonitis include a “toothache-like” pain that radiates down the outer arm to several inches below the top of the shoulder. Pain may also occur at the top and front of the shoulder. Initially, the pain may be mild and only occur with certain arm movements. Over time, pain is noticeable at rest and during the night. Sleep is interrupted due to a nagging upper arm pain. Activities requiring the raising of the arm overhead or those that require reaching behind the body usually aggravate the symptoms. The shoulder may feel stiff with lifting or movement.\r\n<h2>Rotator Cuff Tendonitis Treatments</h2>\r\nThe initial treatment traditionally used for rotator cuff tendonitis frequently includes limiting above shoulder level activity, application of ice to the shoulder, anti-inflammatory medications for pain, and physical therapy to maintain flexibility.\r\n\r\nThe use of anti-inflammatories and steroids is common in the treatment of rotator cuff tendonitis, but it may actually hinder the healing of tendons and ligaments, and unfortunately, do not address the root of the problem. Physical therapy is often an important part of recovery from these types of shoulder injuries, but if progress is not being made, and symptoms continue, it may be time to seek out regenerative treatments. Why? Physical therapy is a great treatment option but it is unable to address underlying degenerative issues such as fraying and tearing of the tendon.\r\n<h2>Regenerative Orthopedics for Rotator Cuff Tendonitis</h2>\r\nRegenerative Orthopedics is recommended to <strong>regenerate</strong> and repair the soft tissues of the shoulder. Plus, it also strengthens the ligaments and the tendons of the rotator cuff and deltoid. The combination of repair and the gradual re-strengthening of the rotator cuff muscles promises an excellent chance for a full recovery and full performance. Regenerative Orthopedics is also an excellent post-operative treatment to improve tissue strength and overall recovery in the event that surgery is truly necessary. This may be a possibility when a rotator cuff tear has become large enough to produce profound weakness in the shoulder.\r\n\r\nThe increase in blood flow and regenerative cells encouraged by this treatment is similar to the body’s natural healing response. The body also responds by depositing collagen at the site of injury, strengthening the rotator cuff tendons that once were weak, and resulting in the healing of the injured rotator cuff soft tissues.\r\n<h2>Think Regenerative Orthopedics may be for you? Contact us!</h2>\r\nPlease <a href=\"https://www.drfields.com/contact/\">contact us</a> at OrthoRegen<sup>®</sup>, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.\r\n\r\nOrthoRegen<sup>®</sup> is a full-time Regenerative Orthopedics office, with extensive experience in Stem Cell Therapy, PRP, and Prolotherapy. When it comes to Stem Cell Therapy, we use only the Gold Standard, which is so effective at repairing degenerated joints.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Relieve Pain from Rotator Cuff Tendonitis','','publish','open','closed','','rotator-cuff-tendonitis','','','2020-09-11 01:08:55','2020-09-11 01:08:55','',0,'https://www.drfields.com/?p=3584',0,'post','',0),(3585,8,'2020-03-16 03:55:38','2020-03-16 03:55:38','Are you experiencing pain in the shoulder that makes you cringe whenever you move it? The pain is impacting everything you do, making both work and play almost impossible. You may have even been diagnosed with a problem of the Rotator Cuff, or some type of tendinopathy, which may include tendons that are worn, injured, stretched, or even torn.\r\n\r\nFour muscles inside of the shoulder allow us to rotate our arm. These four muscles form a cuff of tendons around the top of the arm or the humeral head. If the rotator cuff is torn, it means there is a tear of one or more of the tendons of those four rotator cuff muscles of the shoulder. A rotator cuff “injury” might include any type of irritation or overuse of either the tendons or the muscles.\r\n<h2>More on The Anatomy of the Shoulder and the Rotator Cuff</h2>\r\nThe shoulder is made up of two joints, the glenohumeral joint and the acromioclavicular joint. The glenohumeral joint is a ball and socket joint formed by the top of the humerus and the socket of the scapula. The four muscles and tendons of the <strong>rotator cuff </strong>surround the glenohumeral joint and hold the head of the humerus into the scapula. The rotator cuff functions to stabilize the shoulder and allow the arms to move through a full range of motion. The rotator cuff works together with the deltoid muscle to provide motion and strength to the shoulder for activities that require motion above the waist and shoulders.<strong> </strong>\r\n\r\n<strong><em>Tendinopathy, Tendonitis, and Tendinosis</em></strong>\r\n\r\nYes, these words look pretty similar, but they mean different things. <strong>Tendinopathy</strong> is a problem of the tendon that results in pain, swelling, and impaired function. Both tendonitis and tendinosis are a type of tendinopathy. <strong>Tendonitis</strong> is an inflammation or irritation of a tendon. If left untreated, tendonitis can become <strong>tendinosis</strong>, which is a degeneration of the tendon.\r\n<h2>Rotator Cuff Tendonitis</h2>\r\nIn the rest of this article, we will concentrate on rotator cuff tendonitis. Tendonitis is more common in adults over 40 years of age, as the tendons become less elastic, tolerate less stress, and are more susceptible to injury.\r\n\r\nRotator cuff tendonitis occurs when the small muscles of the rotator cuff, the supraspinatus, infraspinatus, teres minor, and subscapularis, become strained causing weakness of these structures and subsequent tendonitis. While the deltoid muscle is the big and strong muscle of the shoulder, as seen on many well-built athletes, the small and relatively weak rotator cuff muscles perform key functions. The supraspinatus helps seat the humeral head (ball) into the glenoid cavity (socket) when the arm is raised from the side (abducted). The infraspinatus and teres minor rotate the forearm away from the body or in the hand-waving position (external rotation), and the subscapularis rotates the forearm towards the body (internal rotation). Once the balance between motion and joint stability is altered through weakness in structures like the ligaments, tendons, and muscles of the rotator cuff, pain and impaired function will invariably be the result. This condition is often caused by or associated with repetitive overhead activities, as the rotator cuff is most vulnerable in this position.\r\n\r\nThe tendons of the rotator cuff pass underneath a bony area on their way to attaching to the top part of the arm bone. Rotator cuff tendonitis arises when inflammation or bony spurs narrow the space available for the rotator cuff tendons. Sandwiched between the two bones, wear and tear of the rotator cuff takes place, exacerbating this inflammation and pain.\r\n<h2>Development of Rotator Cuff Tendonitis</h2>\r\nRotator cuff tendonitis refers to irritation of these tendons and inflammation of the lining of these tendons. Rotator cuff tendonitis most often occurs as a result of activities in which the arm is moved over the head repeatedly, such as tennis, pitching, swimming or lifting weights over the head. Other causes of rotator cuff tendonitis include occupational overuse, such as working with the arm overhead for many hours or days; impingement syndrome; an existing weakness of the rotator cuff muscles, ligaments or tendons; use of improper technique during a sport or occupational activity; poor posture; sleeping on the same arm each night; cervical spine nerve pinching; an improper training schedule, such as too much too soon; a direct trauma, such as a fall directly onto the shoulder or onto an outstretched arm; poor muscle control or coordination; poor posture over the years; or a loose or unstable shoulder joint following a previous dislocation. If the rotator cuff continues to be injured or inflamed it will eventually tear, resulting in a more serious problem.\r\n<h2>Symptoms of Rotator Cuff Tendonitis</h2>\r\nThe classic symptoms of rotator cuff tendonitis include a “toothache-like” pain that radiates down the outer arm to several inches below the top of the shoulder. Pain may also occur at the top and front of the shoulder. Initially, the pain may be mild and only occur with certain arm movements. Over time, pain is noticeable at rest and during the night. Sleep is interrupted due to a nagging upper arm pain. Activities requiring the raising of the arm overhead or those that require reaching behind the body usually aggravate the symptoms. The shoulder may feel stiff with lifting or movement.\r\n<h2>Rotator Cuff Tendonitis Treatments</h2>\r\nThe initial treatment traditionally used for rotator cuff tendonitis is frequently to limit above shoulder level activity, application of ice to the shoulder, anti-inflammatory medications for pain, and physical therapy to maintain flexibility.\r\n\r\nAlthough common in the treatment of rotator cuff tendonitis, the use of anti-inflammatories and steroids may actually hinder the healing of tendons and ligaments, and unfortunately, do not address the root of the problem. Physical therapy is often an important part of recovery from these types of shoulder injuries, but if progress is not being made, and symptoms continue, it may be time to seek out regenerative treatments, since physical therapy is unable to address underlying degenerative issues such as fraying and tearing of the tendon.\r\n<h2>Regenerative Orthopedics for Rotator Cuff Tendonitis</h2>\r\nRegenerative Orthopedics is recommended to <strong>regenerate</strong> and repair the soft tissues of the shoulder, plus it also strengthens the ligaments and the tendons of the rotator cuff and deltoid. This combined with the gradual re-strengthening of the rotator cuff muscles promises an excellent chance for a full recovery and full performance. In the event that surgery is truly necessary because a rotator cuff tear has become large enough to produce profound weakness in the shoulder, Regenerative Orthopedics is an excellent post-operative treatment to improve tissue strength and overall recovery.\r\n\r\nThe increase in blood flow and regenerative cells encouraged by this treatment is similar to the body’s natural healing response. The body also responds by depositing collagen at the site of injury, strengthening the rotator cuff tendons that once were weak, and resulting in the healing of the injured rotator cuff soft tissues.\r\n<h2>Think Regenerative Orthopedics may be for you? Contact us!</h2>\r\nPlease <a href=\"https://www.drfields.com/contact/\">contact us</a> at OrthoRegen, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.\r\n\r\nOrthoRegen is a full-time Regenerative Orthopedics office, with extensive experience in Stem Cell Therapy, PRP, and Prolotherapy. When it comes to Stem Cell Therapy, we use only the Gold Standard, which is so effective at repairing degenerated joints.','Rotator Cuff Tendonitis','','inherit','closed','closed','','3584-revision-v1','','','2020-03-16 03:55:38','2020-03-16 03:55:38','',3584,'https://www.drfields.com/uncategorized/3584-revision-v1/',0,'revision','',0),(3586,8,'2020-03-16 03:58:31','2020-03-16 03:58:31','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the 2020 Rehab Symposium</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n    <li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n      <li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        \r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-03-16 03:58:31','2020-03-16 03:58:31','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3588,8,'2020-03-20 21:24:52','2020-03-20 21:24:52','','iwp_log_5e7534a41f042','','publish','closed','closed','','iwp_log_5e7534a41f042','','','2020-03-20 21:24:52','2020-03-20 21:24:52','',0,'https://www.drfields.com/uncategorized/iwp_log_5e7534a41f042/',0,'iwp_log','',0),(3590,9,'2021-02-03 02:15:24','2021-02-03 02:15:24','[caption id=\"attachment_4473\" align=\"alignright\" width=\"400\"]<img class=\"wp-image-4473 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Exercising-at-home-1-copy-400x500.png\" alt=\"Exercising At Home (1) Copy\" width=\"400\" height=\"500\" /> Exercise injuries[/caption]\n<h3>E</h3>\n<strong><em>Many of us are love exercising.</em></strong> And that\'s good because exercise is so much better for us than inactivity. But it\'s always important to stay within our range of abilities when exercising. Why? Because going from little or no exercise to a vigorous regimen can set you up for exercise injuries.\n\nOf course, injuries can happen to people from all levels of ability. Yes, even professional athletes and avid exercisers get injured. Exercise injuries can occur suddenly, like during a fall or after lifting weights that are too heavy. They can also be more subtle and transpire over weeks or months. An example of a more subtle injury would be an injury that occurs from using poor form repeatedly.\n\nThe risk of injury is genuine from overtraining, poor abdominal support, too lengthy runs, unfamiliarity with gym equipment or exercises, and the use of poor technique or posture. And typical injuries for those who are not used to working out include back pain, tendinitis, and pulled muscles.\n<h4>Tips to Prevent Exercise Injuries Before They Occur</h4>\nLet\'s review some tips that can be followed to try to avoid exercise injuries before they happen. When exercising, it\'s better to begin by staying closer to the intensity of activity we are accustomed to. For example, don\'t go immediately from low intensity to high intensity. Going from zero to 60 in a workout regimen can set you up for exercise injuries.\n\nSecondly, pick activities within your fitness and balance levels and those your body can handle. If the goal is to improve general health and not be sedentary, it\'s wise to progress slowly while listening to your body. There is no need to begin with throwing around heavy weights and doing intense workouts. Keep in mind that after periods of inactivity, running, and even vigorous walking can be damaging or cause an exercise injury. Start slowly and work up to longer times and distances.\n<h4>But I Was An Athlete in High School, So I Can Exercise Harder!</h4>\nSure, you may have been a distance runner in high school. But that doesn’t mean you can jump right into that level of running without proper training. To prevent exercise injuries, start by easing your way into new exercise routines and gradually build up to heavier weights, faster or longer bike rides, and a more vigorous walking or jogging routine.\n<h4>Be Aware of Putting Too Much Strain On Your Joints So You Can Prevent Overuse Exercise Injuries</h4>\nPeople make a common mistake by working through the pain felt while exercising, thinking it will eventually go away. The repeated injury from the use of poor form puts too much strain on the joints. These exercise injuries are referred to as overuse injuries and are typical injuries seen by physicians. Tendonitis is an example of an overuse injury from repetitive activity that aggravates the joint. <strong><em>I</em><em>t’s normal to experience muscle soreness after working out, but when that pain lasts more than a few days, that exercise injury has not healed, and it’s time to talk to your doctor.</em></strong>\n\nSeeking the advice of a physician before initiating an exercise program is always recommended. Use a trainer to educate and supervise for proper form, use of equipment, and variety and frequency of exercise. Even those who are accustomed to exercise may also become injured with overuse injuries. So always be aware of the repeated stress various exercises can place on joints, and use proper body mechanics and posturing.\n<h4>What Happens When Injuries Are Not Addressed?</h4>\nUnaddressed exercise injuries, overuse injuries, and cumulative traumas can damage the joint’s ligaments, tendons, and cartilage. Whether you are riding the waves, running on the beach, pounding the pavement, or climbing some new height, the repetitive low-grade impact can be enough to damage the soft tissues.\n\nWhen these injuries are not addressed and the soft tissue is not repaired, degeneration of the joint can occur. Unhealed soft tissue makes the joint unstable, which allows for extra and abnormal motion in the joint. These unhealed sports injuries can frequently lead to symptomatic arthritis in later years due to the injured ligaments that cause instability and abnormal joint motion.\n\nIn an attempt to stabilize the joint, painful muscle spasms may occur at first. Over time, the body will deposit calcium along the lines of stress, producing bone spurs. Bone spurs are typically a sign that the ligaments were no longer able to stabilize the joint. And the body has sent in reinforcement in the form of additional bone. Arthritis has taken place!\n<h4>Treating Exercise Injuries and Sports Injuries with Regenerative Orthopedics</h4>\nStandard treatments for musculoskeletal injuries resulting in joint pain usually involve symptom management utilizing NSAIDs, cortisone injections, physical therapy, and chiropractic to provide pain relief. These modalities can often provide relief for sports injuries, but for those who have already exhausted these methods and continue to experience pain, Regenerative Orthopedics should be sought. If cartilage damage has taken place, Stem Cell Therapy may be part of the treatment plan.\n\nRegenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, are great treatment options that are very effective for injuries that arise from overzealous exercising. Plus, these non-surgical treatments repair those injuries that occur during athletic events, regenerating the damaged ligaments and soft tissue and allowing the exerciser and athlete to continue with their desired activity.\n\n<strong>If you’ve injured yourself while trying a new exercise or sport or are a regular exerciser or athlete with a sports injury, Regenerative Orthopedics can get you back to the activity you love.</strong>\n\nFor more information about sports injuries and older athletes, read our article on <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/\">\"How Arthritis Affects Older Athletes.\" </a>\n\n<a href=\"https://www.drfields.com/testimonials/video-testimonials/\">Click here to watch videos from patients who have received Regenerative Orthopedics.</a>','Injured While Exercising?','','inherit','closed','closed','','1414-autosave-v1','','','2021-02-03 02:15:24','2021-02-03 02:15:24','',1414,'https://www.drfields.com/uncategorized/1414-autosave-v1/',0,'revision','',0),(3591,9,'2020-03-23 18:24:33','2020-03-23 18:24:33','<strong><em>Exercising is exciting</em></strong>, and so much better for us than inactivity. It is always important to stay within your range of abilities when exercising because going from little or no exercise to a vigorous regimen can set you up for injuries. And of course, we know that injuries can happen to people from all levels of ability, even professional athletes. Exercise injuries can occur suddenly, like with a fall, or after lifting weights that are too heavy. They can also be more subtle, and transpire over weeks or months, in instances such as using poor form over and over. The risk of injury is very real. Frequent causes of sports injuries include overtraining, poor abdominal support, too lengthy runs, unfamiliarity with gym equipment or exercises, and the use of poor technique or posture. Typical injuries for those who are not used to working out include back pain, tendinitis, and pulled muscles.\r\n<h4>Tips to Prevent Exercise Injuries Before They Occur</h4>\r\nWhen exercising, folks need to begin by staying closer to the intensity of activity they are accustomed to and not go immediately from low intensity to high intensity. Going from zero to 60 in a workout regimen can set you up for exercise injuries. Pick activities within your fitness and balance levels, and those your body can handle. If the goal is to improve general health and not be sedentary, people can progress slowly while listening to their body, without the need to throw around heavy weights and do intense workouts. After periods of inactivity, running, and even vigorous walking, can be damaging or cause an exercise injury. Start out slowly and work up to longer times and distances. Sure, you may have been a distance runner in high school, but that doesn’t mean you can jump right into that level of running without proper training. To prevent exercise injuries, start by easing your way into new exercise routines and gradually build up to heavier weights, faster or longer bike rides, and a more vigorous walking or jogging routine.\r\n\r\nA common mistake people make is to work through the pain felt while exercising, thinking it will eventually go away. The repeated injury, in addition to the use of poor form, puts too much strain on the joints. These exercise injuries are referred to as overuse injuries and are typical injuries seen by physicians. Tendonitis is an example of an overuse injury from repetitive activity that aggravates the joint. It’s normal to experience muscle soreness after working out, but when that pain lasts more than a few days, that exercise injury has not healed and it’s time to talk to your doctor.\r\n\r\nSeeking the advice of a physician prior to initiating an exercise program is always recommended. Make use of a trainer, to educate and supervise for proper form, use of equipment, and variety and frequency of exercise. Those who are accustomed to exercise may also experience sports injuries, so always be aware of the repeated stress various exercises can place on joints, and use proper body mechanics and posturing.\r\n<h4>What Happens When Injuries Are Not Addressed?</h4>\r\nUnaddressed exercise injuries, overuse injuries, and cumulative traumas can cause damage to the joint’s ligaments, tendons, and cartilage. Whether you are riding the waves, running on the beach, pounding the pavement, or climbing some new height, the repetitive low-grade impact can be enough to damage the soft tissues.\r\n\r\nWhen these injuries are not addressed, and the soft tissue is not repaired, degeneration of the joint can occur. Unhealed soft tissue makes the joint unstable, which allows for extra and abnormal motion in the joint. Many sports injuries lead to symptomatic arthritis in later years due to injured ligaments and joint instability. The body makes attempts to stabilize the joint, which may result in painful muscle spasms at first. Over time, the body will deposit calcium along the lines of stress, producing bone spurs. Bone spurs are typically a sign that the ligaments were no longer able to stabilize the joint, and the body has sent in reinforcement in the form of additional bone. Arthritis has taken place.\r\n<h4>Treating Exercise and Sports Injuries with Regenerative Orthopedics</h4>\r\nStandard treatments for musculoskeletal injuries resulting in joint pain involve symptom management utilizing NSAIDs, cortisone injections, physical therapy, and chiropractic to provide pain relief. These modalities can often provide relief for sports injuries, but for those who have already exhausted these methods, and continue to experience pain, Regenerative Orthopedics should be sought. If cartilage damage has taken place, Stem Cell Therapy may be part of the treatment plan.\r\n\r\nRegenerative Orthopedics is a great treatment option that is very effective for injuries that arise from overzealous exercising, and for those injuries that occur during athletic events because the treatments regenerate and repair the damaged ligaments and soft tissue, allowing the exerciser and athlete to continue with their desired activity. If you’ve injured yourself while trying a new exercise or sport, or are a regular exerciser or athlete with a sports injury, Regenerative Orthopedics can get you back to the activity you love.\r\n\r\n<a href=\"https://www.drfields.com/testimonials/video-testimonials/\">Click here to watch videos from patients who have received Regenerative Orthopedics.</a>','Injured While Exercising?','','inherit','closed','closed','','1414-revision-v1','','','2020-03-23 18:24:33','2020-03-23 18:24:33','',1414,'https://www.drfields.com/uncategorized/1414-revision-v1/',0,'revision','',0),(3592,8,'2020-03-24 18:27:49','2020-03-24 18:27:49','','iwp_log_5e7a512566efb','','publish','closed','closed','','iwp_log_5e7a512566efb','','','2020-03-24 18:27:49','2020-03-24 18:27:49','',0,'https://www.drfields.com/uncategorized/iwp_log_5e7a512566efb/',0,'iwp_log','',0),(3593,8,'2020-03-24 18:27:55','2020-03-24 18:27:55','','iwp_log_5e7a512b520b6','','publish','closed','closed','','iwp_log_5e7a512b520b6','','','2020-03-24 18:27:55','2020-03-24 18:27:55','',0,'https://www.drfields.com/uncategorized/iwp_log_5e7a512b520b6/',0,'iwp_log','',0),(3594,8,'2020-03-24 18:28:03','2020-03-24 18:28:03','','iwp_log_5e7a51330083f','','publish','closed','closed','','iwp_log_5e7a51330083f','','','2020-03-24 18:28:03','2020-03-24 18:28:03','',0,'https://www.drfields.com/uncategorized/iwp_log_5e7a51330083f/',0,'iwp_log','',0),(3598,8,'2020-04-15 02:01:57','2020-04-15 02:01:57','<h2 class=\"text-center\">Please fill out the form below for your inquiries!</h2>\r\n<div class=\"contact-frm\">[gravityform id=\"1\" title=\"false\" description=\"false\"]</div>','Contact','','inherit','closed','closed','','29-revision-v1','','','2020-04-15 02:01:57','2020-04-15 02:01:57','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(3600,9,'2021-07-26 18:53:51','2021-07-26 18:53:51','<h4>Regenerative Orthopedics for Annoying Knee Pain</h4>\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\n<strong>Sam - Knee</strong></div>\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\n<strong>Roberto - Knee (In Spanish)</strong></div>\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you are prevented from doing all of that and more. Moreover, many conventional treatments include surgery, arthroscopy, cortisone, and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Regenerative Orthopedics to treat persistent joint pain.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h4>What Causes Knee Pain?</h4>\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the shin\'s upper end (tibia). The knee cap (patellae) slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\n\nCommon causes of knee pain are arthritis. For example, if you are experiencing minor pain, clicking, giving way, or ‘trick knee,’ you may be feeling the first symptoms of arthritis. Plus, arthritis can begin in people as early as thirty years of age. And this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain, accompanied by significant inflammation and swelling, can be caused by gout or even infection.\n\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. And other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Additionally, pseudogout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease, and chondromalacia patellae can also cause knee pain. As we age, the smooth and resilient cartilage on our long bones\' ends wears down, but this cartilage is needed for normal joint function.\n\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\n<h4>How Does Regenerative Orthopedics Work for Chronic Knee Pain?</h4>\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\n\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Regenerative Orthopedics</a>. It just depends on the cause of your particular joint pain.\n\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons, and possibly cartilage. Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain. And studies show that the use of dextrose prolotherapy is supported for treatment of tendinopathies, and knee osteoarthritis, as a result of ligament dysfunction.1\n\n[caption id=\"attachment_4809\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4809\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee.-Prolo-500x375.jpeg\" alt=\"Knee. Prolo\" width=\"500\" height=\"375\" /> <strong>        Prolotherapy Is Effective for Knee Injuries and OA</strong>[/caption]\n\nRegenerative Orthopedics works because it stimulates an inflammatory reaction in the body. In short, solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. And then, the localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. Subsequently, the new collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\n<h4>Are you a Candidate For Regenerative Orthopedics?</h4>\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. And Regenerative Orthopedics is a very safe, affordable option that allows you to keep working, training, and living a normal life during the recovery process. Regenerative Orthopedics for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after Regenerative Orthopedics, like Stem Cell Therapy, PRP, and <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\n\nAre you a candidate for Regenerative Orthopedics for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Peter A. Fields, MD, DC, and OrthoRegen<sup>®</sup> at 310-453-1234.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<h3>References</h3>\n1Hauser RA, Lackner JB, Steilen-Matias D, Harris DK. A Systematic Review of Dextrose Prolotherapy for Chronic Musculoskeletal Pain. Clin Med Insights Arthritis Musculoskelet Disord. 2016 Jul 7;9:139-59. doi: 10.4137/CMAMD.S39160. PMID: 27429562; PMCID: PMC4938120.','Knee Pain That Won\'t Go Away','','inherit','closed','closed','','486-autosave-v1','','','2021-07-26 18:53:51','2021-07-26 18:53:51','',486,'https://www.drfields.com/uncategorized/486-autosave-v1/',0,'revision','',0),(3601,9,'2020-04-16 02:36:31','2020-04-16 02:36:31','<h4>Regenerative Orthopedics for Chronic Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone, and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Regenerative Orthopedics for Chronic Knee Pain treatment.\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Arthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Persistent arthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudogout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease, and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>How Regenerative Orthopedics Is Used To Treat Persistent Knee Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Regenerative Orthopedics</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nRegenerative Orthopedics works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Regenerative Orthopedics for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Regenerative Orthopedics for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after Regenerative Orthopedics, like Stem Cell Therapy, PRP, and <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Regenerative Orthopedics for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Peter A. Fields, MD, DC, and OrthoRegen at 310-453-1234.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2020-04-16 02:36:31','2020-04-16 02:36:31','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(3602,9,'2020-04-16 02:42:37','2020-04-16 02:42:37','<h4>Regenerative Orthopedics for Chronic Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone, and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Regenerative Orthopedics for Chronic Knee Pain treatment.\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Arthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Persistent arthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudogout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease, and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>How Does Regenerative Orthopedics Work for Chronic Knee Pain?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Regenerative Orthopedics</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nRegenerative Orthopedics works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Regenerative Orthopedics for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Regenerative Orthopedics for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after Regenerative Orthopedics, like Stem Cell Therapy, PRP, and <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Regenerative Orthopedics for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Peter A. Fields, MD, DC, and OrthoRegen at 310-453-1234.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2020-04-16 02:42:37','2020-04-16 02:42:37','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(3603,8,'2020-04-16 20:16:03','2020-04-16 20:16:03','Knee pain, like all other types of joint pain, can appear suddenly or become an ongoing, chronic condition. The most common cause of chronic knee pain and disability is arthritis, which frequently results in knee replacement. Knee pain can also be caused by conditions like bursitis, tendonitis, sports injuries, degenerative joint disease, chondromalacia patellae and meniscal injury, all of which very often lead to the eventual surgical recommendation or intervention.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Click to See Stem Cell Testimonial Videos</a>\n\n<h6>Knee Pain Treatments</h6>\nBefore surgery, other more conservative therapies are usually attempted to bring relief from the knee pain. NSAIDs (non-steroidal anti-inflammatory drugs like Ibuprofen or Naprosyn) and steroid (cortisone) injections might be included in those initial recommendations. Are these treatments a good choice? Although steroid injections and NSAIDs have been shown in studies to be effective in decreasing inflammation and providing pain relief in the short-term, they unfortunately have also been shown to change the properties of ligaments and other soft tissue, which ends up slowing down the healing process. Because these medications inhibit soft tissue healing, their use is cautioned in those who have ligament and soft tissue injuries. Therefore, their use in ligament injuries should be used for the shortest period of time, if used at all. Instead, Regenerative Orthopedic techniques, such as Stem Cell Therapy, PRP and Prolotherapy, which have been shown to strengthen and resolve ligament injuries, repair meniscal injuries, and rebuild cartilage in the knee, should be sought.\n\n<h6>The RICE Protocol</h6>\nSo what about the RICE (rest, ice, compression and elevation) protocol? Everyone knows about the RICE protocol, and most people are quick to put it into action. However, an interesting point is that the RICE protocol has been rescinded by its author due to its detrimental effect on healing. Why? Because it hinders blood supply to the injury, and blood brings the healing factors to an injury. Remember…The river does not flow when it is frozen; and that ‘river’ is your blood.\n\n<h6>What about Hyaluronic Acid Injections?</h6>\nHyaluronic acid injections, such as Synvisc or Hyalgen, are some of the most popular conservative treatments for knee pain. Hyaluronic acid is a substance naturally found in the body that provides cushion and lubrication to the joints. It can be used as an oral supplement and as an injection that is given directly into the knee joint for the relief of knee pain. Are there drawbacks to the use of hyaluronic acid? \n\nIf relief is experienced with hyaluronic acid injections, it is generally only for a short period of time. Studies have shown this treatment to actually lack clinical effectiveness. In fact, a systematic review of 89 studies that included over twelve thousand patients comparing hyaluronic acid injections to a sham treatment or to no intervention at all, found that hyaluronic acid supplementation to the knee produced minimal to non-existent results when it came to pain relief and function in knee arthritis patients. That means thousands of patients in these studies received no relief at all, and if they did find relief, it was not much. Unfortunately, those that do find some pain relief with the use of hyaluronic acid, only experience results for a short period of time, and the treatment frequently becomes only a delay for the inevitable knee replacement, because all it does is lubricate a dysfunctional joint, and does not fix anything.  \n\n<h6>Other Non-Surgical Treatments</h6>\nEven though the goal of many non-surgical treatments such as weight loss, exercise, physiotherapy, bracing, and orthotics, is to decrease pain and improve function, they are unable to repair the source of the pain, the ligament or soft tissue injury. Why is it so important to repair the ligaments and other soft tissue? Because the long-term consequence of ligament and soft tissue injuries that are left unhealed is arthritis. Is it any wonder why the treatments mentioned above including hyaluronic acid do not last, and why they are unable to prevent the eventual knee replacement! You see, these treatments are unable to get to the root cause of the problem. The road to arthritis can only be remedied when the problem of ligament injury is addressed. None of the above treatments address this problem. Regenerative Orthopedics does.\n\n<h6>Are Cortisone Injections Really All That Bad?</h6>\nSteroids are used to provide anti-inflammatory relief in affected areas of the body. They lessen swelling, redness, itching and allergic reactions, and, in addition to their use for pain, are often used as part of the treatment for a number of different diseases, such as severe allergies or skin problems, asthma, or arthritis. In many of these cases, steroids are lifesaving! The discovery that steroids could be injected into joints was received with enthusiasm, and led to widespread use. However, shortly after doctors started injecting cortisone and other steroids into knee joints in the 1950s, reports of terrible arthropathies, or joint diseases, began to surface. There was an obvious indication that all was not well with this treatment choice. Way back then, the researchers discouraged the use of steroids being injected into the joint, due to their side effects and cell death in the bone.\n\nSteroid injections accelerate cartilage degeneration and joint destruction. Cortisone has a deleterious effect on soft tissue healing by inhibiting blood flow to the injured area, new blood vessel formation, protein synthesis, fibroblast proliferation and ultimately collagen formation. Cortisone weakens collagen and therefore soft tissue such as ligaments and tendons, which contributes to the development of conditions such as arthritis, which as we know, leads to the eventual joint replacement. Today, despite the dangers, cortisone use is widespread and has become the standard of care. \n\n<h6>Surgical Repair</h6>\nElimination of knee pain by arthroscopic shaving, cutting, or removal of tissue just delays the pain for a few years until the remaining tissue becomes degenerated. The athlete or any knee pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or steroid injection, the risk of developing long-term arthritis and the eventual knee replacement is greatly increased. The key to keeping the knee strong is to stimulate the area to heal. Remember, once surgery is done, it cannot be undone!\n\n<h6>Regenerative Orthopedics</h6>\nRegenerative Orthopedic therapies such as Stem Cell Therapy, PRP and Prolotherapy stimulate, rather than interfere with, the normal healing process. The treatments stimulate the normal inflammatory-reparative mechanisms of the body, boosting cartilage growth, strengthening the tendons and ligaments, and repairing the meniscus in a knee or the labrum in the hip or shoulder. These regenerative treatments offer hope to those suffering from various types of knee pain and provide an effective, non-surgical option for those trying to avoid knee replacement.\nAs we say at OrthoRegen:\nRegenerate First; Surgery Last!\n','Avoiding Knee Replacement with Regenerative Orthopedics','','inherit','closed','closed','','2082-autosave-v1','','','2020-04-16 20:16:03','2020-04-16 20:16:03','',2082,'https://www.drfields.com/uncategorized/2082-autosave-v1/',0,'revision','',0),(3604,8,'2020-04-16 20:16:48','2020-04-16 20:16:48','Knee pain, like all other types of joint pain, can appear suddenly or become an ongoing, chronic condition. The most common cause of chronic knee pain and disability is arthritis, which frequently results in knee replacement. Knee pain can also be caused by conditions like bursitis, tendonitis, sports injuries, degenerative joint disease, chondromalacia patellae and meniscal injury, all of which very often lead to the eventual surgical recommendation or intervention.\r\n\r\n<a class=\"buttonlink\" href=\"/Testimonials/Cellular-Regeneration-Testimonials/\">Click to See Stem Cell Testimonial Videos</a>\r\n\r\n<h6>Knee Pain Treatments</h6>\r\nBefore surgery, other more conservative therapies are usually attempted to bring relief from the knee pain. NSAIDs (non-steroidal anti-inflammatory drugs like Ibuprofen or Naprosyn) and steroid (cortisone) injections might be included in those initial recommendations. Are these treatments a good choice? Although steroid injections and NSAIDs have been shown in studies to be effective in decreasing inflammation and providing pain relief in the short-term, they unfortunately have also been shown to change the properties of ligaments and other soft tissue, which ends up slowing down the healing process. Because these medications inhibit soft tissue healing, their use is cautioned in those who have ligament and soft tissue injuries. Therefore, their use in ligament injuries should be used for the shortest period of time, if used at all. Instead, Regenerative Orthopedic techniques, such as Stem Cell Therapy, PRP and Prolotherapy, which have been shown to strengthen and resolve ligament injuries, repair meniscal injuries, and rebuild cartilage in the knee, should be sought.\r\n\r\n<h6>The RICE Protocol</h6>\r\nSo what about the RICE (rest, ice, compression and elevation) protocol? Everyone knows about the RICE protocol, and most people are quick to put it into action. However, an interesting point is that the RICE protocol has been rescinded by its author due to its detrimental effect on healing. Why? Because it hinders blood supply to the injury, and blood brings the healing factors to an injury. Remember…The river does not flow when it is frozen; and that ‘river’ is your blood.\r\n\r\n<h6>What about Hyaluronic Acid Injections?</h6>\r\nHyaluronic acid injections, such as Synvisc or Hyalgen, are some of the most popular conservative treatments for knee pain. Hyaluronic acid is a substance naturally found in the body that provides cushion and lubrication to the joints. It can be used as an oral supplement and as an injection that is given directly into the knee joint for the relief of knee pain. Are there drawbacks to the use of hyaluronic acid? \r\n\r\nIf relief is experienced with hyaluronic acid injections, it is generally only for a short period of time. Studies have shown this treatment to actually lack clinical effectiveness. In fact, a systematic review of 89 studies that included over twelve thousand patients comparing hyaluronic acid injections to a sham treatment or to no intervention at all, found that hyaluronic acid supplementation to the knee produced minimal to non-existent results when it came to pain relief and function in knee arthritis patients. That means thousands of patients in these studies received no relief at all, and if they did find relief, it was not much. Unfortunately, those that do find some pain relief with the use of hyaluronic acid, only experience results for a short period of time, and the treatment frequently becomes only a delay for the inevitable knee replacement, because all it does is lubricate a dysfunctional joint, and does not fix anything.  \r\n\r\n<h6>Other Non-Surgical Treatments</h6>\r\nEven though the goal of many non-surgical treatments such as weight loss, exercise, physiotherapy, bracing, and orthotics, is to decrease pain and improve function, they are unable to repair the source of the pain, the ligament or soft tissue injury. Why is it so important to repair the ligaments and other soft tissue? Because the long-term consequence of ligament and soft tissue injuries that are left unhealed is arthritis. Is it any wonder why the treatments mentioned above including hyaluronic acid do not last, and why they are unable to prevent the eventual knee replacement! You see, these treatments are unable to get to the root cause of the problem. The road to arthritis can only be remedied when the problem of ligament injury is addressed. None of the above treatments address this problem. Regenerative Orthopedics does.\r\n\r\n<h6>Are Cortisone Injections Really All That Bad?</h6>\r\nSteroids are used to provide anti-inflammatory relief in affected areas of the body. They lessen swelling, redness, itching and allergic reactions, and, in addition to their use for pain, are often used as part of the treatment for a number of different diseases, such as severe allergies or skin problems, asthma, or arthritis. In many of these cases, steroids are lifesaving! The discovery that steroids could be injected into joints was received with enthusiasm, and led to widespread use. However, shortly after doctors started injecting cortisone and other steroids into knee joints in the 1950s, reports of terrible arthropathies, or joint diseases, began to surface. There was an obvious indication that all was not well with this treatment choice. Way back then, the researchers discouraged the use of steroids being injected into the joint, due to their side effects and cell death in the bone.\r\n\r\nSteroid injections accelerate cartilage degeneration and joint destruction. Cortisone has a deleterious effect on soft tissue healing by inhibiting blood flow to the injured area, new blood vessel formation, protein synthesis, fibroblast proliferation and ultimately collagen formation. Cortisone weakens collagen and therefore soft tissue such as ligaments and tendons, which contributes to the development of conditions such as arthritis, which as we know, leads to the eventual joint replacement. Today, despite the dangers, cortisone use is widespread and has become the standard of care. \r\n\r\n<h6>Surgical Repair</h6>\r\nElimination of knee pain by arthroscopic shaving, cutting, or removal of tissue just delays the pain for a few years until the remaining tissue becomes degenerated. The athlete or any knee pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or steroid injection, the risk of developing long-term arthritis and the eventual knee replacement is greatly increased. The key to keeping the knee strong is to stimulate the area to heal. Remember, once surgery is done, it cannot be undone!\r\n\r\n<h6>Regenerative Orthopedics</h6>\r\nRegenerative Orthopedic therapies such as Stem Cell Therapy, PRP and Prolotherapy stimulate, rather than interfere with, the normal healing process. The treatments stimulate the normal inflammatory-reparative mechanisms of the body, boosting cartilage growth, strengthening the tendons and ligaments, and repairing the meniscus in a knee or the labrum in the hip or shoulder. These regenerative treatments offer hope to those suffering from various types of knee pain and provide an effective, non-surgical option for those trying to avoid knee replacement.\r\nAs we say at OrthoRegen:\r\nRegenerate First; Surgery Last!\r\n','Avoiding Knee Replacement with Regenerative Orthopedics','','inherit','closed','closed','','2082-revision-v1','','','2020-04-16 20:16:48','2020-04-16 20:16:48','',2082,'https://www.drfields.com/uncategorized/2082-revision-v1/',0,'revision','',0),(3605,8,'2020-04-17 22:09:40','2020-04-17 22:09:40','<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[playlist type=\"video\" tracklist=\"false\" ids=\"2033\"]\r\n</div>\r\n<p>&nbsp;</p>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" class=\"aligncenter\"/>\r\n<a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\" ><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;<strong>Dr. Fields on the Radio</strong></a>\r\n</div>\r\n','Doctor Fields on TV and More','','inherit','closed','closed','','1567-revision-v1','','','2020-04-17 22:09:40','2020-04-17 22:09:40','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(3606,8,'2020-04-17 22:15:26','2020-04-17 22:15:26','<div id=\"centrevideo\" class=\"youtube-click-div \">\n[playlist type=\"video\" tracklist=\"false\" ids=\"2033\"]\n\n</div>\n&nbsp;\n<div class=\"clear\"></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div\">[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div\">[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div\">[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\n<strong>Interview with Dr. Fields</strong></div>\n<div class=\"clear\"></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div\">[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]Additional Interview with Dr. Fields\n\n</div>\n<div id=\"youtubeleft\" class=\"youtube-click-div\"><img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" />\n<a class=\"buttonlink\" href=\"/dr-fields-on-the-radio/\">  <strong>Dr. Fields on the Radio</strong></a></div>','Doctor Fields on TV and More','','inherit','closed','closed','','1567-autosave-v1','','','2020-04-17 22:15:26','2020-04-17 22:15:26','',1567,'https://www.drfields.com/uncategorized/1567-autosave-v1/',0,'revision','',0),(3607,8,'2020-04-21 19:43:14','2020-04-21 19:43:14','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the 2020 Rehab Symposium</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n    <li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n      <li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        \r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-21 19:43:14','2020-04-21 19:43:14','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3608,8,'2020-04-21 19:43:51','2020-04-21 19:43:51','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council symposium</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n    <li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n      <li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        \r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-21 19:43:51','2020-04-21 19:43:51','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3609,8,'2020-04-21 19:45:22','2020-04-21 19:45:22','<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[playlist type=\"video\" tracklist=\"false\" ids=\"2033\"]\r\n</div>\r\n<p>&nbsp;</p>\r\n\r\n<div class=\"clear\"></div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"2vAoXYb7f7M\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg\" alt=\"Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians\"]\r\n<strong>Dr. Fields Lectures in Las Vegas to 400+ Physicians</strong>	\r\n</div>\r\n\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Peter-A.-Fields-MD-DC\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Dangers of Anti-Inflammatory Medicines\'</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields\"]\r\n<strong>Interview with Dr. Fields</strong>\r\n</div>	\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"37Ww-R46U1o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg\" alt=\"Additional Interview with Dr. Fields\"]\r\n<p>Additional Interview with Dr. Fields</strong>	\r\n</div>	\r\n\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" class=\"aligncenter\"/>\r\n<a href=\"/dr-fields-on-the-radio/\" class=\"buttonlink\" ><em class=\"fa fa-volume-up\"></em>&nbsp;&nbsp;<strong>Dr. Fields on the Radio</strong></a>\r\n</div>\r\n','Dr. Fields on TV and more','','inherit','closed','closed','','1567-revision-v1','','','2020-04-21 19:45:22','2020-04-21 19:45:22','',1567,'https://www.drfields.com/uncategorized/1567-revision-v1/',0,'revision','',0),(3610,8,'2020-04-21 19:47:28','2020-04-21 19:47:28','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n    <li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n      <li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        \r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-21 19:47:28','2020-04-21 19:47:28','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3612,8,'2020-04-21 19:51:09','2020-04-21 19:51:09','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n    <li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n      <li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        \r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-21 19:51:09','2020-04-21 19:51:09','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3613,8,'2020-04-23 22:54:21','2020-04-23 22:54:21','<img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" />\r\n<h4>Prolotherapy Doctor</h4>\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\r\n<h4>What is a Prolotherapy Doctor?</h4>\r\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h4>How Prolotherapy Treatment Works</h4>\r\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"https://orthoregen.com/\" rel=\"noopener noreferrer\">OrthoRegen</a>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\r\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\r\n<h4>What Conditions Can Dr. Fields Help You With:</h4>\r\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\r\n<ul>\r\n 	<li><strong>Chronic Conditions like…</strong>\r\n<ul>\r\n 	<li>Arthritis Pain</li>\r\n 	<li>Sciatica Pain</li>\r\n 	<li>Pinched Nerves</li>\r\n 	<li>Athletic Injuries</li>\r\n 	<li>Tension Headaches</li>\r\n 	<li>Migraine Headaches</li>\r\n 	<li>Herniated Discs</li>\r\n 	<li>Degenerative Discs</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak Joints</li>\r\n 	<li>Sore Muscles</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Knee Injuries:</strong>\r\n<ul>\r\n 	<li>ACL Tear</li>\r\n 	<li>Runners\' Knee</li>\r\n 	<li>Radial Meniscus Tear</li>\r\n 	<li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Hip Injuries:</strong>\r\n<ul>\r\n 	<li>Torn Labrum</li>\r\n 	<li>Acetabular labrum Tear</li>\r\n 	<li>Labral Tear</li>\r\n 	<li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Neck Injuries:</strong>\r\n<ul>\r\n 	<li>Whiplash</li>\r\n 	<li>TMJ Syndrome</li>\r\n 	<li>Migraine Headaches</li>\r\n 	<li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Shoulder Injuries:</strong>\r\n<ul>\r\n 	<li>Labral Tear</li>\r\n 	<li>Rotator Cuff Tear</li>\r\n 	<li>Swimmers Shoulder</li>\r\n 	<li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Back Injuries:</strong>\r\n<ul>\r\n 	<li>Herniated discs</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>See a complete list of Back Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Elbow Injuries:</strong>\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tennis elbow</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Foot and Ankle Injuries:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle Sprains</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>See a complete list of Foot Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Hand Injuries:</strong>\r\n<ul>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Finger pain</li>\r\n 	<li>See a complete list of Hand Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Prolotherapy Doctor','','inherit','closed','closed','','229-revision-v1','','','2020-04-23 22:54:21','2020-04-23 22:54:21','',229,'https://www.drfields.com/uncategorized/229-revision-v1/',0,'revision','',0),(3614,8,'2020-04-23 22:54:52','2020-04-23 22:54:52','<img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" />\r\n<h4>Prolotherapy Doctor</h4>\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\r\n<h4>What is a Prolotherapy Doctor?</h4>\r\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h4>How Prolotherapy Treatment Works</h4>\r\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"https://orthoregen.com/\" rel=\"noopener noreferrer\">OrthoRegen</a><br />\r\n<br />\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\r\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\r\n<h4>What Conditions Can Dr. Fields Help You With:</h4>\r\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\r\n<ul>\r\n 	<li><strong>Chronic Conditions like…</strong>\r\n<ul>\r\n 	<li>Arthritis Pain</li>\r\n 	<li>Sciatica Pain</li>\r\n 	<li>Pinched Nerves</li>\r\n 	<li>Athletic Injuries</li>\r\n 	<li>Tension Headaches</li>\r\n 	<li>Migraine Headaches</li>\r\n 	<li>Herniated Discs</li>\r\n 	<li>Degenerative Discs</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak Joints</li>\r\n 	<li>Sore Muscles</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Knee Injuries:</strong>\r\n<ul>\r\n 	<li>ACL Tear</li>\r\n 	<li>Runners\' Knee</li>\r\n 	<li>Radial Meniscus Tear</li>\r\n 	<li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Hip Injuries:</strong>\r\n<ul>\r\n 	<li>Torn Labrum</li>\r\n 	<li>Acetabular labrum Tear</li>\r\n 	<li>Labral Tear</li>\r\n 	<li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Neck Injuries:</strong>\r\n<ul>\r\n 	<li>Whiplash</li>\r\n 	<li>TMJ Syndrome</li>\r\n 	<li>Migraine Headaches</li>\r\n 	<li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Shoulder Injuries:</strong>\r\n<ul>\r\n 	<li>Labral Tear</li>\r\n 	<li>Rotator Cuff Tear</li>\r\n 	<li>Swimmers Shoulder</li>\r\n 	<li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Back Injuries:</strong>\r\n<ul>\r\n 	<li>Herniated discs</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>See a complete list of Back Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Elbow Injuries:</strong>\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tennis elbow</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Foot and Ankle Injuries:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle Sprains</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>See a complete list of Foot Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Hand Injuries:</strong>\r\n<ul>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Finger pain</li>\r\n 	<li>See a complete list of Hand Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Prolotherapy Doctor','','inherit','closed','closed','','229-revision-v1','','','2020-04-23 22:54:52','2020-04-23 22:54:52','',229,'https://www.drfields.com/uncategorized/229-revision-v1/',0,'revision','',0),(3615,8,'2020-04-23 23:02:11','2020-04-23 23:02:11','<img class=\"alignleft wp-image-1685 size-medium\" title=\"prp los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>PRP Doctor</h4>\r\nPeter A. Fields, MD DC, is a PRP Doctor in Los Angeles and the founder of OrthoRegen. Dr. Fields is a leading expert in using (PRP) Platelet Rich Plasma therapy to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world. Dr. Fields help people avoid unnecessary orthopedic surgeries whether arthroscopic or full surgery.\r\n<h4>What is a PRP Doctor?</h4>\r\nA PRP Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. PRP Doctors like Dr. Fields use Platelet Rich Plasma Injections that help accelerate the normal healing process. Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of PRP Regenerative Treatments.\r\n<h4>What Does PRP stand for?</h4>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as platelets, white blood cells, and red cells. The Harvest method that Dr. Fields uses concentrates the platelets 7-10 times of what is generally found in blood. Other systems concentrate them, but to a lesser extent.\r\n<h4>What is PRP Treatment?</h4>\r\nPRP treatment, as used in regenerative orthopedics, is a non-surgical healing treatment for healing soft tissue performed by a PRP Doctor. Dr. Fields makes precise injections of your own concentrated blood (PRP) into the affected areas to promote healing of musculoskeletal problems. Blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site.<br />\r\n<br />\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Is PRP Treatment Safe?</h4>\r\nPRP treatment is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities thoroughly with patients during the pre-treatment consultation.\r\nWhat Does a PRP Doctor Treat?\r\n\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that Dr. Fields treats. PRP has also been effective in treating arthritis, though more severe cases get better results with Dr. Fields’ Stem Cell treatments.\r\n\r\nDr. Fields has had great success in treating chronic pain and sports injuries including:\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Knee Injuries:</strong> ACL, MCL LCL, Meniscus, Arthritis, Kneecap Instability</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Knee Injuries Treated with Prolotherapy here\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Elbow Injuries:</strong> Tennis Elbow, Medial Epicondylitis,Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Elbow Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Shoulder Injuries:</strong> Rotator Cuff Tears, Labrum Tears, Tenositis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Shoulder Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Back Injuries:</strong> Arthritis, Facet Joints, Sacro-Iliac dysfunction</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Back Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hip Injuries:</strong> Tenositis, Bursitis,Labrum</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Hip Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Foot/Ankle Injuries:</strong> Ankle Sprains, Arthritis, Achilles Dysfunction, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Foot/Ankle Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hand/Wrist/ Injuries:</strong> Finger/Joint Tendinitis, Ligament Tears, Arthritis, Carpal tunnel</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Hand/Wrist Injuries Treated with Prolotherapy here.\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','PRP Doctor','','inherit','closed','closed','','266-revision-v1','','','2020-04-23 23:02:11','2020-04-23 23:02:11','',266,'https://www.drfields.com/uncategorized/266-revision-v1/',0,'revision','',0),(3616,8,'2020-04-23 23:02:37','2020-04-23 23:02:37','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" class=\"alignleft size-full wp-image-1685\" /><h4>Stem Cell Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is Stem Cell Doctor in Los Angeles and the founder of OrthoRegen. Dr. Fields is a leading expert in using Stem Cell Treatments for joints and Spine Regeneration. Dr. Fields help people avoid unnecessary orthopaedic surgeries whether full surgery or arthroscopic procedure. Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of Stem Cell  Regenerative Treatments.\r\n\r\n<h4>What is a Stem Cell Doctor?</h4>\r\n\r\nA Stem Cell Doctor provides regenerative orthopaedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields uses Stem Cell therapy to regenerate body tissue. Regenerative medicine is growing in popularity in the medical world as an alternative to invasive orthopaedic surgeries including joint replacement. The remarkable thing about Stem Cells is that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example,  cartilage cells or meniscus cells.\r\n\r\n<h4>What Conditions Can a Stem Cell Doctor Help?</h4>\r\n\r\nDr. Fields treats weakened, torn or damaged ligaments, as well as tendons, torn cartilage, muscle tears, menisci or labrums. Stem Cell treatment has also been effective in treating severe arthritis conditions.\r\n\r\n<strong>Dr. Fields has had great success in treating joint conditions with Stem Cell Therapy including:</strong>\r\n<ul>\r\n   <li>Bone-on-Bone</li>\r\n    <li>Severe Arthritis</li>\r\n    <li>Degenerated Joint</li>\r\n    <li>Torn, Worn or Missing Cartilage</li></ul>\r\n\r\nSee more about Stem Cell Treatment.<br />\r\n<br />\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<h4>What is Stem Cell Treatment?</h4>\r\n\r\nStem Cell treatment is an injection of stem cells into the joint or affected area to promote healing. This procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries.\r\n\r\nDr. Fields  Stem Cell technique one of the four Gold Standards Regenerative Orthopedics procedures to help you avoid invasive surgery.\r\n\r\nStem Cell Treatment, as used in regenerative orthopaedics, is a non-surgical healing treatment for healing soft tissue performed by a Stem Cell Doctor. Stem Cell treatment is the transplantation of autologous culture-expanded bone marrow mesenchymal stem cells in platelet rich-fibrin glue.\r\n\r\n<h4>Is Stem Cell Treatment Safe?</h4>\r\n\r\nStem Cell treatment is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. The Stem Cell Doctor will discuss these possibilities fully with patients during the pre-treatment consultation. This is only recommended after a very thorough history and physical exam.\r\n\r\n<h4>Are You A Candidate for Stem Cell Treatment?</h4>\r\n\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s shoulder replacement surgery, hip replacement surgery, knee replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to bone-on-bone, arthritis or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nSpine Surgery and Joint Replacement Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, long recovery times, potential (dangerous) complications, and the need to have the procedure redone at some point.\r\n\r\nMake an appointment with our Stem Cell Doctor for an evaluation to see if you are a good candidate for Dr. Fields Gold Standard Stem Cell Treatment for - Spine and Joints. Call <a href=\"tel:+[phone_raw]\">[phone]</a>\r\n to Schedule Your Appointment Today!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Stem Cell Doctor','','inherit','closed','closed','','292-revision-v1','','','2020-04-23 23:02:37','2020-04-23 23:02:37','',292,'https://www.drfields.com/uncategorized/292-revision-v1/',0,'revision','',0),(3617,8,'2020-04-23 23:04:00','2020-04-23 23:04:00','<img class=\"alignleft wp-image-1685 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc®</h4>\r\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n<h4>Director of OrthoRegen</h4>\r\nDr. Fields is the Director of <a href=\"https://orthoregen.com/\" target=\"_blank\" rel=\"noopener noreferrer\">OrthoRegen</a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\r\n<h4>Regenerative Medicine Expert</h4>\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\">national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n<h4>Hackett-Hemwall Foundation Instructor</h4>\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.<br />\r\n<br />\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Prolotherapy Doctor</h4>\r\nDr. Fields is the leading expert in the field or <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h6>The Athletic Doc®</h6>\r\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc® has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n<div id=\"centrevideo\" class=\"text-center\">[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong></div><br />\r\n<br />\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2020-04-23 23:04:00','2020-04-23 23:04:00','',216,'https://www.drfields.com/uncategorized/216-revision-v1/',0,'revision','',0),(3618,8,'2020-04-23 23:04:46','2020-04-23 23:04:46','<img class=\"alignleft wp-image-1685 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc®</h4>\r\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n<h4>Director of OrthoRegen</h4>\r\nDr. Fields is the Director of <a href=\"https://orthoregen.com/\" target=\"_blank\" rel=\"noopener noreferrer\">OrthoRegen</a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\r\n<h4>Regenerative Medicine Expert</h4>\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\">national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n<h4>Hackett-Hemwall Foundation Instructor</h4>\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.<br />\r\n<br />\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Prolotherapy Doctor</h4>\r\nDr. Fields is the leading expert in the field or <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h6>The Athletic Doc®</h6>\r\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc® has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n<div id=\"centrevideo\" class=\"text-center\">[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong></div>\r\n<p>&nbsp;</p>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2020-04-23 23:04:46','2020-04-23 23:04:46','',216,'https://www.drfields.com/uncategorized/216-revision-v1/',0,'revision','',0),(3619,8,'2020-04-23 23:06:14','2020-04-23 23:06:14','&nbsp;\r\n\r\n<strong> <a href=\"#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n\r\n<strong><a id=\"1\" name=\"1\"></a>1) What does it treat</strong>\r\nJoint Pain and Injury:\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 125px;\">\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td valign=\"top\" style=\"width: 125px;\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacro-iliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nOther Areas Where Prolotherapy Can Help:\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How many treatments will I need?</strong>\r\n\r\nThe average person requires 6 treatment sessions given at 2 to 4 week intervals, but the number of treatments varies with each patient. Difficult (post surgical, long standing, etc) or other complicated cases may require 8, 10 or 12 treatments. Many patients feel relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"3\" name=\"3\"></a>3) Will I need to continue care after treatment?</strong>\r\n\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, an additional treatment maybe needed\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"4\" name=\"4\"></a>4) Is this the same thing as cortisone shots</strong><strong>?</strong>\r\n\r\nLong term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection; Prolotherapy is multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"5\" name=\"5\"></a>5) Is Prolotherapy safe?</strong>\r\n\r\nAs with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. On the other hand, Prolotherapy is an extremely safe procedure. The risks are far less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong>\r\n\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive the treatments without pain killers and do just fine. </strong>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"7\" name=\"7\"></a>7) Will my insurance cover this and what are the fees?</strong>\r\n\r\nFor information regarding insurence and fees <a href=\"https://www.drfields.com/about/common-questions/\">Click Here</a> to visit out common questions section.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"8\" name=\"8\"></a>8) Is it advisable to drive or work after Prolotherapy?</strong>\r\n\r\nYou can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.<br />\r\n<br />\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n','Prolotherapy FAQ','','inherit','closed','closed','','395-revision-v1','','','2020-04-23 23:06:14','2020-04-23 23:06:14','',395,'https://www.drfields.com/uncategorized/395-revision-v1/',0,'revision','',0),(3620,8,'2020-04-23 23:13:21','2020-04-23 23:13:21','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n    <li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n      <li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        \r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a><br />\r\n<br />\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-23 23:13:21','2020-04-23 23:13:21','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3621,8,'2020-04-23 23:14:10','2020-04-23 23:14:10','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n    <li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n      <li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        \r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<p>&nbsp;</p>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-23 23:14:10','2020-04-23 23:14:10','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3623,8,'2020-04-24 00:04:00','2020-04-24 00:04:00','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n    <li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n      <li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        \r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<p>&nbsp;</p>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<p>&nbsp;</p>\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-24 00:04:00','2020-04-24 00:04:00','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3624,8,'2020-04-24 00:06:08','2020-04-24 00:06:08','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n    <li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n      <li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        \r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<p>&nbsp;</p>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<p>&nbsp;</p>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-24 00:06:08','2020-04-24 00:06:08','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3625,8,'2020-04-24 00:07:38','2020-04-24 00:07:38','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Learn More</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n    <li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n      <li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n        \r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<p>&nbsp;</p>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<p>&nbsp;</p>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-24 00:07:38','2020-04-24 00:07:38','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3626,8,'2020-11-24 00:12:05','2020-11-24 00:12:05','[video-menu-cat]\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\n<div class=\"clear\"></div>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-autosave-v1','','','2020-11-24 00:12:05','2020-11-24 00:12:05','',1340,'https://www.drfields.com/uncategorized/1340-autosave-v1/',0,'revision','',0),(3627,8,'2020-04-24 19:04:26','2020-04-24 19:04:26','Jim Mcdermat PRP Foot','Jim Mcdermat PRP Foot','Jim Mcdermat PRP Foot','inherit','open','closed','','jim-mcdermat-prp-foot','','','2020-04-24 19:04:47','2020-04-24 19:04:47','',0,'https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg',0,'attachment','image/jpeg',0),(3628,8,'2020-04-24 19:41:49','2020-04-24 19:41:49','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2020-04-24 19:41:49','2020-04-24 19:41:49','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(3629,8,'2020-04-24 19:42:47','2020-04-24 19:42:47','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2020-04-24 19:42:47','2020-04-24 19:42:47','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(3630,8,'2020-04-24 19:48:02','2020-04-24 19:48:02','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clear\"></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2020-04-24 19:48:02','2020-04-24 19:48:02','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(3631,8,'2020-04-24 19:55:30','2020-04-24 19:55:30','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2020-04-24 19:55:30','2020-04-24 19:55:30','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(3632,8,'2020-04-24 19:56:46','2020-04-24 19:56:46','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2020-04-24 19:56:46','2020-04-24 19:56:46','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(3633,8,'2020-04-24 19:59:39','2020-04-24 19:59:39','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2020-04-24 19:59:39','2020-04-24 19:59:39','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(3634,8,'2020-04-24 20:00:22','2020-04-24 20:00:22','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2020-04-24 20:00:22','2020-04-24 20:00:22','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(3635,8,'2020-04-24 20:02:17','2020-04-24 20:02:17','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2020-04-24 20:02:17','2020-04-24 20:02:17','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(3636,8,'2020-04-24 20:14:10','2020-04-24 20:14:10','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div\" id=\"centrevideo\">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot <span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"youtube-click-div\" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Foot Testimonials','','inherit','closed','closed','','1717-revision-v1','','','2020-04-24 20:14:10','2020-04-24 20:14:10','',1717,'https://www.drfields.com/uncategorized/1717-revision-v1/',0,'revision','',0),(3637,8,'2020-04-24 20:15:39','2020-04-24 20:15:39','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot <span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Foot Testimonials','','inherit','closed','closed','','1717-revision-v1','','','2020-04-24 20:15:39','2020-04-24 20:15:39','',1717,'https://www.drfields.com/uncategorized/1717-revision-v1/',0,'revision','',0),(3638,8,'2020-04-27 20:41:58','2020-04-27 20:41:58','<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nAs the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions. Don\'t fear!\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly.\r\n\r\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\r\n\r\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\n\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n<h4><strong>The point is that we cannot live our lives in fear.</strong></h4>\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n[caption id=\"attachment_3664\" align=\"alignright\" width=\"461\"]<img class=\"wp-image-3664 \" src=\"https://www.drfields.com/wp-content/uploads/2020/04/image0-400x500.jpeg\" alt=\"COVID Advice\" width=\"461\" height=\"576\" /> <em>                                      Don\'t Fear the Fear Itsel</em>f[/caption]\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\r\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','“Don’t Fear the Fear Itself!”','','publish','open','closed','','dont-fear-the-fear-itself','','','2020-09-02 19:18:18','2020-09-02 19:18:18','',0,'https://www.drfields.com/?p=3638',0,'post','',0),(3639,8,'2020-04-27 19:40:05','2020-04-27 19:40:05','<span style=\"font-weight: 400;\">As the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.</span>\r\n\r\n<span style=\"font-weight: 400;\">Yes, this virus is a terrible menace, and sometimes even deadly. But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all. Yes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.</span>\r\n\r\n<b>What Does the Research Say About Strokes and Surgery?</b>\r\n\r\n<span style=\"font-weight: 400;\">An article in the journal, “Lancet” investigated the occurrence of strokes in people who did not have stroke symptoms before the surgery. They also looked into the rate of cognitive decline after surgery. The study included 12 academic centers and 1114 people over a three year period. What were the results? The researchers found that 78 people, or 7%, had a stroke.</span><span style=\"font-weight: 400;\"> What about cognitive decline? A third of those who did not have a stroke were shown to have cognitive decline. So, what does all that mean? There is a risk of stroke and problems with deteriorating brain function in 1 out of 14 people who have elective surgery, even if they were not high risk to begin with. </span>\r\n\r\n<span style=\"font-weight: 400;\">Stroke really is a possible complication in surgeries that don’t involve the heart or neurological system. The risk increases in people over 65. Plus, the risk of death is higher for those who have a perioperative stroke. In the journal, “Anesthesiology,” the researchers investigated specific things that increased the risk of stroke from surgery in the non-cardiac and non-neurological cases. They looked at all different types of surgeries, including hip replacements, biopsies, hernia repair, arthroscopies, and knee repairs. This study found three types of surgeries with highest risk, which included hip replacement, removal of part of the intestine, and removal of part of the lung.  Other specifics that increase risk included older age, kidney disease, COPD, tobacco use, and elevated blood pressure. For those who do experience a perioperative stroke, the chance of dying within 30 days of the surgery is increased by 8 times. In this particular study, 229 of 173,028 people had a stroke during non-cardiac and non-neurologic surgery. </span>\r\n\r\n<b>What about surgery and anesthesia?</b>\r\n\r\n<span style=\"font-weight: 400;\">Another study in the journal “Anesthesia” took a look at stroke risk from surgery and anesthesia. They studied 1,455 stroke occurrences over a 25 year period, excluding those with cardiac, vascular, neurologic, and other high-risk conditions. What did they find? They were actually surprised to find out that surgery and anesthesia themselves were a significant risk of stroke, especially considering they left out the high risk folks with cardiac, vascular, or neurologic problems. </span>\r\n\r\n<span style=\"font-weight: 400;\">One more journal actually said the reason for stroke after surgery is “clear and highly predictable: </span><b>surgery.</b><span style=\"font-weight: 400;\">”</span><span style=\"font-weight: 400;\"> Surgery is necessary sometimes. But when there are alternatives to surgery, these options should be sought out. Keep in mind that surgery is often recommended on the basis of an MRI finding. However, these finding may not even be the cause of the pain. We encourage you to find a practitioner who will evaluate you well, and do a complete history and examination in order to make a proper diagnosis. Frequently, structural injuries, such as ligament and tendon injuries, are the underlying source of pain. Surgery often cuts through and removes some of these structures, which actually accelerates the arthritic process, and puts you in line for more surgery.</span>\r\n\r\n<span style=\"font-weight: 400;\">Fortunately, there is an alternative to surgery that is highly successful! Regenerative Orthopedics can be sought as a first-line, conservative treatment that can be tried before surgery because it is effective at relieving pain and allowing patients to return quickly to the sports, work, and activities they love. It is also an excellent choice for repair of joint injuries and painful musculoskeletal joint conditions, while avoiding the risk of stroke and other risks of elective surgery. If you have already had surgery, but continue to experience joint pain, Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy is still an option for pain relief and return to function. When joint injuries are limiting your life, Regenerative Orthopedics can get you the results you want quickly, more safely, and at a dramatically lower cost than surgery.</span>\r\n\r\n<hr />\r\n\r\n<span style=\"font-weight: 400;\">Perioperative covert stroke in patients undergoing non-cardiac surgery.</span><i><span style=\"font-weight: 400;\"> Lancet,</span></i><span style=\"font-weight: 400;\"> 2019. Doi.org/10.1016/SO140-6736(19)31795-7</span>\r\n\r\n<span style=\"font-weight: 400;\">Mashour GA, Shanks AM, Kheterpal S.Perioperative stroke and associated mortality after noncardiac, nonneurologic surgery.</span> <i><span style=\"font-weight: 400;\">Anesthesiology.</span></i><span style=\"font-weight: 400;\"> 2011; </span><b>114</b><span style=\"font-weight: 400;\">: 1289-1296.</span>\r\n\r\n<a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Gilbert%c2%a0Y.+Wong\"><span style=\"font-weight: 400;\">Gilbert Y. Wong, M.D.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=David%c2%a0O.+Warner\"><span style=\"font-weight: 400;\">David O. Warner, M.D.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Darrell%c2%a0R.+Schroeder\"><span style=\"font-weight: 400;\">Darrell R. Schroeder, M.S.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Kenneth%c2%a0P.+Offord\"><span style=\"font-weight: 400;\">Kenneth P. Offord, M.S.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Mark%c2%a0A.+Warner\"><span style=\"font-weight: 400;\">Mark A. Warner, M.D.</span></a><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">et al. </span><span style=\"font-weight: 400;\">Risk of surgery and anesthesia for ischemic stroke. </span><i><span style=\"font-weight: 400;\">Anesthesiology</span></i><span style=\"font-weight: 400;\">. 2000; 92: 425.</span>\r\n\r\n<span style=\"font-weight: 400;\">Mashour, George A. MD, PhD</span><span style=\"font-weight: 400;\">*</span><span style=\"font-weight: 400;\">; Moore, Laurel E. MD; Lele, Abhijit V. MD; Robicsek, Steven A. MD; Gelb, Adrian W. MBChB</span><span style=\"font-weight: 400;\">. </span><span style=\"font-weight: 400;\">Perioperative care of patients at high risk for stroke during or after non-cardiac, non-neurologic surgery: Consensus statement from the Society for Neuroscience in Anesthesiology and Critical Care. </span><span style=\"font-weight: 400;\"> </span><i><span style=\"font-weight: 400;\">Journal of Neurosurgical Anesthesiology.</span></i> <a href=\"https://journals.lww.com/jnsa/toc/2014/10000\"><span style=\"font-weight: 400;\"> 2014; 26(4): 273–285</span></a><span style=\"font-weight: 400;\">.</span>','Don\'t Fear the Fear Itself!','','inherit','closed','closed','','3638-revision-v1','','','2020-04-27 19:40:05','2020-04-27 19:40:05','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(3640,8,'2020-04-27 19:42:15','2020-04-27 19:42:15','B39df3e6 20d0 44a2 93c8 Dcf2de3d8272','B39df3e6 20d0 44a2 93c8 Dcf2de3d8272','B39df3e6 20d0 44a2 93c8 Dcf2de3d8272','inherit','open','closed','','b39df3e6-20d0-44a2-93c8-dcf2de3d8272','','','2020-04-27 19:42:15','2020-04-27 19:42:15','',3638,'https://www.drfields.com/wp-content/uploads/2020/04/b39df3e6-20d0-44a2-93c8-dcf2de3d8272.png',0,'attachment','image/png',0),(3641,8,'2020-04-27 19:43:13','2020-04-27 19:43:13','As the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly. <strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong> Yes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n\r\n<strong>The point is that we cannot live our lives in fear.</strong>\r\n\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n[caption id=\"attachment_3640\" align=\"alignnone\" width=\"400\"]<img class=\"size-medium wp-image-3640\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/b39df3e6-20d0-44a2-93c8-dcf2de3d8272-400x500.png\" alt=\"B39df3e6 20d0 44a2 93c8 Dcf2de3d8272\" width=\"400\" height=\"500\" /> B39df3e6 20d0 44a2 93c8 Dcf2de3d8272[/caption]\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus. But it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.\r\n\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.\r\n\r\n<em>Remember to be intelligently cautious and careful.</em></strong></p>\r\n\r\n\r\n<hr />\r\n\r\n<span style=\"font-weight: 400;\">Perioperative covert stroke in patients undergoing non-cardiac surgery.</span><i><span style=\"font-weight: 400;\"> Lancet,</span></i><span style=\"font-weight: 400;\"> 2019. Doi.org/10.1016/SO140-6736(19)31795-7</span>\r\n\r\n<span style=\"font-weight: 400;\">Mashour GA, Shanks AM, Kheterpal S.Perioperative stroke and associated mortality after noncardiac, nonneurologic surgery.</span> <i><span style=\"font-weight: 400;\">Anesthesiology.</span></i><span style=\"font-weight: 400;\"> 2011; </span><b>114</b><span style=\"font-weight: 400;\">: 1289-1296.</span>\r\n\r\n<a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Gilbert%c2%a0Y.+Wong\"><span style=\"font-weight: 400;\">Gilbert Y. Wong, M.D.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=David%c2%a0O.+Warner\"><span style=\"font-weight: 400;\">David O. Warner, M.D.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Darrell%c2%a0R.+Schroeder\"><span style=\"font-weight: 400;\">Darrell R. Schroeder, M.S.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Kenneth%c2%a0P.+Offord\"><span style=\"font-weight: 400;\">Kenneth P. Offord, M.S.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Mark%c2%a0A.+Warner\"><span style=\"font-weight: 400;\">Mark A. Warner, M.D.</span></a><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">et al. </span><span style=\"font-weight: 400;\">Risk of surgery and anesthesia for ischemic stroke. </span><i><span style=\"font-weight: 400;\">Anesthesiology</span></i><span style=\"font-weight: 400;\">. 2000; 92: 425.</span>\r\n\r\n<span style=\"font-weight: 400;\">Mashour, George A. MD, PhD</span><span style=\"font-weight: 400;\">*</span><span style=\"font-weight: 400;\">; Moore, Laurel E. MD; Lele, Abhijit V. MD; Robicsek, Steven A. MD; Gelb, Adrian W. MBChB</span><span style=\"font-weight: 400;\">. </span><span style=\"font-weight: 400;\">Perioperative care of patients at high risk for stroke during or after non-cardiac, non-neurologic surgery: Consensus statement from the Society for Neuroscience in Anesthesiology and Critical Care. </span><span style=\"font-weight: 400;\"> </span><i><span style=\"font-weight: 400;\">Journal of Neurosurgical Anesthesiology.</span></i> <a href=\"https://journals.lww.com/jnsa/toc/2014/10000\"><span style=\"font-weight: 400;\"> 2014; 26(4): 273–285</span></a><span style=\"font-weight: 400;\">.</span>','Don\'t Fear the Fear Itself!','','inherit','closed','closed','','3638-revision-v1','','','2020-04-27 19:43:13','2020-04-27 19:43:13','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(3642,8,'2020-04-27 20:36:17','2020-04-27 20:36:17','As the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly. <strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong> Yes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n\r\n<strong>The point is that we cannot live our lives in fear.</strong>\r\n\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n<img class=\"size-medium wp-image-3640\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/b39df3e6-20d0-44a2-93c8-dcf2de3d8272-400x500.png\" alt=\"You are alive and here on this planet and today is a good day to live your life.\" width=\"400\" height=\"500\" />\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus. But it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>','Don\'t Fear the Fear Itself!','','inherit','closed','closed','','3638-revision-v1','','','2020-04-27 20:36:17','2020-04-27 20:36:17','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(3643,8,'2020-04-27 20:44:12','2020-04-27 20:44:12','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Learn More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Don’t Fear the Fear Itself!</a></li>\r\n<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\"><a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>&nbsp;\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-27 20:44:12','2020-04-27 20:44:12','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3644,8,'2020-04-27 21:12:27','2020-04-27 21:12:27','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Learn More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Don’t Fear the Fear Itself!</a></li>\r\n<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\"><a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>&nbsp;\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-27 21:12:27','2020-04-27 21:12:27','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3645,8,'2020-04-28 17:22:01','2020-04-28 17:22:01','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article By Dr. Fields</span><!--<span class=\"header_text_first\">New Article By Dr. Fields</span>--><!--<span class=\"header_text_second\">How Arthritis Affects the Older Athlete</span>-->\r\n<a class=\"btn-more\" title=\"Read More\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Learn More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\"><a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>&nbsp;\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-28 17:22:01','2020-04-28 17:22:01','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3646,8,'2020-04-28 17:27:16','2020-04-28 17:27:16','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Learn More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\"><a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>&nbsp;\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-28 17:27:16','2020-04-28 17:27:16','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3647,8,'2020-04-28 17:53:01','2020-04-28 17:53:01','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Learn More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\"><a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>&nbsp;\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-28 17:53:01','2020-04-28 17:53:01','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3648,8,'2020-04-28 17:53:55','2020-04-28 17:53:55','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\"><a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>&nbsp;\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-28 17:53:55','2020-04-28 17:53:55','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3649,8,'2020-04-28 20:56:33','2020-04-28 20:56:33','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\"><div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\"><a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>&nbsp;\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-28 20:56:33','2020-04-28 20:56:33','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3650,8,'2020-04-28 20:57:33','2020-04-28 20:57:33','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\"><a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>&nbsp;\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-28 20:57:33','2020-04-28 20:57:33','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (3651,8,'2020-04-28 20:59:00','2020-04-28 20:59:00','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\"><div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\"><a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>&nbsp;\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-04-28 20:59:00','2020-04-28 20:59:00','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3652,8,'2020-04-30 17:11:54','2020-04-30 17:11:54','<strong>By Peter A. Fields, MD, DC</strong>\n\nAs the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\n\nYes, this virus is a terrible menace, and sometimes even deadly.\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\n\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\n\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\n\n<strong>The point is that we cannot live our lives in fear.</strong>\n\nLiving life in fear is not a good thing.\n\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\n\n<img class=\"size-medium wp-image-3660\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/image002-400x500.jpg\" alt=\"Woman Holding Toilet Paper\" width=\"400\" height=\"500\" /><img class=\"alignnone size-medium wp-image-3664\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/image0-400x500.jpeg\" alt=\"Woman Holding Toilet Paper\" width=\"400\" height=\"500\" />\n\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\n\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\n\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\n\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\n\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\nBut don\'t fear the fear itself!\n\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\n\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\n\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>','COVID-19 Advice: “Don’t Fear the Fear Itself!”','','inherit','closed','closed','','3638-autosave-v1','','','2020-04-30 17:11:54','2020-04-30 17:11:54','',3638,'https://www.drfields.com/uncategorized/3638-autosave-v1/',0,'revision','',0),(3653,8,'2020-04-28 23:28:37','2020-04-28 23:28:37','As the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly.\r\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\r\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n\r\n<strong>The point is that we cannot live our lives in fear.</strong>\r\n\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n<img class=\"size-medium wp-image-3640\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/b39df3e6-20d0-44a2-93c8-dcf2de3d8272-400x500.png\" alt=\"You are alive and here on this planet and today is a good day to live your life.\" width=\"400\" height=\"500\" />\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\r\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>','Don\'t Fear the Fear Itself!','','inherit','closed','closed','','3638-revision-v1','','','2020-04-28 23:28:37','2020-04-28 23:28:37','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(3654,8,'2020-04-28 23:30:16','2020-04-28 23:30:16','As the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly.\r\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\r\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n\r\n<strong>The point is that we cannot live our lives in fear.</strong>\r\n\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n<img class=\"size-medium wp-image-3640\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/b39df3e6-20d0-44a2-93c8-dcf2de3d8272-400x500.png\" alt=\"You are alive and here on this planet and today is a good day to live your life.\" width=\"400\" height=\"500\" />\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\r\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>','COVID-19 Advice: “Don’t Fear the Fear Itself!” by Peter A. Fields, MD, DC','','inherit','closed','closed','','3638-revision-v1','','','2020-04-28 23:30:16','2020-04-28 23:30:16','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(3655,8,'2020-04-28 23:30:36','2020-04-28 23:30:36','As the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly.\r\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\r\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n\r\n<strong>The point is that we cannot live our lives in fear.</strong>\r\n\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n<img class=\"size-medium wp-image-3640\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/b39df3e6-20d0-44a2-93c8-dcf2de3d8272-400x500.png\" alt=\"You are alive and here on this planet and today is a good day to live your life.\" width=\"400\" height=\"500\" />\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\r\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>','COVID-19 Advice: “Don’t Fear the Fear Itself!”<br />by Peter A. Fields, MD, DC','','inherit','closed','closed','','3638-revision-v1','','','2020-04-28 23:30:36','2020-04-28 23:30:36','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(3656,8,'2020-04-28 23:31:32','2020-04-28 23:31:32','As the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly.\r\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\r\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n\r\n<strong>The point is that we cannot live our lives in fear.</strong>\r\n\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n<img class=\"size-medium wp-image-3640\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/b39df3e6-20d0-44a2-93c8-dcf2de3d8272-400x500.png\" alt=\"You are alive and here on this planet and today is a good day to live your life.\" width=\"400\" height=\"500\" />\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\r\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>','COVID-19 Advice: “Don’t Fear the Fear Itself!”<br /><span style=\"font-size: 18px\">by Peter A. Fields, MD, DC</span>','','inherit','closed','closed','','3638-revision-v1','','','2020-04-28 23:31:32','2020-04-28 23:31:32','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(3657,8,'2020-04-28 23:34:06','2020-04-28 23:34:06','As the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly.\r\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\r\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n\r\n<strong>The point is that we cannot live our lives in fear.</strong>\r\n\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n<img class=\"size-medium wp-image-3640\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/b39df3e6-20d0-44a2-93c8-dcf2de3d8272-400x500.png\" alt=\"You are alive and here on this planet and today is a good day to live your life.\" width=\"400\" height=\"500\" />\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\r\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>','COVID-19 Advice: “Don’t Fear the Fear Itself!”','','inherit','closed','closed','','3638-revision-v1','','','2020-04-28 23:34:06','2020-04-28 23:34:06','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(3658,8,'2020-04-28 23:39:40','2020-04-28 23:39:40','by Peter A. Fields, MD, DC\r\n\r\nAs the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly.\r\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\r\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n\r\n<strong>The point is that we cannot live our lives in fear.</strong>\r\n\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n<img class=\"size-medium wp-image-3640\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/b39df3e6-20d0-44a2-93c8-dcf2de3d8272-400x500.png\" alt=\"You are alive and here on this planet and today is a good day to live your life.\" width=\"400\" height=\"500\" />\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\r\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>','COVID-19 Advice: “Don’t Fear the Fear Itself!”','','inherit','closed','closed','','3638-revision-v1','','','2020-04-28 23:39:40','2020-04-28 23:39:40','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(3659,8,'2020-04-28 23:40:27','2020-04-28 23:40:27','<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nAs the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly.\r\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\r\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n\r\n<strong>The point is that we cannot live our lives in fear.</strong>\r\n\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n<img class=\"size-medium wp-image-3640\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/b39df3e6-20d0-44a2-93c8-dcf2de3d8272-400x500.png\" alt=\"You are alive and here on this planet and today is a good day to live your life.\" width=\"400\" height=\"500\" />\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\r\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>','COVID-19 Advice: “Don’t Fear the Fear Itself!”','','inherit','closed','closed','','3638-revision-v1','','','2020-04-28 23:40:27','2020-04-28 23:40:27','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(3660,8,'2020-04-30 00:08:02','2020-04-30 00:08:02','Woman Holding Toilet Paper, regular text style','Woman Holding Toilet Paper','','inherit','open','closed','','image002','','','2020-04-30 17:11:37','2020-04-30 17:11:37','',3638,'https://www.drfields.com/wp-content/uploads/2020/04/image002.jpg',0,'attachment','image/jpeg',0),(3661,8,'2020-04-30 00:08:31','2020-04-30 00:08:31','<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nAs the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly.\r\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\r\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n\r\n<strong>The point is that we cannot live our lives in fear.</strong>\r\n\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_3660\" align=\"alignnone\" width=\"400\"]<img class=\"size-medium wp-image-3660\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/image002-400x500.jpg\" alt=\"Woman Holding Toilet Paper\" width=\"400\" height=\"500\" /> Image002[/caption]\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\r\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>','COVID-19 Advice: “Don’t Fear the Fear Itself!”','','inherit','closed','closed','','3638-revision-v1','','','2020-04-30 00:08:31','2020-04-30 00:08:31','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(3662,8,'2020-04-30 00:09:27','2020-04-30 00:09:27','<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nAs the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly.\r\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\r\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n\r\n<strong>The point is that we cannot live our lives in fear.</strong>\r\n\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-3660\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/image002-400x500.jpg\" alt=\"Woman Holding Toilet Paper\" width=\"400\" height=\"500\" />\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\r\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>','COVID-19 Advice: “Don’t Fear the Fear Itself!”','','inherit','closed','closed','','3638-revision-v1','','','2020-04-30 00:09:27','2020-04-30 00:09:27','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(3663,8,'2020-04-30 00:09:43','2020-04-30 00:09:43','<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nAs the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly.\r\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\r\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n\r\n<strong>The point is that we cannot live our lives in fear.</strong>\r\n\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n<img class=\"size-medium wp-image-3660\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/image002-400x500.jpg\" alt=\"Woman Holding Toilet Paper\" width=\"400\" height=\"500\" />\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\r\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>','COVID-19 Advice: “Don’t Fear the Fear Itself!”','','inherit','closed','closed','','3638-revision-v1','','','2020-04-30 00:09:43','2020-04-30 00:09:43','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(3664,8,'2020-04-30 17:10:23','2020-04-30 17:10:23','Woman Holding Toilet Paper, Italicized text','Woman Holding Toilet Paper','','inherit','open','closed','','image0','','','2020-04-30 17:11:09','2020-04-30 17:11:09','',3638,'https://www.drfields.com/wp-content/uploads/2020/04/image0.jpeg',0,'attachment','image/jpeg',0),(3665,8,'2020-04-30 17:11:58','2020-04-30 17:11:58','<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nAs the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly.\r\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\r\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n\r\n<strong>The point is that we cannot live our lives in fear.</strong>\r\n\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n<img class=\"alignnone size-medium wp-image-3664\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/image0-400x500.jpeg\" alt=\"Woman Holding Toilet Paper\" width=\"400\" height=\"500\" />\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\r\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>','COVID-19 Advice: “Don’t Fear the Fear Itself!”','','inherit','closed','closed','','3638-revision-v1','','','2020-04-30 17:11:58','2020-04-30 17:11:58','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(3666,8,'2020-05-01 20:06:48','2020-05-01 20:06:48','Header Orthoregen Ocean Mountains','Header Orthoregen Ocean Mountains','Header Orthoregen Ocean Mountains','inherit','open','closed','','header-orthoregen-ocean-mountains','','','2020-05-01 20:06:48','2020-05-01 20:06:48','',2109,'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg',0,'attachment','image/jpeg',0),(3667,8,'2020-05-01 20:08:04','2020-05-01 20:08:04','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-05-01 20:08:04','2020-05-01 20:08:04','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3668,8,'2020-05-01 20:09:08','2020-05-01 20:09:08','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-05-01 20:09:08','2020-05-01 20:09:08','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3670,8,'2020-05-05 21:29:47','2020-05-05 21:29:47','','iwp_log_5eb1dacb36bde','','publish','closed','closed','','iwp_log_5eb1dacb36bde','','','2020-05-05 21:29:47','2020-05-05 21:29:47','',0,'https://www.drfields.com/uncategorized/iwp_log_5eb1dacb36bde/',0,'iwp_log','',0),(3671,8,'2020-05-05 21:30:28','2020-05-05 21:30:28','','iwp_log_5eb1daf4237ae','','publish','closed','closed','','iwp_log_5eb1daf4237ae','','','2020-05-05 21:30:28','2020-05-05 21:30:28','',0,'https://www.drfields.com/uncategorized/iwp_log_5eb1daf4237ae/',0,'iwp_log','',0),(3672,8,'2020-05-05 21:30:38','2020-05-05 21:30:38','','iwp_log_5eb1dafe11067','','publish','closed','closed','','iwp_log_5eb1dafe11067','','','2020-05-05 21:30:38','2020-05-05 21:30:38','',0,'https://www.drfields.com/uncategorized/iwp_log_5eb1dafe11067/',0,'iwp_log','',0),(3673,8,'2020-05-05 21:30:43','2020-05-05 21:30:43','','iwp_log_5eb1db03bec33','','publish','closed','closed','','iwp_log_5eb1db03bec33','','','2020-05-05 21:30:43','2020-05-05 21:30:43','',0,'https://www.drfields.com/uncategorized/iwp_log_5eb1db03bec33/',0,'iwp_log','',0),(3674,8,'2020-05-05 21:30:52','2020-05-05 21:30:52','','iwp_log_5eb1db0c60080','','publish','closed','closed','','iwp_log_5eb1db0c60080','','','2020-05-05 21:30:52','2020-05-05 21:30:52','',0,'https://www.drfields.com/uncategorized/iwp_log_5eb1db0c60080/',0,'iwp_log','',0),(3675,0,'2020-05-08 04:33:02','2020-05-08 04:33:02','','iwp_log_5eb4e0fef3cfa','','publish','closed','closed','','iwp_log_5eb4e0fef3cfa','','','2020-05-08 04:33:02','2020-05-08 04:33:02','',0,'https://www.drfields.com/uncategorized/iwp_log_5eb4e0fef3cfa/',0,'iwp_log','',0),(3677,8,'2020-05-13 17:38:29','2020-05-13 17:38:29','<em>My dad’s life could be an example for all of us during COVID-19 to encourage us to keep moving forwards and to not look back no matter how bad things are.</em>\r\n<h2><strong>Keep Looking Forward Despite COVID-19: My Dad\'s Story</strong></h2>\r\n<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nMy dad passed away just shy of his 85th birthday in 2004. Although he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\r\n\r\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example applies especially today. To me, he was not only my dad but my best friend and my mentor. He taught me so much.\r\n\r\nMy dad was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\r\n<h4>In 1934, his life would change forever.</h4>\r\nAt first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\r\n\r\nAfter that, he applied for a program where he could be sent to the United States to live with a family, since things were getting worse for Jewish people, and especially young men, in Germany. My dad was so excited when he was accepted into the program. He had a farewell party and said goodbye to his friends and relatives as he prepared for what was ahead.\r\n\r\nA few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\r\n<h4>Then on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred.</h4>\r\nMy dad\'s mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\r\n\r\nHe knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\r\n\r\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\r\n\r\nMy dad\'s mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein, and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\r\n<h4>He did what he could to survive, he kept moving forward, and looked to the future for better days.</h4>\r\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\r\n\r\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\r\n<h4><em>“By the time you receive this, I will no longer exist.\"</em></h4>\r\nThese words struck like a lead pipe over his head.\r\n\r\nMy dad\'s mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\r\n\r\nHe could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\r\n\r\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\r\n\r\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\r\n<h4>And so, he went on. He persevered for the rest of the war in Shanghai.</h4>\r\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\r\n\r\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\r\n\r\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\r\n\r\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\r\n\r\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this story and his words and actions will help you during these very difficult times.\r\n\r\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\r\n\r\nThere is a bright future out there for all of us.\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','My Dad\'s Story: Keep Looking Forward Despite COVID-19','','publish','open','closed','','dealing-with-covid-19-my-dads-story','','','2020-10-05 22:43:31','2020-10-05 22:43:31','',0,'https://www.drfields.com/?p=3677',0,'post','',0),(3678,8,'2020-05-13 17:34:23','2020-05-13 17:34:23','Look Forward','Look Forward','Look Forward','inherit','open','closed','','look-forward','','','2020-05-13 17:34:23','2020-05-13 17:34:23','',3677,'https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward.png',0,'attachment','image/png',0),(3679,8,'2020-05-13 17:37:10','2020-05-13 17:37:10','Look Forward','Look Forward','Look Forward','inherit','open','closed','','look-forward-2','','','2020-05-13 17:37:42','2020-05-13 17:37:42','',3677,'https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2.png',0,'attachment','image/png',0),(3680,8,'2020-05-13 17:38:29','2020-05-13 17:38:29','My dad passed away just shy of his 85th birthday in 2004. \r\n\r\nTo me, he was not only my dad but my best friend and my mentor. He taught me so much. Although he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\r\n\r\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example especially applies today. \r\n\r\nHe was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city.  Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood. \r\n\r\nIn 1934, his life would change forever. At first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\r\n\r\nAfter that, his mother applied for a program where he could be sent to the United States to live with a family since things were getting worse for Jewish people in Germany. He was accepted into the program, had a farewell party, and said goodbye to his friends and relatives preparing for what was ahead. A few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed, and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards. \r\n\r\nThen on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred. His mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses. \r\n\r\nMy father knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\r\n\r\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far-away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\r\n\r\nHis mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother. \r\n\r\nHe did what he could to survive, kept moving forward and looked to the future for better days.  \r\n\r\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times. \r\n \r\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line: \r\n\r\n“By the time you receive this, I will no longer exist”. \r\n\r\nThese words struck like a lead pipe over his head.\r\n\r\nHis mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later.  Unfortunately, she was right. \r\n\r\nMy dad could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\r\n\r\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future. \r\n\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" class=\"size-medium wp-image-3679\" />\r\n\r\n\r\nAnd so, he went on. He persevered for the rest of the war in Shanghai. \r\n\r\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do.  But he just kept moving forward, taking one day at a time, and looking for the best the world could offer. \r\n\r\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life. \r\n\r\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face. \r\n\r\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\r\n\r\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this \r\nstory and his words and actions will help you during these very difficult times.\r\n\r\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\r\n \r\nThere is a bright future out there for all of us.  \r\n\r\n\r\nPeter A. Fields, MD, DC, The Athletic Doc®','My Dad\'s Example in Dealing with Adversity','','inherit','closed','closed','','3677-revision-v1','','','2020-05-13 17:38:29','2020-05-13 17:38:29','',3677,'https://www.drfields.com/uncategorized/3677-revision-v1/',0,'revision','',0),(3681,8,'2020-05-13 17:48:54','2020-05-13 17:48:54','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n<li class=\"last\"><a title=\"My Dad’s Example in Dealing with Adversity\" href=\"/articles/health-news/my-dads-example-in-dealing-with-adversity/\">My Dad’s Example in Dealing with Adversity</a></li> 	\r\n<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-05-13 17:48:54','2020-05-13 17:48:54','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3682,8,'2020-05-13 19:44:57','2020-05-13 19:44:57','','iwp_log_5ebc4e3948b38','','publish','closed','closed','','iwp_log_5ebc4e3948b38','','','2020-05-13 19:44:57','2020-05-13 19:44:57','',0,'https://www.drfields.com/uncategorized/iwp_log_5ebc4e3948b38/',0,'iwp_log','',0),(3683,8,'2020-05-13 19:45:20','2020-05-13 19:45:20','','iwp_log_5ebc4e5083b9e','','publish','closed','closed','','iwp_log_5ebc4e5083b9e','','','2020-05-13 19:45:20','2020-05-13 19:45:20','',0,'https://www.drfields.com/uncategorized/iwp_log_5ebc4e5083b9e/',0,'iwp_log','',0),(3685,9,'2020-05-13 21:08:01','2020-05-13 21:08:01','My dad passed away just shy of his 85th birthday in 2004.\r\n\r\nTo me, he was not only my dad but my best friend and my mentor. He taught me so much. Although he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\r\n\r\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example especially applies today.\r\n\r\nHe was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\r\n\r\nIn 1934, his life would change forever. At first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\r\n\r\nAfter that, his mother applied for a program where he could be sent to the United States to live with a family since things were getting worse for Jewish people in Germany. He was accepted into the program, had a farewell party, and said goodbye to his friends and relatives preparing for what was ahead. A few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed, and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\r\n\r\nThen on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred. His mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\r\n\r\nMy father knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\r\n\r\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far-away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\r\n\r\nHis mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\r\n\r\nHe did what he could to survive, kept moving forward and looked to the future for better days.\r\n\r\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\r\n\r\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\r\n\r\n“By the time you receive this, I will no longer exist”.\r\n\r\nThese words struck like a lead pipe over his head.\r\n\r\nHis mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\r\n\r\nMy dad could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\r\n\r\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\r\n\r\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\r\n\r\nAnd so, he went on. He persevered for the rest of the war in Shanghai.\r\n\r\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\r\n\r\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\r\n\r\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\r\n\r\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\r\n\r\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this\r\nstory and his words and actions will help you during these very difficult times.\r\n\r\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\r\n\r\nThere is a bright future out there for all of us.\r\n\r\nPeter A. Fields, MD, DC, The Athletic Doc®','Dealing with COVID-19','','inherit','closed','closed','','3677-revision-v1','','','2020-05-13 21:08:01','2020-05-13 21:08:01','',3677,'https://www.drfields.com/uncategorized/3677-revision-v1/',0,'revision','',0),(3686,8,'2020-05-13 21:29:36','2020-05-13 21:29:36','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n<li class=\"last\"><a title=\"Dealing with COVID-19\" href=\"/articles/health-news/my-dads-example-in-dealing-with-adversity/\">Dealing with COVID-19</a></li> 	\r\n<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-05-13 21:29:36','2020-05-13 21:29:36','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3687,8,'2020-05-14 18:49:15','2020-05-14 18:49:15','My dad passed away just shy of his 85th birthday in 2004.\n\nAlthough he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\n\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example applies especially today. To me, he was not only my dad but my best friend and my mentor. He taught me so much.\n\nHe was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\n\nIn 1934, his life would change forever. At first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\n\nAfter that, he applied for a program where he could be sent to the United States to live with a family, since things were getting worse for Jewish people, and especially young men, in Germany. He was so excited when he was accepted into the program. He had a farewell party and said goodbye to his friends and relatives as he prepared for what was ahead. A few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\n\nThen on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred. His mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\n\nMy father knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\n\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\n\nHis mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein, and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\n\nHe did what he could to survive, kept moving forward, and looked to the future for better days.\n\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\n\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\n\n“By the time you receive this, I will no longer exist.\"\n\nThese words struck like a lead pipe over his head.\n\nHis mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\n\nMy dad could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\n\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\n\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\n\nAnd so, he went on. He persevered for the rest of the war in Shanghai.\n\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\n\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\n\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\n\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\n\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this story and his words and actions will help you during these very difficult times.\n\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\n\nThere is a bright future out there for all of us.\n\n~Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Schedule Your Appointment Today!</a>','Keep Looking Forward Despite COVID-19','','inherit','closed','closed','','3677-autosave-v1','','','2020-05-14 18:49:15','2020-05-14 18:49:15','',3677,'https://www.drfields.com/uncategorized/3677-autosave-v1/',0,'revision','',0),(3688,8,'2020-05-13 21:34:04','2020-05-13 21:34:04','My dad passed away just shy of his 85th birthday in 2004.\r\n\r\nAlthough he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\r\n\r\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example applies especially today. To me, he was not only my dad but my best friend and my mentor. He taught me so much.\r\n\r\nHe was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\r\n\r\nIn 1934, his life would change forever. At first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\r\n\r\nAfter that, he applied for a program where he could be sent to the United States to live with a family, since things were getting worse for Jewish people, and especially young men, in Germany. He was so excited when he was accepted into the program. He had a farewell party and said goodbye to his friends and relatives as he prepared for what was ahead. A few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\r\n\r\nThen on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred. His mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\r\n\r\nMy father knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\r\n\r\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\r\n\r\nHis mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein, and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\r\n\r\nHe did what he could to survive, kept moving forward, and looked to the future for better days.\r\n\r\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\r\n\r\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\r\n\r\n“By the time you receive this, I will no longer exist.\"\r\n\r\nThese words struck like a lead pipe over his head.\r\n\r\nHis mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\r\n\r\nMy dad could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\r\n\r\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\r\n\r\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\r\n\r\nAnd so, he went on. He persevered for the rest of the war in Shanghai.\r\n\r\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\r\n\r\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\r\n\r\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\r\n\r\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\r\n\r\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this story and his words and actions will help you during these very difficult times.\r\n\r\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\r\n\r\nThere is a bright future out there for all of us.\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>','Dealing with COVID-19','','inherit','closed','closed','','3677-revision-v1','','','2020-05-13 21:34:04','2020-05-13 21:34:04','',3677,'https://www.drfields.com/uncategorized/3677-revision-v1/',0,'revision','',0),(3689,8,'2020-05-13 22:18:22','2020-05-13 22:18:22','Header Orthoregen Beach Sunset','Header Orthoregen Beach Sunset','Header Orthoregen Beach Sunset','inherit','open','closed','','header-orthoregen-beach-sunset','','','2020-05-13 22:18:22','2020-05-13 22:18:22','',0,'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-beach-sunset.jpg',0,'attachment','image/jpeg',0),(3690,8,'2020-05-13 22:23:42','2020-05-13 22:23:42','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-beach-sunset.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">Dealing with COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/my-dads-example-in-dealing-with-adversity/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Dealing with COVID-19\" href=\"/articles/health-news/my-dads-example-in-dealing-with-adversity/\">Dealing with COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-05-13 22:23:42','2020-05-13 22:23:42','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3691,8,'2020-05-13 22:48:34','2020-05-13 22:48:34','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-beach-sunset.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">Dealing with COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/my-dads-example-in-dealing-with-adversity/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Dealing with COVID-19\" href=\"/articles/health-news/my-dads-example-in-dealing-with-adversity/\">Dealing with COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-05-13 22:48:34','2020-05-13 22:48:34','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3692,8,'2020-05-14 17:52:10','2020-05-14 17:52:10','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-beach-sunset.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article:<br />Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Dealing with COVID-19\" href=\"/articles/health-news/my-dads-example-in-dealing-with-adversity/\">Dealing with COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-05-14 17:52:10','2020-05-14 17:52:10','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3693,8,'2020-05-14 17:52:34','2020-05-14 17:52:34','My dad passed away just shy of his 85th birthday in 2004.\r\n\r\nAlthough he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\r\n\r\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example applies especially today. To me, he was not only my dad but my best friend and my mentor. He taught me so much.\r\n\r\nHe was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\r\n\r\nIn 1934, his life would change forever. At first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\r\n\r\nAfter that, he applied for a program where he could be sent to the United States to live with a family, since things were getting worse for Jewish people, and especially young men, in Germany. He was so excited when he was accepted into the program. He had a farewell party and said goodbye to his friends and relatives as he prepared for what was ahead. A few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\r\n\r\nThen on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred. His mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\r\n\r\nMy father knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\r\n\r\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\r\n\r\nHis mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein, and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\r\n\r\nHe did what he could to survive, kept moving forward, and looked to the future for better days.\r\n\r\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\r\n\r\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\r\n\r\n“By the time you receive this, I will no longer exist.\"\r\n\r\nThese words struck like a lead pipe over his head.\r\n\r\nHis mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\r\n\r\nMy dad could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\r\n\r\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\r\n\r\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\r\n\r\nAnd so, he went on. He persevered for the rest of the war in Shanghai.\r\n\r\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\r\n\r\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\r\n\r\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\r\n\r\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\r\n\r\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this story and his words and actions will help you during these very difficult times.\r\n\r\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\r\n\r\nThere is a bright future out there for all of us.\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>','Keep Looking Forward Despite COVID-19','','inherit','closed','closed','','3677-revision-v1','','','2020-05-14 17:52:34','2020-05-14 17:52:34','',3677,'https://www.drfields.com/uncategorized/3677-revision-v1/',0,'revision','',0),(3694,8,'2020-05-14 17:53:24','2020-05-14 17:53:24','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-beach-sunset.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">New Article:<br />Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-05-14 17:53:24','2020-05-14 17:53:24','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3695,8,'2020-05-14 17:55:13','2020-05-14 17:55:13','Header Orthoregen Santa Monica Pier','Header Orthoregen Santa Monica Pier','Header Orthoregen Santa Monica Pier','inherit','open','closed','','header-orthoregen-santa-monica-pier','','','2020-05-14 17:55:13','2020-05-14 17:55:13','',0,'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg',0,'attachment','image/jpeg',0),(3696,8,'2020-05-14 17:56:22','2020-05-14 17:56:22','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-05-14 17:56:22','2020-05-14 17:56:22','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3697,8,'2020-05-14 18:02:31','2020-05-14 18:02:31','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia\" href=\"https://www.drfields.com/Articles/Health-News/A5M-Conference-Australia-2017\">Dr. Fields Keynote Speaker at a Regenerative Orthopedics Lecture, Australia </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-05-14 18:02:31','2020-05-14 18:02:31','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3698,8,'2020-05-14 18:49:17','2020-05-14 18:49:17','My dad passed away just shy of his 85th birthday in 2004.\r\n\r\nAlthough he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\r\n\r\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example applies especially today. To me, he was not only my dad but my best friend and my mentor. He taught me so much.\r\n\r\nHe was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\r\n\r\nIn 1934, his life would change forever. At first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\r\n\r\nAfter that, he applied for a program where he could be sent to the United States to live with a family, since things were getting worse for Jewish people, and especially young men, in Germany. He was so excited when he was accepted into the program. He had a farewell party and said goodbye to his friends and relatives as he prepared for what was ahead. A few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\r\n\r\nThen on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred. His mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\r\n\r\nMy father knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\r\n\r\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\r\n\r\nHis mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein, and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\r\n\r\nHe did what he could to survive, kept moving forward, and looked to the future for better days.\r\n\r\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\r\n\r\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\r\n\r\n“By the time you receive this, I will no longer exist.\"\r\n\r\nThese words struck like a lead pipe over his head.\r\n\r\nHis mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\r\n\r\nMy dad could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\r\n\r\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\r\n\r\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\r\n\r\nAnd so, he went on. He persevered for the rest of the war in Shanghai.\r\n\r\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\r\n\r\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\r\n\r\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\r\n\r\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\r\n\r\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this story and his words and actions will help you during these very difficult times.\r\n\r\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\r\n\r\nThere is a bright future out there for all of us.\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Schedule Your Appointment Today!</a>','Keep Looking Forward Despite COVID-19','','inherit','closed','closed','','3677-revision-v1','','','2020-05-14 18:49:17','2020-05-14 18:49:17','',3677,'https://www.drfields.com/uncategorized/3677-revision-v1/',0,'revision','',0),(3699,8,'2020-05-14 18:49:55','2020-05-14 18:49:55','My dad passed away just shy of his 85th birthday in 2004.\r\n\r\nAlthough he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\r\n\r\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example applies especially today. To me, he was not only my dad but my best friend and my mentor. He taught me so much.\r\n\r\nHe was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\r\n\r\nIn 1934, his life would change forever. At first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\r\n\r\nAfter that, he applied for a program where he could be sent to the United States to live with a family, since things were getting worse for Jewish people, and especially young men, in Germany. He was so excited when he was accepted into the program. He had a farewell party and said goodbye to his friends and relatives as he prepared for what was ahead. A few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\r\n\r\nThen on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred. His mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\r\n\r\nMy father knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\r\n\r\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\r\n\r\nHis mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein, and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\r\n\r\nHe did what he could to survive, kept moving forward, and looked to the future for better days.\r\n\r\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\r\n\r\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\r\n\r\n“By the time you receive this, I will no longer exist.\"\r\n\r\nThese words struck like a lead pipe over his head.\r\n\r\nHis mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\r\n\r\nMy dad could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\r\n\r\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\r\n\r\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\r\n\r\nAnd so, he went on. He persevered for the rest of the war in Shanghai.\r\n\r\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\r\n\r\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\r\n\r\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\r\n\r\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\r\n\r\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this story and his words and actions will help you during these very difficult times.\r\n\r\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\r\n\r\nThere is a bright future out there for all of us.\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Keep Looking Forward Despite COVID-19','','inherit','closed','closed','','3677-revision-v1','','','2020-05-14 18:49:55','2020-05-14 18:49:55','',3677,'https://www.drfields.com/uncategorized/3677-revision-v1/',0,'revision','',0),(3700,8,'2020-05-14 18:59:40','2020-05-14 18:59:40','<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nMy dad passed away just shy of his 85th birthday in 2004.\r\n\r\nAlthough he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\r\n\r\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example applies especially today. To me, he was not only my dad but my best friend and my mentor. He taught me so much.\r\n\r\nHe was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\r\n\r\nIn 1934, his life would change forever. At first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\r\n\r\nAfter that, he applied for a program where he could be sent to the United States to live with a family, since things were getting worse for Jewish people, and especially young men, in Germany. He was so excited when he was accepted into the program. He had a farewell party and said goodbye to his friends and relatives as he prepared for what was ahead. A few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\r\n\r\nThen on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred. His mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\r\n\r\nMy father knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\r\n\r\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\r\n\r\nHis mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein, and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\r\n\r\nHe did what he could to survive, kept moving forward, and looked to the future for better days.\r\n\r\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\r\n\r\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\r\n\r\n“By the time you receive this, I will no longer exist.\"\r\n\r\nThese words struck like a lead pipe over his head.\r\n\r\nHis mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\r\n\r\nMy dad could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\r\n\r\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\r\n\r\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\r\n\r\nAnd so, he went on. He persevered for the rest of the war in Shanghai.\r\n\r\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\r\n\r\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\r\n\r\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\r\n\r\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\r\n\r\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this story and his words and actions will help you during these very difficult times.\r\n\r\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\r\n\r\nThere is a bright future out there for all of us.\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Keep Looking Forward Despite COVID-19','','inherit','closed','closed','','3677-revision-v1','','','2020-05-14 18:59:40','2020-05-14 18:59:40','',3677,'https://www.drfields.com/uncategorized/3677-revision-v1/',0,'revision','',0),(3701,8,'2020-05-14 20:01:02','2020-05-14 20:01:02','<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nAs the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly.\r\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\r\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n\r\n<strong>The point is that we cannot live our lives in fear.</strong>\r\n\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n<img class=\"alignnone size-medium wp-image-3664\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/image0-400x500.jpeg\" alt=\"Woman Holding Toilet Paper\" width=\"400\" height=\"500\" />\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\r\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc®</a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','COVID-19 Advice: “Don’t Fear the Fear Itself!”','','inherit','closed','closed','','3638-revision-v1','','','2020-05-14 20:01:02','2020-05-14 20:01:02','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(3702,8,'2020-05-14 20:01:26','2020-05-14 20:01:26','Are you experiencing pain in the shoulder that makes you cringe whenever you move it? The pain is impacting everything you do, making both work and play almost impossible. You may have even been diagnosed with a problem of the Rotator Cuff, or some type of tendinopathy, which may include tendons that are worn, injured, stretched, or even torn.\r\n\r\nFour muscles inside of the shoulder allow us to rotate our arm. These four muscles form a cuff of tendons around the top of the arm or the humeral head. If the rotator cuff is torn, it means there is a tear of one or more of the tendons of those four rotator cuff muscles of the shoulder. A rotator cuff “injury” might include any type of irritation or overuse of either the tendons or the muscles.\r\n<h2>More on The Anatomy of the Shoulder and the Rotator Cuff</h2>\r\nThe shoulder is made up of two joints, the glenohumeral joint and the acromioclavicular joint. The glenohumeral joint is a ball and socket joint formed by the top of the humerus and the socket of the scapula. The four muscles and tendons of the <strong>rotator cuff </strong>surround the glenohumeral joint and hold the head of the humerus into the scapula. The rotator cuff functions to stabilize the shoulder and allow the arms to move through a full range of motion. The rotator cuff works together with the deltoid muscle to provide motion and strength to the shoulder for activities that require motion above the waist and shoulders.<strong> </strong>\r\n\r\n<strong><em>Tendinopathy, Tendonitis, and Tendinosis</em></strong>\r\n\r\nYes, these words look pretty similar, but they mean different things. <strong>Tendinopathy</strong> is a problem of the tendon that results in pain, swelling, and impaired function. Both tendonitis and tendinosis are a type of tendinopathy. <strong>Tendonitis</strong> is an inflammation or irritation of a tendon. If left untreated, tendonitis can become <strong>tendinosis</strong>, which is a degeneration of the tendon.\r\n<h2>Rotator Cuff Tendonitis</h2>\r\nIn the rest of this article, we will concentrate on rotator cuff tendonitis. Tendonitis is more common in adults over 40 years of age, as the tendons become less elastic, tolerate less stress, and are more susceptible to injury.\r\n\r\nRotator cuff tendonitis occurs when the small muscles of the rotator cuff, the supraspinatus, infraspinatus, teres minor, and subscapularis, become strained causing weakness of these structures and subsequent tendonitis. While the deltoid muscle is the big and strong muscle of the shoulder, as seen on many well-built athletes, the small and relatively weak rotator cuff muscles perform key functions. The supraspinatus helps seat the humeral head (ball) into the glenoid cavity (socket) when the arm is raised from the side (abducted). The infraspinatus and teres minor rotate the forearm away from the body or in the hand-waving position (external rotation), and the subscapularis rotates the forearm towards the body (internal rotation). Once the balance between motion and joint stability is altered through weakness in structures like the ligaments, tendons, and muscles of the rotator cuff, pain and impaired function will invariably be the result. This condition is often caused by or associated with repetitive overhead activities, as the rotator cuff is most vulnerable in this position.\r\n\r\nThe tendons of the rotator cuff pass underneath a bony area on their way to attaching to the top part of the arm bone. Rotator cuff tendonitis arises when inflammation or bony spurs narrow the space available for the rotator cuff tendons. Sandwiched between the two bones, wear and tear of the rotator cuff takes place, exacerbating this inflammation and pain.\r\n<h2>Development of Rotator Cuff Tendonitis</h2>\r\nRotator cuff tendonitis refers to irritation of these tendons and inflammation of the lining of these tendons. Rotator cuff tendonitis most often occurs as a result of activities in which the arm is moved over the head repeatedly, such as tennis, pitching, swimming or lifting weights over the head. Other causes of rotator cuff tendonitis include occupational overuse, such as working with the arm overhead for many hours or days; impingement syndrome; an existing weakness of the rotator cuff muscles, ligaments or tendons; use of improper technique during a sport or occupational activity; poor posture; sleeping on the same arm each night; cervical spine nerve pinching; an improper training schedule, such as too much too soon; a direct trauma, such as a fall directly onto the shoulder or onto an outstretched arm; poor muscle control or coordination; poor posture over the years; or a loose or unstable shoulder joint following a previous dislocation. If the rotator cuff continues to be injured or inflamed it will eventually tear, resulting in a more serious problem.\r\n<h2>Symptoms of Rotator Cuff Tendonitis</h2>\r\nThe classic symptoms of rotator cuff tendonitis include a “toothache-like” pain that radiates down the outer arm to several inches below the top of the shoulder. Pain may also occur at the top and front of the shoulder. Initially, the pain may be mild and only occur with certain arm movements. Over time, pain is noticeable at rest and during the night. Sleep is interrupted due to a nagging upper arm pain. Activities requiring the raising of the arm overhead or those that require reaching behind the body usually aggravate the symptoms. The shoulder may feel stiff with lifting or movement.\r\n<h2>Rotator Cuff Tendonitis Treatments</h2>\r\nThe initial treatment traditionally used for rotator cuff tendonitis is frequently to limit above shoulder level activity, application of ice to the shoulder, anti-inflammatory medications for pain, and physical therapy to maintain flexibility.\r\n\r\nAlthough common in the treatment of rotator cuff tendonitis, the use of anti-inflammatories and steroids may actually hinder the healing of tendons and ligaments, and unfortunately, do not address the root of the problem. Physical therapy is often an important part of recovery from these types of shoulder injuries, but if progress is not being made, and symptoms continue, it may be time to seek out regenerative treatments, since physical therapy is unable to address underlying degenerative issues such as fraying and tearing of the tendon.\r\n<h2>Regenerative Orthopedics for Rotator Cuff Tendonitis</h2>\r\nRegenerative Orthopedics is recommended to <strong>regenerate</strong> and repair the soft tissues of the shoulder, plus it also strengthens the ligaments and the tendons of the rotator cuff and deltoid. This combined with the gradual re-strengthening of the rotator cuff muscles promises an excellent chance for a full recovery and full performance. In the event that surgery is truly necessary because a rotator cuff tear has become large enough to produce profound weakness in the shoulder, Regenerative Orthopedics is an excellent post-operative treatment to improve tissue strength and overall recovery.\r\n\r\nThe increase in blood flow and regenerative cells encouraged by this treatment is similar to the body’s natural healing response. The body also responds by depositing collagen at the site of injury, strengthening the rotator cuff tendons that once were weak, and resulting in the healing of the injured rotator cuff soft tissues.\r\n<h2>Think Regenerative Orthopedics may be for you? Contact us!</h2>\r\nPlease <a href=\"https://www.drfields.com/contact/\">contact us</a> at OrthoRegen, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.\r\n\r\nOrthoRegen is a full-time Regenerative Orthopedics office, with extensive experience in Stem Cell Therapy, PRP, and Prolotherapy. When it comes to Stem Cell Therapy, we use only the Gold Standard, which is so effective at repairing degenerated joints.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Rotator Cuff Tendonitis','','inherit','closed','closed','','3584-revision-v1','','','2020-05-14 20:01:26','2020-05-14 20:01:26','',3584,'https://www.drfields.com/uncategorized/3584-revision-v1/',0,'revision','',0),(3703,8,'2020-05-14 20:01:50','2020-05-14 20:01:50','When we are confronted with a joint replacement recommendation by our doctor it is so important to get informed and know what to expect. We are often concerned about the pain, the recovery time, and the cost. But have you ever thought about having an allergy to the materials used in the replacement implant? Allergy to the implant materials is an actual issue, and a new concern for individual with joint pain facing joint replacement. It’s also another good reason to investigate other options when confronted with a surgical referral. In several previous articles, we have discussed how Regenerative Orthopedics is as an effective alternative to surgery, and one that really should be strongly considered. Why not just have surgery? Of course, there are times when surgery is necessary. However, every time a surgeon cuts, shaves and/or removes parts of a joint, there is always an increased possibility for the development of arthritis, degeneration and further pain in that joint. That’s because the removal of tissue causes the joint to become more unstable, since these soft tissue structures are what provide much of the stability in the joint.  Besides, why go through the pain and expense of surgery when you don’t need to? Now there is another reason to look for an alternative to surgery…scientists are documenting the risk of allergy from implants.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nWhat is being said about allergy from metal implants? “Metal allergy is in fact a well-documented factor in the failure of implants, and the need for allergy testing in sensitive patients is well recognized by both implant manufacturers and by surgeons alike.” And in this study, “All of the samples studied contained a consistent yet low percentage of components to which allergies have been contributed.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a> But even small amounts are sufficient to cause an allergic reaction.\r\n\r\nWhat are the symptoms of metal allergy? “Patients suffering from metal hypersensitivity may have numerous local symptoms associated with an overactive immune system, such as localized pain, swelling, cutaneous allergic reactions, joint and muscle pain, implant failure, apparent recurrent infections around the operation site, and possible systemic reactions such as fibromyalgia, chronic fatigue and cognitive impairment.”<sup>ii </sup>As you can, some of these hypersensitivity reactions are chronic auto-immune type illnesses. A far cry from what the individual thought they were signing up for when choosing the surgical implant…freedom from pain and suffering.\r\n\r\nTitanium used to be thought of as one of the safer metals, and in fact was used as the implant of choice for patients suffering from allergies to nickel, chrome, and cobalt. However, the titanium implants also contain these previously noted metals that are causing allergic responses.<sup>ii</sup>\r\n\r\nMetals usually found in common medical grade alloys include cobalt, nickel, chrome, stainless steel, and titanium. Many also contain various detectable impurities like aluminum, iron, vanadium, and more.<sup>ii</sup>\r\n\r\nIt is of utmost importance if you have an allergy to these metals, that you are thoroughly informed about the potential reaction that might result from the choice of implant materials.<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a>\r\n<h2>Corrosion of Implant Materials</h2>\r\n<strong>Allergic response is not the only problem that can occur with implant materials. There is also an issue of corrosion of the implants with wear and tear</strong>.\r\n\r\nNo matter what materials are used in joint replacements, wear of the implant is a predictable problem.  In fact, wear is the major reason orthopedic implants malfunction. That malfunction actually hastens the problem of corrosion. When implant materials are chosen, they are chosen because of their higher resistance to wear, like metal alloy and ceramics. In hip implants, titanium and its alloys are often used for fabricating the femoral component, and the ball is prepared by either cobalt-chromium alloy or other hard ceramics. The debris that is released with the wear that damages the implant can begin a biological process that activates a brutal inflammatory reaction. The corrosion that transpires from the friction that results from this wear is actually a huge worry because it discharges non-compatible metallic ions that are dispersed into the body. <a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\r\n\r\nResearch articles demonstrate plenty of evidence about the issue of corrosion of implants and how the debris results in disease. One article discusses how cobalt alloy debris has been implicated in the early failure of some designs of current total joint implants, and also how the debris from cobalt implants causes an extreme inflammatory reaction and even bone loss.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\r\n\r\nHere is an excerpt from another article: “Immune reactions to orthopedic implant debris are the primary cause of total joint replacement (TJR) failure over the long term (15–20 years). It has been well established that implant debris causes local inflammation, limiting the long-term performance of the over one million total joint replacements (TJR) implanted each year in the US. Implant debris induces a subtle inflammatory cascade resulting in a slow progression of bone loss… that over time leads to implant failure.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nThe researchers are saying that the debris from implants is definitely a problem and that it causes disease. Obviously, this is not a good scenario.\r\n\r\nSo, where does the debris go? In research looking at the dissemination of wear particles, the scientists find the debris in the lymph nodes, liver and spleen. “Metallic wear particles in the liver or spleen were more prevalent in patients who had had a failed hip arthroplasty (seven of eight) than in patients who had had a primary hip (two of eleven) or knee replacement (two of ten). Metallic wear particles were detected in the lymph nodes in 68 percent (nineteen) of the twenty-eight patients with an implant from whom lymph nodes were available for study. In this study, systemic distribution of metallic and polyethylene wear particles was a common finding, both in patients with a previously failed implant and in those with a primary total joint prosthesis. The prevalence of particles in the liver or spleen was greater after reconstructions with mechanical failure.”<a href=\"#_edn7\" name=\"_ednref7\">[vii]</a>\r\n\r\nMany people contact our office because they are experiencing joint pain and are looking for an alternative to a surgical joint replacement. We offer very effective non-surgical options with Regenerative Orthopedics, including Stem Cell Therapy. At OrthoRegen, we only use the Gold Standard in Stem Cell Therapy, and the procedure only has to be done once. Plus, this non-surgical therapy not only provides a non-surgical option, but also helps you to avoid an allergic response from the implants used in joint replacement or the pathology that can occur from the debris caused by corrosion.\r\n\r\nWe strongly recommend looking into non-surgical Regenerative Orthopedics with Peter A. Fields, MD, DC and OrthoRegen for repair of painful joints before opting for a joint replacement.\r\n\r\nRemember, once surgery has been done, it cannot be un-done.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Laitinen, Minna, et al. \"High blood metal ion levels in 19 of 22 patients with metal-on-metal hinge knee replacements: A cause for concern.\" <em>Acta orthopaedica</em> 88.3 (2017): 269-274.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Harloff, Thomas, et al. \"Titanium allergy or not?.\" <em>Health</em> 2.04 (2010): 306.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Guenther D, Thomas P, Kendoff D, Omar M, Gehrke T, Haasper C. Allergic reactions in arthroplasty: myth or serious problem? Int Orthop. 2016 Feb;40(2):239-44. doi: 10.1007/s00264-015-3001-6. Epub 2015 Nov 2.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Gao, Chengde, et al. \"Highly biodegradable and bioactive Fe-Pd-bredigite biocomposites prepared by selective laser melting.\" <em>Journal of advanced research</em> 20 (2019): 91-104.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Samelko, Lauryn, et al. \"Cobalt alloy implant debris induces inflammation and bone loss primarily through danger signaling, not TLR4 activation: implications for DAMP-ening implant related inflammation.\" <em>PLoS One</em> 11.7 (2016).\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Samelko, Lauryn, et al. \"TLR4 (not TLR2) dominate cognate TLR activity associated with CoCrMo implant particles.\" <em>Journal of Orthopaedic Research</em> 35.5 (2017): 1007-1017.\r\n\r\n<a href=\"#_ednref7\" name=\"_edn7\">[vii]</a> Urban, Robert M., et al. \"Dissemination of wear particles to the liver, spleen, and abdominal lymph nodes of patients with hip or knee replacement.\" <em>JBJS</em> 82.4 (2000): 457.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Allergic Reactions and Problems of Corrosion with Joint Replacements','','inherit','closed','closed','','3547-revision-v1','','','2020-05-14 20:01:50','2020-05-14 20:01:50','',3547,'https://www.drfields.com/uncategorized/3547-revision-v1/',0,'revision','',0),(3704,8,'2020-05-14 20:02:20','2020-05-14 20:02:20','Are you experiencing sciatica pain going down your leg? The pain may have begun years ago with aggravating pain in the gluts or the back of the thigh. Are you noticing new symptoms of tingling down to the calf and toes? Sciatica pain and symptoms may occur with sitting, standing, and walking; and may be relieved with lying down.\r\n\r\nChiropractors should be your first physician to see about sciatica pain as this is an area they treat all of the time. But if the pain continues after giving chiropractic a chance (several or more treatments are usually needed), and then also trying other various treatment modalities, like acupuncture, massage, and physical therapy, the next step would be Regenerative Orthopedics as a solution for this persistent pain.\r\n\r\nDid you receive an MRI with a report revealing some type of encroachment on a nerve root in the lower back area, which is pinching the nerve, and possibly some displacement and/or degeneration in the vertebrae of the lower back? These are not uncommon on MRI reports when experiencing sciatica pain. The displacement mentioned on the report may include forward or backward movement of the vertebrae which pinches the nerve root due to <em>instability in the lumbar spine caused by ligament laxity</em>.\r\n<h2>How Do Ligaments Become Lax?</h2>\r\nLigaments are a type of connective tissue that connect bone to bone and help stabilize the spine and other joints. Injured ligaments have difficulty healing because they have a pretty poor blood supply. Regenerative Orthopedics stimulates the body to boost the blood supply and fibroblasts at the injured areas, resulting in repair of the injured ligaments. The fibroblasts are the cells through which collagen is made and by which tendons and ligaments repair.\r\n\r\nRegenerative Orthopedics helps strengthen and tighten the ligaments thereby stabilizing the joints of the lumbar spine which then stops the pinching of the nerve.\r\n<h2>Cortisone vs Dextrose Caudal Epidural</h2>\r\nA lumbar epidural is an injection into the epidural space of the lumbar spine. When patients are having referred pain, a cortisone (steroid) or dextrose injection can be used. Steroids are strong anti-inflammatories and must be limited to no more that 3-4 injections each year in order to prevent thinning of the bone and connective tissue damage.\r\n\r\nAt OrthoRegen, we endeavor to build up the soft tissue and joint structures, and do not use substances like cortisone, which cause degeneration and inhibit healing. Instead, the dextrose solution can be used to reduce the swelling of the nerve without the anti-inflammatory effect and the steroid side effects.\r\n\r\nRegenerative Orthopedics eliminate or reduce pain, numbness, and tingling, enabling the former sciatica sufferer to be able to sit, stand, and walk without any pain or annoying symptoms. The treatment is very effective at achieving symptom resolution and pain-free living.\r\n\r\nHere at OrthoRegen, we practice a comprehensive approach to Regenerative Orthopedics as an alternative to surgery and joint replacement in order to help regenerate connective soft tissues and accelerate recovery. Lumbar instability can cause an array of symptoms including sacroiliac pain, lower back pain, sciatic symptoms, and referred leg pain. All can be treated effectively with Regenerative Orthopedics.  If you are suffering from any of the symptoms listed above and would like to learn more, you can give us a call at (310)453-1234. We’d love to help you eliminate your sciatica symptoms.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Treat Sciatica Pain Non-Surgically','','inherit','closed','closed','','3540-revision-v1','','','2020-05-14 20:02:20','2020-05-14 20:02:20','',3540,'https://www.drfields.com/uncategorized/3540-revision-v1/',0,'revision','',0),(3705,8,'2020-05-14 20:03:46','2020-05-14 20:03:46','At OrthoRegen, the Stem Cell technique we use for injuries to the joints and spine is The Gold Standard for stem cell regeneration. We don’t use just one type of regenerative therapy, but use four different kinds of Regenerative Orthopedics to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four. We use bone marrow stem cells as well as adipose (fat) stem cells. We also use <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing. In addition, we use <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. Without it, failure rates are high.\r\n\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is referred to as The Gold Standard for stem cell regeneration. We choose to use this procedure in cases where people have been told they either need their joint replaced, have bone-on-bone, advanced arthritis, cartilage loss or a combination of these.\r\n\r\nIn this article, we would like to discuss Stem Cell Therapy for the regeneration of a degenerated joint. The goal of Stem Cell Therapy, as with all forms of Regenerative Orthopedics, is to stimulate injured tissues to repair.\r\n<h2><strong>What Is the Basis Behind Stem Cell Therapy?</strong></h2>\r\nIn conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. The joint is in a <em>state where it is breaking down</em>. What we want to do with Stem Cell Therapy is to get the joint in a state of <em>building up. </em>When we use Stem Cell Therapy, we are stimulating the body to repair the area to get it stronger. Stem Cell Therapy probably works by a lot of different mechanism but here are some proposed mechanisms:\r\n<ul>\r\n 	<li>Reduces the instability in the joint that leads to the arthritis in the first place</li>\r\n 	<li>Stimulates the growth of the cells (extracellular matrix) that make the tissues that are causing the ongoing pain and/or instability</li>\r\n 	<li>Stimulates the cells already present to make extracellular matrix</li>\r\n 	<li>The cells that help to build cartilage are called chondrocytes. Stem Cell Therapy involves the injections of the precursor cells (stem cells) that will differentiate into adult chondrocytes</li>\r\n</ul>\r\nWhile the exact mechanisms by which Stem Cell Therapy works can be debated, the bottom line for the patient is,<strong> <em>“Do I get rid of my pain and get back to the activities I desire?”</em> In the majority of cases the answer is, “<em>Yes!</em>”</strong>\r\n<h2><strong>Conditions That Can Be Treated with Stem Cell Therapy</strong></h2>\r\nAny condition that is helped by one type of Regenerative Orthopedics (Stem Cell Therapy, PRP, Prolotherapy) can at least theoretically be helped by another type of Regenerative Orthopedics. While Stem Cell Therapy is typically not used for ligament and tendon injuries, it surely can be used for those conditions. Most clinics, including OrthoRegen, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those who are involved in treating people with articular cartilage degeneration or joint injury know that when these patients are treated with Stem Cell Therapy, the vast majority of them improve.\r\n<h2><strong>Adult Stem Cell Injections, NOT Embryonic Stem Cell Injections</strong></h2>\r\nThe Stem Cell Therapy done at OrthoRegen has nothing to do with embryonic stem cell therapy. Most research and studies have shown that cord blood does <strong>NOT</strong> have many, if any, stem cells. We only use the patient’s own adult stem cells. We take the bone marrow from the patient’s own tibia or iliac crest bones and use fat from the abdominal or buttock areas so that the stem cells are the freshest. Additionally, there is no cross contamination this way! We then inject these cells into the defective joint.\r\n<h2>Why Do We Use PRP with Stem Cells from Bone Marrow and Fat?</h2>\r\nAt OrthoRegen, we only use the <strong>Gold Standard in Stem Cell Therapy</strong>, which includes bone marrow stem cells, fat stem cells, PRP, and Dextrose Prolotherapy. Stem cells are great, but they need to be directed as to what to do. Some of the directors are the growth factors that are in the platelets. Platelets aid the stem cells in their various jobs including differentiation and then aid in the differentiated cells making the extracellular matrix to repair the injured tissue. One could think of the stem cells as construction workers and the platelets (and their growth factors) as their supervisors, telling them what to do. Platelet Rich Plasma contains a myriad of substances that stimulate healing, like platelet-derived growth factor, which attracts immune system cells to the injured area to enhance ligament and tendon healing. And fibroblast growth factor which promotes the growth of the cells involved in collagen and cartilage formation.\r\n\r\nWe have found that Comprehensive Regenerative Orthopedics using the combination of all of these regenerative treatments works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\r\n<ol>\r\n 	<li>Akens MK, Hurtig MB. Influence of species and anatomical location on chondrocyte expression. <em>BMC Musculoskeletal Disorders</em>. 2005; 6:23.</li>\r\n 	<li>Guilak F, Estes BT, Dickman BO. 2010 Nicolas Andry Award: Multipotent adult stem cells from adipose tissue for musculoskeletal tissue engineering. <em>Clinical</em><em> Orthopedics and Related Research. 2010;468:2530-2540.</em></li>\r\n</ol>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Stem Cell Therapy at OrthoRegen - Why We are Different','','inherit','closed','closed','','3526-revision-v1','','','2020-05-14 20:03:46','2020-05-14 20:03:46','',3526,'https://www.drfields.com/uncategorized/3526-revision-v1/',0,'revision','',0),(3706,8,'2020-05-14 20:04:13','2020-05-14 20:04:13','Have you been treating your hip pain with bursitis treatments like steroids and non-steroidal anti-inflammatories? There are times these treatments help to give some relief, but many people continue to experience a substantial amount of discomfort even after trying them. Continued use of steroids injected into a degenerated joint can unfortunately increase the rate of degeneration. Why not treat the pain with treatments that regenerate rather than degenerate the joint structures?\r\n<h2>Is It Really Bursitis?</h2>\r\n<strong><em>We see quite a few patients</em></strong> who come to our office for treatment of bursitis who do not actually have bursitis. Bursitis is so painful that even touching the skin over the painful area is difficult to tolerate. If the area can be palpated with a lot of pressure by the doctor, the patient may not have bursitis. What could the problem be then?\r\n\r\n<strong><em>Hip Bursitis, or trochanteric bursitis, is actually rare!</em></strong> Multiple studies have shown that patients presenting with bursitis type symptoms actually have tendinopathy (tendon degeneration) of their gluteal tendons, which attach near the bursa and often fool providers into thinking the patients have bursitis. What they really have are badly degenerated tendons that need regeneration! On top of that, as we mentioned, steroid injections are often used as the treatment for true bursitis, so when steroids are injected into the degenerated tendons, they actually can cause them to degenerate faster! Tendinopathy of the gluteus minimus or gluteus medius are often the tendons involved in greater trochanteric pain syndrome.\r\n\r\nRegenerative Orthopedics including Stem Cell Therapy, PRP, and Prolotherapy are safe and effective treatment options for bursitis, tendinopathy and other underlying soft tissue injuries of the hip.\r\n<h2>More About Bursitis</h2>\r\nTrue bursitis is an inflammation of the bursae, which are small, fluid-filled sacs that lubricate and cushion pressure points between the bones, tendons and muscles of joints. Bursae help the joints to move with ease. When they become inflamed due to bursitis, movement or pressure can be painful. Bursitis often affects areas around the joints in the elbows or hips. Hip bursitis entails a bursal sac inflamed between the hip bone and glutei muscle attachments. The bursal sac becomes inflamed because of injury to the soft tissue structures. The bursal sacs are there to decrease the friction of the soft tissue structure and the underlying bone. They let the tendon or muscle glide across the bone more easily. Bursitis pain usually goes away within a week or so with proper treatment, but recurrent flare-ups are common as well as frustrating.<strong> </strong>\r\n<h2>Bursitis Causes</h2>\r\nCommon causes of bursitis include overuse, stress or direct trauma to a joint, such as repeated bumping or prolonged pressure. Bursitis may result from an infection, arthritis or gout. Bursitis may also be due to the repetitive motion related to certain activities. Tendonitis, which involves the irritation or inflammation of tendons, or tendinopathy (degenerated tendon) are again oftentimes misdiagnosed as bursitis.\r\n<h2>What Are the Symptoms of Hip Bursitis?</h2>\r\nSymptoms of hip bursitis include a dull ache or stiffness in the affected hip. The pain often worsens with movement or pressure, and the area may be swollen and feel warm to the touch. Intermittent redness of the skin in the area of the inflamed bursae may be another symptom. Visible swelling or skin redness is usually absent from bursitis of the hip because the bursae are located beneath some of the body’s bulkiest muscles. Pain is primarily centered over the greater trochanter, a portion of the femur that juts out just below where the bone joins the hip.\r\n<h2>Current Treatment Options for Bursitis</h2>\r\nSince bursitis is an inflammation of the fluid-filled sac, or bursa that lies between a tendon and skin, or between a tendon and bone, bursitis treatment has involved the use of non-steroidal anti-inflammatory drugs (NSAIDS) such as ibuprofen, and steroids such as cortisone. If the problem is not true bursitis, the steroid injections by the orthopedist to decrease the inflammation of the bursitis will commonly not work to eliminate the pain, since inflammation is not the real problem. The steroid will, however, inhibit fibroblastic proliferation or the process by which soft tissue structures such as ligaments, tendons and muscles grow and repair, and result in a weakening of the joint.\r\n\r\nNSAIDS are associated with a higher risk of cardiovascular- and gastrointestinal-related adverse events. The FDA issued a medication guide for NSAIDs <strong>recommending physicians prescribe the lowest dose for the shortest time possible</strong>.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nAs physicians become educated on side effects of these medications, they hopefully decrease their use of them. “As years of experience increased, practitioners were more likely to prescribe lower doses of corticosteroid in musculoskeletal injections.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n\r\nDue to their significant side-effect profile, newer therapies are sought to replace them. Regenerative Orthopedics is both safe and effective to treat bursitis pain from various causes.\r\n<h2>Hip Bursitis Diagnosis Accuracy</h2>\r\nFor the person diagnosed with bursitis, first consider whether the diagnosis is correct or not. There have been several studies on hip bursitis symptoms, demonstrating, as we noted earlier, that the pain is coming from tendinopathy rather than from bursitis. “Some studies have questioned the real involvement of the trochanteric bursa in greater trochanteric pain syndrome, and tendinopathy of the gluteus medius and/or minimus has been proposed as an important cause of this syndrome.”<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a> One study of 75 patients with pain and point tenderness over the greater trochanter, revealed that only 8 had fluid pooling in the trochanteric bursae per sonography.<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a> Another study showed that only a minority of patients had bursitis, because in 700 out of 877 patients the pain <strong>was not from bursitis</strong>, but rather, it related to “some combination of pathology <strong>involving the gluteus medius and gluteus minimus tendons as well as the iliotibial band</strong>.”<a href=\"#_edn5\" name=\"_ednref5\">[v]</a> And one more found that only 5 of 124 patients with trochanteric pain had bursitis, plus most of those with bursitis also had associated tendinopathy.<sup>iv</sup>\r\n<h2>Bursitis Treatment with Regenerative Orthopedics</h2>\r\nRegenerative Orthopedics stimulate the body to repair painful areas and those with both true bursitis and tendinopathies. An experienced Regenerative Orthopedics doctor will be able to ascertain what structure is causing the pain. In the hip, the soft tissue structures that attach to the greater trochanter are often involved, including the glutei muscles. Regenerative Orthopedic treatments to these soft tissue structures stimulate them to repair. Once they are fully repaired the ‘bursitis’ pain resolves.\r\n\r\nPlatelet Rich Plasma (PRP) is one of the Regenerative Orthopedic treatment options that may be recommended for bursitis pain. A study presented at the 2014 meeting of the American Academy of Surgeons showed PRP to be very effective in the treatment of severe bursitis of the hip. The study compared one injection of PRP to one injection of cortisone. The cortisone only demonstrated short-term effectiveness. PRP provided both short and long-term pain relief from a condition that is difficult to treat successfully.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nRegenerative Orthopedic options like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy all accomplish repair of the affected soft tissue, and your clinician will recommend which treatment will most effectively repair and regenerate your hip, bringing relief from bursitis pain.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Sofat N. Kuttapitiya A. <a href=\"http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4089899/\" target=\"_blank\" rel=\"noopener noreferrer\">Future directions for the management of pain in osteoarthritis.</a><a href=\"http://www.futuremedicine.com/doi/pdf/10.2217/ijr.14.10\" target=\"_blank\" rel=\"noopener noreferrer\"><em>Int J Rheumatol. </em>Apr 2014; 9(2): 197–276. </a>\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Lazaro D, Alon L, Ramessar N, Cabas-Vargas J, Shwin K, Stefanov D.  Intra-articular, bursa, and tendon sheath injections: A survey of practice patterns among members of the American College of Rheumatology. <em>Journal of Rheumatology.</em>2014; 20(2): 91-93. doi: 10.1097/RHU.0000000000000080\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Quiroz C, Ruta S, Rosa J, Navarta DA, Garcia-Monaco R, Soriano ER. <a href=\"http://www.reumatologia.org.ar.preview.hybrid-sites.com/docs/2013-Ultrasound-Evaluation-Of-The-Greater-Trochanter-Pain-Syndrome-Bursitis-Or-Tendinopathy.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">Ultrasound evaluation of the Greater Trochanter Pain Syndrome: Bursitis or tendinopathy?</a>\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Connell DA, Bass C, Sykes CJ, Young D, Edwards E. Sonographic evaluation of gluteus medius and minimus tendinopathy. <a href=\"http://link.springer.com/journal/330\" target=\"_blank\" rel=\"noopener noreferrer\"><em>European Radiology</em></a>. 2003; 13(6): 1339-1347.6.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Long%20SS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Long SS</a><sup>1</sup>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Surrey%20DE%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Surrey DE</a>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Nazarian%20LN%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Nazarian LN</a>.Sonography of greater trochanteric pain syndrome and the rarity of primary bursitis.<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/24147479\" target=\"_blank\" rel=\"noopener noreferrer\">AJR Am J Roentgenol.</a> 2013 Nov;201(5):1083-6. doi: 10.2214/AJR.12.10038.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Goel K,Riley LP. Platelet Rich Plasma (PRP)treatment more effective than cortisone for severe hip bursitis. <a href=\"http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf</a>.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Is Your Hip Bursitis Treatment Working?','','inherit','closed','closed','','3511-revision-v1','','','2020-05-14 20:04:13','2020-05-14 20:04:13','',3511,'https://www.drfields.com/uncategorized/3511-revision-v1/',0,'revision','',0),(3707,8,'2020-05-14 20:05:17','2020-05-14 20:05:17','Athletes want to maintain their level of exercise and activity over the years. Understandably so! Exercise is one of the most effective ways to improve and maintain health. Keeping active physically is correlated with lower risks of cardiovascular disease, lower blood pressure, weight reduction, as well as the provision of an increased sense of well-being.  It’s no wonder that more and more people are becoming active in exercise programs and desire to maintain a level of physical activity throughout life. But is exercise associated with a higher risk of arthritis? Athletes—and especially long-time athletes—may wonder if increased joint stress leads to premature “wearing out” of the joints and the development of arthritis. Studies seem to show that joint injury is the main factor that increases the arthritic risk in athletes. Exercise itself has more of a protective role.\r\n\r\nFor example, having well-developed muscles decreases the loading on the cartilage and thus has a protective effect. <strong>Animal research also shows that exercise, such as running, is not harmful to normal joints even under high loads and over long distances</strong>. However, the same type of exercise done on an injured joint, will lead to arthritic change.\r\n\r\nActivities, like bicycling and pool exercises, that maintain flexibility, strengthen the muscle, and boost coordination, <strong>actually protect the cartilaginous surfaces</strong>, because they help to maintain joint function.\r\n<h2>Sports Injuries in the Older Athlete</h2>\r\nSports injuries and traumas may accumulate over one’s life and these can damage the ligaments and cartilage. It is not uncommon for athletes to injure joints. It is this injury or the non-healing of it that causes the degenerative process to start in the joints. The repetitive low-grade impact from athletic events can be enough to damage the soft tissues and start the arthritic process. Some studies do note an increased incidence of arthritis in particular sports due to their vigorous nature and their propensity to lead to trauma. For example, wrestlers, boxers, baseball pitchers, cyclists, gymnasts, ballet dancers, soccer players, weight lifters, and football players have all been reported to have degenerative joint disease due to sports-related stress. This degeneration occurs due to soft tissue injuries (non-healed injuries) that were not fully addressed.\r\n<h2>The Older Athlete Desires to Stay Fit</h2>\r\nThe hope for the older athlete is to be as fit as when in the prime of their athletic careers. Often, however, this is not the case because of the degeneration that has occurred due to non-healed sports injuries. Sports injuries that lead to symptomatic arthritis later on are generally those that occur to the ligaments, because the ligament injury causes the joint to become unstable. Typically, bone spurs develop in the ligaments/fascia (as in plantar fasciitis) and these are generally a sign that the ligaments were no longer able to stabilize the joint, and therefore the body brings in reinforcement in the form of additional bone formation. This additional bone formation is called arthritis.\r\n\r\nSporting activities should be performed for a lifetime. Unfortunately for many, the degenerative changes that occur due to non-healed old athletic injuries, combined with a decreased ability to heal, and the natural degeneration that occurs with aging, make sporting injuries commonplace in the older athlete. A lifetime of microtraumas in ligaments and tendons over the years, along with weakening muscles and poor flexibility, can lead to a reoccurrence of these injuries.\r\n<h2><em>The Natural Progression of Arthritis Starts with Ligament Injury</em></h2>\r\nWhat causes the mechanical and molecular events in arthritis to occur? Although cartilage lacks nerve fibers, could cartilage wear and tear be the origin of arthritis? An article published in <em>Gerontology</em> conducts a literary review to prove that arthritis starts with ligament damage. Reviewing numerous research articles, the authors conclude that subchondral bone changes (the bone just beneath cartilage) precede any cartilage change associated with arthritis. These bone changes are due to a loss of tension on bone at the ligament/bone insertion.<sup>1</sup>\r\n\r\n<em><strong>“The earliest change appears to be at the ligament-bone insertion site</strong></em><strong>.</strong>  We propose that it is a change in the ligament that leads to an alteration in the tension on the bone at the bone-insertion site which precipitates bone remodeling (injury to subchondral bone). The health and integrity of the overlying articular cartilage depends on the mechanical properties of its bony bed.  Ligament injury precedes the subchondral bone changes and these changes occur before articular cartilage degeneration.”<sup>1</sup>\r\n\r\nTaking into account the progression of arthritis, it becomes clear that the ligament integrity or lack of integrity is what needs to be treated to prevent further joint destruction. In other words, ligament laxity causes bone changes that in turn cause cartilage change and damage. Ligament laxity is due to ligament damage.\r\n<h2><strong><em>Consider this! </em></strong></h2>\r\nWhen researchers attempt to stimulate arthritis or degeneration in a joint, they do so by damaging the ligaments around the joint. The instability that is created increases the pressure in the joint where the ligaments were injured. The increased pressure then causes an acceleration of the degenerative process. Eventually the body will stabilize the segment by overgrowing bone. This overgrowth of bone is typically read on x-rays as <a href=\"http://www.getprolo.com/prolotherapy-can-prevent-the-development-of-traumatic-arthritis/\">bone spurs</a>, spondylosis, or fused joints.\r\n<h2><strong>Treatments to Keep the Older Athlete Active</strong></h2>\r\n<em>Gerontology</em> points out the need for therapeutic strategies to be redirected at the healing of the ligament damage- the initial cause of arthritis. Fortunately, Regenerative Orthopedics does just this, and can repair the degenerated joint.\r\n\r\nStandard arthritis treatments generally involve only symptom management rather than repair of the joint, and include NSAIDS, cortisone shots, and even surgery to provide pain relief.\r\n\r\n<strong><em><u>The most common surgery is arthroscopy which in numerous medical studies was found to be no more effective than placebo in regard to arthritis. </u></em></strong>\r\n\r\nJoint replacements are being recommended more and more, demonstrated by the fact that hundreds of thousands are performed every year. All of these treatments are anti-healing and can cause further degeneration of arthritic joints. <strong>And once surgery is done it cannot be un-done!</strong>\r\n\r\nRegenerative Orthopedics directed at the painful sites where ligaments and tendons connect to bone, as well as at trigger points and adjacent joint spaces, produce a healing response, along with growth factor stimulation, which induce healing and strengthening of the damaged or diseased structure. This repairs the damaged ligaments and soft tissue, and allows the aging athlete to continue with their desired activity and sport. Regenerative Orthopedics can reverse joint damage and alleviate arthritis pain. A number of case studies have shown the success of regenerative techniques in patients with diagnosed arthritis.<sup>2,3</sup>\r\n<h2>Exercise is Beneficial for Older Athlete</h2>\r\nIn a study of almost 17,000 people examined from 1970-1995, high levels of physical activity <strong>were not</strong> associated with symptomatic arthritis in older men and women runners over age 50. Six other reviews on the effectiveness of exercise, both of high and low intensity, on the management of arthritis in the elderly found clinical outcomes of arthritis to be improved.<sup>4 </sup>\r\n\r\nExercise and recreational activities appear not to cause wear-and-tear on the joints according to the scientific studies. This can be seen in medical research over many years which support the findings that exercise is beneficial rather than harmful. The author of a systematic review of multiple medical data bases said this, “The first consideration with respect to exercise is whether “wear and tear” resulting from repetitive use of articular cartilage is the primary driver for degenerative change. If this were the case, exercise would lead to progressive arthritis. According to the evidence presented here, this does not seem to be the case.”<sup>5</sup>\r\n<h2>Regenerative Orthopedics for Arthritis in Older Athletes</h2>\r\nIn our opinion, Regenerative Orthopedics is the treatment of choice for treating joint pain in older athletes, due to ligament and other soft tissue injury. It is amazing how many athletes end up avoiding surgery once they are treated with Regenerative Orthopedics, because the treatment eliminates the pain, stabilizes the joint, and returns function.\r\n\r\nRegenerative Orthopedics can make a significant impact in the rehabilitation of the injured older athlete. Despite age, typically only four or five sessions are needed for the athletes to achieve complete healing and be back to their physical best. Injections involving the knees, shoulders, hips, ankles, elbows and more can easily be performed with, often, dramatic results and improvement.\r\n<ol>\r\n 	<li>Bailey AJ, Mansell JP. Do subchondral bone changes exacerbate or precede articular cartilage destruction in osteoarthritis of the elderly? Gerontology 1997; 43:296-304.</li>\r\n</ol>\r\n<ol start=\"2\">\r\n 	<li>Hauser R, Woldin B. Treating Osteoarthritic Joints Using Dextrose Prolotherapy and Direct Bone Marrow Aspirate Injection Therapy. <em>Open Arthritis J</em>. 2014; 7:1-9.</li>\r\n</ol>\r\n<ol start=\"3\">\r\n 	<li>Cusi M, Saunders J, Hungerford B, Wisbey-Roth T, Lucas P, Wilson S. The use of prolotherapy in the sacroiliac joint. <em>Br J Sports Med</em>. Feb 2010;44(2):100-104.</li>\r\n</ol>\r\n<ol start=\"4\">\r\n 	<li>Hootman J. Osteoarthritis in elderly persons: Risks of exercise and exercise as therapy. <em>Clinical Journal of Sport Medicine</em>. 2010; 20(3):223.</li>\r\n 	<li>Bosomworth NJ. Exercise and knee osteoarthritis: benefit or hazard? Can Fam Physician 2009; 55:871-878.</li>\r\n</ol>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','How Arthritis Affects the Older Athlete','','inherit','closed','closed','','3484-revision-v1','','','2020-05-14 20:05:17','2020-05-14 20:05:17','',3484,'https://www.drfields.com/uncategorized/3484-revision-v1/',0,'revision','',0),(3708,8,'2020-05-14 20:09:56','2020-05-14 20:09:56','Tendonitis is the most common injury to the knee. In general, it refers to an inflammation, irritation or tear of a tendon, the thick fibrous cords that attach muscles to bone. One of the most frequent types of tendonitis of the knee is pes anserinus tendonitis, which involves the pes anserinus tendons that lie on the inside and just below the knee joint and which prevent the lower leg from twisting outward while running. Middle-aged adult runners are most susceptible to the development of pes anserinus tendonitis, the most common form. Two other types of knee tendonitis are popliteus tendonitis and semi-membranous tendonitis.\r\n\r\nPatellar tendonitis is inflammation of the patellar tendon, which attaches the kneecap to the tibia or shinbone.The patellar tendon helps your muscles extend your knee.\r\n<h2>How Does Knee Tendonitis Develop?</h2>\r\n<h2><img class=\"alignright size-medium wp-image-3411\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/May-Athlete-Knee-v101219-500x500.jpg\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" /></h2>\r\nTendonitis is caused by overuse, injury or aging. The pain is usually the result of a small tear in or inflammation of the tendon. Tendonitis can also be associated with inflammatory diseases that occur throughout the body, such as rheumatoid arthritis. Popliteus tendonitis is caused by excessive inward rolling of the feet, called pronation, as well as running downhill, which tends to put excessive stress on this tendon and can cause it to tear or become inflamed. Pes anserine tendonitis, on the other hand, is characterized by inflammation of the medial knee, and often coexists with other knee disorders. Semi-membranous tendonitis is characterized by swelling over the posteromedial aspect of the knee and tenderness with resisted flexion or outward-turned strain.\r\n\r\nPatellar tendonitis is an acute condition, such as knee pain following a run. If the tendon is stressed repeatedly, tiny tears can occur in the tendon. If this process persists, the tendon degenerates causing another more chronic tendon condition known as tendinosis.\r\n\r\n&nbsp;\r\n<h2>Symptoms of Knee Tendonitis</h2>\r\nKnee tendonitis commonly produces pain, tenderness and stiffness near a joint and is aggravated by movement. The inflamed tendons in the knee are usually painful when moved or touched, and the tendon sheaths may be visibly swollen from the accumulation of fluid and inflammation. Moving the joints near the tendon even slightly may also cause severe pain. The pain may be worse when ascending or descending stairs, when getting up from a seated position, and at night.\r\n<h2>What Is the Typical Treatment for Tendonitis?</h2>\r\nThe typical treatment regime for tendonitis, such as knee tendonitis, rotator cuff tendonitis or patellar tendonitis, includes rest, ice, non-steroidal anti-inflammatory drugs (NSAIDs), and cortisone injections. Unfortunately, this approach is not able to strengthen the weakened tendon and, thus, does not alleviate the persistent pain that people with this condition experience. While ice, anti-inflammatory drugs and cortisone injections may produce short-term pain benefit, they actually inhibit the healing process, because they boost the degeneration of soft tissue and therefore accelerate cartilage degeneration. If the individual with tendonitis receives cortisone injections into the tendon, or if they take anti-inflammatories for a very long time, the tendonitis will become tendinosis. This means the tendon becomes degenerated.\r\n\r\nOther modern medical treatment options include cryotherapy and massage. But again, although they may provide pain relief, they do not address the root of the problem – weakened and/or injured tendons and ligaments. When the patient tries these treatment modalities and the pain persists, patients who experience tendonitis may be referred to a surgeon. Unfortunately, surgery has consequences and side effects and may make the problem worse.\r\n<h2>Using Regenerative Orthopedics to Treat Tendonitis</h2>\r\n<img class=\"alignright size-medium wp-image-3410\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Josh-knee-v101219-500x500.png\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" />In treating tendonitis, we recommend stimulating tendon repair and strengthening any weakened or lax ligaments with therapy that includes movement, exercise, and regenerative treatment. This approach will encourage the damaged tissues to heal as quickly as possible.  Keep in mind, when someone with tendonitis continues to work out while using pain medications or after receiving cortisone injections, they may block the pain, but the tendon will continue to degenerate. You may not feel it at the time, since the pain is being blocked, but more damage is being done to the tendon. It is better to stop the particular athletics that caused the tendonitis. Yes, movement and exercise are important, but it is necessary to proceed with an exercise that does not put a lot of tension on the tendon. Cycling and swimming are examples of this type of exercise, as long as they do not cause excessive pain. These types of exercise are recommended because movement encourages healing of the tendon.\r\n\r\nRegenerative Orthopedics is used in cases of tendonitis, when the tendon does not continue to improve every week or if a tendonitis injury requires extra-quick healing, such as is the case with many athletes. When degeneration of the tendon has transpired, or tendinosis is present, the condition benefits tremendously from these treatments. When the tendon cannot heal on its own, an underlying ligament problem and joint instability may be occurring, allowing for too much movement of the knee joint. This movement irritates the tendon because the tendon is unable to contract against a stable knee. Regenerative Orthopedics strengthens both the weakened tendons and ligaments.\r\n\r\nComprehensive treatment to the knee involves multiple injections of PRP or a dextrose-based solution or both directed at the affected tendons, ligaments and other affected structures of the knee. This triggers the immune system to initiate repair of the injured tendons and ligaments. Blood supply dramatically increases at the injured area. The body is alerted that healing needs to take place and reparative cells are sent to the treated area of the knee in need of healing. The body also lays down new collagen at the treated areas, thereby strengthening the weakened structures. Once the tendons and ligaments are strengthened, the joint stabilizes and the tendonitis or tendinosis conditions resolve.\r\n<h2>Think Regenerative Orthopedics May Be for You? Call us!</h2>\r\nTo schedule an appointment, call us on the same line <a href=\"https://www.drfields.com/contact/\">310-453-1234</a> and tell us more about your case. OrthoRegen is a full-time Regenerative Orthopedics medical office with extensive experience in regenerative therapies such as the Gold Standard in Stem Cell therapy, Platelet Rich Plasma, and Prolotherapy regenerative injection solutions. Peter A. Fields, MD, DC is both an MD and a chiropractor.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Knee Tendonitis Treatment','','inherit','closed','closed','','3409-revision-v1','','','2020-05-14 20:09:56','2020-05-14 20:09:56','',3409,'https://www.drfields.com/uncategorized/3409-revision-v1/',0,'revision','',0),(3709,8,'2020-05-14 20:13:39','2020-05-14 20:13:39','[caption id=\"attachment_3462\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-3462 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-01.jpg\" alt=\"Page 01\" width=\"955\" height=\"1249\" /> Page 01[/caption]\r\n\r\n[caption id=\"attachment_3465\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3465\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-02.jpg\" alt=\"Page 02\" width=\"955\" height=\"1249\" /> Page 02[/caption]\r\n\r\n[caption id=\"attachment_3466\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3466\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-3.jpg\" alt=\"Page 3\" width=\"955\" height=\"1249\" /> Page 03[/caption]\r\n\r\n[caption id=\"attachment_3467\" align=\"aligncenter\" width=\"955\"]<a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"wp-image-3467 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-04.jpg\" alt=\"Page 04\" width=\"955\" height=\"1249\" /></a> Page 04[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','June 2019 Townsend Article','','inherit','closed','closed','','3416-revision-v1','','','2020-05-14 20:13:39','2020-05-14 20:13:39','',3416,'https://www.drfields.com/uncategorized/3416-revision-v1/',0,'revision','',0),(3710,8,'2020-05-14 20:24:10','2020-05-14 20:24:10','<img class=\"alignright size-medium wp-image-3397\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Wilbur-back-500x500.png\" alt=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" width=\"500\" height=\"500\" />Degenerative disc disease is a common disorder of the spine that can result in persistent low back, thoracic, and neck pain. While it is widely diagnosed, degenerative disc disease is also widely misunderstood by the medical community and lay public alike.  Perhaps the greatest misconception is the idea that the degenerated discs themselves are the primary cause of pain and therefore require a treatment geared towards replacement or repair of the discs, and missing an important underlying source of instability and pain.\r\n<h2>Spinal Discs</h2>\r\nSpinal discs work as a type of shock absorber between the vertebrae, or bones, of your <a href=\"https://www.webmd.com/back-pain/discs-of-the-spine\">spine</a>. They help your back to stay flexible, and allow you to bend and twist. With age, spinal discs can show signs of wear and tear. They begin to break down and may not work as efficiently. Nearly everyone\'s spinal discs will break down with age, but not everyone will feel pain. A person with a degenerated, bulging, or herniated disc noted on an MRI, must realize that this may be a coincidental finding and unrelated to the actual pain he or she is experiencing. How can that be? A degenerated disc is a disc that is losing water and flattening. It is normal for this to occur with age. Interestingly, it is also normal for a disc to bulge while bending. So what is causing the pain then? It is very likely that the pain is being caused by injured ligaments, which are full of nerve tissue, and will send pain signals when tweaked.\r\n<h2>What Causes the Disc to Degenerate in the First Place?</h2>\r\nThe disc begins to degenerate as soon as the ligaments of the spine weaken. This happens after some sort of injury to the ligaments, including wear and tear. The weak and loose ligaments allow for an unstable spine and one where the vertebrae are able to move too much, resulting in more injury and pain. In an effort to stabilize the vertebrae, the body tenses the muscles, in an attempt to correct the problem. A person will experience this as muscle spasms. The excessive movement puts extra stress on all of the structures of the spine, including the discs. The discs will respond to the added stress by flattening. A downward cycle of degeneration is created, because the ligaments will now have to work even harder, since the discs can’t do their job correctly, which then weakens the ligaments further, and then adds to the response of the discs to flatten. The sufferer will of course experience pain as a result of the degeneration. The added stress and pressure may cause the disc to herniate. When a disc herniates, it means the soft, gelatinous solution inside is no longer held in place by the tough outer ring of tissue and the disc is now in a weakened state.\r\n<h2>Regenerative Orthopedics Treats the Instability and Resolves the Pain</h2>\r\n<img class=\"alignright size-medium wp-image-3398\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Gayle-Low-back-cycle-1-500x500.png\" alt=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" width=\"500\" height=\"500\" />Regenerative Orthopedics is an effective treatment to stop the cycle of degeneration. Since the underlying problem that starts the discs to degenerate is instability of the spine due to ligament weakness or injury, it would make sense then to strengthen and repair the ligaments. What treatment does that? Right…Regenerative Orthopedics!  In the 1950’s, a doctor named George S. Hackett studied the pathology of chronic low back pain and disc degeneration, and published research linking these conditions to instability of the vertebral column. He was one of the first doctors to ever point to ligament laxity or weakness as a reason that discs become degenerated. The soft, compressible spinal discs lie between two vertebrae and provide cushion and shock absorption. The facet joint is where the top vertebrae contact the vertebrae below. This joint is surrounded by a capsule made up of ligaments. Together these segments are known as facet joints. Every time one bends forward, backward, or twists, pressure is put on these facets. They are under a lot of strain all day long!\r\n\r\nThe vertebrae themselves are held together through a mesh of ligaments that hold the spine in alignment and take pressure off the facet joints. Dr. Hackett recognized that if the ligaments are loose or damaged, they allow excessive movement of the vertebrae and put extra gravitational pressure on the discs. We’ve noted earlier that when this happens, discs can protrude or herniate. Addressing the underlying ligament laxity is key to treating disc degeneration as well as preventing further damage and degeneration.\r\n\r\nBy applying Regenerative Orthopedics, such as Stem Cell Therapy, PRP, Prolotherapy, to the weakened ligaments, the ligaments become strengthened, thereby halting the progressive degeneration of the intervertebral discs. A patient with persistent back pain can be treated with these regenerative injections into the weakened vertebrae of the low back, mid-back, and neck.  Regenerative Orthopedics is very effective at alleviating pain from degenerative disc disease.\r\n<h2>Spinal Fusion Misses the Mark In The Treatment of Degenerative Disc Disease</h2>\r\nUnfortunately, the focus of degenerative disc treatment today is often centered on treating the discs, and this treatment is oftentimes surgery. Surgeries can include a discectomy, which removes part of the disc, or may mean removal of the entire disc and replacing it with a cadaver or artificial disc. In some cases, spinal fusion is recommended. During spinal fusion, the damaged discs are removed and replaced, and the affected levels of the vertebrae are then permanently fused together. While these methods increase joint space by inserting replacement discs, they do not address the problem of vertebral instability due to weakened ligaments, and therefore do nothing to actually take pressure off of those discs or preventing the facet joints from further breakdown. It is important to understand that the facets are more commonly the cause of pain. These are where the vertebra on the top connects to the vertebra on the bottom. The vertebra are surrounded by a thick capsule of ligaments that becomes weakened, torn or damaged over time, resulting in a lot of pain. Spinal fusion actually encourages increased degeneration at the sites above and below the fusion, frequently resulting in more pain.\r\n<h2>Overreliance on Imaging Procedures</h2>\r\nAnother factor hindering our understanding of vertebral instability and ligament weakness is the dependence on imaging to diagnose and treat musculoskeletal injuries. Of course, MRI imaging is very helpful in the medical fields. However, many rely on imaging instead of using physical examination and good history taking for diagnosing. And as we said earlier, MRI’s can misdiagnose disc herniations. It is important to rule out ligament injury and instability and treat it accordingly especially since a large majority of disc degeneration is due to vertebral instability and ligament weakness. With proper treatment, through therapies like Regenerative Orthopedics, physicians are able to accurately treat the source of their patients’ pain. Rather than undergoing unnecessary surgeries that do not address the root cause of the symptoms, choose instead to seek out a less invasive treatment capable of strengthening weakened ligaments and tendons and thereby eliminating pressure on the vertebral discs.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Degenerative Disc Disease: Proper Diagnosis and Treatment','','inherit','closed','closed','','3306-revision-v1','','','2020-05-14 20:24:10','2020-05-14 20:24:10','',3306,'https://www.drfields.com/uncategorized/3306-revision-v1/',0,'revision','',0),(3711,8,'2020-05-14 20:24:27','2020-05-14 20:24:27','When neck injuries occur, like after car accidents, sports injuries, or even wear and tear, the sufferer often lives with disabling symptoms. In this article, we are not referring to a catastrophic neck injury, but one that very often may be considered minor. Yet the sufferer still lives with symptoms that alter their ability to live normally. The reason may very well be instability in the neck and related to the uniqueness of the neck itself.\r\n\r\nThe neck is unique because it consists of vertebrae that are smaller and more mobile than all of the movable vertebrae of the spine. Another name for the neck is the cervical spine. The high degree of mobility in the neck or cervical spine is necessary in order to move the head through all the different ranges of motion we put it through. Blood is also transported through the neck on the way to the brain by means of the vertebral artery, which goes up through an opening called the transverse foramina in the vertebrae of the neck. Why are these features important when discussing neck pain, symptoms, and instability? Well first of all, although the mobility of the neck is great and necessary in order to get things done and function like we like to, this same feature makes us vulnerable to injury.\r\n\r\nSecondly, when an injury to the neck occurs, ligaments are affected. The ligaments are structures that are primarily responsible for joining bones, and they are especially vulnerable when trauma occurs. When the neck is stable, it moves and functions normally, while remaining in proper alignment, which protects the blood vessels, nerves and spinal cord. But injury to the ligaments changes this whole dynamic, because it causes the cervical spine to become unstable. With instability of the cervical spine comes inadequate support when the neck is called upon to function. Neck alignment is changed and a cycle of imbalance is created between the different neck structures. This causes too much movement of the neighboring vertebrae which stresses the ligaments that support them, and puts undue pressure on the nerve endings within those structures. The result is pain! It also sets into motion a host of other possible symptoms that can arise due to the various blood vessels and nerves running through the neck vertebrae.\r\n<h2><strong>Whiplash Injuries Are Examples of Instability of the Neck</strong></h2>\r\n<img class=\"alignright size-medium wp-image-3311\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-1-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" />People who have experienced whiplash, often have symptoms that seem to last and last. These symptoms are frequently a result of instability of the vertebrae of the neck, or in other words, cervical instability. Whiplash injuries are a common cause of cervical instability. The head is literally “whipped” in these injuries. The sudden acceleration and deceleration during rear end collisions is an example of whiplash, which generates a severe flexion and then an extension of the neck, in a whip-type motion forward and backward. The backward hyperextension is often associated with more injury to the muscles and ligaments, because it lacks the limiting effect of the chin meeting the chest in the forward “whip.” The excessive motion in hyperextension severely strains the involved muscles and ligaments. The motion also compresses the adjoining vertebrae.\r\n\r\nIf the person driving, for example, is looking in the rear view mirror at the time of collision, the rotated neck position puts the ligaments in an even greater vulnerability to injury, because these particular ligaments that help in side to side head movements are more susceptible in this position. As the ligaments become weaker, they are unable to provide a stable neck structure, which leads to even more injury, and an ongoing provocation of the nerve endings. The ongoing provocation alters a part of the nervous system called the sympathetic nervous system which becomes increasingly activated. This can result in a myriad of symptoms, including a syndrome of symptoms referred to as Barré-Liéou Syndrome.\r\n<h2><strong>Symptoms from Instability of the Neck</strong></h2>\r\nSymptoms of neck or cervical instability include neck pain, muscle spasms, cracking sounds, and numbness in the arms and legs. Also, remember how we discussed the unique anatomical relationship of the vertebral arteries through the transverse foramina? Instability of the neck can cause a change in the flow of the arterial blood through the vertebrae when they are moving excessively. This artery provides circulation to half of the brain, so the extra mobile vertebrae can pinch it off, fostering an insufficiency of blood supply as it travels up to the brain. The condition is called vertebrobasilar insufficiency (VBI) with its associated symptoms of neck pain, headaches/migraines, dizziness, drop attacks, dizziness, difficulty swallowing and/or speaking, and disturbances in hearing and vision.\r\n<h2><strong>How Can You Treat Neck Instability?</strong></h2>\r\n<img class=\"alignright size-medium wp-image-3310\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" />All of these symptoms can perplex many clinicians. Meanwhile, the sufferer lives with debilitating symptoms, oftentimes going from doctor to doctor, seeking some type of relief from the many and varied symptoms they experience. Chiropractors do a great job at not only assessing these problems but treating them.  But when Chiropractors are not able to solve the problem, or find a complete solution, one must look elsewhere. Talk with your chiropractor about Regenerative Orthopedics and what it can do to save your neck from surgery. Many chiropractors know Peter A. Fields, MD, DC, and have heard him lecture, as Dr. Fields is both an MD and a chiropractor.\r\n\r\nRegenerative Orthopedics is actually a great solution to the puzzle of cervical instability, because the regenerative therapies like Stem Cell Therapy, PRP, and Prolotherapy, repair the injured ligaments that are at the core of the problem. Regenerative Orthopedics are regenerative injection therapies that tighten, repair, and regenerate the ligaments involved in neck instability, eliminating the unstable movement, associated pain, and multiple symptoms. Regenerative Orthopedics is a safe non-surgical option that brings stability back to the neck and its structures, which results in increased functional ability. Those who suffer from these symptoms as a result of instability of the neck or cervical spine can finally get relief from this life-altering condition.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','An Answer for Life Altering Neck Pain and Instability','','inherit','closed','closed','','3301-revision-v1','','','2020-05-14 20:24:27','2020-05-14 20:24:27','',3301,'https://www.drfields.com/uncategorized/3301-revision-v1/',0,'revision','',0),(3712,8,'2020-05-14 20:24:48','2020-05-14 20:24:48','<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/RJCzx6yt0zY\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" class=\"alignright\" allowfullscreen></iframe> People who experience elbow pain are typically those who perform repetitive tasks involving their arms and hands. These tasks may include activities and professions like carpentry, secretarial work, computer work, pianists, guitarists, tennis players, and many other skills that require repeated activities day after day. It’s not surprising, really, that doing the same thing day in and day out could cause a structure to break down. Think about how you feel after spending a day working in the yard, or joining a new work out at the gym, or doing some other activity you’re not accustomed to. We pretty much expect to have some amount of muscle soreness. That is normal. During exercise, muscle cells are temporarily “injured,” as part of a normal process to multiply muscle cells. Unfortunately though, the same isn’t true with ligaments and tendons. They also break down from repetitive use, but they don’t have a very good capacity to heal well on their own. Muscles repair pretty well on their own, because they have an adequate blood supply, but ligaments and tendons do not.\r\n<h2>Elbow Pain May be the Result of Ligament or Tendon Injuries</h2>\r\nMovement and exercise are necessary for health of all of the joint structures and to keep the body strong and healthy. But repetitive motion, day in and day out, can result in wear and tear. How do you know when soreness is a problem? When soreness occurs after activity, keep in mind that normal soreness after exercise should not last more than a few hours. When soreness lasts longer, you are probably exercising too much or need to take more breaks. Muscle injuries generally heal with rest. When pain persists even after rest, the cause is oftentimes a ligament injury.\r\n<h3><em>Elbow Ligaments</em></h3>\r\nThe ligaments of the elbow provide stability to the elbow. They attach bone to bone, and different ligaments support various functions of the elbow, stabilizing the elbow as it goes through movements. For instance, the radial collateral ligament of the elbow prevents the elbow from hyperextending. Other ligaments keep the arm bones from rotating too much.  When these ligaments are weakened or damaged, they become unable to protect the elbow from excessive and unnatural movement, placing stress on all of the structures of the elbow.\r\n<h3><em>The Role of Tendons</em></h3>\r\nPain from repetitive motion may also result in a tendon injury. While ligaments attach bone to bone, stabilizing them, the tendons connect muscle to bone, and along with the muscles, enable the bones to move. Those with tendon injuries usually feel pain during activity, but ligament injuries may also be painful even while at rest.\r\n<h2>All Involved Structures Need Treatment for Proper Repair</h2>\r\nA very high percentage of persistent elbow pain involves a ligament injury, but many physicians only diagnose the problem as a tendon injury. Tennis Elbow, for example, is a commonly diagnosed tendon injury that often has a concurrent ligament injury.  It is important to treat all of the involved structures in order to fix the problem and get rid of the pain. A ligament injury can lead to a tendon injury, or injury to another structure of the elbow joint, so it is very important to treat the underlying source of injury and pain. Otherwise, the repaired tendon is likely to become reinjured because the joint will remain unstable due to the underlying ligament injury.\r\n<h2>Elbow Pain Treatments</h2>\r\nCortisone or steroid injections are a common treatment option for tendon injuries, but as we have discussed in previous articles, cortisone will actually weaken the tendons and the ligaments. Elbow injuries, whether due to ligament injuries, tendon injuries, or both, are better repaired using Regenerative Orthopedic treatment options which strengthen and regenerate the structures rather than weakening and degenerating them.  Yes, cortisone may provide some temporary pain control, but in the long-run, will have a damaging effect on the joint and actually boost the arthritic process.<strong> </strong>\r\n\r\nRegenerative Orthopedics for unresolved elbow pain decrease pain and stiffness, and restore quality of life.  The pain alleviating aspects of Regenerative Orthopedics are well documented, with studies demonstrating its effectiveness at significantly improving pain levels while also increasing grip strength and improving function, because it actually heals the tendons and ligaments.\r\n<ul>\r\n 	<li>In the <em>Clinical Journal of Sports Medicine</em>, doctors found that patients who received Prolotherapy, a Regenerative Orthopedic option, showed significant improvement in pain levels compared with patients given saline injection. Plus, their extension strength and grip strength were markedly improved.[i]</li>\r\n 	<li>Published research of patients with elbow pain due to Tennis Elbow treated with Prolotherapy resulted in a decrease in pain from a level of 6.79 to a level of 2.95, which is statistically significance.[ii]</li>\r\n 	<li>In another study, research demonstrated a significant reduction in elbow pain from Tennis Elbow in patients who received Prolotherapy, along with evidence of tendon healing observed via ultrasound imaging.[iii]</li>\r\n</ul>\r\nRegenerative Orthopedics works by stimulating the normal healing process of the body by the injection of natural healing solutions into the pain generating trigger points of the elbow. The result is strengthened ligaments and tendons, a stabilized elbow, and an end to elbow pain.\r\n\r\n[i] Scarpone M, Rabago DP, Zgierska A, Arbogast G, Snell E. The efficacy of prolotherapy for lateral epicondylosis: a pilot study. Clin J Sport Med. 2008;18(3):248–54.\r\n\r\n[ii] Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow. J Korean Acad Rehabil Med. 2002;26:764–8.\r\n\r\n[iii] Park JH, Song IS, Lee JB, et al. Ultrasonographic findings of healing of torn tendon in the patients with lateral epicondylitis after prolotherapy. J Korean Soc Med Ultrasound. 2003;22(3):177–83.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Persistent Elbow Pain','','inherit','closed','closed','','3297-revision-v1','','','2020-05-14 20:24:48','2020-05-14 20:24:48','',3297,'https://www.drfields.com/uncategorized/3297-revision-v1/',0,'revision','',0),(3713,8,'2020-05-14 20:25:18','2020-05-14 20:25:18','Persistent foot and toe pain affects an incredibly large part of our population. We spend hours on our feet every day, working, playing, and engaging in everyday activities. Some may be pounding their feet running marathons, while others try to reach that goal of 10,000 steps a day. Each of those steps generates a force on the foot. Add to that, activities like jumping and running, and the force placed on the foot increases that much more. During an average day, the feet support a combined force equivalent to several hundred tons. It is not surprising, then, that the majority of us experience foot pain at some point in our lives.\r\n<h2>Factors That Cultivate Problems of Foot Pain</h2>\r\nWe can compound our problems of foot pain by our choices of footwear. Improper foot mechanics with walking, running and intense training can cause problems with our feet too. Various physical conditions such as high arches, fallen arches, degenerative arthritis, bony abnormalities, flat-footedness, inflammatory joint diseases and excess weight also predispose us to foot pain.\r\n<h2>More about the Foot</h2>\r\nThe foot, if we include the toes and ankle, contains 26 bones. All of those bones make up 33 joints supported by more than 100 muscles, tendons and ligaments. Any of these structures can become weakened or injured, which will then destabilize the foot, due to insufficient ligament and tendon support for proper motion in those joints. The result is foot pain due to the joints of the foot becoming weak, lax, and unstable.\r\n<h2>What Happens When the Foot Joints Become Unstable</h2>\r\nInstability in any joint typically begins with an injury to the ligaments and tendons which support the joint. Because the joint is no longer held in place by healthy ligaments and tendons, abnormal joint motion develops. This abnormality in the movement of the joint results in a greater amount of pressure being exerted on the different parts of the joint. All of the structures of the joint can become damaged, including the cartilage. When cartilage degenerates, there will be a crunching and grinding in the joint. With time, the body reacts to this instability by contracting the muscles in the area. You’ll experience that as muscle spasms. Eventually these tense muscles will fatigue and lose their strength. Then the ligaments and tendons will try even harder to stabilize the joints, but they will become damaged further. That is the cycle of abnormal joint motion will degenerate the joint. The body responds to the failure of these various soft tissue structures by increasing bone mass in an attempt to stabilize the joint. One result is arthritis, a frequent diagnosis related to foot pain.\r\n<h2>Some Common Foot  and Toe Conditions</h2>\r\nInstability of the joints of the foot can also result in a number of forefoot conditions. These include Morton’s Neuroma, bunions (hallux valgus), and a stiff, degenerated, big toe called hallus rigidis.  The origin of these conditions can be traced back to an original ligament injury or weakness.\r\n<h3><em>Morton’s Neuroma</em></h3>\r\nMorton’s Neuroma refers to a fibrous tissue formation around nerve tissue in the spaces between the toes and results in symptoms that include sharp pains, burning sensations, and paresthesias (abnormal sensations). This condition is not traditionally thought of as being an instability problem. However, injury to ligaments of the foot can cause excessive motion between the bones of the toes, causing irritation of the bursa or a nerve, and can result in a significant enlargement of the nerve. This enlargement can cause further trauma and worsening of the symptoms, which can be quite severe. Morton’s Neuroma most often affects women who frequently wear pointed, high-heeled and close-toed shoes, the mechanics of which transfer body weight to the toes, placing undo force on the toes and their ligaments.\r\n<h3><em>Bunions</em></h3>\r\nBunions are another widespread, persistent foot complaint, also commonly seen in women. This growth in boney tissue occurs mainly on the medial side of the foot, producing the characteristic bump or bunion. Joint instability here causes the bones of the toes to move in an abnormal fashion with this shift leading to the formation of this boney projection on the medial side of the toe in an attempt to stabilize joint motion.\r\n<h3><em>Stiff Big Toe or Hallux Rigidus</em></h3>\r\nHallux rigidus is a disorder of the joint at the base of the big toe, which causes pain and stiffness in the toe. Over time, the toe becomes increasingly more difficult to bend. Hallux refers to the big toe, and rigidus means the toe is rigid. The condition is caused by degenerating cartilage in the metatarsophalangeal (MTP) joint of the big toe, which will eventually lead to the formation of bone spurs that form around the joint—a last ditch effort of the body to recover joint stability and stabilize the joint. The underlying condition of both bunions and hallux rigidus is instability that causes arthritis of the MTP joint.\r\n\r\nAbnormal joint shifts are what precipitate the pathological bone growth associated with bunions, reducing movement in both flexion and extension, and leading to hallux rigidus and to a potentially frozen joint.\r\n<h2>Treatment for Foot Pain</h2>\r\nStandard treatment for foot pain is generally conservative, beginning with choosing properly fitting shoes. NSAIDs are often prescribed along with physical therapy. When foot and toe pain continue, surgery is frequently considered. In fact, surgery on the first metatarsophalangeal joint is amongst the most common surgery performed.\r\n\r\nDespite the commonality of these treatments, a large percentage of people continue to suffer with foot and toe pain. An effective alternative treatment for reduction and elimination of this pain is Regenerative Orthopedics, because it addresses the underlying cause of the problem, the joint instability caused by ligament and tendon injury. By strengthening ligaments and tendons, Regenerative Orthopedics can stop the pathologic cascade causing these persistent foot conditions, stabilizing the joint and bringing pain relief.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Persistent Foot Pain and Toe Conditions - Treatment with Regenerative Orthopedics','','inherit','closed','closed','','3199-revision-v1','','','2020-05-14 20:25:18','2020-05-14 20:25:18','',3199,'https://www.drfields.com/uncategorized/3199-revision-v1/',0,'revision','',0),(3714,8,'2020-05-14 20:25:35','2020-05-14 20:25:35','<h2>Why Regenerative Orthopedics Are the Ideal Sports Medicine</h2>\r\nWe see athletes of all ages in our clinic all of the time. It doesn’t matter if you are 15 or 95, because if you love sports or enjoy an active lifestyle, you don’t want to have to stop because of an injury. Sports injuries from ligament tears, meniscus injuries, tendon injuries, wear and tear, and other soft tissue injuries are common reasons people seek care. In fact, over 90% of athletic injuries involve stretched, torn or weakened soft tissue of some sort. Sports injuries, whether of the ankle, knee, shoulder, hip, or back occur when the repetitive strain of the athletic activity is too much for a particular ligament, tendon, or muscle to perform.\r\n<h2>How Do Injuries Occur to the Meniscus, Tendons, and Other Soft Tissue?</h2>\r\nInjury to these soft tissue structures can transpire from a sudden traumatic injury or as a result of accumulative damage over the years. Many are considered an acute exacerbation of a chronic injury. Whether you run 3, 6, 10 miles or even a marathon, ride your bike, participate in martial arts, lift weights, play golf or tennis, the repetitive impact from athletic events can be enough to damage the various soft tissue structures. Over time the joint degenerates as these non-healed soft tissue injuries destabilize the joint.\r\n<h2>What Do We Mean by Non-Healed Soft Tissue?</h2>\r\nDoesn’t the body just heal on its own? Unfortunately, not all of these structures heal well on their own. Soft tissue structures like the cartilage, discs, labrum, ligaments, menisci and tendons are whiter in nature, which means they have a poor blood supply. Blood is what nourishes the joint, and therefore, the blood poor structures have a compromised healing ability after injury. These structures aren’t like muscles. You’ve probably noticed when you pull a muscle, or sustain a muscle injury, that in time, it will get better. Why is that? The muscles are red, which means they have a good blood supply and repair more easily.\r\n<h2>The Role of the Ligaments</h2>\r\nIn order for the joint to function like it should, all of the joint structures, including the white tissue structures, the muscles and the bony structures need to be well. They all work together to stabilize the joint and keep it working optimally, but the ligaments are the primary stabilizing structures. Ligaments are key at maintaining joint health. Unfortunately, ligament injuries are one of the most common causes of pain from sport-related injuries. And they are white tissue structures. Plus, injured ligaments generate pain, because they are a sensory organ, with free nerve endings. The weakness that occurs after ligament injury to the knee, for example, may give rise to Runner’s knee, meniscal tears, chondromalacia patella, bone spurs and eventually to arthritis. When the ligament is injured, the harmony between the soft tissue, muscles and bony structures is disrupted, interfering with mobility and joint stability. What results is an unstable joint, one that moves abnormally, functions poorly, and becomes more and more damaged. When the ligaments are left untreated, the body will try to stabilize the joint by causing ongoing muscle spasms, joint swelling and eventually bone spur formation and degenerative arthritis...a cycle of persistent pain.\r\n\r\nInvolvement in athletics provides us with physical, emotional and mental well-being. However, when we’re faced with injury, we often set into motion the cycle of instability in the joint as mentioned above. This cycle also leads to the eventual development of arthritis, which can occur within a few years with severe injuries, or take decades to develop when the injury is less severe. <span lang=\"en\">Although progressive cartilage loss with its inhibition of joint motion plays a central role in arthritis, injury to other soft tissue structures actually initiates the change in equilibrium that leads to this breakdown of cartilage and the path to arthritis. </span>Athletes of all ages desire to be as fit as when in the prime of their athletic careers. But the pain and symptoms from non-healed sports injuries interferes with that dream!\r\n<h2>Treatment for Sports Injuries</h2>\r\nStandard treatments for sports injuries usually only involve the management of symptoms, which may include pain medications, cortisone/steroid injections, physical therapy, massage and other therapies to provide pain relief. These treatments may work to relieve pain temporarily or momentarily reduce the pain and inflammation. But when the athlete turns off the pain signal with medication use, while the joint is still injured, and continues to play and remain active on an injured joint, further damage ensues. It is important to realize that these treatment modalities do not repair soft tissue injuries, such as tendon, ligament, and meniscus tears, nor do they regenerate cartilage.\r\n\r\nThe key to keeping joints strong is to stimulate the area to heal. Regenerative Orthopedics does just that, offering hope to those suffering from sports injuries. They are the ideal treatment for sports injuries because they get you back to doing what you love. Plus, these therapies are non-surgical. The treatments regenerate and repair the damaged ligaments and soft tissue, allowing the athlete to continue with their desired activity. Non-surgical regenerative therapies, including Stem Cell Therapy, PRP, and Prolotherapy, stimulate the natural regenerative processes in and around the joint and facilitate the restoration of the degenerated soft tissue to a healthy state, improving joint support and function, and reducing pain and symptoms.\r\n\r\nRegenerative Orthopedics involves the injection of natural solutions, and sometimes, depending on the nature of injury or degeneration, will also include injections of an autologous preparation, from a person’s own plasma (blood), fat or bone marrow, injected directly into the damaged joint to accelerate the healing process.\r\n<h2>Sports injuries do not need to put an end to the enjoyment of sports activities. There is an effective option for repair!</h2>\r\nRegenerative Orthopedics <span lang=\"en\">is a great non-surgical treatment ideal for</span> offering not only pain relief from sports injuries, but healing and reparation at the source of the injury. This regeneration and repair enables the athlete of all ages to speedily return to the sport or activity they love with minimal lifestyle interruption.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Why Regenerative Orthopedics Are the Ideal Sports Medicine','','inherit','closed','closed','','3134-revision-v1','','','2020-05-14 20:25:35','2020-05-14 20:25:35','',3134,'https://www.drfields.com/uncategorized/3134-revision-v1/',0,'revision','',0),(3715,8,'2020-05-14 20:26:01','2020-05-14 20:26:01','We have made reference to cortisone and steroid injections in several previous articles regarding treatment options for joint pain, because cortisone is generally recommended by conventional medicine. The treatment may only result in temporary relief, and is frequently used to delay the eventual joint replacement. But did you know this commonly used treatment option may not be as safe as you think? Recently released evidence in the medical journal “Radiology,” describes the negative risks of using cortisone injections. <a href=\"#_edn1\" name=\"_ednref1\">[i]</a>Although prior studies have been conducted showing cortisone to have a negative impact on joints, this most recent article helps to bring awareness to the adverse effects cortisone injections have on the joint.\r\n<h2>What Happens When Cortisone Is Injected Into the Joint?</h2>\r\nCortisone appears to be toxic to cartilage. When cortisone is injected into the joint it actually boosts the progression of the destruction of cartilage and therefore accelerates arthritis. Oftentimes, cortisone is injected into joints for relief of arthritis pain and the symptoms associated with it. It would seem contrary then, to use a “treatment” that makes arthritis worse, in an effort to treat it! Right? Cortisone destroys cartilage, boosts cell death in the joint, and increases bone loss.\r\n<h2>Behind the Use of Cortisone Injections</h2>\r\nArthritis is a very common disease of the joint that limits activity and quality of life, and often results in disability. In an effort to treat arthritis, physicians initially approach pain and symptom control in a non-surgical fashion, generally attempting to delay the eventual joint replacement. Additionally, older or sicker patients may not be able to tolerate surgery, and in those cases, more conservative treatments are needed and recommended. Cortisone injections may provide some patients with days of relief, while others may get months of pain and symptom control with cortisone injections into the joint. For this reason it is a commonly performed treatment, as it reduces the inflammation and swelling of arthritis.\r\n\r\nPhysicians have known there were risks involved in the use of cortisone injections into joints! Even though the study mentioned in this article is a new study, there have been many previous studies demonstrating the risks and the damage cortisone does to the joint structures. That is why, when your physician discusses cortisone injection with you, it is recommended that the injections not be given more than once every three months. Hopefully, the reason behind the limits is explained as well, since it is important for the patient to be educated on the risks of treatment with cortisone injections.\r\n<h2>Cortisone Injections May Do More Harm than Good</h2>\r\nThe researchers in this most recent study looked at the effect of cortisone injected into knees and hips, and found that the cortisone boosted the progression of arthritis and <strong>accelerated the need for joint replacement surgery.</strong> The researchers looked at 459 patients who received one to three cortisone injections into the hip or knee in 2018. Almost a tenth of these developed complications such as cartilage loss, stress fractures, bone loss, and joint destruction in the two to fifteen months following the injections. The authors note that this percentage may be an understatement because half of the participants did not receive follow-up imaging tests to assess the health of their joints.\r\n\r\n<strong>In summary, the studies are showing that cortisone injections accelerate arthritis and can be detrimental in the long-run</strong>. But even with this knowledge, cortisone injections continue to be recommended frequently for joint pain. Millions of Americans suffer from arthritis and its symptoms of pain, swelling, cartilage loss, and bone destruction. Sufferers want relief, and the injections often give relief. They are also covered by insurance.\r\n\r\nGiven that cortisone injections are being given more and more to treat pain in patients with joint arthritis, what is the alternative, especially since many sufferers are at the point where they need relief to just live day to day.\r\n\r\nThat’s where Regenerative Orthopedics comes in!  <strong>Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to actually repair the arthritic joint.</strong> These treatments provide pain relief, but they don’t do so at the expense of the joint. They actually heal the joint, strengthen the structures of the joints, and even boost growth of cartilage. Regenerative Orthopedics <strong>regenerates the joint</strong> rather than causing degeneration like what occurs with cortisone injections.\r\n\r\nThere is also minimal downtime needed to receive these regenerative treatments, so you can continue to exercise, and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility and strengthen muscles around the joints.\r\n\r\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire, while returning function to your painful arthritic joint, and helping you to once again enjoy the activities you desire to do.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\"><strong>[i]</strong></a> Kompel AJ, Roemer FW, Murakami AM, Dias LE, Crema MD, Guermazi A.  Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology. Oct 15 2019. <a href=\"https://doi.org/10.1148/radiol.2019190341\" target=\"_blank\" rel=\"noopener noreferrer\">https://doi.org/10.1148/radiol.2019190341</a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Cortisone (Steroid) Injections May Not Be As Safe As You Think','','inherit','closed','closed','','2915-revision-v1','','','2020-05-14 20:26:01','2020-05-14 20:26:01','',2915,'https://www.drfields.com/uncategorized/2915-revision-v1/',0,'revision','',0),(3716,8,'2020-05-14 20:28:09','2020-05-14 20:28:09','Overuse Injuries are painful joint conditions that can occur in any joint of the body. Repetitive strain from repeat motion and overuse which may transpire in sports or particular jobs and activities can lead to these injuries.  Injuries, such as Runner’s Knee, Rotator Cuff Tendonitis, and Tennis Elbow are examples of overuse injuries, which are progressive activity-related injuries linked to repetitive stress that is placed on the tendon, ligament or other joint structure. Individuals with overuse injuries may try to manage their pain on their own for a while. They may attempt to stabilize the knee, shoulder or elbow with a brace, or calm the pain with over-the-counter medications, or even rest the joint a bit in order to find enough relief to be able to play in the next game, continue to work, or participate in their upcoming event.\r\n<h2>Common Causes of Overuse Injuries</h2>\r\nDoing too much of the same activity strains the tendons, ligaments, and other soft tissue structures. Training error and improper technique may add to the possibility of an overuse injury. Using poor or improper form during training exercises, while running on uneven ground, when swinging a tennis racket, or even with painting walls, can overload the muscles, tendons, and ligaments, and cause an overuse injury. In cases of Runners Knee, for example, the repeated stress from the force of hitting hard surfaces while contracting the leg muscle when running, again and again, results in a weakening of the tendon and ligaments. In overuse injuries, many may think their tendon or ligaments are just inflamed, and although the injury may begin with inflammation, when left untreated, this overuse injury overloads the tendon and ligaments, resulting in degeneration or even in a tear. Many cases of overuse injuries become chronic with instances of recurrence.\r\n<h2>Symptoms of Overuse Injuries</h2>\r\nIn the beginning, pain and tenderness are noted in the affected area after physical activity. As the problem progresses, the pain and discomfort occur during activity. Of course, symptoms vary with the various joints and from person to person, but as the condition advances, swelling and pain will restrict the ability to perform sports or particular activities. Eventually, the pain and symptoms will persist, even at rest.\r\n<h2>Treating Overuse Injuries</h2>\r\nChasing and suppressing symptoms with bracing and pain medications may keep the swelling down and provide momentary pain relief, but a knee sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. The debilitating pain, however, will keep the individual and athlete searching for a cure.  Is surgery the answer? Surgery prolongs the athlete’s return to sport.<a href=\"#_edn1\" name=\"_ednref1\"><sup>[i]</sup></a>  Fortunately, there are non-surgical options! Here’s what doctors in New York say about the overuse injury patellar tendonitis, “Due to its common refractory response (difficulty in treating) to conservative treatment, a variety of new treatments have emerged recently that include...<strong>Prolotherapy</strong>, <strong>platelet-rich plasma therapy (PRP)</strong><strong>,</strong> arthroscopic surgical procedures, surgical resection of the inferior patellar pole (cutting away tendon tissue at the kneecap)…”<a href=\"#_edn2\" name=\"_ednref2\"><sup>[ii]</sup></a>\r\n\r\nAt OrthoRegen, the regenerative treatments we use for painful joint conditions include Platelet Rich Plasma and Prolotherapy. But the researchers listed surgery too! Why do surgery if PRP is good enough? And is it good enough to effectively treat overuse conditions? Studies done in Europe demonstrate the effectiveness of Platelet Rich Plasma for those with overuse conditions of the knee, and its ability to improve pain symptoms and functionality, saying, “The most important finding in our meta-analysis is that PRP injections are statistically better than the control group at longer term follow-up suggesting that PRP is an effective and worthwhile treatment for Patellar Tendinopathy. <a href=\"#_edn3\" name=\"_ednref3\">[iii]</a><sup>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup> A 2018 study agreed that multiple PRP injections offer the most satisfactory results.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a> Athletes are looking to non-surgical therapies such as Stem Cell Treatments, Platelet Rich Plasma or Prolotherapy treatments, because they are showing improved outcomes in those with tendon and ligament conditions like Runner’s Knee.<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n<h2>Treating Overuse Injuries with Regenerative Orthopedics</h2>\r\nAt OrthoRegen, using regenerative therapies like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy is what we do. By treating overuse injuries with Regenerative Orthopedics, athletes can get back to their sport, and individuals can return to the activities they love. We see substantial, consistent improvements in pain outcomes when treating those with overuse injuries.  <strong>Regenerative Orthopedics can treat various joint disorders including problems of the tendons, because the</strong><strong> injections directed at the weakened tendons and involved ligaments</strong> stimulate a string of healing events, which include an increase of blood supply, an influx of reparative cells, and the deposition of collagen cells. When the collagen matures, it will strengthen and tighten the damaged tendons and ligaments.\r\n\r\n<strong>Why would we treat the ligaments too? </strong>The ongoing and recurring joint pain in overuse conditions is rooted in joint instability. Patients with overuse injuries often have concurrent weakness in the ligaments of the joint. These ligaments play a huge role in stabilizing the joint, and when weak, will put more strain on the tendon and other joint structures. The problem of weak ligaments needs to be addressed in treatment. Therefore, we treat the joint comprehensively, and make sure we treat any injured and weakened ligaments as well, in order to achieve the best results. Comprehensive treatment will result in repair and healing of the entire joint, tightening of the ligaments, and strengthening and repair of the tendons, so the joint and all of its structures function normally, and the athletes and individuals who were sidelined by overuse injuries can return confidently and pain-free to the sport and activities they love.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Cook J L, Khan KM, Harcourt PR, <em>et al. </em><a href=\"http://bjsm.bmj.com/content/31/4/332.short\" target=\"_blank\" rel=\"noopener noreferrer\">A cross sectional study of 100 athletes with jumper’s knee managed conservatively and surgically.</a> The Victorian Institute of Sport Tendon Study Group. Br J Sports Med1997; 31: 332 – 336.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Christian RA, Rossy WH, Sherman OH. Patellar tendinopathy – recent developments toward treatment. Bull Hosp Jt Dis (2013). 2014;72(3):217-24.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Kaux JF, Bruyere O, Croisier JL, Forthomme B, Le Goff C, Crielaard JM. One-year follow-up of platelet-rich plasma infiltration to treat chronic proximal patellar tendinopathies. Acta Orthop Belg. 2015 Jun;81(2):251-6.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Dupley L, Charalambous CP. Platelet-Rich Plasma Injections as a Treatment for Refractory Patellar Tendinosis: A Meta-Analysis of Randomised Trials. Knee surgery &amp; related research. 2017 Sep;29(3):165.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Kopka M, Bradley JP. The Use of Biologic Agents in Athletes with Knee Injuries. J Knee Surg. 2016 Jul;29(5):379-86. doi: 10.1055/s-0036-1584194. Epub 2016 May 20.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Do Overuse Injuries Have You Sidelined?','','inherit','closed','closed','','2912-revision-v1','','','2020-05-14 20:28:09','2020-05-14 20:28:09','',2912,'https://www.drfields.com/uncategorized/2912-revision-v1/',0,'revision','',0),(3717,8,'2020-05-14 20:28:29','2020-05-14 20:28:29','Runner’s Knee is a painful knee condition that is, like the name says, common in runners. Runner’s Knee is also called Patellofemoral Pain Syndrome (PFPS), and is characterized by anterior knee pain. Sufferers of this condition commonly experience pain behind and around the kneecap or patella. Runner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. Runner’s Knee particularly affects adolescents and young adults, is quite common in younger recreational runners, with females suffering more frequently than males.\r\n\r\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur. The patella not only moves up and down, but also tilts and rotates, allowing for various points of contact between the patella and femur. Repetitive contact at these locations combined with abnormal articulation of the patella, is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome. Patellofemoral Pain Syndrome should be distinguished from chondromalacia, which is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\r\n<h2>What’s Behind Runner’s Knee?</h2>\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. Anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. Anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint, which causes instability and improper tracking as the patella articulates with the patellofemoral groove in the femur. For example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee as this movement increases pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable, especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces, and eventually the articular cartilage.\r\n<h2>Runner’s Knee Symptoms</h2>\r\nBesides the tenderness behind, around and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint. The pain typically occurs with activity and often worsens with activities that include steps, hills, and uneven surfaces. Going downhill or downstairs aggravates the condition. Pain can also be triggered by prolonged sitting, due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\r\n<h2>How is Runner’s Knee Treated?</h2>\r\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, orthotics and physical therapy with quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles and iliotibial band stretching exercises. This approach may help temporarily, but it does not fix the problem of instability in the knee joint which is causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful, and exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee. Regenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening will pull the patella into the groove, allowing for a realignment of the patella.\r\nRegenerative Orthopedics along with vastus medialis strengthening will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee, allowing for a quick return to activities.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Runner’s Knee Pain','','inherit','closed','closed','','2894-revision-v1','','','2020-05-14 20:28:29','2020-05-14 20:28:29','',2894,'https://www.drfields.com/uncategorized/2894-revision-v1/',0,'revision','',0),(3718,8,'2020-05-14 20:28:46','2020-05-14 20:28:46','In Snapping Hip Syndrome, sufferers hear or feel a snap, pop, or click when they move their hip joint. Encountering these symptoms is not a normal process, but one that points to an injury or degenerative condition.\r\n<h2>What Is the Cause of Snapping Hip Syndrome?</h2>\r\nThere are several reasons Snapping Hip Syndrome occurs, and they can be due to problems either inside or outside of the hip joint. Most commonly, the condition involves a thick, wide tendon called the iliotibial band that runs along the outside or lateral side of the hip joint. The iliotibial band snaps over the bony prominence, a part of the thigh bone that sticks out, called the greater trochanter on the outside of the hip.  When a person with this condition moves into a standing position for example, the band may be positioned behind the trochanter, and then when bending the hip, the band will move and “snap” over towards the front of the bony prominence. Over time, irritation from this “snapping” may also result in bursitis.\r\n\r\nAnother tendon is involved in the second cause of Snapping Hip Syndrome, as it catches on underlying bony prominences of the pelvis. The iliopsoas tendon snaps over the iliopectineal eminence when bending or flexing the hip. The annoying snapping sensation or sound is generally the only symptom involved when the iliopsoas tendon is the source.\r\n\r\nAn additional area where snapping can occur is where the ball of the hip joint fits into the socket. This snapping involves the rectus femoris tendon as it runs from inside the thighbone and up through the pelvis. When the hip joint bends and straightens, the tendon moves and snaps back and forth across the ball of the hip joint.\r\n\r\nThe least common cause of Snapping Hip Syndrome occurs inside the hip joint and involves a tear in the hip labrum or a tear in the cartilage. Bits of cartilage or even bone can also become loose inside the joint, in these types of injuries. These pieces are called loose fragments and can be an associated cause of Snapping Hip Syndrome which can cause the hip to lock up. In this scenario inside the hip, the sufferer often experiences pain that is disabling.\r\n\r\nA combination of the various causes, plus muscle injury can also occur. Additionally, if the problem is ongoing and the tendons remain lax over a prolonged period of time, Snapping Hip Syndrome can lead to arthritis.\r\n\r\n<h2>Who Experiences Snapping Hip Syndrome?</h2>\r\nSnapping Hip Syndrome is common in young athletes like ballet dancers, soccer players, and runners. Dancers and other athletes repetitively move their hip in order to perform their dance or sport. If the hip and the tendons are moving abnormally, such as with Snapping Hip Syndrome, the abnormal rubbing and snapping of the tissue over bony prominences will occur again and again. When experiencing the symptoms, these athletes will frequently turn to treatments to relieve tight muscles, because they attribute their problem to overtraining. Treating muscles may give some relief, but will not repair the underlying injury to the ligaments, tendons, and/or hip labrum. Treatments that repair these soft tissue structures are necessary to stabilize the hip joint and stop the snapping from occurring.\r\n\r\n<h2>Regenerative Orthopedic Treatments for Snapping Hip Syndrome</h2>\r\nRegenerative Orthopedics directed towards the strengthening of these tendons and any involved ligaments, plus repair of the hip labrum, can tighten the joint and resolve the problem. Oftentimes an underlying problem of looseness or laxity of the hip joint is involved, causing instability of the hip joint. Regenerative Orthopedics treats the hip instability, because it tightens and strengthens the injured and lax structures, and regenerates the areas that need healing. The treatment actually gets to the root cause of the problem, and is effective at repairing the injured soft tissue, and resolving the problem.\r\n\r\nThe injected solutions in Regenerative Orthopedic treatments draw immune cells and growth factors to the area in an effort to build new healthy soft tissue. The healing and repair boosts the body’s natural response of healing in soft-tissue injuries.  The result is ligaments and tendons that are stronger, and no longer loose.  The snapping and pain goes away, and the athlete can return to the sport they love.\r\n\r\nIf the cause of Snapping Hip Syndrome is a torn labrum or cartilage, a more advanced technique of Regenerative Orthopedics, including Stem Cell Therapy and/or PRP, may be required.  Labral tears respond well to these treatments, and cartilage can regenerate. If loose fragments are involved, the physician will need to determine whether or not surgical removal is necessary.\r\n\r\nRegenerative Orthopedic treatments for Snapping Hip Syndrome get to the root cause of the condition, specifically the damaged connective tissues like tendons ligaments, and labrum, and return you quickly to the activities you enjoy doing.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Snapping Hip Syndrome','','inherit','closed','closed','','2892-revision-v1','','','2020-05-14 20:28:46','2020-05-14 20:28:46','',2892,'https://www.drfields.com/uncategorized/2892-revision-v1/',0,'revision','',0),(3719,8,'2020-05-14 20:29:05','2020-05-14 20:29:05','Meniscus tears of the knee and labral tears of the hip commonly occur from some form of trauma, such as that which transpires during a sporting event. The tears are not always immediate, but can arise after another structure of the hip or knee is damaged. Injury or damage to the joint inhibits normal functioning, and with continual use and wear and tear, the bones in the joint will rub against each other abnormally. Oftentimes, ligaments, tendons and the meniscus or labrum are all injured making the joint unstable and painful. As this course continues, the knee or hip joint will degenerate and progress to arthritis.\r\n<h4>The Meniscus Tears and Surgery</h4>\r\nThe menisci protect the cartilage in the knee from high stresses that are placed upon the joint. They are located between the femur and the tibia bones. Injury to the meniscus is one of the most common knee injuries where medical care is sought due to knee pain. Surgery is frequently recommended for various types of meniscus tears, including bucket handle tears, radial tears, horizontal tears, and oblique tears. When more than one of these patterns is present, the tear is called a complex tear. Although frequently recommended, surgery, including arthroscopic surgery, adds to the instability of the joint, because joint structures are cut, scraped and removed. The meniscus and the articular cartilage are the most commonly removed structures, when arthroscopic surgery of the knee is performed. When the meniscus and cartilage are removed, the femur bone is unable to glide smoothly over the tibia, enhancing knee instability and hastening the arthritic rate. The dynamics within the joint are changed and the knee joint no longer functions normally. Arthroscopic surgery boosts arthritic degeneration, because pressure on the cartilage escalates when the meniscus is removed, and the joint becomes more unstable with the stretching, cutting and scraping of the ligaments, tendons and cartilage. The degeneration of the articular cartilage appears to be proportional to the size of the segment removed. The joint breakdown leads to further thinning of the remaining articular cartilage. This allows for increased pressure on the underlying tibia bone which then increases pressure on the ligaments. When the ligaments tear, the instability becomes even worse. The result of this breakdown of the joint is a cycle of knee pain, joint degeneration, structure damage, and even more pain.\r\n<h4>Hip Labral Tears</h4>\r\nThe hip labrum, along with various hip ligaments and the normal deep socket configuration of the anatomy of the hip joint, provide most of the stability of the hip. Injury to the ligaments, tendons and labrum, initiate the same damage and pain cycle that we described for the knee, which results in ongoing hip pain and can lead to hip arthritis. Surgical repair of the hip labrum and hip replacement are needed at times, but in our opinion, should be sought as a last resort. Just as removal of the meniscus increases instability in the knee, extraction of the labrum makes the hip joint more unstable, and will eventually degenerate the hip and lead to further arthritis.\r\n<h4>Treating Meniscus &amp; Labral Tears Non-Surgically with Regenerative Orthopedics</h4>\r\nNon-surgical options do exist to treat both meniscal and labral tears. Regenerative Orthopedics, a regenerative injection therapy, has been successfully utilized to repair and regenerate the injured ligaments, tendons, meniscus, labrum and cartilage in injured and degenerated knee and hip joints. The therapy boosts collagen formation both outside and inside the knee and hip joint, by stimulating the body to repair itself. Comprehensively treating all of the ligament attachments of the joint, ensures the stability of the hip and knee joint, since treating the ligaments tightens the loose supporting structures, aiding in the elimination of pain. In cases of advanced degeneration and arthritis, the Gold Standard in Stem Cell Therapy can be utilized, which incorporates bone marrow stem cells, as well as adipose stem cells, plus Platelet Rich Plasma (PRP), and Prolotherapy in a combined regenerative procedure. Stem cells can self-renew and differentiate (or change) into a variety of cell types, and repair injured tissue. PRP and Prolotherapy activate growth factors which augment stem cell proliferation and aid in the repair of conditions with cellular deficiencies, like a damaged meniscus or labrum. The Gold Standard in Stem Cell Therapy provides the cells and growth factors that the damaged tissues and degenerative conditions lack, to aid in their healing.\r\n\r\nMost painful joint conditions begin with joint instability due to damage to the surrounding ligaments. The instability can progress to meniscal injuries or labral degeneration and eventually to knee or hip arthritis. Treatments such as arthroscopy to repair these tears can actually increase the arthritic process. Non-surgical Regenerative Orthopedics is available as an excellent option to stimulate the body to repair the entire joint, and alleviate knee and hip pain, due to arthritis and/or as a result of ligament, tendon, meniscal and labral tears.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Meniscus and Labral Tears','','inherit','closed','closed','','1397-revision-v1','','','2020-05-14 20:29:05','2020-05-14 20:29:05','',1397,'https://www.drfields.com/uncategorized/1397-revision-v1/',0,'revision','',0),(3720,8,'2020-05-14 20:29:23','2020-05-14 20:29:23','We see many people in our office who want to avoid a joint replacement. This scenario occurs more often than you might imagine. Folks of all ages come seeking treatment so they can continue their distance running, weightlifting, bicycling, and other activities, because pain is getting in the way of the things in life they enjoy. Frequently, they have been told that their problem, which is likely arthritis, is too advanced, and the only option left is a joint replacement. Meanwhile, the sufferer looks for an alternative, often left to chase symptoms, taking pain medications and trying various therapies in an attempt to find some relief. They hear about OrthoRegen, and call or email us, inquiring whether Regenerative Orthopedics can help them, so they don’t have to replace their joint. In the majority of musculoskeletal pain cases, Regenerative Orthopedics can give you pain relief, while improveing the function of your joint.\r\n\r\n<strong>Yes, Regenerative Orthopedics Works Even After Many Other Treatments Fail</strong>\r\n\r\nHow does Regenerative Orthopedics work if so many treatment options have already failed? Many treatment suggestions are therapies that ONLY prolong or delay the need for joint replacement. You are likely familiar with over-the-counter pain relievers and prescription medications like NSAIDS and steroids. There are also injectable medications, such as corticosteroids and hyaluronic acid injections. These treatments are not curative though, and only give temporary relief. Some, such as NSAIDS and steroids, actually weaken the joint further, which only promotes the arthritic process.\r\n\r\nRegenerative Orthopedics encourages collagen formation at the joint, stimulates the body to repair itself, heals injured ligaments and tendons, and stimulates new tissue formation. It doesn’t just cover up pain or chase symptoms.\r\n\r\n<strong>Regenerative Orthopedics repairs the joint.</strong>\r\n\r\nWhy not choose an alternative that works by repairing your joint and eliminating the pain? Regenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma, and Comprehensive Prolotherapy, is an effective way to treat your degenerated joint, in a non-surgical manner.\r\n\r\n<strong>Be Aware! Not All Stem Cell Therapies Are Alike!</strong>\r\n\r\nIf you are like many who desire to avoid a joint replacement, you have probably already looked into Stem Cell Therapies, or even gone to a seminar. If you have been to a seminar, the presenter may have emphasized the need to get some type of amniotic stem cell product. The line of thinking is that if you are older, your stem cells are too old, so you need donated cells! This is not the truth! First of all, it is important to understand that amniotic “stem cells” are void of live stem cells, because the process necessary to make them available to you actually kills the live cells. On the other hand, your own stem cells are still alive and potent enough to work. Why use a donated product when you have your own <strong>live</strong> cells?\r\n\r\n<strong>What Does OrthoRegen Do Differently Than Other Clinics?</strong>\r\n\r\nClinics in the United States that use a patient’s own stem cells, take the stem cells from bone marrow or from the fat in the abdominal area. Once they have retrieved the cells, they are then reintroduced into the degenerated or injured joint.\r\n\r\nAt OrthoRegen, we use the Gold Standard in Stem Cell Therapy. Many other clinics use just one form of treatment. For example, they may use bone marrow stem cells only, or they may possibly just use PRP. The Gold Standard encompasses four types of treatments, including stem cells from bone marrow, stem cells from fat, platelets from blood (PRP), and comprehensive dextrose Prolotherapy. In many instances, just one type of regenerative therapy may be sufficient enough to bring healing. Dextrose Prolotherapy, for example, is known to stimulate repair of a painful, degenerated area, as it boosts the normal healing abilities in the injured area, attracting immune cells to the degenerated structure for the purpose of repair and healing. And it is possible that we may recommend this therapy, depending on the diagnosis. However, when a joint is damaged or degenerated to the point where the surgeon wants to replace it, and greater levels of regeneration are needed due to the severity, it would make sense to choose the Gold Standard in Stem Cell Therapy. The Gold Standard is uniquely effective at repair of the degenerated joint.\r\n\r\n<strong>Avoid Joint Replacement with Regenerative Orthopedics</strong>\r\n\r\nBy treating the whole joint in a comprehensive manner, a more complete repair is established. The annoying, persistent and disabling pain of arthritis is almost always due to underlying injured soft tissue, like the ligaments and tendons, which cause the joint to be unstable. The injury to the soft tissue occurred after some type of trauma (even an old sprain) or wear and tear, and the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for the degeneration that occurs in the arthritic process. By treating the joint comprehensively, Regenerative Orthopedics stimulates the repair of the injured joint structures, which stops the abnormal joint motion, and halts the degenerative process.\r\n\r\nWhen the Gold Standard in Stem Cell Therapy is used, this treatment combination helps to regenerate the joint when cartilage has been lost, while also stimulating the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability, and results in the elimination of pain and the return to function for those with degenerative joint conditions.\r\n\r\nRegenerative Orthopedics is an effective treatment option for those desiring to avoid surgery and get back to the sports and level of activities they love…even after many other treatments have failed. Don’t let joint pain put a damper on your active lifestyle. Non-surgical Regenerative Orthopedics can resolve your joint pain and help you to meet your activity goals.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Active and Looking To Avoid a Joint Replacement','','inherit','closed','closed','','2865-revision-v1','','','2020-05-14 20:29:23','2020-05-14 20:29:23','',2865,'https://www.drfields.com/uncategorized/2865-revision-v1/',0,'revision','',0),(3721,8,'2020-05-14 20:30:57','2020-05-14 20:30:57','<span style=\"font-weight: 400;\">When a ligament in the knee is injured, the most common ligament affected is the medial collateral ligament (MCL).  In general, the MCL is a very strong ligament and is pretty resilient when injured, and in many circumstances, physicians will opt for non-surgical treatments, because they take into consideration the ability of the MCL to heal on its own. An athlete with injury to their MCL often returns to their usual training or routine after just a few weeks. But is this the best course of treatment for an injured MCL? In this article, we will explore the injury and healing process of the knee and its MCL, and also examine whether an injured MCL should just heal on its own or if  this path allows for a weaker MCL, and one more susceptible to re-injury.</span>\r\n\r\n<b>Let’s Take a Look at the Medial Collateral Ligament (MCL)</b>\r\n\r\n<span style=\"font-weight: 400;\">The MCL is a vital knee structure for providing stability to the knee joint. It is one of four major ligaments of the knee, along with the anterior cruciate (ACL), the posterior cruciate (PCL), and the lateral collateral (LCL) ligaments, all of which stabilize the knee. When the MCL is injured, very often these other ligaments are injured too! MCL injuries also affect the meniscus. Since part of the MCL is attached to the meniscus, a tear of the meniscus can also accompany an MCL injury. </span>\r\n\r\n<span style=\"font-weight: 400;\">Why is spontaneous or self-healing a consideration in MCL injuries? The MCL has a greater blood supply than the ACL, for example, which adds to its greater ability to heal.  However, studies have shown that even though conservative therapy for MCL injuries has been shown to be more effective than in ACL or even PCL injuries, the healed MCL remains weaker and less efficient than the ligament in its pre-injured state. The ligament heals by scar formation, which is an inferior type of healing, and results in less strength than in normal ligaments, and the weak ligament leads to ligament laxity and an unstable joint. Joint instability as the result of an MCL injury begins the process of arthritis. The healing scarred ligament becomes longer and loose, which causes the joint to move and rotate differently, which alters how the knee can handle loads and pressures placed upon it. The instability allows for more sliding between joint surfaces, decreasing the efficiency of the muscles, disrupting the underlying cartilage and bone, and boosts overall degeneration which leads to the eventual arthritis formation.</span><span style=\"font-weight: 400;\">     </span>\r\n\r\n<b>An Injury to One Knee Structure Affects the Rest of the Knee</b>\r\n\r\n<span style=\"font-weight: 400;\">Wear and tear, trauma type injuries, and anything else that affects one ligament of the knee, will affect the other structures of the knee. The MCL helps the knee to bend and twist correctly, but when it is injured, those dynamics are changed. MCL injuries usually occur near where the ligament attaches to the thigh bone at the knee. The ligament attaches to a bony prominence called the medial condyle and assists in keeping the knee from hyperextending. When the MCL becomes weak and unstable, it starts a cascade of degeneration of the condyles. Since the medial condyle bears a lot of weight, the weak ligament boosts the wear on the bony condyle, and as the bone wears, the degeneration will also cause injury to the meniscus. The cycle then continues as these bony attachments continue to degenerate, because the attached ligaments will lose their tautness and become even more loose and weak.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>Treatment of an Injured MCL</b>\r\n\r\n<span style=\"font-weight: 400;\">The care of MCL injuries ranges from conservative to surgical measures. Surgery involves the cutting and removal of tissue, and since MCL injuries often involve other structures, that would entail even more cutting. It is important to understand that removal and cutting of knee structures adds to knee instability and to further degeneration of the knee in the long run, so avoidance of surgery would be preferred. What can be done then, and what are your options, considering the inferior healing of the MCL when left to heal on its own? Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are treatment options available for MCL injuries, because they help to provide healing to the entire knee and also allow for stabilization of the injured MCL. Studies have shown that these treatments are effective at increasing the strength of the ligament at the attachment site, as well as boosting the overall ligament mass and strength. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics for MCL injuries encourages collagen formation at the knee joint, stimulates the body to repair itself, and heals the ligaments, by stimulating new tissue formation, rather than scar tissue formation. Surgery will be necessary when the ligament is completely torn, but Regenerative Orthopedics is helpful when both ends of the ligament remain attached to bone, and in 98% of ligament injuries this is the case, since the injuries are partial tears. </span>\r\n\r\n<span style=\"font-weight: 400;\">The key to healthy knees is strong ligaments and tendons. In the case of the injured MCL, co-injury of ligaments, and other involved structures in MCL injuries, the goal is to treat the whole knee with Regenerative Orthopedics to stimulate repair, and strengthen the injured and weakened structures. The treatment will lead to the deposits of new collagen, the material the ligaments and tendons are made of. The end result is a stronger, more stable knee joint. Rather than just allowing the MCL to heal on its own, Regenerative Orthopedics ensures proper regeneration of the ligament tissue, allowing for effective elimination of pain, the repair of the MCL injury, and a safe return to sport and activities.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','The Best Treatments for Medial Collateral Ligament Injuries','','inherit','closed','closed','','2858-revision-v1','','','2020-05-14 20:30:57','2020-05-14 20:30:57','',2858,'https://www.drfields.com/uncategorized/2858-revision-v1/',0,'revision','',0),(3722,8,'2020-05-14 20:31:12','2020-05-14 20:31:12','<span style=\"font-weight: 400;\">Iliotibial band syndrome (ITBS) is a painful knee condition that takes place more frequently in athletes, especially endurance athletes, like runners, cyclists, and in </span><span style=\"font-weight: 400;\">those who repeatedly squat</span><span style=\"font-weight: 400;\">. The iliotibial band runs along the outside of the thigh, from the pelvis to the shinbone. The band crosses both the hip and the knee, and is a structure that helps the knee to bend and straighten smoothly and in a stable fashion.  The injury occurs most often because of overuse, as the band gets irritated from repeatedly crossing over the femoral epicondyle, a bony prominence on the thighbone, every time the knee bends and straightens. Those with this condition will notice pain at the outside of the knee, especially when their heel strikes the ground while running.</span>\r\n\r\n<b>More About the Iliotibial Band</b>\r\n\r\n<span style=\"font-weight: 400;\">The iliotibial (IT) band is a dense band of tissue beginning at the iliac crest of the pelvis extending over the hip joint running down the outside part of the thigh, crossing over the outside of the knee and attaching to the shinbone. The iliotibial (IT) band forms from something called the tensor fascia lata and two of the gluteal muscles in the buttock and then it stretches across the knee. Along with ligaments and other joint structures, the iliotibial (IT) band plays a role in providing stability to both the knee and hip. The band works to help abduct the leg, especially during walking, and it keeps the legs from crossing while walking. The IT band helps stabilize the outside part of the knee through its range of motion. The band moves back and forth when the knee is in motion. While the knee is bent, the iliotibial band is located behind the femoral epicondyle near the knee joint. The band moves forward across the epicondyle when the knee is straightened. With iliotibial band syndrome, the band becomes irritated, and pain is experienced on the outer aspect of the knee</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<b>What is Behind Iliotibial Band Syndrome?</b>\r\n\r\n<span style=\"font-weight: 400;\">Although iliotibial band syndrome has generally been recognized as an injury caused by the friction that occurs as the band rubs back and forth over the bony epicondyle, recent studies have challenged this concept. When the knee is bent, the iliotibial band is also compressed against the thigh bone, as it braces the knee when stress is placed on it. In instances when the knee is turned or rotated too much, the band can be injured as well. Therefore, another theory is that the injury occurs when the band is compressed at the epicondyle, causing irritation and inflammation there. Additionally, researchers suggest there is a fat pad full of nerves that is compressed between the iliotibial band and the epicondyle as the IT band is pulled towards the epicondyle. </span>\r\n\r\n<span style=\"font-weight: 400;\">Although there are different theories of how iliotibial band syndrome develops, most are in agreement that there is a component of irregular compression forces between the iliotibial band and the femoral epicondyle that generates the irritation and inflammation. Most likely, iliotibial band syndrome is the result of a combination of issues, including poor training habits, weakened soft tissue (muscle, ligament, and tendons), mechanical imbalances, and joint instability, especially involving the low back, pelvis, hips, and knees.</span> <span style=\"font-weight: 400;\">Injury occurs to the joint tissue because the joint begins to move in an abnormal fashion, irritating the tissue and altering the joint motion further. The irritation of the joint tissues in iliotibial band syndrome is both the cause and effect of altered joint mechanics.  As an added problem, when instability is present, the sufferer will begin to walk in an altered pattern in an attempt to brace the knee, but this change in the walking pattern puts additional stress on the joint and can injure or tear the cartilage. Since the iliotibial band crosses both the hip and knee joints, injury can cause abnormal motion and instability at both the hip and knee, which puts more and more stress on the iliotibial band. The increased stress will rotate the kneecap and put increased pressure on the cartilage. If the symptoms are ignored, the irritation and inflammation will continue, and even scarring can develop, which can decrease knee range of motion and cause pain even with reduced activity.</span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Anatomic issues can predispose folks to the development of iliotibial band syndrome. Leg-length discrepancies, an abnormally tilted pelvis, or bowed legs can cause the iliotibial band to become excessively tight or loose, which will increase the friction when the band as it crosses back and forth across the epicondyle, and change the stressors on the joint structures due to the abnormal way the anatomic issues cause the joint to move, which all will increase irritation, injury, and pain.</span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Poor training habits can have the same effect on the iliotibial band as the anatomic issues do. For example, runners who tend to always run on the same side of the road may repeatedly have one leg moving slightly downhill compared to the other. Always running downhill also stresses the band, and cycling with the foot rotated inwards will increase the angle at which the band crosses over the epicondyle. All of these repeated activities can irritate the iliotibial band.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Treatment for Iliotibial Band Syndrome</b>\r\n\r\n<span style=\"font-weight: 400;\">Conservative treatment, including rest, modification of activity, and physical therapy is commonly recommended. Surgery to cut the IT band and “release” tension is occasionally recommended for cases that will not resolve, but conservative treatment should be sought first. When the IT band and associated muscles are “tight,” a lot of strain is put on the ligaments, making muscle stretching and massage beneficial. The affected ligaments need to be treated as well, because all of the involved structures become weakened by the abnormal motion. The joint instability in the hip and the knee needs to be properly diagnosed and treated in order to find the relief and the desired return to function. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is an effective and promising treatment option that can offer a non-surgical treatment solution for patients with persistent iliotibial band syndrome. Treatment into and around both the hip joint and the knee may very well be needed. If the hip is found to be stable upon evaluation, and the knee alone is affected, then the athlete with iliotibial band syndrome will receive Regenerative Orthopedic treatments to the area on the lower leg where the iliotibial band attaches. Additionally, if there are parts of the band itself that are tender, these areas can be treated as well. Generally, after just a couple of treatments, the athlete is able to start to work out again. Regenerative Orthopedics offers a successful and much-needed alternative by stimulating the body to repair the supportive ligaments around the joints, heal the iliotibial band, as well as promote cartilage regeneration when necessary. The treatment is safe and effective for athletes suffering with chronic lateral knee pain, such as that experienced in iliotibial band syndrome.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Iliotibial Band Syndrome','','inherit','closed','closed','','2775-revision-v1','','','2020-05-14 20:31:12','2020-05-14 20:31:12','',2775,'https://www.drfields.com/uncategorized/2775-revision-v1/',0,'revision','',0),(3723,8,'2020-05-14 20:31:34','2020-05-14 20:31:34','<span style=\"font-weight: 400;\">The shoulder is quite an amazing, and incredibly mobile joint. But injury to the glenoid labrum can keep you from reaching your sport or professional goals. If you are a tradesman or woman whose work requires repetitive overhead motion to accomplish your trade, and shoulder pain is making your day almost impossible, a labral injury may be part of the problem. Overhead strokes of a painter can be difficult, the strum of a chord for a guitar player might bring shooting pains, and a pitcher might experience pain while throwing a ball compromising big hopes for the season. Shoulder pain from a glenoid labrum injury can put a major damper on your life, and those suffering from the injury want a quick way out of the discomfort in order to get their lives back. Getting there non-surgically would be an added bonus. </span>\r\n\r\n<span style=\"font-weight: 400;\">The shoulder has a lot of mobility.  A lack of big ligamentous structures adds to the ability of the shoulder to move well, but that also makes it more prone to injury, since big ligament structures would add support. The glenoid labrum is a soft tissue structure that does provide stabilization for the shoulder, so it is an important shoulder structure. Athletes and others who rely on their shoulders for the movements necessary to carry out their sports and professions are especially susceptible to injuries and tears of the glenoid labrum.  There are a couple types of labral tears. A SLAP tear (Superior Labral, Anterior to Posterior) is one of the most common, and results in a tear from the front to back of the glenoid labrum. Other labral tears include flap tears, Bankart lesions, and degenerative lesions. </span>\r\n\r\n<span style=\"font-weight: 400;\">THE GLENOID LABRUM </span>\r\n\r\n<span style=\"font-weight: 400;\">The glenoid labrum </span><span style=\"font-weight: 400;\">is a smooth ring of fibrous cartilage that surrounds the socket part of the shoulder- a ball and socket joint. The shoulder joint has three bones that come together: the scapula (shoulder blade), the clavicle (collar bone), and the humerus (upper arm bone). The glenoid labrum is located where the top part of the upper arm comes into contact with the socket in the scapula, and it forms a deep pocket that helps keep the humerus bone in the shoulder socket and provides pain-free range of motion.</span> <span style=\"font-weight: 400;\">How does the glenoid labrum stabilize the shoulder and provide smooth movement? The ball at the top of the arm is larger than the socket, so the labrum helps to stabilize the shoulder by increasing the socket depth and providing a place for the ligaments and tendons to attach. </span><span style=\"font-weight: 400;\">When injured, the labrum is unable to do its job adequately, and pain and symptoms are experienced. Injuries to the labrum occur during traumatic events, with repetitive motions, or from recurrent dislocations. Other soft tissue, such as the ligaments and tendons, are often injured along with the damaged labrum, because forces strong enough to injure the labrum will also be sufficiently forceful to injure them too. Keep this in mind when seeking repair, because all the injured shoulder structures need to be treated in order to achieve complete healing of the shoulder joint. Otherwise, a cycle of shoulder injury, re-injury, and pain will be set in motion. </span>\r\n\r\n<b>Symptoms of a Labral Tear</b><span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">When the glenoid labrum is torn or injured, the shoulder may feel unstable, go out easily, and be susceptible to dislocations.  The shoulder may also click, catch, and lock because the torn parts get “trapped” when the shoulder joint moves. Pain is usually noticed with overhead activities, along with the popping, locking, catching, or grinding sensations during movement. Weakness, instability, and loss of range of motion may also be experienced. </span>\r\n\r\n<b>Glenoid Labrum Treated with Regenerative Orthopedics </b>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics effectively treats and repairs glenoid labrum injuries without the need for surgery. Athletes might consider surgery in an attempt to return quickly to their sport. But is a quick return the true outcome of surgical repair? Maybe not! Researchers in the medical journal “Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery” say, “SLAP repair in throwing athletes should be approached with caution. Surgery may help improve symptoms but may not guarantee a return to the preinjury level of competition. Even in the most expert of hands, the </span><b><i>rate of return to the preinjury level of performance ranges from 38% to 60% and is as low as 10% for pitchers</i></b><span style=\"font-weight: 400;\">.”</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics should be sought as a non-surgical alternative. Surgery is needed on rare occasions, but should be a last resort. Regenerative Orthopedics repairs the underlying joint instability of the shoulder joint, by treating all of the damaged soft tissue structures. Without this repair, the labral tear, ligament injury, or tendon damage will cause the shoulder to remain unstable, and shoulder problems, immobility and impingement will continue. </span>\r\n\r\n<span style=\"font-weight: 400;\">Besides being an effective treatment, Regenerative Orthopedics has several advantages. It is non-surgical, which avoids the risks of anesthesia, as well as the cutting, scraping, and probing, which can add to the instability of the joint. Other advantages include minimal time missed from work, and no long recovery times. Regenerative Orthopedics stimulates repair of the labrum and other soft tissue structures of the shoulder, significantly improving pain levels, alleviating stiffness and the need for pain medication, and returning motion back to the shoulder joint. The repair allows for an accelerated return to sport and the profession you enjoy. </span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','The Glenoid Labrum of the Shoulder','','inherit','closed','closed','','2773-revision-v1','','','2020-05-14 20:31:34','2020-05-14 20:31:34','',2773,'https://www.drfields.com/uncategorized/2773-revision-v1/',0,'revision','',0),(3724,8,'2020-05-14 20:31:59','2020-05-14 20:31:59','<span style=\"font-weight: 400;\">In Chondromalacia Patella, the kneecap tracks abnormally making everyday activities difficult, interfering with sports, and causing knee pain. The condition is common in runners and athletes, especially in activities that involve a lot of running, and can affect young, healthy individuals, as well as older adults. Chondromalacia patella is one of the causes of patellofemoral pain syndrome. </span>\r\n\r\n<b>What Causes Chondromalacia Patella?</b>\r\n\r\n<span style=\"font-weight: 400;\">Chondro means cartilage, malacia means breakdown, and patella means knee cap. So, when someone suffers from this condition, they will have cartilage breakdown and fraying underneath the knee cap. Excessive, abnormal movement or hypermobility of the knee is considered a contributing factor in the development of chondromalacia patella</span><span style=\"font-weight: 400;\">.</span> <span style=\"font-weight: 400;\">Normally, the patella slides easily along the smooth surface of the patellar groove with bending and straightening of the knee, but with chondromalacia patella, the cartilage becomes rough and wears away.</span><span style=\"font-weight: 400;\"> The symptoms of chondromalacia patella include pain around the kneecap and clicking, cracking or popping sounds, which tend to exacerbate with activity and worsen over time.</span>\r\n\r\n<span style=\"font-weight: 400;\">The kneecap ends up scraping the bones underneath the knee when the person moves the knee. The patella, or kneecap, is the largest “sesamoid” bone in the body, and it plays a crucial role in the bending and straightening of the knee. When there is a problem with the patella, the knee joint becomes unstable and movement becomes difficult and/or painful.</span>\r\n\r\n<span style=\"font-weight: 400;\">Chondromalacia Patella is a type of patellar pain syndrome, and these syndromes often involve problems and injury of other soft tissue structures.</span> <span style=\"font-weight: 400;\">Patellar pain syndromes are often due to ligament injuries, meniscal tears, bony aberrations, muscle imbalances, or a combination of these conditions. Patellar pain syndromes can be caused by trauma, but are primarily due to anatomic or biomechanical conditions that are prone to “failure’ either in a bone or soft-tissue component. That means there may be injured ligaments or injured tendons, which are actually part of the underlying problem and adding to the tracking issue. If these other soft tissue injuries are not treated, the knee will remain unstable, creating a negative cycle and resulting in significant impairment.</span> <span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>What are the usual treatments?</b>\r\n\r\n<span style=\"font-weight: 400;\">Taping, strengthening exercises, and stretching are typical treatments for Chondromalacia Patella, which may work for a short period of time, but generally do not cure the condition. Regenerative Orthopedics, on the other hand, can improve patellar tracking and relieve the symptoms of Chondromalacia Patella.</span>\r\n\r\n<span style=\"font-weight: 400;\">Surgery is becoming more and more common for various knee conditions, and in some cases may be indicated. But unless a person is dealing with a fracture or a complete ligament rupture, a more conservative option should be considered.</span>\r\n\r\n<span style=\"font-weight: 400;\">Physical therapy, to strengthen the quadriceps may be an important treatment component in Chondromalacia Patella. However, if the quadriceps tendon or other soft tissue, like ligaments are injured, then they need to be treated, because physical therapy success will otherwise be limited. Let’s explain further.  If the soft tissue component is not treated, the joint will remain unstable, the abnormal movement will continue, the negative cycle is promoted, and the impairment and altered tracking of the patella</span><span style=\"font-weight: 400;\"> will persist.</span><span style=\"font-weight: 400;\"> Physical therapy, patellar taping, orthotics, ice applications, and soft braces do not address the underlying issues of joint instability caused by the ligament injury, tendon injury, or meniscal tears.  </span>\r\n\r\n<span style=\"font-weight: 400;\">It is very possible that you have already tried various treatments, and even employed them over and over, but they continue to fall short in bringing you the relief and return to function and sport that you desire. Regenerative Orthopedics, on the other hand, can promote nonsurgical repair of the ligament, tendon, and meniscus, and have been utilized with positive outcomes for patellar pain syndromes like Chondromalacia Patella.</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is a therapeutic option that can promote the repair of injured or degenerated soft tissue by boosting the physiologic healing processes of the joint, thereby ameliorating joint instability and potentially all of the related conditions above. Stem Cell Therapy, PRP, and Prolotherapy are regenerative techniques well suited for soft tissue injury of the knee joint, and have been used to effectively treat a wide variety of knee pain conditions, including Chondromalacia Patella. Soft tissue injuries of the knee often have an unsatisfactory outcome due to incomplete healing and repair. Regenerative Orthopedics is a treatment technique that has been explored for conditions that require soft tissue healing, with the goal of restoring normal ligament and tendon function.</span> <span style=\"font-weight: 400;\"> </span><span style=\"font-weight: 400;\">Regenerative Orthopedics is a conservative treatment that reduces Chondromalacia Patella symptoms, improves function, and restores normal tracking of the patella, returning you quickly to the sport and activities you enjoy.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Treating Chondromalacia Patella Successfully','','inherit','closed','closed','','2650-revision-v1','','','2020-05-14 20:31:59','2020-05-14 20:31:59','',2650,'https://www.drfields.com/uncategorized/2650-revision-v1/',0,'revision','',0),(3725,8,'2020-05-14 20:32:22','2020-05-14 20:32:22','Seminars about amniotic “stem cell” therapy are popping up everywhere, and it is important to know what advertisers are really talking about. At OrthoRegen, we do not use amniotic “stem cell” therapy in our stem cell treatments, but we do want you to be educated about amniotic therapy, especially since there is a lot of misinformation surrounding amniotic “stem cell” therapy and umbilical cord blood “stem cell” therapy. We want to inform you on what these treatments are and also what they are not.\r\n\r\nThere is a reason we keep putting “stem cells” in quotations when we talking about amniotic “stem cells.” That’s because there are NO actual stem cells in amniotic “stem cell” therapy. That’s right! Both amniotic “stem cell” therapy and umbilical cord blood “stem cell” therapy have NO stem cells in the product. Think about the scenario a minute. There isn’t someone waiting for the mother to give birth, and someone who is collecting the afterbirth, and someone else delivering it to your doctor’s office, to then be injected into your degenerated or injured hip or knee by the clinician you have chosen, right?! No, that isn’t the way it happens. Sure, the mother does donate the placental tissue. But the afterbirth materials are purchased by companies, and the companies process the materials in an effort to make sure they are disease-free. They are also freeze-dried. All of these preservation processes kill all of the live cells. That leaves <strong>NO live stem cells in the product</strong>. Amniotic stem cells are being advertised all over the place and people are fascinated with this very popular trend of using amniotic fluid for joint repair. But it needs to be clarified that amniotic “stem cell” therapy has NO actual stem cells, but rather growth factors and natural hyaluronic acid remnants found in the extracellular matrix of the amniotic tissue. If companies advertise in this way about the actual product you will receive, it is simply not true. Keep in mind that in their pre-donated state, the amniotic fluid does have an abundance of stem cells, but they do not survive the processing.\r\n\r\n<strong>They Say My Stem Cells Are Too Old, Weak, or Too Few</strong>\r\n\r\nSome seminars try to convince folks that their own stem cells are no good, and that the donated cells are better for treating joint pain. That’s not true! This is another important point to understand… your own bone marrow, even if you are older, contains sufficient stem cells. Yours stem cells are just fine. And they are live stem cells. How can the processed “dead” cells be better? The push to say that your own cells are too weak, or too few and that their amniotic product is better does not make any sense, when their product doesn’t contain any! Remember, cryopreserved, dehydrated amniotic products do not contain stem cells. Yes, amniotic fluid does contain growth factors. And these growth factors very well may work at helping joint pain. But guess what?  You have growth factors in your blood! Your own blood in the form of Platelet Rich Plasma (PRP) contains live growth factors too. And when we use PRP, if recommended in your particular case, we won’t be preserving it and freeze drying it. It will be used right away. Again, the purchased, micronized amniotic product does contain growth factor material, but it is processed. Why not just use your own (autologous) live stem cells and PRP growth factors for your joint pain and injuries?\r\n\r\nUsing your own stem cells and blood is also safer as far as the transfer of disease or contaminants. True, the amniotic product is processed and freeze-dried, but problems of contamination have occurred. The CDC has reported instances of contamination of both amniotic product and cord blood with fecal matter and bacteria.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nTo recap: original amniotic fluid from the fetus does contain an abundance of stem cells in its pre-donated state. However, the procedure used in amniotic material processing alters the original relevant characteristics of the product thereby decreasing its ability and usefulness at regeneration and repair of injured or degenerated tissue. Once again, the amniotic “stem cell” therapy does <strong>not</strong> contain actual stem cells, but rather growth factors that may possibly activate your own stem cells.\r\n\r\n<strong>They Say I Just Need One Injection</strong>\r\n\r\nOne injection simply is not enough to heal your whole joint. Even if just one injection is advertised, it is not sufficient for complete healing. The most likely scenario is that your joint injury or pain progressed over time, and involves more than one joint structure. In order to provide adequate repair of the joint and the pain relief you seek, a more comprehensive treatment would be necessary. In most joint injuries, when one ligament is injured, additional ligaments and other soft tissue are generally injured as well. Unhealed joint injuries often lead to arthritis, and in this case the entire joint is involved. One injection simply cannot treat all of those joint structures. A comprehensive treatment is necessary to strengthen, repair and stabilize all of the involved structures. This also helps to prevent the continued breakdown of cartilage common in arthritis. <strong>A single injection is simply not comprehensive</strong> enough to reverse the damage affecting the entire joint. At OrthoRegen, we address the entire joint with a multi-injection technique called <strong>Comprehensive Regenerative Orthopedics, in order to effectively treat the joint and return you to the pain-free life you desire</strong>.\r\n\r\n<strong>Why Don’t We Use Amniotic “Stem Cell” Therapy?</strong>\r\n\r\nAt OrthoRegen, we use the Gold Standard in Stem Cell Therapy, which combines four different regenerative treatments that are extremely effective and which utilize your own stem cells and growth factors. We use adipose (fat) stem cells, which contain both live growth factors and live stem cells. Plus, we use bone marrow stem cells, which contain live growth factors and live stem cells. We also use Platelet Rich Plasma, which contains live growth factors. And then we use Dextrose Prolotherapy to strengthen any injured ligaments or tendons so the whole joint is treated and repaired. In comparison to amniotic “stem cell” therapy that only has processed growth factor material and no stem cells, it makes sense that we would choose the Gold Standard in Stem Cell Therapy that has been shown to be very effective.\r\n\r\nAnother great thing about Regenerative Orthopedics and the Gold Standard in Stem Cell Therapy is that it is non-surgical and requires basically no downtime. No extended time off of work is needed, and you can remain active.\r\n\r\nVarious trials and studies have shown the effectiveness of Dextrose Prolo­therapy alone in treating arthritis, as well as ligament and tendon injuries.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a><sup>,<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup> When indicated, in advanced cases of degeneration, we recommend the entire regimen involved in the Gold Standard of Stem Cell Therapy. In many cases of degeneration and injury, Prolotherapy alone is sufficient to bring the pain relief and repair needed, and the Gold Standard in Stem Cell Therapy is not required. In cases that are more advanced, many other clinics use only one or two of these procedures, but we have discovered that this combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint. We comprehensively treat the entire joint with multiple injections of the Platelet Rich Plasma portion of the blood, adipose stem cells, and bone marrow stem cells. These regenerative treatments, along with Dextrose Prolotherapy in and around the involved joint offer benefits in terms of pain relief, regenerative properties, and cartilage repair for people with arthritis and all types of joint pain and injuries.  In our experience, we have discovered that this combination approach of live stem cells, growth factors, and regenerative therapies offers the best therapeutic regenerative approach for more advanced degenerative cases and particular injuries, addressing the whole joint and effectively healing the joint injuries, resolving pain, and restoring function to return you quickly to the active life you desire.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> <em>Notes from the Field:</em> Infections after Receipt of Bacterially Contaminated Umbilical Cord Blood–Derived Stem Cell Products for Other than Hematopoietic or Immunologic Reconstitution — United States, 2018. <em>Weekly</em> / December 21, 2018 /67(50);1397–1399.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Reeves KD, Hassanein K. Randomized prospective double-blind placebo-controlled study of dextrose prolotherapy\r\n\r\nor knee osteoarthritis with or without ACL laxity.  <em>Alt Ther Health Med</em>. 2000; 6(2):68–80.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Dagenais S, Yelland MJ, Del Mar C, Schoene ML. Prolotherapy injections for chronic low-back pain. <em>Cochrane Database Syst Rev</em>. Apr 18, 2007; (2): CD004059.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Rabago D, Zgierska A, Fortney L, et al. Hypertonic dextrose injections (prolotherapy) for knee osteoarthritis: results of a single-arm uncontrolled study with 1-year follow-up. <em>J Altern Complement Med</em>. 2012;18(4): 408–14.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Amniotic “Stem Cell” Therapy','','inherit','closed','closed','','2611-revision-v1','','','2020-05-14 20:32:22','2020-05-14 20:32:22','',2611,'https://www.drfields.com/uncategorized/2611-revision-v1/',0,'revision','',0),(3726,8,'2020-05-14 20:32:41','2020-05-14 20:32:41','<strong>Painful Joints? Regenerative Orthopedics Works Even When Other Treatments Fail  </strong>\r\n\r\nRegenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma (PRP), and Dextrose Prolotherapy are non-surgical treatments for numerous painful joint conditions. The treatments are often superior to many other treatments at effectively repairing joint injuries, eliminating joint pain, and getting you back to the activities and the lifestyle you love.  Is joint pain standing in the way of your enjoyment of sports? Are painful joints making it difficult to do normal, everyday things? At OrthoRegen, we commonly see patients who have tried a number of different treatments in an effort to find relief from their painful knee, hip, shoulder, back, and multiple joint pain. They have tried over-the-counter medications, prescription medications, cortisone injections, massage, and other treatments, but are still in pain. Surgery may have been recommended or even performed already. Yet they are still in pain. Does this sound like you? Do you continue to suffer with a painful joint condition even though it seems like you have tried everything, but still experience annoying pain? Unfortunately, this scenario is repeated over and over. We hear it all of the time! But there is an answer! Regenerative Orthopedics is effective at repairing many painful joint conditions even after other treatments have failed. How can this be? The reason is because many of the other treatments never treat the root cause of the problem. Think about it. Can Advil really fix a joint problem or does it just cover up the pain? Is the problem an Advil deficiency? When you think about it like that, it is obvious that these treatments aren’t the answer, but more of a band-aid approach.\r\n\r\nRegenerative Orthopedics has a greater chance at effectively repairing the joint injury and relieving the pain because it is directed at the root cause of the joint pain problem.  The underlying source of the majority of painful joint conditions is joint instability due to ligament and/or tendon injury and weakness. Fortunately, Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, work great at treating ligament and tendon injuries and weakness, and because of that, they are able to successfully repair joint instability.\r\n\r\n<strong>How Do Regenerative Orthopedic Treatments Work?</strong>\r\n\r\nIt’s pretty simple. Regenerative Orthopedics involves the injection of different types of natural solutions which are injected into the painful joint areas.  The process stimulates the body’s natural healing cascade, which triggers wound healing properties. This results in tightened and stronger ligaments and tendons, which make the entire joint structure more stable. Remember, the underlying source of most painful joint conditions is an unstable joint. Therefore, stabilization of the joint with Regenerative Orthopedics repairs the problem at its source and results in pain elimination. Regenerative Orthopedics is beneficial in repairing many different types of sports injuries and various types of persistent joint pain.\r\n\r\n<strong>Does Regenerative Orthopedics Only Treat Specific Joints and Conditions? </strong>\r\n\r\nAt OrthoRegen, we have seen Regenerative Orthopedics effectively repair most joint injuries and painful joint conditions including neck, back, knee, hip, shoulder and other musculoskeletal pains that are due to ligament and tendon weakness, injury, and joint instability.\r\n\r\nIn joint injuries such as meniscal tears or labral tears, we have found that the addition of Platelet Rich Plasma, along with Dextrose Prolotherapy is an effective Regenerative Orthopedic technique.\r\n\r\nEven arthritis can be treated with Regenerative Orthopedics, because it also has at its core, a problem of joint instability. Regenerative Orthopedics strengthens the entire joint, because the whole joint is treated comprehensively. Persistent joint pain in arthritis is almost always due to underlying injured soft tissue, like the ligaments and tendons, and joint instability. Left untreated, the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for degeneration and the arthritic process. Regenerative Orthopedics stimulates the repair of the injured joint structures, stops the abnormal joint motions, and halts the degenerative process.  When degeneration of the joint is more severe, we may recommend the Gold Standard in Stem Cell Therapy, which includes two forms of stem cells (bone and fat), PRP, and Dextrose Prolotherapy. This treatment combination is quite amazing at regenerating the joint when cartilage has been lost, plus it stimulates the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability, and results in the elimination of pain and the return to function in degenerative joint conditions.\r\n\r\nRegenerative Orthopedics is an effective treatment option for painful joint conditions, even after many other treatments have failed to resolve your pain. If your pain has persisted to put a damper on your life after having tried numerous other treatments, we urge you to consider non-surgical Regenerative Orthopedics to resolve your joint pain.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Painful Joints? Regenerative Orthopedics Works Even When Other Treatments Fail ','','inherit','closed','closed','','2592-revision-v1','','','2020-05-14 20:32:41','2020-05-14 20:32:41','',2592,'https://www.drfields.com/uncategorized/2592-revision-v1/',0,'revision','',0),(3727,8,'2020-05-14 20:32:58','2020-05-14 20:32:58','<strong>Relief from Sciatica Symptoms</strong>\r\n\r\nSciatica is a complaint that is tossed around quite frequently in the context of burning low back pain that shoots down a person’s buttocks, legs, and/or feet. You’ve probably heard it or have said it yourself! If you’ve had this problem, a good chance a friend has recommended their favorite treatment or therapist to help you find some relief. But did you know that sciatica is not actually a disease? Sure, it’s a real thing, but sciatica is a symptom, and not the disease or condition itself. The condition is called<strong> lumbar radiculopathy. </strong>Oftentimes the terms sciatica and lumbar radiculopathy are used interchangeably. Lumbar refers to the lower back area and radiculopathy is a disease of the root of a nerve.\r\n\r\nFor those of you who have experienced the pain of lumbar radiculopathy or an actual pinched nerve, the pain is very excruciating. The sufferer commonly experiences burning pain shooting down the leg, with pain so bad it will stop you in your tracks. How did you get to this point of extreme pain? The common denominator for most back pain problems is spinal instability. Injury to the ligaments of the back occurred at some point, typically from bending over and twisting with the knees in a locked position, which then stretched the ligaments, and made them vulnerable to injury. The result is weak and lax ligaments. When ligaments of the lumbar spine are weak, the vertebrae can slip out of place and pinch the nerve.\r\n\r\n<strong>What Are the Common Treatments for Sciatica or Lumbar Radiculopathy?</strong>\r\n\r\nChiropractors treat sciatica with much success and should be the first practitioners to see for this condition. You can also try treatments like massage and stretching for relief, but these therapies will only work on the surrounding muscles, and any relief will very likely be temporary.<span class=\"Apple-converted-space\"> </span>\r\n\r\nIf ligaments are weakened, the muscles will be going into spasm, because muscles spasm in an effort to stabilize the area that is currently unstable due to the ligament injury. Muscle-strengthening may be of benefit, but remember that the underlying injury of the ligaments needs to be addressed. Regenerative Orthopedic treatments, such as Prolotherapy or PRP, are great options for addressing ligament injuries and are effective at repairing and strengthening these types of soft tissue injuries.\r\n\r\nNon-steroidal anti-inflammatory drugs (NSAIDs) are frequently used, but they are not reparative. So when you reach for an aspirin, Advil, or some other over-the-counter NSAID pain reliever, know that this is not a fix. Your physician may recommend prescription NSAID’s, but again, NSAID’s do not repair the injury. They may give you some relief, but they will not fix the underlying problem or heal the injury. If sciatica symptoms do not resolve on their own and the pain continues, a cortisone injection may be recommended by your physician. Epidural cortisone injections may reduce the size of stressed nerve roots, but they do have side effects. Studies have shown that cortisone causes tissue like the ligaments to grow weaker. So, if weak tissue is the source of the problem, to begin with, then why use something that may make the problem worse? Instead, the spinal instability that is allowing the vertebral segments to move excessively needs to be addressed, so the pain can stop!\r\n\r\nHave you tried painkillers and found no lasting relief? Until the source of the problem is addressed, you may find yourself exhausted and frustrated at the failure of various therapies to provide long-lasting relief and treatments that are ineffective at relieving lumbar radiculopathy and the sciatica symptoms. Are antidepressants and anticonvulsants being recommended? Although you may be depressed because of unending pain, good chance depression is not the source of your back pain. And what about the use of anticonvulsants to treat sciatica? In a 2018 article in the Journal of the American Medical Association (JAMA), the writers note that the commonly used anticonvulsant medication for sciatica called “pregabalin does not improve symptoms of sciatica but frequently has adverse effects.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a> If you have exhausted conservative care options, have progressed to stronger medications like painkillers, antidepressants, and anticonvulsants, and are possibly facing the recommendations of surgery, it is time to look into a solution that actually repairs the injury. Regenerative Orthopedics can provide an effective option that results in relief and repair while utilizing a non-surgical solution for those with persistent sciatica symptoms and lumbar radiculopathy.\r\n\r\n<strong>What if Surgery Has Been Recommended?</strong>\r\n\r\nIf you are facing surgery for relief from your symptoms, minimally invasive spine surgery may be the surgery you are considering. Surgery may give you relief. However, studies have shown that although there may be a rapid decrease in pain and disability after a few months, years down the road patients still experience mild to moderate pain post-surgery.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n\r\n<strong>Regenerative Orthopedics to Strengthen Spinal Instability and Relieve Sciatica Symptoms</strong>\r\n\r\nWhy choose surgery and treatments with side effects and which also lack benefit when there is another option? Choose the path that actually repairs the injury and solves the problem. Regenerative Orthopedics is non-surgical, plus it is effective. At OrthoRegen, we treat all of the involved areas of the low back including the injured ligaments and their attachments to stimulate the body’s own natural healing process. The treatment boosts the blood supply to the injured areas, which brings reparative cells to the ligaments so they can heal. Remember that when the ligaments are weak, they allow for too much movement of the vertebrae, and a nerve can get pinched. Regenerative Orthopedic treatments to these areas strengthen and tighten the ligaments, which will stabilize the lumbar spine, stop the excessive movement, and repair the underlying problem. The result is pain relief. Regenerative Orthopedics is effective at bringing pain relief and return to function for those suffering from sciatica symptoms and lumbar radiculopathy.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Morgan DJ, Dhruva SS, Coon ER, Wright SM, Korenstein D. 2018 Update on Medical Overuse. JAMA Internal Medicine. 2018 Dec 3.  [<a href=\"https://jamanetwork.com/journals/jamainternalmedicine/article-abstract/2717505\">JAMA</a>]\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Machado GC, Witzleb AJ, Fritsch C, Maher CG, Ferreira PH, Ferreira ML. Patients with sciatica still experience pain and disability 5 years after surgery: A systematic review with meta-analysis of cohort studies. Eur J Pain. 2016 May 12.[<a href=\"https://scholar.google.com/scholar?cluster=1973126208637694796&amp;hl=en&amp;as_sdt=0,31\">Google Scholar</a>]\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Relief from Sciatica Symptoms','','inherit','closed','closed','','2555-revision-v1','','','2020-05-14 20:32:58','2020-05-14 20:32:58','',2555,'https://www.drfields.com/uncategorized/2555-revision-v1/',0,'revision','',0),(3728,8,'2020-05-14 20:33:17','2020-05-14 20:33:17','<b>Is Surgery a Good Option for Meniscus Tears?</b>\r\n\r\n<span style=\"font-weight: 400;\">Meniscal tears are quite common. So much so, that they are one of the most common injuries to the knee. Meniscal injuries are routinely treated with surgery, and many with meniscus injuries end up receiving some form of meniscectomy. Nearly 700,000 arthroscopic partial meniscectomies are performed annually in the US, at an estimated annual cost of $4 billion.</span><span style=\"font-weight: 400;\">  Is surgery of this type an effective way to treat meniscal injuries? Believe it or not, research show that it is not! Several studies question the effectiveness of this procedure. One study found that almost half of patients who received non-operative treatment with </span><span style=\"font-weight: 400;\">nonsteroidal anti-inflammatory drugs </span><span style=\"font-weight: 400;\">improved well enough to avoid surgery.</span> <span style=\"font-weight: 400;\">Three other studies compared arthroscopic meniscectomies with sham surgeries. A sham surgery is a faked surgical intervention that omits the step necessary for the surgery to be therapeutic. What were the results?  They found no significant difference between meniscectomy and sham surgery, and they did not find meniscectomies to be effective.</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\"> The most recent study, showed the surgery did not reduce the mechanical symptoms of knee catching and locking</span><span style=\"font-weight: 400;\">.</span><span style=\"font-weight: 400;\"> As you can see, the effectiveness of meniscectomies is questionable. </span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>If Meniscus Surgeries Are Ineffective, Then Why Are They Done?</b>\r\n\r\n<span style=\"font-weight: 400;\">Patients usually believe the surgery will help their knee to function better and lessen the pain they are experiencing. When the knee locks and catches randomly, people want that to stop, especially since knee locking can be painful. If the person with these symptoms is an athlete, they want to get back to their sport quickly, and they think surgery is going to make that happen. People generally think that surgery can get them back to work or play sooner than going through physical therapy or other treatment options. But evidence and research does not back this way of thinking. In fact, many patients are worse off after the surgery.</span>\r\n\r\n<b>If You Want to Keep Your Knee Intact, Then Keep Your Meniscus!</b>\r\n\r\n<span style=\"font-weight: 400;\">When part of the knee, like the meniscus, is removed, the knee is unable to function normally. Removing the meniscus makes the knee unstable. The instability leads to the development of more knee problems. The joint instability that arises after removal of the meniscus negatively affects the interplay between the other structures of the knee, because extra stress is placed on them. When more stress is placed on the cartilage, degeneration is accelerated, boosting the arthritic process. More stress is also placed on the various ligaments and tendons supporting the knee, eventually damaging them and leading to the breakdown of the knee joint and irreversible joint damage. It has been proven in studies that new onset instability is demonstrated after partial meniscectomy,</span><span style=\"font-weight: 400;\">,</span><span style=\"font-weight: 400;\"> with significant rates of cartilage loss transpiring after both partial and complete meniscectomy, and that these procedures lead to degenerative arthritis and ligament injury in the knee. </span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">,</span><span style=\"font-weight: 400;\"> And this information is not new! Adverse effects associated with meniscectomy have been documented in the literature going as far back as </span><span style=\"font-weight: 400;\">1923.</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">, </span><i><span style=\"font-weight: 400;\">,</span></i>\r\n\r\n<b>Regenerative Orthopedics Effectively Repairs Meniscus Tears Non-Surgically</b>\r\n\r\n<span style=\"font-weight: 400;\">Given the accumulation of evidence </span><span style=\"font-weight: 400;\">t</span><span style=\"font-weight: 400;\">hat demonstrates not only the overwhelming lack of efficacy and benefit, but also the risk of serious adverse effects of this widely used procedure for meniscus tears, it is important to consider potential safe and effective alternatives. Regenerative Orthopedics is a non-surgical solution, used to effectively treat knee injuries such as meniscus tears, as well as other soft tissue injuries like ligaments and tendons.</span><span style=\"font-weight: 400;\">, </span> <span style=\"font-weight: 400;\">Regenerative Orthopedic treatments work by initiating the inflammatory stage of the healing process, raising the levels of growth factors, and initiating repair. The treatments stimulate new cell growth and rebuild depleted tissue, including the regeneration of cartilage.</span>\r\n\r\n<span style=\"font-weight: 400;\">In certain cases, Platelet Rich Plasma may be utilized. This involves injection of your own blood components to facilitate the healing of tissue that has degenerated. Platelets are the storehouses of growth factors, and platelet rich plasma is abundant in growth factors, capable of stimulating healing of the injured tissue.</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedic treatments can safely and effectively treat meniscus tears without the need for surgery, returning you quickly to the activities and sports you enjoy.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Is Surgery a Good Option for Meniscus Tears?','','inherit','closed','closed','','2503-revision-v1','','','2020-05-14 20:33:17','2020-05-14 20:33:17','',2503,'https://www.drfields.com/uncategorized/2503-revision-v1/',0,'revision','',0),(3729,8,'2020-05-14 20:33:37','2020-05-14 20:33:37','<b>Suffering from Headaches? The Problem May Come From Your Neck.</b>\r\n\r\n<span style=\"font-weight: 400;\">Headaches are a recurrent malady suffered by millions of Americans, causing pain and discomfort in the head, forehead, scalp, or neck. At times they are a mild nuisance, but headaches can become severe, even disabling, with the pain leading to difficulty at work, concentration and performance of daily activities. </span>\r\n\r\n<b>What is the Source of Headaches?</b>\r\n\r\n<b><i>Hormones</i></b>\r\n\r\n<span style=\"font-weight: 400;\">Headaches have different sources, and the causative factors require some investigation. Hormones might be the culprit. Women may experience headaches during the menstrual cycle due to shifts in hormone levels. When this is the case there may be a need to balance the hormones, because the woman could have too much estrogen and not enough progesterone.</span>\r\n\r\n<i><span style=\"font-weight: 400;\">Diet </span></i>\r\n\r\n<span style=\"font-weight: 400;\">Headache pain can often be </span><span style=\"font-weight: 400;\">corrected with diet. Food allergies or sensitivities can trigger headaches. Eating too many carbohydrates and not enough protein, for example, can alter blood chemistry, which can prompt a headache or foster problems with the hormonal system, which can again lead to headaches.</span>\r\n\r\n<i><span style=\"font-weight: 400;\">TMJ Syndrome</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Temporomandibular</span><span style=\"font-weight: 400;\"> joint (TMJ) problems may contribute to headaches</span><span style=\"font-weight: 400;\">. Sufferers with TMJ have clicking at this joint, experience facial pain, and may notice a stiff mouth upon awakening after a night’s sleep, all of which can then lead to a headache. TMJ syndrome, which often includes headaches, requires stabilization of the TMJ joint and ligament. Bite problems may also be present, necessitating bite equilibration.</span>\r\n\r\n<b>The Neck as the Source of Headaches</b>\r\n\r\n<span style=\"font-weight: 400;\">It is not uncommon for the source of headaches to originate in the neck. Do you have neck pain before or during a headache? If you have neck pain followed by a tension or migraine headache, then the source of the headache may very well be coming from your neck. The most common neck problem producing headaches is injury to the ligaments in the neck. How do you know if you have ligament injury in your neck? You will hear grinding, crunching, and popping sounds when you turn your neck. There is also a high probability that you crack your neck often. Injured ligaments generate instability in the neck, which induces muscle spasms in the neck as the muscles attempt to stabilize it. The result is referral pain in the form of a tension headache in the forehead, back of the neck, or occiput. </span>\r\n\r\n<i><span style=\"font-weight: 400;\">Cervicocranial Syndrome or </span></i><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><i><span style=\"font-weight: 400;\">Barré-Liéou</span></i></a><i><span style=\"font-weight: 400;\"> Syndrome</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Cervicocranial Syndrome, previously known as </span><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><span style=\"font-weight: 400;\">Barré-Liéou</span></a><span style=\"font-weight: 400;\"> Syndrome is a condition that causes a bunch of s</span><span style=\"font-weight: 400;\">ymptoms. The symptoms may include headache, dizziness, facial pain, ear pain, vertigo, tinnitus, loss of voice,</span> <span style=\"font-weight: 400;\">hoarseness, neck pain and severe fatigue. Instability of the neck or cervical spine is usually the source of these symptoms.</span><span style=\"font-weight: 400;\"> Neck instability involves increased motion between adjacent vertebrae which causes excessive stress on the supporting ligament structures and the nerve endings within those structures eliciting pain and a variety of symptoms.</span> <span style=\"font-weight: 400;\">In other words</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">neck instability causes extra movement in the neck bones, and this extra motion can cause the bones to push on the nerves and cause irritation of the nervous system, leading to headaches and a bunch of other symptoms. </span>\r\n\r\n<i><span style=\"font-weight: 400;\">Occipital Neuralgia</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Occipital neuralgia is another headache causing condition related to neck instability. Those with this condition often experience sharp, stabbing pain in the lower part of the neck, the back of the head, and behind their eyes. The pain is typically one-sided. The occipital nerve, which runs at the back of the head, can cause severe pain when injured. Many folks get nerve blocks for this pain, but these are not always effective at resolving the pain. Any instability of C1, C2, the first two neck vertebrae, can pinch or irritate the occipital nerve, and the extra motion along the spine can kink, press and tighten on the nerves at the base of the skull. Neck instability symptoms include tenderness, clicking, grinding and popping in the back of the head. </span>\r\n\r\n<i><span style=\"font-weight: 400;\">Whiplash</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Headaches can occur after whiplash injuries. During a whiplash injury the head flexes and extends, in a forward and backward whip that injures the neck ligaments. </span><span style=\"font-weight: 400;\">Whiplash injuries are a common source of neck instability.</span> <span style=\"font-weight: 400;\">The lack of stable neck vertebrae can lead to further injury of the soft tissue and joint structures, as well as the possibility of nerve injury and the irritation of the nervous system, which can result in headaches and other symptoms. Whiplash often results in long-term pain, which is due to ligament injury and malalignment of the neck vertebrae.</span>\r\n\r\n<b>Regenerative Orthopedics Repairs Neck Instability</b>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics involve the injection of natural substances into the damaged ligaments, which then results in tightening, repair and regeneration of the ligaments involved in TMJ and  neck instability. The treatments stabilize the area, thus eliminating the instability, muscle spasms and associated neck and jaw pain and other related symptoms. For those who are tired of the disability and pain of severe headaches, and other conditions related to neck instability, Regenerative Orthopedics is a safe, non-surgical option that stops headache pain, decreases symptoms, and increases functionality in otherwise life-altering conditions.</span>\r\n\r\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/EKGWkEAaqTM\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Suffering from Headaches? The Problem May Come From Your Neck.','','inherit','closed','closed','','2501-revision-v1','','','2020-05-14 20:33:37','2020-05-14 20:33:37','',2501,'https://www.drfields.com/uncategorized/2501-revision-v1/',0,'revision','',0),(3730,8,'2020-05-14 20:33:59','2020-05-14 20:33:59','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">\r\n\r\nRegenerative, non-surgical treatments for painful hip conditions and arthritis have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results. Regenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">. </span>Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.\r\n\r\n[caption id=\"attachment_2198\" align=\"alignleft\" width=\"400\"]<img class=\"wp-image-2198 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/labral-tear-400x500.png\" alt=\"Labral Tear\" width=\"400\" height=\"500\" /> <em>Hip Labral Tear</em>[/caption]\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<h2>The Hip and Labrum</h2>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">          The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. The hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis. But we move our hips a lot and put them through high rates of wear, so more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injur<span class=\"pg-1fc2 pg-1sc0\">y</span><span class=\"pg-1ff3 pg-1fs2 pg-1fc1\">.</span></div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">          The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. Labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries. Symptoms include varying degrees of pain, including pain deep in the groin, as well as clicking, popping, and a locking sensation in the hip joint. A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area. Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight distribution inside the joint, prompting the joint surfaces to rub roughly and then generating a breaking down of articular cartilage, which limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<div></div>\r\n<h2>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</h2>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y1d pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">          Regenerative Orthopedics aims to address the soft tissue weakness that transpired during the original injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred. The labrum has a poor blood supply, which makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability. Physical therapy can help strengthen the surrounding muscles, but cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">          Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and reduces pain and symptoms. Degenerative conditions, such as hip labral injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries and involves the injection of natural substances into the degenerated hip to stimulate healing. Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed, especially in very active people and athletes. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow), which is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">          Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable and will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration. Most painful hip conditions begin with damage to the surrounding ligaments and progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Hip Labral Tears and Non-Surgical Repair with Regenerative Orthopedics','','inherit','closed','closed','','2362-revision-v1','','','2020-05-14 20:33:59','2020-05-14 20:33:59','',2362,'https://www.drfields.com/uncategorized/2362-revision-v1/',0,'revision','',0),(3731,8,'2020-05-15 22:51:35','2020-05-15 22:51:35','','iwp_log_5ebf1cf72479a','','publish','closed','closed','','iwp_log_5ebf1cf72479a','','','2020-05-15 22:51:35','2020-05-15 22:51:35','',0,'https://www.drfields.com/uncategorized/iwp_log_5ebf1cf72479a/',0,'iwp_log','',0),(3732,8,'2020-05-27 15:51:12','2020-05-27 15:51:12','','iwp_log_5ece8c70ecb20','','publish','closed','closed','','iwp_log_5ece8c70ecb20','','','2020-05-27 15:51:12','2020-05-27 15:51:12','',0,'https://www.drfields.com/uncategorized/iwp_log_5ece8c70ecb20/',0,'iwp_log','',0),(3734,9,'2021-03-22 22:57:40','2021-03-22 22:57:40','<h3>Exercise Provides Health Benefits</h3>\n[caption id=\"attachment_4578\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4578 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Spinning-class-500x500.png\" alt=\"Exercise Is Good for You\" width=\"500\" height=\"500\" /> <strong>                                 Exercise Provides Heath Benefits</strong>[/caption]\n\nWe all know that 30 minutes per day of strenuous exercise provides health benefits.  And studies show that higher levels of physical activity are linked to a remarkable number of health benefits. Recent <a href=\"https://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2019.305443\">Federal guidelines</a> from the Department of Health and Human Services1 have even made this official.1\n\nExercise also improves cognitive functioning, mental health, and memory; plus, it hinders the development of certain neurological conditions.2\n\nThe real question for most of us is how to find the time to exercise regularly and consistently. All we have is 24 hours each day to get done all the things we need to get done. Exercising often takes a back seat to work, shopping, cooking, cleaning, getting the kids ready for school, and ready for bed. And all of the other million-and-one little details that demand our attention every day.\n<h3>Finding the Time to Exercise</h3>\nMost of us have the motivation to exercise. We know exercise provides health benefits. Therefore, we want to do it and understand it\'s good for us. But when can we fit it in? A few hardy souls bite the bullet and get up at 5:00 AM - making more time in the day by getting less sleep. Others exercise at the end of a long day. But sometimes that\'s stressful and counterproductive. However they do it, many people make real efforts to exercise a few times each week.\n\nMost likely, over time,  our good intentions get stymied by our daily concerns. Moreover, deadlines and scheduling take precedence. And the most easy-to-jettison item on our to-do list, exercise, gets lost in the process. And, sooner rather than later, we\'re back to not exercising at all. Public health experts and policymakers have been struggling, too, with this apparent no-win situation.\n<h3>Short Bursts of Exercise Provides Health Benefits Too</h3>\nThe outcome is brand-new recommendations relating to short bursts of activity during the day. These three- to five-minute bursts have been studied and shown to provide real health benefits to real people under real-world circumstances.3\n\nInstead of taking coffee breaks at work, people are beginning to take activity breaks. And three to five minutes of climbing office building stairs or brisk walking outside the building or a quick series of calisthenics are all it takes. Six to ten such breaks fulfills the daily requirement of 30 minutes of exercise. Above all, no separately scheduled exercise time is necessary.\n\nYou\'re already at work, you\'re already taking breaks. So, the breaks become exercise breaks. And you get your exercise done. And you feel great for the entire day, due to bursts of endorphins occurring throughout the day.\n\nThese bursts of activity are also ideal for people working at home. Plus, they work for school children too. Studies in schools are showing increased attention spans and increased learning as a result of short bursts of intense physical activity.\n\nEveryone can do this. And everyone can have a workable system for getting the exercise they need.\n<h3><strong>Lean Muscle Mass</strong></h3>\nWe often hear that building \"lean muscle mass\" is one of the key benefits of strenuous exercise. The human body adapts to environmental stresses. And building lean muscle mass is an important adaptation. Moreover, lean muscle mass is a metabolic furnace. Muscle cells are high-energy cells that actually burn calories when your body is at rest.\n\nYour internal thermostat is turned up owing to your increased amount of lean muscle mass. And so you burn fat to fulfill these increased energy needs.\n\nLean muscle mass is not only energy-efficient, but it is also much more shapely than the pounds of fat it replaces. Lean muscle mass creates long lines, outlines, and bulk along your arms, torso, and legs. The result is a supple, shapely body, filled with energy and purpose.\n\n1Pate, Russell R., James F. Sallis, and Keshia M. Pollack Porter. \"Surveillance of Physical Activity: Actions Needed to Support New Federal Guidelines.\" (2020).\n\n2Much, How, and How Often is it Recommended. \"10 Neurological Benefits of Exercise.\" <i>Image</i> 10 (2020): 08-01.\n\n3Stamatakis, Emmanuel, et al. \"Untapping the Health Enhancing Potential of Vigorous Intermittent Lifestyle Physical Activity (VILPA): Rationale, Scoping Review, and a 4-Pillar Research Framework.\" <i>Sports Medicine</i> (2020): 1-10.\n\n3Vallance JK, et al: Maintenance of physical activity in breast cancer survivors after a randomized trial. Med Sci Sports Exerc 40(1):173-180, 2008.\n\n4Heckman GE, McKelvie RS: Cardiovascular aging and exercise in healthy older adults. Clin J Sport Med 18(6):479-485, 2008','Exercise Provides Health Benefits For All Ages','','inherit','closed','closed','','1518-autosave-v1','','','2021-03-22 22:57:40','2021-03-22 22:57:40','',1518,'https://www.drfields.com/uncategorized/1518-autosave-v1/',0,'revision','',0),(3735,9,'2020-06-03 20:36:47','2020-06-03 20:36:47','<img class=\"alignleft size-full wp-image-1183\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Exercise-Energy.jpg\" alt=\"Exercise Energy\" width=\"200\" height=\"285\" />We all know that 30 minutes per day of strenuous exercise will provide many health benefits. Recent Federal guidelines from the Department of Health and Human Services1 have even made this official.\r\n\r\nExercise also improves cognitive functioning, mental health, and memory; plus, it hinders the development of certain neurological conditions.1\r\n\r\nThe real question for most of us is how to find the time to exercise regularly and consistently. All we have is 24 hours each day to get done all the things we need to get done. Exercising often takes a back seat to work, shopping, cooking, cleaning, getting the kids ready for school and ready for bed, and all the other million-and-one little details that demand our attention every day.\r\n\r\nMost of us have the motivation to exercise- we want to do it and we know it\'s important and good for us. But when to fit it in? A few hardy souls bite the bullet and get up at 5:00 AM - making more time in the day by getting less sleep. Others exercise at the end of a long day, but sometimes that\'s stressful and counterproductive. However they do it, many people make real efforts to exercise a few times each week.\r\n\r\nMost likely - over time - our good intentions get stymied by our daily concerns. Deadlines and scheduling take precedence and the most easy-to-jettison item on our to-do list - exercise - gets lost in the process. And sooner rather than later we\'re back to not exercising at all. Public health experts and policymakers have been struggling, too, with this apparent no-win situation.\r\n\r\nThe outcome is brand-new recommendations relating to short bursts of activity during the day. These three- to five-minute bursts have been studied and shown to provide real health benefits to real people under real-world circumstances.\r\n\r\nInstead of taking coffee breaks at work, people are beginning to take activity breaks. Three to five minutes of climbing office building stairs or brisk walking outside the building or a quick series of calisthenics are all it takes. Six to ten such breaks fulfills the daily requirement of 30 minutes of exercise. No separately scheduled exercise time is necessary. You\'re already at work, you\'re already taking breaks. So the breaks become exercise breaks. And you get your exercise done. And you feel great for the entire day, due to bursts of endorphins occurring throughout the day.\r\n\r\nThese bursts of activity are also ideal for people working at home, as well as for school children. Studies in schools are showing increased attention spans and increased learning as a result of short bursts of intense physical activity.\r\n\r\nEveryone can do this; everyone can have a workable system for getting the exercise they need.\r\n\r\n<strong>Lean Muscle Mass</strong>\r\n\r\nWe often hear that building \"lean muscle mass\" is one of the key benefits of strenuous exercise. The human body adapts to environmental stresses, and building lean muscle mass is an important adaptation. Lean muscle mass is a metabolic furnace - muscle cells are high-energy cells that actually burn calories when your body is at rest.\r\n\r\nYour internal thermostat is turned up owing to your increased amount of lean muscle mass, and so you burn fat to fulfill these increased energy needs.\r\n\r\nLean muscle mass is not only energy-efficient, but it is also much more shapely than the pounds of fat it replaces. Lean muscle mass creates long lines, outlines, and bulk along your arms, torso, and legs. The result is a supple, shapely body, filled with energy and purpose.\r\n\r\n1Much, How, and How Often is it Recommended. \"10 Neurological Benefits of Exercise.\" <i>Image</i> 10 (2020): 08-01.\r\n\r\n2U.S. Department of Health and Human Services: Physical Activity Guidelines for Americans. Washington, DC, DHHS, 2008.\r\n\r\n3Vallance JK, et al: Maintenance of physical activity in breast cancer survivors after a randomized trial. Med Sci Sports Exerc 40(1):173-180, 2008.\r\n\r\n4Heckman GE, McKelvie RS: Cardiovascular aging and exercise in healthy older adults. Clin J Sport Med 18(6):479-485, 2008','Bursts of Activity, Learn How Exercise Can Give You Energy','','inherit','closed','closed','','1518-revision-v1','','','2020-06-03 20:36:47','2020-06-03 20:36:47','',1518,'https://www.drfields.com/uncategorized/1518-revision-v1/',0,'revision','',0),(3736,8,'2020-06-10 16:50:47','2020-06-10 16:50:47','','iwp_log_5ee10f67f34b4','','publish','closed','closed','','iwp_log_5ee10f67f34b4','','','2020-06-10 16:50:47','2020-06-10 16:50:47','',0,'https://www.drfields.com/uncategorized/iwp_log_5ee10f67f34b4/',0,'iwp_log','',0),(3737,8,'2020-06-10 16:50:58','2020-06-10 16:50:58','','iwp_log_5ee10f7228c42','','publish','closed','closed','','iwp_log_5ee10f7228c42','','','2020-06-10 16:50:58','2020-06-10 16:50:58','',0,'https://www.drfields.com/uncategorized/iwp_log_5ee10f7228c42/',0,'iwp_log','',0),(3742,9,'2020-06-21 22:14:41','2020-06-21 22:14:41','Kelsey. Knee.stems Copy','Kelsey. Knee.stems Copy','Kelsey. Knee.stems Copy','inherit','open','closed','','kelsey-knee-stems-copy','','','2020-06-21 22:15:16','2020-06-21 22:15:16','',3526,'https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy.png',0,'attachment','image/png',0),(3743,9,'2020-08-08 23:08:03','2020-08-08 23:08:03','[caption id=\"attachment_3742\" align=\"alignleft\" width=\"392\"]<img class=\" wp-image-3742\" src=\"https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png\" alt=\"Kelsey. Knee.stems Copy\" width=\"392\" height=\"392\" /> <a href=\"https://youtu.be/jhN7D30YcYI\">Click to Watch Video about Stem Cell Therapy</a>[/caption]\n<p style=\"text-align: left;\">At OrthoRegen<sup>®</sup>, the Stem Cell Therapy we use for injuries to the joints and spine is The Gold Standard for stem cell regeneration. What makes it the Gold Standard? We don’t use just one type of regenerative therapy but use four different kinds of Regenerative Orthopedics. And that helps you to avoid invasive surgery.</p>\n<p style=\"text-align: left;\">Many other clinics only use one or two of these procedures. But, not all four. We use bone marrow stem cells as well as adipose (fat) stem cells. We also use <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate healing. In addition, we use <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. And without it, failure rates are high.</p>\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is what is referred to as <em>The Gold Standard for stem cell regeneration</em>. And when is the Gold Standard recommended? We choose to use this procedure in various different circumstances. Examples include cases where people have been told they either need their joint replaced, have bone-on-bone, advanced arthritis, cartilage loss, or a combination of these.\n\nIn this article, we would like to discuss Stem Cell Therapy for the regeneration of a degenerated joint. The goal of this treatment, as with all forms of Regenerative Orthopedics, is to stimulate injured tissues to repair.\n<h2><strong>What Is the Basis Behind Stem Cell Therapy?</strong></h2>\nIn conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. And with arthritis, the joint is in a <em>state where it is breaking down</em>. What we want to do with Stem Cell Therapy is to get the joint in a state of <em>building up. </em>When we use this treatment, we stimulate the body to repair the area to get it stronger. Stem Cell Therapy probably works by a lot of different mechanisms but here are some proposed mechanisms:\n<ul>\n 	<li>Reduces the instability in the joint that leads to arthritis in the first place</li>\n 	<li>Stimulates the growth of the cells (extracellular matrix) that make the tissues that are causing the ongoing pain and/or instability</li>\n 	<li>Stimulates the cells already present to make extracellular matrix</li>\n 	<li>The cells that help to build cartilage are called chondrocytes. Stem Cell Therapy involves the injections of the precursor cells (stem cells) that will differentiate into adult chondrocytes</li>\n</ul>\nWhile the exact mechanisms by which Stem Cell Therapy works can be debated, the bottom line for the patient is,<strong> <em>“Do I get rid of my pain and get back to the activities I desire?”</em> In the majority of cases, the answer is, “<em>Yes!</em>”</strong>\n<h2><strong>Conditions That Can Be Treated with Stem Cell Therapy</strong></h2>\nAny condition helped by one type of Regenerative Orthopedics (Stem Cell Therapy, PRP, Prolotherapy) can, at least theoretically, be helped by another type of Regenerative Orthopedics. While Stem Cell Therapy is typically not used for ligament and tendon injuries, it surely can be used for those conditions.\n\nMost clinics, including OrthoRegen<sup>®</sup>, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those who are involved in treating people with articular cartilage degeneration or joint injury know that the vast majority of them improve when these patients are treated with Stem Cell Therapy.\n<h2><strong>Adult Stem Cell Injections, NOT Embryonic Stem Cell Injections</strong></h2>\nThe Stem Cell Therapy done at OrthoRegen<sup>®</sup> has nothing to do with embryonic stem cell therapy. Most research and studies have shown that cord blood does <strong>NOT</strong> have many if any, stem cells.\n\nWe only use the patient’s own adult stem cells. We take the bone marrow from the patient’s own tibia or iliac crest bones. And then use fat from the abdominal or buttock areas so that the stem cells are the freshest. Additionally, there is no cross-contamination this way! We then inject these cells into the defective joint.\n<h2>Why Do We Use PRP with Stem Cells from Bone Marrow and Fat?</h2>\nAt OrthoRegen<sup>®</sup>, we only use the <strong>Gold Standard in Stem Cell Therapy. The Gold Standard</strong> includes bone marrow stem cells, fat stem cells, PRP, and Dextrose Prolotherapy. Stem cells are great, but they need to be directed as to what to do. Some of the directors are the growth factors that are in the platelets.\n\nPlatelets aid the stem cells in their various jobs including differentiation and then aid in the differentiated cells making the extracellular matrix to repair the injured tissue. One could think of the stem cells as construction workers and the platelets (and their growth factors) as their supervisors, telling them what to do. Platelet Rich Plasma contains a myriad of substances that stimulate healing, like platelet-derived growth factor, which attracts immune system cells to the injured area to enhance ligament and tendon healing. And fibroblast growth factor which promotes the growth of the cells involved in collagen and cartilage formation.\n\nWe have found that Comprehensive Regenerative Orthopedics using the combination of all of these regenerative treatments works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\n<ol>\n 	<li>Akens MK, Hurtig MB. Influence of species and anatomical location on chondrocyte expression. <em>BMC Musculoskeletal Disorders</em>. 2005; 6:23.</li>\n 	<li>Guilak F, Estes BT, Dickman BO. 2010 Nicolas Andry Award: Multipotent adult stem cells from adipose tissue for musculoskeletal tissue engineering. <em>Clinical</em><em> Orthopedics and Related Research. 2010;468:2530-2540.</em></li>\n</ol>\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Stem Cell Therapy at OrthoRegen: Why We\'re Different','','inherit','closed','closed','','3526-autosave-v1','','','2020-08-08 23:08:03','2020-08-08 23:08:03','',3526,'https://www.drfields.com/uncategorized/3526-autosave-v1/',0,'revision','',0),(3744,9,'2020-06-21 22:19:28','2020-06-21 22:19:28','[caption id=\"attachment_3742\" align=\"alignleft\" width=\"387\"]<img class=\" wp-image-3742\" src=\"https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png\" alt=\"Kelsey. Knee.stems Copy\" width=\"387\" height=\"387\" /> <a href=\"https://youtu.be/jhN7D30YcYI\">Click to Watch Video</a>[/caption]\r\n<p style=\"text-align: center;\">At OrthoRegen, the Stem Cell technique we use for injuries to the joints and spine is The Gold Standard for stem cell regeneration. We don’t use just one type of regenerative therapy but use four different kinds of Regenerative Orthopedics to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four. We use bone marrow stem cells as well as adipose (fat) stem cells. We also use <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing. In addition, we use <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. Without it, failure rates are high.</p>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is referred to as The Gold Standard for stem cell regeneration. We choose to use this procedure in cases where people have been told they either need their joint replaced, have bone-on-bone, advanced arthritis, cartilage loss, or a combination of these.\r\n\r\nIn this article, we would like to discuss Stem Cell Therapy for the regeneration of a degenerated joint. The goal of Stem Cell Therapy, as with all forms of Regenerative Orthopedics, is to stimulate injured tissues to repair.\r\n<h2><strong>What Is the Basis Behind Stem Cell Therapy?</strong></h2>\r\nIn conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. The joint is in a <em>state where it is breaking down</em>. What we want to do with Stem Cell Therapy is to get the joint in a state of <em>building up. </em>When we use Stem Cell Therapy, we are stimulating the body to repair the area to get it stronger. Stem Cell Therapy probably works by a lot of different mechanisms but here are some proposed mechanisms:\r\n<ul>\r\n 	<li>Reduces the instability in the joint that leads to arthritis in the first place</li>\r\n 	<li>Stimulates the growth of the cells (extracellular matrix) that make the tissues that are causing the ongoing pain and/or instability</li>\r\n 	<li>Stimulates the cells already present to make extracellular matrix</li>\r\n 	<li>The cells that help to build cartilage are called chondrocytes. Stem Cell Therapy involves the injections of the precursor cells (stem cells) that will differentiate into adult chondrocytes</li>\r\n</ul>\r\nWhile the exact mechanisms by which Stem Cell Therapy works can be debated, the bottom line for the patient is,<strong> <em>“Do I get rid of my pain and get back to the activities I desire?”</em> In the majority of cases, the answer is, “<em>Yes!</em>”</strong>\r\n<h2><strong>Conditions That Can Be Treated with Stem Cell Therapy</strong></h2>\r\nAny condition that is helped by one type of Regenerative Orthopedics (Stem Cell Therapy, PRP, Prolotherapy) can at least theoretically be helped by another type of Regenerative Orthopedics. While Stem Cell Therapy is typically not used for ligament and tendon injuries, it surely can be used for those conditions. Most clinics, including OrthoRegen, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those who are involved in treating people with articular cartilage degeneration or joint injury know that when these patients are treated with Stem Cell Therapy, the vast majority of them improve.\r\n<h2><strong>Adult Stem Cell Injections, NOT Embryonic Stem Cell Injections</strong></h2>\r\nThe Stem Cell Therapy done at OrthoRegen has nothing to do with embryonic stem cell therapy. Most research and studies have shown that cord blood does <strong>NOT</strong> have many if any, stem cells. We only use the patient’s own adult stem cells. We take the bone marrow from the patient’s own tibia or iliac crest bones and use fat from the abdominal or buttock areas so that the stem cells are the freshest. Additionally, there is no cross-contamination this way! We then inject these cells into the defective joint.\r\n<h2>Why Do We Use PRP with Stem Cells from Bone Marrow and Fat?</h2>\r\nAt OrthoRegen, we only use the <strong>Gold Standard in Stem Cell Therapy</strong>, which includes bone marrow stem cells, fat stem cells, PRP, and Dextrose Prolotherapy. Stem cells are great, but they need to be directed as to what to do. Some of the directors are the growth factors that are in the platelets. Platelets aid the stem cells in their various jobs including differentiation and then aid in the differentiated cells making the extracellular matrix to repair the injured tissue. One could think of the stem cells as construction workers and the platelets (and their growth factors) as their supervisors, telling them what to do. Platelet Rich Plasma contains a myriad of substances that stimulate healing, like platelet-derived growth factor, which attracts immune system cells to the injured area to enhance ligament and tendon healing. And fibroblast growth factor which promotes the growth of the cells involved in collagen and cartilage formation.\r\n\r\nWe have found that Comprehensive Regenerative Orthopedics using the combination of all of these regenerative treatments works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\r\n<ol>\r\n 	<li>Akens MK, Hurtig MB. Influence of species and anatomical location on chondrocyte expression. <em>BMC Musculoskeletal Disorders</em>. 2005; 6:23.</li>\r\n 	<li>Guilak F, Estes BT, Dickman BO. 2010 Nicolas Andry Award: Multipotent adult stem cells from adipose tissue for musculoskeletal tissue engineering. <em>Clinical</em><em> Orthopedics and Related Research. 2010;468:2530-2540.</em></li>\r\n</ol>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Stem Cell Therapy at OrthoRegen - Why We are Different','','inherit','closed','closed','','3526-revision-v1','','','2020-06-21 22:19:28','2020-06-21 22:19:28','',3526,'https://www.drfields.com/uncategorized/3526-revision-v1/',0,'revision','',0),(3745,9,'2020-06-21 22:21:19','2020-06-21 22:21:19','[caption id=\"attachment_3742\" align=\"alignleft\" width=\"367\"]<img class=\" wp-image-3742\" src=\"https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png\" alt=\"Kelsey. Knee.stems Copy\" width=\"367\" height=\"367\" /> <a href=\"https://youtu.be/jhN7D30YcYI\">Click to Watch Video</a>[/caption]\r\n<p style=\"text-align: center;\">At OrthoRegen, the Stem Cell technique we use for injuries to the joints and spine is The Gold Standard for stem cell regeneration. We don’t use just one type of regenerative therapy but use four different kinds of Regenerative Orthopedics to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four. We use bone marrow stem cells as well as adipose (fat) stem cells. We also use <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing. In addition, we use <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. Without it, failure rates are high.</p>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is referred to as The Gold Standard for stem cell regeneration. We choose to use this procedure in cases where people have been told they either need their joint replaced, have bone-on-bone, advanced arthritis, cartilage loss, or a combination of these.\r\n\r\nIn this article, we would like to discuss Stem Cell Therapy for the regeneration of a degenerated joint. The goal of Stem Cell Therapy, as with all forms of Regenerative Orthopedics, is to stimulate injured tissues to repair.\r\n<h2><strong>What Is the Basis Behind Stem Cell Therapy?</strong></h2>\r\nIn conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. The joint is in a <em>state where it is breaking down</em>. What we want to do with Stem Cell Therapy is to get the joint in a state of <em>building up. </em>When we use Stem Cell Therapy, we are stimulating the body to repair the area to get it stronger. Stem Cell Therapy probably works by a lot of different mechanisms but here are some proposed mechanisms:\r\n<ul>\r\n 	<li>Reduces the instability in the joint that leads to arthritis in the first place</li>\r\n 	<li>Stimulates the growth of the cells (extracellular matrix) that make the tissues that are causing the ongoing pain and/or instability</li>\r\n 	<li>Stimulates the cells already present to make extracellular matrix</li>\r\n 	<li>The cells that help to build cartilage are called chondrocytes. Stem Cell Therapy involves the injections of the precursor cells (stem cells) that will differentiate into adult chondrocytes</li>\r\n</ul>\r\nWhile the exact mechanisms by which Stem Cell Therapy works can be debated, the bottom line for the patient is,<strong> <em>“Do I get rid of my pain and get back to the activities I desire?”</em> In the majority of cases, the answer is, “<em>Yes!</em>”</strong>\r\n<h2><strong>Conditions That Can Be Treated with Stem Cell Therapy</strong></h2>\r\nAny condition that is helped by one type of Regenerative Orthopedics (Stem Cell Therapy, PRP, Prolotherapy) can at least theoretically be helped by another type of Regenerative Orthopedics. While Stem Cell Therapy is typically not used for ligament and tendon injuries, it surely can be used for those conditions. Most clinics, including OrthoRegen, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those who are involved in treating people with articular cartilage degeneration or joint injury know that when these patients are treated with Stem Cell Therapy, the vast majority of them improve.\r\n<h2><strong>Adult Stem Cell Injections, NOT Embryonic Stem Cell Injections</strong></h2>\r\nThe Stem Cell Therapy done at OrthoRegen has nothing to do with embryonic stem cell therapy. Most research and studies have shown that cord blood does <strong>NOT</strong> have many if any, stem cells. We only use the patient’s own adult stem cells. We take the bone marrow from the patient’s own tibia or iliac crest bones and use fat from the abdominal or buttock areas so that the stem cells are the freshest. Additionally, there is no cross-contamination this way! We then inject these cells into the defective joint.\r\n<h2>Why Do We Use PRP with Stem Cells from Bone Marrow and Fat?</h2>\r\nAt OrthoRegen, we only use the <strong>Gold Standard in Stem Cell Therapy</strong>, which includes bone marrow stem cells, fat stem cells, PRP, and Dextrose Prolotherapy. Stem cells are great, but they need to be directed as to what to do. Some of the directors are the growth factors that are in the platelets. Platelets aid the stem cells in their various jobs including differentiation and then aid in the differentiated cells making the extracellular matrix to repair the injured tissue. One could think of the stem cells as construction workers and the platelets (and their growth factors) as their supervisors, telling them what to do. Platelet Rich Plasma contains a myriad of substances that stimulate healing, like platelet-derived growth factor, which attracts immune system cells to the injured area to enhance ligament and tendon healing. And fibroblast growth factor which promotes the growth of the cells involved in collagen and cartilage formation.\r\n\r\nWe have found that Comprehensive Regenerative Orthopedics using the combination of all of these regenerative treatments works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\r\n<ol>\r\n 	<li>Akens MK, Hurtig MB. Influence of species and anatomical location on chondrocyte expression. <em>BMC Musculoskeletal Disorders</em>. 2005; 6:23.</li>\r\n 	<li>Guilak F, Estes BT, Dickman BO. 2010 Nicolas Andry Award: Multipotent adult stem cells from adipose tissue for musculoskeletal tissue engineering. <em>Clinical</em><em> Orthopedics and Related Research. 2010;468:2530-2540.</em></li>\r\n</ol>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Stem Cell Therapy at OrthoRegen - Why We are Different','','inherit','closed','closed','','3526-revision-v1','','','2020-06-21 22:21:19','2020-06-21 22:21:19','',3526,'https://www.drfields.com/uncategorized/3526-revision-v1/',0,'revision','',0),(3746,9,'2020-06-21 22:21:48','2020-06-21 22:21:48','[caption id=\"attachment_3742\" align=\"alignleft\" width=\"392\"]<img class=\" wp-image-3742\" src=\"https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png\" alt=\"Kelsey. Knee.stems Copy\" width=\"392\" height=\"392\" /> <a href=\"https://youtu.be/jhN7D30YcYI\">Click to Watch Video</a>[/caption]\r\n<p style=\"text-align: center;\">At OrthoRegen, the Stem Cell technique we use for injuries to the joints and spine is The Gold Standard for stem cell regeneration. We don’t use just one type of regenerative therapy but use four different kinds of Regenerative Orthopedics to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four. We use bone marrow stem cells as well as adipose (fat) stem cells. We also use <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing. In addition, we use <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. Without it, failure rates are high.</p>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is referred to as The Gold Standard for stem cell regeneration. We choose to use this procedure in cases where people have been told they either need their joint replaced, have bone-on-bone, advanced arthritis, cartilage loss, or a combination of these.\r\n\r\nIn this article, we would like to discuss Stem Cell Therapy for the regeneration of a degenerated joint. The goal of Stem Cell Therapy, as with all forms of Regenerative Orthopedics, is to stimulate injured tissues to repair.\r\n<h2><strong>What Is the Basis Behind Stem Cell Therapy?</strong></h2>\r\nIn conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. The joint is in a <em>state where it is breaking down</em>. What we want to do with Stem Cell Therapy is to get the joint in a state of <em>building up. </em>When we use Stem Cell Therapy, we are stimulating the body to repair the area to get it stronger. Stem Cell Therapy probably works by a lot of different mechanisms but here are some proposed mechanisms:\r\n<ul>\r\n 	<li>Reduces the instability in the joint that leads to arthritis in the first place</li>\r\n 	<li>Stimulates the growth of the cells (extracellular matrix) that make the tissues that are causing the ongoing pain and/or instability</li>\r\n 	<li>Stimulates the cells already present to make extracellular matrix</li>\r\n 	<li>The cells that help to build cartilage are called chondrocytes. Stem Cell Therapy involves the injections of the precursor cells (stem cells) that will differentiate into adult chondrocytes</li>\r\n</ul>\r\nWhile the exact mechanisms by which Stem Cell Therapy works can be debated, the bottom line for the patient is,<strong> <em>“Do I get rid of my pain and get back to the activities I desire?”</em> In the majority of cases, the answer is, “<em>Yes!</em>”</strong>\r\n<h2><strong>Conditions That Can Be Treated with Stem Cell Therapy</strong></h2>\r\nAny condition that is helped by one type of Regenerative Orthopedics (Stem Cell Therapy, PRP, Prolotherapy) can at least theoretically be helped by another type of Regenerative Orthopedics. While Stem Cell Therapy is typically not used for ligament and tendon injuries, it surely can be used for those conditions. Most clinics, including OrthoRegen, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those who are involved in treating people with articular cartilage degeneration or joint injury know that when these patients are treated with Stem Cell Therapy, the vast majority of them improve.\r\n<h2><strong>Adult Stem Cell Injections, NOT Embryonic Stem Cell Injections</strong></h2>\r\nThe Stem Cell Therapy done at OrthoRegen has nothing to do with embryonic stem cell therapy. Most research and studies have shown that cord blood does <strong>NOT</strong> have many if any, stem cells. We only use the patient’s own adult stem cells. We take the bone marrow from the patient’s own tibia or iliac crest bones and use fat from the abdominal or buttock areas so that the stem cells are the freshest. Additionally, there is no cross-contamination this way! We then inject these cells into the defective joint.\r\n<h2>Why Do We Use PRP with Stem Cells from Bone Marrow and Fat?</h2>\r\nAt OrthoRegen, we only use the <strong>Gold Standard in Stem Cell Therapy</strong>, which includes bone marrow stem cells, fat stem cells, PRP, and Dextrose Prolotherapy. Stem cells are great, but they need to be directed as to what to do. Some of the directors are the growth factors that are in the platelets. Platelets aid the stem cells in their various jobs including differentiation and then aid in the differentiated cells making the extracellular matrix to repair the injured tissue. One could think of the stem cells as construction workers and the platelets (and their growth factors) as their supervisors, telling them what to do. Platelet Rich Plasma contains a myriad of substances that stimulate healing, like platelet-derived growth factor, which attracts immune system cells to the injured area to enhance ligament and tendon healing. And fibroblast growth factor which promotes the growth of the cells involved in collagen and cartilage formation.\r\n\r\nWe have found that Comprehensive Regenerative Orthopedics using the combination of all of these regenerative treatments works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\r\n<ol>\r\n 	<li>Akens MK, Hurtig MB. Influence of species and anatomical location on chondrocyte expression. <em>BMC Musculoskeletal Disorders</em>. 2005; 6:23.</li>\r\n 	<li>Guilak F, Estes BT, Dickman BO. 2010 Nicolas Andry Award: Multipotent adult stem cells from adipose tissue for musculoskeletal tissue engineering. <em>Clinical</em><em> Orthopedics and Related Research. 2010;468:2530-2540.</em></li>\r\n</ol>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Stem Cell Therapy at OrthoRegen - Why We are Different','','inherit','closed','closed','','3526-revision-v1','','','2020-06-21 22:21:48','2020-06-21 22:21:48','',3526,'https://www.drfields.com/uncategorized/3526-revision-v1/',0,'revision','',0),(3747,9,'2020-06-21 22:22:34','2020-06-21 22:22:34','[caption id=\"attachment_3742\" align=\"alignleft\" width=\"392\"]<img class=\" wp-image-3742\" src=\"https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png\" alt=\"Kelsey. Knee.stems Copy\" width=\"392\" height=\"392\" /> <a href=\"https://youtu.be/jhN7D30YcYI\">Click to Watch Video</a>[/caption]\r\n<p style=\"text-align: left;\">At OrthoRegen, the Stem Cell technique we use for injuries to the joints and spine is The Gold Standard for stem cell regeneration. We don’t use just one type of regenerative therapy but use four different kinds of Regenerative Orthopedics to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four. We use bone marrow stem cells as well as adipose (fat) stem cells. We also use <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing. In addition, we use <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. Without it, failure rates are high.</p>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is referred to as The Gold Standard for stem cell regeneration. We choose to use this procedure in cases where people have been told they either need their joint replaced, have bone-on-bone, advanced arthritis, cartilage loss, or a combination of these.\r\n\r\nIn this article, we would like to discuss Stem Cell Therapy for the regeneration of a degenerated joint. The goal of Stem Cell Therapy, as with all forms of Regenerative Orthopedics, is to stimulate injured tissues to repair.\r\n<h2><strong>What Is the Basis Behind Stem Cell Therapy?</strong></h2>\r\nIn conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. The joint is in a <em>state where it is breaking down</em>. What we want to do with Stem Cell Therapy is to get the joint in a state of <em>building up. </em>When we use Stem Cell Therapy, we are stimulating the body to repair the area to get it stronger. Stem Cell Therapy probably works by a lot of different mechanisms but here are some proposed mechanisms:\r\n<ul>\r\n 	<li>Reduces the instability in the joint that leads to arthritis in the first place</li>\r\n 	<li>Stimulates the growth of the cells (extracellular matrix) that make the tissues that are causing the ongoing pain and/or instability</li>\r\n 	<li>Stimulates the cells already present to make extracellular matrix</li>\r\n 	<li>The cells that help to build cartilage are called chondrocytes. Stem Cell Therapy involves the injections of the precursor cells (stem cells) that will differentiate into adult chondrocytes</li>\r\n</ul>\r\nWhile the exact mechanisms by which Stem Cell Therapy works can be debated, the bottom line for the patient is,<strong> <em>“Do I get rid of my pain and get back to the activities I desire?”</em> In the majority of cases, the answer is, “<em>Yes!</em>”</strong>\r\n<h2><strong>Conditions That Can Be Treated with Stem Cell Therapy</strong></h2>\r\nAny condition that is helped by one type of Regenerative Orthopedics (Stem Cell Therapy, PRP, Prolotherapy) can at least theoretically be helped by another type of Regenerative Orthopedics. While Stem Cell Therapy is typically not used for ligament and tendon injuries, it surely can be used for those conditions. Most clinics, including OrthoRegen, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those who are involved in treating people with articular cartilage degeneration or joint injury know that when these patients are treated with Stem Cell Therapy, the vast majority of them improve.\r\n<h2><strong>Adult Stem Cell Injections, NOT Embryonic Stem Cell Injections</strong></h2>\r\nThe Stem Cell Therapy done at OrthoRegen has nothing to do with embryonic stem cell therapy. Most research and studies have shown that cord blood does <strong>NOT</strong> have many if any, stem cells. We only use the patient’s own adult stem cells. We take the bone marrow from the patient’s own tibia or iliac crest bones and use fat from the abdominal or buttock areas so that the stem cells are the freshest. Additionally, there is no cross-contamination this way! We then inject these cells into the defective joint.\r\n<h2>Why Do We Use PRP with Stem Cells from Bone Marrow and Fat?</h2>\r\nAt OrthoRegen, we only use the <strong>Gold Standard in Stem Cell Therapy</strong>, which includes bone marrow stem cells, fat stem cells, PRP, and Dextrose Prolotherapy. Stem cells are great, but they need to be directed as to what to do. Some of the directors are the growth factors that are in the platelets. Platelets aid the stem cells in their various jobs including differentiation and then aid in the differentiated cells making the extracellular matrix to repair the injured tissue. One could think of the stem cells as construction workers and the platelets (and their growth factors) as their supervisors, telling them what to do. Platelet Rich Plasma contains a myriad of substances that stimulate healing, like platelet-derived growth factor, which attracts immune system cells to the injured area to enhance ligament and tendon healing. And fibroblast growth factor which promotes the growth of the cells involved in collagen and cartilage formation.\r\n\r\nWe have found that Comprehensive Regenerative Orthopedics using the combination of all of these regenerative treatments works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\r\n<ol>\r\n 	<li>Akens MK, Hurtig MB. Influence of species and anatomical location on chondrocyte expression. <em>BMC Musculoskeletal Disorders</em>. 2005; 6:23.</li>\r\n 	<li>Guilak F, Estes BT, Dickman BO. 2010 Nicolas Andry Award: Multipotent adult stem cells from adipose tissue for musculoskeletal tissue engineering. <em>Clinical</em><em> Orthopedics and Related Research. 2010;468:2530-2540.</em></li>\r\n</ol>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Stem Cell Therapy at OrthoRegen - Why We are Different','','inherit','closed','closed','','3526-revision-v1','','','2020-06-21 22:22:34','2020-06-21 22:22:34','',3526,'https://www.drfields.com/uncategorized/3526-revision-v1/',0,'revision','',0),(3748,9,'2020-10-10 21:58:49','2020-10-10 21:58:49','<img class=\"size-medium wp-image-4233 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/IT-band-400x500.png\" alt=\"&quot;&lt;yoastmark\" />\n<h3>Iliotibial Band Repair</h3>\n<span style=\"font-weight: 400;\">Athletes are the ones who commonly suffer with this painful condition. And <strong>Iliotibial Band Syndrome (ITBS)</strong>  takes place more frequently in endurance athletes, like runners, cyclists, and in </span><span style=\"font-weight: 400;\">those who repeatedly squat</span><span style=\"font-weight: 400;\">. </span>\n\n<span style=\"font-weight: 400;\">The iliotibial band runs along the outside of the thigh, from the pelvis to the shinbone. The band crosses both the hip and the knee and is a structure that helps the knee to bend and straighten smoothly and in a stable fashion.  </span>\n\n<span style=\"font-weight: 400;\">The injury occurs most often because of overuse, as the band gets irritated from repeatedly crossing over the femoral epicondyle, a bony prominence on the thighbone, every time the knee bends and straightens. So, those with this condition will notice pain at the outside of the knee, especially when their heel strikes the ground while running.</span>\n<h3><b>More About the Iliotibial (IT) Band</b></h3>\n<span style=\"font-weight: 400;\">The iliotibial (IT) band is a dense band of tissue beginning at the iliac crest of the pelvis extending over the hip joint running down the outside part of the thigh, crossing over the outside of the knee and attaching to the shinbone. </span>\n\n<span style=\"font-weight: 400;\">The IT band forms from something called the tensor fascia lata and two of the gluteal muscles in the buttock. And then it stretches across the knee. Along with ligaments and other joint structures, the IT band plays a role in providing stability to both the knee and hip. </span>\n\n<span style=\"font-weight: 400;\">The band works to help abduct the leg, especially during walking, and it keeps the legs from crossing while walking. The IT band helps stabilize the outside part of the knee through its range of motion. The band moves back and forth when the knee is in motion.</span>\n\n<span style=\"font-weight: 400;\"> While the knee is bent, the band is located behind the femoral epicondyle near the knee joint. And then the band moves forward across the epicondyle when the knee is straightened. With iliotibial band syndrome, the band becomes irritated, and pain is experienced on the outer aspect of the knee</span><span style=\"font-weight: 400;\">.</span>\n<h3><b>What is Behind Iliotibial Band Syndrome?</b></h3>\n<span style=\"font-weight: 400;\">Although iliotibial band syndrome has generally been recognized as an injury caused by the friction that occurs as the band rubs back and forth over the bony epicondyle, recent studies have challenged this concept. When the knee is bent, the band is also compressed against the thigh bone, as it braces the knee when stress is placed on it. </span>\n\n<span style=\"font-weight: 400;\">And in instances when the knee is turned or rotated too much, the band can be injured as well. Therefore, another theory is that the injury occurs when the band is compressed at the epicondyle, causing irritation and inflammation there. Additionally, researchers suggest there is a fat pad full of nerves that are compressed between the iliotibial band and the epicondyle as the IT band is pulled towards the epicondyle. </span>\n<h4><em>Theories of How Iliotibial Band Syndrome Develops: </em></h4>\nAlthough there are different theories of how ITBS develops, most are in agreement that there is a component of irregular compression forces between the iliotibial band and the femoral epicondyle that generates the irritation and inflammation. Most likely, ITBS is the result of a combination of issues, including poor training habits, weakened soft tissue (muscle, ligament, and tendons), mechanical imbalances, and joint instability, especially involving the low back, pelvis, hips, and knees.\n\nThe injury occurs to the joint tissue because the joint begins to move in an abnormal fashion, irritating the tissue and altering the joint motion further. And the irritation of the joint tissues in iliotibial band syndrome is both the cause and effect of altered joint mechanics.\n<h3><em>Instability Adds to the Problem: </em></h3>\nAs an added problem, when instability is present, the sufferer will begin to walk in an altered pattern in an attempt to brace the knee. But this change in the walking pattern puts additional stress on the joint and can injure or tear the cartilage. Since the iliotibial band crosses both the hip and knee joints, injury can cause abnormal motion and instability at both the hip and knee. And this puts more and more stress on the iliotibial band.\n\nThe increased stress will rotate the kneecap and put increased pressure on the cartilage. If the symptoms are ignored, the irritation and inflammation will continue. And then scarring can develop, which can decrease the knee range of motion and cause pain even with reduced activity.\n<h3><em> Anatomic Issues:</em></h3>\nAnatomic issues can predispose folks to the development of iliotibial band syndrome. Leg-length discrepancies, an abnormally tilted pelvis, or bowed legs can cause the iliotibial band to become excessively tight or loose, which will increase the friction when the band as it crosses back and forth across the epicondyle, and change the stressors on the joint structures due to the abnormal way the anatomic issues cause the joint to move. All all of this will increase irritation, injury, and pain.\n<h3><em> Poor Training Habits: </em></h3>\nPoor training habits can have the same effect on the iliotibial band as the anatomic issues do. For example, runners who tend to always run on the same side of the road may repeatedly have one leg moving slightly downhill compared to the other. Also, always running downhill stresses the band. And cycling with the foot rotated inwards will increase the angle at which the band crosses over the epicondyle. All of these repeated activities can irritate the iliotibial band.\n<h3><b>Treatment for Iliotibial Band Syndrome</b></h3>\n<span style=\"font-weight: 400;\">Conservative treatment, including rest, modification of activity, and physical therapy are commonly recommended. Surgery to cut the IT band and “release” tension are occasionally recommended for cases that will not resolve, but conservative treatment should be sought first. </span>\n\n<span style=\"font-weight: 400;\">When the IT band and associated muscles are “tight,” a lot of strain is put on the ligaments, making muscle stretching and massage beneficial. The affected ligaments need to be treated as well because all of the involved structures become weakened by the abnormal motion. The joint instability in the hip and the knee needs to be properly diagnosed and treated in order to find the relief and the desired return to function. </span>\n<h3><strong>Treating Iliotibial Band Syndrome with Regenerative Orthopedics</strong></h3>\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is an effective and promising treatment option that can offer a non-surgical treatment solution for patients with persistent iliotibial band syndrome. Treatment into and around both the hip joint and the knee may very well be needed. </span>\n\n<span style=\"font-weight: 400;\">If the hip is found to be stable upon evaluation, and the knee alone is affected, then the athlete with iliotibial band syndrome will receive Regenerative Orthopedic treatments to the area on the lower leg where the iliotibial band attaches. </span>\n\n<span style=\"font-weight: 400;\">Additionally, if there are parts of the band itself that are tender, these areas can be treated as well. Generally, after just a couple of treatments, the athlete is able to start to work out again. </span>\n\n<span style=\"font-weight: 400;\">Regenerative Orthopedics offers a successful and much-needed alternative by stimulating the body to repair the supportive ligaments around the joints, heal the iliotibial band, as well as promote cartilage regeneration when necessary. The treatment is safe and effective for athletes suffering from chronic lateral knee pain, such as that experienced in iliotibial band syndrome.</span>\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>\n\n<a href=\"https://www.orthoregen.com/testimonials/\">Read Patient Testimonials</a>','Iliotibial Band Syndrome Repair','','inherit','closed','closed','','2775-autosave-v1','','','2020-10-10 21:58:49','2020-10-10 21:58:49','',2775,'https://www.drfields.com/uncategorized/2775-autosave-v1/',0,'revision','',0),(3749,9,'2020-06-21 22:32:26','2020-06-21 22:32:26','<span style=\"font-weight: 400;\">Iliotibial band syndrome (ITBS) is a painful knee condition that takes place more frequently in athletes, especially endurance athletes, like runners, cyclists, and in </span><span style=\"font-weight: 400;\">those who repeatedly squat</span><span style=\"font-weight: 400;\">. The iliotibial band runs along the outside of the thigh, from the pelvis to the shinbone. The band crosses both the hip and the knee and is a structure that helps the knee to bend and straighten smoothly and in a stable fashion.  The injury occurs most often because of overuse, as the band gets irritated from repeatedly crossing over the femoral epicondyle, a bony prominence on the thighbone, every time the knee bends and straightens. Those with this condition will notice pain at the outside of the knee, especially when their heel strikes the ground while running.</span>\r\n\r\n<b>More About the Iliotibial Band</b>\r\n\r\n<span style=\"font-weight: 400;\">The iliotibial (IT) band is a dense band of tissue beginning at the iliac crest of the pelvis extending over the hip joint running down the outside part of the thigh, crossing over the outside of the knee and attaching to the shinbone. The iliotibial (IT) band forms from something called the tensor fascia lata and two of the gluteal muscles in the buttock and then it stretches across the knee. Along with ligaments and other joint structures, the iliotibial (IT) band plays a role in providing stability to both the knee and hip. The band works to help abduct the leg, especially during walking, and it keeps the legs from crossing while walking. The IT band helps stabilize the outside part of the knee through its range of motion. The band moves back and forth when the knee is in motion. While the knee is bent, the iliotibial band is located behind the femoral epicondyle near the knee joint. The band moves forward across the epicondyle when the knee is straightened. With iliotibial band syndrome, the band becomes irritated, and pain is experienced on the outer aspect of the knee</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<b>What is Behind Iliotibial Band Syndrome?</b>\r\n\r\n<span style=\"font-weight: 400;\">Although iliotibial band syndrome has generally been recognized as an injury caused by the friction that occurs as the band rubs back and forth over the bony epicondyle, recent studies have challenged this concept. When the knee is bent, the iliotibial band is also compressed against the thigh bone, as it braces the knee when stress is placed on it. In instances when the knee is turned or rotated too much, the band can be injured as well. Therefore, another theory is that the injury occurs when the band is compressed at the epicondyle, causing irritation and inflammation there. Additionally, researchers suggest there is a fat pad full of nerves that are compressed between the iliotibial band and the epicondyle as the IT band is pulled towards the epicondyle. </span>\r\n\r\n<em>Theories of How Iliotibial Band Syndrome Develops</em>\r\n\r\n<span style=\"font-weight: 400;\">Although there are different theories of how iliotibial band syndrome develops, most are in agreement that there is a component of irregular compression forces between the iliotibial band and the femoral epicondyle that generates the irritation and inflammation. Most likely, iliotibial band syndrome is the result of a combination of issues, including poor training habits, weakened soft tissue (muscle, ligament, and tendons), mechanical imbalances, and joint instability, especially involving the low back, pelvis, hips, and knees.</span> The injury<span style=\"font-weight: 400;\"> occurs to the joint tissue because the joint begins to move in an abnormal fashion, irritating the tissue and altering the joint motion further. </span><span style=\"font-weight: 400;\">The irritation of the joint tissues in iliotibial band syndrome is both the cause and effect of altered joint mechanics. </span>\r\n\r\n<em>Instability Adds to the Problem</em>\r\n\r\n<span style=\"font-weight: 400;\">As an added problem, when instability is present, the sufferer will begin to walk in an altered pattern in an attempt to brace the knee, but this change in the walking pattern puts additional stress on the joint and can injure or tear the cartilage. Since the iliotibial band crosses both the hip and knee joints, injury can cause abnormal motion and instability at both the hip and knee, which puts more and more stress on the iliotibial band. The increased stress will rotate the kneecap and put increased pressure on the cartilage. If the symptoms are ignored, the irritation and inflammation will continue, and even scarring can develop, which can decrease the knee range of motion and cause pain even with reduced activity.</span>\r\n\r\n<em>Anatomic Issues</em>\r\n\r\n<span style=\"font-weight: 400;\">Anatomic issues can predispose folks to the development of iliotibial band syndrome. Leg-length discrepancies, an abnormally tilted pelvis, or bowed legs can cause the iliotibial band to become excessively tight or loose, which will increase the friction when the band as it crosses back and forth across the epicondyle, and change the stressors on the joint structures due to the abnormal way the anatomic issues cause the joint to move, which all will increase irritation, injury, and pain.</span>\r\n\r\n<em>Poor Training Habits</em>\r\n\r\n<span style=\"font-weight: 400;\">Poor training habits can have the same effect on the iliotibial band as the anatomic issues do. For example, runners who tend to always run on the same side of the road may repeatedly have one leg moving slightly downhill compared to the other. Always running downhill also stresses the band, and cycling with the foot rotated inwards will increase the angle at which the band crosses over the epicondyle. All of these repeated activities can irritate the iliotibial band.</span>\r\n\r\n<b>Treatment for Iliotibial Band Syndrome</b>\r\n\r\n<span style=\"font-weight: 400;\">Conservative treatment, including rest, modification of activity, and physical therapy are commonly recommended. Surgery to cut the IT band and “release” tension are occasionally recommended for cases that will not resolve, but conservative treatment should be sought first. When the IT band and associated muscles are “tight,” a lot of strain is put on the ligaments, making muscle stretching and massage beneficial. The affected ligaments need to be treated as well because all of the involved structures become weakened by the abnormal motion. The joint instability in the hip and the knee needs to be properly diagnosed and treated in order to find the relief and the desired return to function. </span>\r\n\r\n<strong>Treating Iliotibial Band Syndrome with Regenerative Orthopedics</strong>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is an effective and promising treatment option that can offer a non-surgical treatment solution for patients with persistent iliotibial band syndrome. Treatment into and around both the hip joint and the knee may very well be needed. If the hip is found to be stable upon evaluation, and the knee alone is affected, then the athlete with iliotibial band syndrome will receive Regenerative Orthopedic treatments to the area on the lower leg where the iliotibial band attaches. Additionally, if there are parts of the band itself that are tender, these areas can be treated as well. Generally, after just a couple of treatments, the athlete is able to start to work out again. Regenerative Orthopedics offers a successful and much-needed alternative by stimulating the body to repair the supportive ligaments around the joints, heal the iliotibial band, as well as promote cartilage regeneration when necessary. The treatment is safe and effective for athletes suffering from chronic lateral knee pain, such as that experienced in iliotibial band syndrome.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Iliotibial Band Syndrome','','inherit','closed','closed','','2775-revision-v1','','','2020-06-21 22:32:26','2020-06-21 22:32:26','',2775,'https://www.drfields.com/uncategorized/2775-revision-v1/',0,'revision','',0),(3750,9,'2020-06-21 22:34:01','2020-06-21 22:34:01','<span style=\"font-weight: 400;\">Iliotibial band syndrome (ITBS) is a painful knee condition that takes place more frequently in athletes, especially endurance athletes, like runners, cyclists, and in </span><span style=\"font-weight: 400;\">those who repeatedly squat</span><span style=\"font-weight: 400;\">. The iliotibial band runs along the outside of the thigh, from the pelvis to the shinbone. The band crosses both the hip and the knee and is a structure that helps the knee to bend and straighten smoothly and in a stable fashion.  The injury occurs most often because of overuse, as the band gets irritated from repeatedly crossing over the femoral epicondyle, a bony prominence on the thighbone, every time the knee bends and straightens. Those with this condition will notice pain at the outside of the knee, especially when their heel strikes the ground while running.</span>\r\n\r\n<b>More About the Iliotibial Band</b>\r\n\r\n<span style=\"font-weight: 400;\">The iliotibial (IT) band is a dense band of tissue beginning at the iliac crest of the pelvis extending over the hip joint running down the outside part of the thigh, crossing over the outside of the knee and attaching to the shinbone. The iliotibial (IT) band forms from something called the tensor fascia lata and two of the gluteal muscles in the buttock and then it stretches across the knee. Along with ligaments and other joint structures, the iliotibial (IT) band plays a role in providing stability to both the knee and hip. </span>\r\n\r\n<span style=\"font-weight: 400;\">The band works to help abduct the leg, especially during walking, and it keeps the legs from crossing while walking. The IT band helps stabilize the outside part of the knee through its range of motion. The band moves back and forth when the knee is in motion. While the knee is bent, the iliotibial band is located behind the femoral epicondyle near the knee joint. The band moves forward across the epicondyle when the knee is straightened. With iliotibial band syndrome, the band becomes irritated, and pain is experienced on the outer aspect of the knee</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<b>What is Behind Iliotibial Band Syndrome?</b>\r\n\r\n<span style=\"font-weight: 400;\">Although iliotibial band syndrome has generally been recognized as an injury caused by the friction that occurs as the band rubs back and forth over the bony epicondyle, recent studies have challenged this concept. When the knee is bent, the iliotibial band is also compressed against the thigh bone, as it braces the knee when stress is placed on it. In instances when the knee is turned or rotated too much, the band can be injured as well. Therefore, another theory is that the injury occurs when the band is compressed at the epicondyle, causing irritation and inflammation there. Additionally, researchers suggest there is a fat pad full of nerves that are compressed between the iliotibial band and the epicondyle as the IT band is pulled towards the epicondyle. </span>\r\n\r\n<em>Theories of How Iliotibial Band Syndrome Develops</em>\r\n\r\n<span style=\"font-weight: 400;\">Although there are different theories of how iliotibial band syndrome develops, most are in agreement that there is a component of irregular compression forces between the iliotibial band and the femoral epicondyle that generates the irritation and inflammation. Most likely, iliotibial band syndrome is the result of a combination of issues, including poor training habits, weakened soft tissue (muscle, ligament, and tendons), mechanical imbalances, and joint instability, especially involving the low back, pelvis, hips, and knees.</span> The injury<span style=\"font-weight: 400;\"> occurs to the joint tissue because the joint begins to move in an abnormal fashion, irritating the tissue and altering the joint motion further. </span><span style=\"font-weight: 400;\">The irritation of the joint tissues in iliotibial band syndrome is both the cause and effect of altered joint mechanics. </span>\r\n\r\n<em>Instability Adds to the Problem</em>\r\n\r\n<span style=\"font-weight: 400;\">As an added problem, when instability is present, the sufferer will begin to walk in an altered pattern in an attempt to brace the knee, but this change in the walking pattern puts additional stress on the joint and can injure or tear the cartilage. Since the iliotibial band crosses both the hip and knee joints, injury can cause abnormal motion and instability at both the hip and knee, which puts more and more stress on the iliotibial band. The increased stress will rotate the kneecap and put increased pressure on the cartilage. If the symptoms are ignored, the irritation and inflammation will continue, and even scarring can develop, which can decrease the knee range of motion and cause pain even with reduced activity.</span>\r\n\r\n<em>Anatomic Issues</em>\r\n\r\n<span style=\"font-weight: 400;\">Anatomic issues can predispose folks to the development of iliotibial band syndrome. Leg-length discrepancies, an abnormally tilted pelvis, or bowed legs can cause the iliotibial band to become excessively tight or loose, which will increase the friction when the band as it crosses back and forth across the epicondyle, and change the stressors on the joint structures due to the abnormal way the anatomic issues cause the joint to move, which all will increase irritation, injury, and pain.</span>\r\n\r\n<em>Poor Training Habits</em>\r\n\r\n<span style=\"font-weight: 400;\">Poor training habits can have the same effect on the iliotibial band as the anatomic issues do. For example, runners who tend to always run on the same side of the road may repeatedly have one leg moving slightly downhill compared to the other. Always running downhill also stresses the band, and cycling with the foot rotated inwards will increase the angle at which the band crosses over the epicondyle. All of these repeated activities can irritate the iliotibial band.</span>\r\n\r\n<b>Treatment for Iliotibial Band Syndrome</b>\r\n\r\n<span style=\"font-weight: 400;\">Conservative treatment, including rest, modification of activity, and physical therapy are commonly recommended. Surgery to cut the IT band and “release” tension are occasionally recommended for cases that will not resolve, but conservative treatment should be sought first. When the IT band and associated muscles are “tight,” a lot of strain is put on the ligaments, making muscle stretching and massage beneficial. The affected ligaments need to be treated as well because all of the involved structures become weakened by the abnormal motion. The joint instability in the hip and the knee needs to be properly diagnosed and treated in order to find the relief and the desired return to function. </span>\r\n\r\n<strong>Treating Iliotibial Band Syndrome with Regenerative Orthopedics</strong>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is an effective and promising treatment option that can offer a non-surgical treatment solution for patients with persistent iliotibial band syndrome. Treatment into and around both the hip joint and the knee may very well be needed. If the hip is found to be stable upon evaluation, and the knee alone is affected, then the athlete with iliotibial band syndrome will receive Regenerative Orthopedic treatments to the area on the lower leg where the iliotibial band attaches. </span>\r\n\r\n<span style=\"font-weight: 400;\">Additionally, if there are parts of the band itself that are tender, these areas can be treated as well. Generally, after just a couple of treatments, the athlete is able to start to work out again. Regenerative Orthopedics offers a successful and much-needed alternative by stimulating the body to repair the supportive ligaments around the joints, heal the iliotibial band, as well as promote cartilage regeneration when necessary. The treatment is safe and effective for athletes suffering from chronic lateral knee pain, such as that experienced in iliotibial band syndrome.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Iliotibial Band Syndrome','','inherit','closed','closed','','2775-revision-v1','','','2020-06-21 22:34:01','2020-06-21 22:34:01','',2775,'https://www.drfields.com/uncategorized/2775-revision-v1/',0,'revision','',0),(3751,9,'2020-06-21 22:42:59','2020-06-21 22:42:59','<span style=\"font-weight: 400;\">Iliotibial band syndrome (ITBS) is a painful knee condition that takes place more frequently in athletes, especially endurance athletes, like runners, cyclists, and in </span><span style=\"font-weight: 400;\">those who repeatedly squat</span><span style=\"font-weight: 400;\">. The iliotibial band runs along the outside of the thigh, from the pelvis to the shinbone. The band crosses both the hip and the knee and is a structure that helps the knee to bend and straighten smoothly and in a stable fashion.  The injury occurs most often because of overuse, as the band gets irritated from repeatedly crossing over the femoral epicondyle, a bony prominence on the thighbone, every time the knee bends and straightens. Those with this condition will notice pain at the outside of the knee, especially when their heel strikes the ground while running.</span>\r\n\r\n<b>More About the Iliotibial Band</b>\r\n\r\n<span style=\"font-weight: 400;\">The iliotibial (IT) band is a dense band of tissue beginning at the iliac crest of the pelvis extending over the hip joint running down the outside part of the thigh, crossing over the outside of the knee and attaching to the shinbone. The iliotibial (IT) band forms from something called the tensor fascia lata and two of the gluteal muscles in the buttock and then it stretches across the knee. Along with ligaments and other joint structures, the iliotibial (IT) band plays a role in providing stability to both the knee and hip. </span>\r\n\r\n<span style=\"font-weight: 400;\">The band works to help abduct the leg, especially during walking, and it keeps the legs from crossing while walking. The IT band helps stabilize the outside part of the knee through its range of motion. The band moves back and forth when the knee is in motion. While the knee is bent, the iliotibial band is located behind the femoral epicondyle near the knee joint. The band moves forward across the epicondyle when the knee is straightened. With iliotibial band syndrome, the band becomes irritated, and pain is experienced on the outer aspect of the knee</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<b>What is Behind Iliotibial Band Syndrome?</b>\r\n\r\n<span style=\"font-weight: 400;\">Although iliotibial band syndrome has generally been recognized as an injury caused by the friction that occurs as the band rubs back and forth over the bony epicondyle, recent studies have challenged this concept. When the knee is bent, the iliotibial band is also compressed against the thigh bone, as it braces the knee when stress is placed on it. In instances when the knee is turned or rotated too much, the band can be injured as well. Therefore, another theory is that the injury occurs when the band is compressed at the epicondyle, causing irritation and inflammation there. Additionally, researchers suggest there is a fat pad full of nerves that are compressed between the iliotibial band and the epicondyle as the IT band is pulled towards the epicondyle. </span>\r\n\r\n<em>A. Theories of How Iliotibial Band Syndrome Develops</em>\r\n\r\n<span style=\"font-weight: 400;\">Although there are different theories of how iliotibial band syndrome develops, most are in agreement that there is a component of irregular compression forces between the iliotibial band and the femoral epicondyle that generates the irritation and inflammation. Most likely, iliotibial band syndrome is the result of a combination of issues, including poor training habits, weakened soft tissue (muscle, ligament, and tendons), mechanical imbalances, and joint instability, especially involving the low back, pelvis, hips, and knees.</span> The injury<span style=\"font-weight: 400;\"> occurs to the joint tissue because the joint begins to move in an abnormal fashion, irritating the tissue and altering the joint motion further. </span><span style=\"font-weight: 400;\">The irritation of the joint tissues in iliotibial band syndrome is both the cause and effect of altered joint mechanics. </span>\r\n\r\n<em>B. Instability Adds to the Problem</em>\r\n\r\n<span style=\"font-weight: 400;\">As an added problem, when instability is present, the sufferer will begin to walk in an altered pattern in an attempt to brace the knee, but this change in the walking pattern puts additional stress on the joint and can injure or tear the cartilage. Since the iliotibial band crosses both the hip and knee joints, injury can cause abnormal motion and instability at both the hip and knee, which puts more and more stress on the iliotibial band. The increased stress will rotate the kneecap and put increased pressure on the cartilage. If the symptoms are ignored, the irritation and inflammation will continue, and even scarring can develop, which can decrease the knee range of motion and cause pain even with reduced activity.</span>\r\n\r\n<em>C. Anatomic Issues</em>\r\n\r\n<span style=\"font-weight: 400;\">Anatomic issues can predispose folks to the development of iliotibial band syndrome. Leg-length discrepancies, an abnormally tilted pelvis, or bowed legs can cause the iliotibial band to become excessively tight or loose, which will increase the friction when the band as it crosses back and forth across the epicondyle, and change the stressors on the joint structures due to the abnormal way the anatomic issues cause the joint to move, which all will increase irritation, injury, and pain.</span>\r\n\r\n<em>Poor Training Habits</em>\r\n\r\n<span style=\"font-weight: 400;\">Poor training habits can have the same effect on the iliotibial band as the anatomic issues do. For example, runners who tend to always run on the same side of the road may repeatedly have one leg moving slightly downhill compared to the other. Always running downhill also stresses the band, and cycling with the foot rotated inwards will increase the angle at which the band crosses over the epicondyle. All of these repeated activities can irritate the iliotibial band.</span>\r\n\r\n<b>Treatment for Iliotibial Band Syndrome</b>\r\n\r\n<span style=\"font-weight: 400;\">Conservative treatment, including rest, modification of activity, and physical therapy are commonly recommended. Surgery to cut the IT band and “release” tension are occasionally recommended for cases that will not resolve, but conservative treatment should be sought first. When the IT band and associated muscles are “tight,” a lot of strain is put on the ligaments, making muscle stretching and massage beneficial. The affected ligaments need to be treated as well because all of the involved structures become weakened by the abnormal motion. The joint instability in the hip and the knee needs to be properly diagnosed and treated in order to find the relief and the desired return to function. </span>\r\n\r\n<strong>Treating Iliotibial Band Syndrome with Regenerative Orthopedics</strong>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is an effective and promising treatment option that can offer a non-surgical treatment solution for patients with persistent iliotibial band syndrome. Treatment into and around both the hip joint and the knee may very well be needed. If the hip is found to be stable upon evaluation, and the knee alone is affected, then the athlete with iliotibial band syndrome will receive Regenerative Orthopedic treatments to the area on the lower leg where the iliotibial band attaches. </span>\r\n\r\n<span style=\"font-weight: 400;\">Additionally, if there are parts of the band itself that are tender, these areas can be treated as well. Generally, after just a couple of treatments, the athlete is able to start to work out again. Regenerative Orthopedics offers a successful and much-needed alternative by stimulating the body to repair the supportive ligaments around the joints, heal the iliotibial band, as well as promote cartilage regeneration when necessary. The treatment is safe and effective for athletes suffering from chronic lateral knee pain, such as that experienced in iliotibial band syndrome.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Iliotibial Band Syndrome','','inherit','closed','closed','','2775-revision-v1','','','2020-06-21 22:42:59','2020-06-21 22:42:59','',2775,'https://www.drfields.com/uncategorized/2775-revision-v1/',0,'revision','',0),(3752,9,'2020-06-21 22:45:21','2020-06-21 22:45:21','<span style=\"font-weight: 400;\">Iliotibial band syndrome (ITBS) is a painful knee condition that takes place more frequently in athletes, especially endurance athletes, like runners, cyclists, and in </span><span style=\"font-weight: 400;\">those who repeatedly squat</span><span style=\"font-weight: 400;\">. The iliotibial band runs along the outside of the thigh, from the pelvis to the shinbone. The band crosses both the hip and the knee and is a structure that helps the knee to bend and straighten smoothly and in a stable fashion.  The injury occurs most often because of overuse, as the band gets irritated from repeatedly crossing over the femoral epicondyle, a bony prominence on the thighbone, every time the knee bends and straightens. Those with this condition will notice pain at the outside of the knee, especially when their heel strikes the ground while running.</span>\r\n\r\n<b>More About the Iliotibial Band</b>\r\n\r\n<span style=\"font-weight: 400;\">The iliotibial (IT) band is a dense band of tissue beginning at the iliac crest of the pelvis extending over the hip joint running down the outside part of the thigh, crossing over the outside of the knee and attaching to the shinbone. The iliotibial (IT) band forms from something called the tensor fascia lata and two of the gluteal muscles in the buttock and then it stretches across the knee. Along with ligaments and other joint structures, the iliotibial (IT) band plays a role in providing stability to both the knee and hip. </span>\r\n\r\n<span style=\"font-weight: 400;\">The band works to help abduct the leg, especially during walking, and it keeps the legs from crossing while walking. The IT band helps stabilize the outside part of the knee through its range of motion. The band moves back and forth when the knee is in motion. While the knee is bent, the iliotibial band is located behind the femoral epicondyle near the knee joint. The band moves forward across the epicondyle when the knee is straightened. With iliotibial band syndrome, the band becomes irritated, and pain is experienced on the outer aspect of the knee</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<b>What is Behind Iliotibial Band Syndrome?</b>\r\n\r\n<span style=\"font-weight: 400;\">Although iliotibial band syndrome has generally been recognized as an injury caused by the friction that occurs as the band rubs back and forth over the bony epicondyle, recent studies have challenged this concept. When the knee is bent, the iliotibial band is also compressed against the thigh bone, as it braces the knee when stress is placed on it. In instances when the knee is turned or rotated too much, the band can be injured as well. Therefore, another theory is that the injury occurs when the band is compressed at the epicondyle, causing irritation and inflammation there. Additionally, researchers suggest there is a fat pad full of nerves that are compressed between the iliotibial band and the epicondyle as the IT band is pulled towards the epicondyle. </span>\r\n<ul>\r\n 	<li><em>Theories of How Iliotibial Band Syndrome Develops: </em><span>Although there are different theories of how iliotibial band syndrome develops, most are in agreement that there is a component of irregular compression forces between the iliotibial band and the femoral epicondyle that generates the irritation and inflammation. Most likely, iliotibial band syndrome is the result of a combination of issues, including poor training habits, weakened soft tissue (muscle, ligament, and tendons), mechanical imbalances, and joint instability, especially involving the low back, pelvis, hips, and knees.</span> The injury<span> occurs to the joint tissue because the joint begins to move in an abnormal fashion, irritating the tissue and altering the joint motion further. </span><span>The irritation of the joint tissues in iliotibial band syndrome is both the cause and effect of altered joint mechanics. </span></li>\r\n</ul>\r\n<ul>\r\n 	<li><em> Instability Adds to the Problem: </em>As an added problem, when instability is present, the sufferer will begin to walk in an altered pattern in an attempt to brace the knee, but this change in the walking pattern puts additional stress on the joint and can injure or tear the cartilage. Since the iliotibial band crosses both the hip and knee joints, injury can cause abnormal motion and instability at both the hip and knee, which puts more and more stress on the iliotibial band. The increased stress will rotate the kneecap and put increased pressure on the cartilage. If the symptoms are ignored, the irritation and inflammation will continue, and even scarring can develop, which can decrease the knee range of motion and cause pain even with reduced activity.</li>\r\n</ul>\r\n<ul>\r\n 	<li><em> Anatomic Issues: </em>Anatomic issues can predispose folks to the development of iliotibial band syndrome. Leg-length discrepancies, an abnormally tilted pelvis, or bowed legs can cause the iliotibial band to become excessively tight or loose, which will increase the friction when the band as it crosses back and forth across the epicondyle, and change the stressors on the joint structures due to the abnormal way the anatomic issues cause the joint to move, which all will increase irritation, injury, and pain.</li>\r\n</ul>\r\n<ul>\r\n 	<li><em> Poor Training Habits: </em>Poor training habits can have the same effect on the iliotibial band as the anatomic issues do. For example, runners who tend to always run on the same side of the road may repeatedly have one leg moving slightly downhill compared to the other. Always running downhill also stresses the band, and cycling with the foot rotated inwards will increase the angle at which the band crosses over the epicondyle. All of these repeated activities can irritate the iliotibial band.</li>\r\n</ul>\r\n<b>Treatment for Iliotibial Band Syndrome</b>\r\n\r\n<span style=\"font-weight: 400;\">Conservative treatment, including rest, modification of activity, and physical therapy are commonly recommended. Surgery to cut the IT band and “release” tension are occasionally recommended for cases that will not resolve, but conservative treatment should be sought first. When the IT band and associated muscles are “tight,” a lot of strain is put on the ligaments, making muscle stretching and massage beneficial. The affected ligaments need to be treated as well because all of the involved structures become weakened by the abnormal motion. The joint instability in the hip and the knee needs to be properly diagnosed and treated in order to find the relief and the desired return to function. </span>\r\n\r\n<strong>Treating Iliotibial Band Syndrome with Regenerative Orthopedics</strong>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is an effective and promising treatment option that can offer a non-surgical treatment solution for patients with persistent iliotibial band syndrome. Treatment into and around both the hip joint and the knee may very well be needed. If the hip is found to be stable upon evaluation, and the knee alone is affected, then the athlete with iliotibial band syndrome will receive Regenerative Orthopedic treatments to the area on the lower leg where the iliotibial band attaches. </span>\r\n\r\n<span style=\"font-weight: 400;\">Additionally, if there are parts of the band itself that are tender, these areas can be treated as well. Generally, after just a couple of treatments, the athlete is able to start to work out again. Regenerative Orthopedics offers a successful and much-needed alternative by stimulating the body to repair the supportive ligaments around the joints, heal the iliotibial band, as well as promote cartilage regeneration when necessary. The treatment is safe and effective for athletes suffering from chronic lateral knee pain, such as that experienced in iliotibial band syndrome.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Iliotibial Band Syndrome','','inherit','closed','closed','','2775-revision-v1','','','2020-06-21 22:45:21','2020-06-21 22:45:21','',2775,'https://www.drfields.com/uncategorized/2775-revision-v1/',0,'revision','',0),(3753,9,'2022-07-02 18:21:42','2022-07-02 18:21:42','<div class=\"clear\"></div>\n<div id=\"slider\">\n<div class=\"owl-carousel slider-carousel\">\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\n</div>\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v02072022.png\');\"></div>\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\n</div>\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\n</div>\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\n</div>\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\n</div>\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\nPeter A. Fields, MD, DC</span>\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\nsuccessfully climbed</span>\n<span class=\"header_text_third\">Mt. Kilimanjaro in\nTanzania, Africa.19,341 feet!!!</span></div>\n</div>\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\nThe Athletic Doc<sup>®</sup></span>\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\n</div>\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\n</div>\n</div>\n</div>\n<div class=\"clear\"></div>\n<div class=\"jumbotron-fluid\">\n<div class=\"row\">\n<div class=\"col-md-4 box1\">\n\nWhat\'s\n<h3>New</h3>\n<ul>\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\n</a></li>\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\n</ul>\n</div>\n<div id=\"testimonials\" class=\"col-md-4 box2\">\n\nPatient\n<h3>Testimonials</h3>\n<strong>Video:</strong>\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\n<div class=\"testimonial-item\">\n\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\n\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\n<h3>Larry</h3>\n<h4>Stem Cell Knee</h4>\n</div>\n<div class=\"testimonial-item\">\n\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\n\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\n<h3>Chris, Pro Basketball Player</h3>\n<h4>PRP Knee</h4>\n</div>\n<div class=\"testimonial-item\">\n\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\n\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\n<h3>Mary</h3>\n<h4>Stem Cell Hip</h4>\n</div>\n</div>\n<strong>Written:</strong>\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\n<div class=\"testimonial-item\">\n\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\n<h3 style=\"margin-left: 0;\">Mindy</h3>\n<h4 style=\"margin-left: 0;\">Elbow</h4>\n</div>\n<div class=\"testimonial-item\">\n\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\n<h3 style=\"margin-left: 0;\">Robert</h3>\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\n</div>\n<div class=\"testimonial-item\">\n\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\n<h3 style=\"margin-left: 0;\">Lois</h3>\n<h4 style=\"margin-left: 0;\">Knee</h4>\n</div>\n</div>\n</div>\n<div class=\"col-md-4 box3\">\n\nNews &amp;\n<h3>Events</h3>\n<ul>\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Join Peter A. Fields, MD, DC June 5th at 9am on Zoom for a Regenerative Orthopedics Lecture</a></li>\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2023 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields </a></li>\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\n</ul>\n</div>\n</div>\n</div>\n<div id=\"search-articles\">\n<div class=\"container\">\n<div class=\"col-md-12\">\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\n<input type=\"submit\" value=\"Search\" /></form></div>\n</div>\n</div>\n<div id=\"intro\">\n<div class=\"container\">\n<div class=\"col-md-12\">\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\n\n</div>\n</div>\n</div>\n<div class=\"clear\"></div>\n<div class=\"about\">\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\n<div class=\"col-md-7 about_holder\">\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\n<p class=\"intro_text\">Medical Physician and Chiropractor\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\n\n</div>\n<div class=\"col-md-3\">\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\n<div class=\"about_text\">\n<h3>About</h3>\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\n\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\n\n</div>\n</div>\n<div class=\"col-md-3\">\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\n<div class=\"about_text\">\n<h3>11x Ironman</h3>\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\n\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\n\n</div>\n</div>\n</div>\n<div class=\"clear\"></div>\n&nbsp;\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-autosave-v1','','','2022-07-02 18:21:42','2022-07-02 18:21:42','',2109,'https://www.drfields.com/uncategorized/2109-autosave-v1/',0,'revision','',0),(3754,9,'2020-06-21 22:50:49','2020-06-21 22:50:49','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc®\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc®</span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-06-21 22:50:49','2020-06-21 22:50:49','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3755,9,'2020-09-01 18:04:45','2020-09-01 18:04:45','<h3><strong>Stroke As a Major Cause of Disability</strong></h3>\nAccording to a report from the World Health Organization [<a class=\"ref-link\" href=\"https://www.intechopen.com/books/new-insight-into-cerebrovascular-diseases-an-updated-comprehensive-review/rehabilitation-strategies-and-key-related-mechanisms-involved-in-stroke-recovery#B1\" data-ref-style=\"bibr\">1</a>], approximately 15 million people experience a stroke each year globally. And stroke is the third leading cause of death after heart disease and cancer, and a major cause of disability. With the aging of the American population and as obesity increases, more strokes are occurring: strokes occur in more than 795,000 U.S. citizens per year and result in 140,000 deaths with 77% of them first-time.<a href=\"https://franklinpierce.edu/about/Showcase2020/Projects/TherapyStrokeRehab-Ostrander.pdf\">[2] </a>In this article, we will look at how surgery can cause strokes.\n<h3><em>What Does the American Heart Association Say About Stroke?</em></h3>\nThe American Heart Association and the American Stroke Association have issued new guidelines aimed at reducing the incidence of stroke. Identifying lifestyle as having had the biggest impact on preventing stroke, the new guidelines urge not smoking, maintaining a healthy weight, exercising and eating a diet rich in fruits and vegetables, and maintaining healthy levels of cholesterol and blood pressure.\n\n<strong>Does Anyone Even Think About the Whether Surgery Can Cause Strokes?</strong>\n\n<span style=\"font-weight: 400;\">People often choose surgery without understanding the risks or potential long-term results of the surgery. When considering surgery, people may think about the recovery time, the cost incurred, and the loss of work hours. And they may even wonder if they really want an artificial joint or if they are up to dealing with the pain involved in the surgery. <strong><em>But does anyone think there may be a risk of stroke surrounding surgery?</em></strong> </span>\n\n<span style=\"font-weight: 400;\">Strokes are a risk factor that is discussed when people face heart surgery, because of the possibility of blood clots during the bypass and all of the manipulation of blood vessels. But what about during other surgeries that are lower risk surgeries? Evidence shows that strokes occur in those without heart conditions too. And they can happen to people who are not considered high risk and to those who had no symptoms before surgery. </span>\n\n<b>What Does the Research About Surgery and Strokes?</b>\n\n<span style=\"font-weight: 400;\">Let\'s take a look at the findings from several research studies that investigate the peri-operative stroke risk. Why? Because we want people to be educated. And they want to fully explore their options before choosing an elective surgery. </span><span style=\"font-weight: 400;\">Peri-operative stroke refers to a stroke that occurs during surgery or within 30 days after surgery.</span><span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">An article in the journal, “Lancet” <a href=\"https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(19)31795-7/fulltext\">[3]</a> investigated the occurrence of strokes in people who did not have stroke symptoms before the surgery. They also looked into the rate of cognitive decline after surgery. The study included 12 academic centers and 1114 people over a three year period. </span>\n\n<span style=\"font-weight: 400;\">What were the results? The researchers found that 78 people, or 7%, had a stroke.</span><span style=\"font-weight: 400;\"> What about cognitive decline? A third of those who did not have a stroke was shown to have cognitive decline. So, what does all that mean? <strong>There is a risk of stroke and problems with deteriorating brain function in 1 out of 14 people who have elective surgery, even if they were not high risk, to begin with. </strong></span>\n\n<em><strong>So, the research does say that surgery can cause stroke</strong></em>s.\n<h4>What Type of Surgery is High Risk?</h4>\n<span style=\"font-weight: 400;\">Stroke really is a possible complication in surgeries that don’t involve the heart or neurological system. The risk increases in people over 65. Plus, the risk of death is higher for those who have a peri-operative stroke. In the journal, “Anesthesiology,”<a href=\"https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1933494\">[4]</a> the researchers investigated specific things that increased the risk of stroke from surgery in the non-cardiac and non-neurological cases. They looked at all different types of surgeries, including hip replacements, biopsies, hernia repair, arthroscopies, and knee repairs. </span>\n\n<span style=\"font-weight: 400;\">This study found three types of surgeries with the highest risk, which included hip replacement, removal of part of the intestine, and removal of part of the lung.  Other specifics that increase risk included older age, kidney disease, COPD, tobacco use, and elevated blood pressure. For those who do experience a peri-operative stroke, the chance of dying within 30 days of the surgery is increased by 8 times. In this particular study, 229 of 173,028 people had a stroke during non-cardiac and non-neurologic surgery.</span>\n\n<b>What about Surgery and Anesthesia, and the Relationship to Stroke Risk?</b>\n\n<span style=\"font-weight: 400;\">Another study in the journal “Anesthesia”<a href=\"https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1946026\">[5]</a> took a look at stroke risk from surgery and anesthesia. They studied 1,455 stroke occurrences over a 25 year period, excluding those with cardiac, vascular, neurologic, and other high-risk conditions. What did they find? They were actually surprised to find out that surgery and anesthesia themselves were a significant risk of stroke, especially considering they left out the high-risk folks with cardiac, vascular, or neurologic problems. </span>\n\n<span style=\"font-weight: 400;\">One more journal actually said the reason for stroke after surgery is “clear and highly predictable: </span><b>surgery.</b><span style=\"font-weight: 400;\">”</span><span style=\"font-weight: 400;\"> <a href=\"https://pubmed.ncbi.nlm.nih.gov/24978064/\">[6]</a>Surgery is necessary sometimes. But when there are alternatives to surgery, these options should be sought out. Keep in mind that surgery is often recommended on the basis of an MRI finding. However, these findings may not even be the cause of the pain. </span>\n\n<span style=\"font-weight: 400;\">We encourage you to find a practitioner who will evaluate you well, and do a complete history and examination in order to make a proper diagnosis. Frequently, structural injuries, such as ligament and tendon injuries, are the underlying source of pain. Surgery often cuts through and removes some of these structures. That actually accelerates the arthritic process, and puts you in line for more surgery.</span>\n<h3>Regenerative Orthopedics As An Alternative to Surgery</h3>\n<span style=\"font-weight: 400;\">Fortunately, there is an alternative to surgery that is highly successful! Regenerative Orthopedics can be sought as a first-line, conservative treatment that can be tried before surgery. It is effective at relieving pain and allowing patients to return quickly to the sports, work, and activities they love. Since surgery can cause strokes, and anesthesia adds to the risk, it is great to know there is an alternative to surgery.</span>\n\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is also an excellent choice for repair of joint injuries and painful musculoskeletal joint conditions while avoiding the risk of stroke and other risks of elective surgery. If you have already had surgery, but continue to experience joint pain, Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy is still an option for pain relief and return to function. When joint injuries are limiting your life, Regenerative Orthopedics can get you the results you want quickly, more safely, and at a dramatically lower cost than surgery.</span>\n\n<hr />\n\n1World Health Organization. The Atlas of Heart Disease and Stroke [Internet]. Available from: http://www.who.int/cardiovascular_diseases/resources/atlas/en/[Accessed: 21 Jun 2020]\n\n2Abbott, Taylor, and Mary Elizabeth Ostrander. \"What therapies are most beneficial for stroke rehabilitation?.\"\n\n<span style=\"font-weight: 400;\">3Perioperative covert stroke in patients undergoing non-cardiac surgery.</span><i><span style=\"font-weight: 400;\"> Lancet,</span></i><span style=\"font-weight: 400;\"> 2019. Doi.org/10.1016/SO140-6736(19)31795-7.</span>\n\n<span style=\"font-weight: 400;\">4Mashour GA, Shanks AM, Kheterpal S.Perioperative stroke, and associated mortality after noncardiac, non-neurologic surgery.</span> <i><span style=\"font-weight: 400;\">Anesthesiology.</span></i><span style=\"font-weight: 400;\"> 2011; </span>114<span style=\"font-weight: 400;\">: 1289-1296.</span>\n\n<span style=\"font-weight: 400;\">5G</span><span style=\"font-weight: 400;\">ilbert Y. Wong, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">David O. Warner, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Darrell R. Schroeder, M.S.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Kenneth P. Offord, M.S.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Mark A. Warner, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">et al. </span><span style=\"font-weight: 400;\">Risk of surgery and anesthesia for ischemic stroke. </span><i><span style=\"font-weight: 400;\">Anesthesiology</span></i><span style=\"font-weight: 400;\">. 2000; 92: 425.</span>\n\n<span style=\"font-weight: 400;\">6Mashour, George A. MD, Ph.D.</span><span style=\"font-weight: 400;\">*</span><span style=\"font-weight: 400;\">; Moore, Laurel E. MD; Lele, Abhijit V. MD; Robicsek, Steven A. MD; Gelb, Adrian W. MBChB</span><span style=\"font-weight: 400;\">. </span><span style=\"font-weight: 400;\">Perioperative care of patients at high risk for stroke during or after non-cardiac, non-neurologic surgery: A consensus statement from the Society for Neuroscience in Anesthesiology and Critical Care. </span><span style=\"font-weight: 400;\"> </span><i><span style=\"font-weight: 400;\">Journal of Neurosurgical Anesthesiology.</span></i> <span style=\"font-weight: 400;\"> 2014; 26(4): 273–285</span><span style=\"font-weight: 400;\">.</span>','Can Surgery Cause Strokes','','inherit','closed','closed','','2697-autosave-v1','','','2020-09-01 18:04:45','2020-09-01 18:04:45','',2697,'https://www.drfields.com/uncategorized/2697-autosave-v1/',0,'revision','',0),(3756,9,'2020-06-21 23:12:28','2020-06-21 23:12:28','<strong>Does Anyone Even Think About the Stroke Risk When Considering Surgery?</strong>\r\n\r\n<span style=\"font-weight: 400;\">People often choose surgery without understanding the risks or potential long-term results of the surgery. When considering surgery, people may think about the recovery time, the cost incurred, and the loss of work hours. They may even wonder if they really want an artificial joint and if they are up to dealing with the pain involved in the surgery. But does anyone think there may be a risk of stroke surrounding surgery? Strokes are a risk factor that is discussed when people face heart surgery, because of the possibility of blood clots during the bypass and all of the manipulation of blood vessels. But what about during other surgeries that are lower risk surgeries? Evidence does show that strokes occur in those without heart conditions too, and in people who are not considered high risk and to those who had no symptoms before surgery. In this article, we will present the findings from several research studies that investigate the perioperative stroke risk, because we want people to be educated and to fully explore their options before choosing an elective surgery. </span><span style=\"font-weight: 400;\">Perioperative stroke refers to a stroke that occurs during surgery or within 30 days after surgery.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<strong>Stroke As a Major Cause of Disability</strong>\r\n\r\nAccording to a report from the World Health Organization [<a class=\"ref-link\" href=\"https://www.intechopen.com/books/new-insight-into-cerebrovascular-diseases-an-updated-comprehensive-review/rehabilitation-strategies-and-key-related-mechanisms-involved-in-stroke-recovery#B1\" data-ref-style=\"bibr\">1</a>], approximately 15 million people experience a stroke each year globally, and stroke is the third leading cause of death after heart disease and cancer, and a major cause of disability. With the aging of the American population and as obesity increases, more strokes are occurring: strokes occur in more than 795,000 U.S. citizens per year and result in 140,000 deaths with 77% of them first-time.<a href=\"https://franklinpierce.edu/about/Showcase2020/Projects/TherapyStrokeRehab-Ostrander.pdf\">[2]</a>\r\n\r\nThe American Heart Association and the American Stroke Association have issued new guidelines aimed at reducing the incidence of stroke. Identifying lifestyle as having had the biggest impact on preventing stroke, the new guidelines urge not smoking, maintaining a healthy weight, exercising and eating a diet rich in fruits and vegetables, and maintaining healthy levels of cholesterol and blood pressure.\r\n\r\n<b>What Does the Research Say About Strokes and Surgery?</b>\r\n\r\n<span style=\"font-weight: 400;\">An article in the journal, “Lancet” investigated the occurrence of strokes in people who did not have stroke symptoms before the surgery. They also looked into the rate of cognitive decline after surgery. The study included 12 academic centers and 1114 people over a three year period. What were the results? The researchers found that 78 people, or 7%, had a stroke.</span><span style=\"font-weight: 400;\"> What about cognitive decline? A third of those who did not have a stroke were shown to have cognitive decline. So, what does all that mean? There is a risk of stroke and problems with deteriorating brain function in 1 out of 14 people who have elective surgery, even if they were not high risk to begin with. </span>\r\n\r\n<span style=\"font-weight: 400;\">Stroke really is a possible complication in surgeries that don’t involve the heart or neurological system. The risk increases in people over 65. Plus, the risk of death is higher for those who have a perioperative stroke. In the journal, “Anesthesiology,” the researchers investigated specific things that increased the risk of stroke from surgery in the non-cardiac and non-neurological cases. They looked at all different types of surgeries, including hip replacements, biopsies, hernia repair, arthroscopies, and knee repairs. This study found three types of surgeries with the highest risk, which included hip replacement, removal of part of the intestine, and removal of part of the lung.  Other specifics that increase risk included older age, kidney disease, COPD, tobacco use, and elevated blood pressure. For those who do experience a perioperative stroke, the chance of dying within 30 days of the surgery is increased by 8 times. In this particular study, 229 of 173,028 people had a stroke during non-cardiac and non-neurologic surgery.</span>\r\n\r\n<b>What about surgery and anesthesia?</b>\r\n\r\n<span style=\"font-weight: 400;\">Another study in the journal “Anesthesia” took a look at stroke risk from surgery and anesthesia. They studied 1,455 stroke occurrences over a 25 year period, excluding those with cardiac, vascular, neurologic, and other high-risk conditions. What did they find? They were actually surprised to find out that surgery and anesthesia themselves were a significant risk of stroke, especially considering they left out the high-risk folks with cardiac, vascular, or neurologic problems. </span>\r\n\r\n<span style=\"font-weight: 400;\">One more journal actually said the reason for stroke after surgery is “clear and highly predictable: </span><b>surgery.</b><span style=\"font-weight: 400;\">”</span><span style=\"font-weight: 400;\"> Surgery is necessary sometimes. But when there are alternatives to surgery, these options should be sought out. Keep in mind that surgery is often recommended on the basis of an MRI finding. However, these findings may not even be the cause of the pain. We encourage you to find a practitioner who will evaluate you well, and do a complete history and examination in order to make a proper diagnosis. Frequently, structural injuries, such as ligament and tendon injuries, are the underlying source of pain. Surgery often cuts through and removes some of these structures, which actually accelerates the arthritic process, and puts you in line for more surgery.</span>\r\n\r\n<span style=\"font-weight: 400;\">Fortunately, there is an alternative to surgery that is highly successful! Regenerative Orthopedics can be sought as a first-line, conservative treatment that can be tried before surgery because it is effective at relieving pain and allowing patients to return quickly to the sports, work, and activities they love. It is also an excellent choice for repair of joint injuries and painful musculoskeletal joint conditions while avoiding the risk of stroke and other risks of elective surgery. If you have already had surgery, but continue to experience joint pain, Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy is still an option for pain relief and return to function. When joint injuries are limiting your life, Regenerative Orthopedics can get you the results you want quickly, more safely, and at a dramatically lower cost than surgery.</span>\r\n\r\n<hr />\r\n\r\nWorld Health Organization. The Atlas of Heart Disease and Stroke [Internet]. Available from: http://www.who.int/cardiovascular_diseases/resources/atlas/en/[Accessed: 14 December 2019]\r\n\r\nAbbott, Taylor, and Mary Elizabeth Ostrander. \"What therapies are most beneficial for stroke rehabilitation?.\"\r\n\r\n<span style=\"font-weight: 400;\">Perioperative covert stroke in patients undergoing non-cardiac surgery.</span><i><span style=\"font-weight: 400;\"> Lancet,</span></i><span style=\"font-weight: 400;\"> 2019. Doi.org/10.1016/SO140-6736(19)31795-7</span>\r\n\r\n<span style=\"font-weight: 400;\">Mashour GA, Shanks AM, Kheterpal S.Perioperative stroke, and associated mortality after noncardiac, non-neurologic surgery.</span> <i><span style=\"font-weight: 400;\">Anesthesiology.</span></i><span style=\"font-weight: 400;\"> 2011; </span><b>114</b><span style=\"font-weight: 400;\">: 1289-1296.</span>\r\n\r\n<a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Gilbert%c2%a0Y.+Wong\"><span style=\"font-weight: 400;\">Gilbert Y. Wong, M.D.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=David%c2%a0O.+Warner\"><span style=\"font-weight: 400;\">David O. Warner, M.D.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Darrell%c2%a0R.+Schroeder\"><span style=\"font-weight: 400;\">Darrell R. Schroeder, M.S.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Kenneth%c2%a0P.+Offord\"><span style=\"font-weight: 400;\">Kenneth P. Offord, M.S.</span></a><span style=\"font-weight: 400;\">; </span><a href=\"https://anesthesiology.pubs.asahq.org/solr/searchresults.aspx?author=Mark%c2%a0A.+Warner\"><span style=\"font-weight: 400;\">Mark A. Warner, M.D.</span></a><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">et al. </span><span style=\"font-weight: 400;\">Risk of surgery and anesthesia for ischemic stroke. </span><i><span style=\"font-weight: 400;\">Anesthesiology</span></i><span style=\"font-weight: 400;\">. 2000; 92: 425.</span>\r\n\r\n<span style=\"font-weight: 400;\">Mashour, George A. MD, PhD</span><span style=\"font-weight: 400;\">*</span><span style=\"font-weight: 400;\">; Moore, Laurel E. MD; Lele, Abhijit V. MD; Robicsek, Steven A. MD; Gelb, Adrian W. MBChB</span><span style=\"font-weight: 400;\">. </span><span style=\"font-weight: 400;\">Perioperative care of patients at high risk for stroke during or after non-cardiac, non-neurologic surgery: Consensus statement from the Society for Neuroscience in Anesthesiology and Critical Care. </span><span style=\"font-weight: 400;\"> </span><i><span style=\"font-weight: 400;\">Journal of Neurosurgical Anesthesiology.</span></i> <a href=\"https://journals.lww.com/jnsa/toc/2014/10000\"><span style=\"font-weight: 400;\"> 2014; 26(4): 273–285</span></a><span style=\"font-weight: 400;\">.</span>','Can Surgery Cause Strokes?','','inherit','closed','closed','','2697-revision-v1','','','2020-06-21 23:12:28','2020-06-21 23:12:28','',2697,'https://www.drfields.com/uncategorized/2697-revision-v1/',0,'revision','',0),(3757,9,'2020-06-21 23:19:39','2020-06-21 23:19:39','<strong>Does Anyone Even Think About the Stroke Risk When Considering Surgery?</strong>\r\n\r\n<span style=\"font-weight: 400;\">People often choose surgery without understanding the risks or potential long-term results of the surgery. When considering surgery, people may think about the recovery time, the cost incurred, and the loss of work hours. They may even wonder if they really want an artificial joint and if they are up to dealing with the pain involved in the surgery. But does anyone think there may be a risk of stroke surrounding surgery? Strokes are a risk factor that is discussed when people face heart surgery, because of the possibility of blood clots during the bypass and all of the manipulation of blood vessels. But what about during other surgeries that are lower risk surgeries? Evidence does show that strokes occur in those without heart conditions too, and in people who are not considered high risk and to those who had no symptoms before surgery. In this article, we will present the findings from several research studies that investigate the perioperative stroke risk, because we want people to be educated and to fully explore their options before choosing an elective surgery. </span><span style=\"font-weight: 400;\">Perioperative stroke refers to a stroke that occurs during surgery or within 30 days after surgery.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<strong>Stroke As a Major Cause of Disability</strong>\r\n\r\nAccording to a report from the World Health Organization [<a class=\"ref-link\" href=\"https://www.intechopen.com/books/new-insight-into-cerebrovascular-diseases-an-updated-comprehensive-review/rehabilitation-strategies-and-key-related-mechanisms-involved-in-stroke-recovery#B1\" data-ref-style=\"bibr\">1</a>], approximately 15 million people experience a stroke each year globally, and stroke is the third leading cause of death after heart disease and cancer, and a major cause of disability. With the aging of the American population and as obesity increases, more strokes are occurring: strokes occur in more than 795,000 U.S. citizens per year and result in 140,000 deaths with 77% of them first-time.<a href=\"https://franklinpierce.edu/about/Showcase2020/Projects/TherapyStrokeRehab-Ostrander.pdf\">[2]</a>\r\n\r\nThe American Heart Association and the American Stroke Association have issued new guidelines aimed at reducing the incidence of stroke. Identifying lifestyle as having had the biggest impact on preventing stroke, the new guidelines urge not smoking, maintaining a healthy weight, exercising and eating a diet rich in fruits and vegetables, and maintaining healthy levels of cholesterol and blood pressure.\r\n\r\n<b>What Does the Research Say About Strokes and Surgery?</b>\r\n\r\n<span style=\"font-weight: 400;\">An article in the journal, “Lancet” <a href=\"https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(19)31795-7/fulltext\">[3]</a> investigated the occurrence of strokes in people who did not have stroke symptoms before the surgery. They also looked into the rate of cognitive decline after surgery. The study included 12 academic centers and 1114 people over a three year period. What were the results? The researchers found that 78 people, or 7%, had a stroke.</span><span style=\"font-weight: 400;\"> What about cognitive decline? A third of those who did not have a stroke were shown to have cognitive decline. So, what does all that mean? There is a risk of stroke and problems with deteriorating brain function in 1 out of 14 people who have elective surgery, even if they were not high risk to begin with. </span>\r\n\r\n<span style=\"font-weight: 400;\">Stroke really is a possible complication in surgeries that don’t involve the heart or neurological system. The risk increases in people over 65. Plus, the risk of death is higher for those who have a perioperative stroke. In the journal, “Anesthesiology,”<a href=\"https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1933494\">[4]</a> the researchers investigated specific things that increased the risk of stroke from surgery in the non-cardiac and non-neurological cases. They looked at all different types of surgeries, including hip replacements, biopsies, hernia repair, arthroscopies, and knee repairs. This study found three types of surgeries with the highest risk, which included hip replacement, removal of part of the intestine, and removal of part of the lung.  Other specifics that increase risk included older age, kidney disease, COPD, tobacco use, and elevated blood pressure. For those who do experience a perioperative stroke, the chance of dying within 30 days of the surgery is increased by 8 times. In this particular study, 229 of 173,028 people had a stroke during non-cardiac and non-neurologic surgery.</span>\r\n\r\n<b>What about surgery and anesthesia?</b>\r\n\r\n<span style=\"font-weight: 400;\">Another study in the journal “Anesthesia”<a href=\"https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1946026\">[5]</a> took a look at stroke risk from surgery and anesthesia. They studied 1,455 stroke occurrences over a 25 year period, excluding those with cardiac, vascular, neurologic, and other high-risk conditions. What did they find? They were actually surprised to find out that surgery and anesthesia themselves were a significant risk of stroke, especially considering they left out the high-risk folks with cardiac, vascular, or neurologic problems. </span>\r\n\r\n<span style=\"font-weight: 400;\">One more journal actually said the reason for stroke after surgery is “clear and highly predictable: </span><b>surgery.</b><span style=\"font-weight: 400;\">”</span><span style=\"font-weight: 400;\"> <a href=\"https://pubmed.ncbi.nlm.nih.gov/24978064/\">[6]</a>Surgery is necessary sometimes. But when there are alternatives to surgery, these options should be sought out. Keep in mind that surgery is often recommended on the basis of an MRI finding. However, these findings may not even be the cause of the pain. We encourage you to find a practitioner who will evaluate you well, and do a complete history and examination in order to make a proper diagnosis. Frequently, structural injuries, such as ligament and tendon injuries, are the underlying source of pain. Surgery often cuts through and removes some of these structures, which actually accelerates the arthritic process, and puts you in line for more surgery.</span>\r\n\r\n<span style=\"font-weight: 400;\">Fortunately, there is an alternative to surgery that is highly successful! Regenerative Orthopedics can be sought as a first-line, conservative treatment that can be tried before surgery because it is effective at relieving pain and allowing patients to return quickly to the sports, work, and activities they love. It is also an excellent choice for repair of joint injuries and painful musculoskeletal joint conditions while avoiding the risk of stroke and other risks of elective surgery. If you have already had surgery, but continue to experience joint pain, Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy is still an option for pain relief and return to function. When joint injuries are limiting your life, Regenerative Orthopedics can get you the results you want quickly, more safely, and at a dramatically lower cost than surgery.</span>\r\n\r\n<hr />\r\n\r\n1World Health Organization. The Atlas of Heart Disease and Stroke [Internet]. Available from: http://www.who.int/cardiovascular_diseases/resources/atlas/en/[Accessed: 14 December 2019]\r\n\r\n2Abbott, Taylor, and Mary Elizabeth Ostrander. \"What therapies are most beneficial for stroke rehabilitation?.\"\r\n\r\n<span style=\"font-weight: 400;\">3Perioperative covert stroke in patients undergoing non-cardiac surgery.</span><i><span style=\"font-weight: 400;\"> Lancet,</span></i><span style=\"font-weight: 400;\"> 2019. Doi.org/10.1016/SO140-6736(19)31795-7.</span>\r\n\r\n<span style=\"font-weight: 400;\">4Mashour GA, Shanks AM, Kheterpal S.Perioperative stroke, and associated mortality after noncardiac, non-neurologic surgery.</span> <i><span style=\"font-weight: 400;\">Anesthesiology.</span></i><span style=\"font-weight: 400;\"> 2011; </span>114<span style=\"font-weight: 400;\">: 1289-1296.</span>\r\n\r\n<span style=\"font-weight: 400;\">5G</span><span style=\"font-weight: 400;\">ilbert Y. Wong, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">David O. Warner, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Darrell R. Schroeder, M.S.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Kenneth P. Offord, M.S.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Mark A. Warner, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">et al. </span><span style=\"font-weight: 400;\">Risk of surgery and anesthesia for ischemic stroke. </span><i><span style=\"font-weight: 400;\">Anesthesiology</span></i><span style=\"font-weight: 400;\">. 2000; 92: 425.</span>\r\n\r\n<span style=\"font-weight: 400;\">6Mashour, George A. MD, PhD</span><span style=\"font-weight: 400;\">*</span><span style=\"font-weight: 400;\">; Moore, Laurel E. MD; Lele, Abhijit V. MD; Robicsek, Steven A. MD; Gelb, Adrian W. MBChB</span><span style=\"font-weight: 400;\">. </span><span style=\"font-weight: 400;\">Perioperative care of patients at high risk for stroke during or after non-cardiac, non-neurologic surgery: Consensus statement from the Society for Neuroscience in Anesthesiology and Critical Care. </span><span style=\"font-weight: 400;\"> </span><i><span style=\"font-weight: 400;\">Journal of Neurosurgical Anesthesiology.</span></i> <a href=\"https://journals.lww.com/jnsa/toc/2014/10000\"><span style=\"font-weight: 400;\"> 2014; 26(4): 273–285</span></a><span style=\"font-weight: 400;\">.</span>','Can Surgery Cause Strokes?','','inherit','closed','closed','','2697-revision-v1','','','2020-06-21 23:19:39','2020-06-21 23:19:39','',2697,'https://www.drfields.com/uncategorized/2697-revision-v1/',0,'revision','',0),(3758,9,'2020-06-21 23:20:54','2020-06-21 23:20:54','<strong>Does Anyone Even Think About the Stroke Risk When Considering Surgery?</strong>\r\n\r\n<span style=\"font-weight: 400;\">People often choose surgery without understanding the risks or potential long-term results of the surgery. When considering surgery, people may think about the recovery time, the cost incurred, and the loss of work hours. They may even wonder if they really want an artificial joint and if they are up to dealing with the pain involved in the surgery. But does anyone think there may be a risk of stroke surrounding surgery? Strokes are a risk factor that is discussed when people face heart surgery, because of the possibility of blood clots during the bypass and all of the manipulation of blood vessels. But what about during other surgeries that are lower risk surgeries? Evidence does show that strokes occur in those without heart conditions too, and in people who are not considered high risk and to those who had no symptoms before surgery. In this article, we will present the findings from several research studies that investigate the perioperative stroke risk, because we want people to be educated and to fully explore their options before choosing an elective surgery. </span><span style=\"font-weight: 400;\">Perioperative stroke refers to a stroke that occurs during surgery or within 30 days after surgery.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<strong>Stroke As a Major Cause of Disability</strong>\r\n\r\nAccording to a report from the World Health Organization [<a class=\"ref-link\" href=\"https://www.intechopen.com/books/new-insight-into-cerebrovascular-diseases-an-updated-comprehensive-review/rehabilitation-strategies-and-key-related-mechanisms-involved-in-stroke-recovery#B1\" data-ref-style=\"bibr\">1</a>], approximately 15 million people experience a stroke each year globally, and stroke is the third leading cause of death after heart disease and cancer, and a major cause of disability. With the aging of the American population and as obesity increases, more strokes are occurring: strokes occur in more than 795,000 U.S. citizens per year and result in 140,000 deaths with 77% of them first-time.<a href=\"https://franklinpierce.edu/about/Showcase2020/Projects/TherapyStrokeRehab-Ostrander.pdf\">[2]</a>\r\n\r\nThe American Heart Association and the American Stroke Association have issued new guidelines aimed at reducing the incidence of stroke. Identifying lifestyle as having had the biggest impact on preventing stroke, the new guidelines urge not smoking, maintaining a healthy weight, exercising and eating a diet rich in fruits and vegetables, and maintaining healthy levels of cholesterol and blood pressure.\r\n\r\n<b>What Does the Research Say About Strokes and Surgery?</b>\r\n\r\n<span style=\"font-weight: 400;\">An article in the journal, “Lancet” <a href=\"https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(19)31795-7/fulltext\">[3]</a> investigated the occurrence of strokes in people who did not have stroke symptoms before the surgery. They also looked into the rate of cognitive decline after surgery. The study included 12 academic centers and 1114 people over a three year period. What were the results? The researchers found that 78 people, or 7%, had a stroke.</span><span style=\"font-weight: 400;\"> What about cognitive decline? A third of those who did not have a stroke were shown to have cognitive decline. So, what does all that mean? There is a risk of stroke and problems with deteriorating brain function in 1 out of 14 people who have elective surgery, even if they were not high risk to begin with. </span>\r\n\r\n<span style=\"font-weight: 400;\">Stroke really is a possible complication in surgeries that don’t involve the heart or neurological system. The risk increases in people over 65. Plus, the risk of death is higher for those who have a perioperative stroke. In the journal, “Anesthesiology,”<a href=\"https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1933494\">[4]</a> the researchers investigated specific things that increased the risk of stroke from surgery in the non-cardiac and non-neurological cases. They looked at all different types of surgeries, including hip replacements, biopsies, hernia repair, arthroscopies, and knee repairs. This study found three types of surgeries with the highest risk, which included hip replacement, removal of part of the intestine, and removal of part of the lung.  Other specifics that increase risk included older age, kidney disease, COPD, tobacco use, and elevated blood pressure. For those who do experience a perioperative stroke, the chance of dying within 30 days of the surgery is increased by 8 times. In this particular study, 229 of 173,028 people had a stroke during non-cardiac and non-neurologic surgery.</span>\r\n\r\n<b>What about surgery and anesthesia?</b>\r\n\r\n<span style=\"font-weight: 400;\">Another study in the journal “Anesthesia”<a href=\"https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1946026\">[5]</a> took a look at stroke risk from surgery and anesthesia. They studied 1,455 stroke occurrences over a 25 year period, excluding those with cardiac, vascular, neurologic, and other high-risk conditions. What did they find? They were actually surprised to find out that surgery and anesthesia themselves were a significant risk of stroke, especially considering they left out the high-risk folks with cardiac, vascular, or neurologic problems. </span>\r\n\r\n<span style=\"font-weight: 400;\">One more journal actually said the reason for stroke after surgery is “clear and highly predictable: </span><b>surgery.</b><span style=\"font-weight: 400;\">”</span><span style=\"font-weight: 400;\"> <a href=\"https://pubmed.ncbi.nlm.nih.gov/24978064/\">[6]</a>Surgery is necessary sometimes. But when there are alternatives to surgery, these options should be sought out. Keep in mind that surgery is often recommended on the basis of an MRI finding. However, these findings may not even be the cause of the pain. We encourage you to find a practitioner who will evaluate you well, and do a complete history and examination in order to make a proper diagnosis. Frequently, structural injuries, such as ligament and tendon injuries, are the underlying source of pain. Surgery often cuts through and removes some of these structures, which actually accelerates the arthritic process, and puts you in line for more surgery.</span>\r\n\r\n<span style=\"font-weight: 400;\">Fortunately, there is an alternative to surgery that is highly successful! Regenerative Orthopedics can be sought as a first-line, conservative treatment that can be tried before surgery because it is effective at relieving pain and allowing patients to return quickly to the sports, work, and activities they love. It is also an excellent choice for repair of joint injuries and painful musculoskeletal joint conditions while avoiding the risk of stroke and other risks of elective surgery. If you have already had surgery, but continue to experience joint pain, Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy is still an option for pain relief and return to function. When joint injuries are limiting your life, Regenerative Orthopedics can get you the results you want quickly, more safely, and at a dramatically lower cost than surgery.</span>\r\n\r\n<hr />\r\n\r\n1World Health Organization. The Atlas of Heart Disease and Stroke [Internet]. Available from: http://www.who.int/cardiovascular_diseases/resources/atlas/en/[Accessed: 21 Jun 2020]\r\n\r\n2Abbott, Taylor, and Mary Elizabeth Ostrander. \"What therapies are most beneficial for stroke rehabilitation?.\"\r\n\r\n<span style=\"font-weight: 400;\">3Perioperative covert stroke in patients undergoing non-cardiac surgery.</span><i><span style=\"font-weight: 400;\"> Lancet,</span></i><span style=\"font-weight: 400;\"> 2019. Doi.org/10.1016/SO140-6736(19)31795-7.</span>\r\n\r\n<span style=\"font-weight: 400;\">4Mashour GA, Shanks AM, Kheterpal S.Perioperative stroke, and associated mortality after noncardiac, non-neurologic surgery.</span> <i><span style=\"font-weight: 400;\">Anesthesiology.</span></i><span style=\"font-weight: 400;\"> 2011; </span>114<span style=\"font-weight: 400;\">: 1289-1296.</span>\r\n\r\n<span style=\"font-weight: 400;\">5G</span><span style=\"font-weight: 400;\">ilbert Y. Wong, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">David O. Warner, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Darrell R. Schroeder, M.S.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Kenneth P. Offord, M.S.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Mark A. Warner, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">et al. </span><span style=\"font-weight: 400;\">Risk of surgery and anesthesia for ischemic stroke. </span><i><span style=\"font-weight: 400;\">Anesthesiology</span></i><span style=\"font-weight: 400;\">. 2000; 92: 425.</span>\r\n\r\n<span style=\"font-weight: 400;\">6Mashour, George A. MD, PhD</span><span style=\"font-weight: 400;\">*</span><span style=\"font-weight: 400;\">; Moore, Laurel E. MD; Lele, Abhijit V. MD; Robicsek, Steven A. MD; Gelb, Adrian W. MBChB</span><span style=\"font-weight: 400;\">. </span><span style=\"font-weight: 400;\">Perioperative care of patients at high risk for stroke during or after non-cardiac, non-neurologic surgery: Consensus statement from the Society for Neuroscience in Anesthesiology and Critical Care. </span><span style=\"font-weight: 400;\"> </span><i><span style=\"font-weight: 400;\">Journal of Neurosurgical Anesthesiology.</span></i> <span style=\"font-weight: 400;\"> 2014; 26(4): 273–285</span><span style=\"font-weight: 400;\">.</span>','Can Surgery Cause Strokes?','','inherit','closed','closed','','2697-revision-v1','','','2020-06-21 23:20:54','2020-06-21 23:20:54','',2697,'https://www.drfields.com/uncategorized/2697-revision-v1/',0,'revision','',0),(3759,9,'2020-06-21 23:21:58','2020-06-21 23:21:58','<strong>Stroke As a Major Cause of Disability</strong>\r\n\r\nAccording to a report from the World Health Organization [<a class=\"ref-link\" href=\"https://www.intechopen.com/books/new-insight-into-cerebrovascular-diseases-an-updated-comprehensive-review/rehabilitation-strategies-and-key-related-mechanisms-involved-in-stroke-recovery#B1\" data-ref-style=\"bibr\">1</a>], approximately 15 million people experience a stroke each year globally, and stroke is the third leading cause of death after heart disease and cancer, and a major cause of disability. With the aging of the American population and as obesity increases, more strokes are occurring: strokes occur in more than 795,000 U.S. citizens per year and result in 140,000 deaths with 77% of them first-time.<a href=\"https://franklinpierce.edu/about/Showcase2020/Projects/TherapyStrokeRehab-Ostrander.pdf\">[2]</a>\r\n\r\nThe American Heart Association and the American Stroke Association have issued new guidelines aimed at reducing the incidence of stroke. Identifying lifestyle as having had the biggest impact on preventing stroke, the new guidelines urge not smoking, maintaining a healthy weight, exercising and eating a diet rich in fruits and vegetables, and maintaining healthy levels of cholesterol and blood pressure.\r\n\r\n<strong>Does Anyone Even Think About the Stroke Risk When Considering Surgery?</strong>\r\n\r\n<span style=\"font-weight: 400;\">People often choose surgery without understanding the risks or potential long-term results of the surgery. When considering surgery, people may think about the recovery time, the cost incurred, and the loss of work hours. They may even wonder if they really want an artificial joint and if they are up to dealing with the pain involved in the surgery. But does anyone think there may be a risk of stroke surrounding surgery? Strokes are a risk factor that is discussed when people face heart surgery, because of the possibility of blood clots during the bypass and all of the manipulation of blood vessels. But what about during other surgeries that are lower risk surgeries? Evidence does show that strokes occur in those without heart conditions too, and in people who are not considered high risk and to those who had no symptoms before surgery. In this article, we will present the findings from several research studies that investigate the perioperative stroke risk, because we want people to be educated and to fully explore their options before choosing an elective surgery. </span><span style=\"font-weight: 400;\">Perioperative stroke refers to a stroke that occurs during surgery or within 30 days after surgery.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>What Does the Research Say About Strokes and Surgery?</b>\r\n\r\n<span style=\"font-weight: 400;\">An article in the journal, “Lancet” <a href=\"https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(19)31795-7/fulltext\">[3]</a> investigated the occurrence of strokes in people who did not have stroke symptoms before the surgery. They also looked into the rate of cognitive decline after surgery. The study included 12 academic centers and 1114 people over a three year period. What were the results? The researchers found that 78 people, or 7%, had a stroke.</span><span style=\"font-weight: 400;\"> What about cognitive decline? A third of those who did not have a stroke were shown to have cognitive decline. So, what does all that mean? There is a risk of stroke and problems with deteriorating brain function in 1 out of 14 people who have elective surgery, even if they were not high risk to begin with. </span>\r\n\r\n<span style=\"font-weight: 400;\">Stroke really is a possible complication in surgeries that don’t involve the heart or neurological system. The risk increases in people over 65. Plus, the risk of death is higher for those who have a perioperative stroke. In the journal, “Anesthesiology,”<a href=\"https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1933494\">[4]</a> the researchers investigated specific things that increased the risk of stroke from surgery in the non-cardiac and non-neurological cases. They looked at all different types of surgeries, including hip replacements, biopsies, hernia repair, arthroscopies, and knee repairs. This study found three types of surgeries with the highest risk, which included hip replacement, removal of part of the intestine, and removal of part of the lung.  Other specifics that increase risk included older age, kidney disease, COPD, tobacco use, and elevated blood pressure. For those who do experience a perioperative stroke, the chance of dying within 30 days of the surgery is increased by 8 times. In this particular study, 229 of 173,028 people had a stroke during non-cardiac and non-neurologic surgery.</span>\r\n\r\n<b>What about surgery and anesthesia?</b>\r\n\r\n<span style=\"font-weight: 400;\">Another study in the journal “Anesthesia”<a href=\"https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1946026\">[5]</a> took a look at stroke risk from surgery and anesthesia. They studied 1,455 stroke occurrences over a 25 year period, excluding those with cardiac, vascular, neurologic, and other high-risk conditions. What did they find? They were actually surprised to find out that surgery and anesthesia themselves were a significant risk of stroke, especially considering they left out the high-risk folks with cardiac, vascular, or neurologic problems. </span>\r\n\r\n<span style=\"font-weight: 400;\">One more journal actually said the reason for stroke after surgery is “clear and highly predictable: </span><b>surgery.</b><span style=\"font-weight: 400;\">”</span><span style=\"font-weight: 400;\"> <a href=\"https://pubmed.ncbi.nlm.nih.gov/24978064/\">[6]</a>Surgery is necessary sometimes. But when there are alternatives to surgery, these options should be sought out. Keep in mind that surgery is often recommended on the basis of an MRI finding. However, these findings may not even be the cause of the pain. We encourage you to find a practitioner who will evaluate you well, and do a complete history and examination in order to make a proper diagnosis. Frequently, structural injuries, such as ligament and tendon injuries, are the underlying source of pain. Surgery often cuts through and removes some of these structures, which actually accelerates the arthritic process, and puts you in line for more surgery.</span>\r\n\r\n<span style=\"font-weight: 400;\">Fortunately, there is an alternative to surgery that is highly successful! Regenerative Orthopedics can be sought as a first-line, conservative treatment that can be tried before surgery because it is effective at relieving pain and allowing patients to return quickly to the sports, work, and activities they love. It is also an excellent choice for repair of joint injuries and painful musculoskeletal joint conditions while avoiding the risk of stroke and other risks of elective surgery. If you have already had surgery, but continue to experience joint pain, Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy is still an option for pain relief and return to function. When joint injuries are limiting your life, Regenerative Orthopedics can get you the results you want quickly, more safely, and at a dramatically lower cost than surgery.</span>\r\n\r\n<hr />\r\n\r\n1World Health Organization. The Atlas of Heart Disease and Stroke [Internet]. Available from: http://www.who.int/cardiovascular_diseases/resources/atlas/en/[Accessed: 21 Jun 2020]\r\n\r\n2Abbott, Taylor, and Mary Elizabeth Ostrander. \"What therapies are most beneficial for stroke rehabilitation?.\"\r\n\r\n<span style=\"font-weight: 400;\">3Perioperative covert stroke in patients undergoing non-cardiac surgery.</span><i><span style=\"font-weight: 400;\"> Lancet,</span></i><span style=\"font-weight: 400;\"> 2019. Doi.org/10.1016/SO140-6736(19)31795-7.</span>\r\n\r\n<span style=\"font-weight: 400;\">4Mashour GA, Shanks AM, Kheterpal S.Perioperative stroke, and associated mortality after noncardiac, non-neurologic surgery.</span> <i><span style=\"font-weight: 400;\">Anesthesiology.</span></i><span style=\"font-weight: 400;\"> 2011; </span>114<span style=\"font-weight: 400;\">: 1289-1296.</span>\r\n\r\n<span style=\"font-weight: 400;\">5G</span><span style=\"font-weight: 400;\">ilbert Y. Wong, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">David O. Warner, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Darrell R. Schroeder, M.S.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Kenneth P. Offord, M.S.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Mark A. Warner, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">et al. </span><span style=\"font-weight: 400;\">Risk of surgery and anesthesia for ischemic stroke. </span><i><span style=\"font-weight: 400;\">Anesthesiology</span></i><span style=\"font-weight: 400;\">. 2000; 92: 425.</span>\r\n\r\n<span style=\"font-weight: 400;\">6Mashour, George A. MD, PhD</span><span style=\"font-weight: 400;\">*</span><span style=\"font-weight: 400;\">; Moore, Laurel E. MD; Lele, Abhijit V. MD; Robicsek, Steven A. MD; Gelb, Adrian W. MBChB</span><span style=\"font-weight: 400;\">. </span><span style=\"font-weight: 400;\">Perioperative care of patients at high risk for stroke during or after non-cardiac, non-neurologic surgery: Consensus statement from the Society for Neuroscience in Anesthesiology and Critical Care. </span><span style=\"font-weight: 400;\"> </span><i><span style=\"font-weight: 400;\">Journal of Neurosurgical Anesthesiology.</span></i> <span style=\"font-weight: 400;\"> 2014; 26(4): 273–285</span><span style=\"font-weight: 400;\">.</span>','Can Surgery Cause Strokes?','','inherit','closed','closed','','2697-revision-v1','','','2020-06-21 23:21:58','2020-06-21 23:21:58','',2697,'https://www.drfields.com/uncategorized/2697-revision-v1/',0,'revision','',0),(3760,9,'2020-06-21 23:23:16','2020-06-21 23:23:16','<strong>Stroke As a Major Cause of Disability</strong>\r\n\r\nAccording to a report from the World Health Organization [<a class=\"ref-link\" href=\"https://www.intechopen.com/books/new-insight-into-cerebrovascular-diseases-an-updated-comprehensive-review/rehabilitation-strategies-and-key-related-mechanisms-involved-in-stroke-recovery#B1\" data-ref-style=\"bibr\">1</a>], approximately 15 million people experience a stroke each year globally, and stroke is the third leading cause of death after heart disease and cancer, and a major cause of disability. With the aging of the American population and as obesity increases, more strokes are occurring: strokes occur in more than 795,000 U.S. citizens per year and result in 140,000 deaths with 77% of them first-time.<a href=\"https://franklinpierce.edu/about/Showcase2020/Projects/TherapyStrokeRehab-Ostrander.pdf\">[2]</a>\r\n\r\nThe American Heart Association and the American Stroke Association have issued new guidelines aimed at reducing the incidence of stroke. Identifying lifestyle as having had the biggest impact on preventing stroke, the new guidelines urge not smoking, maintaining a healthy weight, exercising and eating a diet rich in fruits and vegetables, and maintaining healthy levels of cholesterol and blood pressure.\r\n\r\n<strong>Does Anyone Even Think About the Stroke Risk When Considering Surgery?</strong>\r\n\r\n<span style=\"font-weight: 400;\">People often choose surgery without understanding the risks or potential long-term results of the surgery. When considering surgery, people may think about the recovery time, the cost incurred, and the loss of work hours. They may even wonder if they really want an artificial joint and if they are up to dealing with the pain involved in the surgery. But does anyone think there may be a risk of stroke surrounding surgery? Strokes are a risk factor that is discussed when people face heart surgery, because of the possibility of blood clots during the bypass and all of the manipulation of blood vessels. But what about during other surgeries that are lower risk surgeries? Evidence does show that strokes occur in those without heart conditions too, and in people who are not considered high risk and to those who had no symptoms before surgery. In this article, we will present the findings from several research studies that investigate the perioperative stroke risk, because we want people to be educated and to fully explore their options before choosing an elective surgery. </span><span style=\"font-weight: 400;\">Perioperative stroke refers to a stroke that occurs during surgery or within 30 days after surgery.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>What Does the Research Say About Strokes and Surgery?</b>\r\n\r\n<span style=\"font-weight: 400;\">An article in the journal, “Lancet” <a href=\"https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(19)31795-7/fulltext\">[3]</a> investigated the occurrence of strokes in people who did not have stroke symptoms before the surgery. They also looked into the rate of cognitive decline after surgery. The study included 12 academic centers and 1114 people over a three year period. What were the results? The researchers found that 78 people, or 7%, had a stroke.</span><span style=\"font-weight: 400;\"> What about cognitive decline? A third of those who did not have a stroke was shown to have cognitive decline. So, what does all that mean? There is a risk of stroke and problems with deteriorating brain function in 1 out of 14 people who have elective surgery, even if they were not high risk, to begin with. </span>\r\n\r\n<span style=\"font-weight: 400;\">Stroke really is a possible complication in surgeries that don’t involve the heart or neurological system. The risk increases in people over 65. Plus, the risk of death is higher for those who have a perioperative stroke. In the journal, “Anesthesiology,”<a href=\"https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1933494\">[4]</a> the researchers investigated specific things that increased the risk of stroke from surgery in the non-cardiac and non-neurological cases. They looked at all different types of surgeries, including hip replacements, biopsies, hernia repair, arthroscopies, and knee repairs. This study found three types of surgeries with the highest risk, which included hip replacement, removal of part of the intestine, and removal of part of the lung.  Other specifics that increase risk included older age, kidney disease, COPD, tobacco use, and elevated blood pressure. For those who do experience a perioperative stroke, the chance of dying within 30 days of the surgery is increased by 8 times. In this particular study, 229 of 173,028 people had a stroke during non-cardiac and non-neurologic surgery.</span>\r\n\r\n<b>What about surgery and anesthesia?</b>\r\n\r\n<span style=\"font-weight: 400;\">Another study in the journal “Anesthesia”<a href=\"https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1946026\">[5]</a> took a look at stroke risk from surgery and anesthesia. They studied 1,455 stroke occurrences over a 25 year period, excluding those with cardiac, vascular, neurologic, and other high-risk conditions. What did they find? They were actually surprised to find out that surgery and anesthesia themselves were a significant risk of stroke, especially considering they left out the high-risk folks with cardiac, vascular, or neurologic problems. </span>\r\n\r\n<span style=\"font-weight: 400;\">One more journal actually said the reason for stroke after surgery is “clear and highly predictable: </span><b>surgery.</b><span style=\"font-weight: 400;\">”</span><span style=\"font-weight: 400;\"> <a href=\"https://pubmed.ncbi.nlm.nih.gov/24978064/\">[6]</a>Surgery is necessary sometimes. But when there are alternatives to surgery, these options should be sought out. Keep in mind that surgery is often recommended on the basis of an MRI finding. However, these findings may not even be the cause of the pain. We encourage you to find a practitioner who will evaluate you well, and do a complete history and examination in order to make a proper diagnosis. Frequently, structural injuries, such as ligament and tendon injuries, are the underlying source of pain. Surgery often cuts through and removes some of these structures, which actually accelerates the arthritic process, and puts you in line for more surgery.</span>\r\n\r\n<span style=\"font-weight: 400;\">Fortunately, there is an alternative to surgery that is highly successful! Regenerative Orthopedics can be sought as a first-line, conservative treatment that can be tried before surgery because it is effective at relieving pain and allowing patients to return quickly to the sports, work, and activities they love. It is also an excellent choice for repair of joint injuries and painful musculoskeletal joint conditions while avoiding the risk of stroke and other risks of elective surgery. If you have already had surgery, but continue to experience joint pain, Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy is still an option for pain relief and return to function. When joint injuries are limiting your life, Regenerative Orthopedics can get you the results you want quickly, more safely, and at a dramatically lower cost than surgery.</span>\r\n\r\n<hr />\r\n\r\n1World Health Organization. The Atlas of Heart Disease and Stroke [Internet]. Available from: http://www.who.int/cardiovascular_diseases/resources/atlas/en/[Accessed: 21 Jun 2020]\r\n\r\n2Abbott, Taylor, and Mary Elizabeth Ostrander. \"What therapies are most beneficial for stroke rehabilitation?.\"\r\n\r\n<span style=\"font-weight: 400;\">3Perioperative covert stroke in patients undergoing non-cardiac surgery.</span><i><span style=\"font-weight: 400;\"> Lancet,</span></i><span style=\"font-weight: 400;\"> 2019. Doi.org/10.1016/SO140-6736(19)31795-7.</span>\r\n\r\n<span style=\"font-weight: 400;\">4Mashour GA, Shanks AM, Kheterpal S.Perioperative stroke, and associated mortality after noncardiac, non-neurologic surgery.</span> <i><span style=\"font-weight: 400;\">Anesthesiology.</span></i><span style=\"font-weight: 400;\"> 2011; </span>114<span style=\"font-weight: 400;\">: 1289-1296.</span>\r\n\r\n<span style=\"font-weight: 400;\">5G</span><span style=\"font-weight: 400;\">ilbert Y. Wong, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">David O. Warner, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Darrell R. Schroeder, M.S.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Kenneth P. Offord, M.S.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Mark A. Warner, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">et al. </span><span style=\"font-weight: 400;\">Risk of surgery and anesthesia for ischemic stroke. </span><i><span style=\"font-weight: 400;\">Anesthesiology</span></i><span style=\"font-weight: 400;\">. 2000; 92: 425.</span>\r\n\r\n<span style=\"font-weight: 400;\">6Mashour, George A. MD, Ph.D.</span><span style=\"font-weight: 400;\">*</span><span style=\"font-weight: 400;\">; Moore, Laurel E. MD; Lele, Abhijit V. MD; Robicsek, Steven A. MD; Gelb, Adrian W. MBChB</span><span style=\"font-weight: 400;\">. </span><span style=\"font-weight: 400;\">Perioperative care of patients at high risk for stroke during or after non-cardiac, non-neurologic surgery: A consensus statement from the Society for Neuroscience in Anesthesiology and Critical Care. </span><span style=\"font-weight: 400;\"> </span><i><span style=\"font-weight: 400;\">Journal of Neurosurgical Anesthesiology.</span></i> <span style=\"font-weight: 400;\"> 2014; 26(4): 273–285</span><span style=\"font-weight: 400;\">.</span>','Can Surgery Cause Strokes?','','inherit','closed','closed','','2697-revision-v1','','','2020-06-21 23:23:16','2020-06-21 23:23:16','',2697,'https://www.drfields.com/uncategorized/2697-revision-v1/',0,'revision','',0),(3761,9,'2020-06-21 23:36:39','2020-06-21 23:36:39','In September of 2007, Dr. Fields completed his 7th half Ironman triathlon in Santa Cruz, CA. This was his second half Ironman this year having completed one in June in Ensenada, Mexico. He also participated in two half Ironman races each year in 2005 and in 2006.\r\n\r\nA half <a href=\"https://www.drfields.com/about-the-athletic-doc/\">Ironman</a> Triathlon is a 1.2-mile swim, 56-mile bike and 13.1-mile run.\r\nThis distant race takes many hours a week of training. Swimming, biking and running must all be fit into each week of training in addition to daily stretching.\r\n\r\nOn most weekends, Dr Fields can be found on long training rides with the Los Angeles Triathlon Club. He is not only a member of the LA TRI Club but a sponsor too. Besides being outdoors and keeping himself very physically active, Dr Fields enjoys the camaraderie of his training partners.\r\n\r\nIn total Dr. Fields has done over 35 triathlons. Outside of the above distance the other races were Olympic distant races (0.9 mile swim, 26 mile bike, 6.2 mile run).\r\n\r\nHe says that even with all the years of racing and training, he still enjoys the physical and mental aspects of training.\r\n\r\nTo help him stay in top physical shape, he utilizes a daily vitamin and <a href=\"https://www.drfields.com/Articles/Health-News/The-Importance-of-Supplementation-Upwards-of-Half-the-Population-51-Years-or-Older-do-Not-Get-Adequate-Nutrition-from-Their-Diets/\">supplement</a> regime as well as message therapy, chiropractic and of course, Prolotherapy for those injuries that just won’t heal. In addition, he gets plenty of sleep, drinks lots of water and eats mostly organic, unprocessed foods to help him maintain optimal health.\r\n\r\nHis motto is not only train hard but smart – as if your body depended on it.\r\n\r\n<img class=\"aligncenter size-full wp-image-1166\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/LATC-Logo.jpg\" alt=\"Latc Logo\" width=\"150\" height=\"88\" />\r\n<a style=\"margin: 0 auto; display: table;\" href=\"www.latriclub.com\" target=\"_blank\" rel=\"noopener noreferrer\">Sponsor of the Los Angeles Triclub</a>','Dr. Fields Completes His 7th Half Ironman Triathlon','','inherit','closed','closed','','1510-revision-v1','','','2020-06-21 23:36:39','2020-06-21 23:36:39','',1510,'https://www.drfields.com/uncategorized/1510-revision-v1/',0,'revision','',0),(3762,9,'2020-10-12 17:56:12','2020-10-12 17:56:12','<h3><img class=\"alignright size-full wp-image-1185\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Foods-That-Burn-Fat.jpg\" alt=\"Foods That Burn Fat\" width=\"200\" height=\"313\" />Fat Fighting Foods</h3>\nTired of that spare tire? Sick of your love handles? You can increase your body’s fat-burning power by eating more fat fighting foods that strengthen your liver (your body’s main fat-metabolizing organ) to burn fat better. The result? A leaner you! There are many great liver boosting foods, but here are some of my favorites:\n<h3><strong>Leafy Greens</strong>:</h3>\nSpinach, spring mix, mustard greens, and other dark leafy greens are good sources of fiber and powerhouses of nutrition. Research demonstrates that their high concentration of vitamins and antioxidants helps prevent hunger while protecting you from heart disease, cancer, cataracts, and memory loss.\n<h3><strong>Beans and Legumes:</strong></h3>\nLegumes are the best source of  fiber of any foods. They help to stabilize blood sugar while keeping you regular. They are also high in potassium, a critical mineral that reduces dehydration and the risk of high blood pressure and stroke.\n<h3><strong>Garlic and Onions:</strong></h3>\nThis dynamic duo of foods contains phytochemicals that break down fatty deposits in the body. They also breakdown cholesterol; kill viruses, bacteria, and fungi; and protect against heart disease. With a little help from garlic and onions, you can burn fat while warding off illness.\n<h3><strong>Cayenne:</strong></h3>\nThis hot spice lessens the risk of excess insulin in the body by speeding metabolism and lowering blood glucose (sugar) levels before the excess insulin can result in fat stores. Spice up your next meal with cayenne and lessen those love handles.\n<h3><strong>Turmeric:</strong></h3>\nThe popular spice used primarily in Indian cooking is one of the highest known sources of beta carotene. It is an antioxidant that helps protect the liver from free radical damage. Turmeric also helps strengthen your liver while helping your body metabolize fats by decreasing the fat storage rate in liver cells. Add a teaspoon of turmeric into your next curry dish to help your body fight fat.\n<h3><strong>Cinnamon:</strong></h3>\nResearchers at the United States Department of Agriculture showed that a quarter to one teaspoon of cinnamon with food helps metabolize sugar up to twenty times better than food not eaten with cinnamon. Excess sugar in the blood can lead to fat storage. Before you sip that chai tea latte or eat your oatmeal, sprinkle on the cinnamon.\n<h3><strong>Flax Seeds and Flax Seed Oil:</strong></h3>\nThese seeds and oil attract oil-soluble toxins that become lodged in the fatty tissues of the body. Once attracted, they help to escort fat-soluble toxins out. That spells fewer fat stores and a trimmer you.\n\nAnd if you are having a difficult time choosing to eat healthy foods like vegetables and fruit, it\'s important to remember to make them look good and palatable. Keep in mind that we are bombarded constantly with junk food advertisements. An article in <em>Media Psychology</em> notes...\"promoting healthy foods (Bruce et al.,<span class=\"Apple-converted-space\"> </span><span class=\"ref-lnk lazy-ref\"><a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0009\" data-reflink=\"_i32 _i33\">2016</a>; Hanks, Just, &amp; Brumberg, <a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0021\" data-reflink=\"_i32 _i33\">2016</a>; Papies, <a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0039\" data-reflink=\"_i32 _i33\">2016</a>) Hanks et al. (<a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0021\" data-reflink=\"_i32 _i33\">2016</a>) revealed that children chose to eat twice as many vegetables when they were advertised through fun appeals: depicting healthy foods as humanized cheerful cartoon characters.\"<a href=\"https://www.tandfonline.com/doi/abs/10.1080/15213269.2019.1584569\">[1]</a></span>\n\n1Samson, Lelia, and Moniek Buijzen. \"Craving healthy foods?! How sensory appeals increase appetitive motivational processing of healthy foods in adolescents.\" <i>Media Psychology</i> 23.2 (2020): 159-183.','Fat Fighting Foods. Learn How Certain Food Can Help Burn Fat','','inherit','closed','closed','','1520-autosave-v1','','','2020-10-12 17:56:12','2020-10-12 17:56:12','',1520,'https://www.drfields.com/uncategorized/1520-autosave-v1/',0,'revision','',0),(3763,9,'2020-06-21 23:53:10','2020-06-21 23:53:10','<img class=\"alignright size-full wp-image-1185\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Foods-That-Burn-Fat.jpg\" alt=\"Foods That Burn Fat\" width=\"200\" height=\"313\" />Tired of that spare tire? Sick of your love handles? You can increase your body’s fat-burning power by eating more fat fighting foods that strengthen your liver (your body’s main fat-metabolizing organ) to burn fat better. The result? A leaner you! There are many great liver boosting foods, but here are some of my favorites:\r\n\r\n<strong>Leafy Greens</strong>: Spinach, spring mix, mustard greens, and other dark leafy greens are good sources of fiber and powerhouses of nutrition. Research demonstrates that their high concentration of vitamins and antioxidants helps prevent hunger while protecting you from heart disease, cancer, cataracts, and memory loss.\r\n\r\n<strong>Beans and Legumes:</strong> Legumes are the best source of  fiber of any foods. They help to stabilize blood sugar while keeping you regular. They are also high in potassium, a critical mineral that reduces dehydration and the risk of high blood pressure and stroke.\r\n\r\n<strong>Garlic and Onions:</strong> This dynamic duo of foods contains phytochemicals that break down fatty deposits in the body, while also breaking down cholesterol; killing viruses, bacteria, and fungi; and protecting against heart disease. With a little help from garlic and onions, you can burn fat while warding off illness.\r\n\r\n<strong>Cayenne:</strong> This hot spice lessens the risk of excess insulin in the body by speeding metabolism and lowering blood glucose (sugar) levels before the excess insulin can result in fat stores. Spice up your next meal with cayenne and lessen those love handles.\r\n\r\n<strong>Turmeric:</strong> The popular spice used primarily in Indian cooking is one of the highest known sources of beta carotene, the antioxidant that helps protect the liver from free radical damage. Turmeric also helps strengthen your liver while helping your body metabolize fats by decreasing the fat storage rate in liver cells. Add a teaspoon of turmeric into your next curry dish to help your body fight fat.\r\n\r\n<strong>Cinnamon:</strong> Researchers at the United States Department of Agriculture showed that a quarter to one teaspoon of cinnamon with food helps metabolize sugar up to twenty times better than food not eaten with cinnamon. Excess sugar in the blood can lead to fat storage. Before you sip that chai tea latte or eat your oatmeal, sprinkle on the cinnamon.\r\n\r\n<strong>Flax Seeds and Flax Seed Oil:</strong> These seeds and oil attract oil-soluble toxins that become lodged in the fatty tissues of the body. Once attracted, they help to escort fat-soluble toxins out. That spells fewer fat stores and a trimmer you.\r\n\r\nAnd if you are having a difficult time getting your kids to eat healthy foods like vegetables and fruit, it\'s important to remember to make them look good and palatable, and enjoy them yourselves, especially considering that they are bombarded constantly with junk food advertisements. An article in <em>Media Psychology</em> notes...\"promoting healthy foods (Bruce et al.,<span class=\"Apple-converted-space\"> </span><span class=\"ref-lnk lazy-ref\"><a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0009\" data-reflink=\"_i32 _i33\">2016</a>; Hanks, Just, &amp; Brumberg, <a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0021\" data-reflink=\"_i32 _i33\">2016</a>; Papies, <a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0039\" data-reflink=\"_i32 _i33\">2016</a>). Hanks et al. (<a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0021\" data-reflink=\"_i32 _i33\">2016</a>) revealed that children chose to eat twice as many vegetables when they were advertised through fun appeals: depicting healthy foods as humanized cheerful cartoon characters.\"<a href=\"https://www.tandfonline.com/doi/abs/10.1080/15213269.2019.1584569\">[1]</a></span>\r\n\r\n1Samson, Lelia, and Moniek Buijzen. \"Craving healthy foods?! How sensory appeals increase appetitive motivational processing of healthy foods in adolescents.\" <i>Media Psychology</i> 23.2 (2020): 159-183.','Foods that Fight Fat. Learn How Certain Food Can Help Burn Fat','','inherit','closed','closed','','1520-revision-v1','','','2020-06-21 23:53:10','2020-06-21 23:53:10','',1520,'https://www.drfields.com/uncategorized/1520-revision-v1/',0,'revision','',0),(3764,9,'2020-06-21 23:57:57','2020-06-21 23:57:57','<img class=\"alignright size-full wp-image-1185\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Foods-That-Burn-Fat.jpg\" alt=\"Foods That Burn Fat\" width=\"200\" height=\"313\" />Tired of that spare tire? Sick of your love handles? You can increase your body’s fat-burning power by eating more fat fighting foods that strengthen your liver (your body’s main fat-metabolizing organ) to burn fat better. The result? A leaner you! There are many great liver boosting foods, but here are some of my favorites:\r\n\r\n<strong>Leafy Greens</strong>: Spinach, spring mix, mustard greens, and other dark leafy greens are good sources of fiber and powerhouses of nutrition. Research demonstrates that their high concentration of vitamins and antioxidants helps prevent hunger while protecting you from heart disease, cancer, cataracts, and memory loss.\r\n\r\n<strong>Beans and Legumes:</strong> Legumes are the best source of  fiber of any foods. They help to stabilize blood sugar while keeping you regular. They are also high in potassium, a critical mineral that reduces dehydration and the risk of high blood pressure and stroke.\r\n\r\n<strong>Garlic and Onions:</strong> This dynamic duo of foods contains phytochemicals that break down fatty deposits in the body. They also breakdown cholesterol; killing viruses, bacteria, and fungi; and protecting against heart disease. With a little help from garlic and onions, you can burn fat while warding off illness.\r\n\r\n<strong>Cayenne:</strong> This hot spice lessens the risk of excess insulin in the body by speeding metabolism and lowering blood glucose (sugar) levels before the excess insulin can result in fat stores. Spice up your next meal with cayenne and lessen those love handles.\r\n\r\n<strong>Turmeric:</strong> The popular spice used primarily in Indian cooking is one of the highest known sources of beta carotene. It is an antioxidant that helps protect the liver from free radical damage. Turmeric also helps strengthen your liver while helping your body metabolize fats by decreasing the fat storage rate in liver cells. Add a teaspoon of turmeric into your next curry dish to help your body fight fat.\r\n\r\n<strong>Cinnamon:</strong> Researchers at the United States Department of Agriculture showed that a quarter to one teaspoon of cinnamon with food helps metabolize sugar up to twenty times better than food not eaten with cinnamon. Excess sugar in the blood can lead to fat storage. Before you sip that chai tea latte or eat your oatmeal, sprinkle on the cinnamon.\r\n\r\n<strong>Flax Seeds and Flax Seed Oil:</strong> These seeds and oil attract oil-soluble toxins that become lodged in the fatty tissues of the body. Once attracted, they help to escort fat-soluble toxins out. That spells fewer fat stores and a trimmer you.\r\n\r\nAnd if you are having a difficult time choosing to eat healthy foods like vegetables and fruit, it\'s important to remember to make them look good and palatable. Keep in mind that we are bombarded constantly with junk food advertisements. An article in <em>Media Psychology</em> notes...\"promoting healthy foods (Bruce et al.,<span class=\"Apple-converted-space\"> </span><span class=\"ref-lnk lazy-ref\"><a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0009\" data-reflink=\"_i32 _i33\">2016</a>; Hanks, Just, &amp; Brumberg, <a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0021\" data-reflink=\"_i32 _i33\">2016</a>; Papies, <a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0039\" data-reflink=\"_i32 _i33\">2016</a>). Hanks et al. (<a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0021\" data-reflink=\"_i32 _i33\">2016</a>) revealed that children chose to eat twice as many vegetables when they were advertised through fun appeals: depicting healthy foods as humanized cheerful cartoon characters.\"<a href=\"https://www.tandfonline.com/doi/abs/10.1080/15213269.2019.1584569\">[1]</a></span>\r\n\r\n1Samson, Lelia, and Moniek Buijzen. \"Craving healthy foods?! How sensory appeals increase appetitive motivational processing of healthy foods in adolescents.\" <i>Media Psychology</i> 23.2 (2020): 159-183.','Foods that Fight Fat. Learn How Certain Food Can Help Burn Fat','','inherit','closed','closed','','1520-revision-v1','','','2020-06-21 23:57:57','2020-06-21 23:57:57','',1520,'https://www.drfields.com/uncategorized/1520-revision-v1/',0,'revision','',0),(3765,9,'2020-09-15 21:58:15','2020-09-15 21:58:15','[caption id=\"attachment_4147\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4147\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Screen-Shot-2020-09-15-at-4.52.16-PM-500x260.png\" alt=\"Brain fitness\" width=\"500\" height=\"260\" /> <em>                                      Exercise boosts brain fitness</em>[/caption]\n<h3><strong>Exercise for Body and Brain Fitness</strong></h3>\nWe all know that exercise is good for the body. But did you know that new scientific evidence also confirms that exercise strengthens the brain? It sure does! In fact, moderate exercise nourishes the brain, improves our ability to learn, boosts mental performance, remodels the brain, and helps prevent the brain from aging. Exercise helps us to enjoy both body and brain fitness.\n\nScientists used to think the adult brain structure was fixed. They thought that no new cells could be made. And they thought the brain could not be altered in any way after adolescence.\n\n<strong>But exercise can change that!</strong> Physical activity can boost blood flow all through the body, even to the brain. And this boost of blood flow increases the ability of brain cells to connect with each other. Increased connectivity can occur by simply walking.\n\nAnd if you exercise more vigorously, like when running, faster reaction times and improved learning will result. Physical activity has been linked to a lower risk of the development of cognitive decline. That\'s because it is, in essence, a fertilizer for the brain. Exercise nourishes the brain, and improves attention, memory, and information processing. And exercise can even help reduce the risk of Parkinson\'s Disease.\n<h3><strong>What Does the Literature Say About Exercise and Parkinson\'s Disease?</strong></h3>\nA June 2020 article in <em>Frontiers in Aging Neuroscience</em> reports that \"Epidemiological studies of prospectively followed cohorts have shown a <strong>lower risk</strong> for later developing Parkinson\'s Disease in healthy people who report <strong>moderate to high levels of physical activity</strong>, and slower rates of motor and non-motor symptom progression in people with Parkinson\'s Disease who report higher baseline physical activity.\"1\n\n<strong>As you can see, the literature shows a direct benefit of exercise on the brain.</strong> Dementia is the most feared aspect of Parkinson’s Disease. But adults who engage in exercise during midlife, are able to significantly reduce the risks of dementia and cognitive impairment later in life.\n<div class=\"page\" title=\"Page 2\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\nThe <em>American College of Sports Medicine</em> recommends the following:<em> \"</em>Because Parkinson\'s Disease is a chronic and progressive disorder, an exercise program should be prescribed early when the individual is first diagnosed, should continue throughout life and should be reviewed and revised as the disease progresses. Exercise prescription should ultimately aim to slow the rate at which the signs of the disease progress, limit comorbidities, minimize complications associated with muscle disuse, and maintain the ability to live an independent life.\"<a href=\"https://www.revdesportiva.pt/files/para_publicar/Exercising_for_People_with_Parkinson_s_Disease_and.pdf\">2</a>\n\n</div>\n</div>\n</div>\n<h4><em>Exercise reshapes the brain. </em></h4>\nWhen we don’t use our muscles, they atrophy. And the brain is no different. Boost the health of brain cells, stimulate the growth of new blood vessels in the brain, and encourage new neuronal connections through exercise.\n\nStart your day with exercise! Because exercise helps us to be fit in so many capacities. Are you a morning exerciser? If so, that\'s really great. Because exercising in the morning prepares you for the day by enhancing brain activity. And it also improves information retention, and fine-tunes your ability to react to the situations and stressors that come your way through the day. Exercise is so beneficial. True, it helps our body to be fit. But it also boosts brain fitness and reduces the risk of Parkinson\'s Disease.\n<ol>\n 	<li>Crotty, Grace F., and Michael A. Schwarzschild. \"Chasing Protection in Parkinson’s Disease: Does Exercise Reduce Risk and Progression?.\" <i>Frontiers in Aging Neuroscience</i> 12 (2020): 186.</li>\n 	<li>Corcos, Daniel M., and Elizabeth M. Skender. \"Exercising for People with Parkinson’s Disease and Their Support Group.\" <i>ACSM\'s Health &amp; Fitness Journal</i> 24.2 (2020): 5-7.</li>\n</ol>','Improve Brain Fitness and Reduce Parkinson\'s Risk with Exercise','','inherit','closed','closed','','1516-autosave-v1','','','2020-09-15 21:58:15','2020-09-15 21:58:15','',1516,'https://www.drfields.com/uncategorized/1516-autosave-v1/',0,'revision','',0),(3766,9,'2020-06-26 23:44:37','2020-06-26 23:44:37','Photo 1559757175 5700dde675bc','Photo 1559757175 5700dde675bc','Photo 1559757175 5700dde675bc','inherit','open','closed','','photo-1559757175-5700dde675bc','','','2020-06-26 23:44:37','2020-06-26 23:44:37','',1516,'https://www.drfields.com/wp-content/uploads/2019/06/photo-1559757175-5700dde675bc.jpg',0,'attachment','image/jpeg',0),(3767,9,'2020-06-26 23:54:59','2020-06-26 23:54:59','<img class=\"wp-image-3766 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/photo-1559757175-5700dde675bc.jpg\" alt=\"Photo 1559757175 5700dde675bc\" width=\"400\" height=\"225\" />\r\n\r\nWe already know that exercise is great for our body, but scientific evidence continues to confirm that exercise also strengthens the brain. Moderate exercise nourishes the brain, improves our ability to learn, boosts mental performance, remodels the brain, and helps prevent the brain from aging.\r\n\r\nScientists used to think the adult brain structure was fixed, and no new cells could be made or the brain altered in any way after adolescence. However, physical activity boosts blood flow all through the body, including the brain, which increases the ability of brain cells to connect with each other. Increased connectivity can occur by simply walking. More vigorous exercise, such as running, leads to faster reaction times and improved learning. Physical activity has been linked to a lower risk of the development of cognitive decline, because it is, in essence, a fertilizer for the brain, nourishing it and improving attention, memory and information processing. Exercise can help reduce the risk of Parkinson\'s Disease.\r\n\r\n<strong>What Does the Literature Say About Exercise and Parkinson\'s Disease?</strong>\r\n\r\nA June 2020 article in <em>Frontiers in Aging Neuroscience</em> reports that \"Epidemiological studies of prospectively followed cohorts have shown a <strong>lower risk</strong> for later developing Parkinson\'s Disease in healthy people who report <strong>moderate to high levels of physical activity</strong>, and slower rates of motor and non-motor symptom progression in people with Parkinson\'s Disease who report higher baseline physical activity.\"1 As you can see, the literature shows a direct benefit of exercise on the brain. Dementia is the most feared aspect of Parkinson’s, but adults who engage in exercise during midlife, are able to significantly reduce the risks of dementia and cognitive impairment later in life.\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nThe <em>American College of Sports Medicine</em> recommends the following:<em> \"</em>Because Parkinson\'s Disease is a chronic and progressive disorder, an exercise program should be prescribed early when the individual is first diagnosed, should continue throughout life and should be reviewed and revised as the disease progresses. Exercise prescription should ultimately aim to slow the rate at which the signs of the disease progress, limit comorbidities, minimize complications associated with muscle disuse, and maintain the ability to live an independent life.\"<a href=\"https://www.revdesportiva.pt/files/para_publicar/Exercising_for_People_with_Parkinson_s_Disease_and.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nExercise reshapes the brain. When we don’t use our muscles, they atrophy. The brain is no different. Boost the health of brain cells, stimulate the growth of new blood vessels in the brain, and encourage new neuronal connections through exercise. Start your day with exercise! Exercise helps us to be fit in so many capacities. Exercising in the morning prepares you for the day by enhancing brain activity, improving information retention, and fine-tuning your ability to react to the situations and stressors that come your way. Exercise also helps our brains to be fit and reduces the risk of Parkinson\'s Disease.\r\n<ol>\r\n 	<li>Crotty, Grace F., and Michael A. Schwarzschild. \"Chasing Protection in Parkinson’s Disease: Does Exercise Reduce Risk and Progression?.\" <i>Frontiers in Aging Neuroscience</i> 12 (2020): 186.</li>\r\n 	<li>Corcos, Daniel M., and Elizabeth M. Skender. \"Exercising for People with Parkinson’s Disease and Their Support Group.\" <i>ACSM\'s Health &amp; Fitness Journal</i> 24.2 (2020): 5-7.</li>\r\n</ol>','Improve Brain Fitness and Parkinson\'s Disease Risk with Exercise','','inherit','closed','closed','','1516-revision-v1','','','2020-06-26 23:54:59','2020-06-26 23:54:59','',1516,'https://www.drfields.com/uncategorized/1516-revision-v1/',0,'revision','',0),(3768,9,'2020-06-26 23:58:32','2020-06-26 23:58:32','<img class=\"wp-image-3766 size-full alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/photo-1559757175-5700dde675bc.jpg\" alt=\"Photo 1559757175 5700dde675bc\" width=\"400\" height=\"225\" />\r\n\r\nWe all know that exercise is good for the body. New scientific evidence also confirms that exercise strengthens the brain. In fact, moderate exercise nourishes the brain, improves our ability to learn, boosts mental performance, remodels the brain, and helps prevent the brain from aging.\r\n\r\nScientists used to think the adult brain structure was fixed. The thought was that no new cells could be made or the brain altered in any way after adolescence. However, physical activity boosts blood flow all through the body, including the brain, which increases the ability of brain cells to connect with each other. Increased connectivity can occur by simply walking. More vigorous exercise, such as running, leads to faster reaction times and improved learning. Physical activity has been linked to a lower risk of the development of cognitive decline, because it is, in essence, a fertilizer for the brain, nourishing it and improving attention, memory and information processing. Exercise can help reduce the risk of Parkinson\'s Disease.\r\n\r\n<strong>What Does the Literature Say About Exercise and Parkinson\'s Disease?</strong>\r\n\r\nA June 2020 article in <em>Frontiers in Aging Neuroscience</em> reports that \"Epidemiological studies of prospectively followed cohorts have shown a <strong>lower risk</strong> for later developing Parkinson\'s Disease in healthy people who report <strong>moderate to high levels of physical activity</strong>, and slower rates of motor and non-motor symptom progression in people with Parkinson\'s Disease who report higher baseline physical activity.\"1 As you can see, the literature shows a direct benefit of exercise on the brain. Dementia is the most feared aspect of Parkinson’s, but adults who engage in exercise during midlife, are able to significantly reduce the risks of dementia and cognitive impairment later in life.\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nThe <em>American College of Sports Medicine</em> recommends the following:<em> \"</em>Because Parkinson\'s Disease is a chronic and progressive disorder, an exercise program should be prescribed early when the individual is first diagnosed, should continue throughout life and should be reviewed and revised as the disease progresses. Exercise prescription should ultimately aim to slow the rate at which the signs of the disease progress, limit comorbidities, minimize complications associated with muscle disuse, and maintain the ability to live an independent life.\"<a href=\"https://www.revdesportiva.pt/files/para_publicar/Exercising_for_People_with_Parkinson_s_Disease_and.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nExercise reshapes the brain. When we don’t use our muscles, they atrophy. The brain is no different. Boost the health of brain cells, stimulate the growth of new blood vessels in the brain, and encourage new neuronal connections through exercise. Start your day with exercise! Exercise helps us to be fit in so many capacities. Exercising in the morning prepares you for the day by enhancing brain activity, improving information retention, and fine-tuning your ability to react to the situations and stressors that come your way. Exercise also helps our brains to be fit and reduces the risk of Parkinson\'s Disease.\r\n<ol>\r\n 	<li>Crotty, Grace F., and Michael A. Schwarzschild. \"Chasing Protection in Parkinson’s Disease: Does Exercise Reduce Risk and Progression?.\" <i>Frontiers in Aging Neuroscience</i> 12 (2020): 186.</li>\r\n 	<li>Corcos, Daniel M., and Elizabeth M. Skender. \"Exercising for People with Parkinson’s Disease and Their Support Group.\" <i>ACSM\'s Health &amp; Fitness Journal</i> 24.2 (2020): 5-7.</li>\r\n</ol>','Improve Brain Fitness and Parkinson\'s Disease Risk with Exercise','','inherit','closed','closed','','1516-revision-v1','','','2020-06-26 23:58:32','2020-06-26 23:58:32','',1516,'https://www.drfields.com/uncategorized/1516-revision-v1/',0,'revision','',0),(3769,9,'2020-06-27 00:02:38','2020-06-27 00:02:38','<img class=\"wp-image-3766 size-full alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/photo-1559757175-5700dde675bc.jpg\" alt=\"Photo 1559757175 5700dde675bc\" width=\"400\" height=\"225\" />\r\n\r\nWe all know that exercise is good for the body. New scientific evidence also confirms that exercise strengthens the brain. In fact, moderate exercise nourishes the brain, improves our ability to learn, boosts mental performance, remodels the brain, and helps prevent the brain from aging.\r\n\r\nScientists used to think the adult brain structure was fixed. The thought was that no new cells could be made or the brain altered in any way after adolescence. Exercise can change that. Physical activity can boost blood flow all through the body, even to the brain. This boost of blood flow increases the ability of brain cells to connect with each other. Increased connectivity can occur by simply walking. More vigorous exercise, such as running, leads to faster reaction times and improved learning. Physical activity has been linked to a lower risk of the development of cognitive decline, because it is, in essence, a fertilizer for the brain, nourishing it and improving attention, memory and information processing. Exercise can help reduce the risk of Parkinson\'s Disease.\r\n\r\n<strong>What Does the Literature Say About Exercise and Parkinson\'s Disease?</strong>\r\n\r\nA June 2020 article in <em>Frontiers in Aging Neuroscience</em> reports that \"Epidemiological studies of prospectively followed cohorts have shown a <strong>lower risk</strong> for later developing Parkinson\'s Disease in healthy people who report <strong>moderate to high levels of physical activity</strong>, and slower rates of motor and non-motor symptom progression in people with Parkinson\'s Disease who report higher baseline physical activity.\"1 As you can see, the literature shows a direct benefit of exercise on the brain. Dementia is the most feared aspect of Parkinson’s, but adults who engage in exercise during midlife, are able to significantly reduce the risks of dementia and cognitive impairment later in life.\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nThe <em>American College of Sports Medicine</em> recommends the following:<em> \"</em>Because Parkinson\'s Disease is a chronic and progressive disorder, an exercise program should be prescribed early when the individual is first diagnosed, should continue throughout life and should be reviewed and revised as the disease progresses. Exercise prescription should ultimately aim to slow the rate at which the signs of the disease progress, limit comorbidities, minimize complications associated with muscle disuse, and maintain the ability to live an independent life.\"<a href=\"https://www.revdesportiva.pt/files/para_publicar/Exercising_for_People_with_Parkinson_s_Disease_and.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nExercise reshapes the brain. When we don’t use our muscles, they atrophy. The brain is no different. Boost the health of brain cells, stimulate the growth of new blood vessels in the brain, and encourage new neuronal connections through exercise. Start your day with exercise! Exercise helps us to be fit in so many capacities. Exercising in the morning prepares you for the day by enhancing brain activity, improving information retention, and fine-tuning your ability to react to the situations and stressors that come your way. Exercise also helps our brains to be fit and reduces the risk of Parkinson\'s Disease.\r\n<ol>\r\n 	<li>Crotty, Grace F., and Michael A. Schwarzschild. \"Chasing Protection in Parkinson’s Disease: Does Exercise Reduce Risk and Progression?.\" <i>Frontiers in Aging Neuroscience</i> 12 (2020): 186.</li>\r\n 	<li>Corcos, Daniel M., and Elizabeth M. Skender. \"Exercising for People with Parkinson’s Disease and Their Support Group.\" <i>ACSM\'s Health &amp; Fitness Journal</i> 24.2 (2020): 5-7.</li>\r\n</ol>','Improve Brain Fitness and Parkinson\'s Disease Risk with Exercise','','inherit','closed','closed','','1516-revision-v1','','','2020-06-27 00:02:38','2020-06-27 00:02:38','',1516,'https://www.drfields.com/uncategorized/1516-revision-v1/',0,'revision','',0),(3770,9,'2020-06-27 00:05:58','2020-06-27 00:05:58','<img class=\"wp-image-3766 size-full alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/photo-1559757175-5700dde675bc.jpg\" alt=\"Photo 1559757175 5700dde675bc\" width=\"400\" height=\"225\" />\r\n\r\n<strong>Exercise Strengthens the Brain</strong>\r\n\r\nWe all know that exercise is good for the body. New scientific evidence also confirms that exercise strengthens the brain. In fact, moderate exercise nourishes the brain, improves our ability to learn, boosts mental performance, remodels the brain, and helps prevent the brain from aging.\r\n\r\nScientists used to think the adult brain structure was fixed. The thought was that no new cells could be made or the brain altered in any way after adolescence. Exercise can change that. Physical activity can boost blood flow all through the body, even to the brain. This boost of blood flow increases the ability of brain cells to connect with each other. Increased connectivity can occur by simply walking. More vigorous exercise, such as running, leads to faster reaction times and improved learning. Physical activity has been linked to a lower risk of the development of cognitive decline, because it is, in essence, a fertilizer for the brain, nourishing it and improving attention, memory and information processing. Exercise can help reduce the risk of Parkinson\'s Disease.\r\n\r\n<strong>What Does the Literature Say About Exercise and Parkinson\'s Disease?</strong>\r\n\r\nA June 2020 article in <em>Frontiers in Aging Neuroscience</em> reports that \"Epidemiological studies of prospectively followed cohorts have shown a <strong>lower risk</strong> for later developing Parkinson\'s Disease in healthy people who report <strong>moderate to high levels of physical activity</strong>, and slower rates of motor and non-motor symptom progression in people with Parkinson\'s Disease who report higher baseline physical activity.\"1 As you can see, the literature shows a direct benefit of exercise on the brain. Dementia is the most feared aspect of Parkinson’s, but adults who engage in exercise during midlife, are able to significantly reduce the risks of dementia and cognitive impairment later in life.\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nThe <em>American College of Sports Medicine</em> recommends the following:<em> \"</em>Because Parkinson\'s Disease is a chronic and progressive disorder, an exercise program should be prescribed early when the individual is first diagnosed, should continue throughout life and should be reviewed and revised as the disease progresses. Exercise prescription should ultimately aim to slow the rate at which the signs of the disease progress, limit comorbidities, minimize complications associated with muscle disuse, and maintain the ability to live an independent life.\"<a href=\"https://www.revdesportiva.pt/files/para_publicar/Exercising_for_People_with_Parkinson_s_Disease_and.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nExercise reshapes the brain. When we don’t use our muscles, they atrophy. The brain is no different. Boost the health of brain cells, stimulate the growth of new blood vessels in the brain, and encourage new neuronal connections through exercise. Start your day with exercise! Exercise helps us to be fit in so many capacities. Exercising in the morning prepares you for the day by enhancing brain activity, improving information retention, and fine-tuning your ability to react to the situations and stressors that come your way. Exercise also helps our brains to be fit and reduces the risk of Parkinson\'s Disease.\r\n<ol>\r\n 	<li>Crotty, Grace F., and Michael A. Schwarzschild. \"Chasing Protection in Parkinson’s Disease: Does Exercise Reduce Risk and Progression?.\" <i>Frontiers in Aging Neuroscience</i> 12 (2020): 186.</li>\r\n 	<li>Corcos, Daniel M., and Elizabeth M. Skender. \"Exercising for People with Parkinson’s Disease and Their Support Group.\" <i>ACSM\'s Health &amp; Fitness Journal</i> 24.2 (2020): 5-7.</li>\r\n</ol>','Improve Brain Fitness and Parkinson\'s Disease Risk with Exercise','','inherit','closed','closed','','1516-revision-v1','','','2020-06-27 00:05:58','2020-06-27 00:05:58','',1516,'https://www.drfields.com/uncategorized/1516-revision-v1/',0,'revision','',0),(3771,9,'2020-06-27 00:07:08','2020-06-27 00:07:08','<img class=\"wp-image-3766 size-full alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/photo-1559757175-5700dde675bc.jpg\" alt=\"Photo 1559757175 5700dde675bc\" width=\"400\" height=\"225\" />\r\n\r\n<strong>Exercise Strengthens the Brain</strong>\r\n\r\nWe all know that exercise is good for the body. Did you know that new scientific evidence also confirms that exercise strengthens the brain? It sure does! In fact, moderate exercise nourishes the brain, improves our ability to learn, boosts mental performance, remodels the brain, and helps prevent the brain from aging.\r\n\r\nScientists used to think the adult brain structure was fixed. The thought was that no new cells could be made or the brain altered in any way after adolescence. Exercise can change that. Physical activity can boost blood flow all through the body, even to the brain. This boost of blood flow increases the ability of brain cells to connect with each other. Increased connectivity can occur by simply walking. More vigorous exercise, such as running, leads to faster reaction times and improved learning. Physical activity has been linked to a lower risk of the development of cognitive decline, because it is, in essence, a fertilizer for the brain, nourishing it and improving attention, memory and information processing. Exercise can help reduce the risk of Parkinson\'s Disease.\r\n\r\n<strong>What Does the Literature Say About Exercise and Parkinson\'s Disease?</strong>\r\n\r\nA June 2020 article in <em>Frontiers in Aging Neuroscience</em> reports that \"Epidemiological studies of prospectively followed cohorts have shown a <strong>lower risk</strong> for later developing Parkinson\'s Disease in healthy people who report <strong>moderate to high levels of physical activity</strong>, and slower rates of motor and non-motor symptom progression in people with Parkinson\'s Disease who report higher baseline physical activity.\"1 As you can see, the literature shows a direct benefit of exercise on the brain. Dementia is the most feared aspect of Parkinson’s, but adults who engage in exercise during midlife, are able to significantly reduce the risks of dementia and cognitive impairment later in life.\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nThe <em>American College of Sports Medicine</em> recommends the following:<em> \"</em>Because Parkinson\'s Disease is a chronic and progressive disorder, an exercise program should be prescribed early when the individual is first diagnosed, should continue throughout life and should be reviewed and revised as the disease progresses. Exercise prescription should ultimately aim to slow the rate at which the signs of the disease progress, limit comorbidities, minimize complications associated with muscle disuse, and maintain the ability to live an independent life.\"<a href=\"https://www.revdesportiva.pt/files/para_publicar/Exercising_for_People_with_Parkinson_s_Disease_and.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nExercise reshapes the brain. When we don’t use our muscles, they atrophy. The brain is no different. Boost the health of brain cells, stimulate the growth of new blood vessels in the brain, and encourage new neuronal connections through exercise. Start your day with exercise! Exercise helps us to be fit in so many capacities. Exercising in the morning prepares you for the day by enhancing brain activity, improving information retention, and fine-tuning your ability to react to the situations and stressors that come your way. Exercise also helps our brains to be fit and reduces the risk of Parkinson\'s Disease.\r\n<ol>\r\n 	<li>Crotty, Grace F., and Michael A. Schwarzschild. \"Chasing Protection in Parkinson’s Disease: Does Exercise Reduce Risk and Progression?.\" <i>Frontiers in Aging Neuroscience</i> 12 (2020): 186.</li>\r\n 	<li>Corcos, Daniel M., and Elizabeth M. Skender. \"Exercising for People with Parkinson’s Disease and Their Support Group.\" <i>ACSM\'s Health &amp; Fitness Journal</i> 24.2 (2020): 5-7.</li>\r\n</ol>','Improve Brain Fitness and Parkinson\'s Disease Risk with Exercise','','inherit','closed','closed','','1516-revision-v1','','','2020-06-27 00:07:08','2020-06-27 00:07:08','',1516,'https://www.drfields.com/uncategorized/1516-revision-v1/',0,'revision','',0),(3772,9,'2020-06-27 00:12:47','2020-06-27 00:12:47','<img class=\"wp-image-3766 size-full alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/photo-1559757175-5700dde675bc.jpg\" alt=\"Photo 1559757175 5700dde675bc\" width=\"400\" height=\"225\" />\r\n\r\n<strong>Exercise Strengthens the Brain</strong>\r\n\r\nWe all know that exercise is good for the body. But did you know that new scientific evidence also confirms that exercise strengthens the brain? It sure does! In fact, moderate exercise nourishes the brain, improves our ability to learn, boosts mental performance, remodels the brain, and helps prevent the brain from aging.\r\n\r\nScientists used to think the adult brain structure was fixed. They used to think that no new cells could be made or the brain altered in any way after adolescence. But exercise can change that! Physical activity can boost blood flow all through the body, even to the brain. And this boost of blood flow increases the ability of brain cells to connect with each other. Increased connectivity can occur by simply walking. And if you exercise more vigorously, like running, faster reaction times and improved learning will result. Physical activity has been linked to a lower risk of the development of cognitive decline, because it is, in essence, a fertilizer for the brain, nourishing it and improving attention, memory and information processing. Exercise can help reduce the risk of Parkinson\'s Disease.\r\n\r\n<strong>What Does the Literature Say About Exercise and Parkinson\'s Disease?</strong>\r\n\r\nA June 2020 article in <em>Frontiers in Aging Neuroscience</em> reports that \"Epidemiological studies of prospectively followed cohorts have shown a <strong>lower risk</strong> for later developing Parkinson\'s Disease in healthy people who report <strong>moderate to high levels of physical activity</strong>, and slower rates of motor and non-motor symptom progression in people with Parkinson\'s Disease who report higher baseline physical activity.\"1 As you can see, the literature shows a direct benefit of exercise on the brain. Dementia is the most feared aspect of Parkinson’s, but adults who engage in exercise during midlife, are able to significantly reduce the risks of dementia and cognitive impairment later in life.\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nThe <em>American College of Sports Medicine</em> recommends the following:<em> \"</em>Because Parkinson\'s Disease is a chronic and progressive disorder, an exercise program should be prescribed early when the individual is first diagnosed, should continue throughout life and should be reviewed and revised as the disease progresses. Exercise prescription should ultimately aim to slow the rate at which the signs of the disease progress, limit comorbidities, minimize complications associated with muscle disuse, and maintain the ability to live an independent life.\"<a href=\"https://www.revdesportiva.pt/files/para_publicar/Exercising_for_People_with_Parkinson_s_Disease_and.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nExercise reshapes the brain. When we don’t use our muscles, they atrophy. The brain is no different. Boost the health of brain cells, stimulate the growth of new blood vessels in the brain, and encourage new neuronal connections through exercise. Start your day with exercise! Exercise helps us to be fit in so many capacities. Exercising in the morning prepares you for the day by enhancing brain activity, improving information retention, and fine-tuning your ability to react to the situations and stressors that come your way. Exercise also helps our brains to be fit and reduces the risk of Parkinson\'s Disease.\r\n<ol>\r\n 	<li>Crotty, Grace F., and Michael A. Schwarzschild. \"Chasing Protection in Parkinson’s Disease: Does Exercise Reduce Risk and Progression?.\" <i>Frontiers in Aging Neuroscience</i> 12 (2020): 186.</li>\r\n 	<li>Corcos, Daniel M., and Elizabeth M. Skender. \"Exercising for People with Parkinson’s Disease and Their Support Group.\" <i>ACSM\'s Health &amp; Fitness Journal</i> 24.2 (2020): 5-7.</li>\r\n</ol>','Exercise Improves Brain Fitness and Reduces Parkinson\'s Disease Risk','','inherit','closed','closed','','1516-revision-v1','','','2020-06-27 00:12:47','2020-06-27 00:12:47','',1516,'https://www.drfields.com/uncategorized/1516-revision-v1/',0,'revision','',0),(3773,9,'2020-06-27 00:20:17','2020-06-27 00:20:17','<h2></h2>\r\n<img class=\"size-full wp-image-1003 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Man Knee Pain\" />\r\n\r\n<a href=\"https://www.drfields.com/wp-content/uploads/2019/06/Prolotherapy_lecture.pdf\">Download Dr. Fields Prolotherapy Lecture  </a>','Download Dr. Fields Prolotherapy Lecture Today','','inherit','closed','closed','','1434-revision-v1','','','2020-06-27 00:20:17','2020-06-27 00:20:17','',1434,'https://www.drfields.com/uncategorized/1434-revision-v1/',0,'revision','',0),(3774,9,'2020-06-30 03:06:06','2020-06-30 03:06:06','<h1>Are You Considering Surgery for Joint Pain?</h1>\n<img class=\"wp-image-3775 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire.-pro-triathlete-2-Copy-2-500x500.png\" alt=\"Claire. Pro Triathlete 2 Copy 2\" width=\"358\" height=\"358\" />\n\nMost orthopedic surgeries for joint pain do not require a quick decision. That is why they are called elective surgeries. The surgeon, the hospital, or you can choose whether or not to have them.\n\n<em>Remember that once the surgery is done, it cannot be undone.</em> Surgery also requires time off of work and rehabilitation time.\n<h4><strong>Try Conservative Treatments First for Joint Pain</strong></h4>\nBefore you rush into anything, consider your options. Begin with conservative treatments. Look into non-surgical therapies too.\n\n&nbsp;\n<h2><strong>Regenerative Orthopedics </strong></h2>\n<h2><em><strong>Great Non-Surgical Alternatives</strong></em></h2>\nNon-surgical alternatives, like Regenerative Orthopedics, are great treatments that are effective at repairing joint conditions that keep people from doing what they love. Even if you have seen an Orthopedic Surgeon, you should also see an experienced Regenerative Orthopedic physician for an evaluation.\n\nAre you suffering from arthritis joint pain? Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, can stop joint pain without surgery. Studies show that these treatments are \"effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.\"<a href=\"https://www.liebertpub.com/doi/abs/10.1089/acm.2019.0335\">1</a>\n<h3><strong>Prolotherapy Has a Track Record of Reducing Joint Pain</strong></h3>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\nProlotherapy is one type of Regenerative Orthopedics used to treat painful joint conditions like arthritis. And it\'s not a new therapy either. Prolotherapy has been around since the 1950s and has been studied quite a bit. The treatment is still getting positive results in the studies. Researchers demonstrated once again just this year that Prolotherapy reduces pain and improves the quality of life of those who receive it.<a href=\"https://www.annfammed.org/content/annalsfm/18/3/235.full.pdf\">2</a>\n\n</div>\n</div>\n</div>\nThe majority of patients do great and are at least 80-90% better.  Those are great results, especially considering that surgery is not required to achieve them! Less pain, more function, and no surgery.\n\nOnce the OrthoRegen team lets you know you are a good candidate for Regenerative Orthopedics, the treatments can begin. Four or five treatments are generally required. Virtually no downtime is necessary. Plus, you don\'t have to have weeks of therapy. Regenerative Orthopedics helps you get back to the activities you love quickly!\n\nRemember that it is your body and you should feel comfortable with the decision on how to treat it.\nUltimately, the decision is yours.\n\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\n<blockquote>1 Sert, Alketa T., et al. \"The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study.\" The Journal of Alternative and Complementary Medicine 26.5 (2020): 409-417.\n\n2 Sit, Regina Wing Shan, et al. \"Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial.\" <i>The Annals of Family Medicine</i>18.3 (2020): 235-242.</blockquote>','Surgery for Joint Pain? Think Again!','','inherit','closed','closed','','1463-autosave-v1','','','2020-06-30 03:06:06','2020-06-30 03:06:06','',1463,'https://www.drfields.com/uncategorized/1463-autosave-v1/',0,'revision','',0),(3775,9,'2020-06-30 01:48:27','2020-06-30 01:48:27','Claire. Pro Triathlete 2 Copy 2','Claire. Pro Triathlete 2 Copy 2','Claire. Pro Triathlete 2 Copy 2','inherit','open','closed','','claire-pro-triathlete-2-copy-2','','','2020-06-30 01:48:27','2020-06-30 01:48:27','',1463,'https://www.drfields.com/wp-content/uploads/2019/06/Claire.-pro-triathlete-2-Copy-2.png',0,'attachment','image/png',0),(3776,9,'2020-06-30 02:14:49','2020-06-30 02:14:49','<h6></h6>\r\n<img class=\"wp-image-3775 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire.-pro-triathlete-2-Copy-2-500x500.png\" alt=\"Claire. Pro Triathlete 2 Copy 2\" width=\"358\" height=\"358\" />\r\n\r\nMost orthopedic surgeries do not require a quick decision. That is why they are called elective surgeries. The surgeon, the hospital, or you can choose whether or not to have them. Remember that once the surgery is done, it cannot be undone. This is important to consider because there is a possibility of the surgery not working out as planned. Surgery also requires time off of work and rehabilitation time.\r\n\r\nSo, before you rush into anything, consider your options. Begin with conservative treatments. Look into non-surgical therapies. Non-surgical alternatives, like Regenerative Orthopedics, are great treatments that are effective at repairing many joint conditions. Even if you have seen an Orthopedic Surgeon, you should also see an experienced Regenerative Orthopedic physician for an evaluation.\r\n\r\nAre you suffering from arthritis pain? Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, can stop joint pain without surgery. Studies show that these treatments are \"effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.\"<a href=\"https://www.liebertpub.com/doi/abs/10.1089/acm.2019.0335\">1</a>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nProlotherapy is one type of Regenerative Orthopedics that has been used to treat painful joint conditions, like arthritis. It\'s not a new therapy either. Prolotherapy has been used since the 1950s and has been studied quite a bit. Studies show that Prolotherapy heals the joint and provided lasting pain control because it actually repairs the joint.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n\r\nIf you are a good candidate for Regenerative Orthopedics, four or five treatments are generally required. If this does not help, you will be no worse off. A general rule is that you should be at least 50% better after these treatments (usually you do not even need that many). Most patients do great and are at least 80-90% better with less pain and more function.\r\n\r\nRemember that it is your body and you should feel comfortable with the decision on how to treat it.\r\nUltimately, the decision is yours.\r\n<blockquote>1 Sert, Alketa T., et al. \"The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study.\" The Journal of Alternative and Complementary Medicine 26.5 (2020): 409-417.</blockquote>','Joint Surgery? Think Again! Learn About Regenerative Orthopedics','','inherit','closed','closed','','1463-revision-v1','','','2020-06-30 02:14:49','2020-06-30 02:14:49','',1463,'https://www.drfields.com/uncategorized/1463-revision-v1/',0,'revision','',0),(3777,9,'2020-06-30 02:26:22','2020-06-30 02:26:22','<h6></h6>\r\n<img class=\"wp-image-3775  alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire.-pro-triathlete-2-Copy-2-500x500.png\" alt=\"Claire. Pro Triathlete 2 Copy 2\" width=\"358\" height=\"358\" />\r\n\r\nMost orthopedic surgeries do not require a quick decision. That is why they are called elective surgeries. The surgeon, the hospital, or you can choose whether or not to have them. Remember that once the surgery is done, it cannot be undone. This is important to consider because there is a possibility of the surgery not working out as planned. Surgery also requires time off of work and rehabilitation time.\r\n\r\nSo, before you rush into anything, consider your options. Begin with conservative treatments. Look into non-surgical therapies. Non-surgical alternatives, like Regenerative Orthopedics, are great treatments that are effective at repairing many joint conditions. Even if you have seen an Orthopedic Surgeon, you should also see an experienced Regenerative Orthopedic physician for an evaluation.\r\n\r\nAre you suffering from arthritis pain? Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, can stop joint pain without surgery. Studies show that these treatments are \"effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.\"<a href=\"https://www.liebertpub.com/doi/abs/10.1089/acm.2019.0335\">1</a>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nProlotherapy is one type of Regenerative Orthopedics used to treat painful joint conditions like arthritis. And it\'s not a new therapy either. Prolotherapy has been around since the 1950s and has been studied quite a bit. And it is still being researched. A study this year demonstrated once again that Prolotherapy improves the quality of life of those who receive it because it reduces pain.<a href=\"https://www.annfammed.org/content/annalsfm/18/3/235.full.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nIf you are a good candidate for Regenerative Orthopedics, four or five treatments are generally required. If this does not help, you will be no worse off. A general rule is that you should be at least 50% better after these treatments (usually you do not even need that many). Most patients do great and are at least 80-90% better with less pain and more function.\r\n\r\nRemember that it is your body and you should feel comfortable with the decision on how to treat it.\r\nUltimately, the decision is yours.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n<blockquote>1 Sert, Alketa T., et al. \"The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study.\" The Journal of Alternative and Complementary Medicine 26.5 (2020): 409-417.\r\n\r\n2 Sit, Regina Wing Shan, et al. \"Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial.\" <i>The Annals of Family Medicine</i>18.3 (2020): 235-242.</blockquote>','Joint Surgery? Think Again! Learn About Regenerative Orthopedics','','inherit','closed','closed','','1463-revision-v1','','','2020-06-30 02:26:22','2020-06-30 02:26:22','',1463,'https://www.drfields.com/uncategorized/1463-revision-v1/',0,'revision','',0),(3778,9,'2020-06-30 02:28:31','2020-06-30 02:28:31','<h6></h6>\r\n<img class=\"wp-image-3775 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire.-pro-triathlete-2-Copy-2-500x500.png\" alt=\"Claire. Pro Triathlete 2 Copy 2\" width=\"358\" height=\"358\" />\r\n\r\nMost orthopedic surgeries do not require a quick decision. That is why they are called elective surgeries. The surgeon, the hospital, or you can choose whether or not to have them. Remember that once the surgery is done, it cannot be undone. This is important to consider because there is a possibility of the surgery not working out as planned. Surgery also requires time off of work and rehabilitation time.\r\n\r\n<strong>Look Into Conservative Treatments First</strong>\r\n\r\nSo, before you rush into anything, consider your options. Begin with conservative treatments. Look into non-surgical therapies.\r\n\r\nNon-surgical alternatives, like Regenerative Orthopedics, are great treatments that are effective at repairing many joint conditions. Even if you have seen an Orthopedic Surgeon, you should also see an experienced Regenerative Orthopedic physician for an evaluation.\r\n\r\nAre you suffering from arthritis pain? Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, can stop joint pain without surgery. Studies show that these treatments are \"effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.\"<a href=\"https://www.liebertpub.com/doi/abs/10.1089/acm.2019.0335\">1</a>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nProlotherapy is one type of Regenerative Orthopedics used to treat painful joint conditions like arthritis. And it\'s not a new therapy either. Prolotherapy has been around since the 1950s and has been studied quite a bit.\r\n\r\nAnd it is still being researched. A study this year demonstrated once again that Prolotherapy improves the quality of life of those who receive it because it reduces pain.<a href=\"https://www.annfammed.org/content/annalsfm/18/3/235.full.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nIf you are a good candidate for Regenerative Orthopedics, four or five treatments are generally required. If this does not help, you will be no worse off. A general rule is that you should be at least 50% better after these treatments (usually you do not even need that many). Most patients do great and are at least 80-90% better with less pain and more function.\r\n\r\nRemember that it is your body and you should feel comfortable with the decision on how to treat it.\r\nUltimately, the decision is yours.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n<blockquote>1 Sert, Alketa T., et al. \"The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study.\" The Journal of Alternative and Complementary Medicine 26.5 (2020): 409-417.\r\n\r\n2 Sit, Regina Wing Shan, et al. \"Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial.\" <i>The Annals of Family Medicine</i>18.3 (2020): 235-242.</blockquote>','Joint Surgery? Think Again! Learn About Regenerative Orthopedics','','inherit','closed','closed','','1463-revision-v1','','','2020-06-30 02:28:31','2020-06-30 02:28:31','',1463,'https://www.drfields.com/uncategorized/1463-revision-v1/',0,'revision','',0),(3779,9,'2020-06-30 02:29:15','2020-06-30 02:29:15','<h6></h6>\r\n<img class=\"wp-image-3775 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire.-pro-triathlete-2-Copy-2-500x500.png\" alt=\"Claire. Pro Triathlete 2 Copy 2\" width=\"358\" height=\"358\" />\r\n\r\nMost orthopedic surgeries do not require a quick decision. That is why they are called elective surgeries. The surgeon, the hospital, or you can choose whether or not to have them.\r\n\r\nRemember that once the surgery is done, it cannot be undone. This is important to consider because there is a possibility of the surgery not working out as planned. Surgery also requires time off of work and rehabilitation time.\r\n\r\n<strong>Look Into Conservative Treatments First</strong>\r\n\r\nSo, before you rush into anything, consider your options. Begin with conservative treatments. Look into non-surgical therapies.\r\n\r\nNon-surgical alternatives, like Regenerative Orthopedics, are great treatments that are effective at repairing many joint conditions. Even if you have seen an Orthopedic Surgeon, you should also see an experienced Regenerative Orthopedic physician for an evaluation.\r\n\r\nAre you suffering from arthritis pain? Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, can stop joint pain without surgery. Studies show that these treatments are \"effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.\"<a href=\"https://www.liebertpub.com/doi/abs/10.1089/acm.2019.0335\">1</a>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nProlotherapy is one type of Regenerative Orthopedics used to treat painful joint conditions like arthritis. And it\'s not a new therapy either. Prolotherapy has been around since the 1950s and has been studied quite a bit. And it is still being researched. A study this year demonstrated once again that Prolotherapy improves the quality of life of those who receive it because it reduces pain.<a href=\"https://www.annfammed.org/content/annalsfm/18/3/235.full.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nIf you are a good candidate for Regenerative Orthopedics, four or five treatments are generally required. If this does not help, you will be no worse off. A general rule is that you should be at least 50% better after these treatments (usually you do not even need that many). Most patients do great and are at least 80-90% better with less pain and more function.\r\n\r\nRemember that it is your body and you should feel comfortable with the decision on how to treat it.\r\nUltimately, the decision is yours.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n<blockquote>1 Sert, Alketa T., et al. \"The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study.\" The Journal of Alternative and Complementary Medicine 26.5 (2020): 409-417.\r\n\r\n2 Sit, Regina Wing Shan, et al. \"Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial.\" <i>The Annals of Family Medicine</i>18.3 (2020): 235-242.</blockquote>','Joint Surgery? Think Again! Learn About Regenerative Orthopedics','','inherit','closed','closed','','1463-revision-v1','','','2020-06-30 02:29:15','2020-06-30 02:29:15','',1463,'https://www.drfields.com/uncategorized/1463-revision-v1/',0,'revision','',0),(3780,9,'2020-06-30 02:44:03','2020-06-30 02:44:03','<h6></h6>\r\n<img class=\"wp-image-3775 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire.-pro-triathlete-2-Copy-2-500x500.png\" alt=\"Claire. Pro Triathlete 2 Copy 2\" width=\"358\" height=\"358\" />\r\n\r\nMost orthopedic surgeries do not require a quick decision. That is why they are called elective surgeries. The surgeon, the hospital, or you can choose whether or not to have them. Remember that once the surgery is done, it cannot be undone. Surgery also requires time off of work and rehabilitation time.\r\n\r\n<strong>Look Into Conservative Treatments First</strong>\r\n\r\nSo, before you rush into anything, consider your options. Begin with conservative treatments. Look into non-surgical therapies too.\r\n\r\nNon-surgical alternatives, like Regenerative Orthopedics, are great treatments that are effective at repairing joint conditions that keep people from doing what they love. Even if you have seen an Orthopedic Surgeon, you should also see an experienced Regenerative Orthopedic physician for an evaluation.\r\n\r\nAre you suffering from arthritis pain? Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, can stop joint pain without surgery. Studies show that these treatments are \"effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.\"<a href=\"https://www.liebertpub.com/doi/abs/10.1089/acm.2019.0335\">1</a>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nProlotherapy is one type of Regenerative Orthopedics used to treat painful joint conditions like arthritis. And it\'s not a new therapy either. Prolotherapy has been around since the 1950s and has been studied quite a bit. The treatment is still getting positive results in the studies. Researchers demonstrated once again just this year that Prolotherapy reduces pain and improves the quality of life of those who receive it.<a href=\"https://www.annfammed.org/content/annalsfm/18/3/235.full.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nThe majority of patients do great and are at least 80-90% better.  Those are great results, especially considering that surgery is not required to achieve them! Less pain, more function, and no surgery. Once the OrthoRegen team lets you know you are a good candidate for Regenerative Orthopedics, the treatments can begin. Four or five treatments are generally required. Virtually no downtime is necessary. Plus, you don\'t have to have weeks of therapy. Regenerative Orthopedics helps you get back to the activities you love quickly!\r\n\r\nRemember that it is your body and you should feel comfortable with the decision on how to treat it.\r\nUltimately, the decision is yours.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n<blockquote>1 Sert, Alketa T., et al. \"The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study.\" The Journal of Alternative and Complementary Medicine 26.5 (2020): 409-417.\r\n\r\n2 Sit, Regina Wing Shan, et al. \"Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial.\" <i>The Annals of Family Medicine</i>18.3 (2020): 235-242.</blockquote>','Joint Surgery? Think Again! Learn About Regenerative Orthopedics','','inherit','closed','closed','','1463-revision-v1','','','2020-06-30 02:44:03','2020-06-30 02:44:03','',1463,'https://www.drfields.com/uncategorized/1463-revision-v1/',0,'revision','',0),(3781,9,'2020-06-30 02:46:42','2020-06-30 02:46:42','<h6></h6>\r\n<img class=\"wp-image-3775 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire.-pro-triathlete-2-Copy-2-500x500.png\" alt=\"Claire. Pro Triathlete 2 Copy 2\" width=\"358\" height=\"358\" />\r\n\r\nMost orthopedic surgeries for joint pain do not require a quick decision. That is why they are called elective surgeries. The surgeon, the hospital, or you can choose whether or not to have them. Remember that once the surgery is done, it cannot be undone. Surgery also requires time off of work and rehabilitation time.\r\n\r\n<strong>Look Into Conservative Treatments First</strong>\r\n\r\nSo, before you rush into anything, consider your options. Begin with conservative treatments. Look into non-surgical therapies too.\r\n\r\nNon-surgical alternatives, like Regenerative Orthopedics, are great treatments that are effective at repairing joint conditions that keep people from doing what they love. Even if you have seen an Orthopedic Surgeon, you should also see an experienced Regenerative Orthopedic physician for an evaluation.\r\n\r\nAre you suffering from arthritis joint pain? Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, can stop joint pain without surgery. Studies show that these treatments are \"effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.\"<a href=\"https://www.liebertpub.com/doi/abs/10.1089/acm.2019.0335\">1</a>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nProlotherapy is one type of Regenerative Orthopedics used to treat painful joint conditions like arthritis. And it\'s not a new therapy either. Prolotherapy has been around since the 1950s and has been studied quite a bit. The treatment is still getting positive results in the studies. Researchers demonstrated once again just this year that Prolotherapy reduces pain and improves the quality of life of those who receive it.<a href=\"https://www.annfammed.org/content/annalsfm/18/3/235.full.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nThe majority of patients do great and are at least 80-90% better.  Those are great results, especially considering that surgery is not required to achieve them! Less pain, more function, and no surgery. Once the OrthoRegen team lets you know you are a good candidate for Regenerative Orthopedics, the treatments can begin. Four or five treatments are generally required. Virtually no downtime is necessary. Plus, you don\'t have to have weeks of therapy. Regenerative Orthopedics helps you get back to the activities you love quickly!\r\n\r\nRemember that it is your body and you should feel comfortable with the decision on how to treat it.\r\nUltimately, the decision is yours.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n<blockquote>1 Sert, Alketa T., et al. \"The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study.\" The Journal of Alternative and Complementary Medicine 26.5 (2020): 409-417.\r\n\r\n2 Sit, Regina Wing Shan, et al. \"Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial.\" <i>The Annals of Family Medicine</i>18.3 (2020): 235-242.</blockquote>','Surgery for Joint Pain? Think Again!','','inherit','closed','closed','','1463-revision-v1','','','2020-06-30 02:46:42','2020-06-30 02:46:42','',1463,'https://www.drfields.com/uncategorized/1463-revision-v1/',0,'revision','',0),(3782,9,'2020-06-30 02:52:14','2020-06-30 02:52:14','<h6></h6>\r\n<img class=\"wp-image-3775 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire.-pro-triathlete-2-Copy-2-500x500.png\" alt=\"Claire. Pro Triathlete 2 Copy 2\" width=\"358\" height=\"358\" />\r\n\r\nMost orthopedic surgeries for joint pain do not require a quick decision. That is why they are called elective surgeries. The surgeon, the hospital, or you can choose whether or not to have them. Remember that once the surgery is done, it cannot be undone. Surgery also requires time off of work and rehabilitation time.\r\n\r\n<strong>Try Conservative Treatments First for Joint Pain</strong>\r\n\r\nBefore you rush into anything, consider your options. Begin with conservative treatments. Look into non-surgical therapies too.\r\n\r\nNon-surgical alternatives, like Regenerative Orthopedics, are great treatments that are effective at repairing joint conditions that keep people from doing what they love. Even if you have seen an Orthopedic Surgeon, you should also see an experienced Regenerative Orthopedic physician for an evaluation.\r\n\r\nAre you suffering from arthritis joint pain? Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, can stop joint pain without surgery. Studies show that these treatments are \"effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.\"<a href=\"https://www.liebertpub.com/doi/abs/10.1089/acm.2019.0335\">1</a>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nProlotherapy is one type of Regenerative Orthopedics used to treat painful joint conditions like arthritis. And it\'s not a new therapy either. Prolotherapy has been around since the 1950s and has been studied quite a bit. The treatment is still getting positive results in the studies. Researchers demonstrated once again just this year that Prolotherapy reduces pain and improves the quality of life of those who receive it.<a href=\"https://www.annfammed.org/content/annalsfm/18/3/235.full.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nThe majority of patients do great and are at least 80-90% better.  Those are great results, especially considering that surgery is not required to achieve them! Less pain, more function, and no surgery. Once the OrthoRegen team lets you know you are a good candidate for Regenerative Orthopedics, the treatments can begin. Four or five treatments are generally required. Virtually no downtime is necessary. Plus, you don\'t have to have weeks of therapy. Regenerative Orthopedics helps you get back to the activities you love quickly!\r\n\r\nRemember that it is your body and you should feel comfortable with the decision on how to treat it.\r\nUltimately, the decision is yours.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n<blockquote>1 Sert, Alketa T., et al. \"The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study.\" The Journal of Alternative and Complementary Medicine 26.5 (2020): 409-417.\r\n\r\n2 Sit, Regina Wing Shan, et al. \"Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial.\" <i>The Annals of Family Medicine</i>18.3 (2020): 235-242.</blockquote>','Surgery for Joint Pain? Think Again!','','inherit','closed','closed','','1463-revision-v1','','','2020-06-30 02:52:14','2020-06-30 02:52:14','',1463,'https://www.drfields.com/uncategorized/1463-revision-v1/',0,'revision','',0),(3783,9,'2020-06-30 02:52:55','2020-06-30 02:52:55','<h6></h6>\r\n<img class=\"wp-image-3775 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire.-pro-triathlete-2-Copy-2-500x500.png\" alt=\"Claire. Pro Triathlete 2 Copy 2\" width=\"358\" height=\"358\" />\r\n\r\nMost orthopedic surgeries for joint pain do not require a quick decision. That is why they are called elective surgeries. The surgeon, the hospital, or you can choose whether or not to have them.\r\n\r\nRemember that once the surgery is done, it cannot be undone. Surgery also requires time off of work and rehabilitation time.\r\n\r\n<strong>Try Conservative Treatments First for Joint Pain</strong>\r\n\r\nBefore you rush into anything, consider your options. Begin with conservative treatments. Look into non-surgical therapies too.\r\n\r\nNon-surgical alternatives, like Regenerative Orthopedics, are great treatments that are effective at repairing joint conditions that keep people from doing what they love. Even if you have seen an Orthopedic Surgeon, you should also see an experienced Regenerative Orthopedic physician for an evaluation.\r\n\r\nAre you suffering from arthritis joint pain? Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, can stop joint pain without surgery. Studies show that these treatments are \"effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.\"<a href=\"https://www.liebertpub.com/doi/abs/10.1089/acm.2019.0335\">1</a>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nProlotherapy is one type of Regenerative Orthopedics used to treat painful joint conditions like arthritis. And it\'s not a new therapy either. Prolotherapy has been around since the 1950s and has been studied quite a bit. The treatment is still getting positive results in the studies. Researchers demonstrated once again just this year that Prolotherapy reduces pain and improves the quality of life of those who receive it.<a href=\"https://www.annfammed.org/content/annalsfm/18/3/235.full.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nThe majority of patients do great and are at least 80-90% better.  Those are great results, especially considering that surgery is not required to achieve them! Less pain, more function, and no surgery.\r\n\r\nOnce the OrthoRegen team lets you know you are a good candidate for Regenerative Orthopedics, the treatments can begin. Four or five treatments are generally required. Virtually no downtime is necessary. Plus, you don\'t have to have weeks of therapy. Regenerative Orthopedics helps you get back to the activities you love quickly!\r\n\r\nRemember that it is your body and you should feel comfortable with the decision on how to treat it.\r\nUltimately, the decision is yours.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n<blockquote>1 Sert, Alketa T., et al. \"The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study.\" The Journal of Alternative and Complementary Medicine 26.5 (2020): 409-417.\r\n\r\n2 Sit, Regina Wing Shan, et al. \"Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial.\" <i>The Annals of Family Medicine</i>18.3 (2020): 235-242.</blockquote>','Surgery for Joint Pain? Think Again!','','inherit','closed','closed','','1463-revision-v1','','','2020-06-30 02:52:55','2020-06-30 02:52:55','',1463,'https://www.drfields.com/uncategorized/1463-revision-v1/',0,'revision','',0),(3784,9,'2020-06-30 02:56:39','2020-06-30 02:56:39','<h6></h6>\r\n<img class=\"wp-image-3775 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire.-pro-triathlete-2-Copy-2-500x500.png\" alt=\"Claire. Pro Triathlete 2 Copy 2\" width=\"358\" height=\"358\" />\r\n\r\nMost orthopedic surgeries for joint pain do not require a quick decision. That is why they are called elective surgeries. The surgeon, the hospital, or you can choose whether or not to have them.\r\n\r\nRemember that once the surgery is done, it cannot be undone. Surgery also requires time off of work and rehabilitation time.\r\n\r\n<strong>Try Conservative Treatments First for Joint Pain</strong>\r\n\r\nBefore you rush into anything, consider your options. Begin with conservative treatments. Look into non-surgical therapies too.\r\n\r\n<strong>Regenerative Orthopedics Are Great Non-Surgical Alternatives</strong>\r\n\r\nNon-surgical alternatives, like Regenerative Orthopedics, are great treatments that are effective at repairing joint conditions that keep people from doing what they love. Even if you have seen an Orthopedic Surgeon, you should also see an experienced Regenerative Orthopedic physician for an evaluation.\r\n\r\nAre you suffering from arthritis joint pain? Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, can stop joint pain without surgery. Studies show that these treatments are \"effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.\"<a href=\"https://www.liebertpub.com/doi/abs/10.1089/acm.2019.0335\">1</a>\r\n\r\n<strong>Prolotherapy Has a Track Record of Reducing Joint Pain</strong>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nProlotherapy is one type of Regenerative Orthopedics used to treat painful joint conditions like arthritis. And it\'s not a new therapy either. Prolotherapy has been around since the 1950s and has been studied quite a bit. The treatment is still getting positive results in the studies. Researchers demonstrated once again just this year that Prolotherapy reduces pain and improves the quality of life of those who receive it.<a href=\"https://www.annfammed.org/content/annalsfm/18/3/235.full.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nThe majority of patients do great and are at least 80-90% better.  Those are great results, especially considering that surgery is not required to achieve them! Less pain, more function, and no surgery.\r\n\r\nOnce the OrthoRegen team lets you know you are a good candidate for Regenerative Orthopedics, the treatments can begin. Four or five treatments are generally required. Virtually no downtime is necessary. Plus, you don\'t have to have weeks of therapy. Regenerative Orthopedics helps you get back to the activities you love quickly!\r\n\r\nRemember that it is your body and you should feel comfortable with the decision on how to treat it.\r\nUltimately, the decision is yours.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n<blockquote>1 Sert, Alketa T., et al. \"The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study.\" The Journal of Alternative and Complementary Medicine 26.5 (2020): 409-417.\r\n\r\n2 Sit, Regina Wing Shan, et al. \"Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial.\" <i>The Annals of Family Medicine</i>18.3 (2020): 235-242.</blockquote>','Surgery for Joint Pain? Think Again!','','inherit','closed','closed','','1463-revision-v1','','','2020-06-30 02:56:39','2020-06-30 02:56:39','',1463,'https://www.drfields.com/uncategorized/1463-revision-v1/',0,'revision','',0),(3785,9,'2020-10-12 18:01:33','2020-10-12 18:01:33','<h2 style=\"text-align: center;\">Persistent Joint Pain Putting a Damper on Your Style?</h2>\n[caption id=\"attachment_3793\" align=\"alignright\" width=\"403\"]<img class=\"wp-image-3793\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Pain.-OrthoRegen-Copy-500x500.png\" alt=\"Persistent Joint Pain\" width=\"403\" height=\"403\" /> <strong>Persistent Joint Pain? Regenerative Orthopedics Gets You Back To Doing What You Love!</strong>[/caption]\n\nMany of us have aches or pains that just won’t go away no matter what we do. Medications, rest, physical therapy, acupuncture, and manipulation just aren\'t doing the trick. Somehow that joint pain either never goes away or just keeps coming back. But have you tried Regenerative Orthopedics?\n<h3>What\'s Regenerative Orthopedics?</h3>\nRegenerative Orthopedics is a technique that helps to stimulate the body’s ability to repair a painful area when the natural healing process isn\'t cutting it. <em><strong>In most cases, Regenerative Orthopedics is effective at eliminating persistent joint pain due to ligament and tendon weakness 80 to 90 percent of the time</strong></em>.\n<h3>Why Can\'t I Get Rid of This Joint Pain?</h3>\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months, or years. The answer lies in the fact that both ligaments and tendons have very poor circulation. These areas may have little or no blood flow, <em><strong>but they have lots of nerves</strong></em>. When the structures that stabilize the joint become weak, the nerves around them (ligaments and tendons) become stretched and irritated. That produces pain.\n\nRegenerative Orthopedics involves the injection of a solution that causes a healing response that stimulates the healing process. This results in a stronger tendon or ligament that can hold these joint structures in place more effectively.\n<h3>A Repaired Joint Is the Result</h3>\nThe weakened area heals, and the patient\'s pain is reduced or eliminated. It is also an excellent alternative to cortisone injections. Many doctors still recommend cortisone. That\'s unfortunate because long-term studies have shown cortisone to actually weaken tissue.\n\nMost patients require about 4-6 treatments to restore function and relieve pain. The treatments are usually given at about 3-week intervals.\n\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedics</a> is effective for all types of persistent joint pain. It works for the neck, shoulder, knee, elbow, and other joints. Plus, this treatment can reduce or eliminate pain altogether for conditions like tendonitis, arthritis, herniated discs, and headaches.\n\nAnd if you have a sports injury, look no further than Regenerative Orthopedics. If the injury involves soft tissue, like a tendon or ligament, chances are Regenerative Orthopedics will help. Don\'t let joint pain keep you from doing the things you love!','Persistent Joint Pain? Try Regenerative Orthopedics','','inherit','closed','closed','','1461-autosave-v1','','','2020-10-12 18:01:33','2020-10-12 18:01:33','',1461,'https://www.drfields.com/uncategorized/1461-autosave-v1/',0,'revision','',0),(3786,9,'2020-06-30 03:33:59','2020-06-30 03:33:59','<h1 style=\"text-align: center;\">Don\'t Put Up with Persistent Joint Pain</h1>\r\n<img class=\"size-full wp-image-1088 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-pain.jpeg\" alt=\"Woman Pain\" width=\"200\" height=\"300\" />\r\n\r\nMany of us have aches or pains that just won’t go away no matter what we do. Medications, rest, physical therapy, acupuncture, and manipulation just aren\'t doing the trick. Somehow that joint pain either never goes away or just keeps coming back. But have you tried Regenerative Orthopedics?\r\n<h2>What\'s Regenerative Orthopedics?</h2>\r\nRegenerative Orthopedics is a technique that helps to stimulate the body’s ability to repair a painful area when the natural healing process isn\'t cutting it. <em><strong>In most cases, Regenerative Orthopedics is effective at eliminating persistent joint pain due to ligament and tendon weakness 80 to 90 percent of the time</strong></em>.\r\n<h3>Why Can\'t I Get Rid of This Joint Pain?</h3>\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months, or years. The answer lies in the fact that both ligaments and tendons have very poor circulation. These areas may have little or no blood flow, <em><strong>but they have lots of nerves</strong></em>. When the structures that stabilize the joint become weak, the nerves around them (ligaments and tendons) become stretched and irritated. That produces pain.\r\n\r\nRegenerative Orthopedics involves the injection of a solution that causes a healing response that stimulates the healing process. This results in a stronger tendon or ligament that can hold these joint structures in place more effectively.\r\n<h3>A Repaired Joint Is the Result</h3>\r\nThe weakened area heals, and the patient\'s pain is reduced or eliminated. It is also an excellent alternative to cortisone injections. Many doctors still recommend cortisone. That\'s unfortunate because long-term studies have shown cortisone to actually weaken tissue.\r\n\r\nMost patients require about 4-6 treatments to restore function and relieve pain. The treatments are usually given at about 3-week intervals.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedics</a> is effective for all types of persistent joint pain. It works for the neck, shoulder, knee, elbow, and other joints. Plus, this treatment can reduce or eliminate pain altogether for conditions like tendonitis, arthritis, herniated discs, and headaches.\r\n\r\nAnd if you have a sports injury, look no further than Regenerative Orthopedics. If the injury involves soft tissue, like a tendon or ligament, chances are Regenerative Orthopedics will help.','Persistent Joint Pain? Regenerative Orthopedics May Be the Answer','','inherit','closed','closed','','1461-revision-v1','','','2020-06-30 03:33:59','2020-06-30 03:33:59','',1461,'https://www.drfields.com/uncategorized/1461-revision-v1/',0,'revision','',0),(3787,9,'2020-06-30 03:35:23','2020-06-30 03:35:23','<h1 style=\"text-align: center;\">Don\'t Put Up with Persistent Joint Pain</h1>\r\n<img class=\"size-full wp-image-1088 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-pain.jpeg\" alt=\"Woman Pain\" width=\"200\" height=\"300\" />\r\n\r\nMany of us have aches or pains that just won’t go away no matter what we do. Medications, rest, physical therapy, acupuncture, and manipulation just aren\'t doing the trick. Somehow that joint pain either never goes away or just keeps coming back. But have you tried Regenerative Orthopedics?\r\n<h2>What\'s Regenerative Orthopedics?</h2>\r\nRegenerative Orthopedics is a technique that helps to stimulate the body’s ability to repair a painful area when the natural healing process isn\'t cutting it. <em><strong>In most cases, Regenerative Orthopedics is effective at eliminating persistent joint pain due to ligament and tendon weakness 80 to 90 percent of the time</strong></em>.\r\n<h3>Why Can\'t I Get Rid of This Joint Pain?</h3>\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months, or years. The answer lies in the fact that both ligaments and tendons have very poor circulation. These areas may have little or no blood flow, <em><strong>but they have lots of nerves</strong></em>. When the structures that stabilize the joint become weak, the nerves around them (ligaments and tendons) become stretched and irritated. That produces pain.\r\n\r\nRegenerative Orthopedics involves the injection of a solution that causes a healing response that stimulates the healing process. This results in a stronger tendon or ligament that can hold these joint structures in place more effectively.\r\n<h3>A Repaired Joint Is the Result</h3>\r\nThe weakened area heals, and the patient\'s pain is reduced or eliminated. It is also an excellent alternative to cortisone injections. Many doctors still recommend cortisone. That\'s unfortunate because long-term studies have shown cortisone to actually weaken tissue.\r\n\r\nMost patients require about 4-6 treatments to restore function and relieve pain. The treatments are usually given at about 3-week intervals.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedics</a> is effective for all types of persistent joint pain. It works for the neck, shoulder, knee, elbow, and other joints. Plus, this treatment can reduce or eliminate pain altogether for conditions like tendonitis, arthritis, herniated discs, and headaches.\r\n\r\nAnd if you have a sports injury, look no further than Regenerative Orthopedics. If the injury involves soft tissue, like a tendon or ligament, chances are Regenerative Orthopedics will help.','Persistent Joint Pain? Try Regenerative Orthopedics','','inherit','closed','closed','','1461-revision-v1','','','2020-06-30 03:35:23','2020-06-30 03:35:23','',1461,'https://www.drfields.com/uncategorized/1461-revision-v1/',0,'revision','',0),(3788,9,'2020-06-30 03:35:52','2020-06-30 03:35:52','<h1 style=\"text-align: center;\">Don\'t Put Up with Persistent Joint Pain</h1>\r\n<img class=\"size-full wp-image-1088 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-pain.jpeg\" alt=\"Woman Pain\" width=\"200\" height=\"300\" />\r\n\r\nMany of us have aches or pains that just won’t go away no matter what we do. Medications, rest, physical therapy, acupuncture, and manipulation just aren\'t doing the trick. Somehow that joint pain either never goes away or just keeps coming back. But have you tried Regenerative Orthopedics?\r\n<h2>What\'s Regenerative Orthopedics?</h2>\r\nRegenerative Orthopedics is a technique that helps to stimulate the body’s ability to repair a painful area when the natural healing process isn\'t cutting it. <em><strong>In most cases, Regenerative Orthopedics is effective at eliminating persistent joint pain due to ligament and tendon weakness 80 to 90 percent of the time</strong></em>.\r\n<h3>Why Can\'t I Get Rid of This Joint Pain?</h3>\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months, or years. The answer lies in the fact that both ligaments and tendons have very poor circulation. These areas may have little or no blood flow, <em><strong>but they have lots of nerves</strong></em>. When the structures that stabilize the joint become weak, the nerves around them (ligaments and tendons) become stretched and irritated. That produces pain.\r\n\r\nRegenerative Orthopedics involves the injection of a solution that causes a healing response that stimulates the healing process. This results in a stronger tendon or ligament that can hold these joint structures in place more effectively.\r\n<h3>A Repaired Joint Is the Result</h3>\r\nThe weakened area heals, and the patient\'s pain is reduced or eliminated. It is also an excellent alternative to cortisone injections. Many doctors still recommend cortisone. That\'s unfortunate because long-term studies have shown cortisone to actually weaken tissue.\r\n\r\nMost patients require about 4-6 treatments to restore function and relieve pain. The treatments are usually given at about 3-week intervals.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedics</a> is effective for all types of persistent joint pain. It works for the neck, shoulder, knee, elbow, and other joints. Plus, this treatment can reduce or eliminate pain altogether for conditions like tendonitis, arthritis, herniated discs, and headaches.\r\n\r\nAnd if you have a sports injury, look no further than Regenerative Orthopedics. If the injury involves soft tissue, like a tendon or ligament, chances are Regenerative Orthopedics will help.','Persistent Joint Pain?','','inherit','closed','closed','','1461-revision-v1','','','2020-06-30 03:35:52','2020-06-30 03:35:52','',1461,'https://www.drfields.com/uncategorized/1461-revision-v1/',0,'revision','',0),(3789,9,'2020-06-30 03:36:53','2020-06-30 03:36:53','<h1 style=\"text-align: center;\">Don\'t Put Up with Persistent Joint Pain</h1>\r\n<img class=\"size-full wp-image-1088 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-pain.jpeg\" alt=\"Woman Pain\" width=\"200\" height=\"300\" />\r\n\r\nMany of us have aches or pains that just won’t go away no matter what we do. Medications, rest, physical therapy, acupuncture, and manipulation just aren\'t doing the trick. Somehow that joint pain either never goes away or just keeps coming back. But have you tried Regenerative Orthopedics?\r\n<h2>What\'s Regenerative Orthopedics?</h2>\r\nRegenerative Orthopedics is a technique that helps to stimulate the body’s ability to repair a painful area when the natural healing process isn\'t cutting it. <em><strong>In most cases, Regenerative Orthopedics is effective at eliminating persistent joint pain due to ligament and tendon weakness 80 to 90 percent of the time</strong></em>.\r\n<h3>Why Can\'t I Get Rid of This Joint Pain?</h3>\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months, or years. The answer lies in the fact that both ligaments and tendons have very poor circulation. These areas may have little or no blood flow, <em><strong>but they have lots of nerves</strong></em>. When the structures that stabilize the joint become weak, the nerves around them (ligaments and tendons) become stretched and irritated. That produces pain.\r\n\r\nRegenerative Orthopedics involves the injection of a solution that causes a healing response that stimulates the healing process. This results in a stronger tendon or ligament that can hold these joint structures in place more effectively.\r\n<h3>A Repaired Joint Is the Result</h3>\r\nThe weakened area heals, and the patient\'s pain is reduced or eliminated. It is also an excellent alternative to cortisone injections. Many doctors still recommend cortisone. That\'s unfortunate because long-term studies have shown cortisone to actually weaken tissue.\r\n\r\nMost patients require about 4-6 treatments to restore function and relieve pain. The treatments are usually given at about 3-week intervals.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedics</a> is effective for all types of persistent joint pain. It works for the neck, shoulder, knee, elbow, and other joints. Plus, this treatment can reduce or eliminate pain altogether for conditions like tendonitis, arthritis, herniated discs, and headaches.\r\n\r\nAnd if you have a sports injury, look no further than Regenerative Orthopedics. If the injury involves soft tissue, like a tendon or ligament, chances are Regenerative Orthopedics will help.','Persistent Joint Pain? Try Regenerative Orthopedics','','inherit','closed','closed','','1461-revision-v1','','','2020-06-30 03:36:53','2020-06-30 03:36:53','',1461,'https://www.drfields.com/uncategorized/1461-revision-v1/',0,'revision','',0),(3790,9,'2020-06-30 03:38:08','2020-06-30 03:38:08','Hip Labral Tear','Hip Labral Tear','Hip Labral Tear','inherit','open','closed','','hip-labral-tear','','','2020-06-30 03:38:08','2020-06-30 03:38:08','',1461,'https://www.drfields.com/wp-content/uploads/2019/06/Hip-Labral-tear.png',0,'attachment','image/png',0),(3791,9,'2020-06-30 03:38:51','2020-06-30 03:38:51','20289349 Dmtru4i7','20289349 Dmtru4i7','20289349 Dmtru4i7','inherit','open','closed','','20289349-dmtru4i7','','','2020-06-30 03:38:51','2020-06-30 03:38:51','',1461,'https://www.drfields.com/wp-content/uploads/2019/06/20289349-DMtRu4I7.png',0,'attachment','image/png',0),(3792,9,'2020-06-30 03:40:11','2020-06-30 03:40:11','Joint Injury.do What You Love Copy 2 (1)','Keep Doing What You Love Copy 2 (1)','Joint Injury.do What You Love Copy 2 (1)','inherit','open','closed','','joint-injury-do-what-you-love-copy-2-1','','','2020-08-25 00:36:18','2020-08-25 00:36:18','',1461,'https://www.drfields.com/wp-content/uploads/2019/06/joint-injury.do-what-you-love-Copy-2-1.png',0,'attachment','image/png',0),(3793,9,'2020-06-30 03:41:46','2020-06-30 03:41:46','Pain. Orthoregen Copy','Pain. Orthoregen Copy','Pain. Orthoregen Copy','inherit','open','closed','','pain-orthoregen-copy','','','2020-06-30 03:41:46','2020-06-30 03:41:46','',1461,'https://www.drfields.com/wp-content/uploads/2019/06/Pain.-OrthoRegen-Copy.png',0,'attachment','image/png',0),(3794,9,'2020-06-30 03:44:48','2020-06-30 03:44:48','<h2 style=\"text-align: center;\">Don\'t Let Joint Pain Keep You From Doing the Things You Love</h2>\r\n<img class=\"wp-image-3793 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Pain.-OrthoRegen-Copy-500x500.png\" alt=\"Pain. Orthoregen Copy\" width=\"500\" height=\"500\" />\r\n\r\nMany of us have aches or pains that just won’t go away no matter what we do. Medications, rest, physical therapy, acupuncture, and manipulation just aren\'t doing the trick. Somehow that joint pain either never goes away or just keeps coming back. But have you tried Regenerative Orthopedics?\r\n<h2>What\'s Regenerative Orthopedics?</h2>\r\nRegenerative Orthopedics is a technique that helps to stimulate the body’s ability to repair a painful area when the natural healing process isn\'t cutting it. <em><strong>In most cases, Regenerative Orthopedics is effective at eliminating persistent joint pain due to ligament and tendon weakness 80 to 90 percent of the time</strong></em>.\r\n<h3>Why Can\'t I Get Rid of This Joint Pain?</h3>\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months, or years. The answer lies in the fact that both ligaments and tendons have very poor circulation. These areas may have little or no blood flow, <em><strong>but they have lots of nerves</strong></em>. When the structures that stabilize the joint become weak, the nerves around them (ligaments and tendons) become stretched and irritated. That produces pain.\r\n\r\nRegenerative Orthopedics involves the injection of a solution that causes a healing response that stimulates the healing process. This results in a stronger tendon or ligament that can hold these joint structures in place more effectively.\r\n<h3>A Repaired Joint Is the Result</h3>\r\nThe weakened area heals, and the patient\'s pain is reduced or eliminated. It is also an excellent alternative to cortisone injections. Many doctors still recommend cortisone. That\'s unfortunate because long-term studies have shown cortisone to actually weaken tissue.\r\n\r\nMost patients require about 4-6 treatments to restore function and relieve pain. The treatments are usually given at about 3-week intervals.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedics</a> is effective for all types of persistent joint pain. It works for the neck, shoulder, knee, elbow, and other joints. Plus, this treatment can reduce or eliminate pain altogether for conditions like tendonitis, arthritis, herniated discs, and headaches.\r\n\r\nAnd if you have a sports injury, look no further than Regenerative Orthopedics. If the injury involves soft tissue, like a tendon or ligament, chances are Regenerative Orthopedics will help. Don\'t let joint pain keep you from doing the things you love!','Persistent Joint Pain? Try Regenerative Orthopedics','','inherit','closed','closed','','1461-revision-v1','','','2020-06-30 03:44:48','2020-06-30 03:44:48','',1461,'https://www.drfields.com/uncategorized/1461-revision-v1/',0,'revision','',0),(3795,9,'2020-06-30 03:46:25','2020-06-30 03:46:25','<h2 style=\"text-align: center;\">Don\'t Let Joint Pain Keep You From Doing the Things You Love</h2>\r\n<img class=\"wp-image-3793  alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Pain.-OrthoRegen-Copy-500x500.png\" alt=\"Pain. Orthoregen Copy\" width=\"403\" height=\"403\" />\r\n\r\nMany of us have aches or pains that just won’t go away no matter what we do. Medications, rest, physical therapy, acupuncture, and manipulation just aren\'t doing the trick. Somehow that joint pain either never goes away or just keeps coming back. But have you tried Regenerative Orthopedics?\r\n<h2>What\'s Regenerative Orthopedics?</h2>\r\nRegenerative Orthopedics is a technique that helps to stimulate the body’s ability to repair a painful area when the natural healing process isn\'t cutting it. <em><strong>In most cases, Regenerative Orthopedics is effective at eliminating persistent joint pain due to ligament and tendon weakness 80 to 90 percent of the time</strong></em>.\r\n<h3>Why Can\'t I Get Rid of This Joint Pain?</h3>\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months, or years. The answer lies in the fact that both ligaments and tendons have very poor circulation. These areas may have little or no blood flow, <em><strong>but they have lots of nerves</strong></em>. When the structures that stabilize the joint become weak, the nerves around them (ligaments and tendons) become stretched and irritated. That produces pain.\r\n\r\nRegenerative Orthopedics involves the injection of a solution that causes a healing response that stimulates the healing process. This results in a stronger tendon or ligament that can hold these joint structures in place more effectively.\r\n<h3>A Repaired Joint Is the Result</h3>\r\nThe weakened area heals, and the patient\'s pain is reduced or eliminated. It is also an excellent alternative to cortisone injections. Many doctors still recommend cortisone. That\'s unfortunate because long-term studies have shown cortisone to actually weaken tissue.\r\n\r\nMost patients require about 4-6 treatments to restore function and relieve pain. The treatments are usually given at about 3-week intervals.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedics</a> is effective for all types of persistent joint pain. It works for the neck, shoulder, knee, elbow, and other joints. Plus, this treatment can reduce or eliminate pain altogether for conditions like tendonitis, arthritis, herniated discs, and headaches.\r\n\r\nAnd if you have a sports injury, look no further than Regenerative Orthopedics. If the injury involves soft tissue, like a tendon or ligament, chances are Regenerative Orthopedics will help. Don\'t let joint pain keep you from doing the things you love!','Persistent Joint Pain? Try Regenerative Orthopedics','','inherit','closed','closed','','1461-revision-v1','','','2020-06-30 03:46:25','2020-06-30 03:46:25','',1461,'https://www.drfields.com/uncategorized/1461-revision-v1/',0,'revision','',0),(3796,9,'2020-06-30 03:47:24','2020-06-30 03:47:24','<h2 style=\"text-align: center;\">Persistent Joint Pain Putting a Damper on Your Style?</h2>\r\n<img class=\"wp-image-3793 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Pain.-OrthoRegen-Copy-500x500.png\" alt=\"Pain. Orthoregen Copy\" width=\"403\" height=\"403\" />\r\n\r\nMany of us have aches or pains that just won’t go away no matter what we do. Medications, rest, physical therapy, acupuncture, and manipulation just aren\'t doing the trick. Somehow that joint pain either never goes away or just keeps coming back. But have you tried Regenerative Orthopedics?\r\n<h2>What\'s Regenerative Orthopedics?</h2>\r\nRegenerative Orthopedics is a technique that helps to stimulate the body’s ability to repair a painful area when the natural healing process isn\'t cutting it. <em><strong>In most cases, Regenerative Orthopedics is effective at eliminating persistent joint pain due to ligament and tendon weakness 80 to 90 percent of the time</strong></em>.\r\n<h3>Why Can\'t I Get Rid of This Joint Pain?</h3>\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months, or years. The answer lies in the fact that both ligaments and tendons have very poor circulation. These areas may have little or no blood flow, <em><strong>but they have lots of nerves</strong></em>. When the structures that stabilize the joint become weak, the nerves around them (ligaments and tendons) become stretched and irritated. That produces pain.\r\n\r\nRegenerative Orthopedics involves the injection of a solution that causes a healing response that stimulates the healing process. This results in a stronger tendon or ligament that can hold these joint structures in place more effectively.\r\n<h3>A Repaired Joint Is the Result</h3>\r\nThe weakened area heals, and the patient\'s pain is reduced or eliminated. It is also an excellent alternative to cortisone injections. Many doctors still recommend cortisone. That\'s unfortunate because long-term studies have shown cortisone to actually weaken tissue.\r\n\r\nMost patients require about 4-6 treatments to restore function and relieve pain. The treatments are usually given at about 3-week intervals.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedics</a> is effective for all types of persistent joint pain. It works for the neck, shoulder, knee, elbow, and other joints. Plus, this treatment can reduce or eliminate pain altogether for conditions like tendonitis, arthritis, herniated discs, and headaches.\r\n\r\nAnd if you have a sports injury, look no further than Regenerative Orthopedics. If the injury involves soft tissue, like a tendon or ligament, chances are Regenerative Orthopedics will help. Don\'t let joint pain keep you from doing the things you love!','Persistent Joint Pain? Try Regenerative Orthopedics','','inherit','closed','closed','','1461-revision-v1','','','2020-06-30 03:47:24','2020-06-30 03:47:24','',1461,'https://www.drfields.com/uncategorized/1461-revision-v1/',0,'revision','',0),(3798,8,'2020-06-30 16:59:18','2020-06-30 16:59:18','<img class=\"alignleft wp-image-1685 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\n<h4>Peter A. Fields, MD, DC, The Athletic Doc<sup>®</sup></h4>\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\n<h4>Director of OrthoRegen</h4>\nDr. Fields is the Director of <a href=\"https://orthoregen.com/\" target=\"_blank\" rel=\"noopener noreferrer\">OrthoRegen</a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\n<h4>Regenerative Medicine Expert</h4>\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\">national magazine</a> as well as lecturing at various conferences around the world on these techniques.\n<h4>Hackett-Hemwall Foundation Instructor</h4>\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h4>Prolotherapy Doctor</h4>\nDr. Fields is the leading expert in the field or <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\n<h6>The Athletic Doc<sup>®</sup></h6>\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc<sup>® has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\n<div id=\"centrevideo\" class=\"text-center\">[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong></div>\n&nbsp;\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Bio: Dr. Fields','','inherit','closed','closed','','216-autosave-v1','','','2020-06-30 16:59:18','2020-06-30 16:59:18','',216,'https://www.drfields.com/uncategorized/216-autosave-v1/',0,'revision','',0),(3799,8,'2020-06-30 16:59:55','2020-06-30 16:59:55','<img class=\"alignleft wp-image-1685 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc<sup>®</sup></h4>\r\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n<h4>Director of OrthoRegen</h4>\r\nDr. Fields is the Director of <a href=\"https://orthoregen.com/\" target=\"_blank\" rel=\"noopener noreferrer\">OrthoRegen</a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\r\n<h4>Regenerative Medicine Expert</h4>\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\">national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n<h4>Hackett-Hemwall Foundation Instructor</h4>\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Prolotherapy Doctor</h4>\r\nDr. Fields is the leading expert in the field or <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h6>The Athletic Doc<sup>®</sup></h6>\r\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc<sup>®</sup> has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n<div id=\"centrevideo\" class=\"text-center\">[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2020-06-30 16:59:55','2020-06-30 16:59:55','',216,'https://www.drfields.com/uncategorized/216-revision-v1/',0,'revision','',0),(3800,8,'2020-06-30 17:01:28','2020-06-30 17:01:28','<img class=\"alignleft wp-image-1685 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc<sup>®</sup></h4>\r\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n<h4>Director of OrthoRegen<sup>®</sup></h4>\r\nDr. Fields is the Director of <a href=\"https://orthoregen.com/\" target=\"_blank\" rel=\"noopener noreferrer\">OrthoRegen<sup>®</sup></a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and even professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or full surgery. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid full joint replacement.\r\n<h4>Regenerative Medicine Expert</h4>\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. He writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\">national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n<h4>Hackett-Hemwall Foundation Instructor</h4>\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. Dr. Fields has volunteered his time for two weeks nine different times on their medical trip to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Dr. Fields was the director of one of only three clinics in Honduras.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Prolotherapy Doctor</h4>\r\nDr. Fields is the leading expert in the field or <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h6>The Athletic Doc<sup>®</sup></h6>\r\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc<sup>®</sup> has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n<div id=\"centrevideo\" class=\"text-center\">[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2020-06-30 17:01:28','2020-06-30 17:01:28','',216,'https://www.drfields.com/uncategorized/216-revision-v1/',0,'revision','',0),(3801,8,'2020-06-30 17:03:31','2020-06-30 17:03:31','<img class=\"alignleft wp-image-1685 size-medium\" title=\"prp los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>PRP Doctor</h4>\r\nPeter A. Fields, MD DC, is a PRP Doctor in Los Angeles and the founder of OrthoRegen<sup>®</sup>. Dr. Fields is a leading expert in using (PRP) Platelet Rich Plasma therapy to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world. Dr. Fields help people avoid unnecessary orthopedic surgeries whether arthroscopic or full surgery.\r\n<h4>What is a PRP Doctor?</h4>\r\nA PRP Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. PRP Doctors like Dr. Fields use Platelet Rich Plasma Injections that help accelerate the normal healing process. Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of PRP Regenerative Treatments.\r\n<h4>What Does PRP stand for?</h4>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as platelets, white blood cells, and red cells. The Harvest method that Dr. Fields uses concentrates the platelets 7-10 times of what is generally found in blood. Other systems concentrate them, but to a lesser extent.\r\n<h4>What is PRP Treatment?</h4>\r\nPRP treatment, as used in regenerative orthopedics, is a non-surgical healing treatment for healing soft tissue performed by a PRP Doctor. Dr. Fields makes precise injections of your own concentrated blood (PRP) into the affected areas to promote healing of musculoskeletal problems. Blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site.<br />\r\n<br />\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Is PRP Treatment Safe?</h4>\r\nPRP treatment is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities thoroughly with patients during the pre-treatment consultation.\r\nWhat Does a PRP Doctor Treat?\r\n\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that Dr. Fields treats. PRP has also been effective in treating arthritis, though more severe cases get better results with Dr. Fields’ Stem Cell treatments.\r\n\r\nDr. Fields has had great success in treating chronic pain and sports injuries including:\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Knee Injuries:</strong> ACL, MCL LCL, Meniscus, Arthritis, Kneecap Instability</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Knee Injuries Treated with Prolotherapy here\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Elbow Injuries:</strong> Tennis Elbow, Medial Epicondylitis,Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Elbow Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Shoulder Injuries:</strong> Rotator Cuff Tears, Labrum Tears, Tenositis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Shoulder Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Back Injuries:</strong> Arthritis, Facet Joints, Sacro-Iliac dysfunction</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Back Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hip Injuries:</strong> Tenositis, Bursitis,Labrum</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Hip Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Foot/Ankle Injuries:</strong> Ankle Sprains, Arthritis, Achilles Dysfunction, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Foot/Ankle Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hand/Wrist/ Injuries:</strong> Finger/Joint Tendinitis, Ligament Tears, Arthritis, Carpal tunnel</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Hand/Wrist Injuries Treated with Prolotherapy here.\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','PRP Doctor','','inherit','closed','closed','','266-revision-v1','','','2020-06-30 17:03:31','2020-06-30 17:03:31','',266,'https://www.drfields.com/uncategorized/266-revision-v1/',0,'revision','',0),(3802,8,'2020-06-30 17:07:16','2020-06-30 17:07:16','<img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" />\r\n<h4>Prolotherapy Doctor</h4>\r\nPeter A. Fields, MD DC, is a Los Angeles Prolotherapy Doctor and the founder of OrthoRegen<sup>®</sup>. Dr. Fields is a leading expert in using Cellular Regeneration (aka Cellular Prolotherapy) treatments to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world; from non-athletes to weekend warriors to competitive athletes and professional athletes. Dr. Fields helps people avoid unnecessary orthopaedic surgeries whether arthroscopic or conventional fully invasive surgery.\r\n<h4>What is a Prolotherapy Doctor?</h4>\r\nA Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. He stimulates the body’s natural ability to heal and repair by encouraging the growth of new tendon fibers and ligaments.\r\n<h4>What is Prolotherapy Treatment?</h4>\r\nProlotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. A Prolotherapy Doctor injects the weakened areas with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h4>How Prolotherapy Treatment Works</h4>\r\nOur Prolotherapy treatment is an innovative treatment that stimulates the immune system to repair damaged tissue. ”Prolo” comes from the word “proliferate.” Prolotherapy then describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and injuries. Receive treatment from our Prolotherapy Doctor for your injuries with comprehensive Prolotherapy Treatment at <a href=\"https://orthoregen.com/\" rel=\"noopener noreferrer\">OrthoRegen<sup>®</sup></a><br />\r\n<br />\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Is Treatment by a Prolotherapy Doctor safe?</h4>\r\nProlotherapy is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen ( Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities fully with patients during the pre-treatment consultation.\r\n<h4>What Conditions Can Dr. Fields Help You With:</h4>\r\nDr. Fields has had great success in treating his patients with hundreds of different injuries, conditions, and complaints, including:\r\n<ul>\r\n 	<li><strong>Chronic Conditions like…</strong>\r\n<ul>\r\n 	<li>Arthritis Pain</li>\r\n 	<li>Sciatica Pain</li>\r\n 	<li>Pinched Nerves</li>\r\n 	<li>Athletic Injuries</li>\r\n 	<li>Tension Headaches</li>\r\n 	<li>Migraine Headaches</li>\r\n 	<li>Herniated Discs</li>\r\n 	<li>Degenerative Discs</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak Joints</li>\r\n 	<li>Sore Muscles</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Knee Injuries:</strong>\r\n<ul>\r\n 	<li>ACL Tear</li>\r\n 	<li>Runners\' Knee</li>\r\n 	<li>Radial Meniscus Tear</li>\r\n 	<li>See a complete list of Knee Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Hip Injuries:</strong>\r\n<ul>\r\n 	<li>Torn Labrum</li>\r\n 	<li>Acetabular labrum Tear</li>\r\n 	<li>Labral Tear</li>\r\n 	<li>See a complete list of Hip Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Neck Injuries:</strong>\r\n<ul>\r\n 	<li>Whiplash</li>\r\n 	<li>TMJ Syndrome</li>\r\n 	<li>Migraine Headaches</li>\r\n 	<li>See a complete list of Neck Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Shoulder Injuries:</strong>\r\n<ul>\r\n 	<li>Labral Tear</li>\r\n 	<li>Rotator Cuff Tear</li>\r\n 	<li>Swimmers Shoulder</li>\r\n 	<li>See a complete list of Shoulder Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Back Injuries:</strong>\r\n<ul>\r\n 	<li>Herniated discs</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>See a complete list of Back Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Elbow Injuries:</strong>\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tennis elbow</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>See a complete list of Elbow Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Foot and Ankle Injuries:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle Sprains</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>See a complete list of Foot Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>Hand Injuries:</strong>\r\n<ul>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Finger pain</li>\r\n 	<li>See a complete list of Hand Injuries Treated with Prolotherapy here.</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Prolotherapy Doctor','','inherit','closed','closed','','229-revision-v1','','','2020-06-30 17:07:16','2020-06-30 17:07:16','',229,'https://www.drfields.com/uncategorized/229-revision-v1/',0,'revision','',0),(3803,8,'2020-06-30 17:07:46','2020-06-30 17:07:46','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" class=\"alignleft size-full wp-image-1685\" /><h4>Stem Cell Doctor</h4>\r\n\r\nPeter A. Fields, MD DC, is Stem Cell Doctor in Los Angeles and the founder of OrthoRegen<sup>®</sup>. Dr. Fields is a leading expert in using Stem Cell Treatments for joints and Spine Regeneration. Dr. Fields help people avoid unnecessary orthopaedic surgeries whether full surgery or arthroscopic procedure. Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of Stem Cell  Regenerative Treatments.\r\n\r\n<h4>What is a Stem Cell Doctor?</h4>\r\n\r\nA Stem Cell Doctor provides regenerative orthopaedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields uses Stem Cell therapy to regenerate body tissue. Regenerative medicine is growing in popularity in the medical world as an alternative to invasive orthopaedic surgeries including joint replacement. The remarkable thing about Stem Cells is that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example,  cartilage cells or meniscus cells.\r\n\r\n<h4>What Conditions Can a Stem Cell Doctor Help?</h4>\r\n\r\nDr. Fields treats weakened, torn or damaged ligaments, as well as tendons, torn cartilage, muscle tears, menisci or labrums. Stem Cell treatment has also been effective in treating severe arthritis conditions.\r\n\r\n<strong>Dr. Fields has had great success in treating joint conditions with Stem Cell Therapy including:</strong>\r\n<ul>\r\n   <li>Bone-on-Bone</li>\r\n    <li>Severe Arthritis</li>\r\n    <li>Degenerated Joint</li>\r\n    <li>Torn, Worn or Missing Cartilage</li></ul>\r\n\r\nSee more about Stem Cell Treatment.<br />\r\n<br />\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<h4>What is Stem Cell Treatment?</h4>\r\n\r\nStem Cell treatment is an injection of stem cells into the joint or affected area to promote healing. This procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries.\r\n\r\nDr. Fields  Stem Cell technique one of the four Gold Standards Regenerative Orthopedics procedures to help you avoid invasive surgery.\r\n\r\nStem Cell Treatment, as used in regenerative orthopaedics, is a non-surgical healing treatment for healing soft tissue performed by a Stem Cell Doctor. Stem Cell treatment is the transplantation of autologous culture-expanded bone marrow mesenchymal stem cells in platelet rich-fibrin glue.\r\n\r\n<h4>Is Stem Cell Treatment Safe?</h4>\r\n\r\nStem Cell treatment is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. The Stem Cell Doctor will discuss these possibilities fully with patients during the pre-treatment consultation. This is only recommended after a very thorough history and physical exam.\r\n\r\n<h4>Are You A Candidate for Stem Cell Treatment?</h4>\r\n\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s shoulder replacement surgery, hip replacement surgery, knee replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to bone-on-bone, arthritis or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nSpine Surgery and Joint Replacement Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, long recovery times, potential (dangerous) complications, and the need to have the procedure redone at some point.\r\n\r\nMake an appointment with our Stem Cell Doctor for an evaluation to see if you are a good candidate for Dr. Fields Gold Standard Stem Cell Treatment for - Spine and Joints. Call <a href=\"tel:+[phone_raw]\">[phone]</a>\r\n to Schedule Your Appointment Today!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Stem Cell Doctor','','inherit','closed','closed','','292-revision-v1','','','2020-06-30 17:07:46','2020-06-30 17:07:46','',292,'https://www.drfields.com/uncategorized/292-revision-v1/',0,'revision','',0),(3804,8,'2020-09-24 12:21:46','2020-09-24 12:21:46','<h4>The Athletic Doc<sup>®</sup></h4>\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img class=\"size-full wp-image-374\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" /> <strong> Pete Jacobs 2012 Ironman<br />World Champion<br />&amp; Dr. Peter A Fields</strong>[/caption]\n\nDr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\nHe not only treats athletes in his practice but is an athlete himself.\n<h5>How Doctor Fields Became <strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong></h5>\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc<sup>®</sup></strong>. In November 2019, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\n\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\n<h5><strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong> Keeps Active and Fit to Maintain Optimal Health</h5>\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods, and white flour or white sugar products. <em>The Athletic Doc<sup>®</sup></em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\n\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\n<h5>About <strong>The Athletic Doc<sup>®</sup></strong></h5>\nDr. Fields is the Director of OrthoRegen<sup>®</sup> in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr. Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr. Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\n\n<strong><em>The Athletic Doc<sup>®</sup> motto is \"not only train hard but smart – as if your body depended on it\"</em></strong>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<div class=\"fullwidth color_bar\">\n<div id=\"aboutdocgallery\" class=\"col-md-12\">\n<h4>Ironman Photos &amp; Stories</h4>\n<ul>\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" />2017 Ironman Santa Rose</a></li>\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" />2016 Ironman Cozumel</a></li>\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" />2016 Ironman Switzerland</a></li>\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\" />2015 Ironman Cozumel</a></li>\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\" />2015 Ironman Brazil</a></li>\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\" />2014 Ironman Austria</a></li>\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" />2013 Ironman Canada</a></li>\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" />2012 Ironman Cozumel</a></li>\n</ul>\n</div>\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-autosave-v1','','','2020-09-24 12:21:46','2020-09-24 12:21:46','',373,'https://www.drfields.com/uncategorized/373-autosave-v1/',0,'revision','',0),(3805,8,'2020-06-30 17:24:09','2020-06-30 17:24:09','<h4>The Athletic Doc<sup>®</sup></h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img class=\"size-full wp-image-374\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" /> <strong> Pete Jacobs 2012 Ironman<br />World Champion<br />&amp; Dr. Peter A Fields</strong>[/caption]\r\n\r\nDr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became <strong class=\"subhead\">The Athletic Doc<sup>®</sup>.</strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc<sup>®</sup></strong>. In November 2019, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5><strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong> Keeps Active and Fit to Maintain Optimal Health</h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods, and white flour or white sugar products. <em>The Athletic Doc<sup>®</sup></em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5>About <strong>The Athletic Doc<sup>®</sup></strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr. Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr. Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc<sup>®</sup> motto is \"not only train hard but smart – as if your body depended on it\"</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div id=\"aboutdocgallery\" class=\"col-md-12\">\r\n<h4>Ironman Photos &amp; Stories</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" />2017 Ironman Santa Rose</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" />2016 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" />2016 Ironman Switzerland</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\" />2015 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\" />2015 Ironman Brazil</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\" />2014 Ironman Austria</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" />2013 Ironman Canada</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" />2012 Ironman Cozumel</a></li>\r\n</ul>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2020-06-30 17:24:09','2020-06-30 17:24:09','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(3806,8,'2020-06-30 17:24:43','2020-06-30 17:24:43','<h4>The Athletic Doc<sup>®</sup></h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img class=\"size-full wp-image-374\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" /> <strong> Pete Jacobs 2012 Ironman<br />World Champion<br />&amp; Dr. Peter A Fields</strong>[/caption]\r\n\r\nDr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became <strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc<sup>®</sup></strong>. In November 2019, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5><strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong> Keeps Active and Fit to Maintain Optimal Health</h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods, and white flour or white sugar products. <em>The Athletic Doc<sup>®</sup></em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5>About <strong>The Athletic Doc<sup>®</sup></strong></h5>\r\nDr. Fields is the Director of OrthoRegen in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr. Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr. Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc<sup>®</sup> motto is \"not only train hard but smart – as if your body depended on it\"</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div id=\"aboutdocgallery\" class=\"col-md-12\">\r\n<h4>Ironman Photos &amp; Stories</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" />2017 Ironman Santa Rose</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" />2016 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" />2016 Ironman Switzerland</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\" />2015 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\" />2015 Ironman Brazil</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\" />2014 Ironman Austria</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" />2013 Ironman Canada</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" />2012 Ironman Cozumel</a></li>\r\n</ul>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2020-06-30 17:24:43','2020-06-30 17:24:43','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(3807,8,'2020-06-30 17:26:20','2020-06-30 17:26:20','<h4>The Athletic Doc<sup>®</sup></h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img class=\"size-full wp-image-374\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" /> <strong> Pete Jacobs 2012 Ironman<br />World Champion<br />&amp; Dr. Peter A Fields</strong>[/caption]\r\n\r\nDr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became <strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc<sup>®</sup></strong>. In November 2019, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5><strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong> Keeps Active and Fit to Maintain Optimal Health</h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods, and white flour or white sugar products. <em>The Athletic Doc<sup>®</sup></em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5>About <strong>The Athletic Doc<sup>®</sup></strong></h5>\r\nDr. Fields is the Director of OrthoRegen<sup>®</sup> in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr. Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr. Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc<sup>®</sup> motto is \"not only train hard but smart – as if your body depended on it\"</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div id=\"aboutdocgallery\" class=\"col-md-12\">\r\n<h4>Ironman Photos &amp; Stories</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" />2017 Ironman Santa Rose</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" />2016 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" />2016 Ironman Switzerland</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\" />2015 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\" />2015 Ironman Brazil</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\" />2014 Ironman Austria</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" />2013 Ironman Canada</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" />2012 Ironman Cozumel</a></li>\r\n</ul>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2020-06-30 17:26:20','2020-06-30 17:26:20','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(3808,8,'2020-06-30 17:31:03','2020-06-30 17:31:03','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"220\" height=\"82\" class=\"aligncenter size-full wp-image-154\" /> \r\n\r\n<h6 class=\"text-center\">Sunday June 29, 2014<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\nMy time was 13:32:36.  A new PR for me.\r\nFor the details, please read the story below.\r\nThank you\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong><br>\r\nIt started with a 12 hour flight from Los Angeles to Frankfurt going via Dallas. There was 3 hour delay in Dallas so it took even longer. I thought that I had missed my train connection in Frankfurt. Fortunately I got through customs very quickly.  35 minutes from arriving at the game, I was not only able to get through customs but pick up my bags, take a bus to the train station, then re-book my ticket and make my train with 5 minutes to spare!  Of course being able to speak German helped out a lot with getting directions. Then a 3 hour train ride to Munich where I switched trains and then a four hour train ride to Klagenfurt, Austria.  The views from the train in southern Germany and Austria were spectacular.\r\nThe next days were just getting settled in. Usually I\'m a very good sleeper but unfortunately, for about 4 days, I was unable to sleep a lot at night. I tried to make up with this naps during the day.  Sunday would come all too quickly. \r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo and having a chance to swim in the lake and then take a van ride around part of the biking course. When my bike did arrive (I had it shipped), I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.\r\n\r\nSaturday we checked in at the race which included leaving your bike and all your gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check in point I realized that I have left the number back in the hotel. In German I asked one of the check in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have a thing done. Not an easy thing to do as it was one a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number. As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (not an easy thing to do with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which and it said race director.  He said \"I\'m the boss and I can do it for you\".  And within minutes everything was taken care of. He told me he travels to the states sometimes so I gave my card told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.\r\n\r\n\r\n<strong class=\"subhead\">RACE DAY</strong><br>\r\nI got up at my usual time of 3:30 am. Breakfast is at four am and we leave for the race at 4:45am. It was about 58 degrees (heading into the 70\'s) and very clear and no signs of rain. It has rained the last 2 days on and off so this was a good thing. Got to the transition area and prepped my bike for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm. Since it was about a 500 meter walk to the water, we all took our wetsuits and changed over by the lake.\r\nAt the lake we were greeted by a rainbow over the lake.  It was very beautiful and again a good omen. In a short time, we were already go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros for had signed up to start early. I missed this sign up and at first I was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out it was a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group (it gets very jammed up at the beginning of the swim).\r\nSo after many months of training, I was ready to start my fourth Ironman. I was dedicating this race to two people.\r\nOn my left arm I had head initials JP written. This was in memory of my friend Jeff Patterson. Dr Jeff started me off in the wonderful world Prolotherapy which helped save my back from surgery. He was my mentor and dear friend and died much too early only a few months ago at the age of 67.\r\nOn my right arm I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son.  He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n\r\n<strong class=\"subhead\">THE SWIM</strong><br>\r\nEven with 800 starting early, there still was 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group,  I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to answer save a little energy at the beginning. Once I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with first group of only about 150 people there was plenty of room. In triathlons one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!).  When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can see or hear nothing\r\nWhen I got about 100 meters towards the end it got a little jammed up and I was not really  able  to  move ahead quickly or left or right. You just had to stay with the pack. Either way, I excited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me).  And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n\r\n<strong class=\"subhead\">THE BIKE</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" class=\"alignright size-full wp-image-170\" />As one exits the T1 area, there were over a thousand people cheering us on.  We rode down a street for about 300 meters and made a U-turn back so the street was heavily lined with spectators. It was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight.  As usual I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. At the beginning this route is mostly flat with lots of curves going around the lake. As we left lake we went into the small town where there was a traffic circle and after that is where we started our first big hill climb.  At the traffic circle there was one of the race announcers announcing the race and cheering us on along with the spectators. And in all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people probably 5 or6 deep on either side cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way. Going back was long downhill, so we went fast except for the towns where we had to make small turns which meant we had to slow down. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain.  As we approached this mountain climb, we made a sharp left in town and started going up. There were 100\'s of people lining the street and cheering us on along with a big loud speaker with a dj playing music. It was not too long but very steep. And again at the top were a lot of people and another dj play playing music over really big loud speakers. Then it was mostly downhill back to town to start a second loop.  As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a180 degree turn again (like at the beginning) so we hat to really slow down But this was good thing as the street leading to this turn was lined with thousands of spectators cheering us on.  Occasionally at this point and other ones where there was an announcer I would hear \"and here is Peter from the United States\".  Always nice to hear to keep one going. My usual time is about 3hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins. I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs is where one can leave a bag that morning of anything they may want or need at that point. It is at the halfway point of the bike and another one at the halfway point of the run.  I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.  When I tossed the bottle away, it rolled to the feet of the small boy about 6 or 7 years old. His mom looked at him.  He just looked at it. I told him, in German, here\'s a present for you.  Take it home and clean it! It is yours. He just smiled at me as he reached for it.\r\nThen 8 miles into the second loop miles drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down.\r\nAll in all, it went well on the second loop.  The crowds were less due to the rain but there were, still crowds out there. At about mile 80 my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. \r\nMy second loop time was a bit slower due to the rain.\r\n It was 3 hours in 25 minutes. All in all I felt strong for the run. This was a good thing.\r\nIn town near T2, the crowds were there cheering loudly.\r\n\r\nGot off my bike in and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles.  Got my running shoes on and started off to run a marathon.\r\n\r\nPS several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n\r\n\r\n<p><strong class=\"subhead\">THE RUN</strong></p>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" class=\"alignleft size-full wp-image-174\" />When one leaves transition area two (T2) in an Ironman, you cannot think marathon. You just say are running from here to there and play this mental games with yourself the whole way. It was warm and sunny and about 75 degrees but not too hot. Plus there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So therefore I would pass the finish line 4 times. In this area were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the end the first turn around about 4.5 miles out. I had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake the beginning of each loop, so although brief, it was a nice view. After only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races).  I trained part of the time in the water for my run (deep water running).  This was very helpful as it took the stress of these two areas.  At this point everything was good and I had no pain.  As we passed through the finish line area (middle of the figure eight), we headed out again along a canal. Then we ran under a small foot bridge and onto a small (in width) cobblestone street lined with houses. We ran along this for about 3/4 of a mile then into the town square. People were sitting in cafes and cheering us on. Lots and lots of people. It was about 6 or 7 o\'clock at night and since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and run back to the starting area. I got back to starting point again and got my special needs bag - some extra nutrition. On the second loop my stomach started to feel little funny.  This is something that is very common with Ironman triathletes. Mine only lasted about again 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration or other things. I felt fairly lucky.  I would cheer these fellow athlete on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\nI just kept telling myself to keep going.  One foot after another...just keep going... Part of the way it was shady so that helped a lot too. The sun stays up until 9 o’clock so it never went down while I was running. Mile 18, I got a second wind. Felt very upbeat and in a good place so I was able to pick up pace.\r\nAt that point I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that you normally he runs a lot faster but not today. He told me to try to stay with him and we could talk so the time with go faster. So for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains one has after racing for over 13 hours. There was a small archway as one entered into the city square. There was a small bell on a string that it was hanging from. If you rung the bell (by tapping it with your hand) they would donate money to charity, so I rang it every time I passed it. At the final turn around, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run. The guy I was running with and I just kept talking. He was from Prague where I was going after the race so we were going to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As one comes with closer to the finish line, the noise level is incredible with cheering, cowbells and more. I then heard the announcer say:\r\n<strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling one has when you hear that never gets old.\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\nAnd at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes\r\nMy friend I met on the run the finished right behind me. I then met his wife and three kids.\r\nAfter a few minutes of walking around it was off to the massage tent and get some food.\r\n\r\nPS I finished around 8:30 pm. At 9 pm the sky opened up and it rained hard for about an hour.\r\n I was very fortunate not to go through that.\r\n\r\nI want to make everybody who took the time and effort to watch the update that were on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.\r\nCollectively, I want to thank massage therapist, my acupuncturist and my chiropractor. You all helped get me through.  And wonderful office staff who always took a great interest in what I was doing and put up with my long workouts that made me late sometimes.\r\n\r\nThere a few individuals that need to be singled out individually.\r\n I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.\r\n\r\nAnd then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race. \r\n\r\nI want to thank my very special friend Angela Past.  Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did).  She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time.  Wow!  Thank you so much for your emotional support when I needed it the most.\r\n\r\nAnd last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day.  My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day.  She has never lost faith in me and my abilities... Thank you mom!\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n\r\n<img alt=\"Race Report 4th Ironman\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" style=\"text-align: center;\" width=\"204\" height=\"370\">\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n','Race Report 4th Ironman','','inherit','closed','closed','','153-revision-v1','','','2020-06-30 17:31:03','2020-06-30 17:31:03','',153,'https://www.drfields.com/uncategorized/153-revision-v1/',0,'revision','',0),(3809,8,'2020-06-30 17:48:36','2020-06-30 17:48:36','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png\" alt=\"Ironman Brazil Logo\" width=\"220\" height=\"130\" class=\"aligncenter size-full wp-image-185\" />\r\n\r\n<h6 class=\"text-center\">Sunday May 31, 2015<br>\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">GETTING THERE</strong>\r\n\r\nIt is a 12 hour flight nonstop from Los Angeles to Sao Paulo. The flight left at 6:30 p.m. and went smoothly allowing me to get a good nights sleep. It is a four hour difference between Los Angeles and Brazil. After arriving at 11 a.m. in the morning, I waited about six hours and was able to connect on my 5 p.m. flight to Florianopolis.\r\nThe next four days were the usual getting settled in and resting. In addition I would meet many of the competitors that are staying at the guest hotel. The Saturday before the race one must get all ones gear together and leave it down at the transition area. In an Ironman triathlon, all your gear, including your bike, has to be in the transition area on the Saturday before the race. I also took a van tour of the bike course so I could become familiar with it. Sunday morning the only thing one brings down to the start are the things that you\'re going to swim with including your wetsuit. You are also allowed to bring down 2 bags with special needs for half way on the bike and half way through the run. Here you put any food or other gear that you might want during the race and they are placed at the appropriate half way marks.\r\n\r\n<strong class=\"subhead\">RACE DAY</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg\" alt=\"Ironman Brazil Swim 2\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-187\" />I woke at my usual time of 3:30 a.m. This allows me plenty of time to have breakfast, stretch out and get all the final gear in place. And I then arrived at the transition area about 4:30 a.m. At this point it’s just about keeping one\'s nerves down, getting your tires pumped on your bike and making all final checks of your gear for the day. Then we headed down to the ocean. It was about a 10 to 15 minute walk down to the starting point on the beach. The swim was in the ocean (Atlantic that is!). Everybody is trying to just keep their nerves down. Before heading down, I had someone take a picture of me. On my right arm I put the initials of my beloved mother, Yvette Simon Fields, who passed away last August. On my left arm I had the initials of my 89 year old uncle, Andre Jamar, who lives in Belgium and had just spent 30 days in the hospital and had recovered successfully. And on my stomach I had the initials of my dear father, Fred F. Fields, who I lost 11 years ago. All three of them would be in my heart during the race. This was very inspiring and encouraging for me.\r\n<div class=\"clear\"></div>\r\n<br>\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg\" alt=\"Ironman Brazil Swim\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-190\" />This was a beach start. All 2,000 athletes started at once (approximately 40 pros go off first). Being a very good swimmer, I get right behind the lead pack and go out strong. Even with that, there is always a surge at the beginning with everyone swimming into each other (like salmon spawning up stream!). After several hundred yards, the pack thinned out and I was able to get into my rhythm. I was wearing a wetsuit which irritated my neck and I had to stop several times to readjust it so I would not get a burn mark. In spite of this, I was feeling very good. It was a two loop swim. The first loop was a little longer than the second loop. After the first loop you exited the water, ran about 30 to 40 yards on the sand through the cheering crowds and were handed water by the race volunteers. Although a bit exhausting to run, I found this very encouraging with the crowd yelling and screaming. Then it was back in the water to do a second shorter loop. All along I felt very good. I exited the water and found out later I was only nine seconds behind the leader in my age group. So much for stretching my neck! I was feeling very good. You had to run about 300 to 400 yards to the transition area to get your bike. Right before you got to this area, they had wetsuit strippers there. These are basically volunteers to help you to get off your wetsuit. You peel it down to your waist and when you get there you lay on your back and they just pull it off your legs. This is very helpful as this is a hard part of the transition trying to get the wetsuit off. Then it was off to the change tent to put on my bike shoes, helmet and get going on the bike. \r\n<div class=\"clear\"></div>\r\n\r\n&nbsp;\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg\" alt=\"Ironman Brazil Bike\" width=\"160\" height=\"301\" class=\"alignright size-full wp-image-191\" />Since it was in the low sixties and I was still wet, I wore a vest and arm warmers ( I get cold easy) as I exited the bike transition area. I later would get rid of all this gear as it went into the upper 60\'s and mid 70\'s. The area right around this transition area, known as T1, is crowded with people yelling and cheering. This is always very encouraging. Then it was on to do the bike ride, which would be two loops of the course. This event turned out to be more of an urban event than the other Ironman Triathlons I had done. That meant we were riding amongst traffic a lot. We did have one lane blocked off just for us but a lot of the time there were cars going by. There was also a total of about four thousand four hundred feet of climbing. But the hills were pretty evenly spread out, so nothing was all at once. Plus we did have some very nice views of the ocean and bays as Florianopolis is an island. I felt very strong on the bike. At one point one of my age group competitors who had seen me in the transition area came up to me on the bike and asked me if I was going to go to Hawaii (the World Championships, where you have to qualify). I laughed and said no, but thanks for the encouragement (going to Hawaii meant that I would finish in the top one or two in my age group which I certainly do not do). Nonetheless, it was very encouraging to hear this as he thought I was biking very well. After the first loop, you ended up back in town with the crowds cheering and yelling. Then it was back out for the second loop. Again, I was feeling very strong. I did stop at special needs to pick up my water bottle with my energy drink in it and some other food. All along I felt very strong and was racing well. I found out later that when I got off the bike I was in 7th place in my age group. This is a big improvement for me as usually the bike is my weakest link and I fall back many places. Then it was into the change tent to change into my running shoes. This time I did not need sunglasses as it had partially clouded over and the sun was not brightly shining. Since it was around 3pm and the sun would set around 5:30pm (it is almost wintertime in the southern hemisphere), this was helpful as after that time you have to put the sunglasses on your hat or somewhere else as you don\'t need them because it gets dark outside. This was also very good as that would mean it would not get too hot and one would not get sunburned.\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg\" alt=\"Ironman Brazil Running\" width=\"160\" height=\"301\" class=\"alignleft size-full wp-image-197\" />As we started to run out of the transition area, there were lots of crowds. They would eventually dissipate and you would just be running with the other triathletes. After only a mile, my feet started to bother me. I had to stop and readjust my shoes several times. I even put on little toe gel caps that help protect your toes. After several miles I knew that this was going to be a tough day as somehow I was having pains in my feet which I had never experienced before. At about mile two and a half miles, there was an extremely steep hill that most people had to walk up. On the way back this hill was so steep that you also had to walk down. It was not that long, so it wasn\'t that bad. The first loop was out and back. It was 6.5 mile each way, so when done this is the first 13 miles. I tried to put the pain in my feet out of my mind and keep going. It was slowing me down, but I just kept moving forward. I also kept smiling as all-in-all I was just happy to be out there competing. Plus smiling makes me feel good on the inside. In the next few miles, I had to stop several more times to readjust my shoes. By the end of the first loop, I knew this was not going to be an easy day. For the next 10 kilometers (6.2 miles), I pushed myself very hard to stay in the game. I thought of my mother, my father and my uncle whose names I had written on my body. They’ve all had tough struggles in their lives and just kept going, so I did too. Their strength kept me going through this very tough time. Of course now it was after 6:30pm and it was dark. I had now completed 13 miles and knew and if I could just get past the next 6.2 mile (10 kilometer) segment, I would be able to finish the race. I pushed hard and kept my focus. After getting thru this segment, I knew I was good to go and had only one more loop to the finish line.\r\n\r\nI had to walk and run at times due to the pain I was having in my feet, but you just put it out of your mind and keep going. Finally, as I rounded the corner and could see the finish line, I knew I had done it. This was my 5th Ironman and probably the toughest one, at least on the run. Ironman races are all about staying in the game and I had conquered this one. As I crossed the finish line and they said:\r\n\"Peter Fields, you are an Ironman”,\r\nI knew it was all worthwhile. \r\n\r\n\r\n<strong class=\"subhead\">FINAL THOUGHTS</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg\" alt=\"Ironman Brazil Finish\" width=\"200\" height=\"200\" class=\"alignright size-thumbnail wp-image-199\" />My race may have been slowed down by the problems I had on the run, but I was never discouraged. As my former coach told me, Ironman races are all about damage control. That thought helped me get through this race. I was very pleased that I did not get the two most common problems that affect athletes in an Ironman: stomach problems and/or mechanical problems on the bike.\r\nI felt exhausted and drained but nevertheless very satisfied to have finished my 5th Ironman. Some may ask why I punish my body? I was not punishing it; just challenging it. When one is prepared, it is not a punishment. Plus an Ironman is as much a mental challenge as a physical one.\r\n\r\nI leave you with a quote by the author Viktor Frankl, MD, holocaust survivor and world famous author from his book Man\'s Search For Meaning, which was my dad\'s favorite:\r\n\"Life can be pulled by goals just as surely as it can be pushed by drives.\"\r\n\r\nThere are too many to name, but I want to thank everybody out there who followed me during this race and offered me encouragement. I’d also like to thank everyone else who has written to me and even just thought about me before, during and/or after the race.\r\n\r\nThis race was dedicated to my mother who I lost last year, to my father who I lost 11 years ago and to my uncle who, at 89yo, survived a very tough time recently being in the hospital for 30 days. All three of them have meant a lot to me during my life and have encouraged me to never give up.\r\n\r\nLastly, a big shout out to my brother Norman. No matter where I have raced, he has always followed me the entire race on the computer. I heard him cheering me on the whole way; he has never forgotten his little brother.\r\nThanks bro!\r\n\r\n<strong>Peter A. Fields, MD DC<br>\r\nThe Athletic Doc<sup>®</sup> and 5X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n\r\n<a class=\"youtube\" href=\"https://www.youtube.com/watch?v=I-qqF2d40Tw\"><img alt=\"2015 Ironman Brazil Finish\" title=\"2015 Ironman Brazil Finish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-1.jpg\"></a>\r\n<strong><em>2015 Ironman Brazil Finish</em></strong>\r\n<br>\r\n<em><strong style=\"color: #3dbc5e;\">Click image above to view video</strong></em></p>\r\n\r\n<div class=\"clear\">\r\n<a href=\"https://photos.app.goo.gl/l3vcnRmnAzjUIFjy1\" target=\"_blank\" rel=\"noopener noreferrer\">2015 Cozumel<br>\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 5th Ironman','','inherit','closed','closed','','184-revision-v1','','','2020-06-30 17:48:36','2020-06-30 17:48:36','',184,'https://www.drfields.com/uncategorized/184-revision-v1/',0,'revision','',0),(3810,8,'2020-06-30 17:53:16','2020-06-30 17:53:16','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg\" alt=\"Ironman Cozumel Mexico 2015 Logo\" width=\"250\" height=\"126\" class=\"aligncenter size-full wp-image-224\" />\r\n\r\n<h6 class=\"text-center\">Sunday November 29, 2015\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n<strong class=\"subhead\">PROLOGUE</strong>\r\n[caption id=\"attachment_231\" align=\"alignright\" width=\"115\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg\" alt=\"Cozumel 2015 Initials 115\" width=\"115\" height=\"241\" class=\"size-full wp-image-231\" /><strong> Dr. Fields with his parents initials written on his forearms</strong>[/caption]<strong>Never say never</strong>\r\nMy parents taught me to never to give up no matter how difficult it may seem.\r\nThis, and all my races, are dedicated to their memory.\r\n\r\nThirteen years ago three different neurosurgeons told me that if I did not have surgery on my low back, exercise would no longer be an option in my life.\r\nThen I found out about the wonderful world of Regenerative Orthopedic Medicine. Sunday November 29th, 2015, I finished not only my 2nd Ironman race in 2015, but my sixth Ironman race overall.\r\n<strong><em>Regenerate First; Surgery Last!</em></strong>\r\n<p>&nbsp;</p>\r\n<strong class=\"subhead\">RACE DAY</strong>\r\nThe day started off like any other Ironman competition day. I woke up about 3:30 in the morning so that I could have enough time to have breakfast and get everything ready before I went down to the transition area around 5 o\'clock a.m. After getting everything settled at the transition area where my bike was, I then boarded a bus that took me approximately 2.4 miles down to where the swim started. This is because this race is a point-to-point race. That means you start at one point and end at another point on the swim. The same is for the bike. So after getting down to the swim start I put on my very thin and tight speedsuit (a suit similar to what they wear in the Olympics) over my racing suit. Wetsuits are not allowed in this race due to the temperature of the water. I then went to get in the appropriate corral for the start. \r\n\r\n<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n[caption id=\"attachment_243\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg\" alt=\"Cozumel 2015 Swim 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-243\" /> Dr. Fields after the 2.4 mile swim[/caption]The start was being done in waves this year so to avoid the cluster of over 2500 competitors starting all at once.I seeded myself in the second corral, which is for competitors swimming between 1 hour and 1 hour 10 minutes. Most people told me that I should seed myself faster but I was very true to my time knowing I would finish between 1 hour and 1 hour 6 minutes. Due to the small size of the pier that we to go off of, they only let about five to seven competitors in at a time. This made for a very easy start since you did not have to swim over a lot of people. As soon as I got into my stride, which only takes me about 5 minutes or so, I started passing people. And ended up passing probably 50 people, which meant that a lot of people had seeded themselves faster than they actually were. The water was very warm at about 82 degrees and very clear. You could see the frogmen/lifeguards and photographers down below and also many colorful fish along the way. Halfway through the swim I looked at my Garmin watch, which I wear on my left wrist, and noticed it was glowing slightly green. I figured some water had leaked into it. I was going to stop and take a look but then realized that I was in the middle of the ocean and there was nothing I could do about it anyway!\r\n\r\nI swam very well and passed over 50 people, which was a lot as not many had started before me. As I made my way towards the finish and made the final turn two headed towards the pier I really picked up my strokes. My final time was about 1 hour and 4 minutes, which was good enough to make me first in my age group in the swim. As I climbed out of the water and looked down a my Garmin, I realized that the whole front face had somehow become detached and I was actually looking at the circuit board. Well, at that point, I knew the watch was useless. I ran through the shower and then grabbed my transition bag and into the transition area. I quickly dried off and stripped off my speed suit. Underneath this I had my tri suit so just I had to put on my socks, shoes, sunglasses, suntan lotion and grab some nutrition to carry on the bike and I was off to find my bike. I also left behind my Garmin watch, which was useless at this point.\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n[caption id=\"attachment_248\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg\" alt=\"Cozumel 2015 Bike 2 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-248\" /> Dr. Fields during the 112 mile bike ride[/caption]\r\nI ran as quick as I could with my bike shoes on to my bike. You could carry them but then you end up getting gravel on your feet. I took the bike off the rack and ran towards the exit. You\'re not allowed to get on your bike until you leave the transition area. Immediately upon exiting, the transition area, I mounted my bike and took off to start the 112 mile ride.\r\n\r\nI had my power meet on the bike, which in addition to power, would provide me with my heart rate and speed which are essential when riding long distance. The roads were dry and the sun was shining bright and the temperature was in the low eighties. I felt pretty good on the first lap. As you head towards the back of the island the winds pick up. For this approximately 15 mile stretch the winds were about 20 miles an hour blowing on shore. It was tough but not that bad. As you turn towards town to end your first loop the winds were pushing you forward. This was a much needed relief. As you get to town, there were hundreds, if not more, people yelling and cheering. It was very exciting and invigorating. For lap two you again go by some of the hotels and there were people out there cheering.\r\n\r\nAs I got to the back of the island again, the wind picked up and was close to 30 miles an hour. It was getting pretty tough and you just hung in there. Unfortunately this meant that you were down on your triathlon riding bars ( the extended bars you put your forearms on so you can just about lie flat while riding) all the time so as not to let the wind hit you in the chest. It put a tremendous strain on my neck, which I found out later that everybody had the same. You just kept going and going. During this loop, I also stopped at the special needs station at mile 56. This is where you can pick up your nutritional supplies for the second half of the race so you do not need to carry all of them at once. Again as I looped through town the crowds were cheering and it was very nice to get words of encouragement.\r\n\r\nFor the third loop the temperature has risen towards the upper 80\'s and low 90\'s and the winds really were kicking in. Now they were close to 40 miles an hour. It was really brutal. I had ridden this course three times in the past but this time the winds were the strongest . But somehow I kept going and going and managed to endure it. As I made the last turn to head the 9 miles back to town I knew that I had completed this part. Slightly slower than I expected but with the wind it was a slower time for everyone. \r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-run-160.jpg\" alt=\"Cozumel 2015 Run 160\" width=\"160\" height=\"301\" class=\"size-full wp-image-263\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAs I came into town again the crowds were cheering and yelling loudly. I handed off my bike to one of the volunteers there and quickly grabbed my transition bag and ran into the tent. Off with the biking shoes, on with the running shoes, throw some water over myself to help cool me down, put on my running hat, grab some nutrition, go to the bathroom and I was out the door.\r\n\r\nOf course when you transition out of this tent there are thousands of people out there yelling and screaming. The sun was still up so it was still pretty hot with it being in the 90s, But I felt pretty good. For about the first four point 4.4 miles, which is the length of the course (you do this back and forth 3 times) I was a little tight and not so fluid in my running. Along the way of course there are people cheering for about a mile and a half as you get outside of town and then sporadically there were people at hotels who would come out along the road to cheer us on. When I hit the turn around I felt really good and for the next 8.8 miles my legs and body felt really strong. As I got back to town and finished the first 8.8 mile loop the sun was going down which was a blessing because it had been very hot outside.\r\n\r\nThe next 8.8 loop I felt good but the energy was starting to be drained. The bike had taken a tremendous toll, not only on me but on other runners too. But I persevered and kept going. The best thing was my hamstring was not bothering me which had slowed me down during my last two Ironman races. And in May 2015, I had raced Ironman Brazil, where I had a lot of feet problems. None of this came around this time.\r\n\r\nI saw many people out there that I knew from the Los Angeles area or other races. The camaraderie amongst the athletes is tremendous and it\'s something that we all rely on and count on. As I came into town finishing the second loop I knew I only had one more loop to go. I was tired and drained having been racing for almost 12 hrs., but just kept going. Of course along the way I took lots of nutrition and keep myself as hydrated as much as possible. There was no rain this year, which was also nice since the prior previous time I had done this race we were running through knee high puddles.\r\n\r\nAfter leaving town and getting to the final around, I knew only had 4.4 miles left to go and realized that it was in the bag for me. As I came back into town and saw the crowds again, I felt the exhilarating feeling that one can only feel when finishing an Ironman. At this point I only had about a mile to go and knew I have finally done it. That is not only finish my 6th Ironman but my second one in six months . This was a challenge that I set for myself. Like my parents had always told me, set your goals and go for it.\r\nNever say never.\r\n\r\nThe final 100 meters are unbelievable feeling. All ones aches and pains fade away. As I approached the finish line, which is slightly elevated and bathed in lights, I heard the announcer say for the sixth time,\r\n\"Peter Fields, you are an Ironman\".\r\nIt never gets old.\r\nI finally knew that I had completed my conquest of doing two Ironman races in one year.\r\n\r\nOf course the whole way during the race, I never forgot about my parents. I had my mom’s initials written on my left arm and on my right arm I had my dad\'s initials. Both of these people were so special in my life and I have never forgotten them for even one day since each of them passed. Whenever it got tough, I would place my hand on either forearm and feel their presence within me and hear their words of encouragement telling me never to give up. I know they would have been as proud of me as I am of them.\r\n\r\nI want to thank everybody who sent me good wishes, those who kept me in their thoughts and those who followed me on the internet. All your thoughts and wishes kept me strong the whole race.\r\nThere were a few very special people that never stopped thinking about me the whole race. You know who you are and words cannot say thank you enough. \r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 6X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Ironman Cozumel Mexico\" title=\"Ironman Cozumel Mexico\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-1.jpg\" style=\"width: 204px; height: 345px;\">\r\nDr. Fields at the finish line\r\n<a href=\"https://goo.gl/photos/mMnjj9ioLVRkh56Q9\" target=\"_blank\" rel=\"noopener noreferrer\">2015 Cozumel<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 6th Ironman','','inherit','closed','closed','','217-revision-v1','','','2020-06-30 17:53:16','2020-06-30 17:53:16','',217,'https://www.drfields.com/uncategorized/217-revision-v1/',0,'revision','',0),(3811,8,'2020-06-30 17:54:45','2020-06-30 17:54:45','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\n[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]After each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 7X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Dr. Fields, The Athletic Doc<sup>®</sup>, post race\" title=\"Dr. Fields, The Athletic Doc<sup>®</sup>, post race\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-2016-275.jpg\" style=\"width: 204px;\"><br>\r\n<strong> Dr. Fields,The Athletic Doc<sup>®</sup>, post race</strong>\r\n<a href=\"https://goo.gl/photos/iYRMcML2UYWmW2pQ6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Switzerland<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2020-06-30 17:54:45','2020-06-30 17:54:45','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(3812,8,'2020-06-30 17:55:48','2020-06-30 17:55:48','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\n[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]After each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 7X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Dr. Fields, The Athletic Doc<sup>®</sup>, post race\" title=\"Dr. Fields, The Athletic Doc<sup>®</sup>, post race\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-2016-275.jpg\" style=\"width: 204px;\"/><br>\r\n<strong> Dr. Fields,The Athletic Doc<sup>®</sup>, post race</strong>\r\n<a href=\"https://goo.gl/photos/iYRMcML2UYWmW2pQ6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Switzerland<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2020-06-30 17:55:48','2020-06-30 17:55:48','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(3813,8,'2020-06-30 17:56:51','2020-06-30 17:56:51','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\n[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]After each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Dr. Fields, The Athletic Doc®, post race\" title=\"Dr. Fields, The Athletic Doc®, post race\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-2016-275.jpg\" style=\"width: 204px;\"><br>\r\n<strong> Dr. Fields,The Athletic Doc<span style=\"font-size: 10px;\"><sup>®</sup></span>, post race</strong>\r\n<a href=\"https://goo.gl/photos/iYRMcML2UYWmW2pQ6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Switzerland<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2020-06-30 17:56:51','2020-06-30 17:56:51','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(3814,8,'2020-06-30 17:57:26','2020-06-30 17:57:26','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\n[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]After each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc® and 7X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Dr. Fields, The Athletic Doc®, post race\" title=\"Dr. Fields, The Athletic Doc®, post race\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-2016-275.jpg\" style=\"width: 204px;\"><br>\r\n<strong> Dr. Fields,The Athletic Doc<sup>®</sup>, post race</strong>\r\n<a href=\"https://goo.gl/photos/iYRMcML2UYWmW2pQ6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Switzerland<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2020-06-30 17:57:26','2020-06-30 17:57:26','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(3815,8,'2020-06-30 17:57:50','2020-06-30 17:57:50','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\n[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]After each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 7X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Dr. Fields, The Athletic Doc®, post race\" title=\"Dr. Fields, The Athletic Doc®, post race\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-2016-275.jpg\" style=\"width: 204px;\"><br>\r\n<strong> Dr. Fields,The Athletic Doc<sup>®</sup>, post race</strong>\r\n<a href=\"https://goo.gl/photos/iYRMcML2UYWmW2pQ6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Switzerland<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2020-06-30 17:57:50','2020-06-30 17:57:50','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(3816,8,'2020-06-30 17:58:20','2020-06-30 17:58:20','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\n[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]After each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 7X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Dr. Fields, The Athletic Doc<sup>®</sup>, post race\" title=\"Dr. Fields, The Athletic Doc<sup>®</sup>, post race\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-2016-275.jpg\" style=\"width: 204px;\"><br>\r\n<strong> Dr. Fields,The Athletic Doc<sup>®</sup>, post race</strong>\r\n<a href=\"https://goo.gl/photos/iYRMcML2UYWmW2pQ6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Switzerland<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2020-06-30 17:58:20','2020-06-30 17:58:20','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(3817,8,'2020-06-30 17:58:43','2020-06-30 17:58:43','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg\" alt=\"Ironman Switzerland Logo\" width=\"250\" height=\"120\" class=\"aligncenter size-full wp-image-311\" />\r\n\r\n<h6 class=\"text-center\">Sunday July 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"No matter how tough things get in life, you just just have to keep moving forward.\"\r\nFred and Yvette Fields\r\n\r\n<strong><u>GETTING THERE</u></strong>\r\n\r\nI left on an overnight flight to London. This is an approximately 11 hour flight. I slept 7 plus hours so all was well. After a three-hour layover in London, I then had a 90 minute flight to Zurich Switzerland. After landing I found out that my bicycle, which I had brought with me, did not make it. But the Swiss being very efficient had already tracked it and it was coming on the next flight. Since it was late I left for the city and let them deliver it the next morning. I checked into my apartment around midnight. I had rented an apartment since I was going to be there for 7 days. The next morning the bicycle was delivered. No scratches or anything, so everything went well. The first week was just relaxing getting used to the time difference (there\'s a 9 hour time difference between Los Angeles and Zurich) and enjoying Zurich a little bit. Zurich is a beautiful city with a large lake and a river that passes through the city. Rest was needed as race day on Sunday would come quickly.\r\n\r\n<strong><u>RACE DAY MORNING</u></strong>\r\n\r\nThis race day morning was different than my last ones. I usually get about 5 to 6 hours sleep. But somehow I couldn\'t sleep and got only about one and a half hours of sleep. I knew I would be a little on edge but I tried to keep myself calm. I got out of bed at 3:30am to do the final preparations and have breakfast and to get to the transition at 5 a.m. We leave our bike, running and biking gear at the transition area on Saturday, so all I had to do was put water and fuel on my bike, pump the tires and check all my transition bags to make sure everything was correctly there. This is very important as when you get off out of the water you need all your bike gear to change into and the same for the transition when you get off the bike and begin to run, The water was just barely legal (cool enough) for wetsuits. This was just below 74.5 degrees as mandated by the Ironman Corporation. Since I\'m a good swimmer I would have actually preferred not to wear a swimsuit but since everyone else was wearing one, I wore it. Then it was down to the starting line to begin a long and arduous day.\r\n\r\n<strong><u>THE SWIM: 2.4 Miles</u></strong>\r\n[caption id=\"attachment_313\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg\" alt=\"Switzerland Swim 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-313\" /><strong> Dr. Fields after the 2.4 mile swim</strong>[/caption]They had about 1,700 competitors at this race . This is less than the usual 2200- 2500. You seed yourself in holding areas by finishing times (under 1 Hour, between 1 hour and 10 minutes and so on. I put myself in the one hour to 1:10 area as this is my expected time. They let the people go six at a time, every 5 Seconds. But due to the fact that you had to run about 15 feet and then walk in the water over stones before actually starting the swim, everyone ended up getting jammed up so it was really like mass start. This meant that there were people were swimming over each other and very close. So I took my time not only lifting my head to keep my bearings straight, but to make sure I was not being bumped by other swimmers too much. Another problem was that all the buoys were of the same color. Usually when you have to turn, they place a different color buoy. So this too delayed my swim and I knew I would be slightly slower than before. As I made the final turn after two miles, I started to head back to the shore for the final 0.4 miles to make a total of 2.4 miles. The only thing marking the exit was a small black balloon archway. Unfortunately this was not very distinguishable from the water and people were zigzagging all over the place. I could only really see it when I got about two hundred meters close to the shore. I found out later that this problem and the ones mentioned before were had by many other swimmers. But all in all it went well. My swim was slower than before due to the crowding at the start and the sighting difficulties, but now I was done with the 2.4 mile swim and it was on to the bike.\r\n\r\n<strong><u>THE BIKE: 112 Miles</u></strong>\r\n[caption id=\"attachment_316\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg\" alt=\"Switzerland Bike 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-316\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]After getting out of the wet suit and getting my bike shoes, helmet and sunglasses on, I got on the bike and started to ride. The first 15 - 20 miles is very flat but also very scenic as you go around the lake. After about 10 to 15 minutes I started to take some nutrition in to replace what I had burned off while I was biking. It\'s important not to take anything in the first 10 to 15 minutes so that your blood goes from your upper body into your lower body. This time we started one of two very long and fairly steep climbs. It was a little bit of a cloud cover so this was good. This cloud cover would be dispersed by the second Loop and the temperature would rise. At the start of the body temperature was probably around 70 degrees but later it would go into the mid-to-upper 80s. Plus it was humid out. As you did this series of two different climbs you have some spectacular views of Lake Zurich and the city. This made things a little bit easier. And the rest of the ride you passed by pastures with cows and some small villages.  Towards the end of the first loop you pass the transition area and do a small little 8 Mile loop. In this 8 Mile loop is an extremely steep hill. It is only about half a mile long but the steepest hill you climb. This area was jammed with spectators yelling and cheering on both sides of the road about 10 to 15 deep. It was very invigorating as you climb this hill and heard music blaring on loud speakers (the second time around  I heard \'Born in the USA\' by Bruce Springsteen). The you descend down the back and go back to the start of the race to begin your second loop after the first 66 miles. The second loop was a little tougher as the temperature reached into the mid-eighties and the sun was out in full force. Since they were long stretches of flat riding, one is down in their Triathlon handlebars alot. This puts a lot of pressure on your neck as you look up periodically to see the traffic in front of you. My neck was getting very tight and even though I was moving it around it was stiffening up a lot. So when I saw a small grassy area quickly hopped off the bike down on the ground and stretched my neck out. This cost me about 45 to 60 seconds off the bike but was well worth it is when I got back on my neck was a lot looser. I could have used a chiropractor at that point but unfortunately they don\'t have them on the race course! hahaha.\r\n\r\nUnfortunately, even though this was a Swiss race, they did not have it organized that well. There was no ice anywhere on the race course (this was to also include the run portion). That meant when they handed you water bottles they were basically warm. One is used to getting an ice cold water which is very refreshing. The second loop went well and after doing a very steep climb at the end again, it was off the bike and into transition to begin the run\r\n\r\n<strong><u>THE RUN: 26.2 Miles</u></strong>\r\n[caption id=\"attachment_318\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg\" alt=\"Switzerland Run 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-318\" /><strong> Dr. Fields during the 26.2 mile run</strong>[/caption]\r\nAfter riding 112 miles, it\'s always a nice feeling to get off the bike. I changed into on my running shoes and was off for the 26.2 mile run. At this point it was very sunny and hot. They changed the run this year so that you would pass through the heart of the city and by Lake Zurich . But they made it a four loop course which was a little monotonous. My first 10+K loop went very well for me. As you left transition and passed by the crowds it was very invigorating. After 2k you turn to go through the downtown area. You went down one of the main streets with a lot of fancy stores. Then you turned into the malled off streets that were cobblestones but not too bad to run on. These were very small and winding streets in the old part of town. Several cafes were there too with spectators. Then you came out alongside the river and under a bridge to run about 2K by the lake. Here there were hundreds, if not more, people cheering as they enjoyed their Sunday afternoon. This was very invigorating hearing people cheer you on and yell your name or the country you were from (the race tags we wore had our first name and two small flags of the country you where from). The whole time you ran along the lake there were throngs of crowds. After turning around we headed back to the transition area to begin the next 3 loops. This was a little tough as when you pass transition you also passed the Finish Line.\r\n\r\n[caption id=\"attachment_319\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" alt=\"Switzerland Finish Line 2016 275\" width=\"160\" height=\"301\" class=\"size-full wp-image-319\" /><strong>Dr. Fields crossing the finish line</strong>[/caption]After each loop, there were people finishing but you still have to continue around and do your loops. They kept track of this when you came up towards the end of each loop and they would put a colored arm band around your forearm . Once you have four armbands on you could turn it into the finish line. As I said, the first loop very well. During the second loop I started to develop some foot pain. I have had this in the past in training but it only would last about 10 to 15 minutes at most. Unfortunately this time it did not go away so my second loop (each loop was a little more than 10K) was much slower. This pain would come and go until halfway into my 4th and last loop. But Ironman are all about challenges. I just dug deep and kept my focus on where I was going and put the pain aside.Dr. Fields crossing the finish line But all-in-all, I persevered. By the third fatigue was getting setting in but I just kept going since I you had to go out and do a fourth loop. Of course in everyone\'s mind you\'re thinking maybe I could just turn and go into the finish line. But again you could not enter the Finish Line without the four colored bands on your arm ( and that would be cutting the course so in reality no one ever considers that). The route was interesting but unfortunately there was no ice anywhere on the course. This all the athletes found to be very unusual. They did have sponges you could squeeze the water out on your head, shoulders and back but again it was just all air temperature water. So you just kept sipping water, cola, taking in nutrition and putting one foot in front of the other.\r\n\r\nSo as I made the final turn at about four kilometers to go, I knew I was heading back and that despite any difficulties, I had I would complete my 7th Ironman. As I came into the transition area and made the final 50 meter turn into the finish line I knew I had done it again. As I crossed the finish line I heard the words that I had heard 6 times before, \"Peter Fields, you are an Ironman!\"\r\n\r\n<strong>POST SCRIPT</strong>\r\n\r\nOf course as with every other race I was dedicating this race in the memory my mother and father. When the pain in my foot started to get worse during the run I just stayed focused. I had learned from both of them that no matter how tough things get in life, you just just have to keep moving forward.  I also kept a small remembrance of them in my back jersey pocket.  When things would get really tough, I would reach back and touch it.  Knowing they were with me made it a lot easier.\r\n\r\nMany of you may not know this  but both my parents were refugees fleeing fascism during World War II.\r\nBeing Jewish and living in Germany in the 1930\'s was not an ideal situation, to say the least.\r\n\r\nMy mom\'s family fled Germany to live in France in 1933. My mom was only 7 years old. After 8 good years, they had to flee once again, in 1941, to the US. So at the young age of 16 she would have to learn her third language, see her dad pass away after only a month in the US, help care for her family and more.\r\n\r\nMy dad, at 19, left Berlin in 1938 to hide out in Shanghai, China. He knew that it was either get out of Europe or perish. His parents unfortunately would never make it out. It took him nine years, until 1947, to finally get to the US. Penniless and without family, he would eventually meet my mom (married for 56 years) and with her start a successful business, raise a family and the rest is history.\r\n\r\nNo matter how bad things got they never gave up hope,\r\nThey instilled this in me from early childhood.\r\nAnd it stayed with me and helped me through this race.\r\n\r\nWhat was happening to me during the race was nothing compared to my parents journeys, but as they taught me, just kept moving forward and don\'t look back.I share with you these stories as this is what I kept in my head as I was running past the pain and fatigue of working out for over 12+ hrs straight.  The book  \'Man\'s Search for Meaning\' by Viktor Frankl, MD, Phd, which was my father\'s favorite book, has a famous quote that goes something like this: \'It\'s not what happens to you in life that matters; it\'s how you deal with it\'.\r\n\r\nI want to thank everybody who has gotten to this point and taken the time to read this. Also everybody out there who were shouting and/or cheering during the race following me on the Internet or just in their minds. I appreciate it all.\r\nThank You.\r\n\r\nOf course, I thank my parents everyday for not only the love they gave me, but for the spirit and determination to never give up that they ingrained in my soul. I\'m so thankful that I had them as my parents.\r\n\r\nOne last special dedication.\r\nTo my 91yo uncle Andre in Belgium, who felt guilty about taking time away from following me on the computer to do a few errands.\r\nHe sometimes knew more about me during the race then I did.\r\nMerci beaucoup, Monsieur Jamar!\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 7X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"Dr. Fields, The Athletic Doc®, post race\" title=\"Dr. Fields, The Athletic Doc®, post race\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-2016-275.jpg\" style=\"width: 204px;\"><br>\r\n<strong> Dr. Fields,The Athletic Doc<sup>®</sup>, post race</strong>\r\n<a href=\"https://goo.gl/photos/iYRMcML2UYWmW2pQ6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Switzerland<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 7th Ironman','','inherit','closed','closed','','302-revision-v1','','','2020-06-30 17:58:43','2020-06-30 17:58:43','',302,'https://www.drfields.com/uncategorized/302-revision-v1/',0,'revision','',0),(3818,8,'2020-06-30 18:03:45','2020-06-30 18:03:45','<div class=\"col-md-8\">\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\n\n<h6 class=\"text-center\">Sunday Nov 27, 2016\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\n\n\"Never give up on your goals no matter how tough things get.\"\nFred and Yvette Fields\n\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\n\n<strong><span>GETTING THERE</span></strong>\n\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\n\n\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\n\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\n\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\n\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\n\n\n\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /><strong>Swim Start with his parents initials on his forearms</strong>[/caption]<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\n\nThe swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\n<div class=\"clear\"></div>\n\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\n\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\n\n\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> <strong>Dr. Fields during the 26.2 mile run</strong>[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" class=\"size-full wp-image-332\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\n\n<div class=\"clear\"></div>\n<strong>POST SCRIPT</strong>\n\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\n\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\n\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\n\n<div class=\"clear\"></div>\n<strong>Peter A. Fields, MD DC</strong>\n<strong>The Athletic Doc<sup>®</sup> and 8X Ironman Triathlete</strong>\n</div>\n<div class=\"col-md-4\" id=\"sidebar2\">\n<img alt=\"post race pic\" title=\"post race pic\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finisher-275.jpg\"><br>\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong> <br>\nThe Athletic Doc<span style=\"font-size: 10px;\"><sup>®</sup></span>, </strong></span>post race pic\n<a href=\"https://goo.gl/photos/WqU8aVsvXa5SgLLo6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Cozumel<br>\nClick For More Photos</a>\nClick below for Pictures &amp; Story&nbsp;\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\n\n</div>','Race Report 8th Ironman','','inherit','closed','closed','','306-autosave-v1','','','2020-06-30 18:03:45','2020-06-30 18:03:45','',306,'https://www.drfields.com/uncategorized/306-autosave-v1/',0,'revision','',0),(3819,8,'2020-06-30 18:03:55','2020-06-30 18:03:55','<div class=\"col-md-8\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo.jpg\" alt=\"Cozumel Logo\" width=\"139\" height=\"85\" class=\"aligncenter size-full wp-image-326\" />\r\n\r\n<h6 class=\"text-center\">Sunday Nov 27, 2016\r\n2.4 mile swim, 112 mile bike, 26.2 mile run</h6>\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\nFred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my eighth Ironman in Cozumel, Mexico November 27, 2016. I apologize for the delay in getting this out.\r\n\r\n<strong><span>GETTING THERE</span></strong>\r\n\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hrs. to Cozumel. I arrived five days in the advance of the race. Then the usual registering, getting ready and just sitting back and relaxing the last few days.\r\n\r\n\r\n<strong class=\"subhead\"><span>RACE DAY MORNING</span></strong>\r\n\r\nI awoke at 3:30 a.m. Breakfast at 4 a.m. and then getting down to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have our bike, so first you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above the 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n\r\n\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"160\" height=\"286\" class=\"size-full wp-image-327\" /><strong>Swim Start with his parents initials on his forearms</strong>[/caption]<strong class=\"subhead\">THE SWIM: 2.4 Miles</strong>\r\n\r\nThe swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded. The water very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens. While swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually you swim with the current but occasionally it can change. I just moved on and kept motoring through. At the end I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time. Then out of the water, run over to the transition tent to dry off, get my helmet, bike shoes and sunglasses on and then on to the bike for 112 mile bike ride.\r\n<div class=\"clear\"></div>\r\n\r\n<strong class=\"subhead\">THE BIKE: 112 Miles</strong>\r\n\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"160\" height=\"209\" class=\"size-full wp-image-328\" /><strong>Dr. Fields during the 112 mile bike ride</strong>[/caption]Having done this this race three times before I knew that bike course well. The back side of the island has a 12-mile stretch where your hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before. The second loop I kept my pace going but the winds got tougher on the back side of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike. The third loop I did well on the leeward side of the island but once I hit the windward side of the island I slowed because the winds were blowing over 30 miles an hour. At this point you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.\r\n\r\n\r\n<strong class=\"subhead\">THE RUN: 26.2 Miles</strong>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"160\" height=\"288\" class=\"size-full wp-image-329\" /> <strong>Dr. Fields during the 26.2 mile run</strong>[/caption]At a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. My first loop, which is about 8.8 miles, I felt very good. During my second loop I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" class=\"size-full wp-image-332\" /><strong> Dr. Fields crossing the finish line</strong>[/caption]Dr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\r\n\r\n<div class=\"clear\"></div>\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 8X Ironman Triathlete</strong>\r\n</div>\r\n<div class=\"col-md-4\" id=\"sidebar2\">\r\n<img alt=\"post race pic\" title=\"post race pic\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finisher-275.jpg\"><br>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong> <br>\r\nThe Athletic Doc<sup>®</sup>, </strong></span>post race pic\r\n<a href=\"https://goo.gl/photos/WqU8aVsvXa5SgLLo6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Cozumel<br>\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story&nbsp;\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2020-06-30 18:03:55','2020-06-30 18:03:55','',306,'https://www.drfields.com/uncategorized/306-revision-v1/',0,'revision','',0),(3820,8,'2020-06-30 18:07:26','2020-06-30 18:07:26','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong></div>\r\n<i>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\r\n<div class=\"clear\"></div>\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"alignleft wp-image-732 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\" width=\"215\" height=\"167\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"alignright wp-image-735 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n\r\n&nbsp;\r\n\r\n<strong>Stem Cell Treatment Results</strong>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <a href=\"tel:+[phone_raw]\">[phone]</a>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2020-06-30 18:07:26','2020-06-30 18:07:26','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(3821,8,'2020-06-30 18:09:59','2020-06-30 18:09:59','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n\r\n<div class=\"clearfix\"></div>\r\n\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen<sup>®</sup>, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2020-06-30 18:09:59','2020-06-30 18:09:59','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(3822,8,'2020-06-30 18:10:44','2020-06-30 18:10:44','<h4>Regenerative Orthopedics for Chronic Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone, and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Regenerative Orthopedics for Chronic Knee Pain treatment.\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Arthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Persistent arthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudogout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease, and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>How Does Regenerative Orthopedics Work for Chronic Knee Pain?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Regenerative Orthopedics</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nRegenerative Orthopedics works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Regenerative Orthopedics for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Regenerative Orthopedics for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after Regenerative Orthopedics, like Stem Cell Therapy, PRP, and <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Regenerative Orthopedics for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Peter A. Fields, MD, DC, and OrthoRegen<sup>®</sup> at 310-453-1234.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2020-06-30 18:10:44','2020-06-30 18:10:44','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(3823,8,'2020-06-30 18:11:11','2020-06-30 18:11:11','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy for Chronic Neck Pain</h4>\r\nBecause the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and to rotate, but if you can\'t move your neck normally, your life can be severely disrupted and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be prolotherapy for chronic neck pain.\r\n\r\n<h4>What Causes Neck Pain?</h4>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\nSymptoms of <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands and feet.</li>\r\n</ul>\r\n\r\nIf you are experiencing minor neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty and symptoms may begin to appear years after the disease begins.\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck can be the causes of the neck pain you feel. Pain in the neck can also be caused by injury such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, a pinched nerve, meningitis, influenza, a heart attack or torticollis, can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture, and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Neck Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Neck Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic neck pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are you a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Chronic Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2020-06-30 18:11:11','2020-06-30 18:11:11','',509,'https://www.drfields.com/uncategorized/509-revision-v1/',0,'revision','',0),(3824,8,'2020-06-30 18:11:29','2020-06-30 18:11:29','<h4>Prolotherapy for Chronic Shoulder Pain</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n\r\nIt\'s easy to take your own body for granted when your body is working well. But when a part of your body, such as your shoulder, begins to hurt or hurts for an extended period of time, you quickly realize how much you depend on your shoulders for reaching, raising your arm, lifting yourself up or even just opening a cupboard. That\'s why so many people with shoulder pain or injuries look to <strong>Prolotherapy for chronic shoulder pain</strong> treatment.\r\n\r\n<h4>Causes of Shoulder Pain</h4>\r\nThe muscles and joints of the shoulder allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso and allow the arm to move a full 360°. This tremendous range of motion also makes the shoulder extremely unstable, and far more prone to dislocation and injury than other joints.\r\n\r\nBecause the rounded head or ball of the upper arm bone (humerus) is larger than the socket of the shoulder bone (scapula), this area is especially susceptible to injury. The shoulder joint consists of bones, muscles and ligaments that are all subject to stress and overuse.\r\n\r\nCommon causes of shoulder pain can be:\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation and attendant injury</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Adhesive capsulated (frozen shoulder)</li>\r\n 	<li>Fracture</li>\r\n 	<li>Poor posture.</li>\r\n</ul>\r\nBut the <strong>most common cause of chronic pain in the shoulder is arthritis</strong>. This can take many forms such as: osteoarthritis, rheumatoid, traumatic, and gouty arthritis.\r\n\r\n<h4>Which Kind of Shoulder Pain Do You Have?</h4>\r\nIf you are experiencing pain from a rotator cuff injury, you will feel a dull aching pain, which worsens with movement.  A rotator cuff injury includes any type of irritation or damage to your <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> muscles or tendons. Causes of a rotator cuff injury may include falling, lifting and repetitive arm activities — especially those done overhead.\r\n\r\n<strong>Shoulder tendonitis</strong> can produce symptoms including a slow onset of discomfort, pain in the upper third of your arm and difficulty sleeping on the side of that arm.\r\n\r\nRedness and swelling that is tender and warm to the touch can be caused by <strong>bursitis</strong>.\r\n\r\nMinor shoulder pain, ‘clicking’, ‘giving way’, or frozen shoulder, are symptoms of <strong>arthritis</strong>. Osteoarthritis can begin as early as thirty, but symptoms can appear later, as the condition progresses.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Shoulder Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Shoulder Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic shoulder pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, shoulder surgery requires you reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic shoulder pain? Would you like a <strong>second opinion before you have irreversible shoulder surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Chronic Shoulder Pain','','inherit','closed','closed','','511-revision-v1','','','2020-06-30 18:11:29','2020-06-30 18:11:29','',511,'https://www.drfields.com/uncategorized/511-revision-v1/',0,'revision','',0),(3825,8,'2020-06-30 18:11:56','2020-06-30 18:11:56','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Jennifer - Elbow</strong></div>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. It is usually the ligaments and tendons that are injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n\r\n<strong>Ligament Injuries in the Elbow</strong>\r\n\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. In tennis elbow it is the <strong>extensor tendons</strong> which move the wrist up, that can be damaged. In golfer’s elbow it is the <strong>flexor tendons</strong>, that move the wrist down, that get injured. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n\r\n<strong>The Most Common Elbow Injuries </strong>\r\n\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? Are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Elbow Pain','','inherit','closed','closed','','524-revision-v1','','','2020-06-30 18:11:56','2020-06-30 18:11:56','',524,'https://www.drfields.com/uncategorized/524-revision-v1/',0,'revision','',0),(3826,8,'2020-06-30 18:12:33','2020-06-30 18:12:33','<h4>Regenerative Orthopedics for Chronic, Persistent Hip Pain</h4>\r\n<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen<sup>®</sup> is to avoid hip replacement surgery, which is usually due to damage caused by hip arthritis. The majority of folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.  The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement, but they don’t want that and are looking for a way to avoid the surgery! Regenerative Orthopedics gives them a non-surgical option and an alternative to hip replacement surgery.</span>\r\n\r\n<b>The Hip and Arthritis</b>\r\n\r\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. The hip joint has a ring of cartilage that seals the ball and socket called the labrum, which helps to provide movement between the leg and pelvis. Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities, and sometimes makes even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\r\n\r\n<b>What Causes Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. Other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! At some point the hip joint was destabilized by injury. Most of our patients can recall some type of trauma to the hip, or even a previous hip procedure. Traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. Left unrepaired, this instability in the hip joint encourages the arthritis cycle. Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion, which destroys the hip joint further.  How does surgery cause arthritis to worsen? In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip, just to get the large arthroscope into the hip, and the stretching weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability, and later, the development of arthritis. Surgeons may recommend surgery for all of these conditions. But conservative, non-surgical options, including Regenerative Orthopedics, should be considered prior to opting for surgery. </span>\r\n\r\n<b>How Regenerative Orthopedics Is Used To Treat Chronic Hip Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication.</span>\r\n\r\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures, which stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited, and since this is the material in which ligaments and tendons are made, the result is tighten and stronger soft tissue structures.</span>\r\n\r\n<span style=\"font-weight: 400;\">Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. In cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\r\n\r\n<b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen<sup>®</sup> at </span><span style=\"font-weight: 400;\">[phone]</span><span style=\"font-weight: 400;\">.</span>','Chronic Hip Pain','','inherit','closed','closed','','2665-revision-v1','','','2020-06-30 18:12:33','2020-06-30 18:12:33','',2665,'https://www.drfields.com/uncategorized/2665-revision-v1/',0,'revision','',0),(3827,8,'2020-06-30 18:13:57','2020-06-30 18:13:57','<b>Stop the Back Pain Cycle</b>\r\n\r\n<span style=\"font-weight: 400;\">So many people suffer with back pain, stuck in a cycle of pain medications, hours of therapy appointments, more prescription medications, over the counter medications, supplements, and more therapy, only to continue to suffer from continued back pain. The cycle is an attempt to manage the pain. You might think, “Of course, I want to manage the pain!” But what if there is a better way, and one that actually corrects the back pain problem, repairs the underlying source of pain, and resolves the pain? Chasing symptoms keeps the sufferer in the pain cycle. Correcting the problems stops the back pain cycle!</span>\r\n\r\n<b>What Is the Reason Behind Most Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Since back pain is so common and a leading cause of disability, it is important to look at the reason for it. The underlying cause of most back pain issues is </span><b><i>spinal instability</i></b><span style=\"font-weight: 400;\">. What is spinal instability you might ask? When you bend and twist and tweak your back, you injure soft tissue, like muscle and ligaments. Muscles have a great blood supply, so they heal quickly. Ligaments have a poor blood supply, and take quite a while to heal. In fact, they heal quite poorly. Unhealed ligaments are weak and lax, similar to stretched out rubber bands. Ligaments connect bone to bone. So if the ligaments are weak, then the bone connection will be weak and wobbly. That bone connection or joint is then unstable. The bones in the back are vertebrae and make up the spine. So when the ligaments in the spine are weak or wobbly, that makes for spinal instability. When these ligaments remain unhealed, the problem gets worse and worse. The ligaments get more lax and the spine becomes more unstable. You can imagine that if the joints of the spine become wobbly, that the bony structures will have difficulty moving like they should. Smooth movement of the vertebral joint connections stops. The abnormal motion causes the joint structures to degenerate. Instability and abnormal joint motion is behind all types of painful back conditions, like bulging discs, arthritis, sciatica, and degenerative joint disease. The underlying problem is ligament weakness, which creates abnormal joint motion which will eventually damage the joint structures and elicit pain. Pain pills aren’t able to fix the weakened ligaments. Cortisone makes soft tissue weaker, so even if it provides some short-term relief, it will eventually worsen the problem in the long run. Massage can’t strengthen weakened ligaments either. What’s the solution? The degenerative condition needs a regenerative treatment. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are all regenerative treatments that strengthen ligaments, restore normal joint motion, and regenerate joint structures.</span>\r\n\r\n<b>Ligaments Are Structures that Provide Stability to the Joint</b>\r\n\r\n<span style=\"font-weight: 400;\">As mentioned earlier, the most common cause of unresolved back pain is spinal instability, due to weakened and stretched out ligaments. Ligaments are very important for stability of the spine and for proper motion. In fact, they are some of the main stabilizing structure for the joint. Sure, those with back pain will definitely complain of muscle spasms and tightness, because muscles help with stability too. But muscles will spasm because they are overcompensating for the inability of the injured ligaments to keep the spine in place. Treatments that relieve muscle spasms will give temporary reprieve of the spasms, but will not address the ligament weakness. Instability and pain will continue, because the ligaments are unable to hold the adjacent bones of the spine together properly.</span>\r\n\r\n<b>How to Treat Unresolved Back Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Each year, thousands and thousands of people are disabled due to some type of painful back condition. Back pain is actually one of the main reasons people come to see us at OrthoRegen<sup>®</sup>. By the time they come to see us, they have usually tried numerous types of pills, treatments, and even surgery, but continue to experience pain. That’s because these other treatments only short-lived and temporary relief. Even surgical treatments end up with poor rates of success. Surgery may emphasize treatment of the disc, for example, but it misses treating the ligament injury which is the originating source of the pain. So pain continues.</span>\r\n\r\n<span style=\"font-weight: 400;\">The places where the ligaments attach to the bones are full of nerves, which elicit pain when stretched out or injured. Injured ligaments can send out referral pain down the back of the leg and even to the foot. They can also refer pain into the groin and pelvic floor. If weak ligaments exist, the physician knowledgeable in examination techniques can diagnose instability during the physical examination with varied maneuvers and positioning. Even palpating, or pressing with the thumb at the ligament attachments will elicit pain indicating ligament laxity.</span>\r\n\r\n<span style=\"font-weight: 400;\">Back pain is one of the easiest conditions to treat with Regenerative Orthopedics. Most often, the pain is located in the lower back, where the vertebrae of the lumbar spine meet the pelvis. Four structures adjoin there in a pretty small area, with all of it held together by ligaments, connecting the sacrum to the sides of the iliac crest and the ilium, while the lower part of the lumbar spine connects to the sacrum. Regenerative Orthopedics to the ligaments in this area strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication.</span>','Chronic Back Pain','','inherit','closed','closed','','2760-revision-v1','','','2020-06-30 18:13:57','2020-06-30 18:13:57','',2760,'https://www.drfields.com/uncategorized/2760-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (3828,8,'2020-06-30 18:14:47','2020-06-30 18:14:47','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Prolotherapy Hip Injury\'\"]\r\n<strong>Chris - Hip</strong></div>\r\n<h4>Prolotherapy Hip and Groin Injury Treatment</h4>\r\nHip and groin injuries can quickly become debilitating and escalate into athletic career ending injuries. MRI and arthroscopic surgery are routinely recommended for patients. Other patients may spend months or longer on pain medication, while undergoing rounds of physical therapy. <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment offers a successful alternative to pain medication and surgery, for hip and groin injuries. OrthoRegen<sup>®</sup> offers comprehensive treatment for your hip injuries and groin pain without pain medication, surgery or extended time away from the sport you love.\r\n<h4>Who Is Prolotherapy Hip Treatment For?</h4>\r\nOur patients include Olympic hopefuls to weekend warriors. Dr. Peter Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an Ironman Triathlete. He understands the concerns of injured athletes, hoping to return quickly to their chosen sport. His clinical experience has shown that Prolotherapy hip treatment is the preferred way to treat hip injuries and groin pain for optimal long term results. We can get you back into your sport without surgery, without medication, and without extended time away from your sport.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment are:</strong>\r\n<ul>\r\n 	<li>Acetabular labrum tear</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Femoroacetabular impingement</li>\r\n 	<li>Groin pain</li>\r\n 	<li>Hip instability</li>\r\n 	<li>Hip impingement</li>\r\n 	<li>Hip pain</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Post pelvic fusion pain</li>\r\n 	<li>Post-surgical hip pain</li>\r\n 	<li>Pubic symphysis injury</li>\r\n 	<li>Pubis pain</li>\r\n 	<li>Pupalgia</li>\r\n 	<li>Snapping hip syndrome</li>\r\n 	<li>Torn Labrum</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy hip treatment, as well as PRP Prolotherapy and Stem Cell Prolotherapy. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>\r\n','Hip Injury Treatment','','inherit','closed','closed','','528-revision-v1','','','2020-06-30 18:14:47','2020-06-30 18:14:47','',528,'https://www.drfields.com/uncategorized/528-revision-v1/',0,'revision','',0),(3829,8,'2020-06-30 18:16:03','2020-06-30 18:16:03','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\n<strong>Christa - Knee</strong></div>\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\n<strong>Adam - Knee </strong></div>\n<h4>Regenerative Orthopedic Knee Treatments</h4>\nKnee injuries are one of the most common problems we treat with Regenerative Orthopedic knee treatments at OrthoRegen<sup>®</sup>, and that\'s important because the knee joint is one of the most crucial joints in the body, not to mention that knee function is vital to involvement in everyday activities.\n\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\n\nThere are also two forms of cartilage in the knee, including articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement. The meniscus is another type of cartilage, which consists of two semicircular discs providing cushioning and support for the bones. Our knees are extremely vulnerable to injury in one or a combination of these elements. In the case of a knee injury, we recommend our <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair damaged tissue, ligaments, and tendons, to get you back quickly to the activities you love.\n<h4>How Regenerative Orthopedics Works to Treat the Knee</h4>\nRegenerative Orthopedics are innovative therapies that treat the knee by stimulating the immune system to repair damaged tissue. Prolotherapy is one type of regenerative treatment that is effective for knee injuries. \"Prolo\" comes from the word proliferate, and Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the ligaments and tendons. The proliferation of the fibroblasts encourages new, strong, tissue to be formed. Why is this important? Because this new tissue is exactly what is needed to repair ligament, tendon, and meniscus injuries.\n\nIn some cases of knee injury, Platelet Rich Plasma (PRP) may be recommended. The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Certain injuries will require more potent means for healing and regeneration. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\n\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, tendons, and the menisci of the knee joint.\n\nReceive treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h4>Are You A Candidate for Prolotherapy?</h4>\nPeter A. Fields, MD, DC and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Regenerative Orthopedic treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\n\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, Dc is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>. For over 25 years, Dr. Fields has been active in the sport of Triathlon. In 2019, he completed his 11th Ironman Triathlon, in Cozumel, Mexico. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\n\nContact us to see if you are a candidate for Regenerative Orthopedics or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\n\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\n<ul>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\n 	<li>Breaststrokers knee</li>\n 	<li>Bucket handle tear of the meniscus</li>\n 	<li>Cartilage lesion</li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\n 	<li>Flap tear</li>\n 	<li>Horizontal tear</li>\n 	<li>Jumpers knee</li>\n 	<li>Knee instability</li>\n 	<li>Knee pain after surgery</li>\n 	<li>Knee popping</li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Knee replacement pain</a></li>\n 	<li>Knee stiffness</li>\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\n 	<li>Ligament sprain</li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\n 	<li>Oblique meniscus tear</li>\n 	<li>Overuse injuries</li>\n 	<li>Parrot beak tear</li>\n 	<li>Patellar tracking</li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\n 	<li>Post-surgical knee pain</li>\n 	<li>Radial meniscus tear</li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\n</ul>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-autosave-v1','','','2020-06-30 18:16:03','2020-06-30 18:16:03','',533,'https://www.drfields.com/uncategorized/533-autosave-v1/',0,'revision','',0),(3830,8,'2020-06-30 18:16:07','2020-06-30 18:16:07','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong></div>\r\n<h4>Regenerative Orthopedic Knee Treatments</h4>\r\nKnee injuries are one of the most common problems we treat with Regenerative Orthopedic knee treatments at OrthoRegen<sup>®</sup>, and that\'s important because the knee joint is one of the most crucial joints in the body, not to mention that knee function is vital to involvement in everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\r\n\r\nThere are also two forms of cartilage in the knee, including articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement. The meniscus is another type of cartilage, which consists of two semicircular discs providing cushioning and support for the bones. Our knees are extremely vulnerable to injury in one or a combination of these elements. In the case of a knee injury, we recommend our <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair damaged tissue, ligaments, and tendons, to get you back quickly to the activities you love.\r\n<h4>How Regenerative Orthopedics Works to Treat the Knee</h4>\r\nRegenerative Orthopedics are innovative therapies that treat the knee by stimulating the immune system to repair damaged tissue. Prolotherapy is one type of regenerative treatment that is effective for knee injuries. \"Prolo\" comes from the word proliferate, and Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the ligaments and tendons. The proliferation of the fibroblasts encourages new, strong, tissue to be formed. Why is this important? Because this new tissue is exactly what is needed to repair ligament, tendon, and meniscus injuries.\r\n\r\nIn some cases of knee injury, Platelet Rich Plasma (PRP) may be recommended. The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Certain injuries will require more potent means for healing and regeneration. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, tendons, and the menisci of the knee joint.\r\n\r\nReceive treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nPeter A. Fields, MD, DC and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Regenerative Orthopedic treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, Dc is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>. For over 25 years, Dr. Fields has been active in the sport of Triathlon. In 2019, he completed his 11th Ironman Triathlon, in Cozumel, Mexico. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nContact us to see if you are a candidate for Regenerative Orthopedics or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\r\n\r\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Knee pain after surgery</li>\r\n 	<li>Knee popping</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Knee replacement pain</a></li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\r\n 	<li>Ligament sprain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-revision-v1','','','2020-06-30 18:16:07','2020-06-30 18:16:07','',533,'https://www.drfields.com/uncategorized/533-revision-v1/',0,'revision','',0),(3831,8,'2020-07-23 21:34:37','2020-07-23 21:34:37','<div class=\"youtube-click-div video_left\">\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter Neck\"]\n<strong>Peter - Neck</strong>\n</div>\n\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> neck treatment at OrthoRegen<sup>®</sup>.\n\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\nDr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\n\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\n\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\n<ul>\n 	<li>Atypical facial pain</li>\n 	<li>Barre-Lieou Syndrome</li>\n 	<li>Cervical instability</li>\n 	<li>Jaw pain</li>\n 	<li>Migraine headaches</li>\n 	<li>Muscle contraction headache</li>\n 	<li>Neck arthritis</li>\n 	<li>Neck pain</li>\n 	<li>Post cervical fusion pain</li>\n 	<li>Post-surgical neck pain</li>\n 	<li>TMJ syndrome</li>\n 	<li>Whiplash</li>\n</ul>\n<h4>Are You A Candidate for Prolotherapy?</h4>\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n','Neck Injury Treatment','','inherit','closed','closed','','536-autosave-v1','','','2020-07-23 21:34:37','2020-07-23 21:34:37','',536,'https://www.drfields.com/uncategorized/536-autosave-v1/',0,'revision','',0),(3832,8,'2020-06-30 18:17:44','2020-06-30 18:17:44','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\r\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\r\n\r\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> neck treatment at OrthoRegen<sup>®</sup>.\r\n\r\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\r\nDr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\r\n\r\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\r\n','Neck Injury Treatment','','inherit','closed','closed','','536-revision-v1','','','2020-06-30 18:17:44','2020-06-30 18:17:44','',536,'https://www.drfields.com/uncategorized/536-revision-v1/',0,'revision','',0),(3833,8,'2020-06-30 18:19:38','2020-06-30 18:19:38','<div class=\"youtube-click-div video_left\">\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr.doug – Headaches & Shoulder\"]\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong>\n</div>\n\n<h4>Prolotherapy Shoulder Treatment</h4>\nAt OrthoRegen<sup>®</sup>, shoulder injuries are one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Shoulder injuries are common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive prolotherapy shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\n\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\n\">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist and swimmer, understands your desire to return to full participation in your training and competition.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen<sup>®</sup> are:</strong>\n<ul>\n 	<li>Acromioclavicular joint arthrosis</li>\n 	<li>Arthritis</li>\n 	<li>Bursitis</li>\n 	<li>Dislocation</li>\n 	<li>Frozen shoulder</li>\n 	<li>Glenoid labrum tear</li>\n 	<li>Impingement syndrome</li>\n 	<li>Labral tear</li>\n 	<li>Multi-directional instability</li>\n 	<li>Rotator cuff tear</li>\n 	<li>Shoulder dislocation</li>\n 	<li>Shoulder instability</li>\n 	<li>Shoulder pain</li>\n 	<li>Shoulder separation</li>\n 	<li>SLAP lesion</li>\n 	<li>Subluxation</li>\n 	<li>Swimmers shoulder</li>\n 	<li>Tendonitis</li>\n 	<li>Tendonosis</li>\n 	<li>Torn labrum</li>\n</ul>\n\n<h4>Are You A Candidate for Prolotherapy?</h4>\nDr. Fields and our staff at OrthoRegen offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen, <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials/\">Shoulder Prolotherapy Testimonials page</a>.\n\n','Shoulder Injury Treatment','','inherit','closed','closed','','545-autosave-v1','','','2020-06-30 18:19:38','2020-06-30 18:19:38','',545,'https://www.drfields.com/uncategorized/545-autosave-v1/',0,'revision','',0),(3834,8,'2020-06-30 18:20:11','2020-06-30 18:20:11','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.Doug-–-Headaches-Shoulder.jpg\" alt=\"Dr.doug – Headaches & Shoulder\"]\r\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Shoulder Treatment</h4>\r\nAt OrthoRegen<sup>®</sup>, shoulder injuries are one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Shoulder injuries are common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive prolotherapy shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\r\n\r\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\r\n\">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist and swimmer, understands your desire to return to full participation in your training and competition.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen<sup>®</sup> are:</strong>\r\n<ul>\r\n 	<li>Acromioclavicular joint arthrosis</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation</li>\r\n 	<li>Frozen shoulder</li>\r\n 	<li>Glenoid labrum tear</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Multi-directional instability</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Shoulder dislocation</li>\r\n 	<li>Shoulder instability</li>\r\n 	<li>Shoulder pain</li>\r\n 	<li>Shoulder separation</li>\r\n 	<li>SLAP lesion</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Swimmers shoulder</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendonosis</li>\r\n 	<li>Torn labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials/\">Shoulder Prolotherapy Testimonials page</a>.\r\n\r\n','Shoulder Injury Treatment','','inherit','closed','closed','','545-revision-v1','','','2020-06-30 18:20:11','2020-06-30 18:20:11','',545,'https://www.drfields.com/uncategorized/545-revision-v1/',0,'revision','',0),(3835,8,'2020-06-30 18:22:55','2020-06-30 18:22:55','<h4>Prolotherapy Back and Pelvic Treatment</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur – Low Back\"]\r\n<strong>Wilbur - Low Back</strong>\r\n</div>\r\nOne of the main reasons patients come to OrthoRegen<sup>®</sup> is for back relief with our Prolotherapy Back Treatment. Back or pelvic injury is also the main reason our patients say, they have had to stop participation in sports.\r\n\r\nMany of the traditional treatments for back pain can actually be the cause for continuing problems. If you have tried NSAID medications (like Ibuprofen or Naproxen), nerve blocks, acupuncture or chiropractic adjustments, and have not found relief, join our growing patient list of people who have benefited from comprehensive treatment.\r\n\r\n<h4>Does Prolotherapy Back Treatment Work?</h4>\r\nWe are very successful at treating people for back and pelvic pain with our Prolotherapy Back treatment. We get them back to their sport without surgery, without medications, and without extended time off! To properly treat the lower back, the whole area needs to be treated. Especially in cases of sport injury trauma, patients find better and faster relief from the techniques used here at OrthoRegen<sup>®</sup>. We will work to rehabilitate the whole athlete through nutritional and exercise regimens.\r\n\r\nIn our experience, the preferred way to treat back and pelvic with a comprehensive program of <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. In that way, patients see long term optimal results.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common back and pelvic pains and injuries that we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Back pain</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Buttock pain</li>\r\n 	<li>Coccyx pain</li>\r\n 	<li>Degenerated discs</li>\r\n 	<li>Herniated discs</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Failed back fusion pain</li>\r\n 	<li>Failed back surgery syndrome</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>Muscle spasms</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Pelvic pain</li>\r\n 	<li>Retrolisthesis</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tailbone pain</li>\r\n 	<li>Thoracic spine pain</li>\r\n 	<li>SI instability</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Yoga injury</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy back treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials/\">Prolotherapy Back Testimonials page</a>.','Back Injury Treatment','','inherit','closed','closed','','567-revision-v1','','','2020-06-30 18:22:55','2020-06-30 18:22:55','',567,'https://www.drfields.com/uncategorized/567-revision-v1/',0,'revision','',0),(3836,8,'2020-06-30 18:23:54','2020-06-30 18:23:54','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer- Elbow\"]\r\n<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Elbow Treatment</h4>\r\nOrthoRegen<sup>®</sup> offers you the most effective treatment for elbow injuries. Avoid the long term side effects of NSAID and cortisone injections with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> elbow treatment. We offer our patients experience and knowledgeable treatment for their elbow pain and injuries. From future Olympians to weekend warriors, we can help you return to your sport without surgery, without pain medications and without extended periods of time away from your sport.\r\n\r\n<h4>Why Prolotherapy Elbow Treatment with Dr. Fields?</h4>\r\nDr. Peter Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an experienced marathoner, long-distance cyclist and swimmer. He has participated in Triathlons as well as Ironman competitions. He understands the passion that athletes have to train and compete. In our experience, our comprehensive Prolotherapy elbow treatment is the best way to treat elbow injuries for long term positive results.\r\n\r\n<a class=\"buttonlink\" href=\"http://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common elbow pain and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Elbow pain</a></li>\r\n 	<li>Elbow sprain</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>Lateral epicondylitis</li>\r\n 	<li>Medial epicondylitis</li>\r\n 	<li>Post-surgical elbow pain</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendinosis</li>\r\n 	<li>Tennis elbow</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy elbow treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\r\n\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials/\">Prolotherapy Elbow Testimonials page</a>.','Elbow Injury Treatment','','inherit','closed','closed','','582-revision-v1','','','2020-06-30 18:23:54','2020-06-30 18:23:54','',582,'https://www.drfields.com/uncategorized/582-revision-v1/',0,'revision','',0),(3837,8,'2020-06-30 18:24:36','2020-06-30 18:24:36','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\r\n<strong>Joel - Foot</strong></div>\r\n<h4>Prolotherapy Foot and Ankle Treatment</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Are you looking for an alternative to surgery for your chronic ankle sprains? Every day, OrthoRegen<sup>®</sup> treats people with foot and ankle injuries by the use of comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> foot treatments. Nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n<h4>Why Prolotherapy Foot Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  Like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. If you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. If you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> at OrthoRegen<sup>®</sup> are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Ankle instability</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials/\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials/\">Ankle Testimonials</a> pages.','Foot Injury Treatment','','inherit','closed','closed','','595-revision-v1','','','2020-06-30 18:24:36','2020-06-30 18:24:36','',595,'https://www.drfields.com/uncategorized/595-revision-v1/',0,'revision','',0),(3838,8,'2020-06-30 18:25:04','2020-06-30 18:25:04','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Hand Injury Treatment Suzie Wrist\"]\r\n<strong>Suzie - Wrist</strong>\r\n</div>\r\n<h4>Prolotherapy Hand and Wrist Injuries and Treatment</h4>\r\nWhether you are suffering from a sprained finger from football or baseball, or wrist pain from tennis or golf, OrthoRegen<sup>®</sup> treats numerous finger, hand and wrist injuries with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\r\n\">Prolotherapy</a> hand treatments. We can treat your pain or injury without surgery, without pain medications or without extended time away from training and competition.\r\n\r\nIn our experience, comprehensive Prolotherapy can successfully treat pain in your fingers, hands and wrists, with optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, can consult with you to determine if you are a candidate for <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Because of his participation in Triathlons and Ironman competitions, he understands your desire to return quickly to the sports in which you participate.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Common Hand and Wrist Injuries Treatable by Prolotheraphy</h4>\r\nThe most common finger, wrist and hand pain and injuries we treat with comprehensive Prolotherapy are:\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Baseball injuries</li>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Finger pain</li>\r\n 	<li>Football injuries</li>\r\n 	<li>Golf injuries</li>\r\n 	<li>Hand pain</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Sprain injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tennis injuries</li>\r\n 	<li>Thumb pain</li>\r\n 	<li>Wrist pain</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy hand and wrist treatments, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Prolotherapy Hand and Wrist Testimonials page</a>.','Hand Injury Treatment','','inherit','closed','closed','','615-revision-v1','','','2020-06-30 18:25:04','2020-06-30 18:25:04','',615,'https://www.drfields.com/uncategorized/615-revision-v1/',0,'revision','',0),(3839,8,'2020-06-30 18:26:41','2020-06-30 18:26:41','<h4>Sports Injuries Treatment</h4>\r\nHave sports injuries stopped you? Get back in the game with Prolotherapy and Dr. Peter A. Fields, The Athletic Doc<sup>®</sup>. At OrthoRegen<sup>®</sup> we offer innovative, non-surgical treatments for your sports injury or chronic pain problems. Without unnecessary medication, prescriptions, cortisone shots or surgery, Prolotherapy can regenerate damaged or worn ligaments and strengthen weakened tendons. The most beneficial aspect of our non-surgical sports injuries treatment is that you can continue to train while you receive Prolotherapy treatments. We treat athletes of all skill and age levels: high school to college; amateur to professional athletes.\r\n\r\n<h4>How Can Prolotherapy Help Your Sports Injury?</h4>\r\nProlotherapy is an innovative treatment that stimulates the immune system to repair damaged tissue.”Prolo” comes from the word proliferate. Prolotherapy then, describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and other sports injuries. Receive treatment for your sports injuries with comprehensive Prolotherapy at OrthoRegen<sup>®</sup>.\r\n\r\n<h4>Are You Suffering from a Sports Injury?</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">K</a><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">nee Pain</a></li>\r\n 	<li> ACL Tear</li>\r\n 	<li>Torn Meniscus</li>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Neck-Pain\">Neck pain</a></li>\r\n 	<li>Back Pain</li>\r\n 	<li>Shin Splints</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>Hamstring Strain</li>\r\n 	<li>IT Band Injury</li>\r\n 	<li>Turf Toe</li>\r\n</ul>\r\n<strong><em> Prolotherapy Sports Injuries Treatment can help you get back in the game – and get back quickly!</em></strong>\r\n\r\n<h4>Prolotherapy Doctor Treats Sports Injuries Without Surgery</h4>\r\nReceive treatment for your sports injuries by Ironman Triathlete Dr. Peter A. Fields. For over 25 years, Dr. Fields has been active in the sport of Triathlon. It is his experience as an athlete that allows him to understand the potential for injury and the demands of sports on the physical body. He also understands the passion athletes have to get back to training and competition, and their need to recover quickly from injury, because he has been there. In November 2012, Dr. Fields completed his second Ironman Triathlon, beating his 2011 time by better than 14 minutes. Dr. Fields is known as The Athletic Doc<sup>®</sup>. Wouldn’t you want to be treated by a sports doctor who is also an athlete?\r\n\r\nOur medical team finds that treating athletes is very rewarding. We can utilize a comprehensive health approach to help you reach your peak physical performance. <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> allows you to get back to training within a couple of days and does not involve periods of long recovery. Prolotherapy involves the injection of natural substances at the exact site of an injury. This stimulates the immune system to repair the sports injury. Areas often injured through sports related activities—ligaments, tendons, menisci, muscles, growth plates, joint capsules and cartilage are stimulated to heal. Anesthetics are also used to minimize any unpleasant pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Are You A Candidate for Non- Surgical Sports Injuries Treatment?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Testimonials page</a>.','Sports Injuries Treatment Overview','','inherit','closed','closed','','632-revision-v1','','','2020-06-30 18:26:41','2020-06-30 18:26:41','',632,'https://www.drfields.com/uncategorized/632-revision-v1/',0,'revision','',0),(3840,8,'2020-06-30 20:15:34','2020-06-30 20:15:34','<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nMy dad passed away just shy of his 85th birthday in 2004.\r\n\r\nAlthough he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\r\n\r\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example applies especially today. To me, he was not only my dad but my best friend and my mentor. He taught me so much.\r\n\r\nHe was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\r\n\r\nIn 1934, his life would change forever. At first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\r\n\r\nAfter that, he applied for a program where he could be sent to the United States to live with a family, since things were getting worse for Jewish people, and especially young men, in Germany. He was so excited when he was accepted into the program. He had a farewell party and said goodbye to his friends and relatives as he prepared for what was ahead. A few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\r\n\r\nThen on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred. His mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\r\n\r\nMy father knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\r\n\r\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\r\n\r\nHis mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein, and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\r\n\r\nHe did what he could to survive, kept moving forward, and looked to the future for better days.\r\n\r\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\r\n\r\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\r\n\r\n“By the time you receive this, I will no longer exist.\"\r\n\r\nThese words struck like a lead pipe over his head.\r\n\r\nHis mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\r\n\r\nMy dad could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\r\n\r\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\r\n\r\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\r\n\r\nAnd so, he went on. He persevered for the rest of the war in Shanghai.\r\n\r\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\r\n\r\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\r\n\r\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\r\n\r\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\r\n\r\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this story and his words and actions will help you during these very difficult times.\r\n\r\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\r\n\r\nThere is a bright future out there for all of us.\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Keep Looking Forward Despite COVID-19','','inherit','closed','closed','','3677-revision-v1','','','2020-06-30 20:15:34','2020-06-30 20:15:34','',3677,'https://www.drfields.com/uncategorized/3677-revision-v1/',0,'revision','',0),(3841,8,'2020-06-30 20:16:08','2020-06-30 20:16:08','<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nAs the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly.\r\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\r\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n\r\n<strong>The point is that we cannot live our lives in fear.</strong>\r\n\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n<img class=\"alignnone size-medium wp-image-3664\" src=\"https://www.drfields.com/wp-content/uploads/2020/04/image0-400x500.jpeg\" alt=\"Woman Holding Toilet Paper\" width=\"400\" height=\"500\" />\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\r\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','COVID-19 Advice: “Don’t Fear the Fear Itself!”','','inherit','closed','closed','','3638-revision-v1','','','2020-06-30 20:16:08','2020-06-30 20:16:08','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(3842,8,'2020-06-30 20:19:38','2020-06-30 20:19:38','Are you experiencing pain in the shoulder that makes you cringe whenever you move it? The pain is impacting everything you do, making both work and play almost impossible. You may have even been diagnosed with a problem of the Rotator Cuff, or some type of tendinopathy, which may include tendons that are worn, injured, stretched, or even torn.\r\n\r\nFour muscles inside of the shoulder allow us to rotate our arm. These four muscles form a cuff of tendons around the top of the arm or the humeral head. If the rotator cuff is torn, it means there is a tear of one or more of the tendons of those four rotator cuff muscles of the shoulder. A rotator cuff “injury” might include any type of irritation or overuse of either the tendons or the muscles.\r\n<h2>More on The Anatomy of the Shoulder and the Rotator Cuff</h2>\r\nThe shoulder is made up of two joints, the glenohumeral joint and the acromioclavicular joint. The glenohumeral joint is a ball and socket joint formed by the top of the humerus and the socket of the scapula. The four muscles and tendons of the <strong>rotator cuff </strong>surround the glenohumeral joint and hold the head of the humerus into the scapula. The rotator cuff functions to stabilize the shoulder and allow the arms to move through a full range of motion. The rotator cuff works together with the deltoid muscle to provide motion and strength to the shoulder for activities that require motion above the waist and shoulders.<strong> </strong>\r\n\r\n<strong><em>Tendinopathy, Tendonitis, and Tendinosis</em></strong>\r\n\r\nYes, these words look pretty similar, but they mean different things. <strong>Tendinopathy</strong> is a problem of the tendon that results in pain, swelling, and impaired function. Both tendonitis and tendinosis are a type of tendinopathy. <strong>Tendonitis</strong> is an inflammation or irritation of a tendon. If left untreated, tendonitis can become <strong>tendinosis</strong>, which is a degeneration of the tendon.\r\n<h2>Rotator Cuff Tendonitis</h2>\r\nIn the rest of this article, we will concentrate on rotator cuff tendonitis. Tendonitis is more common in adults over 40 years of age, as the tendons become less elastic, tolerate less stress, and are more susceptible to injury.\r\n\r\nRotator cuff tendonitis occurs when the small muscles of the rotator cuff, the supraspinatus, infraspinatus, teres minor, and subscapularis, become strained causing weakness of these structures and subsequent tendonitis. While the deltoid muscle is the big and strong muscle of the shoulder, as seen on many well-built athletes, the small and relatively weak rotator cuff muscles perform key functions. The supraspinatus helps seat the humeral head (ball) into the glenoid cavity (socket) when the arm is raised from the side (abducted). The infraspinatus and teres minor rotate the forearm away from the body or in the hand-waving position (external rotation), and the subscapularis rotates the forearm towards the body (internal rotation). Once the balance between motion and joint stability is altered through weakness in structures like the ligaments, tendons, and muscles of the rotator cuff, pain and impaired function will invariably be the result. This condition is often caused by or associated with repetitive overhead activities, as the rotator cuff is most vulnerable in this position.\r\n\r\nThe tendons of the rotator cuff pass underneath a bony area on their way to attaching to the top part of the arm bone. Rotator cuff tendonitis arises when inflammation or bony spurs narrow the space available for the rotator cuff tendons. Sandwiched between the two bones, wear and tear of the rotator cuff takes place, exacerbating this inflammation and pain.\r\n<h2>Development of Rotator Cuff Tendonitis</h2>\r\nRotator cuff tendonitis refers to irritation of these tendons and inflammation of the lining of these tendons. Rotator cuff tendonitis most often occurs as a result of activities in which the arm is moved over the head repeatedly, such as tennis, pitching, swimming or lifting weights over the head. Other causes of rotator cuff tendonitis include occupational overuse, such as working with the arm overhead for many hours or days; impingement syndrome; an existing weakness of the rotator cuff muscles, ligaments or tendons; use of improper technique during a sport or occupational activity; poor posture; sleeping on the same arm each night; cervical spine nerve pinching; an improper training schedule, such as too much too soon; a direct trauma, such as a fall directly onto the shoulder or onto an outstretched arm; poor muscle control or coordination; poor posture over the years; or a loose or unstable shoulder joint following a previous dislocation. If the rotator cuff continues to be injured or inflamed it will eventually tear, resulting in a more serious problem.\r\n<h2>Symptoms of Rotator Cuff Tendonitis</h2>\r\nThe classic symptoms of rotator cuff tendonitis include a “toothache-like” pain that radiates down the outer arm to several inches below the top of the shoulder. Pain may also occur at the top and front of the shoulder. Initially, the pain may be mild and only occur with certain arm movements. Over time, pain is noticeable at rest and during the night. Sleep is interrupted due to a nagging upper arm pain. Activities requiring the raising of the arm overhead or those that require reaching behind the body usually aggravate the symptoms. The shoulder may feel stiff with lifting or movement.\r\n<h2>Rotator Cuff Tendonitis Treatments</h2>\r\nThe initial treatment traditionally used for rotator cuff tendonitis is frequently to limit above shoulder level activity, application of ice to the shoulder, anti-inflammatory medications for pain, and physical therapy to maintain flexibility.\r\n\r\nAlthough common in the treatment of rotator cuff tendonitis, the use of anti-inflammatories and steroids may actually hinder the healing of tendons and ligaments, and unfortunately, do not address the root of the problem. Physical therapy is often an important part of recovery from these types of shoulder injuries, but if progress is not being made, and symptoms continue, it may be time to seek out regenerative treatments, since physical therapy is unable to address underlying degenerative issues such as fraying and tearing of the tendon.\r\n<h2>Regenerative Orthopedics for Rotator Cuff Tendonitis</h2>\r\nRegenerative Orthopedics is recommended to <strong>regenerate</strong> and repair the soft tissues of the shoulder, plus it also strengthens the ligaments and the tendons of the rotator cuff and deltoid. This combined with the gradual re-strengthening of the rotator cuff muscles promises an excellent chance for a full recovery and full performance. In the event that surgery is truly necessary because a rotator cuff tear has become large enough to produce profound weakness in the shoulder, Regenerative Orthopedics is an excellent post-operative treatment to improve tissue strength and overall recovery.\r\n\r\nThe increase in blood flow and regenerative cells encouraged by this treatment is similar to the body’s natural healing response. The body also responds by depositing collagen at the site of injury, strengthening the rotator cuff tendons that once were weak, and resulting in the healing of the injured rotator cuff soft tissues.\r\n<h2>Think Regenerative Orthopedics may be for you? Contact us!</h2>\r\nPlease <a href=\"https://www.drfields.com/contact/\">contact us</a> at OrthoRegen<sup>®</sup>, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.\r\n\r\nOrthoRegen<sup>®</sup> is a full-time Regenerative Orthopedics office, with extensive experience in Stem Cell Therapy, PRP, and Prolotherapy. When it comes to Stem Cell Therapy, we use only the Gold Standard, which is so effective at repairing degenerated joints.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Rotator Cuff Tendonitis','','inherit','closed','closed','','3584-revision-v1','','','2020-06-30 20:19:38','2020-06-30 20:19:38','',3584,'https://www.drfields.com/uncategorized/3584-revision-v1/',0,'revision','',0),(3843,8,'2020-06-30 20:20:51','2020-06-30 20:20:51','When we are confronted with a joint replacement recommendation by our doctor it is so important to get informed and know what to expect. We are often concerned about the pain, the recovery time, and the cost. But have you ever thought about having an allergy to the materials used in the replacement implant? Allergy to the implant materials is an actual issue, and a new concern for individual with joint pain facing joint replacement. It’s also another good reason to investigate other options when confronted with a surgical referral. In several previous articles, we have discussed how Regenerative Orthopedics is as an effective alternative to surgery, and one that really should be strongly considered. Why not just have surgery? Of course, there are times when surgery is necessary. However, every time a surgeon cuts, shaves and/or removes parts of a joint, there is always an increased possibility for the development of arthritis, degeneration and further pain in that joint. That’s because the removal of tissue causes the joint to become more unstable, since these soft tissue structures are what provide much of the stability in the joint.  Besides, why go through the pain and expense of surgery when you don’t need to? Now there is another reason to look for an alternative to surgery…scientists are documenting the risk of allergy from implants.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nWhat is being said about allergy from metal implants? “Metal allergy is in fact a well-documented factor in the failure of implants, and the need for allergy testing in sensitive patients is well recognized by both implant manufacturers and by surgeons alike.” And in this study, “All of the samples studied contained a consistent yet low percentage of components to which allergies have been contributed.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a> But even small amounts are sufficient to cause an allergic reaction.\r\n\r\nWhat are the symptoms of metal allergy? “Patients suffering from metal hypersensitivity may have numerous local symptoms associated with an overactive immune system, such as localized pain, swelling, cutaneous allergic reactions, joint and muscle pain, implant failure, apparent recurrent infections around the operation site, and possible systemic reactions such as fibromyalgia, chronic fatigue and cognitive impairment.”<sup>ii </sup>As you can, some of these hypersensitivity reactions are chronic auto-immune type illnesses. A far cry from what the individual thought they were signing up for when choosing the surgical implant…freedom from pain and suffering.\r\n\r\nTitanium used to be thought of as one of the safer metals, and in fact was used as the implant of choice for patients suffering from allergies to nickel, chrome, and cobalt. However, the titanium implants also contain these previously noted metals that are causing allergic responses.<sup>ii</sup>\r\n\r\nMetals usually found in common medical grade alloys include cobalt, nickel, chrome, stainless steel, and titanium. Many also contain various detectable impurities like aluminum, iron, vanadium, and more.<sup>ii</sup>\r\n\r\nIt is of utmost importance if you have an allergy to these metals, that you are thoroughly informed about the potential reaction that might result from the choice of implant materials.<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a>\r\n<h2>Corrosion of Implant Materials</h2>\r\n<strong>Allergic response is not the only problem that can occur with implant materials. There is also an issue of corrosion of the implants with wear and tear</strong>.\r\n\r\nNo matter what materials are used in joint replacements, wear of the implant is a predictable problem.  In fact, wear is the major reason orthopedic implants malfunction. That malfunction actually hastens the problem of corrosion. When implant materials are chosen, they are chosen because of their higher resistance to wear, like metal alloy and ceramics. In hip implants, titanium and its alloys are often used for fabricating the femoral component, and the ball is prepared by either cobalt-chromium alloy or other hard ceramics. The debris that is released with the wear that damages the implant can begin a biological process that activates a brutal inflammatory reaction. The corrosion that transpires from the friction that results from this wear is actually a huge worry because it discharges non-compatible metallic ions that are dispersed into the body. <a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\r\n\r\nResearch articles demonstrate plenty of evidence about the issue of corrosion of implants and how the debris results in disease. One article discusses how cobalt alloy debris has been implicated in the early failure of some designs of current total joint implants, and also how the debris from cobalt implants causes an extreme inflammatory reaction and even bone loss.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\r\n\r\nHere is an excerpt from another article: “Immune reactions to orthopedic implant debris are the primary cause of total joint replacement (TJR) failure over the long term (15–20 years). It has been well established that implant debris causes local inflammation, limiting the long-term performance of the over one million total joint replacements (TJR) implanted each year in the US. Implant debris induces a subtle inflammatory cascade resulting in a slow progression of bone loss… that over time leads to implant failure.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nThe researchers are saying that the debris from implants is definitely a problem and that it causes disease. Obviously, this is not a good scenario.\r\n\r\nSo, where does the debris go? In research looking at the dissemination of wear particles, the scientists find the debris in the lymph nodes, liver and spleen. “Metallic wear particles in the liver or spleen were more prevalent in patients who had had a failed hip arthroplasty (seven of eight) than in patients who had had a primary hip (two of eleven) or knee replacement (two of ten). Metallic wear particles were detected in the lymph nodes in 68 percent (nineteen) of the twenty-eight patients with an implant from whom lymph nodes were available for study. In this study, systemic distribution of metallic and polyethylene wear particles was a common finding, both in patients with a previously failed implant and in those with a primary total joint prosthesis. The prevalence of particles in the liver or spleen was greater after reconstructions with mechanical failure.”<a href=\"#_edn7\" name=\"_ednref7\">[vii]</a>\r\n\r\nMany people contact our office because they are experiencing joint pain and are looking for an alternative to a surgical joint replacement. We offer very effective non-surgical options with Regenerative Orthopedics, including Stem Cell Therapy. At OrthoRegen<sup>®</sup>, we only use the Gold Standard in Stem Cell Therapy, and the procedure only has to be done once. Plus, this non-surgical therapy not only provides a non-surgical option, but also helps you to avoid an allergic response from the implants used in joint replacement or the pathology that can occur from the debris caused by corrosion.\r\n\r\nWe strongly recommend looking into non-surgical Regenerative Orthopedics with Peter A. Fields, MD, DC and OrthoRegen<sup>®</sup> for repair of painful joints before opting for a joint replacement.\r\n\r\nRemember, once surgery has been done, it cannot be un-done.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Laitinen, Minna, et al. \"High blood metal ion levels in 19 of 22 patients with metal-on-metal hinge knee replacements: A cause for concern.\" <em>Acta orthopaedica</em> 88.3 (2017): 269-274.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Harloff, Thomas, et al. \"Titanium allergy or not?.\" <em>Health</em> 2.04 (2010): 306.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Guenther D, Thomas P, Kendoff D, Omar M, Gehrke T, Haasper C. Allergic reactions in arthroplasty: myth or serious problem? Int Orthop. 2016 Feb;40(2):239-44. doi: 10.1007/s00264-015-3001-6. Epub 2015 Nov 2.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Gao, Chengde, et al. \"Highly biodegradable and bioactive Fe-Pd-bredigite biocomposites prepared by selective laser melting.\" <em>Journal of advanced research</em> 20 (2019): 91-104.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Samelko, Lauryn, et al. \"Cobalt alloy implant debris induces inflammation and bone loss primarily through danger signaling, not TLR4 activation: implications for DAMP-ening implant related inflammation.\" <em>PLoS One</em> 11.7 (2016).\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Samelko, Lauryn, et al. \"TLR4 (not TLR2) dominate cognate TLR activity associated with CoCrMo implant particles.\" <em>Journal of Orthopaedic Research</em> 35.5 (2017): 1007-1017.\r\n\r\n<a href=\"#_ednref7\" name=\"_edn7\">[vii]</a> Urban, Robert M., et al. \"Dissemination of wear particles to the liver, spleen, and abdominal lymph nodes of patients with hip or knee replacement.\" <em>JBJS</em> 82.4 (2000): 457.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Allergic Reactions and Problems of Corrosion with Joint Replacements','','inherit','closed','closed','','3547-revision-v1','','','2020-06-30 20:20:51','2020-06-30 20:20:51','',3547,'https://www.drfields.com/uncategorized/3547-revision-v1/',0,'revision','',0),(3844,8,'2020-06-30 20:21:23','2020-06-30 20:21:23','Are you experiencing sciatica pain going down your leg? The pain may have begun years ago with aggravating pain in the gluts or the back of the thigh. Are you noticing new symptoms of tingling down to the calf and toes? Sciatica pain and symptoms may occur with sitting, standing, and walking; and may be relieved with lying down.\r\n\r\nChiropractors should be your first physician to see about sciatica pain as this is an area they treat all of the time. But if the pain continues after giving chiropractic a chance (several or more treatments are usually needed), and then also trying other various treatment modalities, like acupuncture, massage, and physical therapy, the next step would be Regenerative Orthopedics as a solution for this persistent pain.\r\n\r\nDid you receive an MRI with a report revealing some type of encroachment on a nerve root in the lower back area, which is pinching the nerve, and possibly some displacement and/or degeneration in the vertebrae of the lower back? These are not uncommon on MRI reports when experiencing sciatica pain. The displacement mentioned on the report may include forward or backward movement of the vertebrae which pinches the nerve root due to <em>instability in the lumbar spine caused by ligament laxity</em>.\r\n<h2>How Do Ligaments Become Lax?</h2>\r\nLigaments are a type of connective tissue that connect bone to bone and help stabilize the spine and other joints. Injured ligaments have difficulty healing because they have a pretty poor blood supply. Regenerative Orthopedics stimulates the body to boost the blood supply and fibroblasts at the injured areas, resulting in repair of the injured ligaments. The fibroblasts are the cells through which collagen is made and by which tendons and ligaments repair.\r\n\r\nRegenerative Orthopedics helps strengthen and tighten the ligaments thereby stabilizing the joints of the lumbar spine which then stops the pinching of the nerve.\r\n<h2>Cortisone vs Dextrose Caudal Epidural</h2>\r\nA lumbar epidural is an injection into the epidural space of the lumbar spine. When patients are having referred pain, a cortisone (steroid) or dextrose injection can be used. Steroids are strong anti-inflammatories and must be limited to no more that 3-4 injections each year in order to prevent thinning of the bone and connective tissue damage.\r\n\r\nAt OrthoRegen<sup>®</sup>, we endeavor to build up the soft tissue and joint structures, and do not use substances like cortisone, which cause degeneration and inhibit healing. Instead, the dextrose solution can be used to reduce the swelling of the nerve without the anti-inflammatory effect and the steroid side effects.\r\n\r\nRegenerative Orthopedics eliminate or reduce pain, numbness, and tingling, enabling the former sciatica sufferer to be able to sit, stand, and walk without any pain or annoying symptoms. The treatment is very effective at achieving symptom resolution and pain-free living.\r\n\r\nHere at OrthoRegen<sup>®</sup>, we practice a comprehensive approach to Regenerative Orthopedics as an alternative to surgery and joint replacement in order to help regenerate connective soft tissues and accelerate recovery. Lumbar instability can cause an array of symptoms including sacroiliac pain, lower back pain, sciatic symptoms, and referred leg pain. All can be treated effectively with Regenerative Orthopedics.  If you are suffering from any of the symptoms listed above and would like to learn more, you can give us a call at (310)453-1234. We’d love to help you eliminate your sciatica symptoms.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Treat Sciatica Pain Non-Surgically','','inherit','closed','closed','','3540-revision-v1','','','2020-06-30 20:21:23','2020-06-30 20:21:23','',3540,'https://www.drfields.com/uncategorized/3540-revision-v1/',0,'revision','',0),(3845,8,'2020-06-30 20:22:20','2020-06-30 20:22:20','[caption id=\"attachment_3742\" align=\"alignleft\" width=\"392\"]<img class=\" wp-image-3742\" src=\"https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png\" alt=\"Kelsey. Knee.stems Copy\" width=\"392\" height=\"392\" /> <a href=\"https://youtu.be/jhN7D30YcYI\">Click to Watch Video</a>[/caption]\r\n<p style=\"text-align: left;\">At OrthoRegen<sup>®</sup>, the Stem Cell technique we use for injuries to the joints and spine is The Gold Standard for stem cell regeneration. We don’t use just one type of regenerative therapy but use four different kinds of Regenerative Orthopedics to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four. We use bone marrow stem cells as well as adipose (fat) stem cells. We also use <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing. In addition, we use <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. Without it, failure rates are high.</p>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is referred to as The Gold Standard for stem cell regeneration. We choose to use this procedure in cases where people have been told they either need their joint replaced, have bone-on-bone, advanced arthritis, cartilage loss, or a combination of these.\r\n\r\nIn this article, we would like to discuss Stem Cell Therapy for the regeneration of a degenerated joint. The goal of Stem Cell Therapy, as with all forms of Regenerative Orthopedics, is to stimulate injured tissues to repair.\r\n<h2><strong>What Is the Basis Behind Stem Cell Therapy?</strong></h2>\r\nIn conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. The joint is in a <em>state where it is breaking down</em>. What we want to do with Stem Cell Therapy is to get the joint in a state of <em>building up. </em>When we use Stem Cell Therapy, we are stimulating the body to repair the area to get it stronger. Stem Cell Therapy probably works by a lot of different mechanisms but here are some proposed mechanisms:\r\n<ul>\r\n 	<li>Reduces the instability in the joint that leads to arthritis in the first place</li>\r\n 	<li>Stimulates the growth of the cells (extracellular matrix) that make the tissues that are causing the ongoing pain and/or instability</li>\r\n 	<li>Stimulates the cells already present to make extracellular matrix</li>\r\n 	<li>The cells that help to build cartilage are called chondrocytes. Stem Cell Therapy involves the injections of the precursor cells (stem cells) that will differentiate into adult chondrocytes</li>\r\n</ul>\r\nWhile the exact mechanisms by which Stem Cell Therapy works can be debated, the bottom line for the patient is,<strong> <em>“Do I get rid of my pain and get back to the activities I desire?”</em> In the majority of cases, the answer is, “<em>Yes!</em>”</strong>\r\n<h2><strong>Conditions That Can Be Treated with Stem Cell Therapy</strong></h2>\r\nAny condition that is helped by one type of Regenerative Orthopedics (Stem Cell Therapy, PRP, Prolotherapy) can at least theoretically be helped by another type of Regenerative Orthopedics. While Stem Cell Therapy is typically not used for ligament and tendon injuries, it surely can be used for those conditions. Most clinics, including OrthoRegen<sup>®</sup>, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those who are involved in treating people with articular cartilage degeneration or joint injury know that when these patients are treated with Stem Cell Therapy, the vast majority of them improve.\r\n<h2><strong>Adult Stem Cell Injections, NOT Embryonic Stem Cell Injections</strong></h2>\r\nThe Stem Cell Therapy done at OrthoRegen<sup>®</sup> has nothing to do with embryonic stem cell therapy. Most research and studies have shown that cord blood does <strong>NOT</strong> have many if any, stem cells. We only use the patient’s own adult stem cells. We take the bone marrow from the patient’s own tibia or iliac crest bones and use fat from the abdominal or buttock areas so that the stem cells are the freshest. Additionally, there is no cross-contamination this way! We then inject these cells into the defective joint.\r\n<h2>Why Do We Use PRP with Stem Cells from Bone Marrow and Fat?</h2>\r\nAt OrthoRegen<sup>®</sup>, we only use the <strong>Gold Standard in Stem Cell Therapy</strong>, which includes bone marrow stem cells, fat stem cells, PRP, and Dextrose Prolotherapy. Stem cells are great, but they need to be directed as to what to do. Some of the directors are the growth factors that are in the platelets. Platelets aid the stem cells in their various jobs including differentiation and then aid in the differentiated cells making the extracellular matrix to repair the injured tissue. One could think of the stem cells as construction workers and the platelets (and their growth factors) as their supervisors, telling them what to do. Platelet Rich Plasma contains a myriad of substances that stimulate healing, like platelet-derived growth factor, which attracts immune system cells to the injured area to enhance ligament and tendon healing. And fibroblast growth factor which promotes the growth of the cells involved in collagen and cartilage formation.\r\n\r\nWe have found that Comprehensive Regenerative Orthopedics using the combination of all of these regenerative treatments works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\r\n<ol>\r\n 	<li>Akens MK, Hurtig MB. Influence of species and anatomical location on chondrocyte expression. <em>BMC Musculoskeletal Disorders</em>. 2005; 6:23.</li>\r\n 	<li>Guilak F, Estes BT, Dickman BO. 2010 Nicolas Andry Award: Multipotent adult stem cells from adipose tissue for musculoskeletal tissue engineering. <em>Clinical</em><em> Orthopedics and Related Research. 2010;468:2530-2540.</em></li>\r\n</ol>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Stem Cell Therapy at OrthoRegen<sup>®</sup> - Why We are Different','','inherit','closed','closed','','3526-revision-v1','','','2020-06-30 20:22:20','2020-06-30 20:22:20','',3526,'https://www.drfields.com/uncategorized/3526-revision-v1/',0,'revision','',0),(3846,8,'2020-06-30 20:25:22','2020-06-30 20:25:22','Tendonitis is the most common injury to the knee. In general, it refers to an inflammation, irritation or tear of a tendon, the thick fibrous cords that attach muscles to bone. One of the most frequent types of tendonitis of the knee is pes anserinus tendonitis, which involves the pes anserinus tendons that lie on the inside and just below the knee joint and which prevent the lower leg from twisting outward while running. Middle-aged adult runners are most susceptible to the development of pes anserinus tendonitis, the most common form. Two other types of knee tendonitis are popliteus tendonitis and semi-membranous tendonitis.\r\n\r\nPatellar tendonitis is inflammation of the patellar tendon, which attaches the kneecap to the tibia or shinbone.The patellar tendon helps your muscles extend your knee.\r\n<h2>How Does Knee Tendonitis Develop?</h2>\r\n<h2><img class=\"alignright size-medium wp-image-3411\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/May-Athlete-Knee-v101219-500x500.jpg\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" /></h2>\r\nTendonitis is caused by overuse, injury or aging. The pain is usually the result of a small tear in or inflammation of the tendon. Tendonitis can also be associated with inflammatory diseases that occur throughout the body, such as rheumatoid arthritis. Popliteus tendonitis is caused by excessive inward rolling of the feet, called pronation, as well as running downhill, which tends to put excessive stress on this tendon and can cause it to tear or become inflamed. Pes anserine tendonitis, on the other hand, is characterized by inflammation of the medial knee, and often coexists with other knee disorders. Semi-membranous tendonitis is characterized by swelling over the posteromedial aspect of the knee and tenderness with resisted flexion or outward-turned strain.\r\n\r\nPatellar tendonitis is an acute condition, such as knee pain following a run. If the tendon is stressed repeatedly, tiny tears can occur in the tendon. If this process persists, the tendon degenerates causing another more chronic tendon condition known as tendinosis.\r\n\r\n&nbsp;\r\n<h2>Symptoms of Knee Tendonitis</h2>\r\nKnee tendonitis commonly produces pain, tenderness and stiffness near a joint and is aggravated by movement. The inflamed tendons in the knee are usually painful when moved or touched, and the tendon sheaths may be visibly swollen from the accumulation of fluid and inflammation. Moving the joints near the tendon even slightly may also cause severe pain. The pain may be worse when ascending or descending stairs, when getting up from a seated position, and at night.\r\n<h2>What Is the Typical Treatment for Tendonitis?</h2>\r\nThe typical treatment regime for tendonitis, such as knee tendonitis, rotator cuff tendonitis or patellar tendonitis, includes rest, ice, non-steroidal anti-inflammatory drugs (NSAIDs), and cortisone injections. Unfortunately, this approach is not able to strengthen the weakened tendon and, thus, does not alleviate the persistent pain that people with this condition experience. While ice, anti-inflammatory drugs and cortisone injections may produce short-term pain benefit, they actually inhibit the healing process, because they boost the degeneration of soft tissue and therefore accelerate cartilage degeneration. If the individual with tendonitis receives cortisone injections into the tendon, or if they take anti-inflammatories for a very long time, the tendonitis will become tendinosis. This means the tendon becomes degenerated.\r\n\r\nOther modern medical treatment options include cryotherapy and massage. But again, although they may provide pain relief, they do not address the root of the problem – weakened and/or injured tendons and ligaments. When the patient tries these treatment modalities and the pain persists, patients who experience tendonitis may be referred to a surgeon. Unfortunately, surgery has consequences and side effects and may make the problem worse.\r\n<h2>Using Regenerative Orthopedics to Treat Tendonitis</h2>\r\n<img class=\"alignright size-medium wp-image-3410\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Josh-knee-v101219-500x500.png\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" />In treating tendonitis, we recommend stimulating tendon repair and strengthening any weakened or lax ligaments with therapy that includes movement, exercise, and regenerative treatment. This approach will encourage the damaged tissues to heal as quickly as possible.  Keep in mind, when someone with tendonitis continues to work out while using pain medications or after receiving cortisone injections, they may block the pain, but the tendon will continue to degenerate. You may not feel it at the time, since the pain is being blocked, but more damage is being done to the tendon. It is better to stop the particular athletics that caused the tendonitis. Yes, movement and exercise are important, but it is necessary to proceed with an exercise that does not put a lot of tension on the tendon. Cycling and swimming are examples of this type of exercise, as long as they do not cause excessive pain. These types of exercise are recommended because movement encourages healing of the tendon.\r\n\r\nRegenerative Orthopedics is used in cases of tendonitis, when the tendon does not continue to improve every week or if a tendonitis injury requires extra-quick healing, such as is the case with many athletes. When degeneration of the tendon has transpired, or tendinosis is present, the condition benefits tremendously from these treatments. When the tendon cannot heal on its own, an underlying ligament problem and joint instability may be occurring, allowing for too much movement of the knee joint. This movement irritates the tendon because the tendon is unable to contract against a stable knee. Regenerative Orthopedics strengthens both the weakened tendons and ligaments.\r\n\r\nComprehensive treatment to the knee involves multiple injections of PRP or a dextrose-based solution or both directed at the affected tendons, ligaments and other affected structures of the knee. This triggers the immune system to initiate repair of the injured tendons and ligaments. Blood supply dramatically increases at the injured area. The body is alerted that healing needs to take place and reparative cells are sent to the treated area of the knee in need of healing. The body also lays down new collagen at the treated areas, thereby strengthening the weakened structures. Once the tendons and ligaments are strengthened, the joint stabilizes and the tendonitis or tendinosis conditions resolve.\r\n<h2>Think Regenerative Orthopedics May Be for You? Call us!</h2>\r\nTo schedule an appointment, call us on the same line <a href=\"https://www.drfields.com/contact/\">310-453-1234</a> and tell us more about your case. OrthoRegen<sup>®</sup> is a full-time Regenerative Orthopedics medical office with extensive experience in regenerative therapies such as the Gold Standard in Stem Cell therapy, Platelet Rich Plasma, and Prolotherapy regenerative injection solutions. Peter A. Fields, MD, DC is both an MD and a chiropractor.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Knee Tendonitis Treatment','','inherit','closed','closed','','3409-revision-v1','','','2020-06-30 20:25:22','2020-06-30 20:25:22','',3409,'https://www.drfields.com/uncategorized/3409-revision-v1/',0,'revision','',0),(3847,8,'2020-06-30 20:27:40','2020-06-30 20:27:40','Overuse Injuries are painful joint conditions that can occur in any joint of the body. Repetitive strain from repeat motion and overuse which may transpire in sports or particular jobs and activities can lead to these injuries.  Injuries, such as Runner’s Knee, Rotator Cuff Tendonitis, and Tennis Elbow are examples of overuse injuries, which are progressive activity-related injuries linked to repetitive stress that is placed on the tendon, ligament or other joint structure. Individuals with overuse injuries may try to manage their pain on their own for a while. They may attempt to stabilize the knee, shoulder or elbow with a brace, or calm the pain with over-the-counter medications, or even rest the joint a bit in order to find enough relief to be able to play in the next game, continue to work, or participate in their upcoming event.\r\n<h2>Common Causes of Overuse Injuries</h2>\r\nDoing too much of the same activity strains the tendons, ligaments, and other soft tissue structures. Training error and improper technique may add to the possibility of an overuse injury. Using poor or improper form during training exercises, while running on uneven ground, when swinging a tennis racket, or even with painting walls, can overload the muscles, tendons, and ligaments, and cause an overuse injury. In cases of Runners Knee, for example, the repeated stress from the force of hitting hard surfaces while contracting the leg muscle when running, again and again, results in a weakening of the tendon and ligaments. In overuse injuries, many may think their tendon or ligaments are just inflamed, and although the injury may begin with inflammation, when left untreated, this overuse injury overloads the tendon and ligaments, resulting in degeneration or even in a tear. Many cases of overuse injuries become chronic with instances of recurrence.\r\n<h2>Symptoms of Overuse Injuries</h2>\r\nIn the beginning, pain and tenderness are noted in the affected area after physical activity. As the problem progresses, the pain and discomfort occur during activity. Of course, symptoms vary with the various joints and from person to person, but as the condition advances, swelling and pain will restrict the ability to perform sports or particular activities. Eventually, the pain and symptoms will persist, even at rest.\r\n<h2>Treating Overuse Injuries</h2>\r\nChasing and suppressing symptoms with bracing and pain medications may keep the swelling down and provide momentary pain relief, but a knee sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. The debilitating pain, however, will keep the individual and athlete searching for a cure.  Is surgery the answer? Surgery prolongs the athlete’s return to sport.<a href=\"#_edn1\" name=\"_ednref1\"><sup>[i]</sup></a>  Fortunately, there are non-surgical options! Here’s what doctors in New York say about the overuse injury patellar tendonitis, “Due to its common refractory response (difficulty in treating) to conservative treatment, a variety of new treatments have emerged recently that include...<strong>Prolotherapy</strong>, <strong>platelet-rich plasma therapy (PRP)</strong><strong>,</strong> arthroscopic surgical procedures, surgical resection of the inferior patellar pole (cutting away tendon tissue at the kneecap)…”<a href=\"#_edn2\" name=\"_ednref2\"><sup>[ii]</sup></a>\r\n\r\nAt OrthoRegen<sup>®</sup>, the regenerative treatments we use for painful joint conditions include Platelet Rich Plasma and Prolotherapy. But the researchers listed surgery too! Why do surgery if PRP is good enough? And is it good enough to effectively treat overuse conditions? Studies done in Europe demonstrate the effectiveness of Platelet Rich Plasma for those with overuse conditions of the knee, and its ability to improve pain symptoms and functionality, saying, “The most important finding in our meta-analysis is that PRP injections are statistically better than the control group at longer term follow-up suggesting that PRP is an effective and worthwhile treatment for Patellar Tendinopathy. <a href=\"#_edn3\" name=\"_ednref3\">[iii]</a><sup>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup> A 2018 study agreed that multiple PRP injections offer the most satisfactory results.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a> Athletes are looking to non-surgical therapies such as Stem Cell Treatments, Platelet Rich Plasma or Prolotherapy treatments, because they are showing improved outcomes in those with tendon and ligament conditions like Runner’s Knee.<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n<h2>Treating Overuse Injuries with Regenerative Orthopedics</h2>\r\nAt OrthoRegen<sup>®</sup>, using regenerative therapies like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy is what we do. By treating overuse injuries with Regenerative Orthopedics, athletes can get back to their sport, and individuals can return to the activities they love. We see substantial, consistent improvements in pain outcomes when treating those with overuse injuries.  <strong>Regenerative Orthopedics can treat various joint disorders including problems of the tendons, because the</strong><strong> injections directed at the weakened tendons and involved ligaments</strong> stimulate a string of healing events, which include an increase of blood supply, an influx of reparative cells, and the deposition of collagen cells. When the collagen matures, it will strengthen and tighten the damaged tendons and ligaments.\r\n\r\n<strong>Why would we treat the ligaments too? </strong>The ongoing and recurring joint pain in overuse conditions is rooted in joint instability. Patients with overuse injuries often have concurrent weakness in the ligaments of the joint. These ligaments play a huge role in stabilizing the joint, and when weak, will put more strain on the tendon and other joint structures. The problem of weak ligaments needs to be addressed in treatment. Therefore, we treat the joint comprehensively, and make sure we treat any injured and weakened ligaments as well, in order to achieve the best results. Comprehensive treatment will result in repair and healing of the entire joint, tightening of the ligaments, and strengthening and repair of the tendons, so the joint and all of its structures function normally, and the athletes and individuals who were sidelined by overuse injuries can return confidently and pain-free to the sport and activities they love.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Cook J L, Khan KM, Harcourt PR, <em>et al. </em><a href=\"http://bjsm.bmj.com/content/31/4/332.short\" target=\"_blank\" rel=\"noopener noreferrer\">A cross sectional study of 100 athletes with jumper’s knee managed conservatively and surgically.</a> The Victorian Institute of Sport Tendon Study Group. Br J Sports Med1997; 31: 332 – 336.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Christian RA, Rossy WH, Sherman OH. Patellar tendinopathy – recent developments toward treatment. Bull Hosp Jt Dis (2013). 2014;72(3):217-24.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Kaux JF, Bruyere O, Croisier JL, Forthomme B, Le Goff C, Crielaard JM. One-year follow-up of platelet-rich plasma infiltration to treat chronic proximal patellar tendinopathies. Acta Orthop Belg. 2015 Jun;81(2):251-6.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Dupley L, Charalambous CP. Platelet-Rich Plasma Injections as a Treatment for Refractory Patellar Tendinosis: A Meta-Analysis of Randomised Trials. Knee surgery &amp; related research. 2017 Sep;29(3):165.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Kopka M, Bradley JP. The Use of Biologic Agents in Athletes with Knee Injuries. J Knee Surg. 2016 Jul;29(5):379-86. doi: 10.1055/s-0036-1584194. Epub 2016 May 20.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Do Overuse Injuries Have You Sidelined?','','inherit','closed','closed','','2912-revision-v1','','','2020-06-30 20:27:40','2020-06-30 20:27:40','',2912,'https://www.drfields.com/uncategorized/2912-revision-v1/',0,'revision','',0),(3848,8,'2020-06-30 20:28:54','2020-06-30 20:28:54','We see many people in our office who want to avoid a joint replacement. This scenario occurs more often than you might imagine. Folks of all ages come seeking treatment so they can continue their distance running, weightlifting, bicycling, and other activities, because pain is getting in the way of the things in life they enjoy. Frequently, they have been told that their problem, which is likely arthritis, is too advanced, and the only option left is a joint replacement. Meanwhile, the sufferer looks for an alternative, often left to chase symptoms, taking pain medications and trying various therapies in an attempt to find some relief. They hear about OrthoRegen<sup>®</sup>, and call or email us, inquiring whether Regenerative Orthopedics can help them, so they don’t have to replace their joint. In the majority of musculoskeletal pain cases, Regenerative Orthopedics can give you pain relief, while improveing the function of your joint.\r\n\r\n<strong>Yes, Regenerative Orthopedics Works Even After Many Other Treatments Fail</strong>\r\n\r\nHow does Regenerative Orthopedics work if so many treatment options have already failed? Many treatment suggestions are therapies that ONLY prolong or delay the need for joint replacement. You are likely familiar with over-the-counter pain relievers and prescription medications like NSAIDS and steroids. There are also injectable medications, such as corticosteroids and hyaluronic acid injections. These treatments are not curative though, and only give temporary relief. Some, such as NSAIDS and steroids, actually weaken the joint further, which only promotes the arthritic process.\r\n\r\nRegenerative Orthopedics encourages collagen formation at the joint, stimulates the body to repair itself, heals injured ligaments and tendons, and stimulates new tissue formation. It doesn’t just cover up pain or chase symptoms.\r\n\r\n<strong>Regenerative Orthopedics repairs the joint.</strong>\r\n\r\nWhy not choose an alternative that works by repairing your joint and eliminating the pain? Regenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma, and Comprehensive Prolotherapy, is an effective way to treat your degenerated joint, in a non-surgical manner.\r\n\r\n<strong>Be Aware! Not All Stem Cell Therapies Are Alike!</strong>\r\n\r\nIf you are like many who desire to avoid a joint replacement, you have probably already looked into Stem Cell Therapies, or even gone to a seminar. If you have been to a seminar, the presenter may have emphasized the need to get some type of amniotic stem cell product. The line of thinking is that if you are older, your stem cells are too old, so you need donated cells! This is not the truth! First of all, it is important to understand that amniotic “stem cells” are void of live stem cells, because the process necessary to make them available to you actually kills the live cells. On the other hand, your own stem cells are still alive and potent enough to work. Why use a donated product when you have your own <strong>live</strong> cells?\r\n\r\n<strong>What Does OrthoRegen<sup>®</sup> Do Differently Than Other Clinics?</strong>\r\n\r\nClinics in the United States that use a patient’s own stem cells, take the stem cells from bone marrow or from the fat in the abdominal area. Once they have retrieved the cells, they are then reintroduced into the degenerated or injured joint.\r\n\r\nAt OrthoRegen<sup>®</sup>, we use the Gold Standard in Stem Cell Therapy. Many other clinics use just one form of treatment. For example, they may use bone marrow stem cells only, or they may possibly just use PRP. The Gold Standard encompasses four types of treatments, including stem cells from bone marrow, stem cells from fat, platelets from blood (PRP), and comprehensive dextrose Prolotherapy. In many instances, just one type of regenerative therapy may be sufficient enough to bring healing. Dextrose Prolotherapy, for example, is known to stimulate repair of a painful, degenerated area, as it boosts the normal healing abilities in the injured area, attracting immune cells to the degenerated structure for the purpose of repair and healing. And it is possible that we may recommend this therapy, depending on the diagnosis. However, when a joint is damaged or degenerated to the point where the surgeon wants to replace it, and greater levels of regeneration are needed due to the severity, it would make sense to choose the Gold Standard in Stem Cell Therapy. The Gold Standard is uniquely effective at repair of the degenerated joint.\r\n\r\n<strong>Avoid Joint Replacement with Regenerative Orthopedics</strong>\r\n\r\nBy treating the whole joint in a comprehensive manner, a more complete repair is established. The annoying, persistent and disabling pain of arthritis is almost always due to underlying injured soft tissue, like the ligaments and tendons, which cause the joint to be unstable. The injury to the soft tissue occurred after some type of trauma (even an old sprain) or wear and tear, and the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for the degeneration that occurs in the arthritic process. By treating the joint comprehensively, Regenerative Orthopedics stimulates the repair of the injured joint structures, which stops the abnormal joint motion, and halts the degenerative process.\r\n\r\nWhen the Gold Standard in Stem Cell Therapy is used, this treatment combination helps to regenerate the joint when cartilage has been lost, while also stimulating the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability, and results in the elimination of pain and the return to function for those with degenerative joint conditions.\r\n\r\nRegenerative Orthopedics is an effective treatment option for those desiring to avoid surgery and get back to the sports and level of activities they love…even after many other treatments have failed. Don’t let joint pain put a damper on your active lifestyle. Non-surgical Regenerative Orthopedics can resolve your joint pain and help you to meet your activity goals.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Active and Looking To Avoid a Joint Replacement','','inherit','closed','closed','','2865-revision-v1','','','2020-06-30 20:28:54','2020-06-30 20:28:54','',2865,'https://www.drfields.com/uncategorized/2865-revision-v1/',0,'revision','',0),(3849,8,'2020-06-30 20:30:57','2020-06-30 20:30:57','Seminars about amniotic “stem cell” therapy are popping up everywhere, and it is important to know what advertisers are really talking about. At OrthoRegen<sup>®</sup>, we do not use amniotic “stem cell” therapy in our stem cell treatments, but we do want you to be educated about amniotic therapy, especially since there is a lot of misinformation surrounding amniotic “stem cell” therapy and umbilical cord blood “stem cell” therapy. We want to inform you on what these treatments are and also what they are not.\r\n\r\nThere is a reason we keep putting “stem cells” in quotations when we talking about amniotic “stem cells.” That’s because there are NO actual stem cells in amniotic “stem cell” therapy. That’s right! Both amniotic “stem cell” therapy and umbilical cord blood “stem cell” therapy have NO stem cells in the product. Think about the scenario a minute. There isn’t someone waiting for the mother to give birth, and someone who is collecting the afterbirth, and someone else delivering it to your doctor’s office, to then be injected into your degenerated or injured hip or knee by the clinician you have chosen, right?! No, that isn’t the way it happens. Sure, the mother does donate the placental tissue. But the afterbirth materials are purchased by companies, and the companies process the materials in an effort to make sure they are disease-free. They are also freeze-dried. All of these preservation processes kill all of the live cells. That leaves <strong>NO live stem cells in the product</strong>. Amniotic stem cells are being advertised all over the place and people are fascinated with this very popular trend of using amniotic fluid for joint repair. But it needs to be clarified that amniotic “stem cell” therapy has NO actual stem cells, but rather growth factors and natural hyaluronic acid remnants found in the extracellular matrix of the amniotic tissue. If companies advertise in this way about the actual product you will receive, it is simply not true. Keep in mind that in their pre-donated state, the amniotic fluid does have an abundance of stem cells, but they do not survive the processing.\r\n\r\n<strong>They Say My Stem Cells Are Too Old, Weak, or Too Few</strong>\r\n\r\nSome seminars try to convince folks that their own stem cells are no good, and that the donated cells are better for treating joint pain. That’s not true! This is another important point to understand… your own bone marrow, even if you are older, contains sufficient stem cells. Yours stem cells are just fine. And they are live stem cells. How can the processed “dead” cells be better? The push to say that your own cells are too weak, or too few and that their amniotic product is better does not make any sense, when their product doesn’t contain any! Remember, cryopreserved, dehydrated amniotic products do not contain stem cells. Yes, amniotic fluid does contain growth factors. And these growth factors very well may work at helping joint pain. But guess what?  You have growth factors in your blood! Your own blood in the form of Platelet Rich Plasma (PRP) contains live growth factors too. And when we use PRP, if recommended in your particular case, we won’t be preserving it and freeze drying it. It will be used right away. Again, the purchased, micronized amniotic product does contain growth factor material, but it is processed. Why not just use your own (autologous) live stem cells and PRP growth factors for your joint pain and injuries?\r\n\r\nUsing your own stem cells and blood is also safer as far as the transfer of disease or contaminants. True, the amniotic product is processed and freeze-dried, but problems of contamination have occurred. The CDC has reported instances of contamination of both amniotic product and cord blood with fecal matter and bacteria.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nTo recap: original amniotic fluid from the fetus does contain an abundance of stem cells in its pre-donated state. However, the procedure used in amniotic material processing alters the original relevant characteristics of the product thereby decreasing its ability and usefulness at regeneration and repair of injured or degenerated tissue. Once again, the amniotic “stem cell” therapy does <strong>not</strong> contain actual stem cells, but rather growth factors that may possibly activate your own stem cells.\r\n\r\n<strong>They Say I Just Need One Injection</strong>\r\n\r\nOne injection simply is not enough to heal your whole joint. Even if just one injection is advertised, it is not sufficient for complete healing. The most likely scenario is that your joint injury or pain progressed over time, and involves more than one joint structure. In order to provide adequate repair of the joint and the pain relief you seek, a more comprehensive treatment would be necessary. In most joint injuries, when one ligament is injured, additional ligaments and other soft tissue are generally injured as well. Unhealed joint injuries often lead to arthritis, and in this case the entire joint is involved. One injection simply cannot treat all of those joint structures. A comprehensive treatment is necessary to strengthen, repair and stabilize all of the involved structures. This also helps to prevent the continued breakdown of cartilage common in arthritis. <strong>A single injection is simply not comprehensive</strong> enough to reverse the damage affecting the entire joint. At OrthoRegen<sup>®</sup>, we address the entire joint with a multi-injection technique called <strong>Comprehensive Regenerative Orthopedics, in order to effectively treat the joint and return you to the pain-free life you desire</strong>.\r\n\r\n<strong>Why Don’t We Use Amniotic “Stem Cell” Therapy?</strong>\r\n\r\nAt OrthoRegen<sup>®</sup>, we use the Gold Standard in Stem Cell Therapy, which combines four different regenerative treatments that are extremely effective and which utilize your own stem cells and growth factors. We use adipose (fat) stem cells, which contain both live growth factors and live stem cells. Plus, we use bone marrow stem cells, which contain live growth factors and live stem cells. We also use Platelet Rich Plasma, which contains live growth factors. And then we use Dextrose Prolotherapy to strengthen any injured ligaments or tendons so the whole joint is treated and repaired. In comparison to amniotic “stem cell” therapy that only has processed growth factor material and no stem cells, it makes sense that we would choose the Gold Standard in Stem Cell Therapy that has been shown to be very effective.\r\n\r\nAnother great thing about Regenerative Orthopedics and the Gold Standard in Stem Cell Therapy is that it is non-surgical and requires basically no downtime. No extended time off of work is needed, and you can remain active.\r\n\r\nVarious trials and studies have shown the effectiveness of Dextrose Prolo­therapy alone in treating arthritis, as well as ligament and tendon injuries.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a><sup>,<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup> When indicated, in advanced cases of degeneration, we recommend the entire regimen involved in the Gold Standard of Stem Cell Therapy. In many cases of degeneration and injury, Prolotherapy alone is sufficient to bring the pain relief and repair needed, and the Gold Standard in Stem Cell Therapy is not required. In cases that are more advanced, many other clinics use only one or two of these procedures, but we have discovered that this combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint. We comprehensively treat the entire joint with multiple injections of the Platelet Rich Plasma portion of the blood, adipose stem cells, and bone marrow stem cells. These regenerative treatments, along with Dextrose Prolotherapy in and around the involved joint offer benefits in terms of pain relief, regenerative properties, and cartilage repair for people with arthritis and all types of joint pain and injuries.  In our experience, we have discovered that this combination approach of live stem cells, growth factors, and regenerative therapies offers the best therapeutic regenerative approach for more advanced degenerative cases and particular injuries, addressing the whole joint and effectively healing the joint injuries, resolving pain, and restoring function to return you quickly to the active life you desire.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> <em>Notes from the Field:</em> Infections after Receipt of Bacterially Contaminated Umbilical Cord Blood–Derived Stem Cell Products for Other than Hematopoietic or Immunologic Reconstitution — United States, 2018. <em>Weekly</em> / December 21, 2018 /67(50);1397–1399.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Reeves KD, Hassanein K. Randomized prospective double-blind placebo-controlled study of dextrose prolotherapy\r\n\r\nor knee osteoarthritis with or without ACL laxity.  <em>Alt Ther Health Med</em>. 2000; 6(2):68–80.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Dagenais S, Yelland MJ, Del Mar C, Schoene ML. Prolotherapy injections for chronic low-back pain. <em>Cochrane Database Syst Rev</em>. Apr 18, 2007; (2): CD004059.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Rabago D, Zgierska A, Fortney L, et al. Hypertonic dextrose injections (prolotherapy) for knee osteoarthritis: results of a single-arm uncontrolled study with 1-year follow-up. <em>J Altern Complement Med</em>. 2012;18(4): 408–14.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Amniotic “Stem Cell” Therapy','','inherit','closed','closed','','2611-revision-v1','','','2020-06-30 20:30:57','2020-06-30 20:30:57','',2611,'https://www.drfields.com/uncategorized/2611-revision-v1/',0,'revision','',0),(3850,8,'2020-06-30 20:31:26','2020-06-30 20:31:26','<strong>Painful Joints? Regenerative Orthopedics Works Even When Other Treatments Fail  </strong>\r\n\r\nRegenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma (PRP), and Dextrose Prolotherapy are non-surgical treatments for numerous painful joint conditions. The treatments are often superior to many other treatments at effectively repairing joint injuries, eliminating joint pain, and getting you back to the activities and the lifestyle you love.  Is joint pain standing in the way of your enjoyment of sports? Are painful joints making it difficult to do normal, everyday things? At OrthoRegen<sup>®</sup>, we commonly see patients who have tried a number of different treatments in an effort to find relief from their painful knee, hip, shoulder, back, and multiple joint pain. They have tried over-the-counter medications, prescription medications, cortisone injections, massage, and other treatments, but are still in pain. Surgery may have been recommended or even performed already. Yet they are still in pain. Does this sound like you? Do you continue to suffer with a painful joint condition even though it seems like you have tried everything, but still experience annoying pain? Unfortunately, this scenario is repeated over and over. We hear it all of the time! But there is an answer! Regenerative Orthopedics is effective at repairing many painful joint conditions even after other treatments have failed. How can this be? The reason is because many of the other treatments never treat the root cause of the problem. Think about it. Can Advil really fix a joint problem or does it just cover up the pain? Is the problem an Advil deficiency? When you think about it like that, it is obvious that these treatments aren’t the answer, but more of a band-aid approach.\r\n\r\nRegenerative Orthopedics has a greater chance at effectively repairing the joint injury and relieving the pain because it is directed at the root cause of the joint pain problem.  The underlying source of the majority of painful joint conditions is joint instability due to ligament and/or tendon injury and weakness. Fortunately, Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, work great at treating ligament and tendon injuries and weakness, and because of that, they are able to successfully repair joint instability.\r\n\r\n<strong>How Do Regenerative Orthopedic Treatments Work?</strong>\r\n\r\nIt’s pretty simple. Regenerative Orthopedics involves the injection of different types of natural solutions which are injected into the painful joint areas.  The process stimulates the body’s natural healing cascade, which triggers wound healing properties. This results in tightened and stronger ligaments and tendons, which make the entire joint structure more stable. Remember, the underlying source of most painful joint conditions is an unstable joint. Therefore, stabilization of the joint with Regenerative Orthopedics repairs the problem at its source and results in pain elimination. Regenerative Orthopedics is beneficial in repairing many different types of sports injuries and various types of persistent joint pain.\r\n\r\n<strong>Does Regenerative Orthopedics Only Treat Specific Joints and Conditions? </strong>\r\n\r\nAt OrthoRegen<sup>®</sup>, we have seen Regenerative Orthopedics effectively repair most joint injuries and painful joint conditions including neck, back, knee, hip, shoulder and other musculoskeletal pains that are due to ligament and tendon weakness, injury, and joint instability.\r\n\r\nIn joint injuries such as meniscal tears or labral tears, we have found that the addition of Platelet Rich Plasma, along with Dextrose Prolotherapy is an effective Regenerative Orthopedic technique.\r\n\r\nEven arthritis can be treated with Regenerative Orthopedics, because it also has at its core, a problem of joint instability. Regenerative Orthopedics strengthens the entire joint, because the whole joint is treated comprehensively. Persistent joint pain in arthritis is almost always due to underlying injured soft tissue, like the ligaments and tendons, and joint instability. Left untreated, the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for degeneration and the arthritic process. Regenerative Orthopedics stimulates the repair of the injured joint structures, stops the abnormal joint motions, and halts the degenerative process.  When degeneration of the joint is more severe, we may recommend the Gold Standard in Stem Cell Therapy, which includes two forms of stem cells (bone and fat), PRP, and Dextrose Prolotherapy. This treatment combination is quite amazing at regenerating the joint when cartilage has been lost, plus it stimulates the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability, and results in the elimination of pain and the return to function in degenerative joint conditions.\r\n\r\nRegenerative Orthopedics is an effective treatment option for painful joint conditions, even after many other treatments have failed to resolve your pain. If your pain has persisted to put a damper on your life after having tried numerous other treatments, we urge you to consider non-surgical Regenerative Orthopedics to resolve your joint pain.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Painful Joints? Regenerative Orthopedics Works Even When Other Treatments Fail ','','inherit','closed','closed','','2592-revision-v1','','','2020-06-30 20:31:26','2020-06-30 20:31:26','',2592,'https://www.drfields.com/uncategorized/2592-revision-v1/',0,'revision','',0),(3851,8,'2020-06-30 20:32:08','2020-06-30 20:32:08','<strong>Relief from Sciatica Symptoms</strong>\r\n\r\nSciatica is a complaint that is tossed around quite frequently in the context of burning low back pain that shoots down a person’s buttocks, legs, and/or feet. You’ve probably heard it or have said it yourself! If you’ve had this problem, a good chance a friend has recommended their favorite treatment or therapist to help you find some relief. But did you know that sciatica is not actually a disease? Sure, it’s a real thing, but sciatica is a symptom, and not the disease or condition itself. The condition is called<strong> lumbar radiculopathy. </strong>Oftentimes the terms sciatica and lumbar radiculopathy are used interchangeably. Lumbar refers to the lower back area and radiculopathy is a disease of the root of a nerve.\r\n\r\nFor those of you who have experienced the pain of lumbar radiculopathy or an actual pinched nerve, the pain is very excruciating. The sufferer commonly experiences burning pain shooting down the leg, with pain so bad it will stop you in your tracks. How did you get to this point of extreme pain? The common denominator for most back pain problems is spinal instability. Injury to the ligaments of the back occurred at some point, typically from bending over and twisting with the knees in a locked position, which then stretched the ligaments, and made them vulnerable to injury. The result is weak and lax ligaments. When ligaments of the lumbar spine are weak, the vertebrae can slip out of place and pinch the nerve.\r\n\r\n<strong>What Are the Common Treatments for Sciatica or Lumbar Radiculopathy?</strong>\r\n\r\nChiropractors treat sciatica with much success and should be the first practitioners to see for this condition. You can also try treatments like massage and stretching for relief, but these therapies will only work on the surrounding muscles, and any relief will very likely be temporary.<span class=\"Apple-converted-space\"> </span>\r\n\r\nIf ligaments are weakened, the muscles will be going into spasm, because muscles spasm in an effort to stabilize the area that is currently unstable due to the ligament injury. Muscle-strengthening may be of benefit, but remember that the underlying injury of the ligaments needs to be addressed. Regenerative Orthopedic treatments, such as Prolotherapy or PRP, are great options for addressing ligament injuries and are effective at repairing and strengthening these types of soft tissue injuries.\r\n\r\nNon-steroidal anti-inflammatory drugs (NSAIDs) are frequently used, but they are not reparative. So when you reach for an aspirin, Advil, or some other over-the-counter NSAID pain reliever, know that this is not a fix. Your physician may recommend prescription NSAID’s, but again, NSAID’s do not repair the injury. They may give you some relief, but they will not fix the underlying problem or heal the injury. If sciatica symptoms do not resolve on their own and the pain continues, a cortisone injection may be recommended by your physician. Epidural cortisone injections may reduce the size of stressed nerve roots, but they do have side effects. Studies have shown that cortisone causes tissue like the ligaments to grow weaker. So, if weak tissue is the source of the problem, to begin with, then why use something that may make the problem worse? Instead, the spinal instability that is allowing the vertebral segments to move excessively needs to be addressed, so the pain can stop!\r\n\r\nHave you tried painkillers and found no lasting relief? Until the source of the problem is addressed, you may find yourself exhausted and frustrated at the failure of various therapies to provide long-lasting relief and treatments that are ineffective at relieving lumbar radiculopathy and the sciatica symptoms. Are antidepressants and anticonvulsants being recommended? Although you may be depressed because of unending pain, good chance depression is not the source of your back pain. And what about the use of anticonvulsants to treat sciatica? In a 2018 article in the Journal of the American Medical Association (JAMA), the writers note that the commonly used anticonvulsant medication for sciatica called “pregabalin does not improve symptoms of sciatica but frequently has adverse effects.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a> If you have exhausted conservative care options, have progressed to stronger medications like painkillers, antidepressants, and anticonvulsants, and are possibly facing the recommendations of surgery, it is time to look into a solution that actually repairs the injury. Regenerative Orthopedics can provide an effective option that results in relief and repair while utilizing a non-surgical solution for those with persistent sciatica symptoms and lumbar radiculopathy.\r\n\r\n<strong>What if Surgery Has Been Recommended?</strong>\r\n\r\nIf you are facing surgery for relief from your symptoms, minimally invasive spine surgery may be the surgery you are considering. Surgery may give you relief. However, studies have shown that although there may be a rapid decrease in pain and disability after a few months, years down the road patients still experience mild to moderate pain post-surgery.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n\r\n<strong>Regenerative Orthopedics to Strengthen Spinal Instability and Relieve Sciatica Symptoms</strong>\r\n\r\nWhy choose surgery and treatments with side effects and which also lack benefit when there is another option? Choose the path that actually repairs the injury and solves the problem. Regenerative Orthopedics is non-surgical, plus it is effective. At OrthoRegen<sup>®</sup>, we treat all of the involved areas of the low back including the injured ligaments and their attachments to stimulate the body’s own natural healing process. The treatment boosts the blood supply to the injured areas, which brings reparative cells to the ligaments so they can heal. Remember that when the ligaments are weak, they allow for too much movement of the vertebrae, and a nerve can get pinched. Regenerative Orthopedic treatments to these areas strengthen and tighten the ligaments, which will stabilize the lumbar spine, stop the excessive movement, and repair the underlying problem. The result is pain relief. Regenerative Orthopedics is effective at bringing pain relief and return to function for those suffering from sciatica symptoms and lumbar radiculopathy.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Morgan DJ, Dhruva SS, Coon ER, Wright SM, Korenstein D. 2018 Update on Medical Overuse. JAMA Internal Medicine. 2018 Dec 3.  [<a href=\"https://jamanetwork.com/journals/jamainternalmedicine/article-abstract/2717505\">JAMA</a>]\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Machado GC, Witzleb AJ, Fritsch C, Maher CG, Ferreira PH, Ferreira ML. Patients with sciatica still experience pain and disability 5 years after surgery: A systematic review with meta-analysis of cohort studies. Eur J Pain. 2016 May 12.[<a href=\"https://scholar.google.com/scholar?cluster=1973126208637694796&amp;hl=en&amp;as_sdt=0,31\">Google Scholar</a>]\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Relief from Sciatica Symptoms','','inherit','closed','closed','','2555-revision-v1','','','2020-06-30 20:32:08','2020-06-30 20:32:08','',2555,'https://www.drfields.com/uncategorized/2555-revision-v1/',0,'revision','',0),(3852,8,'2020-06-30 20:33:06','2020-06-30 20:33:06','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">\r\n\r\nRegenerative, non-surgical treatments for painful hip conditions and arthritis have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results. Regenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">. </span>Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.\r\n\r\n[caption id=\"attachment_2198\" align=\"alignleft\" width=\"400\"]<img class=\"wp-image-2198 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/labral-tear-400x500.png\" alt=\"Labral Tear\" width=\"400\" height=\"500\" /> <em>Hip Labral Tear</em>[/caption]\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<h2>The Hip and Labrum</h2>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">          The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. The hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis. But we move our hips a lot and put them through high rates of wear, so more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injur<span class=\"pg-1fc2 pg-1sc0\">y</span><span class=\"pg-1ff3 pg-1fs2 pg-1fc1\">.</span></div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">          The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. Labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries. Symptoms include varying degrees of pain, including pain deep in the groin, as well as clicking, popping, and a locking sensation in the hip joint. A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area. Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight distribution inside the joint, prompting the joint surfaces to rub roughly and then generating a breaking down of articular cartilage, which limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<div></div>\r\n<h2>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</h2>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y1d pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">          Regenerative Orthopedics aims to address the soft tissue weakness that transpired during the original injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred. The labrum has a poor blood supply, which makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability. Physical therapy can help strengthen the surrounding muscles, but cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">          Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and reduces pain and symptoms. Degenerative conditions, such as hip labral injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries and involves the injection of natural substances into the degenerated hip to stimulate healing. Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed, especially in very active people and athletes. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow), which is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">          Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable and will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration. Most painful hip conditions begin with damage to the surrounding ligaments and progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen<sup>®</sup>, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Hip Labral Tears and Non-Surgical Repair with Regenerative Orthopedics','','inherit','closed','closed','','2362-revision-v1','','','2020-06-30 20:33:06','2020-06-30 20:33:06','',2362,'https://www.drfields.com/uncategorized/2362-revision-v1/',0,'revision','',0),(3853,8,'2020-06-30 20:34:12','2020-06-30 20:34:12','Joint replacements are on the rise. They have increased so much that, in the last ten years, knee replacements have more than doubled and hip replacements more than tripled. <sup>i</sup> As life expectancy increases, this number will continue to go up. Arthritis is the most common cause of chronic knee and hip pain, and this condition eventually leads to joint replacement. Other causes of knee and hip pain include bursitis, tendonitis, sports injuries, chondromalacia patellae, ligament injury, meniscal injury, hip impingement, and labral injury, all of which often lead to an eventual surgical recommendation or joint replacement intervention.\r\n\r\n<h4>Traditional Therapies for Joint Pain</h4>\r\nThe goal of traditional therapies is to decrease pain and improve function. Treatments, such as weight loss, exercise, physiotherapy, bracing, and orthotics, may help temporarily, but are unfortunately unable to actually repair the joint instability or source of the pain. The increased mechanical stress caused by injury to the ligaments, meniscus, labrum, etc. changes the way the joint functions and makes the joint unstable and even more susceptible to further soft tissue injury.\r\n\r\nWhat is the result? When left unrepaired, the long-lasting effect of continual joint instability is arthritis. Again, many conventional treatments do not last in providing pain relief because they fail to repair the instability. They are also unable to prevent the eventual joint replacement. The road to arthritis, and the ensuing joint replacement, can only be remedied when the problem of joint instability is addressed.\r\n\r\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are conservative, non-surgical therapies generally recommended initially for pain alleviation. Although steroid injections and NSAIDs have been shown to be effective in decreasing inflammation and pain short-term, they do not reverse the disease, but rather inhibit the properties of healing. For this reason, their use is cautioned in those who have joint injuries and arthritis. Interestingly, NSAIDs and corticosteroids have no beneficial effect on articular cartilage in arthritis, but rather accelerate the very disease for which they are most often used and prescribed, and are a catalyst towards joint replacement.\r\n\r\nIt is interesting to point out that not long after doctors started injecting cortisone and other steroids into joints way back in the 1950s, reports of terrible joint diseases were already surfacing, and even back then, their intra-articular use was discouraged. Corticosteroid injections accelerate cartilage degeneration and joint destruction. Today, despite the dangers, cortisone use is widespread and has become the standard of care.\r\n\r\nWhat about the popular use of hyaluronic acid injections for joint pain? Unfortunately, those who do find some pain relief from hyaluronic acid, generally only experience short-term results, which are frequently designed to delay the inevitable joint replacement. Even the seemingly harmless RICE (rest, ice, compression and elevation) protocol has been rescinded by its author due to its detrimental effect on healing.\r\n\r\n<h4>Does Arthroscopic Surgery Prevent Joint Replacement?</h4>\r\nAn attempt to eliminate pain or a painful area by the arthroscopic shaving, cutting, or removal of tissue will only delay the pain for a few years until the remaining tissue becomes degenerated. Arthroscopy is a direct assault to the joint tissue. Arthroscopy, like the aforementioned treatments, may give some temporary relief of symptoms, but in the long-term, will destabilize the joint and boost degeneration. In the long-run, these surgeries can lead to even more surgeries and the eventual joint replacement. Athletes, who have surgical repair of injuries, like an ACL tear for example, have a low rate of return to sport, and a high rate of new injury. Surgery makes joint instability worse, not better.\r\n\r\nMany surgeries such as labral repair and ACL reconstruction can provide remarkable short-term pain relief. However, the replacement material will not function long-term like the original. ACL grafts and labral repairs with titanium tacks just do not have the same pliability as the original tissue and cannot restore the joint back to normal. Eventually, they will cause problems. The athlete or any joint pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or corticosteroid injection, the risk of developing long-term arthritis and the eventual joint replacement is greatly increased. The key to keeping the joint strong is to stimulate the area to heal.\r\n\r\n<h4>Regenerative Orthopedics Using Stem Cells Repairs the Joint</h4>\r\nRegenerative Orthopedics stimulates healing and repairs the joint, rather than interfering with the normal healing process of the body. At OrthoRegen<sup>®</sup>, we use the Gold Standard in Regenerative Orthopedics.  We use Stem Cells from bone marrow and from fat.  Both are excellent sources of Stem Cells.  PRP is then used to stimulate the growth of these Stem Cells and to repair the ligaments inside of the joint.  The remaining Stem Cells that are left over are used along with Prolotherapy to treat the outside of the joint, where there are many tendons and ligaments that control the joint and keep it stabilized. All of this is known as the Gold Standard in Stem Cell treatment, and is the only procedure we use at OrthoRegen<sup>®</sup>.\r\n\r\nStem Cell treatments, PRP and Prolotherapy, are types of Regenerative Orthopedics. They are all effective at stimulating the normal reparative mechanisms of the body, laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee, hip and shoulder labrum, and boosting the cartilage growth. They work to reduce the chance of long-term arthritis and joint replacement. Stem Cells, along with PRP and Prolotherapy, offer hope to those suffering from various types of joint pain and trying to avoid joint replacement.\r\n\r\nWhile surgery is necessary in a small percentage of patients, non-surgical regenerative therapies should be first-line, conservative treatments tried prior to surgery.  The Gold Standard of Regenerative Orthopedics is effective even after surgery, when continued pain is experienced or for arthritis that was accelerated due to the surgery.\r\n\r\nOnce surgery is done it cannot be undone!\r\n\r\n<hr />\r\n\r\n[i] Kim, S. Changes in surgical loads and economic burden of hip and knee replacements in the US: 1997–2004. Arthritis &amp; Rheumatism,2008: 59: 481–488. doi:10.1002/art.23525\r\n','Stem Cell Treatment An Alternative to Joint Replacement','','inherit','closed','closed','','2345-revision-v1','','','2020-06-30 20:34:12','2020-06-30 20:34:12','',2345,'https://www.drfields.com/uncategorized/2345-revision-v1/',0,'revision','',0),(3854,8,'2020-06-30 20:35:16','2020-06-30 20:35:16','Knee pain, like all other types of joint pain, can appear suddenly or become an ongoing, chronic condition. The most common cause of chronic knee pain and disability is arthritis, which frequently results in knee replacement. Knee pain can also be caused by conditions like bursitis, tendonitis, sports injuries, degenerative joint disease, chondromalacia patellae and meniscal injury, all of which very often lead to the eventual surgical recommendation or intervention.\r\n\r\n<a class=\"buttonlink\" href=\"/Testimonials/Cellular-Regeneration-Testimonials/\">Click to See Stem Cell Testimonial Videos</a>\r\n\r\n<h6>Knee Pain Treatments</h6>\r\nBefore surgery, other more conservative therapies are usually attempted to bring relief from the knee pain. NSAIDs (non-steroidal anti-inflammatory drugs like Ibuprofen or Naprosyn) and steroid (cortisone) injections might be included in those initial recommendations. Are these treatments a good choice? Although steroid injections and NSAIDs have been shown in studies to be effective in decreasing inflammation and providing pain relief in the short-term, they unfortunately have also been shown to change the properties of ligaments and other soft tissue, which ends up slowing down the healing process. Because these medications inhibit soft tissue healing, their use is cautioned in those who have ligament and soft tissue injuries. Therefore, their use in ligament injuries should be used for the shortest period of time, if used at all. Instead, Regenerative Orthopedic techniques, such as Stem Cell Therapy, PRP and Prolotherapy, which have been shown to strengthen and resolve ligament injuries, repair meniscal injuries, and rebuild cartilage in the knee, should be sought.\r\n\r\n<h6>The RICE Protocol</h6>\r\nSo what about the RICE (rest, ice, compression and elevation) protocol? Everyone knows about the RICE protocol, and most people are quick to put it into action. However, an interesting point is that the RICE protocol has been rescinded by its author due to its detrimental effect on healing. Why? Because it hinders blood supply to the injury, and blood brings the healing factors to an injury. Remember…The river does not flow when it is frozen; and that ‘river’ is your blood.\r\n\r\n<h6>What about Hyaluronic Acid Injections?</h6>\r\nHyaluronic acid injections, such as Synvisc or Hyalgen, are some of the most popular conservative treatments for knee pain. Hyaluronic acid is a substance naturally found in the body that provides cushion and lubrication to the joints. It can be used as an oral supplement and as an injection that is given directly into the knee joint for the relief of knee pain. Are there drawbacks to the use of hyaluronic acid? \r\n\r\nIf relief is experienced with hyaluronic acid injections, it is generally only for a short period of time. Studies have shown this treatment to actually lack clinical effectiveness. In fact, a systematic review of 89 studies that included over twelve thousand patients comparing hyaluronic acid injections to a sham treatment or to no intervention at all, found that hyaluronic acid supplementation to the knee produced minimal to non-existent results when it came to pain relief and function in knee arthritis patients. That means thousands of patients in these studies received no relief at all, and if they did find relief, it was not much. Unfortunately, those that do find some pain relief with the use of hyaluronic acid, only experience results for a short period of time, and the treatment frequently becomes only a delay for the inevitable knee replacement, because all it does is lubricate a dysfunctional joint, and does not fix anything.  \r\n\r\n<h6>Other Non-Surgical Treatments</h6>\r\nEven though the goal of many non-surgical treatments such as weight loss, exercise, physiotherapy, bracing, and orthotics, is to decrease pain and improve function, they are unable to repair the source of the pain, the ligament or soft tissue injury. Why is it so important to repair the ligaments and other soft tissue? Because the long-term consequence of ligament and soft tissue injuries that are left unhealed is arthritis. Is it any wonder why the treatments mentioned above including hyaluronic acid do not last, and why they are unable to prevent the eventual knee replacement! You see, these treatments are unable to get to the root cause of the problem. The road to arthritis can only be remedied when the problem of ligament injury is addressed. None of the above treatments address this problem. Regenerative Orthopedics does.\r\n\r\n<h6>Are Cortisone Injections Really All That Bad?</h6>\r\nSteroids are used to provide anti-inflammatory relief in affected areas of the body. They lessen swelling, redness, itching and allergic reactions, and, in addition to their use for pain, are often used as part of the treatment for a number of different diseases, such as severe allergies or skin problems, asthma, or arthritis. In many of these cases, steroids are lifesaving! The discovery that steroids could be injected into joints was received with enthusiasm, and led to widespread use. However, shortly after doctors started injecting cortisone and other steroids into knee joints in the 1950s, reports of terrible arthropathies, or joint diseases, began to surface. There was an obvious indication that all was not well with this treatment choice. Way back then, the researchers discouraged the use of steroids being injected into the joint, due to their side effects and cell death in the bone.\r\n\r\nSteroid injections accelerate cartilage degeneration and joint destruction. Cortisone has a deleterious effect on soft tissue healing by inhibiting blood flow to the injured area, new blood vessel formation, protein synthesis, fibroblast proliferation and ultimately collagen formation. Cortisone weakens collagen and therefore soft tissue such as ligaments and tendons, which contributes to the development of conditions such as arthritis, which as we know, leads to the eventual joint replacement. Today, despite the dangers, cortisone use is widespread and has become the standard of care. \r\n\r\n<h6>Surgical Repair</h6>\r\nElimination of knee pain by arthroscopic shaving, cutting, or removal of tissue just delays the pain for a few years until the remaining tissue becomes degenerated. The athlete or any knee pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or steroid injection, the risk of developing long-term arthritis and the eventual knee replacement is greatly increased. The key to keeping the knee strong is to stimulate the area to heal. Remember, once surgery is done, it cannot be undone!\r\n\r\n<h6>Regenerative Orthopedics</h6>\r\nRegenerative Orthopedic therapies such as Stem Cell Therapy, PRP and Prolotherapy stimulate, rather than interfere with, the normal healing process. The treatments stimulate the normal inflammatory-reparative mechanisms of the body, boosting cartilage growth, strengthening the tendons and ligaments, and repairing the meniscus in a knee or the labrum in the hip or shoulder. These regenerative treatments offer hope to those suffering from various types of knee pain and provide an effective, non-surgical option for those trying to avoid knee replacement.\r\nAs we say at OrthoRegen<sup>®</sup>:\r\nRegenerate First; Surgery Last!\r\n','Avoiding Knee Replacement with Regenerative Orthopedics','','inherit','closed','closed','','2082-revision-v1','','','2020-06-30 20:35:16','2020-06-30 20:35:16','',2082,'https://www.drfields.com/uncategorized/2082-revision-v1/',0,'revision','',0),(3855,8,'2020-06-30 20:35:47','2020-06-30 20:35:47','<h6></h6>\r\n<img class=\"wp-image-3775 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire.-pro-triathlete-2-Copy-2-500x500.png\" alt=\"Claire. Pro Triathlete 2 Copy 2\" width=\"358\" height=\"358\" />\r\n\r\nMost orthopedic surgeries for joint pain do not require a quick decision. That is why they are called elective surgeries. The surgeon, the hospital, or you can choose whether or not to have them.\r\n\r\nRemember that once the surgery is done, it cannot be undone. Surgery also requires time off of work and rehabilitation time.\r\n\r\n<strong>Try Conservative Treatments First for Joint Pain</strong>\r\n\r\nBefore you rush into anything, consider your options. Begin with conservative treatments. Look into non-surgical therapies too.\r\n\r\n<strong>Regenerative Orthopedics Are Great Non-Surgical Alternatives</strong>\r\n\r\nNon-surgical alternatives, like Regenerative Orthopedics, are great treatments that are effective at repairing joint conditions that keep people from doing what they love. Even if you have seen an Orthopedic Surgeon, you should also see an experienced Regenerative Orthopedic physician for an evaluation.\r\n\r\nAre you suffering from arthritis joint pain? Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, can stop joint pain without surgery. Studies show that these treatments are \"effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.\"<a href=\"https://www.liebertpub.com/doi/abs/10.1089/acm.2019.0335\">1</a>\r\n\r\n<strong>Prolotherapy Has a Track Record of Reducing Joint Pain</strong>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nProlotherapy is one type of Regenerative Orthopedics used to treat painful joint conditions like arthritis. And it\'s not a new therapy either. Prolotherapy has been around since the 1950s and has been studied quite a bit. The treatment is still getting positive results in the studies. Researchers demonstrated once again just this year that Prolotherapy reduces pain and improves the quality of life of those who receive it.<a href=\"https://www.annfammed.org/content/annalsfm/18/3/235.full.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nThe majority of patients do great and are at least 80-90% better.  Those are great results, especially considering that surgery is not required to achieve them! Less pain, more function, and no surgery.\r\n\r\nOnce the OrthoRegen<sup>®</sup> team lets you know you are a good candidate for Regenerative Orthopedics, the treatments can begin. Four or five treatments are generally required. Virtually no downtime is necessary. Plus, you don\'t have to have weeks of therapy. Regenerative Orthopedics helps you get back to the activities you love quickly!\r\n\r\nRemember that it is your body and you should feel comfortable with the decision on how to treat it.\r\nUltimately, the decision is yours.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n<blockquote>1 Sert, Alketa T., et al. \"The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study.\" The Journal of Alternative and Complementary Medicine 26.5 (2020): 409-417.\r\n\r\n2 Sit, Regina Wing Shan, et al. \"Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial.\" <i>The Annals of Family Medicine</i>18.3 (2020): 235-242.</blockquote>','Surgery for Joint Pain? Think Again!','','inherit','closed','closed','','1463-revision-v1','','','2020-06-30 20:35:47','2020-06-30 20:35:47','',1463,'https://www.drfields.com/uncategorized/1463-revision-v1/',0,'revision','',0),(3856,8,'2020-06-30 20:46:06','2020-06-30 20:46:06','<h4>Regenerative Orthopedics: An Alternative to Joint Replacement</h4>\r\nJoint replacements are on the rise. They have increased so much that, in the last ten years, knee replacements have more than doubled and hip replacements more than tripled. <sup><strong>1</strong></sup> As life expectancy increases, this number will continue to go up. Arthritis is the most common cause of chronic knee and hip pain, and this condition eventually leads to joint replacement. Other causes of knee and hip pain include bursitis, tendonitis, sports injuries, chondromalacia patellae, ligament injury, meniscal injury, hip impingement, and labral injury, all of which often lead to an eventual surgical recommendation or joint replacement intervention.\r\n\r\n<h4>Traditional Therapies for Joint Pain</h4>\r\nThe goal of traditional therapies is to decrease pain and improve function. Treatments, such as weight loss, exercise, physiotherapy, bracing, and orthotics, may help temporarily, but are unfortunately unable to actually repair the joint instability or source of the pain. The increased mechanical stress caused by injury to the ligaments, meniscus, labrum, etc. changes the way the joint functions and makes the joint unstable and even more susceptible to further soft tissue injury. What is the result? When left unrepaired, the long-lasting effect of continual joint instability is arthritis. Again, many conventional treatments do not last in providing pain relief because they fail to repair the instability. They are also unable to prevent the eventual joint replacement. The road to arthritis, and the ensuing joint replacement, can only be remedied when the problem of joint instability is addressed.\r\n\r\n<h4>NSAIDS and Cortisone Interfere with Healing</h4>\r\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are conservative, non-surgical therapies generally recommended initially for pain alleviation. Although steroid injections and NSAIDs have been shown to be effective in decreasing inflammation and pain short-term, they do not reverse the disease, but rather inhibit the properties of healing. For this reason, their use is cautioned in those who have joint injuries and arthritis. Interestingly, NSAIDs and corticosteroids have no beneficial effect on articular cartilage in arthritis, but rather accelerate the very disease for which they are most often used and prescribed, and are a catalyst towards joint replacement. It is interesting to point out that not long after doctors started injecting cortisone and other steroids into joints way back in the 1950s, reports of terrible joint diseases were already surfacing, and even back then, their intra-articular use was discouraged. Corticosteroid injections accelerate cartilage degeneration and joint destruction. Today, despite the dangers, cortisone use is widespread and has become the standard of care.\r\n\r\n<h4>What about the Popular Use of Hyaluronic Acid Injections for Joint Pain?</h4>\r\nUnfortunately, those who do find some pain relief from hyaluronic acid, generally only experience short-term results, which are frequently designed to delay the inevitable joint replacement.\r\n\r\n<h4>Does Arthroscopic Surgery Prevent Joint Replacement?</h4>\r\nAn attempt to eliminate pain or a painful area by the arthroscopic shaving, cutting, or removal of tissue will only delay the pain for a few years until the remaining tissue becomes degenerated. Arthroscopy is a direct assault to the joint tissue. Arthroscopy, like the aforementioned treatments, may give some temporary relief of symptoms, but in the long-term, will destabilize the joint and boost degeneration. In the long-run, these surgeries can lead to even more surgeries and the eventual joint replacement. Athletes, who have surgical repair of injuries, like an ACL tear for example, have a low rate of return to sport, and a high rate of new injury. Surgery makes joint instability worse, not better. Many surgeries such as labral repair and ACL reconstruction can provide remarkable short-term pain relief. However, the replacement material will not function long-term like the original. ACL grafts and labral repairs with titanium tacks just do not have the same pliability as the original tissue and cannot restore the joint back to normal. Eventually, they will cause problems. The athlete or any joint pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or corticosteroid injection, the risk of developing long-term arthritis and the eventual joint replacement is greatly increased. The key to keeping the joint strong is to stimulate the area to heal.\r\n\r\n<h4>Regenerative Orthopedics Repairs the Joint</h4>\r\nRegenerative Orthopedics stimulates healing and repairs the joint, and does not interfere with the normal healing process of the body. PRP, Prolotherapy, and the Gold Standard in Stem Cell Therapy, as utilized at OrthoRegen<sup>®</sup>, are types of Regenerative Orthopedics that stimulate the normal reparative mechanisms of the body by laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee and hip labrum, and boosting cartilage growth. They work to reduce the chance of long-term arthritis and joint replacement. PRP, Prolotherapy, and Stem Cell Therapy, offer hope to those suffering from various types of joint pain and to those trying to avoid joint replacement. While surgery is necessary in a small percentage of patients, non-surgical regenerative therapies should be first-line, conservative treatments tried prior to surgery.  Regenerative Orthopedics is effective even after surgery, when continued pain is experienced or for arthritis that was accelerated due to the surgery. Regenerative Orthopedics offers a promising alternative to joint replacement and the opportunity for healing and return to function for those suffering from chronic joint pain.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n\r\n<em>1. Kim, S. Changes in surgical loads and economic burden of hip and knee replacements in the US: 1997–2004. Arthritis &amp; Rheumatism,2008: 59: 481–488. </em>doi<em>:10.1002/art.23525</em>','Avoid Joint Replacement','','inherit','closed','closed','','1406-revision-v1','','','2020-06-30 20:46:06','2020-06-30 20:46:06','',1406,'https://www.drfields.com/uncategorized/1406-revision-v1/',0,'revision','',0),(3857,8,'2020-06-30 20:50:34','2020-06-30 20:50:34','The knee will become unstable when the various structures of the knee are injured, torn, or degenerated. There is a very complex yet intricate interplay between the different structures of the knee, such as the tendons, ligaments, meniscus and muscles, and when any of these are injured, the whole knee becomes out of sorts. Ligament injuries are one of the common disruptions to this balance. The four major ligaments of the knee are the anterior cruciate ligament (ACL), the posterior cruciate ligament (PCL), the medial collateral ligament (MCL), and the lateral collateral ligament (LCL). Injuries that damage the meniscus and cartilage can also injure these ligaments.  Once injury to ligaments occurs, whether by trauma or by wear and tear, the other structures will be affected, and over time, the injury will lead to degeneration of the knee joint and arthritis. The ligaments become lose with injury, and similar to a stretched out rubber band, they lose their tautness. When injury to one ligament occurs, as in the case of a torn ACL, it is not uncommon that some of the other ligaments are injured as well.\r\n\r\n<h6>Stabilize the Knee by Treating the Injured Ligaments with Regenerative Orthopedics</h6>\r\nSurgery is often resorted to for ligament injuries. However, surgical cutting and removal of important knee structures actually adds to the instability, which boosts the degenerative process. Regenerative Orthopedics is a non-surgical option capable of repairing torn and injured ligaments. The treatment strengthens the loose ligaments and restores the normal motion back to the knee, and resolves the pain too.  Remember that it is very likely that more than just one ligament or joint structure is affected. Therefore, all of the affected structures need to be treated, or otherwise the knee will remain unstable, and the cycle will continue. A comprehensive treatment will address all of the ligament attachments to ensure that the knee will be strong and stable. Surgery is necessary when the ligament is completely torn, but the majority of cases are partial tears, and Regenerative Orthopedics is effective at repairing these ligaments, and stabilizing the knee once the ligaments are repaired.\r\n\r\n<h6>The Cruciate Ligaments and ACL Repair</h6>\r\nThe anterior and posterior cruciate ligaments help stabilize the knee, and prevent excessive forward and backward movement. When these ligaments are injured, the knee may feel like it is loose, because these ligaments are powerhouses at keeping the knee stable. Pain with injury to these ligaments is often felt at the back of the knee. Even after the ACL ligament is repaired surgically, knee instability can occur, and there may be a feeling of looseness or a sensation that the knee can still give way. ACL reconstructive surgery works for many patients, but others experience continued symptoms.\r\n\r\nWe see patients in our clinic who have had ACL surgery, and are concerned because their symptoms are keeping them from doing the sports and activities they want to do. They thought for sure once they had the ACL surgery that they would be back to doing what they were doing before the surgery, but they can’t. Other patients suffer from post-surgical complications and are looking for answers and a solution to their ongoing pain.\r\n\r\nAthletes want to get their knee repaired as quickly as possible, and often resort to surgery with this in mind. But research suggests there are high levels of failure rates to restore stability in ACL repairs, and many of the patients are unable to return to their previous level of sport. Surgical ACL reconstruction also accelerates the degeneration of the knee. Researchers have found that those who have had ACL reconstruction have an advanced risk for arthritis, as well as higher long-term risk of requiring a knee replacement. But how many people does this really affect? Unfortunately, it’s not just a few. Researchers show that the failure rate is 10-25%. The problems of knee instability following an ACL reconstruction surgery can be severe enough to require repeat surgery.\r\n\r\nFortunately, there are other options besides ACL surgery or even repeat surgery. In our opinion, a better solution to repair a stretched out, loose, torn, or injured ligament, is Regenerative Orthopedics. This treatment approach strengthens and heals the injured ligament in a non-surgical fashion, restoring the stability of the knee. Avoid the unsatisfactory outcome of incomplete healing and repair, and seek a consult with a clinician familiar with Regenerative Orthopedics, such as Stem Cell Therapy, PRP, and Prolotherapy, with the goal of restoring normal ligament function and getting you back quickly to performing the sport and activity you love.','ACL Tears and Knee Ligament Injuries','','inherit','closed','closed','','1379-revision-v1','','','2020-06-30 20:50:34','2020-06-30 20:50:34','',1379,'https://www.drfields.com/uncategorized/1379-revision-v1/',0,'revision','',0),(3858,8,'2020-06-30 21:05:32','2020-06-30 21:05:32','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" class=\"alignright size-full wp-image-955\" />\r\n\r\n\r\n<strong>Peter A. Fields, M.D., D.C.</strong>\r\n(Prolotherapy, Holistic Medicine, Sports Medicine)\r\nOrthoRegen<sup>®</sup>\r\n2730 Wilshire Blvd, Suite 220\r\nSanta Monica, CA 90403\r\nPhone: [phone]\r\nFax: 310-453-1212\r\n\r\n<strong>Eleanor Hynote, M.D.</strong>\r\n(Internal Medicine, Clinical Nutrition, Metabolism, and\r\nIntegrative Medicine)\r\nPhoenix Well Care\r\n3417 Valle Verde Drive\r\nNapa, CA 94558\r\nPhone: 707-255-4172\r\nFax: 707-255-2605\r\n\r\n<strong>James F. Lineback, M.D.</strong>\r\n(Internal and Chest Medicine, Chronic Disease\r\nManagement, Anti-Aging)\r\nNewport Longevity Medical Group\r\n400 Newport center Drive, Suite 401\r\nNewport Beach, CA 92660-5303\r\nPhone: 949-760-8600\r\nFax: 949-721-9121\r\n\r\n<strong>Robert E. Markison, M.D., F.A.C.S</strong>\r\n(Associate Clinical Professor of Surgery, UCSF\r\nHand Surgeon)\r\nMedical Arts Building\r\n2000 Van Ness Ave., Suite 204\r\nSan Francisco, can CA 94109-3017\r\nPhone: 415-929-5900\r\nFax: 415-929-5909\r\n\r\n<strong>Ron Rothenberg, M.D.</strong>\r\n(Anti-Aging)\r\nCalifornia Healthspan Institute\r\n320 Sante Fe Drive, Suite 211\r\nEncinitas, CA 92024\r\nToll-Free Number: 800-943-3331\r\nPhone: 760-635-1996\r\nFax: 760-635-1994\r\n\r\n<strong>Julian Whitaker, M.D.</strong>\r\n(Alternative Medicine, Anti-Aging)\r\nWhitaker Wellness Institute\r\n4321 Birch Street, Suite 100\r\nNewport Beach, CA 92660\r\nToll-Free Number: 800-488-1500\r\nPhone: 949-851-1550\r\n','Dr. Sinatra\'s List of Top Doctors List','','inherit','closed','closed','','1500-revision-v1','','','2020-06-30 21:05:32','2020-06-30 21:05:32','',1500,'https://www.drfields.com/uncategorized/1500-revision-v1/',0,'revision','',0),(3859,8,'2020-06-30 21:09:28','2020-06-30 21:09:28','<div class=\"col-md-12\">\r\n<img class=\"alignleft size-full wp-image-1115\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Santa-Monica-Daily-Press-Article-2.jpg\" alt=\"Santa Monica Daily Press Article 2\" width=\"650\" height=\"2079\" />\r\n\r\n[caption id=\"attachment_955\" align=\"alignright\" width=\"160\"]<img class=\"size-full wp-image-955\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" /> Peter A. Fields MD DC<br />The Athletic Doc<sup>®</sup>[/caption]\r\n</div>\r\n\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1-small.jpg\" alt=\"Stem Cell1 Small\" width=\"62\" height=\"62\" class=\"alignleft size-full wp-image-1116\" /><a href=\"https://www.drfields.com/stem-cell-treatment/\">Stem Cell Prolotherapy</a>\r\n\r\nRegenerating one’s joints and spine is not in the future: it is happening today!…\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n','A wonderful ending to an almost disastrous event','','inherit','closed','closed','','1473-revision-v1','','','2020-06-30 21:09:28','2020-06-30 21:09:28','',1473,'https://www.drfields.com/uncategorized/1473-revision-v1/',0,'revision','',0),(3860,8,'2020-06-30 21:10:44','2020-06-30 21:10:44','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen</span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-06-30 21:10:44','2020-06-30 21:10:44','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3861,8,'2020-06-30 21:12:22','2020-06-30 21:12:22','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-455-8295</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-06-30 21:12:22','2020-06-30 21:12:22','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3862,8,'2020-07-01 00:00:18','2020-07-01 00:00:18','<strong>AGREEMENT BETWEEN USER AND Dr. Fields</strong>\r\n\r\nThe Dr. Fields Web Site is comprised of various Web pages operated by Dr. Fields.\r\n\r\nThe Dr. Fields Web Site is offered to you conditioned on your acceptance without modification of the terms, conditions, and notices contained herein. Your use of the Dr. Fields Web Site constitutes your agreement to all such terms, conditions, and notices.\r\n\r\n<strong>MODIFICATION OF THESE TERMS OF USE</strong>\r\n\r\nDr. Fields reserves the right to change the terms, conditions, and notices under which the Dr. Fields Web Site is offered, including but not limited to the charges associated with the use of the Dr. Fields Web Site.\r\n\r\n<strong>LINKS TO THIRD PARTY SITES</strong>\r\n\r\nThe Dr. Fields Web Site may contain links to other Web Sites (\"Linked Sites\"). The Linked Sites are not under the control of Dr. Fields and Dr. Fields is not responsible for the contents of any Linked Site, including without limitation any link contained in a Linked Site, or any changes or updates to a Linked Site. Dr. Fields is not responsible for webcasting or any other form of transmission received from any Linked Site. Dr. Fields is providing these links to you only as a convenience, and the inclusion of any link does not imply endorsement by Dr. Fields of the site or any association with its operators.\r\n\r\n<strong>NO UNLAWFUL OR PROHIBITED USE</strong>\r\n\r\nAs a condition of your use of the Dr. Fields Web Site, you warrant to Dr. Fields that you will not use the Dr. Fields Web Site for any purpose that is unlawful or prohibited by these terms, conditions, and notices. You may not use the Dr. Fields Web Site in any manner which could damage, disable, overburden, or impair the Dr. Fields Web Site or interfere with any other party\'s use and enjoyment of the Dr. Fields Web Site. You may not obtain or attempt to obtain any materials or information through any means not intentionally made available or provided for through the Dr. Fields Web Sites.\r\n\r\n<strong>USE OF COMMUNICATION SERVICES</strong>\r\n\r\nThe Dr. Fields Web Site may contain bulletin board services, chat areas, news groups, forums, communities, personal web pages, calendars, and/or other message or communication facilities designed to enable you to communicate with the public at large or with a group (collectively, \"Communication Services\"), you agree to use the Communication Services only to post, send and receive messages and material that are proper and related to the particular Communication Service. By way of example, and not as a limitation, you agree that when using a Communication Service, you will not:\r\n<ul>\r\n 	<li>Defame, abuse, harass, stalk, threaten or otherwise violate the legal rights (such as rights of privacy and publicity) of others.</li>\r\n 	<li>Publish, post, upload, distribute or disseminate any inappropriate, profane, defamatory, infringing, obscene, indecent or unlawful topic, name, material or information.</li>\r\n 	<li>Upload files that contain software or other material protected by intellectual property laws (or by rights of privacy of publicity) unless you own or control the rights thereto or have received all necessary consents.</li>\r\n 	<li>Upload files that contain viruses, corrupted files, or any other similar software or programs that may damage the operation of another\'s computer.</li>\r\n 	<li>Advertise or offer to sell or buy any goods or services for any business purpose, unless such Communication Service specifically allows such messages.</li>\r\n 	<li>Conduct or forward surveys, contests, pyramid schemes or chain letters.</li>\r\n 	<li>Download any file posted by another user of a Communication Service that you know, or reasonably should know, cannot be legally distributed in such manner.</li>\r\n 	<li>Falsify or delete any author attributions, legal or other proper notices or proprietary designations or labels of the origin or source of software or other material contained in a file that is uploaded.</li>\r\n 	<li>Restrict or inhibit any other user from using and enjoying the Communication Services.</li>\r\n 	<li>Violate any code of conduct or other guidelines which may be applicable for any particular Communication Service.</li>\r\n 	<li>Harvest or otherwise collect information about others, including e-mail addresses, without their consent.</li>\r\n 	<li>Violate any applicable laws or regulations.</li>\r\n</ul>\r\nDr. Fields has no obligation to monitor the Communication Services. However, Dr. Fields reserves the right to review materials posted to a Communication Service and to remove any materials in its sole discretion. Dr. Fields reserves the right to terminate your access to any or all of the Communication Services at any time without notice for any reason whatsoever.\r\n\r\nDr. Fields reserves the right at all times to disclose any information as necessary to satisfy any applicable law, regulation, legal process or governmental request, or to edit, refuse to post or to remove any information or materials, in whole or in part, in Dr. Fields\'s sole discretion.\r\n\r\nAlways use caution when giving out any personally identifying information about yourself or your children in any Communication Service. Dr. Fields does not control or endorse the content, messages or information found in any Communication Service and, therefore, Dr. Fields specifically disclaims any liability with regard to the Communication Services and any actions resulting from your participation in any Communication Service. Managers and hosts are not authorized Dr. Fields spokespersons, and their views do not necessarily reflect those of Dr. Fields.\r\n\r\nMaterials uploaded to a Communication Service may be subject to posted limitations on usage, reproduction and/or dissemination. You are responsible for adhering to such limitations if you download the materials.\r\n\r\n<strong>MATERIALS PROVIDED TO Dr. Fields OR POSTED AT ANY Dr. Fields WEB SITE</strong>\r\nDr. Fields does not claim ownership of the materials you provide to Dr. Fields (including feedback and suggestions) or post, upload, input or submit to any Dr. Fields Web Site or its associated services (collectively \"Submissions\"). However, by posting, uploading, inputting, providing or submitting your Submission you are granting Dr. Fields, its affiliated companies and necessary sublicensees permission to use your Submission in connection with the operation of their Internet businesses including, without limitation, the rights to: copy, distribute, transmit, publicly display, publicly perform, reproduce, edit, translate and reformat your Submission; and to publish your name in connection with your Submission.\r\n\r\nNo compensation will be paid with respect to the use of your Submission, as provided herein. Dr. Fields is under no obligation to post or use any Submission you may provide and may remove any Submission at any time in Dr. Fields\'s sole discretion.\r\n\r\nBy posting, uploading, inputting, providing or submitting your Submission you warrant and represent that you own or otherwise control all of the rights to your Submission as described in this section including, without limitation, all the rights necessary for you to provide, post, upload, input or submit the Submissions.\r\n\r\n<strong>LIABILITY DISCLAIMER</strong>\r\n\r\nTHE INFORMATION, SOFTWARE, PRODUCTS, AND SERVICES INCLUDED IN OR AVAILABLE THROUGH THE Dr. Fields WEB SITE MAY INCLUDE INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION HEREIN. Dr. Fields AND/OR ITS SUPPLIERS MAY MAKE IMPROVEMENTS AND/OR CHANGES IN THE Dr. Fields WEB SITE AT ANY TIME. ADVICE RECEIVED VIA THE Dr. Fields WEB SITE SHOULD NOT BE RELIED UPON FOR PERSONAL, MEDICAL, LEGAL OR FINANCIAL DECISIONS AND YOU SHOULD CONSULT AN APPROPRIATE PROFESSIONAL FOR SPECIFIC ADVICE TAILORED TO YOUR SITUATION.\r\n\r\nDr. Fields AND/OR ITS SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY, RELIABILITY, AVAILABILITY, TIMELINESS, AND ACCURACY OF THE INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS CONTAINED ON THE Dr. Fields WEB SITE FOR ANY PURPOSE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, ALL SUCH INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OR CONDITION OF ANY KIND. Dr. Fields AND/OR ITS SUPPLIERS HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THIS INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS, INCLUDING ALL IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT.\r\n\r\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL Dr. Fields AND/OR ITS SUPPLIERS BE LIABLE FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, SPECIAL, CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF USE, DATA OR PROFITS, ARISING OUT OF OR IN ANY WAY CONNECTED WITH THE USE OR PERFORMANCE OF THE Dr. Fields WEB SITE, WITH THE DELAY OR INABILITY TO USE THE Dr. Fields WEB SITE OR RELATED SERVICES, THE PROVISION OF OR FAILURE TO PROVIDE SERVICES, OR FOR ANY INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS OBTAINED THROUGH THE Dr. Fields WEB SITE, OR OTHERWISE ARISING OUT OF THE USE OF THE Dr. Fields WEB SITE, WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, EVEN IF Dr. Fields OR ANY OF ITS SUPPLIERS HAS BEEN ADVISED OF THE POSSIBILITY OF DAMAGES. BECAUSE SOME STATES/JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU. IF YOU ARE DISSATISFIED WITH ANY PORTION OF THE Dr. Fields WEB SITE, OR WITH ANY OF THESE TERMS OF USE, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE USING THE Dr. Fields WEB SITE.\r\n\r\n<strong>SERVICE CONTACT :</strong> pcc@drfields.com\r\n\r\n<strong>TERMINATION/ACCESS RESTRICTION</strong>\r\n\r\nDr. Fields reserves the right, in its sole discretion, to terminate your access to the Dr. Fields Web Site and the related services or any portion thereof at any time, without notice. To the maximum extent permitted by law, this agreement is governed by the laws of the State of California, U.S.A. and you hereby consent to the exclusive jurisdiction and venue of courts in Los Angeles County, California, U.S.A. in all disputes arising out of or relating to the use of the Dr. Fields Web Site. Use of the Dr. Fields Web Site is unauthorized in any jurisdiction that does not give effect to all provisions of these terms and conditions, including without limitation this paragraph. You agree that no joint venture, partnership, employment, or agency relationship exists between you and Dr. Fields as a result of this agreement or use of the Dr. Fields Web Site. Dr. Fields\'s performance of this agreement is subject to existing laws and legal process, and nothing contained in this agreement is in derogation of Dr. Fields\'s right to comply with governmental, court and law enforcement requests or requirements relating to your use of the Dr. Fields Web Site or information provided to or gathered by Dr. Fields with respect to such use. If any part of this agreement is determined to be invalid or unenforceable pursuant to applicable law including, but not limited to, the warranty disclaimers and liability limitations set forth above, then the invalid or unenforceable provision will be deemed superseded by a valid, enforceable provision that most closely matches the intent of the original provision and the remainder of the agreement shall continue in effect. Unless otherwise specified herein, this agreement constitutes the entire agreement between the user and Dr. Fields with respect to the Dr. Fields Web Site and it supersedes all prior or contemporaneous communications and proposals, whether electronic, oral or written, between the user and Dr. Fields with respect to the Dr. Fields Web Site. A printed version of this agreement and of any notice given in electronic form shall be admissible in judicial or administrative proceedings based upon or relating to this agreement to the same extent and subject to the same conditions as other business documents and records originally generated and maintained in printed form. It is the express wish to the parties that this agreement and all related documents be drawn up in English.\r\n\r\n<strong>COPYRIGHT AND TRADEMARK NOTICES:</strong>\r\n\r\nAll contents of the Dr. Fields Web Site are: ©2019 OrthoRegen. All rights reserved.\r\n\r\n<strong>TRADEMARKS</strong>\r\n\r\n<u>THE ATHLETIC DOC is a registered trademark owned by and ORTHOREGEN is a registered trademark owned by Peter A. Fields MD, Inc., a California corporation.</u>\r\n\r\nThe names of actual companies and products mentioned herein may be the trademarks of their respective owners.\r\n\r\nAny rights not expressly granted herein are reserved.\r\n\r\n<strong>NOTICES AND PROCEDURE FOR MAKING CLAIMS OF COPYRIGHT INFRINGEMENT</strong>\r\n\r\nPursuant to Title 17, United States Code, Section 512(c)(2), notifications of claimed copyright infringement under United States copyright law should be sent to pcc@drfields.com. ALL INQUIRIES NOT RELEVANT  WILL RECEIVE NO RESPONSE.','Terms','','inherit','closed','closed','','977-revision-v1','','','2020-07-01 00:00:18','2020-07-01 00:00:18','',977,'https://www.drfields.com/uncategorized/977-revision-v1/',0,'revision','',0),(3863,8,'2020-07-01 00:02:42','2020-07-01 00:02:42','<strong>AGREEMENT BETWEEN USER AND Dr. Fields</strong>\r\n\r\nThe Dr. Fields Web Site is comprised of various Web pages operated by Dr. Fields.\r\n\r\nThe Dr. Fields Web Site is offered to you conditioned on your acceptance without modification of the terms, conditions, and notices contained herein. Your use of the Dr. Fields Web Site constitutes your agreement to all such terms, conditions, and notices.\r\n\r\n<strong>MODIFICATION OF THESE TERMS OF USE</strong>\r\n\r\nDr. Fields reserves the right to change the terms, conditions, and notices under which the Dr. Fields Web Site is offered, including but not limited to the charges associated with the use of the Dr. Fields Web Site.\r\n\r\n<strong>LINKS TO THIRD PARTY SITES</strong>\r\n\r\nThe Dr. Fields Web Site may contain links to other Web Sites (\"Linked Sites\"). The Linked Sites are not under the control of Dr. Fields and Dr. Fields is not responsible for the contents of any Linked Site, including without limitation any link contained in a Linked Site, or any changes or updates to a Linked Site. Dr. Fields is not responsible for webcasting or any other form of transmission received from any Linked Site. Dr. Fields is providing these links to you only as a convenience, and the inclusion of any link does not imply endorsement by Dr. Fields of the site or any association with its operators.\r\n\r\n<strong>NO UNLAWFUL OR PROHIBITED USE</strong>\r\n\r\nAs a condition of your use of the Dr. Fields Web Site, you warrant to Dr. Fields that you will not use the Dr. Fields Web Site for any purpose that is unlawful or prohibited by these terms, conditions, and notices. You may not use the Dr. Fields Web Site in any manner which could damage, disable, overburden, or impair the Dr. Fields Web Site or interfere with any other party\'s use and enjoyment of the Dr. Fields Web Site. You may not obtain or attempt to obtain any materials or information through any means not intentionally made available or provided for through the Dr. Fields Web Sites.\r\n\r\n<strong>USE OF COMMUNICATION SERVICES</strong>\r\n\r\nThe Dr. Fields Web Site may contain bulletin board services, chat areas, news groups, forums, communities, personal web pages, calendars, and/or other message or communication facilities designed to enable you to communicate with the public at large or with a group (collectively, \"Communication Services\"), you agree to use the Communication Services only to post, send and receive messages and material that are proper and related to the particular Communication Service. By way of example, and not as a limitation, you agree that when using a Communication Service, you will not:\r\n<ul>\r\n 	<li>Defame, abuse, harass, stalk, threaten or otherwise violate the legal rights (such as rights of privacy and publicity) of others.</li>\r\n 	<li>Publish, post, upload, distribute or disseminate any inappropriate, profane, defamatory, infringing, obscene, indecent or unlawful topic, name, material or information.</li>\r\n 	<li>Upload files that contain software or other material protected by intellectual property laws (or by rights of privacy of publicity) unless you own or control the rights thereto or have received all necessary consents.</li>\r\n 	<li>Upload files that contain viruses, corrupted files, or any other similar software or programs that may damage the operation of another\'s computer.</li>\r\n 	<li>Advertise or offer to sell or buy any goods or services for any business purpose, unless such Communication Service specifically allows such messages.</li>\r\n 	<li>Conduct or forward surveys, contests, pyramid schemes or chain letters.</li>\r\n 	<li>Download any file posted by another user of a Communication Service that you know, or reasonably should know, cannot be legally distributed in such manner.</li>\r\n 	<li>Falsify or delete any author attributions, legal or other proper notices or proprietary designations or labels of the origin or source of software or other material contained in a file that is uploaded.</li>\r\n 	<li>Restrict or inhibit any other user from using and enjoying the Communication Services.</li>\r\n 	<li>Violate any code of conduct or other guidelines which may be applicable for any particular Communication Service.</li>\r\n 	<li>Harvest or otherwise collect information about others, including e-mail addresses, without their consent.</li>\r\n 	<li>Violate any applicable laws or regulations.</li>\r\n</ul>\r\nDr. Fields has no obligation to monitor the Communication Services. However, Dr. Fields reserves the right to review materials posted to a Communication Service and to remove any materials in its sole discretion. Dr. Fields reserves the right to terminate your access to any or all of the Communication Services at any time without notice for any reason whatsoever.\r\n\r\nDr. Fields reserves the right at all times to disclose any information as necessary to satisfy any applicable law, regulation, legal process or governmental request, or to edit, refuse to post or to remove any information or materials, in whole or in part, in Dr. Fields\'s sole discretion.\r\n\r\nAlways use caution when giving out any personally identifying information about yourself or your children in any Communication Service. Dr. Fields does not control or endorse the content, messages or information found in any Communication Service and, therefore, Dr. Fields specifically disclaims any liability with regard to the Communication Services and any actions resulting from your participation in any Communication Service. Managers and hosts are not authorized Dr. Fields spokespersons, and their views do not necessarily reflect those of Dr. Fields.\r\n\r\nMaterials uploaded to a Communication Service may be subject to posted limitations on usage, reproduction and/or dissemination. You are responsible for adhering to such limitations if you download the materials.\r\n\r\n<strong>MATERIALS PROVIDED TO Dr. Fields OR POSTED AT ANY Dr. Fields WEB SITE</strong>\r\nDr. Fields does not claim ownership of the materials you provide to Dr. Fields (including feedback and suggestions) or post, upload, input or submit to any Dr. Fields Web Site or its associated services (collectively \"Submissions\"). However, by posting, uploading, inputting, providing or submitting your Submission you are granting Dr. Fields, its affiliated companies and necessary sublicensees permission to use your Submission in connection with the operation of their Internet businesses including, without limitation, the rights to: copy, distribute, transmit, publicly display, publicly perform, reproduce, edit, translate and reformat your Submission; and to publish your name in connection with your Submission.\r\n\r\nNo compensation will be paid with respect to the use of your Submission, as provided herein. Dr. Fields is under no obligation to post or use any Submission you may provide and may remove any Submission at any time in Dr. Fields\'s sole discretion.\r\n\r\nBy posting, uploading, inputting, providing or submitting your Submission you warrant and represent that you own or otherwise control all of the rights to your Submission as described in this section including, without limitation, all the rights necessary for you to provide, post, upload, input or submit the Submissions.\r\n\r\n<strong>LIABILITY DISCLAIMER</strong>\r\n\r\nTHE INFORMATION, SOFTWARE, PRODUCTS, AND SERVICES INCLUDED IN OR AVAILABLE THROUGH THE Dr. Fields WEB SITE MAY INCLUDE INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION HEREIN. Dr. Fields AND/OR ITS SUPPLIERS MAY MAKE IMPROVEMENTS AND/OR CHANGES IN THE Dr. Fields WEB SITE AT ANY TIME. ADVICE RECEIVED VIA THE Dr. Fields WEB SITE SHOULD NOT BE RELIED UPON FOR PERSONAL, MEDICAL, LEGAL OR FINANCIAL DECISIONS AND YOU SHOULD CONSULT AN APPROPRIATE PROFESSIONAL FOR SPECIFIC ADVICE TAILORED TO YOUR SITUATION.\r\n\r\nDr. Fields AND/OR ITS SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY, RELIABILITY, AVAILABILITY, TIMELINESS, AND ACCURACY OF THE INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS CONTAINED ON THE Dr. Fields WEB SITE FOR ANY PURPOSE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, ALL SUCH INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OR CONDITION OF ANY KIND. Dr. Fields AND/OR ITS SUPPLIERS HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THIS INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS, INCLUDING ALL IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT.\r\n\r\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL Dr. Fields AND/OR ITS SUPPLIERS BE LIABLE FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, SPECIAL, CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF USE, DATA OR PROFITS, ARISING OUT OF OR IN ANY WAY CONNECTED WITH THE USE OR PERFORMANCE OF THE Dr. Fields WEB SITE, WITH THE DELAY OR INABILITY TO USE THE Dr. Fields WEB SITE OR RELATED SERVICES, THE PROVISION OF OR FAILURE TO PROVIDE SERVICES, OR FOR ANY INFORMATION, SOFTWARE, PRODUCTS, SERVICES AND RELATED GRAPHICS OBTAINED THROUGH THE Dr. Fields WEB SITE, OR OTHERWISE ARISING OUT OF THE USE OF THE Dr. Fields WEB SITE, WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, EVEN IF Dr. Fields OR ANY OF ITS SUPPLIERS HAS BEEN ADVISED OF THE POSSIBILITY OF DAMAGES. BECAUSE SOME STATES/JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU. IF YOU ARE DISSATISFIED WITH ANY PORTION OF THE Dr. Fields WEB SITE, OR WITH ANY OF THESE TERMS OF USE, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE USING THE Dr. Fields WEB SITE.\r\n\r\n<strong>SERVICE CONTACT :</strong> pcc@drfields.com\r\n\r\n<strong>TERMINATION/ACCESS RESTRICTION</strong>\r\n\r\nDr. Fields reserves the right, in its sole discretion, to terminate your access to the Dr. Fields Web Site and the related services or any portion thereof at any time, without notice. To the maximum extent permitted by law, this agreement is governed by the laws of the State of California, U.S.A. and you hereby consent to the exclusive jurisdiction and venue of courts in Los Angeles County, California, U.S.A. in all disputes arising out of or relating to the use of the Dr. Fields Web Site. Use of the Dr. Fields Web Site is unauthorized in any jurisdiction that does not give effect to all provisions of these terms and conditions, including without limitation this paragraph. You agree that no joint venture, partnership, employment, or agency relationship exists between you and Dr. Fields as a result of this agreement or use of the Dr. Fields Web Site. Dr. Fields\'s performance of this agreement is subject to existing laws and legal process, and nothing contained in this agreement is in derogation of Dr. Fields\'s right to comply with governmental, court and law enforcement requests or requirements relating to your use of the Dr. Fields Web Site or information provided to or gathered by Dr. Fields with respect to such use. If any part of this agreement is determined to be invalid or unenforceable pursuant to applicable law including, but not limited to, the warranty disclaimers and liability limitations set forth above, then the invalid or unenforceable provision will be deemed superseded by a valid, enforceable provision that most closely matches the intent of the original provision and the remainder of the agreement shall continue in effect. Unless otherwise specified herein, this agreement constitutes the entire agreement between the user and Dr. Fields with respect to the Dr. Fields Web Site and it supersedes all prior or contemporaneous communications and proposals, whether electronic, oral or written, between the user and Dr. Fields with respect to the Dr. Fields Web Site. A printed version of this agreement and of any notice given in electronic form shall be admissible in judicial or administrative proceedings based upon or relating to this agreement to the same extent and subject to the same conditions as other business documents and records originally generated and maintained in printed form. It is the express wish to the parties that this agreement and all related documents be drawn up in English.\r\n\r\n<strong>COPYRIGHT AND TRADEMARK NOTICES:</strong>\r\n\r\nAll contents of the Dr. Fields Web Site are: ©2020 OrthoRegen. All rights reserved.\r\n\r\n<strong>TRADEMARKS</strong>\r\n\r\n<u>THE ATHLETIC DOC is a registered trademark owned by and ORTHOREGEN is a registered trademark owned by Peter A. Fields MD, Inc., a California corporation.</u>\r\n\r\nThe names of actual companies and products mentioned herein may be the trademarks of their respective owners.\r\n\r\nAny rights not expressly granted herein are reserved.\r\n\r\n<strong>NOTICES AND PROCEDURE FOR MAKING CLAIMS OF COPYRIGHT INFRINGEMENT</strong>\r\n\r\nPursuant to Title 17, United States Code, Section 512(c)(2), notifications of claimed copyright infringement under United States copyright law should be sent to pcc@drfields.com. ALL INQUIRIES NOT RELEVANT  WILL RECEIVE NO RESPONSE.','Terms','','inherit','closed','closed','','977-revision-v1','','','2020-07-01 00:02:42','2020-07-01 00:02:42','',977,'https://www.drfields.com/uncategorized/977-revision-v1/',0,'revision','',0),(3864,8,'2020-07-01 17:56:54','2020-07-01 17:56:54','<div id=\"dnn_ContentPane\" class=\"span12 contentPane\">\r\n<div class=\"DnnModule DnnModule- DnnModule--1 DnnModule-Admin\">\r\n<div class=\"DNNContainer_noTitle\">\r\n<div id=\"dnn_ctr_ContentPane\">\r\n<div id=\"dnn_ctr_ModuleContent\" class=\"DNNModuleContent ModC\">\r\n<div class=\"dnnPrivacy dnnClear\">\r\n<div align=\"left\">\r\n<p><span id=\"dnn_ctr_Privacy_lblPrivacy\">Dr. Fields</span> is committed to protecting your privacy and developing technology that gives you the most powerful and safe online experience. This Statement of Privacy applies to the Dr. Fields site and governs data collection and usage. By using the Dr. Fields site, you consent to the data practices described in this statement.</p>\r\n<p><span class=\"SubHead\">Collection of your Personal Information</span></p>\r\n<p>Dr. Fields collects personally identifiable information, such as your email address, name, home or work address or telephone number. Dr. Fields also collects anonymous demographic information, which is not unique to you, such as your ZIP code, age, gender, preferences, interests and favorites.</p>\r\n<p>There is also information about your computer hardware and software that is automatically collected by Dr. Fields. This information can include: your IP address, browser type, domain names, access times and referring website addresses. This information is used by Dr. Fields for the operation of the service, to maintain quality of the service, and to provide general statistics regarding use of the Dr. Fields site.</p>\r\n<p>Please keep in mind that if you directly disclose personally identifiable information or personally sensitive data through Dr. Fields public message boards, this information may be collected and used by others. Note: Dr. Fields does not read any of your private online communications.</p>\r\n\r\n<p>Dr. Fields encourages you to review the privacy statements of Web sites you choose to link to from Dr. Fields so that you can understand how those Web sites collect, use and share your information. Dr. Fields is not responsible for the privacy statements or other content on Web sites outside of the Dr. Fields and Dr. Fields family of Web sites.</p>\r\n\r\n<p><span class=\"SubHead\">Use of your Personal Information</span></p>\r\n\r\n<p>Dr. Fields collects and uses your personal information to operate the Dr. Fields Web site and deliver the services you have requested. Dr. Fields also uses your personally identifiable information to inform you of other products or services available from Dr. Fields and its affiliates. Dr. Fields may also contact you via surveys to conduct research about your opinion of current services or of potential new services that may be offered.</p>\r\n\r\n<p>Dr. Fields does not sell, rent or lease its customer lists to third parties. Dr. Fields may, from time to time, contact you on behalf of external business partners about a particular offering that may be of interest to you. In those cases, your unique personally identifiable information (e-mail, name, address, telephone number) is not transferred to the third party. In addition, Dr. Fields may share data with trusted partners to help us perform statistical analysis, send you email or postal mail, provide customer support, or arrange for deliveries. All such third parties are prohibited from using your personal information except to provide these services to Dr. Fields, and they are required to maintain the confidentiality of your information.</p>\r\n\r\n<p>Dr. Fields does not use or disclose sensitive personal information, such as race, religion, or political affiliations, without your explicit consent.</p>\r\n\r\n<p>Dr. Fields keeps track of the Web sites and pages our customers visit within Dr. Fields, in order to determine what Dr. Fields services are the most popular. This data is used to deliver customized content and advertising within Dr. Fields to customers whose behavior indicates that they are interested in a particular subject area.</p>\r\n\r\n<p>Dr. Fields Web sites will disclose your personal information, without notice, only if required to do so by law or in the good faith belief that such action is necessary to: (a) conform to the edicts of the law or comply with legal process served on Dr. Fields or the site; (b) protect and defend the rights or property of Dr. Fields; and, (c) act under exigent circumstances to protect the personal safety of users of Dr. Fields, or the public.</p>\r\n\r\n<p><span class=\"SubHead\">Use of Cookies</span></p>\r\n\r\n<p>The Dr. Fields Web site use \"cookies\" to help you personalize your online experience. A cookie is a text file that is placed on your hard disk by a Web page server. Cookies cannot be used to run programs or deliver viruses to your computer. Cookies are uniquely assigned to you, and can only be read by a web server in the domain that issued the cookie to you.</p>\r\n\r\n<p>One of the primary purposes of cookies is to provide a convenience feature to save you time. The purpose of a cookie is to tell the Web server that you have returned to a specific page. For example, if you personalize Dr. Fields pages, or register with Dr. Fields site or services, a cookie helps Dr. Fields to recall your specific information on subsequent visits. This simplifies the process of recording your personal information, such as billing addresses, shipping addresses, and so on. When you return to the same Dr. Fields Web site, the information you previously provided can be retrieved, so you can easily use the Dr. Fields features that you customized.</p>\r\n\r\n<p>You have the ability to accept or decline cookies. Most Web browsers automatically accept cookies, but you can usually modify your browser setting to decline cookies if you prefer. If you choose to decline cookies, you may not be able to fully experience the interactive features of the Dr. Fields services or Web sites you visit.</p>\r\n\r\n<p><span class=\"SubHead\">Security of your Personal Information</span></p>\r\n\r\n<p>Dr. Fields secures your personal information from unauthorized access, use or disclosure. Dr. Fields secures the personally identifiable information you provide on computer servers in a controlled, secure environment, protected from unauthorized access, use or disclosure. When personal information (such as a credit card number) is transmitted to other Web sites, it is protected through the use of encryption, such as the Secure Socket Layer (SSL) protocol.</p>\r\n\r\n<p><span class=\"SubHead\">Changes to this Statement</span></p>\r\n\r\n<p>Dr. Fields will occasionally update this Statement of Privacy to reflect company and customer feedback. Dr. Fields encourages you to periodically review this Statement to be informed of how Dr. Fields is protecting your information.</p>\r\n\r\n<p><span class=\"SubHead\">Contact Information</span></p>\r\n\r\n<p>Dr. Fields welcomes your comments regarding this Statement of Privacy. If you believe that Dr. Fields has not adhered to this Statement, please contact Dr. Fields at <a href=\"mailto:pcc@drfields.com\">pcc@drfields.com</a>. We will use commercially reasonable efforts to promptly determine and remedy the problem.</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"> </div>\r\n</div>\r\n</div>\r\n</div>','Privacy','','inherit','closed','closed','','3-revision-v1','','','2020-07-01 17:56:54','2020-07-01 17:56:54','',3,'https://www.drfields.com/uncategorized/3-revision-v1/',0,'revision','',0),(3866,8,'2020-07-09 20:12:31','2020-07-09 20:12:31','Cropped Orthoregen Logo R.png','Cropped Orthoregen Logo R.png','Cropped Orthoregen Logo R.png','inherit','open','closed','','cropped-orthoregen-logo-r-png','','','2020-07-09 20:12:31','2020-07-09 20:12:31','',0,'https://www.drfields.com/wp-content/uploads/2019/12/cropped-OrthoRegen-Logo-R.png',0,'attachment','image/png',0),(3868,8,'2021-01-26 00:37:44','2021-01-26 00:37:44','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\n\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\n\n<div class=\"clearfix\"></div>\n\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<h4>What is Pain?</h4>\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\n\n<h4>Acute Pain vs Chronic Pain</h4>\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\n<h4>Why Am I Still In Pain?</h4>\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\n\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<h4>Who Uses Prolotherapy?</h4>\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\n\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\n\n<h4>Why Prolotherapy Works</h4>\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\n\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\n\n<h4>Are You A Candidate For Prolotherapy?</h4>\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen<sup>®</sup>, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n','Chronic Pain Overview','','inherit','closed','closed','','469-autosave-v1','','','2021-01-26 00:37:44','2021-01-26 00:37:44','',469,'https://www.drfields.com/uncategorized/469-autosave-v1/',0,'revision','',0),(3869,8,'2020-07-10 16:54:22','2020-07-10 16:54:22','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n\r\n<div class=\"clearfix\"></div>\r\n\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen<sup>®</sup>, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2020-07-10 16:54:22','2020-07-10 16:54:22','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(3870,8,'2020-07-10 16:55:15','2020-07-10 16:55:15','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n\r\n<div class=\"clearfix\"></div>\r\n\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen<sup>®</sup>, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2020-07-10 16:55:15','2020-07-10 16:55:15','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(3871,8,'2020-07-10 16:57:11','2020-07-10 16:57:11','<h4>Regenerative Orthopedics for Chronic Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone, and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Regenerative Orthopedics for Chronic Knee Pain treatment.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Arthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Persistent arthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudogout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease, and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>How Does Regenerative Orthopedics Work for Chronic Knee Pain?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Regenerative Orthopedics</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nRegenerative Orthopedics works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Regenerative Orthopedics for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Regenerative Orthopedics for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after Regenerative Orthopedics, like Stem Cell Therapy, PRP, and <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Regenerative Orthopedics for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Peter A. Fields, MD, DC, and OrthoRegen<sup>®</sup> at 310-453-1234.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2020-07-10 16:57:11','2020-07-10 16:57:11','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(3872,8,'2020-07-10 16:57:40','2020-07-10 16:57:40','<h4>Regenerative Orthopedics for Chronic Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Many conventional treatments include surgery, arthroscopy, cortisone, and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Regenerative Orthopedics for Chronic Knee Pain treatment.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the upper end of the shin (tibia). The knee cap (patellae), slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. If you are experiencing minor knee pain, clicking, giving way or ‘trick knee’, you may be feeling the first symptoms of arthritis. Arthritis can begin in people as early as thirty years of age, and this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain accompanied by significant inflammation and swelling, can be caused by gout or even infection. Persistent arthritis can also be the cause of occasional acute knee pain.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. Other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Pseudogout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease, and chondromalacia patellae can be other causes of knee pain. As we age the smooth and resilient cartilage on the ends of our long bones, wears down, but this cartilage is needed for normal joint function.\r\n\r\n<h4>How Does Regenerative Orthopedics Work for Chronic Knee Pain?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Regenerative Orthopedics</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nRegenerative Orthopedics works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Regenerative Orthopedics for Chronic Knee Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Regenerative Orthopedics for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after Regenerative Orthopedics, like Stem Cell Therapy, PRP, and <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Regenerative Orthopedics for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Peter A. Fields, MD, DC, and OrthoRegen<sup>®</sup> at 310-453-1234.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Knee Pain','','inherit','closed','closed','','486-revision-v1','','','2020-07-10 16:57:40','2020-07-10 16:57:40','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(3873,8,'2020-07-10 16:58:40','2020-07-10 16:58:40','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy for Chronic Neck Pain</h4>\r\nBecause the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and to rotate, but if you can\'t move your neck normally, your life can be severely disrupted and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be prolotherapy for chronic neck pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>What Causes Neck Pain?</h4>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\nSymptoms of <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands and feet.</li>\r\n</ul>\r\n\r\nIf you are experiencing minor neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty and symptoms may begin to appear years after the disease begins.\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck can be the causes of the neck pain you feel. Pain in the neck can also be caused by injury such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, a pinched nerve, meningitis, influenza, a heart attack or torticollis, can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture, and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Neck Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Neck Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic neck pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are you a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Chronic Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2020-07-10 16:58:40','2020-07-10 16:58:40','',509,'https://www.drfields.com/uncategorized/509-revision-v1/',0,'revision','',0),(3874,8,'2020-07-10 17:00:08','2020-07-10 17:00:08','<h4>Prolotherapy for Chronic Shoulder Pain</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n\r\nIt\'s easy to take your own body for granted when your body is working well. But when a part of your body, such as your shoulder, begins to hurt or hurts for an extended period of time, you quickly realize how much you depend on your shoulders for reaching, raising your arm, lifting yourself up or even just opening a cupboard. That\'s why so many people with shoulder pain or injuries look to <strong>Prolotherapy for chronic shoulder pain</strong> treatment.\r\n\r\n<h4>Causes of Shoulder Pain</h4>\r\nThe muscles and joints of the shoulder allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso and allow the arm to move a full 360°. This tremendous range of motion also makes the shoulder extremely unstable, and far more prone to dislocation and injury than other joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nBecause the rounded head or ball of the upper arm bone (humerus) is larger than the socket of the shoulder bone (scapula), this area is especially susceptible to injury. The shoulder joint consists of bones, muscles and ligaments that are all subject to stress and overuse.\r\n\r\nCommon causes of shoulder pain can be:\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation and attendant injury</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Adhesive capsulated (frozen shoulder)</li>\r\n 	<li>Fracture</li>\r\n 	<li>Poor posture.</li>\r\n</ul>\r\nBut the <strong>most common cause of chronic pain in the shoulder is arthritis</strong>. This can take many forms such as: osteoarthritis, rheumatoid, traumatic, and gouty arthritis.\r\n\r\n<h4>Which Kind of Shoulder Pain Do You Have?</h4>\r\nIf you are experiencing pain from a rotator cuff injury, you will feel a dull aching pain, which worsens with movement.  A rotator cuff injury includes any type of irritation or damage to your <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> muscles or tendons. Causes of a rotator cuff injury may include falling, lifting and repetitive arm activities — especially those done overhead.\r\n\r\n<strong>Shoulder tendonitis</strong> can produce symptoms including a slow onset of discomfort, pain in the upper third of your arm and difficulty sleeping on the side of that arm.\r\n\r\nRedness and swelling that is tender and warm to the touch can be caused by <strong>bursitis</strong>.\r\n\r\nMinor shoulder pain, ‘clicking’, ‘giving way’, or frozen shoulder, are symptoms of <strong>arthritis</strong>. Osteoarthritis can begin as early as thirty, but symptoms can appear later, as the condition progresses.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Shoulder Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Shoulder Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic shoulder pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, shoulder surgery requires you reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic shoulder pain? Would you like a <strong>second opinion before you have irreversible shoulder surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Chronic Shoulder Pain','','inherit','closed','closed','','511-revision-v1','','','2020-07-10 17:00:08','2020-07-10 17:00:08','',511,'https://www.drfields.com/uncategorized/511-revision-v1/',0,'revision','',0),(3875,8,'2020-07-10 17:01:26','2020-07-10 17:01:26','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Jennifer - Elbow</strong></div>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. It is usually the ligaments and tendons that are injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n\r\n<strong>Ligament Injuries in the Elbow</strong>\r\n\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. In tennis elbow it is the <strong>extensor tendons</strong> which move the wrist up, that can be damaged. In golfer’s elbow it is the <strong>flexor tendons</strong>, that move the wrist down, that get injured. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n\r\n<strong>The Most Common Elbow Injuries </strong>\r\n\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? Are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Elbow Pain','','inherit','closed','closed','','524-revision-v1','','','2020-07-10 17:01:26','2020-07-10 17:01:26','',524,'https://www.drfields.com/uncategorized/524-revision-v1/',0,'revision','',0),(3876,8,'2020-07-10 17:02:17','2020-07-10 17:02:17','<h4>Regenerative Orthopedics for Chronic, Persistent Hip Pain</h4>\r\n<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen<sup>®</sup> is to avoid hip replacement surgery, which is usually due to damage caused by hip arthritis. The majority of folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.  The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement, but they don’t want that and are looking for a way to avoid the surgery! Regenerative Orthopedics gives them a non-surgical option and an alternative to hip replacement surgery.</span>\r\n\r\n<b>The Hip and Arthritis</b>\r\n\r\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. The hip joint has a ring of cartilage that seals the ball and socket called the labrum, which helps to provide movement between the leg and pelvis. Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities, and sometimes makes even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<b>What Causes Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. Other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! At some point the hip joint was destabilized by injury. Most of our patients can recall some type of trauma to the hip, or even a previous hip procedure. Traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. Left unrepaired, this instability in the hip joint encourages the arthritis cycle. Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion, which destroys the hip joint further.  How does surgery cause arthritis to worsen? In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip, just to get the large arthroscope into the hip, and the stretching weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability, and later, the development of arthritis. Surgeons may recommend surgery for all of these conditions. But conservative, non-surgical options, including Regenerative Orthopedics, should be considered prior to opting for surgery. </span>\r\n\r\n<b>How Regenerative Orthopedics Is Used To Treat Chronic Hip Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures, which stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited, and since this is the material in which ligaments and tendons are made, the result is tighten and stronger soft tissue structures.</span>\r\n\r\n<span style=\"font-weight: 400;\">Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. In cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\r\n\r\n<b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen<sup>®</sup> at </span><span style=\"font-weight: 400;\">[phone]</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Hip Pain','','inherit','closed','closed','','2665-revision-v1','','','2020-07-10 17:02:17','2020-07-10 17:02:17','',2665,'https://www.drfields.com/uncategorized/2665-revision-v1/',0,'revision','',0),(3877,8,'2020-07-10 17:02:43','2020-07-10 17:02:43','<h4>Regenerative Orthopedics for Chronic, Persistent Hip Pain</h4>\r\n<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen<sup>®</sup> is to avoid hip replacement surgery, which is usually due to damage caused by hip arthritis. The majority of folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.  The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement, but they don’t want that and are looking for a way to avoid the surgery! Regenerative Orthopedics gives them a non-surgical option and an alternative to hip replacement surgery.</span>\r\n\r\n<b>The Hip and Arthritis</b>\r\n\r\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. The hip joint has a ring of cartilage that seals the ball and socket called the labrum, which helps to provide movement between the leg and pelvis. Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities, and sometimes makes even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<b>What Causes Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. Other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! At some point the hip joint was destabilized by injury. Most of our patients can recall some type of trauma to the hip, or even a previous hip procedure. Traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. Left unrepaired, this instability in the hip joint encourages the arthritis cycle. Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion, which destroys the hip joint further.  How does surgery cause arthritis to worsen? In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip, just to get the large arthroscope into the hip, and the stretching weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability, and later, the development of arthritis. Surgeons may recommend surgery for all of these conditions. But conservative, non-surgical options, including Regenerative Orthopedics, should be considered prior to opting for surgery. </span>\r\n\r\n<b>How Regenerative Orthopedics Is Used To Treat Chronic Hip Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication.</span>\r\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures, which stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited, and since this is the material in which ligaments and tendons are made, the result is tighten and stronger soft tissue structures.</span>\r\n\r\n<span style=\"font-weight: 400;\">Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. In cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\r\n\r\n<b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen<sup>®</sup> at </span><span style=\"font-weight: 400;\">[phone]</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Hip Pain','','inherit','closed','closed','','2665-revision-v1','','','2020-07-10 17:02:43','2020-07-10 17:02:43','',2665,'https://www.drfields.com/uncategorized/2665-revision-v1/',0,'revision','',0),(3878,8,'2020-07-10 17:04:37','2020-07-10 17:04:37','<h4>Stop the Back Pain Cycle</h4>\r\n\r\n<span style=\"font-weight: 400;\">So many people suffer with back pain, stuck in a cycle of pain medications, hours of therapy appointments, more prescription medications, over the counter medications, supplements, and more therapy, only to continue to suffer from continued back pain. The cycle is an attempt to manage the pain. You might think, “Of course, I want to manage the pain!” But what if there is a better way, and one that actually corrects the back pain problem, repairs the underlying source of pain, and resolves the pain? Chasing symptoms keeps the sufferer in the pain cycle. Correcting the problems stops the back pain cycle!</span>\r\n\r\n<b>What Is the Reason Behind Most Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Since back pain is so common and a leading cause of disability, it is important to look at the reason for it. The underlying cause of most back pain issues is </span><b><i>spinal instability</i></b><span style=\"font-weight: 400;\">. What is spinal instability you might ask? When you bend and twist and tweak your back, you injure soft tissue, like muscle and ligaments. Muscles have a great blood supply, so they heal quickly. Ligaments have a poor blood supply, and take quite a while to heal. In fact, they heal quite poorly. Unhealed ligaments are weak and lax, similar to stretched out rubber bands. Ligaments connect bone to bone. So if the ligaments are weak, then the bone connection will be weak and wobbly. That bone connection or joint is then unstable. The bones in the back are vertebrae and make up the spine. So when the ligaments in the spine are weak or wobbly, that makes for spinal instability. When these ligaments remain unhealed, the problem gets worse and worse. The ligaments get more lax and the spine becomes more unstable. You can imagine that if the joints of the spine become wobbly, that the bony structures will have difficulty moving like they should. Smooth movement of the vertebral joint connections stops. The abnormal motion causes the joint structures to degenerate. Instability and abnormal joint motion is behind all types of painful back conditions, like bulging discs, arthritis, sciatica, and degenerative joint disease. The underlying problem is ligament weakness, which creates abnormal joint motion which will eventually damage the joint structures and elicit pain. Pain pills aren’t able to fix the weakened ligaments. Cortisone makes soft tissue weaker, so even if it provides some short-term relief, it will eventually worsen the problem in the long run. Massage can’t strengthen weakened ligaments either. What’s the solution? The degenerative condition needs a regenerative treatment. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are all regenerative treatments that strengthen ligaments, restore normal joint motion, and regenerate joint structures.</span>\r\n\r\n<b>Ligaments Are Structures that Provide Stability to the Joint</b>\r\n\r\n<span style=\"font-weight: 400;\">As mentioned earlier, the most common cause of unresolved back pain is spinal instability, due to weakened and stretched out ligaments. Ligaments are very important for stability of the spine and for proper motion. In fact, they are some of the main stabilizing structure for the joint. Sure, those with back pain will definitely complain of muscle spasms and tightness, because muscles help with stability too. But muscles will spasm because they are overcompensating for the inability of the injured ligaments to keep the spine in place. Treatments that relieve muscle spasms will give temporary reprieve of the spasms, but will not address the ligament weakness. Instability and pain will continue, because the ligaments are unable to hold the adjacent bones of the spine together properly.</span>\r\n\r\n<b>How to Treat Unresolved Back Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Each year, thousands and thousands of people are disabled due to some type of painful back condition. Back pain is actually one of the main reasons people come to see us at OrthoRegen<sup>®</sup>. By the time they come to see us, they have usually tried numerous types of pills, treatments, and even surgery, but continue to experience pain. That’s because these other treatments only short-lived and temporary relief. Even surgical treatments end up with poor rates of success. Surgery may emphasize treatment of the disc, for example, but it misses treating the ligament injury which is the originating source of the pain. So pain continues.</span>\r\n\r\n<span style=\"font-weight: 400;\">The places where the ligaments attach to the bones are full of nerves, which elicit pain when stretched out or injured. Injured ligaments can send out referral pain down the back of the leg and even to the foot. They can also refer pain into the groin and pelvic floor. If weak ligaments exist, the physician knowledgeable in examination techniques can diagnose instability during the physical examination with varied maneuvers and positioning. Even palpating, or pressing with the thumb at the ligament attachments will elicit pain indicating ligament laxity.</span>\r\n\r\n<span style=\"font-weight: 400;\">Back pain is one of the easiest conditions to treat with Regenerative Orthopedics. Most often, the pain is located in the lower back, where the vertebrae of the lumbar spine meet the pelvis. Four structures adjoin there in a pretty small area, with all of it held together by ligaments, connecting the sacrum to the sides of the iliac crest and the ilium, while the lower part of the lumbar spine connects to the sacrum. Regenerative Orthopedics to the ligaments in this area strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication.</span>','Chronic Back Pain','','inherit','closed','closed','','2760-revision-v1','','','2020-07-10 17:04:37','2020-07-10 17:04:37','',2760,'https://www.drfields.com/uncategorized/2760-revision-v1/',0,'revision','',0),(3879,8,'2020-07-10 17:04:57','2020-07-10 17:04:57','<h4>Stop the Back Pain Cycle</h4>\r\n\r\n<span style=\"font-weight: 400;\">So many people suffer with back pain, stuck in a cycle of pain medications, hours of therapy appointments, more prescription medications, over the counter medications, supplements, and more therapy, only to continue to suffer from continued back pain. The cycle is an attempt to manage the pain. You might think, “Of course, I want to manage the pain!” But what if there is a better way, and one that actually corrects the back pain problem, repairs the underlying source of pain, and resolves the pain? Chasing symptoms keeps the sufferer in the pain cycle. Correcting the problems stops the back pain cycle!</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<b>What Is the Reason Behind Most Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Since back pain is so common and a leading cause of disability, it is important to look at the reason for it. The underlying cause of most back pain issues is </span><b><i>spinal instability</i></b><span style=\"font-weight: 400;\">. What is spinal instability you might ask? When you bend and twist and tweak your back, you injure soft tissue, like muscle and ligaments. Muscles have a great blood supply, so they heal quickly. Ligaments have a poor blood supply, and take quite a while to heal. In fact, they heal quite poorly. Unhealed ligaments are weak and lax, similar to stretched out rubber bands. Ligaments connect bone to bone. So if the ligaments are weak, then the bone connection will be weak and wobbly. That bone connection or joint is then unstable. The bones in the back are vertebrae and make up the spine. So when the ligaments in the spine are weak or wobbly, that makes for spinal instability. When these ligaments remain unhealed, the problem gets worse and worse. The ligaments get more lax and the spine becomes more unstable. You can imagine that if the joints of the spine become wobbly, that the bony structures will have difficulty moving like they should. Smooth movement of the vertebral joint connections stops. The abnormal motion causes the joint structures to degenerate. Instability and abnormal joint motion is behind all types of painful back conditions, like bulging discs, arthritis, sciatica, and degenerative joint disease. The underlying problem is ligament weakness, which creates abnormal joint motion which will eventually damage the joint structures and elicit pain. Pain pills aren’t able to fix the weakened ligaments. Cortisone makes soft tissue weaker, so even if it provides some short-term relief, it will eventually worsen the problem in the long run. Massage can’t strengthen weakened ligaments either. What’s the solution? The degenerative condition needs a regenerative treatment. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are all regenerative treatments that strengthen ligaments, restore normal joint motion, and regenerate joint structures.</span>\r\n\r\n<b>Ligaments Are Structures that Provide Stability to the Joint</b>\r\n\r\n<span style=\"font-weight: 400;\">As mentioned earlier, the most common cause of unresolved back pain is spinal instability, due to weakened and stretched out ligaments. Ligaments are very important for stability of the spine and for proper motion. In fact, they are some of the main stabilizing structure for the joint. Sure, those with back pain will definitely complain of muscle spasms and tightness, because muscles help with stability too. But muscles will spasm because they are overcompensating for the inability of the injured ligaments to keep the spine in place. Treatments that relieve muscle spasms will give temporary reprieve of the spasms, but will not address the ligament weakness. Instability and pain will continue, because the ligaments are unable to hold the adjacent bones of the spine together properly.</span>\r\n\r\n<b>How to Treat Unresolved Back Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Each year, thousands and thousands of people are disabled due to some type of painful back condition. Back pain is actually one of the main reasons people come to see us at OrthoRegen<sup>®</sup>. By the time they come to see us, they have usually tried numerous types of pills, treatments, and even surgery, but continue to experience pain. That’s because these other treatments only short-lived and temporary relief. Even surgical treatments end up with poor rates of success. Surgery may emphasize treatment of the disc, for example, but it misses treating the ligament injury which is the originating source of the pain. So pain continues.</span>\r\n\r\n<span style=\"font-weight: 400;\">The places where the ligaments attach to the bones are full of nerves, which elicit pain when stretched out or injured. Injured ligaments can send out referral pain down the back of the leg and even to the foot. They can also refer pain into the groin and pelvic floor. If weak ligaments exist, the physician knowledgeable in examination techniques can diagnose instability during the physical examination with varied maneuvers and positioning. Even palpating, or pressing with the thumb at the ligament attachments will elicit pain indicating ligament laxity.</span>\r\n\r\n<span style=\"font-weight: 400;\">Back pain is one of the easiest conditions to treat with Regenerative Orthopedics. Most often, the pain is located in the lower back, where the vertebrae of the lumbar spine meet the pelvis. Four structures adjoin there in a pretty small area, with all of it held together by ligaments, connecting the sacrum to the sides of the iliac crest and the ilium, while the lower part of the lumbar spine connects to the sacrum. Regenerative Orthopedics to the ligaments in this area strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Back Pain','','inherit','closed','closed','','2760-revision-v1','','','2020-07-10 17:04:57','2020-07-10 17:04:57','',2760,'https://www.drfields.com/uncategorized/2760-revision-v1/',0,'revision','',0),(3880,8,'2020-07-10 17:10:25','2020-07-10 17:10:25','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong></div>\r\n<h4>Regenerative Orthopedic Knee Treatments</h4>\r\nKnee injuries are one of the most common problems we treat with Regenerative Orthopedic knee treatments at OrthoRegen<sup>®</sup>, and that\'s important because the knee joint is one of the most crucial joints in the body, not to mention that knee function is vital to involvement in everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nThere are also two forms of cartilage in the knee, including articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement. The meniscus is another type of cartilage, which consists of two semicircular discs providing cushioning and support for the bones. Our knees are extremely vulnerable to injury in one or a combination of these elements. In the case of a knee injury, we recommend our <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair damaged tissue, ligaments, and tendons, to get you back quickly to the activities you love.\r\n<h4>How Regenerative Orthopedics Works to Treat the Knee</h4>\r\nRegenerative Orthopedics are innovative therapies that treat the knee by stimulating the immune system to repair damaged tissue. Prolotherapy is one type of regenerative treatment that is effective for knee injuries. \"Prolo\" comes from the word proliferate, and Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the ligaments and tendons. The proliferation of the fibroblasts encourages new, strong, tissue to be formed. Why is this important? Because this new tissue is exactly what is needed to repair ligament, tendon, and meniscus injuries.\r\n\r\nIn some cases of knee injury, Platelet Rich Plasma (PRP) may be recommended. The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Certain injuries will require more potent means for healing and regeneration. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, tendons, and the menisci of the knee joint.\r\n\r\nReceive treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nPeter A. Fields, MD, DC and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Regenerative Orthopedic treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, Dc is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>. For over 25 years, Dr. Fields has been active in the sport of Triathlon. In 2019, he completed his 11th Ironman Triathlon, in Cozumel, Mexico. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nContact us to see if you are a candidate for Regenerative Orthopedics or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\r\n\r\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Knee pain after surgery</li>\r\n 	<li>Knee popping</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Knee replacement pain</a></li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\r\n 	<li>Ligament sprain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-revision-v1','','','2020-07-10 17:10:25','2020-07-10 17:10:25','',533,'https://www.drfields.com/uncategorized/533-revision-v1/',0,'revision','',0),(3881,8,'2020-07-10 17:11:21','2020-07-10 17:11:21','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-–-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\r\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> neck treatment at OrthoRegen<sup>®</sup>.\r\n\r\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\r\nDr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\r\n\r\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\r\n\r\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n','Neck Injury Treatment','','inherit','closed','closed','','536-revision-v1','','','2020-07-10 17:11:21','2020-07-10 17:11:21','',536,'https://www.drfields.com/uncategorized/536-revision-v1/',0,'revision','',0),(3882,8,'2020-07-10 17:12:55','2020-07-10 17:12:55','<h4>Sports Injuries Treatment</h4>\r\nHave sports injuries stopped you? Get back in the game with Prolotherapy and Dr. Peter A. Fields, The Athletic Doc<sup>®</sup>. At OrthoRegen<sup>®</sup> we offer innovative, non-surgical treatments for your sports injury or chronic pain problems. Without unnecessary medication, prescriptions, cortisone shots or surgery, Prolotherapy can regenerate damaged or worn ligaments and strengthen weakened tendons. The most beneficial aspect of our non-surgical sports injuries treatment is that you can continue to train while you receive Prolotherapy treatments. We treat athletes of all skill and age levels: high school to college; amateur to professional athletes.\r\n\r\n<h4>How Can Prolotherapy Help Your Sports Injury?</h4>\r\nProlotherapy is an innovative treatment that stimulates the immune system to repair damaged tissue.”Prolo” comes from the word proliferate. Prolotherapy then, describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and other sports injuries. Receive treatment for your sports injuries with comprehensive Prolotherapy at OrthoRegen<sup>®</sup>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Are You Suffering from a Sports Injury?</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">K</a><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">nee Pain</a></li>\r\n 	<li> ACL Tear</li>\r\n 	<li>Torn Meniscus</li>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Neck-Pain\">Neck pain</a></li>\r\n 	<li>Back Pain</li>\r\n 	<li>Shin Splints</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>Hamstring Strain</li>\r\n 	<li>IT Band Injury</li>\r\n 	<li>Turf Toe</li>\r\n</ul>\r\n<strong><em> Prolotherapy Sports Injuries Treatment can help you get back in the game – and get back quickly!</em></strong>\r\n\r\n<h4>Prolotherapy Doctor Treats Sports Injuries Without Surgery</h4>\r\nReceive treatment for your sports injuries by Ironman Triathlete Dr. Peter A. Fields. For over 25 years, Dr. Fields has been active in the sport of Triathlon. It is his experience as an athlete that allows him to understand the potential for injury and the demands of sports on the physical body. He also understands the passion athletes have to get back to training and competition, and their need to recover quickly from injury, because he has been there. In November 2012, Dr. Fields completed his second Ironman Triathlon, beating his 2011 time by better than 14 minutes. Dr. Fields is known as The Athletic Doc<sup>®</sup>. Wouldn’t you want to be treated by a sports doctor who is also an athlete?\r\n\r\nOur medical team finds that treating athletes is very rewarding. We can utilize a comprehensive health approach to help you reach your peak physical performance. <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> allows you to get back to training within a couple of days and does not involve periods of long recovery. Prolotherapy involves the injection of natural substances at the exact site of an injury. This stimulates the immune system to repair the sports injury. Areas often injured through sports related activities—ligaments, tendons, menisci, muscles, growth plates, joint capsules and cartilage are stimulated to heal. Anesthetics are also used to minimize any unpleasant pain.\r\n\r\n<h4>Are You A Candidate for Non- Surgical Sports Injuries Treatment?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Testimonials page</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Sports Injuries Treatment Overview','','inherit','closed','closed','','632-revision-v1','','','2020-07-10 17:12:55','2020-07-10 17:12:55','',632,'https://www.drfields.com/uncategorized/632-revision-v1/',0,'revision','',0),(3888,9,'2020-07-10 19:00:21','2020-07-10 19:00:21','<strong>Peter A. Fields, MD, DC Interviewed on KCAL/CBS About \'Prolotherapy\'</strong>','Peter A. Fields, MD, DC interviewed on KCAL/CBS about \'Prolotherapy\'','','inherit','closed','closed','','1436-revision-v1','','','2020-07-10 19:00:21','2020-07-10 19:00:21','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(3889,9,'2020-10-12 18:06:20','2020-10-12 18:06:20','[caption id=\"attachment_2337\" align=\"alignright\" width=\"166\"]<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"166\" height=\"264\" /> Peter A. Fields, MD, DC[/caption]\n<h3><strong>Prolotherapy Treatment on KCAL/CBS by </strong><strong>Peter A. Fields, MD, DC </strong></h3>\nHave you ever seen a Prolotherapy Treatment? Watch it here. In this episode, the folks at <a href=\"https://losangeles.cbslocal.com\">KCAL/CBS</a> talk about Prolotherapy while Dr. Fields treats a patient with knee pain. Karen lived with knee pain for a long time after tearing her meniscus in a skiing accident. Prolotherapy treatments repaired her knee. She got rid of her pain too! And you can get rid of your joint pain because this non-surgical treatment actually repairs the source of the pain. Prolotherapy is extremely effective at joint repair and pain reduction. <a href=\"https://youtu.be/3JIY8OCt1FY\">Watch now! </a>\n\nIn this episode, KCAL 9 Los Angeles shows how a Prolotherapy can repair injured or painful joints. Do you have arthritis? If you do, you\'ll be happy to know that this popular technique reduces arthritis pain in many patients. And it treats other joint conditions as well. Pain causing tendonitis, bursitis, and other joint conditions are helped too!\n\nIs it surgery? No, a Prolotherapy treatment is a natural non-surgical method that assists the body to heal injured or weakened joints, ligaments, and tendons. With Prolotherapy, the weakened areas are injected with a natural solution that stimulates the growth of healthy, strong tissues. Plus, as the tendons and ligaments grow stronger and vibrant, the pain is alleviated.\n\nThe repair is quick too. After about two or three treatments, most people notice quite a difference. Then, after a few more treatments, people are back to full function. Why wait? Repair your joint, and get back doing life like you want to. Are you an athlete with a sports injury? We can help you too! Call us today at 310-453-1234.\n\nYou can read about Regenerative Orthopedics too. Click <a href=\"https://www.drfields.com\">here</a> to find out more.','Prolotherapy Treatment on KCAL/CBS','','inherit','closed','closed','','1436-autosave-v1','','','2020-10-12 18:06:20','2020-10-12 18:06:20','',1436,'https://www.drfields.com/uncategorized/1436-autosave-v1/',0,'revision','',0),(3890,9,'2020-07-10 19:05:18','2020-07-10 19:05:18','<strong>Watch Peter A. Fields, MD, DC and his interview on KCAL/CBS to learn more about the Regenerative Medicine treatment called Prolotherapy. This non-surgical treatment is effective for a variety of sports injuries and can reduce arthritis pain too. </strong>','Peter A. Fields, MD, DC interviewed on KCAL/CBS about \'Prolotherapy\'','','inherit','closed','closed','','1436-revision-v1','','','2020-07-10 19:05:18','2020-07-10 19:05:18','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(3891,9,'2020-07-10 21:07:33','2020-07-10 21:07:33','<img class=\"wp-image-3900 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Get-rid-of-the-pain-400x500.png\" alt=\"Get Rid Of The Pain\" width=\"366\" height=\"458\" />\n<h4><em>Introduction</em></h4>\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments so you can live pain-free. Regenerative Orthopedics helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones).\n\nThe notion of stimulating the body to heal itself goes back to ancient Greece. Prolotherapy, one type of Regenerative Orthopedics, was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\n<h4>When Is It Time for Regenerative Orthopedics?</h4>\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain.\n\nWhen ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Regenerative Orthopedics is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But regenerative techniques don\'t keep you from the activities you love. They get you back to them quickly.\n\nRegenerative Orthopedics can consist of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. What an excellent alternative to treatments like cortisone injections, which long-term studies have shown can actually weaken tissue.\n\nMany joints can be treated with Regenerative Orthopedics. Have back pain? We can help! Knee pain? We can repair that too! Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more can be repaired with Regenerative Orthopedics.\n<h4>Three Types of Regenerative Orthopedics</h4>\n<strong>Prolotherapy</strong> helps the body to heal in a natural non-surgical way. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. The immune system send growth factors. This results in healthy, strong, and vibrant new tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored. The pain is alleviated so joints can function normally. Most ligament and tendon injuries benefit from <a href=\"https://www.drfields.com\">dextrose prolotherapy</a>.\n\n<strong>Platelet Rich Plasma (PRP)</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and boost the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\n\n<strong>Stem Cell Therapy</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymal stem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. When is Stem Cell Therapy recommended? Indications for using Stem Cell Therapy include severe arthritis, certain types of tears, and severely degenerated joints.\n\nAll three regenerative techniques accelerate the fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. All of this amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\n<h4>Summary</h4>\nRegenerative Orthopedics is a successful non-surgical technique that helps the body heal itself. It works well on many medical conditions that result in painful joints. It is minimally invasive with very little recovery time and is tolerated well by patients of all ages. Regenerative Orthopedics first … surgery last.\n<h5><strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine. He is both a board-certified medical physician and chiropractor, one of only a handful of physicians in the United States with both these degrees. Dr. Fields is the director of OrthoRegen in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. Dr. Fields has appeared as a regenerative medicine expert on national television as well as on television and radio shows. He lectures at medical and chiropractic conferences in the United States and around the world on these techniques. He has also written for several publications.</h5>\n<h5><em>The Athletic Doc Walks His Talk</em></h5>\n<h5>Peter A. Fields, MD, DC is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. And he volunteers with the foundation, treating patients, and teaching physicians from all over the world about prolotherapy. But Dr. Fields doesn\'t just teach. He is a very active and competitive triathlete, having completed eleven Ironman triathlons and many other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”</h5>','Pain-Free Living with Regenerative Orthopedics','','inherit','closed','closed','','1423-autosave-v1','','','2020-07-10 21:07:33','2020-07-10 21:07:33','',1423,'https://www.drfields.com/uncategorized/1423-autosave-v1/',0,'revision','',0),(3892,9,'2020-07-10 20:22:19','2020-07-10 20:22:19','<h4>Introduction</h4>\r\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments. <a href=\"https://www.drfields.com/prolotherapy-treatment-overview/\">Prolotherapy</a> is one type of Regenerative Orthopedics that helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones). The notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\r\n<h4>When Is It Time for Prolotherapy?</h4>\r\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain. When ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Prolotherapy is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But Regenerative techniques, like Prolotherapy, don\'t keep you from the activities you love. They get you back to them quickly.\r\n\r\nProlotherapy usually consists of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies have shown can actually weaken tissue. Many joints can be treated, like the back and neck, shoulder, knee, and hip. Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more.\r\n<h4>Prolotherapy Techniques</h4>\r\n<a href=\"https://www.drfields.com/prolotherapy-treatment-overview/\">Dextrose prolotherapy</a> is a natural nonsurgical method of assisting the body to heal injured or weakened ligaments, tendons, or joints. The weakened areas are injected to stimulate the patient’s own immune system to send growth factors. This results in healthy, strong, and vibrant new tissues. With this the pain is alleviated and joints function normally. Most ligament and tendon injuries benefit from dextrose prolotherapy as well.\r\n\r\n<strong>Platelet rich plasma (PRP) prolotherapy</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and catalyze the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> prolotherapy is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\r\n\r\n<strong>Bone marrow/cellular regeneration</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymalstem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. Indications for using bone marrow prolotherapy include severe osteoarthritis, certaintypes of tears, and cartilage regeneration typically inseverely degenerated joints such as the knees and hips. All three techniques of prolotherapy acceleratethe fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. This amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\r\n<h4>Summary</h4>\r\nProlotherapy is a successful nonsurgical technique that helps the body heal itself. It works well on all medical conditions that result in painful joints, is minimally invasive with very little recovery time, and is tolerated well by patients of all ages. Prolotherapy first … surgery last.\r\n\r\n<strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine. He is both a board-certified medical physician and chiropractor, one of only a handful of physicians in the US with both these degrees. Dr. Fields is the director of the Pacific Prolotherapy and Medical Wellness Center in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. He also practices holistic medicine, which includes bioidentical hormones, anti-aging medicine, IV nutritional therapy, IV chelation therapy, natural alternatives to prescription medicines, and more. Dr. Fields has appeared as a prolotherapy expert on national television as well as on several television and radio shows. He lectures at medical and chiropractic conferences in the US and around the world on these techniques. He has also written for several publications.\r\n\r\nDr. Fields is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. He teaches on behalf of the foundation at the University of Wisconsin Medical School. He is also a director of one of three of its clinics in <a href=\"https://www.drfields.com/honduras-2013/\">Honduras</a>, where he volunteers yearly with the foundation, treating patients and teaching physicians from all over the world about prolotherapy. Dr. Fields is a very active and competitive triathlete, having recently completed two Ironman triathlons as well as over 60 other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”','How to Avoid Joint & Spine Surgery and Live Pain Free','','inherit','closed','closed','','1423-revision-v1','','','2020-07-10 20:22:19','2020-07-10 20:22:19','',1423,'https://www.drfields.com/uncategorized/1423-revision-v1/',0,'revision','',0),(3893,9,'2020-07-10 20:37:31','2020-07-10 20:37:31','<h4>Introduction</h4>\r\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments. Regenerative Orthopedics helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones). The notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy, one type of Regenerative Orthopedics, was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\r\n<h4>When Is It Time for Regenerative Orthopedics?</h4>\r\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain. When ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Regenerative Orthopedics is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But regenerative techniques don\'t keep you from the activities you love. They get you back to them quickly.\r\n\r\nRegenerative Orthopedics can consist of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. What an excellent alternative to treatments like cortisone injections, which long-term studies have shown can actually weaken tissue. Many joints can be treated with Regenerative Orthopedics. Have back pain? We can help! Knee pain? We can repair that too! Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more can be repaired with Regenerative Orthopedics.\r\n<h4>Three Types of Regenerative Orthopedics</h4>\r\n<strong>Prolotherapy</strong> helps the body to heal in a natural non-surgical way. Weakened areas are injected to stimulate the patient’s own immune system to send growth factors. This results in healthy, strong, and vibrant new tissues. The pain is alleviated so joints can function normally. Most ligament and tendon injuries benefit from <a href=\"https://www.drfields.com\">dextrose prolotherapy</a>.\r\n\r\n<strong>Platelet Rich Plasma (PRP)</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and boost the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\r\n\r\n<strong>Stem Cell Therapy</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymal stem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. When is Stem Cell Therapy recommended? Indications for using Stem Cell Therapy include severe arthritis, certain types of tears, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate the fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. All of this amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\r\n<h4>Summary</h4>\r\nProlotherapy is a successful nonsurgical technique that helps the body heal itself. It works well on all medical conditions that result in painful joints, is minimally invasive with very little recovery time, and is tolerated well by patients of all ages. Prolotherapy first … surgery last.\r\n\r\n<strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine. He is both a board-certified medical physician and chiropractor, one of only a handful of physicians in the US with both these degrees. Dr. Fields is the director of the Pacific Prolotherapy and Medical Wellness Center in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. He also practices holistic medicine, which includes bioidentical hormones, anti-aging medicine, IV nutritional therapy, IV chelation therapy, natural alternatives to prescription medicines, and more. Dr. Fields has appeared as a prolotherapy expert on national television as well as on several television and radio shows. He lectures at medical and chiropractic conferences in the US and around the world on these techniques. He has also written for several publications.\r\n\r\nDr. Fields is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. He teaches on behalf of the foundation at the University of Wisconsin Medical School. He is also a director of one of three of its clinics in <a href=\"https://www.drfields.com/honduras-2013/\">Honduras</a>, where he volunteers yearly with the foundation, treating patients and teaching physicians from all over the world about prolotherapy. Dr. Fields is a very active and competitive triathlete, having recently completed two Ironman triathlons as well as over 60 other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”','How to Avoid Joint & Spine Surgery and Live Pain-Free','','inherit','closed','closed','','1423-revision-v1','','','2020-07-10 20:37:31','2020-07-10 20:37:31','',1423,'https://www.drfields.com/uncategorized/1423-revision-v1/',0,'revision','',0),(3894,9,'2020-07-10 20:38:48','2020-07-10 20:38:48','<h4>Introduction</h4>\r\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments. Regenerative Orthopedics helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones).\r\n\r\nThe notion of stimulating the body to heal itself goes back to ancient Greece. Prolotherapy, one type of Regenerative Orthopedics, was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\r\n<h4>When Is It Time for Regenerative Orthopedics?</h4>\r\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain.\r\n\r\nWhen ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Regenerative Orthopedics is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But regenerative techniques don\'t keep you from the activities you love. They get you back to them quickly.\r\n\r\nRegenerative Orthopedics can consist of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. What an excellent alternative to treatments like cortisone injections, which long-term studies have shown can actually weaken tissue. Many joints can be treated with Regenerative Orthopedics. Have back pain? We can help! Knee pain? We can repair that too! Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more can be repaired with Regenerative Orthopedics.\r\n<h4>Three Types of Regenerative Orthopedics</h4>\r\n<strong>Prolotherapy</strong> helps the body to heal in a natural non-surgical way. Weakened areas are injected to stimulate the patient’s own immune system to send growth factors. This results in healthy, strong, and vibrant new tissues. The pain is alleviated so joints can function normally. Most ligament and tendon injuries benefit from <a href=\"https://www.drfields.com\">dextrose prolotherapy</a>.\r\n\r\n<strong>Platelet Rich Plasma (PRP)</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and boost the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\r\n\r\n<strong>Stem Cell Therapy</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymal stem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. When is Stem Cell Therapy recommended? Indications for using Stem Cell Therapy include severe arthritis, certain types of tears, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate the fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. All of this amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\r\n<h4>Summary</h4>\r\nProlotherapy is a successful nonsurgical technique that helps the body heal itself. It works well on all medical conditions that result in painful joints, is minimally invasive with very little recovery time, and is tolerated well by patients of all ages. Prolotherapy first … surgery last.\r\n\r\n<strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine. He is both a board-certified medical physician and chiropractor, one of only a handful of physicians in the US with both these degrees. Dr. Fields is the director of the Pacific Prolotherapy and Medical Wellness Center in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. He also practices holistic medicine, which includes bioidentical hormones, anti-aging medicine, IV nutritional therapy, IV chelation therapy, natural alternatives to prescription medicines, and more. Dr. Fields has appeared as a prolotherapy expert on national television as well as on several television and radio shows. He lectures at medical and chiropractic conferences in the US and around the world on these techniques. He has also written for several publications.\r\n\r\nDr. Fields is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. He teaches on behalf of the foundation at the University of Wisconsin Medical School. He is also a director of one of three of its clinics in <a href=\"https://www.drfields.com/honduras-2013/\">Honduras</a>, where he volunteers yearly with the foundation, treating patients and teaching physicians from all over the world about prolotherapy. Dr. Fields is a very active and competitive triathlete, having recently completed two Ironman triathlons as well as over 60 other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”','How to Avoid Joint & Spine Surgery and Live Pain-Free','','inherit','closed','closed','','1423-revision-v1','','','2020-07-10 20:38:48','2020-07-10 20:38:48','',1423,'https://www.drfields.com/uncategorized/1423-revision-v1/',0,'revision','',0),(3895,9,'2020-07-10 20:44:37','2020-07-10 20:44:37','<h4>Introduction</h4>\r\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments. Regenerative Orthopedics helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones).\r\n\r\nThe notion of stimulating the body to heal itself goes back to ancient Greece. Prolotherapy, one type of Regenerative Orthopedics, was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\r\n<h4>When Is It Time for Regenerative Orthopedics?</h4>\r\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain.\r\n\r\nWhen ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Regenerative Orthopedics is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But regenerative techniques don\'t keep you from the activities you love. They get you back to them quickly.\r\n\r\nRegenerative Orthopedics can consist of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. What an excellent alternative to treatments like cortisone injections, which long-term studies have shown can actually weaken tissue. Many joints can be treated with Regenerative Orthopedics. Have back pain? We can help! Knee pain? We can repair that too! Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more can be repaired with Regenerative Orthopedics.\r\n<h4>Three Types of Regenerative Orthopedics</h4>\r\n<strong>Prolotherapy</strong> helps the body to heal in a natural non-surgical way. Weakened areas are injected to stimulate the patient’s own immune system to send growth factors. This results in healthy, strong, and vibrant new tissues. The pain is alleviated so joints can function normally. Most ligament and tendon injuries benefit from <a href=\"https://www.drfields.com\">dextrose prolotherapy</a>.\r\n\r\n<strong>Platelet Rich Plasma (PRP)</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and boost the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\r\n\r\n<strong>Stem Cell Therapy</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymal stem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. When is Stem Cell Therapy recommended? Indications for using Stem Cell Therapy include severe arthritis, certain types of tears, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate the fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. All of this amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\r\n<h4>Summary</h4>\r\nRegenerative Orthopedics is a successful non-surgical technique that helps the body heal itself. It works well on many medical conditions that result in painful joints. It is minimally invasive with very little recovery time and is tolerated well by patients of all ages. Regenerative Orthopedics first … surgery last.\r\n\r\n<strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine. He is both a board-certified medical physician and chiropractor, one of only a handful of physicians in the United States with both these degrees. Dr. Fields is the director of OrthoRegen in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. Dr. Fields has appeared as a regenerative medicine expert on national television as well as on television and radio shows. He lectures at medical and chiropractic conferences in the United States and around the world on these techniques. He has also written for several publications.\r\n\r\nPeter A. Fields, MD, DC is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. And he has volunteered on numerous occasions with the foundation, treating patients, and teaching physicians from all over the world about prolotherapy. Dr. Fields is a very active and competitive triathlete, having completed eleven Ironman triathlons and many other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”','How to Avoid Joint & Spine Surgery and Live Pain-Free','','inherit','closed','closed','','1423-revision-v1','','','2020-07-10 20:44:37','2020-07-10 20:44:37','',1423,'https://www.drfields.com/uncategorized/1423-revision-v1/',0,'revision','',0),(3896,9,'2020-07-10 20:45:59','2020-07-10 20:45:59','<h4>Introduction</h4>\r\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments. Regenerative Orthopedics helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones).\r\n\r\nThe notion of stimulating the body to heal itself goes back to ancient Greece. Prolotherapy, one type of Regenerative Orthopedics, was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\r\n<h4>When Is It Time for Regenerative Orthopedics?</h4>\r\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain.\r\n\r\nWhen ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Regenerative Orthopedics is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But regenerative techniques don\'t keep you from the activities you love. They get you back to them quickly.\r\n\r\nRegenerative Orthopedics can consist of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. What an excellent alternative to treatments like cortisone injections, which long-term studies have shown can actually weaken tissue. Many joints can be treated with Regenerative Orthopedics. Have back pain? We can help! Knee pain? We can repair that too! Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more can be repaired with Regenerative Orthopedics.\r\n<h4>Three Types of Regenerative Orthopedics</h4>\r\n<strong>Prolotherapy</strong> helps the body to heal in a natural non-surgical way. Weakened areas are injected to stimulate the patient’s own immune system to send growth factors. This results in healthy, strong, and vibrant new tissues. The pain is alleviated so joints can function normally. Most ligament and tendon injuries benefit from <a href=\"https://www.drfields.com\">dextrose prolotherapy</a>.\r\n\r\n<strong>Platelet Rich Plasma (PRP)</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and boost the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\r\n\r\n<strong>Stem Cell Therapy</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymal stem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. When is Stem Cell Therapy recommended? Indications for using Stem Cell Therapy include severe arthritis, certain types of tears, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate the fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. All of this amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\r\n<h4>Summary</h4>\r\nRegenerative Orthopedics is a successful non-surgical technique that helps the body heal itself. It works well on many medical conditions that result in painful joints. It is minimally invasive with very little recovery time and is tolerated well by patients of all ages. Regenerative Orthopedics first … surgery last.\r\n\r\n<strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine. He is both a board-certified medical physician and chiropractor, one of only a handful of physicians in the United States with both these degrees. Dr. Fields is the director of OrthoRegen in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. Dr. Fields has appeared as a regenerative medicine expert on national television as well as on television and radio shows. He lectures at medical and chiropractic conferences in the United States and around the world on these techniques. He has also written for several publications.\r\n\r\nPeter A. Fields, MD, DC is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. And he volunteers with the foundation, treating patients, and teaching physicians from all over the world about prolotherapy. But Dr. Fields doesn\'t just teach. He is a very active and competitive triathlete, having completed eleven Ironman triathlons and many other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”','How to Avoid Joint & Spine Surgery and Live Pain-Free','','inherit','closed','closed','','1423-revision-v1','','','2020-07-10 20:45:59','2020-07-10 20:45:59','',1423,'https://www.drfields.com/uncategorized/1423-revision-v1/',0,'revision','',0),(3897,9,'2020-07-10 20:47:56','2020-07-10 20:47:56','<h4>Introduction</h4>\r\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments. Regenerative Orthopedics helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones).\r\n\r\nThe notion of stimulating the body to heal itself goes back to ancient Greece. Prolotherapy, one type of Regenerative Orthopedics, was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\r\n<h4>When Is It Time for Regenerative Orthopedics?</h4>\r\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain.\r\n\r\nWhen ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Regenerative Orthopedics is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But regenerative techniques don\'t keep you from the activities you love. They get you back to them quickly.\r\n\r\nRegenerative Orthopedics can consist of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. What an excellent alternative to treatments like cortisone injections, which long-term studies have shown can actually weaken tissue. Many joints can be treated with Regenerative Orthopedics. Have back pain? We can help! Knee pain? We can repair that too! Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more can be repaired with Regenerative Orthopedics.\r\n<h4>Three Types of Regenerative Orthopedics</h4>\r\n<strong>Prolotherapy</strong> helps the body to heal in a natural non-surgical way. Weakened areas are injected to stimulate the patient’s own immune system to send growth factors. This results in healthy, strong, and vibrant new tissues. The pain is alleviated so joints can function normally. Most ligament and tendon injuries benefit from <a href=\"https://www.drfields.com\">dextrose prolotherapy</a>.\r\n\r\n<strong>Platelet Rich Plasma (PRP)</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and boost the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\r\n\r\n<strong>Stem Cell Therapy</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymal stem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. When is Stem Cell Therapy recommended? Indications for using Stem Cell Therapy include severe arthritis, certain types of tears, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate the fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. All of this amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\r\n<h4>Summary</h4>\r\nRegenerative Orthopedics is a successful non-surgical technique that helps the body heal itself. It works well on many medical conditions that result in painful joints. It is minimally invasive with very little recovery time and is tolerated well by patients of all ages. Regenerative Orthopedics first … surgery last.\r\n<h5><strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine. He is both a board-certified medical physician and chiropractor, one of only a handful of physicians in the United States with both these degrees. Dr. Fields is the director of OrthoRegen in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. Dr. Fields has appeared as a regenerative medicine expert on national television as well as on television and radio shows. He lectures at medical and chiropractic conferences in the United States and around the world on these techniques. He has also written for several publications.</h5>\r\n<h5><em>The Athletic Doc Walks His Talk</em></h5>\r\n<h5>Peter A. Fields, MD, DC is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. And he volunteers with the foundation, treating patients, and teaching physicians from all over the world about prolotherapy. But Dr. Fields doesn\'t just teach. He is a very active and competitive triathlete, having completed eleven Ironman triathlons and many other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”</h5>','How to Avoid Joint & Spine Surgery and Live Pain-Free','','inherit','closed','closed','','1423-revision-v1','','','2020-07-10 20:47:56','2020-07-10 20:47:56','',1423,'https://www.drfields.com/uncategorized/1423-revision-v1/',0,'revision','',0),(3898,9,'2020-07-10 20:48:26','2020-07-10 20:48:26','<h4>Introduction</h4>\r\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments. Regenerative Orthopedics helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones).\r\n\r\nThe notion of stimulating the body to heal itself goes back to ancient Greece. Prolotherapy, one type of Regenerative Orthopedics, was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\r\n<h4>When Is It Time for Regenerative Orthopedics?</h4>\r\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain.\r\n\r\nWhen ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Regenerative Orthopedics is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But regenerative techniques don\'t keep you from the activities you love. They get you back to them quickly.\r\n\r\nRegenerative Orthopedics can consist of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. What an excellent alternative to treatments like cortisone injections, which long-term studies have shown can actually weaken tissue.\r\n\r\nMany joints can be treated with Regenerative Orthopedics. Have back pain? We can help! Knee pain? We can repair that too! Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more can be repaired with Regenerative Orthopedics.\r\n<h4>Three Types of Regenerative Orthopedics</h4>\r\n<strong>Prolotherapy</strong> helps the body to heal in a natural non-surgical way. Weakened areas are injected to stimulate the patient’s own immune system to send growth factors. This results in healthy, strong, and vibrant new tissues. The pain is alleviated so joints can function normally. Most ligament and tendon injuries benefit from <a href=\"https://www.drfields.com\">dextrose prolotherapy</a>.\r\n\r\n<strong>Platelet Rich Plasma (PRP)</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and boost the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\r\n\r\n<strong>Stem Cell Therapy</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymal stem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. When is Stem Cell Therapy recommended? Indications for using Stem Cell Therapy include severe arthritis, certain types of tears, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate the fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. All of this amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\r\n<h4>Summary</h4>\r\nRegenerative Orthopedics is a successful non-surgical technique that helps the body heal itself. It works well on many medical conditions that result in painful joints. It is minimally invasive with very little recovery time and is tolerated well by patients of all ages. Regenerative Orthopedics first … surgery last.\r\n<h5><strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine. He is both a board-certified medical physician and chiropractor, one of only a handful of physicians in the United States with both these degrees. Dr. Fields is the director of OrthoRegen in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. Dr. Fields has appeared as a regenerative medicine expert on national television as well as on television and radio shows. He lectures at medical and chiropractic conferences in the United States and around the world on these techniques. He has also written for several publications.</h5>\r\n<h5><em>The Athletic Doc Walks His Talk</em></h5>\r\n<h5>Peter A. Fields, MD, DC is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. And he volunteers with the foundation, treating patients, and teaching physicians from all over the world about prolotherapy. But Dr. Fields doesn\'t just teach. He is a very active and competitive triathlete, having completed eleven Ironman triathlons and many other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”</h5>','How to Avoid Joint & Spine Surgery and Live Pain-Free','','inherit','closed','closed','','1423-revision-v1','','','2020-07-10 20:48:26','2020-07-10 20:48:26','',1423,'https://www.drfields.com/uncategorized/1423-revision-v1/',0,'revision','',0),(3899,9,'2020-07-10 20:54:44','2020-07-10 20:54:44','Chronic Pain Copy','Chronic Pain Copy','Chronic Pain Copy','inherit','open','closed','','chronic-pain-copy','','','2020-07-10 20:54:44','2020-07-10 20:54:44','',1423,'https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-copy.png',0,'attachment','image/png',0),(3900,9,'2020-07-10 20:55:58','2020-07-10 20:55:58','Get Rid Of The Pain','Get Rid Of The Pain','Get Rid Of The Pain','inherit','open','closed','','get-rid-of-the-pain','','','2020-07-10 20:55:58','2020-07-10 20:55:58','',1423,'https://www.drfields.com/wp-content/uploads/2019/06/Get-rid-of-the-pain.png',0,'attachment','image/png',0),(3901,9,'2020-07-10 20:56:38','2020-07-10 20:56:38','<img class=\"wp-image-3900 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Get-rid-of-the-pain-400x500.png\" alt=\"Get Rid Of The Pain\" width=\"366\" height=\"458\" />\r\n<h4>Introduction</h4>\r\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments. Regenerative Orthopedics helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones).\r\n\r\nThe notion of stimulating the body to heal itself goes back to ancient Greece. Prolotherapy, one type of Regenerative Orthopedics, was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\r\n<h4>When Is It Time for Regenerative Orthopedics?</h4>\r\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain.\r\n\r\nWhen ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Regenerative Orthopedics is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But regenerative techniques don\'t keep you from the activities you love. They get you back to them quickly.\r\n\r\nRegenerative Orthopedics can consist of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. What an excellent alternative to treatments like cortisone injections, which long-term studies have shown can actually weaken tissue.\r\n\r\nMany joints can be treated with Regenerative Orthopedics. Have back pain? We can help! Knee pain? We can repair that too! Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more can be repaired with Regenerative Orthopedics.\r\n<h4>Three Types of Regenerative Orthopedics</h4>\r\n<strong>Prolotherapy</strong> helps the body to heal in a natural non-surgical way. Weakened areas are injected to stimulate the patient’s own immune system to send growth factors. This results in healthy, strong, and vibrant new tissues. The pain is alleviated so joints can function normally. Most ligament and tendon injuries benefit from <a href=\"https://www.drfields.com\">dextrose prolotherapy</a>.\r\n\r\n<strong>Platelet Rich Plasma (PRP)</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and boost the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\r\n\r\n<strong>Stem Cell Therapy</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymal stem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. When is Stem Cell Therapy recommended? Indications for using Stem Cell Therapy include severe arthritis, certain types of tears, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate the fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. All of this amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\r\n<h4>Summary</h4>\r\nRegenerative Orthopedics is a successful non-surgical technique that helps the body heal itself. It works well on many medical conditions that result in painful joints. It is minimally invasive with very little recovery time and is tolerated well by patients of all ages. Regenerative Orthopedics first … surgery last.\r\n<h5><strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine. He is both a board-certified medical physician and chiropractor, one of only a handful of physicians in the United States with both these degrees. Dr. Fields is the director of OrthoRegen in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. Dr. Fields has appeared as a regenerative medicine expert on national television as well as on television and radio shows. He lectures at medical and chiropractic conferences in the United States and around the world on these techniques. He has also written for several publications.</h5>\r\n<h5><em>The Athletic Doc Walks His Talk</em></h5>\r\n<h5>Peter A. Fields, MD, DC is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. And he volunteers with the foundation, treating patients, and teaching physicians from all over the world about prolotherapy. But Dr. Fields doesn\'t just teach. He is a very active and competitive triathlete, having completed eleven Ironman triathlons and many other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”</h5>','How to Avoid Joint & Spine Surgery and Live Pain-Free','','inherit','closed','closed','','1423-revision-v1','','','2020-07-10 20:56:38','2020-07-10 20:56:38','',1423,'https://www.drfields.com/uncategorized/1423-revision-v1/',0,'revision','',0),(3902,9,'2020-07-10 20:58:51','2020-07-10 20:58:51','<img class=\"wp-image-3900  alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Get-rid-of-the-pain-400x500.png\" alt=\"Get Rid Of The Pain\" width=\"366\" height=\"458\" />\r\n<h4>Introduction</h4>\r\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments and live pain-free. Regenerative Orthopedics helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones).\r\n\r\nThe notion of stimulating the body to heal itself goes back to ancient Greece. Prolotherapy, one type of Regenerative Orthopedics, was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\r\n<h4>When Is It Time for Regenerative Orthopedics?</h4>\r\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain.\r\n\r\nWhen ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Regenerative Orthopedics is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But regenerative techniques don\'t keep you from the activities you love. They get you back to them quickly.\r\n\r\nRegenerative Orthopedics can consist of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. What an excellent alternative to treatments like cortisone injections, which long-term studies have shown can actually weaken tissue.\r\n\r\nMany joints can be treated with Regenerative Orthopedics. Have back pain? We can help! Knee pain? We can repair that too! Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more can be repaired with Regenerative Orthopedics.\r\n<h4>Three Types of Regenerative Orthopedics</h4>\r\n<strong>Prolotherapy</strong> helps the body to heal in a natural non-surgical way. Weakened areas are injected to stimulate the patient’s own immune system to send growth factors. This results in healthy, strong, and vibrant new tissues. The pain is alleviated so joints can function normally. Most ligament and tendon injuries benefit from <a href=\"https://www.drfields.com\">dextrose prolotherapy</a>.\r\n\r\n<strong>Platelet Rich Plasma (PRP)</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and boost the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\r\n\r\n<strong>Stem Cell Therapy</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymal stem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. When is Stem Cell Therapy recommended? Indications for using Stem Cell Therapy include severe arthritis, certain types of tears, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate the fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. All of this amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\r\n<h4>Summary</h4>\r\nRegenerative Orthopedics is a successful non-surgical technique that helps the body heal itself. It works well on many medical conditions that result in painful joints. It is minimally invasive with very little recovery time and is tolerated well by patients of all ages. Regenerative Orthopedics first … surgery last.\r\n<h5><strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine. He is both a board-certified medical physician and chiropractor, one of only a handful of physicians in the United States with both these degrees. Dr. Fields is the director of OrthoRegen in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. Dr. Fields has appeared as a regenerative medicine expert on national television as well as on television and radio shows. He lectures at medical and chiropractic conferences in the United States and around the world on these techniques. He has also written for several publications.</h5>\r\n<h5><em>The Athletic Doc Walks His Talk</em></h5>\r\n<h5>Peter A. Fields, MD, DC is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. And he volunteers with the foundation, treating patients, and teaching physicians from all over the world about prolotherapy. But Dr. Fields doesn\'t just teach. He is a very active and competitive triathlete, having completed eleven Ironman triathlons and many other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”</h5>','Pain-Free Living','','inherit','closed','closed','','1423-revision-v1','','','2020-07-10 20:58:51','2020-07-10 20:58:51','',1423,'https://www.drfields.com/uncategorized/1423-revision-v1/',0,'revision','',0),(3903,9,'2020-07-10 20:59:29','2020-07-10 20:59:29','<img class=\"wp-image-3900 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Get-rid-of-the-pain-400x500.png\" alt=\"Get Rid Of The Pain\" width=\"366\" height=\"458\" />\r\n<h4>Introduction</h4>\r\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments and live pain-free. Regenerative Orthopedics helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones).\r\n\r\nThe notion of stimulating the body to heal itself goes back to ancient Greece. Prolotherapy, one type of Regenerative Orthopedics, was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\r\n<h4>When Is It Time for Regenerative Orthopedics?</h4>\r\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain.\r\n\r\nWhen ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Regenerative Orthopedics is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But regenerative techniques don\'t keep you from the activities you love. They get you back to them quickly.\r\n\r\nRegenerative Orthopedics can consist of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. What an excellent alternative to treatments like cortisone injections, which long-term studies have shown can actually weaken tissue.\r\n\r\nMany joints can be treated with Regenerative Orthopedics. Have back pain? We can help! Knee pain? We can repair that too! Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more can be repaired with Regenerative Orthopedics.\r\n<h4>Three Types of Regenerative Orthopedics</h4>\r\n<strong>Prolotherapy</strong> helps the body to heal in a natural non-surgical way. Weakened areas are injected to stimulate the patient’s own immune system to send growth factors. This results in healthy, strong, and vibrant new tissues. The pain is alleviated so joints can function normally. Most ligament and tendon injuries benefit from <a href=\"https://www.drfields.com\">dextrose prolotherapy</a>.\r\n\r\n<strong>Platelet Rich Plasma (PRP)</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and boost the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\r\n\r\n<strong>Stem Cell Therapy</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymal stem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. When is Stem Cell Therapy recommended? Indications for using Stem Cell Therapy include severe arthritis, certain types of tears, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate the fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. All of this amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\r\n<h4>Summary</h4>\r\nRegenerative Orthopedics is a successful non-surgical technique that helps the body heal itself. It works well on many medical conditions that result in painful joints. It is minimally invasive with very little recovery time and is tolerated well by patients of all ages. Regenerative Orthopedics first … surgery last.\r\n<h5><strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine. He is both a board-certified medical physician and chiropractor, one of only a handful of physicians in the United States with both these degrees. Dr. Fields is the director of OrthoRegen in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. Dr. Fields has appeared as a regenerative medicine expert on national television as well as on television and radio shows. He lectures at medical and chiropractic conferences in the United States and around the world on these techniques. He has also written for several publications.</h5>\r\n<h5><em>The Athletic Doc Walks His Talk</em></h5>\r\n<h5>Peter A. Fields, MD, DC is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. And he volunteers with the foundation, treating patients, and teaching physicians from all over the world about prolotherapy. But Dr. Fields doesn\'t just teach. He is a very active and competitive triathlete, having completed eleven Ironman triathlons and many other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”</h5>','Pain-Free Living with Regenerative Orthopedics','','inherit','closed','closed','','1423-revision-v1','','','2020-07-10 20:59:29','2020-07-10 20:59:29','',1423,'https://www.drfields.com/uncategorized/1423-revision-v1/',0,'revision','',0),(3904,9,'2020-07-10 21:02:07','2020-07-10 21:02:07','<img class=\"wp-image-3900 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Get-rid-of-the-pain-400x500.png\" alt=\"Get Rid Of The Pain\" width=\"366\" height=\"458\" />\r\n<h4>Introduction</h4>\r\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments so you can live pain-free. Regenerative Orthopedics helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones).\r\n\r\nThe notion of stimulating the body to heal itself goes back to ancient Greece. Prolotherapy, one type of Regenerative Orthopedics, was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\r\n<h4>When Is It Time for Regenerative Orthopedics?</h4>\r\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain.\r\n\r\nWhen ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Regenerative Orthopedics is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But regenerative techniques don\'t keep you from the activities you love. They get you back to them quickly.\r\n\r\nRegenerative Orthopedics can consist of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. What an excellent alternative to treatments like cortisone injections, which long-term studies have shown can actually weaken tissue.\r\n\r\nMany joints can be treated with Regenerative Orthopedics. Have back pain? We can help! Knee pain? We can repair that too! Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more can be repaired with Regenerative Orthopedics.\r\n<h4>Three Types of Regenerative Orthopedics</h4>\r\n<strong>Prolotherapy</strong> helps the body to heal in a natural non-surgical way. Weakened areas are injected to stimulate the patient’s own immune system to send growth factors. This results in healthy, strong, and vibrant new tissues. The pain is alleviated so joints can function normally. Most ligament and tendon injuries benefit from <a href=\"https://www.drfields.com\">dextrose prolotherapy</a>.\r\n\r\n<strong>Platelet Rich Plasma (PRP)</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and boost the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\r\n\r\n<strong>Stem Cell Therapy</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymal stem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. When is Stem Cell Therapy recommended? Indications for using Stem Cell Therapy include severe arthritis, certain types of tears, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate the fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. All of this amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\r\n<h4>Summary</h4>\r\nRegenerative Orthopedics is a successful non-surgical technique that helps the body heal itself. It works well on many medical conditions that result in painful joints. It is minimally invasive with very little recovery time and is tolerated well by patients of all ages. Regenerative Orthopedics first … surgery last.\r\n<h5><strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine. He is both a board-certified medical physician and chiropractor, one of only a handful of physicians in the United States with both these degrees. Dr. Fields is the director of OrthoRegen in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. Dr. Fields has appeared as a regenerative medicine expert on national television as well as on television and radio shows. He lectures at medical and chiropractic conferences in the United States and around the world on these techniques. He has also written for several publications.</h5>\r\n<h5><em>The Athletic Doc Walks His Talk</em></h5>\r\n<h5>Peter A. Fields, MD, DC is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. And he volunteers with the foundation, treating patients, and teaching physicians from all over the world about prolotherapy. But Dr. Fields doesn\'t just teach. He is a very active and competitive triathlete, having completed eleven Ironman triathlons and many other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”</h5>','Pain-Free Living with Regenerative Orthopedics','','inherit','closed','closed','','1423-revision-v1','','','2020-07-10 21:02:07','2020-07-10 21:02:07','',1423,'https://www.drfields.com/uncategorized/1423-revision-v1/',0,'revision','',0),(3905,9,'2020-07-10 21:03:35','2020-07-10 21:03:35','<img class=\"wp-image-3900 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Get-rid-of-the-pain-400x500.png\" alt=\"Get Rid Of The Pain\" width=\"366\" height=\"458\" />\r\n<h4><em>Introduction</em></h4>\r\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments so you can live pain-free. Regenerative Orthopedics helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones).\r\n\r\nThe notion of stimulating the body to heal itself goes back to ancient Greece. Prolotherapy, one type of Regenerative Orthopedics, was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\r\n<h4>When Is It Time for Regenerative Orthopedics?</h4>\r\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain.\r\n\r\nWhen ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Regenerative Orthopedics is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But regenerative techniques don\'t keep you from the activities you love. They get you back to them quickly.\r\n\r\nRegenerative Orthopedics can consist of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. What an excellent alternative to treatments like cortisone injections, which long-term studies have shown can actually weaken tissue.\r\n\r\nMany joints can be treated with Regenerative Orthopedics. Have back pain? We can help! Knee pain? We can repair that too! Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more can be repaired with Regenerative Orthopedics.\r\n<h4>Three Types of Regenerative Orthopedics</h4>\r\n<strong>Prolotherapy</strong> helps the body to heal in a natural non-surgical way. Weakened areas are injected to stimulate the patient’s own immune system to send growth factors. This results in healthy, strong, and vibrant new tissues. The pain is alleviated so joints can function normally. Most ligament and tendon injuries benefit from <a href=\"https://www.drfields.com\">dextrose prolotherapy</a>.\r\n\r\n<strong>Platelet Rich Plasma (PRP)</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and boost the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\r\n\r\n<strong>Stem Cell Therapy</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymal stem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. When is Stem Cell Therapy recommended? Indications for using Stem Cell Therapy include severe arthritis, certain types of tears, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate the fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. All of this amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\r\n<h4>Summary</h4>\r\nRegenerative Orthopedics is a successful non-surgical technique that helps the body heal itself. It works well on many medical conditions that result in painful joints. It is minimally invasive with very little recovery time and is tolerated well by patients of all ages. Regenerative Orthopedics first … surgery last.\r\n<h5><strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine. He is both a board-certified medical physician and chiropractor, one of only a handful of physicians in the United States with both these degrees. Dr. Fields is the director of OrthoRegen in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. Dr. Fields has appeared as a regenerative medicine expert on national television as well as on television and radio shows. He lectures at medical and chiropractic conferences in the United States and around the world on these techniques. He has also written for several publications.</h5>\r\n<h5><em>The Athletic Doc Walks His Talk</em></h5>\r\n<h5>Peter A. Fields, MD, DC is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. And he volunteers with the foundation, treating patients, and teaching physicians from all over the world about prolotherapy. But Dr. Fields doesn\'t just teach. He is a very active and competitive triathlete, having completed eleven Ironman triathlons and many other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”</h5>','Pain-Free Living with Regenerative Orthopedics','','inherit','closed','closed','','1423-revision-v1','','','2020-07-10 21:03:35','2020-07-10 21:03:35','',1423,'https://www.drfields.com/uncategorized/1423-revision-v1/',0,'revision','',0),(3906,9,'2020-07-10 21:08:06','2020-07-10 21:08:06','<img class=\"wp-image-3900 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Get-rid-of-the-pain-400x500.png\" alt=\"Get Rid Of The Pain\" width=\"366\" height=\"458\" />\r\n<h4><em>Introduction</em></h4>\r\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments so you can live pain-free. Regenerative Orthopedics helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones).\r\n\r\nThe notion of stimulating the body to heal itself goes back to ancient Greece. Prolotherapy, one type of Regenerative Orthopedics, was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\r\n<h4>When Is It Time for Regenerative Orthopedics?</h4>\r\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain.\r\n\r\nWhen ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Regenerative Orthopedics is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But regenerative techniques don\'t keep you from the activities you love. They get you back to them quickly.\r\n\r\nRegenerative Orthopedics can consist of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. What an excellent alternative to treatments like cortisone injections, which long-term studies have shown can actually weaken tissue.\r\n\r\nMany joints can be treated with Regenerative Orthopedics. Have back pain? We can help! Knee pain? We can repair that too! Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more can be repaired with Regenerative Orthopedics.\r\n<h4>Three Types of Regenerative Orthopedics</h4>\r\n<strong>Prolotherapy</strong> helps the body to heal in a natural non-surgical way. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As a result, the immune system sends growth factors. This results in healthy, strong, and vibrant new tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored. The pain is alleviated so joints can function normally. Most ligament and tendon injuries benefit from <a href=\"https://www.drfields.com\">dextrose prolotherapy</a>.\r\n\r\n<strong>Platelet Rich Plasma (PRP)</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and boost the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\r\n\r\n<strong>Stem Cell Therapy</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymal stem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. When is Stem Cell Therapy recommended? Indications for using Stem Cell Therapy include severe arthritis, certain types of tears, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate the fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. All of this amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\r\n<h4>Summary</h4>\r\nRegenerative Orthopedics is a successful non-surgical technique that helps the body heal itself. It works well on many medical conditions that result in painful joints. It is minimally invasive with very little recovery time and is tolerated well by patients of all ages. Regenerative Orthopedics first … surgery last.\r\n<h5><strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine. He is both a board-certified medical physician and chiropractor, one of only a handful of physicians in the United States with both these degrees. Dr. Fields is the director of OrthoRegen in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. Dr. Fields has appeared as a regenerative medicine expert on national television as well as on television and radio shows. He lectures at medical and chiropractic conferences in the United States and around the world on these techniques. He has also written for several publications.</h5>\r\n<h5><em>The Athletic Doc Walks His Talk</em></h5>\r\n<h5>Peter A. Fields, MD, DC is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. And he volunteers with the foundation, treating patients, and teaching physicians from all over the world about prolotherapy. But Dr. Fields doesn\'t just teach. He is a very active and competitive triathlete, having completed eleven Ironman triathlons and many other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”</h5>','Pain-Free Living with Regenerative Orthopedics','','inherit','closed','closed','','1423-revision-v1','','','2020-07-10 21:08:06','2020-07-10 21:08:06','',1423,'https://www.drfields.com/uncategorized/1423-revision-v1/',0,'revision','',0),(3907,9,'2020-07-10 21:14:10','2020-07-10 21:14:10','<strong>Watch Peter A. Fields, MD, DC in this interview on KCAL/CBS and learn more about the Regenerative Medicine treatment called Prolotherapy. This non-surgical treatment is effective for a variety of sports injuries and can reduce arthritis pain too. </strong>','Watch Peter A. Fields, MD, DC on KCAL/CBS about \'Prolotherapy\'','','inherit','closed','closed','','1436-revision-v1','','','2020-07-10 21:14:10','2020-07-10 21:14:10','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(3908,9,'2020-07-10 21:20:48','2020-07-10 21:20:48','[caption id=\"attachment_2337\" align=\"alignright\" width=\"166\"]<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"166\" height=\"264\" />  Peter A. Fields, MD, DC[/caption]\r\n\r\n<strong>Watch Peter A. Fields, MD, DC in this interview on KCAL/CBS and learn more about the Regenerative Medicine treatment called Prolotherapy. This non-surgical treatment is effective for a variety of sports injuries and can reduce arthritis pain too. </strong>\r\n\r\nYou can read about Regenerative Orthopedics too. Click <a href=\"https://www.drfields.com\">here</a> to find out more.','Watch Peter A. Fields, MD, DC on KCAL/CBS','','inherit','closed','closed','','1436-revision-v1','','','2020-07-10 21:20:48','2020-07-10 21:20:48','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(3909,9,'2020-07-10 21:23:44','2020-07-10 21:23:44','[caption id=\"attachment_2337\" align=\"alignright\" width=\"166\"]<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"166\" height=\"264\" /> Peter A. Fields, MD, DC[/caption]\r\n\r\n<strong>Watch Peter A. Fields, MD, DC in this interview on KCAL/CBS and learn more about the Regenerative Medicine treatment called Prolotherapy. This non-surgical treatment is effective for a variety of sports injuries and can reduce arthritis pain too. </strong>\r\n\r\nYou can read about Regenerative Orthopedics too. Click <a href=\"https://www.drfields.com\">here</a> to find out more.','Watch Peter A. Fields, MD, DC on KCAL/CBS','','inherit','closed','closed','','1436-revision-v1','','','2020-07-10 21:23:44','2020-07-10 21:23:44','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(3910,9,'2020-07-10 21:27:50','2020-07-10 21:27:50','[caption id=\"attachment_2337\" align=\"alignright\" width=\"166\"]<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"166\" height=\"264\" /> Peter A. Fields, MD, DC[/caption]\r\n\r\nPeter A. Fields, MD, DC is on KCAL/CBS. In this episode, the folks at KCAL/CBS interview Dr. Fields, as he discusses how you can get rid of your joint pain. Learn more about the Regenerative Medicine treatment called Prolotherapy. This non-surgical treatment is effective for a variety of sports injuries and can reduce arthritis pain too. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/dr-fields-interv…out-prolotherapy/\">Watch now! </a>\r\n\r\nYou can read about Regenerative Orthopedics too. Click <a href=\"https://www.drfields.com\">here</a> to find out more.','Watch Peter A. Fields, MD, DC on KCAL/CBS','','inherit','closed','closed','','1436-revision-v1','','','2020-07-10 21:27:50','2020-07-10 21:27:50','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(3911,9,'2020-07-10 21:30:35','2020-07-10 21:30:35','[caption id=\"attachment_2337\" align=\"alignright\" width=\"166\"]<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"166\" height=\"264\" /> Peter A. Fields, MD, DC[/caption]\r\n\r\n<strong>Watch Peter A. Fields, MD, DC on KCAL/CBS</strong>\r\n\r\nPeter A. Fields, MD, DC is on KCAL/CBS. In this episode, the folks at KCAL/CBS interview Dr. Fields, as he discusses how you can get rid of your joint pain. Learn more about the Regenerative Medicine treatment called Prolotherapy. This non-surgical treatment is effective for a variety of sports injuries and can reduce arthritis pain too. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/dr-fields-interv…out-prolotherapy/\">Watch now! </a>\r\n\r\nYou can read about Regenerative Orthopedics too. Click <a href=\"https://www.drfields.com\">here</a> to find out more.','Watch Peter A. Fields, MD, DC on KCAL/CBS','','inherit','closed','closed','','1436-revision-v1','','','2020-07-10 21:30:35','2020-07-10 21:30:35','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(3912,9,'2020-07-10 21:32:10','2020-07-10 21:32:10','[caption id=\"attachment_2337\" align=\"alignright\" width=\"166\"]<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"166\" height=\"264\" /> Peter A. Fields, MD, DC[/caption]\r\n\r\n<strong>Watch Peter A. Fields, MD, DC on KCAL/CBS</strong>\r\n\r\nPeter A. Fields, MD, DC is on KCAL/CBS. In this episode, the folks at <a href=\"https://losangeles.cbslocal.com\">KCAL/CBS</a> interview Dr. Fields, as he discusses how you can get rid of your joint pain. Learn more about the Regenerative Medicine treatment called Prolotherapy. This non-surgical treatment is effective for a variety of sports injuries and can reduce arthritis pain too. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/dr-fields-interv…out-prolotherapy/\">Watch now! </a>\r\n\r\nYou can read about Regenerative Orthopedics too. Click <a href=\"https://www.drfields.com\">here</a> to find out more.','Watch Peter A. Fields, MD, DC on KCAL/CBS','','inherit','closed','closed','','1436-revision-v1','','','2020-07-10 21:32:10','2020-07-10 21:32:10','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(3913,9,'2020-07-10 21:46:47','2020-07-10 21:46:47','[caption id=\"attachment_2337\" align=\"alignright\" width=\"166\"]<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"166\" height=\"264\" /> Peter A. Fields, MD, DC[/caption]\r\n\r\n<strong>Watch Peter A. Fields, MD, DC on KCAL/CBS</strong>\r\n\r\nPeter A. Fields, MD, DC is on KCAL/CBS. In this episode, the folks at <a href=\"https://losangeles.cbslocal.com\">KCAL/CBS</a> talk about Prolotherapy while Dr. Fields treats a patient with knee pain. And you can get rid of your joint pain too! Learn more about the Regenerative Medicine treatment called Prolotherapy. This non-surgical treatment repairs a variety of sports injuries and reduces arthritis pain too. <a href=\"https://youtu.be/3JIY8OCt1FY\">Watch now! </a>\r\n\r\nIn this episode, KCAL 9 Los Angeles shows how Prolotherapy repairs injured or painful joints. Prolotherapy is a natural non-surgical method that assists the body to heal injured or weakened joints, ligaments, and tendons. With Prolotherapy, the weakened areas are injected with a natural solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated.\r\n\r\nYou can read about Regenerative Orthopedics too. Click <a href=\"https://www.drfields.com\">here</a> to find out more.','Watch Peter A. Fields, MD, DC on KCAL/CBS','','inherit','closed','closed','','1436-revision-v1','','','2020-07-10 21:46:47','2020-07-10 21:46:47','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(3914,9,'2020-07-10 21:59:20','2020-07-10 21:59:20','[caption id=\"attachment_2337\" align=\"alignright\" width=\"166\"]<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"166\" height=\"264\" /> Peter A. Fields, MD, DC[/caption]\r\n\r\n<strong>Watch Peter A. Fields, MD, DC on KCAL/CBS</strong>\r\n\r\nPeter A. Fields, MD, DC is on KCAL/CBS. In this episode, the folks at <a href=\"https://losangeles.cbslocal.com\">KCAL/CBS</a> talk about Prolotherapy while Dr. Fields treats a patient with knee pain. And you can get rid of your joint pain too! Learn more about the Regenerative Medicine treatment called Prolotherapy. This non-surgical treatment repairs a variety of sports injuries and reduces arthritis pain too. <a href=\"https://youtu.be/3JIY8OCt1FY\">Watch now! </a>\r\n\r\nIn this episode, KCAL 9 Los Angeles shows how Prolotherapy repairs injured or painful joints. Do you have arthritis? This popular technique has been shown to reduce arthritis pain in many patients. And tendonitis, bursitis, and other joint conditions are helped too! Prolotherapy is a natural non-surgical method that assists the body to heal injured or weakened joints, ligaments, and tendons. With Prolotherapy, the weakened areas are injected with a natural solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated. After about two or three treatments, most people notice quite a difference. After a few more, they are back to full function. Why wait? Repair your joint, and get back doing life like you want to. Are you an athlete with a sports injury? We can help you too! Call us today at 310-453-1234.\r\n\r\nYou can read about Regenerative Orthopedics too. Click <a href=\"https://www.drfields.com\">here</a> to find out more.','Prolotherapy Treatment by Peter A. Fields, MD, DC on KCAL/CBS','','inherit','closed','closed','','1436-revision-v1','','','2020-07-10 21:59:20','2020-07-10 21:59:20','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(3915,9,'2020-07-10 22:05:59','2020-07-10 22:05:59','[caption id=\"attachment_2337\" align=\"alignright\" width=\"166\"]<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"166\" height=\"264\" /> Peter A. Fields, MD, DC[/caption]\r\n\r\n<strong>Peter A. Fields, MD, DC Treas a Patient with Prolotherapy on KCAL/CBS</strong>\r\n\r\nPeter A. Fields, MD, DC is on KCAL/CBS. In this episode, the folks at <a href=\"https://losangeles.cbslocal.com\">KCAL/CBS</a> talk about Prolotherapy while Dr. Fields treats a patient with knee pain. Karen was living with knee pain for a long time after tearing her meniscus in a skiing accident. Prolotherapy repaired her knee. She got rid of her pain too! And you can get rid of your joint pain! Because this non-surgical treatment actually repairs the source of the pain, it is extremely effective. <a href=\"https://youtu.be/3JIY8OCt1FY\">Watch now! </a>\r\n\r\nIn this episode, KCAL 9 Los Angeles shows how Prolotherapy repairs injured or painful joints. Do you have arthritis? This popular technique has been shown to reduce arthritis pain in many patients. And tendonitis, bursitis, and other joint conditions are helped too! Prolotherapy is a natural non-surgical method that assists the body to heal injured or weakened joints, ligaments, and tendons. With Prolotherapy, the weakened areas are injected with a natural solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated. After about two or three treatments, most people notice quite a difference. After a few more, they are back to full function. Why wait? Repair your joint, and get back doing life like you want to. Are you an athlete with a sports injury? We can help you too! Call us today at 310-453-1234.\r\n\r\nYou can read about Regenerative Orthopedics too. Click <a href=\"https://www.drfields.com\">here</a> to find out more.','Prolotherapy Treatment by Peter A. Fields, MD, DC on KCAL/CBS','','inherit','closed','closed','','1436-revision-v1','','','2020-07-10 22:05:59','2020-07-10 22:05:59','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(3916,9,'2020-07-10 22:11:27','2020-07-10 22:11:27','[caption id=\"attachment_2337\" align=\"alignright\" width=\"166\"]<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"166\" height=\"264\" /> Peter A. Fields, MD, DC[/caption]\r\n\r\n<strong>Peter A. Fields, MD, DC Treas a Patient with Prolotherapy on KCAL/CBS</strong>\r\n\r\nPeter A. Fields, MD, DC is on KCAL/CBS. In this episode, the folks at <a href=\"https://losangeles.cbslocal.com\">KCAL/CBS</a> talk about Prolotherapy while Dr. Fields treats a patient with knee pain. Karen lived with knee pain for a long time after tearing her meniscus in a skiing accident. Prolotherapy repaired her knee. She got rid of her pain too! And you can get rid of your joint pain because this non-surgical treatment actually repairs the source of the pain. Prolotherapy is extremely effective at joint repair and pain reduction. <a href=\"https://youtu.be/3JIY8OCt1FY\">Watch now! </a>\r\n\r\nIn this episode, KCAL 9 Los Angeles shows how Prolotherapy repairs injured or painful joints. Do you have arthritis? If you do, you\'ll want to know that this popular technique has been shown to reduce arthritis pain in many patients. And tendonitis, bursitis, and other joint conditions are helped too!\r\n\r\nIs it surgery? No, Prolotherapy is a natural non-surgical method that assists the body to heal injured or weakened joints, ligaments, and tendons. With Prolotherapy, the weakened areas are injected with a natural solution that stimulates the growth of healthy, strong tissues. Plus, as the tendons and ligaments grow stronger and vibrant, the pain is alleviated.\r\n\r\nAfter about two or three treatments, most people notice quite a difference. Then, after a few more treatments, people are back to full function. Why wait? Repair your joint, and get back doing life like you want to. Are you an athlete with a sports injury? We can help you too! Call us today at 310-453-1234.\r\n\r\nYou can read about Regenerative Orthopedics too. Click <a href=\"https://www.drfields.com\">here</a> to find out more.','Prolotherapy Treatment by Peter A. Fields, MD, DC on KCAL/CBS','','inherit','closed','closed','','1436-revision-v1','','','2020-07-10 22:11:27','2020-07-10 22:11:27','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(3917,9,'2020-07-10 22:17:27','2020-07-10 22:17:27','[caption id=\"attachment_2337\" align=\"alignright\" width=\"166\"]<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"166\" height=\"264\" /> Peter A. Fields, MD, DC[/caption]\r\n\r\n<strong>Peter A. Fields, MD, DC Treats a Patient with Prolotherapy on KCAL/CBS</strong>\r\n\r\nHave you ever seen a Prolotherapy Treatment? Watch in here. In this episode, the folks at <a href=\"https://losangeles.cbslocal.com\">KCAL/CBS</a> talk about Prolotherapy while Dr. Fields treats a patient with knee pain. Karen lived with knee pain for a long time after tearing her meniscus in a skiing accident. Prolotherapy treatments repaired her knee. She got rid of her pain too! And you can get rid of your joint pain because this non-surgical treatment actually repairs the source of the pain. Prolotherapy is extremely effective at joint repair and pain reduction. <a href=\"https://youtu.be/3JIY8OCt1FY\">Watch now! </a>\r\n\r\nIn this episode, KCAL 9 Los Angeles shows how Prolotherapy repairs injured or painful joints. Do you have arthritis? If you do, you\'ll want to know that this popular technique reduces arthritis pain in many patients. And tendonitis, bursitis, and other joint conditions are helped too!\r\n\r\nIs it surgery? No, Prolotherapy treatments are a natural non-surgical method that assists the body to heal injured or weakened joints, ligaments, and tendons. With Prolotherapy, the weakened areas are injected with a natural solution that stimulates the growth of healthy, strong tissues. Plus, as the tendons and ligaments grow stronger and vibrant, the pain is alleviated.\r\n\r\nThe repair is quick too. After about two or three treatments, most people notice quite a difference. Then, after a few more treatments, people are back to full function. Why wait? Repair your joint, and get back doing life like you want to. Are you an athlete with a sports injury? We can help you too! Call us today at 310-453-1234.\r\n\r\nYou can read about Regenerative Orthopedics too. Click <a href=\"https://www.drfields.com\">here</a> to find out more.','Prolotherapy Treatment by Peter A. Fields, MD, DC on KCAL/CBS','','inherit','closed','closed','','1436-revision-v1','','','2020-07-10 22:17:27','2020-07-10 22:17:27','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(3918,9,'2020-07-10 22:21:41','2020-07-10 22:21:41','[caption id=\"attachment_2337\" align=\"alignright\" width=\"166\"]<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"166\" height=\"264\" /> Peter A. Fields, MD, DC[/caption]\r\n\r\n<strong>Peter A. Fields, MD, DC Treats a Patient with Prolotherapy on KCAL/CBS</strong>\r\n\r\nHave you ever seen a Prolotherapy Treatment? Watch it here. In this episode, the folks at <a href=\"https://losangeles.cbslocal.com\">KCAL/CBS</a> talk about Prolotherapy while Dr. Fields treats a patient with knee pain. Karen lived with knee pain for a long time after tearing her meniscus in a skiing accident. Prolotherapy treatments repaired her knee. She got rid of her pain too! And you can get rid of your joint pain because this non-surgical treatment actually repairs the source of the pain. Prolotherapy is extremely effective at joint repair and pain reduction. <a href=\"https://youtu.be/3JIY8OCt1FY\">Watch now! </a>\r\n\r\nIn this episode, KCAL 9 Los Angeles shows how a Prolotherapy can repair injured or painful joints. Do you have arthritis? If you do, you\'ll be happy to know that this popular technique reduces arthritis pain in many patients. And it treats other joint conditions as well. Pain causing tendonitis, bursitis, and other joint conditions are helped too!\r\n\r\nIs it surgery? No, Prolotherapy treatments are a natural non-surgical method that assists the body to heal injured or weakened joints, ligaments, and tendons. With Prolotherapy, the weakened areas are injected with a natural solution that stimulates the growth of healthy, strong tissues. Plus, as the tendons and ligaments grow stronger and vibrant, the pain is alleviated.\r\n\r\nThe repair is quick too. After about two or three treatments, most people notice quite a difference. Then, after a few more treatments, people are back to full function. Why wait? Repair your joint, and get back doing life like you want to. Are you an athlete with a sports injury? We can help you too! Call us today at 310-453-1234.\r\n\r\nYou can read about Regenerative Orthopedics too. Click <a href=\"https://www.drfields.com\">here</a> to find out more.','Prolotherapy Treatment by Peter A. Fields, MD, DC on KCAL/CBS','','inherit','closed','closed','','1436-revision-v1','','','2020-07-10 22:21:41','2020-07-10 22:21:41','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(3919,9,'2020-07-10 22:23:11','2020-07-10 22:23:11','[caption id=\"attachment_2337\" align=\"alignright\" width=\"166\"]<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"166\" height=\"264\" /> Peter A. Fields, MD, DC[/caption]\r\n\r\n<strong>Peter A. Fields, MD, DC Treats a Patient with Prolotherapy on KCAL/CBS</strong>\r\n\r\nHave you ever seen a Prolotherapy Treatment? Watch it here. In this episode, the folks at <a href=\"https://losangeles.cbslocal.com\">KCAL/CBS</a> talk about Prolotherapy while Dr. Fields treats a patient with knee pain. Karen lived with knee pain for a long time after tearing her meniscus in a skiing accident. Prolotherapy treatments repaired her knee. She got rid of her pain too! And you can get rid of your joint pain because this non-surgical treatment actually repairs the source of the pain. Prolotherapy is extremely effective at joint repair and pain reduction. <a href=\"https://youtu.be/3JIY8OCt1FY\">Watch now! </a>\r\n\r\nIn this episode, KCAL 9 Los Angeles shows how a Prolotherapy can repair injured or painful joints. Do you have arthritis? If you do, you\'ll be happy to know that this popular technique reduces arthritis pain in many patients. And it treats other joint conditions as well. Pain causing tendonitis, bursitis, and other joint conditions are helped too!\r\n\r\nIs it surgery? No, a Prolotherapy treatment is a natural non-surgical method that assists the body to heal injured or weakened joints, ligaments, and tendons. With Prolotherapy, the weakened areas are injected with a natural solution that stimulates the growth of healthy, strong tissues. Plus, as the tendons and ligaments grow stronger and vibrant, the pain is alleviated.\r\n\r\nThe repair is quick too. After about two or three treatments, most people notice quite a difference. Then, after a few more treatments, people are back to full function. Why wait? Repair your joint, and get back doing life like you want to. Are you an athlete with a sports injury? We can help you too! Call us today at 310-453-1234.\r\n\r\nYou can read about Regenerative Orthopedics too. Click <a href=\"https://www.drfields.com\">here</a> to find out more.','Prolotherapy Treatment by Peter A. Fields, MD, DC on KCAL/CBS','','inherit','closed','closed','','1436-revision-v1','','','2020-07-10 22:23:11','2020-07-10 22:23:11','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(3920,9,'2022-01-06 00:56:40','2022-01-06 00:56:40','<img class=\"alignleft wp-image-1685 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\n<h4>Peter A. Fields, MD, DC, The Athletic Doc<sup>®</sup></h4>\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\n<h4>Director of OrthoRegen<sup>®</sup></h4>\nDr. Fields is the Director of <a href=\"https://orthoregen.com/\" target=\"_blank\" rel=\"noopener noreferrer\">OrthoRegen<sup>®</sup></a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. Athletes and non-athletes alike come from around the US and the world to receive treatment, because Dr. Fields helps them to avoid unnecessary joint surgeries. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\" rel=\"noopener noreferrer\">Stem Cell Therapy</a> to help people avoid joint replacement.\n<h4>Regenerative Medicine Expert</h4>\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. Plus, he writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\">national magazine</a> as well as lecturing at various conferences around the world on these techniques.\n<h4>Hackett-Hemwall Foundation Instructor</h4>\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. And Dr. Fields has volunteered his time for two weeks nine different times on their medical trips to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Also, Dr. Fields was the director of one of only three clinics in Honduras.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h4>Regenerative Orthopedics Doctor</h4>\nDr. Fields is a leading expert in the field of Regenerative Orthopedics, which includes Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy. All of these treatments are natural non-surgical methods of assisting the body to heal weakened or injured joints, tendons and ligaments. With Regenerative Orthopedics, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\n<h4>The Athletic Doc<sup>®</sup></h4>\nDr. Fields is a very active and competitive triathlete, having completed eleven full <a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as numerous (half) Ironman Triathlons and many other triathlons. The Athletic Doc<sup>®</sup> has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\n<div id=\"centrevideo\" class=\"text-center\">[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong></div>\n&nbsp;\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Bio: Dr. Fields','','inherit','closed','closed','','216-autosave-v1','','','2022-01-06 00:56:40','2022-01-06 00:56:40','',216,'https://www.drfields.com/uncategorized/216-autosave-v1/',0,'revision','',0),(3921,9,'2020-07-11 23:28:55','2020-07-11 23:28:55','<img class=\"alignleft wp-image-1685 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc<sup>®</sup></h4>\r\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n<h4>Director of OrthoRegen<sup>®</sup></h4>\r\nDr. Fields is the Director of <a href=\"https://orthoregen.com/\" target=\"_blank\" rel=\"noopener noreferrer\">OrthoRegen<sup>®</sup></a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. Athletes and non-athletes alike come from around the US and the world to receive treatment, because Dr. Fields helps them to avoid unnecessary joint surgeries. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid joint replacement.\r\n<h4>Regenerative Medicine Expert</h4>\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. Plus, he writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\">national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n<h4>Hackett-Hemwall Foundation Instructor</h4>\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. And Dr. Fields has volunteered his time for two weeks nine different times on their medical trips to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Also, Dr. Fields was the director of one of only three clinics in Honduras.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Prolotherapy Doctor</h4>\r\nDr. Fields is the leading expert in the field or <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Prolotherapy treatment</a>, Prolotherapy treatment is a natural non-surgical method of assisting the body to heal weakened or injured joints, tendons and ligaments. With Prolotherapy treatment, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h6>The Athletic Doc<sup>®</sup></h6>\r\nDr. Fields is a very active and competitive triathlete, having completed nine full <a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as nine 70.3 (half) Ironman Triathlons and over 40 other triathlons. The Athletic Doc<sup>®</sup> has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n<div id=\"centrevideo\" class=\"text-center\">[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2020-07-11 23:28:55','2020-07-11 23:28:55','',216,'https://www.drfields.com/uncategorized/216-revision-v1/',0,'revision','',0),(3922,9,'2020-07-11 23:32:19','2020-07-11 23:32:19','<img class=\"alignleft wp-image-1685 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc<sup>®</sup></h4>\r\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n<h4>Director of OrthoRegen<sup>®</sup></h4>\r\nDr. Fields is the Director of <a href=\"https://orthoregen.com/\" target=\"_blank\" rel=\"noopener noreferrer\">OrthoRegen<sup>®</sup></a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. Athletes and non-athletes alike come from around the US and the world to receive treatment, because Dr. Fields helps them to avoid unnecessary joint surgeries. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid joint replacement.\r\n<h4>Regenerative Medicine Expert</h4>\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. Plus, he writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\">national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n<h4>Hackett-Hemwall Foundation Instructor</h4>\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. And Dr. Fields has volunteered his time for two weeks nine different times on their medical trips to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Also, Dr. Fields was the director of one of only three clinics in Honduras.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Regenerative Orthopedics Doctor</h4>\r\nDr. Fields is a leading expert in the field of Regenerative Orthopedics, which includes Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy. All of these treatments are natural non-surgical methods of assisting the body to heal weakened or injured joints, tendons and ligaments. With Regenerative Orthopedics, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h4>The Athletic Doc<sup>®</sup></h4>\r\nDr. Fields is a very active and competitive triathlete, having completed eleven full <a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as numerous (half) Ironman Triathlons and many other triathlons. The Athletic Doc<sup>®</sup> has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n<div id=\"centrevideo\" class=\"text-center\">[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2020-07-11 23:32:19','2020-07-11 23:32:19','',216,'https://www.drfields.com/uncategorized/216-revision-v1/',0,'revision','',0),(3923,9,'2020-07-11 23:39:36','2020-07-11 23:39:36','<img class=\"alignleft wp-image-1685 size-medium\" title=\"prp los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>PRP Doctor</h4>\r\nPeter A. Fields, MD DC, is a PRP Doctor in Los Angeles and the founder of OrthoRegen<sup>®</sup>. Dr. Fields is a leading expert in using (PRP) Platelet Rich Plasma therapy to resolve painful conditions and sports injuries to help people avoid full joint replacement. He treats patients from around the US and the world. Dr. Fields help people avoid unnecessary orthopedic surgeries whether arthroscopic or full surgery.\r\n<h4>What is a PRP Doctor?</h4>\r\nA PRP Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. PRP Doctors like Dr. Fields use Platelet Rich Plasma Injections that help accelerate the normal healing process. Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of PRP Regenerative Treatments.\r\n<h4>What Does PRP stand for?</h4>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as platelets, white blood cells, and red cells. The Harvest method that Dr. Fields uses concentrates the platelets 7-10 times of what is generally found in blood. Other systems concentrate them, but to a lesser extent.\r\n<h4>What is PRP Treatment?</h4>\r\nPRP treatment, as used in regenerative orthopedics, is a non-surgical healing treatment for healing soft tissue performed by a PRP Doctor. Dr. Fields makes precise injections of your own concentrated blood (PRP) into the affected areas to promote healing of musculoskeletal problems. Blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Is PRP Treatment Safe?</h4>\r\nPRP treatment is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities thoroughly with patients during the pre-treatment consultation.\r\nWhat Does a PRP Doctor Treat?\r\n\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that Dr. Fields treats. PRP has also been effective in treating arthritis, though more severe cases get better results with Dr. Fields’ Stem Cell treatments.\r\n\r\nDr. Fields has had great success in treating chronic pain and sports injuries including:\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Knee Injuries:</strong> ACL, MCL LCL, Meniscus, Arthritis, Kneecap Instability</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Knee Injuries Treated with Prolotherapy here\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Elbow Injuries:</strong> Tennis Elbow, Medial Epicondylitis,Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Elbow Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Shoulder Injuries:</strong> Rotator Cuff Tears, Labrum Tears, Tenositis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Shoulder Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Back Injuries:</strong> Arthritis, Facet Joints, Sacro-Iliac dysfunction</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Back Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hip Injuries:</strong> Tenositis, Bursitis,Labrum</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Hip Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Foot/Ankle Injuries:</strong> Ankle Sprains, Arthritis, Achilles Dysfunction, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Foot/Ankle Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hand/Wrist/ Injuries:</strong> Finger/Joint Tendinitis, Ligament Tears, Arthritis, Carpal tunnel</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Hand/Wrist Injuries Treated with Prolotherapy here.\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','PRP Doctor','','inherit','closed','closed','','266-revision-v1','','','2020-07-11 23:39:36','2020-07-11 23:39:36','',266,'https://www.drfields.com/uncategorized/266-revision-v1/',0,'revision','',0),(3924,9,'2020-07-12 00:08:32','2020-07-12 00:08:32','<img class=\"alignleft wp-image-1685 size-medium\" title=\"prp los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\n<h4>PRP Doctor</h4>\nPeter A. Fields, MD DC, is a PRP Doctor in the Los Angeles area and the founder of OrthoRegen<sup>®</sup>. PRP stands for Platelet Rich Plasma and Dr. Fields is a leading expert in using PRP to resolve painful joint conditions and sports injuries to help people avoid joint replacement. People come from all over the US and even the world because Dr. Fields helps them to avoid unnecessary surgeries.\n<h4>What is a PRP Doctor?</h4>\nA PRP doctor provides regenerative orthopedics, which means that non-surgical alternative therapies that regenerate the joint and spine are offered. PRP doctors like Dr. Fields use Platelet Rich Plasma Injections (and other regenerative treatments) that help accelerate the normal healing process. And Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of PRP Regenerative Treatments.\n<h4>What Does PRP Los Angeles Stand For?</h4>\nPRP stands for Platelet Rich Plasma.  And OrthoRegen<sup>®</sup> is located near Los Angeles. The Plasma portion in the name Platelet Rich Plasma refers to the fluid portion of blood which contains cellular components such as platelets, white blood cells, and red cells. Plus, the Harvest method that Dr. Fields uses concentrates the platelets 7-10 times of what is generally found in the blood. Other systems concentrate them, but to a lesser extent.\n<h4>What is PRP Treatment?</h4>\nPRP treatment, as used in Regenerative Orthopedics, is a non-surgical healing treatment for healing soft tissue performed by a PRP Doctor. And Dr. Fields makes precise injections of your own concentrated blood (PRP) into the affected areas to promote healing of musculoskeletal problems. Not only that, but blood platelets also contain potent growth factors necessary to get your tissue repair active and boost regeneration at the injury site.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h4>Is PRP Treatment Safe?</h4>\nPRP treatment is an extremely safe procedure. Plus, the risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. Also, the risks are often less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. But Dr. Fields will discuss these possibilities thoroughly with patients during the pre-treatment consultation.\n\n<strong>What Does a PRP Doctor Treat?</strong>\n\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that Dr. Fields treats. And PRP has been effective in treating arthritis too. However, when arthritis is more severe, Dr. Fields and his team have fount that Stem Cell Therapy provides better results.\n\nDr. Fields has had great success in treating chronic pain and sports injuries and just some of them include:\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li><strong>Knee Injuries:</strong> ACL, MCL LCL, Meniscus, Arthritis, Kneecap Instability</li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li><strong>Elbow Injuries:</strong> Tennis Elbow, Medial Epicondylitis, Tendonitis</li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li><strong>Shoulder Injuries:</strong> Rotator Cuff Tears, Labrum Tears, Tendonitis</li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li><strong>Back Injuries:</strong> Arthritis, Facet Joints, Sacro-Iliac dysfunction</li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li><strong>Hip Injuries:</strong> Tendonitis, Bursitis, Labrum</li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li><strong>Foot/Ankle Injuries:</strong> Ankle Sprains, Arthritis, Achilles Dysfunction, Tendonitis</li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li><strong>Hand/Wrist/ Injuries:</strong> Finger/Joint Tendonitis, Ligament Tears, Arthritis, Carpal Tunnel</li>\n</ul>\n</li>\n</ul>\n<h4>Are You A Candidate for PRP Treatment?</h4>\nDo you have a sports injury or a painful joint? Don\'t put up with it any longer. Call <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with our Regenerative Orthopedic and PRP Los Angeles Doctor to see if PRP can get you pain-free and ‘back in the game’. And we would be more than happy to help you get back to the activitiesresume your normal lifestyle. <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">Contact Dr. Fields\' office</a> to set up an in-person consultation.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','PRP Doctor in the Los Angeles Area','','inherit','closed','closed','','266-autosave-v1','','','2020-07-12 00:08:32','2020-07-12 00:08:32','',266,'https://www.drfields.com/uncategorized/266-autosave-v1/',0,'revision','',0),(3925,9,'2020-07-11 23:53:49','2020-07-11 23:53:49','<img class=\"alignleft wp-image-1685 size-medium\" title=\"prp los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>PRP Doctor</h4>\r\nPeter A. Fields, MD DC, is a PRP Doctor in the Los Angeles area and the founder of OrthoRegen<sup>®</sup>. PRP stands for Platelet Rich Plasma and Dr. Fields is a leading expert in using PRP to resolve painful joint conditions and sports injuries to help people avoid joint replacement. People come from all over the US and even the world because Dr. Fields helps them to avoid unnecessary surgeries.\r\n<h4>What is a PRP Doctor?</h4>\r\nA PRP doctor provides regenerative orthopedics, which means that non-surgical alternative therapies that regenerate the joint and spine are offered. PRP doctors like Dr. Fields use Platelet Rich Plasma Injections (and other regenerative treatments) that help accelerate the normal healing process. And Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of PRP Regenerative Treatments.\r\n<h4>What Does PRP Los Angeles Stand For?</h4>\r\nPRP stands for Platelet Rich Plasma.  And OrthoRegen<sup>®</sup> is located near Los Angeles. The Plasma portion in the name Platelet Rich Plasma refers to the fluid portion of blood which contains cellular components such as platelets, white blood cells, and red cells. The Harvest method that Dr. Fields uses concentrates the platelets 7-10 times of what is generally found in the blood. Other systems concentrate them, but to a lesser extent.\r\n<h4>What is PRP Treatment?</h4>\r\nPRP treatment, as used in Regenerative Orthopedics, is a non-surgical healing treatment for healing soft tissue performed by a PRP Doctor. And Dr. Fields makes precise injections of your own concentrated blood (PRP) into the affected areas to promote healing of musculoskeletal problems. Not only that, but blood platelets also contain potent growth factors necessary to get your tissue repair active and boost regeneration at the injury site.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Is PRP Treatment Safe?</h4>\r\nPRP treatment is an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities thoroughly with patients during the pre-treatment consultation.\r\nWhat Does a PRP Doctor Treat?\r\n\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that Dr. Fields treats. PRP has also been effective in treating arthritis, though more severe cases get better results with Dr. Fields’ Stem Cell treatments.\r\n\r\nDr. Fields has had great success in treating chronic pain and sports injuries including:\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Knee Injuries:</strong> ACL, MCL LCL, Meniscus, Arthritis, Kneecap Instability</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Knee Injuries Treated with Prolotherapy here\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Elbow Injuries:</strong> Tennis Elbow, Medial Epicondylitis,Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Elbow Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Shoulder Injuries:</strong> Rotator Cuff Tears, Labrum Tears, Tenositis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Shoulder Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Back Injuries:</strong> Arthritis, Facet Joints, Sacro-Iliac dysfunction</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Back Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hip Injuries:</strong> Tenositis, Bursitis,Labrum</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Hip Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Foot/Ankle Injuries:</strong> Ankle Sprains, Arthritis, Achilles Dysfunction, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Foot/Ankle Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hand/Wrist/ Injuries:</strong> Finger/Joint Tendinitis, Ligament Tears, Arthritis, Carpal tunnel</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Hand/Wrist Injuries Treated with Prolotherapy here.\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','PRP Doctor in the Los Angeles Area','','inherit','closed','closed','','266-revision-v1','','','2020-07-11 23:53:49','2020-07-11 23:53:49','',266,'https://www.drfields.com/uncategorized/266-revision-v1/',0,'revision','',0),(3926,9,'2020-07-11 23:56:56','2020-07-11 23:56:56','<img class=\"alignleft wp-image-1685 size-medium\" title=\"prp los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>PRP Doctor</h4>\r\nPeter A. Fields, MD DC, is a PRP Doctor in the Los Angeles area and the founder of OrthoRegen<sup>®</sup>. PRP stands for Platelet Rich Plasma and Dr. Fields is a leading expert in using PRP to resolve painful joint conditions and sports injuries to help people avoid joint replacement. People come from all over the US and even the world because Dr. Fields helps them to avoid unnecessary surgeries.\r\n<h4>What is a PRP Doctor?</h4>\r\nA PRP doctor provides regenerative orthopedics, which means that non-surgical alternative therapies that regenerate the joint and spine are offered. PRP doctors like Dr. Fields use Platelet Rich Plasma Injections (and other regenerative treatments) that help accelerate the normal healing process. And Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of PRP Regenerative Treatments.\r\n<h4>What Does PRP Los Angeles Stand For?</h4>\r\nPRP stands for Platelet Rich Plasma.  And OrthoRegen<sup>®</sup> is located near Los Angeles. The Plasma portion in the name Platelet Rich Plasma refers to the fluid portion of blood which contains cellular components such as platelets, white blood cells, and red cells. The Harvest method that Dr. Fields uses concentrates the platelets 7-10 times of what is generally found in the blood. Other systems concentrate them, but to a lesser extent.\r\n<h4>What is PRP Treatment?</h4>\r\nPRP treatment, as used in Regenerative Orthopedics, is a non-surgical healing treatment for healing soft tissue performed by a PRP Doctor. And Dr. Fields makes precise injections of your own concentrated blood (PRP) into the affected areas to promote healing of musculoskeletal problems. Not only that, but blood platelets also contain potent growth factors necessary to get your tissue repair active and boost regeneration at the injury site.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Is PRP Treatment Safe?</h4>\r\nPRP treatment is an extremely safe procedure. Plus, the risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. Also, the risks are often less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities thoroughly with patients during the pre-treatment consultation.\r\n\r\n<strong>What Does a PRP Doctor Treat?</strong>\r\n\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that Dr. Fields treats. And PRP has been effective in treating arthritis too. However, when arthritis is more severe, Dr. Fields and his team have fount that Stem Cell Therapy provides better results.\r\n\r\nDr. Fields has had great success in treating chronic pain and sports injuries including:\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Knee Injuries:</strong> ACL, MCL LCL, Meniscus, Arthritis, Kneecap Instability</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Knee Injuries Treated with Prolotherapy here\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Elbow Injuries:</strong> Tennis Elbow, Medial Epicondylitis,Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Elbow Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Shoulder Injuries:</strong> Rotator Cuff Tears, Labrum Tears, Tenositis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Shoulder Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Back Injuries:</strong> Arthritis, Facet Joints, Sacro-Iliac dysfunction</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Back Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hip Injuries:</strong> Tenositis, Bursitis,Labrum</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Hip Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Foot/Ankle Injuries:</strong> Ankle Sprains, Arthritis, Achilles Dysfunction, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Foot/Ankle Injuries Treated with Prolotherapy here.\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hand/Wrist/ Injuries:</strong> Finger/Joint Tendinitis, Ligament Tears, Arthritis, Carpal tunnel</li>\r\n</ul>\r\n</li>\r\n</ul>\r\nSee a complete list of Hand/Wrist Injuries Treated with Prolotherapy here.\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with our Prolotherapy Doctor to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','PRP Doctor in the Los Angeles Area','','inherit','closed','closed','','266-revision-v1','','','2020-07-11 23:56:56','2020-07-11 23:56:56','',266,'https://www.drfields.com/uncategorized/266-revision-v1/',0,'revision','',0),(3927,9,'2020-07-12 00:04:15','2020-07-12 00:04:15','<img class=\"alignleft wp-image-1685 size-medium\" title=\"prp los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>PRP Doctor</h4>\r\nPeter A. Fields, MD DC, is a PRP Doctor in the Los Angeles area and the founder of OrthoRegen<sup>®</sup>. PRP stands for Platelet Rich Plasma and Dr. Fields is a leading expert in using PRP to resolve painful joint conditions and sports injuries to help people avoid joint replacement. People come from all over the US and even the world because Dr. Fields helps them to avoid unnecessary surgeries.\r\n<h4>What is a PRP Doctor?</h4>\r\nA PRP doctor provides regenerative orthopedics, which means that non-surgical alternative therapies that regenerate the joint and spine are offered. PRP doctors like Dr. Fields use Platelet Rich Plasma Injections (and other regenerative treatments) that help accelerate the normal healing process. And Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of PRP Regenerative Treatments.\r\n<h4>What Does PRP Los Angeles Stand For?</h4>\r\nPRP stands for Platelet Rich Plasma.  And OrthoRegen<sup>®</sup> is located near Los Angeles. The Plasma portion in the name Platelet Rich Plasma refers to the fluid portion of blood which contains cellular components such as platelets, white blood cells, and red cells. Plus, the Harvest method that Dr. Fields uses concentrates the platelets 7-10 times of what is generally found in the blood. Other systems concentrate them, but to a lesser extent.\r\n<h4>What is PRP Treatment?</h4>\r\nPRP treatment, as used in Regenerative Orthopedics, is a non-surgical healing treatment for healing soft tissue performed by a PRP Doctor. And Dr. Fields makes precise injections of your own concentrated blood (PRP) into the affected areas to promote healing of musculoskeletal problems. Not only that, but blood platelets also contain potent growth factors necessary to get your tissue repair active and boost regeneration at the injury site.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Is PRP Treatment Safe?</h4>\r\nPRP treatment is an extremely safe procedure. Plus, the risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. Also, the risks are often less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. Dr. Fields will discuss these possibilities thoroughly with patients during the pre-treatment consultation.\r\n\r\n<strong>What Does a PRP Doctor Treat?</strong>\r\n\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that Dr. Fields treats. And PRP has been effective in treating arthritis too. However, when arthritis is more severe, Dr. Fields and his team have fount that Stem Cell Therapy provides better results.\r\n\r\nDr. Fields has had great success in treating chronic pain and sports injuries including:\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Knee Injuries:</strong> ACL, MCL LCL, Meniscus, Arthritis, Kneecap Instability</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Elbow Injuries:</strong> Tennis Elbow, Medial Epicondylitis, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Shoulder Injuries:</strong> Rotator Cuff Tears, Labrum Tears, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Back Injuries:</strong> Arthritis, Facet Joints, Sacro-Iliac dysfunction</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hip Injuries:</strong> Tendonitis, Bursitis,Labrum</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Foot/Ankle Injuries:</strong> Ankle Sprains, Arthritis, Achilles Dysfunction, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hand/Wrist/ Injuries:</strong> Finger/Joint Tendonitis, Ligament Tears, Arthritis, Carpal Tunnel</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with our Regenerative Orthopedic and PRP Los Angeles Doctor to see if PRP can get you pain-free and ‘back in the game’. We can help you resume your normal lifestyle. <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">Contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','PRP Doctor in the Los Angeles Area','','inherit','closed','closed','','266-revision-v1','','','2020-07-12 00:04:15','2020-07-12 00:04:15','',266,'https://www.drfields.com/uncategorized/266-revision-v1/',0,'revision','',0),(3928,9,'2020-07-12 00:09:03','2020-07-12 00:09:03','<img class=\"alignleft wp-image-1685 size-medium\" title=\"prp los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>PRP Doctor</h4>\r\nPeter A. Fields, MD DC, is a PRP Doctor in the Los Angeles area and the founder of OrthoRegen<sup>®</sup>. PRP stands for Platelet Rich Plasma and Dr. Fields is a leading expert in using PRP to resolve painful joint conditions and sports injuries to help people avoid joint replacement. People come from all over the US and even the world because Dr. Fields helps them to avoid unnecessary surgeries.\r\n<h4>What is a PRP Doctor?</h4>\r\nA PRP doctor provides regenerative orthopedics, which means that non-surgical alternative therapies that regenerate the joint and spine are offered. PRP doctors like Dr. Fields use Platelet Rich Plasma Injections (and other regenerative treatments) that help accelerate the normal healing process. And Dr.Fields is passionate about helping his clients eliminate pain for optimal long-term results, with the use of PRP Regenerative Treatments.\r\n<h4>What Does PRP Los Angeles Stand For?</h4>\r\nPRP stands for Platelet Rich Plasma.  And OrthoRegen<sup>®</sup> is located near Los Angeles. The Plasma portion in the name Platelet Rich Plasma refers to the fluid portion of blood which contains cellular components such as platelets, white blood cells, and red cells. Plus, the Harvest method that Dr. Fields uses concentrates the platelets 7-10 times of what is generally found in the blood. Other systems concentrate them, but to a lesser extent.\r\n<h4>What is PRP Treatment?</h4>\r\nPRP treatment, as used in Regenerative Orthopedics, is a non-surgical healing treatment for healing soft tissue performed by a PRP Doctor. And Dr. Fields makes precise injections of your own concentrated blood (PRP) into the affected areas to promote healing of musculoskeletal problems. Not only that, but blood platelets also contain potent growth factors necessary to get your tissue repair active and boost regeneration at the injury site.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Is PRP Treatment Safe?</h4>\r\nPRP treatment is an extremely safe procedure. Plus, the risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. Also, the risks are often less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. But Dr. Fields will discuss these possibilities thoroughly with patients during the pre-treatment consultation.\r\n\r\n<strong>What Does a PRP Doctor Treat?</strong>\r\n\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that Dr. Fields treats. And PRP has been effective in treating arthritis too. However, when arthritis is more severe, Dr. Fields and his team have fount that Stem Cell Therapy provides better results.\r\n\r\nDr. Fields has had great success in treating chronic pain and sports injuries and just some of them include:\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Knee Injuries:</strong> ACL, MCL LCL, Meniscus, Arthritis, Kneecap Instability</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Elbow Injuries:</strong> Tennis Elbow, Medial Epicondylitis, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Shoulder Injuries:</strong> Rotator Cuff Tears, Labrum Tears, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Back Injuries:</strong> Arthritis, Facet Joints, Sacro-Iliac dysfunction</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hip Injuries:</strong> Tendonitis, Bursitis, Labrum</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Foot/Ankle Injuries:</strong> Ankle Sprains, Arthritis, Achilles Dysfunction, Tendonitis</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Hand/Wrist/ Injuries:</strong> Finger/Joint Tendonitis, Ligament Tears, Arthritis, Carpal Tunnel</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>Are You A Candidate for PRP Treatment?</h4>\r\nDo you have a sports injury or a painful joint? Don\'t put up with it any longer. Call <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with our Regenerative Orthopedic and PRP Los Angeles Doctor to see if PRP can get you pain-free and ‘back in the game’. And we would be more than happy to help you get back to the activities you love and to resume your normal lifestyle. <a href=\"https://www.drfields.com/contact/\" rel=\"noopener noreferrer\">Contact Dr. Fields\' office</a> to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','PRP Doctor in the Los Angeles Area','','inherit','closed','closed','','266-revision-v1','','','2020-07-12 00:09:03','2020-07-12 00:09:03','',266,'https://www.drfields.com/uncategorized/266-revision-v1/',0,'revision','',0),(3929,0,'2020-07-16 16:30:38','2020-07-16 16:30:38','','iwp_log_5f1080ae665cf','','publish','closed','closed','','iwp_log_5f1080ae665cf','','','2020-07-16 16:30:38','2020-07-16 16:30:38','',0,'https://www.drfields.com/uncategorized/iwp_log_5f1080ae665cf/',0,'iwp_log','',0),(3932,8,'2020-07-23 21:33:28','2020-07-23 21:33:28','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\r\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> neck treatment at OrthoRegen<sup>®</sup>.\r\n\r\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\r\nDr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\r\n\r\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\r\n\r\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n','Neck Injury Treatment','','inherit','closed','closed','','536-revision-v1','','','2020-07-23 21:33:28','2020-07-23 21:33:28','',536,'https://www.drfields.com/uncategorized/536-revision-v1/',0,'revision','',0),(3933,8,'2020-07-23 21:34:43','2020-07-23 21:34:43','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\r\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> neck treatment at OrthoRegen<sup>®</sup>.\r\n\r\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\r\nDr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\r\n\r\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\r\n\r\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n','Neck Injury Treatment','','inherit','closed','closed','','536-revision-v1','','','2020-07-23 21:34:43','2020-07-23 21:34:43','',536,'https://www.drfields.com/uncategorized/536-revision-v1/',0,'revision','',0),(3934,8,'2020-07-23 21:35:35','2020-07-23 21:35:35','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg\" alt=\"Dr.doug – Headaches & Shoulder\"]\r\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Shoulder Treatment</h4>\r\nAt OrthoRegen<sup>®</sup>, shoulder injuries are one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Shoulder injuries are common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive prolotherapy shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\r\n\r\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\r\n\">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist and swimmer, understands your desire to return to full participation in your training and competition.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen<sup>®</sup> are:</strong>\r\n<ul>\r\n 	<li>Acromioclavicular joint arthrosis</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation</li>\r\n 	<li>Frozen shoulder</li>\r\n 	<li>Glenoid labrum tear</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Multi-directional instability</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Shoulder dislocation</li>\r\n 	<li>Shoulder instability</li>\r\n 	<li>Shoulder pain</li>\r\n 	<li>Shoulder separation</li>\r\n 	<li>SLAP lesion</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Swimmers shoulder</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendonosis</li>\r\n 	<li>Torn labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials/\">Shoulder Prolotherapy Testimonials page</a>.\r\n\r\n','Shoulder Injury Treatment','','inherit','closed','closed','','545-revision-v1','','','2020-07-23 21:35:35','2020-07-23 21:35:35','',545,'https://www.drfields.com/uncategorized/545-revision-v1/',0,'revision','',0),(3935,9,'2020-07-26 01:20:06','2020-07-26 01:20:06','A few years ago we reported on an FDA warning about neurological problems after epidural corticosteroid injections. But what is the newest information? A lot of people are in pain, and because of that, many procedures are done to manage that pain. And the number of those pain management procedures are increasing over the years.\n<h3>Epidural Corticosteroids</h3>\nA variety of painful conditions benefit from techniques that reduce pain. And corticosteroid injections or cortisone injections are a common treatment recommended by many physicians. At OrthoRegen, we treat joint pain with Regenerative Orthopedics, which also are injections, but the injections do not contain <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">cortisone</a>.\n\nCorticosteroid injections are given in different locations. They may be injected into joints, or they may be used as nerve blocks. Injectable corticosteroids are used quite often to reduce swelling or inflammation. And corticosteroids injected into the epidural space of the spine have been performed for many decades.1 But in our previous article, we discussed the FDA warning that injections of corticosteroids into the epidural space of the spine can result in rare but serious adverse events, including loss of vision, stroke, paralysis, and death.\n<h3>Stellate Ganglion Nerve Block (SGNB)</h3>\nCorticosteroids are also injected into the neck along with some type of anesthetic for a procedure called a stellate ganglion nerve block (SGNB). These procedures have been around for quite a while too. Are they safe? We took a look at the results from a systematic review in the journal, <em>Regional Anesthesia &amp; Pain Medicine</em>. What\'s a systematic review? These types of reviews gather a bunch of different studies and take a look at the overall results of all of those studies.\n\nThe research team in this particular systematic review looked at eighteen years of results and 4812 studies. The researchers identified 260 cases of adverse events with SGNB, including medication side effects, a patient who developed quadriplegia, five who required a tracheostomy, and one death.\n\nWhat was the most common side effect? Hoarseness was reported in 27.6% of the cases. This particular type of nerve block is considered relatively safe, with severe complications occurring in 1.7 out of 1000 blocks. Interestingly, complications also occurred in a delayed manner, leading the researchers to conclude, \"The importance of constant vigilance along with accessibility to resuscitation equipment for all SGNB procedures cannot be overstated.\"2\n\nSerious adverse events include death, paralysis, seizure, stroke, and others that can occur after corticosteroid injections in both epidural and SGNB procedures. Because of this, we recommend seeking more conservative therapies to treat pain first. Regenerative Orthopedics is one way to treat joint pain without the need for surgery. These non-surgical techniques are effective at treating many painful joint conditions.\n\nWhat are some examples of corticosteroids? Injectable corticosteroids include methylprednisolone, hydrocortisone, triamcinolone, betamethasone, and dexamethasone.\n\nThere are times that corticosteroids are needed. But there are ways to avoid them and their side effects when they really are not necessary. Regenerative Orthopedics is a great way to avoid cortisone injections to treat and repair painful joint conditions.\n\n<a href=\"http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections\" target=\"_blank\" rel=\"noopener noreferrer\">1 http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections</a>\n\n2 Goel, Vasudha, et al. \"Complications associated with stellate ganglion nerve block: a systematic review.\" <i>Regional Anesthesia &amp; Pain Medicine</i> 44.6 (2019): 669-678.','Problems After Corticosteroid Injections','','inherit','closed','closed','','1429-autosave-v1','','','2020-07-26 01:20:06','2020-07-26 01:20:06','',1429,'https://www.drfields.com/uncategorized/1429-autosave-v1/',0,'revision','',0),(3936,9,'2020-07-26 00:17:23','2020-07-26 00:17:23','A few years ago we reported on an FDA warning about neurological problems after epidural corticosteroid injection. But what is the newest information? Let\'s take a look at a recent systematic review. These types of reviews gather a bunch of different studies and take a look at the overall results of all of those studies.\r\n\r\nA lot of people are in pain, and because of that, many procedures are done to manage that pain. And the number of those pain management procedures are increasing over the years. ROCKVILLE, MD-The US Food and Drug Administration (FDA) is warning that injection of corticosteroids into the epidural space of the spine may result in rare but serious adverse events, including loss of vision, stroke, paralysis, and death.\r\n\r\nThe FDA is requiring the addition of a warning to the drug labels of injectable corticosteroids to describe these risks.\r\n\r\nInjectable corticosteroids are commonly used to reduce swelling or inflammation. Injecting corticosteroids into the epidural space of the spine has been a widespread practice for many decades; however, the effectiveness and safety of the drugs for this use have not been established, and the FDA has not approved corticosteroids for such use.\r\n\r\nThe FDA reviewed a sampling of cases from the FDA Adverse Event Reporting System (FAERS) database, as well as cases in the medical literature of serious neurologic adverse events associated with epidural corticosteroid injections. Serious adverse events included death, spinal cord infarction, paraplegia, quadriplegia, cortical blindness, stroke, seizures, nerve injury, and brain edema. Many cases were temporally associated with the corticosteroid injections, with adverse events occurring within minutes to 48 hours after the corticosteroid injections. In some cases, diagnoses of neurologic adverse events were confirmed through magnetic resonance imaging or computed tomography scan. Many patients did not recover from these reported adverse events.\r\n\r\n<strong>Additional Information for Healthcare Professionals</strong>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>Rare but serious neurologic adverse events have been reported with epidural corticosteroid injections, including spinal cord infarction, paraplegia, quadriplegia, cortical blindness, stroke, and death.</li>\r\n 	<li>These serious neurologic events have been reported with and without the use of fluoroscopy.</li>\r\n 	<li>Discuss with patients the benefits and risks of epidural corticosteroid injections and other possible treatments.</li>\r\n 	<li>Counsel patients to seek emergency medical attention immediately if they experience symptoms after receiving an epidural corticosteroid injection, such as loss of vision or vision changes; tingling in their arms or legs; sudden weakness or numbness in their face, arm, or leg on one or both sides of the body; dizziness; severe headache; or seizures.</li>\r\n 	<li>Report adverse effects following epidural corticosteroid injections to the FDA MedWatch program: <a title=\"https://www.accessdata.fda.gov/scripts/medwatch/\" href=\"https://www.accessdata.fda.gov/scripts/medwatch/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.accessdata.fda.gov/scripts/medwatch/</a></li>\r\n</ul>\r\n</li>\r\n</ul>\r\nTo raise awareness of the risks of epidural corticosteroid injections in the medical community, the FDA’s Safe Use Initiative convened a panel of experts, including pain management experts to help define the techniques for such injections which would reduce preventable harm. The expert panel’s recommendations will be released when they are finalized.\r\n\r\nAs part of the FDA’s ongoing effort to investigate this issue, they plan to convene an Advisory Committee meeting of external experts in late 2014 to discuss the benefits and risks of epidural corticosteroid injections and to determine if further FDA actions are needed.\r\n\r\nInjectable corticosteroids include methylprednisolone, hydrocortisone, triamcinolone, betamethasone, and dexamethasone. This safety issue is unrelated to the contamination of compounded corticosteroid injection products reported in 2012.\r\n\r\nSOURCE: US Food and Drug Administration\r\n\r\n-- April 23, 2014 --\r\n\r\n<a href=\"http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections</a>','Problems After Epidural Corticosteroid Injections','','inherit','closed','closed','','1429-revision-v1','','','2020-07-26 00:17:23','2020-07-26 00:17:23','',1429,'https://www.drfields.com/uncategorized/1429-revision-v1/',0,'revision','',0),(3937,9,'2020-07-26 01:06:57','2020-07-26 01:06:57','A few years ago we reported on an FDA warning about neurological problems after epidural corticosteroid injection. But what is the newest information? A lot of people are in pain, and because of that, many procedures are done to manage that pain. And the number of those pain management procedures are increasing over the years.\r\n\r\nA variety of painful conditions benefit from techniques that reduce pain. And corticosteroid injections or cortisone injections are a common treatment recommended by many physicians. At OrthoRegen, we treat joint pain with Regenerative Orthopedics, which also are injections, but they do not contain cortisone. Corticosteroid injections are given in different locations. They may be injected into joints, or they may be used as nerve blocks. Injectable corticosteroids are used quite often to reduce swelling or inflammation. And corticosteroids injected into the epidural space of the spine have been performed for many decades.1 But in our previous article, we discussed the FDA warning that injections of corticosteroids into the epidural space of the spine can result in rare but serious adverse events, including loss of vision, stroke, paralysis, and death.\r\n\r\nCorticosteroids are also injected into the neck along with some type of anesthetic for a procedure called a stellate ganglion nerve block (SGNB). These procedures have been around for quite a while too. Are they safe? We took a look at the results from a systematic review in the journal, <em>Regional Anesthesia &amp; Pain Medicine</em>. What\'s a systematic review? These types of reviews gather a bunch of different studies and take a look at the overall results of all of those studies.\r\n\r\nThe research team in this particular systematic review looked at eighteen years of results and 4812 studies. The researchers identified 260 cases of adverse events with SGNB, including medication side effects, a patient who developed quadriplegia, five who required a tracheostomy, and one death. What was the most common side effect? Hoarseness was reported in 27.6% of the cases. This particular type of nerve block is considered relatively safe, with severe complications occurring in 1.7 out of 1000 blocks. Interestingly, complications also occurred in a delayed manner, leading the researchers to conclude, \"The importance of constant vigilance along with accessibility to resuscitation equipment for all SGNB procedures cannot be overstated.\"2\r\n\r\nSerious adverse events including death, paralysis, seizure, stroke, and others can occur after corticosteroid injections. Because of this, we recommend seeking more conservative therapies to treat pain first. Regenerative Orthopedics are one way to treat joint pain without the need for surgery. These non-surgical techniques are effective at treating many painful joint conditions.\r\n\r\nWhat are some examples of corticosteroids? Injectable corticosteroids include methylprednisolone, hydrocortisone, triamcinolone, betamethasone, and dexamethasone.\r\n\r\nThere are times that corticosteroids are needed. But there are ways to avoid them and their side effects when they really are not necessary. Regenerative Orthopedics is one great way to avoid cortisone injections to treat and repair painful joint conditions.\r\n\r\n<a href=\"http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections\" target=\"_blank\" rel=\"noopener noreferrer\">1 http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections</a>\r\n\r\n2 Goel, Vasudha, et al. \"Complications associated with stellate ganglion nerve block: a systematic review.\" <i>Regional Anesthesia &amp; Pain Medicine</i> 44.6 (2019): 669-678.','Problems After Corticosteroid Injections','','inherit','closed','closed','','1429-revision-v1','','','2020-07-26 01:06:57','2020-07-26 01:06:57','',1429,'https://www.drfields.com/uncategorized/1429-revision-v1/',0,'revision','',0),(3938,9,'2020-07-26 01:09:23','2020-07-26 01:09:23','A few years ago we reported on an FDA warning about neurological problems after epidural corticosteroid injections. But what is the newest information? A lot of people are in pain, and because of that, many procedures are done to manage that pain. And the number of those pain management procedures are increasing over the years.\r\n\r\nA variety of painful conditions benefit from techniques that reduce pain. And corticosteroid injections or cortisone injections are a common treatment recommended by many physicians. At OrthoRegen, we treat joint pain with Regenerative Orthopedics, which also are injections, but they do not contain <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">cortisone</a>. Corticosteroid injections are given in different locations. They may be injected into joints, or they may be used as nerve blocks. Injectable corticosteroids are used quite often to reduce swelling or inflammation. And corticosteroids injected into the epidural space of the spine have been performed for many decades.1 But in our previous article, we discussed the FDA warning that injections of corticosteroids into the epidural space of the spine can result in rare but serious adverse events, including loss of vision, stroke, paralysis, and death.\r\n\r\nCorticosteroids are also injected into the neck along with some type of anesthetic for a procedure called a stellate ganglion nerve block (SGNB). These procedures have been around for quite a while too. Are they safe? We took a look at the results from a systematic review in the journal, <em>Regional Anesthesia &amp; Pain Medicine</em>. What\'s a systematic review? These types of reviews gather a bunch of different studies and take a look at the overall results of all of those studies.\r\n\r\nThe research team in this particular systematic review looked at eighteen years of results and 4812 studies. The researchers identified 260 cases of adverse events with SGNB, including medication side effects, a patient who developed quadriplegia, five who required a tracheostomy, and one death. What was the most common side effect? Hoarseness was reported in 27.6% of the cases. This particular type of nerve block is considered relatively safe, with severe complications occurring in 1.7 out of 1000 blocks. Interestingly, complications also occurred in a delayed manner, leading the researchers to conclude, \"The importance of constant vigilance along with accessibility to resuscitation equipment for all SGNB procedures cannot be overstated.\"2\r\n\r\nSerious adverse events including death, paralysis, seizure, stroke, and others can occur after corticosteroid injections. Because of this, we recommend seeking more conservative therapies to treat pain first. Regenerative Orthopedics is one way to treat joint pain without the need for surgery. These non-surgical techniques are effective at treating many painful joint conditions.\r\n\r\nWhat are some examples of corticosteroids? Injectable corticosteroids include methylprednisolone, hydrocortisone, triamcinolone, betamethasone, and dexamethasone.\r\n\r\nThere are times that corticosteroids are needed. But there are ways to avoid them and their side effects when they really are not necessary. Regenerative Orthopedics is a great way to avoid cortisone injections to treat and repair painful joint conditions.\r\n\r\n<a href=\"http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections\" target=\"_blank\" rel=\"noopener noreferrer\">1 http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections</a>\r\n\r\n2 Goel, Vasudha, et al. \"Complications associated with stellate ganglion nerve block: a systematic review.\" <i>Regional Anesthesia &amp; Pain Medicine</i> 44.6 (2019): 669-678.','Problems After Corticosteroid Injections','','inherit','closed','closed','','1429-revision-v1','','','2020-07-26 01:09:23','2020-07-26 01:09:23','',1429,'https://www.drfields.com/uncategorized/1429-revision-v1/',0,'revision','',0),(3939,9,'2020-07-26 01:18:25','2020-07-26 01:18:25','A few years ago we reported on an FDA warning about neurological problems after epidural corticosteroid injections. But what is the newest information? A lot of people are in pain, and because of that, many procedures are done to manage that pain. And the number of those pain management procedures are increasing over the years.\r\n<h3>Epidural Corticosteroids</h3>\r\nA variety of painful conditions benefit from techniques that reduce pain. And corticosteroid injections or cortisone injections are a common treatment recommended by many physicians. At OrthoRegen, we treat joint pain with Regenerative Orthopedics, which also are injections, but they do not contain <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">cortisone</a>. Corticosteroid injections are given in different locations. They may be injected into joints, or they may be used as nerve blocks. Injectable corticosteroids are used quite often to reduce swelling or inflammation. And corticosteroids injected into the epidural space of the spine have been performed for many decades.1 But in our previous article, we discussed the FDA warning that injections of corticosteroids into the epidural space of the spine can result in rare but serious adverse events, including loss of vision, stroke, paralysis, and death.\r\n<h3>Stellate Ganglion Nerve Block (SGNB)</h3>\r\nCorticosteroids are also injected into the neck along with some type of anesthetic for a procedure called a stellate ganglion nerve block (SGNB). These procedures have been around for quite a while too. Are they safe? We took a look at the results from a systematic review in the journal, <em>Regional Anesthesia &amp; Pain Medicine</em>. What\'s a systematic review? These types of reviews gather a bunch of different studies and take a look at the overall results of all of those studies.\r\n\r\nThe research team in this particular systematic review looked at eighteen years of results and 4812 studies. The researchers identified 260 cases of adverse events with SGNB, including medication side effects, a patient who developed quadriplegia, five who required a tracheostomy, and one death.\r\n\r\nWhat was the most common side effect? Hoarseness was reported in 27.6% of the cases. This particular type of nerve block is considered relatively safe, with severe complications occurring in 1.7 out of 1000 blocks. Interestingly, complications also occurred in a delayed manner, leading the researchers to conclude, \"The importance of constant vigilance along with accessibility to resuscitation equipment for all SGNB procedures cannot be overstated.\"2\r\n\r\nSerious adverse events include death, paralysis, seizure, stroke, and others that can occur after corticosteroid injections in both epidural and SGNB procedures. Because of this, we recommend seeking more conservative therapies to treat pain first. Regenerative Orthopedics is one way to treat joint pain without the need for surgery. These non-surgical techniques are effective at treating many painful joint conditions.\r\n\r\nWhat are some examples of corticosteroids? Injectable corticosteroids include methylprednisolone, hydrocortisone, triamcinolone, betamethasone, and dexamethasone.\r\n\r\nThere are times that corticosteroids are needed. But there are ways to avoid them and their side effects when they really are not necessary. Regenerative Orthopedics is a great way to avoid cortisone injections to treat and repair painful joint conditions.\r\n\r\n<a href=\"http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections\" target=\"_blank\" rel=\"noopener noreferrer\">1 http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections</a>\r\n\r\n2 Goel, Vasudha, et al. \"Complications associated with stellate ganglion nerve block: a systematic review.\" <i>Regional Anesthesia &amp; Pain Medicine</i> 44.6 (2019): 669-678.','Problems After Corticosteroid Injections','','inherit','closed','closed','','1429-revision-v1','','','2020-07-26 01:18:25','2020-07-26 01:18:25','',1429,'https://www.drfields.com/uncategorized/1429-revision-v1/',0,'revision','',0),(3940,9,'2020-07-26 01:19:03','2020-07-26 01:19:03','A few years ago we reported on an FDA warning about neurological problems after epidural corticosteroid injections. But what is the newest information? A lot of people are in pain, and because of that, many procedures are done to manage that pain. And the number of those pain management procedures are increasing over the years.\r\n<h3>Epidural Corticosteroids</h3>\r\nA variety of painful conditions benefit from techniques that reduce pain. And corticosteroid injections or cortisone injections are a common treatment recommended by many physicians. At OrthoRegen, we treat joint pain with Regenerative Orthopedics, which also are injections, but they do not contain <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">cortisone</a>.\r\n\r\nCorticosteroid injections are given in different locations. They may be injected into joints, or they may be used as nerve blocks. Injectable corticosteroids are used quite often to reduce swelling or inflammation. And corticosteroids injected into the epidural space of the spine have been performed for many decades.1 But in our previous article, we discussed the FDA warning that injections of corticosteroids into the epidural space of the spine can result in rare but serious adverse events, including loss of vision, stroke, paralysis, and death.\r\n<h3>Stellate Ganglion Nerve Block (SGNB)</h3>\r\nCorticosteroids are also injected into the neck along with some type of anesthetic for a procedure called a stellate ganglion nerve block (SGNB). These procedures have been around for quite a while too. Are they safe? We took a look at the results from a systematic review in the journal, <em>Regional Anesthesia &amp; Pain Medicine</em>. What\'s a systematic review? These types of reviews gather a bunch of different studies and take a look at the overall results of all of those studies.\r\n\r\nThe research team in this particular systematic review looked at eighteen years of results and 4812 studies. The researchers identified 260 cases of adverse events with SGNB, including medication side effects, a patient who developed quadriplegia, five who required a tracheostomy, and one death.\r\n\r\nWhat was the most common side effect? Hoarseness was reported in 27.6% of the cases. This particular type of nerve block is considered relatively safe, with severe complications occurring in 1.7 out of 1000 blocks. Interestingly, complications also occurred in a delayed manner, leading the researchers to conclude, \"The importance of constant vigilance along with accessibility to resuscitation equipment for all SGNB procedures cannot be overstated.\"2\r\n\r\nSerious adverse events include death, paralysis, seizure, stroke, and others that can occur after corticosteroid injections in both epidural and SGNB procedures. Because of this, we recommend seeking more conservative therapies to treat pain first. Regenerative Orthopedics is one way to treat joint pain without the need for surgery. These non-surgical techniques are effective at treating many painful joint conditions.\r\n\r\nWhat are some examples of corticosteroids? Injectable corticosteroids include methylprednisolone, hydrocortisone, triamcinolone, betamethasone, and dexamethasone.\r\n\r\nThere are times that corticosteroids are needed. But there are ways to avoid them and their side effects when they really are not necessary. Regenerative Orthopedics is a great way to avoid cortisone injections to treat and repair painful joint conditions.\r\n\r\n<a href=\"http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections\" target=\"_blank\" rel=\"noopener noreferrer\">1 http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections</a>\r\n\r\n2 Goel, Vasudha, et al. \"Complications associated with stellate ganglion nerve block: a systematic review.\" <i>Regional Anesthesia &amp; Pain Medicine</i> 44.6 (2019): 669-678.','Problems After Corticosteroid Injections','','inherit','closed','closed','','1429-revision-v1','','','2020-07-26 01:19:03','2020-07-26 01:19:03','',1429,'https://www.drfields.com/uncategorized/1429-revision-v1/',0,'revision','',0),(3941,9,'2020-07-26 02:02:32','2020-07-26 02:02:32','<h3><strong>STEM CELL THERAPY/PRP/PROLOTHERAPY ARE REGENERATIVE MEDICINE TECHNIQUES AND ALTERNATIVE TREATMENTS TO AVOID JOINT</strong> <strong>AND BACK SURGERY. THE FUTURE IS NOW! </strong>BY PETER A. FIELDS, MD, DC</h3>\n<em>Presented at the American Academy of Anti-aging medicine; VI World Congress; Anti-aging and Regenerative Medicine</em>\n\nThe revitalization and regeneration of the joints and of the spinal column are not in the future; it is happening today! Last year in the United States, there were almost 2 million total joint replacement surgeries and another 25 to 30 million partial joint surgeries. That\'s a lot of surgery! And that\'s why each year people are seeking non-surgical alternatives to joint and spinal column surgery. Several sources state that 40% of those surgeries could have been avoided. If avoiding surgery is an option, it sure seems like that option should be considered. Keep in mind, cutting a part of the joint or injecting it with steroids is not the only answer. Let’s remember that <em>surgery can always take place, but can never be undone</em>.\n<h3>What If I\'ve Been Told Surgery Is My Only Option?</h3>\nHave you been told that you have severe arthritis? You are bone on bone in your joint? Your joint has degenerated and your cartilage which has worn away? And ultimately, the only thing left to do is to replace the joint? Well, the good news here is that you do have another option!\n<h3>Regenerative Medicine Treatments</h3>\n<p style=\"height: 172px;\">Regenerative Medicine like <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a>/PRP/and Prolotherapy are treatment techniques that are available today. These techniques effectively treat even bone on bone arthritis. And without surgery. Stem cells, for example, have the potential to regenerate any type of the body’s tissue. And its use in regenerative medicine is growing more and more in the medical community as an alternative to invasive surgery, including cases where a replacement was recommended. What is remarkable about stem cells is the fact that when they are injected into a specific area of the body, they know the types of cells that the body needs – for example, the meniscus cells or cartilage cells.</p>\n\n<h3>Regenerative Medicine Is An Exciting Field</h3>\n<p style=\"height: 172px;\">This is a very exciting time in the field of REGENERATIVE MEDICINE. Results show several patients who have shown a significant functional improvement. Patients who were submitted to arthroscopy after the transplant showed joint cartilage which was close to normal. MAGNETIC RESONANCE IMAGES (MRI\'s) have revealed complete healing with a congruent cartilage tissue, while other magnetic resonances of the patients showed congruence in the cartilaginous tissue.</p>\n\n<h3>What Do Studies Show?</h3>\n<img class=\"alignright\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-7.jpg\" alt=\"Prolo Spanish\" width=\"356\" height=\"303\" />Several reviews by investigators have concluded that the autologous transplant of the mesenchyme cell culture of the bone marrow, of adipose tissue, and of plasma rich in platelets is a great promise in the treatment of joint cartilage defects, particularly defects of great size (&gt; 4 cm). The clinical results have been positive even at over one year after having been carried out. The procedure in several patients and the procedure’s success have been measured in longer periods of time.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"180\" height=\"285\" />\n\n<em>In his medical practice, Peter A. Fields, MD, DC uses the Gold Standard in Stem Cell Therapy utilizing four types of non-surgical Regenerative Orthopedics to revitalize and support joint regeneration: stem cells from bone marrow, stem cells from adipose tissue,  Platelet Rich Plasma, and Prolotherapy. All of these regenerative techniques cause the tissue to regenerate. When the new cartilage, ligament, tendon, or meniscus tissue is regenerated, the joint becomes more vibrant and strong and it can work well once again. The objective is the same: stimulate and repair damaged tissues.</em>\n\n<strong>Peter A. Fields, MD, DC is one of the few doctors in the United States who is both a Doctor of Medicine and a Chiropractor. He is widely recognized as a leader in REGENERATIVE ORTHOPEDICS having been on numerous programs and quoted in magazines and on-line publications.</strong>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Regenerative Medicine Lecture in Mexico City','','inherit','closed','closed','','1419-autosave-v1','','','2020-07-26 02:02:32','2020-07-26 02:02:32','',1419,'https://www.drfields.com/uncategorized/1419-autosave-v1/',0,'revision','',0),(3942,9,'2020-07-26 01:46:45','2020-07-26 01:46:45','<strong>STEM CELL THERAPY/PRP/PROLOTHERAPY ARE REGENERATIVE MEDICINE TECHNIQUES AND ALTERNATIVE TREATMENTS TO AVOID JOINT</strong> <strong>AND BACK SURGERY. THE FUTURE IS NOW! </strong>BY PETER A. FIELDS, MD, DC\r\n\r\n<em>Presented at the American Academy of Anti-aging medicine; VI World Congress; Anti-aging and Regenerative Medicine</em>\r\n\r\nThe revitalization and regeneration of the joints and of the spinal column are not in the future; it is happening today! Last year in the United States, there were almost 2 million total joint replacement surgeries and another 25 to 30 million partial joint surgeries. That\'s a lot of surgery! And that\'s why each year people are seeking non-surgical alternatives to joint and spinal column surgery. Several sources state that 40% of those surgeries could have been avoided. If avoiding surgery is an option, it sure seems like that option should be considered. Keep in mind, cutting a part of the joint or injecting it with steroids is not the only answer. Let’s remember that <em>surgery can always take place, but can never be undone</em>.\r\n<h3>What If I\'ve Been Told Surgery Is My Only Option?</h3>\r\nHave you been told that you have severe arthritis? You are bone on bone in your joint? Your joint has degenerated and your cartilage which has worn away? And ultimately, the only thing left to do is to replace the joint? Well, the good news here is that you do have another option!\r\n<h3>Regenerative Medicine</h3>\r\n<p style=\"height: 172px;\">Regenerative Medicine like <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a>/PRP/and Prolotherapy are treatment techniques that are available today. These techniques effectively treat even bone on bone arthritis. And without surgery. Stem cells, for example, have the potential to regenerate any type of the body’s tissue. And its use in regenerative medicine is growing more and more in the medical community as an alternative to invasive surgery, including cases where a replacement was recommended. What is remarkable about stem cells is the fact that when they are injected into a specific area of the body, they know the types of cells that the body needs – for example, the meniscus cells or cartilage cells.</p>\r\n<p style=\"height: 172px;\">This is a very exciting moment in the field of REGENERATIVE MEDICINE.The results show several patients who have shown a significant functional improvement. The patients that were submitted to arthroscopy after the transplant showed joint cartilage which was close to normal. MAGNETIC RESONANCE IMAGES (MRI\'s) have revealed complete healing with a congruent cartilage tissue, while other magnetic resonances of the patients showed congruence in the cartilaginous tissue.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignright\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-7.jpg\" alt=\"Prolo Spanish\" />Several reviews by investigators have concluded that the autologous transplant of the mesenchyme cell culture of the bone marrow, of adipose tissue and of plasma rich in platelets are a great promise in the treatment of joint cartilage defects, particularly defects of great size (&gt; 4 cm). The clinical results have been positive at over 1 year after having been carried out. The procedure in several patients and the procedure’s success have been measured in longer periods of time.\r\n\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"\" width=\"160\" height=\"216\" />\r\n\r\n<em>In his medical practice, Dr. Peter Fields uses the four types of non-surgical procedures to revitalize and support joint regeneration: the stem cells from the bone marrow, the cells from the adipose tissue, the PRP and the prolotherapy with dextrose. All of these are considered different forms that cause the tissue to proliferate or regenerate. When the new tissue whether it is cartilage, bone, ligament, tendon, meniscus or other is regenerated, the joint becomes more vibrant and strong and it can once again work well. The objective is the same: stimulate to repair damaged tissues.</em>\r\n\r\n<strong>Peter A. Fields, MD, DC is one of the few doctors in the United States who is both a Doctor of Medicine and a Chiropractor. He is widely recognized as a leader in REGENERATIVE ORTHOPEDICS having been on numerous programs and quoted in magazines and on-line publications.</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Regenerative Medicine Lecture in Mexico City','','inherit','closed','closed','','1419-revision-v1','','','2020-07-26 01:46:45','2020-07-26 01:46:45','',1419,'https://www.drfields.com/uncategorized/1419-revision-v1/',0,'revision','',0),(3943,9,'2020-07-26 02:02:46','2020-07-26 02:02:46','<h3><strong>STEM CELL THERAPY/PRP/PROLOTHERAPY ARE REGENERATIVE MEDICINE TECHNIQUES AND ALTERNATIVE TREATMENTS TO AVOID JOINT</strong> <strong>AND BACK SURGERY. THE FUTURE IS NOW! </strong>BY PETER A. FIELDS, MD, DC</h3>\r\n<em>Presented at the American Academy of Anti-aging medicine; VI World Congress; Anti-aging and Regenerative Medicine</em>\r\n\r\nThe revitalization and regeneration of the joints and of the spinal column are not in the future; it is happening today! Last year in the United States, there were almost 2 million total joint replacement surgeries and another 25 to 30 million partial joint surgeries. That\'s a lot of surgery! And that\'s why each year people are seeking non-surgical alternatives to joint and spinal column surgery. Several sources state that 40% of those surgeries could have been avoided. If avoiding surgery is an option, it sure seems like that option should be considered. Keep in mind, cutting a part of the joint or injecting it with steroids is not the only answer. Let’s remember that <em>surgery can always take place, but can never be undone</em>.\r\n<h3>What If I\'ve Been Told Surgery Is My Only Option?</h3>\r\nHave you been told that you have severe arthritis? You are bone on bone in your joint? Your joint has degenerated and your cartilage which has worn away? And ultimately, the only thing left to do is to replace the joint? Well, the good news here is that you do have another option!\r\n<h3>Regenerative Medicine Treatments</h3>\r\n<p style=\"height: 172px;\">Regenerative Medicine like <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a>/PRP/and Prolotherapy are treatment techniques that are available today. These techniques effectively treat even bone on bone arthritis. And without surgery. Stem cells, for example, have the potential to regenerate any type of the body’s tissue. And its use in regenerative medicine is growing more and more in the medical community as an alternative to invasive surgery, including cases where a replacement was recommended. What is remarkable about stem cells is the fact that when they are injected into a specific area of the body, they know the types of cells that the body needs – for example, the meniscus cells or cartilage cells.</p>\r\n\r\n<h3>Regenerative Medicine Is An Exciting Field</h3>\r\n<p style=\"height: 172px;\">This is a very exciting time in the field of REGENERATIVE MEDICINE. Results show several patients who have shown a significant functional improvement. Patients who were submitted to arthroscopy after the transplant showed joint cartilage which was close to normal. MAGNETIC RESONANCE IMAGES (MRI\'s) have revealed complete healing with a congruent cartilage tissue, while other magnetic resonances of the patients showed congruence in the cartilaginous tissue.</p>\r\n\r\n<h3>What Do Studies Show?</h3>\r\n<img class=\"alignright\" title=\"Prolo Spanish\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-7.jpg\" alt=\"Prolo Spanish\" width=\"356\" height=\"303\" />Several reviews by investigators have concluded that the autologous transplant of the mesenchyme cell culture of the bone marrow, of adipose tissue, and of plasma rich in platelets is a great promise in the treatment of joint cartilage defects, particularly defects of great size (&gt; 4 cm). The clinical results have been positive even at over one year after having been carried out. The procedure in several patients and the procedure’s success have been measured in longer periods of time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"180\" height=\"285\" />\r\n\r\n<em>In his medical practice, Peter A. Fields, MD, DC uses the Gold Standard in Stem Cell Therapy utilizing four types of non-surgical Regenerative Orthopedics to revitalize and support joint regeneration: stem cells from bone marrow, stem cells from adipose tissue,  Platelet Rich Plasma, and Prolotherapy. All of these regenerative techniques cause the tissue to regenerate. When the new cartilage, ligament, tendon, or meniscus tissue is regenerated, the joint becomes more vibrant and strong and it can work well once again. The objective is the same: stimulate and repair damaged tissues.</em>\r\n\r\n<strong>Peter A. Fields, MD, DC is one of the few doctors in the United States who is both a Doctor of Medicine and a Chiropractor. He is widely recognized as a leader in REGENERATIVE ORTHOPEDICS having been on numerous programs and quoted in magazines and on-line publications.</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Regenerative Medicine Lecture in Mexico City','','inherit','closed','closed','','1419-revision-v1','','','2020-07-26 02:02:46','2020-07-26 02:02:46','',1419,'https://www.drfields.com/uncategorized/1419-revision-v1/',0,'revision','',0),(3944,9,'2021-07-23 22:45:50','2021-07-23 22:45:50','Stem Cell Therapy has become a popular treatment and one that can provide very satisfactory results. And Stem Cell Therapy for arthritis, including the repair of degenerated arthritic joints, offers many promising possibilities.1 Stem cells have been shown in research to speed up and enhance bone and cartilage repair in arthritic joints.2,3 Since surgery comes with many disadvantages, <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a> to repair defects of articular cartilage provides an exciting alternative.\n\nAnother fascinating research finding involves evidence of the reduction in the usual progressive destruction of articular cartilage in arthritic disease by mesenchymal/bone marrow stem cells. Bone marrow stem cells appear to suppress inflammation and release growth factors that combat arthritis and the degenerative process, enabling healing mechanisms to repair articular cartilage and relieve the chronic pain of arthritis.\n\n[caption id=\"attachment_4805\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4805\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Stems-500x375.jpeg\" alt=\"Stem Cells\" width=\"500\" height=\"375\" /> <strong>                  Stem Cell Therapy Effective for Osteoarthritis3</strong>[/caption]\n<h4>One-Shot Magic Cure?</h4>\nHave you looked into Stem Cell Therapy for arthritis relief? It’s important to do your homework when it comes to Stem Cell Therapy because not all treatments are alike. You may have seen treatments advertised that may involve just one injection of stem cells. One injection is most likely insufficient to provide an adequate repair of the joint and the pain relief you seek.\n\nJoint injuries, like those that eventually lead to arthritis, generally involve the entire joint. If one ligament is injured, there’s a huge likelihood that other ligaments or soft tissue are also injured. And these other areas need to be treated too. One injection simply cannot treat the entire joint.\n<h4>Underlying Joint Instability Leads to Arthritis</h4>\nWhen the supportive joint structures, such as ligaments and other soft tissue are healthy and strong, they prevent abnormal joint motion. But when they become injured, the joint will move in an abnormal pattern, injuring other joint structures, and eventually leading to joint destruction and arthritis.\n\nThe degeneration and breakdown of cartilage that is evident in arthritis is something that transpires over time. It doesn\'t just appear immediately. The beginning is often an initial injury that begins a process of instability in the joint with movement in the joint that is abnormal. This joint instability then becomes the source of further joint injury. And it causes pain too.\n\nJoint instability also involves loose, weakened, and unsupportive ligaments. In essence, the whole joint becomes affected. To achieve repair of the entire joint, the supportive structures surrounding the joint need to be treated, as well as the degenerated structures inside the joint. Intra-articular injections during Stem Cell Therapy for arthritis, combined with the growth factors in treatments like PRP and Prolotherapy can improve cartilage quality in arthritis, repair the injured soft tissue, and resolve joint pain.\n\n<img class=\" wp-image-3742\" src=\"https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png\" alt=\"Kelsey. Knee.stems Copy\" width=\"420\" height=\"420\" />\n<h4>The Gold Standard in Stem Cell Therapy</h4>\nA comprehensive treatment is necessary to strengthen, repair, and stabilize ligaments and structures of the joint to prevent destructive forces from continuing the breakdown of cartilage common in arthritis.\n\n<strong>A single injection is simply not comprehensive</strong> enough to reverse the damage affecting the entire joint. In our practice, we address these unnatural hypermobile forces with a multi-injection technique called <strong>Comprehensive Regenerative Orthopedics</strong>. It\'s a very effective Stem Cell Therapy for arthritis repair and pain relief.\n\n&nbsp;\n\nOur Stem Cell Therapy for arthritis treatment involves the use of four different regenerative therapies. Two sources of stem cells (bone and fat), as well as PRP Prolotherapy and Dextrose Prolotherapy. The supportive joint structures, the inside, and the outer structures of the joint are all treated. This is considered <strong>The Gold Standard</strong> for Stem Cell Regeneration.\n\nAt OrthoRegen, our Stem Cell Therapy for arthritis is different than at other clinics. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">What makes us different?</a> Many other clinics only use one or two of the above procedures, but not all four. All solutions are centrifuged and concentrated to obtain a solution with the most concentration of stem cells. In our experience, we have discovered that this technique is the best for regeneration. We inject both of these sources of stem cells and then combine the use of PRP Prolotherapy to accelerate their healing.\n\nIn addition, we apply Dextrose Prolotherapy <strong>to the outside supportive structures of the joint</strong> to help stabilize the ligaments and tendons that hold the joint in place. We utilize this style of treatment because it addresses the whole joint and not just the effect. That is why it is considered the <em>Gold Standard</em>.\n<h4>What About Amniotic “Stem Cells”?</h4>\nAmniotic Stem Cells are being advertised all over the place and people are fascinated with this very popular trend of using amniotic fluid for joint repair. But it needs to be clarified that Amniotic “Stem Cell” Therapy has NO actual stem cells, but rather growth factors found in the extracellular matrix of the amniotic tissue.\n\nCompanies purchase the afterbirth materials, process it to remove disease, and then freeze-dry it. Understandably, the process preserves the fluid, but it also kills the live cells. What’s left are healing growth factors. <strong>NO live stem cells are present.</strong> <em>Therefore, if claimed as such, it is simply not the truth.</em>\n\nIn their pre-donated state, amniotic fluid does have an abundance of stem cells, but they do not survive the processing. Many people leave stem cell seminars convinced that their own stem cells are no good and that donated amniotic “stem cells” will help them with their chronic joint pain from arthritis. It’s important to understand that cryopreserved, dehydrated amniotic products do not contain stem cells. It’s also important to understand that bone marrow, even in elderly individuals with arthritis, <strong>does have sufficient stem cells</strong>, and the cells are <strong>alive</strong>! Additionally, your own blood in the form of Platelet Rich Plasma (PRP) contains live growth factors. Yes, purchased, micronized amniotic fluid does contain growth factor material, but it is processed. Why not just use your own (autologous) live stem cells and PRP growth factors for your arthritis pain?\n<h4>The Bottom Line in Arthritis Treatment</h4>\nArthritis is a chronic, progressive disease of the articular joints, which to date, has had no cure or effective long-term treatment. However, Regenerative Injection Therapies like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy have already been proven to work well to effectively activate cells for regeneration and repair in degenerated arthritic joints. Regenerative Orthopedics is an effective option for treating arthritis with the potential for enhancing the quality of life of individuals with the disease.\n\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>\n\nReferences\n\n<em>1. Chahal, J., Gómez-Aristizábal, A., Shestopaloff, K., Bhatt, S., Chaboureau, A., Fazio, A., Chisholm, J., Weston, A., Chiovitti, J., Keating, A., Kapoor, M., Ogilvie-Harris, D.J., Syed, K.A., Gandhi, R., Mahomed, N.N., Marshall, K.W., Sussman, M.S., Naraghi, A.M. and Viswanathan, S. (2019), Bone Marrow Mesenchymal Stromal Cell Treatment in Patients with Osteoarthritis Results in Overall Improvement in Pain and Symptoms and Reduces Synovial Inflammation. STEM CELLS Translational Medicine, 8: 746-757. <a href=\"https://doi.org/10.1002/sctm.18-0183\">https://doi.org/10.1002/sctm.18-0183</a></em>\n\n<em>2. Wakitani S, Goto T, Pineda SJ, Young RG, Mansour JM, Caplan AI, Goldberg VM. Mesenchymal cell-based repair of large, full-thickness defects of articular cartilage J. Bone Joint Surg. Am. 1994;76:579-92.</em>\n\n<em>3. Burke J, Hunter M, Kolhe R, </em>Isales<em> C, Hamrick M, Fulzele S. Therapeutic potential of mesenchymal stem </em>cell-based<em> therapy for osteoarthritis. Clinical and translational medicine. 2016 Aug 10;5(1):27.</em>','Stem Cell Therapy for Arthritis','','inherit','closed','closed','','1416-autosave-v1','','','2021-07-23 22:45:50','2021-07-23 22:45:50','',1416,'https://www.drfields.com/uncategorized/1416-autosave-v1/',0,'revision','',0),(3945,9,'2020-07-26 02:14:49','2020-07-26 02:14:49','Stem Cell Therapy has become a popular treatment and one that can provide very satisfactory results. Stem Cell Therapy for arthritis, including the reparation of degenerated arthritic joints, offers many promising possibilities. Stem cells have been shown in research to speed up and enhance bone and cartilage repair in arthritic joints.<sup>1,2</sup> Since surgery comes with many disadvantages, <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a> to repair defects of articular cartilage provides an exciting alternative.\r\n\r\nAnother fascinating research finding involves evidence of the reduction in the usual progressive destruction of articular cartilage in arthritic disease by mesenchymal/bone marrow stem cells. Bone marrow stem cells appear to suppress inflammation and release growth factors that combat arthritis and the degenerative process, enabling healing mechanisms to repair articular cartilage and relieve the chronic pain of arthritis.\r\n<h4>One-Shot Magic Cure?</h4>\r\nHave you looked into Stem Cell Therapy for arthritis relief? It’s important to do your homework when it comes to Stem Cell Therapy because not all treatments are alike. You may have seen treatments advertised that may involve just one injection of stem cells. One injection is most likely insufficient to provide an adequate repair of the joint and the pain relief you seek. Joint injuries, like those that eventually lead to arthritis, generally involve the entire joint. If one ligament is injured, there’s a huge likelihood that other ligaments or soft tissue are also injured. And these other areas need to be treated too. One injection simply cannot treat the entire joint.\r\n<h4>Underlying Joint Instability Leads to Arthritis</h4>\r\nWhen the supportive joint structures, such as ligaments and other soft tissue are healthy and strong, they prevent abnormal joint motion. If they become injured, the joint will move in an abnormal pattern, injuring other joint structures, and eventually leading to joint destruction and arthritis. The degeneration and breakdown of cartilage that is present in arthritis transpires over time, after the injury which precipitated the joint to become unstable and move abnormally in the first place. Joint instability is the source of joint injury and pain, and this instability begins with loose, weakened, and unsupportive ligaments. To accomplish repair of the entire joint, the supportive structures surrounding the joint need to be treated, as well as the degenerated structures inside the joint. Intra-articular injections of stem cells combined with the growth factors in treatments like PRP and Prolotherapy, can improve cartilage quality in arthritis, repair the injured soft tissue, and resolve joint pain.\r\n<h4>The Gold Standard in Stem Cell Therapy</h4>\r\nA comprehensive treatment is necessary to strengthen, repair and stabilize ligaments and structures of the joint to prevent destructive forces from continuing the breakdown of cartilage common in arthritis. <strong>A single injection is simply not comprehensive</strong> enough to reverse the damage affecting the entire joint. In our practice, we address these unnatural hypermobile forces with a multi-injection technique called <strong>Comprehensive Regenerative Orthopedics</strong>.\r\n\r\nThe treatment involves the use of two sources of stem cells (bone and fat), as well as PRP Prolotherapy and Dextrose Prolotherapy. The supportive joint structures, the inside and outside of the joint are all treated. This is considered\r\n\r\n<strong>The Gold Standard</strong> for Stem Cell Regeneration. Many other clinics only use one or two of the above procedures, but not all four. All solutions are centrifuged and concentrated to get a solution with the most concentration of stem cells. In our experience, we have discovered that these stem cells act as great proliferant solutions for regeneration. We inject both of these sources of stem cells and then combine the use of PRP Prolotherapy to accelerate their healing. In addition, we apply Dextrose Prolotherapy <strong>to the outside supportive structures of the joint</strong> to help stabilize the ligaments and tendons that hold the joint in place. We utilize this style of treatment because it addresses the whole joint and not just the effect. That is why it is considered the Gold Standard.\r\n<h4>What About Amniotic “Stem Cells”?</h4>\r\nAmniotic Stem Cells are being advertised all over the place and people are fascinated with this very popular trend of using amniotic fluid for joint repair. But it needs to be clarified that Amniotic “Stem Cell” Therapy has NO actual stem cells, but rather growth factors found in the extracellular matrix of the amniotic tissue. Companies purchase the afterbirth materials, process it to remove disease, and then freeze-dry it. Understandably, the process preserves the fluid, but it also kills the live cells. What’s left are healing growth factors. NO live stem cells are present. Therefore, if claimed as such, it is simply not the truth. In their pre-donated state, amniotic fluid does have an abundance of stem cells, but they do not survive the processing. Many people leave stem cell seminars convinced that their own stem cells are no good and that donated amniotic “stem cells” will help them with their chronic joint pain from arthritis. It’s important to understand that cryopreserved, dehydrated amniotic products do not contain stem cells. It’s also important to understand that bone marrow, even in elderly individuals with arthritis, does have sufficient stem cells, and the cells are alive! Additionally, your own blood in the form of Platelet Rich Plasma (PRP) contains live growth factors. Yes, purchased, micronized amniotic fluid does contain growth factor material, but it is processed. Why not just use your own (autologous) live stem cells and PRP growth factors for your arthritis pain?\r\n<h4>The Bottom Line in Arthritis Treatment</h4>\r\nArthritis is a chronic, progressive disease of the articular joints, which to date, has had no cure or effective long-term treatment. However, Regenerative Injection Therapies like Stem Cell Therapy, Platelet Rich Plasma and Prolotherapy have already been proven to work well to effectively activate cells for regeneration and repair in degenerated arthritic joints. Regenerative Orthopedics is an effective option for treating arthritis with the potential for enhancing the quality of life of individuals with the disease.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n\r\n<em>1. Wakitani S, Goto T, Pineda SJ, Young RG, Mansour JM, Caplan AI, Goldberg VM. Mesenchymal cell-based repair of large, full-thickness defects of articular cartilage J. Bone Joint Surg. Am. 1994;76:579-92.</em>\r\n<em>2. Burke J, Hunter M, Kolhe R, </em>Isales<em> C, Hamrick M, Fulzele S. Therapeutic potential of mesenchymal stem </em>cell based<em> therapy for osteoarthritis. Clinical and translational medicine. 2016 Aug 10;5(1):27.</em>','Stem Cell Therapy Options for Arthritis','','inherit','closed','closed','','1416-revision-v1','','','2020-07-26 02:14:49','2020-07-26 02:14:49','',1416,'https://www.drfields.com/uncategorized/1416-revision-v1/',0,'revision','',0),(3946,9,'2020-07-26 02:46:28','2020-07-26 02:46:28','Stem Cell Therapy has become a popular treatment and one that can provide very satisfactory results. And Stem Cell Therapy for arthritis, including the repair of degenerated arthritic joints, offers many promising possibilities. Stem cells have been shown in research to speed up and enhance bone and cartilage repair in arthritic joints.<sup>1,2</sup> Since surgery comes with many disadvantages, <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a> to repair defects of articular cartilage provides an exciting alternative.\r\n\r\nAnother fascinating research finding involves evidence of the reduction in the usual progressive destruction of articular cartilage in arthritic disease by mesenchymal/bone marrow stem cells. Bone marrow stem cells appear to suppress inflammation and release growth factors that combat arthritis and the degenerative process, enabling healing mechanisms to repair articular cartilage and relieve the chronic pain of arthritis.\r\n<h4>One-Shot Magic Cure?</h4>\r\nHave you looked into Stem Cell Therapy for arthritis relief? It’s important to do your homework when it comes to Stem Cell Therapy because not all treatments are alike. You may have seen treatments advertised that may involve just one injection of stem cells. One injection is most likely insufficient to provide an adequate repair of the joint and the pain relief you seek.\r\n\r\nJoint injuries, like those that eventually lead to arthritis, generally involve the entire joint. If one ligament is injured, there’s a huge likelihood that other ligaments or soft tissue are also injured. And these other areas need to be treated too. One injection simply cannot treat the entire joint.\r\n<h4>Underlying Joint Instability Leads to Arthritis</h4>\r\nWhen the supportive joint structures, such as ligaments and other soft tissue are healthy and strong, they prevent abnormal joint motion. But when they become injured, the joint will move in an abnormal pattern, injuring other joint structures, and eventually leading to joint destruction and arthritis.\r\n\r\nThe degeneration and breakdown of cartilage that is evident in arthritis is something that transpires over time. It doesn\'t just appear immediately. The beginning is often an initial injury that begins a process of instability in the joint with movement in the joint that is abnormal. This joint instability then becomes the source of further joint injury. And it causes pain too.\r\n\r\nJoint instability also involves loose, weakened, and unsupportive ligaments. In essence, the whole joint becomes affected. To achieve repair of the entire joint, the supportive structures surrounding the joint need to be treated, as well as the degenerated structures inside the joint. Intra-articular injections during Stem Cell Therapy for arthritis, combined with the growth factors in treatments like PRP and Prolotherapy can improve cartilage quality in arthritis, repair the injured soft tissue, and resolve joint pain.\r\n\r\n<img class=\" wp-image-3742\" src=\"https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png\" alt=\"Kelsey. Knee.stems Copy\" width=\"420\" height=\"420\" />\r\n<h4>The Gold Standard in Stem Cell Therapy</h4>\r\nA comprehensive treatment is necessary to strengthen, repair, and stabilize ligaments and structures of the joint to prevent destructive forces from continuing the breakdown of cartilage common in arthritis.\r\n\r\n<strong>A single injection is simply not comprehensive</strong> enough to reverse the damage affecting the entire joint. In our practice, we address these unnatural hypermobile forces with a multi-injection technique called <strong>Comprehensive Regenerative Orthopedics</strong>. It\'s a very effective Stem Cell Therapy for arthritis repair and pain relief.\r\n\r\n&nbsp;\r\n\r\nOur Stem Cell Therapy for arthritis treatment involves the use of four different regenerative therapies. Two sources of stem cells (bone and fat), as well as PRP Prolotherapy and Dextrose Prolotherapy. The supportive joint structures, the inside, and the outer structures of the joint are all treated. This is considered <strong>The Gold Standard</strong> for Stem Cell Regeneration.\r\n\r\nAt OrthoRegen, our Stem Cell Therapy for arthritis is different than at other clinics. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">What makes us different?</a> Many other clinics only use one or two of the above procedures, but not all four. All solutions are centrifuged and concentrated to obtain a solution with the most concentration of stem cells. In our experience, we have discovered that this technique is the best for regeneration. We inject both of these sources of stem cells and then combine the use of PRP Prolotherapy to accelerate their healing.\r\n\r\nIn addition, we apply Dextrose Prolotherapy <strong>to the outside supportive structures of the joint</strong> to help stabilize the ligaments and tendons that hold the joint in place. We utilize this style of treatment because it addresses the whole joint and not just the effect. That is why it is considered the <em>Gold Standard</em>.\r\n<h4>What About Amniotic “Stem Cells”?</h4>\r\nAmniotic Stem Cells are being advertised all over the place and people are fascinated with this very popular trend of using amniotic fluid for joint repair. But it needs to be clarified that Amniotic “Stem Cell” Therapy has NO actual stem cells, but rather growth factors found in the extracellular matrix of the amniotic tissue.\r\n\r\nCompanies purchase the afterbirth materials, process it to remove disease, and then freeze-dry it. Understandably, the process preserves the fluid, but it also kills the live cells. What’s left are healing growth factors. <strong>NO live stem cells are present.</strong> <em>Therefore, if claimed as such, it is simply not the truth.</em>\r\n\r\nIn their pre-donated state, amniotic fluid does have an abundance of stem cells, but they do not survive the processing. Many people leave stem cell seminars convinced that their own stem cells are no good and that donated amniotic “stem cells” will help them with their chronic joint pain from arthritis. It’s important to understand that cryopreserved, dehydrated amniotic products do not contain stem cells. It’s also important to understand that bone marrow, even in elderly individuals with arthritis, <strong>does have sufficient stem cells</strong>, and the cells are <strong>alive</strong>! Additionally, your own blood in the form of Platelet Rich Plasma (PRP) contains live growth factors. Yes, purchased, micronized amniotic fluid does contain growth factor material, but it is processed. Why not just use your own (autologous) live stem cells and PRP growth factors for your arthritis pain?\r\n<h4>The Bottom Line in Arthritis Treatment</h4>\r\nArthritis is a chronic, progressive disease of the articular joints, which to date, has had no cure or effective long-term treatment. However, Regenerative Injection Therapies like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy have already been proven to work well to effectively activate cells for regeneration and repair in degenerated arthritic joints. Regenerative Orthopedics is an effective option for treating arthritis with the potential for enhancing the quality of life of individuals with the disease.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n\r\n<em>1. Wakitani S, Goto T, Pineda SJ, Young RG, Mansour JM, Caplan AI, Goldberg VM. Mesenchymal cell-based repair of large, full-thickness defects of articular cartilage J. Bone Joint Surg. Am. 1994;76:579-92.</em>\r\n<em>2. Burke J, Hunter M, Kolhe R, </em>Isales<em> C, Hamrick M, Fulzele S. Therapeutic potential of mesenchymal stem </em>cell-based<em> therapy for osteoarthritis. Clinical and translational medicine. 2016 Aug 10;5(1):27.</em>','Stem Cell Therapy for Arthritis','','inherit','closed','closed','','1416-revision-v1','','','2020-07-26 02:46:28','2020-07-26 02:46:28','',1416,'https://www.drfields.com/uncategorized/1416-revision-v1/',0,'revision','',0),(3947,8,'2020-07-28 21:46:27','2020-07-28 21:46:27','<h2 class=\"text-center\">Contact Dr. Fields</h2>\nTo find out if you are a candidate for Stem Cell, PRP or Prolotherapy, call Dr. Fields office at <a href=\"tel:310-439-8999\">310-453-8999</a> , or fill out the Consultation form here.\n<div class=\"contact-frm\">[gravityform id=\"1\" title=\"false\" description=\"false\"]</div>','Contact','','inherit','closed','closed','','29-autosave-v1','','','2020-07-28 21:46:27','2020-07-28 21:46:27','',29,'https://www.drfields.com/uncategorized/29-autosave-v1/',0,'revision','',0),(3948,8,'2020-07-28 21:46:42','2020-07-28 21:46:42','<h2 class=\"text-center\">Contact Dr. Fields</h2>\r\nTo find out if you are a candidate for Stem Cell, PRP or Prolotherapy, call Dr. Fields office at <a href=\"tel:310-453-1234\">310-453-1234</a> , or fill out the Consultation form here.\r\n<div class=\"contact-frm\">[gravityform id=\"1\" title=\"false\" description=\"false\"]</div>','Contact','','inherit','closed','closed','','29-revision-v1','','','2020-07-28 21:46:42','2020-07-28 21:46:42','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(3949,8,'2020-07-28 21:47:48','2020-07-28 21:47:48','<h2 class=\"text-center\">Contact Dr. Fields</h2>\r\n<span class=\"text-center\"><strong>To find out if you are a candidate for Stem Cell, PRP or Prolotherapy, call Dr. Fields office at <a href=\"tel:310-453-1234\">310-453-1234</a> , or fill out the Consultation form here.</strong></span>\r\n<div class=\"contact-frm\">[gravityform id=\"1\" title=\"false\" description=\"false\"]</div>','Contact','','inherit','closed','closed','','29-revision-v1','','','2020-07-28 21:47:48','2020-07-28 21:47:48','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(3950,8,'2020-07-28 21:48:00','2020-07-28 21:48:00','<h2 class=\"text-center\">Contact Dr. Fields</h2>\r\n<span class=\"text-center\"><strong>To find out if you are a candidate for Stem Cell, PRP or Prolotherapy, call Dr. Fields office at <a href=\"tel:310-453-1234\">310-453-1234</a>, or fill out the Consultation form here.</strong></span>\r\n<div class=\"contact-frm\">[gravityform id=\"1\" title=\"false\" description=\"false\"]</div>','Contact','','inherit','closed','closed','','29-revision-v1','','','2020-07-28 21:48:00','2020-07-28 21:48:00','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(3951,8,'2020-07-28 21:49:43','2020-07-28 21:49:43','<h2 class=\"text-center\">Contact Dr. Fields</h2>\r\n<p style=\"text-align: center;\"><span class=\"text-center\"><strong>To find out if you are a candidate for Stem Cell, PRP or Prolotherapy, call Dr. Fields office at <a href=\"tel:310-453-1234\">310-453-1234</a>, or fill out the Consultation form here.</strong></span></p>\r\n\r\n<div class=\"contact-frm\">[gravityform id=\"1\" title=\"false\" description=\"false\"]</div>','Contact','','inherit','closed','closed','','29-revision-v1','','','2020-07-28 21:49:43','2020-07-28 21:49:43','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(3952,8,'2020-07-28 21:50:06','2020-07-28 21:50:06','<h2 class=\"text-center\">Contact Dr. Fields</h2>\r\n<p style=\"text-align: center;\"><strong>To find out if you are a candidate for Stem Cell, PRP or Prolotherapy, call Dr. Fields office at <a href=\"tel:310-453-1234\">310-453-1234</a>, or fill out the Consultation form here.</strong></p>\r\n\r\n<div class=\"contact-frm\">[gravityform id=\"1\" title=\"false\" description=\"false\"]</div>','Contact','','inherit','closed','closed','','29-revision-v1','','','2020-07-28 21:50:06','2020-07-28 21:50:06','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(3953,8,'2020-07-28 22:03:37','2020-07-28 22:03:37','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/Kili-top-header.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-07-28 22:03:37','2020-07-28 22:03:37','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(3955,9,'2020-08-01 01:37:09','2020-08-01 01:37:09','Are you experiencing pain in the shoulder that makes you cringe whenever you move it? And the pain is impacting everything you do, making both work and play almost impossible? You may have even been diagnosed with a problem of the Rotator Cuff, or some type of tendinopathy, which may include tendons that are worn, injured, stretched, or even torn. You may have been diagnosed with Rotator Cuff Tendonitis, and we\'ll talk about how you can get rid of the pain without the need for surgery.\n<h3><em>A Bit of Shoulder A</em><em>natomy</em></h3>\nFour muscles inside of the shoulder allow us to rotate our arm. These four muscles form a cuff of tendons around the top of the arm or the humeral head. If the rotator cuff is torn, it means there is a tear of one or more of the tendons of those four rotator cuff muscles of the shoulder. A rotator cuff “injury” might include any type of irritation or overuse of either the tendons or the muscles. Rotator cuff tendonitis is one of those injuries.\n<h2>More on The Anatomy of the Shoulder and the Rotator Cuff</h2>\nThe shoulder is made up of two joints, the glenohumeral joint and the acromioclavicular joint. The first one, the glenohumeral joint,  is a ball and socket joint formed by the top of the humerus and the socket of the scapula. The four muscles and tendons of the <strong>rotator cuff </strong>surround the glenohumeral joint and hold the head of the humerus into the scapula. What does the rotator cuff do? The rotator cuff functions to stabilize the shoulder and allow the arms to move through a full range of motion. The rotator cuff works together with the deltoid muscle to provide motion and strength to the shoulder for activities that require motion above the waist and shoulders.<strong> </strong>\n\n<strong><em>Tendinopathy, Tendonitis, and Tendinosis</em></strong>\n\nYes, these words look pretty similar, but they mean different things. <strong>Tendinopathy</strong> is a problem of the tendon that results in pain, swelling, and impaired function. Both tendonitis and tendinosis are a type of tendinopathy. <strong>Tendonitis</strong> is an inflammation or irritation of a tendon. And when tendonitis is left untreated, it can become <strong>tendinosis</strong>, which is a degeneration of the tendon.\n\n[caption id=\"attachment_3956\" align=\"alignleft\" width=\"500\"]<a href=\"https://youtu.be/rCf1JO5aNNA\"><img class=\"size-medium wp-image-3956\" src=\"https://www.drfields.com/wp-content/uploads/2020/03/Tony-Shoulder-500x377.png\" alt=\"Tony Shoulder\" width=\"500\" height=\"377\" /></a> Tony\'s Shoulder Tears were Repaired with PRP Prolotherapy. <a href=\"https://youtu.be/rCf1JO5aNNA\">Click to watch.</a>[/caption]\n<h2>Rotator Cuff Tendonitis</h2>\nIn the rest of this article, we will concentrate on rotator cuff tendonitis. Tendonitis is more common in adults over 40 years of age. Because as we age, the tendons become less elastic, tolerate less stress, and are more susceptible to injury.\n\nRotator cuff tendonitis occurs when the small muscles of the rotator cuff, the supraspinatus, infraspinatus, teres minor, and subscapularis, become strained causing weakness of these structures and subsequent tendonitis.\n\nWhile the deltoid muscle is the big and strong muscle of the shoulder, as seen on many well-built athletes, the small and relatively weak rotator cuff muscles perform key functions. The supraspinatus helps seat the humeral head (ball) into the glenoid cavity (socket) when the arm is raised from the side (abducted). The infraspinatus and teres minor rotate the forearm away from the body or in the hand-waving position (external rotation), and the subscapularis rotates the forearm towards the body (internal rotation).\n\nAll of those structures maintain quite an intricate balance between motion and joint stability. But it becomes altered with injury, creating a new state of imbalance and joint instability through a weakness in structures like the ligaments, tendons, and muscles of the rotator cuff. And what\'s the result? You guessed it...pain and impaired function. Rotator cuff tendonitis is often caused by or associated with repetitive overhead activities, as the rotator cuff is most vulnerable in this position.\n\nThe tendons of the rotator cuff pass underneath a bony area on their way to attaching to the top part of the arm bone. Rotator cuff tendonitis arises when inflammation or bony spurs narrow the space available for the rotator cuff tendons. And sandwiched between the two bones, wear and tear of the rotator cuff can take place, exacerbating this inflammation and pain.\n<h2>Development of Rotator Cuff Tendonitis</h2>\nRotator cuff tendonitis refers to irritation of these tendons and inflammation of the lining of these tendons. As mentioned previously, rotator cuff tendonitis most often occurs as a result of activities in which the arm is moved over the head repeatedly. Examples include sports activities such as tennis, pitching, swimming, or lifting weights over the head.\n\nAnd it\'s not just sporting activities that can cause it.  Other causes of rotator cuff tendonitis include occupational overuse, such as working with the arm overhead for many hours or days; impingement syndrome; an existing weakness of the rotator cuff muscles, ligaments, or tendons; use of improper technique during an occupational activity. Other things that can lead to this condition include poor posture; sleeping on the same arm each night; cervical spine nerve pinching; an improper training schedule, such as too much too soon; a direct trauma, such as a fall directly onto the shoulder or onto an outstretched arm; poor muscle control or coordination; poor posture over the years; or a loose or unstable shoulder joint following a previous dislocation. If the rotator cuff continues to be injured or inflamed it will eventually tear, resulting in a more serious problem.\n<h2>Symptoms of Rotator Cuff Tendonitis</h2>\nThe classic symptoms of rotator cuff tendonitis include a “toothache-like” pain that radiates down the outer arm to several inches below the top of the shoulder. Pain may also occur at the top and front of the shoulder. Initially, the pain may be mild and only occur with certain arm movements. Over time, pain is noticeable at rest and during the night. Sleep is interrupted due to a nagging upper arm pain. Activities requiring the raising of the arm overhead or those that require reaching behind the body usually aggravate the symptoms. The shoulder may feel stiff with lifting or movement.\n<h2>Rotator Cuff Tendonitis Treatments</h2>\nThe initial treatment traditionally used for rotator cuff tendonitis frequently includes limiting above shoulder level activity, application of ice to the shoulder, anti-inflammatory medications for pain, and physical therapy to maintain flexibility.\n\nThe use of anti-inflammatories and steroids is common in the treatment of rotator cuff tendonitis, but it may actually hinder the healing of tendons and ligaments, and unfortunately, do not address the root of the problem. Physical therapy is often an important part of recovery from these types of shoulder injuries, but if progress is not being made, and symptoms continue, it may be time to seek out regenerative treatments. Why? Physical therapy is a great treatment option but it is unable to address underlying degenerative issues such as fraying and tearing of the tendon.\n<h2>Regenerative Orthopedics for Rotator Cuff Tendonitis</h2>\nRegenerative Orthopedics is recommended to <strong>regenerate</strong> and repair the soft tissues of the shoulder. Plus, it also strengthens the ligaments and the tendons of the rotator cuff and deltoid. The combination of repair and the gradual re-strengthening of the rotator cuff muscles promises an excellent chance for a full recovery and full performance. Regenerative Orthopedics is also an excellent post-operative treatment to improve tissue strength and overall recovery in the event that surgery is truly necessary. This may be a possibility when a rotator cuff tear has become large enough to produce profound weakness in the shoulder.\n\nThe increase in blood flow and regenerative cells encouraged by this treatment is similar to the body’s natural healing response. The body also responds by depositing collagen at the site of injury, strengthening the rotator cuff tendons that once were weak, and resulting in the healing of the injured rotator cuff soft tissues.\n<h2>Think Regenerative Orthopedics may be for you? Contact us!</h2>\nPlease <a href=\"https://www.drfields.com/contact/\">contact us</a> at OrthoRegen<sup>®</sup>, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.\n\nOrthoRegen<sup>®</sup> is a full-time Regenerative Orthopedics office, with extensive experience in Stem Cell Therapy, PRP, and Prolotherapy. When it comes to Stem Cell Therapy, we use only the Gold Standard, which is so effective at repairing degenerated joints.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Relieve Pain from Rotator Cuff Tendonitis','','inherit','closed','closed','','3584-autosave-v1','','','2020-08-01 01:37:09','2020-08-01 01:37:09','',3584,'https://www.drfields.com/uncategorized/3584-autosave-v1/',0,'revision','',0),(3956,9,'2020-08-01 00:53:40','2020-08-01 00:53:40','Tony Shoulder','Tony Shoulder','Tony Shoulder','inherit','open','closed','','tony-shoulder','','','2020-08-01 00:53:40','2020-08-01 00:53:40','',3584,'https://www.drfields.com/wp-content/uploads/2020/03/Tony-Shoulder.png',0,'attachment','image/png',0),(3957,9,'2020-08-01 01:41:08','2020-08-01 01:41:08','Are you experiencing pain in the shoulder that makes you cringe whenever you move it? And the pain is impacting everything you do, making both work and play almost impossible? You may have even been diagnosed with a problem of the Rotator Cuff, or some type of tendinopathy, which may include tendons that are worn, injured, stretched, or even torn. You may have been diagnosed with Rotator Cuff Tendonitis, and we\'ll talk about how you can get rid of the pain without the need for surgery.\r\n<h3><em>A Bit of Shoulder A</em><em>natomy</em></h3>\r\nFour muscles inside of the shoulder allow us to rotate our arm. These four muscles form a cuff of tendons around the top of the arm or the humeral head. If the rotator cuff is torn, it means there is a tear of one or more of the tendons of those four rotator cuff muscles of the shoulder. A rotator cuff “injury” might include any type of irritation or overuse of either the tendons or the muscles. Rotator cuff tendonitis is one of those injuries.\r\n<h2>More on The Anatomy of the Shoulder and the Rotator Cuff</h2>\r\nThe shoulder is made up of two joints, the glenohumeral joint and the acromioclavicular joint. The first one, the glenohumeral joint,  is a ball and socket joint formed by the top of the humerus and the socket of the scapula. The four muscles and tendons of the <strong>rotator cuff </strong>surround the glenohumeral joint and hold the head of the humerus into the scapula. What does the rotator cuff do? The rotator cuff functions to stabilize the shoulder and allow the arms to move through a full range of motion. The rotator cuff works together with the deltoid muscle to provide motion and strength to the shoulder for activities that require motion above the waist and shoulders.<strong> </strong>\r\n\r\n<strong><em>Tendinopathy, Tendonitis, and Tendinosis</em></strong>\r\n\r\nYes, these words look pretty similar, but they mean different things. <strong>Tendinopathy</strong> is a problem of the tendon that results in pain, swelling, and impaired function. Both tendonitis and tendinosis are a type of tendinopathy. <strong>Tendonitis</strong> is an inflammation or irritation of a tendon. And when tendonitis is left untreated, it can become <strong>tendinosis</strong>, which is a degeneration of the tendon.\r\n\r\n[caption id=\"attachment_3956\" align=\"alignleft\" width=\"500\"]<a href=\"https://youtu.be/rCf1JO5aNNA\"><img class=\"size-medium wp-image-3956\" src=\"https://www.drfields.com/wp-content/uploads/2020/03/Tony-Shoulder-500x377.png\" alt=\"Tony Shoulder\" width=\"500\" height=\"377\" /></a> Tony\'s Shoulder Tears were Repaired with PRP Prolotherapy. <a href=\"https://youtu.be/rCf1JO5aNNA\">Click to watch.</a>[/caption]\r\n<h2>Rotator Cuff Tendonitis</h2>\r\nIn the rest of this article, we will concentrate on rotator cuff tendonitis. Tendonitis is more common in adults over 40 years of age. Because as we age, the tendons become less elastic, tolerate less stress, and are more susceptible to injury.\r\n\r\nRotator cuff tendonitis occurs when the small muscles of the rotator cuff, the supraspinatus, infraspinatus, teres minor, and subscapularis, become strained causing weakness of these structures and subsequent tendonitis.\r\n\r\nWhile the deltoid muscle is the big and strong muscle of the shoulder, as seen on many well-built athletes, the small and relatively weak rotator cuff muscles perform key functions. The supraspinatus helps seat the humeral head (ball) into the glenoid cavity (socket) when the arm is raised from the side (abducted). The infraspinatus and teres minor rotate the forearm away from the body or in the hand-waving position (external rotation), and the subscapularis rotates the forearm towards the body (internal rotation).\r\n\r\nAll of those structures maintain quite an intricate balance between motion and joint stability. But it becomes altered with injury, creating a new state of imbalance and joint instability through a weakness in structures like the ligaments, tendons, and muscles of the rotator cuff. And what\'s the result? You guessed it...pain and impaired function. Rotator cuff tendonitis is often caused by or associated with repetitive overhead activities, as the rotator cuff is most vulnerable in this position.\r\n\r\nThe tendons of the rotator cuff pass underneath a bony area on their way to attaching to the top part of the arm bone. Rotator cuff tendonitis arises when inflammation or bony spurs narrow the space available for the rotator cuff tendons. And sandwiched between the two bones, wear and tear of the rotator cuff can take place, exacerbating this inflammation and pain.\r\n<h2>Development of Rotator Cuff Tendonitis</h2>\r\nRotator cuff tendonitis refers to irritation of these tendons and inflammation of the lining of these tendons. As mentioned previously, rotator cuff tendonitis most often occurs as a result of activities in which the arm is moved over the head repeatedly. Examples include sports activities such as tennis, pitching, swimming, or lifting weights over the head.\r\n\r\nAnd it\'s not just sporting activities that can cause it.  Other causes of rotator cuff tendonitis include occupational overuse, such as working with the arm overhead for many hours or days; impingement syndrome; an existing weakness of the rotator cuff muscles, ligaments, or tendons; use of improper technique during an occupational activity. Other things that can lead to this condition include poor posture; sleeping on the same arm each night; cervical spine nerve pinching; an improper training schedule, such as too much too soon; a direct trauma, such as a fall directly onto the shoulder or onto an outstretched arm; poor muscle control or coordination; poor posture over the years; or a loose or unstable shoulder joint following a previous dislocation. If the rotator cuff continues to be injured or inflamed it will eventually tear, resulting in a more serious problem.\r\n<h2>Symptoms of Rotator Cuff Tendonitis</h2>\r\nThe classic symptoms of rotator cuff tendonitis include a “toothache-like” pain that radiates down the outer arm to several inches below the top of the shoulder. Pain may also occur at the top and front of the shoulder. Initially, the pain may be mild and only occur with certain arm movements. Over time, pain is noticeable at rest and during the night. Sleep is interrupted due to a nagging upper arm pain. Activities requiring the raising of the arm overhead or those that require reaching behind the body usually aggravate the symptoms. The shoulder may feel stiff with lifting or movement.\r\n<h2>Rotator Cuff Tendonitis Treatments</h2>\r\nThe initial treatment traditionally used for rotator cuff tendonitis frequently includes limiting above shoulder level activity, application of ice to the shoulder, anti-inflammatory medications for pain, and physical therapy to maintain flexibility.\r\n\r\nThe use of anti-inflammatories and steroids is common in the treatment of rotator cuff tendonitis, but it may actually hinder the healing of tendons and ligaments, and unfortunately, do not address the root of the problem. Physical therapy is often an important part of recovery from these types of shoulder injuries, but if progress is not being made, and symptoms continue, it may be time to seek out regenerative treatments. Why? Physical therapy is a great treatment option but it is unable to address underlying degenerative issues such as fraying and tearing of the tendon.\r\n<h2>Regenerative Orthopedics for Rotator Cuff Tendonitis</h2>\r\nRegenerative Orthopedics is recommended to <strong>regenerate</strong> and repair the soft tissues of the shoulder. Plus, it also strengthens the ligaments and the tendons of the rotator cuff and deltoid. The combination of repair and the gradual re-strengthening of the rotator cuff muscles promises an excellent chance for a full recovery and full performance. Regenerative Orthopedics is also an excellent post-operative treatment to improve tissue strength and overall recovery in the event that surgery is truly necessary. This may be a possibility when a rotator cuff tear has become large enough to produce profound weakness in the shoulder.\r\n\r\nThe increase in blood flow and regenerative cells encouraged by this treatment is similar to the body’s natural healing response. The body also responds by depositing collagen at the site of injury, strengthening the rotator cuff tendons that once were weak, and resulting in the healing of the injured rotator cuff soft tissues.\r\n<h2>Think Regenerative Orthopedics may be for you? Contact us!</h2>\r\nPlease <a href=\"https://www.drfields.com/contact/\">contact us</a> at OrthoRegen<sup>®</sup>, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.\r\n\r\nOrthoRegen<sup>®</sup> is a full-time Regenerative Orthopedics office, with extensive experience in Stem Cell Therapy, PRP, and Prolotherapy. When it comes to Stem Cell Therapy, we use only the Gold Standard, which is so effective at repairing degenerated joints.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Relieve Pain from Rotator Cuff Tendonitis','','inherit','closed','closed','','3584-revision-v1','','','2020-08-01 01:41:08','2020-08-01 01:41:08','',3584,'https://www.drfields.com/uncategorized/3584-revision-v1/',0,'revision','',0),(3958,9,'2020-08-01 02:16:04','2020-08-01 02:16:04','When we are confronted with a joint replacement recommendation by our doctor it is so important to get informed and know what to expect. Many of us are concerned about the pain, the recovery time, and the cost. But have you ever thought about having allergic reactions to joint replacements?\n\nAllergy to the implant materials is an actual issue. And it\'s a new concern for individuals with joint pain who face joint replacement. It’s also another good reason to investigate other options when confronted with a surgical referral. In several previous articles, we have discussed how Regenerative Orthopedics is an effective alternative to surgery and one that really should be strongly considered.\n<h3>Are Joint Replacements Bad?</h3>\nOf course, there are times when surgery is necessary. However, every time a surgeon cuts, shaves, and/or removes parts of a joint, there is always an increased possibility for the development of arthritis, degeneration, and further pain in that joint. That’s because the removal of tissue causes the joints to become more unstable. The soft tissue structures are what provide much of the stability in the joint. So when they are cut or removed, the joint stability it altered.  Besides, why go through the pain and expense of surgery when you don’t need to? Now, allergic reactions to joint replacements are another reason to look for an alternative to surgery. And scientists are documenting the risk of allergy from implants.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\n<h3>What Are Scientists Saying About Allergic Reactions to Joint Replacements and Metal Implants?</h3>\n“Metal allergy is in fact a well-documented factor in the failure of implants, and the need for allergy testing in sensitive patients is well recognized by both implant manufacturers and by surgeons alike.” And in this study, “All of the samples studied contained a consistent yet low percentage of components to which allergies have been contributed.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a> But even small amounts are sufficient to cause an allergic reaction.\n<h3>What are the Symptoms of Allergic Reactions to Joint Replacements and Metal Implants?</h3>\n“Patients suffering from metal hypersensitivity may have numerous local symptoms associated with an overactive immune system, such as localized pain, swelling, cutaneous allergic reactions, joint and muscle pain, implant failure, apparent recurrent infections around the operation site, and possible systemic reactions such as fibromyalgia, chronic fatigue and cognitive impairment.”<sup>ii </sup>As you can see, some of these hypersensitivity reactions result in chronic auto-immune type illnesses. That is a far cry from what the individual thought they were signing up for when they choose the route of the surgical implant…freedom from pain and suffering.\n\nTitanium used to be thought of as one of the safer metals, and in fact was used as the implant of choice for patients suffering from allergies to nickel, chrome, and cobalt. However, the titanium implants also contain these previously noted metals that are causing allergic responses.<sup>ii</sup>\n\nMetals usually found in common medical-grade alloys include cobalt, nickel, chrome, stainless steel, and titanium. Many also contain various detectable impurities like aluminum, iron, vanadium, and more.<sup>ii</sup>\n\nIt is of utmost importance that if you have an allergy to these metals, that you are thoroughly informed about the potential reaction that might result from the choice of implant materials.<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a>\n<h2>Corrosion of Implant Materials</h2>\n<strong>Allergic reactions to joint replacements are not the only problem that can occur with implant materials. There is also an issue of corrosion of the implants with wear and tear</strong>.\n\nNo matter what materials are used in joint replacements, wear of the implant is a predictable problem.  In fact, wear is the major reason orthopedic implants malfunction. That malfunction actually hastens the problem of corrosion. When implant materials are chosen, they are chosen because of their higher resistance to wear, like metal alloy and ceramics.\n\nIn hip implants, titanium and its alloys are often used for fabricating the femoral component. And the ball is prepared by either cobalt-chromium alloy or other hard ceramics. The debris that is released with the wear that damages the implant can begin a biological process that activates a brutal inflammatory reaction. The corrosion that transpires from the friction that results from this wear is actually a huge worry because it discharges non-compatible metallic ions that are dispersed into the body. <a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\n\nResearch articles demonstrate plenty of evidence about the issue of corrosion of implants and how the debris results in disease. One article discusses how cobalt alloy debris has been implicated in the early failure of some designs of current total joint implants, and also how the debris from cobalt implants causes an extreme inflammatory reaction and even bone loss.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\n\nHere is an excerpt from another article: “Immune reactions to orthopedic implant debris are the primary cause of total joint replacement (TJR) failure over the long term (15–20 years). It has been well established that implant debris causes local inflammation, limiting the long-term performance of the over one million total joint replacements (TJR) implanted each year in the US. Implant debris induces a subtle inflammatory cascade resulting in a slow progression of bone loss… that over time leads to implant failure.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\n\nThe researchers say in these studies that the debris from implants is definitely a problem and that it causes disease. Obviously, this is not a good scenario.\n<h3>So, Where Does the Debris from Wear and Tear of the Implant Go?</h3>\nThe scientists find the debris in the lymph nodes, liver, and spleen according to the research looking at the dissemination of wear particles. “Metallic wear particles in the liver or spleen were more prevalent in patients who had had a failed hip arthroplasty (seven of eight) than in patients who had had a primary hip (two of eleven) or knee replacement (two of ten).\n\nMetallic wear particles were detected in the lymph nodes in 68 percent (nineteen) of the twenty-eight patients with an implant from whom lymph nodes were available for study.\n\nIn this study, the systemic distribution of metallic and polyethylene wear particles was a common finding. Both in patients with a previously failed implant and in those with a primary total joint prosthesis. The prevalence of particles in the liver or spleen was greater after reconstructions with mechanical failure.”<a href=\"#_edn7\" name=\"_ednref7\">[vii]</a>\n<h3>Regenerative Orthopedics: An Alternative to Joint Replacement</h3>\nMany people contact our office because they are experiencing joint pain and are looking for an <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-treatment-an-alternative-to-joint-replacement/\">alternative to a surgical joint replacement.</a> We offer very effective non-surgical options with Regenerative Orthopedics, including <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a>.\n\nAt OrthoRegen<sup>®</sup>, we only use the Gold Standard in Stem Cell Therapy, and the procedure only has to be done once. Plus, this non-surgical therapy not only provides a non-surgical option but also helps you to avoid an allergic response from the implants used in joint replacement or the pathology that can occur from the debris caused by corrosion.\n\nWe strongly recommend looking into non-surgical Regenerative Orthopedics with Peter A. Fields, MD, DC, and OrthoRegen<sup>®</sup> for the repair of painful joints before opting for a joint replacement. Call us today at 310-453-1234.\n\nRemember, once surgery has been done, it cannot be undone.\n\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Laitinen, Minna, et al. \"High blood metal ion levels in 19 of 22 patients with metal-on-metal hinge knee replacements: A cause for concern.\" <em>Acta Orthopaedica</em> 88.3 (2017): 269-274.\n\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Harloff, Thomas, et al. \"Titanium allergy or not?.\" <em>Health</em> 2.04 (2010): 306.\n\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Guenther D, Thomas P, Kendoff D, Omar M, Gehrke T, Haasper C. Allergic reactions in arthroplasty: myth or serious problem? Int Orthop. 2016 Feb;40(2):239-44. doi: 10.1007/s00264-015-3001-6. Epub 2015 Nov 2.\n\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Gao, Chengde, et al. \"Highly biodegradable and bioactive Fe-Pd-bredigite biocomposites prepared by selective laser melting.\" <em>Journal of advanced research</em> 20 (2019): 91-104.\n\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Samelko, Lauryn, et al. \"Cobalt alloy implant debris induces inflammation and bone loss primarily through danger signaling, not TLR4 activation: implications for DAMP-ening implant related inflammation.\" <em>PLoS One</em> 11.7 (2016).\n\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Samelko, Lauryn, et al. \"TLR4 (not TLR2) dominate cognate TLR activity associated with CoCrMo implant particles.\" <em>Journal of Orthopaedic Research</em> 35.5 (2017): 1007-1017.\n\n<a href=\"#_ednref7\" name=\"_edn7\">[vii]</a> Urban, Robert M., et al. \"Dissemination of wear particles to the liver, spleen, and abdominal lymph nodes of patients with hip or knee replacement.\" <em>JBJS</em> 82.4 (2000): 457.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Allergic Reactions to Joint Replacements','','inherit','closed','closed','','3547-autosave-v1','','','2020-08-01 02:16:04','2020-08-01 02:16:04','',3547,'https://www.drfields.com/uncategorized/3547-autosave-v1/',0,'revision','',0),(3959,9,'2020-08-01 02:00:25','2020-08-01 02:00:25','When we are confronted with a joint replacement recommendation by our doctor it is so important to get informed and know what to expect. Many of us are concerned about the pain, the recovery time, and the cost. But have you ever thought about having an allergy to the joint replacement?\r\n\r\nAllergy to the implant materials is an actual issue. And it\'s a new concern for individuals with joint pain who face joint replacement. It’s also another good reason to investigate other options when confronted with a surgical referral. In several previous articles, we have discussed how Regenerative Orthopedics is as an effective alternative to surgery, and one that really should be strongly considered.\r\n<h3>Is Joint Replacement Bad?</h3>\r\nOf course, there are times when surgery is necessary. However, every time a surgeon cuts, shaves and/or removes parts of a joint, there is always an increased possibility for the development of arthritis, degeneration and further pain in that joint. That’s because the removal of tissue causes the joints to become more unstable. The soft tissue structures are what provide much of the stability in the joint. So when they are cut or removed, the joint stability it altered.  Besides, why go through the pain and expense of surgery when you don’t need to? Now, allergic reactions to joint replacements are another reason to look for an alternative to surgery. And scientists are documenting the risk of allergy from implants.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n<h3>What Are Scientists Saying About Allergies from Joint Replacements and Metal Implants?</h3>\r\n“Metal allergy is in fact a well-documented factor in the failure of implants, and the need for allergy testing in sensitive patients is well recognized by both implant manufacturers and by surgeons alike.” And in this study, “All of the samples studied contained a consistent yet low percentage of components to which allergies have been contributed.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a> But even small amounts are sufficient to cause an allergic reaction.\r\n<h3>What are the symptoms of metal allergy?</h3>\r\n“Patients suffering from metal hypersensitivity may have numerous local symptoms associated with an overactive immune system, such as localized pain, swelling, cutaneous allergic reactions, joint and muscle pain, implant failure, apparent recurrent infections around the operation site, and possible systemic reactions such as fibromyalgia, chronic fatigue and cognitive impairment.”<sup>ii </sup>As you can see, some of these hypersensitivity reactions result in chronic auto-immune type illnesses. That is a far cry from what the individual thought they were signing up for when they choose the route of the surgical implant…freedom from pain and suffering.\r\n\r\nTitanium used to be thought of as one of the safer metals, and in fact was used as the implant of choice for patients suffering from allergies to nickel, chrome, and cobalt. However, the titanium implants also contain these previously noted metals that are causing allergic responses.<sup>ii</sup>\r\n\r\nMetals usually found in common medical-grade alloys include cobalt, nickel, chrome, stainless steel, and titanium. Many also contain various detectable impurities like aluminum, iron, vanadium, and more.<sup>ii</sup>\r\n\r\nIt is of utmost importance that if you have an allergy to these metals, that you are thoroughly informed about the potential reaction that might result from the choice of implant materials.<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a>\r\n<h2>Corrosion of Implant Materials</h2>\r\n<strong>Allergies from joint replacements are not the only problem that can occur with implant materials. There is also an issue of corrosion of the implants with wear and tear</strong>.\r\n\r\nNo matter what materials are used in joint replacements, wear of the implant is a predictable problem.  In fact, wear is the major reason orthopedic implants malfunction. That malfunction actually hastens the problem of corrosion. When implant materials are chosen, they are chosen because of their higher resistance to wear, like metal alloy and ceramics.\r\n\r\nIn hip implants, titanium and its alloys are often used for fabricating the femoral component. And the ball is prepared by either cobalt-chromium alloy or other hard ceramics. The debris that is released with the wear that damages the implant can begin a biological process that activates a brutal inflammatory reaction. The corrosion that transpires from the friction that results from this wear is actually a huge worry because it discharges non-compatible metallic ions that are dispersed into the body. <a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\r\n\r\nResearch articles demonstrate plenty of evidence about the issue of corrosion of implants and how the debris results in disease. One article discusses how cobalt alloy debris has been implicated in the early failure of some designs of current total joint implants, and also how the debris from cobalt implants causes an extreme inflammatory reaction and even bone loss.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\r\n\r\nHere is an excerpt from another article: “Immune reactions to orthopedic implant debris are the primary cause of total joint replacement (TJR) failure over the long term (15–20 years). It has been well established that implant debris causes local inflammation, limiting the long-term performance of the over one million total joint replacements (TJR) implanted each year in the US. Implant debris induces a subtle inflammatory cascade resulting in a slow progression of bone loss… that over time leads to implant failure.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nThe researchers are saying that the debris from implants is definitely a problem and that it causes disease. Obviously, this is not a good scenario.\r\n<h3>So, Where Does the Debris from Wear and Tear of the Implant Go?</h3>\r\nIn research looking at the dissemination of wear particles, the scientists find the debris in the lymph nodes, liver, and spleen. “Metallic wear particles in the liver or spleen were more prevalent in patients who had had a failed hip arthroplasty (seven of eight) than in patients who had had a primary hip (two of eleven) or knee replacement (two of ten).\r\n\r\nMetallic wear particles were detected in the lymph nodes in 68 percent (nineteen) of the twenty-eight patients with an implant from whom lymph nodes were available for study. In this study, systemic distribution of metallic and polyethylene wear particles was a common finding, both in patients with a previously failed implant and in those with a primary total joint prosthesis. The prevalence of particles in the liver or spleen was greater after reconstructions with mechanical failure.”<a href=\"#_edn7\" name=\"_ednref7\">[vii]</a>\r\n\r\nMany people contact our office because they are experiencing joint pain and are looking for an alternative to a surgical joint replacement. We offer very effective non-surgical options with Regenerative Orthopedics, including Stem Cell Therapy. At OrthoRegen<sup>®</sup>, we only use the Gold Standard in Stem Cell Therapy, and the procedure only has to be done once. Plus, this non-surgical therapy not only provides a non-surgical option but also helps you to avoid an allergic response from the implants used in joint replacement or the pathology that can occur from the debris caused by corrosion.\r\n\r\nWe strongly recommend looking into non-surgical Regenerative Orthopedics with Peter A. Fields, MD, DC, and OrthoRegen<sup>®</sup> for the repair of painful joints before opting for a joint replacement.\r\n\r\nRemember, once surgery has been done, it cannot be undone.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Laitinen, Minna, et al. \"High blood metal ion levels in 19 of 22 patients with metal-on-metal hinge knee replacements: A cause for concern.\" <em>Acta Orthopaedica</em> 88.3 (2017): 269-274.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Harloff, Thomas, et al. \"Titanium allergy or not?.\" <em>Health</em> 2.04 (2010): 306.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Guenther D, Thomas P, Kendoff D, Omar M, Gehrke T, Haasper C. Allergic reactions in arthroplasty: myth or serious problem? Int Orthop. 2016 Feb;40(2):239-44. doi: 10.1007/s00264-015-3001-6. Epub 2015 Nov 2.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Gao, Chengde, et al. \"Highly biodegradable and bioactive Fe-Pd-bredigite biocomposites prepared by selective laser melting.\" <em>Journal of advanced research</em> 20 (2019): 91-104.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Samelko, Lauryn, et al. \"Cobalt alloy implant debris induces inflammation and bone loss primarily through danger signaling, not TLR4 activation: implications for DAMP-ening implant related inflammation.\" <em>PLoS One</em> 11.7 (2016).\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Samelko, Lauryn, et al. \"TLR4 (not TLR2) dominate cognate TLR activity associated with CoCrMo implant particles.\" <em>Journal of Orthopaedic Research</em> 35.5 (2017): 1007-1017.\r\n\r\n<a href=\"#_ednref7\" name=\"_edn7\">[vii]</a> Urban, Robert M., et al. \"Dissemination of wear particles to the liver, spleen, and abdominal lymph nodes of patients with hip or knee replacement.\" <em>JBJS</em> 82.4 (2000): 457.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Allergic Reactions to Joint Replacements','','inherit','closed','closed','','3547-revision-v1','','','2020-08-01 02:00:25','2020-08-01 02:00:25','',3547,'https://www.drfields.com/uncategorized/3547-revision-v1/',0,'revision','',0),(3960,9,'2020-08-01 02:01:20','2020-08-01 02:01:20','When we are confronted with a joint replacement recommendation by our doctor it is so important to get informed and know what to expect. Many of us are concerned about the pain, the recovery time, and the cost. But have you ever thought about having allergic reactions to joint replacements?\r\n\r\nAllergy to the implant materials is an actual issue. And it\'s a new concern for individuals with joint pain who face joint replacement. It’s also another good reason to investigate other options when confronted with a surgical referral. In several previous articles, we have discussed how Regenerative Orthopedics is as an effective alternative to surgery, and one that really should be strongly considered.\r\n<h3>Is Joint Replacement Bad?</h3>\r\nOf course, there are times when surgery is necessary. However, every time a surgeon cuts, shaves and/or removes parts of a joint, there is always an increased possibility for the development of arthritis, degeneration and further pain in that joint. That’s because the removal of tissue causes the joints to become more unstable. The soft tissue structures are what provide much of the stability in the joint. So when they are cut or removed, the joint stability it altered.  Besides, why go through the pain and expense of surgery when you don’t need to? Now, allergic reactions to joint replacements are another reason to look for an alternative to surgery. And scientists are documenting the risk of allergy from implants.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n<h3>What Are Scientists Saying About Allergies from Joint Replacements and Metal Implants?</h3>\r\n“Metal allergy is in fact a well-documented factor in the failure of implants, and the need for allergy testing in sensitive patients is well recognized by both implant manufacturers and by surgeons alike.” And in this study, “All of the samples studied contained a consistent yet low percentage of components to which allergies have been contributed.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a> But even small amounts are sufficient to cause an allergic reaction.\r\n<h3>What are the symptoms of metal allergy?</h3>\r\n“Patients suffering from metal hypersensitivity may have numerous local symptoms associated with an overactive immune system, such as localized pain, swelling, cutaneous allergic reactions, joint and muscle pain, implant failure, apparent recurrent infections around the operation site, and possible systemic reactions such as fibromyalgia, chronic fatigue and cognitive impairment.”<sup>ii </sup>As you can see, some of these hypersensitivity reactions result in chronic auto-immune type illnesses. That is a far cry from what the individual thought they were signing up for when they choose the route of the surgical implant…freedom from pain and suffering.\r\n\r\nTitanium used to be thought of as one of the safer metals, and in fact was used as the implant of choice for patients suffering from allergies to nickel, chrome, and cobalt. However, the titanium implants also contain these previously noted metals that are causing allergic responses.<sup>ii</sup>\r\n\r\nMetals usually found in common medical-grade alloys include cobalt, nickel, chrome, stainless steel, and titanium. Many also contain various detectable impurities like aluminum, iron, vanadium, and more.<sup>ii</sup>\r\n\r\nIt is of utmost importance that if you have an allergy to these metals, that you are thoroughly informed about the potential reaction that might result from the choice of implant materials.<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a>\r\n<h2>Corrosion of Implant Materials</h2>\r\n<strong>Allergies from joint replacements are not the only problem that can occur with implant materials. There is also an issue of corrosion of the implants with wear and tear</strong>.\r\n\r\nNo matter what materials are used in joint replacements, wear of the implant is a predictable problem.  In fact, wear is the major reason orthopedic implants malfunction. That malfunction actually hastens the problem of corrosion. When implant materials are chosen, they are chosen because of their higher resistance to wear, like metal alloy and ceramics.\r\n\r\nIn hip implants, titanium and its alloys are often used for fabricating the femoral component. And the ball is prepared by either cobalt-chromium alloy or other hard ceramics. The debris that is released with the wear that damages the implant can begin a biological process that activates a brutal inflammatory reaction. The corrosion that transpires from the friction that results from this wear is actually a huge worry because it discharges non-compatible metallic ions that are dispersed into the body. <a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\r\n\r\nResearch articles demonstrate plenty of evidence about the issue of corrosion of implants and how the debris results in disease. One article discusses how cobalt alloy debris has been implicated in the early failure of some designs of current total joint implants, and also how the debris from cobalt implants causes an extreme inflammatory reaction and even bone loss.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\r\n\r\nHere is an excerpt from another article: “Immune reactions to orthopedic implant debris are the primary cause of total joint replacement (TJR) failure over the long term (15–20 years). It has been well established that implant debris causes local inflammation, limiting the long-term performance of the over one million total joint replacements (TJR) implanted each year in the US. Implant debris induces a subtle inflammatory cascade resulting in a slow progression of bone loss… that over time leads to implant failure.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nThe researchers are saying that the debris from implants is definitely a problem and that it causes disease. Obviously, this is not a good scenario.\r\n<h3>So, Where Does the Debris from Wear and Tear of the Implant Go?</h3>\r\nIn research looking at the dissemination of wear particles, the scientists find the debris in the lymph nodes, liver, and spleen. “Metallic wear particles in the liver or spleen were more prevalent in patients who had had a failed hip arthroplasty (seven of eight) than in patients who had had a primary hip (two of eleven) or knee replacement (two of ten).\r\n\r\nMetallic wear particles were detected in the lymph nodes in 68 percent (nineteen) of the twenty-eight patients with an implant from whom lymph nodes were available for study. In this study, systemic distribution of metallic and polyethylene wear particles was a common finding, both in patients with a previously failed implant and in those with a primary total joint prosthesis. The prevalence of particles in the liver or spleen was greater after reconstructions with mechanical failure.”<a href=\"#_edn7\" name=\"_ednref7\">[vii]</a>\r\n\r\nMany people contact our office because they are experiencing joint pain and are looking for an alternative to a surgical joint replacement. We offer very effective non-surgical options with Regenerative Orthopedics, including Stem Cell Therapy. At OrthoRegen<sup>®</sup>, we only use the Gold Standard in Stem Cell Therapy, and the procedure only has to be done once. Plus, this non-surgical therapy not only provides a non-surgical option but also helps you to avoid an allergic response from the implants used in joint replacement or the pathology that can occur from the debris caused by corrosion.\r\n\r\nWe strongly recommend looking into non-surgical Regenerative Orthopedics with Peter A. Fields, MD, DC, and OrthoRegen<sup>®</sup> for the repair of painful joints before opting for a joint replacement.\r\n\r\nRemember, once surgery has been done, it cannot be undone.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Laitinen, Minna, et al. \"High blood metal ion levels in 19 of 22 patients with metal-on-metal hinge knee replacements: A cause for concern.\" <em>Acta Orthopaedica</em> 88.3 (2017): 269-274.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Harloff, Thomas, et al. \"Titanium allergy or not?.\" <em>Health</em> 2.04 (2010): 306.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Guenther D, Thomas P, Kendoff D, Omar M, Gehrke T, Haasper C. Allergic reactions in arthroplasty: myth or serious problem? Int Orthop. 2016 Feb;40(2):239-44. doi: 10.1007/s00264-015-3001-6. Epub 2015 Nov 2.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Gao, Chengde, et al. \"Highly biodegradable and bioactive Fe-Pd-bredigite biocomposites prepared by selective laser melting.\" <em>Journal of advanced research</em> 20 (2019): 91-104.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Samelko, Lauryn, et al. \"Cobalt alloy implant debris induces inflammation and bone loss primarily through danger signaling, not TLR4 activation: implications for DAMP-ening implant related inflammation.\" <em>PLoS One</em> 11.7 (2016).\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Samelko, Lauryn, et al. \"TLR4 (not TLR2) dominate cognate TLR activity associated with CoCrMo implant particles.\" <em>Journal of Orthopaedic Research</em> 35.5 (2017): 1007-1017.\r\n\r\n<a href=\"#_ednref7\" name=\"_edn7\">[vii]</a> Urban, Robert M., et al. \"Dissemination of wear particles to the liver, spleen, and abdominal lymph nodes of patients with hip or knee replacement.\" <em>JBJS</em> 82.4 (2000): 457.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Allergic Reactions to Joint Replacements','','inherit','closed','closed','','3547-revision-v1','','','2020-08-01 02:01:20','2020-08-01 02:01:20','',3547,'https://www.drfields.com/uncategorized/3547-revision-v1/',0,'revision','',0),(3961,9,'2020-08-01 02:01:59','2020-08-01 02:01:59','When we are confronted with a joint replacement recommendation by our doctor it is so important to get informed and know what to expect. Many of us are concerned about the pain, the recovery time, and the cost. But have you ever thought about having allergic reactions to joint replacements?\r\n\r\nAllergy to the implant materials is an actual issue. And it\'s a new concern for individuals with joint pain who face joint replacement. It’s also another good reason to investigate other options when confronted with a surgical referral. In several previous articles, we have discussed how Regenerative Orthopedics is an effective alternative to surgery and one that really should be strongly considered.\r\n<h3>Is Joint Replacement Bad?</h3>\r\nOf course, there are times when surgery is necessary. However, every time a surgeon cuts, shaves and/or removes parts of a joint, there is always an increased possibility for the development of arthritis, degeneration and further pain in that joint. That’s because the removal of tissue causes the joints to become more unstable. The soft tissue structures are what provide much of the stability in the joint. So when they are cut or removed, the joint stability it altered.  Besides, why go through the pain and expense of surgery when you don’t need to? Now, allergic reactions to joint replacements are another reason to look for an alternative to surgery. And scientists are documenting the risk of allergy from implants.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n<h3>What Are Scientists Saying About Allergies from Joint Replacements and Metal Implants?</h3>\r\n“Metal allergy is in fact a well-documented factor in the failure of implants, and the need for allergy testing in sensitive patients is well recognized by both implant manufacturers and by surgeons alike.” And in this study, “All of the samples studied contained a consistent yet low percentage of components to which allergies have been contributed.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a> But even small amounts are sufficient to cause an allergic reaction.\r\n<h3>What are the symptoms of metal allergy?</h3>\r\n“Patients suffering from metal hypersensitivity may have numerous local symptoms associated with an overactive immune system, such as localized pain, swelling, cutaneous allergic reactions, joint and muscle pain, implant failure, apparent recurrent infections around the operation site, and possible systemic reactions such as fibromyalgia, chronic fatigue and cognitive impairment.”<sup>ii </sup>As you can see, some of these hypersensitivity reactions result in chronic auto-immune type illnesses. That is a far cry from what the individual thought they were signing up for when they choose the route of the surgical implant…freedom from pain and suffering.\r\n\r\nTitanium used to be thought of as one of the safer metals, and in fact was used as the implant of choice for patients suffering from allergies to nickel, chrome, and cobalt. However, the titanium implants also contain these previously noted metals that are causing allergic responses.<sup>ii</sup>\r\n\r\nMetals usually found in common medical-grade alloys include cobalt, nickel, chrome, stainless steel, and titanium. Many also contain various detectable impurities like aluminum, iron, vanadium, and more.<sup>ii</sup>\r\n\r\nIt is of utmost importance that if you have an allergy to these metals, that you are thoroughly informed about the potential reaction that might result from the choice of implant materials.<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a>\r\n<h2>Corrosion of Implant Materials</h2>\r\n<strong>Allergies from joint replacements are not the only problem that can occur with implant materials. There is also an issue of corrosion of the implants with wear and tear</strong>.\r\n\r\nNo matter what materials are used in joint replacements, wear of the implant is a predictable problem.  In fact, wear is the major reason orthopedic implants malfunction. That malfunction actually hastens the problem of corrosion. When implant materials are chosen, they are chosen because of their higher resistance to wear, like metal alloy and ceramics.\r\n\r\nIn hip implants, titanium and its alloys are often used for fabricating the femoral component. And the ball is prepared by either cobalt-chromium alloy or other hard ceramics. The debris that is released with the wear that damages the implant can begin a biological process that activates a brutal inflammatory reaction. The corrosion that transpires from the friction that results from this wear is actually a huge worry because it discharges non-compatible metallic ions that are dispersed into the body. <a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\r\n\r\nResearch articles demonstrate plenty of evidence about the issue of corrosion of implants and how the debris results in disease. One article discusses how cobalt alloy debris has been implicated in the early failure of some designs of current total joint implants, and also how the debris from cobalt implants causes an extreme inflammatory reaction and even bone loss.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\r\n\r\nHere is an excerpt from another article: “Immune reactions to orthopedic implant debris are the primary cause of total joint replacement (TJR) failure over the long term (15–20 years). It has been well established that implant debris causes local inflammation, limiting the long-term performance of the over one million total joint replacements (TJR) implanted each year in the US. Implant debris induces a subtle inflammatory cascade resulting in a slow progression of bone loss… that over time leads to implant failure.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nThe researchers are saying that the debris from implants is definitely a problem and that it causes disease. Obviously, this is not a good scenario.\r\n<h3>So, Where Does the Debris from Wear and Tear of the Implant Go?</h3>\r\nIn research looking at the dissemination of wear particles, the scientists find the debris in the lymph nodes, liver, and spleen. “Metallic wear particles in the liver or spleen were more prevalent in patients who had had a failed hip arthroplasty (seven of eight) than in patients who had had a primary hip (two of eleven) or knee replacement (two of ten).\r\n\r\nMetallic wear particles were detected in the lymph nodes in 68 percent (nineteen) of the twenty-eight patients with an implant from whom lymph nodes were available for study. In this study, systemic distribution of metallic and polyethylene wear particles was a common finding, both in patients with a previously failed implant and in those with a primary total joint prosthesis. The prevalence of particles in the liver or spleen was greater after reconstructions with mechanical failure.”<a href=\"#_edn7\" name=\"_ednref7\">[vii]</a>\r\n\r\nMany people contact our office because they are experiencing joint pain and are looking for an alternative to a surgical joint replacement. We offer very effective non-surgical options with Regenerative Orthopedics, including Stem Cell Therapy. At OrthoRegen<sup>®</sup>, we only use the Gold Standard in Stem Cell Therapy, and the procedure only has to be done once. Plus, this non-surgical therapy not only provides a non-surgical option but also helps you to avoid an allergic response from the implants used in joint replacement or the pathology that can occur from the debris caused by corrosion.\r\n\r\nWe strongly recommend looking into non-surgical Regenerative Orthopedics with Peter A. Fields, MD, DC, and OrthoRegen<sup>®</sup> for the repair of painful joints before opting for a joint replacement.\r\n\r\nRemember, once surgery has been done, it cannot be undone.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Laitinen, Minna, et al. \"High blood metal ion levels in 19 of 22 patients with metal-on-metal hinge knee replacements: A cause for concern.\" <em>Acta Orthopaedica</em> 88.3 (2017): 269-274.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Harloff, Thomas, et al. \"Titanium allergy or not?.\" <em>Health</em> 2.04 (2010): 306.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Guenther D, Thomas P, Kendoff D, Omar M, Gehrke T, Haasper C. Allergic reactions in arthroplasty: myth or serious problem? Int Orthop. 2016 Feb;40(2):239-44. doi: 10.1007/s00264-015-3001-6. Epub 2015 Nov 2.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Gao, Chengde, et al. \"Highly biodegradable and bioactive Fe-Pd-bredigite biocomposites prepared by selective laser melting.\" <em>Journal of advanced research</em> 20 (2019): 91-104.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Samelko, Lauryn, et al. \"Cobalt alloy implant debris induces inflammation and bone loss primarily through danger signaling, not TLR4 activation: implications for DAMP-ening implant related inflammation.\" <em>PLoS One</em> 11.7 (2016).\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Samelko, Lauryn, et al. \"TLR4 (not TLR2) dominate cognate TLR activity associated with CoCrMo implant particles.\" <em>Journal of Orthopaedic Research</em> 35.5 (2017): 1007-1017.\r\n\r\n<a href=\"#_ednref7\" name=\"_edn7\">[vii]</a> Urban, Robert M., et al. \"Dissemination of wear particles to the liver, spleen, and abdominal lymph nodes of patients with hip or knee replacement.\" <em>JBJS</em> 82.4 (2000): 457.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Allergic Reactions to Joint Replacements','','inherit','closed','closed','','3547-revision-v1','','','2020-08-01 02:01:59','2020-08-01 02:01:59','',3547,'https://www.drfields.com/uncategorized/3547-revision-v1/',0,'revision','',0),(3962,9,'2020-08-01 02:10:37','2020-08-01 02:10:37','When we are confronted with a joint replacement recommendation by our doctor it is so important to get informed and know what to expect. Many of us are concerned about the pain, the recovery time, and the cost. But have you ever thought about having allergic reactions to joint replacements?\r\n\r\nAllergy to the implant materials is an actual issue. And it\'s a new concern for individuals with joint pain who face joint replacement. It’s also another good reason to investigate other options when confronted with a surgical referral. In several previous articles, we have discussed how Regenerative Orthopedics is an effective alternative to surgery and one that really should be strongly considered.\r\n<h3>Are Joint Replacements Bad?</h3>\r\nOf course, there are times when surgery is necessary. However, every time a surgeon cuts, shaves, and/or removes parts of a joint, there is always an increased possibility for the development of arthritis, degeneration, and further pain in that joint. That’s because the removal of tissue causes the joints to become more unstable. The soft tissue structures are what provide much of the stability in the joint. So when they are cut or removed, the joint stability it altered.  Besides, why go through the pain and expense of surgery when you don’t need to? Now, allergic reactions to joint replacements are another reason to look for an alternative to surgery. And scientists are documenting the risk of allergy from implants.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n<h3>What Are Scientists Saying About Allergic Reactions to Joint Replacements and Metal Implants?</h3>\r\n“Metal allergy is in fact a well-documented factor in the failure of implants, and the need for allergy testing in sensitive patients is well recognized by both implant manufacturers and by surgeons alike.” And in this study, “All of the samples studied contained a consistent yet low percentage of components to which allergies have been contributed.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a> But even small amounts are sufficient to cause an allergic reaction.\r\n<h3>What are the Symptoms of Allergic Reactions to Joint Replacements and Metal Implants?</h3>\r\n“Patients suffering from metal hypersensitivity may have numerous local symptoms associated with an overactive immune system, such as localized pain, swelling, cutaneous allergic reactions, joint and muscle pain, implant failure, apparent recurrent infections around the operation site, and possible systemic reactions such as fibromyalgia, chronic fatigue and cognitive impairment.”<sup>ii </sup>As you can see, some of these hypersensitivity reactions result in chronic auto-immune type illnesses. That is a far cry from what the individual thought they were signing up for when they choose the route of the surgical implant…freedom from pain and suffering.\r\n\r\nTitanium used to be thought of as one of the safer metals, and in fact was used as the implant of choice for patients suffering from allergies to nickel, chrome, and cobalt. However, the titanium implants also contain these previously noted metals that are causing allergic responses.<sup>ii</sup>\r\n\r\nMetals usually found in common medical-grade alloys include cobalt, nickel, chrome, stainless steel, and titanium. Many also contain various detectable impurities like aluminum, iron, vanadium, and more.<sup>ii</sup>\r\n\r\nIt is of utmost importance that if you have an allergy to these metals, that you are thoroughly informed about the potential reaction that might result from the choice of implant materials.<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a>\r\n<h2>Corrosion of Implant Materials</h2>\r\n<strong>Allergic reactions to joint replacements are not the only problem that can occur with implant materials. There is also an issue of corrosion of the implants with wear and tear</strong>.\r\n\r\nNo matter what materials are used in joint replacements, wear of the implant is a predictable problem.  In fact, wear is the major reason orthopedic implants malfunction. That malfunction actually hastens the problem of corrosion. When implant materials are chosen, they are chosen because of their higher resistance to wear, like metal alloy and ceramics.\r\n\r\nIn hip implants, titanium and its alloys are often used for fabricating the femoral component. And the ball is prepared by either cobalt-chromium alloy or other hard ceramics. The debris that is released with the wear that damages the implant can begin a biological process that activates a brutal inflammatory reaction. The corrosion that transpires from the friction that results from this wear is actually a huge worry because it discharges non-compatible metallic ions that are dispersed into the body. <a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\r\n\r\nResearch articles demonstrate plenty of evidence about the issue of corrosion of implants and how the debris results in disease. One article discusses how cobalt alloy debris has been implicated in the early failure of some designs of current total joint implants, and also how the debris from cobalt implants causes an extreme inflammatory reaction and even bone loss.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\r\n\r\nHere is an excerpt from another article: “Immune reactions to orthopedic implant debris are the primary cause of total joint replacement (TJR) failure over the long term (15–20 years). It has been well established that implant debris causes local inflammation, limiting the long-term performance of the over one million total joint replacements (TJR) implanted each year in the US. Implant debris induces a subtle inflammatory cascade resulting in a slow progression of bone loss… that over time leads to implant failure.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nThe researchers are saying that the debris from implants is definitely a problem and that it causes disease. Obviously, this is not a good scenario.\r\n<h3>So, Where Does the Debris from Wear and Tear of the Implant Go?</h3>\r\nIn research looking at the dissemination of wear particles, the scientists find the debris in the lymph nodes, liver, and spleen. “Metallic wear particles in the liver or spleen were more prevalent in patients who had had a failed hip arthroplasty (seven of eight) than in patients who had had a primary hip (two of eleven) or knee replacement (two of ten).\r\n\r\nMetallic wear particles were detected in the lymph nodes in 68 percent (nineteen) of the twenty-eight patients with an implant from whom lymph nodes were available for study. In this study, systemic distribution of metallic and polyethylene wear particles was a common finding, both in patients with a previously failed implant and in those with a primary total joint prosthesis. The prevalence of particles in the liver or spleen was greater after reconstructions with mechanical failure.”<a href=\"#_edn7\" name=\"_ednref7\">[vii]</a>\r\n\r\nMany people contact our office because they are experiencing joint pain and are looking for an <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-treatment-an-alternative-to-joint-replacement/\">alternative to a surgical joint replacement.</a> We offer very effective non-surgical options with Regenerative Orthopedics, including <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a>. At OrthoRegen<sup>®</sup>, we only use the Gold Standard in Stem Cell Therapy, and the procedure only has to be done once. Plus, this non-surgical therapy not only provides a non-surgical option but also helps you to avoid an allergic response from the implants used in joint replacement or the pathology that can occur from the debris caused by corrosion.\r\n\r\nWe strongly recommend looking into non-surgical Regenerative Orthopedics with Peter A. Fields, MD, DC, and OrthoRegen<sup>®</sup> for the repair of painful joints before opting for a joint replacement. Call us today at 310-453-1234.\r\n\r\nRemember, once surgery has been done, it cannot be undone.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Laitinen, Minna, et al. \"High blood metal ion levels in 19 of 22 patients with metal-on-metal hinge knee replacements: A cause for concern.\" <em>Acta Orthopaedica</em> 88.3 (2017): 269-274.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Harloff, Thomas, et al. \"Titanium allergy or not?.\" <em>Health</em> 2.04 (2010): 306.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Guenther D, Thomas P, Kendoff D, Omar M, Gehrke T, Haasper C. Allergic reactions in arthroplasty: myth or serious problem? Int Orthop. 2016 Feb;40(2):239-44. doi: 10.1007/s00264-015-3001-6. Epub 2015 Nov 2.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Gao, Chengde, et al. \"Highly biodegradable and bioactive Fe-Pd-bredigite biocomposites prepared by selective laser melting.\" <em>Journal of advanced research</em> 20 (2019): 91-104.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Samelko, Lauryn, et al. \"Cobalt alloy implant debris induces inflammation and bone loss primarily through danger signaling, not TLR4 activation: implications for DAMP-ening implant related inflammation.\" <em>PLoS One</em> 11.7 (2016).\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Samelko, Lauryn, et al. \"TLR4 (not TLR2) dominate cognate TLR activity associated with CoCrMo implant particles.\" <em>Journal of Orthopaedic Research</em> 35.5 (2017): 1007-1017.\r\n\r\n<a href=\"#_ednref7\" name=\"_edn7\">[vii]</a> Urban, Robert M., et al. \"Dissemination of wear particles to the liver, spleen, and abdominal lymph nodes of patients with hip or knee replacement.\" <em>JBJS</em> 82.4 (2000): 457.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Allergic Reactions to Joint Replacements','','inherit','closed','closed','','3547-revision-v1','','','2020-08-01 02:10:37','2020-08-01 02:10:37','',3547,'https://www.drfields.com/uncategorized/3547-revision-v1/',0,'revision','',0),(3963,9,'2020-08-01 02:16:05','2020-08-01 02:16:05','When we are confronted with a joint replacement recommendation by our doctor it is so important to get informed and know what to expect. Many of us are concerned about the pain, the recovery time, and the cost. But have you ever thought about having allergic reactions to joint replacements?\r\n\r\nAllergy to the implant materials is an actual issue. And it\'s a new concern for individuals with joint pain who face joint replacement. It’s also another good reason to investigate other options when confronted with a surgical referral. In several previous articles, we have discussed how Regenerative Orthopedics is an effective alternative to surgery and one that really should be strongly considered.\r\n<h3>Are Joint Replacements Bad?</h3>\r\nOf course, there are times when surgery is necessary. However, every time a surgeon cuts, shaves, and/or removes parts of a joint, there is always an increased possibility for the development of arthritis, degeneration, and further pain in that joint. That’s because the removal of tissue causes the joints to become more unstable. The soft tissue structures are what provide much of the stability in the joint. So when they are cut or removed, the joint stability it altered.  Besides, why go through the pain and expense of surgery when you don’t need to? Now, allergic reactions to joint replacements are another reason to look for an alternative to surgery. And scientists are documenting the risk of allergy from implants.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n<h3>What Are Scientists Saying About Allergic Reactions to Joint Replacements and Metal Implants?</h3>\r\n“Metal allergy is in fact a well-documented factor in the failure of implants, and the need for allergy testing in sensitive patients is well recognized by both implant manufacturers and by surgeons alike.” And in this study, “All of the samples studied contained a consistent yet low percentage of components to which allergies have been contributed.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a> But even small amounts are sufficient to cause an allergic reaction.\r\n<h3>What are the Symptoms of Allergic Reactions to Joint Replacements and Metal Implants?</h3>\r\n“Patients suffering from metal hypersensitivity may have numerous local symptoms associated with an overactive immune system, such as localized pain, swelling, cutaneous allergic reactions, joint and muscle pain, implant failure, apparent recurrent infections around the operation site, and possible systemic reactions such as fibromyalgia, chronic fatigue and cognitive impairment.”<sup>ii </sup>As you can see, some of these hypersensitivity reactions result in chronic auto-immune type illnesses. That is a far cry from what the individual thought they were signing up for when they choose the route of the surgical implant…freedom from pain and suffering.\r\n\r\nTitanium used to be thought of as one of the safer metals, and in fact was used as the implant of choice for patients suffering from allergies to nickel, chrome, and cobalt. However, the titanium implants also contain these previously noted metals that are causing allergic responses.<sup>ii</sup>\r\n\r\nMetals usually found in common medical-grade alloys include cobalt, nickel, chrome, stainless steel, and titanium. Many also contain various detectable impurities like aluminum, iron, vanadium, and more.<sup>ii</sup>\r\n\r\nIt is of utmost importance that if you have an allergy to these metals, that you are thoroughly informed about the potential reaction that might result from the choice of implant materials.<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a>\r\n<h2>Corrosion of Implant Materials</h2>\r\n<strong>Allergic reactions to joint replacements are not the only problem that can occur with implant materials. There is also an issue of corrosion of the implants with wear and tear</strong>.\r\n\r\nNo matter what materials are used in joint replacements, wear of the implant is a predictable problem.  In fact, wear is the major reason orthopedic implants malfunction. That malfunction actually hastens the problem of corrosion. When implant materials are chosen, they are chosen because of their higher resistance to wear, like metal alloy and ceramics.\r\n\r\nIn hip implants, titanium and its alloys are often used for fabricating the femoral component. And the ball is prepared by either cobalt-chromium alloy or other hard ceramics. The debris that is released with the wear that damages the implant can begin a biological process that activates a brutal inflammatory reaction. The corrosion that transpires from the friction that results from this wear is actually a huge worry because it discharges non-compatible metallic ions that are dispersed into the body. <a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\r\n\r\nResearch articles demonstrate plenty of evidence about the issue of corrosion of implants and how the debris results in disease. One article discusses how cobalt alloy debris has been implicated in the early failure of some designs of current total joint implants, and also how the debris from cobalt implants causes an extreme inflammatory reaction and even bone loss.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\r\n\r\nHere is an excerpt from another article: “Immune reactions to orthopedic implant debris are the primary cause of total joint replacement (TJR) failure over the long term (15–20 years). It has been well established that implant debris causes local inflammation, limiting the long-term performance of the over one million total joint replacements (TJR) implanted each year in the US. Implant debris induces a subtle inflammatory cascade resulting in a slow progression of bone loss… that over time leads to implant failure.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nThe researchers say in these studies that the debris from implants is definitely a problem and that it causes disease. Obviously, this is not a good scenario.\r\n<h3>So, Where Does the Debris from Wear and Tear of the Implant Go?</h3>\r\nThe scientists find the debris in the lymph nodes, liver, and spleen according to the research looking at the dissemination of wear particles. “Metallic wear particles in the liver or spleen were more prevalent in patients who had had a failed hip arthroplasty (seven of eight) than in patients who had had a primary hip (two of eleven) or knee replacement (two of ten).\r\n\r\nMetallic wear particles were detected in the lymph nodes in 68 percent (nineteen) of the twenty-eight patients with an implant from whom lymph nodes were available for study.\r\n\r\nIn this study, the systemic distribution of metallic and polyethylene wear particles was a common finding. Both in patients with a previously failed implant and in those with a primary total joint prosthesis. The prevalence of particles in the liver or spleen was greater after reconstructions with mechanical failure.”<a href=\"#_edn7\" name=\"_ednref7\">[vii]</a>\r\n<h3>Regenerative Orthopedics: An Alternative to Joint Replacement</h3>\r\nMany people contact our office because they are experiencing joint pain and are looking for an <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-treatment-an-alternative-to-joint-replacement/\">alternative to a surgical joint replacement.</a> We offer very effective non-surgical options with Regenerative Orthopedics, including <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a>.\r\n\r\nAt OrthoRegen<sup>®</sup>, we only use the Gold Standard in Stem Cell Therapy, and the procedure only has to be done once. Plus, this non-surgical therapy not only provides a non-surgical option but also helps you to avoid an allergic response from the implants used in joint replacement or the pathology that can occur from the debris caused by corrosion.\r\n\r\nWe strongly recommend looking into non-surgical Regenerative Orthopedics with Peter A. Fields, MD, DC, and OrthoRegen<sup>®</sup> for the repair of painful joints before opting for a joint replacement. Call us today at 310-453-1234.\r\n\r\nRemember, once surgery has been done, it cannot be undone.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Laitinen, Minna, et al. \"High blood metal ion levels in 19 of 22 patients with metal-on-metal hinge knee replacements: A cause for concern.\" <em>Acta Orthopaedica</em> 88.3 (2017): 269-274.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Harloff, Thomas, et al. \"Titanium allergy or not?.\" <em>Health</em> 2.04 (2010): 306.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Guenther D, Thomas P, Kendoff D, Omar M, Gehrke T, Haasper C. Allergic reactions in arthroplasty: myth or serious problem? Int Orthop. 2016 Feb;40(2):239-44. doi: 10.1007/s00264-015-3001-6. Epub 2015 Nov 2.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Gao, Chengde, et al. \"Highly biodegradable and bioactive Fe-Pd-bredigite biocomposites prepared by selective laser melting.\" <em>Journal of advanced research</em> 20 (2019): 91-104.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Samelko, Lauryn, et al. \"Cobalt alloy implant debris induces inflammation and bone loss primarily through danger signaling, not TLR4 activation: implications for DAMP-ening implant related inflammation.\" <em>PLoS One</em> 11.7 (2016).\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Samelko, Lauryn, et al. \"TLR4 (not TLR2) dominate cognate TLR activity associated with CoCrMo implant particles.\" <em>Journal of Orthopaedic Research</em> 35.5 (2017): 1007-1017.\r\n\r\n<a href=\"#_ednref7\" name=\"_edn7\">[vii]</a> Urban, Robert M., et al. \"Dissemination of wear particles to the liver, spleen, and abdominal lymph nodes of patients with hip or knee replacement.\" <em>JBJS</em> 82.4 (2000): 457.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Allergic Reactions to Joint Replacements','','inherit','closed','closed','','3547-revision-v1','','','2020-08-01 02:16:05','2020-08-01 02:16:05','',3547,'https://www.drfields.com/uncategorized/3547-revision-v1/',0,'revision','',0),(3964,0,'2020-08-07 16:29:35','2020-08-07 16:29:35','','iwp_log_5f2d816f77b39','','publish','closed','closed','','iwp_log_5f2d816f77b39','','','2020-08-07 16:29:35','2020-08-07 16:29:35','',0,'https://www.drfields.com/uncategorized/iwp_log_5f2d816f77b39/',0,'iwp_log','',0),(3965,9,'2021-08-06 21:44:47','2021-08-06 21:44:47','Are you experiencing sciatica pain going down your leg? And did the pain begin years ago with aggravating pain in the gluts or the back of the thigh? Or are you noticing new symptoms of tingling down to the calf and toes? Sciatica pain and symptoms often occur with sitting, standing, and walking; and may be relieved with lying down. Does that sound like you?\n<h3>Seeing A Chiropractor for Sciatica Pain</h3>\nChiropractors should be the first physician to see about sciatica pain because this is an area they treat all of the time. But if the pain continues after giving chiropractic a chance (several or more treatments are usually needed), and then also trying other various treatment modalities, like acupuncture, massage, and physical therapy, the next step would be Regenerative Orthopedics as a solution for this persistent pain.\n\nDid you receive an MRI with a report revealing some type of encroachment on a nerve root in the lower back area, which is pinching the nerve, and possibly some displacement and/or degeneration in the vertebrae of the lower back? These are common on MRI reports when experiencing sciatica pain. The displacement mentioned in the report may include forward or backward movement of the vertebrae. And this movement pinches the nerve root due to <em>instability in the lumbar spine caused by ligament laxity</em>.\n<h2>Sciatica Pain May Be the Result of Lax Ligaments</h2>\nLigaments are a type of connective tissue that connects bone to bone. And ligaments help to stabilize the spine and other joints. Injured ligaments are often lax. When they become lax or loose, they have difficulty healing because they have a pretty poor blood supply.\n\nRegenerative Orthopedics stimulates the body to boost the blood supply and fibroblasts in the injured areas, resulting in repair of the injured ligaments. The fibroblasts are the cells through which collagen is made and by which tendons and ligaments repair.\n\nRegenerative Orthopedics helps strengthen and tighten the ligaments. This results in stabilization of the joints of the lumbar spine which then stops the pinching of the nerve.\n<h2>Cortisone vs Dextrose Caudal Epidural</h2>\nA lumbar epidural is an injection into the epidural space of the lumbar spine. When patients experience referred pain, either cortisone (steroid) or dextrose injections can be used. Steroids are strong anti-inflammatories. But they need to be limited to no more than 3-4 injections each year in order to prevent the thinning of the bone and connective tissue damage.\n\n[caption id=\"attachment_4822\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4822\" src=\"https://www.drfields.com/wp-content/uploads/2020/02/Cortisone-500x375.jpeg\" alt=\"Cortisone\" width=\"500\" height=\"375\" />   A Problem with Cortisone Is That It Is Just a Bandaid Over Degeneration[/caption]\n\nAt OrthoRegen<sup>®</sup>, we endeavor to build up the soft tissue and joint structures. Because of that, we do not use substances like cortisone, because it causes degeneration and inhibits healing. Instead, we use a dextrose solution to reduce the swelling of the nerve without the anti-inflammatory effect and the steroid side effects.\n\nRegenerative Orthopedics eliminate or reduce pain, numbness, and tingling, enabling the former sciatica pain sufferer to be able to sit, stand, and walk without any pain or annoying symptoms. The treatment effectively resolves the symptoms and results in pain-free living.\n\nHere at OrthoRegen<sup>®</sup>, we practice a comprehensive approach to Regenerative Orthopedics. And it\'s a great alternative to surgery and joint replacement. The treatment helps regenerate connective soft tissues and accelerates recovery.\n\nLumbar instability results in an array of symptoms. And they include sacroiliac pain, lower back pain, sciatic pain, and referred leg pain. All of these symptoms can be treated effectively with Regenerative Orthopedics.  So, if you are suffering from any of the symptoms listed above and would like to learn more, you can give us a call at (310)453-1234. We’d love to help you eliminate your sciatica symptoms.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Treat Sciatica Pain Non-Surgically','','inherit','closed','closed','','3540-autosave-v1','','','2021-08-06 21:44:47','2021-08-06 21:44:47','',3540,'https://www.drfields.com/uncategorized/3540-autosave-v1/',0,'revision','',0),(3966,9,'2020-08-08 22:23:35','2020-08-08 22:23:35','Are you experiencing sciatica pain going down your leg? The pain may have begun years ago with aggravating pain in the gluts or the back of the thigh. Are you noticing new symptoms of tingling down to the calf and toes? Sciatica pain and symptoms may occur with sitting, standing, and walking; and may be relieved with lying down.\r\n<h3>Seeing A Chiropractor for Sciatica Pain</h3>\r\nChiropractors should be the first physician to see about sciatica pain because this is an area they treat all of the time. But if the pain continues after giving chiropractic a chance (several or more treatments are usually needed), and then also trying other various treatment modalities, like acupuncture, massage, and physical therapy, the next step would be Regenerative Orthopedics as a solution for this persistent pain.\r\n\r\nDid you receive an MRI with a report revealing some type of encroachment on a nerve root in the lower back area, which is pinching the nerve, and possibly some displacement and/or degeneration in the vertebrae of the lower back? These are not uncommon on MRI reports when experiencing sciatica pain. The displacement mentioned on the report may include forward or backward movement of the vertebrae which pinches the nerve root due to <em>instability in the lumbar spine caused by ligament laxity</em>.\r\n<h2>Sciatica Pain May Be the Result of Lax Ligaments</h2>\r\nLigaments are a type of connective tissue that connect bone to bone and help stabilize the spine and other joints. Injured ligaments are often lax. When they become lax or loose, they have difficulty healing because they have a pretty poor blood supply.\r\n\r\nRegenerative Orthopedics stimulates the body to boost the blood supply and fibroblasts at the injured areas, resulting in repair of the injured ligaments. The fibroblasts are the cells through which collagen is made and by which tendons and ligaments repair.\r\n\r\nRegenerative Orthopedics helps strengthen and tighten the ligaments thereby stabilizing the joints of the lumbar spine which then stops the pinching of the nerve.\r\n<h2>Cortisone vs Dextrose Caudal Epidural</h2>\r\nA lumbar epidural is an injection into the epidural space of the lumbar spine. When patients are having referred pain, cortisone (steroid) or dextrose injections can be used. Steroids are strong anti-inflammatories. They need to be limited to no more than 3-4 injections each year in order to prevent the thinning of the bone and connective tissue damage.\r\n\r\nAt OrthoRegen<sup>®</sup>, we endeavor to build up the soft tissue and joint structures. Because of that, we do not use substances like cortisone, because it causes degeneration and inhibits healing. Instead, we use a dextrose solution to reduce the swelling of the nerve without the anti-inflammatory effect and the steroid side effects.\r\n\r\nRegenerative Orthopedics eliminate or reduce pain, numbness, and tingling, enabling the former sciatica pain sufferer to be able to sit, stand, and walk without any pain or annoying symptoms. The treatment is very effective at achieving symptom resolution and pain-free living.\r\n\r\nHere at OrthoRegen<sup>®</sup>, we practice a comprehensive approach to Regenerative Orthopedics. And it\'s a great alternative to surgery and joint replacement because it helps regenerate connective soft tissues and accelerates recovery. Lumbar instability can cause an array of symptoms including sacroiliac pain, lower back pain, sciatic pain, and referred leg pain.\r\n\r\nAll of these symptoms can be treated effectively with Regenerative Orthopedics.  If you are suffering from any of the symptoms listed above and would like to learn more, you can give us a call at (310)453-1234. We’d love to help you eliminate your sciatica symptoms.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Treat Sciatica Pain Non-Surgically','','inherit','closed','closed','','3540-revision-v1','','','2020-08-08 22:23:35','2020-08-08 22:23:35','',3540,'https://www.drfields.com/uncategorized/3540-revision-v1/',0,'revision','',0),(3967,9,'2020-08-08 22:34:12','2020-08-08 22:34:12','Are you experiencing sciatica pain going down your leg? Did the pain begin years ago with aggravating pain in the gluts or the back of the thigh? Are you noticing new symptoms of tingling down to the calf and toes? Sciatica pain and symptoms often occur with sitting, standing, and walking; and may be relieved with lying down. Does that sound like you?\r\n<h3>Seeing A Chiropractor for Sciatica Pain</h3>\r\nChiropractors should be the first physician to see about sciatica pain because this is an area they treat all of the time. But if the pain continues after giving chiropractic a chance (several or more treatments are usually needed), and then also trying other various treatment modalities, like acupuncture, massage, and physical therapy, the next step would be Regenerative Orthopedics as a solution for this persistent pain.\r\n\r\nDid you receive an MRI with a report revealing some type of encroachment on a nerve root in the lower back area, which is pinching the nerve, and possibly some displacement and/or degeneration in the vertebrae of the lower back? These are not uncommon on MRI reports when experiencing sciatica pain. The displacement mentioned in the report may include forward or backward movement of the vertebrae. This movement pinches the nerve root due to <em>instability in the lumbar spine caused by ligament laxity</em>.\r\n<h2>Sciatica Pain May Be the Result of Lax Ligaments</h2>\r\nLigaments are a type of connective tissue that connects bone to bone. They help to stabilize the spine and other joints. Injured ligaments are often lax. When they become lax or loose, they have difficulty healing because they have a pretty poor blood supply.\r\n\r\nRegenerative Orthopedics stimulates the body to boost the blood supply and fibroblasts in the injured areas, resulting in repair of the injured ligaments. The fibroblasts are the cells through which collagen is made and by which tendons and ligaments repair.\r\n\r\nRegenerative Orthopedics helps strengthen and tighten the ligaments. This results in stabilization of the joints of the lumbar spine which then stops the pinching of the nerve.\r\n<h2>Cortisone vs Dextrose Caudal Epidural</h2>\r\nA lumbar epidural is an injection into the epidural space of the lumbar spine. When patients experience referred pain, either cortisone (steroid) or dextrose injections can be used. Steroids are strong anti-inflammatories. But they need to be limited to no more than 3-4 injections each year in order to prevent the thinning of the bone and connective tissue damage.\r\n\r\nAt OrthoRegen<sup>®</sup>, we endeavor to build up the soft tissue and joint structures. Because of that, we do not use substances like cortisone, because it causes degeneration and inhibits healing. Instead, we use a dextrose solution to reduce the swelling of the nerve without the anti-inflammatory effect and the steroid side effects.\r\n\r\nRegenerative Orthopedics eliminate or reduce pain, numbness, and tingling, enabling the former sciatica pain sufferer to be able to sit, stand, and walk without any pain or annoying symptoms. The treatment effectively resolves the symptoms and results in pain-free living.\r\n\r\nHere at OrthoRegen<sup>®</sup>, we practice a comprehensive approach to Regenerative Orthopedics. And it\'s a great alternative to surgery and joint replacement. The treatment helps regenerate connective soft tissues and accelerates recovery.\r\n\r\nLumbar instability results in an array of symptoms. And they include sacroiliac pain, lower back pain, sciatic pain, and referred leg pain. All of these symptoms can be treated effectively with Regenerative Orthopedics.  So, if you are suffering from any of the symptoms listed above and would like to learn more, you can give us a call at (310)453-1234. We’d love to help you eliminate your sciatica symptoms.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Treat Sciatica Pain Non-Surgically','','inherit','closed','closed','','3540-revision-v1','','','2020-08-08 22:34:12','2020-08-08 22:34:12','',3540,'https://www.drfields.com/uncategorized/3540-revision-v1/',0,'revision','',0),(3968,9,'2020-08-08 22:39:07','2020-08-08 22:39:07','Are you experiencing sciatica pain going down your leg? And did the pain begin years ago with aggravating pain in the gluts or the back of the thigh? Or are you noticing new symptoms of tingling down to the calf and toes? Sciatica pain and symptoms often occur with sitting, standing, and walking; and may be relieved with lying down. Does that sound like you?\r\n<h3>Seeing A Chiropractor for Sciatica Pain</h3>\r\nChiropractors should be the first physician to see about sciatica pain because this is an area they treat all of the time. But if the pain continues after giving chiropractic a chance (several or more treatments are usually needed), and then also trying other various treatment modalities, like acupuncture, massage, and physical therapy, the next step would be Regenerative Orthopedics as a solution for this persistent pain.\r\n\r\nDid you receive an MRI with a report revealing some type of encroachment on a nerve root in the lower back area, which is pinching the nerve, and possibly some displacement and/or degeneration in the vertebrae of the lower back? These are common on MRI reports when experiencing sciatica pain. The displacement mentioned in the report may include forward or backward movement of the vertebrae. And this movement pinches the nerve root due to <em>instability in the lumbar spine caused by ligament laxity</em>.\r\n<h2>Sciatica Pain May Be the Result of Lax Ligaments</h2>\r\nLigaments are a type of connective tissue that connects bone to bone. And ligaments help to stabilize the spine and other joints. Injured ligaments are often lax. When they become lax or loose, they have difficulty healing because they have a pretty poor blood supply.\r\n\r\nRegenerative Orthopedics stimulates the body to boost the blood supply and fibroblasts in the injured areas, resulting in repair of the injured ligaments. The fibroblasts are the cells through which collagen is made and by which tendons and ligaments repair.\r\n\r\nRegenerative Orthopedics helps strengthen and tighten the ligaments. This results in stabilization of the joints of the lumbar spine which then stops the pinching of the nerve.\r\n<h2>Cortisone vs Dextrose Caudal Epidural</h2>\r\nA lumbar epidural is an injection into the epidural space of the lumbar spine. When patients experience referred pain, either cortisone (steroid) or dextrose injections can be used. Steroids are strong anti-inflammatories. But they need to be limited to no more than 3-4 injections each year in order to prevent the thinning of the bone and connective tissue damage.\r\n\r\nAt OrthoRegen<sup>®</sup>, we endeavor to build up the soft tissue and joint structures. Because of that, we do not use substances like cortisone, because it causes degeneration and inhibits healing. Instead, we use a dextrose solution to reduce the swelling of the nerve without the anti-inflammatory effect and the steroid side effects.\r\n\r\nRegenerative Orthopedics eliminate or reduce pain, numbness, and tingling, enabling the former sciatica pain sufferer to be able to sit, stand, and walk without any pain or annoying symptoms. The treatment effectively resolves the symptoms and results in pain-free living.\r\n\r\nHere at OrthoRegen<sup>®</sup>, we practice a comprehensive approach to Regenerative Orthopedics. And it\'s a great alternative to surgery and joint replacement. The treatment helps regenerate connective soft tissues and accelerates recovery.\r\n\r\nLumbar instability results in an array of symptoms. And they include sacroiliac pain, lower back pain, sciatic pain, and referred leg pain. All of these symptoms can be treated effectively with Regenerative Orthopedics.  So, if you are suffering from any of the symptoms listed above and would like to learn more, you can give us a call at (310)453-1234. We’d love to help you eliminate your sciatica symptoms.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Treat Sciatica Pain Non-Surgically','','inherit','closed','closed','','3540-revision-v1','','','2020-08-08 22:39:07','2020-08-08 22:39:07','',3540,'https://www.drfields.com/uncategorized/3540-revision-v1/',0,'revision','',0),(3969,9,'2020-08-08 22:53:31','2020-08-08 22:53:31','[caption id=\"attachment_3742\" align=\"alignleft\" width=\"392\"]<img class=\" wp-image-3742\" src=\"https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png\" alt=\"Kelsey. Knee.stems Copy\" width=\"392\" height=\"392\" /> <a href=\"https://youtu.be/jhN7D30YcYI\">Click to Watch Video about Stem Cell Therapy</a>[/caption]\r\n<p style=\"text-align: left;\">At OrthoRegen<sup>®</sup>, the Stem Cell Therapy we use for injuries to the joints and spine is The Gold Standard for stem cell regeneration. What makes it the Gold Standard? We don’t use just one type of regenerative therapy but use four different kinds of Regenerative Orthopedics. And that helps you to avoid invasive surgery.</p>\r\n<p style=\"text-align: left;\">Many other clinics only use one or two of these procedures. But, not all four. We use bone marrow stem cells as well as adipose (fat) stem cells. We also use <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate healing. In addition, we use <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. And without it, failure rates are high.</p>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is what is referred to as <em>The Gold Standard for stem cell regeneration</em>. And when is the Gold Standard recommended? We choose to use this procedure in cases where people have been told they either need their joint replaced, have bone-on-bone, advanced arthritis, cartilage loss, or a combination of these.\r\n\r\nIn this article, we would like to discuss Stem Cell Therapy for the regeneration of a degenerated joint. The goal of this treatment, as with all forms of Regenerative Orthopedics, is to stimulate injured tissues to repair.\r\n<h2><strong>What Is the Basis Behind Stem Cell Therapy?</strong></h2>\r\nIn conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. And with arthritis, the joint is in a <em>state where it is breaking down</em>. What we want to do with Stem Cell Therapy is to get the joint in a state of <em>building up. </em>When we use this treatment, we stimulate the body to repair the area to get it stronger. Stem Cell Therapy probably works by a lot of different mechanisms but here are some proposed mechanisms:\r\n<ul>\r\n 	<li>Reduces the instability in the joint that leads to arthritis in the first place</li>\r\n 	<li>Stimulates the growth of the cells (extracellular matrix) that make the tissues that are causing the ongoing pain and/or instability</li>\r\n 	<li>Stimulates the cells already present to make extracellular matrix</li>\r\n 	<li>The cells that help to build cartilage are called chondrocytes. Stem Cell Therapy involves the injections of the precursor cells (stem cells) that will differentiate into adult chondrocytes</li>\r\n</ul>\r\nWhile the exact mechanisms by which Stem Cell Therapy works can be debated, the bottom line for the patient is,<strong> <em>“Do I get rid of my pain and get back to the activities I desire?”</em> In the majority of cases, the answer is, “<em>Yes!</em>”</strong>\r\n<h2><strong>Conditions That Can Be Treated with Stem Cell Therapy</strong></h2>\r\nAny condition helped by one type of Regenerative Orthopedics (Stem Cell Therapy, PRP, Prolotherapy) can, at least theoretically, be helped by another type of Regenerative Orthopedics. While Stem Cell Therapy is typically not used for ligament and tendon injuries, it surely can be used for those conditions.\r\n\r\nMost clinics, including OrthoRegen<sup>®</sup>, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those who are involved in treating people with articular cartilage degeneration or joint injury know that the vast majority of them improve when these patients are treated with Stem Cell Therapy.\r\n<h2><strong>Adult Stem Cell Injections, NOT Embryonic Stem Cell Injections</strong></h2>\r\nThe Stem Cell Therapy done at OrthoRegen<sup>®</sup> has nothing to do with embryonic stem cell therapy. Most research and studies have shown that cord blood does <strong>NOT</strong> have many if any, stem cells.\r\n\r\nWe only use the patient’s own adult stem cells. We take the bone marrow from the patient’s own tibia or iliac crest bones and use fat from the abdominal or buttock areas so that the stem cells are the freshest. Additionally, there is no cross-contamination this way! We then inject these cells into the defective joint.\r\n<h2>Why Do We Use PRP with Stem Cells from Bone Marrow and Fat?</h2>\r\nAt OrthoRegen<sup>®</sup>, we only use the <strong>Gold Standard in Stem Cell Therapy</strong>, which includes bone marrow stem cells, fat stem cells, PRP, and Dextrose Prolotherapy. Stem cells are great, but they need to be directed as to what to do. Some of the directors are the growth factors that are in the platelets.\r\n\r\nPlatelets aid the stem cells in their various jobs including differentiation and then aid in the differentiated cells making the extracellular matrix to repair the injured tissue. One could think of the stem cells as construction workers and the platelets (and their growth factors) as their supervisors, telling them what to do. Platelet Rich Plasma contains a myriad of substances that stimulate healing, like platelet-derived growth factor, which attracts immune system cells to the injured area to enhance ligament and tendon healing. And fibroblast growth factor which promotes the growth of the cells involved in collagen and cartilage formation.\r\n\r\nWe have found that Comprehensive Regenerative Orthopedics using the combination of all of these regenerative treatments works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\r\n<ol>\r\n 	<li>Akens MK, Hurtig MB. Influence of species and anatomical location on chondrocyte expression. <em>BMC Musculoskeletal Disorders</em>. 2005; 6:23.</li>\r\n 	<li>Guilak F, Estes BT, Dickman BO. 2010 Nicolas Andry Award: Multipotent adult stem cells from adipose tissue for musculoskeletal tissue engineering. <em>Clinical</em><em> Orthopedics and Related Research. 2010;468:2530-2540.</em></li>\r\n</ol>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Stem Cell Therapy at OrthoRegen: Why We\'re Different','','inherit','closed','closed','','3526-revision-v1','','','2020-08-08 22:53:31','2020-08-08 22:53:31','',3526,'https://www.drfields.com/uncategorized/3526-revision-v1/',0,'revision','',0),(3970,9,'2020-08-08 23:08:20','2020-08-08 23:08:20','[caption id=\"attachment_3742\" align=\"alignleft\" width=\"392\"]<img class=\" wp-image-3742\" src=\"https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png\" alt=\"Kelsey. Knee.stems Copy\" width=\"392\" height=\"392\" /> <a href=\"https://youtu.be/jhN7D30YcYI\">Click to Watch Video about Stem Cell Therapy</a>[/caption]\r\n<p style=\"text-align: left;\">At OrthoRegen<sup>®</sup>, the Stem Cell Therapy we use for injuries to the joints and spine is The Gold Standard for stem cell regeneration. What makes it the Gold Standard? We don’t use just one type of regenerative therapy but use four different kinds of Regenerative Orthopedics. And that helps you to avoid invasive surgery.</p>\r\n<p style=\"text-align: left;\">Many other clinics only use one or two of these procedures. But, not all four. We use bone marrow stem cells as well as adipose (fat) stem cells. We also use <a href=\"/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate healing. In addition, we use <a href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. And without it, failure rates are high.</p>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is what is referred to as <em>The Gold Standard for stem cell regeneration</em>. And when is the Gold Standard recommended? We choose to use this procedure in various different circumstances. Examples include cases where people have been told they either need their joint replaced, have bone-on-bone, advanced arthritis, cartilage loss, or a combination of these.\r\n\r\nIn this article, we would like to discuss Stem Cell Therapy for the regeneration of a degenerated joint. The goal of this treatment, as with all forms of Regenerative Orthopedics, is to stimulate injured tissues to repair.\r\n<h2><strong>What Is the Basis Behind Stem Cell Therapy?</strong></h2>\r\nIn conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. And with arthritis, the joint is in a <em>state where it is breaking down</em>. What we want to do with Stem Cell Therapy is to get the joint in a state of <em>building up. </em>When we use this treatment, we stimulate the body to repair the area to get it stronger. Stem Cell Therapy probably works by a lot of different mechanisms but here are some proposed mechanisms:\r\n<ul>\r\n 	<li>Reduces the instability in the joint that leads to arthritis in the first place</li>\r\n 	<li>Stimulates the growth of the cells (extracellular matrix) that make the tissues that are causing the ongoing pain and/or instability</li>\r\n 	<li>Stimulates the cells already present to make extracellular matrix</li>\r\n 	<li>The cells that help to build cartilage are called chondrocytes. Stem Cell Therapy involves the injections of the precursor cells (stem cells) that will differentiate into adult chondrocytes</li>\r\n</ul>\r\nWhile the exact mechanisms by which Stem Cell Therapy works can be debated, the bottom line for the patient is,<strong> <em>“Do I get rid of my pain and get back to the activities I desire?”</em> In the majority of cases, the answer is, “<em>Yes!</em>”</strong>\r\n<h2><strong>Conditions That Can Be Treated with Stem Cell Therapy</strong></h2>\r\nAny condition helped by one type of Regenerative Orthopedics (Stem Cell Therapy, PRP, Prolotherapy) can, at least theoretically, be helped by another type of Regenerative Orthopedics. While Stem Cell Therapy is typically not used for ligament and tendon injuries, it surely can be used for those conditions.\r\n\r\nMost clinics, including OrthoRegen<sup>®</sup>, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those who are involved in treating people with articular cartilage degeneration or joint injury know that the vast majority of them improve when these patients are treated with Stem Cell Therapy.\r\n<h2><strong>Adult Stem Cell Injections, NOT Embryonic Stem Cell Injections</strong></h2>\r\nThe Stem Cell Therapy done at OrthoRegen<sup>®</sup> has nothing to do with embryonic stem cell therapy. Most research and studies have shown that cord blood does <strong>NOT</strong> have many if any, stem cells.\r\n\r\nWe only use the patient’s own adult stem cells. We take the bone marrow from the patient’s own tibia or iliac crest bones. And then use fat from the abdominal or buttock areas so that the stem cells are the freshest. Additionally, there is no cross-contamination this way! We then inject these cells into the defective joint.\r\n<h2>Why Do We Use PRP with Stem Cells from Bone Marrow and Fat?</h2>\r\nAt OrthoRegen<sup>®</sup>, we only use the <strong>Gold Standard in Stem Cell Therapy. The Gold Standard</strong> includes bone marrow stem cells, fat stem cells, PRP, and Dextrose Prolotherapy. Stem cells are great, but they need to be directed as to what to do. Some of the directors are the growth factors that are in the platelets.\r\n\r\nPlatelets aid the stem cells in their various jobs including differentiation and then aid in the differentiated cells making the extracellular matrix to repair the injured tissue. One could think of the stem cells as construction workers and the platelets (and their growth factors) as their supervisors, telling them what to do. Platelet Rich Plasma contains a myriad of substances that stimulate healing, like platelet-derived growth factor, which attracts immune system cells to the injured area to enhance ligament and tendon healing. And fibroblast growth factor which promotes the growth of the cells involved in collagen and cartilage formation.\r\n\r\nWe have found that Comprehensive Regenerative Orthopedics using the combination of all of these regenerative treatments works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\r\n<ol>\r\n 	<li>Akens MK, Hurtig MB. Influence of species and anatomical location on chondrocyte expression. <em>BMC Musculoskeletal Disorders</em>. 2005; 6:23.</li>\r\n 	<li>Guilak F, Estes BT, Dickman BO. 2010 Nicolas Andry Award: Multipotent adult stem cells from adipose tissue for musculoskeletal tissue engineering. <em>Clinical</em><em> Orthopedics and Related Research. 2010;468:2530-2540.</em></li>\r\n</ol>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Stem Cell Therapy at OrthoRegen: Why We\'re Different','','inherit','closed','closed','','3526-revision-v1','','','2020-08-08 23:08:20','2020-08-08 23:08:20','',3526,'https://www.drfields.com/uncategorized/3526-revision-v1/',0,'revision','',0),(3971,9,'2020-08-09 00:19:32','2020-08-09 00:19:32','Is your hip pain from bursitis? Have you been treating your hip pain with bursitis treatments like steroids and non-steroidal anti-inflammatories? There are times these treatments help to give some relief, but many people continue to experience a substantial amount of discomfort even after trying them. Plus, continued use of steroids injected into a degenerated joint can unfortunately increase the rate of degeneration.\n\nWhy not treat the pain with treatments that regenerate rather than degenerate the joint structures? In this article, we will discuss hip bursitis,  various treatment options, and other reasons for hip pain that cause bursitis like symptoms.\n<h2>Is Your Hip Pain Really Bursitis?</h2>\n<strong><em>We see quite a few patients</em></strong> who come to our office for treatment of bursitis who do not actually have bursitis. Bursitis is so painful that even touching the skin over the painful area is difficult to tolerate. If the area can be palpated with a lot of pressure by the doctor, the patient may not have bursitis. What could the problem be then?\n<h3><em>Hip Bursitis or Badly Degenerated Tendons?</em></h3>\n<strong><em>Hip Bursitis, or trochanteric bursitis, is actually rare!</em></strong> Multiple studies have shown that patients presenting with bursitis type symptoms actually have tendinopathy (tendon degeneration) of their gluteal tendons. These tendons attach near the bursa and often fool providers into thinking the patients have bursitis. <em><strong>Badly degenerated tendons are what they really have. And they need regeneration! </strong></em>\n\nOn top of that, as we mentioned, steroid injections are often used as the treatment for true bursitis. So when steroids are injected into the degenerated tendons, they actually can cause them to degenerate faster! Tendinopathy of the gluteus minimus or gluteus medius is often at the root of greater trochanteric pain syndrome.\n\nRegenerative Orthopedics including Stem Cell Therapy, PRP, and Prolotherapy is a safe and effective treatment option for bursitis, tendinopathy, and other underlying soft tissue injuries of the hip.\n<h2>More About Bursitis</h2>\nTrue bursitis is an inflammation of the bursae, which are small, fluid-filled sacs that lubricate and cushion pressure points between the bones, tendons, and muscles of joints. And the bursae help the joints to move with ease. So when the bursae become inflamed due to bursitis, movement or pressure can be painful. Bursitis often affects areas around the joints in the elbows or hips.\n<h3>Hip Bursitis</h3>\nHip bursitis involves a bursal sac that is inflamed between the hip bone and glutei muscle attachments. The bursal sac inflames because of injury to the soft tissue structures. The bursal sacs decrease the friction of the soft tissue structure and the underlying bone. This allows the tendon or muscle to glide across the bone more easily. Bursitis pain usually goes away within a week or so with proper treatment, but recurrent flare-ups are common as well as frustrating.<strong> </strong>\n<h2>Bursitis Causes</h2>\nCommon causes of bursitis are overuse, stress, or direct trauma to a joint, such as repeated bumping or prolonged pressure. Bursitis may result from an infection, arthritis, or gout. Bursitis may also be due to the repetitive motion related to certain activities. Tendonitis, which involves the irritation or inflammation of tendons, or tendinopathy (degenerated tendon) are again oftentimes misdiagnosed as bursitis.\n<h2>What Are the Symptoms of Hip Bursitis?</h2>\nSymptoms of hip bursitis include a dull ache or stiffness in the affected hip. Bursitis pain often worsens with movement or pressure. And the area may be swollen and feel warm to the touch. Intermittent redness of the skin in the area of the inflamed bursae may be another symptom.\n\nVisible swelling or skin redness is usually absent from bursitis of the hip because the bursae are located beneath some of the body’s bulkiest muscles. Pain is primarily centered over the greater trochanter, a portion of the femur that juts out just below where the bone joins the hip.\n<h2>Current Treatment Options for Bursitis</h2>\nSince bursitis is an inflammation of the fluid-filled sac, or bursa that lies between a tendon and skin, or between a tendon and bone, bursitis treatment often involves the use of non-steroidal anti-inflammatory drugs (NSAIDS) such as ibuprofen and steroids such as cortisone.\n\nIf the problem is not true bursitis, the steroid injections to decrease the inflammation will usually not work to eliminate the pain, since inflammation is not the real problem. The steroid will, however, inhibit fibroblastic proliferation or the process by which soft tissue structures such as ligaments, tendons, and muscles grow and repair, and result in a weakening of the joint.\n<h3>NSAIDs Can Cause More Problems</h3>\nNSAIDs are associated with a higher risk of cardiovascular- and gastrointestinal-related adverse events. The FDA issued a medication guide for NSAIDs <strong>recommending physicians prescribe the lowest dose for the shortest time possible</strong>.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\n\nAs physicians become educated on the side effects of these medications, they hopefully decrease their use of them. “As years of experience increased, practitioners were more likely to prescribe lower doses of corticosteroid in musculoskeletal injections.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\n\nNewer therapies are sought to replace NSAIDs due to their significant side-effect profile. Regenerative Orthopedics is both a safe and effective treatment option for bursitis pain from various causes.\n<h2>Hip Bursitis Diagnosis Accuracy</h2>\nFor the person diagnosed with bursitis, first, consider whether the diagnosis is correct or not. There have been several studies on hip bursitis symptoms, demonstrating, as we noted earlier, that the pain is coming from tendinopathy rather than from bursitis.\n\n“Some studies have questioned the real involvement of the trochanteric bursa in greater trochanteric pain syndrome, and tendinopathy of the gluteus medius and/or minimus has been proposed as an important cause of this syndrome.”<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a> One study of 75 patients with pain and point tenderness over the greater trochanter, revealed that only 8 had fluid pooling in the trochanteric bursae per sonography.<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\n\nAnother study showed that only a minority of patients had bursitis, because in 700 out of 877 patients the pain <strong>was not from bursitis</strong>, but rather, it related to “some combination of pathology <strong>involving the gluteus medius and gluteus minimus tendons as well as the iliotibial band</strong>.”<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\n\nAnd one more found that only 5 of 124 patients with trochanteric pain had bursitis, plus most of those with bursitis also had associated tendinopathy.<sup>iv</sup>\n<h2>Bursitis Treatment with Regenerative Orthopedics</h2>\nRegenerative Orthopedics stimulate the body to repair painful areas. And that includes those with both true bursitis and tendinopathies. An experienced Regenerative Orthopedics doctor will be able to ascertain what structure is causing the pain.\n\nIn the hip, the soft tissue structures that attach to the greater trochanter are often involved, including the glutei muscles. Regenerative Orthopedic treatments to these soft tissue structures stimulate them to repair. Once they are fully repaired, the ‘bursitis’ pain resolves.\n\nPlatelet Rich Plasma (PRP) is one of the Regenerative Orthopedic treatment options that may be recommended for bursitis pain.\n<h3>A Study on PRP for Hip Bursitis</h3>\nA study presented at the 2014 meeting of the American Academy of Surgeons showed PRP to be very effective in the treatment of severe bursitis of the hip. The study compared one injection of PRP to one injection of cortisone. The cortisone demonstrated only short-term effectiveness. PRP provided both short and long-term pain relief from a condition that is difficult to treat successfully.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\n\nRegenerative Orthopedic options like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy all accomplish repair of the affected soft tissue, and your clinician will recommend which treatment will most effectively repair and regenerate your hip, bringing relief from bursitis pain.\n\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Sofat N. Kuttapitiya A. <a href=\"http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4089899/\" target=\"_blank\" rel=\"noopener noreferrer\">Future directions for the management of pain in osteoarthritis.</a><a href=\"http://www.futuremedicine.com/doi/pdf/10.2217/ijr.14.10\" target=\"_blank\" rel=\"noopener noreferrer\"><em>Int J Rheumatol. </em>Apr 2014; 9(2): 197–276. </a>\n\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Lazaro D, Alon L, Ramessar N, Cabas-Vargas J, Shwin K, Stefanov D.  Intra-articular, bursa, and tendon sheath injections: A survey of practice patterns among members of the American College of Rheumatology. <em>Journal of Rheumatology.</em>2014; 20(2): 91-93. doi: 10.1097/RHU.0000000000000080\n\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Quiroz C, Ruta S, Rosa J, Navarta DA, Garcia-Monaco R, Soriano ER. <a href=\"http://www.reumatologia.org.ar.preview.hybrid-sites.com/docs/2013-Ultrasound-Evaluation-Of-The-Greater-Trochanter-Pain-Syndrome-Bursitis-Or-Tendinopathy.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">Ultrasound evaluation of the Greater Trochanter Pain Syndrome: Bursitis or tendinopathy?</a>\n\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Connell DA, Bass C, Sykes CJ, Young D, Edwards E. Sonographic evaluation of gluteus medius and minimus tendinopathy. <a href=\"http://link.springer.com/journal/330\" target=\"_blank\" rel=\"noopener noreferrer\"><em>European Radiology</em></a>. 2003; 13(6): 1339-1347.6.\n\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Long%20SS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Long SS</a><sup>1</sup>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Surrey%20DE%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Surrey DE</a>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Nazarian%20LN%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Nazarian LN</a>.Sonography of greater trochanteric pain syndrome and the rarity of primary bursitis.<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/24147479\" target=\"_blank\" rel=\"noopener noreferrer\">AJR Am J Roentgenol.</a> 2013 Nov;201(5):1083-6. doi: 10.2214/AJR.12.10038.\n\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Goel K,Riley LP. Platelet Rich Plasma (PRP)treatment more effective than cortisone for severe hip bursitis. <a href=\"http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf</a>.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Is Your Hip Pain from Bursitis?','','inherit','closed','closed','','3511-autosave-v1','','','2020-08-09 00:19:32','2020-08-09 00:19:32','',3511,'https://www.drfields.com/uncategorized/3511-autosave-v1/',0,'revision','',0),(3972,9,'2020-08-08 23:31:15','2020-08-08 23:31:15','Is your hip pain from bursitis? Have you been treating your hip pain with bursitis treatments like steroids and non-steroidal anti-inflammatories? There are times these treatments help to give some relief, but many people continue to experience a substantial amount of discomfort even after trying them. Plus, continued use of steroids injected into a degenerated joint can unfortunately increase the rate of degeneration.\r\n\r\nWhy not treat the pain with treatments that regenerate rather than degenerate the joint structures? In this article, we will discuss hip bursitis,  various treatment options, and other reasons for hip pain that cause bursitis like symptoms.\r\n<h2>Is Your Hip Pain Really Bursitis?</h2>\r\n<strong><em>We see quite a few patients</em></strong> who come to our office for treatment of bursitis who do not actually have bursitis. Bursitis is so painful that even touching the skin over the painful area is difficult to tolerate. If the area can be palpated with a lot of pressure by the doctor, the patient may not have bursitis. What could the problem be then?\r\n<h3><em>Hip Bursitis or Badly Degenerated Tendons?</em></h3>\r\n<strong><em>Hip Bursitis, or trochanteric bursitis, is actually rare!</em></strong> Multiple studies have shown that patients presenting with bursitis type symptoms actually have tendinopathy (tendon degeneration) of their gluteal tendons. These tendons attach near the bursa and often fool providers into thinking the patients have bursitis. <em><strong>Badly degenerated tendons are what they really have. And they need regeneration! </strong></em>\r\n\r\nOn top of that, as we mentioned, steroid injections are often used as the treatment for true bursitis, so when steroids are injected into the degenerated tendons, they actually can cause them to degenerate faster! Tendinopathy of the gluteus minimus or gluteus medius is often at the root of greater trochanteric pain syndrome.\r\n\r\nRegenerative Orthopedics including Stem Cell Therapy, PRP, and Prolotherapy is safe and effective treatment option for bursitis, tendinopathy, and other underlying soft tissue injuries of the hip.\r\n<h2>More About Bursitis</h2>\r\nTrue bursitis is an inflammation of the bursae, which are small, fluid-filled sacs that lubricate and cushion pressure points between the bones, tendons, and muscles of joints. Bursae help the joints to move with ease. When the bursae become inflamed due to bursitis, movement or pressure can be painful. Bursitis often affects areas around the joints in the elbows or hips.\r\n\r\nHip bursitis entails a bursal sac inflamed between the hip bone and glutei muscle attachments. The bursal sac becomes inflamed because of injury to the soft tissue structures. The bursal sacs are there to decrease the friction of the soft tissue structure and the underlying bone. They let the tendon or muscle glide across the bone more easily. Bursitis pain usually goes away within a week or so with proper treatment, but recurrent flare-ups are common as well as frustrating.<strong> </strong>\r\n<h2>Bursitis Causes</h2>\r\nCommon causes of bursitis include overuse, stress, or direct trauma to a joint, such as repeated bumping or prolonged pressure. Bursitis may result from an infection, arthritis, or gout. Bursitis may also be due to the repetitive motion related to certain activities. Tendonitis, which involves the irritation or inflammation of tendons, or tendinopathy (degenerated tendon) are again oftentimes misdiagnosed as bursitis.\r\n<h2>What Are the Symptoms of Hip Bursitis?</h2>\r\nSymptoms of hip bursitis include a dull ache or stiffness in the affected hip. The pain often worsens with movement or pressure, and the area may be swollen and feel warm to the touch. Intermittent redness of the skin in the area of the inflamed bursae may be another symptom.\r\n\r\nVisible swelling or skin redness is usually absent from bursitis of the hip because the bursae are located beneath some of the body’s bulkiest muscles. Pain is primarily centered over the greater trochanter, a portion of the femur that juts out just below where the bone joins the hip.\r\n<h2>Current Treatment Options for Bursitis</h2>\r\nSince bursitis is an inflammation of the fluid-filled sac, or bursa that lies between a tendon and skin, or between a tendon and bone, bursitis treatment often involves the use of non-steroidal anti-inflammatory drugs (NSAIDS) such as ibuprofen and steroids such as cortisone.\r\n\r\nIf the problem is not true bursitis, the steroid injections by the orthopedist to decrease the inflammation of bursitis will commonly not work to eliminate the pain, since inflammation is not the real problem. The steroid will, however, inhibit fibroblastic proliferation or the process by which soft tissue structures such as ligaments, tendons, and muscles grow and repair, and result in a weakening of the joint.\r\n\r\nNSAIDs are associated with a higher risk of cardiovascular- and gastrointestinal-related adverse events. The FDA issued a medication guide for NSAIDs <strong>recommending physicians prescribe the lowest dose for the shortest time possible</strong>.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nAs physicians become educated on the side effects of these medications, they hopefully decrease their use of them. “As years of experience increased, practitioners were more likely to prescribe lower doses of corticosteroid in musculoskeletal injections.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n\r\nDue to their significant side-effect profile, newer therapies are sought to replace them. Regenerative Orthopedics is both safe and effective to treat bursitis pain from various causes.\r\n<h2>Hip Bursitis Diagnosis Accuracy</h2>\r\nFor the person diagnosed with bursitis, first, consider whether the diagnosis is correct or not. There have been several studies on hip bursitis symptoms, demonstrating, as we noted earlier, that the pain is coming from tendinopathy rather than from bursitis.\r\n\r\n“Some studies have questioned the real involvement of the trochanteric bursa in greater trochanteric pain syndrome, and tendinopathy of the gluteus medius and/or minimus has been proposed as an important cause of this syndrome.”<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a> One study of 75 patients with pain and point tenderness over the greater trochanter, revealed that only 8 had fluid pooling in the trochanteric bursae per sonography.<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\r\n\r\nAnother study showed that only a minority of patients had bursitis, because in 700 out of 877 patients the pain <strong>was not from bursitis</strong>, but rather, it related to “some combination of pathology <strong>involving the gluteus medius and gluteus minimus tendons as well as the iliotibial band</strong>.”<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\r\n\r\nAnd one more found that only 5 of 124 patients with trochanteric pain had bursitis, plus most of those with bursitis also had associated tendinopathy.<sup>iv</sup>\r\n<h2>Bursitis Treatment with Regenerative Orthopedics</h2>\r\nRegenerative Orthopedics stimulate the body to repair painful areas. And that includes those with both true bursitis and tendinopathies. An experienced Regenerative Orthopedics doctor will be able to ascertain what structure is causing the pain.\r\n\r\nIn the hip, the soft tissue structures that attach to the greater trochanter are often involved, including the glutei muscles. Regenerative Orthopedic treatments to these soft tissue structures stimulate them to repair. Once they are fully repaired, the ‘bursitis’ pain resolves.\r\n\r\nPlatelet Rich Plasma (PRP) is one of the Regenerative Orthopedic treatment options that may be recommended for bursitis pain.\r\n\r\nA study presented at the 2014 meeting of the American Academy of Surgeons showed PRP to be very effective in the treatment of severe bursitis of the hip. The study compared one injection of PRP to one injection of cortisone. The cortisone only demonstrated short-term effectiveness. PRP provided both short and long-term pain relief from a condition that is difficult to treat successfully.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nRegenerative Orthopedic options like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy all accomplish repair of the affected soft tissue, and your clinician will recommend which treatment will most effectively repair and regenerate your hip, bringing relief from bursitis pain.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Sofat N. Kuttapitiya A. <a href=\"http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4089899/\" target=\"_blank\" rel=\"noopener noreferrer\">Future directions for the management of pain in osteoarthritis.</a><a href=\"http://www.futuremedicine.com/doi/pdf/10.2217/ijr.14.10\" target=\"_blank\" rel=\"noopener noreferrer\"><em>Int J Rheumatol. </em>Apr 2014; 9(2): 197–276. </a>\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Lazaro D, Alon L, Ramessar N, Cabas-Vargas J, Shwin K, Stefanov D.  Intra-articular, bursa, and tendon sheath injections: A survey of practice patterns among members of the American College of Rheumatology. <em>Journal of Rheumatology.</em>2014; 20(2): 91-93. doi: 10.1097/RHU.0000000000000080\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Quiroz C, Ruta S, Rosa J, Navarta DA, Garcia-Monaco R, Soriano ER. <a href=\"http://www.reumatologia.org.ar.preview.hybrid-sites.com/docs/2013-Ultrasound-Evaluation-Of-The-Greater-Trochanter-Pain-Syndrome-Bursitis-Or-Tendinopathy.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">Ultrasound evaluation of the Greater Trochanter Pain Syndrome: Bursitis or tendinopathy?</a>\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Connell DA, Bass C, Sykes CJ, Young D, Edwards E. Sonographic evaluation of gluteus medius and minimus tendinopathy. <a href=\"http://link.springer.com/journal/330\" target=\"_blank\" rel=\"noopener noreferrer\"><em>European Radiology</em></a>. 2003; 13(6): 1339-1347.6.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Long%20SS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Long SS</a><sup>1</sup>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Surrey%20DE%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Surrey DE</a>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Nazarian%20LN%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Nazarian LN</a>.Sonography of greater trochanteric pain syndrome and the rarity of primary bursitis.<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/24147479\" target=\"_blank\" rel=\"noopener noreferrer\">AJR Am J Roentgenol.</a> 2013 Nov;201(5):1083-6. doi: 10.2214/AJR.12.10038.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Goel K,Riley LP. Platelet Rich Plasma (PRP)treatment more effective than cortisone for severe hip bursitis. <a href=\"http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf</a>.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Is Your Hip Pain from Bursitis?','','inherit','closed','closed','','3511-revision-v1','','','2020-08-08 23:31:15','2020-08-08 23:31:15','',3511,'https://www.drfields.com/uncategorized/3511-revision-v1/',0,'revision','',0),(3973,9,'2020-08-08 23:33:47','2020-08-08 23:33:47','Is your hip pain from bursitis? Have you been treating your hip pain with bursitis treatments like steroids and non-steroidal anti-inflammatories? There are times these treatments help to give some relief, but many people continue to experience a substantial amount of discomfort even after trying them. Plus, continued use of steroids injected into a degenerated joint can unfortunately increase the rate of degeneration.\r\n\r\nWhy not treat the pain with treatments that regenerate rather than degenerate the joint structures? In this article, we will discuss hip bursitis,  various treatment options, and other reasons for hip pain that cause bursitis like symptoms.\r\n<h2>Is Your Hip Pain Really Bursitis?</h2>\r\n<strong><em>We see quite a few patients</em></strong> who come to our office for treatment of bursitis who do not actually have bursitis. Bursitis is so painful that even touching the skin over the painful area is difficult to tolerate. If the area can be palpated with a lot of pressure by the doctor, the patient may not have bursitis. What could the problem be then?\r\n<h3><em>Hip Bursitis or Badly Degenerated Tendons?</em></h3>\r\n<strong><em>Hip Bursitis, or trochanteric bursitis, is actually rare!</em></strong> Multiple studies have shown that patients presenting with bursitis type symptoms actually have tendinopathy (tendon degeneration) of their gluteal tendons. These tendons attach near the bursa and often fool providers into thinking the patients have bursitis. <em><strong>Badly degenerated tendons are what they really have. And they need regeneration! </strong></em>\r\n\r\nOn top of that, as we mentioned, steroid injections are often used as the treatment for true bursitis, so when steroids are injected into the degenerated tendons, they actually can cause them to degenerate faster! Tendinopathy of the gluteus minimus or gluteus medius is often at the root of greater trochanteric pain syndrome.\r\n\r\nRegenerative Orthopedics including Stem Cell Therapy, PRP, and Prolotherapy is safe and effective treatment option for bursitis, tendinopathy, and other underlying soft tissue injuries of the hip.\r\n<h2>More About Bursitis</h2>\r\nTrue bursitis is an inflammation of the bursae, which are small, fluid-filled sacs that lubricate and cushion pressure points between the bones, tendons, and muscles of joints. Bursae help the joints to move with ease. When the bursae become inflamed due to bursitis, movement or pressure can be painful. Bursitis often affects areas around the joints in the elbows or hips.\r\n\r\nHip bursitis involves a bursal sac inflamed between the hip bone and glutei muscle attachments. The bursal sac becomes inflamed because of injury to the soft tissue structures. The bursal sacs decrease the friction of the soft tissue structure and the underlying bone. And they let the tendon or muscle glide across the bone more easily. Bursitis pain usually goes away within a week or so with proper treatment, but recurrent flare-ups are common as well as frustrating.<strong> </strong>\r\n<h2>Bursitis Causes</h2>\r\nCommon causes of bursitis are overuse, stress, or direct trauma to a joint, such as repeated bumping or prolonged pressure. Bursitis may result from an infection, arthritis, or gout. Bursitis may also be due to the repetitive motion related to certain activities. Tendonitis, which involves the irritation or inflammation of tendons, or tendinopathy (degenerated tendon) are again oftentimes misdiagnosed as bursitis.\r\n<h2>What Are the Symptoms of Hip Bursitis?</h2>\r\nSymptoms of hip bursitis include a dull ache or stiffness in the affected hip. The pain often worsens with movement or pressure, and the area may be swollen and feel warm to the touch. Intermittent redness of the skin in the area of the inflamed bursae may be another symptom.\r\n\r\nVisible swelling or skin redness is usually absent from bursitis of the hip because the bursae are located beneath some of the body’s bulkiest muscles. Pain is primarily centered over the greater trochanter, a portion of the femur that juts out just below where the bone joins the hip.\r\n<h2>Current Treatment Options for Bursitis</h2>\r\nSince bursitis is an inflammation of the fluid-filled sac, or bursa that lies between a tendon and skin, or between a tendon and bone, bursitis treatment often involves the use of non-steroidal anti-inflammatory drugs (NSAIDS) such as ibuprofen and steroids such as cortisone.\r\n\r\nIf the problem is not true bursitis, the steroid injections by the orthopedist to decrease the inflammation of bursitis will commonly not work to eliminate the pain, since inflammation is not the real problem. The steroid will, however, inhibit fibroblastic proliferation or the process by which soft tissue structures such as ligaments, tendons, and muscles grow and repair, and result in a weakening of the joint.\r\n\r\nNSAIDs are associated with a higher risk of cardiovascular- and gastrointestinal-related adverse events. The FDA issued a medication guide for NSAIDs <strong>recommending physicians prescribe the lowest dose for the shortest time possible</strong>.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nAs physicians become educated on the side effects of these medications, they hopefully decrease their use of them. “As years of experience increased, practitioners were more likely to prescribe lower doses of corticosteroid in musculoskeletal injections.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n\r\nDue to their significant side-effect profile, newer therapies are sought to replace them. Regenerative Orthopedics is both safe and effective to treat bursitis pain from various causes.\r\n<h2>Hip Bursitis Diagnosis Accuracy</h2>\r\nFor the person diagnosed with bursitis, first, consider whether the diagnosis is correct or not. There have been several studies on hip bursitis symptoms, demonstrating, as we noted earlier, that the pain is coming from tendinopathy rather than from bursitis.\r\n\r\n“Some studies have questioned the real involvement of the trochanteric bursa in greater trochanteric pain syndrome, and tendinopathy of the gluteus medius and/or minimus has been proposed as an important cause of this syndrome.”<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a> One study of 75 patients with pain and point tenderness over the greater trochanter, revealed that only 8 had fluid pooling in the trochanteric bursae per sonography.<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\r\n\r\nAnother study showed that only a minority of patients had bursitis, because in 700 out of 877 patients the pain <strong>was not from bursitis</strong>, but rather, it related to “some combination of pathology <strong>involving the gluteus medius and gluteus minimus tendons as well as the iliotibial band</strong>.”<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\r\n\r\nAnd one more found that only 5 of 124 patients with trochanteric pain had bursitis, plus most of those with bursitis also had associated tendinopathy.<sup>iv</sup>\r\n<h2>Bursitis Treatment with Regenerative Orthopedics</h2>\r\nRegenerative Orthopedics stimulate the body to repair painful areas. And that includes those with both true bursitis and tendinopathies. An experienced Regenerative Orthopedics doctor will be able to ascertain what structure is causing the pain.\r\n\r\nIn the hip, the soft tissue structures that attach to the greater trochanter are often involved, including the glutei muscles. Regenerative Orthopedic treatments to these soft tissue structures stimulate them to repair. Once they are fully repaired, the ‘bursitis’ pain resolves.\r\n\r\nPlatelet Rich Plasma (PRP) is one of the Regenerative Orthopedic treatment options that may be recommended for bursitis pain.\r\n\r\nA study presented at the 2014 meeting of the American Academy of Surgeons showed PRP to be very effective in the treatment of severe bursitis of the hip. The study compared one injection of PRP to one injection of cortisone. The cortisone only demonstrated short-term effectiveness. PRP provided both short and long-term pain relief from a condition that is difficult to treat successfully.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nRegenerative Orthopedic options like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy all accomplish repair of the affected soft tissue, and your clinician will recommend which treatment will most effectively repair and regenerate your hip, bringing relief from bursitis pain.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Sofat N. Kuttapitiya A. <a href=\"http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4089899/\" target=\"_blank\" rel=\"noopener noreferrer\">Future directions for the management of pain in osteoarthritis.</a><a href=\"http://www.futuremedicine.com/doi/pdf/10.2217/ijr.14.10\" target=\"_blank\" rel=\"noopener noreferrer\"><em>Int J Rheumatol. </em>Apr 2014; 9(2): 197–276. </a>\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Lazaro D, Alon L, Ramessar N, Cabas-Vargas J, Shwin K, Stefanov D.  Intra-articular, bursa, and tendon sheath injections: A survey of practice patterns among members of the American College of Rheumatology. <em>Journal of Rheumatology.</em>2014; 20(2): 91-93. doi: 10.1097/RHU.0000000000000080\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Quiroz C, Ruta S, Rosa J, Navarta DA, Garcia-Monaco R, Soriano ER. <a href=\"http://www.reumatologia.org.ar.preview.hybrid-sites.com/docs/2013-Ultrasound-Evaluation-Of-The-Greater-Trochanter-Pain-Syndrome-Bursitis-Or-Tendinopathy.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">Ultrasound evaluation of the Greater Trochanter Pain Syndrome: Bursitis or tendinopathy?</a>\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Connell DA, Bass C, Sykes CJ, Young D, Edwards E. Sonographic evaluation of gluteus medius and minimus tendinopathy. <a href=\"http://link.springer.com/journal/330\" target=\"_blank\" rel=\"noopener noreferrer\"><em>European Radiology</em></a>. 2003; 13(6): 1339-1347.6.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Long%20SS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Long SS</a><sup>1</sup>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Surrey%20DE%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Surrey DE</a>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Nazarian%20LN%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Nazarian LN</a>.Sonography of greater trochanteric pain syndrome and the rarity of primary bursitis.<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/24147479\" target=\"_blank\" rel=\"noopener noreferrer\">AJR Am J Roentgenol.</a> 2013 Nov;201(5):1083-6. doi: 10.2214/AJR.12.10038.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Goel K,Riley LP. Platelet Rich Plasma (PRP)treatment more effective than cortisone for severe hip bursitis. <a href=\"http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf</a>.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Is Your Hip Pain from Bursitis?','','inherit','closed','closed','','3511-revision-v1','','','2020-08-08 23:33:47','2020-08-08 23:33:47','',3511,'https://www.drfields.com/uncategorized/3511-revision-v1/',0,'revision','',0),(3974,9,'2020-08-09 00:10:52','2020-08-09 00:10:52','Is your hip pain from bursitis? Have you been treating your hip pain with bursitis treatments like steroids and non-steroidal anti-inflammatories? There are times these treatments help to give some relief, but many people continue to experience a substantial amount of discomfort even after trying them. Plus, continued use of steroids injected into a degenerated joint can unfortunately increase the rate of degeneration.\r\n\r\nWhy not treat the pain with treatments that regenerate rather than degenerate the joint structures? In this article, we will discuss hip bursitis,  various treatment options, and other reasons for hip pain that cause bursitis like symptoms.\r\n<h2>Is Your Hip Pain Really Bursitis?</h2>\r\n<strong><em>We see quite a few patients</em></strong> who come to our office for treatment of bursitis who do not actually have bursitis. Bursitis is so painful that even touching the skin over the painful area is difficult to tolerate. If the area can be palpated with a lot of pressure by the doctor, the patient may not have bursitis. What could the problem be then?\r\n<h3><em>Hip Bursitis or Badly Degenerated Tendons?</em></h3>\r\n<strong><em>Hip Bursitis, or trochanteric bursitis, is actually rare!</em></strong> Multiple studies have shown that patients presenting with bursitis type symptoms actually have tendinopathy (tendon degeneration) of their gluteal tendons. These tendons attach near the bursa and often fool providers into thinking the patients have bursitis. <em><strong>Badly degenerated tendons are what they really have. And they need regeneration! </strong></em>\r\n\r\nOn top of that, as we mentioned, steroid injections are often used as the treatment for true bursitis. So when steroids are injected into the degenerated tendons, they actually can cause them to degenerate faster! Tendinopathy of the gluteus minimus or gluteus medius is often at the root of greater trochanteric pain syndrome.\r\n\r\nRegenerative Orthopedics including Stem Cell Therapy, PRP, and Prolotherapy is a safe and effective treatment option for bursitis, tendinopathy, and other underlying soft tissue injuries of the hip.\r\n<h2>More About Bursitis</h2>\r\nTrue bursitis is an inflammation of the bursae, which are small, fluid-filled sacs that lubricate and cushion pressure points between the bones, tendons, and muscles of joints. And the bursae help the joints to move with ease. So when the bursae become inflamed due to bursitis, movement or pressure can be painful. Bursitis often affects areas around the joints in the elbows or hips.\r\n<h3>Hip Bursitis</h3>\r\nHip bursitis involves a bursal sac inflamed between the hip bone and glutei muscle attachments. The bursal sac inflames because of injury to the soft tissue structures. A function of the bursal sacs is to decrease the friction of the soft tissue structure and the underlying bone. This allows the tendon or muscle to glide across the bone more easily. Bursitis pain usually goes away within a week or so with proper treatment, but recurrent flare-ups are common as well as frustrating.<strong> </strong>\r\n<h2>Bursitis Causes</h2>\r\nCommon causes of bursitis are overuse, stress, or direct trauma to a joint, such as repeated bumping or prolonged pressure. Bursitis may result from an infection, arthritis, or gout. Bursitis may also be due to the repetitive motion related to certain activities. Tendonitis, which involves the irritation or inflammation of tendons, or tendinopathy (degenerated tendon) are again oftentimes misdiagnosed as bursitis.\r\n<h2>What Are the Symptoms of Hip Bursitis?</h2>\r\nSymptoms of hip bursitis include a dull ache or stiffness in the affected hip. The pain often worsens with movement or pressure, and the area may be swollen and feel warm to the touch. Intermittent redness of the skin in the area of the inflamed bursae may be another symptom.\r\n\r\nVisible swelling or skin redness is usually absent from bursitis of the hip because the bursae are located beneath some of the body’s bulkiest muscles. Pain is primarily centered over the greater trochanter, a portion of the femur that juts out just below where the bone joins the hip.\r\n<h2>Current Treatment Options for Bursitis</h2>\r\nSince bursitis is an inflammation of the fluid-filled sac, or bursa that lies between a tendon and skin, or between a tendon and bone, bursitis treatment often involves the use of non-steroidal anti-inflammatory drugs (NSAIDS) such as ibuprofen and steroids such as cortisone.\r\n\r\nIf the problem is not true bursitis, the steroid injections by the orthopedist to decrease the inflammation of bursitis will commonly not work to eliminate the pain, since inflammation is not the real problem. The steroid will, however, inhibit fibroblastic proliferation or the process by which soft tissue structures such as ligaments, tendons, and muscles grow and repair, and result in a weakening of the joint.\r\n\r\nNSAIDs are associated with a higher risk of cardiovascular- and gastrointestinal-related adverse events. The FDA issued a medication guide for NSAIDs <strong>recommending physicians prescribe the lowest dose for the shortest time possible</strong>.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nAs physicians become educated on the side effects of these medications, they hopefully decrease their use of them. “As years of experience increased, practitioners were more likely to prescribe lower doses of corticosteroid in musculoskeletal injections.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n\r\nDue to their significant side-effect profile, newer therapies are sought to replace them. Regenerative Orthopedics is both safe and effective to treat bursitis pain from various causes.\r\n<h2>Hip Bursitis Diagnosis Accuracy</h2>\r\nFor the person diagnosed with bursitis, first, consider whether the diagnosis is correct or not. There have been several studies on hip bursitis symptoms, demonstrating, as we noted earlier, that the pain is coming from tendinopathy rather than from bursitis.\r\n\r\n“Some studies have questioned the real involvement of the trochanteric bursa in greater trochanteric pain syndrome, and tendinopathy of the gluteus medius and/or minimus has been proposed as an important cause of this syndrome.”<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a> One study of 75 patients with pain and point tenderness over the greater trochanter, revealed that only 8 had fluid pooling in the trochanteric bursae per sonography.<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\r\n\r\nAnother study showed that only a minority of patients had bursitis, because in 700 out of 877 patients the pain <strong>was not from bursitis</strong>, but rather, it related to “some combination of pathology <strong>involving the gluteus medius and gluteus minimus tendons as well as the iliotibial band</strong>.”<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\r\n\r\nAnd one more found that only 5 of 124 patients with trochanteric pain had bursitis, plus most of those with bursitis also had associated tendinopathy.<sup>iv</sup>\r\n<h2>Bursitis Treatment with Regenerative Orthopedics</h2>\r\nRegenerative Orthopedics stimulate the body to repair painful areas. And that includes those with both true bursitis and tendinopathies. An experienced Regenerative Orthopedics doctor will be able to ascertain what structure is causing the pain.\r\n\r\nIn the hip, the soft tissue structures that attach to the greater trochanter are often involved, including the glutei muscles. Regenerative Orthopedic treatments to these soft tissue structures stimulate them to repair. Once they are fully repaired, the ‘bursitis’ pain resolves.\r\n\r\nPlatelet Rich Plasma (PRP) is one of the Regenerative Orthopedic treatment options that may be recommended for bursitis pain.\r\n\r\nA study presented at the 2014 meeting of the American Academy of Surgeons showed PRP to be very effective in the treatment of severe bursitis of the hip. The study compared one injection of PRP to one injection of cortisone. The cortisone only demonstrated short-term effectiveness. PRP provided both short and long-term pain relief from a condition that is difficult to treat successfully.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nRegenerative Orthopedic options like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy all accomplish repair of the affected soft tissue, and your clinician will recommend which treatment will most effectively repair and regenerate your hip, bringing relief from bursitis pain.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Sofat N. Kuttapitiya A. <a href=\"http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4089899/\" target=\"_blank\" rel=\"noopener noreferrer\">Future directions for the management of pain in osteoarthritis.</a><a href=\"http://www.futuremedicine.com/doi/pdf/10.2217/ijr.14.10\" target=\"_blank\" rel=\"noopener noreferrer\"><em>Int J Rheumatol. </em>Apr 2014; 9(2): 197–276. </a>\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Lazaro D, Alon L, Ramessar N, Cabas-Vargas J, Shwin K, Stefanov D.  Intra-articular, bursa, and tendon sheath injections: A survey of practice patterns among members of the American College of Rheumatology. <em>Journal of Rheumatology.</em>2014; 20(2): 91-93. doi: 10.1097/RHU.0000000000000080\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Quiroz C, Ruta S, Rosa J, Navarta DA, Garcia-Monaco R, Soriano ER. <a href=\"http://www.reumatologia.org.ar.preview.hybrid-sites.com/docs/2013-Ultrasound-Evaluation-Of-The-Greater-Trochanter-Pain-Syndrome-Bursitis-Or-Tendinopathy.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">Ultrasound evaluation of the Greater Trochanter Pain Syndrome: Bursitis or tendinopathy?</a>\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Connell DA, Bass C, Sykes CJ, Young D, Edwards E. Sonographic evaluation of gluteus medius and minimus tendinopathy. <a href=\"http://link.springer.com/journal/330\" target=\"_blank\" rel=\"noopener noreferrer\"><em>European Radiology</em></a>. 2003; 13(6): 1339-1347.6.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Long%20SS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Long SS</a><sup>1</sup>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Surrey%20DE%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Surrey DE</a>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Nazarian%20LN%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Nazarian LN</a>.Sonography of greater trochanteric pain syndrome and the rarity of primary bursitis.<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/24147479\" target=\"_blank\" rel=\"noopener noreferrer\">AJR Am J Roentgenol.</a> 2013 Nov;201(5):1083-6. doi: 10.2214/AJR.12.10038.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Goel K,Riley LP. Platelet Rich Plasma (PRP)treatment more effective than cortisone for severe hip bursitis. <a href=\"http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf</a>.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Is Your Hip Pain from Bursitis?','','inherit','closed','closed','','3511-revision-v1','','','2020-08-09 00:10:52','2020-08-09 00:10:52','',3511,'https://www.drfields.com/uncategorized/3511-revision-v1/',0,'revision','',0),(3975,9,'2020-08-09 00:16:54','2020-08-09 00:16:54','Is your hip pain from bursitis? Have you been treating your hip pain with bursitis treatments like steroids and non-steroidal anti-inflammatories? There are times these treatments help to give some relief, but many people continue to experience a substantial amount of discomfort even after trying them. Plus, continued use of steroids injected into a degenerated joint can unfortunately increase the rate of degeneration.\r\n\r\nWhy not treat the pain with treatments that regenerate rather than degenerate the joint structures? In this article, we will discuss hip bursitis,  various treatment options, and other reasons for hip pain that cause bursitis like symptoms.\r\n<h2>Is Your Hip Pain Really Bursitis?</h2>\r\n<strong><em>We see quite a few patients</em></strong> who come to our office for treatment of bursitis who do not actually have bursitis. Bursitis is so painful that even touching the skin over the painful area is difficult to tolerate. If the area can be palpated with a lot of pressure by the doctor, the patient may not have bursitis. What could the problem be then?\r\n<h3><em>Hip Bursitis or Badly Degenerated Tendons?</em></h3>\r\n<strong><em>Hip Bursitis, or trochanteric bursitis, is actually rare!</em></strong> Multiple studies have shown that patients presenting with bursitis type symptoms actually have tendinopathy (tendon degeneration) of their gluteal tendons. These tendons attach near the bursa and often fool providers into thinking the patients have bursitis. <em><strong>Badly degenerated tendons are what they really have. And they need regeneration! </strong></em>\r\n\r\nOn top of that, as we mentioned, steroid injections are often used as the treatment for true bursitis. So when steroids are injected into the degenerated tendons, they actually can cause them to degenerate faster! Tendinopathy of the gluteus minimus or gluteus medius is often at the root of greater trochanteric pain syndrome.\r\n\r\nRegenerative Orthopedics including Stem Cell Therapy, PRP, and Prolotherapy is a safe and effective treatment option for bursitis, tendinopathy, and other underlying soft tissue injuries of the hip.\r\n<h2>More About Bursitis</h2>\r\nTrue bursitis is an inflammation of the bursae, which are small, fluid-filled sacs that lubricate and cushion pressure points between the bones, tendons, and muscles of joints. And the bursae help the joints to move with ease. So when the bursae become inflamed due to bursitis, movement or pressure can be painful. Bursitis often affects areas around the joints in the elbows or hips.\r\n<h3>Hip Bursitis</h3>\r\nHip bursitis involves a bursal sac that is inflamed between the hip bone and glutei muscle attachments. The bursal sac inflames because of injury to the soft tissue structures. The bursal sacs decrease the friction of the soft tissue structure and the underlying bone. This allows the tendon or muscle to glide across the bone more easily. Bursitis pain usually goes away within a week or so with proper treatment, but recurrent flare-ups are common as well as frustrating.<strong> </strong>\r\n<h2>Bursitis Causes</h2>\r\nCommon causes of bursitis are overuse, stress, or direct trauma to a joint, such as repeated bumping or prolonged pressure. Bursitis may result from an infection, arthritis, or gout. Bursitis may also be due to the repetitive motion related to certain activities. Tendonitis, which involves the irritation or inflammation of tendons, or tendinopathy (degenerated tendon) are again oftentimes misdiagnosed as bursitis.\r\n<h2>What Are the Symptoms of Hip Bursitis?</h2>\r\nSymptoms of hip bursitis include a dull ache or stiffness in the affected hip. Bursitis pain often worsens with movement or pressure. And the area may be swollen and feel warm to the touch. Intermittent redness of the skin in the area of the inflamed bursae may be another symptom.\r\n\r\nVisible swelling or skin redness is usually absent from bursitis of the hip because the bursae are located beneath some of the body’s bulkiest muscles. Pain is primarily centered over the greater trochanter, a portion of the femur that juts out just below where the bone joins the hip.\r\n<h2>Current Treatment Options for Bursitis</h2>\r\nSince bursitis is an inflammation of the fluid-filled sac, or bursa that lies between a tendon and skin, or between a tendon and bone, bursitis treatment often involves the use of non-steroidal anti-inflammatory drugs (NSAIDS) such as ibuprofen and steroids such as cortisone.\r\n\r\nIf the problem is not true bursitis, the steroid injections to decrease the inflammation will usually not work to eliminate the pain, since inflammation is not the real problem. The steroid will, however, inhibit fibroblastic proliferation or the process by which soft tissue structures such as ligaments, tendons, and muscles grow and repair, and result in a weakening of the joint.\r\n<h3>NSAIDs Can Cause More Problems</h3>\r\nNSAIDs are associated with a higher risk of cardiovascular- and gastrointestinal-related adverse events. The FDA issued a medication guide for NSAIDs <strong>recommending physicians prescribe the lowest dose for the shortest time possible</strong>.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nAs physicians become educated on the side effects of these medications, they hopefully decrease their use of them. “As years of experience increased, practitioners were more likely to prescribe lower doses of corticosteroid in musculoskeletal injections.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n\r\nNewer therapies are sought to replace NSAIDs due to their significant side-effect profile. Regenerative Orthopedics is both a safe and effective treatment option for bursitis pain from various causes.\r\n<h2>Hip Bursitis Diagnosis Accuracy</h2>\r\nFor the person diagnosed with bursitis, first, consider whether the diagnosis is correct or not. There have been several studies on hip bursitis symptoms, demonstrating, as we noted earlier, that the pain is coming from tendinopathy rather than from bursitis.\r\n\r\n“Some studies have questioned the real involvement of the trochanteric bursa in greater trochanteric pain syndrome, and tendinopathy of the gluteus medius and/or minimus has been proposed as an important cause of this syndrome.”<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a> One study of 75 patients with pain and point tenderness over the greater trochanter, revealed that only 8 had fluid pooling in the trochanteric bursae per sonography.<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\r\n\r\nAnother study showed that only a minority of patients had bursitis, because in 700 out of 877 patients the pain <strong>was not from bursitis</strong>, but rather, it related to “some combination of pathology <strong>involving the gluteus medius and gluteus minimus tendons as well as the iliotibial band</strong>.”<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\r\n\r\nAnd one more found that only 5 of 124 patients with trochanteric pain had bursitis, plus most of those with bursitis also had associated tendinopathy.<sup>iv</sup>\r\n<h2>Bursitis Treatment with Regenerative Orthopedics</h2>\r\nRegenerative Orthopedics stimulate the body to repair painful areas. And that includes those with both true bursitis and tendinopathies. An experienced Regenerative Orthopedics doctor will be able to ascertain what structure is causing the pain.\r\n\r\nIn the hip, the soft tissue structures that attach to the greater trochanter are often involved, including the glutei muscles. Regenerative Orthopedic treatments to these soft tissue structures stimulate them to repair. Once they are fully repaired, the ‘bursitis’ pain resolves.\r\n\r\nPlatelet Rich Plasma (PRP) is one of the Regenerative Orthopedic treatment options that may be recommended for bursitis pain.\r\n\r\nA study presented at the 2014 meeting of the American Academy of Surgeons showed PRP to be very effective in the treatment of severe bursitis of the hip. The study compared one injection of PRP to one injection of cortisone. The cortisone only demonstrated short-term effectiveness. PRP provided both short and long-term pain relief from a condition that is difficult to treat successfully.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nRegenerative Orthopedic options like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy all accomplish repair of the affected soft tissue, and your clinician will recommend which treatment will most effectively repair and regenerate your hip, bringing relief from bursitis pain.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Sofat N. Kuttapitiya A. <a href=\"http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4089899/\" target=\"_blank\" rel=\"noopener noreferrer\">Future directions for the management of pain in osteoarthritis.</a><a href=\"http://www.futuremedicine.com/doi/pdf/10.2217/ijr.14.10\" target=\"_blank\" rel=\"noopener noreferrer\"><em>Int J Rheumatol. </em>Apr 2014; 9(2): 197–276. </a>\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Lazaro D, Alon L, Ramessar N, Cabas-Vargas J, Shwin K, Stefanov D.  Intra-articular, bursa, and tendon sheath injections: A survey of practice patterns among members of the American College of Rheumatology. <em>Journal of Rheumatology.</em>2014; 20(2): 91-93. doi: 10.1097/RHU.0000000000000080\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Quiroz C, Ruta S, Rosa J, Navarta DA, Garcia-Monaco R, Soriano ER. <a href=\"http://www.reumatologia.org.ar.preview.hybrid-sites.com/docs/2013-Ultrasound-Evaluation-Of-The-Greater-Trochanter-Pain-Syndrome-Bursitis-Or-Tendinopathy.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">Ultrasound evaluation of the Greater Trochanter Pain Syndrome: Bursitis or tendinopathy?</a>\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Connell DA, Bass C, Sykes CJ, Young D, Edwards E. Sonographic evaluation of gluteus medius and minimus tendinopathy. <a href=\"http://link.springer.com/journal/330\" target=\"_blank\" rel=\"noopener noreferrer\"><em>European Radiology</em></a>. 2003; 13(6): 1339-1347.6.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Long%20SS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Long SS</a><sup>1</sup>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Surrey%20DE%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Surrey DE</a>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Nazarian%20LN%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Nazarian LN</a>.Sonography of greater trochanteric pain syndrome and the rarity of primary bursitis.<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/24147479\" target=\"_blank\" rel=\"noopener noreferrer\">AJR Am J Roentgenol.</a> 2013 Nov;201(5):1083-6. doi: 10.2214/AJR.12.10038.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Goel K,Riley LP. Platelet Rich Plasma (PRP)treatment more effective than cortisone for severe hip bursitis. <a href=\"http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf</a>.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Is Your Hip Pain from Bursitis?','','inherit','closed','closed','','3511-revision-v1','','','2020-08-09 00:16:54','2020-08-09 00:16:54','',3511,'https://www.drfields.com/uncategorized/3511-revision-v1/',0,'revision','',0),(3976,9,'2020-08-09 00:18:29','2020-08-09 00:18:29','Is your hip pain from bursitis? Have you been treating your hip pain with bursitis treatments like steroids and non-steroidal anti-inflammatories? There are times these treatments help to give some relief, but many people continue to experience a substantial amount of discomfort even after trying them. Plus, continued use of steroids injected into a degenerated joint can unfortunately increase the rate of degeneration.\r\n\r\nWhy not treat the pain with treatments that regenerate rather than degenerate the joint structures? In this article, we will discuss hip bursitis,  various treatment options, and other reasons for hip pain that cause bursitis like symptoms.\r\n<h2>Is Your Hip Pain Really Bursitis?</h2>\r\n<strong><em>We see quite a few patients</em></strong> who come to our office for treatment of bursitis who do not actually have bursitis. Bursitis is so painful that even touching the skin over the painful area is difficult to tolerate. If the area can be palpated with a lot of pressure by the doctor, the patient may not have bursitis. What could the problem be then?\r\n<h3><em>Hip Bursitis or Badly Degenerated Tendons?</em></h3>\r\n<strong><em>Hip Bursitis, or trochanteric bursitis, is actually rare!</em></strong> Multiple studies have shown that patients presenting with bursitis type symptoms actually have tendinopathy (tendon degeneration) of their gluteal tendons. These tendons attach near the bursa and often fool providers into thinking the patients have bursitis. <em><strong>Badly degenerated tendons are what they really have. And they need regeneration! </strong></em>\r\n\r\nOn top of that, as we mentioned, steroid injections are often used as the treatment for true bursitis. So when steroids are injected into the degenerated tendons, they actually can cause them to degenerate faster! Tendinopathy of the gluteus minimus or gluteus medius is often at the root of greater trochanteric pain syndrome.\r\n\r\nRegenerative Orthopedics including Stem Cell Therapy, PRP, and Prolotherapy is a safe and effective treatment option for bursitis, tendinopathy, and other underlying soft tissue injuries of the hip.\r\n<h2>More About Bursitis</h2>\r\nTrue bursitis is an inflammation of the bursae, which are small, fluid-filled sacs that lubricate and cushion pressure points between the bones, tendons, and muscles of joints. And the bursae help the joints to move with ease. So when the bursae become inflamed due to bursitis, movement or pressure can be painful. Bursitis often affects areas around the joints in the elbows or hips.\r\n<h3>Hip Bursitis</h3>\r\nHip bursitis involves a bursal sac that is inflamed between the hip bone and glutei muscle attachments. The bursal sac inflames because of injury to the soft tissue structures. The bursal sacs decrease the friction of the soft tissue structure and the underlying bone. This allows the tendon or muscle to glide across the bone more easily. Bursitis pain usually goes away within a week or so with proper treatment, but recurrent flare-ups are common as well as frustrating.<strong> </strong>\r\n<h2>Bursitis Causes</h2>\r\nCommon causes of bursitis are overuse, stress, or direct trauma to a joint, such as repeated bumping or prolonged pressure. Bursitis may result from an infection, arthritis, or gout. Bursitis may also be due to the repetitive motion related to certain activities. Tendonitis, which involves the irritation or inflammation of tendons, or tendinopathy (degenerated tendon) are again oftentimes misdiagnosed as bursitis.\r\n<h2>What Are the Symptoms of Hip Bursitis?</h2>\r\nSymptoms of hip bursitis include a dull ache or stiffness in the affected hip. Bursitis pain often worsens with movement or pressure. And the area may be swollen and feel warm to the touch. Intermittent redness of the skin in the area of the inflamed bursae may be another symptom.\r\n\r\nVisible swelling or skin redness is usually absent from bursitis of the hip because the bursae are located beneath some of the body’s bulkiest muscles. Pain is primarily centered over the greater trochanter, a portion of the femur that juts out just below where the bone joins the hip.\r\n<h2>Current Treatment Options for Bursitis</h2>\r\nSince bursitis is an inflammation of the fluid-filled sac, or bursa that lies between a tendon and skin, or between a tendon and bone, bursitis treatment often involves the use of non-steroidal anti-inflammatory drugs (NSAIDS) such as ibuprofen and steroids such as cortisone.\r\n\r\nIf the problem is not true bursitis, the steroid injections to decrease the inflammation will usually not work to eliminate the pain, since inflammation is not the real problem. The steroid will, however, inhibit fibroblastic proliferation or the process by which soft tissue structures such as ligaments, tendons, and muscles grow and repair, and result in a weakening of the joint.\r\n<h3>NSAIDs Can Cause More Problems</h3>\r\nNSAIDs are associated with a higher risk of cardiovascular- and gastrointestinal-related adverse events. The FDA issued a medication guide for NSAIDs <strong>recommending physicians prescribe the lowest dose for the shortest time possible</strong>.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nAs physicians become educated on the side effects of these medications, they hopefully decrease their use of them. “As years of experience increased, practitioners were more likely to prescribe lower doses of corticosteroid in musculoskeletal injections.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n\r\nNewer therapies are sought to replace NSAIDs due to their significant side-effect profile. Regenerative Orthopedics is both a safe and effective treatment option for bursitis pain from various causes.\r\n<h2>Hip Bursitis Diagnosis Accuracy</h2>\r\nFor the person diagnosed with bursitis, first, consider whether the diagnosis is correct or not. There have been several studies on hip bursitis symptoms, demonstrating, as we noted earlier, that the pain is coming from tendinopathy rather than from bursitis.\r\n\r\n“Some studies have questioned the real involvement of the trochanteric bursa in greater trochanteric pain syndrome, and tendinopathy of the gluteus medius and/or minimus has been proposed as an important cause of this syndrome.”<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a> One study of 75 patients with pain and point tenderness over the greater trochanter, revealed that only 8 had fluid pooling in the trochanteric bursae per sonography.<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\r\n\r\nAnother study showed that only a minority of patients had bursitis, because in 700 out of 877 patients the pain <strong>was not from bursitis</strong>, but rather, it related to “some combination of pathology <strong>involving the gluteus medius and gluteus minimus tendons as well as the iliotibial band</strong>.”<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\r\n\r\nAnd one more found that only 5 of 124 patients with trochanteric pain had bursitis, plus most of those with bursitis also had associated tendinopathy.<sup>iv</sup>\r\n<h2>Bursitis Treatment with Regenerative Orthopedics</h2>\r\nRegenerative Orthopedics stimulate the body to repair painful areas. And that includes those with both true bursitis and tendinopathies. An experienced Regenerative Orthopedics doctor will be able to ascertain what structure is causing the pain.\r\n\r\nIn the hip, the soft tissue structures that attach to the greater trochanter are often involved, including the glutei muscles. Regenerative Orthopedic treatments to these soft tissue structures stimulate them to repair. Once they are fully repaired, the ‘bursitis’ pain resolves.\r\n\r\nPlatelet Rich Plasma (PRP) is one of the Regenerative Orthopedic treatment options that may be recommended for bursitis pain.\r\n<h3>A Study on PRP for Hip Bursitis</h3>\r\nA study presented at the 2014 meeting of the American Academy of Surgeons showed PRP to be very effective in the treatment of severe bursitis of the hip. The study compared one injection of PRP to one injection of cortisone. The cortisone only demonstrated short-term effectiveness. PRP provided both short and long-term pain relief from a condition that is difficult to treat successfully.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nRegenerative Orthopedic options like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy all accomplish repair of the affected soft tissue, and your clinician will recommend which treatment will most effectively repair and regenerate your hip, bringing relief from bursitis pain.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Sofat N. Kuttapitiya A. <a href=\"http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4089899/\" target=\"_blank\" rel=\"noopener noreferrer\">Future directions for the management of pain in osteoarthritis.</a><a href=\"http://www.futuremedicine.com/doi/pdf/10.2217/ijr.14.10\" target=\"_blank\" rel=\"noopener noreferrer\"><em>Int J Rheumatol. </em>Apr 2014; 9(2): 197–276. </a>\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Lazaro D, Alon L, Ramessar N, Cabas-Vargas J, Shwin K, Stefanov D.  Intra-articular, bursa, and tendon sheath injections: A survey of practice patterns among members of the American College of Rheumatology. <em>Journal of Rheumatology.</em>2014; 20(2): 91-93. doi: 10.1097/RHU.0000000000000080\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Quiroz C, Ruta S, Rosa J, Navarta DA, Garcia-Monaco R, Soriano ER. <a href=\"http://www.reumatologia.org.ar.preview.hybrid-sites.com/docs/2013-Ultrasound-Evaluation-Of-The-Greater-Trochanter-Pain-Syndrome-Bursitis-Or-Tendinopathy.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">Ultrasound evaluation of the Greater Trochanter Pain Syndrome: Bursitis or tendinopathy?</a>\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Connell DA, Bass C, Sykes CJ, Young D, Edwards E. Sonographic evaluation of gluteus medius and minimus tendinopathy. <a href=\"http://link.springer.com/journal/330\" target=\"_blank\" rel=\"noopener noreferrer\"><em>European Radiology</em></a>. 2003; 13(6): 1339-1347.6.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Long%20SS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Long SS</a><sup>1</sup>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Surrey%20DE%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Surrey DE</a>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Nazarian%20LN%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Nazarian LN</a>.Sonography of greater trochanteric pain syndrome and the rarity of primary bursitis.<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/24147479\" target=\"_blank\" rel=\"noopener noreferrer\">AJR Am J Roentgenol.</a> 2013 Nov;201(5):1083-6. doi: 10.2214/AJR.12.10038.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Goel K,Riley LP. Platelet Rich Plasma (PRP)treatment more effective than cortisone for severe hip bursitis. <a href=\"http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf</a>.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Is Your Hip Pain from Bursitis?','','inherit','closed','closed','','3511-revision-v1','','','2020-08-09 00:18:29','2020-08-09 00:18:29','',3511,'https://www.drfields.com/uncategorized/3511-revision-v1/',0,'revision','',0),(3977,9,'2020-08-09 00:19:39','2020-08-09 00:19:39','Is your hip pain from bursitis? Have you been treating your hip pain with bursitis treatments like steroids and non-steroidal anti-inflammatories? There are times these treatments help to give some relief, but many people continue to experience a substantial amount of discomfort even after trying them. Plus, continued use of steroids injected into a degenerated joint can unfortunately increase the rate of degeneration.\r\n\r\nWhy not treat the pain with treatments that regenerate rather than degenerate the joint structures? In this article, we will discuss hip bursitis,  various treatment options, and other reasons for hip pain that cause bursitis like symptoms.\r\n<h2>Is Your Hip Pain Really Bursitis?</h2>\r\n<strong><em>We see quite a few patients</em></strong> who come to our office for treatment of bursitis who do not actually have bursitis. Bursitis is so painful that even touching the skin over the painful area is difficult to tolerate. If the area can be palpated with a lot of pressure by the doctor, the patient may not have bursitis. What could the problem be then?\r\n<h3><em>Hip Bursitis or Badly Degenerated Tendons?</em></h3>\r\n<strong><em>Hip Bursitis, or trochanteric bursitis, is actually rare!</em></strong> Multiple studies have shown that patients presenting with bursitis type symptoms actually have tendinopathy (tendon degeneration) of their gluteal tendons. These tendons attach near the bursa and often fool providers into thinking the patients have bursitis. <em><strong>Badly degenerated tendons are what they really have. And they need regeneration! </strong></em>\r\n\r\nOn top of that, as we mentioned, steroid injections are often used as the treatment for true bursitis. So when steroids are injected into the degenerated tendons, they actually can cause them to degenerate faster! Tendinopathy of the gluteus minimus or gluteus medius is often at the root of greater trochanteric pain syndrome.\r\n\r\nRegenerative Orthopedics including Stem Cell Therapy, PRP, and Prolotherapy is a safe and effective treatment option for bursitis, tendinopathy, and other underlying soft tissue injuries of the hip.\r\n<h2>More About Bursitis</h2>\r\nTrue bursitis is an inflammation of the bursae, which are small, fluid-filled sacs that lubricate and cushion pressure points between the bones, tendons, and muscles of joints. And the bursae help the joints to move with ease. So when the bursae become inflamed due to bursitis, movement or pressure can be painful. Bursitis often affects areas around the joints in the elbows or hips.\r\n<h3>Hip Bursitis</h3>\r\nHip bursitis involves a bursal sac that is inflamed between the hip bone and glutei muscle attachments. The bursal sac inflames because of injury to the soft tissue structures. The bursal sacs decrease the friction of the soft tissue structure and the underlying bone. This allows the tendon or muscle to glide across the bone more easily. Bursitis pain usually goes away within a week or so with proper treatment, but recurrent flare-ups are common as well as frustrating.<strong> </strong>\r\n<h2>Bursitis Causes</h2>\r\nCommon causes of bursitis are overuse, stress, or direct trauma to a joint, such as repeated bumping or prolonged pressure. Bursitis may result from an infection, arthritis, or gout. Bursitis may also be due to the repetitive motion related to certain activities. Tendonitis, which involves the irritation or inflammation of tendons, or tendinopathy (degenerated tendon) are again oftentimes misdiagnosed as bursitis.\r\n<h2>What Are the Symptoms of Hip Bursitis?</h2>\r\nSymptoms of hip bursitis include a dull ache or stiffness in the affected hip. Bursitis pain often worsens with movement or pressure. And the area may be swollen and feel warm to the touch. Intermittent redness of the skin in the area of the inflamed bursae may be another symptom.\r\n\r\nVisible swelling or skin redness is usually absent from bursitis of the hip because the bursae are located beneath some of the body’s bulkiest muscles. Pain is primarily centered over the greater trochanter, a portion of the femur that juts out just below where the bone joins the hip.\r\n<h2>Current Treatment Options for Bursitis</h2>\r\nSince bursitis is an inflammation of the fluid-filled sac, or bursa that lies between a tendon and skin, or between a tendon and bone, bursitis treatment often involves the use of non-steroidal anti-inflammatory drugs (NSAIDS) such as ibuprofen and steroids such as cortisone.\r\n\r\nIf the problem is not true bursitis, the steroid injections to decrease the inflammation will usually not work to eliminate the pain, since inflammation is not the real problem. The steroid will, however, inhibit fibroblastic proliferation or the process by which soft tissue structures such as ligaments, tendons, and muscles grow and repair, and result in a weakening of the joint.\r\n<h3>NSAIDs Can Cause More Problems</h3>\r\nNSAIDs are associated with a higher risk of cardiovascular- and gastrointestinal-related adverse events. The FDA issued a medication guide for NSAIDs <strong>recommending physicians prescribe the lowest dose for the shortest time possible</strong>.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nAs physicians become educated on the side effects of these medications, they hopefully decrease their use of them. “As years of experience increased, practitioners were more likely to prescribe lower doses of corticosteroid in musculoskeletal injections.”<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n\r\nNewer therapies are sought to replace NSAIDs due to their significant side-effect profile. Regenerative Orthopedics is both a safe and effective treatment option for bursitis pain from various causes.\r\n<h2>Hip Bursitis Diagnosis Accuracy</h2>\r\nFor the person diagnosed with bursitis, first, consider whether the diagnosis is correct or not. There have been several studies on hip bursitis symptoms, demonstrating, as we noted earlier, that the pain is coming from tendinopathy rather than from bursitis.\r\n\r\n“Some studies have questioned the real involvement of the trochanteric bursa in greater trochanteric pain syndrome, and tendinopathy of the gluteus medius and/or minimus has been proposed as an important cause of this syndrome.”<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a> One study of 75 patients with pain and point tenderness over the greater trochanter, revealed that only 8 had fluid pooling in the trochanteric bursae per sonography.<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a>\r\n\r\nAnother study showed that only a minority of patients had bursitis, because in 700 out of 877 patients the pain <strong>was not from bursitis</strong>, but rather, it related to “some combination of pathology <strong>involving the gluteus medius and gluteus minimus tendons as well as the iliotibial band</strong>.”<a href=\"#_edn5\" name=\"_ednref5\">[v]</a>\r\n\r\nAnd one more found that only 5 of 124 patients with trochanteric pain had bursitis, plus most of those with bursitis also had associated tendinopathy.<sup>iv</sup>\r\n<h2>Bursitis Treatment with Regenerative Orthopedics</h2>\r\nRegenerative Orthopedics stimulate the body to repair painful areas. And that includes those with both true bursitis and tendinopathies. An experienced Regenerative Orthopedics doctor will be able to ascertain what structure is causing the pain.\r\n\r\nIn the hip, the soft tissue structures that attach to the greater trochanter are often involved, including the glutei muscles. Regenerative Orthopedic treatments to these soft tissue structures stimulate them to repair. Once they are fully repaired, the ‘bursitis’ pain resolves.\r\n\r\nPlatelet Rich Plasma (PRP) is one of the Regenerative Orthopedic treatment options that may be recommended for bursitis pain.\r\n<h3>A Study on PRP for Hip Bursitis</h3>\r\nA study presented at the 2014 meeting of the American Academy of Surgeons showed PRP to be very effective in the treatment of severe bursitis of the hip. The study compared one injection of PRP to one injection of cortisone. The cortisone demonstrated only short-term effectiveness. PRP provided both short and long-term pain relief from a condition that is difficult to treat successfully.”<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n\r\nRegenerative Orthopedic options like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy all accomplish repair of the affected soft tissue. And your clinician will recommend which treatment will most effectively repair and regenerate your hip, bringing relief from bursitis pain.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Sofat N. Kuttapitiya A. <a href=\"http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4089899/\" target=\"_blank\" rel=\"noopener noreferrer\">Future directions for the management of pain in osteoarthritis.</a><a href=\"http://www.futuremedicine.com/doi/pdf/10.2217/ijr.14.10\" target=\"_blank\" rel=\"noopener noreferrer\"><em>Int J Rheumatol. </em>Apr 2014; 9(2): 197–276. </a>\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Lazaro D, Alon L, Ramessar N, Cabas-Vargas J, Shwin K, Stefanov D.  Intra-articular, bursa, and tendon sheath injections: A survey of practice patterns among members of the American College of Rheumatology. <em>Journal of Rheumatology.</em>2014; 20(2): 91-93. doi: 10.1097/RHU.0000000000000080\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Quiroz C, Ruta S, Rosa J, Navarta DA, Garcia-Monaco R, Soriano ER. <a href=\"http://www.reumatologia.org.ar.preview.hybrid-sites.com/docs/2013-Ultrasound-Evaluation-Of-The-Greater-Trochanter-Pain-Syndrome-Bursitis-Or-Tendinopathy.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">Ultrasound evaluation of the Greater Trochanter Pain Syndrome: Bursitis or tendinopathy?</a>\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Connell DA, Bass C, Sykes CJ, Young D, Edwards E. Sonographic evaluation of gluteus medius and minimus tendinopathy. <a href=\"http://link.springer.com/journal/330\" target=\"_blank\" rel=\"noopener noreferrer\"><em>European Radiology</em></a>. 2003; 13(6): 1339-1347.6.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Long%20SS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Long SS</a><sup>1</sup>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Surrey%20DE%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Surrey DE</a>, <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Nazarian%20LN%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479\" target=\"_blank\" rel=\"noopener noreferrer\">Nazarian LN</a>.Sonography of greater trochanteric pain syndrome and the rarity of primary bursitis.<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/24147479\" target=\"_blank\" rel=\"noopener noreferrer\">AJR Am J Roentgenol.</a> 2013 Nov;201(5):1083-6. doi: 10.2214/AJR.12.10038.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Goel K,Riley LP. Platelet Rich Plasma (PRP)treatment more effective than cortisone for severe hip bursitis. <a href=\"http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf</a>.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Is Your Hip Pain from Bursitis?','','inherit','closed','closed','','3511-revision-v1','','','2020-08-09 00:19:39','2020-08-09 00:19:39','',3511,'https://www.drfields.com/uncategorized/3511-revision-v1/',0,'revision','',0),(3979,9,'2020-08-13 18:56:29','2020-08-13 18:56:29','Older athletes can get back to doing what they love without the need for surgery.','Don\'t Let Arthritis Stop You','Arthritis.do What You Love','inherit','open','closed','','arthritis-do-what-you-love','','','2020-08-13 19:01:54','2020-08-13 19:01:54','',3484,'https://www.drfields.com/wp-content/uploads/2019/12/arthritis.do-what-you-love.png',0,'attachment','image/png',0),(3980,9,'2020-08-13 19:32:00','2020-08-13 19:32:00','[caption id=\"attachment_3979\" align=\"alignleft\" width=\"309\"]<img class=\" wp-image-3979\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/arthritis.do-what-you-love-500x500.png\" alt=\"Keep Doing What You Love\" width=\"309\" height=\"309\" /> <em>Older Athletes Can Keep Doing What They Love</em>[/caption]\n\n<strong>     Athletes want to maintain their level of exercise and activity over the years. Understandably so! </strong>Exercise is one of the most effective ways to improve and maintain health. Keeping active physically is correlated with lower risks of cardiovascular disease, lower blood pressure, weight reduction, as well as the provision of an increased sense of well-being.  It’s no wonder that more and more people are becoming active in exercise programs and desire to maintain a level of physical activity throughout life. But is exercise associated with a higher risk of arthritis?\n\nAthletes—and especially long-time athletes—may wonder if increased joint stress leads to premature “wearing out” of the joints and the development of arthritis.\n\n&nbsp;\n\n<em>Studies seem to show that joint injury is the main factor that increases the arthritic risk in athletes. And exercise itself has more of a protective role.</em>\n\nFor example, having well-developed muscles decreases the loading on the cartilage and thus has a protective effect. <strong>Animal research also shows that exercise, such as running, is not harmful to normal joints even under high loads and over long distances</strong>. However, the same type of exercise done on an injured joint will lead to arthritic change.\n\nActivities, like bicycling and pool exercises, that maintain flexibility, strengthen the muscle and boost coordination, <strong>actually protect the cartilaginous surfaces</strong>, because they help to maintain joint function.\n<h2>Sports Injuries in the Older Athlete</h2>\nSports injuries and traumas accumulate over a person\'s life and these can damage the ligaments and cartilage. It is not uncommon for athletes to injure joints. And it is this injury or the non-healing of it that causes the degenerative process to start in the joints.\n\nThe repetitive low-grade impact from athletic events can be enough to damage the soft tissues and start the arthritic process. Some studies do note an increased incidence of arthritis in particular sports due to their vigorous nature and their propensity to lead to trauma. For example, wrestlers, boxers, baseball pitchers, cyclists, gymnasts, ballet dancers, soccer players, weight lifters, and football players have all been reported to have degenerative joint disease due to sports-related stress. This degeneration occurs due to soft tissue injuries (non-healed injuries) that were not fully addressed.\n<h2>The Older Athlete Desires to Stay Fit</h2>\nThe hope for the older athlete is to be as fit as when in the prime of their athletic careers. Often, however, this is not the case because of the degeneration that has occurred due to non-healed sports injuries. Sports injuries that lead to symptomatic arthritis later on in life are generally those that occur to the ligaments. That\'s because the ligament injury causes the joint to become unstable.\n\nTypically, bone spurs develop in the ligaments/fascia (as in plantar fasciitis). And these are generally a sign that the ligaments were no longer able to stabilize the joint. The body responds by bringing in reinforcement in the form of additional bone formation. <strong>This additional bone formation is called arthritis.</strong>\n\nAthletes want to play sports for a lifetime. Unfortunately for many, the degenerative changes that occur due to non-healed old athletic injuries, combined with a decreased ability to heal, and the natural degeneration that occurs with aging, make sporting injuries commonplace in the older athlete. A lifetime of microtraumas in ligaments and tendons over the years, along with weakening muscles and poor flexibility, can lead to a reoccurrence of these injuries.\n<h2><em>The Natural Progression of Arthritis Starts with Ligament Injury</em></h2>\nWhat causes the mechanical and molecular events in arthritis to occur? Although cartilage lacks nerve fibers, could cartilage wear and tear be the origin of arthritis? An article published in <em>Gerontology</em> conducts a literary review to prove that arthritis starts with ligament damage. After reviewing numerous research articles, the authors conclude that subchondral bone changes (the bone just beneath cartilage) precede any cartilage change associated with arthritis. These bone changes are due to a loss of tension on the bone at the ligament/bone insertion.<sup>1</sup>\n\n<em><strong>“The earliest change appears to be at the ligament-bone insertion site</strong></em><strong>.</strong>  We propose that it is a change in the ligament that leads to an alteration in the tension on the bone at the bone-insertion site which precipitates bone remodeling (injury to subchondral bone). The health and integrity of the overlying articular cartilage depend on the mechanical properties of its bony bed.  Ligament injury precedes the subchondral bone changes and these changes occur before articular cartilage degeneration.”<sup>1</sup>\n\nTaking into account the progression of arthritis, it becomes clear that ligament integrity or lack of integrity is what needs to be treated to prevent further joint destruction. In other words, ligament laxity causes bone changes that in turn cause cartilage change and damage. Ligament laxity is due to ligament damage.\n<h2><strong><em>Consider this! </em></strong></h2>\nWhen researchers attempt to stimulate arthritis or degeneration in a joint, they do so by damaging the ligaments around the joint. Wow! What happens then? Once the ligaments are damaged, the instability that is created increases the pressure in the joint where the ligaments were injured. The increased pressure then causes an acceleration of the degenerative process. Eventually, the body will stabilize the segment by overgrowing bone. This overgrowth of bone is typically read on x-rays as <a href=\"http://www.getprolo.com/prolotherapy-can-prevent-the-development-of-traumatic-arthritis/\">bone spurs</a>, spondylosis, or fused joints.\n<h2><strong>Treatments to Keep the Older Athlete Active</strong></h2>\n<em>Gerontology</em> points out the need for therapeutic strategies to be redirected at the healing of the ligament damage- the initial cause of arthritis. Fortunately, Regenerative Orthopedics does just this and can repair the degenerated joint.\n\nStandard arthritis treatments generally involve only symptom management rather than repair of the joint and include NSAIDs, cortisone shots, and even surgery to provide pain relief.\n\n<strong><em><u>The most common surgery is arthroscopy which in numerous medical studies was found to be no more effective than placebo in regard to arthritis. </u></em></strong>\n\nJoint replacements are being recommended more and more, demonstrated by the fact that hundreds of thousands are performed every year. All of these treatments are anti-healing and can cause further degeneration of arthritic joints. <strong>And once the surgery is done it cannot be undone!</strong>\n\nRegenerative Orthopedics directed at the painful sites where ligaments and tendons connect to bone, as well as at trigger points and adjacent joint spaces, produce a healing response. Along with growth factor stimulation, this induces healing and strengthening of the damaged or diseased structure. The result is the repair of the damaged ligaments and soft tissue which allows the aging athlete to continue with their desired activity and sport. Regenerative Orthopedics can reverse joint damage and alleviate arthritis pain. A number of case studies have shown the success of regenerative techniques in patients with diagnosed arthritis.<sup>2,3</sup>\n<h2>Exercise is Beneficial for Older Athlete</h2>\nIn a study of almost 17,000 people examined from 1970-1995, high levels of physical activity <strong>were not</strong> associated with symptomatic arthritis in older men and women runners over age 50. Six other reviews on the effectiveness of exercise, both of high and low intensity, on the management of arthritis in the elderly found clinical outcomes of arthritis to be improved.<sup>4 </sup>\n\nAccording to scientific studies, exercise and recreational activities appear to <strong>not</strong> cause wear-and-tear on the joints.  This can be seen in medical research over many years which supports the findings that exercise is beneficial rather than harmful. The author of a systematic review of multiple medical databases said, “The first consideration with respect to exercise is whether “wear and tear” resulting from repetitive use of articular cartilage is the primary driver for degenerative change. If this were the case, the exercise would lead to progressive arthritis. According to the evidence presented here, this does not seem to be the case.”<sup>5</sup>\n<h2>Regenerative Orthopedics for Arthritis in Older Athletes</h2>\nIn our opinion, Regenerative Orthopedics is the treatment of choice for treating joint pain in older athletes, due to ligament and other soft tissue injury. It is amazing how many athletes end up avoiding surgery once they are treated with Regenerative Orthopedics, because the treatment eliminates the pain, stabilizes the joint, and returns function.\n\nRegenerative Orthopedics can make a significant impact in the rehabilitation of the injured older athlete. Despite age, typically only four or five sessions are needed for the athletes to achieve complete healing and be back to their physical best. Injections involving the knees, shoulders, hips, ankles, elbows and more can easily be performed with, often, dramatic results and improvement.\n<ol>\n 	<li>Bailey AJ, Mansell JP. Do subchondral bone changes exacerbate or precede articular cartilage destruction in osteoarthritis of the elderly? Gerontology 1997; 43:296-304.</li>\n</ol>\n<ol start=\"2\">\n 	<li>Hauser R, Woldin B. Treating Osteoarthritic Joints Using Dextrose Prolotherapy and Direct Bone Marrow Aspirate Injection Therapy. <em>Open Arthritis J</em>. 2014; 7:1-9.</li>\n</ol>\n<ol start=\"3\">\n 	<li>Cusi M, Saunders J, Hungerford B, Wisbey-Roth T, Lucas P, Wilson S. The use of prolotherapy in the sacroiliac joint. <em>Br J Sports Med</em>. Feb 2010;44(2):100-104.</li>\n</ol>\n<ol start=\"4\">\n 	<li>Hootman J. Osteoarthritis in elderly persons: Risks of exercise and exercise as therapy. <em>Clinical Journal of Sport Medicine</em>. 2010; 20(3):223.</li>\n 	<li>Bosomworth NJ. Exercise and knee osteoarthritis: benefit or hazard? Can Fam Physician 2009; 55:871-878.</li>\n</ol>\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','How Arthritis Affects Older Athletes','','inherit','closed','closed','','3484-autosave-v1','','','2020-08-13 19:32:00','2020-08-13 19:32:00','',3484,'https://www.drfields.com/uncategorized/3484-autosave-v1/',0,'revision','',0),(3981,9,'2020-08-13 19:18:35','2020-08-13 19:18:35','[caption id=\"attachment_3979\" align=\"alignleft\" width=\"309\"]<img class=\" wp-image-3979\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/arthritis.do-what-you-love-500x500.png\" alt=\"Keep Doing What You Love\" width=\"309\" height=\"309\" /> <em>Older Athletes Can Keep Doing What They Love</em>[/caption]\r\n\r\n<strong>     Athletes want to maintain their level of exercise and activity over the years. Understandably so! </strong>Exercise is one of the most effective ways to improve and maintain health. Keeping active physically is correlated with lower risks of cardiovascular disease, lower blood pressure, weight reduction, as well as the provision of an increased sense of well-being.  It’s no wonder that more and more people are becoming active in exercise programs and desire to maintain a level of physical activity throughout life. But is exercise associated with a higher risk of arthritis?\r\n\r\nAthletes—and especially long-time athletes—may wonder if increased joint stress leads to premature “wearing out” of the joints and the development of arthritis.\r\n\r\n&nbsp;\r\n\r\n<em>Studies seem to show that joint injury is the main factor that increases the arthritic risk in athletes. And exercise itself has more of a protective role.</em>\r\n\r\nFor example, having well-developed muscles decreases the loading on the cartilage and thus has a protective effect. <strong>Animal research also shows that exercise, such as running, is not harmful to normal joints even under high loads and over long distances</strong>. However, the same type of exercise done on an injured joint will lead to arthritic change.\r\n\r\nActivities, like bicycling and pool exercises, that maintain flexibility, strengthen the muscle and boost coordination, <strong>actually protect the cartilaginous surfaces</strong>, because they help to maintain joint function.\r\n<h2>Sports Injuries in the Older Athlete</h2>\r\nSports injuries and traumas accumulate over a person\'s life and these can damage the ligaments and cartilage. It is not uncommon for athletes to injure joints. And it is this injury or the non-healing of it that causes the degenerative process to start in the joints.\r\n\r\nThe repetitive low-grade impact from athletic events can be enough to damage the soft tissues and start the arthritic process. Some studies do note an increased incidence of arthritis in particular sports due to their vigorous nature and their propensity to lead to trauma. For example, wrestlers, boxers, baseball pitchers, cyclists, gymnasts, ballet dancers, soccer players, weight lifters, and football players have all been reported to have degenerative joint disease due to sports-related stress. This degeneration occurs due to soft tissue injuries (non-healed injuries) that were not fully addressed.\r\n<h2>The Older Athlete Desires to Stay Fit</h2>\r\nThe hope for the older athlete is to be as fit as when in the prime of their athletic careers. Often, however, this is not the case because of the degeneration that has occurred due to non-healed sports injuries. Sports injuries that lead to symptomatic arthritis later on are generally those that occur to the ligaments, because the ligament injury causes the joint to become unstable. Typically, bone spurs develop in the ligaments/fascia (as in plantar fasciitis) and these are generally a sign that the ligaments were no longer able to stabilize the joint, and therefore the body brings in reinforcement in the form of additional bone formation. This additional bone formation is called arthritis.\r\n\r\nSporting activities should be performed for a lifetime. Unfortunately for many, the degenerative changes that occur due to non-healed old athletic injuries, combined with a decreased ability to heal, and the natural degeneration that occurs with aging, make sporting injuries commonplace in the older athlete. A lifetime of microtraumas in ligaments and tendons over the years, along with weakening muscles and poor flexibility, can lead to a reoccurrence of these injuries.\r\n<h2><em>The Natural Progression of Arthritis Starts with Ligament Injury</em></h2>\r\nWhat causes the mechanical and molecular events in arthritis to occur? Although cartilage lacks nerve fibers, could cartilage wear and tear be the origin of arthritis? An article published in <em>Gerontology</em> conducts a literary review to prove that arthritis starts with ligament damage. Reviewing numerous research articles, the authors conclude that subchondral bone changes (the bone just beneath cartilage) precede any cartilage change associated with arthritis. These bone changes are due to a loss of tension on bone at the ligament/bone insertion.<sup>1</sup>\r\n\r\n<em><strong>“The earliest change appears to be at the ligament-bone insertion site</strong></em><strong>.</strong>  We propose that it is a change in the ligament that leads to an alteration in the tension on the bone at the bone-insertion site which precipitates bone remodeling (injury to subchondral bone). The health and integrity of the overlying articular cartilage depends on the mechanical properties of its bony bed.  Ligament injury precedes the subchondral bone changes and these changes occur before articular cartilage degeneration.”<sup>1</sup>\r\n\r\nTaking into account the progression of arthritis, it becomes clear that the ligament integrity or lack of integrity is what needs to be treated to prevent further joint destruction. In other words, ligament laxity causes bone changes that in turn cause cartilage change and damage. Ligament laxity is due to ligament damage.\r\n<h2><strong><em>Consider this! </em></strong></h2>\r\nWhen researchers attempt to stimulate arthritis or degeneration in a joint, they do so by damaging the ligaments around the joint. The instability that is created increases the pressure in the joint where the ligaments were injured. The increased pressure then causes an acceleration of the degenerative process. Eventually the body will stabilize the segment by overgrowing bone. This overgrowth of bone is typically read on x-rays as <a href=\"http://www.getprolo.com/prolotherapy-can-prevent-the-development-of-traumatic-arthritis/\">bone spurs</a>, spondylosis, or fused joints.\r\n<h2><strong>Treatments to Keep the Older Athlete Active</strong></h2>\r\n<em>Gerontology</em> points out the need for therapeutic strategies to be redirected at the healing of the ligament damage- the initial cause of arthritis. Fortunately, Regenerative Orthopedics does just this, and can repair the degenerated joint.\r\n\r\nStandard arthritis treatments generally involve only symptom management rather than repair of the joint, and include NSAIDS, cortisone shots, and even surgery to provide pain relief.\r\n\r\n<strong><em><u>The most common surgery is arthroscopy which in numerous medical studies was found to be no more effective than placebo in regard to arthritis. </u></em></strong>\r\n\r\nJoint replacements are being recommended more and more, demonstrated by the fact that hundreds of thousands are performed every year. All of these treatments are anti-healing and can cause further degeneration of arthritic joints. <strong>And once surgery is done it cannot be un-done!</strong>\r\n\r\nRegenerative Orthopedics directed at the painful sites where ligaments and tendons connect to bone, as well as at trigger points and adjacent joint spaces, produce a healing response, along with growth factor stimulation, which induce healing and strengthening of the damaged or diseased structure. This repairs the damaged ligaments and soft tissue, and allows the aging athlete to continue with their desired activity and sport. Regenerative Orthopedics can reverse joint damage and alleviate arthritis pain. A number of case studies have shown the success of regenerative techniques in patients with diagnosed arthritis.<sup>2,3</sup>\r\n<h2>Exercise is Beneficial for Older Athlete</h2>\r\nIn a study of almost 17,000 people examined from 1970-1995, high levels of physical activity <strong>were not</strong> associated with symptomatic arthritis in older men and women runners over age 50. Six other reviews on the effectiveness of exercise, both of high and low intensity, on the management of arthritis in the elderly found clinical outcomes of arthritis to be improved.<sup>4 </sup>\r\n\r\nExercise and recreational activities appear not to cause wear-and-tear on the joints according to the scientific studies. This can be seen in medical research over many years which support the findings that exercise is beneficial rather than harmful. The author of a systematic review of multiple medical data bases said this, “The first consideration with respect to exercise is whether “wear and tear” resulting from repetitive use of articular cartilage is the primary driver for degenerative change. If this were the case, exercise would lead to progressive arthritis. According to the evidence presented here, this does not seem to be the case.”<sup>5</sup>\r\n<h2>Regenerative Orthopedics for Arthritis in Older Athletes</h2>\r\nIn our opinion, Regenerative Orthopedics is the treatment of choice for treating joint pain in older athletes, due to ligament and other soft tissue injury. It is amazing how many athletes end up avoiding surgery once they are treated with Regenerative Orthopedics, because the treatment eliminates the pain, stabilizes the joint, and returns function.\r\n\r\nRegenerative Orthopedics can make a significant impact in the rehabilitation of the injured older athlete. Despite age, typically only four or five sessions are needed for the athletes to achieve complete healing and be back to their physical best. Injections involving the knees, shoulders, hips, ankles, elbows and more can easily be performed with, often, dramatic results and improvement.\r\n<ol>\r\n 	<li>Bailey AJ, Mansell JP. Do subchondral bone changes exacerbate or precede articular cartilage destruction in osteoarthritis of the elderly? Gerontology 1997; 43:296-304.</li>\r\n</ol>\r\n<ol start=\"2\">\r\n 	<li>Hauser R, Woldin B. Treating Osteoarthritic Joints Using Dextrose Prolotherapy and Direct Bone Marrow Aspirate Injection Therapy. <em>Open Arthritis J</em>. 2014; 7:1-9.</li>\r\n</ol>\r\n<ol start=\"3\">\r\n 	<li>Cusi M, Saunders J, Hungerford B, Wisbey-Roth T, Lucas P, Wilson S. The use of prolotherapy in the sacroiliac joint. <em>Br J Sports Med</em>. Feb 2010;44(2):100-104.</li>\r\n</ol>\r\n<ol start=\"4\">\r\n 	<li>Hootman J. Osteoarthritis in elderly persons: Risks of exercise and exercise as therapy. <em>Clinical Journal of Sport Medicine</em>. 2010; 20(3):223.</li>\r\n 	<li>Bosomworth NJ. Exercise and knee osteoarthritis: benefit or hazard? Can Fam Physician 2009; 55:871-878.</li>\r\n</ol>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','How Arthritis Affects Older Athletes','','inherit','closed','closed','','3484-revision-v1','','','2020-08-13 19:18:35','2020-08-13 19:18:35','',3484,'https://www.drfields.com/uncategorized/3484-revision-v1/',0,'revision','',0),(3982,9,'2020-08-13 19:32:46','2020-08-13 19:32:46','[caption id=\"attachment_3979\" align=\"alignleft\" width=\"309\"]<img class=\" wp-image-3979\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/arthritis.do-what-you-love-500x500.png\" alt=\"Keep Doing What You Love\" width=\"309\" height=\"309\" /> <em>Older Athletes Can Keep Doing What They Love</em>[/caption]\r\n\r\n<strong>     Athletes want to maintain their level of exercise and activity over the years. Understandably so! </strong>Exercise is one of the most effective ways to improve and maintain health. Keeping active physically is correlated with lower risks of cardiovascular disease, lower blood pressure, weight reduction, as well as the provision of an increased sense of well-being.  It’s no wonder that more and more people are becoming active in exercise programs and desire to maintain a level of physical activity throughout life. But is exercise associated with a higher risk of arthritis?\r\n\r\nAthletes—and especially long-time athletes—may wonder if increased joint stress leads to premature “wearing out” of the joints and the development of arthritis.\r\n\r\n&nbsp;\r\n\r\n<em>Studies seem to show that joint injury is the main factor that increases the arthritic risk in athletes. And exercise itself has more of a protective role.</em>\r\n\r\nFor example, having well-developed muscles decreases the loading on the cartilage and thus has a protective effect. <strong>Animal research also shows that exercise, such as running, is not harmful to normal joints even under high loads and over long distances</strong>. However, the same type of exercise done on an injured joint will lead to arthritic change.\r\n\r\nActivities, like bicycling and pool exercises, that maintain flexibility, strengthen the muscle and boost coordination, <strong>actually protect the cartilaginous surfaces</strong>, because they help to maintain joint function.\r\n<h2>Sports Injuries in the Older Athlete</h2>\r\nSports injuries and traumas accumulate over a person\'s life and these can damage the ligaments and cartilage. It is not uncommon for athletes to injure joints. And it is this injury or the non-healing of it that causes the degenerative process to start in the joints.\r\n\r\nThe repetitive low-grade impact from athletic events can be enough to damage the soft tissues and start the arthritic process. Some studies do note an increased incidence of arthritis in particular sports due to their vigorous nature and their propensity to lead to trauma. For example, wrestlers, boxers, baseball pitchers, cyclists, gymnasts, ballet dancers, soccer players, weight lifters, and football players have all been reported to have degenerative joint disease due to sports-related stress. This degeneration occurs due to soft tissue injuries (non-healed injuries) that were not fully addressed.\r\n<h2>The Older Athlete Desires to Stay Fit</h2>\r\nThe hope for the older athlete is to be as fit as when in the prime of their athletic careers. Often, however, this is not the case because of the degeneration that has occurred due to non-healed sports injuries. Sports injuries that lead to symptomatic arthritis later on in life are generally those that occur to the ligaments. That\'s because the ligament injury causes the joint to become unstable.\r\n\r\nTypically, bone spurs develop in the ligaments/fascia (as in plantar fasciitis). And these are generally a sign that the ligaments were no longer able to stabilize the joint. The body responds by bringing in reinforcement in the form of additional bone formation. <strong>This additional bone formation is called arthritis.</strong>\r\n\r\nAthletes want to play sports for a lifetime. Unfortunately for many, the degenerative changes that occur due to non-healed old athletic injuries, combined with a decreased ability to heal, and the natural degeneration that occurs with aging, make sporting injuries commonplace in the older athlete. A lifetime of microtraumas in ligaments and tendons over the years, along with weakening muscles and poor flexibility, can lead to a reoccurrence of these injuries.\r\n<h2><em>The Natural Progression of Arthritis Starts with Ligament Injury</em></h2>\r\nWhat causes the mechanical and molecular events in arthritis to occur? Although cartilage lacks nerve fibers, could cartilage wear and tear be the origin of arthritis? An article published in <em>Gerontology</em> conducts a literary review to prove that arthritis starts with ligament damage. After reviewing numerous research articles, the authors conclude that subchondral bone changes (the bone just beneath cartilage) precede any cartilage change associated with arthritis. These bone changes are due to a loss of tension on the bone at the ligament/bone insertion.<sup>1</sup>\r\n\r\n<em><strong>“The earliest change appears to be at the ligament-bone insertion site</strong></em><strong>.</strong>  We propose that it is a change in the ligament that leads to an alteration in the tension on the bone at the bone-insertion site which precipitates bone remodeling (injury to subchondral bone). The health and integrity of the overlying articular cartilage depend on the mechanical properties of its bony bed.  Ligament injury precedes the subchondral bone changes and these changes occur before articular cartilage degeneration.”<sup>1</sup>\r\n\r\nTaking into account the progression of arthritis, it becomes clear that ligament integrity or lack of integrity is what needs to be treated to prevent further joint destruction. In other words, ligament laxity causes bone changes that in turn cause cartilage change and damage. Ligament laxity is due to ligament damage.\r\n<h2><strong><em>Consider this! </em></strong></h2>\r\nWhen researchers attempt to stimulate arthritis or degeneration in a joint, they do so by damaging the ligaments around the joint. Wow! What happens then? Once the ligaments are damaged, the instability that is created increases the pressure in the joint where the ligaments were injured. The increased pressure then causes an acceleration of the degenerative process. Eventually, the body will stabilize the segment by overgrowing bone. This overgrowth of bone is typically read on x-rays as <a href=\"http://www.getprolo.com/prolotherapy-can-prevent-the-development-of-traumatic-arthritis/\">bone spurs</a>, spondylosis, or fused joints.\r\n<h2><strong>Treatments to Keep the Older Athlete Active</strong></h2>\r\n<em>Gerontology</em> points out the need for therapeutic strategies to be redirected at the healing of the ligament damage- the initial cause of arthritis. Fortunately, Regenerative Orthopedics does just this and can repair the degenerated joint.\r\n\r\nStandard arthritis treatments generally involve only symptom management rather than repair of the joint and include NSAIDs, cortisone shots, and even surgery to provide pain relief.\r\n\r\n<strong><em><u>The most common surgery is arthroscopy which in numerous medical studies was found to be no more effective than placebo in regard to arthritis. </u></em></strong>\r\n\r\nJoint replacements are being recommended more and more, demonstrated by the fact that hundreds of thousands are performed every year. All of these treatments are anti-healing and can cause further degeneration of arthritic joints. <strong>And once the surgery is done it cannot be undone!</strong>\r\n\r\nRegenerative Orthopedics directed at the painful sites where ligaments and tendons connect to bone, as well as at trigger points and adjacent joint spaces, produce a healing response. Along with growth factor stimulation, this induces healing and strengthening of the damaged or diseased structure. The result is the repair of the damaged ligaments and soft tissue which allows the aging athlete to continue with their desired activity and sport. Regenerative Orthopedics can reverse joint damage and alleviate arthritis pain. A number of case studies have shown the success of regenerative techniques in patients with diagnosed arthritis.<sup>2,3</sup>\r\n<h2>Exercise is Beneficial for Older Athlete</h2>\r\nIn a study of almost 17,000 people examined from 1970-1995, high levels of physical activity <strong>were not</strong> associated with symptomatic arthritis in older men and women runners over age 50. Six other reviews on the effectiveness of exercise, both of high and low intensity, on the management of arthritis in the elderly found clinical outcomes of arthritis to be improved.<sup>4 </sup>\r\n\r\nAccording to scientific studies, exercise and recreational activities appear to <strong>not</strong> cause wear-and-tear on the joints.  This can be seen in medical research over many years which supports the findings that exercise is beneficial rather than harmful. The author of a systematic review of multiple medical databases said, “The first consideration with respect to exercise is whether “wear and tear” resulting from repetitive use of articular cartilage is the primary driver for degenerative change. If this were the case, the exercise would lead to progressive arthritis. According to the evidence presented here, this does not seem to be the case.”<sup>5</sup>\r\n<h2>Regenerative Orthopedics for Arthritis in Older Athletes</h2>\r\nIn our opinion, Regenerative Orthopedics is the treatment of choice for treating joint pain in older athletes, due to ligament and other soft tissue injuries. And it is amazing how many athletes end up avoiding surgery once they are treated with Regenerative Orthopedics, because the treatment eliminates the pain, stabilizes the joint, and returns function.\r\n\r\nRegenerative Orthopedics can make a significant impact on the rehabilitation of the injured older athlete. Despite age, typically only four or five sessions are needed for the athletes to achieve complete healing and be back to their physical best. Injections involving the knees, shoulders, hips, ankles, elbows, and other joints can easily be performed with, often, dramatic results and improvement.\r\n<ol>\r\n 	<li>Bailey AJ, Mansell JP. Do subchondral bone changes exacerbate or precede articular cartilage destruction in osteoarthritis of the elderly? Gerontology 1997; 43:296-304.</li>\r\n</ol>\r\n<ol start=\"2\">\r\n 	<li>Hauser R, Woldin B. Treating Osteoarthritic Joints Using Dextrose Prolotherapy and Direct Bone Marrow Aspirate Injection Therapy. <em>Open Arthritis J</em>. 2014; 7:1-9.</li>\r\n</ol>\r\n<ol start=\"3\">\r\n 	<li>Cusi M, Saunders J, Hungerford B, Wisbey-Roth T, Lucas P, Wilson S. The use of prolotherapy in the sacroiliac joint. <em>Br J Sports Med</em>. Feb 2010;44(2):100-104.</li>\r\n</ol>\r\n<ol start=\"4\">\r\n 	<li>Hootman J. Osteoarthritis in elderly persons: Risks of exercise and exercise as therapy. <em>Clinical Journal of Sport Medicine</em>. 2010; 20(3):223.</li>\r\n 	<li>Bosomworth NJ. Exercise and knee osteoarthritis: benefit or hazard? Can Fam Physician 2009; 55:871-878.</li>\r\n</ol>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','How Arthritis Affects Older Athletes','','inherit','closed','closed','','3484-revision-v1','','','2020-08-13 19:32:46','2020-08-13 19:32:46','',3484,'https://www.drfields.com/uncategorized/3484-revision-v1/',0,'revision','',0),(3983,9,'2020-08-13 19:41:32','2020-08-13 19:41:32','Tendonitis is the most common injury to the knee. In general, knee tendonitis refers to an inflammation, irritation or tear of a knee tendon, the thick fibrous cords that attach muscles to bone. One of the most frequent types of tendonitis of the knee is pes anserinus tendonitis, which involves the pes anserinus tendons that lie on the inside and just below the knee joint and which prevent the lower leg from twisting outward while running.\n\nMiddle-aged adult runners are most susceptible to the development of pes anserinus tendonitis, the most common form. Two other types of knee tendonitis are popliteus tendonitis and semi-membranous tendonitis.\n\nPatellar tendonitis is inflammation of the patellar tendon, which attaches the kneecap to the tibia or shinbone. The patellar tendon helps your muscles extend your knee.\n<h2>How Does Knee Tendonitis Develop?</h2>\n<h2><img class=\"alignright size-medium wp-image-3411\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/May-Athlete-Knee-v101219-500x500.jpg\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" /></h2>\nTendonitis is caused by overuse, injury or aging. The pain is usually the result of a small tear in or inflammation of the tendon. Tendonitis can also be associated with inflammatory diseases that occur throughout the body, such as rheumatoid arthritis. Popliteus tendonitis is caused by excessive inward rolling of the feet, called pronation, as well as running downhill, which tends to put excessive stress on this tendon and can cause it to tear or become inflamed. Pes anserine tendonitis, on the other hand, is characterized by inflammation of the medial knee, and often coexists with other knee disorders. Semi-membranous tendonitis is characterized by swelling over the posteromedial aspect of the knee and tenderness with resisted flexion or outward-turned strain.\n\nPatellar tendonitis is an acute condition, such as knee pain following a run. If the tendon is stressed repeatedly, tiny tears can occur in the tendon. If this process persists, the tendon degenerates causing another more chronic tendon condition known as tendinosis.\n<h2>Symptoms of Knee Tendonitis</h2>\nKnee tendonitis commonly produces pain, tenderness and stiffness near a joint and is aggravated by movement. The inflamed tendons in the knee are usually painful when moved or touched, and the tendon sheaths may be visibly swollen from the accumulation of fluid and inflammation. Moving the joints near the tendon even slightly may also cause severe pain. The pain may be worse when ascending or descending stairs, when getting up from a seated position, and at night.\n<h2>What Is the Typical Treatment for Tendonitis?</h2>\nThe typical treatment regime for tendonitis, such as knee tendonitis, rotator cuff tendonitis or patellar tendonitis, includes rest, ice, non-steroidal anti-inflammatory drugs (NSAIDs), and cortisone injections. Unfortunately, this approach is not able to strengthen the weakened tendon and, thus, does not alleviate the persistent pain that people with this condition experience.\n\nWhile ice, anti-inflammatory drugs and cortisone injections may produce short-term pain benefit, they actually inhibit the healing process, because they boost the degeneration of soft tissue and therefore accelerate cartilage degeneration. If the individual with knee tendonitis receives cortisone injections into the tendon, or if they take anti-inflammatories for a very long time, the tendonitis will become tendinosis. This means the tendon becomes degenerated.\n\nOther modern medical treatment options include cryotherapy and massage. But again, although they may provide pain relief, they do not address the root of the problem – weakened and/or injured tendons and ligaments. When the patient tries these treatment modalities and the pain persists, patients who experience tendonitis may be referred to a surgeon. Unfortunately, surgery has consequences and side effects and may make the problem worse.\n<h2>Using Regenerative Orthopedics to Treat Tendonitis</h2>\n<img class=\"alignright size-medium wp-image-3410\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Josh-knee-v101219-500x500.png\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" />In treating tendonitis, we recommend stimulating tendon repair and strengthening any weakened or lax ligaments with therapy that includes movement, exercise, and regenerative treatment. This approach will encourage the damaged tissues to heal as quickly as possible.\n\nKeep in mind, when someone with tendonitis continues to work out while using pain medications or after receiving cortisone injections, they may block the pain, but the tendon will continue to degenerate. You may not feel it at the time, since the pain is being blocked, but more damage is being done to the tendon. It is better to stop the particular athletics that caused the tendonitis.\n\nYes, movement and exercise are important, but it is necessary to proceed with an exercise that does not put a lot of tension on the tendon. Cycling and swimming are examples of this type of exercise, as long as they do not cause excessive pain. These types of exercise are recommended because movement encourages healing of the tendon.\n\nRegenerative Orthopedics is used in cases of knee tendonitis, when the tendon does not continue to improve every week or if a tendonitis injury requires extra-quick healing, such as is the case with many athletes. When degeneration of the tendon has transpired, or tendinosis is present, the condition benefits tremendously from these treatments.\n\nWhen the tendon cannot heal on its own, an underlying ligament problem and joint instability may be occurring, allowing for too much movement of the knee joint. This movement irritates the tendon because the tendon is unable to contract against a stable knee. Regenerative Orthopedics strengthens both the weakened tendons and ligaments.\n\nComprehensive treatment to the knee involves multiple injections of <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP</a> or a dextrose-based solution or both directed at the affected tendons, ligaments, and other affected structures of the knee. This triggers the immune system to initiate repair of the injured tendons and ligaments. Blood supply dramatically increases in the injured area.\n\nThe body is alerted that healing needs to take place and reparative cells are sent to the treated area of the knee in need of healing. The body also lays down new collagen in the treated areas, thereby strengthening the weakened structures. Once the tendons and ligaments are strengthened, the joint stabilizes and the tendonitis or tendinosis conditions resolve.\n<h2>Think Regenerative Orthopedics May Be for You? Call us!</h2>\nTo schedule an appointment, call us on the same line <a href=\"https://www.drfields.com/contact/\">310-453-1234</a> and tell us more about your case. OrthoRegen<sup>®</sup> is a full-time Regenerative Orthopedics medical office with extensive experience in regenerative therapies such as the Gold Standard in Stem Cell therapy, Platelet Rich Plasma, and Prolotherapy regenerative injection solutions. Peter A. Fields, MD, DC is both an MD and a chiropractor.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Knee Tendonitis Treatment','','inherit','closed','closed','','3409-autosave-v1','','','2020-08-13 19:41:32','2020-08-13 19:41:32','',3409,'https://www.drfields.com/uncategorized/3409-autosave-v1/',0,'revision','',0),(3984,9,'2020-08-13 19:42:13','2020-08-13 19:42:13','Tendonitis is the most common injury to the knee. In general, knee tendonitis refers to inflammation, irritation, or tear of a knee tendon, the thick fibrous cords that attach muscles to bone. One of the most frequent types of tendonitis of the knee is pes anserinus tendonitis, which involves the pes anserinus tendons that lie on the inside and just below the knee joint and which prevent the lower leg from twisting outward while running.\r\n\r\nMiddle-aged adult runners are most susceptible to the development of pes anserinus tendonitis, the most common form. Two other types of knee tendonitis are popliteus tendonitis and semi-membranous tendonitis.\r\n\r\nPatellar tendonitis is inflammation of the patellar tendon, which attaches the kneecap to the tibia or shinbone. The patellar tendon helps your muscles extend your knee.\r\n<h2>How Does Knee Tendonitis Develop?</h2>\r\n<h2><img class=\"alignright size-medium wp-image-3411\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/May-Athlete-Knee-v101219-500x500.jpg\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" /></h2>\r\nTendonitis is caused by overuse, injury, or aging. The pain is usually the result of a small tear in or inflammation of the tendon. Tendonitis can also be associated with inflammatory diseases that occur throughout the body, such as rheumatoid arthritis. Popliteus tendonitis is caused by excessive inward rolling of the feet, called pronation, as well as running downhill, which tends to put excessive stress on this tendon and can cause it to tear or become inflamed. Pes anserine tendonitis, on the other hand, is characterized by inflammation of the medial knee and often coexists with other knee disorders. Semi-membranous tendonitis is characterized by swelling over the posteromedial aspect of the knee and tenderness with resisted flexion or outward-turned strain.\r\n\r\nPatellar tendonitis is an acute condition, such as knee pain following a run. If the tendon is stressed repeatedly, tiny tears can occur in the tendon. If this process persists, the tendon degenerates causing another more chronic tendon condition known as tendinosis.\r\n<h2>Symptoms of Knee Tendonitis</h2>\r\nKnee tendonitis commonly produces pain, tenderness, and stiffness near a joint and is aggravated by movement. The inflamed tendons in the knee are usually painful when moved or touched, and the tendon sheaths may be visibly swollen from the accumulation of fluid and inflammation. Moving the joints near the tendon even slightly may also cause severe pain. The pain may be worse when ascending or descending stairs, when getting up from a seated position, and at night.\r\n<h2>What Is the Typical Treatment for Tendonitis?</h2>\r\nThe typical treatment regime for tendonitis, such as knee tendonitis, rotator cuff tendonitis, or patellar tendonitis, includes rest, ice, non-steroidal anti-inflammatory drugs (NSAIDs), and cortisone injections. Unfortunately, this approach is not able to strengthen the weakened tendon and, thus, does not alleviate the persistent pain that people with this condition experience.\r\n\r\nWhile ice, anti-inflammatory drugs, and cortisone injections may produce short-term pain benefit, they actually inhibit the healing process, because they boost the degeneration of soft tissue and therefore accelerate cartilage degeneration. If the individual with knee tendonitis receives cortisone injections into the tendon, or if they take anti-inflammatories for a very long time, the tendonitis will become tendinosis. This means the tendon becomes degenerated.\r\n\r\nOther modern medical treatment options include cryotherapy and massage. But again, although they may provide pain relief, they do not address the root of the problem – weakened and/or injured tendons and ligaments. When the patient tries these treatment modalities and the pain persists, patients who experience tendonitis may be referred to a surgeon. Unfortunately, surgery has consequences and side effects and may make the problem worse.\r\n<h2>Using Regenerative Orthopedics to Treat Tendonitis</h2>\r\n<img class=\"alignright size-medium wp-image-3410\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Josh-knee-v101219-500x500.png\" alt=\"Knee Tendonitis Treatment\" width=\"500\" height=\"500\" />In treating tendonitis, we recommend stimulating tendon repair and strengthening any weakened or lax ligaments with therapy that includes movement, exercise, and regenerative treatment. This approach will encourage the damaged tissues to heal as quickly as possible.\r\n\r\nKeep in mind, when someone with tendonitis continues to work out while using pain medications or after receiving cortisone injections, they may block the pain, but the tendon will continue to degenerate. You may not feel it at the time, since the pain is being blocked, but more damage is being done to the tendon. It is better to stop the particular athletics that caused the tendonitis.\r\n\r\nYes, movement and exercise are important, but it is necessary to proceed with an exercise that does not put a lot of tension on the tendon. Cycling and swimming are examples of this type of exercise, as long as they do not cause excessive pain. These types of exercise are recommended because movement encourages healing of the tendon.\r\n\r\nRegenerative Orthopedics is used in cases of knee tendonitis, when the tendon does not continue to improve every week or if a tendonitis injury requires extra-quick healing, such as is the case with many athletes. When degeneration of the tendon has transpired, or tendinosis is present, the condition benefits tremendously from these treatments.\r\n\r\nWhen the tendon cannot heal on its own, an underlying ligament problem and joint instability may be occurring, allowing for too much movement of the knee joint. This movement irritates the tendon because the tendon is unable to contract against a stable knee. Regenerative Orthopedics strengthens both the weakened tendons and ligaments.\r\n\r\nComprehensive treatment to the knee involves multiple injections of <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP</a> or a dextrose-based solution or both directed at the affected tendons, ligaments, and other affected structures of the knee. This triggers the immune system to initiate repair of the injured tendons and ligaments. Blood supply dramatically increases in the injured area.\r\n\r\nThe body is alerted that healing needs to take place and reparative cells are sent to the treated area of the knee in need of healing. The body also lays down new collagen in the treated areas, thereby strengthening the weakened structures. Once the tendons and ligaments are strengthened, the joint stabilizes and the tendonitis or tendinosis conditions resolve.\r\n<h2>Think Regenerative Orthopedics May Be for You? Call us!</h2>\r\nTo schedule an appointment, call us on the same line <a href=\"https://www.drfields.com/contact/\">310-453-1234</a> and tell us more about your case. OrthoRegen<sup>®</sup> is a full-time Regenerative Orthopedics medical office with extensive experience in regenerative therapies such as the Gold Standard in Stem Cell therapy, Platelet Rich Plasma, and Prolotherapy regenerative injection solutions. Peter A. Fields, MD, DC is both an MD and a chiropractor.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Knee Tendonitis Treatment','','inherit','closed','closed','','3409-revision-v1','','','2020-08-13 19:42:13','2020-08-13 19:42:13','',3409,'https://www.drfields.com/uncategorized/3409-revision-v1/',0,'revision','',0),(3985,9,'2020-08-13 20:05:41','2020-08-13 20:05:41','<em>Although many treatments may offer temporary pain relief for arthritis, it is important to find a treatment that does more than chase the symptoms and one that actually repairs the injured soft tissue in order to restore normal motion to the knee joint. In this article in The Townsend Letter, Peter A. Fields, MD, DC discusses Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy which are effective therapies for repair and restoration of motion. These treatments stimulate healing of ligaments, tendons, and restore the normal functioning of the joint, thus preventing the arthritic progression.</em>\n\n[caption id=\"attachment_3462\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-3462 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-01.jpg\" alt=\"Page 01\" width=\"955\" height=\"1249\" /> Page 01[/caption]\n\n[caption id=\"attachment_3465\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3465\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-02.jpg\" alt=\"Page 02\" width=\"955\" height=\"1249\" /> Page 02[/caption]\n\n[caption id=\"attachment_3466\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3466\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-3.jpg\" alt=\"Page 3\" width=\"955\" height=\"1249\" /> Page 03[/caption]\n\n[caption id=\"attachment_3467\" align=\"aligncenter\" width=\"955\"]<a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"wp-image-3467 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-04.jpg\" alt=\"Page 04\" width=\"955\" height=\"1249\" /></a> Page 04[/caption]\n\nPeter A. Fields, MD, DC enjoys writing articles in The Townsend Letter and right here on the OrthoRegen <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">website</a> to keep you informed on Regenerative Orthopedics and current health issues. Click <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/\">here</a> to read more articles about Regenerative Orthopedics for arthritis.\n\nIf you would like us to write about any particular topic, please <a href=\"https://www.drfields.com/contact/\">contact us</a> and let us know of any topic you would want to include.\n\nAre you a good candidate for Regenerative Orthopedics? Feel free to call us at 310-453-1234.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Townsend Letter: Arthritis','','inherit','closed','closed','','3416-autosave-v1','','','2020-08-13 20:05:41','2020-08-13 20:05:41','',3416,'https://www.drfields.com/uncategorized/3416-autosave-v1/',0,'revision','',0),(3986,9,'2020-08-13 19:52:45','2020-08-13 19:52:45','[caption id=\"attachment_3462\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-3462 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-01.jpg\" alt=\"Page 01\" width=\"955\" height=\"1249\" /> Page 01[/caption]\r\n\r\n[caption id=\"attachment_3465\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3465\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-02.jpg\" alt=\"Page 02\" width=\"955\" height=\"1249\" /> Page 02[/caption]\r\n\r\n[caption id=\"attachment_3466\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3466\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-3.jpg\" alt=\"Page 3\" width=\"955\" height=\"1249\" /> Page 03[/caption]\r\n\r\n[caption id=\"attachment_3467\" align=\"aligncenter\" width=\"955\"]<a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"wp-image-3467 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-04.jpg\" alt=\"Page 04\" width=\"955\" height=\"1249\" /></a> Page 04[/caption]\r\n\r\nPeter A. Fields, MD, DC enjoys writing articles in The Townsend Letter and right here on the OrthoRegen website to keep you informed on Regenerative Orthopedics and current health issues. Please <a href=\"https://www.drfields.com/contact/\">contact us</a> and let us know of any topic you would want to include. Feel free to call us at 310-453-1234.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Arthritis: Townsend Letter','','inherit','closed','closed','','3416-revision-v1','','','2020-08-13 19:52:45','2020-08-13 19:52:45','',3416,'https://www.drfields.com/uncategorized/3416-revision-v1/',0,'revision','',0),(3987,9,'2020-08-13 19:57:10','2020-08-13 19:57:10','Although many treatments may offer temporary pain relief for arthritis, it is important to find a treatment that does more than chase the symptoms and one that actually repairs the injured soft tissue in order to restore normal motion to the knee joint. In this article in The Townsend Letter, Peter A. Fields, MD, DC discusses Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy which are effective therapies for repair and restoration of motion. These treatments stimulate healing of ligaments, tendons, and restore the normal functioning of the joint, thus preventing the arthritic progression.\r\n\r\n[caption id=\"attachment_3462\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-3462 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-01.jpg\" alt=\"Page 01\" width=\"955\" height=\"1249\" /> Page 01[/caption]\r\n\r\n[caption id=\"attachment_3465\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3465\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-02.jpg\" alt=\"Page 02\" width=\"955\" height=\"1249\" /> Page 02[/caption]\r\n\r\n[caption id=\"attachment_3466\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3466\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-3.jpg\" alt=\"Page 3\" width=\"955\" height=\"1249\" /> Page 03[/caption]\r\n\r\n[caption id=\"attachment_3467\" align=\"aligncenter\" width=\"955\"]<a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"wp-image-3467 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-04.jpg\" alt=\"Page 04\" width=\"955\" height=\"1249\" /></a> Page 04[/caption]\r\n\r\nPeter A. Fields, MD, DC enjoys writing articles in The Townsend Letter and right here on the OrthoRegen website to keep you informed on Regenerative Orthopedics and current health issues. Please <a href=\"https://www.drfields.com/contact/\">contact us</a> and let us know of any topic you would want to include. Feel free to call us at 310-453-1234.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Arthritis: Townsend Letter','','inherit','closed','closed','','3416-revision-v1','','','2020-08-13 19:57:10','2020-08-13 19:57:10','',3416,'https://www.drfields.com/uncategorized/3416-revision-v1/',0,'revision','',0),(3988,9,'2020-08-13 19:58:13','2020-08-13 19:58:13','<em>Although many treatments may offer temporary pain relief for arthritis, it is important to find a treatment that does more than chase the symptoms and one that actually repairs the injured soft tissue in order to restore normal motion to the knee joint. In this article in The Townsend Letter, Peter A. Fields, MD, DC discusses Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy which are effective therapies for repair and restoration of motion. These treatments stimulate healing of ligaments, tendons, and restore the normal functioning of the joint, thus preventing the arthritic progression.</em>\r\n\r\n[caption id=\"attachment_3462\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-3462 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-01.jpg\" alt=\"Page 01\" width=\"955\" height=\"1249\" /> Page 01[/caption]\r\n\r\n[caption id=\"attachment_3465\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3465\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-02.jpg\" alt=\"Page 02\" width=\"955\" height=\"1249\" /> Page 02[/caption]\r\n\r\n[caption id=\"attachment_3466\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3466\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-3.jpg\" alt=\"Page 3\" width=\"955\" height=\"1249\" /> Page 03[/caption]\r\n\r\n[caption id=\"attachment_3467\" align=\"aligncenter\" width=\"955\"]<a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"wp-image-3467 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-04.jpg\" alt=\"Page 04\" width=\"955\" height=\"1249\" /></a> Page 04[/caption]\r\n\r\nPeter A. Fields, MD, DC enjoys writing articles in The Townsend Letter and right here on the OrthoRegen website to keep you informed on Regenerative Orthopedics and current health issues. Please <a href=\"https://www.drfields.com/contact/\">contact us</a> and let us know of any topic you would want to include. Feel free to call us at 310-453-1234.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Townsend Letter: Arthritis','','inherit','closed','closed','','3416-revision-v1','','','2020-08-13 19:58:13','2020-08-13 19:58:13','',3416,'https://www.drfields.com/uncategorized/3416-revision-v1/',0,'revision','',0),(3989,9,'2020-08-13 20:00:37','2020-08-13 20:00:37','<em>Although many treatments may offer temporary pain relief for arthritis, it is important to find a treatment that does more than chase the symptoms and one that actually repairs the injured soft tissue in order to restore normal motion to the knee joint. In this article in The Townsend Letter, Peter A. Fields, MD, DC discusses Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy which are effective therapies for repair and restoration of motion. These treatments stimulate healing of ligaments, tendons, and restore the normal functioning of the joint, thus preventing the arthritic progression.</em>\r\n\r\n[caption id=\"attachment_3462\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-3462 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-01.jpg\" alt=\"Page 01\" width=\"955\" height=\"1249\" /> Page 01[/caption]\r\n\r\n[caption id=\"attachment_3465\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3465\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-02.jpg\" alt=\"Page 02\" width=\"955\" height=\"1249\" /> Page 02[/caption]\r\n\r\n[caption id=\"attachment_3466\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3466\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-3.jpg\" alt=\"Page 3\" width=\"955\" height=\"1249\" /> Page 03[/caption]\r\n\r\n[caption id=\"attachment_3467\" align=\"aligncenter\" width=\"955\"]<a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"wp-image-3467 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-04.jpg\" alt=\"Page 04\" width=\"955\" height=\"1249\" /></a> Page 04[/caption]\r\n\r\nPeter A. Fields, MD, DC enjoys writing articles in The Townsend Letter and right here on the OrthoRegen <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">website</a> to keep you informed on Regenerative Orthopedics and current health issues. Please <a href=\"https://www.drfields.com/contact/\">contact us</a> and let us know of any topic you would want to include. Feel free to call us at 310-453-1234.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Townsend Letter: Arthritis','','inherit','closed','closed','','3416-revision-v1','','','2020-08-13 20:00:37','2020-08-13 20:00:37','',3416,'https://www.drfields.com/uncategorized/3416-revision-v1/',0,'revision','',0),(3990,9,'2020-08-13 20:06:26','2020-08-13 20:06:26','<em>Although many treatments may offer temporary pain relief for arthritis, it is important to find a treatment that does more than chase the symptoms and one that actually repairs the injured soft tissue in order to restore normal motion to the knee joint. In this article in The Townsend Letter, Peter A. Fields, MD, DC discusses Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy which are effective therapies for repair and restoration of motion. These treatments stimulate healing of ligaments, tendons, and restore the normal functioning of the joint, thus preventing the arthritic progression.</em>\r\n\r\n[caption id=\"attachment_3462\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-3462 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-01.jpg\" alt=\"Page 01\" width=\"955\" height=\"1249\" /> Page 01[/caption]\r\n\r\n[caption id=\"attachment_3465\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3465\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/Page-02.jpg\" alt=\"Page 02\" width=\"955\" height=\"1249\" /> Page 02[/caption]\r\n\r\n[caption id=\"attachment_3466\" align=\"aligncenter\" width=\"955\"]<img class=\"size-full wp-image-3466\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-3.jpg\" alt=\"Page 3\" width=\"955\" height=\"1249\" /> Page 03[/caption]\r\n\r\n[caption id=\"attachment_3467\" align=\"aligncenter\" width=\"955\"]<a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"wp-image-3467 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/12/page-04.jpg\" alt=\"Page 04\" width=\"955\" height=\"1249\" /></a> Page 04[/caption]\r\n\r\nPeter A. Fields, MD, DC enjoys writing articles in The Townsend Letter and right here on the OrthoRegen <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">website</a> to keep you informed on Regenerative Orthopedics and current health issues. Click <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/\">here</a> to read more articles about Regenerative Orthopedics for arthritis.\r\n\r\nIf you would like us to write about any particular topic, please <a href=\"https://www.drfields.com/contact/\">contact us</a> and let us know of any topic you would want to include.\r\n\r\nAre you a good candidate for Regenerative Orthopedics? Feel free to call us at 310-453-1234.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>\r\n\r\n<em>Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.</em>\r\n<h4><em>Director of OrthoRegen<sup>®</sup></em></h4>\r\n<em>Peter A. Fields, MD, DC is the Director of <a href=\"https://orthoregen.com/\" target=\"_blank\" rel=\"noopener noreferrer\">OrthoRegen<sup>®</sup></a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. Athletes and non-athletes alike come from around the US and the world to receive treatment, because Dr. Fields helps them to avoid unnecessary joint surgeries. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\" rel=\"noopener noreferrer\">Cellular Regeneration</a> (aka Cellular Prolotherapy) treatments to help people avoid joint replacement.</em>','Townsend Letter: Arthritis','','inherit','closed','closed','','3416-revision-v1','','','2020-08-13 20:06:26','2020-08-13 20:06:26','',3416,'https://www.drfields.com/uncategorized/3416-revision-v1/',0,'revision','',0),(3991,9,'2020-08-13 21:13:40','2020-08-13 21:13:40','<img class=\"alignright size-medium wp-image-3397\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Wilbur-back-500x500.png\" alt=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" width=\"500\" height=\"500\" />Degenerative disc disease is a common disorder of the spine that can result in persistent low back, thoracic, and neck pain. While it is widely diagnosed, degenerative disc disease is also widely misunderstood by the medical community and lay public alike.\r\n\r\n<em><strong> Perhaps the greatest misconception is the idea that the degenerated discs themselves are the primary cause of pain</strong></em> and therefore require a treatment geared towards replacement or repair of the discs, and missing an important underlying source of instability and pain.\r\n<h2>Spinal Discs</h2>\r\nSpinal discs work as a type of shock absorber between the vertebrae, or bones, of your <a href=\"https://www.webmd.com/back-pain/discs-of-the-spine\">spine</a>. They help your back to stay flexible and allow you to bend and twist. With age, spinal discs can show signs of wear and tear. They begin to break down and may not work as efficiently. Nearly everyone\'s spinal discs will break down with age, but not everyone will feel pain.\r\n\r\nA person with a degenerated, bulging, or herniated disc noted on an MRI, must realize that this may be a coincidental finding and unrelated to the actual pain he or she is experiencing. How can that be? In Degenerative Disc Disease,  the disc is losing water and flattening. It is normal for this to occur with age. Interestingly, it is also normal for a disc to bulge while bending. So what is causing the pain then? It is very likely that the pain is being caused by injured ligaments, which are full of nerve tissue, and will send pain signals when tweaked.\r\n<h2>What Causes Degenerative Disc Disease in the First Place?</h2>\r\nThe disc begins to degenerate as soon as the ligaments of the spine weaken. This happens after some sort of injury to the ligaments, including wear and tear. The weak and loose ligaments allow for an unstable spine and one where the vertebrae are able to move too much, resulting in more injury and pain.\r\n\r\nIn an effort to stabilize the vertebrae, the body tenses the muscles, in an attempt to correct the problem. A person will experience this as muscle spasms. The excessive movement puts extra stress on all of the structures of the spine, including the discs. The discs will respond to the added stress by flattening.\r\n\r\nA downward cycle of degeneration is created because the ligaments will now have to work even harder, since the discs can’t do their job correctly, which then weakens the ligaments further, and then adds to the response of the discs to flatten. The sufferer will of course experience pain as a result of the degeneration. The added stress and pressure may cause the disc to herniate. When a disc herniates, it means the soft, gelatinous solution inside is no longer held in place by the tough outer ring of tissue and the disc is now in a weakened state.\r\n<h2>Regenerative Orthopedics Treats the Instability and Resolves the Pain</h2>\r\n<img class=\"alignright  wp-image-3398\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Gayle-Low-back-cycle-1-500x500.png\" alt=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" width=\"450\" height=\"450\" />Regenerative Orthopedics is an effective treatment to stop the cycle of \"Degenerative Disc Disease.\" Since the underlying problem that starts the discs to degenerate is the instability of the spine due to ligament weakness or injury, it would make sense then to strengthen and repair the ligaments. What treatment does that? Right…Regenerative Orthopedics!\r\n\r\nIn the 1950s, a doctor named George S. Hackett studied the pathology of chronic low back pain and disc degeneration. He published research linking these conditions to the instability of the vertebral column. He was one of the first doctors to ever point to ligament laxity or weakness as a reason that discs become degenerated.\r\n<h3>More About The Discs</h3>\r\nThe soft, compressible spinal discs lie between two vertebrae and provide cushion and shock absorption. The facet joint is where the top vertebrae contact the vertebrae below. This joint is surrounded by a capsule made up of ligaments. Together these segments are known as facet joints. Every time one bends forward, backward, or twists, pressure is put on these facets. They are under a lot of strain all day long!\r\n\r\nThe vertebrae themselves are held together through a mesh of ligaments that hold the spine in alignment and take the pressure off the facet joints. Dr. Hackett recognized that if the ligaments are loose or damaged, they allow excessive movement of the vertebrae and put extra gravitational pressure on the discs. We’ve noted earlier that when this happens, discs can protrude or herniate. Addressing the underlying ligament laxity is key to treating disc degeneration as well as preventing further damage and degeneration.\r\n\r\nBy applying Regenerative Orthopedics, such as Stem Cell Therapy, PRP, Prolotherapy, to the weakened ligaments, the ligaments become strengthened, thereby halting the progressive degeneration of the intervertebral discs. A patient with persistent back pain can be treated with these regenerative injections into the weakened vertebrae of the low back, mid-back, and neck.  Regenerative Orthopedics is very effective at alleviating pain from degenerative disc disease.\r\n<h2>Spinal Fusion Misses the Mark In The Treatment of Degenerative Disc Disease</h2>\r\nUnfortunately, the focus of degenerative disc treatment today is often centered on treating the discs, and this treatment is oftentimes surgery. Surgeries can include a discectomy, which removes part of the disc, or may mean removal of the entire disc and replacing it with a cadaver or artificial disc. In some cases, spinal fusion is recommended. During spinal fusion, the damaged discs are removed and replaced, and the affected levels of the vertebrae are then permanently fused together.\r\n\r\nWhile these methods increase joint space by inserting replacement discs, they do not address the problem of vertebral instability due to weakened ligaments, and therefore do nothing to actually take pressure off of those discs or preventing the facet joints from further breakdown.\r\n\r\nIt is important to understand that the facets are more commonly the cause of pain. These are where the vertebra on the top connects to the vertebra on the bottom. The vertebrae are surrounded by a thick capsule of ligaments that becomes weakened, torn, or damaged over time, resulting in a lot of pain. Spinal fusion actually encourages increased degeneration at the sites above and below the fusion, frequently resulting in more pain.\r\n<h2>Overreliance on Imaging Procedures</h2>\r\nAnother factor hindering our understanding of vertebral instability and ligament weakness is the dependence on imaging to diagnose and treat musculoskeletal injuries. Of course, MRI imaging is very helpful in the medical fields. However, many rely on imaging instead of using physical examination and good history taking for diagnosing. And as we said earlier, MRI’s can misdiagnose disc herniations.\r\n\r\nIt is important to rule out ligament injury and instability and treat it accordingly especially since a large majority of disc degeneration is due to vertebral instability and ligament weakness. With proper treatment, through therapies like Regenerative Orthopedics, physicians are able to accurately treat the source of their patients’ pain.\r\n\r\nRather than undergoing unnecessary surgeries that do not address the root cause of the symptoms, choose instead to seek out a less invasive treatment capable of strengthening weakened ligaments and tendons and thereby eliminating pressure on the vertebral discs.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Degenerative Disc Disease Treatment & Diagnosis','','inherit','closed','closed','','3306-revision-v1','','','2020-08-13 21:13:40','2020-08-13 21:13:40','',3306,'https://www.drfields.com/uncategorized/3306-revision-v1/',0,'revision','',0),(3992,9,'2020-08-13 21:14:56','2020-08-13 21:14:56','<img class=\"alignright size-medium wp-image-3397\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Wilbur-back-500x500.png\" alt=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" width=\"500\" height=\"500\" />Degenerative disc disease is a common disorder of the spine that can result in persistent low back, thoracic, and neck pain. While it is widely diagnosed, degenerative disc disease is also widely misunderstood by the medical community and lay public alike.\r\n\r\n<em><strong> Perhaps the greatest misconception is the idea that the degenerated discs themselves are the primary cause of pain</strong></em> and therefore require a treatment geared towards replacement or repair of the discs, and missing an important underlying source of instability and pain.\r\n<h2>Spinal Discs</h2>\r\nSpinal discs work as a type of shock absorber between the vertebrae, or bones, of your <a href=\"https://www.webmd.com/back-pain/discs-of-the-spine\">spine</a>. They help your back to stay flexible and allow you to bend and twist. With age, spinal discs can show signs of wear and tear. They begin to break down and may not work as efficiently. Nearly everyone\'s spinal discs will break down with age, but not everyone will feel pain.\r\n\r\nA person with a degenerated, bulging, or herniated disc noted on an MRI, must realize that this may be a coincidental finding and unrelated to the actual pain he or she is experiencing. How can that be? In Degenerative Disc Disease,  the disc is losing water and flattening. It is normal for this to occur with age. Interestingly, it is also normal for a disc to bulge while bending. So what is causing the pain then? It is very likely that the pain is being caused by injured ligaments, which are full of nerve tissue, and will send pain signals when tweaked.\r\n<h2>What Causes Degenerative Disc Disease in the First Place?</h2>\r\nThe disc begins to degenerate as soon as the ligaments of the spine weaken. This happens after some sort of injury to the ligaments, including wear and tear. The weak and loose ligaments allow for an unstable spine and one where the vertebrae are able to move too much, resulting in more injury and pain.\r\n\r\nIn an effort to stabilize the vertebrae, the body tenses the muscles, in an attempt to correct the problem. A person will experience this as muscle spasms. The excessive movement puts extra stress on all of the structures of the spine, including the discs. The discs will respond to the added stress by flattening.\r\n\r\nA downward cycle of degeneration is created because the ligaments will now have to work even harder, since the discs can’t do their job correctly, which then weakens the ligaments further, and then adds to the response of the discs to flatten. The sufferer will of course experience pain as a result of the degeneration. The added stress and pressure may cause the disc to herniate. When a disc herniates, it means the soft, gelatinous solution inside is no longer held in place by the tough outer ring of tissue and the disc is now in a weakened state.\r\n<h2>Regenerative Orthopedics Treats the Instability and Resolves the Pain</h2>\r\n<img class=\"alignright wp-image-3398\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Gayle-Low-back-cycle-1-500x500.png\" alt=\"Degenerative Disc Disease: Proper Diagnosis and Treatment\" width=\"450\" height=\"450\" />Regenerative Orthopedics is an effective treatment to stop the cycle of \"Degenerative Disc Disease.\" Since the underlying problem that starts the discs to degenerate is the instability of the spine due to ligament weakness or injury, it would make sense then to strengthen and repair the ligaments. What treatment does that? Right…Regenerative Orthopedics!\r\n\r\nIn the 1950s, a doctor named George S. Hackett studied the pathology of chronic low back pain and disc degeneration. He published research linking these conditions to the instability of the vertebral column. He was one of the first doctors to ever point to ligament laxity or weakness as a reason that discs become degenerated.\r\n<h3>More About The Discs</h3>\r\nThe soft, compressible spinal discs lie between two vertebrae and provide cushion and shock absorption. The facet joint is where the top vertebrae contact the vertebrae below. This joint is surrounded by a capsule made up of ligaments. Together these segments are known as facet joints. Every time one bends forward, backward, or twists, pressure is put on these facets. They are under a lot of strain all day long!\r\n\r\nThe vertebrae themselves are held together through a mesh of ligaments that hold the spine in alignment and take the pressure off the facet joints. Dr. Hackett recognized that if the ligaments are loose or damaged, they allow excessive movement of the vertebrae and put extra gravitational pressure on the discs. We’ve noted earlier that when this happens, discs can protrude or herniate. Addressing the underlying ligament laxity is key to treating disc degeneration as well as preventing further damage and degeneration.\r\n\r\nBy applying Regenerative Orthopedics, such as Stem Cell Therapy, PRP, Prolotherapy, to the weakened ligaments, the ligaments become strengthened, thereby halting the progressive degeneration of the intervertebral discs. A patient with persistent back pain can be treated with these regenerative injections into the weakened vertebrae of the low back, mid-back, and neck.  Regenerative Orthopedics is very effective at alleviating pain from degenerative disc disease.\r\n<h2>Spinal Fusion Misses the Mark In The Treatment of Degenerative Disc Disease</h2>\r\nUnfortunately, the focus of degenerative disc treatment today is often centered on treating the discs, and this treatment is oftentimes surgery. Surgeries can include a discectomy, which removes part of the disc, or may mean removal of the entire disc and replacing it with a cadaver or artificial disc. In some cases, spinal fusion is recommended. During spinal fusion, the damaged discs are removed and replaced, and the affected levels of the vertebrae are then permanently fused together.\r\n\r\nWhile these methods increase joint space by inserting replacement discs, they do not address the problem of vertebral instability due to weakened ligaments, and therefore do nothing to actually take pressure off of those discs or preventing the facet joints from further breakdown.\r\n\r\nIt is important to understand that the facets are more commonly the cause of pain. These are where the vertebra on the top connects to the vertebra on the bottom. The vertebrae are surrounded by a thick capsule of ligaments that becomes weakened, torn, or damaged over time, resulting in a lot of pain. Spinal fusion actually encourages increased degeneration at the sites above and below the fusion, frequently resulting in more pain.\r\n<h2>Overreliance on Imaging Procedures</h2>\r\nAnother factor hindering our understanding of vertebral instability and ligament weakness is the dependence on imaging to diagnose and treat musculoskeletal injuries. Of course, MRI imaging is very helpful in the medical fields. However, many rely on imaging instead of using physical examination and good history taking for diagnosing. And as we said earlier, MRI’s can misdiagnose disc herniations.\r\n\r\nIt is important to rule out ligament injury and instability and treat it accordingly especially since a large majority of disc degeneration is due to vertebral instability and ligament weakness. With proper treatment, through therapies like Regenerative Orthopedics, physicians are able to accurately treat the source of their patients’ pain.\r\n\r\nRather than undergoing unnecessary surgeries that do not address the root cause of the symptoms, choose instead to seek out a less invasive treatment capable of strengthening weakened ligaments and tendons and thereby eliminating pressure on the vertebral discs.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Degenerative Disc Disease Treatment','','inherit','closed','closed','','3306-revision-v1','','','2020-08-13 21:14:56','2020-08-13 21:14:56','',3306,'https://www.drfields.com/uncategorized/3306-revision-v1/',0,'revision','',0),(3993,9,'2021-03-05 19:26:24','2021-03-05 19:26:24','<h3>Cervical Instability and Neck Pain and Symptoms That Change Your Life</h3>\nWhen neck injuries occur, like after car accidents, sports injuries, or even wear and tear, the sufferer often lives with neck pain and other disabling symptoms. In this article, we are not referring to a catastrophic neck injury, but one that very often may be considered \"minor.\" Yet the sufferer still lives with symptoms that alter their ability to live normally. The cause may very well be cervical instability, a disorder of the neck or cervical spine that can result in a myriad of symptoms.\n<h3>The Uniqueness of the Cervical Spine</h3>\nThe neck is unique because it consists of vertebrae that are smaller and more mobile than all of the movable vertebrae of the spine. The high degree of mobility in the neck or cervical spine is necessary in order to move the head through all the different ranges of motion we put it through. Blood is also transported through the neck on the way to the brain by means of the vertebral artery. The artery goes up through an opening called the transverse foramina in the vertebrae of the neck.\n\nWhy are these features important when discussing neck pain, symptoms, and instability? Well first of all, although the mobility of the neck is great and necessary in order to get things done and function like we like to, this same feature makes the neck vulnerable to injury.\n<h3>Ligaments are Affected by Neck Injuries Too. And When Injured, Cause Cervical Instability and Pain!</h3>\nSecondly, when an injury to the neck occurs, ligaments are affected. The ligaments are structures that are primarily responsible for joining bones. And they are especially vulnerable when trauma occurs. When the neck is stable, it moves and functions normally. And that\'s because it is remaining in proper alignment. Plus, proper alignment and function protects the blood vessels, nerves, and spinal cord. But an injury to the ligaments changes this whole dynamic because it causes the cervical spine to become unstable.\n\nAn unstable cervical spine cannot provide adequate support to function properly. But why does the instability make a difference? The instability alters the alignment of the neck which creates a cycle of imbalance between the different neck structures. It also causes too much movement of the neighboring vertebrae. And that stresses the ligaments that support the vertebrae. It also puts undue pressure on the nerve endings within those structures. The result is neck pain! A host of other possible symptoms are set into motion as a result of the various blood vessels and nerves running through the neck vertebrae.\n<h2><strong>Whiplash Injuries Are Examples of Cervical Instability </strong></h2>\n<img class=\"alignright size-medium wp-image-3311\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-1-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" />People who have experienced whiplash, often have symptoms that seem to last and last. <em>These symptoms are frequently a result of the instability of the vertebrae of the neck, or cervical instability.</em>\n\nWhiplash injuries are a common cause of cervical instability. The head is literally “whipped” in these injuries. The sudden acceleration and deceleration during rear-end collisions is an example of whiplash. During whiplash, a severe flexion is generated followed by an extension of the neck, in a whip-type motion forward and backward.\n\nThe backward hyperextension is often associated with more injury to the muscles and ligaments because it lacks the limiting effect of the chin meets the chest in the forward “whip.” Excessive motion in hyperextension severely strains the involved muscles and ligaments. This motion also compresses the adjoining vertebrae.\n\nLet\'s consider a person who is looking in the rearview mirror at the time of the collision. The rotated neck position puts the ligaments in even greater vulnerability for injury. Why? Well, these particular ligaments are those that help in side to side head movements and they are more susceptible when in this position.\n\nAs the ligaments become weaker, they are unable to provide a stable neck structure.  And that leads to even more injury and an ongoing provocation of the nerve endings. The ongoing provocation alters a part of the nervous system called the sympathetic nervous system (SNS). And then the SNS becomes increasingly activated. The result of an overactive SNS is a myriad of symptoms, including a syndrome of symptoms referred to as Barré-Liéou Syndrome. We\'ll talk about some of the symptoms of cervical instability below.\n<h3><strong>What Are the Symptoms of Cervical Instability?</strong></h3>\nSymptoms of neck instability or cervical instability include neck pain, muscle spasms, cracking sounds, and numbness in the arms and legs. Also, remember how we discussed the unique anatomical relationship of the vertebral arteries through the transverse foramina?\n\nInstability of the neck can cause a change in the flow of the arterial blood through the vertebrae when they are moving excessively. The vertebral artery provides circulation to half of the brain. Therefore, the extra mobile vertebrae can pinch off this artery, fostering an insufficiency of blood supply as it travels up to the brain. The condition is called vertebrobasilar insufficiency (VBI). Symptoms of VBI include neck pain, headaches/migraines, dizziness, drop attacks, dizziness, difficulty swallowing and/or speaking, and disturbances in hearing and vision.\n<h3><strong>Repair the Neck, And Relieve the Pain of Cervical Instability with Regenerative Orthopedics</strong></h3>\n[caption id=\"attachment_3310\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-3310 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" /> <em><strong>       Repair the spine &amp; Relieve Cervical Instability Symptoms</strong></em>[/caption]\n\nAll of these symptoms can perplex many clinicians. Meanwhile, the sufferer lives with debilitating symptoms. Oftentimes, they go from doctor to doctor, seeking some type of relief from the many and varied symptoms they experience.\n\nChiropractors do a great job at not only assessing these problems but treating them.  But when Chiropractors are not able to solve the problem or find a complete solution, one must look elsewhere.\n\nTalk with your chiropractor about Regenerative Orthopedics and what it can do to save your neck from surgery. Many chiropractors know Peter A. Fields, MD, DC, and have heard him lecture, as Dr. Fields is both an MD and a chiropractor.\n\nRegenerative Orthopedics is actually a great solution to the puzzle of neck pain and cervical instability. Stem Cell Therapy, PRP, and Prolotherapy are types of regenerative therapies that repair the injured ligaments at the core of the problem. Regenerative Orthopedics involves regenerative injection therapies that tighten, repair, and regenerate the ligaments involved in neck instability. The treatments eliminate the unstable movement, associated neck pain, and multiple symptoms.\n\nRegenerative Orthopedics is a safe non-surgical option that brings stability back to the neck and its structures, which results in increased functional ability. Those who suffer from all of these symptoms as a result of the instability of the neck or cervical spine can finally get relief from this life-altering condition.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Cervical Instability and Neck Pain That Changes Your Life','','inherit','closed','closed','','3301-autosave-v1','','','2021-03-05 19:26:24','2021-03-05 19:26:24','',3301,'https://www.drfields.com/uncategorized/3301-autosave-v1/',0,'revision','',0),(3994,9,'2020-08-16 02:10:27','2020-08-16 02:10:27','When neck injuries occur, like after car accidents, sports injuries, or even wear and tear, the sufferer often lives with neck pain and other disabling symptoms. In this article, we are not referring to a catastrophic neck injury, but one that very often may be considered \"minor.\" Yet the sufferer still lives with symptoms that alter their ability to live normally. The reason may very well be instability in the neck and related to the uniqueness of the neck itself.\r\n\r\nThe neck is unique because it consists of vertebrae that are smaller and more mobile than all of the movable vertebrae of the spine. Another name for the neck is the cervical spine. The high degree of mobility in the neck or cervical spine is necessary in order to move the head through all the different ranges of motion we put it through. Blood is also transported through the neck on the way to the brain by means of the vertebral artery. The artery goes up through an opening called the transverse foramina in the vertebrae of the neck.\r\n\r\nWhy are these features important when discussing neck pain, symptoms, and instability? Well first of all, although the mobility of the neck is great and necessary in order to get things done and function like we like to, this same feature makes us vulnerable to injury.\r\n<h3>Ligaments are Affected by Neck Injuries Too. And they Cause Neck Pain!</h3>\r\nSecondly, when an injury to the neck occurs, ligaments are affected. The ligaments are structures that are primarily responsible for joining bones, and they are especially vulnerable when trauma occurs. When the neck is stable, it moves and functions normally, while remaining in proper alignment. All of this protects the blood vessels, nerves, and spinal cord. But an injury to the ligaments changes this whole dynamic because it causes the cervical spine to become unstable.\r\n\r\nWhen the neck is called upon to function, this new instability of the cervical spine can\'t provide adequate support. Neck alignment is changed and a cycle of imbalance is created between the different neck structures. This causes too much movement of the neighboring vertebrae which stresses the ligaments that support them. It also puts undue pressure on the nerve endings within those structures. The result is neck pain! A host of other possible symptoms are set into motion as a result of the various blood vessels and nerves running through the neck vertebrae.\r\n<h2><strong>Whiplash Injuries Are Examples of Instability of the Neck</strong></h2>\r\n<img class=\"alignright size-medium wp-image-3311\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-1-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" />People who have experienced whiplash, often have symptoms that seem to last and last. <em>These symptoms are frequently a result of the instability of the vertebrae of the neck, or in other words, cervical instability.</em>\r\n\r\nWhiplash injuries are a common cause of cervical instability. The head is literally “whipped” in these injuries. The sudden acceleration and deceleration during rear-end collisions is an example of whiplash. During whiplash, a severe flexion is generated followed by an extension of the neck, in a whip-type motion forward and backward.\r\n\r\nThe backward hyperextension is often associated with more injury to the muscles and ligaments because it lacks the limiting effect of the chin meets the chest in the forward “whip.” Excessive motion in hyperextension severely strains the involved muscles and ligaments. This motion also compresses the adjoining vertebrae.\r\n\r\nLet\'s consider a person who is looking in the rearview mirror at the time of the collision. The rotated neck position puts the ligaments in even greater vulnerability for injury. Why? Well, these particular ligaments are those that help in side to side head movements and they are more susceptible when in this position.\r\n\r\nAs the ligaments become weaker, they are unable to provide a stable neck structure, which leads to even more injury and an ongoing provocation of the nerve endings. The ongoing provocation alters a part of the nervous system called the sympathetic nervous system which becomes increasingly activated. This can result in a myriad of symptoms, including a syndrome of symptoms referred to as Barré-Liéou Syndrome.\r\n<h2><strong>Symptoms from Instability of the Neck</strong></h2>\r\nSymptoms of neck instability or cervical instability include neck pain, muscle spasms, cracking sounds, and numbness in the arms and legs. Also, remember how we discussed the unique anatomical relationship of the vertebral arteries through the transverse foramina?\r\n\r\nInstability of the neck can cause a change in the flow of the arterial blood through the vertebrae when they are moving excessively. This artery provides circulation to half of the brain, so the extra mobile vertebrae can pinch it off, fostering an insufficiency of blood supply as it travels up to the brain. The condition is called vertebrobasilar insufficiency (VBI). Symptoms of VBI include neck pain, headaches/migraines, dizziness, drop attacks, dizziness, difficulty swallowing and/or speaking, and disturbances in hearing and vision.\r\n<h2><strong>How Can You Treat Neck Pain and Instability?</strong></h2>\r\n<img class=\"alignright size-medium wp-image-3310\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" />All of these symptoms can perplex many clinicians. Meanwhile, the sufferer lives with debilitating symptoms, oftentimes going from doctor to doctor, seeking some type of relief from the many and varied symptoms they experience.\r\n\r\nChiropractors do a great job at not only assessing these problems but treating them.  But when Chiropractors are not able to solve the problem or find a complete solution, one must look elsewhere.\r\n\r\nTalk with your chiropractor about Regenerative Orthopedics and what it can do to save your neck from surgery. Many chiropractors know Peter A. Fields, MD, DC, and have heard him lecture, as Dr. Fields is both an MD and a chiropractor.\r\n\r\nRegenerative Orthopedics is actually a great solution to the puzzle of neck pain and cervical instability. Regenerative therapies like Stem Cell Therapy, PRP, and Prolotherapy repair the injured ligaments that are at the core of the problem. Regenerative Orthopedics involves regenerative injection therapies that tighten, repair, and regenerate the ligaments involved in neck instability. The treatments eliminate the unstable movement, associated neck pain, and multiple symptoms.\r\n\r\nRegenerative Orthopedics is a safe non-surgical option that brings stability back to the neck and its structures, which results in increased functional ability. Those who suffer from all of these symptoms as a result of the instability of the neck or cervical spine can finally get relief from this life-altering condition.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Neck Pain That Changes Your Life','','inherit','closed','closed','','3301-revision-v1','','','2020-08-16 02:10:27','2020-08-16 02:10:27','',3301,'https://www.drfields.com/uncategorized/3301-revision-v1/',0,'revision','',0),(3995,9,'2020-10-05 22:42:13','2020-10-05 22:42:13','<em>My dad’s life could be an example for all of us during COVID-19 to encourage us to keep moving forwards and to not look back no matter how bad things are.</em>\n<h2><strong>Keep Looking Forward Despite COVID-19: My Dad\'s Story</strong></h2>\n<strong>By Peter A. Fields, MD, DC</strong>\n\nMy dad passed away just shy of his 85th birthday in 2004. Although he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\n\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example applies especially today. To me, he was not only my dad but my best friend and my mentor. He taught me so much.\n\nMy dad was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\n<h4>In 1934, his life would change forever.</h4>\nAt first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\n\nAfter that, he applied for a program where he could be sent to the United States to live with a family, since things were getting worse for Jewish people, and especially young men, in Germany. My dad was so excited when he was accepted into the program. He had a farewell party and said goodbye to his friends and relatives as he prepared for what was ahead.\n\nA few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\n<h4>Then on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred.</h4>\nMy dad\'s mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\n\nHe knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\n\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\n\nMy dad\'s mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein, and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\n\nHe did what he could to survive, he kept moving forward, and looked to the future for better days.\n\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\n\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\n<h4><em>“By the time you receive this, I will no longer exist.\"</em></h4>\nThese words struck like a lead pipe over his head.\n\nMy dad\'s mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\n\nHe could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\n\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\n\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\n<h4>And so, he went on. He persevered for the rest of the war in Shanghai.</h4>\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\n\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\n\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\n\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\n\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this story and his words and actions will help you during these very difficult times.\n\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\n\nThere is a bright future out there for all of us.\n\n~Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','My Dad\'s Story: Keep Looking Forward Despite COVID-19','','inherit','closed','closed','','3677-autosave-v1','','','2020-10-05 22:42:13','2020-10-05 22:42:13','',3677,'https://www.drfields.com/uncategorized/3677-autosave-v1/',0,'revision','',0),(3996,9,'2020-08-16 02:18:19','2020-08-16 02:18:19','<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nMy dad passed away just shy of his 85th birthday in 2004. Although he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\r\n\r\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example applies especially today. To me, he was not only my dad but my best friend and my mentor. He taught me so much.\r\n\r\nHe was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\r\n\r\nIn 1934, his life would change forever. At first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\r\n\r\nAfter that, he applied for a program where he could be sent to the United States to live with a family, since things were getting worse for Jewish people, and especially young men, in Germany. He was so excited when he was accepted into the program. He had a farewell party and said goodbye to his friends and relatives as he prepared for what was ahead. A few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\r\n\r\nThen on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred. His mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\r\n\r\nMy father knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\r\n\r\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\r\n\r\nHis mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein, and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\r\n\r\nHe did what he could to survive, kept moving forward, and looked to the future for better days.\r\n\r\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\r\n\r\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\r\n\r\n“By the time you receive this, I will no longer exist.\"\r\n\r\nThese words struck like a lead pipe over his head.\r\n\r\nHis mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\r\n\r\nMy dad could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\r\n\r\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\r\n\r\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\r\n\r\nAnd so, he went on. He persevered for the rest of the war in Shanghai.\r\n\r\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\r\n\r\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\r\n\r\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\r\n\r\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\r\n\r\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this story and his words and actions will help you during these very difficult times.\r\n\r\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\r\n\r\nThere is a bright future out there for all of us.\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Keep Looking Forward Despite COVID-19: My Dad\'s Story','','inherit','closed','closed','','3677-revision-v1','','','2020-08-16 02:18:19','2020-08-16 02:18:19','',3677,'https://www.drfields.com/uncategorized/3677-revision-v1/',0,'revision','',0),(3997,9,'2020-08-16 02:18:56','2020-08-16 02:18:56','<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nMy dad passed away just shy of his 85th birthday in 2004. Although he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\r\n\r\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example applies especially today. To me, he was not only my dad but my best friend and my mentor. He taught me so much.\r\n\r\nHe was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\r\n\r\nIn 1934, his life would change forever. At first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\r\n\r\nAfter that, he applied for a program where he could be sent to the United States to live with a family, since things were getting worse for Jewish people, and especially young men, in Germany. He was so excited when he was accepted into the program. He had a farewell party and said goodbye to his friends and relatives as he prepared for what was ahead. A few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\r\n\r\nThen on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred. His mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\r\n\r\nMy father knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\r\n\r\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\r\n\r\nHis mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein, and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\r\n\r\nHe did what he could to survive, kept moving forward, and looked to the future for better days.\r\n\r\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\r\n\r\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\r\n\r\n“By the time you receive this, I will no longer exist.\"\r\n\r\nThese words struck like a lead pipe over his head.\r\n\r\nHis mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\r\n\r\nMy dad could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\r\n\r\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\r\n\r\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\r\n\r\nAnd so, he went on. He persevered for the rest of the war in Shanghai.\r\n\r\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\r\n\r\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\r\n\r\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\r\n\r\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\r\n\r\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this story and his words and actions will help you during these very difficult times.\r\n\r\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\r\n\r\nThere is a bright future out there for all of us.\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Keep Looking Forward Despite COVID-19: My Dad Story','','inherit','closed','closed','','3677-revision-v1','','','2020-08-16 02:18:56','2020-08-16 02:18:56','',3677,'https://www.drfields.com/uncategorized/3677-revision-v1/',0,'revision','',0),(3998,9,'2020-08-16 02:27:47','2020-08-16 02:27:47','<em>My dad’s life could be an example for all of us during COVID-19 to encourage us to keep moving forwards and to not look back no matter how bad things are.</em>\r\n<h2><strong>Keep Looking Forward Despite COVID-19: My Dad\'s Story</strong></h2>\r\n<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nMy dad passed away just shy of his 85th birthday in 2004. Although he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\r\n\r\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example applies especially today. To me, he was not only my dad but my best friend and my mentor. He taught me so much.\r\n\r\nMy dad was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\r\n\r\nIn 1934, his life would change forever. At first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\r\n\r\nAfter that, he applied for a program where he could be sent to the United States to live with a family, since things were getting worse for Jewish people, and especially young men, in Germany. My dad was so excited when he was accepted into the program. He had a farewell party and said goodbye to his friends and relatives as he prepared for what was ahead.\r\n\r\nA few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\r\n\r\nThen on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred. My dad\'s mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\r\n\r\nMy dad knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\r\n\r\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\r\n\r\nMy dad\'s mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein, and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\r\n\r\nHe did what he could to survive, he kept moving forward, and looked to the future for better days.\r\n\r\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\r\n\r\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\r\n\r\n“By the time you receive this, I will no longer exist.\"\r\n\r\nThese words struck like a lead pipe over his head.\r\n\r\nMy dad\'s mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\r\n\r\nMy dad could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\r\n\r\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\r\n\r\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\r\n\r\nAnd so, he went on. He persevered for the rest of the war in Shanghai.\r\n\r\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\r\n\r\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\r\n\r\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\r\n\r\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\r\n\r\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this story and his words and actions will help you during these very difficult times.\r\n\r\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\r\n\r\nThere is a bright future out there for all of us.\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Keep Looking Forward Despite COVID-19: My Dad\'s Story','','inherit','closed','closed','','3677-revision-v1','','','2020-08-16 02:27:47','2020-08-16 02:27:47','',3677,'https://www.drfields.com/uncategorized/3677-revision-v1/',0,'revision','',0),(3999,9,'2020-08-16 02:31:29','2020-08-16 02:31:29','<em>My dad’s life could be an example for all of us during COVID-19 to encourage us to keep moving forwards and to not look back no matter how bad things are.</em>\r\n<h2><strong>Keep Looking Forward Despite COVID-19: My Dad\'s Story</strong></h2>\r\n<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nMy dad passed away just shy of his 85th birthday in 2004. Although he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\r\n\r\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example applies especially today. To me, he was not only my dad but my best friend and my mentor. He taught me so much.\r\n\r\nMy dad was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\r\n\r\nIn 1934, his life would change forever. At first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\r\n\r\nAfter that, he applied for a program where he could be sent to the United States to live with a family, since things were getting worse for Jewish people, and especially young men, in Germany. My dad was so excited when he was accepted into the program. He had a farewell party and said goodbye to his friends and relatives as he prepared for what was ahead.\r\n\r\nA few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\r\n\r\nThen on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred. My dad\'s mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\r\n\r\nMy dad knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\r\n\r\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\r\n\r\nMy dad\'s mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein, and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\r\n\r\nHe did what he could to survive, he kept moving forward, and looked to the future for better days.\r\n\r\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\r\n\r\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\r\n\r\n“By the time you receive this, I will no longer exist.\"\r\n\r\nThese words struck like a lead pipe over his head.\r\n\r\nMy dad\'s mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\r\n\r\nMy dad could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\r\n\r\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\r\n\r\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\r\n\r\nAnd so, he went on. He persevered for the rest of the war in Shanghai.\r\n\r\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\r\n\r\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\r\n\r\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\r\n\r\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\r\n\r\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this story and his words and actions will help you during these very difficult times.\r\n\r\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\r\n\r\nThere is a bright future out there for all of us.\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','My Dad\'s Story: Keep Looking Forward Despite COVID-19','','inherit','closed','closed','','3677-revision-v1','','','2020-08-16 02:31:29','2020-08-16 02:31:29','',3677,'https://www.drfields.com/uncategorized/3677-revision-v1/',0,'revision','',0),(4000,9,'2020-08-16 02:32:25','2020-08-16 02:32:25','<em>My dad’s life could be an example for all of us during COVID-19 to encourage us to keep moving forwards and to not look back no matter how bad things are.</em>\r\n<h2><strong>Keep Looking Forward Despite COVID-19: My Dad\'s Story</strong></h2>\r\n<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nMy dad passed away just shy of his 85th birthday in 2004. Although he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\r\n\r\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example applies especially today. To me, he was not only my dad but my best friend and my mentor. He taught me so much.\r\n\r\nMy dad was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\r\n\r\nIn 1934, his life would change forever. At first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\r\n\r\nAfter that, he applied for a program where he could be sent to the United States to live with a family, since things were getting worse for Jewish people, and especially young men, in Germany. My dad was so excited when he was accepted into the program. He had a farewell party and said goodbye to his friends and relatives as he prepared for what was ahead.\r\n\r\nA few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\r\n\r\nThen on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred. My dad\'s mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\r\n\r\nHe knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\r\n\r\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\r\n\r\nMy dad\'s mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein, and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\r\n\r\nHe did what he could to survive, he kept moving forward, and looked to the future for better days.\r\n\r\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\r\n\r\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\r\n\r\n“By the time you receive this, I will no longer exist.\"\r\n\r\nThese words struck like a lead pipe over his head.\r\n\r\nMy dad\'s mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\r\n\r\nHe could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\r\n\r\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\r\n\r\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\r\n\r\nAnd so, he went on. He persevered for the rest of the war in Shanghai.\r\n\r\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\r\n\r\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\r\n\r\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\r\n\r\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\r\n\r\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this story and his words and actions will help you during these very difficult times.\r\n\r\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\r\n\r\nThere is a bright future out there for all of us.\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','My Dad\'s Story: Keep Looking Forward Despite COVID-19','','inherit','closed','closed','','3677-revision-v1','','','2020-08-16 02:32:25','2020-08-16 02:32:25','',3677,'https://www.drfields.com/uncategorized/3677-revision-v1/',0,'revision','',0),(4002,9,'2020-08-24 22:03:00','2020-08-24 22:03:00','<b>Do you experience elbow pain?</b> You are not alone, especially if you perform repetitive tasks involving your arms and hands like doing carpentry, secretarial work, or computer work. You may even be a  pianist, guitarist, tennis player, or do any other skill or activity that requires repeated activities day after day.\n\n<iframe class=\"alignright\" src=\"https://www.youtube.com/embed/RJCzx6yt0zY\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n\nIt\'s not surprising, really, that doing the same thing day in and day out could cause a structure to break down. Think about how you feel after spending a day working in the yard, or joining a new workout at the gym. Or even doing some other activity you’re not accustomed to.\n\nWe pretty much expect to have some amount of muscle soreness with exercise. That is normal. During exercise, muscle cells are temporarily “injured,” as part of a normal process to multiply muscle cells.\n\nUnfortunately though, the same isn’t true with ligaments and tendons. They also break down from repetitive use, but they don’t have a very good capacity to heal well on their own. Muscles repair pretty well on their own, because they have an adequate blood supply, but ligaments and tendons do not.\n<h2>Elbow Pain May be the Result of Ligament or Tendon Injuries</h2>\nMovement and exercise are necessary for health of all of the joint structures and to keep the body strong and healthy. But repetitive motion, day in and day out, can result in wear and tear.\n\nHow do you know when soreness is a problem? When soreness occurs after activity, keep in mind that normal soreness after exercise should not last more than a few hours. When soreness lasts longer, you are probably exercising too much or need to take more breaks. Muscle injuries generally heal with rest. When pain persists even after rest, the cause is oftentimes a ligament injury.\n<h3><em>Elbow Ligaments</em></h3>\nThe ligaments of the elbow provide stability to the elbow. They attach bone to bone, and different ligaments support various functions of the elbow, stabilizing the elbow as it goes through movements.\n\nFor instance, the radial collateral ligament of the elbow prevents the elbow from hyperextending. Other ligaments keep the arm bones from rotating too much.  When these ligaments are weakened or damaged, they become unable to protect the elbow from excessive and unnatural movement. And that places stress on all of the structures of the elbow.\n<h3><em>The Role of Tendons</em></h3>\nPain from repetitive motion may also result in a tendon injury. While ligaments attach bone to bone, stabilizing them, the tendons connect muscle to bone, and along with the muscles, enable the bones to move. Those with tendon injuries usually feel pain during activity. But ligament injuries may also be painful even while at rest.\n<h3>Structures Causing Elbow Pain Need Treatment for Proper Repair</h3>\nA very high percentage of persistent elbow pain involves a ligament injury. But many physicians only diagnose the problem as a tendon injury. Tennis Elbow, for example, is a commonly diagnosed tendon injury that often involves a ligament injury too.  It is important to treat all of the involved structures in order to fix the problem and get rid of the pain.\n\nA ligament injury can lead to a tendon injury, or injury to another structure of the elbow joint. So it is very important to treat the underlying source of injury and pain. Otherwise, the repaired tendon is likely to become reinjured because the joint will remain unstable due to the underlying ligament injury.\n<h2>Elbow Pain Treatments</h2>\nCortisone or steroid injections are a common treatment option for tendon injuries. But as we have discussed in previous articles, cortisone will actually weaken the tendons and the ligaments.\n\nElbow injuries, whether due to ligament injuries, tendon injuries, or both, are better repaired using Regenerative Orthopedic treatment options. They strengthen and regenerate the structures rather than weakening and degenerating them.  Yes, cortisone may provide some temporary pain control. But in the long-run, it will have a damaging effect on the joint and will actually boost the arthritic process.<strong> </strong>\n\nRegenerative Orthopedics for unresolved elbow pain decrease pain and stiffness, and restore quality of life.  The pain alleviating aspects of Regenerative Orthopedics are well documented.\n\nStudies demonstrate its effectiveness at significantly improving pain levels while also increasing grip strength and improving function, because it actually heals the tendons and ligaments.\n<ul>\n 	<li>In the <em>Clinical Journal of Sports Medicine</em>, doctors found that patients who received Prolotherapy, a Regenerative Orthopedic option, showed significant improvement in pain levels compared with patients given saline injection. Plus, their extension strength and grip strength were markedly improved.[i]</li>\n 	<li>Published research of patients with elbow pain due to Tennis Elbow treated with Prolotherapy shows a decrease in pain from a level of 6.79 to a level of 2.95, which is statistically significance.[ii]</li>\n 	<li>In another study, research demonstrates a significant reduction in elbow pain from Tennis Elbow in patients who received Prolotherapy, along with evidence of tendon healing observed via ultrasound imaging.[iii]</li>\n</ul>\nRegenerative Orthopedics works by stimulating the normal healing process of the body by the injection of natural healing solutions into the pain generating trigger points of the elbow. The result is strengthened ligaments and tendons, a stabilized elbow, and an end to elbow pain.\n\n[i] Scarpone M, Rabago DP, Zgierska A, Arbogast G, Snell E. The efficacy of prolotherapy for lateral epicondylosis: a pilot study. Clin J Sport Med. 2008;18(3):248–54.\n\n[ii] Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow. J Korean Acad Rehabil Med. 2002;26:764–8.\n\n[iii] Park JH, Song IS, Lee JB, et al. Ultrasonographic findings of healing of torn tendon in the patients with lateral epicondylitis after prolotherapy. J Korean Soc Med Ultrasound. 2003;22(3):177–83.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Persistent Elbow Pain','','inherit','closed','closed','','3297-autosave-v1','','','2020-08-24 22:03:00','2020-08-24 22:03:00','',3297,'https://www.drfields.com/uncategorized/3297-autosave-v1/',0,'revision','',0),(4003,9,'2020-08-24 22:03:44','2020-08-24 22:03:44','<b>Do you experience elbow pain?</b> You are not alone, especially if you perform repetitive tasks involving your arms and hands like doing carpentry, secretarial work, or computer work. You may even be a  pianist, guitarist, tennis player, or do any other skill or activity that requires repeated activities day after day.\r\n\r\n<iframe class=\"alignright\" src=\"https://www.youtube.com/embed/RJCzx6yt0zY\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nIt\'s not surprising, really, that doing the same thing day in and day out could cause a structure to break down. Think about how you feel after spending a day working in the yard, or joining a new workout at the gym. Or even doing some other activity you’re not accustomed to.\r\n\r\nWe pretty much expect to have some amount of muscle soreness with exercise. That is normal. During exercise, muscle cells are temporarily “injured,” as part of a normal process to multiply muscle cells.\r\n\r\nUnfortunately though, the same isn’t true with ligaments and tendons. They also break down from repetitive use, but they don’t have a very good capacity to heal well on their own. Muscles repair pretty well on their own, because they have an adequate blood supply, but ligaments and tendons do not.\r\n<h2>Elbow Pain May be the Result of Ligament or Tendon Injuries</h2>\r\nMovement and exercise are necessary for health of all of the joint structures and to keep the body strong and healthy. But repetitive motion, day in and day out, can result in wear and tear.\r\n\r\nHow do you know when soreness is a problem? When soreness occurs after activity, keep in mind that normal soreness after exercise should not last more than a few hours. When soreness lasts longer, you are probably exercising too much or need to take more breaks. Muscle injuries generally heal with rest. When pain persists even after rest, the cause is oftentimes a ligament injury.\r\n<h3><em>Elbow Ligaments</em></h3>\r\nThe ligaments of the elbow provide stability to the elbow. They attach bone to bone, and different ligaments support various functions of the elbow, stabilizing the elbow as it goes through movements.\r\n\r\nFor instance, the radial collateral ligament of the elbow prevents the elbow from hyperextending. Other ligaments keep the arm bones from rotating too much.  When these ligaments are weakened or damaged, they become unable to protect the elbow from excessive and unnatural movement. And that places stress on all of the structures of the elbow.\r\n<h3><em>The Role of Tendons</em></h3>\r\nPain from repetitive motion may also result in a tendon injury. While ligaments attach bone to bone, stabilizing them, the tendons connect muscle to bone, and along with the muscles, enable the bones to move. Those with tendon injuries usually feel pain during activity. But ligament injuries may also be painful even while at rest.\r\n<h3>Structures Causing Elbow Pain Need Treatment for Proper Repair</h3>\r\nA very high percentage of persistent elbow pain involves a ligament injury. But many physicians only diagnose the problem as a tendon injury. Tennis Elbow, for example, is a commonly diagnosed tendon injury that often involves a ligament injury too.  It is important to treat all of the involved structures in order to fix the problem and get rid of the pain.\r\n\r\nA ligament injury can lead to a tendon injury, or injury to another structure of the elbow joint. So it is very important to treat the underlying source of injury and pain. Otherwise, the repaired tendon is likely to become reinjured because the joint will remain unstable due to the underlying ligament injury.\r\n<h2>Elbow Pain Treatments</h2>\r\nCortisone or steroid injections are a common treatment option for tendon injuries. But as we have discussed in previous articles, cortisone will actually weaken the tendons and the ligaments.\r\n\r\nElbow injuries, whether due to ligament injuries, tendon injuries, or both, are better repaired using Regenerative Orthopedic treatment options. They strengthen and regenerate the structures rather than weakening and degenerating them.  Yes, cortisone may provide some temporary pain control. But in the long-run, it will have a damaging effect on the joint and will actually boost the arthritic process.<strong> </strong>\r\n\r\nRegenerative Orthopedics for unresolved elbow pain decrease pain and stiffness, and restore quality of life.  The pain alleviating aspects of Regenerative Orthopedics are well documented.\r\n<h3>What Does Research Show?</h3>\r\nStudies demonstrate its effectiveness at significantly improving pain levels while also increasing grip strength and improving function, because it actually heals the tendons and ligaments.\r\n<ul>\r\n 	<li>In the <em>Clinical Journal of Sports Medicine</em>, doctors found that patients who received Prolotherapy, a Regenerative Orthopedic option, showed significant improvement in pain levels compared with patients given saline injection. Plus, their extension strength and grip strength were markedly improved.[i]</li>\r\n 	<li>Published research of patients with elbow pain due to Tennis Elbow treated with Prolotherapy shows a decrease in pain from a level of 6.79 to a level of 2.95, which is statistically significance.[ii]</li>\r\n 	<li>In another study, research demonstrates a significant reduction in elbow pain from Tennis Elbow in patients who received Prolotherapy, along with evidence of tendon healing observed via ultrasound imaging.[iii]</li>\r\n</ul>\r\nRegenerative Orthopedics works by stimulating the normal healing process of the body by the injection of natural healing solutions into the pain generating trigger points of the elbow. The result is strengthened ligaments and tendons, a stabilized elbow, and an end to elbow pain.\r\n\r\n[i] Scarpone M, Rabago DP, Zgierska A, Arbogast G, Snell E. The efficacy of prolotherapy for lateral epicondylosis: a pilot study. Clin J Sport Med. 2008;18(3):248–54.\r\n\r\n[ii] Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow. J Korean Acad Rehabil Med. 2002;26:764–8.\r\n\r\n[iii] Park JH, Song IS, Lee JB, et al. Ultrasonographic findings of healing of torn tendon in the patients with lateral epicondylitis after prolotherapy. J Korean Soc Med Ultrasound. 2003;22(3):177–83.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Persistent Elbow Pain','','inherit','closed','closed','','3297-revision-v1','','','2020-08-24 22:03:44','2020-08-24 22:03:44','',3297,'https://www.drfields.com/uncategorized/3297-revision-v1/',0,'revision','',0),(4004,9,'2020-08-25 00:14:50','2020-08-25 00:14:50','[caption id=\"attachment_4007\" align=\"alignleft\" width=\"439\"]<img class=\" wp-image-4007\" src=\"https://www.drfields.com/wp-content/uploads/2020/08/Foot-pain-copy-1-500x500.jpg\" alt=\"The Shoes We Wear\" width=\"439\" height=\"439\" /> Do you wear pointy, closed-toed shoes?[/caption]\n\nPersistent foot and toe pain affects an incredibly large part of our population. And it\'s no wonder. We spend hours on our feet every day, working, playing, and engaging in everyday activities. Some of us pound our feet running marathons, while others try to reach that goal of 10,000 steps a day. Each of those steps generates a force on the foot.\n\nAdd to that, activities like jumping and running, and the force we place on our feet increases that much more. During an average day, the feet support a combined force equivalent to several hundred tons. It is not surprising, then, that the majority of us experience foot pain at some point in our lives.\n<h2>Factors That Cultivate Problems of Foot Pain</h2>\nWe can compound our problems of foot pain by our choices of footwear. Improper foot mechanics with walking, running and intense training can cause problems with our feet too. Various physical conditions such as high arches, fallen arches, degenerative arthritis, bony abnormalities, flat-footedness, inflammatory joint diseases and excess weight also predispose us to foot pain.\n\n&nbsp;\n<h2>More about the Foot</h2>\nThe foot, if we include the toes and ankle, contains 26 bones. That\'s a lot of bones. Plus, all of those bones make up 33 joints supported by more than 100 muscles, tendons and ligaments. Any of these structures can become weakened or injured. And that means a whole lot of different structures can get injured. Those injuries destabilize the foot, because they cause insufficient ligament and tendon support for proper motion in the joints. The result is foot pain due to the joints of the foot becoming weak, lax, and unstable.\n<h2>What Happens When the Foot Joints Become Unstable?</h2>\nInstability in any joint typically begins with an injury to the ligaments and tendons that support the joint. Because the joint is no longer held in place by healthy ligaments and tendons, abnormal joint motion develops. This abnormality in the movement of the joint results in a greater amount of pressure being exerted on the different parts of the joint.\n\nAll of the structures of the joint can become damaged. Even the cartilage. When cartilage degenerates, the joint will crunch and grind. As time passes, the body reacts to this instability by contracting the muscles in the area. You will experience that as muscle spasms.\n\nEventually, these tense muscles fatigue and lose their strength. Then the ligaments and tendons will try even harder to stabilize the joints. But they will become damaged further. That is the cycle of abnormal joint motion. And it results in degeneration of the joint. The body responds to the failure of these various soft tissue structures by increasing bone mass in an attempt to stabilize the joint. In other words, arthritis will develop. And arthritis is a frequent diagnosis related to foot pain.\n<h2>Some Common Foot and Toe Conditions</h2>\nInstability of the joints of the foot can also result in a number of toe and forefoot conditions. These include Morton’s Neuroma, bunions (hallux valgus), and a stiff, degenerated, big toe called hallus rigidis.  The origin of these conditions can be traced back to an original ligament injury or weakness.\n<h3><em>Morton’s Neuroma</em></h3>\nMorton’s Neuroma refers to a fibrous tissue formation around nerve tissue in the spaces between the toes. It results in symptoms like sharp pains, burning sensations, and paresthesias (abnormal sensations).\n\nThis condition is not traditionally thought of as being an instability problem. However, injury to ligaments of the foot can cause excessive motion between the bones of the toes, causing irritation of the bursa or a nerve, and can result in a significant enlargement of the nerve. This enlargement can cause further trauma and worsening of the symptoms. And they can be quite severe.\n\nMorton’s Neuroma most often affects women who frequently wear pointed, high-heeled and close-toed shoes, the mechanics of which transfer body weight to the toes, placing undo force on the toes and their ligaments.\n<h3><em>Bunions</em></h3>\nBunions are another widespread, persistent foot complaint, also commonly seen in women. This growth in boney tissue occurs mainly on the medial side of the foot, producing the characteristic bump or bunion. Joint instability here causes the bones of the toes to move in an abnormal fashion. This shift leads to the formation of the boney projection on the medial side of the toe in an attempt to stabilize joint motion.\n<h3><em>Stiff Big Toe or Hallux Rigidus</em></h3>\nHallux rigidus is a disorder of the joint at the base of the big toe, which causes pain and stiffness in the toe. Over time, the toe becomes increasingly more difficult to bend.\n\nHallux refers to the big toe. And rigidus means the toe is rigid. The condition is caused by degenerating cartilage in the metatarsophalangeal (MTP) joint of the big toe. Eventually, it will lead to the formation of bone spurs around the joint—a last ditch effort of the body to stabilize the joint.\n\nThe underlying condition of both bunions and hallux rigidus is instability that causes arthritis of the MTP joint.\n\nAbnormal joint shifts are what precipitate the pathological bone growth associated with bunions, reducing movement in both flexion and extension, and leading to hallux rigidus and to a potentially frozen joint.\n<h2>Treatment for Foot and Toe Pain</h2>\nStandard treatment for foot pain is generally conservative, beginning with choosing properly fitting shoes. NSAIDs are often prescribed, along with physical therapy. When foot and toe pain continue, surgery is frequently considered. In fact, surgery on the first metatarsophalangeal joint is one of the most common surgery performed.\n\n[caption id=\"attachment_4008\" align=\"alignright\" width=\"358\"]<img class=\" wp-image-4008\" src=\"https://www.drfields.com/wp-content/uploads/2020/08/Penny.-foot-500x500.jpg\" alt=\"Penny. Foot\" width=\"358\" height=\"358\" /> Regenerative Orthopedics instead of Surgery for foot and toe pain![/caption]\n<h3>Regenerative Orthopedics for Foot and Toe Pain</h3>\nDespite the commonality of these treatments, a large percentage of people continue to suffer with foot and toe pain. An effective alternative treatment for reduction and elimination of this pain is Regenerative Orthopedics, because it addresses the underlying cause of the problem, the joint instability caused by ligament and tendon injury.\n\nBy strengthening ligaments and tendons, Regenerative Orthopedics can stop the pathologic cascade causing these persistent foot conditions, stabilizing the joint and bringing pain relief.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Persistent Foot Pain and Toe Pain','','inherit','closed','closed','','3199-autosave-v1','','','2020-08-25 00:14:50','2020-08-25 00:14:50','',3199,'https://www.drfields.com/uncategorized/3199-autosave-v1/',0,'revision','',0),(4005,9,'2020-08-24 23:36:41','2020-08-24 23:36:41','Foot Pain Copy','Foot Pain Copy','Foot Pain Copy','inherit','open','closed','','foot-pain-copy','','','2020-08-24 23:39:28','2020-08-24 23:39:28','',0,'https://www.drfields.com/wp-content/uploads/2020/08/Foot-pain-copy.png',0,'attachment','image/png',0),(4006,9,'2020-08-24 23:39:43','2020-08-24 23:39:43','Foot Pain Copy','Foot Pain Copy','Foot Pain Copy','inherit','open','closed','','foot-pain-copy-2','','','2020-08-24 23:40:13','2020-08-24 23:40:13','',0,'https://www.drfields.com/wp-content/uploads/2020/08/Foot-pain-copy.jpg',0,'attachment','image/jpeg',0),(4007,9,'2020-08-24 23:41:05','2020-08-24 23:41:05','The shoes we wear can make our foot and toe pain worse.','Foot Pain from Our Shoes','Do you wear pointy, closed-toed shoes?','inherit','open','closed','','foot-pain-copy-3','','','2020-08-24 23:58:23','2020-08-24 23:58:23','',3199,'https://www.drfields.com/wp-content/uploads/2020/08/Foot-pain-copy-1.jpg',0,'attachment','image/jpeg',0),(4008,9,'2020-08-24 23:41:25','2020-08-24 23:41:25','Penny. Foot','Penny. Foot','Penny. Foot','inherit','open','closed','','penny-foot','','','2020-08-25 00:12:47','2020-08-25 00:12:47','',3199,'https://www.drfields.com/wp-content/uploads/2020/08/Penny.-foot.jpg',0,'attachment','image/jpeg',0),(4009,9,'2020-08-24 23:53:57','2020-08-24 23:53:57','Persistent foot and toe pain affects an incredibly large part of our population. We spend hours on our feet every day, working, playing, and engaging in everyday activities. Some may be pounding their feet running marathons, while others try to reach that goal of 10,000 steps a day. Each of those steps generates a force on the foot. Add to that, activities like jumping and running, and the force placed on the foot increases that much more. During an average day, the feet support a combined force equivalent to several hundred tons. It is not surprising, then, that the majority of us experience foot pain at some point in our lives.\r\n<h2>Factors That Cultivate Problems of Foot Pain</h2>\r\nWe can compound our problems of foot pain by our choices of footwear. Improper foot mechanics with walking, running and intense training can cause problems with our feet too. Various physical conditions such as high arches, fallen arches, degenerative arthritis, bony abnormalities, flat-footedness, inflammatory joint diseases and excess weight also predispose us to foot pain.\r\n<h2>More about the Foot</h2>\r\nThe foot, if we include the toes and ankle, contains 26 bones. All of those bones make up 33 joints supported by more than 100 muscles, tendons and ligaments. Any of these structures can become weakened or injured, which will then destabilize the foot, due to insufficient ligament and tendon support for proper motion in those joints. The result is foot pain due to the joints of the foot becoming weak, lax, and unstable.\r\n<h2>What Happens When the Foot Joints Become Unstable</h2>\r\nInstability in any joint typically begins with an injury to the ligaments and tendons which support the joint. Because the joint is no longer held in place by healthy ligaments and tendons, abnormal joint motion develops. This abnormality in the movement of the joint results in a greater amount of pressure being exerted on the different parts of the joint. All of the structures of the joint can become damaged, including the cartilage. When cartilage degenerates, there will be a crunching and grinding in the joint. With time, the body reacts to this instability by contracting the muscles in the area. You’ll experience that as muscle spasms. Eventually these tense muscles will fatigue and lose their strength. Then the ligaments and tendons will try even harder to stabilize the joints, but they will become damaged further. That is the cycle of abnormal joint motion will degenerate the joint. The body responds to the failure of these various soft tissue structures by increasing bone mass in an attempt to stabilize the joint. One result is arthritis, a frequent diagnosis related to foot pain.\r\n<h2>Some Common Foot  and Toe Conditions</h2>\r\nInstability of the joints of the foot can also result in a number of forefoot conditions. These include Morton’s Neuroma, bunions (hallux valgus), and a stiff, degenerated, big toe called hallus rigidis.  The origin of these conditions can be traced back to an original ligament injury or weakness.\r\n<h3><em>Morton’s Neuroma</em></h3>\r\nMorton’s Neuroma refers to a fibrous tissue formation around nerve tissue in the spaces between the toes and results in symptoms that include sharp pains, burning sensations, and paresthesias (abnormal sensations). This condition is not traditionally thought of as being an instability problem. However, injury to ligaments of the foot can cause excessive motion between the bones of the toes, causing irritation of the bursa or a nerve, and can result in a significant enlargement of the nerve. This enlargement can cause further trauma and worsening of the symptoms, which can be quite severe. Morton’s Neuroma most often affects women who frequently wear pointed, high-heeled and close-toed shoes, the mechanics of which transfer body weight to the toes, placing undo force on the toes and their ligaments.\r\n<h3><em>Bunions</em></h3>\r\nBunions are another widespread, persistent foot complaint, also commonly seen in women. This growth in boney tissue occurs mainly on the medial side of the foot, producing the characteristic bump or bunion. Joint instability here causes the bones of the toes to move in an abnormal fashion with this shift leading to the formation of this boney projection on the medial side of the toe in an attempt to stabilize joint motion.\r\n<h3><em>Stiff Big Toe or Hallux Rigidus</em></h3>\r\nHallux rigidus is a disorder of the joint at the base of the big toe, which causes pain and stiffness in the toe. Over time, the toe becomes increasingly more difficult to bend. Hallux refers to the big toe, and rigidus means the toe is rigid. The condition is caused by degenerating cartilage in the metatarsophalangeal (MTP) joint of the big toe, which will eventually lead to the formation of bone spurs that form around the joint—a last ditch effort of the body to recover joint stability and stabilize the joint. The underlying condition of both bunions and hallux rigidus is instability that causes arthritis of the MTP joint.\r\n\r\nAbnormal joint shifts are what precipitate the pathological bone growth associated with bunions, reducing movement in both flexion and extension, and leading to hallux rigidus and to a potentially frozen joint.\r\n<h2>Treatment for Foot Pain</h2>\r\nStandard treatment for foot pain is generally conservative, beginning with choosing properly fitting shoes. NSAIDs are often prescribed along with physical therapy. When foot and toe pain continue, surgery is frequently considered. In fact, surgery on the first metatarsophalangeal joint is amongst the most common surgery performed.\r\n\r\nDespite the commonality of these treatments, a large percentage of people continue to suffer with foot and toe pain. An effective alternative treatment for reduction and elimination of this pain is Regenerative Orthopedics, because it addresses the underlying cause of the problem, the joint instability caused by ligament and tendon injury. By strengthening ligaments and tendons, Regenerative Orthopedics can stop the pathologic cascade causing these persistent foot conditions, stabilizing the joint and bringing pain relief.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Persistent Foot Pain and Toe Pain','','inherit','closed','closed','','3199-revision-v1','','','2020-08-24 23:53:57','2020-08-24 23:53:57','',3199,'https://www.drfields.com/uncategorized/3199-revision-v1/',0,'revision','',0),(4010,9,'2020-08-24 23:57:06','2020-08-24 23:57:06','Foot Pain Copy','Foot Pain Copy','Foot Pain Copy','inherit','open','closed','','foot-pain-copy-4','','','2020-08-24 23:57:06','2020-08-24 23:57:06','',0,'https://www.drfields.com/wp-content/uploads/2020/08/Foot-pain-copy-2.jpg',0,'attachment','image/jpeg',0),(4011,9,'2020-08-24 23:59:48','2020-08-24 23:59:48','[caption id=\"attachment_4007\" align=\"alignleft\" width=\"392\"]<img class=\" wp-image-4007\" src=\"https://www.drfields.com/wp-content/uploads/2020/08/Foot-pain-copy-1-500x500.jpg\" alt=\"The Shoes We Wear\" width=\"392\" height=\"392\" /> Do you wear pointy, closed-toed shoes?[/caption]\r\n\r\nPersistent foot and toe pain affects an incredibly large part of our population. And it\'s no wonder. We spend hours on our feet every day, working, playing, and engaging in everyday activities. Some of us pound our feet running marathons, while others try to reach that goal of 10,000 steps a day. Each of those steps generates a force on the foot. Add to that, activities like jumping and running, and the force placed on the foot increases that much more. During an average day, the feet support a combined force equivalent to several hundred tons. It is not surprising, then, that the majority of us experience foot pain at some point in our lives.\r\n<h2>Factors That Cultivate Problems of Foot Pain</h2>\r\nWe can compound our problems of foot pain by our choices of footwear. Improper foot mechanics with walking, running and intense training can cause problems with our feet too. Various physical conditions such as high arches, fallen arches, degenerative arthritis, bony abnormalities, flat-footedness, inflammatory joint diseases and excess weight also predispose us to foot pain.\r\n\r\n&nbsp;\r\n<h2>More about the Foot</h2>\r\nThe foot, if we include the toes and ankle, contains 26 bones. All of those bones make up 33 joints supported by more than 100 muscles, tendons and ligaments. Any of these structures can become weakened or injured, which will then destabilize the foot, due to insufficient ligament and tendon support for proper motion in those joints. The result is foot pain due to the joints of the foot becoming weak, lax, and unstable.\r\n<h2>What Happens When the Foot Joints Become Unstable</h2>\r\nInstability in any joint typically begins with an injury to the ligaments and tendons which support the joint. Because the joint is no longer held in place by healthy ligaments and tendons, abnormal joint motion develops. This abnormality in the movement of the joint results in a greater amount of pressure being exerted on the different parts of the joint. All of the structures of the joint can become damaged, including the cartilage. When cartilage degenerates, there will be a crunching and grinding in the joint. With time, the body reacts to this instability by contracting the muscles in the area. You’ll experience that as muscle spasms. Eventually these tense muscles will fatigue and lose their strength. Then the ligaments and tendons will try even harder to stabilize the joints, but they will become damaged further. That is the cycle of abnormal joint motion will degenerate the joint. The body responds to the failure of these various soft tissue structures by increasing bone mass in an attempt to stabilize the joint. One result is arthritis, a frequent diagnosis related to foot pain.\r\n<h2>Some Common Foot  and Toe Conditions</h2>\r\nInstability of the joints of the foot can also result in a number of forefoot conditions. These include Morton’s Neuroma, bunions (hallux valgus), and a stiff, degenerated, big toe called hallus rigidis.  The origin of these conditions can be traced back to an original ligament injury or weakness.\r\n<h3><em>Morton’s Neuroma</em></h3>\r\nMorton’s Neuroma refers to a fibrous tissue formation around nerve tissue in the spaces between the toes and results in symptoms that include sharp pains, burning sensations, and paresthesias (abnormal sensations). This condition is not traditionally thought of as being an instability problem. However, injury to ligaments of the foot can cause excessive motion between the bones of the toes, causing irritation of the bursa or a nerve, and can result in a significant enlargement of the nerve. This enlargement can cause further trauma and worsening of the symptoms, which can be quite severe. Morton’s Neuroma most often affects women who frequently wear pointed, high-heeled and close-toed shoes, the mechanics of which transfer body weight to the toes, placing undo force on the toes and their ligaments.\r\n<h3><em>Bunions</em></h3>\r\nBunions are another widespread, persistent foot complaint, also commonly seen in women. This growth in boney tissue occurs mainly on the medial side of the foot, producing the characteristic bump or bunion. Joint instability here causes the bones of the toes to move in an abnormal fashion with this shift leading to the formation of this boney projection on the medial side of the toe in an attempt to stabilize joint motion.\r\n<h3><em>Stiff Big Toe or Hallux Rigidus</em></h3>\r\nHallux rigidus is a disorder of the joint at the base of the big toe, which causes pain and stiffness in the toe. Over time, the toe becomes increasingly more difficult to bend. Hallux refers to the big toe, and rigidus means the toe is rigid. The condition is caused by degenerating cartilage in the metatarsophalangeal (MTP) joint of the big toe, which will eventually lead to the formation of bone spurs that form around the joint—a last ditch effort of the body to recover joint stability and stabilize the joint. The underlying condition of both bunions and hallux rigidus is instability that causes arthritis of the MTP joint.\r\n\r\nAbnormal joint shifts are what precipitate the pathological bone growth associated with bunions, reducing movement in both flexion and extension, and leading to hallux rigidus and to a potentially frozen joint.\r\n<h2>Treatment for Foot Pain</h2>\r\nStandard treatment for foot pain is generally conservative, beginning with choosing properly fitting shoes. NSAIDs are often prescribed along with physical therapy. When foot and toe pain continue, surgery is frequently considered. In fact, surgery on the first metatarsophalangeal joint is amongst the most common surgery performed.\r\n\r\nDespite the commonality of these treatments, a large percentage of people continue to suffer with foot and toe pain. An effective alternative treatment for reduction and elimination of this pain is Regenerative Orthopedics, because it addresses the underlying cause of the problem, the joint instability caused by ligament and tendon injury. By strengthening ligaments and tendons, Regenerative Orthopedics can stop the pathologic cascade causing these persistent foot conditions, stabilizing the joint and bringing pain relief.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Persistent Foot Pain and Toe Pain','','inherit','closed','closed','','3199-revision-v1','','','2020-08-24 23:59:48','2020-08-24 23:59:48','',3199,'https://www.drfields.com/uncategorized/3199-revision-v1/',0,'revision','',0),(4012,9,'2020-08-25 00:16:35','2020-08-25 00:16:35','[caption id=\"attachment_4007\" align=\"alignleft\" width=\"439\"]<img class=\" wp-image-4007\" src=\"https://www.drfields.com/wp-content/uploads/2020/08/Foot-pain-copy-1-500x500.jpg\" alt=\"The Shoes We Wear\" width=\"439\" height=\"439\" /> Do you wear pointy, closed-toed shoes?[/caption]\r\n\r\nPersistent foot and toe pain affects an incredibly large part of our population. And it\'s no wonder. We spend hours on our feet every day, working, playing, and engaging in everyday activities. Some of us pound our feet running marathons, while others try to reach that goal of 10,000 steps a day. Each of those steps generates a force on the foot.\r\n\r\nAdd to that, activities like jumping and running, and the force we place on our feet increases that much more. During an average day, the feet support a combined force equivalent to several hundred tons. It is not surprising, then, that the majority of us experience foot pain at some point in our lives.\r\n<h2>Factors That Cultivate Problems of Foot Pain</h2>\r\nWe can compound our problems of foot pain by our choices of footwear. Improper foot mechanics with walking, running and intense training can cause problems with our feet too. Various physical conditions such as high arches, fallen arches, degenerative arthritis, bony abnormalities, flat-footedness, inflammatory joint diseases and excess weight also predispose us to foot pain.\r\n\r\n&nbsp;\r\n<h2>More about the Foot</h2>\r\nThe foot, if we include the toes and ankle, contains 26 bones. That\'s a lot of bones. Plus, all of those bones make up 33 joints supported by more than 100 muscles, tendons and ligaments. Any of these structures can become weakened or injured. And that means a whole lot of different structures can get injured. Those injuries destabilize the foot, because they cause insufficient ligament and tendon support for proper motion in the joints. The result is foot pain due to the joints of the foot becoming weak, lax, and unstable.\r\n<h2>What Happens When the Foot Joints Become Unstable?</h2>\r\nInstability in any joint typically begins with an injury to the ligaments and tendons that support the joint. Because the joint is no longer held in place by healthy ligaments and tendons, abnormal joint motion develops. This abnormality in the movement of the joint results in a greater amount of pressure being exerted on the different parts of the joint.\r\n\r\nAll of the structures of the joint can become damaged. Even the cartilage. When cartilage degenerates, the joint will crunch and grind. As time passes, the body reacts to this instability by contracting the muscles in the area. You will experience that as muscle spasms.\r\n\r\nEventually, these tense muscles fatigue and lose their strength. Then the ligaments and tendons will try even harder to stabilize the joints. But they will become damaged further. That is the cycle of abnormal joint motion. And it results in degeneration of the joint. The body responds to the failure of these various soft tissue structures by increasing bone mass in an attempt to stabilize the joint. In other words, arthritis will develop. And arthritis is a frequent diagnosis related to foot pain.\r\n<h2>Some Common Foot and Toe Conditions</h2>\r\nInstability of the joints of the foot can also result in a number of toe and forefoot conditions. These include Morton’s Neuroma, bunions (hallux valgus), and a stiff, degenerated, big toe called hallus rigidis.  The origin of these conditions can be traced back to an original ligament injury or weakness.\r\n<h3><em>Morton’s Neuroma</em></h3>\r\nMorton’s Neuroma refers to a fibrous tissue formation around nerve tissue in the spaces between the toes. It results in symptoms like sharp pains, burning sensations, and paresthesias (abnormal sensations).\r\n\r\nThis condition is not traditionally thought of as being an instability problem. However, injury to ligaments of the foot can cause excessive motion between the bones of the toes, causing irritation of the bursa or a nerve, and can result in a significant enlargement of the nerve. This enlargement can cause further trauma and worsening of the symptoms. And they can be quite severe.\r\n\r\nMorton’s Neuroma most often affects women who frequently wear pointed, high-heeled and close-toed shoes, the mechanics of which transfer body weight to the toes, placing undo force on the toes and their ligaments.\r\n<h3><em>Bunions</em></h3>\r\nBunions are another widespread, persistent foot complaint, also commonly seen in women. This growth in boney tissue occurs mainly on the medial side of the foot, producing the characteristic bump or bunion. Joint instability here causes the bones of the toes to move in an abnormal fashion. This shift leads to the formation of the boney projection on the medial side of the toe in an attempt to stabilize joint motion.\r\n<h3><em>Stiff Big Toe or Hallux Rigidus</em></h3>\r\nHallux rigidus is a disorder of the joint at the base of the big toe, which causes pain and stiffness in the toe. Over time, the toe becomes increasingly more difficult to bend.\r\n\r\nHallux refers to the big toe. And rigidus means the toe is rigid. The condition is caused by degenerating cartilage in the metatarsophalangeal (MTP) joint of the big toe. Eventually, it will lead to the formation of bone spurs around the joint—a last ditch effort of the body to stabilize the joint.\r\n\r\nThe underlying condition of both bunions and hallux rigidus is instability that causes arthritis of the MTP joint.\r\n\r\nAbnormal joint shifts are what precipitate the pathological bone growth associated with bunions, reducing movement in both flexion and extension, and leading to hallux rigidus and to a potentially frozen joint.\r\n<h2>Treatment for Foot and Toe Pain</h2>\r\nStandard treatment for foot pain is generally conservative, beginning with choosing properly fitting shoes. NSAIDs are often prescribed, along with physical therapy. When foot and toe pain continue, surgery is frequently considered. In fact, surgery on the first metatarsophalangeal joint is one of the most common surgery performed.\r\n\r\n[caption id=\"attachment_4008\" align=\"alignright\" width=\"358\"]<img class=\" wp-image-4008\" src=\"https://www.drfields.com/wp-content/uploads/2020/08/Penny.-foot-500x500.jpg\" alt=\"Penny. Foot\" width=\"358\" height=\"358\" /> Regenerative Orthopedics instead of Surgery for foot and toe pain![/caption]\r\n<h3>Regenerative Orthopedics for Foot and Toe Pain</h3>\r\nDespite the commonality of these treatments, a large percentage of people continue to suffer with foot and toe pain. An effective alternative treatment for reduction and elimination of this pain is Regenerative Orthopedics, because it addresses the underlying cause of the problem, the joint instability caused by ligament and tendon injury.\r\n\r\nBy strengthening ligaments and tendons, Regenerative Orthopedics can stop the pathologic cascade causing these persistent foot conditions, stabilizing the joint and bringing pain relief.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Persistent Foot Pain and Toe Pain','','inherit','closed','closed','','3199-revision-v1','','','2020-08-25 00:16:35','2020-08-25 00:16:35','',3199,'https://www.drfields.com/uncategorized/3199-revision-v1/',0,'revision','',0),(4013,9,'2020-08-25 03:01:46','2020-08-25 03:01:46','<h2>Why Regenerative Orthopedics Is the Ideal Sports Medicine</h2>\nWe see athletes of all ages in our clinic all of the time. It doesn’t matter if you are 15 or 95. Because if you love sports or enjoy an active lifestyle, you don’t want to have to stop because of an injury. And Regenerative Orthopedics is the ideal sports medicine to get you back in the game!\n\nSports injuries from ligament tears, meniscus injuries, tendon injuries, wear and tear, and other soft tissue injuries are common reasons people seek care. In fact, over 90% of athletic injuries involve stretched, torn or weakened soft tissue of some sort. Sports injuries, whether of the ankle, knee, shoulder, hip, or back occur when the repetitive strain of the athletic activity is too much for a particular ligament, tendon, or muscle to perform.\n\n[caption id=\"attachment_3792\" align=\"alignleft\" width=\"395\"]<img class=\" wp-image-3792\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/joint-injury.do-what-you-love-Copy-2-1-500x500.png\" alt=\"Joint Injury.do What You Love Copy 2 (1)\" width=\"395\" height=\"395\" /> <strong>Keep Doing What You Love</strong>[/caption]\n<h2>How Do Injuries Occur to the Meniscus, Tendons, and Other Soft Tissue?</h2>\nInjury to these soft tissue structures can transpire from a sudden traumatic injury or as a result of accumulative damage over the years. Many are considered an acute exacerbation of a chronic injury. Whether you run 3, 6, 10 miles or even a marathon, ride your bike, participate in martial arts, lift weights, play golf or tennis, the repetitive impact from athletic events can be enough to damage the various soft tissue structures.\n\nOver time the joint degenerates as these non-healed soft tissue injuries destabilize the joint. And Regenerative Orthopedics is an ideal sports medicine because it is extremely effective at healing and repairing these soft tissue injuries.\n<h2>Why Use Regenerative Orthopedics as the Ideal Sports Medicine?</h2>\nDoesn’t the body just heal on its own? Unfortunately, not all of these structures heal well on their own. Soft tissue structures like the cartilage, discs, labrum, ligaments, menisci and tendons are whiter in nature. That means they have a poor blood supply.\n\nBlood is what nourishes the joint. And therefore, the blood poor structures have a compromised healing ability after injury. These structures aren’t like muscles. You’ve probably noticed when you pull a muscle, or sustain a muscle injury, that in time, it will get better. Why is that? The muscles are red. That means they have a good blood supply and repair more easily. Regenerative Orthopedics helps the body to get more blood to these blood poor structures so they can heal more efficiently.\n<h2>The Role of the Ligaments</h2>\nIn order for the joint to function like it should, all of the joint structures, including the white tissue structures, the muscles and the bony structures need to be well. They all work together to stabilize the joint and keep it working optimally. But the ligaments are the primary stabilizing structures.\n\nLigaments are key at maintaining joint health. Unfortunately, ligament injuries are one of the most common causes of pain from sport-related injuries. And they are white tissue structures. Plus, injured ligaments generate pain. They are a sensory organ with free nerve endings. The weakness that occurs after ligament injury to the knee, for example, may give rise to Runner’s knee, meniscal tears, chondromalacia patella, bone spurs and eventually to arthritis.\n\nWhen the ligament is injured, the harmony between the soft tissue, muscles and bony structures is disrupted. This interferes with mobility and joint stability. What results is an unstable joint, one that moves abnormally, and functions poorly. That results in more and more damage. When the ligaments are left untreated, the body will try to stabilize the joint by causing ongoing muscle spasms, and joint swelling. And eventually, bone spurs will form and arthritis will develop. A cycle of persistent pain is the result.\n<h3>Injury and the Path to Arthritis</h3>\nInvolvement in athletics provides us with physical, emotional and mental well-being. However, when we’re faced with injury, we often set into motion the cycle of instability in the joint as mentioned above. This cycle also leads to the eventual development of arthritis. The path to arthritis can occur within a few years with severe injuries, or take decades to develop when the injury is less severe.\n\n<span lang=\"en\">Although progressive cartilage loss with its inhibition of joint motion plays a central role in arthritis, injury to other soft tissue structures actually initiates the change in equilibrium that leads to this breakdown of cartilage and the path to arthritis. </span>Athletes of all ages desire to be as fit as when in the prime of their athletic careers. But the pain and symptoms from non-healed sports injuries interferes with that dream!\n\nRegenerative Orthopedics is the ideal sports medicine because in gets the athlete back on the path of healing and to reaching their goals and dreams.\n<h2>Treatment for Sports Injuries</h2>\nStandard treatments for sports injuries usually only involve the management of symptoms. Some of these treatments include pain medications, cortisone/steroid injections, physical therapy, massage and other therapies to provide pain relief. These treatments may work to relieve pain temporarily or momentarily reduce the pain and inflammation.\n\nBut when the athlete turns off the pain signal with medication use, while the joint is still injured, and continues to play and remain active on an injured joint, further damage ensues. It is important to realize that these treatment modalities do not repair soft tissue injuries, such as tendon, ligament, and meniscus tears, nor do they regenerate cartilage.\n<h3>Regenerative Orthopedics Is the Ideal Sports Medicine to Stimulate the Body to Repair</h3>\nThe key to keeping joints strong is to stimulate the area to heal. Regenerative Orthopedics does just that. And it offers hope to those suffering from sports injuries. They are the ideal treatment for sports injuries because they get you back to doing what you love.\n\nPlus, these therapies are non-surgical. <em><strong>The treatments regenerate and repair the damaged ligaments and soft tissues. And they allow the athlete to continue with their desired activity</strong></em>. Non-surgical regenerative therapies, including Stem Cell Therapy, PRP, and Prolotherapy, stimulate the natural regenerative processes in and around the joint. And they facilitate the restoration of the degenerated soft tissue to a healthy state. The result is improved joint support and function, and reduced pain and symptoms.\n\nRegenerative Orthopedics involves the injection of natural solutions. And sometimes, depending on the nature of injury or degeneration, will also include injections of an autologous preparation, from a person’s own plasma (blood), fat or bone marrow, injected directly into the damaged joint to accelerate the healing process.\n<h2>Sports injuries do not need to put an end to the enjoyment of sports activities. There is an effective option for repair!</h2>\nRegenerative Orthopedics <span lang=\"en\">is a great non-surgical treatment ideal for</span> offering not only pain relief from sports injuries, but healing and reparation at the source of the injury. This regeneration and repair enables the athlete of all ages to speedily return to the sport or activity they love with minimal lifestyle interruption.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Regenerative Orthopedics: The Ideal Sports Medicine','','inherit','closed','closed','','3134-autosave-v1','','','2020-08-25 03:01:46','2020-08-25 03:01:46','',3134,'https://www.drfields.com/uncategorized/3134-autosave-v1/',0,'revision','',0),(4014,9,'2020-08-25 00:34:37','2020-08-25 00:34:37','<h2>Why Regenerative Orthopedics Is the Ideal Sports Medicine</h2>\r\nWe see athletes of all ages in our clinic all of the time. It doesn’t matter if you are 15 or 95, because if you love sports or enjoy an active lifestyle, you don’t want to have to stop because of an injury. And Regenerative Orthopedics is the ideal sports medicine to get you back in the game!\r\n\r\nSports injuries from ligament tears, meniscus injuries, tendon injuries, wear and tear, and other soft tissue injuries are common reasons people seek care. In fact, over 90% of athletic injuries involve stretched, torn or weakened soft tissue of some sort. Sports injuries, whether of the ankle, knee, shoulder, hip, or back occur when the repetitive strain of the athletic activity is too much for a particular ligament, tendon, or muscle to perform.\r\n<h2>How Do Injuries Occur to the Meniscus, Tendons, and Other Soft Tissue?</h2>\r\nInjury to these soft tissue structures can transpire from a sudden traumatic injury or as a result of accumulative damage over the years. Many are considered an acute exacerbation of a chronic injury. Whether you run 3, 6, 10 miles or even a marathon, ride your bike, participate in martial arts, lift weights, play golf or tennis, the repetitive impact from athletic events can be enough to damage the various soft tissue structures.\r\n\r\nOver time the joint degenerates as these non-healed soft tissue injuries destabilize the joint. And Regenerative Orthopedics is an ideal sports medicine because it is extremely effective at healing and repairing these soft tissue injuries.\r\n<h2>What Do We Mean by Non-Healed Soft Tissue?</h2>\r\nDoesn’t the body just heal on its own? Unfortunately, not all of these structures heal well on their own. Soft tissue structures like the cartilage, discs, labrum, ligaments, menisci and tendons are whiter in nature, which means they have a poor blood supply.\r\n\r\nBlood is what nourishes the joint, and therefore, the blood poor structures have a compromised healing ability after injury. These structures aren’t like muscles. You’ve probably noticed when you pull a muscle, or sustain a muscle injury, that in time, it will get better. Why is that? The muscles are red, which means they have a good blood supply and repair more easily. Regenerative Orthopedics helps the body to get more blood to these blood poor structures so they can heal more efficiently.\r\n<h2>The Role of the Ligaments</h2>\r\nIn order for the joint to function like it should, all of the joint structures, including the white tissue structures, the muscles and the bony structures need to be well. They all work together to stabilize the joint and keep it working optimally. But the ligaments are the primary stabilizing structures.\r\n\r\nLigaments are key at maintaining joint health. Unfortunately, ligament injuries are one of the most common causes of pain from sport-related injuries. And they are white tissue structures. Plus, injured ligaments generate pain, because they are a sensory organ, with free nerve endings. The weakness that occurs after ligament injury to the knee, for example, may give rise to Runner’s knee, meniscal tears, chondromalacia patella, bone spurs and eventually to arthritis.\r\n\r\nWhen the ligament is injured, the harmony between the soft tissue, muscles and bony structures is disrupted, interfering with mobility and joint stability. What results is an unstable joint, one that moves abnormally, functions poorly, and becomes more and more damaged. When the ligaments are left untreated, the body will try to stabilize the joint by causing ongoing muscle spasms, joint swelling, and eventually bone spur formation and degenerative arthritis. A cycle of persistent pain is the result.\r\n<h3>Injury and the Path to Arthritis</h3>\r\nInvolvement in athletics provides us with physical, emotional and mental well-being. However, when we’re faced with injury, we often set into motion the cycle of instability in the joint as mentioned above. This cycle also leads to the eventual development of arthritis, which can occur within a few years with severe injuries, or take decades to develop when the injury is less severe.\r\n\r\n<span lang=\"en\">Although progressive cartilage loss with its inhibition of joint motion plays a central role in arthritis, injury to other soft tissue structures actually initiates the change in equilibrium that leads to this breakdown of cartilage and the path to arthritis. </span>Athletes of all ages desire to be as fit as when in the prime of their athletic careers. But the pain and symptoms from non-healed sports injuries interferes with that dream!\r\n\r\nRegenerative Orthopedics is the ideal sports medicine because in gets the athlete back on the path of healing and to reaching their goals and dreams.\r\n<h2>Treatment for Sports Injuries</h2>\r\nStandard treatments for sports injuries usually only involve the management of symptoms, which may include pain medications, cortisone/steroid injections, physical therapy, massage and other therapies to provide pain relief. These treatments may work to relieve pain temporarily or momentarily reduce the pain and inflammation.\r\n\r\nBut when the athlete turns off the pain signal with medication use, while the joint is still injured, and continues to play and remain active on an injured joint, further damage ensues. It is important to realize that these treatment modalities do not repair soft tissue injuries, such as tendon, ligament, and meniscus tears, nor do they regenerate cartilage.\r\n<h3>Regenerative Orthopedics Is the Ideal Sports Medicine to Stimulate the Body to Repair</h3>\r\nThe key to keeping joints strong is to stimulate the area to heal. Regenerative Orthopedics does just that, offering hope to those suffering from sports injuries. They are the ideal treatment for sports injuries because they get you back to doing what you love.\r\n\r\nPlus, these therapies are non-surgical. <em><strong>The treatments regenerate and repair the damaged ligaments and soft tissue, allowing the athlete to continue with their desired activity</strong></em>. Non-surgical regenerative therapies, including Stem Cell Therapy, PRP, and Prolotherapy, stimulate the natural regenerative processes in and around the joint. And they facilitate the restoration of the degenerated soft tissue to a healthy state, improving joint support and function, and reducing pain and symptoms.\r\n\r\nRegenerative Orthopedics involves the injection of natural solutions. And sometimes, depending on the nature of injury or degeneration, will also include injections of an autologous preparation, from a person’s own plasma (blood), fat or bone marrow, injected directly into the damaged joint to accelerate the healing process.\r\n<h2>Sports injuries do not need to put an end to the enjoyment of sports activities. There is an effective option for repair!</h2>\r\nRegenerative Orthopedics <span lang=\"en\">is a great non-surgical treatment ideal for</span> offering not only pain relief from sports injuries, but healing and reparation at the source of the injury. This regeneration and repair enables the athlete of all ages to speedily return to the sport or activity they love with minimal lifestyle interruption.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Why Regenerative Orthopedics Is the Ideal Sports Medicine','','inherit','closed','closed','','3134-revision-v1','','','2020-08-25 00:34:37','2020-08-25 00:34:37','',3134,'https://www.drfields.com/uncategorized/3134-revision-v1/',0,'revision','',0),(4015,9,'2020-08-25 00:35:15','2020-08-25 00:35:15','<h2>Why Regenerative Orthopedics Is the Ideal Sports Medicine</h2>\r\nWe see athletes of all ages in our clinic all of the time. It doesn’t matter if you are 15 or 95, because if you love sports or enjoy an active lifestyle, you don’t want to have to stop because of an injury. And Regenerative Orthopedics is the ideal sports medicine to get you back in the game!\r\n\r\nSports injuries from ligament tears, meniscus injuries, tendon injuries, wear and tear, and other soft tissue injuries are common reasons people seek care. In fact, over 90% of athletic injuries involve stretched, torn or weakened soft tissue of some sort. Sports injuries, whether of the ankle, knee, shoulder, hip, or back occur when the repetitive strain of the athletic activity is too much for a particular ligament, tendon, or muscle to perform.\r\n<h2>How Do Injuries Occur to the Meniscus, Tendons, and Other Soft Tissue?</h2>\r\nInjury to these soft tissue structures can transpire from a sudden traumatic injury or as a result of accumulative damage over the years. Many are considered an acute exacerbation of a chronic injury. Whether you run 3, 6, 10 miles or even a marathon, ride your bike, participate in martial arts, lift weights, play golf or tennis, the repetitive impact from athletic events can be enough to damage the various soft tissue structures.\r\n\r\nOver time the joint degenerates as these non-healed soft tissue injuries destabilize the joint. And Regenerative Orthopedics is an ideal sports medicine because it is extremely effective at healing and repairing these soft tissue injuries.\r\n<h2>What Do We Mean by Non-Healed Soft Tissue?</h2>\r\nDoesn’t the body just heal on its own? Unfortunately, not all of these structures heal well on their own. Soft tissue structures like the cartilage, discs, labrum, ligaments, menisci and tendons are whiter in nature, which means they have a poor blood supply.\r\n\r\nBlood is what nourishes the joint, and therefore, the blood poor structures have a compromised healing ability after injury. These structures aren’t like muscles. You’ve probably noticed when you pull a muscle, or sustain a muscle injury, that in time, it will get better. Why is that? The muscles are red, which means they have a good blood supply and repair more easily. Regenerative Orthopedics helps the body to get more blood to these blood poor structures so they can heal more efficiently.\r\n<h2>The Role of the Ligaments</h2>\r\nIn order for the joint to function like it should, all of the joint structures, including the white tissue structures, the muscles and the bony structures need to be well. They all work together to stabilize the joint and keep it working optimally. But the ligaments are the primary stabilizing structures.\r\n\r\nLigaments are key at maintaining joint health. Unfortunately, ligament injuries are one of the most common causes of pain from sport-related injuries. And they are white tissue structures. Plus, injured ligaments generate pain, because they are a sensory organ, with free nerve endings. The weakness that occurs after ligament injury to the knee, for example, may give rise to Runner’s knee, meniscal tears, chondromalacia patella, bone spurs and eventually to arthritis.\r\n\r\nWhen the ligament is injured, the harmony between the soft tissue, muscles and bony structures is disrupted, interfering with mobility and joint stability. What results is an unstable joint, one that moves abnormally, functions poorly, and becomes more and more damaged. When the ligaments are left untreated, the body will try to stabilize the joint by causing ongoing muscle spasms, joint swelling, and eventually bone spur formation and degenerative arthritis. A cycle of persistent pain is the result.\r\n<h3>Injury and the Path to Arthritis</h3>\r\nInvolvement in athletics provides us with physical, emotional and mental well-being. However, when we’re faced with injury, we often set into motion the cycle of instability in the joint as mentioned above. This cycle also leads to the eventual development of arthritis, which can occur within a few years with severe injuries, or take decades to develop when the injury is less severe.\r\n\r\n<span lang=\"en\">Although progressive cartilage loss with its inhibition of joint motion plays a central role in arthritis, injury to other soft tissue structures actually initiates the change in equilibrium that leads to this breakdown of cartilage and the path to arthritis. </span>Athletes of all ages desire to be as fit as when in the prime of their athletic careers. But the pain and symptoms from non-healed sports injuries interferes with that dream!\r\n\r\nRegenerative Orthopedics is the ideal sports medicine because in gets the athlete back on the path of healing and to reaching their goals and dreams.\r\n<h2>Treatment for Sports Injuries</h2>\r\nStandard treatments for sports injuries usually only involve the management of symptoms, which may include pain medications, cortisone/steroid injections, physical therapy, massage and other therapies to provide pain relief. These treatments may work to relieve pain temporarily or momentarily reduce the pain and inflammation.\r\n\r\nBut when the athlete turns off the pain signal with medication use, while the joint is still injured, and continues to play and remain active on an injured joint, further damage ensues. It is important to realize that these treatment modalities do not repair soft tissue injuries, such as tendon, ligament, and meniscus tears, nor do they regenerate cartilage.\r\n<h3>Regenerative Orthopedics Is the Ideal Sports Medicine to Stimulate the Body to Repair</h3>\r\nThe key to keeping joints strong is to stimulate the area to heal. Regenerative Orthopedics does just that, offering hope to those suffering from sports injuries. They are the ideal treatment for sports injuries because they get you back to doing what you love.\r\n\r\nPlus, these therapies are non-surgical. <em><strong>The treatments regenerate and repair the damaged ligaments and soft tissue, allowing the athlete to continue with their desired activity</strong></em>. Non-surgical regenerative therapies, including Stem Cell Therapy, PRP, and Prolotherapy, stimulate the natural regenerative processes in and around the joint. And they facilitate the restoration of the degenerated soft tissue to a healthy state, improving joint support and function, and reducing pain and symptoms.\r\n\r\nRegenerative Orthopedics involves the injection of natural solutions. And sometimes, depending on the nature of injury or degeneration, will also include injections of an autologous preparation, from a person’s own plasma (blood), fat or bone marrow, injected directly into the damaged joint to accelerate the healing process.\r\n<h2>Sports injuries do not need to put an end to the enjoyment of sports activities. There is an effective option for repair!</h2>\r\nRegenerative Orthopedics <span lang=\"en\">is a great non-surgical treatment ideal for</span> offering not only pain relief from sports injuries, but healing and reparation at the source of the injury. This regeneration and repair enables the athlete of all ages to speedily return to the sport or activity they love with minimal lifestyle interruption.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Regenerative Orthopedics: The Ideal Sports Medicine','','inherit','closed','closed','','3134-revision-v1','','','2020-08-25 00:35:15','2020-08-25 00:35:15','',3134,'https://www.drfields.com/uncategorized/3134-revision-v1/',0,'revision','',0),(4016,9,'2020-08-25 00:38:38','2020-08-25 00:38:38','<h2>Why Regenerative Orthopedics Is the Ideal Sports Medicine</h2>\r\nWe see athletes of all ages in our clinic all of the time. It doesn’t matter if you are 15 or 95, because if you love sports or enjoy an active lifestyle, you don’t want to have to stop because of an injury. And Regenerative Orthopedics is the ideal sports medicine to get you back in the game!\r\n\r\nSports injuries from ligament tears, meniscus injuries, tendon injuries, wear and tear, and other soft tissue injuries are common reasons people seek care. In fact, over 90% of athletic injuries involve stretched, torn or weakened soft tissue of some sort. Sports injuries, whether of the ankle, knee, shoulder, hip, or back occur when the repetitive strain of the athletic activity is too much for a particular ligament, tendon, or muscle to perform.\r\n\r\n[caption id=\"attachment_3792\" align=\"alignleft\" width=\"395\"]<img class=\" wp-image-3792\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/joint-injury.do-what-you-love-Copy-2-1-500x500.png\" alt=\"Joint Injury.do What You Love Copy 2 (1)\" width=\"395\" height=\"395\" /> <strong>Keep Doing What You Love</strong>[/caption]\r\n<h2>How Do Injuries Occur to the Meniscus, Tendons, and Other Soft Tissue?</h2>\r\nInjury to these soft tissue structures can transpire from a sudden traumatic injury or as a result of accumulative damage over the years. Many are considered an acute exacerbation of a chronic injury. Whether you run 3, 6, 10 miles or even a marathon, ride your bike, participate in martial arts, lift weights, play golf or tennis, the repetitive impact from athletic events can be enough to damage the various soft tissue structures.\r\n\r\nOver time the joint degenerates as these non-healed soft tissue injuries destabilize the joint. And Regenerative Orthopedics is an ideal sports medicine because it is extremely effective at healing and repairing these soft tissue injuries.\r\n<h2>What Do We Mean by Non-Healed Soft Tissue?</h2>\r\nDoesn’t the body just heal on its own? Unfortunately, not all of these structures heal well on their own. Soft tissue structures like the cartilage, discs, labrum, ligaments, menisci and tendons are whiter in nature, which means they have a poor blood supply.\r\n\r\nBlood is what nourishes the joint, and therefore, the blood poor structures have a compromised healing ability after injury. These structures aren’t like muscles. You’ve probably noticed when you pull a muscle, or sustain a muscle injury, that in time, it will get better. Why is that? The muscles are red, which means they have a good blood supply and repair more easily. Regenerative Orthopedics helps the body to get more blood to these blood poor structures so they can heal more efficiently.\r\n<h2>The Role of the Ligaments</h2>\r\nIn order for the joint to function like it should, all of the joint structures, including the white tissue structures, the muscles and the bony structures need to be well. They all work together to stabilize the joint and keep it working optimally. But the ligaments are the primary stabilizing structures.\r\n\r\nLigaments are key at maintaining joint health. Unfortunately, ligament injuries are one of the most common causes of pain from sport-related injuries. And they are white tissue structures. Plus, injured ligaments generate pain, because they are a sensory organ, with free nerve endings. The weakness that occurs after ligament injury to the knee, for example, may give rise to Runner’s knee, meniscal tears, chondromalacia patella, bone spurs and eventually to arthritis.\r\n\r\nWhen the ligament is injured, the harmony between the soft tissue, muscles and bony structures is disrupted, interfering with mobility and joint stability. What results is an unstable joint, one that moves abnormally, functions poorly, and becomes more and more damaged. When the ligaments are left untreated, the body will try to stabilize the joint by causing ongoing muscle spasms, joint swelling, and eventually bone spur formation and degenerative arthritis. A cycle of persistent pain is the result.\r\n<h3>Injury and the Path to Arthritis</h3>\r\nInvolvement in athletics provides us with physical, emotional and mental well-being. However, when we’re faced with injury, we often set into motion the cycle of instability in the joint as mentioned above. This cycle also leads to the eventual development of arthritis, which can occur within a few years with severe injuries, or take decades to develop when the injury is less severe.\r\n\r\n<span lang=\"en\">Although progressive cartilage loss with its inhibition of joint motion plays a central role in arthritis, injury to other soft tissue structures actually initiates the change in equilibrium that leads to this breakdown of cartilage and the path to arthritis. </span>Athletes of all ages desire to be as fit as when in the prime of their athletic careers. But the pain and symptoms from non-healed sports injuries interferes with that dream!\r\n\r\nRegenerative Orthopedics is the ideal sports medicine because in gets the athlete back on the path of healing and to reaching their goals and dreams.\r\n<h2>Treatment for Sports Injuries</h2>\r\nStandard treatments for sports injuries usually only involve the management of symptoms, which may include pain medications, cortisone/steroid injections, physical therapy, massage and other therapies to provide pain relief. These treatments may work to relieve pain temporarily or momentarily reduce the pain and inflammation.\r\n\r\nBut when the athlete turns off the pain signal with medication use, while the joint is still injured, and continues to play and remain active on an injured joint, further damage ensues. It is important to realize that these treatment modalities do not repair soft tissue injuries, such as tendon, ligament, and meniscus tears, nor do they regenerate cartilage.\r\n<h3>Regenerative Orthopedics Is the Ideal Sports Medicine to Stimulate the Body to Repair</h3>\r\nThe key to keeping joints strong is to stimulate the area to heal. Regenerative Orthopedics does just that, offering hope to those suffering from sports injuries. They are the ideal treatment for sports injuries because they get you back to doing what you love.\r\n\r\nPlus, these therapies are non-surgical. <em><strong>The treatments regenerate and repair the damaged ligaments and soft tissue, allowing the athlete to continue with their desired activity</strong></em>. Non-surgical regenerative therapies, including Stem Cell Therapy, PRP, and Prolotherapy, stimulate the natural regenerative processes in and around the joint. And they facilitate the restoration of the degenerated soft tissue to a healthy state, improving joint support and function, and reducing pain and symptoms.\r\n\r\nRegenerative Orthopedics involves the injection of natural solutions. And sometimes, depending on the nature of injury or degeneration, will also include injections of an autologous preparation, from a person’s own plasma (blood), fat or bone marrow, injected directly into the damaged joint to accelerate the healing process.\r\n<h2>Sports injuries do not need to put an end to the enjoyment of sports activities. There is an effective option for repair!</h2>\r\nRegenerative Orthopedics <span lang=\"en\">is a great non-surgical treatment ideal for</span> offering not only pain relief from sports injuries, but healing and reparation at the source of the injury. This regeneration and repair enables the athlete of all ages to speedily return to the sport or activity they love with minimal lifestyle interruption.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Regenerative Orthopedics: The Ideal Sports Medicine','','inherit','closed','closed','','3134-revision-v1','','','2020-08-25 00:38:38','2020-08-25 00:38:38','',3134,'https://www.drfields.com/uncategorized/3134-revision-v1/',0,'revision','',0),(4017,9,'2020-08-25 02:51:50','2020-08-25 02:51:50','<h2>Why Regenerative Orthopedics Is the Ideal Sports Medicine</h2>\r\nWe see athletes of all ages in our clinic all of the time. It doesn’t matter if you are 15 or 95, because if you love sports or enjoy an active lifestyle, you don’t want to have to stop because of an injury. And Regenerative Orthopedics is the ideal sports medicine to get you back in the game!\r\n\r\nSports injuries from ligament tears, meniscus injuries, tendon injuries, wear and tear, and other soft tissue injuries are common reasons people seek care. In fact, over 90% of athletic injuries involve stretched, torn or weakened soft tissue of some sort. Sports injuries, whether of the ankle, knee, shoulder, hip, or back occur when the repetitive strain of the athletic activity is too much for a particular ligament, tendon, or muscle to perform.\r\n\r\n[caption id=\"attachment_3792\" align=\"alignleft\" width=\"395\"]<img class=\" wp-image-3792\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/joint-injury.do-what-you-love-Copy-2-1-500x500.png\" alt=\"Joint Injury.do What You Love Copy 2 (1)\" width=\"395\" height=\"395\" /> <strong>Keep Doing What You Love</strong>[/caption]\r\n<h2>How Do Injuries Occur to the Meniscus, Tendons, and Other Soft Tissue?</h2>\r\nInjury to these soft tissue structures can transpire from a sudden traumatic injury or as a result of accumulative damage over the years. Many are considered an acute exacerbation of a chronic injury. Whether you run 3, 6, 10 miles or even a marathon, ride your bike, participate in martial arts, lift weights, play golf or tennis, the repetitive impact from athletic events can be enough to damage the various soft tissue structures.\r\n\r\nOver time the joint degenerates as these non-healed soft tissue injuries destabilize the joint. And Regenerative Orthopedics is an ideal sports medicine because it is extremely effective at healing and repairing these soft tissue injuries.\r\n<h2>Why Use Regenerative Orthopedics as the Ideal Sports Medicine?</h2>\r\nDoesn’t the body just heal on its own? Unfortunately, not all of these structures heal well on their own. Soft tissue structures like the cartilage, discs, labrum, ligaments, menisci and tendons are whiter in nature, which means they have a poor blood supply.\r\n\r\nBlood is what nourishes the joint, and therefore, the blood poor structures have a compromised healing ability after injury. These structures aren’t like muscles. You’ve probably noticed when you pull a muscle, or sustain a muscle injury, that in time, it will get better. Why is that? The muscles are red, which means they have a good blood supply and repair more easily. Regenerative Orthopedics helps the body to get more blood to these blood poor structures so they can heal more efficiently.\r\n<h2>The Role of the Ligaments</h2>\r\nIn order for the joint to function like it should, all of the joint structures, including the white tissue structures, the muscles and the bony structures need to be well. They all work together to stabilize the joint and keep it working optimally. But the ligaments are the primary stabilizing structures.\r\n\r\nLigaments are key at maintaining joint health. Unfortunately, ligament injuries are one of the most common causes of pain from sport-related injuries. And they are white tissue structures. Plus, injured ligaments generate pain, because they are a sensory organ, with free nerve endings. The weakness that occurs after ligament injury to the knee, for example, may give rise to Runner’s knee, meniscal tears, chondromalacia patella, bone spurs and eventually to arthritis.\r\n\r\nWhen the ligament is injured, the harmony between the soft tissue, muscles and bony structures is disrupted, interfering with mobility and joint stability. What results is an unstable joint, one that moves abnormally, functions poorly, and becomes more and more damaged. When the ligaments are left untreated, the body will try to stabilize the joint by causing ongoing muscle spasms, joint swelling, and eventually bone spur formation and degenerative arthritis. A cycle of persistent pain is the result.\r\n<h3>Injury and the Path to Arthritis</h3>\r\nInvolvement in athletics provides us with physical, emotional and mental well-being. However, when we’re faced with injury, we often set into motion the cycle of instability in the joint as mentioned above. This cycle also leads to the eventual development of arthritis, which can occur within a few years with severe injuries, or take decades to develop when the injury is less severe.\r\n\r\n<span lang=\"en\">Although progressive cartilage loss with its inhibition of joint motion plays a central role in arthritis, injury to other soft tissue structures actually initiates the change in equilibrium that leads to this breakdown of cartilage and the path to arthritis. </span>Athletes of all ages desire to be as fit as when in the prime of their athletic careers. But the pain and symptoms from non-healed sports injuries interferes with that dream!\r\n\r\nRegenerative Orthopedics is the ideal sports medicine because in gets the athlete back on the path of healing and to reaching their goals and dreams.\r\n<h2>Treatment for Sports Injuries</h2>\r\nStandard treatments for sports injuries usually only involve the management of symptoms, which may include pain medications, cortisone/steroid injections, physical therapy, massage and other therapies to provide pain relief. These treatments may work to relieve pain temporarily or momentarily reduce the pain and inflammation.\r\n\r\nBut when the athlete turns off the pain signal with medication use, while the joint is still injured, and continues to play and remain active on an injured joint, further damage ensues. It is important to realize that these treatment modalities do not repair soft tissue injuries, such as tendon, ligament, and meniscus tears, nor do they regenerate cartilage.\r\n<h3>Regenerative Orthopedics Is the Ideal Sports Medicine to Stimulate the Body to Repair</h3>\r\nThe key to keeping joints strong is to stimulate the area to heal. Regenerative Orthopedics does just that, offering hope to those suffering from sports injuries. They are the ideal treatment for sports injuries because they get you back to doing what you love.\r\n\r\nPlus, these therapies are non-surgical. <em><strong>The treatments regenerate and repair the damaged ligaments and soft tissue, allowing the athlete to continue with their desired activity</strong></em>. Non-surgical regenerative therapies, including Stem Cell Therapy, PRP, and Prolotherapy, stimulate the natural regenerative processes in and around the joint. And they facilitate the restoration of the degenerated soft tissue to a healthy state, improving joint support and function, and reducing pain and symptoms.\r\n\r\nRegenerative Orthopedics involves the injection of natural solutions. And sometimes, depending on the nature of injury or degeneration, will also include injections of an autologous preparation, from a person’s own plasma (blood), fat or bone marrow, injected directly into the damaged joint to accelerate the healing process.\r\n<h2>Sports injuries do not need to put an end to the enjoyment of sports activities. There is an effective option for repair!</h2>\r\nRegenerative Orthopedics <span lang=\"en\">is a great non-surgical treatment ideal for</span> offering not only pain relief from sports injuries, but healing and reparation at the source of the injury. This regeneration and repair enables the athlete of all ages to speedily return to the sport or activity they love with minimal lifestyle interruption.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Regenerative Orthopedics: The Ideal Sports Medicine','','inherit','closed','closed','','3134-revision-v1','','','2020-08-25 02:51:50','2020-08-25 02:51:50','',3134,'https://www.drfields.com/uncategorized/3134-revision-v1/',0,'revision','',0),(4018,9,'2020-08-25 02:56:24','2020-08-25 02:56:24','<h2>Why Regenerative Orthopedics Is the Ideal Sports Medicine</h2>\r\nWe see athletes of all ages in our clinic all of the time. It doesn’t matter if you are 15 or 95. Because if you love sports or enjoy an active lifestyle, you don’t want to have to stop because of an injury. And Regenerative Orthopedics is the ideal sports medicine to get you back in the game!\r\n\r\nSports injuries from ligament tears, meniscus injuries, tendon injuries, wear and tear, and other soft tissue injuries are common reasons people seek care. In fact, over 90% of athletic injuries involve stretched, torn or weakened soft tissue of some sort. Sports injuries, whether of the ankle, knee, shoulder, hip, or back occur when the repetitive strain of the athletic activity is too much for a particular ligament, tendon, or muscle to perform.\r\n\r\n[caption id=\"attachment_3792\" align=\"alignleft\" width=\"395\"]<img class=\" wp-image-3792\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/joint-injury.do-what-you-love-Copy-2-1-500x500.png\" alt=\"Joint Injury.do What You Love Copy 2 (1)\" width=\"395\" height=\"395\" /> <strong>Keep Doing What You Love</strong>[/caption]\r\n<h2>How Do Injuries Occur to the Meniscus, Tendons, and Other Soft Tissue?</h2>\r\nInjury to these soft tissue structures can transpire from a sudden traumatic injury or as a result of accumulative damage over the years. Many are considered an acute exacerbation of a chronic injury. Whether you run 3, 6, 10 miles or even a marathon, ride your bike, participate in martial arts, lift weights, play golf or tennis, the repetitive impact from athletic events can be enough to damage the various soft tissue structures.\r\n\r\nOver time the joint degenerates as these non-healed soft tissue injuries destabilize the joint. And Regenerative Orthopedics is an ideal sports medicine because it is extremely effective at healing and repairing these soft tissue injuries.\r\n<h2>Why Use Regenerative Orthopedics as the Ideal Sports Medicine?</h2>\r\nDoesn’t the body just heal on its own? Unfortunately, not all of these structures heal well on their own. Soft tissue structures like the cartilage, discs, labrum, ligaments, menisci and tendons are whiter in nature. That means they have a poor blood supply.\r\n\r\nBlood is what nourishes the joint. And therefore, the blood poor structures have a compromised healing ability after injury. These structures aren’t like muscles. You’ve probably noticed when you pull a muscle, or sustain a muscle injury, that in time, it will get better. Why is that? The muscles are red. That means they have a good blood supply and repair more easily. Regenerative Orthopedics helps the body to get more blood to these blood poor structures so they can heal more efficiently.\r\n<h2>The Role of the Ligaments</h2>\r\nIn order for the joint to function like it should, all of the joint structures, including the white tissue structures, the muscles and the bony structures need to be well. They all work together to stabilize the joint and keep it working optimally. But the ligaments are the primary stabilizing structures.\r\n\r\nLigaments are key at maintaining joint health. Unfortunately, ligament injuries are one of the most common causes of pain from sport-related injuries. And they are white tissue structures. Plus, injured ligaments generate pain. They are a sensory organ with free nerve endings. The weakness that occurs after ligament injury to the knee, for example, may give rise to Runner’s knee, meniscal tears, chondromalacia patella, bone spurs and eventually to arthritis.\r\n\r\nWhen the ligament is injured, the harmony between the soft tissue, muscles and bony structures is disrupted. This interferes with mobility and joint stability. What results is an unstable joint, one that moves abnormally, and functions poorly. That results in more and more damage. When the ligaments are left untreated, the body will try to stabilize the joint by causing ongoing muscle spasms, and joint swelling. And eventually, bone spurs will form and arthritis will develop. A cycle of persistent pain is the result.\r\n<h3>Injury and the Path to Arthritis</h3>\r\nInvolvement in athletics provides us with physical, emotional and mental well-being. However, when we’re faced with injury, we often set into motion the cycle of instability in the joint as mentioned above. This cycle also leads to the eventual development of arthritis, which can occur within a few years with severe injuries, or take decades to develop when the injury is less severe.\r\n\r\n<span lang=\"en\">Although progressive cartilage loss with its inhibition of joint motion plays a central role in arthritis, injury to other soft tissue structures actually initiates the change in equilibrium that leads to this breakdown of cartilage and the path to arthritis. </span>Athletes of all ages desire to be as fit as when in the prime of their athletic careers. But the pain and symptoms from non-healed sports injuries interferes with that dream!\r\n\r\nRegenerative Orthopedics is the ideal sports medicine because in gets the athlete back on the path of healing and to reaching their goals and dreams.\r\n<h2>Treatment for Sports Injuries</h2>\r\nStandard treatments for sports injuries usually only involve the management of symptoms, which may include pain medications, cortisone/steroid injections, physical therapy, massage and other therapies to provide pain relief. These treatments may work to relieve pain temporarily or momentarily reduce the pain and inflammation.\r\n\r\nBut when the athlete turns off the pain signal with medication use, while the joint is still injured, and continues to play and remain active on an injured joint, further damage ensues. It is important to realize that these treatment modalities do not repair soft tissue injuries, such as tendon, ligament, and meniscus tears, nor do they regenerate cartilage.\r\n<h3>Regenerative Orthopedics Is the Ideal Sports Medicine to Stimulate the Body to Repair</h3>\r\nThe key to keeping joints strong is to stimulate the area to heal. Regenerative Orthopedics does just that, offering hope to those suffering from sports injuries. They are the ideal treatment for sports injuries because they get you back to doing what you love.\r\n\r\nPlus, these therapies are non-surgical. <em><strong>The treatments regenerate and repair the damaged ligaments and soft tissue, allowing the athlete to continue with their desired activity</strong></em>. Non-surgical regenerative therapies, including Stem Cell Therapy, PRP, and Prolotherapy, stimulate the natural regenerative processes in and around the joint. And they facilitate the restoration of the degenerated soft tissue to a healthy state, improving joint support and function, and reducing pain and symptoms.\r\n\r\nRegenerative Orthopedics involves the injection of natural solutions. And sometimes, depending on the nature of injury or degeneration, will also include injections of an autologous preparation, from a person’s own plasma (blood), fat or bone marrow, injected directly into the damaged joint to accelerate the healing process.\r\n<h2>Sports injuries do not need to put an end to the enjoyment of sports activities. There is an effective option for repair!</h2>\r\nRegenerative Orthopedics <span lang=\"en\">is a great non-surgical treatment ideal for</span> offering not only pain relief from sports injuries, but healing and reparation at the source of the injury. This regeneration and repair enables the athlete of all ages to speedily return to the sport or activity they love with minimal lifestyle interruption.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Regenerative Orthopedics: The Ideal Sports Medicine','','inherit','closed','closed','','3134-revision-v1','','','2020-08-25 02:56:24','2020-08-25 02:56:24','',3134,'https://www.drfields.com/uncategorized/3134-revision-v1/',0,'revision','',0),(4019,9,'2020-08-25 03:01:52','2020-08-25 03:01:52','<h2>Why Regenerative Orthopedics Is the Ideal Sports Medicine</h2>\r\nWe see athletes of all ages in our clinic all of the time. It doesn’t matter if you are 15 or 95. Because if you love sports or enjoy an active lifestyle, you don’t want to have to stop because of an injury. And Regenerative Orthopedics is the ideal sports medicine to get you back in the game!\r\n\r\nSports injuries from ligament tears, meniscus injuries, tendon injuries, wear and tear, and other soft tissue injuries are common reasons people seek care. In fact, over 90% of athletic injuries involve stretched, torn or weakened soft tissue of some sort. Sports injuries, whether of the ankle, knee, shoulder, hip, or back occur when the repetitive strain of the athletic activity is too much for a particular ligament, tendon, or muscle to perform.\r\n\r\n[caption id=\"attachment_3792\" align=\"alignleft\" width=\"395\"]<img class=\" wp-image-3792\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/joint-injury.do-what-you-love-Copy-2-1-500x500.png\" alt=\"Joint Injury.do What You Love Copy 2 (1)\" width=\"395\" height=\"395\" /> <strong>Keep Doing What You Love</strong>[/caption]\r\n<h2>How Do Injuries Occur to the Meniscus, Tendons, and Other Soft Tissue?</h2>\r\nInjury to these soft tissue structures can transpire from a sudden traumatic injury or as a result of accumulative damage over the years. Many are considered an acute exacerbation of a chronic injury. Whether you run 3, 6, 10 miles or even a marathon, ride your bike, participate in martial arts, lift weights, play golf or tennis, the repetitive impact from athletic events can be enough to damage the various soft tissue structures.\r\n\r\nOver time the joint degenerates as these non-healed soft tissue injuries destabilize the joint. And Regenerative Orthopedics is an ideal sports medicine because it is extremely effective at healing and repairing these soft tissue injuries.\r\n<h2>Why Use Regenerative Orthopedics as the Ideal Sports Medicine?</h2>\r\nDoesn’t the body just heal on its own? Unfortunately, not all of these structures heal well on their own. Soft tissue structures like the cartilage, discs, labrum, ligaments, menisci and tendons are whiter in nature. That means they have a poor blood supply.\r\n\r\nBlood is what nourishes the joint. And therefore, the blood poor structures have a compromised healing ability after injury. These structures aren’t like muscles. You’ve probably noticed when you pull a muscle, or sustain a muscle injury, that in time, it will get better. Why is that? The muscles are red. That means they have a good blood supply and repair more easily. Regenerative Orthopedics helps the body to get more blood to these blood poor structures so they can heal more efficiently.\r\n<h2>The Role of the Ligaments</h2>\r\nIn order for the joint to function like it should, all of the joint structures, including the white tissue structures, the muscles and the bony structures need to be well. They all work together to stabilize the joint and keep it working optimally. But the ligaments are the primary stabilizing structures.\r\n\r\nLigaments are key at maintaining joint health. Unfortunately, ligament injuries are one of the most common causes of pain from sport-related injuries. And they are white tissue structures. Plus, injured ligaments generate pain. They are a sensory organ with free nerve endings. The weakness that occurs after ligament injury to the knee, for example, may give rise to Runner’s knee, meniscal tears, chondromalacia patella, bone spurs and eventually to arthritis.\r\n\r\nWhen the ligament is injured, the harmony between the soft tissue, muscles and bony structures is disrupted. This interferes with mobility and joint stability. What results is an unstable joint, one that moves abnormally, and functions poorly. That results in more and more damage. When the ligaments are left untreated, the body will try to stabilize the joint by causing ongoing muscle spasms, and joint swelling. And eventually, bone spurs will form and arthritis will develop. A cycle of persistent pain is the result.\r\n<h3>Injury and the Path to Arthritis</h3>\r\nInvolvement in athletics provides us with physical, emotional and mental well-being. However, when we’re faced with injury, we often set into motion the cycle of instability in the joint as mentioned above. This cycle also leads to the eventual development of arthritis. The path to arthritis can occur within a few years with severe injuries, or take decades to develop when the injury is less severe.\r\n\r\n<span lang=\"en\">Although progressive cartilage loss with its inhibition of joint motion plays a central role in arthritis, injury to other soft tissue structures actually initiates the change in equilibrium that leads to this breakdown of cartilage and the path to arthritis. </span>Athletes of all ages desire to be as fit as when in the prime of their athletic careers. But the pain and symptoms from non-healed sports injuries interferes with that dream!\r\n\r\nRegenerative Orthopedics is the ideal sports medicine because in gets the athlete back on the path of healing and to reaching their goals and dreams.\r\n<h2>Treatment for Sports Injuries</h2>\r\nStandard treatments for sports injuries usually only involve the management of symptoms. Some of these treatments include pain medications, cortisone/steroid injections, physical therapy, massage and other therapies to provide pain relief. These treatments may work to relieve pain temporarily or momentarily reduce the pain and inflammation.\r\n\r\nBut when the athlete turns off the pain signal with medication use, while the joint is still injured, and continues to play and remain active on an injured joint, further damage ensues. It is important to realize that these treatment modalities do not repair soft tissue injuries, such as tendon, ligament, and meniscus tears, nor do they regenerate cartilage.\r\n<h3>Regenerative Orthopedics Is the Ideal Sports Medicine to Stimulate the Body to Repair</h3>\r\nThe key to keeping joints strong is to stimulate the area to heal. Regenerative Orthopedics does just that. And it offers hope to those suffering from sports injuries. They are the ideal treatment for sports injuries because they get you back to doing what you love.\r\n\r\nPlus, these therapies are non-surgical. <em><strong>The treatments regenerate and repair the damaged ligaments and soft tissues. And they allow the athlete to continue with their desired activity</strong></em>. Non-surgical regenerative therapies, including Stem Cell Therapy, PRP, and Prolotherapy, stimulate the natural regenerative processes in and around the joint. And they facilitate the restoration of the degenerated soft tissue to a healthy state. The result is improved joint support and function, and reduced pain and symptoms.\r\n\r\nRegenerative Orthopedics involves the injection of natural solutions. And sometimes, depending on the nature of injury or degeneration, will also include injections of an autologous preparation, from a person’s own plasma (blood), fat or bone marrow, injected directly into the damaged joint to accelerate the healing process.\r\n<h2>Sports injuries do not need to put an end to the enjoyment of sports activities. There is an effective option for repair!</h2>\r\nRegenerative Orthopedics <span lang=\"en\">is a great non-surgical treatment ideal for</span> offering not only pain relief from sports injuries, but healing and reparation at the source of the injury. This regeneration and repair enables the athlete of all ages to speedily return to the sport or activity they love with minimal lifestyle interruption.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Regenerative Orthopedics: The Ideal Sports Medicine','','inherit','closed','closed','','3134-revision-v1','','','2020-08-25 03:01:52','2020-08-25 03:01:52','',3134,'https://www.drfields.com/uncategorized/3134-revision-v1/',0,'revision','',0),(4020,9,'2020-08-25 15:23:31','2020-08-25 15:23:31','Cortisone','Cortisone','Cortisone','inherit','open','closed','','cortisone','','','2020-08-25 15:25:48','2020-08-25 15:25:48','',2915,'https://www.drfields.com/wp-content/uploads/2020/08/cortisone.png',0,'attachment','image/png',0),(4021,9,'2020-08-25 15:39:41','2020-08-25 15:39:41','We have made reference to cortisone injections in several previous articles regarding treatment options for joint pain, because cortisone (steroid injection) is generally recommended by conventional medicine. Cortisone treatment may only result in temporary relief. And it is frequently used to delay the eventual joint replacement.\n\nBut did you know this commonly used treatment option may not be as safe as you think? Recently released evidence in the medical journal “Radiology,” describes the negative risks of using cortisone injections. <a href=\"#_edn1\" name=\"_ednref1\">[i]</a>Although prior studies have been conducted showing cortisone to have a negative impact on joints, this most recent article helps to bring awareness to the adverse effects cortisone injections have on the joint.\n\n[caption id=\"attachment_4020\" align=\"alignright\" width=\"400\"]<img class=\"wp-image-4020 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2020/08/cortisone-400x500.png\" alt=\"Cortisone\" width=\"400\" height=\"500\" /> <strong>     Cortisone Injections Can Be Toxic to Cartilage</strong>[/caption]\n<h2>What Happens When Cortisone Is Injected Into the Joint?</h2>\n<em><strong>Cortisone appears to be toxic to cartilage.</strong></em> When cortisone is injected into the joint, it actually boosts the progression of the destruction of cartilage. That means it accelerates arthritis.\n\nOftentimes, cortisone is injected into joints for relief of arthritis pain and the symptoms associated with it. But doesn\'t it seem contrary then, to use a “treatment” that makes arthritis worse, in an effort to treat it? Cortisone destroys cartilage, boosts cell death in the joint, and increases bone loss.\n<h2>Behind the Use of Cortisone Injections</h2>\nArthritis is a very common disease of the joint that limits activity and quality of life. It often results in disability. In an effort to treat arthritis, physicians initially approach pain and symptom control in a non-surgical fashion, generally attempting to delay the eventual joint replacement.\n\nAdditionally, older or sicker patients may not be able to tolerate surgery, and in those cases, more conservative treatments are needed and recommended. Cortisone injections may provide some patients with days of relief. Others may get months of pain and symptom control with cortisone injections into the joint. For this reason it is a commonly performed treatment, because it does reduce the inflammation and swelling of arthritis.\n\nPhysicians have known there were risks involved in the use of cortisone injections into joints! <em><strong>Even though the study mentioned in this article is a new study, there have been many previous studies demonstrating the risks and the damage cortisone does to the joint structures.</strong></em> That is why, when your physician discusses cortisone injection with you, it is recommended that the injections not be given more than once every three months. Hopefully, the reason behind the limits is explained as well. It is important for the patient to be educated on the risks of treatment with cortisone injections.\n<h2>Cortisone Injections May Do More Harm than Good</h2>\nThe researchers in this most recent study looked at the effect of cortisone injected into knees and hips. And they found that cortisone boosted the progression of arthritis and <strong>accelerated the need for joint replacement surgery.</strong>\n\nThe researchers looked at 459 patients who received one to three cortisone injections into the hip or knee in 2018. Almost a tenth developed complications such as cartilage loss, stress fractures, bone loss, and joint destruction in the two to fifteen months following the injections. The authors note that this percentage may be an understatement because half of the participants did not receive follow-up imaging tests to assess the health of their joints.\n\n<strong>In summary, the studies are showing that cortisone injections accelerate arthritis and can be detrimental in the long-run</strong>. But even with this knowledge, cortisone injections continue to be recommended frequently for joint pain. Millions of Americans suffer from arthritis and its symptoms of pain, swelling, cartilage loss, and bone destruction. Sufferers want relief, and the injections often give relief. And they are also covered by insurance.\n<h3>Alternatives to Cortisone Injections</h3>\nGiven that cortisone injections are being given more and more to treat pain in patients with joint arthritis, what is the alternative? Especially when you consider that many arthritis sufferers are at the point where they need relief to just live day to day.\n\nThat’s where Regenerative Orthopedics comes in!  Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to<strong> actually repair the arthritic joint.</strong> These treatments provide pain relief. But they don’t provide relief at the expense of the joint. <em><strong>They actually heal the joint, strengthen the structures of the joints, and even boost growth of cartilage</strong></em>. Regenerative Orthopedics regenerates the joint rather than causing degeneration like what occurs with cortisone injections.\n\nThere is also minimal downtime needed to receive these regenerative treatments. That means you can continue to exercise, and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\n\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire, while returning function to your painful arthritic joint, and helping you to once again enjoy the activities you desire to do.\n\n<a href=\"#_ednref1\" name=\"_edn1\"><strong>[i]</strong></a> Kompel AJ, Roemer FW, Murakami AM, Dias LE, Crema MD, Guermazi A.  Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology. Oct 15 2019. <a href=\"https://doi.org/10.1148/radiol.2019190341\" target=\"_blank\" rel=\"noopener noreferrer\">https://doi.org/10.1148/radiol.2019190341</a>\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Cortisone Injections Are As Safe As You Think','','inherit','closed','closed','','2915-autosave-v1','','','2020-08-25 15:39:41','2020-08-25 15:39:41','',2915,'https://www.drfields.com/uncategorized/2915-autosave-v1/',0,'revision','',0),(4022,9,'2020-08-25 15:25:39','2020-08-25 15:25:39','We have made reference to cortisone injections in several previous articles regarding treatment options for joint pain, because cortisone is generally recommended by conventional medicine. The treatment may only result in temporary relief, and is frequently used to delay the eventual joint replacement. But did you know this commonly used treatment option may not be as safe as you think? Recently released evidence in the medical journal “Radiology,” describes the negative risks of using cortisone injections. <a href=\"#_edn1\" name=\"_ednref1\">[i]</a>Although prior studies have been conducted showing cortisone to have a negative impact on joints, this most recent article helps to bring awareness to the adverse effects cortisone injections have on the joint.\r\n<h2>What Happens When Cortisone Is Injected Into the Joint?</h2>\r\nCortisone appears to be toxic to cartilage. When cortisone is injected into the joint it actually boosts the progression of the destruction of cartilage and therefore accelerates arthritis. Oftentimes, cortisone is injected into joints for relief of arthritis pain and the symptoms associated with it. It would seem contrary then, to use a “treatment” that makes arthritis worse, in an effort to treat it! Right? Cortisone destroys cartilage, boosts cell death in the joint, and increases bone loss.\r\n<h2>Behind the Use of Cortisone Injections</h2>\r\nArthritis is a very common disease of the joint that limits activity and quality of life, and often results in disability. In an effort to treat arthritis, physicians initially approach pain and symptom control in a non-surgical fashion, generally attempting to delay the eventual joint replacement. Additionally, older or sicker patients may not be able to tolerate surgery, and in those cases, more conservative treatments are needed and recommended. Cortisone injections may provide some patients with days of relief, while others may get months of pain and symptom control with cortisone injections into the joint. For this reason it is a commonly performed treatment, as it reduces the inflammation and swelling of arthritis.\r\n\r\nPhysicians have known there were risks involved in the use of cortisone injections into joints! Even though the study mentioned in this article is a new study, there have been many previous studies demonstrating the risks and the damage cortisone does to the joint structures. That is why, when your physician discusses cortisone injection with you, it is recommended that the injections not be given more than once every three months. Hopefully, the reason behind the limits is explained as well, since it is important for the patient to be educated on the risks of treatment with cortisone injections.\r\n<h2>Cortisone Injections May Do More Harm than Good</h2>\r\nThe researchers in this most recent study looked at the effect of cortisone injected into knees and hips, and found that the cortisone boosted the progression of arthritis and <strong>accelerated the need for joint replacement surgery.</strong> The researchers looked at 459 patients who received one to three cortisone injections into the hip or knee in 2018. Almost a tenth of these developed complications such as cartilage loss, stress fractures, bone loss, and joint destruction in the two to fifteen months following the injections. The authors note that this percentage may be an understatement because half of the participants did not receive follow-up imaging tests to assess the health of their joints.\r\n\r\n<strong>In summary, the studies are showing that cortisone injections accelerate arthritis and can be detrimental in the long-run</strong>. But even with this knowledge, cortisone injections continue to be recommended frequently for joint pain. Millions of Americans suffer from arthritis and its symptoms of pain, swelling, cartilage loss, and bone destruction. Sufferers want relief, and the injections often give relief. They are also covered by insurance.\r\n\r\nGiven that cortisone injections are being given more and more to treat pain in patients with joint arthritis, what is the alternative, especially since many sufferers are at the point where they need relief to just live day to day.\r\n\r\nThat’s where Regenerative Orthopedics comes in!  <strong>Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to actually repair the arthritic joint.</strong> These treatments provide pain relief, but they don’t do so at the expense of the joint. They actually heal the joint, strengthen the structures of the joints, and even boost growth of cartilage. Regenerative Orthopedics <strong>regenerates the joint</strong> rather than causing degeneration like what occurs with cortisone injections.\r\n\r\nThere is also minimal downtime needed to receive these regenerative treatments, so you can continue to exercise, and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility and strengthen muscles around the joints.\r\n\r\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire, while returning function to your painful arthritic joint, and helping you to once again enjoy the activities you desire to do.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\"><strong>[i]</strong></a> Kompel AJ, Roemer FW, Murakami AM, Dias LE, Crema MD, Guermazi A.  Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology. Oct 15 2019. <a href=\"https://doi.org/10.1148/radiol.2019190341\" target=\"_blank\" rel=\"noopener noreferrer\">https://doi.org/10.1148/radiol.2019190341</a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Cortisone Injections Are As Safe As You Think','','inherit','closed','closed','','2915-revision-v1','','','2020-08-25 15:25:39','2020-08-25 15:25:39','',2915,'https://www.drfields.com/uncategorized/2915-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (4023,9,'2020-08-25 15:43:37','2020-08-25 15:43:37','We have made reference to cortisone injections in several previous articles regarding treatment options for joint pain, because cortisone (steroid injection) is generally recommended by conventional medicine. Cortisone treatment may only result in temporary relief. And it is frequently used to delay the eventual joint replacement.\r\n\r\nBut did you know this commonly used treatment option may not be as safe as you think? Recently released evidence in the medical journal “Radiology,” describes the negative risks of using cortisone injections. <a href=\"#_edn1\" name=\"_ednref1\">[i]</a>Although prior studies have been conducted showing cortisone to have a negative impact on joints, this most recent article helps to bring awareness to the adverse effects cortisone injections have on the joint.\r\n\r\n[caption id=\"attachment_4020\" align=\"alignright\" width=\"400\"]<img class=\"wp-image-4020 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2020/08/cortisone-400x500.png\" alt=\"Cortisone\" width=\"400\" height=\"500\" /> <strong>     Cortisone Injections Can Be Toxic to Cartilage</strong>[/caption]\r\n<h2>What Happens When Cortisone Is Injected Into the Joint?</h2>\r\n<em><strong>Cortisone appears to be toxic to cartilage.</strong></em> When cortisone is injected into the joint, it actually boosts the progression of the destruction of cartilage. That means it accelerates arthritis.\r\n\r\nOftentimes, cortisone is injected into joints for relief of arthritis pain and the symptoms associated with it. But doesn\'t it seem contrary then, to use a “treatment” that makes arthritis worse, in an effort to treat it? Cortisone destroys cartilage, boosts cell death in the joint, and increases bone loss.\r\n<h2>Behind the Use of Cortisone Injections</h2>\r\nArthritis is a very common disease of the joint that limits activity and quality of life. It often results in disability. In an effort to treat arthritis, physicians initially approach pain and symptom control in a non-surgical fashion, generally attempting to delay the eventual joint replacement.\r\n\r\nAdditionally, older or sicker patients may not be able to tolerate surgery, and in those cases, more conservative treatments are needed and recommended. Cortisone injections may provide some patients with days of relief. Others may get months of pain and symptom control with cortisone injections into the joint. For this reason it is a commonly performed treatment, because it does reduce the inflammation and swelling of arthritis.\r\n\r\nPhysicians have known there were risks involved in the use of cortisone injections into joints! <em><strong>Even though the study mentioned in this article is a new study, there have been many previous studies demonstrating the risks and the damage cortisone does to the joint structures.</strong></em> That is why, when your physician discusses cortisone injection with you, it is recommended that the injections not be given more than once every three months. Hopefully, the reason behind the limits is explained as well. It is important for the patient to be educated on the risks of treatment with cortisone injections.\r\n<h2>Cortisone Injections May Do More Harm than Good</h2>\r\nThe researchers in this most recent study looked at the effect of cortisone injected into knees and hips. And they found that cortisone boosted the progression of arthritis and <strong>accelerated the need for joint replacement surgery.</strong>\r\n\r\nThe researchers looked at 459 patients who received one to three cortisone injections into the hip or knee in 2018. Almost a tenth developed complications such as cartilage loss, stress fractures, bone loss, and joint destruction in the two to fifteen months following the injections. The authors note that this percentage may be an understatement because half of the participants did not receive follow-up imaging tests to assess the health of their joints.\r\n\r\n<strong>In summary, the studies are showing that cortisone injections accelerate arthritis and can be detrimental in the long-run</strong>. But even with this knowledge, cortisone injections continue to be recommended frequently for joint pain. Millions of Americans suffer from arthritis and its symptoms of pain, swelling, cartilage loss, and bone destruction. Sufferers want relief, and the injections often give relief. And they are also covered by insurance.\r\n<h3>Alternatives to Cortisone Injections</h3>\r\nGiven that cortisone injections are being given more and more to treat pain in patients with joint arthritis, what is the alternative? Especially when you consider that many arthritis sufferers are at the point where they need relief to just live day to day.\r\n\r\nThat’s where Regenerative Orthopedics comes in!  Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to<strong> actually repair the arthritic joint.</strong> These treatments provide pain relief. But they don’t provide relief at the expense of the joint. <em><strong>They actually heal the joint, strengthen the structures of the joints, and even boost growth of cartilage</strong></em>. Regenerative Orthopedics regenerates the joint rather than causing degeneration like what occurs with cortisone injections.\r\n\r\nThere is also minimal downtime needed to receive these regenerative treatments. That means you can continue to exercise, and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire, while returning function to your painful arthritic joint, and helping you to once again enjoy the activities you desire to do.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\"><strong>[i]</strong></a> Kompel AJ, Roemer FW, Murakami AM, Dias LE, Crema MD, Guermazi A.  Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology. Oct 15 2019. <a href=\"https://doi.org/10.1148/radiol.2019190341\" target=\"_blank\" rel=\"noopener noreferrer\">https://doi.org/10.1148/radiol.2019190341</a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Cortisone Injections Are As Safe As You Think','','inherit','closed','closed','','2915-revision-v1','','','2020-08-25 15:43:37','2020-08-25 15:43:37','',2915,'https://www.drfields.com/uncategorized/2915-revision-v1/',0,'revision','',0),(4024,9,'2020-08-25 16:06:26','2020-08-25 16:06:26','Overuse Injuries can happen in any joint of the body. Repetitive strain from repeat motion and overuse due to particular jobs and activities can lead to these injuries.  Injuries, such as Runner’s Knee, Rotator Cuff Tendonitis, and Tennis Elbow are examples of overuse injuries.\n\nOveruse injuries are progressive activity-related injuries linked to repetitive stress that is placed on the tendon, ligament or other joint structure. Individuals with overuse injuries may try to manage their pain on their own for a while. They may attempt to stabilize the knee, shoulder or elbow with a brace. Or calm the pain with over-the-counter medications. Or even rest the joint a bit in order to find enough relief to be able to play in the next game, continue to work, or participate in their upcoming event.\n<h2>Common Causes of Overuse Injuries</h2>\nDoing too much of the same activity strains the tendons, ligaments, and other soft tissue structures. Training error and improper technique may add to the possibility of an overuse injury. Using poor or improper form during training exercises, while running on uneven ground, and when swinging a tennis racket. Or even poor form when painting walls can overload the muscles, tendons, and ligaments, and cause an overuse injury.\n\nIn cases of Runners Knee, for example, the repeated stress again and again,  from the force of hitting hard surfaces while contracting the leg muscle when running, results in a weakening of the tendon and ligaments. In overuse injuries, many may think the tendon or ligaments are just inflamed. And although the injury may begin with inflammation, when left untreated, this overuse injury overloads the tendon and ligaments. The result is degeneration or even in a tear. Many cases of overuse injuries become chronic with instances of recurrence.\n<h2>Symptoms of Overuse Injuries</h2>\nIn the beginning, pain and tenderness are noted in the affected area after physical activity. As the problem progresses, the pain and discomfort occur during activity. Of course, symptoms vary with the various joints and from person to person. But as the condition advances, swelling and pain will restrict the ability to perform sports or particular activities. Eventually, the pain and symptoms will persist, even at rest.\n<h2>Treating Overuse Injuries</h2>\nChasing and suppressing symptoms with bracing and pain medications may keep the swelling down and provide momentary pain relief. But a knee sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. The debilitating pain can keep the individual and athlete searching for a cure.\n<h3>Is surgery the answer?</h3>\nSurgery prolongs the athlete’s return to sport.<a href=\"#_edn1\" name=\"_ednref1\"><sup>[i]</sup></a>  Fortunately, there are non-surgical options!\n\nHere’s what doctors in New York say about the overuse injury patellar tendonitis, “Due to its common refractory response (difficulty in treating) to conservative treatment, a variety of new treatments have emerged recently that include...<strong>Prolotherapy</strong>, <strong>platelet-rich plasma therapy (PRP)</strong><strong>,</strong> arthroscopic surgical procedures, surgical resection of the inferior patellar pole (cutting away tendon tissue at the kneecap)…”<a href=\"#_edn2\" name=\"_ednref2\"><sup>[ii]</sup></a>\n\nAt OrthoRegen<sup>®</sup>, the regenerative treatments we use for painful joint conditions include Platelet Rich Plasma and Prolotherapy. But the researchers listed surgery too! Why do surgery if PRP is good enough? And is PRP good enough to effectively treat overuse conditions?\n\nWhat\n\nStudies done in Europe demonstrate the effectiveness of Platelet Rich Plasma for those with overuse conditions of the knee. And it is able to improve pain symptoms and functionality. Here is what they say: “The most important finding in our meta-analysis is that PRP injections are statistically better than the control group at longer term follow-up suggesting that PRP is an effective and worthwhile treatment for Patellar Tendinopathy. <a href=\"#_edn3\" name=\"_ednref3\">[iii]</a><sup>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup>\n\nA 2018 study agreed that multiple PRP injections offer the most satisfactory results.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a> Athletes are looking to non-surgical therapies such as Stem Cell Treatments, Platelet Rich Plasma, or Prolotherapy treatments, because they are showing improved outcomes in those with tendon and ligament conditions like Runner’s Knee.<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\n<h2>Treating Overuse Injuries with Regenerative Orthopedics</h2>\nAt OrthoRegen<sup>®</sup>, using regenerative therapies like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy is what we do. By treating overuse injuries with Regenerative Orthopedics, athletes can get back to their sport. And other individuals and non-athletes can return to the activities they love.\n\nWe see substantial, consistent improvements in pain outcomes when treating those with overuse injuries.  <strong>Regenerative Orthopedics can treat various joint disorders including problems of the tendons. </strong>That\'s because the injections are directed at the weakened tendons and involved ligaments which stimulate a string of healing events. The healing events include an increase of blood supply, an influx of reparative cells, and the deposition of collagen cells. And when the collagen matures, it will strengthen and tighten the damaged tendons and ligaments.\n\n<strong>Why would we treat the ligaments too? </strong>\n\nThe ongoing and recurring joint pain in overuse conditions is rooted in joint instability. Patients with overuse injuries often have concurrent weakness in the ligaments of the joint. These ligaments play a huge role in stabilizing the joint. And when weak, will put more strain on the tendon and other joint structures.\n\nThe problem of weak ligaments needs to be addressed in treatment. Therefore, we treat the joint comprehensively, and make sure we treat any injured and weakened ligaments as well, in order to achieve the best results. Comprehensive treatment will result in repair and healing of the entire joint, tightening of the ligaments, and strengthening and repair of the tendons. So the joint and all of its structures will function normally. And the athletes and individuals who were sidelined by overuse injuries will be able return confidently and pain-free to the sport and activities they love.\n\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Cook J L, Khan KM, Harcourt PR, <em>et al. </em><a href=\"http://bjsm.bmj.com/content/31/4/332.short\" target=\"_blank\" rel=\"noopener noreferrer\">A cross sectional study of 100 athletes with jumper’s knee managed conservatively and surgically.</a> The Victorian Institute of Sport Tendon Study Group. Br J Sports Med1997; 31: 332 – 336.\n\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Christian RA, Rossy WH, Sherman OH. Patellar tendinopathy – recent developments toward treatment. Bull Hosp Jt Dis (2013). 2014;72(3):217-24.\n\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Kaux JF, Bruyere O, Croisier JL, Forthomme B, Le Goff C, Crielaard JM. One-year follow-up of platelet-rich plasma infiltration to treat chronic proximal patellar tendinopathies. Acta Orthop Belg. 2015 Jun;81(2):251-6.\n\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Dupley L, Charalambous CP. Platelet-Rich Plasma Injections as a Treatment for Refractory Patellar Tendinosis: A Meta-Analysis of Randomised Trials. Knee surgery &amp; related research. 2017 Sep;29(3):165.\n\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.\n\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Kopka M, Bradley JP. The Use of Biologic Agents in Athletes with Knee Injuries. J Knee Surg. 2016 Jul;29(5):379-86. doi: 10.1055/s-0036-1584194. Epub 2016 May 20.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Do Overuse Injuries Have You Sidelined?','','inherit','closed','closed','','2912-autosave-v1','','','2020-08-25 16:06:26','2020-08-25 16:06:26','',2912,'https://www.drfields.com/uncategorized/2912-autosave-v1/',0,'revision','',0),(4025,9,'2020-08-25 16:06:42','2020-08-25 16:06:42','Overuse Injuries can happen in any joint of the body. Repetitive strain from repeat motion and overuse due to particular jobs and activities can lead to these injuries.  Injuries, such as Runner’s Knee, Rotator Cuff Tendonitis, and Tennis Elbow are examples of overuse injuries.\r\n\r\nOveruse injuries are progressive activity-related injuries linked to repetitive stress that is placed on the tendon, ligament or other joint structure. Individuals with overuse injuries may try to manage their pain on their own for a while. They may attempt to stabilize the knee, shoulder or elbow with a brace. Or calm the pain with over-the-counter medications. Or even rest the joint a bit in order to find enough relief to be able to play in the next game, continue to work, or participate in their upcoming event.\r\n<h2>Common Causes of Overuse Injuries</h2>\r\nDoing too much of the same activity strains the tendons, ligaments, and other soft tissue structures. Training error and improper technique may add to the possibility of an overuse injury. Using poor or improper form during training exercises, while running on uneven ground, and when swinging a tennis racket. Or even poor form when painting walls can overload the muscles, tendons, and ligaments, and cause an overuse injury.\r\n\r\nIn cases of Runners Knee, for example, the repeated stress again and again,  from the force of hitting hard surfaces while contracting the leg muscle when running, results in a weakening of the tendon and ligaments. In overuse injuries, many may think the tendon or ligaments are just inflamed. And although the injury may begin with inflammation, when left untreated, this overuse injury overloads the tendon and ligaments. The result is degeneration or even in a tear. Many cases of overuse injuries become chronic with instances of recurrence.\r\n<h2>Symptoms of Overuse Injuries</h2>\r\nIn the beginning, pain and tenderness are noted in the affected area after physical activity. As the problem progresses, the pain and discomfort occur during activity. Of course, symptoms vary with the various joints and from person to person. But as the condition advances, swelling and pain will restrict the ability to perform sports or particular activities. Eventually, the pain and symptoms will persist, even at rest.\r\n<h2>Treating Overuse Injuries</h2>\r\nChasing and suppressing symptoms with bracing and pain medications may keep the swelling down and provide momentary pain relief. But a knee sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. The debilitating pain can keep the individual and athlete searching for a cure.\r\n<h3>Is surgery the answer?</h3>\r\nSurgery prolongs the athlete’s return to sport.<a href=\"#_edn1\" name=\"_ednref1\"><sup>[i]</sup></a>  Fortunately, there are non-surgical options!\r\n\r\nHere’s what doctors in New York say about the overuse injury patellar tendonitis, “Due to its common refractory response (difficulty in treating) to conservative treatment, a variety of new treatments have emerged recently that include...<strong>Prolotherapy</strong>, <strong>platelet-rich plasma therapy (PRP)</strong><strong>,</strong> arthroscopic surgical procedures, surgical resection of the inferior patellar pole (cutting away tendon tissue at the kneecap)…”<a href=\"#_edn2\" name=\"_ednref2\"><sup>[ii]</sup></a>\r\n\r\nAt OrthoRegen<sup>®</sup>, the regenerative treatments we use for painful joint conditions include Platelet Rich Plasma and Prolotherapy. But the researchers listed surgery too! Why do surgery if PRP is good enough? And is PRP good enough to effectively treat overuse conditions?\r\n<h3>What Do the Studies Show?</h3>\r\nStudies done in Europe demonstrate the effectiveness of Platelet Rich Plasma for those with overuse conditions of the knee. And it is able to improve pain symptoms and functionality. Here is what they say: “The most important finding in our meta-analysis is that PRP injections are statistically better than the control group at longer term follow-up suggesting that PRP is an effective and worthwhile treatment for Patellar Tendinopathy. <a href=\"#_edn3\" name=\"_ednref3\">[iii]</a><sup>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup>\r\n\r\nA 2018 study agreed that multiple PRP injections offer the most satisfactory results.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a> Athletes are looking to non-surgical therapies such as Stem Cell Treatments, Platelet Rich Plasma, or Prolotherapy treatments, because they are showing improved outcomes in those with tendon and ligament conditions like Runner’s Knee.<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n<h2>Treating Overuse Injuries with Regenerative Orthopedics</h2>\r\nAt OrthoRegen<sup>®</sup>, using regenerative therapies like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy is what we do. By treating overuse injuries with Regenerative Orthopedics, athletes can get back to their sport. And other individuals and non-athletes can return to the activities they love.\r\n\r\nWe see substantial, consistent improvements in pain outcomes when treating those with overuse injuries.  <strong>Regenerative Orthopedics can treat various joint disorders including problems of the tendons. </strong>That\'s because the injections are directed at the weakened tendons and involved ligaments which stimulate a string of healing events. The healing events include an increase of blood supply, an influx of reparative cells, and the deposition of collagen cells. And when the collagen matures, it will strengthen and tighten the damaged tendons and ligaments.\r\n\r\n<strong>Why would we treat the ligaments too? </strong>\r\n\r\nThe ongoing and recurring joint pain in overuse conditions is rooted in joint instability. Patients with overuse injuries often have concurrent weakness in the ligaments of the joint. These ligaments play a huge role in stabilizing the joint. And when weak, will put more strain on the tendon and other joint structures.\r\n\r\nThe problem of weak ligaments needs to be addressed in treatment. Therefore, we treat the joint comprehensively, and make sure we treat any injured and weakened ligaments as well, in order to achieve the best results. Comprehensive treatment will result in repair and healing of the entire joint, tightening of the ligaments, and strengthening and repair of the tendons. So the joint and all of its structures will function normally. And the athletes and individuals who were sidelined by overuse injuries will be able return confidently and pain-free to the sport and activities they love.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Cook J L, Khan KM, Harcourt PR, <em>et al. </em><a href=\"http://bjsm.bmj.com/content/31/4/332.short\" target=\"_blank\" rel=\"noopener noreferrer\">A cross sectional study of 100 athletes with jumper’s knee managed conservatively and surgically.</a> The Victorian Institute of Sport Tendon Study Group. Br J Sports Med1997; 31: 332 – 336.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Christian RA, Rossy WH, Sherman OH. Patellar tendinopathy – recent developments toward treatment. Bull Hosp Jt Dis (2013). 2014;72(3):217-24.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Kaux JF, Bruyere O, Croisier JL, Forthomme B, Le Goff C, Crielaard JM. One-year follow-up of platelet-rich plasma infiltration to treat chronic proximal patellar tendinopathies. Acta Orthop Belg. 2015 Jun;81(2):251-6.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Dupley L, Charalambous CP. Platelet-Rich Plasma Injections as a Treatment for Refractory Patellar Tendinosis: A Meta-Analysis of Randomised Trials. Knee surgery &amp; related research. 2017 Sep;29(3):165.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Kopka M, Bradley JP. The Use of Biologic Agents in Athletes with Knee Injuries. J Knee Surg. 2016 Jul;29(5):379-86. doi: 10.1055/s-0036-1584194. Epub 2016 May 20.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Do Overuse Injuries Have You Sidelined?','','inherit','closed','closed','','2912-revision-v1','','','2020-08-25 16:06:42','2020-08-25 16:06:42','',2912,'https://www.drfields.com/uncategorized/2912-revision-v1/',0,'revision','',0),(4026,9,'2020-08-25 16:07:25','2020-08-25 16:07:25','Overuse Injuries can happen in any joint of the body. Repetitive strain from repeat motion and overuse due to particular jobs and activities can lead to these injuries.  Injuries, such as Runner’s Knee, Rotator Cuff Tendonitis, and Tennis Elbow are examples of overuse injuries.\r\n\r\nOveruse injuries are progressive activity-related injuries linked to repetitive stress that is placed on the tendon, ligament or other joint structure. Individuals with overuse injuries may try to manage their pain on their own for a while. They may attempt to stabilize the knee, shoulder or elbow with a brace. Or calm the pain with over-the-counter medications. Or even rest the joint a bit in order to find enough relief to be able to play in the next game, continue to work, or participate in their upcoming event.\r\n<h2>Common Causes of Overuse Injuries</h2>\r\nDoing too much of the same activity strains the tendons, ligaments, and other soft tissue structures. Training error and improper technique may add to the possibility of an overuse injury. Using poor or improper form during training exercises, while running on uneven ground, and when swinging a tennis racket. Or even poor form when painting walls can overload the muscles, tendons, and ligaments, and cause an overuse injury.\r\n\r\nIn cases of Runners Knee, for example, the repeated stress again and again,  from the force of hitting hard surfaces while contracting the leg muscle when running, results in a weakening of the tendon and ligaments. In overuse injuries, many may think the tendon or ligaments are just inflamed. And although the injury may begin with inflammation, when left untreated, this overuse injury overloads the tendon and ligaments. The result is degeneration or even in a tear. Many cases of overuse injuries become chronic with instances of recurrence.\r\n<h2>Symptoms of Overuse Injuries</h2>\r\nIn the beginning, pain and tenderness are noted in the affected area after physical activity. As the problem progresses, the pain and discomfort occur during activity. Of course, symptoms vary with the various joints and from person to person. But as the condition advances, swelling and pain will restrict the ability to perform sports or particular activities. Eventually, the pain and symptoms will persist, even at rest.\r\n<h2>Treating Overuse Injuries</h2>\r\nChasing and suppressing symptoms with bracing and pain medications may keep the swelling down and provide momentary pain relief. But a knee sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. The debilitating pain can keep the individual and athlete searching for a cure.\r\n<h3>Is surgery the answer?</h3>\r\nSurgery prolongs the athlete’s return to sport.<a href=\"#_edn1\" name=\"_ednref1\"><sup>[i]</sup></a>  Fortunately, there are non-surgical options!\r\n\r\nHere’s what doctors in New York say about the overuse injury patellar tendonitis, “Due to its common refractory response (difficulty in treating) to conservative treatment, a variety of new treatments have emerged recently that include...<strong>Prolotherapy</strong>, <strong>platelet-rich plasma therapy (PRP)</strong><strong>,</strong> arthroscopic surgical procedures, surgical resection of the inferior patellar pole (cutting away tendon tissue at the kneecap)…”<a href=\"#_edn2\" name=\"_ednref2\"><sup>[ii]</sup></a>\r\n\r\nAt OrthoRegen<sup>®</sup>, the regenerative treatments we use for painful joint conditions include Platelet Rich Plasma and Prolotherapy. But the researchers listed surgery too! Why do surgery if PRP is good enough? And is PRP good enough to effectively treat overuse conditions?\r\n<h3>What Do the Studies Show?</h3>\r\nStudies done in Europe demonstrate the effectiveness of Platelet Rich Plasma for those with overuse conditions of the knee. And it is able to improve pain symptoms and functionality. Here is what they say: “The most important finding in our meta-analysis is that PRP injections are statistically better than the control group at longer term follow-up suggesting that PRP is an effective and worthwhile treatment for Patellar Tendinopathy. <a href=\"#_edn3\" name=\"_ednref3\">[iii]</a><sup>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup>\r\n\r\nA 2018 study agreed that multiple PRP injections offer the most satisfactory results.<a href=\"#_edn5\" name=\"_ednref5\">[v]</a> Athletes are looking to non-surgical therapies such as Stem Cell Treatments, Platelet Rich Plasma, or Prolotherapy treatments, because they are showing improved outcomes in those with tendon and ligament conditions like Runner’s Knee.<a href=\"#_edn6\" name=\"_ednref6\">[vi]</a>\r\n<h2>Treating Overuse Injuries with Regenerative Orthopedics</h2>\r\nAt OrthoRegen<sup>®</sup>, using regenerative therapies like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy is what we do. By treating overuse injuries with Regenerative Orthopedics, athletes can get back to their sport. And other individuals and non-athletes can return to the activities they love.\r\n\r\nWe see substantial, consistent improvements in pain outcomes when treating those with overuse injuries.  <strong>Regenerative Orthopedics can treat various joint disorders including problems of the tendons. </strong>That\'s because the injections are directed at the weakened tendons and involved ligaments which stimulate a string of healing events. The healing events include an increase of blood supply, an influx of reparative cells, and the deposition of collagen cells. And when the collagen matures, it will strengthen and tighten the damaged tendons and ligaments.\r\n\r\n<strong>Why would we treat the ligaments too? </strong>\r\n\r\nThe ongoing and recurring joint pain in overuse conditions is rooted in joint instability. Patients with overuse injuries often have concurrent weakness in the ligaments of the joint. These ligaments play a huge role in stabilizing the joint. And when weak, will put more strain on the tendon and other joint structures.\r\n\r\nThe problem of weak ligaments needs to be addressed in treatment. Therefore, we treat the joint comprehensively, and make sure we treat any injured and weakened ligaments as well, in order to achieve the best results. Comprehensive treatment will result in repair and healing of the entire joint, tightening of the ligaments, and strengthening and repair of the tendons. So the joint and all of its structures will function normally. And the athletes and individuals who were sidelined by overuse injuries will be able return confidently and pain-free to the sport and activities they love.\r\n<h3>References</h3>\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Cook J L, Khan KM, Harcourt PR, <em>et al. </em><a href=\"http://bjsm.bmj.com/content/31/4/332.short\" target=\"_blank\" rel=\"noopener noreferrer\">A cross sectional study of 100 athletes with jumper’s knee managed conservatively and surgically.</a> The Victorian Institute of Sport Tendon Study Group. Br J Sports Med1997; 31: 332 – 336.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Christian RA, Rossy WH, Sherman OH. Patellar tendinopathy – recent developments toward treatment. Bull Hosp Jt Dis (2013). 2014;72(3):217-24.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Kaux JF, Bruyere O, Croisier JL, Forthomme B, Le Goff C, Crielaard JM. One-year follow-up of platelet-rich plasma infiltration to treat chronic proximal patellar tendinopathies. Acta Orthop Belg. 2015 Jun;81(2):251-6.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Dupley L, Charalambous CP. Platelet-Rich Plasma Injections as a Treatment for Refractory Patellar Tendinosis: A Meta-Analysis of Randomised Trials. Knee surgery &amp; related research. 2017 Sep;29(3):165.\r\n\r\n<a href=\"#_ednref5\" name=\"_edn5\">[v]</a> Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.\r\n\r\n<a href=\"#_ednref6\" name=\"_edn6\">[vi]</a> Kopka M, Bradley JP. The Use of Biologic Agents in Athletes with Knee Injuries. J Knee Surg. 2016 Jul;29(5):379-86. doi: 10.1055/s-0036-1584194. Epub 2016 May 20.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Do Overuse Injuries Have You Sidelined?','','inherit','closed','closed','','2912-revision-v1','','','2020-08-25 16:07:25','2020-08-25 16:07:25','',2912,'https://www.drfields.com/uncategorized/2912-revision-v1/',0,'revision','',0),(4027,9,'2020-08-25 17:04:27','2020-08-25 17:04:27','Runners Knee','Runners Knee','Runners Knee','inherit','open','closed','','runners-knee','','','2020-08-25 17:04:27','2020-08-25 17:04:27','',2894,'https://www.drfields.com/wp-content/uploads/2019/10/Runners-Knee.jpg',0,'attachment','image/jpeg',0),(4028,9,'2022-03-04 19:40:59','2022-03-04 19:40:59','[caption id=\"attachment_4027\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4027\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/Runners-Knee-500x500.jpg\" alt=\"Runners Knee\" width=\"500\" height=\"500\" /> Runners Knee[/caption]\n\nRunner’s Knee is a painful knee condition that is, like the name says, common in runners. Another name for Runner’s Knee is Patellofemoral Pain Syndrome (PFPS). And it is characterized by anterior knee pain.\n\nSufferers of this condition commonly experience pain behind and around the kneecap or patella. Runner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. It particularly affects adolescents and young adults. And it is quite common in younger recreational runners, with females suffering more frequently than males.\n\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur.\n\nThe patella not only moves up and down but also tilts and rotates. That allows for various points of contact between the patella and femur. Repetitive contact at these locations combined with the abnormal articulation of the patella is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome.\n\nPatellofemoral Pain Syndrome should be distinguished from chondromalacia. Chondromalacia is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\n<h2>What’s Behind Runner’s Knee?</h2>\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction may result from abnormal forces such as tight or weak quadriceps, subluxation, or dislocation of the patellofemoral joint can also present.\n\nRunner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. And anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Also, ligamentous, meniscal, and soft tissue damage can cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\n\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint. The abnormal movement leads to instability and improper tracking as the patella articulates with the patellofemoral groove in the femur.\n\nFor example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee (bending) as this movement increases the pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable. Especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces, and eventually the articular cartilage.\n<h2>What Are the Symptoms?</h2>\nBesides the tenderness behind, around, and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint. The pain typically occurs with activity. And it often worsens with activities that include steps, hills, and uneven surfaces.\n\nGoing downhill or downstairs aggravates the condition. Prolonged sitting can trigger pain due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\n<h2>How is Runner’s Knee Treated?</h2>\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, and orthotics. And physical therapy is often recommended. PT may include quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles, and iliotibial band stretching exercises.\n\n[caption id=\"attachment_4957\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4957\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/Runners-Knee.PRP_.Stems-4-500x419.png\" alt=\"Runner\'s Knee.prp.stems 4\" width=\"500\" height=\"419\" /> <strong>         PRP and Stem Cells Are Effective for Runner\'s Knee</strong>[/caption]\n\nThis approach may help temporarily. But it does not fix the problem of instability in the knee joint which is causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful. And exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee.\n\nRegenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella, will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening pulls the patella into the groove, which allows for a realignment of the patella.\nRegenerative Orthopedics along with vastus medialis strengthening will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee. The combination allows for a quick return to activities.\n<div class=\"vk-ContentBody sc-NQaSp cRMilg\">\n<p class=\"sc-hSBNlM iAaHRI\">A 2021 article in \"The American Journal of Sports Medicine\" says PRP, in combination with rehabilitation, is effective in reducing pain and improving activity levels for those with knee injuries like Runner\'s Knee.1</p>\n\n</div>\n<h3>References</h3>\nRodas, Gil, et al. \"Effect of autologous expanded bone marrow mesenchymal stem cells or leukocyte-poor platelet-rich plasma in chronic patellar tendinopathy (with gap&gt; 3 mm): preliminary outcomes after 6 months of a double-blind, randomized, prospective study.\" <i>The American Journal of Sports Medicine</i> 49.6 (2021): 1492-1504.\n<div class=\"sc-fvjPtz dgNjOL\"></div>\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Runner’s Knee Pain','','inherit','closed','closed','','2894-autosave-v1','','','2022-03-04 19:40:59','2022-03-04 19:40:59','',2894,'https://www.drfields.com/uncategorized/2894-autosave-v1/',0,'revision','',0),(4029,9,'2020-08-25 17:10:40','2020-08-25 17:10:40','[caption id=\"attachment_4027\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4027\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/Runners-Knee-500x500.jpg\" alt=\"Runners Knee\" width=\"500\" height=\"500\" /> Runners Knee[/caption]\r\n\r\nRunner’s Knee is a painful knee condition that is, like the name says, common in runners. Another name for Runner’s Knee is Patellofemoral Pain Syndrome (PFPS). And it is characterized by anterior knee pain.\r\n\r\nSufferers of this condition commonly experience pain behind and around the kneecap or patella. Runner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. It particularly affects adolescents and young adults. And is quite common in younger recreational runners, with females suffering more frequently than males.\r\n\r\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur.\r\n\r\nThe patella not only moves up and down, but also tilts and rotates. That allows for various points of contact between the patella and femur. Repetitive contact at these locations combined with abnormal articulation of the patella, is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome.\r\n\r\n&nbsp;\r\n\r\nPatellofemoral Pain Syndrome should be distinguished from chondromalacia, which is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\r\n<h2>What’s Behind Runner’s Knee?</h2>\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. Anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. Anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint, which causes instability and improper tracking as the patella articulates with the patellofemoral groove in the femur. For example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee as this movement increases pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable, especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces, and eventually the articular cartilage.\r\n<h2>Runner’s Knee Symptoms</h2>\r\nBesides the tenderness behind, around and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint. The pain typically occurs with activity and often worsens with activities that include steps, hills, and uneven surfaces. Going downhill or downstairs aggravates the condition. Pain can also be triggered by prolonged sitting, due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\r\n<h2>How is Runner’s Knee Treated?</h2>\r\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, orthotics and physical therapy with quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles and iliotibial band stretching exercises. This approach may help temporarily, but it does not fix the problem of instability in the knee joint which is causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful, and exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee. Regenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening will pull the patella into the groove, allowing for a realignment of the patella.\r\nRegenerative Orthopedics along with vastus medialis strengthening will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee, allowing for a quick return to activities.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Runner’s Knee Pain','','inherit','closed','closed','','2894-revision-v1','','','2020-08-25 17:10:40','2020-08-25 17:10:40','',2894,'https://www.drfields.com/uncategorized/2894-revision-v1/',0,'revision','',0),(4030,9,'2020-08-25 17:21:52','2020-08-25 17:21:52','[caption id=\"attachment_4027\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4027\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/Runners-Knee-500x500.jpg\" alt=\"Runners Knee\" width=\"500\" height=\"500\" /> Runners Knee[/caption]\r\n\r\nRunner’s Knee is a painful knee condition that is, like the name says, common in runners. Another name for Runner’s Knee is Patellofemoral Pain Syndrome (PFPS). And it is characterized by anterior knee pain.\r\n\r\nSufferers of this condition commonly experience pain behind and around the kneecap or patella. Runner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. It particularly affects adolescents and young adults. And is quite common in younger recreational runners, with females suffering more frequently than males.\r\n\r\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur.\r\n\r\nThe patella not only moves up and down, but also tilts and rotates. That allows for various points of contact between the patella and femur. Repetitive contact at these locations combined with abnormal articulation of the patella, is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome.\r\n\r\n&nbsp;\r\n\r\nPatellofemoral Pain Syndrome should be distinguished from chondromalacia, which is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\r\n<h2>What’s Behind Runner’s Knee?</h2>\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction may result from abnormal forces such as tight or weak quadriceps. subluxation or dislocation of the patellofemoral joint can also present.\r\n\r\nRunner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. And anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Also, ligamentous, meniscal, and soft tissue damage can cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint. The abnormal movement leads to instability and improper tracking as the patella articulates with the patellofemoral groove in the femur.\r\n\r\nFor example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee (bending) as this movement increases pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable. Especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces, and eventually the articular cartilage.\r\n<h2>What Are the Symptoms?</h2>\r\nBesides the tenderness behind, around, and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint. The pain typically occurs with activity. And it often worsens with activities that include steps, hills, and uneven surfaces.\r\n\r\nGoing downhill or downstairs aggravates the condition. Pain can also be triggered by prolonged sitting, due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\r\n<h2>How is Runner’s Knee Treated?</h2>\r\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, and orthotics. And physical therapy is commonly recommended. It often includes quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles, and iliotibial band stretching exercises.\r\n\r\nThis approach may help temporarily. But it does not fix the problem of instability in the knee joint which is causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful, and exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee.\r\n\r\nRegenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening will pull the patella into the groove, allowing for a realignment of the patella.\r\nRegenerative Orthopedics along with vastus medialis strengthening will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee. The combinations allows for a quick return to activities.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Runner’s Knee Pain','','inherit','closed','closed','','2894-revision-v1','','','2020-08-25 17:21:52','2020-08-25 17:21:52','',2894,'https://www.drfields.com/uncategorized/2894-revision-v1/',0,'revision','',0),(4031,9,'2020-08-25 17:29:24','2020-08-25 17:29:24','[caption id=\"attachment_4027\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4027\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/Runners-Knee-500x500.jpg\" alt=\"Runners Knee\" width=\"500\" height=\"500\" /> Runners Knee[/caption]\r\n\r\nRunner’s Knee is a painful knee condition that is, like the name says, common in runners. Another name for Runner’s Knee is Patellofemoral Pain Syndrome (PFPS). And it is characterized by anterior knee pain.\r\n\r\nSufferers of this condition commonly experience pain behind and around the kneecap or patella. Runner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. It particularly affects adolescents and young adults. And it is quite common in younger recreational runners, with females suffering more frequently than males.\r\n\r\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur.\r\n\r\nThe patella not only moves up and down, but also tilts and rotates. That allows for various points of contact between the patella and femur. Repetitive contact at these locations combined with abnormal articulation of the patella, is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome.\r\n\r\n&nbsp;\r\n\r\nPatellofemoral Pain Syndrome should be distinguished from chondromalacia. Chondromalacia is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\r\n<h2>What’s Behind Runner’s Knee?</h2>\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction may result from abnormal forces such as tight or weak quadriceps, subluxation, or dislocation of the patellofemoral joint can also present.\r\n\r\nRunner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. And anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Also, ligamentous, meniscal, and soft tissue damage can cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint. The abnormal movement leads to instability and improper tracking as the patella articulates with the patellofemoral groove in the femur.\r\n\r\nFor example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee (bending) as this movement increases pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable. Especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces, and eventually the articular cartilage.\r\n<h2>What Are the Symptoms?</h2>\r\nBesides the tenderness behind, around, and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint. The pain typically occurs with activity. And it often worsens with activities that include steps, hills, and uneven surfaces.\r\n\r\nGoing downhill or downstairs aggravates the condition. Prolonged sitting can trigger pain due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\r\n<h2>How is Runner’s Knee Treated?</h2>\r\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, and orthotics. And physical therapy is often recommended. PT may include quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles, and iliotibial band stretching exercises.\r\n\r\nThis approach may help temporarily. But it does not fix the problem of instability in the knee joint which is causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful. And exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee.\r\n\r\nRegenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening pulls the patella into the groove, which allows for a realignment of the patella.\r\nRegenerative Orthopedics along with vastus medialis strengthening will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee. The combination allows for a quick return to activities.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Runner’s Knee Pain','','inherit','closed','closed','','2894-revision-v1','','','2020-08-25 17:29:24','2020-08-25 17:29:24','',2894,'https://www.drfields.com/uncategorized/2894-revision-v1/',0,'revision','',0),(4032,9,'2020-08-25 17:31:21','2020-08-25 17:31:21','Snapping Hip Syndrome','Snapping Hip Syndrome','Snapping Hip Syndrome','inherit','open','closed','','snapping-hip-syndrome-2','','','2020-08-25 17:31:21','2020-08-25 17:31:21','',2892,'https://www.drfields.com/wp-content/uploads/2019/10/Snapping-Hip-Syndrome.png',0,'attachment','image/png',0),(4033,9,'2020-08-25 17:48:07','2020-08-25 17:48:07','In Snapping Hip Syndrome, sufferers hear or feel a snap, pop, or click when they move their hip joint. Encountering these symptoms is not a normal process, but one that points to an injury or degenerative condition.\n<h2>What Is the Cause of Snapping Hip Syndrome?</h2>\nThere are several reasons Snapping Hip Syndrome occurs, and they can be due to problems either inside or outside of the hip joint.\n\nMost commonly, the condition involves a thick, wide tendon called the <em><strong>iliotibial band</strong> </em>that runs along the outside or lateral side of the hip joint. The iliotibial band snaps over the bony prominence, a part of the thigh bone that sticks out, called the greater trochanter on the outside of the hip.\n\nWhen a person with this condition moves into a standing position for example, the band may be positioned behind the trochanter. And then when bending the hip, the band will move and “snap” over towards the front of the bony prominence. Over time, irritation from this “snapping” may also result in bursitis.\n\nAnother tendon is involved in the second cause of Snapping Hip Syndrome, as it catches on underlying bony prominences of the pelvis. The <em><strong>iliopsoas tendon</strong></em> snaps over the iliopectineal eminence when bending or flexing the hip. The annoying snapping sensation or sound is generally the only symptom involved when the iliopsoas tendon is the source.\n\nAn additional area where snapping can occur is located where the ball of the hip joint fits into the socket. This snapping involves the <em><strong>rectus femoris</strong></em> tendon as it runs from inside the thighbone and up through the pelvis. When the hip joint bends and straightens, the tendon moves and snaps back and forth across the ball of the hip joint.\n\nThe least common cause of Snapping Hip Syndrome occurs inside the hip joint and involves a <em><strong>tear in the hip labrum or a tear in the cartilage</strong></em>. Bits of cartilage or even bone can also become loose inside the joint, in these types of injuries. These pieces are called loose fragments and can be an associated cause of Snapping Hip Syndrome which can cause the hip to lock up. In this scenario inside the hip, the sufferer often experiences pain that is disabling.\n\nA combination of the various causes, plus muscle injury can also occur. Additionally, if the problem is ongoing and the tendons remain lax over a prolonged period of time, Snapping Hip Syndrome can lead to arthritis.\n<h2>Who Experiences Snapping Hip Syndrome?</h2>\n[caption id=\"attachment_4032\" align=\"alignright\" width=\"510\"]<img class=\"wp-image-4032 \" src=\"https://www.drfields.com/wp-content/uploads/2019/10/Snapping-Hip-Syndrome-500x500.png\" alt=\"Snapping Hip Syndrome\" width=\"510\" height=\"510\" /> <strong>                                  Snapping Hip Syndrome in Athletes </strong>[/caption]\n\nSnapping Hip Syndrome is common in young athletes like ballet dancers, soccer players, and runners. Dancers and other athletes repetitively move their hip in order to perform their dance or sport.\n\nIf the hip and the tendons are moving abnormally, such as with Snapping Hip Syndrome, the abnormal rubbing and snapping of the tissue over bony prominences will occur again and again.\n\nWhen experiencing the symptoms, these athletes will frequently turn to treatments to relieve tight muscles, because they attribute their problem to overtraining. Treating muscles may give some relief, but will not repair the underlying injury to the ligaments, tendons, and/or hip labrum.\n\nTreatments that repair these soft tissue structures are necessary to stabilize the hip joint and stop the snapping from occurring.\n<h2>Regenerative Orthopedic Treatments for Snapping Hip Syndrome</h2>\nRegenerative Orthopedics directed towards the strengthening of these tendons and any involved ligaments, plus repair of the hip labrum, can tighten the joint and resolve the problem.\n\nOftentimes an underlying problem of looseness or laxity of the hip joint is involved, causing instability of the hip joint. Regenerative Orthopedics treats the hip instability, because it tightens and strengthens the injured and lax structures, and regenerates the areas that need healing. The treatment actually gets to the root cause of the problem, and is effective at repairing the injured soft tissue, and resolving the problem.\n\nThe injected solutions in Regenerative Orthopedic treatments draw immune cells and growth factors to the area in an effort to build new healthy soft tissue. The healing and repair boosts the body’s natural response of healing in soft-tissue injuries.  The result is ligaments and tendons that are stronger, and no longer loose.  The snapping and pain goes away, and the athlete can return to the sport they love.\n\nIf the cause of Snapping Hip Syndrome is a torn labrum or cartilage, a more advanced technique of Regenerative Orthopedics, including Stem Cell Therapy and/or PRP, may be required.  Labral tears respond well to these treatments. And cartilage, if involved, can regenerate too. If loose fragments are an issue, the physician will need to determine whether or not surgical removal is necessary.\n\nRegenerative Orthopedic treatments for Snapping Hip Syndrome get to the root cause of the condition. Specifically, the damaged connective tissues like tendons ligaments, and labrum, can be repaired and healed. That means you return quickly to the sports and activities you enjoy doing.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Snapping Hip Syndrome and Athletes','','inherit','closed','closed','','2892-autosave-v1','','','2020-08-25 17:48:07','2020-08-25 17:48:07','',2892,'https://www.drfields.com/uncategorized/2892-autosave-v1/',0,'revision','',0),(4034,9,'2020-08-25 17:48:58','2020-08-25 17:48:58','In Snapping Hip Syndrome, sufferers hear or feel a snap, pop, or click when they move their hip joint. Encountering these symptoms is not a normal process, but one that points to an injury or degenerative condition.\r\n<h2>What Is the Cause of Snapping Hip Syndrome?</h2>\r\nThere are several reasons Snapping Hip Syndrome occurs, and they can be due to problems either inside or outside of the hip joint.\r\n\r\nMost commonly, the condition involves a thick, wide tendon called the <em><strong>iliotibial band</strong> </em>that runs along the outside or lateral side of the hip joint. The iliotibial band snaps over the bony prominence, a part of the thigh bone that sticks out, called the greater trochanter on the outside of the hip.\r\n\r\nWhen a person with this condition moves into a standing position for example, the band may be positioned behind the trochanter. And then when bending the hip, the band will move and “snap” over towards the front of the bony prominence. Over time, irritation from this “snapping” may also result in bursitis.\r\n\r\nAnother tendon is involved in the second cause of Snapping Hip Syndrome, as it catches on underlying bony prominences of the pelvis. The <em><strong>iliopsoas tendon</strong></em> snaps over the iliopectineal eminence when bending or flexing the hip. The annoying snapping sensation or sound is generally the only symptom involved when the iliopsoas tendon is the source.\r\n\r\nAn additional area where snapping can occur is located where the ball of the hip joint fits into the socket. This snapping involves the <em><strong>rectus femoris</strong></em> tendon as it runs from inside the thighbone and up through the pelvis. When the hip joint bends and straightens, the tendon moves and snaps back and forth across the ball of the hip joint.\r\n\r\nThe least common cause of Snapping Hip Syndrome occurs inside the hip joint and involves a <em><strong>tear in the hip labrum or a tear in the cartilage</strong></em>. Bits of cartilage or even bone can also become loose inside the joint, in these types of injuries. These pieces are called loose fragments and can be an associated cause of Snapping Hip Syndrome which can cause the hip to lock up. In this scenario inside the hip, the sufferer often experiences pain that is disabling.\r\n\r\nA combination of the various causes, plus muscle injury can also occur. Additionally, if the problem is ongoing and the tendons remain lax over a prolonged period of time, Snapping Hip Syndrome can lead to arthritis.\r\n<h2>Who Experiences Snapping Hip Syndrome?</h2>\r\n[caption id=\"attachment_4032\" align=\"alignright\" width=\"510\"]<img class=\"wp-image-4032 \" src=\"https://www.drfields.com/wp-content/uploads/2019/10/Snapping-Hip-Syndrome-500x500.png\" alt=\"Snapping Hip Syndrome\" width=\"510\" height=\"510\" /> <strong>                                  Snapping Hip Syndrome in Athletes </strong>[/caption]\r\n\r\nSnapping Hip Syndrome is common in young athletes like ballet dancers, soccer players, and runners. Dancers and other athletes repetitively move their hip in order to perform their dance or sport.\r\n\r\nIf the hip and the tendons are moving abnormally, such as with Snapping Hip Syndrome, the abnormal rubbing and snapping of the tissue over bony prominences will occur again and again.\r\n\r\nWhen experiencing the symptoms, these athletes will frequently turn to treatments to relieve tight muscles, because they attribute their problem to overtraining. Treating muscles may give some relief, but will not repair the underlying injury to the ligaments, tendons, and/or hip labrum.\r\n\r\nTreatments that repair these soft tissue structures are necessary to stabilize the hip joint and stop the snapping from occurring.\r\n<h2>Regenerative Orthopedic Treatments for Snapping Hip Syndrome</h2>\r\nRegenerative Orthopedics directed towards the strengthening of these tendons and any involved ligaments, plus repair of the hip labrum, can tighten the joint and resolve the problem.\r\n\r\nOftentimes an underlying problem of looseness or laxity of the hip joint is involved, causing instability of the hip joint. Regenerative Orthopedics treats the hip instability, because it tightens and strengthens the injured and lax structures, and regenerates the areas that need healing. The treatment actually gets to the root cause of the problem, and is effective at repairing the injured soft tissue, and resolving the problem.\r\n\r\nThe injected solutions in Regenerative Orthopedic treatments draw immune cells and growth factors to the area in an effort to build new healthy soft tissue. The healing and repair boosts the body’s natural response of healing in soft-tissue injuries.  The result is ligaments and tendons that are stronger, and no longer loose.  The snapping and pain goes away, and the athlete can return to the sport they love.\r\n\r\nIf the cause of Snapping Hip Syndrome is a torn labrum or cartilage, a more advanced technique of Regenerative Orthopedics, including <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a> and/or PRP, may be required.  Labral tears respond well to these treatments. And cartilage, if involved, can regenerate too. If loose fragments are an issue, the physician will need to determine whether or not surgical removal is necessary.\r\n\r\nRegenerative Orthopedic treatments for Snapping Hip Syndrome get to the root cause of the condition. Specifically, the damaged connective tissues like tendons ligaments, and labrum, can be repaired and healed. That means you return quickly to the sports and activities you enjoy doing.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Snapping Hip Syndrome and Athletes','','inherit','closed','closed','','2892-revision-v1','','','2020-08-25 17:48:58','2020-08-25 17:48:58','',2892,'https://www.drfields.com/uncategorized/2892-revision-v1/',0,'revision','',0),(4035,9,'2020-08-25 18:21:26','2020-08-25 18:21:26','<img class=\"alignleft size-full wp-image-288\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h6>Fees</h6>\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time.\r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Questions + Costs','','inherit','closed','closed','','2536-revision-v1','','','2020-08-25 18:21:26','2020-08-25 18:21:26','',2536,'https://www.drfields.com/uncategorized/2536-revision-v1/',0,'revision','',0),(4036,9,'2020-08-26 02:17:24','2020-08-26 02:17:24','Meniscus Tears','Meniscus Tears','Meniscus Tears','inherit','open','closed','','meniscus-tears','','','2020-08-26 02:17:24','2020-08-26 02:17:24','',1397,'https://www.drfields.com/wp-content/uploads/2019/10/meniscus-tears.jpg',0,'attachment','image/jpeg',0),(4037,9,'2020-08-26 02:43:47','2020-08-26 02:43:47','Meniscus tears of the knee and labral tears of the hip commonly occur from some form of trauma. Sporting events and activities are common culprits. The tears are not always immediate, but can arise after another structure of the hip or knee is damaged.\n\nInjury or damage to the joint inhibits normal functioning. And with continual use and wear and tear, the bones in the joint will rub against each other abnormally. Oftentimes,  the injury of ligaments, tendons and the meniscus or labrum make the joint unstable and painful. As this course continues, the knee or hip joint will degenerate and progress to arthritis.\n\n[caption id=\"attachment_4036\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4036 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/meniscus-tears-500x500.jpg\" alt=\"Meniscus Tears\" width=\"500\" height=\"500\" /> <strong>          Meniscus Tears Can Be Repaired Non-Surgically</strong>[/caption]\n<h4>The Meniscus Tears and Surgery</h4>\nThe menisci protect the cartilage in the knee from high stresses placed upon the joint. They are located between the femur and the tibia bones. Injury to the meniscus is one of the most common knee injuries for which people seek medical care.\n\nSurgery is frequently recommended for various types of meniscus tears. Types of meniscus tears include bucket handle tears, radial tears, horizontal tears, and oblique tears. When more than one of these patterns is present, the tear is called a complex tear. Surgery is frequently recommended for these tears. But surgery, including arthroscopic surgery, adds to the instability of the joint. Why? Because during the surgery joint structures are cut, scraped and removed.\n\nThe meniscus and the articular cartilage are the most commonly removed structures, when arthroscopic surgery of the knee is performed. When the meniscus and cartilage are removed, the femur bone is unable to glide smoothly over the tibia. This enhances knee instability and hastens the arthritic rate. Iet changes th dynamics within the joint causing abnormal knee joint function.\n\nArthroscopic surgery boosts arthritic degeneration, because pressure on the cartilage escalates when the meniscus is removed, and the joint becomes more unstable with the stretching, cutting and scraping of the ligaments, tendons and cartilage. The degeneration of the articular cartilage appears to be proportional to the size of the segment removed. The joint breakdown leads to further thinning of the remaining articular cartilage. This allows for increased pressure on the underlying tibia bone which then increases pressure on the ligaments.\n\nWhen the ligaments tear, the instability becomes even worse. The result of this breakdown of the joint is a cycle of knee pain, joint degeneration, structure damage, and even more pain.\n\n[caption id=\"attachment_4038\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4038\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/labral-tear-copy-500x446.png\" alt=\"Labral Tear Copy\" width=\"500\" height=\"446\" /> <strong>   Treat Labral Tears Effectively with Regenerative Orthopedics</strong>[/caption]\n<h4>Hip Labral Tears</h4>\nThe hip labrum, along with various hip ligaments and the normal deep socket configuration of the anatomy of the hip joint, provide most of the stability of the hip\n\nInjury to the ligaments, tendons and labrum, initiate the same damage and pain cycle that we described for the knee, which results in ongoing hip pain and can lead to hip arthritis. Surgical repair of the hip labrum and hip replacement are needed at times, but in our opinion, should be sought as a last resort.Tr\n\nJust as removal of the meniscus increases instability in the knee, extraction of the labrum makes the hip joint more unstable, and will eventually degenerate the hip and lead to further arthritis.\n<h4>Treating Meniscus &amp; Labral Tears Non-Surgically with Regenerative Orthopedics</h4>\nNon-surgical options do exist to treat both meniscal and labral tears.\n\nRegenerative Orthopedics, a regenerative injection therapy, has been successfully utilized to repair and regenerate the injured ligaments, tendons, meniscus, labrum and cartilage in injured and degenerated knee and hip joints. The therapy boosts collagen formation both outside and inside the knee and hip joint, by stimulating the body to repair itself.\n<h3>Meniscus and Labral Tears With Joint Instability Should Be Treated Comprehensively</h3>\nComprehensively treating all of the ligament attachments of the joint, ensures the stability of the hip and knee joint, since treating the ligaments tightens the loose supporting structures, aiding in the elimination of pain. In cases of advanced degeneration and arthritis, the Gold Standard in Stem Cell Therapy can be utilized, which incorporates bone marrow stem cells, as well as adipose stem cells, plus Platelet Rich Plasma (PRP), and Prolotherapy in a combined regenerative procedure.\n\nStem cells can self-renew and differentiate (or change) into a variety of cell types, and repair injured tissue. PRP and Prolotherapy activate growth factors which augment stem cell proliferation and aid in the repair of conditions with cellular deficiencies, like a damaged meniscus or labrum. The Gold Standard in Stem Cell Therapy provides the cells and growth factors that the damaged tissues and degenerative conditions lack, to aid in their healing.\n\nMost painful joint conditions begin with joint instability due to damage to the surrounding ligaments. The instability can progress to meniscal injuries or labral degeneration and eventually to knee or hip arthritis. Treatments such as arthroscopy to repair these tears can actually increase the arthritic process.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Meniscus and Labral Tears','','inherit','closed','closed','','1397-autosave-v1','','','2020-08-26 02:43:47','2020-08-26 02:43:47','',1397,'https://www.drfields.com/uncategorized/1397-autosave-v1/',0,'revision','',0),(4038,9,'2020-08-26 02:19:11','2020-08-26 02:19:11','Labral Tear Copy','Labral Tear Copy','Labral Tear Copy','inherit','open','closed','','labral-tear-copy','','','2020-08-26 02:19:11','2020-08-26 02:19:11','',1397,'https://www.drfields.com/wp-content/uploads/2019/10/labral-tear-copy.png',0,'attachment','image/png',0),(4039,9,'2020-08-26 02:44:35','2020-08-26 02:44:35','Meniscus tears of the knee and labral tears of the hip commonly occur from some form of trauma. Sporting events and activities are common culprits. The tears are not always immediate, but can arise after another structure of the hip or knee is damaged.\r\n\r\nInjury or damage to the joint inhibits normal functioning. And with continual use and wear and tear, the bones in the joint will rub against each other abnormally. Oftentimes,  the injury of ligaments, tendons and the meniscus or labrum make the joint unstable and painful. As this course continues, the knee or hip joint will degenerate and progress to arthritis.\r\n\r\n[caption id=\"attachment_4036\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4036 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/meniscus-tears-500x500.jpg\" alt=\"Meniscus Tears\" width=\"500\" height=\"500\" /> <strong>          Meniscus Tears Can Be Repaired Non-Surgically</strong>[/caption]\r\n<h4>The Meniscus Tears and Surgery</h4>\r\nThe menisci protect the cartilage in the knee from high stresses placed upon the joint. They are located between the femur and the tibia bones. Injury to the meniscus is one of the most common knee injuries for which people seek medical care.\r\n\r\nSurgery is frequently recommended for various types of meniscus tears. Types of meniscus tears include bucket handle tears, radial tears, horizontal tears, and oblique tears. When more than one of these patterns is present, the tear is called a complex tear. Surgery is frequently recommended for these tears. But surgery, including arthroscopic surgery, adds to the instability of the joint. Why? Because during the surgery joint structures are cut, scraped and removed.\r\n\r\nThe meniscus and the articular cartilage are the most commonly removed structures, when arthroscopic surgery of the knee is performed. When the meniscus and cartilage are removed, the femur bone is unable to glide smoothly over the tibia. This enhances knee instability and hastens the arthritic rate. It changes the dynamics within the joint causing abnormal knee joint function.\r\n\r\nArthroscopic surgery boosts arthritic degeneration, because pressure on the cartilage escalates when the meniscus is removed, and the joint becomes more unstable with the stretching, cutting and scraping of the ligaments, tendons and cartilage. The degeneration of the articular cartilage appears to be proportional to the size of the segment removed. The joint breakdown leads to further thinning of the remaining articular cartilage. This allows for increased pressure on the underlying tibia bone which then increases pressure on the ligaments.\r\n\r\nWhen the ligaments tear, the instability becomes even worse. The result of this breakdown of the joint is a cycle of knee pain, joint degeneration, structure damage, and even more pain.\r\n\r\n[caption id=\"attachment_4038\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4038\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/labral-tear-copy-500x446.png\" alt=\"Labral Tear Copy\" width=\"500\" height=\"446\" /> <strong>   Treat Labral Tears Effectively with Regenerative Orthopedics</strong>[/caption]\r\n<h4>Hip Labral Tears</h4>\r\nThe hip labrum, along with various hip ligaments and the normal deep socket configuration of the anatomy of the hip joint, provide most of the stability of the hip\r\n\r\nInjury to the ligaments, tendons and labrum, initiate the same damage and pain cycle that we described for the knee, which results in ongoing hip pain and can lead to hip arthritis. Surgical repair of the hip labrum and hip replacement are needed at times, but in our opinion, should be sought as a last resort.Tr\r\n\r\nJust as removal of the meniscus increases instability in the knee, extraction of the labrum makes the hip joint more unstable, and will eventually degenerate the hip and lead to further arthritis.\r\n<h4>Treating Meniscus &amp; Labral Tears Non-Surgically with Regenerative Orthopedics</h4>\r\nNon-surgical options do exist to treat both meniscal and labral tears.\r\n\r\nRegenerative Orthopedics, a regenerative injection therapy, has been successfully utilized to repair and regenerate the injured ligaments, tendons, meniscus, labrum and cartilage in injured and degenerated knee and hip joints. The therapy boosts collagen formation both outside and inside the knee and hip joint, by stimulating the body to repair itself.\r\n<h3>Meniscus and Labral Tears With Joint Instability Should Be Treated Comprehensively</h3>\r\nComprehensively treating all of the ligament attachments of the joint, ensures the stability of the hip and knee joint, since treating the ligaments tightens the loose supporting structures, aiding in the elimination of pain. In cases of advanced degeneration and arthritis, the Gold Standard in Stem Cell Therapy can be utilized, which incorporates bone marrow stem cells, as well as adipose stem cells, plus Platelet Rich Plasma (PRP), and Prolotherapy in a combined regenerative procedure.\r\n\r\nStem cells can self-renew and differentiate (or change) into a variety of cell types, and repair injured tissue. PRP and Prolotherapy activate growth factors which augment stem cell proliferation and aid in the repair of conditions with cellular deficiencies, like a damaged meniscus or labrum. The Gold Standard in Stem Cell Therapy provides the cells and growth factors that the damaged tissues and degenerative conditions lack, to aid in their healing.\r\n\r\nMost painful joint conditions begin with joint instability due to damage to the surrounding ligaments. The instability can progress to meniscal injuries or labral degeneration and eventually to knee or hip arthritis. Treatments such as arthroscopy to repair these tears can actually increase the arthritic process.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Meniscus and Labral Tears','','inherit','closed','closed','','1397-revision-v1','','','2020-08-26 02:44:35','2020-08-26 02:44:35','',1397,'https://www.drfields.com/uncategorized/1397-revision-v1/',0,'revision','',0),(4040,9,'2020-08-26 03:06:09','2020-08-26 03:06:09','[caption id=\"attachment_4044\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4044 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/Claire.-pro-triathlete-500x500.jpg\" alt=\"Claire. Pro Triathlete\" width=\"500\" height=\"500\" /> <strong>Claire, a Pro-Triathlete, avoided joint replacement with     Regenerative Orthopedics</strong>[/caption]\n<h2>Avoid Joint Replacement and Stay Active</h2>\nWe see many people in our office who want to avoid joint replacement. This scenario occurs more often than you might imagine. Folks of all ages come seeking treatment.\n\nThey come because they want to continue their distance running, weightlifting, bicycling, and other activities. They come because the pain is getting in the way of the things in life they enjoy, and they want that to change.\n<h3>Looking for an Alternative to Joint Replacement</h3>\nFrequently, they have been told that their problem, which is likely arthritis, is too advanced, and the only option left is a joint replacement. Meanwhile, the sufferer looks for an alternative, often left to chase symptoms, taking pain medications and trying various therapies in an attempt to find some relief.\n\nThey hear about OrthoRegen<sup>®</sup>, and call or email us, inquiring whether Regenerative Orthopedics can help them, so they don’t have to replace their joint. In the majority of musculoskeletal pain cases, Regenerative Orthopedics can give you pain relief, while improveing the function of your joint.\n\n<strong>Yes, Regenerative Orthopedics Works Even After Many Other Treatments Fail</strong>\n\nHow does Regenerative Orthopedics work if so many treatment options have already failed? Many treatment suggestions are therapies that ONLY prolong or delay the need for joint replacement. You are likely familiar with over-the-counter pain relievers and prescription medications like NSAIDS and steroids.\n\nThere are also injectable medications, such as corticosteroids and hyaluronic acid injections. These treatments are not curative though. And they only give temporary relief. Some, such as NSAIDS and steroids, actually weaken the joint further, which only promotes the arthritic process.\n\nRegenerative Orthopedics encourages collagen formation at the joint. It stimulates the body to repair itself, heals injured ligaments and tendons, and stimulates new tissue formation. And it doesn’t just cover up pain or chase symptoms.\n\n<strong>Regenerative Orthopedics Repairs the Joint.</strong>\n\nWhy not choose an alternative that works by repairing your joint and eliminating the pain? Regenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma, and Comprehensive Prolotherapy, is an effective way to treat your degenerated joint.. And it does it in a non-surgical manner.\n\n<strong>Be Aware! Not All Stem Cell Therapies Are Alike!</strong>\n\nIf you are like many who desire to avoid a joint replacement, you have probably already looked into Stem Cell Therapies. Or you have even gone to a seminar. If you have been to a seminar, the presenter may have emphasized the need to get some type of amniotic stem cell product.\n\nThe line of thinking is that if you are older, your stem cells are too old, so you need donated cells! This is not the truth! First of all, it is important to understand that amniotic “stem cells” are void of live stem cells. How is that possible? The process necessary to make them available to you actually kills the live cells.\n\nOn the other hand, your own stem cells are still alive and potent enough to work. Why use a donated product when you have your own <strong>live</strong> cells?\n\n<strong>What Does OrthoRegen<sup>®</sup> Do Differently Than Other Clinics?</strong>\n\nClinics in the United States that use a patient’s own stem cells, take the stem cells from bone marrow or from the fat in the abdominal area. Once they have retrieved the cells, they are then reintroduced into the degenerated or injured joint.\n\nAt OrthoRegen<sup>®</sup>, we use the Gold Standard in Stem Cell Therapy. Many other clinics use just one form of treatment. For example, they may use bone marrow stem cells only. Or they may possibly just use PRP. The Gold Standard encompasses four types of treatments, including stem cells from bone marrow, stem cells from fat, platelets from blood (PRP), and comprehensive dextrose Prolotherapy.\n<h3>Isn\'t Just One Type of Regenerative Therapy Enough?</h3>\nIn many instances, just one type of regenerative therapy may be sufficient enough to bring healing. Dextrose Prolotherapy, for example, is known to stimulate repair of a painful, degenerated area. As it boosts the normal healing abilities in the injured area, it also attracts immune cells to the degenerated structure for the purpose of repair and healing. And it is possible that we may recommend this therapy, depending on the diagnosis.\n\nHowever, when a joint is damaged or degenerated to the point where the surgeon wants to replace it, and greater levels of regeneration are needed due to the severity, it would make sense to choose the Gold Standard in Stem Cell Therapy. The Gold Standard is uniquely effective at repair of the degenerated joint.\n\n<strong>Avoid Joint Replacement with Regenerative Orthopedics</strong>\n\nBy treating the whole joint in a comprehensive manner, a more complete repair is established. The annoying, persistent and disabling pain of arthritis is almost always due to underlying injured soft tissue. Like in ligament and tendon injuries, which cause the joint to be unstable.\n\nThe injury to the soft tissue occurred after some type of trauma (even an old sprain) or wear and tear. And the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for the degeneration that occurs in the arthritic process. By treating the joint comprehensively, Regenerative Orthopedics stimulates the repair of the injured joint structures. The treatment stops the abnormal joint motion, and halts the degenerative process.\n<h3>Using the Gold Standard in Stem Cell Therapy</h3>\nWhen the Gold Standard in Stem Cell Therapy is used, this treatment combination helps to regenerate the joint when cartilage has been lost. It also stimulates the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability. The results are the elimination of pain and the return to function for those with degenerative joint conditions.\n\nRegenerative Orthopedics is an effective treatment option for those desiring to avoid surgery and get back to the sports and level of activities they love. Even after many other treatments have failed! Don’t let joint pain put a damper on your active lifestyle. Non-surgical Regenerative Orthopedics can resolve your joint pain and help you to meet your activity goals.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Avoid Joint Replacement and Stay Active','','inherit','closed','closed','','2865-autosave-v1','','','2020-08-26 03:06:09','2020-08-26 03:06:09','',2865,'https://www.drfields.com/uncategorized/2865-autosave-v1/',0,'revision','',0),(4041,9,'2020-08-26 02:47:03','2020-08-26 02:47:03','We see many people in our office who want to avoid a joint replacement. This scenario occurs more often than you might imagine. Folks of all ages come seeking treatment so they can continue their distance running, weightlifting, bicycling, and other activities, because pain is getting in the way of the things in life they enjoy. Frequently, they have been told that their problem, which is likely arthritis, is too advanced, and the only option left is a joint replacement. Meanwhile, the sufferer looks for an alternative, often left to chase symptoms, taking pain medications and trying various therapies in an attempt to find some relief. They hear about OrthoRegen<sup>®</sup>, and call or email us, inquiring whether Regenerative Orthopedics can help them, so they don’t have to replace their joint. In the majority of musculoskeletal pain cases, Regenerative Orthopedics can give you pain relief, while improveing the function of your joint.\r\n\r\n<strong>Yes, Regenerative Orthopedics Works Even After Many Other Treatments Fail</strong>\r\n\r\nHow does Regenerative Orthopedics work if so many treatment options have already failed? Many treatment suggestions are therapies that ONLY prolong or delay the need for joint replacement. You are likely familiar with over-the-counter pain relievers and prescription medications like NSAIDS and steroids. There are also injectable medications, such as corticosteroids and hyaluronic acid injections. These treatments are not curative though, and only give temporary relief. Some, such as NSAIDS and steroids, actually weaken the joint further, which only promotes the arthritic process.\r\n\r\nRegenerative Orthopedics encourages collagen formation at the joint, stimulates the body to repair itself, heals injured ligaments and tendons, and stimulates new tissue formation. It doesn’t just cover up pain or chase symptoms.\r\n\r\n<strong>Regenerative Orthopedics repairs the joint.</strong>\r\n\r\nWhy not choose an alternative that works by repairing your joint and eliminating the pain? Regenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma, and Comprehensive Prolotherapy, is an effective way to treat your degenerated joint, in a non-surgical manner.\r\n\r\n<strong>Be Aware! Not All Stem Cell Therapies Are Alike!</strong>\r\n\r\nIf you are like many who desire to avoid a joint replacement, you have probably already looked into Stem Cell Therapies, or even gone to a seminar. If you have been to a seminar, the presenter may have emphasized the need to get some type of amniotic stem cell product. The line of thinking is that if you are older, your stem cells are too old, so you need donated cells! This is not the truth! First of all, it is important to understand that amniotic “stem cells” are void of live stem cells, because the process necessary to make them available to you actually kills the live cells. On the other hand, your own stem cells are still alive and potent enough to work. Why use a donated product when you have your own <strong>live</strong> cells?\r\n\r\n<strong>What Does OrthoRegen<sup>®</sup> Do Differently Than Other Clinics?</strong>\r\n\r\nClinics in the United States that use a patient’s own stem cells, take the stem cells from bone marrow or from the fat in the abdominal area. Once they have retrieved the cells, they are then reintroduced into the degenerated or injured joint.\r\n\r\nAt OrthoRegen<sup>®</sup>, we use the Gold Standard in Stem Cell Therapy. Many other clinics use just one form of treatment. For example, they may use bone marrow stem cells only, or they may possibly just use PRP. The Gold Standard encompasses four types of treatments, including stem cells from bone marrow, stem cells from fat, platelets from blood (PRP), and comprehensive dextrose Prolotherapy. In many instances, just one type of regenerative therapy may be sufficient enough to bring healing. Dextrose Prolotherapy, for example, is known to stimulate repair of a painful, degenerated area, as it boosts the normal healing abilities in the injured area, attracting immune cells to the degenerated structure for the purpose of repair and healing. And it is possible that we may recommend this therapy, depending on the diagnosis. However, when a joint is damaged or degenerated to the point where the surgeon wants to replace it, and greater levels of regeneration are needed due to the severity, it would make sense to choose the Gold Standard in Stem Cell Therapy. The Gold Standard is uniquely effective at repair of the degenerated joint.\r\n\r\n<strong>Avoid Joint Replacement with Regenerative Orthopedics</strong>\r\n\r\nBy treating the whole joint in a comprehensive manner, a more complete repair is established. The annoying, persistent and disabling pain of arthritis is almost always due to underlying injured soft tissue, like the ligaments and tendons, which cause the joint to be unstable. The injury to the soft tissue occurred after some type of trauma (even an old sprain) or wear and tear, and the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for the degeneration that occurs in the arthritic process. By treating the joint comprehensively, Regenerative Orthopedics stimulates the repair of the injured joint structures, which stops the abnormal joint motion, and halts the degenerative process.\r\n\r\nWhen the Gold Standard in Stem Cell Therapy is used, this treatment combination helps to regenerate the joint when cartilage has been lost, while also stimulating the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability, and results in the elimination of pain and the return to function for those with degenerative joint conditions.\r\n\r\nRegenerative Orthopedics is an effective treatment option for those desiring to avoid surgery and get back to the sports and level of activities they love…even after many other treatments have failed. Don’t let joint pain put a damper on your active lifestyle. Non-surgical Regenerative Orthopedics can resolve your joint pain and help you to meet your activity goals.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Active and Looking To Avoid Joint Replacement','','inherit','closed','closed','','2865-revision-v1','','','2020-08-26 02:47:03','2020-08-26 02:47:03','',2865,'https://www.drfields.com/uncategorized/2865-revision-v1/',0,'revision','',0),(4042,9,'2020-08-26 02:47:31','2020-08-26 02:47:31','We see many people in our office who want to avoid a joint replacement. This scenario occurs more often than you might imagine. Folks of all ages come seeking treatment so they can continue their distance running, weightlifting, bicycling, and other activities, because pain is getting in the way of the things in life they enjoy. Frequently, they have been told that their problem, which is likely arthritis, is too advanced, and the only option left is a joint replacement. Meanwhile, the sufferer looks for an alternative, often left to chase symptoms, taking pain medications and trying various therapies in an attempt to find some relief. They hear about OrthoRegen<sup>®</sup>, and call or email us, inquiring whether Regenerative Orthopedics can help them, so they don’t have to replace their joint. In the majority of musculoskeletal pain cases, Regenerative Orthopedics can give you pain relief, while improveing the function of your joint.\r\n\r\n<strong>Yes, Regenerative Orthopedics Works Even After Many Other Treatments Fail</strong>\r\n\r\nHow does Regenerative Orthopedics work if so many treatment options have already failed? Many treatment suggestions are therapies that ONLY prolong or delay the need for joint replacement. You are likely familiar with over-the-counter pain relievers and prescription medications like NSAIDS and steroids. There are also injectable medications, such as corticosteroids and hyaluronic acid injections. These treatments are not curative though, and only give temporary relief. Some, such as NSAIDS and steroids, actually weaken the joint further, which only promotes the arthritic process.\r\n\r\nRegenerative Orthopedics encourages collagen formation at the joint, stimulates the body to repair itself, heals injured ligaments and tendons, and stimulates new tissue formation. It doesn’t just cover up pain or chase symptoms.\r\n\r\n<strong>Regenerative Orthopedics repairs the joint.</strong>\r\n\r\nWhy not choose an alternative that works by repairing your joint and eliminating the pain? Regenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma, and Comprehensive Prolotherapy, is an effective way to treat your degenerated joint, in a non-surgical manner.\r\n\r\n<strong>Be Aware! Not All Stem Cell Therapies Are Alike!</strong>\r\n\r\nIf you are like many who desire to avoid a joint replacement, you have probably already looked into Stem Cell Therapies, or even gone to a seminar. If you have been to a seminar, the presenter may have emphasized the need to get some type of amniotic stem cell product. The line of thinking is that if you are older, your stem cells are too old, so you need donated cells! This is not the truth! First of all, it is important to understand that amniotic “stem cells” are void of live stem cells, because the process necessary to make them available to you actually kills the live cells. On the other hand, your own stem cells are still alive and potent enough to work. Why use a donated product when you have your own <strong>live</strong> cells?\r\n\r\n<strong>What Does OrthoRegen<sup>®</sup> Do Differently Than Other Clinics?</strong>\r\n\r\nClinics in the United States that use a patient’s own stem cells, take the stem cells from bone marrow or from the fat in the abdominal area. Once they have retrieved the cells, they are then reintroduced into the degenerated or injured joint.\r\n\r\nAt OrthoRegen<sup>®</sup>, we use the Gold Standard in Stem Cell Therapy. Many other clinics use just one form of treatment. For example, they may use bone marrow stem cells only, or they may possibly just use PRP. The Gold Standard encompasses four types of treatments, including stem cells from bone marrow, stem cells from fat, platelets from blood (PRP), and comprehensive dextrose Prolotherapy. In many instances, just one type of regenerative therapy may be sufficient enough to bring healing. Dextrose Prolotherapy, for example, is known to stimulate repair of a painful, degenerated area, as it boosts the normal healing abilities in the injured area, attracting immune cells to the degenerated structure for the purpose of repair and healing. And it is possible that we may recommend this therapy, depending on the diagnosis. However, when a joint is damaged or degenerated to the point where the surgeon wants to replace it, and greater levels of regeneration are needed due to the severity, it would make sense to choose the Gold Standard in Stem Cell Therapy. The Gold Standard is uniquely effective at repair of the degenerated joint.\r\n\r\n<strong>Avoid Joint Replacement with Regenerative Orthopedics</strong>\r\n\r\nBy treating the whole joint in a comprehensive manner, a more complete repair is established. The annoying, persistent and disabling pain of arthritis is almost always due to underlying injured soft tissue, like the ligaments and tendons, which cause the joint to be unstable. The injury to the soft tissue occurred after some type of trauma (even an old sprain) or wear and tear, and the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for the degeneration that occurs in the arthritic process. By treating the joint comprehensively, Regenerative Orthopedics stimulates the repair of the injured joint structures, which stops the abnormal joint motion, and halts the degenerative process.\r\n\r\nWhen the Gold Standard in Stem Cell Therapy is used, this treatment combination helps to regenerate the joint when cartilage has been lost, while also stimulating the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability, and results in the elimination of pain and the return to function for those with degenerative joint conditions.\r\n\r\nRegenerative Orthopedics is an effective treatment option for those desiring to avoid surgery and get back to the sports and level of activities they love…even after many other treatments have failed. Don’t let joint pain put a damper on your active lifestyle. Non-surgical Regenerative Orthopedics can resolve your joint pain and help you to meet your activity goals.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Avoid Joint Replacement and Stay Active','','inherit','closed','closed','','2865-revision-v1','','','2020-08-26 02:47:31','2020-08-26 02:47:31','',2865,'https://www.drfields.com/uncategorized/2865-revision-v1/',0,'revision','',0),(4043,9,'2020-08-26 02:48:08','2020-08-26 02:48:08','Jun. Shoulder Injury Copy','Jun. Shoulder Injury Copy','Jun. Shoulder Injury Copy','inherit','open','closed','','jun-shoulder-injury-copy','','','2020-08-26 02:48:08','2020-08-26 02:48:08','',2865,'https://www.drfields.com/wp-content/uploads/2019/10/Jun.-Shoulder-injury-Copy.png',0,'attachment','image/png',0),(4044,9,'2020-08-26 02:49:00','2020-08-26 02:49:00','Claire. Pro Triathlete','Claire. Pro Triathlete','Claire. Pro Triathlete','inherit','open','closed','','claire-pro-triathlete','','','2020-08-26 02:49:00','2020-08-26 02:49:00','',2865,'https://www.drfields.com/wp-content/uploads/2019/10/Claire.-pro-triathlete.jpg',0,'attachment','image/jpeg',0),(4045,9,'2020-08-26 03:05:07','2020-08-26 03:05:07','[caption id=\"attachment_4044\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4044 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/Claire.-pro-triathlete-500x500.jpg\" alt=\"Claire. Pro Triathlete\" width=\"500\" height=\"500\" /> <strong>Claire, a Pro-Triathlete, avoided joint replacement with     Regenerative Orthopedics</strong>[/caption]\r\n<h2>Avoid Joint Replacement and Stay Active</h2>\r\nWe see many people in our office who want to avoid joint replacement. This scenario occurs more often than you might imagine. Folks of all ages come seeking treatment. They come because they want to continue their distance running, weightlifting, bicycling, and other activities. They come because the pain is getting in the way of the things in life they enjoy, and they want that to change.\r\n<h3>Looking for an Alternative to Joint Replacement</h3>\r\nFrequently, they have been told that their problem, which is likely arthritis, is too advanced, and the only option left is a joint replacement. Meanwhile, the sufferer looks for an alternative, often left to chase symptoms, taking pain medications and trying various therapies in an attempt to find some relief.\r\n\r\nThey hear about OrthoRegen<sup>®</sup>, and call or email us, inquiring whether Regenerative Orthopedics can help them, so they don’t have to replace their joint. In the majority of musculoskeletal pain cases, Regenerative Orthopedics can give you pain relief, while improveing the function of your joint.\r\n\r\n<strong>Yes, Regenerative Orthopedics Works Even After Many Other Treatments Fail</strong>\r\n\r\nHow does Regenerative Orthopedics work if so many treatment options have already failed? Many treatment suggestions are therapies that ONLY prolong or delay the need for joint replacement. You are likely familiar with over-the-counter pain relievers and prescription medications like NSAIDS and steroids.\r\n\r\nThere are also injectable medications, such as corticosteroids and hyaluronic acid injections. These treatments are not curative though. And they only give temporary relief. Some, such as NSAIDS and steroids, actually weaken the joint further, which only promotes the arthritic process.\r\n\r\nRegenerative Orthopedics encourages collagen formation at the joint. It stimulates the body to repair itself, heals injured ligaments and tendons, and stimulates new tissue formation. And it doesn’t just cover up pain or chase symptoms.\r\n\r\n<strong>Regenerative Orthopedics Repairs the Joint.</strong>\r\n\r\nWhy not choose an alternative that works by repairing your joint and eliminating the pain? Regenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma, and Comprehensive Prolotherapy, is an effective way to treat your degenerated joint.. And it does it in a non-surgical manner.\r\n\r\n<strong>Be Aware! Not All Stem Cell Therapies Are Alike!</strong>\r\n\r\nIf you are like many who desire to avoid a joint replacement, you have probably already looked into Stem Cell Therapies. Or you have even gone to a seminar. If you have been to a seminar, the presenter may have emphasized the need to get some type of amniotic stem cell product.\r\n\r\nThe line of thinking is that if you are older, your stem cells are too old, so you need donated cells! This is not the truth! First of all, it is important to understand that amniotic “stem cells” are void of live stem cells. How is that possible? The process necessary to make them available to you actually kills the live cells.\r\n\r\nOn the other hand, your own stem cells are still alive and potent enough to work. Why use a donated product when you have your own <strong>live</strong> cells?\r\n\r\n<strong>What Does OrthoRegen<sup>®</sup> Do Differently Than Other Clinics?</strong>\r\n\r\nClinics in the United States that use a patient’s own stem cells, take the stem cells from bone marrow or from the fat in the abdominal area. Once they have retrieved the cells, they are then reintroduced into the degenerated or injured joint.\r\n\r\nAt OrthoRegen<sup>®</sup>, we use the Gold Standard in Stem Cell Therapy. Many other clinics use just one form of treatment. For example, they may use bone marrow stem cells only. Or they may possibly just use PRP. The Gold Standard encompasses four types of treatments, including stem cells from bone marrow, stem cells from fat, platelets from blood (PRP), and comprehensive dextrose Prolotherapy.\r\n<h3>Isn\'t Just One Type of Regenerative Therapy Enough?</h3>\r\nIn many instances, just one type of regenerative therapy may be sufficient enough to bring healing. Dextrose Prolotherapy, for example, is known to stimulate repair of a painful, degenerated area. As it boosts the normal healing abilities in the injured area, it also attracts immune cells to the degenerated structure for the purpose of repair and healing. And it is possible that we may recommend this therapy, depending on the diagnosis.\r\n\r\nHowever, when a joint is damaged or degenerated to the point where the surgeon wants to replace it, and greater levels of regeneration are needed due to the severity, it would make sense to choose the Gold Standard in Stem Cell Therapy. The Gold Standard is uniquely effective at repair of the degenerated joint.\r\n\r\n<strong>Avoid Joint Replacement with Regenerative Orthopedics</strong>\r\n\r\nBy treating the whole joint in a comprehensive manner, a more complete repair is established. The annoying, persistent and disabling pain of arthritis is almost always due to underlying injured soft tissue. Like in ligament and tendon injuries, which cause the joint to be unstable.\r\n\r\nThe injury to the soft tissue occurred after some type of trauma (even an old sprain) or wear and tear. And the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for the degeneration that occurs in the arthritic process. By treating the joint comprehensively, Regenerative Orthopedics stimulates the repair of the injured joint structures. The treatment stops the abnormal joint motion, and halts the degenerative process.\r\n<h3>Using the Gold Standard in Stem Cell Therapy</h3>\r\nWhen the Gold Standard in Stem Cell Therapy is used, this treatment combination helps to regenerate the joint when cartilage has been lost. It also stimulates the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability. The results are the elimination of pain and the return to function for those with degenerative joint conditions.\r\n\r\nRegenerative Orthopedics is an effective treatment option for those desiring to avoid surgery and get back to the sports and level of activities they love. Even after many other treatments have failed! Don’t let joint pain put a damper on your active lifestyle. Non-surgical Regenerative Orthopedics can resolve your joint pain and help you to meet your activity goals.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Avoid Joint Replacement and Stay Active','','inherit','closed','closed','','2865-revision-v1','','','2020-08-26 03:05:07','2020-08-26 03:05:07','',2865,'https://www.drfields.com/uncategorized/2865-revision-v1/',0,'revision','',0),(4046,9,'2020-08-26 17:39:34','2020-08-26 17:39:34','[caption id=\"attachment_4044\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4044 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/Claire.-pro-triathlete-500x500.jpg\" alt=\"Claire. Pro Triathlete\" width=\"500\" height=\"500\" /> <strong>Claire, a Pro-Triathlete, avoided joint replacement with     Regenerative Orthopedics</strong>[/caption]\r\n<h2>Avoid Joint Replacement and Stay Active</h2>\r\nWe see many people in our office who want to avoid joint replacement. This scenario occurs more often than you might imagine. Folks of all ages come seeking treatment.\r\n\r\nThey come because they want to continue their distance running, weightlifting, bicycling, and other activities. They come because the pain is getting in the way of the things in life they enjoy, and they want that to change.\r\n<h3>Looking for an Alternative to Joint Replacement</h3>\r\nFrequently, they have been told that their problem, which is likely arthritis, is too advanced, and the only option left is a joint replacement. Meanwhile, the sufferer looks for an alternative, often left to chase symptoms, taking pain medications and trying various therapies in an attempt to find some relief.\r\n\r\nThey hear about OrthoRegen<sup>®</sup>, and call or email us, inquiring whether Regenerative Orthopedics can help them, so they don’t have to replace their joint. In the majority of musculoskeletal pain cases, Regenerative Orthopedics can give you pain relief, while improveing the function of your joint.\r\n\r\n<strong>Yes, Regenerative Orthopedics Works Even After Many Other Treatments Fail</strong>\r\n\r\nHow does Regenerative Orthopedics work if so many treatment options have already failed? Many treatment suggestions are therapies that ONLY prolong or delay the need for joint replacement. You are likely familiar with over-the-counter pain relievers and prescription medications like NSAIDS and steroids.\r\n\r\nThere are also injectable medications, such as corticosteroids and hyaluronic acid injections. These treatments are not curative though. And they only give temporary relief. Some, such as NSAIDS and steroids, actually weaken the joint further, which only promotes the arthritic process.\r\n\r\nRegenerative Orthopedics encourages collagen formation at the joint. It stimulates the body to repair itself, heals injured ligaments and tendons, and stimulates new tissue formation. And it doesn’t just cover up pain or chase symptoms.\r\n\r\n<strong>Regenerative Orthopedics Repairs the Joint.</strong>\r\n\r\nWhy not choose an alternative that works by repairing your joint and eliminating the pain? Regenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma, and Comprehensive Prolotherapy, is an effective way to treat your degenerated joint.. And it does it in a non-surgical manner.\r\n\r\n<strong>Be Aware! Not All Stem Cell Therapies Are Alike!</strong>\r\n\r\nIf you are like many who desire to avoid a joint replacement, you have probably already looked into Stem Cell Therapies. Or you have even gone to a seminar. If you have been to a seminar, the presenter may have emphasized the need to get some type of amniotic stem cell product.\r\n\r\nThe line of thinking is that if you are older, your stem cells are too old, so you need donated cells! This is not the truth! First of all, it is important to understand that amniotic “stem cells” are void of live stem cells. How is that possible? The process necessary to make them available to you actually kills the live cells.\r\n\r\nOn the other hand, your own stem cells are still alive and potent enough to work. Why use a donated product when you have your own <strong>live</strong> cells?\r\n\r\n<strong>What Does OrthoRegen<sup>®</sup> Do Differently Than Other Clinics?</strong>\r\n\r\nClinics in the United States that use a patient’s own stem cells, take the stem cells from bone marrow or from the fat in the abdominal area. Once they have retrieved the cells, they are then reintroduced into the degenerated or injured joint.\r\n\r\nAt OrthoRegen<sup>®</sup>, we use the Gold Standard in Stem Cell Therapy. Many other clinics use just one form of treatment. For example, they may use bone marrow stem cells only. Or they may possibly just use PRP. The Gold Standard encompasses four types of treatments, including stem cells from bone marrow, stem cells from fat, platelets from blood (PRP), and comprehensive dextrose Prolotherapy.\r\n<h3>Isn\'t Just One Type of Regenerative Therapy Enough?</h3>\r\nIn many instances, just one type of regenerative therapy may be sufficient enough to bring healing. Dextrose Prolotherapy, for example, is known to stimulate repair of a painful, degenerated area. As it boosts the normal healing abilities in the injured area, it also attracts immune cells to the degenerated structure for the purpose of repair and healing. And it is possible that we may recommend this therapy, depending on the diagnosis.\r\n\r\nHowever, when a joint is damaged or degenerated to the point where the surgeon wants to replace it, and greater levels of regeneration are needed due to the severity, it would make sense to choose the Gold Standard in Stem Cell Therapy. The Gold Standard is uniquely effective at repair of the degenerated joint.\r\n\r\n<strong>Avoid Joint Replacement with Regenerative Orthopedics</strong>\r\n\r\nBy treating the whole joint in a comprehensive manner, a more complete repair is established. The annoying, persistent and disabling pain of arthritis is almost always due to underlying injured soft tissue. Like in ligament and tendon injuries, which cause the joint to be unstable.\r\n\r\nThe injury to the soft tissue occurred after some type of trauma (even an old sprain) or wear and tear. And the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for the degeneration that occurs in the arthritic process. By treating the joint comprehensively, Regenerative Orthopedics stimulates the repair of the injured joint structures. The treatment stops the abnormal joint motion, and halts the degenerative process.\r\n<h3>Using the Gold Standard in Stem Cell Therapy</h3>\r\nWhen the Gold Standard in Stem Cell Therapy is used, this treatment combination helps to regenerate the joint when cartilage has been lost. It also stimulates the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability. The results are the elimination of pain and the return to function for those with degenerative joint conditions.\r\n\r\nRegenerative Orthopedics is an effective treatment option for those desiring to avoid surgery and get back to the sports and level of activities they love. Even after many other treatments have failed! Don’t let joint pain put a damper on your active lifestyle. Non-surgical Regenerative Orthopedics can resolve your joint pain and help you to meet your activity goals.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Avoid Joint Replacement and Stay Active','','inherit','closed','closed','','2865-revision-v1','','','2020-08-26 17:39:34','2020-08-26 17:39:34','',2865,'https://www.drfields.com/uncategorized/2865-revision-v1/',0,'revision','',0),(4047,9,'2020-08-26 21:16:48','2020-08-26 21:16:48','[caption id=\"attachment_4049\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4049 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/MCL-tears-500x500.jpg\" alt=\"Medial Collateral Ligament Injuries\" width=\"500\" height=\"500\" /> Repair Medial Collateral Ligament Injuries at OrthoRegen[/caption]\n\n<span style=\"font-weight: 400;\">The <b>Medial Collateral Ligament (</b><strong>MCL)</strong> is a vital knee structure for providing stability to the knee joint. It is one of four major ligaments of the knee, along with the anterior cruciate (ACL), the posterior cruciate (PCL), and the lateral collateral (LCL) ligaments, all of which stabilize the knee. Other ligaments are often injured when the medial collateral ligament is injured</span>\n\n<span style=\"font-weight: 400;\">MCL injuries also affect the meniscus. Since part of the MCL is attached to the meniscus, a tear of the meniscus can accompany an MCL injury. </span>\n<h3><span style=\"font-weight: 400;\"><strong>Spontaneous or Self-Healing Is a Consideration in Medial Collateral Ligament Injuries</strong></span></h3>\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">When a ligament in the knee is injured, the most common ligament affected is the medial collateral ligament (MCL).  In general, the MCL is a very strong ligament. And it is pretty resilient when injured. In many circumstances, physicians will opt for non-surgical treatments, because they take into consideration the ability of the MCL to heal on its own. </span></span>\n\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">An athlete with injury to their MCL often returns to their usual training or routine after just a few weeks. But is this the best course of treatment for an injured MCL? In this article, we will explore the injury and healing process of the knee and its MCL, and also examine whether a medial collateral ligament injury should just heal on its own or if  this path allows for a weaker MCL. Also, does allowing the MCL heal on its own make one more susceptible to re-injury?</span>   </span>\n<h3><span style=\"font-weight: 400;\"><strong>The Self-Healed MCL vs the Pre-Injured State</strong></span></h3>\n<span style=\"font-weight: 400;\">The MCL has a greater blood supply than the ACL one thing. And that adds to its greater ability to heal.  However, studies have shown that even though conservative therapy for MCL injuries has been shown to be more effective than in ACL or even PCL injuries, the healed MCL remains weaker and less efficient than the ligament in its pre-injured state. </span>\n\n<span style=\"font-weight: 400;\">The ligament heals by scar formation, which is an inferior type of healing, which results in less strength than in normal ligaments. And the weak ligament leads to ligament laxity and an unstable joint. Joint instability as the result of an MCL injury begins the process of arthritis. The healing scarred ligament becomes longer and loose, which causes the joint to move and rotate differently. </span>\n\n<span style=\"font-weight: 400;\">The abnormal movement alters how the knee can handle loads and pressures placed upon it. The instability allows for more sliding between joint surfaces, and decreases the efficiency of the muscles. That leads to disruption of the underlying cartilage and bone, and boosts overall degeneration. The result is the eventual formation of arthritis.</span><span style=\"font-weight: 400;\">  </span>\n\n<b>An Injury to One Knee Structure Affects the Rest of the Knee</b>\n\n<span style=\"font-weight: 400;\">Wear and tear, trauma type injuries, and anything else that affects one ligament of the knee, will affect the other structures of the knee. The MCL helps the knee to bend and twist correctly. But when it is injured, those dynamics are changed. MCL injuries usually occur near where the ligament attaches to the thigh bone at the knee. </span>\n\n<span style=\"font-weight: 400;\">The ligament attaches to a bony prominence called the medial condyle and assists in keeping the knee from hyperextending. When the MCL becomes weak and unstable, it starts a cascade of degeneration of the condyles. Since the medial condyle bears a lot of weight, the weak ligament boosts the wear on the bony condyle. And as the bone wears, the degeneration will also cause injury to the meniscus. </span>\n\n<span style=\"font-weight: 400;\">The cycle then continues as these bony attachments continue to degenerate, because the attached ligaments will lose their tautness and become even more loose and weak.</span><span style=\"font-weight: 400;\"> </span>\n\n<b>Treatment of an Injured MCL</b>\n\n<span style=\"font-weight: 400;\">The care of MCL injuries ranges from conservative to surgical measures. Surgery involves the cutting and removal of tissue, and since medial collateral ligament injuries often involve other structures, that would entail even more cutting. </span>\n\n<span style=\"font-weight: 400;\">It is important to understand that removal and cutting of knee structures adds to knee instability and to further degeneration of the knee in the long run. So avoidance of surgery would be preferred. What can be done then? And what are your options, considering the inferior healing of the MCL when left to heal on its own?</span>\n<h3><strong>Regenerative Orthopedics Options for MCL Injuries</strong></h3>\n<span style=\"font-weight: 400;\">Regenerative Orthopedics, including <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a>, <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP</a>, and Prolotherapy are treatment options available for MCL injuries. They help to provide healing of the entire knee. And they also allow for stabilization of the injured MCL. Studies have shown that these treatments are effective at increasing the strength of the ligament at the attachment site, as well as boosting the overall ligament mass and strength. </span>\n\n<span style=\"font-weight: 400;\">Regenerative Orthopedics for MCL injuries encourages collagen formation at the knee joint. It stimulates the body to repair itself. And it heals the ligaments by stimulating new tissue formation, rather than scar tissue formation.When the ligament is completely torn, surgery is necessary. But Regenerative Orthopedics is helpful when both ends of the ligament remain attached to bone. And in 98% of ligament injuries this is the case, since the injuries are partial tears. </span>\n<h3>Strong Ligaments and Tendons Are Key to a Healthy Knee Joint</h3>\n<span style=\"font-weight: 400;\">The key to healthy knees is strong ligaments and tendons. In the case of the medial collateral ligament injuries, co-injury of ligaments, and other involved structures in MCL injuries, the goal is to treat the whole knee with Regenerative Orthopedics. The treatment will stimulate repair, and strengthen the injured and weakened structures. New collagen, the material the ligaments and tendons are made of, is deposited at the site of repair. </span>\n\n<span style=\"font-weight: 400;\">The end result is a stronger, more stable knee joint. Rather than just allowing the MCL to heal on its own, Regenerative Orthopedics ensures proper regeneration of the ligament tissue, allowing for effective elimination of pain, the repair of the MCL injury, and a safe return to sport and activities.</span>\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Medial Collateral Ligament Injuries','','inherit','closed','closed','','2858-autosave-v1','','','2020-08-26 21:16:48','2020-08-26 21:16:48','',2858,'https://www.drfields.com/uncategorized/2858-autosave-v1/',0,'revision','',0),(4048,9,'2020-08-26 17:48:22','2020-08-26 17:48:22','<span style=\"font-weight: 400;\">When a ligament in the knee is injured, the most common ligament affected is the medial collateral ligament (MCL).  In general, the MCL is a very strong ligament and is pretty resilient when injured, and in many circumstances, physicians will opt for non-surgical treatments, because they take into consideration the ability of the MCL to heal on its own. An athlete with injury to their MCL often returns to their usual training or routine after just a few weeks. But is this the best course of treatment for an injured MCL? In this article, we will explore the injury and healing process of the knee and its MCL, and also examine whether an injured MCL should just heal on its own or if  this path allows for a weaker MCL, and one more susceptible to re-injury.</span>\r\n\r\n<b>Let’s Take a Look at the Medial Collateral Ligament (MCL)</b>\r\n\r\n<span style=\"font-weight: 400;\">The MCL is a vital knee structure for providing stability to the knee joint. It is one of four major ligaments of the knee, along with the anterior cruciate (ACL), the posterior cruciate (PCL), and the lateral collateral (LCL) ligaments, all of which stabilize the knee. When the MCL is injured, very often these other ligaments are injured too! MCL injuries also affect the meniscus. Since part of the MCL is attached to the meniscus, a tear of the meniscus can also accompany an MCL injury. </span>\r\n\r\n<span style=\"font-weight: 400;\">Why is spontaneous or self-healing a consideration in MCL injuries? The MCL has a greater blood supply than the ACL, for example, which adds to its greater ability to heal.  However, studies have shown that even though conservative therapy for MCL injuries has been shown to be more effective than in ACL or even PCL injuries, the healed MCL remains weaker and less efficient than the ligament in its pre-injured state. The ligament heals by scar formation, which is an inferior type of healing, and results in less strength than in normal ligaments, and the weak ligament leads to ligament laxity and an unstable joint. Joint instability as the result of an MCL injury begins the process of arthritis. The healing scarred ligament becomes longer and loose, which causes the joint to move and rotate differently, which alters how the knee can handle loads and pressures placed upon it. The instability allows for more sliding between joint surfaces, decreasing the efficiency of the muscles, disrupting the underlying cartilage and bone, and boosts overall degeneration which leads to the eventual arthritis formation.</span><span style=\"font-weight: 400;\">     </span>\r\n\r\n<b>An Injury to One Knee Structure Affects the Rest of the Knee</b>\r\n\r\n<span style=\"font-weight: 400;\">Wear and tear, trauma type injuries, and anything else that affects one ligament of the knee, will affect the other structures of the knee. The MCL helps the knee to bend and twist correctly, but when it is injured, those dynamics are changed. MCL injuries usually occur near where the ligament attaches to the thigh bone at the knee. The ligament attaches to a bony prominence called the medial condyle and assists in keeping the knee from hyperextending. When the MCL becomes weak and unstable, it starts a cascade of degeneration of the condyles. Since the medial condyle bears a lot of weight, the weak ligament boosts the wear on the bony condyle, and as the bone wears, the degeneration will also cause injury to the meniscus. The cycle then continues as these bony attachments continue to degenerate, because the attached ligaments will lose their tautness and become even more loose and weak.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>Treatment of an Injured MCL</b>\r\n\r\n<span style=\"font-weight: 400;\">The care of MCL injuries ranges from conservative to surgical measures. Surgery involves the cutting and removal of tissue, and since MCL injuries often involve other structures, that would entail even more cutting. It is important to understand that removal and cutting of knee structures adds to knee instability and to further degeneration of the knee in the long run, so avoidance of surgery would be preferred. What can be done then, and what are your options, considering the inferior healing of the MCL when left to heal on its own? Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are treatment options available for MCL injuries, because they help to provide healing to the entire knee and also allow for stabilization of the injured MCL. Studies have shown that these treatments are effective at increasing the strength of the ligament at the attachment site, as well as boosting the overall ligament mass and strength. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics for MCL injuries encourages collagen formation at the knee joint, stimulates the body to repair itself, and heals the ligaments, by stimulating new tissue formation, rather than scar tissue formation. Surgery will be necessary when the ligament is completely torn, but Regenerative Orthopedics is helpful when both ends of the ligament remain attached to bone, and in 98% of ligament injuries this is the case, since the injuries are partial tears. </span>\r\n\r\n<span style=\"font-weight: 400;\">The key to healthy knees is strong ligaments and tendons. In the case of the injured MCL, co-injury of ligaments, and other involved structures in MCL injuries, the goal is to treat the whole knee with Regenerative Orthopedics to stimulate repair, and strengthen the injured and weakened structures. The treatment will lead to the deposits of new collagen, the material the ligaments and tendons are made of. The end result is a stronger, more stable knee joint. Rather than just allowing the MCL to heal on its own, Regenerative Orthopedics ensures proper regeneration of the ligament tissue, allowing for effective elimination of pain, the repair of the MCL injury, and a safe return to sport and activities.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Medial Collateral Ligament Injuries','','inherit','closed','closed','','2858-revision-v1','','','2020-08-26 17:48:22','2020-08-26 17:48:22','',2858,'https://www.drfields.com/uncategorized/2858-revision-v1/',0,'revision','',0),(4049,9,'2020-08-26 17:49:38','2020-08-26 17:49:38','Mcl Tears','Prolotherapy for Medial Collateral Ligament Injuries','Mcl Tears','inherit','open','closed','','mcl-tears','','','2020-08-26 17:50:11','2020-08-26 17:50:11','',2858,'https://www.drfields.com/wp-content/uploads/2019/10/MCL-tears.jpg',0,'attachment','image/jpeg',0),(4050,9,'2020-08-26 20:27:19','2020-08-26 20:27:19','<img class=\"size-medium wp-image-4049\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/MCL-tears-500x500.jpg\" alt=\"Mcl Tears\" width=\"500\" height=\"500\" />\r\n\r\n<b>Let’s Take a Look at the Medial Collateral Ligament (MCL)</b>\r\n\r\n<span style=\"font-weight: 400;\">The <b>Medial Collateral Ligament (</b><strong>MCL)</strong> is a vital knee structure for providing stability to the knee joint. It is one of four major ligaments of the knee, along with the anterior cruciate (ACL), the posterior cruciate (PCL), and the lateral collateral (LCL) ligaments, all of which stabilize the knee. In medial collateral ligament injuries, very often these other ligaments are injured too! </span>\r\n\r\n<span style=\"font-weight: 400;\">MCL injuries also affect the meniscus. Since part of the MCL is attached to the meniscus, a tear of the meniscus can also accompany an MCL injury. </span>\r\n<h3>The Most Common Knee Ligament Injury</h3>\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">When a ligament in the knee is injured, the most common ligament affected is the medial collateral ligament (MCL).  In general, the MCL is a very strong ligament and is pretty resilient when injured, and in many circumstances, physicians will opt for non-surgical treatments, because they take into consideration the ability of the MCL to heal on its own. An athlete with injury to their MCL often returns to their usual training or routine after just a few weeks. But is this the best course of treatment for an injured MCL? In this article, we will explore the injury and healing process of the knee and its MCL, and also examine whether an injured MCL should just heal on its own or if  this path allows for a weaker MCL, and one more susceptible to re-injury.</span>   </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>Why Is Spontaneous or Self-Healing a Consideration in Medial Collateral Ligament injuries?</strong> </span></h3>\r\n<span style=\"font-weight: 400;\">The MCL has a greater blood supply than the ACL one thing. And that adds to its greater ability to heal.  However, studies have shown that even though conservative therapy for MCL injuries has been shown to be more effective than in ACL or even PCL injuries, the healed MCL remains weaker and less efficient than the ligament in its pre-injured state. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament heals by scar formation, which is an inferior type of healing, and results in less strength than in normal ligaments, and the weak ligament leads to ligament laxity and an unstable joint. Joint instability as the result of an MCL injury begins the process of arthritis. The healing scarred ligament becomes longer and loose, which causes the joint to move and rotate differently, which alters how the knee can handle loads and pressures placed upon it. The instability allows for more sliding between joint surfaces, decreasing the efficiency of the muscles, disrupting the underlying cartilage and bone, and boosts overall degeneration which leads to the eventual arthritis formation.</span><span style=\"font-weight: 400;\">  </span>\r\n\r\n&nbsp;\r\n\r\n<b>An Injury to One Knee Structure Affects the Rest of the Knee</b>\r\n\r\n<span style=\"font-weight: 400;\">Wear and tear, trauma type injuries, and anything else that affects one ligament of the knee, will affect the other structures of the knee. The MCL helps the knee to bend and twist correctly, but when it is injured, those dynamics are changed. MCL injuries usually occur near where the ligament attaches to the thigh bone at the knee. The ligament attaches to a bony prominence called the medial condyle and assists in keeping the knee from hyperextending. When the MCL becomes weak and unstable, it starts a cascade of degeneration of the condyles. Since the medial condyle bears a lot of weight, the weak ligament boosts the wear on the bony condyle, and as the bone wears, the degeneration will also cause injury to the meniscus. The cycle then continues as these bony attachments continue to degenerate, because the attached ligaments will lose their tautness and become even more loose and weak.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>Treatment of an Injured MCL</b>\r\n\r\n<span style=\"font-weight: 400;\">The care of MCL injuries ranges from conservative to surgical measures. Surgery involves the cutting and removal of tissue, and since MCL injuries often involve other structures, that would entail even more cutting. It is important to understand that removal and cutting of knee structures adds to knee instability and to further degeneration of the knee in the long run, so avoidance of surgery would be preferred. What can be done then, and what are your options, considering the inferior healing of the MCL when left to heal on its own? Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are treatment options available for MCL injuries, because they help to provide healing to the entire knee and also allow for stabilization of the injured MCL. Studies have shown that these treatments are effective at increasing the strength of the ligament at the attachment site, as well as boosting the overall ligament mass and strength. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics for MCL injuries encourages collagen formation at the knee joint, stimulates the body to repair itself, and heals the ligaments, by stimulating new tissue formation, rather than scar tissue formation. Surgery will be necessary when the ligament is completely torn, but Regenerative Orthopedics is helpful when both ends of the ligament remain attached to bone, and in 98% of ligament injuries this is the case, since the injuries are partial tears. </span>\r\n\r\n<span style=\"font-weight: 400;\">The key to healthy knees is strong ligaments and tendons. In the case of the injured MCL, co-injury of ligaments, and other involved structures in MCL injuries, the goal is to treat the whole knee with Regenerative Orthopedics to stimulate repair, and strengthen the injured and weakened structures. The treatment will lead to the deposits of new collagen, the material the ligaments and tendons are made of. The end result is a stronger, more stable knee joint. Rather than just allowing the MCL to heal on its own, Regenerative Orthopedics ensures proper regeneration of the ligament tissue, allowing for effective elimination of pain, the repair of the MCL injury, and a safe return to sport and activities.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Medial Collateral Ligament Injuries','','inherit','closed','closed','','2858-revision-v1','','','2020-08-26 20:27:19','2020-08-26 20:27:19','',2858,'https://www.drfields.com/uncategorized/2858-revision-v1/',0,'revision','',0),(4051,9,'2020-08-26 20:52:42','2020-08-26 20:52:42','<img class=\" wp-image-4049 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/MCL-tears-500x500.jpg\" alt=\"Mcl Tears\" width=\"460\" height=\"460\" />\r\n\r\n<b>Let’s Take a Look at the Medial Collateral Ligament (MCL)</b>\r\n\r\n<span style=\"font-weight: 400;\">The <b>Medial Collateral Ligament (</b><strong>MCL)</strong> is a vital knee structure for providing stability to the knee joint. It is one of four major ligaments of the knee, along with the anterior cruciate (ACL), the posterior cruciate (PCL), and the lateral collateral (LCL) ligaments, all of which stabilize the knee. In medial collateral ligament injuries, very often these other ligaments are injured too! </span>\r\n\r\n<span style=\"font-weight: 400;\">MCL injuries also affect the meniscus. Since part of the MCL is attached to the meniscus, a tear of the meniscus can also accompany an MCL injury. </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>Spontaneous or Self-Healing Is a Consideration in Medial Collateral Ligament Injuries</strong></span></h3>\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">When a ligament in the knee is injured, the most common ligament affected is the medial collateral ligament (MCL).  In general, the MCL is a very strong ligament. And it is pretty resilient when injured. In many circumstances, physicians will opt for non-surgical treatments, because they take into consideration the ability of the MCL to heal on its own. </span></span>\r\n\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">An athlete with injury to their MCL often returns to their usual training or routine after just a few weeks. But is this the best course of treatment for an injured MCL? In this article, we will explore the injury and healing process of the knee and its MCL, and also examine whether a medial collateral ligament injury should just heal on its own or if  this path allows for a weaker MCL. Also, does allowing the MCL heal on its own make one more susceptible to re-injury?</span>   </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>The Self-Healed Medial Collateral Ligament vs the Pre-Injured State</strong></span></h3>\r\n<span style=\"font-weight: 400;\">The MCL has a greater blood supply than the ACL one thing. And that adds to its greater ability to heal.  However, studies have shown that even though conservative therapy for MCL injuries has been shown to be more effective than in ACL or even PCL injuries, the healed MCL remains weaker and less efficient than the ligament in its pre-injured state. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament heals by scar formation, which is an inferior type of healing, which results in less strength than in normal ligaments. And the weak ligament leads to ligament laxity and an unstable joint. Joint instability as the result of an MCL injury begins the process of arthritis. The healing scarred ligament becomes longer and loose, which causes the joint to move and rotate differently. </span>\r\n\r\n<span style=\"font-weight: 400;\">The abnormal movement alters how the knee can handle loads and pressures placed upon it. The instability allows for more sliding between joint surfaces, and decreases the efficiency of the muscles. That leads to disruption of the underlying cartilage and bone, and boosts overall degeneration. The result is the eventual formation of arthritis.</span><span style=\"font-weight: 400;\">  </span>\r\n\r\n<b>An Injury to One Knee Structure Affects the Rest of the Knee</b>\r\n\r\n<span style=\"font-weight: 400;\">Wear and tear, trauma type injuries, and anything else that affects one ligament of the knee, will affect the other structures of the knee. The MCL helps the knee to bend and twist correctly. But when it is injured, those dynamics are changed. MCL injuries usually occur near where the ligament attaches to the thigh bone at the knee. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament attaches to a bony prominence called the medial condyle and assists in keeping the knee from hyperextending. When the MCL becomes weak and unstable, it starts a cascade of degeneration of the condyles. Since the medial condyle bears a lot of weight, the weak ligament boosts the wear on the bony condyle. And as the bone wears, the degeneration will also cause injury to the meniscus. </span>\r\n\r\n<span style=\"font-weight: 400;\">The cycle then continues as these bony attachments continue to degenerate, because the attached ligaments will lose their tautness and become even more loose and weak.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>Treatment of an Injured MCL</b>\r\n\r\n<span style=\"font-weight: 400;\">The care of MCL injuries ranges from conservative to surgical measures. Surgery involves the cutting and removal of tissue, and since MCL injuries often involve other structures, that would entail even more cutting. It is important to understand that removal and cutting of knee structures adds to knee instability and to further degeneration of the knee in the long run, so avoidance of surgery would be preferred. What can be done then, and what are your options, considering the inferior healing of the MCL when left to heal on its own? Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are treatment options available for MCL injuries, because they help to provide healing to the entire knee and also allow for stabilization of the injured MCL. Studies have shown that these treatments are effective at increasing the strength of the ligament at the attachment site, as well as boosting the overall ligament mass and strength. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics for MCL injuries encourages collagen formation at the knee joint, stimulates the body to repair itself, and heals the ligaments, by stimulating new tissue formation, rather than scar tissue formation. Surgery will be necessary when the ligament is completely torn, but Regenerative Orthopedics is helpful when both ends of the ligament remain attached to bone, and in 98% of ligament injuries this is the case, since the injuries are partial tears. </span>\r\n\r\n<span style=\"font-weight: 400;\">The key to healthy knees is strong ligaments and tendons. In the case of the injured MCL, co-injury of ligaments, and other involved structures in MCL injuries, the goal is to treat the whole knee with Regenerative Orthopedics to stimulate repair, and strengthen the injured and weakened structures. The treatment will lead to the deposits of new collagen, the material the ligaments and tendons are made of. The end result is a stronger, more stable knee joint. Rather than just allowing the MCL to heal on its own, Regenerative Orthopedics ensures proper regeneration of the ligament tissue, allowing for effective elimination of pain, the repair of the MCL injury, and a safe return to sport and activities.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Medial Collateral Ligament Injuries','','inherit','closed','closed','','2858-revision-v1','','','2020-08-26 20:52:42','2020-08-26 20:52:42','',2858,'https://www.drfields.com/uncategorized/2858-revision-v1/',0,'revision','',0),(4052,9,'2020-08-26 20:53:06','2020-08-26 20:53:06','<img class=\" wp-image-4049 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/MCL-tears-500x500.jpg\" alt=\"Mcl Tears\" width=\"460\" height=\"460\" />\r\n\r\n<span style=\"font-weight: 400;\">The <b>Medial Collateral Ligament (</b><strong>MCL)</strong> is a vital knee structure for providing stability to the knee joint. It is one of four major ligaments of the knee, along with the anterior cruciate (ACL), the posterior cruciate (PCL), and the lateral collateral (LCL) ligaments, all of which stabilize the knee. In medial collateral ligament injuries, very often these other ligaments are injured too! </span>\r\n\r\n<span style=\"font-weight: 400;\">MCL injuries also affect the meniscus. Since part of the MCL is attached to the meniscus, a tear of the meniscus can also accompany an MCL injury. </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>Spontaneous or Self-Healing Is a Consideration in Medial Collateral Ligament Injuries</strong></span></h3>\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">When a ligament in the knee is injured, the most common ligament affected is the medial collateral ligament (MCL).  In general, the MCL is a very strong ligament. And it is pretty resilient when injured. In many circumstances, physicians will opt for non-surgical treatments, because they take into consideration the ability of the MCL to heal on its own. </span></span>\r\n\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">An athlete with injury to their MCL often returns to their usual training or routine after just a few weeks. But is this the best course of treatment for an injured MCL? In this article, we will explore the injury and healing process of the knee and its MCL, and also examine whether a medial collateral ligament injury should just heal on its own or if  this path allows for a weaker MCL. Also, does allowing the MCL heal on its own make one more susceptible to re-injury?</span>   </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>The Self-Healed Medial Collateral Ligament vs the Pre-Injured State</strong></span></h3>\r\n<span style=\"font-weight: 400;\">The MCL has a greater blood supply than the ACL one thing. And that adds to its greater ability to heal.  However, studies have shown that even though conservative therapy for MCL injuries has been shown to be more effective than in ACL or even PCL injuries, the healed MCL remains weaker and less efficient than the ligament in its pre-injured state. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament heals by scar formation, which is an inferior type of healing, which results in less strength than in normal ligaments. And the weak ligament leads to ligament laxity and an unstable joint. Joint instability as the result of an MCL injury begins the process of arthritis. The healing scarred ligament becomes longer and loose, which causes the joint to move and rotate differently. </span>\r\n\r\n<span style=\"font-weight: 400;\">The abnormal movement alters how the knee can handle loads and pressures placed upon it. The instability allows for more sliding between joint surfaces, and decreases the efficiency of the muscles. That leads to disruption of the underlying cartilage and bone, and boosts overall degeneration. The result is the eventual formation of arthritis.</span><span style=\"font-weight: 400;\">  </span>\r\n\r\n<b>An Injury to One Knee Structure Affects the Rest of the Knee</b>\r\n\r\n<span style=\"font-weight: 400;\">Wear and tear, trauma type injuries, and anything else that affects one ligament of the knee, will affect the other structures of the knee. The MCL helps the knee to bend and twist correctly. But when it is injured, those dynamics are changed. MCL injuries usually occur near where the ligament attaches to the thigh bone at the knee. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament attaches to a bony prominence called the medial condyle and assists in keeping the knee from hyperextending. When the MCL becomes weak and unstable, it starts a cascade of degeneration of the condyles. Since the medial condyle bears a lot of weight, the weak ligament boosts the wear on the bony condyle. And as the bone wears, the degeneration will also cause injury to the meniscus. </span>\r\n\r\n<span style=\"font-weight: 400;\">The cycle then continues as these bony attachments continue to degenerate, because the attached ligaments will lose their tautness and become even more loose and weak.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>Treatment of an Injured MCL</b>\r\n\r\n<span style=\"font-weight: 400;\">The care of MCL injuries ranges from conservative to surgical measures. Surgery involves the cutting and removal of tissue, and since MCL injuries often involve other structures, that would entail even more cutting. It is important to understand that removal and cutting of knee structures adds to knee instability and to further degeneration of the knee in the long run, so avoidance of surgery would be preferred. What can be done then, and what are your options, considering the inferior healing of the MCL when left to heal on its own? Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are treatment options available for MCL injuries, because they help to provide healing to the entire knee and also allow for stabilization of the injured MCL. Studies have shown that these treatments are effective at increasing the strength of the ligament at the attachment site, as well as boosting the overall ligament mass and strength. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics for MCL injuries encourages collagen formation at the knee joint, stimulates the body to repair itself, and heals the ligaments, by stimulating new tissue formation, rather than scar tissue formation. Surgery will be necessary when the ligament is completely torn, but Regenerative Orthopedics is helpful when both ends of the ligament remain attached to bone, and in 98% of ligament injuries this is the case, since the injuries are partial tears. </span>\r\n\r\n<span style=\"font-weight: 400;\">The key to healthy knees is strong ligaments and tendons. In the case of the injured MCL, co-injury of ligaments, and other involved structures in MCL injuries, the goal is to treat the whole knee with Regenerative Orthopedics to stimulate repair, and strengthen the injured and weakened structures. The treatment will lead to the deposits of new collagen, the material the ligaments and tendons are made of. The end result is a stronger, more stable knee joint. Rather than just allowing the MCL to heal on its own, Regenerative Orthopedics ensures proper regeneration of the ligament tissue, allowing for effective elimination of pain, the repair of the MCL injury, and a safe return to sport and activities.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Medial Collateral Ligament Injuries','','inherit','closed','closed','','2858-revision-v1','','','2020-08-26 20:53:06','2020-08-26 20:53:06','',2858,'https://www.drfields.com/uncategorized/2858-revision-v1/',0,'revision','',0),(4053,9,'2020-08-26 21:07:31','2020-08-26 21:07:31','[caption id=\"attachment_4049\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4049 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/MCL-tears-500x500.jpg\" alt=\"Medial Collateral Ligament Injuries\" width=\"500\" height=\"500\" /> <strong>            Repair Medial Collateral Ligament Injuries at OrthoRegen</strong>[/caption]\r\n\r\n<span style=\"font-weight: 400;\">The <b>Medial Collateral Ligament (</b><strong>MCL)</strong> is a vital knee structure for providing stability to the knee joint. It is one of four major ligaments of the knee, along with the anterior cruciate (ACL), the posterior cruciate (PCL), and the lateral collateral (LCL) ligaments, all of which stabilize the knee. In medial collateral ligament injuries, very often these other ligaments are injured too! </span>\r\n\r\n<span style=\"font-weight: 400;\">MCL injuries also affect the meniscus. Since part of the MCL is attached to the meniscus, a tear of the meniscus can also accompany an MCL injury. </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>Spontaneous or Self-Healing Is a Consideration in Medial Collateral Ligament Injuries</strong></span></h3>\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">When a ligament in the knee is injured, the most common ligament affected is the medial collateral ligament (MCL).  In general, the MCL is a very strong ligament. And it is pretty resilient when injured. In many circumstances, physicians will opt for non-surgical treatments, because they take into consideration the ability of the MCL to heal on its own. </span></span>\r\n\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">An athlete with injury to their MCL often returns to their usual training or routine after just a few weeks. But is this the best course of treatment for an injured MCL? In this article, we will explore the injury and healing process of the knee and its MCL, and also examine whether a medial collateral ligament injury should just heal on its own or if  this path allows for a weaker MCL. Also, does allowing the MCL heal on its own make one more susceptible to re-injury?</span>   </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>The Self-Healed MCL vs the Pre-Injured State</strong></span></h3>\r\n<span style=\"font-weight: 400;\">The MCL has a greater blood supply than the ACL one thing. And that adds to its greater ability to heal.  However, studies have shown that even though conservative therapy for MCL injuries has been shown to be more effective than in ACL or even PCL injuries, the healed MCL remains weaker and less efficient than the ligament in its pre-injured state. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament heals by scar formation, which is an inferior type of healing, which results in less strength than in normal ligaments. And the weak ligament leads to ligament laxity and an unstable joint. Joint instability as the result of an MCL injury begins the process of arthritis. The healing scarred ligament becomes longer and loose, which causes the joint to move and rotate differently. </span>\r\n\r\n<span style=\"font-weight: 400;\">The abnormal movement alters how the knee can handle loads and pressures placed upon it. The instability allows for more sliding between joint surfaces, and decreases the efficiency of the muscles. That leads to disruption of the underlying cartilage and bone, and boosts overall degeneration. The result is the eventual formation of arthritis.</span><span style=\"font-weight: 400;\">  </span>\r\n\r\n<b>An Injury to One Knee Structure Affects the Rest of the Knee</b>\r\n\r\n<span style=\"font-weight: 400;\">Wear and tear, trauma type injuries, and anything else that affects one ligament of the knee, will affect the other structures of the knee. The MCL helps the knee to bend and twist correctly. But when it is injured, those dynamics are changed. MCL injuries usually occur near where the ligament attaches to the thigh bone at the knee. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament attaches to a bony prominence called the medial condyle and assists in keeping the knee from hyperextending. When the MCL becomes weak and unstable, it starts a cascade of degeneration of the condyles. Since the medial condyle bears a lot of weight, the weak ligament boosts the wear on the bony condyle. And as the bone wears, the degeneration will also cause injury to the meniscus. </span>\r\n\r\n<span style=\"font-weight: 400;\">The cycle then continues as these bony attachments continue to degenerate, because the attached ligaments will lose their tautness and become even more loose and weak.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>Treatment of an Injured MCL</b>\r\n\r\n<span style=\"font-weight: 400;\">The care of MCL injuries ranges from conservative to surgical measures. Surgery involves the cutting and removal of tissue, and since medial collateral ligament injuries often involve other structures, that would entail even more cutting. </span>\r\n\r\n<span style=\"font-weight: 400;\">It is important to understand that removal and cutting of knee structures adds to knee instability and to further degeneration of the knee in the long run. So avoidance of surgery would be preferred. What can be done then? And what are your options, considering the inferior healing of the MCL when left to heal on its own?</span>\r\n<h3><strong>Regenerative Orthopedics Options for MCL Injuries</strong></h3>\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics, including <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a>, <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP</a>, and Prolotherapy are treatment options available for MCL injuries. They help to provide healing of the entire knee. And they also allow for stabilization of the injured MCL. Studies have shown that these treatments are effective at increasing the strength of the ligament at the attachment site, as well as boosting the overall ligament mass and strength. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics for MCL injuries encourages collagen formation at the knee joint. It stimulates the body to repair itself, and heals the ligaments, by stimulating new tissue formation, rather than scar tissue formation. Surgery will be necessary when the ligament is completely torn. But Regenerative Orthopedics is helpful when both ends of the ligament remain attached to bone. And in 98% of ligament injuries this is the case, since the injuries are partial tears. </span>\r\n\r\n<span style=\"font-weight: 400;\">The key to healthy knees is strong ligaments and tendons. In the case of the medial collateral ligament injuries, co-injury of ligaments, and other involved structures in MCL injuries, the goal is to treat the whole knee with Regenerative Orthopedics. The treatment will stimulate repair, and strengthen the injured and weakened structures. It will lead to the deposits of new collagen, the material the ligaments and tendons are made of. </span>\r\n\r\n<span style=\"font-weight: 400;\">The end result is a stronger, more stable knee joint. Rather than just allowing the MCL to heal on its own, Regenerative Orthopedics ensures proper regeneration of the ligament tissue, allowing for effective elimination of pain, the repair of the MCL injury, and a safe return to sport and activities.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Medial Collateral Ligament Injuries','','inherit','closed','closed','','2858-revision-v1','','','2020-08-26 21:07:31','2020-08-26 21:07:31','',2858,'https://www.drfields.com/uncategorized/2858-revision-v1/',0,'revision','',0),(4054,9,'2020-08-26 21:09:04','2020-08-26 21:09:04','[caption id=\"attachment_4049\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4049 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/MCL-tears-500x500.jpg\" alt=\"Medial Collateral Ligament Injuries\" width=\"500\" height=\"500\" /> <strong>            Repair Medial Collateral Ligament Injuries at OrthoRegen</strong>[/caption]\r\n\r\n<span style=\"font-weight: 400;\">The <b>Medial Collateral Ligament (</b><strong>MCL)</strong> is a vital knee structure for providing stability to the knee joint. It is one of four major ligaments of the knee, along with the anterior cruciate (ACL), the posterior cruciate (PCL), and the lateral collateral (LCL) ligaments, all of which stabilize the knee. Other ligaments are often injured when the medial collateral ligament is injured</span>\r\n\r\n<span style=\"font-weight: 400;\">MCL injuries also affect the meniscus. Since part of the MCL is attached to the meniscus, a tear of the meniscus can accompany an MCL injury. </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>Spontaneous or Self-Healing Is a Consideration in Medial Collateral Ligament Injuries</strong></span></h3>\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">When a ligament in the knee is injured, the most common ligament affected is the medial collateral ligament (MCL).  In general, the MCL is a very strong ligament. And it is pretty resilient when injured. In many circumstances, physicians will opt for non-surgical treatments, because they take into consideration the ability of the MCL to heal on its own. </span></span>\r\n\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">An athlete with injury to their MCL often returns to their usual training or routine after just a few weeks. But is this the best course of treatment for an injured MCL? In this article, we will explore the injury and healing process of the knee and its MCL, and also examine whether a medial collateral ligament injury should just heal on its own or if  this path allows for a weaker MCL. Also, does allowing the MCL heal on its own make one more susceptible to re-injury?</span>   </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>The Self-Healed MCL vs the Pre-Injured State</strong></span></h3>\r\n<span style=\"font-weight: 400;\">The MCL has a greater blood supply than the ACL one thing. And that adds to its greater ability to heal.  However, studies have shown that even though conservative therapy for MCL injuries has been shown to be more effective than in ACL or even PCL injuries, the healed MCL remains weaker and less efficient than the ligament in its pre-injured state. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament heals by scar formation, which is an inferior type of healing, which results in less strength than in normal ligaments. And the weak ligament leads to ligament laxity and an unstable joint. Joint instability as the result of an MCL injury begins the process of arthritis. The healing scarred ligament becomes longer and loose, which causes the joint to move and rotate differently. </span>\r\n\r\n<span style=\"font-weight: 400;\">The abnormal movement alters how the knee can handle loads and pressures placed upon it. The instability allows for more sliding between joint surfaces, and decreases the efficiency of the muscles. That leads to disruption of the underlying cartilage and bone, and boosts overall degeneration. The result is the eventual formation of arthritis.</span><span style=\"font-weight: 400;\">  </span>\r\n\r\n<b>An Injury to One Knee Structure Affects the Rest of the Knee</b>\r\n\r\n<span style=\"font-weight: 400;\">Wear and tear, trauma type injuries, and anything else that affects one ligament of the knee, will affect the other structures of the knee. The MCL helps the knee to bend and twist correctly. But when it is injured, those dynamics are changed. MCL injuries usually occur near where the ligament attaches to the thigh bone at the knee. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament attaches to a bony prominence called the medial condyle and assists in keeping the knee from hyperextending. When the MCL becomes weak and unstable, it starts a cascade of degeneration of the condyles. Since the medial condyle bears a lot of weight, the weak ligament boosts the wear on the bony condyle. And as the bone wears, the degeneration will also cause injury to the meniscus. </span>\r\n\r\n<span style=\"font-weight: 400;\">The cycle then continues as these bony attachments continue to degenerate, because the attached ligaments will lose their tautness and become even more loose and weak.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>Treatment of an Injured MCL</b>\r\n\r\n<span style=\"font-weight: 400;\">The care of MCL injuries ranges from conservative to surgical measures. Surgery involves the cutting and removal of tissue, and since medial collateral ligament injuries often involve other structures, that would entail even more cutting. </span>\r\n\r\n<span style=\"font-weight: 400;\">It is important to understand that removal and cutting of knee structures adds to knee instability and to further degeneration of the knee in the long run. So avoidance of surgery would be preferred. What can be done then? And what are your options, considering the inferior healing of the MCL when left to heal on its own?</span>\r\n<h3><strong>Regenerative Orthopedics Options for MCL Injuries</strong></h3>\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics, including <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a>, <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP</a>, and Prolotherapy are treatment options available for MCL injuries. They help to provide healing of the entire knee. And they also allow for stabilization of the injured MCL. Studies have shown that these treatments are effective at increasing the strength of the ligament at the attachment site, as well as boosting the overall ligament mass and strength. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics for MCL injuries encourages collagen formation at the knee joint. It stimulates the body to repair itself, and heals the ligaments, by stimulating new tissue formation, rather than scar tissue formation. Surgery will be necessary when the ligament is completely torn. But Regenerative Orthopedics is helpful when both ends of the ligament remain attached to bone. And in 98% of ligament injuries this is the case, since the injuries are partial tears. </span>\r\n\r\n<span style=\"font-weight: 400;\">The key to healthy knees is strong ligaments and tendons. In the case of the medial collateral ligament injuries, co-injury of ligaments, and other involved structures in MCL injuries, the goal is to treat the whole knee with Regenerative Orthopedics. The treatment will stimulate repair, and strengthen the injured and weakened structures. It will lead to the deposits of new collagen, the material the ligaments and tendons are made of. </span>\r\n\r\n<span style=\"font-weight: 400;\">The end result is a stronger, more stable knee joint. Rather than just allowing the MCL to heal on its own, Regenerative Orthopedics ensures proper regeneration of the ligament tissue, allowing for effective elimination of pain, the repair of the MCL injury, and a safe return to sport and activities.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Medial Collateral Ligament Injuries','','inherit','closed','closed','','2858-revision-v1','','','2020-08-26 21:09:04','2020-08-26 21:09:04','',2858,'https://www.drfields.com/uncategorized/2858-revision-v1/',0,'revision','',0),(4055,9,'2020-08-26 21:12:31','2020-08-26 21:12:31','<span style=\"font-weight: 400;\">The <b>Medial Collateral Ligament (</b><strong>MCL)</strong> is a vital knee structure for providing stability to the knee joint. It is one of four major ligaments of the knee, along with the anterior cruciate (ACL), the posterior cruciate (PCL), and the lateral collateral (LCL) ligaments, all of which stabilize the knee. Other ligaments are often injured when the medial collateral ligament is injured</span>\r\n\r\n<span style=\"font-weight: 400;\">MCL injuries also affect the meniscus. Since part of the MCL is attached to the meniscus, a tear of the meniscus can accompany an MCL injury. </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>Spontaneous or Self-Healing Is a Consideration in Medial Collateral Ligament Injuries</strong></span></h3>\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">When a ligament in the knee is injured, the most common ligament affected is the medial collateral ligament (MCL).  In general, the MCL is a very strong ligament. And it is pretty resilient when injured. In many circumstances, physicians will opt for non-surgical treatments, because they take into consideration the ability of the MCL to heal on its own. </span></span>\r\n\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">An athlete with injury to their MCL often returns to their usual training or routine after just a few weeks. But is this the best course of treatment for an injured MCL? In this article, we will explore the injury and healing process of the knee and its MCL, and also examine whether a medial collateral ligament injury should just heal on its own or if  this path allows for a weaker MCL. Also, does allowing the MCL heal on its own make one more susceptible to re-injury?</span>   </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>The Self-Healed MCL vs the Pre-Injured State</strong></span></h3>\r\n<span style=\"font-weight: 400;\">The MCL has a greater blood supply than the ACL one thing. And that adds to its greater ability to heal.  However, studies have shown that even though conservative therapy for MCL injuries has been shown to be more effective than in ACL or even PCL injuries, the healed MCL remains weaker and less efficient than the ligament in its pre-injured state. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament heals by scar formation, which is an inferior type of healing, which results in less strength than in normal ligaments. And the weak ligament leads to ligament laxity and an unstable joint. Joint instability as the result of an MCL injury begins the process of arthritis. The healing scarred ligament becomes longer and loose, which causes the joint to move and rotate differently. </span>\r\n\r\n<span style=\"font-weight: 400;\">The abnormal movement alters how the knee can handle loads and pressures placed upon it. The instability allows for more sliding between joint surfaces, and decreases the efficiency of the muscles. That leads to disruption of the underlying cartilage and bone, and boosts overall degeneration. The result is the eventual formation of arthritis.</span><span style=\"font-weight: 400;\">  </span>\r\n\r\n<b>An Injury to One Knee Structure Affects the Rest of the Knee</b>\r\n\r\n<span style=\"font-weight: 400;\">Wear and tear, trauma type injuries, and anything else that affects one ligament of the knee, will affect the other structures of the knee. The MCL helps the knee to bend and twist correctly. But when it is injured, those dynamics are changed. MCL injuries usually occur near where the ligament attaches to the thigh bone at the knee. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament attaches to a bony prominence called the medial condyle and assists in keeping the knee from hyperextending. When the MCL becomes weak and unstable, it starts a cascade of degeneration of the condyles. Since the medial condyle bears a lot of weight, the weak ligament boosts the wear on the bony condyle. And as the bone wears, the degeneration will also cause injury to the meniscus. </span>\r\n\r\n<span style=\"font-weight: 400;\">The cycle then continues as these bony attachments continue to degenerate, because the attached ligaments will lose their tautness and become even more loose and weak.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>Treatment of an Injured MCL</b>\r\n\r\n<span style=\"font-weight: 400;\">The care of MCL injuries ranges from conservative to surgical measures. Surgery involves the cutting and removal of tissue, and since medial collateral ligament injuries often involve other structures, that would entail even more cutting. </span>\r\n\r\n<span style=\"font-weight: 400;\">It is important to understand that removal and cutting of knee structures adds to knee instability and to further degeneration of the knee in the long run. So avoidance of surgery would be preferred. What can be done then? And what are your options, considering the inferior healing of the MCL when left to heal on its own?</span>\r\n<h3><strong>Regenerative Orthopedics Options for MCL Injuries</strong></h3>\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics, including <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a>, <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP</a>, and Prolotherapy are treatment options available for MCL injuries. They help to provide healing of the entire knee. And they also allow for stabilization of the injured MCL. Studies have shown that these treatments are effective at increasing the strength of the ligament at the attachment site, as well as boosting the overall ligament mass and strength. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics for MCL injuries encourages collagen formation at the knee joint. It stimulates the body to repair itself. And it heals the ligaments by stimulating new tissue formation, rather than scar tissue formation.When the ligament is completely torn, surgery is necessary. But Regenerative Orthopedics is helpful when both ends of the ligament remain attached to bone. And in 98% of ligament injuries this is the case, since the injuries are partial tears. </span>\r\n<h3>Strong Ligaments and Tendons Are Key to a Healthy Knee Joint</h3>\r\n<span style=\"font-weight: 400;\">The key to healthy knees is strong ligaments and tendons. In the case of the medial collateral ligament injuries, co-injury of ligaments, and other involved structures in MCL injuries, the goal is to treat the whole knee with Regenerative Orthopedics. The treatment will stimulate repair, and strengthen the injured and weakened structures. It will lead to the deposits of new collagen, the material the ligaments and tendons are made of. </span>\r\n\r\n<span style=\"font-weight: 400;\">The end result is a stronger, more stable knee joint. Rather than just allowing the MCL to heal on its own, Regenerative Orthopedics ensures proper regeneration of the ligament tissue, allowing for effective elimination of pain, the repair of the MCL injury, and a safe return to sport and activities.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Medial Collateral Ligament Injuries','','inherit','closed','closed','','2858-revision-v1','','','2020-08-26 21:12:31','2020-08-26 21:12:31','',2858,'https://www.drfields.com/uncategorized/2858-revision-v1/',0,'revision','',0),(4056,9,'2020-08-26 21:17:00','2020-08-26 21:17:00','[caption id=\"attachment_4049\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4049 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/MCL-tears-500x500.jpg\" alt=\"Medial Collateral Ligament Injuries\" width=\"500\" height=\"500\" /> <strong>          Repair Medial Collateral Ligament Injuries at OrthoRegen</strong>[/caption]\r\n\r\n<span style=\"font-weight: 400;\">The <b>Medial Collateral Ligament (</b><strong>MCL)</strong> is a vital knee structure for providing stability to the knee joint. It is one of four major ligaments of the knee, along with the anterior cruciate (ACL), the posterior cruciate (PCL), and the lateral collateral (LCL) ligaments, all of which stabilize the knee. Other ligaments are often injured when the medial collateral ligament is injured</span>\r\n\r\n<span style=\"font-weight: 400;\">MCL injuries also affect the meniscus. Since part of the MCL is attached to the meniscus, a tear of the meniscus can accompany an MCL injury. </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>Spontaneous or Self-Healing Is a Consideration in Medial Collateral Ligament Injuries</strong></span></h3>\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">When a ligament in the knee is injured, the most common ligament affected is the medial collateral ligament (MCL).  In general, the MCL is a very strong ligament. And it is pretty resilient when injured. In many circumstances, physicians will opt for non-surgical treatments, because they take into consideration the ability of the MCL to heal on its own. </span></span>\r\n\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">An athlete with injury to their MCL often returns to their usual training or routine after just a few weeks. But is this the best course of treatment for an injured MCL? In this article, we will explore the injury and healing process of the knee and its MCL, and also examine whether a medial collateral ligament injury should just heal on its own or if  this path allows for a weaker MCL. Also, does allowing the MCL heal on its own make one more susceptible to re-injury?</span>   </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>The Self-Healed MCL vs the Pre-Injured State</strong></span></h3>\r\n<span style=\"font-weight: 400;\">The MCL has a greater blood supply than the ACL one thing. And that adds to its greater ability to heal.  However, studies have shown that even though conservative therapy for MCL injuries has been shown to be more effective than in ACL or even PCL injuries, the healed MCL remains weaker and less efficient than the ligament in its pre-injured state. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament heals by scar formation, which is an inferior type of healing, which results in less strength than in normal ligaments. And the weak ligament leads to ligament laxity and an unstable joint. Joint instability as the result of an MCL injury begins the process of arthritis. The healing scarred ligament becomes longer and loose, which causes the joint to move and rotate differently. </span>\r\n\r\n<span style=\"font-weight: 400;\">The abnormal movement alters how the knee can handle loads and pressures placed upon it. The instability allows for more sliding between joint surfaces, and decreases the efficiency of the muscles. That leads to disruption of the underlying cartilage and bone, and boosts overall degeneration. The result is the eventual formation of arthritis.</span><span style=\"font-weight: 400;\">  </span>\r\n\r\n<b>An Injury to One Knee Structure Affects the Rest of the Knee</b>\r\n\r\n<span style=\"font-weight: 400;\">Wear and tear, trauma type injuries, and anything else that affects one ligament of the knee, will affect the other structures of the knee. The MCL helps the knee to bend and twist correctly. But when it is injured, those dynamics are changed. MCL injuries usually occur near where the ligament attaches to the thigh bone at the knee. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament attaches to a bony prominence called the medial condyle and assists in keeping the knee from hyperextending. When the MCL becomes weak and unstable, it starts a cascade of degeneration of the condyles. Since the medial condyle bears a lot of weight, the weak ligament boosts the wear on the bony condyle. And as the bone wears, the degeneration will also cause injury to the meniscus. </span>\r\n\r\n<span style=\"font-weight: 400;\">The cycle then continues as these bony attachments continue to degenerate, because the attached ligaments will lose their tautness and become even more loose and weak.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>Treatment of an Injured MCL</b>\r\n\r\n<span style=\"font-weight: 400;\">The care of MCL injuries ranges from conservative to surgical measures. Surgery involves the cutting and removal of tissue, and since medial collateral ligament injuries often involve other structures, that would entail even more cutting. </span>\r\n\r\n<span style=\"font-weight: 400;\">It is important to understand that removal and cutting of knee structures adds to knee instability and to further degeneration of the knee in the long run. So avoidance of surgery would be preferred. What can be done then? And what are your options, considering the inferior healing of the MCL when left to heal on its own?</span>\r\n<h3><strong>Regenerative Orthopedics Options for MCL Injuries</strong></h3>\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics, including <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a>, <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP</a>, and Prolotherapy are treatment options available for MCL injuries. They help to provide healing of the entire knee. And they also allow for stabilization of the injured MCL. Studies have shown that these treatments are effective at increasing the strength of the ligament at the attachment site, as well as boosting the overall ligament mass and strength. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics for MCL injuries encourages collagen formation at the knee joint. It stimulates the body to repair itself. And it heals the ligaments by stimulating new tissue formation, rather than scar tissue formation.When the ligament is completely torn, surgery is necessary. But Regenerative Orthopedics is helpful when both ends of the ligament remain attached to bone. And in 98% of ligament injuries this is the case, since the injuries are partial tears. </span>\r\n<h3>Strong Ligaments and Tendons Are Key to a Healthy Knee Joint</h3>\r\n<span style=\"font-weight: 400;\">The key to healthy knees is strong ligaments and tendons. In the case of the medial collateral ligament injuries, co-injury of ligaments, and other involved structures in MCL injuries, the goal is to treat the whole knee with Regenerative Orthopedics. The treatment will stimulate repair, and strengthen the injured and weakened structures. New collagen, the material the ligaments and tendons are made of, is deposited at the site of repair. </span>\r\n\r\n<span style=\"font-weight: 400;\">The end result is a stronger, more stable knee joint. Rather than just allowing the MCL to heal on its own, Regenerative Orthopedics ensures proper regeneration of the ligament tissue, allowing for effective elimination of pain, the repair of the MCL injury, and a safe return to sport and activities.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Medial Collateral Ligament Injuries','','inherit','closed','closed','','2858-revision-v1','','','2020-08-26 21:17:00','2020-08-26 21:17:00','',2858,'https://www.drfields.com/uncategorized/2858-revision-v1/',0,'revision','',0),(4057,9,'2020-08-26 21:17:50','2020-08-26 21:17:50','[caption id=\"attachment_4049\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4049 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/MCL-tears-500x500.jpg\" alt=\"Medial Collateral Ligament Injuries\" width=\"500\" height=\"500\" /> <strong>          Repair Medial Collateral Ligament Injuries at OrthoRegen</strong>[/caption]\r\n\r\n<span style=\"font-weight: 400;\">The <b>Medial Collateral Ligament (</b><strong>MCL)</strong> is a vital knee structure for providing stability to the knee joint. It is one of four major ligaments of the knee, along with the anterior cruciate (ACL), the posterior cruciate (PCL), and the lateral collateral (LCL) ligaments, all of which stabilize the knee. Other ligaments are often injured when the medial collateral ligament is injured</span>\r\n\r\n<span style=\"font-weight: 400;\">MCL injuries also affect the meniscus. Since part of the MCL is attached to the meniscus, a tear of the meniscus can accompany an MCL injury. </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>Spontaneous or Self-Healing Is a Consideration in Medial Collateral Ligament Injuries</strong></span></h3>\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">When a ligament in the knee is injured, the most common ligament affected is the medial collateral ligament (MCL).  In general, the MCL is a very strong ligament. And it is pretty resilient when injured. In many circumstances, physicians will opt for non-surgical treatments, because they take into consideration the ability of the MCL to heal on its own. </span></span>\r\n\r\n<span style=\"font-weight: 400;\"><span style=\"font-size: 16px;\">An athlete with injury to their MCL often returns to their usual training or routine after just a few weeks. But is this the best course of treatment for an injured MCL? In this article, we will explore the injury and healing process of the knee and its MCL, and also examine whether a medial collateral ligament injury should just heal on its own or if  this path allows for a weaker MCL. Also, does allowing the MCL heal on its own make one more susceptible to re-injury?</span>   </span>\r\n<h3><span style=\"font-weight: 400;\"><strong>The Self-Healed MCL vs the Pre-Injured State</strong></span></h3>\r\n<span style=\"font-weight: 400;\">The MCL has a greater blood supply than the ACL one thing. And that adds to its greater ability to heal.  However, studies have shown that even though conservative therapy for MCL injuries has been shown to be more effective than in ACL or even PCL injuries, the healed MCL remains weaker and less efficient than the ligament in its pre-injured state. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament heals by scar formation, which is an inferior type of healing, which results in less strength than in normal ligaments. And the weak ligament leads to ligament laxity and an unstable joint. Joint instability as the result of an MCL injury begins the process of arthritis. The healing scarred ligament becomes longer and loose, which causes the joint to move and rotate differently. </span>\r\n\r\n<span style=\"font-weight: 400;\">The abnormal movement alters how the knee can handle loads and pressures placed upon it. The instability allows for more sliding between joint surfaces, and decreases the efficiency of the muscles. That leads to disruption of the underlying cartilage and bone, and boosts overall degeneration. The result is the eventual formation of arthritis.</span><span style=\"font-weight: 400;\">  </span>\r\n\r\n<b>An Injury to One Knee Structure Affects the Rest of the Knee</b>\r\n\r\n<span style=\"font-weight: 400;\">Wear and tear, trauma type injuries, and anything else that affects one ligament of the knee, will affect the other structures of the knee. The MCL helps the knee to bend and twist correctly. But when it is injured, those dynamics are changed. MCL injuries usually occur near where the ligament attaches to the thigh bone at the knee. </span>\r\n\r\n<span style=\"font-weight: 400;\">The ligament attaches to a bony prominence called the medial condyle and assists in keeping the knee from hyperextending. When the MCL becomes weak and unstable, it starts a cascade of degeneration of the condyles. Since the medial condyle bears a lot of weight, the weak ligament boosts the wear on the bony condyle. And as the bone wears, the degeneration will also cause injury to the meniscus. </span>\r\n\r\n<span style=\"font-weight: 400;\">The cycle then continues as these bony attachments continue to degenerate, because the attached ligaments will lose their tautness and become even more loose and weak.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>Treatment of an Injured MCL</b>\r\n\r\n<span style=\"font-weight: 400;\">The care of MCL injuries ranges from conservative to surgical measures. Surgery involves the cutting and removal of tissue, and since medial collateral ligament injuries often involve other structures, that would entail even more cutting. </span>\r\n\r\n<span style=\"font-weight: 400;\">It is important to understand that removal and cutting of knee structures adds to knee instability and to further degeneration of the knee in the long run. So avoidance of surgery would be preferred. What can be done then? And what are your options, considering the inferior healing of the MCL when left to heal on its own?</span>\r\n<h3><strong>Regenerative Orthopedics Options for Medial Collateral Ligament Injuries</strong></h3>\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics, including <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a>, <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP</a>, and Prolotherapy are treatment options available for MCL injuries. They help to provide healing of the entire knee. And they also allow for stabilization of the injured MCL. Studies have shown that these treatments are effective at increasing the strength of the ligament at the attachment site, as well as boosting the overall ligament mass and strength. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics for MCL injuries encourages collagen formation at the knee joint. It stimulates the body to repair itself. And it heals the ligaments by stimulating new tissue formation, rather than scar tissue formation.When the ligament is completely torn, surgery is necessary. But Regenerative Orthopedics is helpful when both ends of the ligament remain attached to bone. And in 98% of ligament injuries this is the case, since the injuries are partial tears. </span>\r\n<h3>Strong Ligaments and Tendons Are Key to a Healthy Knee Joint</h3>\r\n<span style=\"font-weight: 400;\">The key to healthy knees is strong ligaments and tendons. In the case of the medial collateral ligament injuries, co-injury of ligaments, and other involved structures in MCL injuries, the goal is to treat the whole knee with Regenerative Orthopedics. The treatment will stimulate repair, and strengthen the injured and weakened structures. New collagen, the material the ligaments and tendons are made of, is deposited at the site of repair. </span>\r\n\r\n<span style=\"font-weight: 400;\">The end result is a stronger, more stable knee joint. Rather than just allowing the MCL to heal on its own, Regenerative Orthopedics ensures proper regeneration of the ligament tissue, allowing for effective elimination of pain, the repair of the MCL injury, and a safe return to sport and activities.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Medial Collateral Ligament Injuries','','inherit','closed','closed','','2858-revision-v1','','','2020-08-26 21:17:50','2020-08-26 21:17:50','',2858,'https://www.drfields.com/uncategorized/2858-revision-v1/',0,'revision','',0),(4058,9,'2020-08-31 21:48:38','2020-08-31 21:48:38','<span style=\"font-weight: 400;\">The shoulder is quite an amazing, and incredibly mobile joint. But injury to the glenoid labrum of the shoulder can keep you from reaching your sport or professional goals. If you are a tradesman or woman whose work requires repetitive overhead motion to accomplish your trade, and shoulder pain is making your day almost impossible, a labral injury may be part of the problem.</span>\n<h3>Repetitive Overhead Motion Can Lead to Tears of the  Glenoid Labrum of the Shoulder</h3>\n<span style=\"font-weight: 400;\">Athletes and others who rely on their shoulders for the movements necessary to carry out their sports and professions are especially susceptible to injuries and tears of the glenoid labrum.  There are a couple types of labral tears. A SLAP tear (Superior Labral, Anterior to Posterior) is one of the most common, and results in a tear from the front to back of the glenoid labrum. Other labral tears include flap tears, Bankart lesions, and degenerative lesions. </span>\n\n<span style=\"font-weight: 400;\">With injury to the glenoid labrum of the shoulder, overhead strokes of a painter can be difficult too. Or the strum of a chord for a guitar player may bring shooting pains. And a pitcher might experience pain while throwing a ball compromising big hopes for the season. Shoulder pain from a glenoid labrum injury can put a major damper on your life. And those suffering from the injury want a quick way out of the discomfort in order to get their lives back. Getting there non-surgically would be an added bonus. </span>\n\n<span style=\"font-weight: 400;\">The shoulder has a lot of mobility.  The shoulder lacks big ligamentous structures to add to its ability to move well. But that also makes it more prone to injury, since big ligament structures would add support. The glenoid labrum provides some stabilization for the shoulder. So it is an important shoulder structure. </span>\n<h3><strong>What is the Glenoid Labrum of the Shoulder?</strong></h3>\n<span style=\"font-weight: 400;\">The glenoid labrum </span><span style=\"font-weight: 400;\">is a smooth ring of fibrous cartilage that surrounds the socket part of the shoulder- a ball and socket joint. The shoulder joint has three bones that come together: the scapula (shoulder blade), the clavicle (collar bone), and the humerus (upper arm bone). The glenoid labrum is located where the top part of the upper arm comes into contact with the socket in the scapula. And it forms a deep pocket that helps keep the humerus bone in the shoulder socket and provides pain-free range of motion.</span>\n<h3><span style=\"font-weight: 400;\"><strong>How does the glenoid labrum stabilize the shoulder and provide smooth movement?</strong> </span></h3>\n<span style=\"font-weight: 400;\">The ball at the top of the arm is larger than the socket. So the labrum helps to stabilize the shoulder by increasing the socket depth and providing a place for the ligaments and tendons to attach. </span><span style=\"font-weight: 400;\">When injured, the labrum is unable to do its job adequately. And pain and symptoms are experienced. </span>\n\n<span style=\"font-weight: 400;\">Injuries to the labrum occur during traumatic events, with repetitive motions, or from recurrent dislocations. Other soft tissue, such as the ligaments and tendons, are often injured along with the damaged labrum. This is because forces strong enough to injure the labrum will also be sufficiently forceful to injure them too. </span>\n\n<span style=\"font-weight: 400;\">Keep this in mind when seeking repair. Because all of the injured shoulder structures need to be treated in order to achieve complete healing of the shoulder joint. Otherwise, a cycle of shoulder injury, re-injury, and pain will be set in motion. </span>\n<h3><b>Symptoms of a Labral Tear</b><span style=\"font-weight: 400;\"> </span></h3>\n<span style=\"font-weight: 400;\">When the glenoid labrum is torn or injured, the shoulder may feel unstable, go out easily, and be susceptible to dislocations.  The shoulder may also click, catch, and lock because the torn parts get “trapped” when the shoulder joint moves. Pain is usually noticed with overhead activities, along with the popping, locking, catching, or grinding sensations during movement. Weakness, instability, and loss of range of motion may also be experienced. </span>\n\n<b>Glenoid Labrum Injuries Treated with Regenerative Orthopedics </b>\n\n<span style=\"font-weight: 400;\">Regenerative Orthopedics effectively treats and repairs glenoid labrum injuries without the need for surgery. Athletes might consider surgery in an attempt to return quickly to their sport. But is a quick return the true outcome of surgical repair? Maybe not! </span>\n\n<span style=\"font-weight: 400;\">Researchers in the medical journal “Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery” say, “SLAP repair in throwing athletes should be approached with caution. Surgery may help improve symptoms but may not guarantee a return to the pre-injury level of competition. And even in the most expert of hands, the </span><b><i>rate of return to the pre-injury level of performance ranges from 38% to 60% and is as low as 10% for pitchers</i></b><span style=\"font-weight: 400;\">.”</span>\n<h3><span style=\"font-weight: 400;\"><strong>Regenerative Orthopedics Should be Sought as a Non-surgical Alternative</strong></span></h3>\n<span style=\"font-weight: 400;\">Surgery is needed on rare occasions, but should be a last resort. Non-Surgical Regenerative Orthopedics repairs the underlying joint instability of the shoulder joint, by treating all of the damaged soft tissue structures. Without this repair, the labral tear, ligament injury, or tendon damage will cause the shoulder to remain unstable. And shoulder problems, immobility and impingement will continue. </span>\n\n<span style=\"font-weight: 400;\">Besides being an effective treatment, Regenerative Orthopedics has several advantages. It is non-surgical, which avoids the risks of anesthesia, as well as the cutting, scraping, and probing. All of these can add to the instability of the joint. </span>\n\n<span style=\"font-weight: 400;\">Other advantages include minimal time missed from work, and no long recovery times. Regenerative Orthopedics stimulates repair of the labrum and other soft tissue structures of the shoulder, significantly improving pain levels, alleviating stiffness and the need for pain medication, and returning motion back to the shoulder joint. The repair allows for an accelerated return to sport and the profession you enjoy. </span>\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','The Glenoid Labrum of the Shoulder','','inherit','closed','closed','','2773-autosave-v1','','','2020-08-31 21:48:38','2020-08-31 21:48:38','',2773,'https://www.drfields.com/uncategorized/2773-autosave-v1/',0,'revision','',0),(4059,9,'2020-08-31 21:50:05','2020-08-31 21:50:05','<span style=\"font-weight: 400;\">The shoulder is quite an amazing, and incredibly mobile joint. But injury to the glenoid labrum of the shoulder can keep you from reaching your sport or professional goals. If you are a tradesman or woman whose work requires repetitive overhead motion to accomplish your trade, and shoulder pain is making your day almost impossible, a labral injury may be part of the problem.</span>\r\n<h3>Repetitive Overhead Motion Can Lead to Tears of the  Glenoid Labrum of the Shoulder</h3>\r\n<span style=\"font-weight: 400;\">Athletes and others who rely on their shoulders for the movements necessary to carry out their sports and professions are especially susceptible to injuries and tears of the glenoid labrum.  There are a couple types of labral tears. A SLAP tear (Superior Labral, Anterior to Posterior) is one of the most common, and results in a tear from the front to back of the glenoid labrum. Other labral tears include flap tears, Bankart lesions, and degenerative lesions. </span>\r\n\r\n<span style=\"font-weight: 400;\">With injury to the glenoid labrum of the shoulder, overhead strokes of a painter can be difficult too. Or the strum of a chord for a guitar player may bring shooting pains. And a pitcher might experience pain while throwing a ball compromising big hopes for the season. Shoulder pain from a glenoid labrum injury can put a major damper on your life. And those suffering from the injury want a quick way out of the discomfort in order to get their lives back. Getting there non-surgically would be an added bonus. </span>\r\n\r\n<span style=\"font-weight: 400;\">The shoulder has a lot of mobility.  The shoulder lacks big ligamentous structures to add to its ability to move well. But that also makes it more prone to injury, since big ligament structures would add support. The glenoid labrum provides some stabilization for the shoulder. So it is an important shoulder structure. </span>\r\n<h3><strong>What is the Glenoid Labrum of the Shoulder?</strong></h3>\r\n<span style=\"font-weight: 400;\">The glenoid labrum </span><span style=\"font-weight: 400;\">is a smooth ring of fibrous cartilage that surrounds the socket part of the shoulder- a ball and socket joint. The shoulder joint has three bones that come together: the scapula (shoulder blade), the clavicle (collar bone), and the humerus (upper arm bone). The glenoid labrum is located where the top part of the upper arm comes into contact with the socket in the scapula. And it forms a deep pocket that helps keep the humerus bone in the shoulder socket and provides pain-free range of motion.</span>\r\n<h3><span style=\"font-weight: 400;\"><strong>How does the glenoid labrum stabilize the shoulder and provide smooth movement?</strong> </span></h3>\r\n<span style=\"font-weight: 400;\">The ball at the top of the arm is larger than the socket. So the labrum helps to stabilize the shoulder by increasing the socket depth and providing a place for the ligaments and tendons to attach. </span><span style=\"font-weight: 400;\">When injured, the labrum is unable to do its job adequately. And pain and symptoms are experienced. </span>\r\n\r\n<span style=\"font-weight: 400;\">Injuries to the labrum occur during traumatic events, with repetitive motions, or from recurrent dislocations. Other soft tissue, such as the ligaments and tendons, are often injured along with the damaged labrum. This is because forces strong enough to injure the labrum will also be sufficiently forceful to injure them too. </span>\r\n\r\n<span style=\"font-weight: 400;\">Keep this in mind when seeking repair. Because all of the injured shoulder structures need to be treated in order to achieve complete healing of the shoulder joint. Otherwise, a cycle of shoulder injury, re-injury, and pain will be set in motion. </span>\r\n<h3><b>Symptoms of a Labral Tear</b><span style=\"font-weight: 400;\"> </span></h3>\r\n<span style=\"font-weight: 400;\">When the glenoid labrum is torn or injured, the shoulder may feel unstable, go out easily, and be susceptible to dislocations.  The shoulder may also click, catch, and lock because the torn parts get “trapped” when the shoulder joint moves. Pain is usually noticed with overhead activities, along with the popping, locking, catching, or grinding sensations during movement. Weakness, instability, and loss of range of motion may also be experienced. </span>\r\n\r\n<b>Glenoid Labrum Injuries Treated with Regenerative Orthopedics </b>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics effectively treats and repairs glenoid labrum injuries without the need for surgery. Athletes might consider surgery in an attempt to return quickly to their sport. But is a quick return the true outcome of surgical repair? Maybe not! </span>\r\n\r\n<span style=\"font-weight: 400;\">Researchers in the medical journal “Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery” say, “SLAP repair in throwing athletes should be approached with caution. Surgery may help improve symptoms but may not guarantee a return to the pre-injury level of competition. And even in the most expert of hands, the </span><b><i>rate of return to the pre-injury level of performance ranges from 38% to 60% and is as low as 10% for pitchers</i></b><span style=\"font-weight: 400;\">.”</span>\r\n<h3><span style=\"font-weight: 400;\"><strong>Regenerative Orthopedics Should be Sought as a Non-surgical Alternative</strong></span></h3>\r\n<span style=\"font-weight: 400;\">Surgery is needed on rare occasions, but should be a last resort. Non-Surgical Regenerative Orthopedics repairs the underlying joint instability of the shoulder joint, by treating all of the damaged soft tissue structures. Without this repair, the labral tear, ligament injury, or tendon damage will cause the shoulder to remain unstable. And shoulder problems, immobility and impingement will continue. </span>\r\n\r\n<span style=\"font-weight: 400;\">Besides being an effective treatment, Regenerative Orthopedics has several advantages. It is non-surgical, which avoids the risks of anesthesia, as well as the cutting, scraping, and probing. All of these can add to the instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Other advantages include minimal time missed from work, and no long recovery times. Regenerative Orthopedics stimulates repair of the labrum and other soft tissue structures of the shoulder, significantly improving pain levels, alleviating stiffness and the need for pain medication, and returning motion back to the shoulder joint. The repair allows for an accelerated return to sport and the profession you enjoy. </span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','The Glenoid Labrum of the Shoulder','','inherit','closed','closed','','2773-revision-v1','','','2020-08-31 21:50:05','2020-08-31 21:50:05','',2773,'https://www.drfields.com/uncategorized/2773-revision-v1/',0,'revision','',0),(4060,9,'2021-06-18 21:45:38','2021-06-18 21:45:38','<h4>Stop Back Pain and the Endless Cycle of Chasing Symptoms</h4>\n<span style=\"font-weight: 400;\">So many people suffer from back pain, stuck in a cycle of pain medications, hours of therapy appointments, more prescription medications, over-the-counter medications, supplements, and more therapy. Only to continue to suffer from continued back pain. The cycle is an attempt to manage the pain. </span><span style=\"font-weight: 400;\">You might think, “Of course, I want to manage the pain!” But what if there is a better way and one that actually corrects the back pain problem. Regenerative Orthopedics can stop back pain and the cycle because it repairs the underlying source of pain. Since it treats at the source, it ends up resolving the pain.</span>\n\nStudies show the effectiveness of this non-surgical alternative. In one four-year study of 145 patients, 89% experienced more than 50% pain relief with Prolotherapy. Those are great results at improving quality of life and reducing pain!\n\n<span style=\"font-weight: 400;\">There\'s no need to continue chasing symptoms with ineffective treatments that keep you in the pain cycle. Instead, correct the problems with Regenerative Orthopedics and stop back pain and the endless cycle!</span>\n\n[caption id=\"attachment_4739\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4739\" src=\"https://www.drfields.com/wp-content/uploads/2019/09/Back-Pain.-Prolotherapy-500x375.jpeg\" alt=\"Back Pain. Prolotherapy\" width=\"500\" height=\"375\" /> <strong>                     Stop Back Pain with Prolotherapy</strong>[/caption]\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<b>What Is the Reason Behind Most Back Pain?</b>\n\n<span style=\"font-weight: 400;\">Since back pain is so common and a leading cause of disability, it is important to look at the reason for it. The underlying cause of most back pain issues is </span><b><i>spinal instability</i></b><span style=\"font-weight: 400;\">. </span>\n\n<span style=\"font-weight: 400;\">What is spinal instability you might ask? When you bend and twist and tweak your back, you injure soft tissue, like muscle and ligaments. Muscles have a great blood supply, so they heal quickly. Ligaments have a poor blood supply and take quite a while to heal. In fact, they heal quite poorly. </span>\n\n<span style=\"font-weight: 400;\">Unhealed ligaments are weak and lax, similar to stretched-out rubber bands. Ligaments connect bone to bone. So if the ligaments are weak, then the bone connection will be weak and wobbly. That bone connection or joint is then unstable. </span>\n<h3>The Vertebral Spine</h3>\n<span style=\"font-weight: 400;\">The vertebral bones in the back make up the spine. So when the ligaments in the spine are weak or wobbly, that makes for spinal instability. When these ligaments remain unhealed, the problem gets worse and worse. The ligaments get more lax and the spine becomes more unstable. You can imagine that if the joints of the spine become wobbly, that the bony structures will have difficulty moving as they should. </span>\n\n<span style=\"font-weight: 400;\">When motion in the vertebral joint connections stops being smooth, the abnormal motion causes the joint structures to degenerate. Instability and abnormal joint motion are behind all types of painful back conditions. Painful problems like bulging discs, arthritis, sciatica and degenerative joint disease can result from abnormal motion in the spine.</span>\n\n<span style=\"font-weight: 400;\"> The underlying problem is ligament weakness, which creates abnormal joint motion that will eventually damage the joint structures and elicit pain. Pain pills aren’t able to fix the weakened ligaments. And cortisone makes soft tissue weaker. So even if these things provide some short-term relief, they will eventually worsen the problem in the long run. Massage can’t strengthen weakened ligaments either.</span>\n\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\n<h4><em>Regenerative Orthopedics Can Stop Back Pain</em></h4>\n<span style=\"font-weight: 400;\">What’s the solution? The degenerative condition needs regenerative treatment. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are all regenerative treatments that strengthen ligaments, restore normal joint motion, and regenerate joint structures. Good quality <a href=\"https://lyfebotanicals.com/health/turmeric-back-pain/\">supplements</a>, like turmeric, which can aid in the healing process, are also of benefit.</span>\n\n<b>Ligaments Are Structures that Provide Stability to the Joint</b>\n\n<span style=\"font-weight: 400;\">As mentioned earlier, the most common cause of unresolved back pain is spinal instability, due to weakened and stretched-out ligaments. Ligaments are very important for the stability of the spine and for proper motion. In fact, they are some of the main stabilizing structures for the joint. </span>\n\n<span style=\"font-weight: 400;\">Sure, those with back pain will definitely complain of muscle spasms and tightness, because muscles help with stability too. But muscles will spasm because they are overcompensating for the inability of the injured ligaments to keep the spine in place. Treatments that relieve muscle spasms will give temporary reprieve of the spasms. But they will not address the ligament weakness. Instability and pain will continue because the ligaments are unable to hold the adjacent bones of the spine together properly.</span>\n\n<b>How Can You Stop Back Pain?</b>\n\n<span style=\"font-weight: 400;\">Each year, thousands and thousands of people are disabled due to some type of painful back condition. Back pain is actually one of the main reasons people come to see us at OrthoRegen<sup>®</sup>. By the time they come to see us, they have usually tried numerous types of pills, treatments, and even surgery. </span>\n\n<span style=\"font-weight: 400;\">But they are in our office because the pain has not stopped!</span><span style=\"font-weight: 400;\"> That’s because these other treatments are only short-lived and because they only provide temporary relief. Even surgical treatments end up with poor rates of success. Surgery may emphasize the treatment of the disc, for example, but it misses treating the ligament injury which is the originating source of the pain. So the pain continues.</span>\n<h3>Ligaments Can Refer Pain Too</h3>\n<span style=\"font-weight: 400;\">The places where the ligaments attach to the bones are full of nerves, which elicit pain when stretched out or injured. Injured ligaments can send out referral pain down the back of the leg and even to the foot. They can also refer pain to the groin and pelvic floor. If weak ligaments exist, the physician knowledgeable in examination techniques can diagnose instability during the physical examination with varied maneuvers and positioning. Even palpating, or pressing with the thumb at the ligament attachments will elicit pain indicating ligament laxity.</span>\n\n<span style=\"font-weight: 400;\">Back pain is one of the easiest conditions to treat with Regenerative Orthopedics. Most often, the pain is located in the lower back, where the vertebrae of the lumbar spine meet the pelvis. Four structures adjoin there in a pretty small area, with all of it held together by ligaments, connecting the sacrum to the sides of the iliac crest and the ilium, while the lower part of the lumbar spine connects to the sacrum. </span>\n\n<span style=\"font-weight: 400;\">Regenerative Orthopedics to the ligaments in this area strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication. </span>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Stop Back Pain with Regenerative Orthopedics','','inherit','closed','closed','','2760-autosave-v1','','','2021-06-18 21:45:38','2021-06-18 21:45:38','',2760,'https://www.drfields.com/uncategorized/2760-autosave-v1/',0,'revision','',0),(4061,9,'2020-09-01 01:58:59','2020-09-01 01:58:59','<h4>Stop Back Pain and the Endless Cycle of Chasing Symptoms</h4>\r\n<span style=\"font-weight: 400;\">So many people suffer with back pain, stuck in a cycle of pain medications, hours of therapy appointments, more prescription medications, over the counter medications, supplements, and more therapy. Only to continue to suffer from continued back pain. The cycle is an attempt to manage the pain. </span><span style=\"font-weight: 400;\">You might think, “Of course, I want to manage the pain!” But what if there is a better way, and one that actually corrects the back pain problem. Regenerative Orthopedics can stop back pain and the cycle because it repairs the underlying source of pain. Since it treats at the source, it ends up resolving the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\"> Chasing symptoms keeps the sufferer in the pain cycle. Correcting the problems with Regenerative Orthopedics can stop back pain and the endless cycle!</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<b>What Is the Reason Behind Most Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Since back pain is so common and a leading cause of disability, it is important to look at the reason for it. The underlying cause of most back pain issues is </span><b><i>spinal instability</i></b><span style=\"font-weight: 400;\">. </span>\r\n\r\n<span style=\"font-weight: 400;\">What is spinal instability you might ask? When you bend and twist and tweak your back, you injure soft tissue, like muscle and ligaments. Muscles have a great blood supply, so they heal quickly. Ligaments have a poor blood supply, and take quite a while to heal. In fact, they heal quite poorly. </span>\r\n\r\n<span style=\"font-weight: 400;\">Unhealed ligaments are weak and lax, similar to stretched out rubber bands. Ligaments connect bone to bone. So if the ligaments are weak, then the bone connection will be weak and wobbly. That bone connection or joint is then unstable. </span>\r\n<h3>The Vertebral Spine</h3>\r\n<span style=\"font-weight: 400;\">The vertebral bones in the back make up the spine. So when the ligaments in the spine are weak or wobbly, that makes for spinal instability. When these ligaments remain unhealed, the problem gets worse and worse. The ligaments get more lax and the spine becomes more unstable. You can imagine that if the joints of the spine become wobbly, that the bony structures will have difficulty moving like they should. </span>\r\n\r\n<span style=\"font-weight: 400;\">When motion in the vertebral joint connections stops being smooth, the abnormal motion causes the joint structures to degenerate. Instability and abnormal joint motion is behind all types of painful back conditions. Painful problems like bulging discs, arthritis, sciatica, and degenerative joint disease can result from abnormal motion in the spine.</span>\r\n\r\n<span style=\"font-weight: 400;\"> The underlying problem is ligament weakness, which creates the abnormal joint motion that will eventually damage the joint structures and elicit pain. Pain pills aren’t able to fix the weakened ligaments. And cortisone makes soft tissue weaker. So even if these things provide some short-term relief, they will eventually worsen the problem in the long run. Massage can’t strengthen weakened ligaments either.</span>\r\n<h4><em>Regenerative Orthopedics Can Stop Back Pain</em></h4>\r\n<span style=\"font-weight: 400;\">What’s the solution? The degenerative condition needs a regenerative treatment. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are all regenerative treatments that strengthen ligaments, restore normal joint motion, and regenerate joint structures.</span>\r\n\r\n<b>Ligaments Are Structures that Provide Stability to the Joint</b>\r\n\r\n<span style=\"font-weight: 400;\">As mentioned earlier, the most common cause of unresolved back pain is spinal instability, due to weakened and stretched out ligaments. Ligaments are very important for stability of the spine and for proper motion. In fact, they are some of the main stabilizing structure for the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Sure, those with back pain will definitely complain of muscle spasms and tightness, because muscles help with stability too. But muscles will spasm because they are overcompensating for the inability of the injured ligaments to keep the spine in place. Treatments that relieve muscle spasms will give temporary reprieve of the spasms. But they will not address the ligament weakness. Instability and pain will continue, because the ligaments are unable to hold the adjacent bones of the spine together properly.</span>\r\n\r\n<b>How Can You Stop Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Each year, thousands and thousands of people are disabled due to some type of painful back condition. Back pain is actually one of the main reasons people come to see us at OrthoRegen<sup>®</sup>. By the time they come to see us, they have usually tried numerous types of pills, treatments, and even surgery. </span>\r\n\r\n<span style=\"font-weight: 400;\">But they are in our office because the pain has not stopped!</span><span style=\"font-weight: 400;\"> That’s because these other treatments are only short-lived and because they only provide temporary relief. Even surgical treatments end up with poor rates of success. Surgery may emphasize treatment of the disc, for example, but it misses treating the ligament injury which is the originating source of the pain. So pain continues.</span>\r\n<h3>Ligaments Can Refer Pain Too</h3>\r\n<span style=\"font-weight: 400;\">The places where the ligaments attach to the bones are full of nerves, which elicit pain when stretched out or injured. Injured ligaments can send out referral pain down the back of the leg and even to the foot. They can also refer pain into the groin and pelvic floor. If weak ligaments exist, the physician knowledgeable in examination techniques can diagnose instability during the physical examination with varied maneuvers and positioning. Even palpating, or pressing with the thumb at the ligament attachments will elicit pain indicating ligament laxity.</span>\r\n\r\n<span style=\"font-weight: 400;\">Back pain is one of the easiest conditions to treat with Regenerative Orthopedics. Most often, the pain is located in the lower back, where the vertebrae of the lumbar spine meet the pelvis. Four structures adjoin there in a pretty small area, with all of it held together by ligaments, connecting the sacrum to the sides of the iliac crest and the ilium, while the lower part of the lumbar spine connects to the sacrum. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics to the ligaments in this area strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Stop Back Pain with Regenerative Orthopedics','','inherit','closed','closed','','2760-revision-v1','','','2020-09-01 01:58:59','2020-09-01 01:58:59','',2760,'https://www.drfields.com/uncategorized/2760-revision-v1/',0,'revision','',0),(4062,9,'2020-09-01 18:03:08','2020-09-01 18:03:08','<h3><strong>Stroke As a Major Cause of Disability</strong></h3>\r\nAccording to a report from the World Health Organization [<a class=\"ref-link\" href=\"https://www.intechopen.com/books/new-insight-into-cerebrovascular-diseases-an-updated-comprehensive-review/rehabilitation-strategies-and-key-related-mechanisms-involved-in-stroke-recovery#B1\" data-ref-style=\"bibr\">1</a>], approximately 15 million people experience a stroke each year globally. And stroke is the third leading cause of death after heart disease and cancer, and a major cause of disability. With the aging of the American population and as obesity increases, more strokes are occurring: strokes occur in more than 795,000 U.S. citizens per year and result in 140,000 deaths with 77% of them first-time.<a href=\"https://franklinpierce.edu/about/Showcase2020/Projects/TherapyStrokeRehab-Ostrander.pdf\">[2] </a>In this article, we will look at how surgery can cause strokes.\r\n<h3><em>What Does the American Heart Association Say About Stroke?</em></h3>\r\nThe American Heart Association and the American Stroke Association have issued new guidelines aimed at reducing the incidence of stroke. Identifying lifestyle as having had the biggest impact on preventing stroke, the new guidelines urge not smoking, maintaining a healthy weight, exercising and eating a diet rich in fruits and vegetables, and maintaining healthy levels of cholesterol and blood pressure.\r\n\r\n<strong>Does Anyone Even Think About the Whether Surgery Can Cause Strokes?</strong>\r\n\r\n<span style=\"font-weight: 400;\">People often choose surgery without understanding the risks or potential long-term results of the surgery. When considering surgery, people may think about the recovery time, the cost incurred, and the loss of work hours. And they may even wonder if they really want an artificial joint or if they are up to dealing with the pain involved in the surgery. <strong><em>But does anyone think there may be a risk of stroke surrounding surgery?</em></strong> </span>\r\n\r\n<span style=\"font-weight: 400;\">Strokes are a risk factor that is discussed when people face heart surgery, because of the possibility of blood clots during the bypass and all of the manipulation of blood vessels. But what about during other surgeries that are lower risk surgeries? Evidence shows that strokes occur in those without heart conditions too. And they can happen to people who are not considered high risk and to those who had no symptoms before surgery. </span>\r\n\r\n<b>What Does the Research About Surgery and Strokes?</b>\r\n\r\n<span style=\"font-weight: 400;\">Let\'s take a look at the findings from several research studies that investigate the peri-operative stroke risk. Why? Because we want people to be educated. And they want to fully explore their options before choosing an elective surgery. </span><span style=\"font-weight: 400;\">Peri-operative stroke refers to a stroke that occurs during surgery or within 30 days after surgery.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">An article in the journal, “Lancet” <a href=\"https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(19)31795-7/fulltext\">[3]</a> investigated the occurrence of strokes in people who did not have stroke symptoms before the surgery. They also looked into the rate of cognitive decline after surgery. The study included 12 academic centers and 1114 people over a three year period. </span>\r\n\r\n<span style=\"font-weight: 400;\">What were the results? The researchers found that 78 people, or 7%, had a stroke.</span><span style=\"font-weight: 400;\"> What about cognitive decline? A third of those who did not have a stroke was shown to have cognitive decline. So, what does all that mean? <strong>There is a risk of stroke and problems with deteriorating brain function in 1 out of 14 people who have elective surgery, even if they were not high risk, to begin with. </strong></span>\r\n\r\n<em><strong>So, the research does say that surgery can cause stroke</strong></em>s.\r\n<h4>What Type of Surgery is High Risk?</h4>\r\n<span style=\"font-weight: 400;\">Stroke really is a possible complication in surgeries that don’t involve the heart or neurological system. The risk increases in people over 65. Plus, the risk of death is higher for those who have a peri-operative stroke. In the journal, “Anesthesiology,”<a href=\"https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1933494\">[4]</a> the researchers investigated specific things that increased the risk of stroke from surgery in the non-cardiac and non-neurological cases. They looked at all different types of surgeries, including hip replacements, biopsies, hernia repair, arthroscopies, and knee repairs. </span>\r\n\r\n<span style=\"font-weight: 400;\">This study found three types of surgeries with the highest risk, which included hip replacement, removal of part of the intestine, and removal of part of the lung.  Other specifics that increase risk included older age, kidney disease, COPD, tobacco use, and elevated blood pressure. For those who do experience a peri-operative stroke, the chance of dying within 30 days of the surgery is increased by 8 times. In this particular study, 229 of 173,028 people had a stroke during non-cardiac and non-neurologic surgery.</span>\r\n\r\n<b>What about Surgery and Anesthesia, and the Relationship to Stroke Risk?</b>\r\n\r\n<span style=\"font-weight: 400;\">Another study in the journal “Anesthesia”<a href=\"https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1946026\">[5]</a> took a look at stroke risk from surgery and anesthesia. They studied 1,455 stroke occurrences over a 25 year period, excluding those with cardiac, vascular, neurologic, and other high-risk conditions. What did they find? They were actually surprised to find out that surgery and anesthesia themselves were a significant risk of stroke, especially considering they left out the high-risk folks with cardiac, vascular, or neurologic problems. </span>\r\n\r\n<span style=\"font-weight: 400;\">One more journal actually said the reason for stroke after surgery is “clear and highly predictable: </span><b>surgery.</b><span style=\"font-weight: 400;\">”</span><span style=\"font-weight: 400;\"> <a href=\"https://pubmed.ncbi.nlm.nih.gov/24978064/\">[6]</a>Surgery is necessary sometimes. But when there are alternatives to surgery, these options should be sought out. Keep in mind that surgery is often recommended on the basis of an MRI finding. However, these findings may not even be the cause of the pain. </span>\r\n\r\n<span style=\"font-weight: 400;\">We encourage you to find a practitioner who will evaluate you well, and do a complete history and examination in order to make a proper diagnosis. Frequently, structural injuries, such as ligament and tendon injuries, are the underlying source of pain. Surgery often cuts through and removes some of these structures. That actually accelerates the arthritic process, and puts you in line for more surgery.</span>\r\n<h3>Regenerative Orthopedics As An Alternative to Surgery</h3>\r\n<span style=\"font-weight: 400;\">Fortunately, there is an alternative to surgery that is highly successful! Regenerative Orthopedics can be sought as a first-line, conservative treatment that can be tried before surgery. It is effective at relieving pain and allowing patients to return quickly to the sports, work, and activities they love. Since surgery can cause strokes, and anesthesia adds to the risk, it is great to know there is an alternative to surgery.</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is also an excellent choice for repair of joint injuries and painful musculoskeletal joint conditions while avoiding the risk of stroke and other risks of elective surgery. If you have already had surgery, but continue to experience joint pain, Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy is still an option for pain relief and return to function. When joint injuries are limiting your life, Regenerative Orthopedics can get you the results you want quickly, more safely, and at a dramatically lower cost than surgery.</span>\r\n\r\n<hr />\r\n\r\n1World Health Organization. The Atlas of Heart Disease and Stroke [Internet]. Available from: http://www.who.int/cardiovascular_diseases/resources/atlas/en/[Accessed: 21 Jun 2020]\r\n\r\n2Abbott, Taylor, and Mary Elizabeth Ostrander. \"What therapies are most beneficial for stroke rehabilitation?.\"\r\n\r\n<span style=\"font-weight: 400;\">3Perioperative covert stroke in patients undergoing non-cardiac surgery.</span><i><span style=\"font-weight: 400;\"> Lancet,</span></i><span style=\"font-weight: 400;\"> 2019. Doi.org/10.1016/SO140-6736(19)31795-7.</span>\r\n\r\n<span style=\"font-weight: 400;\">4Mashour GA, Shanks AM, Kheterpal S.Perioperative stroke, and associated mortality after noncardiac, non-neurologic surgery.</span> <i><span style=\"font-weight: 400;\">Anesthesiology.</span></i><span style=\"font-weight: 400;\"> 2011; </span>114<span style=\"font-weight: 400;\">: 1289-1296.</span>\r\n\r\n<span style=\"font-weight: 400;\">5G</span><span style=\"font-weight: 400;\">ilbert Y. Wong, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">David O. Warner, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Darrell R. Schroeder, M.S.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Kenneth P. Offord, M.S.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Mark A. Warner, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">et al. </span><span style=\"font-weight: 400;\">Risk of surgery and anesthesia for ischemic stroke. </span><i><span style=\"font-weight: 400;\">Anesthesiology</span></i><span style=\"font-weight: 400;\">. 2000; 92: 425.</span>\r\n\r\n<span style=\"font-weight: 400;\">6Mashour, George A. MD, Ph.D.</span><span style=\"font-weight: 400;\">*</span><span style=\"font-weight: 400;\">; Moore, Laurel E. MD; Lele, Abhijit V. MD; Robicsek, Steven A. MD; Gelb, Adrian W. MBChB</span><span style=\"font-weight: 400;\">. </span><span style=\"font-weight: 400;\">Perioperative care of patients at high risk for stroke during or after non-cardiac, non-neurologic surgery: A consensus statement from the Society for Neuroscience in Anesthesiology and Critical Care. </span><span style=\"font-weight: 400;\"> </span><i><span style=\"font-weight: 400;\">Journal of Neurosurgical Anesthesiology.</span></i> <span style=\"font-weight: 400;\"> 2014; 26(4): 273–285</span><span style=\"font-weight: 400;\">.</span>','Surgery Can Cause Strokes','','inherit','closed','closed','','2697-revision-v1','','','2020-09-01 18:03:08','2020-09-01 18:03:08','',2697,'https://www.drfields.com/uncategorized/2697-revision-v1/',0,'revision','',0),(4063,9,'2020-09-01 18:04:53','2020-09-01 18:04:53','<h3><strong>Stroke As a Major Cause of Disability</strong></h3>\r\nAccording to a report from the World Health Organization [<a class=\"ref-link\" href=\"https://www.intechopen.com/books/new-insight-into-cerebrovascular-diseases-an-updated-comprehensive-review/rehabilitation-strategies-and-key-related-mechanisms-involved-in-stroke-recovery#B1\" data-ref-style=\"bibr\">1</a>], approximately 15 million people experience a stroke each year globally. And stroke is the third leading cause of death after heart disease and cancer, and a major cause of disability. With the aging of the American population and as obesity increases, more strokes are occurring: strokes occur in more than 795,000 U.S. citizens per year and result in 140,000 deaths with 77% of them first-time.<a href=\"https://franklinpierce.edu/about/Showcase2020/Projects/TherapyStrokeRehab-Ostrander.pdf\">[2] </a>In this article, we will look at how surgery can cause strokes.\r\n<h3><em>What Does the American Heart Association Say About Stroke?</em></h3>\r\nThe American Heart Association and the American Stroke Association have issued new guidelines aimed at reducing the incidence of stroke. Identifying lifestyle as having had the biggest impact on preventing stroke, the new guidelines urge not smoking, maintaining a healthy weight, exercising and eating a diet rich in fruits and vegetables, and maintaining healthy levels of cholesterol and blood pressure.\r\n\r\n<strong>Does Anyone Even Think About the Whether Surgery Can Cause Strokes?</strong>\r\n\r\n<span style=\"font-weight: 400;\">People often choose surgery without understanding the risks or potential long-term results of the surgery. When considering surgery, people may think about the recovery time, the cost incurred, and the loss of work hours. And they may even wonder if they really want an artificial joint or if they are up to dealing with the pain involved in the surgery. <strong><em>But does anyone think there may be a risk of stroke surrounding surgery?</em></strong> </span>\r\n\r\n<span style=\"font-weight: 400;\">Strokes are a risk factor that is discussed when people face heart surgery, because of the possibility of blood clots during the bypass and all of the manipulation of blood vessels. But what about during other surgeries that are lower risk surgeries? Evidence shows that strokes occur in those without heart conditions too. And they can happen to people who are not considered high risk and to those who had no symptoms before surgery. </span>\r\n\r\n<b>What Does the Research About Surgery and Strokes?</b>\r\n\r\n<span style=\"font-weight: 400;\">Let\'s take a look at the findings from several research studies that investigate the peri-operative stroke risk. Why? Because we want people to be educated. And they want to fully explore their options before choosing an elective surgery. </span><span style=\"font-weight: 400;\">Peri-operative stroke refers to a stroke that occurs during surgery or within 30 days after surgery.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">An article in the journal, “Lancet” <a href=\"https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(19)31795-7/fulltext\">[3]</a> investigated the occurrence of strokes in people who did not have stroke symptoms before the surgery. They also looked into the rate of cognitive decline after surgery. The study included 12 academic centers and 1114 people over a three year period. </span>\r\n\r\n<span style=\"font-weight: 400;\">What were the results? The researchers found that 78 people, or 7%, had a stroke.</span><span style=\"font-weight: 400;\"> What about cognitive decline? A third of those who did not have a stroke was shown to have cognitive decline. So, what does all that mean? <strong>There is a risk of stroke and problems with deteriorating brain function in 1 out of 14 people who have elective surgery, even if they were not high risk, to begin with. </strong></span>\r\n\r\n<em><strong>So, the research does say that surgery can cause stroke</strong></em>s.\r\n<h4>What Type of Surgery is High Risk?</h4>\r\n<span style=\"font-weight: 400;\">Stroke really is a possible complication in surgeries that don’t involve the heart or neurological system. The risk increases in people over 65. Plus, the risk of death is higher for those who have a peri-operative stroke. In the journal, “Anesthesiology,”<a href=\"https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1933494\">[4]</a> the researchers investigated specific things that increased the risk of stroke from surgery in the non-cardiac and non-neurological cases. They looked at all different types of surgeries, including hip replacements, biopsies, hernia repair, arthroscopies, and knee repairs. </span>\r\n\r\n<span style=\"font-weight: 400;\">This study found three types of surgeries with the highest risk, which included hip replacement, removal of part of the intestine, and removal of part of the lung.  Other specifics that increase risk included older age, kidney disease, COPD, tobacco use, and elevated blood pressure. For those who do experience a peri-operative stroke, the chance of dying within 30 days of the surgery is increased by 8 times. In this particular study, 229 of 173,028 people had a stroke during non-cardiac and non-neurologic surgery.</span>\r\n\r\n<b>What about Surgery and Anesthesia, and the Relationship to Stroke Risk?</b>\r\n\r\n<span style=\"font-weight: 400;\">Another study in the journal “Anesthesia”<a href=\"https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1946026\">[5]</a> took a look at stroke risk from surgery and anesthesia. They studied 1,455 stroke occurrences over a 25 year period, excluding those with cardiac, vascular, neurologic, and other high-risk conditions. What did they find? They were actually surprised to find out that surgery and anesthesia themselves were a significant risk of stroke, especially considering they left out the high-risk folks with cardiac, vascular, or neurologic problems. </span>\r\n\r\n<span style=\"font-weight: 400;\">One more journal actually said the reason for stroke after surgery is “clear and highly predictable: </span><b>surgery.</b><span style=\"font-weight: 400;\">”</span><span style=\"font-weight: 400;\"> <a href=\"https://pubmed.ncbi.nlm.nih.gov/24978064/\">[6]</a>Surgery is necessary sometimes. But when there are alternatives to surgery, these options should be sought out. Keep in mind that surgery is often recommended on the basis of an MRI finding. However, these findings may not even be the cause of the pain. </span>\r\n\r\n<span style=\"font-weight: 400;\">We encourage you to find a practitioner who will evaluate you well, and do a complete history and examination in order to make a proper diagnosis. Frequently, structural injuries, such as ligament and tendon injuries, are the underlying source of pain. Surgery often cuts through and removes some of these structures. That actually accelerates the arthritic process, and puts you in line for more surgery.</span>\r\n<h3>Regenerative Orthopedics As An Alternative to Surgery</h3>\r\n<span style=\"font-weight: 400;\">Fortunately, there is an alternative to surgery that is highly successful! Regenerative Orthopedics can be sought as a first-line, conservative treatment that can be tried before surgery. It is effective at relieving pain and allowing patients to return quickly to the sports, work, and activities they love. Since surgery can cause strokes, and anesthesia adds to the risk, it is great to know there is an alternative to surgery.</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is also an excellent choice for repair of joint injuries and painful musculoskeletal joint conditions while avoiding the risk of stroke and other risks of elective surgery. If you have already had surgery, but continue to experience joint pain, Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy is still an option for pain relief and return to function. When joint injuries are limiting your life, Regenerative Orthopedics can get you the results you want quickly, more safely, and at a dramatically lower cost than surgery.</span>\r\n\r\n<hr />\r\n\r\n1World Health Organization. The Atlas of Heart Disease and Stroke [Internet]. Available from: http://www.who.int/cardiovascular_diseases/resources/atlas/en/[Accessed: 21 Jun 2020]\r\n\r\n2Abbott, Taylor, and Mary Elizabeth Ostrander. \"What therapies are most beneficial for stroke rehabilitation?.\"\r\n\r\n<span style=\"font-weight: 400;\">3Perioperative covert stroke in patients undergoing non-cardiac surgery.</span><i><span style=\"font-weight: 400;\"> Lancet,</span></i><span style=\"font-weight: 400;\"> 2019. Doi.org/10.1016/SO140-6736(19)31795-7.</span>\r\n\r\n<span style=\"font-weight: 400;\">4Mashour GA, Shanks AM, Kheterpal S.Perioperative stroke, and associated mortality after noncardiac, non-neurologic surgery.</span> <i><span style=\"font-weight: 400;\">Anesthesiology.</span></i><span style=\"font-weight: 400;\"> 2011; </span>114<span style=\"font-weight: 400;\">: 1289-1296.</span>\r\n\r\n<span style=\"font-weight: 400;\">5G</span><span style=\"font-weight: 400;\">ilbert Y. Wong, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">David O. Warner, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Darrell R. Schroeder, M.S.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Kenneth P. Offord, M.S.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">Mark A. Warner, M.D.</span><span style=\"font-weight: 400;\">; </span><span style=\"font-weight: 400;\">et al. </span><span style=\"font-weight: 400;\">Risk of surgery and anesthesia for ischemic stroke. </span><i><span style=\"font-weight: 400;\">Anesthesiology</span></i><span style=\"font-weight: 400;\">. 2000; 92: 425.</span>\r\n\r\n<span style=\"font-weight: 400;\">6Mashour, George A. MD, Ph.D.</span><span style=\"font-weight: 400;\">*</span><span style=\"font-weight: 400;\">; Moore, Laurel E. MD; Lele, Abhijit V. MD; Robicsek, Steven A. MD; Gelb, Adrian W. MBChB</span><span style=\"font-weight: 400;\">. </span><span style=\"font-weight: 400;\">Perioperative care of patients at high risk for stroke during or after non-cardiac, non-neurologic surgery: A consensus statement from the Society for Neuroscience in Anesthesiology and Critical Care. </span><span style=\"font-weight: 400;\"> </span><i><span style=\"font-weight: 400;\">Journal of Neurosurgical Anesthesiology.</span></i> <span style=\"font-weight: 400;\"> 2014; 26(4): 273–285</span><span style=\"font-weight: 400;\">.</span>','Can Surgery Cause Strokes?','','inherit','closed','closed','','2697-revision-v1','','','2020-09-01 18:04:53','2020-09-01 18:04:53','',2697,'https://www.drfields.com/uncategorized/2697-revision-v1/',0,'revision','',0),(4065,9,'2020-09-02 17:43:42','2020-09-02 17:43:42','Hip Pain. Jan','Hip Pain. Jan','Hip Pain. Jan','inherit','open','closed','','hip-pain-jan','','','2020-09-02 17:43:42','2020-09-02 17:43:42','',2665,'https://www.drfields.com/wp-content/uploads/2019/08/Hip-Pain.-Jan.png',0,'attachment','image/png',0),(4066,9,'2020-09-02 18:15:56','2020-09-02 18:15:56','<h4>Regenerative Orthopedics for Chronic, Persistent Hip Pain</h4>\n<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen<sup>®</sup> is to avoid hip replacement surgery. And the pain is usually due to damage caused by hip arthritis. The majority of these folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.</span>\n\n<span style=\"font-weight: 400;\">The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement. But they don’t want that and are looking for a way to avoid the surgery! That\'s why they choose Regenerative Orthopedics. The treatment gives them a non-surgical option and an alternative to hip replacement surgery.</span>\n\n<b>Hip Pain and Arthritis</b>\n\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. Also, the hip joint has a ring of cartilage that seals the ball and socket called the labrum. And the labrum helps to provide movement between the leg and pelvis. </span>\n\n<span style=\"font-weight: 400;\">Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities. And the symptoms can make even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<h4><b>What Causes Hip Pain?</b></h4>\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. And other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\n<h4><em><span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! </span></em></h4>\n<span style=\"font-weight: 400;\">At some point the hip joint becomes destabilized by injury. Most of our patients can recall some type of trauma to the hip. Or even a previous hip procedure. And traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. </span>\n\n<span style=\"font-weight: 400;\">And when the abnormal motion is not repaired and stabilized, the arthritis cycle is encouraged. </span><span style=\"font-weight: 400;\">Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion. And that destroys the hip joint further.  </span>\n<h4><strong>How does surgery cause arthritis to worsen? </strong></h4>\n<span style=\"font-weight: 400;\">In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip.  Just by inserting the large arthroscope into the hip stretches and weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\n\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability. And later, the development of arthritis. Surgeons may recommend surgery for all of these conditions.</span>\n\n<span style=\"font-weight: 400;\">Consider non-surgical Regenerative Orthopedics prior to opting for surgery. </span>\n<h4><b>Regenerative Orthopedics Treats Chronic Hip Pain</b></h4>\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication. </span>\n\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\n\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures. This stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited. And since this is the material in which ligaments and tendons are made, the result is tightened and stronger soft tissue structures.</span>\n<h4><strong>Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. </strong></h4>\n<span style=\"font-weight: 400;\">Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. And in cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  </span>\n\n<span style=\"font-weight: 400;\">When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\n<h4><b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b></h4>\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen<sup>®</sup> at </span><span style=\"font-weight: 400;\">[phone]</span><span style=\"font-weight: 400;\">.</span>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Hip Pain Solutions','','inherit','closed','closed','','2665-autosave-v1','','','2020-09-02 18:15:56','2020-09-02 18:15:56','',2665,'https://www.drfields.com/uncategorized/2665-autosave-v1/',0,'revision','',0),(4067,9,'2020-09-02 17:44:48','2020-09-02 17:44:48','Hip','Hip','Hip','inherit','open','closed','','hip','','','2020-09-02 17:44:48','2020-09-02 17:44:48','',2665,'https://www.drfields.com/wp-content/uploads/2019/08/hip.jpg',0,'attachment','image/jpeg',0),(4068,9,'2020-09-02 18:03:19','2020-09-02 18:03:19','[caption id=\"attachment_4067\" align=\"alignright\" width=\"522\"]<img class=\"wp-image-4067 \" src=\"https://www.drfields.com/wp-content/uploads/2019/08/hip-500x500.jpg\" alt=\"Hip Pain\" width=\"522\" height=\"522\" /> <strong>                                Don\'t Let Hip Pain Stop You</strong>[/caption]\r\n<h4>Regenerative Orthopedics for Chronic, Persistent Hip Pain</h4>\r\n<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen<sup>®</sup> is to avoid hip replacement surgery. And the pain is usually due to damage caused by hip arthritis. The majority of these folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.</span>\r\n\r\n<span style=\"font-weight: 400;\">The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement. But they don’t want that and are looking for a way to avoid the surgery! Regenerative Orthopedics gives them a non-surgical option and an alternative to hip replacement surgery.</span>\r\n\r\n<b>Hip Pain and Arthritis</b>\r\n\r\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. The hip joint has a ring of cartilage that seals the ball and socket called the labrum. And the labrum helps to provide movement between the leg and pelvis. </span>\r\n\r\n<span style=\"font-weight: 400;\">Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities. And the symptoms can make even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<b>What Causes Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. And other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\r\n<h4><em><span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! </span></em></h4>\r\n<span style=\"font-weight: 400;\">At some point the hip joint was destabilized by injury. Most of our patients can recall some type of trauma to the hip. Or even a previous hip procedure. Traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. And this instability in the hip joint encourages the arthritis cycle when it is not repaired and stabilized. </span><span style=\"font-weight: 400;\">Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion. And that destroys the hip joint further.  </span>\r\n<h4><strong>How does surgery cause arthritis to worsen? </strong></h4>\r\n<span style=\"font-weight: 400;\">In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip.  Just by inserting the large arthroscope into the hip stretches and weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability. And later, the development of arthritis. Surgeons may recommend surgery for all of these conditions. But conservative, non-surgical options, including Regenerative Orthopedics, should be considered prior to opting for surgery. </span>\r\n\r\n<b>How Regenerative Orthopedics Is Used To Treat Chronic Hip Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication. </span>\r\n\r\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures. This stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited. And since this is the material in which ligaments and tendons are made, the result is tightened and stronger soft tissue structures.</span>\r\n\r\n<span style=\"font-weight: 400;\">Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. In cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  </span>\r\n\r\n<span style=\"font-weight: 400;\">When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\r\n\r\n<b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen<sup>®</sup> at </span><span style=\"font-weight: 400;\">[phone]</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Hip Pain Solutions','','inherit','closed','closed','','2665-revision-v1','','','2020-09-02 18:03:19','2020-09-02 18:03:19','',2665,'https://www.drfields.com/uncategorized/2665-revision-v1/',0,'revision','',0),(4069,9,'2020-09-02 18:05:12','2020-09-02 18:05:12','[caption id=\"attachment_4067\" align=\"alignright\" width=\"522\"]That<img class=\"wp-image-4067 \" src=\"https://www.drfields.com/wp-content/uploads/2019/08/hip-500x500.jpg\" alt=\"Hip Pain\" width=\"522\" height=\"522\" /> <strong>                                Don\'t Let Hip Pain Stop You</strong>[/caption]\r\n<h4>Regenerative Orthopedics for Chronic, Persistent Hip Pain</h4>\r\n<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen<sup>®</sup> is to avoid hip replacement surgery. And the pain is usually due to damage caused by hip arthritis. The majority of these folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.</span>\r\n\r\n<span style=\"font-weight: 400;\">The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement. But they don’t want that and are looking for a way to avoid the surgery! That\'s why they choose Regenerative Orthopedics. The treatment gives them a non-surgical option and an alternative to hip replacement surgery.</span>\r\n\r\n<b>Hip Pain and Arthritis</b>\r\n\r\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. Also, the hip joint has a ring of cartilage that seals the ball and socket called the labrum. And the labrum helps to provide movement between the leg and pelvis. </span>\r\n\r\n<span style=\"font-weight: 400;\">Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities. And the symptoms can make even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<b>What Causes Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. And other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\r\n<h4><em><span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! </span></em></h4>\r\n<span style=\"font-weight: 400;\">At some point the hip joint was destabilized by injury. Most of our patients can recall some type of trauma to the hip. Or even a previous hip procedure. Traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. And this instability in the hip joint encourages the arthritis cycle when it is not repaired and stabilized. </span><span style=\"font-weight: 400;\">Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion. And that destroys the hip joint further.  </span>\r\n<h4><strong>How does surgery cause arthritis to worsen? </strong></h4>\r\n<span style=\"font-weight: 400;\">In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip.  Just by inserting the large arthroscope into the hip stretches and weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability. And later, the development of arthritis. Surgeons may recommend surgery for all of these conditions. But conservative, non-surgical options, including Regenerative Orthopedics, should be considered prior to opting for surgery. </span>\r\n\r\n<b>How Regenerative Orthopedics Is Used To Treat Chronic Hip Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication. </span>\r\n\r\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures. This stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited. And since this is the material in which ligaments and tendons are made, the result is tightened and stronger soft tissue structures.</span>\r\n\r\n<span style=\"font-weight: 400;\">Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. In cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  </span>\r\n\r\n<span style=\"font-weight: 400;\">When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\r\n\r\n<b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen<sup>®</sup> at </span><span style=\"font-weight: 400;\">[phone]</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Hip Pain Solutions','','inherit','closed','closed','','2665-revision-v1','','','2020-09-02 18:05:12','2020-09-02 18:05:12','',2665,'https://www.drfields.com/uncategorized/2665-revision-v1/',0,'revision','',0),(4070,9,'2020-09-02 18:05:59','2020-09-02 18:05:59','[caption id=\"attachment_4067\" align=\"alignright\" width=\"522\"]<img class=\"wp-image-4067 \" src=\"https://www.drfields.com/wp-content/uploads/2019/08/hip-500x500.jpg\" alt=\"Hip Pain\" width=\"522\" height=\"522\" /> <strong>                                Don\'t Let Hip Pain Stop You</strong>[/caption]\r\n<h4>Regenerative Orthopedics for Chronic, Persistent Hip Pain</h4>\r\n<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen<sup>®</sup> is to avoid hip replacement surgery. And the pain is usually due to damage caused by hip arthritis. The majority of these folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.</span>\r\n\r\n<span style=\"font-weight: 400;\">The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement. But they don’t want that and are looking for a way to avoid the surgery! That\'s why they choose Regenerative Orthopedics. The treatment gives them a non-surgical option and an alternative to hip replacement surgery.</span>\r\n\r\n<b>Hip Pain and Arthritis</b>\r\n\r\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. Also, the hip joint has a ring of cartilage that seals the ball and socket called the labrum. And the labrum helps to provide movement between the leg and pelvis. </span>\r\n\r\n<span style=\"font-weight: 400;\">Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities. And the symptoms can make even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<b>What Causes Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. And other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\r\n<h4><em><span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! </span></em></h4>\r\n<span style=\"font-weight: 400;\">At some point the hip joint was destabilized by injury. Most of our patients can recall some type of trauma to the hip. Or even a previous hip procedure. And traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. And this instability in the hip joint encourages the arthritis cycle when it is not repaired and stabilized. </span><span style=\"font-weight: 400;\">Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion. And that destroys the hip joint further.  </span>\r\n<h4><strong>How does surgery cause arthritis to worsen? </strong></h4>\r\n<span style=\"font-weight: 400;\">In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip.  Just by inserting the large arthroscope into the hip stretches and weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability. And later, the development of arthritis. Surgeons may recommend surgery for all of these conditions. But conservative, non-surgical options, including Regenerative Orthopedics, should be considered prior to opting for surgery. </span>\r\n\r\n<b>How Regenerative Orthopedics Is Used To Treat Chronic Hip Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication. </span>\r\n\r\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures. This stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited. And since this is the material in which ligaments and tendons are made, the result is tightened and stronger soft tissue structures.</span>\r\n\r\n<span style=\"font-weight: 400;\">Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. In cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  </span>\r\n\r\n<span style=\"font-weight: 400;\">When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\r\n\r\n<b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen<sup>®</sup> at </span><span style=\"font-weight: 400;\">[phone]</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Hip Pain Solutions','','inherit','closed','closed','','2665-revision-v1','','','2020-09-02 18:05:59','2020-09-02 18:05:59','',2665,'https://www.drfields.com/uncategorized/2665-revision-v1/',0,'revision','',0),(4071,9,'2020-09-02 18:08:54','2020-09-02 18:08:54','<h4>Regenerative Orthopedics for Chronic, Persistent Hip Pain</h4>\r\n<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen<sup>®</sup> is to avoid hip replacement surgery. And the pain is usually due to damage caused by hip arthritis. The majority of these folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.</span>\r\n\r\n<span style=\"font-weight: 400;\">The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement. But they don’t want that and are looking for a way to avoid the surgery! That\'s why they choose Regenerative Orthopedics. The treatment gives them a non-surgical option and an alternative to hip replacement surgery.</span>\r\n\r\n<b>Hip Pain and Arthritis</b>\r\n\r\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. Also, the hip joint has a ring of cartilage that seals the ball and socket called the labrum. And the labrum helps to provide movement between the leg and pelvis. </span>\r\n\r\n<span style=\"font-weight: 400;\">Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities. And the symptoms can make even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<b>What Causes Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. And other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\r\n<h4><em><span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! </span></em></h4>\r\n<span style=\"font-weight: 400;\">At some point the hip joint becomes destabilized by injury. Most of our patients can recall some type of trauma to the hip. Or even a previous hip procedure. And traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. And this instability in the hip joint encourages the arthritis cycle when it is not repaired and stabilized. </span><span style=\"font-weight: 400;\">Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion. And that destroys the hip joint further.  </span>\r\n<h4><strong>How does surgery cause arthritis to worsen? </strong></h4>\r\n<span style=\"font-weight: 400;\">In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip.  Just by inserting the large arthroscope into the hip stretches and weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability. And later, the development of arthritis. Surgeons may recommend surgery for all of these conditions. But conservative, non-surgical options, including Regenerative Orthopedics, should be considered prior to opting for surgery. </span>\r\n\r\n<b>How Regenerative Orthopedics Is Used To Treat Chronic Hip Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication. </span>\r\n\r\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures. This stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited. And since this is the material in which ligaments and tendons are made, the result is tightened and stronger soft tissue structures.</span>\r\n\r\n<span style=\"font-weight: 400;\">Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. And in cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  </span>\r\n\r\n<span style=\"font-weight: 400;\">When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\r\n\r\n<b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen<sup>®</sup> at </span><span style=\"font-weight: 400;\">[phone]</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Hip Pain Solutions','','inherit','closed','closed','','2665-revision-v1','','','2020-09-02 18:08:54','2020-09-02 18:08:54','',2665,'https://www.drfields.com/uncategorized/2665-revision-v1/',0,'revision','',0),(4072,9,'2020-09-02 18:13:10','2020-09-02 18:13:10','<h4>Regenerative Orthopedics for Chronic, Persistent Hip Pain</h4>\r\n<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen<sup>®</sup> is to avoid hip replacement surgery. And the pain is usually due to damage caused by hip arthritis. The majority of these folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.</span>\r\n\r\n<span style=\"font-weight: 400;\">The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement. But they don’t want that and are looking for a way to avoid the surgery! That\'s why they choose Regenerative Orthopedics. The treatment gives them a non-surgical option and an alternative to hip replacement surgery.</span>\r\n\r\n<b>Hip Pain and Arthritis</b>\r\n\r\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. Also, the hip joint has a ring of cartilage that seals the ball and socket called the labrum. And the labrum helps to provide movement between the leg and pelvis. </span>\r\n\r\n<span style=\"font-weight: 400;\">Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities. And the symptoms can make even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<b>What Causes Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. And other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\r\n<h4><em><span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! </span></em></h4>\r\n<span style=\"font-weight: 400;\">At some point the hip joint becomes destabilized by injury. Most of our patients can recall some type of trauma to the hip. Or even a previous hip procedure. And traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. </span>\r\n\r\n<span style=\"font-weight: 400;\">And when the abnormal motion is not repaired and stabilized, the arthritis cycle is encouraged. </span><span style=\"font-weight: 400;\">Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion. And that destroys the hip joint further.  </span>\r\n<h4><strong>How does surgery cause arthritis to worsen? </strong></h4>\r\n<span style=\"font-weight: 400;\">In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip.  Just by inserting the large arthroscope into the hip stretches and weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability. And later, the development of arthritis. Surgeons may recommend surgery for all of these conditions.</span>\r\n\r\n<span style=\"font-weight: 400;\">Consider non-surgical Regenerative Orthopedics prior to opting for surgery. </span>\r\n\r\n<b>How Regenerative Orthopedics Is Used To Treat Chronic Hip Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication. </span>\r\n\r\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures. This stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited. And since this is the material in which ligaments and tendons are made, the result is tightened and stronger soft tissue structures.</span>\r\n\r\n<span style=\"font-weight: 400;\">Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. And in cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  </span>\r\n\r\n<span style=\"font-weight: 400;\">When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\r\n\r\n<b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen<sup>®</sup> at </span><span style=\"font-weight: 400;\">[phone]</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Hip Pain Solutions','','inherit','closed','closed','','2665-revision-v1','','','2020-09-02 18:13:10','2020-09-02 18:13:10','',2665,'https://www.drfields.com/uncategorized/2665-revision-v1/',0,'revision','',0),(4073,9,'2020-09-02 18:13:49','2020-09-02 18:13:49','<h4>Regenerative Orthopedics for Chronic, Persistent Hip Pain</h4>\r\n<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen<sup>®</sup> is to avoid hip replacement surgery. And the pain is usually due to damage caused by hip arthritis. The majority of these folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.</span>\r\n\r\n<span style=\"font-weight: 400;\">The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement. But they don’t want that and are looking for a way to avoid the surgery! That\'s why they choose Regenerative Orthopedics. The treatment gives them a non-surgical option and an alternative to hip replacement surgery.</span>\r\n\r\n<b>Hip Pain and Arthritis</b>\r\n\r\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. Also, the hip joint has a ring of cartilage that seals the ball and socket called the labrum. And the labrum helps to provide movement between the leg and pelvis. </span>\r\n\r\n<span style=\"font-weight: 400;\">Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities. And the symptoms can make even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<b>What Causes Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. And other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\r\n<h4><em><span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! </span></em></h4>\r\n<span style=\"font-weight: 400;\">At some point the hip joint becomes destabilized by injury. Most of our patients can recall some type of trauma to the hip. Or even a previous hip procedure. And traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. </span>\r\n\r\n<span style=\"font-weight: 400;\">And when the abnormal motion is not repaired and stabilized, the arthritis cycle is encouraged. </span><span style=\"font-weight: 400;\">Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion. And that destroys the hip joint further.  </span>\r\n<h4><strong>How does surgery cause arthritis to worsen? </strong></h4>\r\n<span style=\"font-weight: 400;\">In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip.  Just by inserting the large arthroscope into the hip stretches and weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability. And later, the development of arthritis. Surgeons may recommend surgery for all of these conditions.</span>\r\n\r\n<span style=\"font-weight: 400;\">Consider non-surgical Regenerative Orthopedics prior to opting for surgery. </span>\r\n\r\n<b>Regenerative Orthopedics Treats Chronic Hip Pain</b>\r\n\r\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication. </span>\r\n\r\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures. This stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited. And since this is the material in which ligaments and tendons are made, the result is tightened and stronger soft tissue structures.</span>\r\n\r\n<span style=\"font-weight: 400;\">Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. And in cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  </span>\r\n\r\n<span style=\"font-weight: 400;\">When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\r\n\r\n<b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen<sup>®</sup> at </span><span style=\"font-weight: 400;\">[phone]</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Hip Pain Solutions','','inherit','closed','closed','','2665-revision-v1','','','2020-09-02 18:13:49','2020-09-02 18:13:49','',2665,'https://www.drfields.com/uncategorized/2665-revision-v1/',0,'revision','',0),(4074,9,'2020-09-02 18:16:08','2020-09-02 18:16:08','<h4>Regenerative Orthopedics for Chronic, Persistent Hip Pain</h4>\r\n<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen<sup>®</sup> is to avoid hip replacement surgery. And the pain is usually due to damage caused by hip arthritis. The majority of these folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.</span>\r\n\r\n<span style=\"font-weight: 400;\">The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement. But they don’t want that and are looking for a way to avoid the surgery! That\'s why they choose Regenerative Orthopedics. The treatment gives them a non-surgical option and an alternative to hip replacement surgery.</span>\r\n<h4><b>Hip Pain and Arthritis</b></h4>\r\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. Also, the hip joint has a ring of cartilage that seals the ball and socket called the labrum. And the labrum helps to provide movement between the leg and pelvis. </span>\r\n\r\n<span style=\"font-weight: 400;\">Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities. And the symptoms can make even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4><b>What Causes Hip Pain?</b></h4>\r\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. And other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\r\n<h4><em><span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! </span></em></h4>\r\n<span style=\"font-weight: 400;\">At some point the hip joint becomes destabilized by injury. Most of our patients can recall some type of trauma to the hip. Or even a previous hip procedure. And traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. </span>\r\n\r\n<span style=\"font-weight: 400;\">And when the abnormal motion is not repaired and stabilized, the arthritis cycle is encouraged. </span><span style=\"font-weight: 400;\">Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion. And that destroys the hip joint further.  </span>\r\n<h4><strong>How does surgery cause arthritis to worsen? </strong></h4>\r\n<span style=\"font-weight: 400;\">In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip.  Just by inserting the large arthroscope into the hip stretches and weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability. And later, the development of arthritis. Surgeons may recommend surgery for all of these conditions.</span>\r\n\r\n<span style=\"font-weight: 400;\">Consider non-surgical Regenerative Orthopedics prior to opting for surgery. </span>\r\n<h4><b>Regenerative Orthopedics Treats Chronic Hip Pain</b></h4>\r\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication. </span>\r\n\r\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures. This stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited. And since this is the material in which ligaments and tendons are made, the result is tightened and stronger soft tissue structures.</span>\r\n<h4><strong>Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. </strong></h4>\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. And in cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  </span>\r\n\r\n<span style=\"font-weight: 400;\">When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\r\n<h4><b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b></h4>\r\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen<sup>®</sup> at </span><span style=\"font-weight: 400;\">[phone]</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Hip Pain Solutions','','inherit','closed','closed','','2665-revision-v1','','','2020-09-02 18:16:08','2020-09-02 18:16:08','',2665,'https://www.drfields.com/uncategorized/2665-revision-v1/',0,'revision','',0),(4075,9,'2020-09-02 18:19:59','2020-09-02 18:19:59','Knee Injury','Knee Injury','Knee Injury','inherit','open','closed','','knee-injury','','','2020-09-02 18:19:59','2020-09-02 18:19:59','',2650,'https://www.drfields.com/wp-content/uploads/2019/08/knee-injury.png',0,'attachment','image/png',0),(4076,9,'2020-09-02 18:35:56','2020-09-02 18:35:56','[caption id=\"attachment_4075\" align=\"alignleft\" width=\"539\"]<img class=\"wp-image-4075 \" src=\"https://www.drfields.com/wp-content/uploads/2019/08/knee-injury-500x500.png\" alt=\"Knee Injury Treatment\" width=\"539\" height=\"539\" /> <strong>Chondromalacia Patella Can Be Treated with Prolotherapy</strong>[/caption]\n\n<span style=\"font-weight: 400;\">In Chondromalacia Patella, the kneecap tracks abnormally making everyday activities difficult, interfering with sports, and causing knee pain. The condition is common in runners and athletes, especially in activities that involve a lot of running. And it can affect young, healthy individuals, as well as older adults. Chondromalacia patella is one of the causes of patellofemoral pain syndrome. </span>\n<h4><b>What Causes Chondromalacia Patella?</b></h4>\n<span style=\"font-weight: 400;\">Chondro means cartilage, malacia means breakdown, and patella means knee cap. So, when someone suffers from this condition, they will have cartilage breakdown and fraying underneath the knee cap. </span>\n\n<span style=\"font-weight: 400;\">Excessive, abnormal movement or hypermobility of the knee is considered a contributing factor in the development of chondromalacia patella</span><span style=\"font-weight: 400;\">.</span>\n\n<span style=\"font-weight: 400;\">Normally, the patella slides easily along the smooth surface of the patellar groove with bending and straightening of the knee. But with chondromalacia patella, the cartilage becomes rough and wears away.</span>\n\n&nbsp;\n<h4>Symptoms of Chondromalacia Patella</h4>\n<span style=\"font-weight: 400;\">The symptoms of chondromalacia patella include pain around the kneecap and clicking, cracking or popping sounds. And these tend to exacerbate with activity and worsen over time.</span>\n\n<span style=\"font-weight: 400;\">The kneecap ends up scraping the bones underneath the knee when the person moves the knee. The patella, or kneecap, is the largest “sesamoid” bone in the body, and it plays a crucial role in the bending and straightening of the knee. When there is a problem with the patella, the knee joint becomes unstable and movement becomes difficult and/or painful.</span>\n<h4>Chondromalacia Patella and Patellar Pain Syndrome</h4>\n<span style=\"font-weight: 400;\">Chondromalacia Patella is a type of patellar pain syndrome. And these syndromes often involve problems and injury of other soft tissue structures.</span> <span style=\"font-weight: 400;\">Patellar pain syndromes are often due to ligament injuries, meniscal tears, bony aberrations, muscle imbalances, or a combination of these conditions. </span>\n\n<span style=\"font-weight: 400;\">Patellar pain syndromes can be caused by trauma. But they are primarily due to anatomic or bio-mechanical conditions that are prone to “failure\" either in a bone or soft-tissue component. That means there may be injured ligaments or injured tendons, which are actually part of the underlying problem and adding to the tracking issue. If these other soft tissue injuries are not treated, the knee will remain unstable, creating a negative cycle and resulting in significant impairment.</span> <span style=\"font-weight: 400;\"> </span>\n<h4><b>What Are the Usual Treatments?</b></h4>\n<span style=\"font-weight: 400;\">Taping, strengthening exercises, and stretching are typical treatments for Chondromalacia Patella. These treatments may work for a short period of time. But generally do not cure the condition. Regenerative Orthopedics, on the other hand, can improve patellar tracking and relieve the symptoms of Chondromalacia Patella.</span>\n\n<span style=\"font-weight: 400;\">Physical therapy, to strengthen the quadriceps may be an important treatment component in Chondromalacia Patella. However, if the quadriceps tendon or other soft tissue, like ligaments are injured, then they need to be treated, because physical therapy success will otherwise be limited. </span>\n\n<span style=\"font-weight: 400;\">Let’s explain further.  If the soft tissue component is not treated, the joint will remain unstable, the abnormal movement will continue, the negative cycle is promoted, and the impairment and altered tracking of the patella</span><span style=\"font-weight: 400;\"> will persist.</span><span style=\"font-weight: 400;\"> Physical therapy, patellar taping, orthotics, ice applications, and soft braces do not address the underlying issues of joint instability caused by the ligament injury, tendon injury, or meniscal tears.  </span>\n<h4><em>And Surgery?</em></h4>\n<span style=\"font-weight: 400;\">Surgery is becoming more and more common for various knee conditions, and in some cases may be indicated. But unless a person is dealing with a fracture or a complete ligament rupture, a more conservative option should be considered.</span>\n<h4>Regenerative Orthopedics Works Even After You\'ve Tried Many Other Treatments for Chondromalacia Patella</h4>\n<span style=\"font-weight: 400;\">It is very possible that you have already tried various treatments, and even employed them over and over. But they continue to fall short in bringing you the relief and return to function and sport that you desire. Regenerative Orthopedics, on the other hand, can promote non-surgical repair of the ligament, tendon, and meniscus. And have been utilized with positive outcomes for patellar pain syndromes like Chondromalacia Patella.</span>\n\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is a therapeutic option that can promote the repair of injured or degenerated soft tissue. The treatment boosts the physiologic healing processes of the joint, thereby ameliorating joint instability and potentially all of the related conditions above. Stem Cell Therapy, PRP, and Prolotherapy are regenerative techniques well suited for soft tissue injury of the knee joint. And they have been used to effectively treat a wide variety of knee pain conditions, including Chondromalacia Patella.</span>\n\n<span style=\"font-weight: 400;\"> Soft tissue injuries of the knee often have an unsatisfactory outcome due to incomplete healing and repair. Regenerative Orthopedics is a treatment technique that has been explored for conditions that require soft tissue healing, with the goal of restoring normal ligament and tendon function.</span> <span style=\"font-weight: 400;\"> </span><span style=\"font-weight: 400;\">Regenerative Orthopedics is a conservative treatment that reduces Chondromalacia Patella symptoms, improves function, and restores normal tracking of the patella, returning you quickly to the sport and activities you enjoy.</span><span style=\"font-weight: 400;\"> </span>\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Chondromalacia Patella Treated Successfully','','inherit','closed','closed','','2650-autosave-v1','','','2020-09-02 18:35:56','2020-09-02 18:35:56','',2650,'https://www.drfields.com/uncategorized/2650-autosave-v1/',0,'revision','',0),(4077,9,'2020-09-02 18:39:33','2020-09-02 18:39:33','[caption id=\"attachment_4075\" align=\"alignleft\" width=\"539\"]<img class=\"wp-image-4075 \" src=\"https://www.drfields.com/wp-content/uploads/2019/08/knee-injury-500x500.png\" alt=\"Knee Injury Treatment\" width=\"539\" height=\"539\" /> <strong>Chondromalacia Patella Can Be Treated with Prolotherapy</strong>[/caption]\r\n\r\n<span style=\"font-weight: 400;\">In Chondromalacia Patella, the kneecap tracks abnormally making everyday activities difficult, interfering with sports, and causing knee pain. The condition is common in runners and athletes, especially in activities that involve a lot of running. And it can affect young, healthy individuals, as well as older adults. Chondromalacia patella is one of the causes of patellofemoral pain syndrome. </span>\r\n<h4><b>What Causes Chondromalacia Patella?</b></h4>\r\n<span style=\"font-weight: 400;\">Chondro means cartilage, malacia means breakdown, and patella means knee cap. So, when someone suffers from this condition, they will have cartilage breakdown and fraying underneath the knee cap. </span>\r\n\r\n<span style=\"font-weight: 400;\">Excessive, abnormal movement or hypermobility of the knee is considered a contributing factor in the development of chondromalacia patella</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<span style=\"font-weight: 400;\">Normally, the patella slides easily along the smooth surface of the patellar groove with bending and straightening of the knee. But with chondromalacia patella, the cartilage becomes rough and wears away.</span>\r\n\r\n&nbsp;\r\n<h4>Symptoms of Chondromalacia Patella</h4>\r\n<span style=\"font-weight: 400;\">The symptoms of chondromalacia patella include pain around the kneecap and clicking, cracking or popping sounds. And these tend to exacerbate with activity and worsen over time.</span>\r\n\r\n<span style=\"font-weight: 400;\">The kneecap ends up scraping the bones underneath the knee when the person moves the knee. The patella, or kneecap, is the largest “sesamoid” bone in the body, and it plays a crucial role in the bending and straightening of the knee. When there is a problem with the patella, the knee joint becomes unstable and movement becomes difficult and/or painful.</span>\r\n<h4>Chondromalacia Patella and Patellar Pain Syndrome</h4>\r\n<span style=\"font-weight: 400;\">Chondromalacia Patella is a type of patellar pain syndrome. And these syndromes often involve problems and injury of other soft tissue structures.</span> <span style=\"font-weight: 400;\">Patellar pain syndromes are often due to ligament injuries, meniscal tears, bony aberrations, muscle imbalances, or a combination of these conditions. </span>\r\n\r\n<span style=\"font-weight: 400;\">Patellar pain syndromes can be caused by trauma. But they are primarily due to anatomic or bio-mechanical conditions that are prone to “failure\" either in a bone or soft-tissue component. That means there may be injured ligaments or injured tendons, which are actually part of the underlying problem and adding to the tracking issue. If these other soft tissue injuries are not treated, the knee will remain unstable, creating a negative cycle and resulting in significant impairment.</span> <span style=\"font-weight: 400;\"> </span>\r\n<h4><b>What Are the Usual Treatments?</b></h4>\r\n<span style=\"font-weight: 400;\">Taping, strengthening exercises, and stretching are typical treatments for Chondromalacia Patella. These treatments may work for a short period of time. But generally do not cure the condition. Regenerative Orthopedics, on the other hand, can improve patellar tracking and relieve the symptoms of Chondromalacia Patella.</span>\r\n\r\n<span style=\"font-weight: 400;\">Physical therapy, to strengthen the quadriceps may be an important treatment component in Chondromalacia Patella. However, if the quadriceps tendon or other soft tissue, like ligaments are injured, then they need to be treated, because physical therapy success will otherwise be limited. </span>\r\n\r\n<span style=\"font-weight: 400;\">Let’s explain further.  If the soft tissue component is not treated, the joint will remain unstable, the abnormal movement will continue, the negative cycle is promoted, and the impairment and altered tracking of the patella</span><span style=\"font-weight: 400;\"> will persist.</span><span style=\"font-weight: 400;\"> Physical therapy, patellar taping, orthotics, ice applications, and soft braces do not address the underlying issues of joint instability caused by the ligament injury, tendon injury, or meniscal tears.  </span>\r\n<h4><em>And Surgery?</em></h4>\r\n<span style=\"font-weight: 400;\">Surgery is becoming more and more common for various knee conditions, and in some cases may be indicated. But unless a person is dealing with a fracture or a complete ligament rupture, a more conservative option should be considered.</span>\r\n<h4>Regenerative Orthopedics Works Even After You\'ve Tried Many Other Treatments for Chondromalacia Patella</h4>\r\n<span style=\"font-weight: 400;\">It is very possible that you have already tried various treatments, and even employed them over and over. But they continue to fall short in bringing you the relief and return to function and sport that you desire. Regenerative Orthopedics, on the other hand, can promote non-surgical repair of the ligament, tendon, and meniscus. And have been utilized with positive outcomes for patellar pain syndromes like Chondromalacia Patella.</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is a therapeutic option that can promote the repair of injured or degenerated soft tissue. The treatment boosts the physiologic healing processes of the joint, thereby ameliorating joint instability and potentially all of the related conditions above. Stem Cell Therapy, PRP, and Prolotherapy are regenerative techniques well suited for soft tissue injury of the knee joint. And they have been used to effectively treat a wide variety of knee pain conditions, including Chondromalacia Patella.</span>\r\n\r\n<span style=\"font-weight: 400;\"> Soft tissue injuries of the knee often have an unsatisfactory outcome due to incomplete healing and repair. Regenerative Orthopedics is a treatment technique that has been explored for conditions that require soft tissue healing, with the goal of restoring normal ligament and tendon function.</span> <span style=\"font-weight: 400;\"> </span><span style=\"font-weight: 400;\">Regenerative Orthopedics is a conservative treatment that reduces Chondromalacia Patella symptoms, improves function, and restores normal tracking of the patella, returning you quickly to the sport and activities you enjoy.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Chondromalacia Patella Treated Successfully','','inherit','closed','closed','','2650-revision-v1','','','2020-09-02 18:39:33','2020-09-02 18:39:33','',2650,'https://www.drfields.com/uncategorized/2650-revision-v1/',0,'revision','',0),(4078,9,'2020-09-02 18:43:22','2020-09-02 18:43:22','Amniotic','There are no Stem Cells in Amniotic \"Stem Cell\" Therapy','There are no Stem Cells in Amniotic \"Stem Cell\" Therapy','inherit','open','closed','','amniotic','','','2020-09-02 18:44:21','2020-09-02 18:44:21','',2611,'https://www.drfields.com/wp-content/uploads/2019/08/Amniotic.jpg',0,'attachment','image/jpeg',0),(4079,9,'2021-08-22 23:54:55','2021-08-22 23:54:55','[caption id=\"attachment_4078\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4078\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Amniotic-400x500.jpg\" alt=\"Amniotic Stem Cells\" width=\"400\" height=\"500\" /> <em>     There are no Stem Cells in Amniotic \"Stem Cell\" Therapy</em>[/caption]\n\nSeminars about amniotic “stem cell” therapy are popping up everywhere. But it is important to know what advertisers are really talking about. At OrthoRegen<sup>®</sup>, we do not use amniotic “stem cell” therapy in our stem cell treatments.\n\nWe want you to be educated about amniotic therapy. Especially since there is a lot of misinformation surrounding amniotic “stem cell” therapy and umbilical cord blood “stem cell” therapy. <strong>We want to inform you on what these treatments are and also what they are not.</strong>\n<h4>Why Do We Put the Words \"Stem Cells\" in Quotations?</h4>\nThere is a reason we keep putting “stem cells” in quotations when we talking about amniotic “stem cells.” <em>That’s because there are <strong>NO</strong> actual stem cells in amniotic “stem cell” therapy.</em> That’s right! Both amniotic “stem cell” therapy and umbilical cord blood “stem cell” therapy have NO stem cells in the product.\n\nIn a very recent study of five commercial umbilical cord allograft products claiming to contain viable, undescribed \"stem cells,\" a group of researchers concluded, \"stem cells were not found within any of the commercial UC allograft products analyzed, and clinicians should remain wary of marketing claims stating otherwise.\"1 And patients seeking these products should be wary as well!\n\nThink about this scenario for a moment. There isn’t someone waiting for the mother to give birth, and someone who is collecting the afterbirth, and someone else delivering it to your doctor’s office, to then be injected into your degenerated or injured hip or knee by the clinician you have chosen, right?! No, that isn’t the way it happens.\n<h4>Amniotic Product Processing</h4>\nSure, the mother does donate the placental tissue. But the afterbirth materials are purchased by companies, and the companies process the materials in an effort to make sure they are disease-free. They are also freeze-dried. And all of these preservation processes kill all of the live cells. That leaves <strong>NO live stem cells in the product</strong>.\n\nAmniotic stem cells are being advertised all over the place. And people are fascinated with this very popular trend of using amniotic fluid for joint repair. But it needs to be clarified that amniotic “stem cell” therapy has NO actual stem cells, but rather growth factors and natural hyaluronic acid remnants found in the extracellular matrix of the amniotic tissue. If companies advertise in this way about the actual product you will receive, it is simply not true. Keep in mind that in their pre-donated state, the amniotic fluid does have an abundance of stem cells, but they do not survive the processing.\n<h4><strong>They Say My Stem Cells Are Too Old, Weak, or Too Few</strong></h4>\nSome seminars try to convince folks that their own stem cells are no good, and that the donated cells are better for treating joint pain. That’s not true! This is another important point to understand… <strong><em>your own bone marrow, even if you are older, contains sufficient stem cells.</em></strong> Yours stem cells are just fine. And they are live stem cells.\n<h4><strong><em>How Can the Processed, “Dead” Cells They Promote Be Better?</em></strong></h4>\nThe push to say that your own cells are too weak, or too few and that their amniotic product is better does not make any sense, when their product doesn’t contain any! Remember, cryopreserved, dehydrated amniotic products do not contain stem cells. Yes, amniotic fluid does contain growth factors. And these growth factors very well may work at helping joint pain. But there is a better way!\n<h4>Use Your Own Live Stem Cells</h4>\nGuess what?  You have growth factors in your own blood! Your own blood in the form of Platelet Rich Plasma (PRP) contains live growth factors too. And when we use PRP, if recommended in your particular case, we won’t be preserving it or freeze-drying it. It will be used right away. Again, the purchased, micronized amniotic product does contain growth factor material, but it is processed. Why not just use your own (autologous) live stem cells and PRP growth factors for your joint pain and injuries?\n\nUsing your own stem cells and blood is also safer as far as the transfer of disease or contaminants. True, the amniotic product is processed and freeze-dried, but problems of contamination have occurred. The CDC has reported instances of contamination of both amniotic products and cord blood with fecal matter and bacteria.2\n\nTo recap: the original amniotic fluid from the fetus does contain an abundance of stem cells in its pre-donated state. However, the procedure used in amniotic material processing alters the original relevant characteristics of the product thereby decreasing its ability and usefulness at regeneration and repair of injured or degenerated tissue. Once again, the amniotic “stem cell” therapy does <strong>not</strong> contain actual stem cells, but rather growth factors that may possibly activate your own stem cells.\n<h4><strong>They Say I Just Need One Injection</strong></h4>\nOne injection simply is not enough to heal your whole joint. Even if just one injection is advertised, it is not sufficient for complete healing. The most likely scenario is that your joint injury or pain progressed over time, and involves more than one joint structure. In order to provide adequate repair of the joint and the pain relief you seek, a more comprehensive treatment would be necessary.\n\nIn most joint injuries, when one ligament is injured, additional ligaments and other soft tissue are generally injured as well. Unhealed joint injuries often lead to arthritis. And in this case the entire joint is involved. One injection simply cannot treat all of those joint structures. A comprehensive treatment is necessary to strengthen, repair and stabilize all of the involved structures. This also helps to prevent the continued breakdown of cartilage common in arthritis.\n\n<strong>A single injection is simply not comprehensive</strong> enough to reverse the damage affecting the entire joint. At OrthoRegen<sup>®</sup>, we address the entire joint with a multi-injection technique called <strong>Comprehensive Regenerative Orthopedics, in order to effectively treat the joint and return you to the pain-free life you desire</strong>.\n<h4><strong>Why Don’t We Use Amniotic “Stem Cell” Therapy?</strong></h4>\nAt OrthoRegen<sup>®</sup>, we use the Gold Standard in Stem Cell Therapy, which combines four different regenerative treatments that are extremely effective. <strong>And they utilize your own stem cells and growth factors.</strong>\n\nWe use adipose (fat) stem cells, which contain both live growth factors and live stem cells. Plus, we use bone marrow stem cells, which contain live growth factors and live stem cells. We also use Platelet Rich Plasma, which contains live growth factors. And then we use Dextrose Prolotherapy to strengthen any injured ligaments or tendons so the whole joint is treated and repaired. In comparison to amniotic “stem cell” therapy that only has processed growth factor material and no stem cells, it makes sense to choose the Gold Standard in Stem Cell Therapy that has been shown to be very effective.\n\nAnother great thing about Regenerative Orthopedics and the Gold Standard in Stem Cell Therapy is that it is non-surgical and requires basically no downtime. No extended time off of work is needed, and you can remain active.\n<h4>Research Shows the Effectiveness of Regenerative Orthopedics</h4>\nVarious trials and studies have shown the effectiveness of Dextrose Prolo­therapy alone in treating arthritis, as well as ligament and tendon injuries.3,4,5 When indicated, in advanced cases of degeneration, we recommend the Gold Standard of Stem Cell Therapy. In many cases of degeneration and injury, Prolotherapy alone is sufficient to bring the pain relief and repair needed, and the Gold Standard in Stem Cell Therapy is not required.\n\nIn cases that are more advanced, many other clinics use only one or two of these procedures. But we have discovered that this Gold Standard combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint. We comprehensively treat the entire joint with multiple injections of the Platelet Rich Plasma portion of the blood, adipose stem cells, and bone marrow stem cells. These regenerative treatments, along with Dextrose Prolotherapy in and around the involved joint offer benefits in terms of pain relief, regenerative properties, and cartilage repair for people with arthritis and all types of joint pain and injuries.\n\nIn our experience, we have discovered that this combination approach of live stem cells, growth factors, and regenerative therapies offers the best therapeutic regenerative approach for more advanced degenerative cases and particular injuries. The treatment addresses the whole joint and effectively heals the joint injuries, resolves pain, and restores function to return you quickly to the active life you desire.\n<h4>References</h4>\n1Berger DR, Centeno CJ, Kisiday JD, McIlwraith CW, Steinmetz NJ. Colony Forming Potential and Protein Composition of Commercial Umbilical Cord Allograft Products in Comparison With Autologous Orthobiologics. Am J Sports Med. 2021 Aug 16:3635465211031275. doi: 10.1177/03635465211031275. Epub ahead of print. PMID: 34398643.\n\n<em>2Notes from the Field:</em> Infections after Receipt of Bacterially Contaminated Umbilical Cord Blood–Derived Stem Cell Products for Other than Hematopoietic or Immunologic Reconstitution — United States, 2018. <em>Weekly</em> / December 21, 2018 /67(50);1397–1399.\n\n3Reeves KD, Hassanein K. Randomized prospective double-blind placebo-controlled study of dextrose prolotherapy\n\nor knee osteoarthritis with or without ACL laxity.  <em>Alt Ther Health Med</em>. 2000; 6(2):68–80.\n\n4Dagenais S, Yelland MJ, Del Mar C, Schoene ML. Prolotherapy injections for chronic low-back pain. <em>Cochrane Database Syst Rev</em>. Apr 18, 2007; (2): CD004059.\n\n5Rabago D, Zgierska A, Fortney L, et al. Hypertonic dextrose injections (prolotherapy) for knee osteoarthritis: results of a single-arm uncontrolled study with 1-year follow-up. <em>J Altern Complement Med</em>. 2012;18(4): 408–14.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Amniotic “Stem Cell” Therapy','','inherit','closed','closed','','2611-autosave-v1','','','2021-08-22 23:54:55','2021-08-22 23:54:55','',2611,'https://www.drfields.com/uncategorized/2611-autosave-v1/',0,'revision','',0),(4080,9,'2020-09-02 19:09:11','2020-09-02 19:09:11','[caption id=\"attachment_4078\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4078\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Amniotic-400x500.jpg\" alt=\"Amniotic Stem Cells\" width=\"400\" height=\"500\" /> <em>     There are no Stem Cells in Amniotic \"Stem Cell\" Therapy</em>[/caption]\r\n\r\nSeminars about amniotic “stem cell” therapy are popping up everywhere. But it is important to know what advertisers are really talking about. At OrthoRegen<sup>®</sup>, we do not use amniotic “stem cell” therapy in our stem cell treatments.\r\n\r\nWe want you to be educated about amniotic therapy. Especially since there is a lot of misinformation surrounding amniotic “stem cell” therapy and umbilical cord blood “stem cell” therapy. <strong>We want to inform you on what these treatments are and also what they are not.</strong>\r\n<h4>Why Do We Put the Words \"Stem Cells\" in Quotations?</h4>\r\nThere is a reason we keep putting “stem cells” in quotations when we talking about amniotic “stem cells.” <em>That’s because there are <strong>NO</strong> actual stem cells in amniotic “stem cell” therapy.</em> That’s right! Both amniotic “stem cell” therapy and umbilical cord blood “stem cell” therapy have NO stem cells in the product.\r\n\r\nThink about this scenario for a moment. There isn’t someone waiting for the mother to give birth, and someone who is collecting the afterbirth, and someone else delivering it to your doctor’s office, to then be injected into your degenerated or injured hip or knee by the clinician you have chosen, right?! No, that isn’t the way it happens.\r\n<h4>Amniotic Product Processing</h4>\r\nSure, the mother does donate the placental tissue. But the afterbirth materials are purchased by companies, and the companies process the materials in an effort to make sure they are disease-free. They are also freeze-dried. And all of these preservation processes kill all of the live cells. That leaves <strong>NO live stem cells in the product</strong>.\r\n\r\nAmniotic stem cells are being advertised all over the place. And people are fascinated with this very popular trend of using amniotic fluid for joint repair. But it needs to be clarified that amniotic “stem cell” therapy has NO actual stem cells, but rather growth factors and natural hyaluronic acid remnants found in the extracellular matrix of the amniotic tissue. If companies advertise in this way about the actual product you will receive, it is simply not true. Keep in mind that in their pre-donated state, the amniotic fluid does have an abundance of stem cells, but they do not survive the processing.\r\n<h4><strong>They Say My Stem Cells Are Too Old, Weak, or Too Few</strong></h4>\r\nSome seminars try to convince folks that their own stem cells are no good, and that the donated cells are better for treating joint pain. That’s not true! This is another important point to understand… <strong><em>your own bone marrow, even if you are older, contains sufficient stem cells.</em></strong> Yours stem cells are just fine. And they are live stem cells.\r\n<h4><strong><em>How Can the Processed, “Dead” Cells They Promote Be Better?</em></strong></h4>\r\nThe push to say that your own cells are too weak, or too few and that their amniotic product is better does not make any sense, when their product doesn’t contain any! Remember, cryopreserved, dehydrated amniotic products do not contain stem cells. Yes, amniotic fluid does contain growth factors. And these growth factors very well may work at helping joint pain. But there is a better way!\r\n<h4>Use Your Own Live Stem Cells</h4>\r\nGuess what?  You have growth factors in your own blood! Your own blood in the form of Platelet Rich Plasma (PRP) contains live growth factors too. And when we use PRP, if recommended in your particular case, we won’t be preserving it or freeze drying it. It will be used right away. Again, the purchased, micronized amniotic product does contain growth factor material, but it is processed. Why not just use your own (autologous) live stem cells and PRP growth factors for your joint pain and injuries?\r\n\r\nUsing your own stem cells and blood is also safer as far as the transfer of disease or contaminants. True, the amniotic product is processed and freeze-dried, but problems of contamination have occurred. The CDC has reported instances of contamination of both amniotic product and cord blood with fecal matter and bacteria.<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nTo recap: original amniotic fluid from the fetus does contain an abundance of stem cells in its pre-donated state. However, the procedure used in amniotic material processing alters the original relevant characteristics of the product thereby decreasing its ability and usefulness at regeneration and repair of injured or degenerated tissue. Once again, the amniotic “stem cell” therapy does <strong>not</strong> contain actual stem cells, but rather growth factors that may possibly activate your own stem cells.\r\n<h4><strong>They Say I Just Need One Injection</strong></h4>\r\nOne injection simply is not enough to heal your whole joint. Even if just one injection is advertised, it is not sufficient for complete healing. The most likely scenario is that your joint injury or pain progressed over time, and involves more than one joint structure. In order to provide adequate repair of the joint and the pain relief you seek, a more comprehensive treatment would be necessary.\r\n\r\nIn most joint injuries, when one ligament is injured, additional ligaments and other soft tissue are generally injured as well. Unhealed joint injuries often lead to arthritis. And in this case the entire joint is involved. One injection simply cannot treat all of those joint structures. A comprehensive treatment is necessary to strengthen, repair and stabilize all of the involved structures. This also helps to prevent the continued breakdown of cartilage common in arthritis.\r\n\r\n<strong>A single injection is simply not comprehensive</strong> enough to reverse the damage affecting the entire joint. At OrthoRegen<sup>®</sup>, we address the entire joint with a multi-injection technique called <strong>Comprehensive Regenerative Orthopedics, in order to effectively treat the joint and return you to the pain-free life you desire</strong>.\r\n<h4><strong>Why Don’t We Use Amniotic “Stem Cell” Therapy?</strong></h4>\r\nAt OrthoRegen<sup>®</sup>, we use the Gold Standard in Stem Cell Therapy, which combines four different regenerative treatments that are extremely effective. <strong>And they utilize your own stem cells and growth factors.</strong>\r\n\r\nWe use adipose (fat) stem cells, which contain both live growth factors and live stem cells. Plus, we use bone marrow stem cells, which contain live growth factors and live stem cells. We also use Platelet Rich Plasma, which contains live growth factors. And then we use Dextrose Prolotherapy to strengthen any injured ligaments or tendons so the whole joint is treated and repaired. In comparison to amniotic “stem cell” therapy that only has processed growth factor material and no stem cells, it makes sense to choose the Gold Standard in Stem Cell Therapy that has been shown to be very effective.\r\n\r\nAnother great thing about Regenerative Orthopedics and the Gold Standard in Stem Cell Therapy is that it is non-surgical and requires basically no downtime. No extended time off of work is needed, and you can remain active.\r\n<h4>Research Shows the Effectiveness of Regenerative Orthopedics</h4>\r\nVarious trials and studies have shown the effectiveness of Dextrose Prolo­therapy alone in treating arthritis, as well as ligament and tendon injuries.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a><sup>,<a href=\"#_edn3\" name=\"_ednref3\">[iii]</a>,<a href=\"#_edn4\" name=\"_ednref4\">[iv]</a></sup> When indicated, in advanced cases of degeneration, we recommend the Gold Standard of Stem Cell Therapy. In many cases of degeneration and injury, Prolotherapy alone is sufficient to bring the pain relief and repair needed, and the Gold Standard in Stem Cell Therapy is not required.\r\n\r\nIn cases that are more advanced, many other clinics use only one or two of these procedures. But we have discovered that this Gold Standard combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint. We comprehensively treat the entire joint with multiple injections of the Platelet Rich Plasma portion of the blood, adipose stem cells, and bone marrow stem cells. These regenerative treatments, along with Dextrose Prolotherapy in and around the involved joint offer benefits in terms of pain relief, regenerative properties, and cartilage repair for people with arthritis and all types of joint pain and injuries.\r\n\r\nIn our experience, we have discovered that this combination approach of live stem cells, growth factors, and regenerative therapies offers the best therapeutic regenerative approach for more advanced degenerative cases and particular injuries. The treatment addresses the whole joint and effectively heals the joint injuries, resolves pain, and restores function to return you quickly to the active life you desire.\r\n<h4>References</h4>\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> <em>Notes from the Field:</em> Infections after Receipt of Bacterially Contaminated Umbilical Cord Blood–Derived Stem Cell Products for Other than Hematopoietic or Immunologic Reconstitution — United States, 2018. <em>Weekly</em> / December 21, 2018 /67(50);1397–1399.\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Reeves KD, Hassanein K. Randomized prospective double-blind placebo-controlled study of dextrose prolotherapy\r\n\r\nor knee osteoarthritis with or without ACL laxity.  <em>Alt Ther Health Med</em>. 2000; 6(2):68–80.\r\n\r\n<a href=\"#_ednref3\" name=\"_edn3\">[iii]</a> Dagenais S, Yelland MJ, Del Mar C, Schoene ML. Prolotherapy injections for chronic low-back pain. <em>Cochrane Database Syst Rev</em>. Apr 18, 2007; (2): CD004059.\r\n\r\n<a href=\"#_ednref4\" name=\"_edn4\">[iv]</a> Rabago D, Zgierska A, Fortney L, et al. Hypertonic dextrose injections (prolotherapy) for knee osteoarthritis: results of a single-arm uncontrolled study with 1-year follow-up. <em>J Altern Complement Med</em>. 2012;18(4): 408–14.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Amniotic “Stem Cell” Therapy','','inherit','closed','closed','','2611-revision-v1','','','2020-09-02 19:09:11','2020-09-02 19:09:11','',2611,'https://www.drfields.com/uncategorized/2611-revision-v1/',0,'revision','',0),(4081,9,'2020-09-02 19:18:02','2020-09-02 19:18:02','<strong>By Peter A. Fields, MD, DC</strong>\n\nAs the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions. Don\'t fear!\n\nYes, this virus is a terrible menace, and sometimes even deadly.\n\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\n\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\n\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\n\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\n\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\n<h4><strong>The point is that we cannot live our lives in fear.</strong></h4>\nLiving life in fear is not a good thing.\n\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\n\n[caption id=\"attachment_3664\" align=\"alignright\" width=\"461\"]<img class=\"wp-image-3664 \" src=\"https://www.drfields.com/wp-content/uploads/2020/04/image0-400x500.jpeg\" alt=\"COVID Advice\" width=\"461\" height=\"576\" /> <em>                                      Don\'t Fear the Fear Itsel</em>f[/caption]\n\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\n\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\n\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\n\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\n\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\nBut don\'t fear the fear itself!\n\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\n\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\n\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','“Don’t Fear the Fear Itself!”','','inherit','closed','closed','','3638-autosave-v1','','','2020-09-02 19:18:02','2020-09-02 19:18:02','',3638,'https://www.drfields.com/uncategorized/3638-autosave-v1/',0,'revision','',0),(4082,9,'2020-09-02 19:14:50','2020-09-02 19:14:50','<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nAs the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions.\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly.\r\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\r\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n\r\n<strong>The point is that we cannot live our lives in fear.</strong>\r\n\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n[caption id=\"attachment_3664\" align=\"alignright\" width=\"461\"]<img class=\"wp-image-3664 \" src=\"https://www.drfields.com/wp-content/uploads/2020/04/image0-400x500.jpeg\" alt=\"COVID Advice\" width=\"461\" height=\"576\" /> <em>                                      Don\'t Fear the Fear Itsel</em>f[/caption]\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\r\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','COVID-19 Advice: “Don’t Fear the Fear Itself!”','','inherit','closed','closed','','3638-revision-v1','','','2020-09-02 19:14:50','2020-09-02 19:14:50','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(4083,9,'2020-09-02 19:18:18','2020-09-02 19:18:18','<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nAs the world is going through an unprecedented pandemic, we should all do what our parents taught us as children. That is, hold your head up high, be proud of yourself, and use good logical thinking before making any decisions. Don\'t fear!\r\n\r\nYes, this virus is a terrible menace, and sometimes even deadly.\r\n\r\n<strong>But remember that 80% of the people affected by it will either have mild symptoms or no symptoms at all.</strong>\r\n\r\nYes, that still leaves 20%; and, of course, the elderly, infirmed, immune-compromised, and people with other comorbid illnesses should be more diligent. But those same people also need to be concerned about contracting any illness.\r\n\r\nKeep in mind, as reported recently, that those younger than 60 years old who died in Italy, had at least one other comorbid illness. Not every one of them, but certainly most. This tells us that younger people will not get a serious disease unless they have a comorbid illness.\r\n\r\nIt\'s also important to consider that the CDC reported that 60,000 people died in the United States from the last flu outbreak. And according to the World Health Organization, over 850,000 people died last year from the effects of the flu. Yes, that\'s over three-quarters of a million people.\r\n\r\nWe have had wars, the Holocaust, HIV, and many other disastrous and fateful things happen to mankind. But one should not be afraid of dying. Eventually, we will all die. No one is here forever! Anything can happen any day. Automobile accidents happen 60,000 times a year in the United States. Then there are illnesses, cancer, and numerous other maladies that can affect us on a daily basis.\r\n<h4><strong>The point is that we cannot live our lives in fear.</strong></h4>\r\nLiving life in fear is not a good thing.\r\n\r\nLike Franklin Delano Roosevelt said to the people of the United States after the great depression, “The only thing we have to fear is fear itself.\"\r\n\r\n[caption id=\"attachment_3664\" align=\"alignright\" width=\"461\"]<img class=\"wp-image-3664 \" src=\"https://www.drfields.com/wp-content/uploads/2020/04/image0-400x500.jpeg\" alt=\"COVID Advice\" width=\"461\" height=\"576\" /> <em>                                      Don\'t Fear the Fear Itsel</em>f[/caption]\r\n\r\nFear is not good for the mind, body or soul. As the saying goes, \"You should live every day like it\'s your last one.\"\r\n\r\nEnjoy life. Be proud of your accomplishments. Look back on the mistakes you made in life and learn from them. But always look forwards.\r\n\r\nMy dad always taught me, \"You can learn from the past and look to the future, but you can only live for today.\"\r\n\r\n<strong><em>This does not mean to ignore the precautions that one must take in containing this virus.\r\nBut it does mean that you should not become consumed with the fear itself.</em></strong>\r\n\r\nWe must ask ourselves, \"If I was to die today, would I be happy with what I have done with it? Sure, you could have done more, but you\'ve done a lot! Take a moment to look back on all your accomplishments and at what you\'ve done and where you\'ve been.\r\n<p dir=\"ltr\">So again, I remind people that yes, you should wash your hands. You also need to wear your seatbelts, and look both ways when crossing the street, plus other logical and recommended safety precautions.</p>\r\nBut don\'t fear the fear itself!\r\n\r\n<strong>You are alive and here on this planet and today is a good day to live your life.</strong>\r\n\r\n<strong><em>Remember to be intelligently cautious and careful.</em></strong>\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','“Don’t Fear the Fear Itself!”','','inherit','closed','closed','','3638-revision-v1','','','2020-09-02 19:18:18','2020-09-02 19:18:18','',3638,'https://www.drfields.com/uncategorized/3638-revision-v1/',0,'revision','',0),(4084,9,'2020-09-02 19:35:22','2020-09-02 19:35:22','<h3><strong>Painful Joints? Regenerative Orthopedics Works Even When Other Treatments Fail</strong></h3>\n[caption id=\"attachment_4086\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4086 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Sue.-knee.stem_-500x500.png\" alt=\"Stem Cell Therapy for Knee Pain\" width=\"500\" height=\"500\" /> Stem Cell Therapy Resolves Painful Joints Even When Other Treatments Fail[/caption]\n\nRegenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma (PRP), and Dextrose Prolotherapy are non-surgical treatments for numerous conditions causing painful joints. The treatments are often superior to many other treatments at effectively repairing joint injuries. And they eliminate joint pain, getting you back to the activities and the lifestyle you love.\n<h4>Is joint pain standing in the way of your enjoyment of sports?</h4>\nAre painful joints making it difficult to do normal, everyday things? At OrthoRegen<sup>®</sup>, we commonly see patients who have tried a number of different treatments in an effort to find relief from their painful knee, hip, shoulder, back, and multiple joint pain. They have tried over-the-counter medications, prescription medications, cortisone injections, massage, and other treatments, but are still in pain. You may hurgery may have been recommended or even performed already. Yet they are still in pain.\n\nDoes this sound like you? Do you continue to suffer with a painful joint condition even though it seems like you have tried everything, but still experience annoying pain? Unfortunately, this scenario is repeated over and over. We hear it all of the time! But there is an answer!\n<h4>Regenerative Orthopedics: An Effective Joint Repair Solution</h4>\nRegenerative Orthopedics is effective at repairing many painful joint conditions even after other treatments have failed. How can this be? The reason is because many of the other treatments never treat the root cause of the problem. Think about it. Can Advil really fix a joint problem? Or does it just cover up the pain? Is the problem an Advil deficiency? When you think about it like that, it is obvious that these treatments aren’t the answer, but more of a band-aid approach.\n\nRegenerative Orthopedics has a greater chance at effectively repairing the joint injury and relieving the pain because it is directed at the root cause of the joint pain problem.  The underlying source of the majority of painful joint conditions is joint instability due to ligament and/or tendon injury and weakness. Fortunately, Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, work great at treating ligament and tendon injuries and weakness, and because of that, they are able to successfully repair joint instability.\n<h4><strong>How Do Regenerative Orthopedic Treatments Work?</strong></h4>\nIt’s pretty simple. Regenerative Orthopedics involve the injection of different types of natural solutions which are injected into the painful joint areas.  The process stimulates the body’s natural healing cascade, which triggers wound healing properties. This results in tightened and stronger ligaments and tendons, which make the entire joint structure more stable.\n\nAnd remember, the underlying source of most painful joint conditions is an unstable joint. Therefore, stabilization of the joint with Regenerative Orthopedics repairs the problem at its source and results in pain elimination. Regenerative Orthopedics is beneficial in repairing many different types of sports injuries and various types of persistent joint pain.\n<h4><strong>Regenerative Orthopedics Treats Most Painful Joint Conditions</strong></h4>\nAt OrthoRegen<sup>®</sup>, we have seen Regenerative Orthopedics effectively repair most joint injuries and painful joint conditions including neck, back, knee, hip, shoulder and other musculoskeletal pains that are due to ligament and tendon weakness, injury, and joint instability.\n\nIn joint injuries such as meniscal tears or labral tears, we have found that the addition of Platelet Rich Plasma, along with Dextrose Prolotherapy is an effective Regenerative Orthopedic technique.\n<h4>Regenerative Orthopedics and Arthritis</h4>\nEven arthritis can be treated with Regenerative Orthopedics, because arthritis also has at its core, a problem of joint instability. Regenerative Orthopedics strengthens the entire joint, because the whole joint is treated comprehensively. Persistent joint pain in arthritis is almost always due to underlying injured soft tissue, like the ligaments and tendons, and joint instability.\n\nLeft untreated, the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for degeneration and the arthritic process. Regenerative Orthopedics stimulates the repair of the injured joint structures, stops the abnormal joint motion, and halts the degenerative process.\n\nWhen degeneration of the joint is more severe, we may recommend the Gold Standard in Stem Cell Therapy. This treatment includes two forms of stem cells (bone and fat), PRP, and Dextrose Prolotherapy. We have found that this combination is quite amazing at regenerating the joint when cartilage has been lost. Plus, it stimulates the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability. And the result is in the elimination of pain and the return to function in degenerative joint conditions.\n\nRegenerative Orthopedics is an effective treatment option for painful joint conditions, even after many other treatments have failed to resolve your pain. If your pain has persisted to put a damper on your life after having tried numerous other treatments, we urge you to consider non-surgical Regenerative Orthopedics to resolve your joint pain.\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Painful Joints?','','inherit','closed','closed','','2592-autosave-v1','','','2020-09-02 19:35:22','2020-09-02 19:35:22','',2592,'https://www.drfields.com/uncategorized/2592-autosave-v1/',0,'revision','',0),(4085,9,'2020-09-02 19:20:12','2020-09-02 19:20:12','<strong>Painful Joints? Regenerative Orthopedics Works Even When Other Treatments Fail  </strong>\r\n\r\nRegenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma (PRP), and Dextrose Prolotherapy are non-surgical treatments for numerous painful joint conditions. The treatments are often superior to many other treatments at effectively repairing joint injuries, eliminating joint pain, and getting you back to the activities and the lifestyle you love.  Is joint pain standing in the way of your enjoyment of sports? Are painful joints making it difficult to do normal, everyday things? At OrthoRegen<sup>®</sup>, we commonly see patients who have tried a number of different treatments in an effort to find relief from their painful knee, hip, shoulder, back, and multiple joint pain. They have tried over-the-counter medications, prescription medications, cortisone injections, massage, and other treatments, but are still in pain. Surgery may have been recommended or even performed already. Yet they are still in pain. Does this sound like you? Do you continue to suffer with a painful joint condition even though it seems like you have tried everything, but still experience annoying pain? Unfortunately, this scenario is repeated over and over. We hear it all of the time! But there is an answer! Regenerative Orthopedics is effective at repairing many painful joint conditions even after other treatments have failed. How can this be? The reason is because many of the other treatments never treat the root cause of the problem. Think about it. Can Advil really fix a joint problem or does it just cover up the pain? Is the problem an Advil deficiency? When you think about it like that, it is obvious that these treatments aren’t the answer, but more of a band-aid approach.\r\n\r\nRegenerative Orthopedics has a greater chance at effectively repairing the joint injury and relieving the pain because it is directed at the root cause of the joint pain problem.  The underlying source of the majority of painful joint conditions is joint instability due to ligament and/or tendon injury and weakness. Fortunately, Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, work great at treating ligament and tendon injuries and weakness, and because of that, they are able to successfully repair joint instability.\r\n\r\n<strong>How Do Regenerative Orthopedic Treatments Work?</strong>\r\n\r\nIt’s pretty simple. Regenerative Orthopedics involves the injection of different types of natural solutions which are injected into the painful joint areas.  The process stimulates the body’s natural healing cascade, which triggers wound healing properties. This results in tightened and stronger ligaments and tendons, which make the entire joint structure more stable. Remember, the underlying source of most painful joint conditions is an unstable joint. Therefore, stabilization of the joint with Regenerative Orthopedics repairs the problem at its source and results in pain elimination. Regenerative Orthopedics is beneficial in repairing many different types of sports injuries and various types of persistent joint pain.\r\n\r\n<strong>Does Regenerative Orthopedics Only Treat Specific Joints and Conditions? </strong>\r\n\r\nAt OrthoRegen<sup>®</sup>, we have seen Regenerative Orthopedics effectively repair most joint injuries and painful joint conditions including neck, back, knee, hip, shoulder and other musculoskeletal pains that are due to ligament and tendon weakness, injury, and joint instability.\r\n\r\nIn joint injuries such as meniscal tears or labral tears, we have found that the addition of Platelet Rich Plasma, along with Dextrose Prolotherapy is an effective Regenerative Orthopedic technique.\r\n\r\nEven arthritis can be treated with Regenerative Orthopedics, because it also has at its core, a problem of joint instability. Regenerative Orthopedics strengthens the entire joint, because the whole joint is treated comprehensively. Persistent joint pain in arthritis is almost always due to underlying injured soft tissue, like the ligaments and tendons, and joint instability. Left untreated, the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for degeneration and the arthritic process. Regenerative Orthopedics stimulates the repair of the injured joint structures, stops the abnormal joint motions, and halts the degenerative process.  When degeneration of the joint is more severe, we may recommend the Gold Standard in Stem Cell Therapy, which includes two forms of stem cells (bone and fat), PRP, and Dextrose Prolotherapy. This treatment combination is quite amazing at regenerating the joint when cartilage has been lost, plus it stimulates the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability, and results in the elimination of pain and the return to function in degenerative joint conditions.\r\n\r\nRegenerative Orthopedics is an effective treatment option for painful joint conditions, even after many other treatments have failed to resolve your pain. If your pain has persisted to put a damper on your life after having tried numerous other treatments, we urge you to consider non-surgical Regenerative Orthopedics to resolve your joint pain.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Painful Joints?','','inherit','closed','closed','','2592-revision-v1','','','2020-09-02 19:20:12','2020-09-02 19:20:12','',2592,'https://www.drfields.com/uncategorized/2592-revision-v1/',0,'revision','',0),(4086,9,'2020-09-02 19:20:52','2020-09-02 19:20:52','Stem Cell Therapy Works Even When Other Treatments Fail','Stem Cell Therapy Works Even When Other Treatments Fail','Stem Cell Therapy Works Even When Other Treatments Fail','inherit','open','closed','','sue-knee-stem','','','2020-09-02 19:22:01','2020-09-02 19:22:01','',2592,'https://www.drfields.com/wp-content/uploads/2019/08/Sue.-knee.stem_.png',0,'attachment','image/png',0),(4087,9,'2020-09-02 19:24:30','2020-09-02 19:24:30','<h3><strong>Painful Joints? Regenerative Orthopedics Works Even When Other Treatments Fail</strong></h3>\r\n[caption id=\"attachment_4086\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4086\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Sue.-knee.stem_-500x500.png\" alt=\"Stem Cell Therapy for Knee Pain\" width=\"500\" height=\"500\" />           <em> Stem Cell Therapy Works Even When Other Treatments Fail</em>[/caption]\r\n\r\nRegenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma (PRP), and Dextrose Prolotherapy are non-surgical treatments for numerous painful joint conditions. The treatments are often superior to many other treatments at effectively repairing joint injuries. And they eliminate joint pain, getting you back to the activities and the lifestyle you love.\r\n<h4>Is joint pain standing in the way of your enjoyment of sports?</h4>\r\nAre painful joints making it difficult to do normal, everyday things? At OrthoRegen<sup>®</sup>, we commonly see patients who have tried a number of different treatments in an effort to find relief from their painful knee, hip, shoulder, back, and multiple joint pain. They have tried over-the-counter medications, prescription medications, cortisone injections, massage, and other treatments, but are still in pain. Surgery may have been recommended or even performed already. Yet they are still in pain.\r\n\r\nDoes this sound like you? Do you continue to suffer with a painful joint condition even though it seems like you have tried everything, but still experience annoying pain? Unfortunately, this scenario is repeated over and over. We hear it all of the time! But there is an answer!\r\n\r\nRegenerative Orthopedics is effective at repairing many painful joint conditions even after other treatments have failed. How can this be? The reason is because many of the other treatments never treat the root cause of the problem. Think about it. Can Advil really fix a joint problem or does it just cover up the pain? Is the problem an Advil deficiency? When you think about it like that, it is obvious that these treatments aren’t the answer, but more of a band-aid approach.\r\n\r\nRegenerative Orthopedics has a greater chance at effectively repairing the joint injury and relieving the pain because it is directed at the root cause of the joint pain problem.  The underlying source of the majority of painful joint conditions is joint instability due to ligament and/or tendon injury and weakness. Fortunately, Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, work great at treating ligament and tendon injuries and weakness, and because of that, they are able to successfully repair joint instability.\r\n\r\n<strong>How Do Regenerative Orthopedic Treatments Work?</strong>\r\n\r\nIt’s pretty simple. Regenerative Orthopedics involves the injection of different types of natural solutions which are injected into the painful joint areas.  The process stimulates the body’s natural healing cascade, which triggers wound healing properties. This results in tightened and stronger ligaments and tendons, which make the entire joint structure more stable. Remember, the underlying source of most painful joint conditions is an unstable joint. Therefore, stabilization of the joint with Regenerative Orthopedics repairs the problem at its source and results in pain elimination. Regenerative Orthopedics is beneficial in repairing many different types of sports injuries and various types of persistent joint pain.\r\n\r\n<strong>Does Regenerative Orthopedics Only Treat Specific Joints and Conditions? </strong>\r\n\r\nAt OrthoRegen<sup>®</sup>, we have seen Regenerative Orthopedics effectively repair most joint injuries and painful joint conditions including neck, back, knee, hip, shoulder and other musculoskeletal pains that are due to ligament and tendon weakness, injury, and joint instability.\r\n\r\nIn joint injuries such as meniscal tears or labral tears, we have found that the addition of Platelet Rich Plasma, along with Dextrose Prolotherapy is an effective Regenerative Orthopedic technique.\r\n\r\nEven arthritis can be treated with Regenerative Orthopedics, because it also has at its core, a problem of joint instability. Regenerative Orthopedics strengthens the entire joint, because the whole joint is treated comprehensively. Persistent joint pain in arthritis is almost always due to underlying injured soft tissue, like the ligaments and tendons, and joint instability. Left untreated, the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for degeneration and the arthritic process. Regenerative Orthopedics stimulates the repair of the injured joint structures, stops the abnormal joint motions, and halts the degenerative process.  When degeneration of the joint is more severe, we may recommend the Gold Standard in Stem Cell Therapy, which includes two forms of stem cells (bone and fat), PRP, and Dextrose Prolotherapy. This treatment combination is quite amazing at regenerating the joint when cartilage has been lost, plus it stimulates the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability, and results in the elimination of pain and the return to function in degenerative joint conditions.\r\n\r\nRegenerative Orthopedics is an effective treatment option for painful joint conditions, even after many other treatments have failed to resolve your pain. If your pain has persisted to put a damper on your life after having tried numerous other treatments, we urge you to consider non-surgical Regenerative Orthopedics to resolve your joint pain.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Painful Joints?','','inherit','closed','closed','','2592-revision-v1','','','2020-09-02 19:24:30','2020-09-02 19:24:30','',2592,'https://www.drfields.com/uncategorized/2592-revision-v1/',0,'revision','',0),(4088,9,'2020-09-02 19:36:20','2020-09-02 19:36:20','<h3><strong>Painful Joints? Regenerative Orthopedics Works Even When Other Treatments Fail</strong></h3>\r\n[caption id=\"attachment_4086\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4086 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Sue.-knee.stem_-500x500.png\" alt=\"Stem Cell Therapy for Knee Pain\" width=\"500\" height=\"500\" /> Stem Cell Therapy Resolves Painful Joints Even When Other Treatments Fail[/caption]\r\n\r\nRegenerative Orthopedics, including Stem Cell Therapy, Platelet Rich Plasma (PRP), and Dextrose Prolotherapy are non-surgical treatments for numerous conditions causing painful joints. The treatments are often superior to many other treatments at effectively repairing joint injuries. And they eliminate joint pain, getting you back to the activities and the lifestyle you love.\r\n<h4>Is joint pain standing in the way of your enjoyment of sports?</h4>\r\nAre painful joints making it difficult to do normal, everyday things? At OrthoRegen<sup>®</sup>, we commonly see patients who have tried a number of different treatments in an effort to find relief from their painful knee, hip, shoulder, back, and multiple joint pain. They have tried over-the-counter medications, prescription medications, cortisone injections, massage, and other treatments, but are still in pain. You may have even tried surgery. Yet they are still in pain.\r\n\r\nDoes this sound like you? Do you continue to suffer with a painful joint condition even though it seems like you have tried everything, but still experience annoying pain? Unfortunately, this scenario repeats over and over. We hear it all of the time! But there is an answer!\r\n<h4>Regenerative Orthopedics: An Effective Joint Repair Solution</h4>\r\nRegenerative Orthopedics is effective at repairing many painful joint conditions even after other treatments have failed. How can this be? The reason is because many of the other treatments never treat the root cause of the problem. Think about it. Can Advil really fix a joint problem? Or does it just cover up the pain? Is the problem an Advil deficiency? When you think about it like that, it is obvious that these treatments aren’t the answer, but more of a band-aid approach.\r\n\r\nRegenerative Orthopedics has a greater chance at effectively repairing the joint injury and relieving the pain because it is directed at the root cause of the joint pain problem.  The underlying source of the majority of painful joint conditions is joint instability due to ligament and/or tendon injury and weakness. Fortunately, Regenerative Orthopedic treatments, like Stem Cell Therapy, PRP, and Prolotherapy, work great at treating ligament and tendon injuries and weakness, and because of that, they are able to successfully repair joint instability.\r\n<h4><strong>How Do Regenerative Orthopedic Treatments Work?</strong></h4>\r\nIt’s pretty simple. Regenerative Orthopedics involve the injection of different types of natural solutions which are injected into the painful joint areas.  The process stimulates the body’s natural healing cascade, which triggers wound healing properties. This results in tightened and stronger ligaments and tendons, which make the entire joint structure more stable.\r\n\r\nAnd remember, the underlying source of most painful joint conditions is an unstable joint. Therefore, stabilization of the joint with Regenerative Orthopedics repairs the problem at its source and results in pain elimination. Regenerative Orthopedics is beneficial in repairing many different types of sports injuries and various types of persistent joint pain.\r\n<h4><strong>Regenerative Orthopedics Treats Most Painful Joint Conditions</strong></h4>\r\nAt OrthoRegen<sup>®</sup>, we have seen Regenerative Orthopedics effectively repair most joint injuries and painful joint conditions including neck, back, knee, hip, shoulder and other musculoskeletal pains that are due to ligament and tendon weakness, injury, and joint instability.\r\n\r\nIn joint injuries such as meniscal tears or labral tears, we have found that the addition of Platelet Rich Plasma, along with Dextrose Prolotherapy is an effective Regenerative Orthopedic technique.\r\n<h4>Regenerative Orthopedics and Arthritis</h4>\r\nEven arthritis can be treated with Regenerative Orthopedics, because arthritis also has at its core, a problem of joint instability. Regenerative Orthopedics strengthens the entire joint, because the whole joint is treated comprehensively. Persistent joint pain in arthritis is almost always due to underlying injured soft tissue, like the ligaments and tendons, and joint instability.\r\n\r\nLeft untreated, the weak ligaments cause the joint to move in an abnormal motion. Over time, this abnormal joint motion will injure other joint structures, setting the joint up for degeneration and the arthritic process. Regenerative Orthopedics stimulates the repair of the injured joint structures, stops the abnormal joint motion, and halts the degenerative process.\r\n\r\nWhen degeneration of the joint is more severe, we may recommend the Gold Standard in Stem Cell Therapy. This treatment includes two forms of stem cells (bone and fat), PRP, and Dextrose Prolotherapy. We have found that this combination is quite amazing at regenerating the joint when cartilage has been lost. Plus, it stimulates the other soft tissue structures to repair and strengthen, which fixes the root problem of joint instability. And the result is in the elimination of pain and the return to function in degenerative joint conditions.\r\n\r\nRegenerative Orthopedics is an effective treatment option for painful joint conditions, even after many other treatments have failed to resolve your pain. If your pain has persisted to put a damper on your life after having tried numerous other treatments, we urge you to consider non-surgical Regenerative Orthopedics to resolve your joint pain.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Painful Joints?','','inherit','closed','closed','','2592-revision-v1','','','2020-09-02 19:36:20','2020-09-02 19:36:20','',2592,'https://www.drfields.com/uncategorized/2592-revision-v1/',0,'revision','',0),(4089,9,'2020-09-07 19:49:20','2020-09-07 19:49:20','Sciatical','Sciatical','Sciatical','inherit','open','closed','','sciatical','','','2020-09-07 19:49:20','2020-09-07 19:49:20','',2555,'https://www.drfields.com/wp-content/uploads/2019/08/sciatical.png',0,'attachment','image/png',0),(4090,9,'2020-09-07 20:09:33','2020-09-07 20:09:33','[caption id=\"attachment_4089\" align=\"alignleft\" width=\"400\"]<img class=\"wp-image-4089 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/sciatical-400x500.png\" alt=\"Sciatica Symptoms\" width=\"400\" height=\"500\" /> <strong><em> Do Sciatica symptoms keeping you down?   Regenerative Orthopedics gets you back up!</em></strong>[/caption]\r\n<h2><strong>Relief from Sciatica Symptoms         </strong></h2>\r\nSciatica is a complaint that is tossed around quite frequently in the context of burning low back pain that shoots down a person’s buttocks, legs, and/or feet. And you’ve probably heard it or have said it yourself! If you’ve had sciatica symptoms, there\'s a good chance a friend has recommended their favorite treatment or therapist to help you find some relief.\r\n\r\nBut did you know that sciatica is not actually a disease? Sure, it’s a real thing, but sciatica is a symptom, and not the disease or condition itself. The condition is called<strong> lumbar radiculopathy. </strong>Oftentimes, the terms sciatica and lumbar radiculopathy are used interchangeably. Lumbar refers to the lower back area and radiculopathy is a disease of the root of a nerve.\r\n\r\nFor those of you who have experienced the pain of lumbar radiculopathy or an actual pinched nerve, <strong>the pain is very excruciating</strong>. The sufferer commonly experiences burning pain shooting down the leg. And the pain is so bad it will stop you in your tracks.\r\n<h3>How Did You Get to this Point of Extreme Pain?</h3>\r\nThe common denominator for most back pain problems is spinal instability. Injury to the ligaments of the back occurred at some point. And typically from bending over and twisting with the knees in a locked position, which then stretched the ligaments, and made them vulnerable to injury. The result is weak and lax ligaments. And when ligaments of the lumbar spine are weak, the vertebrae can slip out of place and pinch the nerve.\r\n<h3><strong>What Are the Common Treatments for Sciatica Symptoms or Lumbar Radiculopathy?</strong></h3>\r\nChiropractors treat sciatica symptoms with much success and should be the first practitioners to see for this condition. You can also try treatments like massage and stretching for relief. But these therapies will only work on the surrounding muscles, and any relief will very likely be temporary.<span class=\"Apple-converted-space\"> </span>\r\n<h4><em>Regenerative Orthopedics Are One Treatment Option</em></h4>\r\nIf ligaments are weakened, the muscles will be going into spasm. That\'s because muscles spasm in an effort to stabilize the area that is currently unstable due to the ligament injury. Muscle-strengthening may be of benefit too. But remember that the underlying injury of the ligaments needs to be addressed. Regenerative Orthopedic treatments, such as Prolotherapy or PRP, are great options for addressing ligament injuries. And they are effective at both repairing and strengthening these types of soft tissue injuries.\r\n<h4><em>Non-Steroidal Anti-inflammatory Drugs (NSAIDs) and Cortisone Are Not Reparative Treatments</em></h4>\r\nNon-steroidal anti-inflammatory drugs (NSAIDs) are frequently used, but they are not reparative. So when you reach for an aspirin, Advil, or some other over-the-counter NSAID pain reliever, know that this is not a fix. Your physician may recommend prescription NSAID’s. But again, NSAID’s do not repair the injury. They may give you some relief, but they will not fix the underlying problem or heal the injury.\r\n\r\nIf sciatica symptoms do not resolve on their own and the pain continues, a cortisone injection may be recommended by your physician. Epidural cortisone injections may reduce the size of stressed nerve roots, but they do have side effects. Studies have shown that cortisone causes tissue like the ligaments to grow weaker. So, if weak tissue is the source of the problem, to begin with, then why use something that may make the problem worse? Instead, the spinal instability that is allowing the vertebral segments to move excessively needs to be addressed, so the pain can stop!\r\n<h4><strong><em>What About Painkillers and Anti-Depressants for Sciatica Symptoms?</em></strong></h4>\r\nHave you tried painkillers and found no lasting relief? Until the source of the problem is addressed, you may find yourself exhausted and frustrated at the failure of various therapies to provide long-lasting relief. Not to mention treatments that are ineffective at relieving lumbar radiculopathy and the sciatica symptoms.\r\n\r\nAre antidepressants and anticonvulsants being recommended? Although you may be depressed because of unending pain, good chance depression is not the source of your back pain. And what about the use of anticonvulsants to treat sciatica? In a 2018 article in the Journal of the American Medical Association (JAMA), the writers note that the commonly used anticonvulsant medication for sciatica called “pregabalin does not improve symptoms of sciatica but frequently has adverse effects.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nHave you exhausted conservative care options? And have you progressed to stronger medications like painkillers, antidepressants, and anticonvulsants, and are possibly facing the recommendations of surgery? Then it is time to look into a solution that actually repairs the injury. Regenerative Orthopedics can provide an effective option that results in relief and repair while utilizing a non-surgical solution for those with persistent sciatica symptoms and lumbar radiculopathy.\r\n<h4><em><strong>What if Surgery Has Been Recommended for Your Sciatica Symptoms?</strong></em></h4>\r\nIf you are facing surgery for relief from your symptoms, minimally invasive spine surgery may be the surgery you are considering. Surgery may give you relief. However, studies have shown that although there may be a rapid decrease in pain and disability after a few months, years down the road patients still experience mild to moderate pain post-surgery.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n<h3><strong>Regenerative Orthopedics to Strengthen Spinal Instability and Relieve Sciatica Symptoms</strong></h3>\r\nWhy choose surgery and treatments with side effects? Or those which also lack benefit when there is another option? Choose the path that actually repairs the injury and solves the problem. Regenerative Orthopedics is non-surgical, plus it is effective.\r\n\r\nAt OrthoRegen<sup>®</sup>, we treat all of the involved areas of the low back, including the injured ligaments and their attachments to stimulate the body’s own natural healing process. The treatment boosts the blood supply to the injured areas. And that brings reparative cells to the ligaments so they can heal. Remember that when the ligaments are weak, they allow for too much movement of the vertebrae. And with this extra movement a nerve can get pinched.\r\n\r\nRegenerative Orthopedic treatments to these areas strengthen and tighten the ligaments. That leads to stabilization of the lumbar spine, which stops the excessive movement, and repairs the underlying problem. The result is pain relief. Regenerative Orthopedics is effective at bringing pain relief and return to function for those suffering from sciatica symptoms and lumbar radiculopathy.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Morgan DJ, Dhruva SS, Coon ER, Wright SM, Korenstein D. 2018 Update on Medical Overuse. JAMA Internal Medicine. 2018 Dec 3.  [<a href=\"https://jamanetwork.com/journals/jamainternalmedicine/article-abstract/2717505\">JAMA</a>]\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Machado GC, Witzleb AJ, Fritsch C, Maher CG, Ferreira PH, Ferreira ML. Patients with sciatica still experience pain and disability 5 years after surgery: A systematic review with meta-analysis of cohort studies. Eur J Pain. 2016 May 12.[<a href=\"https://scholar.google.com/scholar?cluster=1973126208637694796&amp;hl=en&amp;as_sdt=0,31\">Google Scholar</a>]\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Relief from Sciatica Symptoms','','inherit','closed','closed','','2555-revision-v1','','','2020-09-07 20:09:33','2020-09-07 20:09:33','',2555,'https://www.drfields.com/uncategorized/2555-revision-v1/',0,'revision','',0),(4091,9,'2020-09-07 20:12:31','2020-09-07 20:12:31','<b>Is Surgery a Good Option for Meniscus Tears?</b>\r\n\r\n<span style=\"font-weight: 400;\">Meniscal tears are quite common. So much so, that they are one of the most common injuries to the knee. Meniscal injuries are routinely treated with surgery, and many with meniscus injuries end up receiving some form of meniscectomy. Nearly 700,000 arthroscopic partial meniscectomies are performed annually in the US, at an estimated annual cost of $4 billion.</span><span style=\"font-weight: 400;\">  Is surgery of this type an effective way to treat meniscal injuries? Believe it or not, research show that it is not! Several studies question the effectiveness of this procedure. One study found that almost half of patients who received non-operative treatment with </span><span style=\"font-weight: 400;\">nonsteroidal anti-inflammatory drugs </span><span style=\"font-weight: 400;\">improved well enough to avoid surgery.</span> <span style=\"font-weight: 400;\">Three other studies compared arthroscopic meniscectomies with sham surgeries. A sham surgery is a faked surgical intervention that omits the step necessary for the surgery to be therapeutic. What were the results?  They found no significant difference between meniscectomy and sham surgery, and they did not find meniscectomies to be effective.</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\"> The most recent study, showed the surgery did not reduce the mechanical symptoms of knee catching and locking</span><span style=\"font-weight: 400;\">.</span><span style=\"font-weight: 400;\"> As you can see, the effectiveness of meniscectomies is questionable. </span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<b>If Meniscus Surgeries Are Ineffective, Then Why Are They Done?</b>\r\n\r\n<span style=\"font-weight: 400;\">Patients usually believe the surgery will help their knee to function better and lessen the pain they are experiencing. When the knee locks and catches randomly, people want that to stop, especially since knee locking can be painful. If the person with these symptoms is an athlete, they want to get back to their sport quickly, and they think surgery is going to make that happen. People generally think that surgery can get them back to work or play sooner than going through physical therapy or other treatment options. But evidence and research does not back this way of thinking. In fact, many patients are worse off after the surgery.</span>\r\n\r\n<b>If You Want to Keep Your Knee Intact, Then Keep Your Meniscus!</b>\r\n\r\n<span style=\"font-weight: 400;\">When part of the knee, like the meniscus, is removed, the knee is unable to function normally. Removing the meniscus makes the knee unstable. The instability leads to the development of more knee problems. The joint instability that arises after removal of the meniscus negatively affects the interplay between the other structures of the knee, because extra stress is placed on them. When more stress is placed on the cartilage, degeneration is accelerated, boosting the arthritic process. More stress is also placed on the various ligaments and tendons supporting the knee, eventually damaging them and leading to the breakdown of the knee joint and irreversible joint damage. It has been proven in studies that new onset instability is demonstrated after partial meniscectomy,</span><span style=\"font-weight: 400;\">,</span><span style=\"font-weight: 400;\"> with significant rates of cartilage loss transpiring after both partial and complete meniscectomy, and that these procedures lead to degenerative arthritis and ligament injury in the knee. </span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">,</span><span style=\"font-weight: 400;\"> And this information is not new! Adverse effects associated with meniscectomy have been documented in the literature going as far back as </span><span style=\"font-weight: 400;\">1923.</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">, </span><i><span style=\"font-weight: 400;\">,</span></i>\r\n\r\n<b>Regenerative Orthopedics Effectively Repairs Meniscus Tears Non-Surgically</b>\r\n\r\n<span style=\"font-weight: 400;\">Given the accumulation of evidence </span><span style=\"font-weight: 400;\">t</span><span style=\"font-weight: 400;\">hat demonstrates not only the overwhelming lack of efficacy and benefit, but also the risk of serious adverse effects of this widely used procedure for meniscus tears, it is important to consider potential safe and effective alternatives. Regenerative Orthopedics is a non-surgical solution, used to effectively treat knee injuries such as meniscus tears, as well as other soft tissue injuries like ligaments and tendons.</span><span style=\"font-weight: 400;\">, </span> <span style=\"font-weight: 400;\">Regenerative Orthopedic treatments work by initiating the inflammatory stage of the healing process, raising the levels of growth factors, and initiating repair. The treatments stimulate new cell growth and rebuild depleted tissue, including the regeneration of cartilage.</span>\r\n\r\n<span style=\"font-weight: 400;\">In certain cases, Platelet Rich Plasma may be utilized. This involves injection of your own blood components to facilitate the healing of tissue that has degenerated. Platelets are the storehouses of growth factors, and platelet rich plasma is abundant in growth factors, capable of stimulating healing of the injured tissue.</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedic treatments can safely and effectively treat meniscus tears without the need for surgery, returning you quickly to the activities and sports you enjoy.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Meniscus Tears: Is Surgery a Good Option?','','inherit','closed','closed','','2503-revision-v1','','','2020-09-07 20:12:31','2020-09-07 20:12:31','',2503,'https://www.drfields.com/uncategorized/2503-revision-v1/',0,'revision','',0),(4092,9,'2020-09-07 20:12:52','2020-09-07 20:12:52','Meniscus Tears: Repair them Non-Surgically with Regenerative Orthopedics','Meniscus Tears: Repair them Non-Surgically with Regenerative Orthopedics','Meniscus Tears: Repair them Non-Surgically with Regenerative Orthopedics','inherit','open','closed','','mcl-tears-2','','','2020-09-07 20:16:09','2020-09-07 20:16:09','',2503,'https://www.drfields.com/wp-content/uploads/2019/07/MCL-tears.jpg',0,'attachment','image/jpeg',0),(4093,9,'2020-09-07 20:17:18','2020-09-07 20:17:18','Meniscus Injuries','Meniscus Injuries','Meniscus Injuries','inherit','open','closed','','meniscus-injuries','','','2020-09-07 20:17:18','2020-09-07 20:17:18','',2503,'https://www.drfields.com/wp-content/uploads/2019/07/meniscus-injuries.png',0,'attachment','image/png',0),(4094,9,'2020-09-07 20:25:17','2020-09-07 20:25:17','[caption id=\"attachment_4093\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4093\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/meniscus-injuries-500x500.png\" alt=\"Meniscus Injuries\" width=\"500\" height=\"500\" /> <em>      Meniscus Injuries? Repair them Non-Surgically with Regenerative Orthopedics</em>[/caption]\n<h3><b>Is Surgery a Good Option for Meniscus Tears?</b></h3>\n<span style=\"font-weight: 400;\">Meniscal tears are quite common. So much so, that they are one of the most common injuries to the knee. Meniscal injuries are routinely treated with surgery, and many with meniscus injuries end up receiving some form of meniscectomy. Nearly 700,000 arthroscopic partial meniscectomies are performed annually in the US, at an estimated annual cost of $4 billion.</span><span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\"> Is surgery of this type an effective way to treat meniscal injuries? Believe it or not, research show that it is not! Several studies question the effectiveness of this procedure. One study found that almost half of patients who received non-operative treatment with </span><span style=\"font-weight: 400;\">nonsteroidal anti-inflammatory drugs </span><span style=\"font-weight: 400;\">improved well enough to avoid surgery.</span> <span style=\"font-weight: 400;\">Three other studies compared arthroscopic meniscectomies with sham surgeries. A sham surgery is a faked surgical intervention that omits the step necessary for the surgery to be therapeutic. </span>\n<h4><strong><em>What W</em></strong><strong><i>ere the Results of the Research?  </i></strong></h4>\n<span style=\"font-weight: 400;\">They found no significant difference between meniscectomy and sham surgery, and they did not find meniscectomies to be effective. And t</span><span style=\"font-weight: 400;\">he most recent study, showed the surgery did not reduce the mechanical symptoms of knee catching and locking</span><span style=\"font-weight: 400;\">.</span><span style=\"font-weight: 400;\"> As you can see, the effectiveness of meniscectomies is questionable. </span><span style=\"font-weight: 400;\"> </span>\n<h3><b>If Meniscus Surgeries Are Ineffective, Then Why Are They Done?</b></h3>\n<span style=\"font-weight: 400;\">Patients usually believe the surgery will help their knee to function better and lessen the pain they are experiencing. When the knee locks and catches randomly, people want that to stop, especially since knee locking can be painful. If the person with these symptoms is an athlete, they want to get back to their sport quickly, and they think surgery is going to make that happen.</span>\n\n<span style=\"font-weight: 400;\"> People generally think that surgery can get them back to work or play sooner than going through physical therapy or other treatment options. But evidence and research does not back this way of thinking. In fact, many patients are worse off after the surgery.</span>\n<h3><b>If You Want to Keep Your Knee Intact, Then Keep Your Meniscus!</b></h3>\n<span style=\"font-weight: 400;\">When part of the knee, like the meniscus, is removed, the knee is unable to function normally. And removing the meniscus makes the knee unstable. The instability leads to the development of more knee problems. The joint instability that arises after removal of the meniscus negatively affects the interplay between the other structures of the knee. That\'s because extra stress is placed on them. </span>\n\n<span style=\"font-weight: 400;\">When more stress is placed on the cartilage, degeneration is accelerated, boosting the arthritic process. And more stress is also placed on the various ligaments and tendons supporting the knee, eventually damaging them. And this leads to the breakdown of the knee joint and irreversible joint damage. </span>\n\n<span style=\"font-weight: 400;\">It has been proven in studies that new onset instability is demonstrated after partial meniscectomy,</span><span style=\"font-weight: 400;\"> with significant rates of cartilage loss transpiring after both partial and complete meniscectomy. And also that these procedures lead to degenerative arthritis and ligament injury in the knee. </span><span style=\"font-weight: 400;\">And this information is not new! Adverse effects associated with meniscectomy have been documented in the literature going as far back as </span><span style=\"font-weight: 400;\">1923.</span>\n<h3><b>Regenerative Orthopedics Effectively Repairs Meniscus Tears Non-Surgically</b></h3>\n<span style=\"font-weight: 400;\">Given the accumulation of evidence </span><span style=\"font-weight: 400;\">t</span><span style=\"font-weight: 400;\">hat demonstrates not only the overwhelming lack of efficacy and benefit, but also the risk of serious adverse effects of this widely used procedure for meniscus tears, it is important to consider potential safe and effective alternatives. </span>\n\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is a non-surgical solution, used to effectively treat knee injuries such as meniscus tears, as well as other soft tissue injuries like ligaments and tendons.</span><span style=\"font-weight: 400;\">, </span> <span style=\"font-weight: 400;\">Regenerative Orthopedic treatments work by initiating the inflammatory stage of the healing process, raising the levels of growth factors, and initiating repair. The treatments stimulate new cell growth and rebuild depleted tissue, including the regeneration of cartilage.</span>\n\n<span style=\"font-weight: 400;\">In certain cases, Platelet Rich Plasma may be utilized. This involves injection of your own blood components to facilitate the healing of tissue that has degenerated. Platelets are the storehouses of growth factors, and platelet rich plasma is abundant in growth factors, capable of stimulating healing of the injured tissue.</span>\n\n<span style=\"font-weight: 400;\">Regenerative Orthopedic treatments can safely and effectively treat meniscus tears without the need for surgery, returning you quickly to the activities and sports you enjoy.</span>\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Meniscus Tears: Is Surgery a Good Option?','','inherit','closed','closed','','2503-autosave-v1','','','2020-09-07 20:25:17','2020-09-07 20:25:17','',2503,'https://www.drfields.com/uncategorized/2503-autosave-v1/',0,'revision','',0),(4095,9,'2020-09-07 20:24:15','2020-09-07 20:24:15','<h3><b>Is Surgery a Good Option for Meniscus Tears?</b></h3>\r\n<span style=\"font-weight: 400;\">Meniscal tears are quite common. So much so, that they are one of the most common injuries to the knee. Meniscal injuries are routinely treated with surgery, and many with meniscus injuries end up receiving some form of meniscectomy. Nearly 700,000 arthroscopic partial meniscectomies are performed annually in the US, at an estimated annual cost of $4 billion.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\"> Is surgery of this type an effective way to treat meniscal injuries? Believe it or not, research show that it is not! Several studies question the effectiveness of this procedure. One study found that almost half of patients who received non-operative treatment with </span><span style=\"font-weight: 400;\">nonsteroidal anti-inflammatory drugs </span><span style=\"font-weight: 400;\">improved well enough to avoid surgery.</span> <span style=\"font-weight: 400;\">Three other studies compared arthroscopic meniscectomies with sham surgeries. A sham surgery is a faked surgical intervention that omits the step necessary for the surgery to be therapeutic. </span>\r\n<h4><strong><em>What W</em></strong><strong><i>ere the Results of the Research?  </i></strong></h4>\r\n<span style=\"font-weight: 400;\">They found no significant difference between meniscectomy and sham surgery, and they did not find meniscectomies to be effective. And t</span><span style=\"font-weight: 400;\">he most recent study, showed the surgery did not reduce the mechanical symptoms of knee catching and locking</span><span style=\"font-weight: 400;\">.</span><span style=\"font-weight: 400;\"> As you can see, the effectiveness of meniscectomies is questionable. </span><span style=\"font-weight: 400;\"> </span>\r\n<h3><b>If Meniscus Surgeries Are Ineffective, Then Why Are They Done?</b></h3>\r\n<span style=\"font-weight: 400;\">Patients usually believe the surgery will help their knee to function better and lessen the pain they are experiencing. When the knee locks and catches randomly, people want that to stop, especially since knee locking can be painful. If the person with these symptoms is an athlete, they want to get back to their sport quickly, and they think surgery is going to make that happen.</span>\r\n\r\n<span style=\"font-weight: 400;\"> People generally think that surgery can get them back to work or play sooner than going through physical therapy or other treatment options. But evidence and research does not back this way of thinking. In fact, many patients are worse off after the surgery.</span>\r\n<h3><b>If You Want to Keep Your Knee Intact, Then Keep Your Meniscus!</b></h3>\r\n<span style=\"font-weight: 400;\">When part of the knee, like the meniscus, is removed, the knee is unable to function normally. And removing the meniscus makes the knee unstable. The instability leads to the development of more knee problems. The joint instability that arises after removal of the meniscus negatively affects the interplay between the other structures of the knee. That\'s because extra stress is placed on them. </span>\r\n\r\n<span style=\"font-weight: 400;\">When more stress is placed on the cartilage, degeneration is accelerated, boosting the arthritic process. And more stress is also placed on the various ligaments and tendons supporting the knee, eventually damaging them. And this leads to the breakdown of the knee joint and irreversible joint damage. </span>\r\n\r\n<span style=\"font-weight: 400;\">It has been proven in studies that new onset instability is demonstrated after partial meniscectomy,</span><span style=\"font-weight: 400;\"> with significant rates of cartilage loss transpiring after both partial and complete meniscectomy. And also that these procedures lead to degenerative arthritis and ligament injury in the knee. </span><span style=\"font-weight: 400;\">And this information is not new! Adverse effects associated with meniscectomy have been documented in the literature going as far back as </span><span style=\"font-weight: 400;\">1923.</span>\r\n<h3><b>Regenerative Orthopedics Effectively Repairs Meniscus Tears Non-Surgically</b></h3>\r\n<span style=\"font-weight: 400;\">Given the accumulation of evidence </span><span style=\"font-weight: 400;\">t</span><span style=\"font-weight: 400;\">hat demonstrates not only the overwhelming lack of efficacy and benefit, but also the risk of serious adverse effects of this widely used procedure for meniscus tears, it is important to consider potential safe and effective alternatives. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is a non-surgical solution, used to effectively treat knee injuries such as meniscus tears, as well as other soft tissue injuries like ligaments and tendons.</span><span style=\"font-weight: 400;\">, </span> <span style=\"font-weight: 400;\">Regenerative Orthopedic treatments work by initiating the inflammatory stage of the healing process, raising the levels of growth factors, and initiating repair. The treatments stimulate new cell growth and rebuild depleted tissue, including the regeneration of cartilage.</span>\r\n\r\n<span style=\"font-weight: 400;\">In certain cases, Platelet Rich Plasma may be utilized. This involves injection of your own blood components to facilitate the healing of tissue that has degenerated. Platelets are the storehouses of growth factors, and platelet rich plasma is abundant in growth factors, capable of stimulating healing of the injured tissue.</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedic treatments can safely and effectively treat meniscus tears without the need for surgery, returning you quickly to the activities and sports you enjoy.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Meniscus Tears: Is Surgery a Good Option?','','inherit','closed','closed','','2503-revision-v1','','','2020-09-07 20:24:15','2020-09-07 20:24:15','',2503,'https://www.drfields.com/uncategorized/2503-revision-v1/',0,'revision','',0),(4096,9,'2020-09-07 20:25:49','2020-09-07 20:25:49','[caption id=\"attachment_4093\" align=\"alignright\" width=\"543\"]<img class=\" wp-image-4093\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/meniscus-injuries-500x500.png\" alt=\"Meniscus Injuries\" width=\"543\" height=\"543\" /> <em>    Meniscus Injuries? Repair them Non-Surgically with Regenerative Orthopedics</em>[/caption]\r\n<h3><b>Is Surgery a Good Option for Meniscus Tears?</b></h3>\r\n<span style=\"font-weight: 400;\">Meniscal tears are quite common. So much so, that they are one of the most common injuries to the knee. Meniscal injuries are routinely treated with surgery, and many with meniscus injuries end up receiving some form of meniscectomy. Nearly 700,000 arthroscopic partial meniscectomies are performed annually in the US, at an estimated annual cost of $4 billion.</span><span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\"> Is surgery of this type an effective way to treat meniscal injuries? Believe it or not, research show that it is not! Several studies question the effectiveness of this procedure. One study found that almost half of patients who received non-operative treatment with </span><span style=\"font-weight: 400;\">nonsteroidal anti-inflammatory drugs </span><span style=\"font-weight: 400;\">improved well enough to avoid surgery.</span> <span style=\"font-weight: 400;\">Three other studies compared arthroscopic meniscectomies with sham surgeries. A sham surgery is a faked surgical intervention that omits the step necessary for the surgery to be therapeutic. </span>\r\n<h4><strong><em>What W</em></strong><strong><i>ere the Results of the Research?  </i></strong></h4>\r\n<span style=\"font-weight: 400;\">They found no significant difference between meniscectomy and sham surgery, and they did not find meniscectomies to be effective. And t</span><span style=\"font-weight: 400;\">he most recent study, showed the surgery did not reduce the mechanical symptoms of knee catching and locking</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<span style=\"font-weight: 400;\">As you can see, the effectiveness of meniscectomies is questionable. </span><span style=\"font-weight: 400;\"> </span>\r\n<h3><b>If Meniscus Surgeries Are Ineffective, Then Why Are They Done?</b></h3>\r\n<span style=\"font-weight: 400;\">Patients usually believe the surgery will help their knee to function better and lessen the pain they are experiencing. When the knee locks and catches randomly, people want that to stop, especially since knee locking can be painful. If the person with these symptoms is an athlete, they want to get back to their sport quickly, and they think surgery is going to make that happen.</span>\r\n\r\n<span style=\"font-weight: 400;\"> People generally think that surgery can get them back to work or play sooner than going through physical therapy or other treatment options. But evidence and research does not back this way of thinking. In fact, many patients are worse off after the surgery.</span>\r\n<h3><b>If You Want to Keep Your Knee Intact, Then Keep Your Meniscus!</b></h3>\r\n<span style=\"font-weight: 400;\">When part of the knee, like the meniscus, is removed, the knee is unable to function normally. And removing the meniscus makes the knee unstable. The instability leads to the development of more knee problems. The joint instability that arises after removal of the meniscus negatively affects the interplay between the other structures of the knee. That\'s because extra stress is placed on them. </span>\r\n\r\n<span style=\"font-weight: 400;\">When more stress is placed on the cartilage, degeneration is accelerated, boosting the arthritic process. And more stress is also placed on the various ligaments and tendons supporting the knee, eventually damaging them. And this leads to the breakdown of the knee joint and irreversible joint damage. </span>\r\n\r\n<span style=\"font-weight: 400;\">It has been proven in studies that new onset instability is demonstrated after partial meniscectomy,</span><span style=\"font-weight: 400;\"> with significant rates of cartilage loss transpiring after both partial and complete meniscectomy. And also that these procedures lead to degenerative arthritis and ligament injury in the knee. </span><span style=\"font-weight: 400;\">And this information is not new! Adverse effects associated with meniscectomy have been documented in the literature going as far back as </span><span style=\"font-weight: 400;\">1923.</span>\r\n<h3><b>Regenerative Orthopedics Effectively Repairs Meniscus Tears Non-Surgically</b></h3>\r\n<span style=\"font-weight: 400;\">Given the accumulation of evidence </span><span style=\"font-weight: 400;\">t</span><span style=\"font-weight: 400;\">hat demonstrates not only the overwhelming lack of efficacy and benefit, but also the risk of serious adverse effects of this widely used procedure for meniscus tears, it is important to consider potential safe and effective alternatives. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is a non-surgical solution, used to effectively treat knee injuries such as meniscus tears, as well as other soft tissue injuries like ligaments and tendons.</span><span style=\"font-weight: 400;\">, </span> <span style=\"font-weight: 400;\">Regenerative Orthopedic treatments work by initiating the inflammatory stage of the healing process, raising the levels of growth factors, and initiating repair. The treatments stimulate new cell growth and rebuild depleted tissue, including the regeneration of cartilage.</span>\r\n\r\n<span style=\"font-weight: 400;\">In certain cases, Platelet Rich Plasma may be utilized. This involves injection of your own blood components to facilitate the healing of tissue that has degenerated. Platelets are the storehouses of growth factors, and platelet rich plasma is abundant in growth factors, capable of stimulating healing of the injured tissue.</span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedic treatments can safely and effectively treat meniscus tears without the need for surgery, returning you quickly to the activities and sports you enjoy.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Meniscus Tears: Is Surgery a Good Option?','','inherit','closed','closed','','2503-revision-v1','','','2020-09-07 20:25:49','2020-09-07 20:25:49','',2503,'https://www.drfields.com/uncategorized/2503-revision-v1/',0,'revision','',0),(4097,9,'2021-07-12 03:09:15','2021-07-12 03:09:15','[caption id=\"attachment_4099\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4099\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/headaches-1-500x500.jpg\" alt=\"Headaches\" width=\"500\" height=\"500\" /> <strong><em>                        Are Headaches Coming From Your Neck?</em></strong>[/caption]\n<h3><b>Suffering from Headaches? </b><em><b>The Problem May Come From Your Neck.</b></em></h3>\n<span style=\"font-weight: 400;\">Headaches are a recurrent malady suffered by millions of Americans, causing pain and discomfort in the head, forehead, scalp, or neck. At times they are a mild nuisance. But headaches can become severe, even disabling, with the pain leading to difficulty at work, concentration, and performance of daily activities. </span>\n<h3><b>What is the Source of Headaches?</b></h3>\n<h4><b><i>Hormones</i></b></h4>\n<span style=\"font-weight: 400;\">Headaches have different sources, and the causative factors require some investigation. Hormones might be the culprit. Women may experience headaches during the menstrual cycle due to shifts in hormone levels. And when this is the case, there may be a need to balance the hormones, because the woman could have too much estrogen and not enough progesterone.</span>\n<h4><em><strong>Diet </strong></em></h4>\n<span style=\"font-weight: 400;\">Headache pain can often be </span><span style=\"font-weight: 400;\">corrected with diet. Food allergies or sensitivities can trigger headaches. And eating too many carbohydrates or not enough protein, for example, can alter blood chemistry. And that can prompt a headache or foster problems with the hormonal system, which can again lead to headaches.</span>\n<h4><strong><i>TMJ Syndrome</i></strong></h4>\n<span style=\"font-weight: 400;\">Temporomandibular</span><span style=\"font-weight: 400;\"> joint (TMJ) problems may contribute to headaches</span><span style=\"font-weight: 400;\">. Sufferers with TMJ have clicking at this joint, experience facial pain, and may notice a stiff mouth upon awakening after a night’s sleep. And all of this can then lead to a headache. TMJ syndrome, which often includes headaches, requires stabilization of the TMJ joint and ligament. Also, bite problems may be present, necessitating bite equilibration.</span>\n<h3><b>The Neck as the Source of Headaches</b></h3>\n<span style=\"font-weight: 400;\">It is not uncommon for the source of headaches to originate in the neck. Do you have neck pain before or during a headache? If you have neck pain followed by tension or migraine headache, then the source of the headache may very well be coming from your neck. </span>\n\n<span style=\"font-weight: 400;\">The most common neck problem producing headaches is an injury to the ligaments in the neck. How do you know if you have a ligament injury in your neck? You will hear grinding, crunching, and popping sounds when you turn your neck. And there is also a high probability that you crack your neck often. Injured ligaments generate instability in the neck, which induces muscle spasms in the neck as the muscles attempt to stabilize it. And the result is referral pain in the form of a tension headache in the forehead, back of the neck, or occiput. </span>\n<h3><em>Platelet Rich Plasma for Headaches</em></h3>\nDextrose Prolotherapy is often effective to treat headaches and achieve the desired results. In more severe cases, Platelet Rich Plasma, one of the types of Regenerative Orthopedics, may be recommendedhas also been shown in studies to be effective for chronic migraines.1\n<h4><strong><i>Cervicocranial Syndrome or </i><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><i>Barré-Liéou</i></a><i> Syndrome</i></strong></h4>\n<span style=\"font-weight: 400;\">Cervicocranial Syndrome, previously known as </span><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><span style=\"font-weight: 400;\">Barré-Liéou</span></a><span style=\"font-weight: 400;\"> Syndrome is a condition that causes a bunch of s</span><span style=\"font-weight: 400;\">ymptoms. The symptoms may include headache, dizziness, facial pain, ear pain, vertigo, tinnitus, loss of voice,</span> <span style=\"font-weight: 400;\">hoarseness, neck pain, and severe fatigue. </span>\n\n<span style=\"font-weight: 400;\">Instability of the neck or cervical spine is usually the source of these symptoms.</span><span style=\"font-weight: 400;\"> Neck instability involves increased motion between adjacent vertebrae which causes excessive stress on the supporting ligament structures. And the nerve endings within those structures elicit pain and a variety of symptoms.</span> <span style=\"font-weight: 400;\">In other words</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">neck instability causes extra movement in the neck bones. And this extra motion can cause the bones to push on the nerves and cause irritation of the nervous system, leading to headaches and a bunch of other symptoms. </span>\n<h4><strong><i>Occipital Neuralgia</i></strong></h4>\n<span style=\"font-weight: 400;\">Occipital neuralgia is another headache-causing condition related to neck instability. Those with this condition often experience sharp, stabbing pain in the lower part of the neck, the back of the head, and behind their eyes. The pain is typically one-sided. </span>\n\n<span style=\"font-weight: 400;\">The occipital nerve, which runs at the back of the head, can cause severe pain when injured. Many folks get nerve blocks for this pain. But these are not always effective at resolving the pain. Any instability of C1, C2, the first two neck vertebrae, can pinch or irritate the occipital nerve. And the extra motion along the spine can kink, press, and tighten on the nerves at the base of the skull. Neck instability symptoms include tenderness, clicking, grinding, and popping in the back of the head. </span>\n<h4><strong><i>Whiplash</i></strong></h4>\n<span style=\"font-weight: 400;\">Headaches can occur after whiplash injuries. During a whiplash injury, the head flexes and extends, in a forward and backward whip that injures the neck ligaments. </span><span style=\"font-weight: 400;\">Whiplash injuries are a common source of neck instability.</span>\n\n<span style=\"font-weight: 400;\">The lack of stable neck vertebrae can lead to further injury of the soft tissue and joint structures, as well as the possibility of nerve injury and irritation of the nervous system. And that can result in headaches and other symptoms. Whiplash often results in long-term pain, which is due to a ligament injury and malalignment of the neck vertebrae.</span>\n<h3><b>Regenerative Orthopedics Repairs Neck Instability</b></h3>\n<span style=\"font-weight: 400;\">Regenerative Orthopedics involves the injection of natural substances into the damaged ligaments. The treatment results in tightening, repair, and regeneration of the ligaments involved in TMJ and neck instability. The area becomes stabilized, thus eliminating the instability, muscle spasms, and associated neck and jaw pain, and other related symptoms. </span>\n\n<span style=\"font-weight: 400;\">For those who are tired of the disability and pain of severe headaches, and other conditions related to neck instability, Regenerative Orthopedics is a safe, non-surgical option that stops headache pain, decreases symptoms, and increases functionality in otherwise life-altering conditions.</span>\n\n&nbsp;\n\n<iframe src=\"https://www.youtube.com/embed/EKGWkEAaqTM\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Headache Sufferer? It Could Be Your Neck.','','inherit','closed','closed','','2501-autosave-v1','','','2021-07-12 03:09:15','2021-07-12 03:09:15','',2501,'https://www.drfields.com/uncategorized/2501-autosave-v1/',0,'revision','',0),(4098,9,'2020-09-07 20:29:22','2020-09-07 20:29:22','<b>Suffering from Headaches? The Problem May Come From Your Neck.</b>\r\n\r\n<span style=\"font-weight: 400;\">Headaches are a recurrent malady suffered by millions of Americans, causing pain and discomfort in the head, forehead, scalp, or neck. At times they are a mild nuisance, but headaches can become severe, even disabling, with the pain leading to difficulty at work, concentration and performance of daily activities. </span>\r\n\r\n<b>What is the Source of Headaches?</b>\r\n\r\n<b><i>Hormones</i></b>\r\n\r\n<span style=\"font-weight: 400;\">Headaches have different sources, and the causative factors require some investigation. Hormones might be the culprit. Women may experience headaches during the menstrual cycle due to shifts in hormone levels. When this is the case there may be a need to balance the hormones, because the woman could have too much estrogen and not enough progesterone.</span>\r\n\r\n<i><span style=\"font-weight: 400;\">Diet </span></i>\r\n\r\n<span style=\"font-weight: 400;\">Headache pain can often be </span><span style=\"font-weight: 400;\">corrected with diet. Food allergies or sensitivities can trigger headaches. Eating too many carbohydrates and not enough protein, for example, can alter blood chemistry, which can prompt a headache or foster problems with the hormonal system, which can again lead to headaches.</span>\r\n\r\n<i><span style=\"font-weight: 400;\">TMJ Syndrome</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Temporomandibular</span><span style=\"font-weight: 400;\"> joint (TMJ) problems may contribute to headaches</span><span style=\"font-weight: 400;\">. Sufferers with TMJ have clicking at this joint, experience facial pain, and may notice a stiff mouth upon awakening after a night’s sleep, all of which can then lead to a headache. TMJ syndrome, which often includes headaches, requires stabilization of the TMJ joint and ligament. Bite problems may also be present, necessitating bite equilibration.</span>\r\n\r\n<b>The Neck as the Source of Headaches</b>\r\n\r\n<span style=\"font-weight: 400;\">It is not uncommon for the source of headaches to originate in the neck. Do you have neck pain before or during a headache? If you have neck pain followed by a tension or migraine headache, then the source of the headache may very well be coming from your neck. The most common neck problem producing headaches is injury to the ligaments in the neck. How do you know if you have ligament injury in your neck? You will hear grinding, crunching, and popping sounds when you turn your neck. There is also a high probability that you crack your neck often. Injured ligaments generate instability in the neck, which induces muscle spasms in the neck as the muscles attempt to stabilize it. The result is referral pain in the form of a tension headache in the forehead, back of the neck, or occiput. </span>\r\n\r\n<i><span style=\"font-weight: 400;\">Cervicocranial Syndrome or </span></i><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><i><span style=\"font-weight: 400;\">Barré-Liéou</span></i></a><i><span style=\"font-weight: 400;\"> Syndrome</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Cervicocranial Syndrome, previously known as </span><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><span style=\"font-weight: 400;\">Barré-Liéou</span></a><span style=\"font-weight: 400;\"> Syndrome is a condition that causes a bunch of s</span><span style=\"font-weight: 400;\">ymptoms. The symptoms may include headache, dizziness, facial pain, ear pain, vertigo, tinnitus, loss of voice,</span> <span style=\"font-weight: 400;\">hoarseness, neck pain and severe fatigue. Instability of the neck or cervical spine is usually the source of these symptoms.</span><span style=\"font-weight: 400;\"> Neck instability involves increased motion between adjacent vertebrae which causes excessive stress on the supporting ligament structures and the nerve endings within those structures eliciting pain and a variety of symptoms.</span> <span style=\"font-weight: 400;\">In other words</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">neck instability causes extra movement in the neck bones, and this extra motion can cause the bones to push on the nerves and cause irritation of the nervous system, leading to headaches and a bunch of other symptoms. </span>\r\n\r\n<i><span style=\"font-weight: 400;\">Occipital Neuralgia</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Occipital neuralgia is another headache causing condition related to neck instability. Those with this condition often experience sharp, stabbing pain in the lower part of the neck, the back of the head, and behind their eyes. The pain is typically one-sided. The occipital nerve, which runs at the back of the head, can cause severe pain when injured. Many folks get nerve blocks for this pain, but these are not always effective at resolving the pain. Any instability of C1, C2, the first two neck vertebrae, can pinch or irritate the occipital nerve, and the extra motion along the spine can kink, press and tighten on the nerves at the base of the skull. Neck instability symptoms include tenderness, clicking, grinding and popping in the back of the head. </span>\r\n\r\n<i><span style=\"font-weight: 400;\">Whiplash</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Headaches can occur after whiplash injuries. During a whiplash injury the head flexes and extends, in a forward and backward whip that injures the neck ligaments. </span><span style=\"font-weight: 400;\">Whiplash injuries are a common source of neck instability.</span> <span style=\"font-weight: 400;\">The lack of stable neck vertebrae can lead to further injury of the soft tissue and joint structures, as well as the possibility of nerve injury and the irritation of the nervous system, which can result in headaches and other symptoms. Whiplash often results in long-term pain, which is due to ligament injury and malalignment of the neck vertebrae.</span>\r\n\r\n<b>Regenerative Orthopedics Repairs Neck Instability</b>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics involve the injection of natural substances into the damaged ligaments, which then results in tightening, repair and regeneration of the ligaments involved in TMJ and  neck instability. The treatments stabilize the area, thus eliminating the instability, muscle spasms and associated neck and jaw pain and other related symptoms. For those who are tired of the disability and pain of severe headaches, and other conditions related to neck instability, Regenerative Orthopedics is a safe, non-surgical option that stops headache pain, decreases symptoms, and increases functionality in otherwise life-altering conditions.</span>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/EKGWkEAaqTM\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Headaches Sufferer? It Could Be Your Neck.','','inherit','closed','closed','','2501-revision-v1','','','2020-09-07 20:29:22','2020-09-07 20:29:22','',2501,'https://www.drfields.com/uncategorized/2501-revision-v1/',0,'revision','',0),(4099,9,'2020-09-07 20:29:39','2020-09-07 20:29:39','Headaches','Headaches','Headaches Coming From Your Neck?','inherit','open','closed','','headaches-2','','','2020-09-07 20:30:02','2020-09-07 20:30:02','',2501,'https://www.drfields.com/wp-content/uploads/2019/07/headaches-1.jpg',0,'attachment','image/jpeg',0),(4100,9,'2020-09-07 20:39:59','2020-09-07 20:39:59','[caption id=\"attachment_4099\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4099\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/headaches-1-500x500.jpg\" alt=\"Headaches\" width=\"500\" height=\"500\" /> <strong><em>                        Are Headaches Coming From Your Neck?</em></strong>[/caption]\r\n<h3><b>Suffering from Headaches? </b><em><b>The Problem May Come From Your Neck.</b></em></h3>\r\n<span style=\"font-weight: 400;\">Headaches are a recurrent malady suffered by millions of Americans, causing pain and discomfort in the head, forehead, scalp, or neck. At times they are a mild nuisance. But headaches can become severe, even disabling, with the pain leading to difficulty at work, concentration and performance of daily activities. </span>\r\n<h3><b>What is the Source of Headaches?</b></h3>\r\n<h4><b><i>Hormones</i></b></h4>\r\n<span style=\"font-weight: 400;\">Headaches have different sources, and the causative factors require some investigation. Hormones might be the culprit. Women may experience headaches during the menstrual cycle due to shifts in hormone levels. And when this is the case, there may be a need to balance the hormones, because the woman could have too much estrogen and not enough progesterone.</span>\r\n<h4><em><strong>Diet </strong></em></h4>\r\n<span style=\"font-weight: 400;\">Headache pain can often be </span><span style=\"font-weight: 400;\">corrected with diet. Food allergies or sensitivities can trigger headaches. And eating too many carbohydrates or not enough protein, for example, can alter blood chemistry. And that can prompt a headache or foster problems with the hormonal system, which can again lead to headaches.</span>\r\n<h4><strong><i>TMJ Syndrome</i></strong></h4>\r\n<span style=\"font-weight: 400;\">Temporomandibular</span><span style=\"font-weight: 400;\"> joint (TMJ) problems may contribute to headaches</span><span style=\"font-weight: 400;\">. Sufferers with TMJ have clicking at this joint, experience facial pain, and may notice a stiff mouth upon awakening after a night’s sleep. And all of this can then lead to a headache. TMJ syndrome, which often includes headaches, requires stabilization of the TMJ joint and ligament. Also, bite problems may be present, necessitating bite equilibration.</span>\r\n<h3><b>The Neck as the Source of Headaches</b></h3>\r\n<span style=\"font-weight: 400;\">It is not uncommon for the source of headaches to originate in the neck. Do you have neck pain before or during a headache? If you have neck pain followed by a tension or migraine headache, then the source of the headache may very well be coming from your neck. </span>\r\n\r\n<span style=\"font-weight: 400;\">The most common neck problem producing headaches is injury to the ligaments in the neck. How do you know if you have ligament injury in your neck? You will hear grinding, crunching, and popping sounds when you turn your neck. And there is also a high probability that you crack your neck often. Injured ligaments generate instability in the neck, which induces muscle spasms in the neck as the muscles attempt to stabilize it. And the result is referral pain in the form of a tension headache in the forehead, back of the neck, or occiput. </span>\r\n<h4><strong><i>Cervicocranial Syndrome or </i><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><i>Barré-Liéou</i></a><i> Syndrome</i></strong></h4>\r\n<span style=\"font-weight: 400;\">Cervicocranial Syndrome, previously known as </span><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><span style=\"font-weight: 400;\">Barré-Liéou</span></a><span style=\"font-weight: 400;\"> Syndrome is a condition that causes a bunch of s</span><span style=\"font-weight: 400;\">ymptoms. The symptoms may include headache, dizziness, facial pain, ear pain, vertigo, tinnitus, loss of voice,</span> <span style=\"font-weight: 400;\">hoarseness, neck pain and severe fatigue. </span>\r\n\r\n<span style=\"font-weight: 400;\">Instability of the neck or cervical spine is usually the source of these symptoms.</span><span style=\"font-weight: 400;\"> Neck instability involves increased motion between adjacent vertebrae which causes excessive stress on the supporting ligament structures. And the nerve endings within those structures elicit pain and a variety of symptoms.</span> <span style=\"font-weight: 400;\">In other words</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">neck instability causes extra movement in the neck bones. And this extra motion can cause the bones to push on the nerves and cause irritation of the nervous system, leading to headaches and a bunch of other symptoms. </span>\r\n<h4><strong><i>Occipital Neuralgia</i></strong></h4>\r\n<span style=\"font-weight: 400;\">Occipital neuralgia is another headache causing condition related to neck instability. Those with this condition often experience sharp, stabbing pain in the lower part of the neck, the back of the head, and behind their eyes. The pain is typically one-sided. </span>\r\n\r\n<span style=\"font-weight: 400;\">The occipital nerve, which runs at the back of the head, can cause severe pain when injured. Many folks get nerve blocks for this pain. But these are not always effective at resolving the pain. Any instability of C1, C2, the first two neck vertebrae, can pinch or irritate the occipital nerve. And the extra motion along the spine can kink, press and tighten on the nerves at the base of the skull. Neck instability symptoms include tenderness, clicking, grinding and popping in the back of the head. </span>\r\n<h4><strong><i>Whiplash</i></strong></h4>\r\n<span style=\"font-weight: 400;\">Headaches can occur after whiplash injuries. During a whiplash injury the head flexes and extends, in a forward and backward whip that injures the neck ligaments. </span><span style=\"font-weight: 400;\">Whiplash injuries are a common source of neck instability.</span>\r\n\r\n<span style=\"font-weight: 400;\">The lack of stable neck vertebrae can lead to further injury of the soft tissue and joint structures, as well as the possibility of nerve injury and the irritation of the nervous system. And that can result in headaches and other symptoms. Whiplash often results in long-term pain, which is due to ligament injury and malalignment of the neck vertebrae.</span>\r\n<h3><b>Regenerative Orthopedics Repairs Neck Instability</b></h3>\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics involve the injection of natural substances into the damaged ligaments. The treatment results in tightening, repair, and regeneration of the ligaments involved in TMJ and  neck instability. The area becomes stabilized, thus eliminating the instability, muscle spasms and associated neck and jaw pain and other related symptoms. </span>\r\n\r\n<span style=\"font-weight: 400;\">For those who are tired of the disability and pain of severe headaches, and other conditions related to neck instability, Regenerative Orthopedics is a safe, non-surgical option that stops headache pain, decreases symptoms, and increases functionality in otherwise life-altering conditions.</span>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/EKGWkEAaqTM\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Headaches Sufferer? It Could Be Your Neck.','','inherit','closed','closed','','2501-revision-v1','','','2020-09-07 20:39:59','2020-09-07 20:39:59','',2501,'https://www.drfields.com/uncategorized/2501-revision-v1/',0,'revision','',0),(4101,9,'2020-09-07 20:58:26','2020-09-07 20:58:26','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">\n\nRegenerative, non-surgical treatments for painful hip labral tears have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results.\n\nRegenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">. </span>Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.\n\n[caption id=\"attachment_2198\" align=\"alignleft\" width=\"400\"]<img class=\"wp-image-2198 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/labral-tear-400x500.png\" alt=\"Labral Tear\" width=\"400\" height=\"500\" /> <em>            <strong>Non-Surgical Repair of Hip Labral Tears</strong></em>[/caption]\n\n</div>\n<h3>The Hip and Labrum</h3>\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. And the hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis.</div>\n<div></div>\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">But we move our hips a lot and put them through high rates of wear. So more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injur<span class=\"pg-1fc2 pg-1sc0\">y</span><span class=\"pg-1ff3 pg-1fs2 pg-1fc1\">.</span></div>\n<div></div>\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"> The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. And labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries.</div>\n<div></div>\n<h3>Hip Labral Tear Symptoms</h3>\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Symptoms include varying degrees of pain, including pain deep in the groin, as well as clicking, popping, and a locking sensation in the hip joint.</div>\n<div></div>\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area.</div>\n<div></div>\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight distribution inside the joint. And that prompts the joint surfaces to rub roughly and then generate a breaking down of articular cartilage. That limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\n<h3>Treatment Options for Hip Labral Tears</h3>\nThe labrum has a poor blood supply. And this makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective. That\'s because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability.\n\nPhysical therapy can help strengthen the surrounding muscles. But it cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.\n<div>\n<h3>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</h3>\nRegenerative Orthopedics aims to address the soft tissue weakness that transpired during the original hip labral tear injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred.\n\n</div>\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and reduces pain and symptoms.</div>\n<div></div>\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Degenerative conditions, such as hip labral tear injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries. And the non-surgical treatment involves the injection of natural substances into the degenerated hip to stimulate healing.</div>\n<h3>Cellular Therapies Such as PRP and Stem Cells</h3>\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed. Especially in very active people and athletes, or in conditions with more severe degeneration. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow). The solution is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\n<div></div>\n<div>\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable. And surgery will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration.</div>\n<div></div>\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Most painful hip conditions begin with damage to the surrounding ligaments. And they progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen<sup>®</sup>, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\n</div>\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Hip Labral Tears? Get Non-Surgical Repair','','inherit','closed','closed','','2362-autosave-v1','','','2020-09-07 20:58:26','2020-09-07 20:58:26','',2362,'https://www.drfields.com/uncategorized/2362-autosave-v1/',0,'revision','',0),(4102,9,'2020-09-07 20:45:48','2020-09-07 20:45:48','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">\r\n\r\nRegenerative, non-surgical treatments for painful hip labral tears have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results.\r\n\r\nRegenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">. </span>Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.\r\n\r\n[caption id=\"attachment_2198\" align=\"alignleft\" width=\"400\"]<img class=\"wp-image-2198 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/labral-tear-400x500.png\" alt=\"Labral Tear\" width=\"400\" height=\"500\" /> Non-Surgical Hip Labral Tear Repair[/caption]\r\n\r\n</div>\r\n<h3>The Hip and Labrum</h3>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. And the hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis. But we move our hips a lot and put them through high rates of wear, so more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injur<span class=\"pg-1fc2 pg-1sc0\">y</span><span class=\"pg-1ff3 pg-1fs2 pg-1fc1\">.</span></div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">          The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. Labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries. Symptoms include varying degrees of pain, including pain deep in the groin, as well as clicking, popping, and a locking sensation in the hip joint. A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area. Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight distribution inside the joint, prompting the joint surfaces to rub roughly and then generating a breaking down of articular cartilage, which limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<div></div>\r\n<h2>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</h2>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y1d pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">          Regenerative Orthopedics aims to address the soft tissue weakness that transpired during the original injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred. The labrum has a poor blood supply, which makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability. Physical therapy can help strengthen the surrounding muscles, but cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">          Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and reduces pain and symptoms. Degenerative conditions, such as hip labral injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries and involves the injection of natural substances into the degenerated hip to stimulate healing. Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed, especially in very active people and athletes. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow), which is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">          Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable and will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration. Most painful hip conditions begin with damage to the surrounding ligaments and progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen<sup>®</sup>, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Hip Labral Tears? Get Non-Surgical Repair','','inherit','closed','closed','','2362-revision-v1','','','2020-09-07 20:45:48','2020-09-07 20:45:48','',2362,'https://www.drfields.com/uncategorized/2362-revision-v1/',0,'revision','',0),(4103,9,'2020-09-07 20:57:15','2020-09-07 20:57:15','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">\r\n\r\nRegenerative, non-surgical treatments for painful hip labral tears have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results.\r\n\r\nRegenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">. </span>Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.\r\n\r\n[caption id=\"attachment_2198\" align=\"alignleft\" width=\"400\"]<img class=\"wp-image-2198 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/labral-tear-400x500.png\" alt=\"Labral Tear\" width=\"400\" height=\"500\" /> <em>            <strong>Non-Surgical Repair of Hip Labral Tears</strong></em>[/caption]\r\n\r\n</div>\r\n<h3>The Hip and Labrum</h3>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. And the hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis.</div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">But we move our hips a lot and put them through high rates of wear. So more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injur<span class=\"pg-1fc2 pg-1sc0\">y</span><span class=\"pg-1ff3 pg-1fs2 pg-1fc1\">.</span></div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"> The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. And labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries.</div>\r\n<div></div>\r\n<h3>Labral Tear Symptoms</h3>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Symptoms include varying degrees of pain, including pain deep in the groin, as well as clicking, popping, and a locking sensation in the hip joint.</div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area.</div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight distribution inside the joint. And that prompts the joint surfaces to rub roughly and then generate a breaking down of articular cartilage. That limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<h3>Treatment Options for Hip Labral Tears</h3>\r\nThe labrum has a poor blood supply. And this makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective. That\'s because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability.\r\n\r\nPhysical therapy can help strengthen the surrounding muscles. But it cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.\r\n<div>\r\n<h3>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics aims to address the soft tissue weakness that transpired during the original hip labral tear injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred.\r\n\r\n</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and reduces pain and symptoms.</div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Degenerative conditions, such as hip labral tear injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries. And the non-surgical treatment involves the injection of natural substances into the degenerated hip to stimulate healing.</div>\r\n<h3>Cellular Therapies Such as PRP and Stem Cells</h3>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Sometimes in the treatment of labral tears, cellular therapies such as PRP and Stem Cells are also needed. Especially in very active people and athletes, or in conditions with more severe degeneration. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow). The solution is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable. And surgery will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration.</div>\r\n<div></div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Most painful hip conditions begin with damage to the surrounding ligaments. And they progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen<sup>®</sup>, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Hip Labral Tears? Get Non-Surgical Repair','','inherit','closed','closed','','2362-revision-v1','','','2020-09-07 20:57:15','2020-09-07 20:57:15','',2362,'https://www.drfields.com/uncategorized/2362-revision-v1/',0,'revision','',0),(4104,9,'2020-09-07 20:59:21','2020-09-07 20:59:21','<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y2 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">\r\n\r\nRegenerative, non-surgical treatments for painful hip labral tears have grown in recent years and with good reason. People want an alternative to the invasiveness of surgery and options that do not require anesthesia or a hospital stay. They also want therapies known to have successful long-term results.\r\n\r\nRegenerative Orthopedics can regrow cartilage and restore degenerated tissue so that decreased mobility and unrelenting hip pain from a hip labral tear can become a thing of the pas<span class=\"pg-1fc2 pg-1sc0\">t</span><span class=\"pg-1fc2 pg-1sc0\">. </span>Being diagnosed with a labral tear of the hip no longer has to mean surgery, prolonged downtime, and giving up leisure activities.\r\n\r\n[caption id=\"attachment_2198\" align=\"alignleft\" width=\"400\"]<img class=\"wp-image-2198 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/labral-tear-400x500.png\" alt=\"Labral Tear\" width=\"400\" height=\"500\" /> <em>            <strong>Non-Surgical Repair of Hip Labral Tears</strong></em>[/caption]\r\n\r\n</div>\r\n<h3>The Hip and Labrum</h3>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">The hip joint is a ball-and-socket joint with very large ligaments that usually keep the hip pretty stable, helping to prevent injuries. And the hip labrum is a ring of cartilage that seals the ball and socket, and aids in providing movement between the leg and pelvis.</div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1ya pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">But we move our hips a lot and put them through high rates of wear. So more and more, hip injuries, including tears to the labrum, are becoming a source of pain and disability. Additionally, the excessive force required in different sports activities can push the hip and its labrum beyond their normal range, resulting in injur<span class=\"pg-1fc2 pg-1sc0\">y</span><span class=\"pg-1ff3 pg-1fs2 pg-1fc1\">.</span></div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\"> The hip labrum also serves as a cushion and shock absorber to protect the hip and thigh bones. Damage or degeneration to the labrum will result in pain and instability of the hip joint. And labral tears can be caused by a sudden, specific injury or with repetitive motions that cause wear and tear type injuries.</div>\r\n<div></div>\r\n<h3>Hip Labral Tear Symptoms</h3>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Symptoms include varying degrees of pain, including pain deep in the groin, as well as clicking, popping, and a locking sensation in the hip joint.</div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">A labral tear in the hip destabilizes the hip joint and is associated with early onset arthritis. Overgrowth of bone will occur in an attempt to stabilize the area.</div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y11 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Let’s explain this arthritis connection further! The disrupted balance in motion that transpires after the original injury causes an uneven weight distribution inside the joint. And that prompts the joint surfaces to rub roughly and then generate a breaking down of articular cartilage. That limits joint function and promotes bone loss and the eventual bony overgrowth of arthritis.</div>\r\n<h3>Treatment Options for Hip Labral Tears</h3>\r\nThe labrum has a poor blood supply. And this makes a tear or injury difficult to treat with conservative approaches since they are unable to repair the injured ligaments, torn labrum, or the resultant instability and imbalance caused by the injury. Standard therapeutic approaches such as pain medications, steroid injections, and arthroscopy, employed to address labral injuries, are often ineffective. That\'s because they are not reparative and do not heal the underlying cause of the problem, the injured ligaments, labrum, and hip instability.\r\n\r\nPhysical therapy can help strengthen the surrounding muscles. But it cannot repair the labrum or prevent further degeneration from the abnormal motion the injury has caused in the hip joint.\r\n<div>\r\n<h3>Pain Relief, Restoration of Hip Function and Stability with Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics aims to address the soft tissue weakness that transpired during the original hip labral tear injury. The treatment also restores the normal function of the labrum, correcting the imbalance, and stimulating repair where the degeneration has occurred.\r\n\r\n</div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Non-Surgical Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the injury and abnormal joint motion by stimulating the natural regenerative processes in and around the hip joint. The torn labrum and the involved injured ligaments are restored to a healthy state, which improves joint support and function, and reduces pain and symptoms.</div>\r\n<div></div>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Degenerative conditions, such as hip labral tear injuries need regeneration. Regenerative Orthopedics repairs the labrum and supports the formation of cartilage in the hip environment. This regenerative therapy has been found effective for the treatment of labral injuries. And the non-surgical treatment involves the injection of natural substances into the degenerated hip to stimulate healing.</div>\r\n<h3>Cellular Therapies Such as PRP and Stem Cells</h3>\r\n<div class=\"t pg-1m0 pg-1x0 pg-1h3 pg-1y28 pg-1ff1 pg-1fs1 pg-1fc0 pg-1sc0 pg-1ls0 pg-1ws0\">Sometimes in the treatment of labral tears, cellular therapies such as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cells</a> are also needed. Especially in very active people and athletes, or in conditions with more severe degeneration. These therapies involve the injection of an autologous preparation (from a person’s own blood, fat or bone marrow). The solution is then injected directly into the damaged joint, to accelerate the healing process in more severe cases of labral injury. The surrounding soft tissue would also be treated comprehensively.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Regenerative Orthopedics is a highly successful non-surgical option for hip labral tears. We recommend this choice before considering surgery since surgical removal of the labrum will make the joint more unstable. And surgery will limit labrum flexibility by stapling part of it down, making it even more susceptible to tears and future degeneration.</div>\r\n<div></div>\r\n<div class=\"t pg-2m0 pg-2x0 pg-2h2 pg-2yc pg-2ff1 pg-2fs0 pg-2fc0 pg-2sc0 pg-2ls0 pg-2ws0\">Most painful hip conditions begin with damage to the surrounding ligaments. And they progress into degenerative conditions like labral degeneration. Since the hip labrum along with the surrounding ligaments, provide most of the stability of the hip, all of these areas need to be treated. We have treated hip labrum tears successfully for many years at OrthoRegen<sup>®</sup>, and offer an effective and much-needed alternative to hip surgery in cases of hip labral tears.</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Hip Labral Tears? Get Non-Surgical Repair','','inherit','closed','closed','','2362-revision-v1','','','2020-09-07 20:59:21','2020-09-07 20:59:21','',2362,'https://www.drfields.com/uncategorized/2362-revision-v1/',0,'revision','',0),(4105,9,'2020-09-07 21:00:50','2020-09-07 21:00:50','Meniscectomy','Meniscectomy','Meniscectomy Didn\'t Fix Your Problem?','inherit','open','closed','','meniscectomy','','','2020-09-07 21:01:35','2020-09-07 21:01:35','',2353,'https://www.drfields.com/wp-content/uploads/2019/06/meniscectomy.png',0,'attachment','image/png',0),(4106,9,'2020-09-07 21:16:53','2020-09-07 21:16:53','[caption id=\"attachment_4105\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4105\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/meniscectomy-500x500.png\" alt=\"Meniscectomy\" width=\"500\" height=\"500\" /> <em><strong>                    Meniscectomy Didn\'t Fix Your Problem?</strong></em>[/caption]\n\nMenisci are C-shaped material in the knee which act as shock absorbers between the femur (upper leg) and tibia (lower leg). Each joint has two menisci to balance the body weight evenly and keep the knee stable.\n\nMenisci are often damaged in people who are active in sports (running, biking, tennis, hiking, golf, soccer, football) and most other activities that involve the knees. And they can also develop degenerative tears over time as we age.\n\nSymptoms of torn menisci include pain and swelling in the knee which may be accompanied with a sensation of the knee “giving away”. There may also be difficulties straightening the leg which may be associated with a catching or locking sensation.\n<h4>The Old Treatment for Meniscus Tears</h4>\nTraditionally, torn menisci were repaired surgically. And that involved cutting the torn parts out. However, several studies have proven that this operation is not a good option for damaged menisci.\n\nMany people have had them even though their problem was not significant. Just using an MRI to ‘convince’ people to have surgery is not good medicine. History and physical exam are much more important.\n\nIn 2013, a study showed that meniscus surgery in patients without arthritis was no better than a fake surgical procedure. Another study published in the New England Journal of Medicine in 2012 revealed that on average patients who had meniscus surgery did not do any better than those who skipped the operation and just had physical therapy.\n\nAnd a study done in 2002 by Baylor College of Medicine revealed that debridement (cutting away the damaged parts) of knees with arthritis and degenerative menisci tears was no better than placebo. The latest study in this area revealed that operations for meniscus locking were no better than placebo. Researchers evaluated 146 patients who had mechanical symptoms like occasional locking or knee catching which were thought to be caused by the menisci. And half of these patients had meniscus surgery while the other half had sham surgery. <strong><em>It was then found that the operation provided no benefit in relieving the catching or locking!</em></strong>\n<h4>PRP: A New Treatment for Meniscus Tears</h4>\nThe new treatment for meniscus tears does not involve cutting and removing. It entails boosting the body’s natural ability to repair the injured menisci so that they heal themselves. This treatment is a part of Regenerative Orthopedics and is known as platelet rich plasma (PRP) therapy.\n\n[caption id=\"attachment_2313\" align=\"alignright\" width=\"351\"]<img class=\"wp-image-2313\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-man.jpg\" alt=\"Meniscus Surgery and Pain\" width=\"351\" height=\"524\" /> Has Meniscus Surgery left you with continued knee pain?[/caption]\n\nPRP involves injecting platelets from the patient’s own blood into their injured knees. It should be accompanied by Dextrose Prolotherapy to the outside of the joint where important ligaments and tendons are.\n\nThe platelets then release their healing growth factors like platelet derived growth factor, vascular endothelial growth factor and more. These growth factors stimulate the growth of new tissue including the meniscus.\n\nPRP is cost effective when compared to menisci surgery since it is done in the doctor’s office and it does not require the patient to be admitted into a hospital. It also shields the patient from other risks associated with surgery (infection, medications, severe bleeding) and general anesthesia.\n\nPRP is also time effective since the patient can slowly resume their activities of normal living after the treatment. This is in comparison to the surgical operation which requires immobilization for several weeks.\n<h3><strong>Peter A. Fields, MD, DC is an expert in PRP Regenerative Therapy as well as Prolotherapy.</strong></h3>\nHe is also an <strong>expert in the field of Stem Cell Regenerative Therapy</strong> for those that have been told that they have worn out cartilage, bone on bone or have their knee, hip or shoulder replaced.\n\nThis procedure could save one from having their joint permanently removed and replaced, which sometimes can be disastrous.\n\nPlease give his office a call if you have any more questions about avoiding surgery on your joint and spine.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com\"> Schedule Your Appointment Today!</a>','Meniscus Surgery: A Failed Surgery','','inherit','closed','closed','','2353-autosave-v1','','','2020-09-07 21:16:53','2020-09-07 21:16:53','',2353,'https://www.drfields.com/uncategorized/2353-autosave-v1/',0,'revision','',0),(4107,9,'2020-09-07 21:04:47','2020-09-07 21:04:47','[caption id=\"attachment_4105\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4105\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/meniscectomy-500x500.png\" alt=\"Meniscectomy\" width=\"500\" height=\"500\" /> <em><strong>                    Meniscectomy Didn\'t Fix Your Problem?</strong></em>[/caption]\r\n\r\nMeniscus are C-shaped material in the knee which act as shock absorbers between the femur (upper leg) and tibia (lower leg). Each joint has two menisci to balance the body weight evenly and keep the knee stable. Menisci are often damaged in people who are active in sports (running, biking, tennis, hiking, golf, soccer, football) and most other activities that involve the knees. They can also develop degenerative tears over time as we age. Symptoms of torn meniscininclude pain and swelling in the knee which may be accompanied with a sensation of the knee “giving away”. There may also be difficulties straightening the leg which may be associated with a catching or locking sensation.\r\n<h4>The Old Treatment for Meniscus Tears</h4>\r\nTraditionally, torn menisci were repaired surgically in an operation where most are not repaired but actually which involved cutting the torn parts out. However, several studies have proven that this operation is not a good option for damaged menisci. Many people have them without significant dysfunction. Just using an MRI to ‘convince’ people to have surgery is not good medicine. History and physical exam are much more important. In 2013, a study showed that menisci surgery in patients without arthritis was no better than a fake surgical procedure. Another study published in the New England Journal of Medicine in 2012 revealed that on average patients who had meniscus surgery did not do any better than those who skipped the operation and just had physical therapy. And as early as study done in 2002 by Baylor College of Medicine revealed that debridement (cutting away the damaged parts) of knees with arthritis and degenerative menisci tears was no better than placebo. The latest study in this area revealed that operations for meniscus locking were no better than placebo. Researchers evaluated 146 patients who had mechanical symptoms like occasional locking or knee catching which were thought to be caused by the menisci. Half of these patients had meniscus surgery while the other half had sham surgery. It was then found that the operation provided no benefit in relieving the catching or locking!\r\n<h4>The New Treatment for Meniscus Tears</h4>\r\nThe new treatment for meniscus tears does not involve cutting and removing. It entails boosting the body’s natural ability to repair the injured menisci so that they heal themselves. This treatment is a part of Regenerative Orthopedics and is known as platelet rich plasma (PRP) therapy and it involves inj\r\n\r\n<img class=\"alignright  wp-image-2313\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-man.jpg\" alt=\"Knee Pain Man\" width=\"351\" height=\"524\" />ecting platelets from the patient’s own blood into their injured knees. In should be accompanied by dextrose Prolotherapy to the outside of the joint where important ligaments and tendons are. The platelets then release their healing growth factors like platelet derived growth factor, vascular endothelial growth factor and more. These growth factors stimulate the growth of new tissue including the meniscus. PRP is cost effective when compared to menisci surgery since it is done in the doctor’s office and it does not require the patient to be admitted into a hospital. It also shields the patient from other risks associated with surgery (infection, medications, severe bleeding) and general anesthesia. PRP is also time effective since the patient can slowly resume their activities of normal living after the treatment. This is in comparison to the surgical operation which requires immobilization for several weeks.\r\n\r\n<strong>Peter A. Fields, MD, DC is an expert in PRP Regenerative Therapy as well as Prolotherapy.</strong>\r\n\r\nHe is also an <strong>expert in the field of Stem Cell Regenerative Therapy</strong> for those that have been told that they have worn out cartilage, bone on bone or have their knee, hip or shoulder replaced.\r\n\r\nThis procedure could save one from having their joint permanently removed and replaced, which sometimes can be disastrous.\r\n\r\nPlease give his office a call if you have any more questions about avoiding surgery on your joint and spine.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com\"> Schedule Your Appointment Today!</a>','Meniscus Surgery: A Failed Surgery','','inherit','closed','closed','','2353-revision-v1','','','2020-09-07 21:04:47','2020-09-07 21:04:47','',2353,'https://www.drfields.com/uncategorized/2353-revision-v1/',0,'revision','',0),(4108,9,'2020-09-07 21:17:39','2020-09-07 21:17:39','[caption id=\"attachment_4105\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4105\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/meniscectomy-500x500.png\" alt=\"Meniscectomy\" width=\"500\" height=\"500\" /> <em><strong>                    Meniscectomy Didn\'t Fix Your Problem?</strong></em>[/caption]\r\n\r\nMenisci are C-shaped material in the knee which act as shock absorbers between the femur (upper leg) and tibia (lower leg). Each joint has two menisci to balance the body weight evenly and keep the knee stable.\r\n\r\nMenisci are often damaged in people who are active in sports (running, biking, tennis, hiking, golf, soccer, football) and most other activities that involve the knees. And they can also develop degenerative tears over time as we age.\r\n\r\nSymptoms of torn menisci include pain and swelling in the knee which may be accompanied with a sensation of the knee “giving away”. There may also be difficulties straightening the leg which may be associated with a catching or locking sensation.\r\n<h4>The Old Treatment for Meniscus Tears</h4>\r\nTraditionally, torn menisci were repaired surgically. And that involved cutting the torn parts out. However, several studies have proven that this operation is not a good option for damaged menisci.\r\n\r\nMany people have had them even though their problem was not significant. Just using an MRI to ‘convince’ people to have surgery is not good medicine. History and physical exam are much more important.\r\n\r\nIn 2013, a study showed that meniscus surgery in patients without arthritis was no better than a fake surgical procedure. Another study published in the New England Journal of Medicine in 2012 revealed that on average patients who had meniscus surgery did not do any better than those who skipped the operation and just had physical therapy.\r\n\r\nAnd a study done in 2002 by Baylor College of Medicine revealed that debridement (cutting away the damaged parts) of knees with arthritis and degenerative menisci tears was no better than placebo. The latest study in this area revealed that operations for meniscus locking were no better than placebo. Researchers evaluated 146 patients who had mechanical symptoms like occasional locking or knee catching which were thought to be caused by the menisci. And half of these patients had meniscus surgery while the other half had sham surgery. <strong><em>It was then found that the operation provided no benefit in relieving the catching or locking!</em></strong>\r\n<h4>PRP: A New Treatment for Meniscus Tears</h4>\r\nThe new treatment for meniscus tears does not involve cutting and removing. It entails boosting the body’s natural ability to repair the injured menisci so that they heal themselves. This treatment is a part of Regenerative Orthopedics and is known as platelet rich plasma (PRP) therapy.\r\n\r\n[caption id=\"attachment_2313\" align=\"alignright\" width=\"351\"]<img class=\"wp-image-2313\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-man.jpg\" alt=\"Meniscus Surgery and Pain\" width=\"351\" height=\"524\" /> Has Meniscus Surgery left you with continued knee pain?[/caption]\r\n\r\nPRP involves injecting platelets from the patient’s own blood into their injured knees. It should be accompanied by Dextrose Prolotherapy to the outside of the joint where important ligaments and tendons are.\r\n\r\nThe platelets then release their healing growth factors like platelet derived growth factor, vascular endothelial growth factor and more. These growth factors stimulate the growth of new tissue including the meniscus.\r\n\r\nPRP is cost effective when compared to menisci surgery since it is done in the doctor’s office and it does not require the patient to be admitted into a hospital. It also shields the patient from other risks associated with surgery (infection, medications, severe bleeding) and general anesthesia.\r\n\r\nPRP is also time effective since the patient can slowly resume their activities of normal living after the treatment. This is in comparison to the surgical operation which requires immobilization for several weeks.\r\n<h3><strong>Peter A. Fields, MD, DC is an expert in PRP Regenerative Therapy as well as Prolotherapy.</strong></h3>\r\nHe is also an <strong>expert in the field of Stem Cell Regenerative Therapy</strong> for those that have been told that they have worn out cartilage, bone on bone or have their knee, hip or shoulder replaced.\r\n\r\nThis procedure could save one from having their joint permanently removed and replaced, which sometimes can be disastrous.\r\n\r\nPlease give the OrthoRegen office a call 310-453-1234 at if you have any more questions about avoiding surgery on your joint and spine.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com\"> Schedule Your Appointment Today!</a>','Meniscus Surgery: A Failed Surgery','','inherit','closed','closed','','2353-revision-v1','','','2020-09-07 21:17:39','2020-09-07 21:17:39','',2353,'https://www.drfields.com/uncategorized/2353-revision-v1/',0,'revision','',0),(4110,9,'2020-09-11 01:44:50','2020-09-11 01:44:50','[caption id=\"attachment_4112\" align=\"alignright\" width=\"526\"]<img class=\" wp-image-4112\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.-500x500.png\" alt=\"Stem Cell Therapy\" width=\"526\" height=\"526\" data-wp-editing=\"1\" /> <strong>     Stem Cell Treatments are Effective to Avoid Joint Replacement</strong>[/caption]\n<h3>Joint Replacement Is On the Rise</h3>\nJoint replacements are on the rise. They have increased so much that, in the last ten years, knee replacements have more than doubled and hip replacements more than tripled. <sup>i</sup> As life expectancy increases, this number will continue to go up.\n\nArthritis is the most common cause of chronic knee and hip pain, and this condition eventually leads to joint replacement.\n<h4>Traditional Therapies for Joint Pain</h4>\nThe goal of traditional therapies is to decrease pain and improve function. Treatments, such as weight loss, exercise, physiotherapy, bracing, and orthotics, may help temporarily. But they are unfortunately unable to actually repair the joint instability or the source of pain.\n\nThe increased mechanical stress caused by injury to the ligaments, meniscus, labrum, and other joint structures, changes the way the joint functions. And that makes the joint unstable and even more susceptible to further soft tissue injury.\n<h4>What Is the Result of Joint Instability Left Unrepaired?</h4>\nWhen left unrepaired, the long-lasting effect of continual joint instability is arthritis. Again, many conventional treatments do not last in providing pain relief because they fail to repair the instability. And they are also unable to prevent the eventual joint replacement. The road to arthritis, and the ensuing joint replacement, can only be remedied when the problem of joint instability is addressed.\n\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are conservative, non-surgical therapies generally recommended initially for pain alleviation. And although steroid injections and NSAIDs have been shown to be effective in decreasing inflammation and pain short-term, they do not reverse the disease.\n\nBut they do inhibit the properties of healing. And that\'s important to realize! For this reason, their use is cautioned in those who have joint injuries and arthritis. Interestingly, NSAIDs and corticosteroids have no beneficial effect on articular cartilage in arthritis. But instead, they accelerate the very disease for which they are most often used and prescribed. And they are a catalyst towards joint replacement.\n<h4>Did Researchers Just Find Out That Corticosteroids, Like Cortisone, Are Bad for Soft Tissue Healing?</h4>\nIt is interesting to point out that not long after doctors started injecting cortisone and other steroids into joints way back in the 1950s, reports of terrible joint diseases were already surfacing. And even back then, their intra-articular use was discouraged. Corticosteroid injections accelerate cartilage degeneration and joint destruction. Today, despite the dangers, cortisone use is widespread and has become the standard of care.\n\nWhat about the popular use of hyaluronic acid injections for joint pain? Unfortunately, those who do find some pain relief from hyaluronic acid, generally only experience short-term results. The use of hyaluronic acid injections, like Synvisc, are frequently designed to delay the inevitable joint replacement. Even the seemingly harmless RICE (rest, ice, compression and elevation) protocol has been rescinded by its author due to its detrimental effect on healing.\n<h4>Does Arthroscopic Surgery Prevent Joint Replacement?</h4>\nAn attempt to eliminate pain or a painful area by the arthroscopic shaving, cutting, or removal of tissue will only delay the pain for a few years until the remaining tissue becomes degenerated. And arthroscopy is a direct assault to the joint tissue. Arthroscopy, like the aforementioned treatments, may give some temporary relief of symptoms. But in the long-term, they will destabilize the joint and boost degeneration.\n\nIn the long-run, these surgeries can lead to even more surgeries and the eventual joint replacement. Athletes, who have surgical repair of injuries, like an ACL tear for example, have a low rate of return to sport, and a high rate of new injury. Surgery makes joint instability worse, not better.\n\nMany surgeries such as labral repair and ACL reconstruction can provide remarkable short-term pain relief. However, the replacement material will not function long-term like the original. And ACL grafts and labral repairs with titanium tacks just do not have the same pliability as the original tissue. They cannot restore the joint back to normal. Eventually, they will cause problems.\n\nThe athlete or any joint pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or corticosteroid injection, the risk of developing long-term arthritis and the eventual joint replacement is greatly increased. The key to keeping the joint strong is to stimulate the area to heal.\n<h4>Regenerative Orthopedics Using Stem Cell Treatment Repairs the Joint</h4>\nRegenerative Orthopedics stimulates healing and repairs the joint, rather than interfering with the normal healing process of the body. At OrthoRegen<sup>®</sup>, we use the Gold Standard in Regenerative Orthopedics. And we use Stem Cells from bone marrow and from fat. Both are excellent sources of Stem Cells.\n\nPRP is then used to stimulate the growth of these Stem Cells and to repair the ligaments inside of the joint. The remaining Stem Cells that are left over are used along with Prolotherapy to treat the outside of the joint. That\'s where there are many tendons and ligaments that control the joint and keep it stabilized. All of this is known as the Gold Standard in Stem Cell treatment, and is the only procedure we use at OrthoRegen<sup>®</sup>.\n<h4>Types of Regenerative Orthopedics</h4>\nStem Cell treatments, PRP and Prolotherapy, are all types of Regenerative Orthopedics. And they are all effective at stimulating the normal reparative mechanisms of the body, laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee, hip and shoulder labrum, and boosting the cartilage growth.\n\nThese treatments work to reduce the chance of long-term arthritis and the eventual joint replacement. Stem Cells, along with PRP and Prolotherapy, offer hope to those suffering from various types of joint pain and trying to avoid joint replacement.\n\nWhile surgery is necessary in a small percentage of patients, non-surgical regenerative therapies should be first-line, conservative treatments tried prior to surgery. The Gold Standard of Regenerative Orthopedics is effective even after surgery, when continued pain is experienced or for arthritis that was accelerated due to the surgery.\n\nKeep in mind that once surgery is done it cannot be undone!\n\n<hr />\n\n[i] Kim, S. Changes in surgical loads and economic burden of hip and knee replacements in the US: 1997–2004. Arthritis &amp; Rheumatism,2008: 59: 481–488. doi:10.1002/art.23525','Joint Replacement: What\'s the Alternative?','','inherit','closed','closed','','2345-autosave-v1','','','2020-09-11 01:44:50','2020-09-11 01:44:50','',2345,'https://www.drfields.com/uncategorized/2345-autosave-v1/',0,'revision','',0),(4111,9,'2020-09-11 01:22:03','2020-09-11 01:22:03','<h3>Stem Cell Treatment: An Alternative to Joint Replacement</h3>\r\nJoint replacements are on the rise. They have increased so much that, in the last ten years, knee replacements have more than doubled and hip replacements more than tripled. <sup>i</sup> As life expectancy increases, this number will continue to go up. Arthritis is the most common cause of chronic knee and hip pain, and this condition eventually leads to joint replacement. Stem Cell Treatment is a great non-surgical alternative to joint replacement.\r\n<h4>Traditional Therapies for Joint Pain</h4>\r\nThe goal of traditional therapies is to decrease pain and improve function. Treatments, such as weight loss, exercise, physiotherapy, bracing, and orthotics, may help temporarily, but are unfortunately unable to actually repair the joint instability or source of the pain. The increased mechanical stress caused by injury to the ligaments, meniscus, labrum, etc. changes the way the joint functions and makes the joint unstable and even more susceptible to further soft tissue injury.\r\n\r\nWhat is the result? When left unrepaired, the long-lasting effect of continual joint instability is arthritis. Again, many conventional treatments do not last in providing pain relief because they fail to repair the instability. They are also unable to prevent the eventual joint replacement. The road to arthritis, and the ensuing joint replacement, can only be remedied when the problem of joint instability is addressed.\r\n\r\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are conservative, non-surgical therapies generally recommended initially for pain alleviation. Although steroid injections and NSAIDs have been shown to be effective in decreasing inflammation and pain short-term, they do not reverse the disease, but rather inhibit the properties of healing. For this reason, their use is cautioned in those who have joint injuries and arthritis. Interestingly, NSAIDs and corticosteroids have no beneficial effect on articular cartilage in arthritis, but rather accelerate the very disease for which they are most often used and prescribed, and are a catalyst towards joint replacement.\r\n\r\nIt is interesting to point out that not long after doctors started injecting cortisone and other steroids into joints way back in the 1950s, reports of terrible joint diseases were already surfacing, and even back then, their intra-articular use was discouraged. Corticosteroid injections accelerate cartilage degeneration and joint destruction. Today, despite the dangers, cortisone use is widespread and has become the standard of care.\r\n\r\nWhat about the popular use of hyaluronic acid injections for joint pain? Unfortunately, those who do find some pain relief from hyaluronic acid, generally only experience short-term results, which are frequently designed to delay the inevitable joint replacement. Even the seemingly harmless RICE (rest, ice, compression and elevation) protocol has been rescinded by its author due to its detrimental effect on healing.\r\n<h4>Does Arthroscopic Surgery Prevent Joint Replacement?</h4>\r\nAn attempt to eliminate pain or a painful area by the arthroscopic shaving, cutting, or removal of tissue will only delay the pain for a few years until the remaining tissue becomes degenerated. Arthroscopy is a direct assault to the joint tissue. Arthroscopy, like the aforementioned treatments, may give some temporary relief of symptoms, but in the long-term, will destabilize the joint and boost degeneration. In the long-run, these surgeries can lead to even more surgeries and the eventual joint replacement. Athletes, who have surgical repair of injuries, like an ACL tear for example, have a low rate of return to sport, and a high rate of new injury. Surgery makes joint instability worse, not better.\r\n\r\nMany surgeries such as labral repair and ACL reconstruction can provide remarkable short-term pain relief. However, the replacement material will not function long-term like the original. ACL grafts and labral repairs with titanium tacks just do not have the same pliability as the original tissue and cannot restore the joint back to normal. Eventually, they will cause problems. The athlete or any joint pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or corticosteroid injection, the risk of developing long-term arthritis and the eventual joint replacement is greatly increased. The key to keeping the joint strong is to stimulate the area to heal.\r\n<h4>Regenerative Orthopedics Using Stem Cell Treatment Repairs the Joint</h4>\r\nRegenerative Orthopedics stimulates healing and repairs the joint, rather than interfering with the normal healing process of the body. At OrthoRegen<sup>®</sup>, we use the Gold Standard in Regenerative Orthopedics. We use Stem Cells from bone marrow and from fat. Both are excellent sources of Stem Cells. PRP is then used to stimulate the growth of these Stem Cells and to repair the ligaments inside of the joint. The remaining Stem Cells that are left over are used along with Prolotherapy to treat the outside of the joint, where there are many tendons and ligaments that control the joint and keep it stabilized. All of this is known as the Gold Standard in Stem Cell treatment, and is the only procedure we use at OrthoRegen<sup>®</sup>.\r\n\r\nStem Cell treatments, PRP and Prolotherapy, are types of Regenerative Orthopedics. They are all effective at stimulating the normal reparative mechanisms of the body, laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee, hip and shoulder labrum, and boosting the cartilage growth. They work to reduce the chance of long-term arthritis and joint replacement. Stem Cells, along with PRP and Prolotherapy, offer hope to those suffering from various types of joint pain and trying to avoid joint replacement.\r\n\r\nWhile surgery is necessary in a small percentage of patients, non-surgical regenerative therapies should be first-line, conservative treatments tried prior to surgery. The Gold Standard of Regenerative Orthopedics is effective even after surgery, when continued pain is experienced or for arthritis that was accelerated due to the surgery.\r\n\r\nOnce surgery is done it cannot be undone!\r\n\r\n<hr />\r\n\r\n[i] Kim, S. Changes in surgical loads and economic burden of hip and knee replacements in the US: 1997–2004. Arthritis &amp; Rheumatism,2008: 59: 481–488. doi:10.1002/art.23525','Stem Cell Treatment','','inherit','closed','closed','','2345-revision-v1','','','2020-09-11 01:22:03','2020-09-11 01:22:03','',2345,'https://www.drfields.com/uncategorized/2345-revision-v1/',0,'revision','',0),(4112,9,'2020-09-11 01:22:39','2020-09-11 01:22:39','Stem Cells, along with PRP and Prolotherapy, offer hope to those suffering from various types of joint pain and trying to avoid joint replacement.','Stem Cells Treatments','Stem Cell Treatments are Effective to Avoid Joint Replacement','inherit','open','closed','','stem-cells','','','2020-09-11 01:23:44','2020-09-11 01:23:44','',2345,'https://www.drfields.com/wp-content/uploads/2019/06/stem-cells..png',0,'attachment','image/png',0),(4113,9,'2020-09-11 01:45:11','2020-09-11 01:45:11','[caption id=\"attachment_4112\" align=\"alignright\" width=\"526\"]<img class=\"wp-image-4112\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.-500x500.png\" alt=\"Joint Replacement Alternative\" width=\"526\" height=\"526\" /> <strong>              Avoid Joint Replacement With Stem Cell Therapy </strong>[/caption]\r\n<h3>Joint Replacement Is On the Rise</h3>\r\nJoint replacements are on the rise. They have increased so much that, in the last ten years, knee replacements have more than doubled and hip replacements more than tripled. <sup>i</sup> As life expectancy increases, this number will continue to go up.\r\n\r\nArthritis is the most common cause of chronic knee and hip pain, and this condition eventually leads to joint replacement.\r\n<h4>Traditional Therapies for Joint Pain</h4>\r\nThe goal of traditional therapies is to decrease pain and improve function. Treatments, such as weight loss, exercise, physiotherapy, bracing, and orthotics, may help temporarily. But they are unfortunately unable to actually repair the joint instability or the source of pain.\r\n\r\nThe increased mechanical stress caused by injury to the ligaments, meniscus, labrum, and other joint structures, changes the way the joint functions. And that makes the joint unstable and even more susceptible to further soft tissue injury.\r\n<h4>What Is the Result of Joint Instability Left Unrepaired?</h4>\r\nWhen left unrepaired, the long-lasting effect of continual joint instability is arthritis. Again, many conventional treatments do not last in providing pain relief because they fail to repair the instability. And they are also unable to prevent the eventual joint replacement. The road to arthritis, and the ensuing joint replacement, can only be remedied when the problem of joint instability is addressed.\r\n\r\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are conservative, non-surgical therapies generally recommended initially for pain alleviation. And although steroid injections and NSAIDs have been shown to be effective in decreasing inflammation and pain short-term, they do not reverse the disease.\r\n\r\nBut they do inhibit the properties of healing. And that\'s important to realize! For this reason, their use is cautioned in those who have joint injuries and arthritis. Interestingly, NSAIDs and corticosteroids have no beneficial effect on articular cartilage in arthritis. But instead, they accelerate the very disease for which they are most often used and prescribed. And they are a catalyst towards joint replacement.\r\n<h4>Did Researchers Just Find Out That Corticosteroids, Like Cortisone, Are Bad for Soft Tissue Healing?</h4>\r\nIt is interesting to point out that not long after doctors started injecting cortisone and other steroids into joints way back in the 1950s, reports of terrible joint diseases were already surfacing. And even back then, their intra-articular use was discouraged. Corticosteroid injections accelerate cartilage degeneration and joint destruction. Today, despite the dangers, cortisone use is widespread and has become the standard of care.\r\n\r\nWhat about the popular use of hyaluronic acid injections for joint pain? Unfortunately, those who do find some pain relief from hyaluronic acid, generally only experience short-term results. The use of hyaluronic acid injections, like Synvisc, are frequently designed to delay the inevitable joint replacement. Even the seemingly harmless RICE (rest, ice, compression and elevation) protocol has been rescinded by its author due to its detrimental effect on healing.\r\n<h4>Does Arthroscopic Surgery Prevent Joint Replacement?</h4>\r\nAn attempt to eliminate pain or a painful area by the arthroscopic shaving, cutting, or removal of tissue will only delay the pain for a few years until the remaining tissue becomes degenerated. And arthroscopy is a direct assault to the joint tissue. Arthroscopy, like the aforementioned treatments, may give some temporary relief of symptoms. But in the long-term, they will destabilize the joint and boost degeneration.\r\n\r\nIn the long-run, these surgeries can lead to even more surgeries and the eventual joint replacement. Athletes, who have surgical repair of injuries, like an ACL tear for example, have a low rate of return to sport, and a high rate of new injury. Surgery makes joint instability worse, not better.\r\n\r\nMany surgeries such as labral repair and ACL reconstruction can provide remarkable short-term pain relief. However, the replacement material will not function long-term like the original. And ACL grafts and labral repairs with titanium tacks just do not have the same pliability as the original tissue. They cannot restore the joint back to normal. Eventually, they will cause problems.\r\n\r\nThe athlete or any joint pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or corticosteroid injection, the risk of developing long-term arthritis and the eventual joint replacement is greatly increased. The key to keeping the joint strong is to stimulate the area to heal.\r\n<h4>Regenerative Orthopedics Using Stem Cell Treatment Repairs the Joint</h4>\r\nRegenerative Orthopedics stimulates healing and repairs the joint, rather than interfering with the normal healing process of the body. At OrthoRegen<sup>®</sup>, we use the Gold Standard in Regenerative Orthopedics. And we use Stem Cells from bone marrow and from fat. Both are excellent sources of Stem Cells.\r\n\r\nPRP is then used to stimulate the growth of these Stem Cells and to repair the ligaments inside of the joint. The remaining Stem Cells that are left over are used along with Prolotherapy to treat the outside of the joint. That\'s where there are many tendons and ligaments that control the joint and keep it stabilized. All of this is known as the Gold Standard in Stem Cell treatment, and is the only procedure we use at OrthoRegen<sup>®</sup>.\r\n<h4>Types of Regenerative Orthopedics</h4>\r\nStem Cell treatments, PRP and Prolotherapy, are all types of Regenerative Orthopedics. And they are all effective at stimulating the normal reparative mechanisms of the body, laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee, hip and shoulder labrum, and boosting the cartilage growth.\r\n\r\nThese treatments work to reduce the chance of long-term arthritis and the eventual joint replacement. Stem Cells, along with PRP and Prolotherapy, offer hope to those suffering from various types of joint pain and trying to avoid joint replacement.\r\n\r\nWhile surgery is necessary in a small percentage of patients, non-surgical regenerative therapies should be first-line, conservative treatments tried prior to surgery. The Gold Standard of Regenerative Orthopedics is effective even after surgery, when continued pain is experienced or for arthritis that was accelerated due to the surgery.\r\n\r\nKeep in mind that once surgery is done it cannot be undone!\r\n\r\n<hr />\r\n\r\n[i] Kim, S. Changes in surgical loads and economic burden of hip and knee replacements in the US: 1997–2004. Arthritis &amp; Rheumatism,2008: 59: 481–488. doi:10.1002/art.23525','Joint Replacement: What\'s the Alternative?','','inherit','closed','closed','','2345-revision-v1','','','2020-09-11 01:45:11','2020-09-11 01:45:11','',2345,'https://www.drfields.com/uncategorized/2345-revision-v1/',0,'revision','',0),(4114,9,'2020-09-11 01:51:55','2020-09-11 01:51:55','Knee pain, like all other types of joint pain, can appear suddenly or become an ongoing, chronic condition. The most common cause of chronic knee pain and disability is arthritis, which frequently results in knee replacement. Knee pain can also be caused by conditions like bursitis, tendonitis, sports injuries, degenerative joint disease, chondromalacia patellae and meniscal injury, all of which very often lead to the eventual surgical recommendation or intervention.\r\n\r\n<a class=\"buttonlink\" href=\"/Testimonials/Cellular-Regeneration-Testimonials/\">Click to See Stem Cell Testimonial Videos</a>\r\n<h6>Knee Pain Treatments</h6>\r\nBefore surgery, other more conservative therapies are usually attempted to bring relief from the knee pain. NSAIDs (non-steroidal anti-inflammatory drugs like Ibuprofen or Naprosyn) and steroid (cortisone) injections might be included in those initial recommendations. Are these treatments a good choice? Although steroid injections and NSAIDs have been shown in studies to be effective in decreasing inflammation and providing pain relief in the short-term, they unfortunately have also been shown to change the properties of ligaments and other soft tissue, which ends up slowing down the healing process. Because these medications inhibit soft tissue healing, their use is cautioned in those who have ligament and soft tissue injuries. Therefore, their use in ligament injuries should be used for the shortest period of time, if used at all. Instead, Regenerative Orthopedic techniques, such as Stem Cell Therapy, PRP and Prolotherapy, which have been shown to strengthen and resolve ligament injuries, repair meniscal injuries, and rebuild cartilage in the knee, should be sought.\r\n<h6>The RICE Protocol</h6>\r\nSo what about the RICE (rest, ice, compression and elevation) protocol? Everyone knows about the RICE protocol, and most people are quick to put it into action. However, an interesting point is that the RICE protocol has been rescinded by its author due to its detrimental effect on healing. Why? Because it hinders blood supply to the injury, and blood brings the healing factors to an injury. Remember…The river does not flow when it is frozen; and that ‘river’ is your blood.\r\n<h6>What about Hyaluronic Acid Injections?</h6>\r\nHyaluronic acid injections, such as Synvisc or Hyalgen, are some of the most popular conservative treatments for knee pain. Hyaluronic acid is a substance naturally found in the body that provides cushion and lubrication to the joints. It can be used as an oral supplement and as an injection that is given directly into the knee joint for the relief of knee pain. Are there drawbacks to the use of hyaluronic acid?\r\n\r\nIf relief is experienced with hyaluronic acid injections, it is generally only for a short period of time. Studies have shown this treatment to actually lack clinical effectiveness. In fact, a systematic review of 89 studies that included over twelve thousand patients comparing hyaluronic acid injections to a sham treatment or to no intervention at all, found that hyaluronic acid supplementation to the knee produced minimal to non-existent results when it came to pain relief and function in knee arthritis patients. That means thousands of patients in these studies received no relief at all, and if they did find relief, it was not much. Unfortunately, those that do find some pain relief with the use of hyaluronic acid, only experience results for a short period of time, and the treatment frequently becomes only a delay for the inevitable knee replacement, because all it does is lubricate a dysfunctional joint, and does not fix anything.\r\n<h6>Other Non-Surgical Treatments</h6>\r\nEven though the goal of many non-surgical treatments such as weight loss, exercise, physiotherapy, bracing, and orthotics, is to decrease pain and improve function, they are unable to repair the source of the pain, the ligament or soft tissue injury. Why is it so important to repair the ligaments and other soft tissue? Because the long-term consequence of ligament and soft tissue injuries that are left unhealed is arthritis. Is it any wonder why the treatments mentioned above including hyaluronic acid do not last, and why they are unable to prevent the eventual knee replacement! You see, these treatments are unable to get to the root cause of the problem. The road to arthritis can only be remedied when the problem of ligament injury is addressed. None of the above treatments address this problem. Regenerative Orthopedics does.\r\n<h6>Are Cortisone Injections Really All That Bad?</h6>\r\nSteroids are used to provide anti-inflammatory relief in affected areas of the body. They lessen swelling, redness, itching and allergic reactions, and, in addition to their use for pain, are often used as part of the treatment for a number of different diseases, such as severe allergies or skin problems, asthma, or arthritis. In many of these cases, steroids are lifesaving! The discovery that steroids could be injected into joints was received with enthusiasm, and led to widespread use. However, shortly after doctors started injecting cortisone and other steroids into knee joints in the 1950s, reports of terrible arthropathies, or joint diseases, began to surface. There was an obvious indication that all was not well with this treatment choice. Way back then, the researchers discouraged the use of steroids being injected into the joint, due to their side effects and cell death in the bone.\r\n\r\nSteroid injections accelerate cartilage degeneration and joint destruction. Cortisone has a deleterious effect on soft tissue healing by inhibiting blood flow to the injured area, new blood vessel formation, protein synthesis, fibroblast proliferation and ultimately collagen formation. Cortisone weakens collagen and therefore soft tissue such as ligaments and tendons, which contributes to the development of conditions such as arthritis, which as we know, leads to the eventual joint replacement. Today, despite the dangers, cortisone use is widespread and has become the standard of care.\r\n<h6>Surgical Repair</h6>\r\nElimination of knee pain by arthroscopic shaving, cutting, or removal of tissue just delays the pain for a few years until the remaining tissue becomes degenerated. The athlete or any knee pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or steroid injection, the risk of developing long-term arthritis and the eventual knee replacement is greatly increased. The key to keeping the knee strong is to stimulate the area to heal. Remember, once surgery is done, it cannot be undone!\r\n<h6>Regenerative Orthopedics</h6>\r\nRegenerative Orthopedic therapies such as Stem Cell Therapy, PRP and Prolotherapy stimulate, rather than interfere with, the normal healing process. The treatments stimulate the normal inflammatory-reparative mechanisms of the body, boosting cartilage growth, strengthening the tendons and ligaments, and repairing the meniscus in a knee or the labrum in the hip or shoulder. These regenerative treatments offer hope to those suffering from various types of knee pain and provide an effective, non-surgical option for those trying to avoid knee replacement.\r\nAs we say at OrthoRegen<sup>®</sup>:\r\nRegenerate First; Surgery Last!','Avoid Knee Replacement with Regenerative Orthopedics','','inherit','closed','closed','','2082-revision-v1','','','2020-09-11 01:51:55','2020-09-11 01:51:55','',2082,'https://www.drfields.com/uncategorized/2082-revision-v1/',0,'revision','',0),(4115,9,'2020-09-11 01:53:32','2020-09-11 01:53:32','Avoid Replacement With Regenerative Orthopedics','Avoid Replacement With Regenerative Orthopedics','Avoid Replacement With Regenerative Orthopedics','inherit','open','closed','','knee-avoid-replacement2','','','2020-09-11 01:54:09','2020-09-11 01:54:09','',2082,'https://www.drfields.com/wp-content/uploads/2019/06/knee.-avoid-replacement2.png',0,'attachment','image/png',0),(4116,9,'2020-09-11 02:22:25','2020-09-11 02:22:25','[caption id=\"attachment_4115\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4115\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee.-avoid-replacement2-400x500.png\" alt=\"Avoid Knee Replacement\" width=\"400\" height=\"500\" /> <em>    Avoid Knee Replacement With Regenerative Orthopedics</em>[/caption]\n\nKnee pain, like all other types of joint pain, can appear suddenly or become an ongoing, chronic condition. And the most common cause of chronic knee pain and disability is arthritis, which frequently results in knee replacement. In this article, we will discuss ways to avoid knee replacement.\n\n<a class=\"buttonlink\" href=\"/Testimonials/Cellular-Regeneration-Testimonials/\">Click to See Stem Cell Testimonial Videos</a>\n<h3>Knee Pain and Its Common Treatments</h3>\nKnee pain can be caused by conditions like bursitis, tendonitis, sports injuries, degenerative joint disease, chondromalacia patellae and meniscal injury. All of these very often lead to the eventual surgical recommendation or intervention.\n\nBefore surgery, other more conservative therapies are usually attempted to bring relief from the knee pain. NSAIDs (non-steroidal anti-inflammatory drugs like Ibuprofen or Naprosyn) and steroid (cortisone) injections might be included in those initial recommendations.\n<h3>Are Steroids and NSAIDs Good Choices to Avoid Knee Replacement?</h3>\nSteroid injections and NSAIDs have been shown in studies to be effective in decreasing inflammation and providing pain relief in the short-term. Unfortunately, they have also been shown to change the properties of ligaments and other soft tissue. And those changes end up slowing down the healing process.\n\nBecause these medications inhibit soft tissue healing, their use is cautioned in those who have ligament and soft tissue injuries. Therefore, they should only be utilized for the shortest period of time, if used at all. Since they inhibit healing, they speed up the chance for joint replacement. So, they really are not a great choice if you are looking to avoid knee replacement.\n\nInstead, Regenerative Orthopedic techniques, such as Stem Cell Therapy, PRP and Prolotherapy should be sought, because they have been shown to strengthen and resolve ligament injuries, repair meniscal injuries, and rebuild cartilage in the knee.\n<h3>The RICE Protocol Is Pretty Common. Is it a Good Way to Avoid Knee Replacement?</h3>\nSo what about the RICE (rest, ice, compression and elevation) protocol? Everyone knows about the RICE protocol. And most people are quick to put it into action. It has to be a good choice. Right? Not really!\n\nAn interesting point is that the RICE protocol has been rescinded by its author due to its detrimental effect on healing. What? Yup! The RICE protocol actually hinders blood supply to the injury. And blood brings the healing factors to an injury. Remember…The river does not flow when it is frozen; and that ‘river’ is your blood.\n<h3>What about Hyaluronic Acid Injections? It\'s Natural, Isn\'t It? So That Means It Must Be Good!</h3>\nHyaluronic acid injections, such as Synvisc or Hyalgen, are some of the most popular conservative treatments for knee pain. Yes, hyaluronic acid is a substance naturally found in the body that provides cushion and lubrication to the joints. And it can be used as an oral supplement and as an injection that is given directly into the knee joint for the relief of knee pain.\n<h4><em>But are there drawbacks to the use of hyaluronic acid?</em></h4>\nOne drawback of hyaluronic acid is that if relief is actually experienced with hyaluronic acid injections, it is generally only for a short period of time. Also, studies have shown this treatment actually lacks clinical effectiveness. In fact, a systematic review of 89 studies that included over twelve thousand patients comparing hyaluronic acid injections to a sham treatment or to no intervention at all, found that hyaluronic acid supplementation to the knee produced minimal to non-existent results when it came to pain relief and function in knee arthritis patients.\n\nThat means thousands of patients in these studies received no relief at all. And if they did find relief, it was not much. Unfortunately, those that do find some pain relief with the use of hyaluronic acid, only experience results for a short period of time. And the treatment frequently becomes only a delay for the inevitable knee replacement, because all it does is lubricate a dysfunctional joint, and does not fix anything. In the end, it may delay the joint replacement, but does not help to avoid knee replacement.\n<h3>Are Cortisone Injections Really All That Bad for the Knee Joint?</h3>\nSteroids are used to provide anti-inflammatory relief in affected areas of the body. They lessen swelling, redness, itching and allergic reactions. And, in addition to their use for pain, they are also often used as part of the treatment for a number of different diseases, such as severe allergies or skin problems, asthma, or arthritis. In many of these cases, steroids are lifesaving!\n\nThe discovery that steroids could be injected into joints was received with enthusiasm, and led to widespread use. However, shortly after doctors started injecting cortisone and other steroids into knee joints in the 1950s, reports of terrible arthropathies, or joint diseases, began to surface. There was an obvious indication that all was not well with this treatment choice. Way back then, the researchers discouraged the use of steroids being injected into the joint, due to their side effects and cell death in the bone.\n\nSteroid injections accelerate cartilage degeneration and joint destruction. Cortisone has a deleterious effect on soft tissue healing by inhibiting blood flow to the injured area, new blood vessel formation, protein synthesis, fibroblast proliferation and ultimately collagen formation.\n\nCortisone weakens collagen and therefore soft tissue such as ligaments and tendons, which contributes to the development of conditions such as arthritis. And, as we know, this leads to the eventual joint replacement. Today, despite the dangers, cortisone use is widespread and has become the standard of care.\n<h3>Surgical Repair</h3>\nElimination of knee pain by arthroscopic shaving, cutting, or removal of tissue just delays the pain for a few years until the remaining tissue becomes degenerated. The athlete or any knee pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or steroid injection, the risk of developing long-term arthritis and the eventual knee replacement is greatly increased. The key to keeping the knee strong is to stimulate the area to heal. Remember, once surgery is done, it cannot be undone!\n<h3>Other Non-Surgical Treatments</h3>\nEven though the goal of many non-surgical treatments such as weight loss, exercise, physiotherapy, bracing, and orthotics, is to decrease pain and improve function, they are unable to repair the source of the pain, the ligament or soft tissue injury. Why is it so important to repair the ligaments and other soft tissue? Because the long-term consequence of ligament and soft tissue injuries that are left unhealed is arthritis.\n\nIs it any wonder the treatments mentioned above, including hyaluronic acid, do not last. And why they are unable to prevent the eventual knee replacement! You see, these treatments are unable to get to the root cause of the problem. The road to arthritis can only be remedied when the problem of ligament injury is addressed. None of the above treatments address this problem. But Regenerative Orthopedics does.\n<h3>Regenerative Orthopedics Is An Effective Treatment to Avoid Knee Replacement</h3>\nRegenerative Orthopedic therapies such as Stem Cell Therapy, PRP and Prolotherapy stimulate, rather than interfere with, the normal healing process. The treatments stimulate the normal inflammatory-reparative mechanisms of the body, boosting cartilage growth, strengthening the tendons and ligaments, and repairing the meniscus in a knee or the labrum in the hip or shoulder.\n\nThese regenerative treatments offer hope to those suffering from various types of knee pain and provide an effective, non-surgical option for those trying to avoid knee replacement.\nAs we say at OrthoRegen<sup>®</sup>:\nRegenerate First; Surgery Last!','Avoid Knee Replacement with Regenerative Orthopedics','','inherit','closed','closed','','2082-autosave-v1','','','2020-09-11 02:22:25','2020-09-11 02:22:25','',2082,'https://www.drfields.com/uncategorized/2082-autosave-v1/',0,'revision','',0),(4117,9,'2020-09-11 02:23:27','2020-09-11 02:23:27','[caption id=\"attachment_4115\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4115\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee.-avoid-replacement2-400x500.png\" alt=\"Avoid Knee Replacement\" width=\"400\" height=\"500\" /> <em>    Avoid Knee Replacement With Regenerative Orthopedics</em>[/caption]\r\n\r\nKnee pain, like all other types of joint pain, can appear suddenly or become an ongoing, chronic condition. And the most common cause of chronic knee pain and disability is arthritis, which frequently results in knee replacement. In this article, we will discuss ways to avoid knee replacement.\r\n\r\n<a class=\"buttonlink\" href=\"/Testimonials/Cellular-Regeneration-Testimonials/\">Click to See Stem Cell Testimonial Videos</a>\r\n<h3>Knee Pain and Its Common Treatments</h3>\r\nKnee pain can be caused by conditions like bursitis, tendonitis, sports injuries, degenerative joint disease, chondromalacia patellae and meniscal injury. All of these very often lead to the eventual surgical recommendation or intervention.\r\n\r\nBefore surgery, other more conservative therapies are usually attempted to bring relief from the knee pain. NSAIDs (non-steroidal anti-inflammatory drugs like Ibuprofen or Naprosyn) and steroid (cortisone) injections might be included in those initial recommendations.\r\n<h3>Are Steroids and NSAIDs Good Choices to Avoid Knee Replacement?</h3>\r\nSteroid injections and NSAIDs have been shown in studies to be effective in decreasing inflammation and providing pain relief in the short-term. Unfortunately, they have also been shown to change the properties of ligaments and other soft tissue. And those changes end up slowing down the healing process.\r\n\r\nBecause these medications inhibit soft tissue healing, their use is cautioned in those who have ligament and soft tissue injuries. Therefore, they should only be utilized for the shortest period of time, if used at all. Since they inhibit healing, they speed up the chance for joint replacement. So, they really are not a great choice if you are looking to avoid knee replacement.\r\n\r\nInstead, Regenerative Orthopedic techniques, such as Stem Cell Therapy, PRP and Prolotherapy should be sought, because they have been shown to strengthen and resolve ligament injuries, repair meniscal injuries, and rebuild cartilage in the knee.\r\n<h3>The RICE Protocol Is Pretty Common. Is it a Good Way to Avoid Knee Replacement?</h3>\r\nSo what about the RICE (rest, ice, compression and elevation) protocol? Everyone knows about the RICE protocol. And most people are quick to put it into action. It has to be a good choice. Right? Not really!\r\n\r\nAn interesting point is that the RICE protocol has been rescinded by its author due to its detrimental effect on healing. What? Yup! The RICE protocol actually hinders blood supply to the injury. And blood brings the healing factors to an injury. Remember…The river does not flow when it is frozen; and that ‘river’ is your blood.\r\n<h3>What about Hyaluronic Acid Injections? It\'s Natural, Isn\'t It? So That Means It Must Be Good!</h3>\r\nHyaluronic acid injections, such as Synvisc or Hyalgen, are some of the most popular conservative treatments for knee pain. Yes, hyaluronic acid is a substance naturally found in the body that provides cushion and lubrication to the joints. And it can be used as an oral supplement and as an injection that is given directly into the knee joint for the relief of knee pain.\r\n<h4><em>But are there drawbacks to the use of hyaluronic acid?</em></h4>\r\nOne drawback of hyaluronic acid is that if relief is actually experienced with hyaluronic acid injections, it is generally only for a short period of time. Also, studies have shown this treatment actually lacks clinical effectiveness. In fact, a systematic review of 89 studies that included over twelve thousand patients comparing hyaluronic acid injections to a sham treatment or to no intervention at all, found that hyaluronic acid supplementation to the knee produced minimal to non-existent results when it came to pain relief and function in knee arthritis patients.\r\n\r\nThat means thousands of patients in these studies received no relief at all. And if they did find relief, it was not much. Unfortunately, those that do find some pain relief with the use of hyaluronic acid, only experience results for a short period of time. And the treatment frequently becomes only a delay for the inevitable knee replacement, because all it does is lubricate a dysfunctional joint, and does not fix anything. In the end, it may delay the joint replacement, but does not help to avoid knee replacement.\r\n<h3>Are Cortisone Injections Really All That Bad for the Knee Joint?</h3>\r\nSteroids are used to provide anti-inflammatory relief in affected areas of the body. They lessen swelling, redness, itching and allergic reactions. And, in addition to their use for pain, they are also often used as part of the treatment for a number of different diseases, such as severe allergies or skin problems, asthma, or arthritis. In many of these cases, steroids are lifesaving!\r\n\r\nThe discovery that steroids could be injected into joints was received with enthusiasm, and led to widespread use. However, shortly after doctors started injecting cortisone and other steroids into knee joints in the 1950s, reports of terrible arthropathies, or joint diseases, began to surface. There was an obvious indication that all was not well with this treatment choice. Way back then, the researchers discouraged the use of steroids being injected into the joint, due to their side effects and cell death in the bone.\r\n\r\nSteroid injections accelerate cartilage degeneration and joint destruction. Cortisone has a deleterious effect on soft tissue healing by inhibiting blood flow to the injured area, new blood vessel formation, protein synthesis, fibroblast proliferation and ultimately collagen formation.\r\n\r\nCortisone weakens collagen and therefore soft tissue such as ligaments and tendons, which contributes to the development of conditions such as arthritis. And, as we know, this leads to the eventual knee replacement. Today, despite the dangers, cortisone use is widespread and has become the standard of care.\r\n<h3>Surgical Repair</h3>\r\nElimination of knee pain by arthroscopic shaving, cutting, or removal of tissue just delays the pain for a few years until the remaining tissue becomes degenerated. The athlete or any knee pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or steroid injection, the risk of developing long-term arthritis and the eventual knee replacement is greatly increased. The key to keeping the knee strong is to stimulate the area to heal. Remember, once surgery is done, it cannot be undone!\r\n<h3>Other Non-Surgical Treatments</h3>\r\nEven though the goal of many non-surgical treatments such as weight loss, exercise, physiotherapy, bracing, and orthotics, is to decrease pain and improve knee function, they are unable to repair the source of the pain, the ligament or soft tissue injury. Why is it so important to repair the ligaments and other soft tissue? Because the long-term consequence of ligament and soft tissue injuries that are left unhealed is arthritis.\r\n\r\nIs it any wonder the treatments mentioned above, including hyaluronic acid, do not last. And why they are unable to prevent the eventual knee replacement! You see, these treatments are unable to get to the root cause of the problem. The road to arthritis can only be remedied when the problem of ligament injury is addressed. None of the above treatments address this problem. But Regenerative Orthopedics does.\r\n<h3>Regenerative Orthopedics Is An Effective Treatment to Avoid Knee Replacement</h3>\r\nRegenerative Orthopedic therapies such as Stem Cell Therapy, PRP and Prolotherapy stimulate, rather than interfere with, the normal healing process. The treatments stimulate the normal inflammatory-reparative mechanisms of the body, boosting cartilage growth, strengthening the tendons and ligaments, and repairing the meniscus in a knee or the labrum in the hip or shoulder.\r\n\r\nThese regenerative treatments offer hope to those suffering from various types of knee pain and provide an effective, non-surgical option for those trying to avoid knee replacement.\r\n\r\nAs we say at OrthoRegen<sup>®</sup>:\r\nRegenerate First; Surgery Last!','Avoid Knee Replacement with Regenerative Orthopedics','','inherit','closed','closed','','2082-revision-v1','','','2020-09-11 02:23:27','2020-09-11 02:23:27','',2082,'https://www.drfields.com/uncategorized/2082-revision-v1/',0,'revision','',0),(4118,9,'2020-09-12 19:57:35','2020-09-12 19:57:35','<h3><strong>Take A Look at This Medical Journal Article About Groin Pain Resolved with Regenerative Therapy</strong></h3>\n<em>If you have groin pain after a sports injury or even after lifting or some other activity that ended in groin injury, you can find relief with regenerative therapies. If elite athletes can get relief, so can you. </em>\n\n<em>After monthly regenerative injections of dextrose and lidocaine, these athletes returned to full activity. <a href=\"https://prolotherapy.com/Topol_Regenerative%20Injection%20of%20Elite%20Athletes%20with%20Career-Altering%20Chronic%20Groin%20Pain%20Who%20Fail%20Conservative%20Treatment_2008.pdf\">Click here for the full article</a>, or check out the abstract below.</em>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<h3><strong>Regenerative Injection of Elite Athletes with Career-Altering Chronic Groin Pain Who Fail Conservative Treatment</strong></h3>\n</div>\n</div>\n</div>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\nABSTRACT\n\nTopol GA, Reeves KD: Regenerative injection of elite athletes with career-altering chronic groin pain who fail conservative treatment: a consecutive case series. <a href=\"https://prolotherapy.com/Topol_Regenerative%20Injection%20of%20Elite%20Athletes%20with%20Career-Altering%20Chronic%20Groin%20Pain%20Who%20Fail%20Conservative%20Treatment_2008.pdf\">Am J Phys Med Rehabil 2008;87;890–902.</a>\n<h4>Objective: To obtain multisport and long-term outcome data from the use of     regenerative injection therapy on career-threatened athletes.</h4>\nDesign: Consecutive enrollment of elite performance-limited athletes with chronic groin/abdominal pain who failed a conservative treatment trial. The treatment consisted of monthly injections of 12.5% dextrose in 0.5% lidocaine in abdominal and adductor attachments on the pubis. Injection of the nociceptive source was confirmed by repetition of resistive testing 5 mins after injection.\n\nResults: Seventy-five athletes were enrolled. Seventy-two athletes (39 rugby, 29 soccer, and 4 other) completed the minimum two-treatment protocol. Their data revealed a mean groin pain history of 11 (3–60) mos. Average number of treatments received was 3 (1–6).\n\nIndividual paired t tests for Visual Analog Scale (VAS) of pain with sport (VAS Pain) and Nirschl pain phase scale measured at 0 and an average of 26 (6–73) mos indicated VAS Pain improvement of 82% (P 􏰀 10􏰁10) and Nirschl pain phase scale improvement of 78% (P 􏰀 10􏰁10).\n\nSix athletes did not improve following regenerative injection therapy treatmentnd the remaining 66 returned to unrestricted sport. Return to unrestricted sport occurred in an average of 3 (1–5) mos.\n\nConclusions: Athletes returned to full elite-level performance in a timely and sustainable manner after regenerative injection therapy using dextrose.\n\n</div>\n</div>\n</div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<div class=\"fullwidth color_bar row-full \">\n<div class=\"container\">\n<div class=\"row-fluid\">\n<div class=\"large_thumb\"><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Read more about Regenerative Orthopedics for Groin/Pelvis</a></div>\n</div>\n</div>\n</div>','Groin Pain Resolved with Regenerative Therapy','','inherit','closed','closed','','2028-autosave-v1','','','2020-09-12 19:57:35','2020-09-12 19:57:35','',2028,'https://www.drfields.com/uncategorized/2028-autosave-v1/',0,'revision','',0),(4119,9,'2020-09-12 19:51:07','2020-09-12 19:51:07','<h3><strong>Take a look at this medical journal article about groin pain resolved with Regenerative Therapy</strong></h3>\r\nIf you have groin pain after a sports injury or even after lifting or some other activity that ended in groin injury, you can find relief with regenerative therapies. If elite athletes can get relief, so can you. After monthly regenerative injections of dextrose and lidocaine, these athletes returned to full activity. <a href=\"https://prolotherapy.com/Topol_Regenerative%20Injection%20of%20Elite%20Athletes%20with%20Career-Altering%20Chronic%20Groin%20Pain%20Who%20Fail%20Conservative%20Treatment_2008.pdf\">Click here for the full article</a>, or check out the abstract below.\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n<strong>Regenerative Injection of Elite Athletes with Career-Altering Chronic Groin Pain Who Fail Conservative Treatment</strong>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nABSTRACT\r\n\r\nTopol GA, Reeves KD: Regenerative injection of elite athletes with career-altering chronic groin pain who fail conservative treatment: a consecutive case series. Am J Phys Med Rehabil 2008;87;890–902.\r\n\r\nObjective: To obtain multisport and long-term outcome data from the use of regenerative injection therapy on career-threatened athletes.\r\n\r\nDesign: Consecutive enrollment of elite performance-limited athletes with chronic groin/abdominal pain who failed a conservative treatment trial. The treatment consisted of monthly injections of 12.5% dextrose in 0.5% lidocaine in abdominal and adductor attachments on the pubis. Injection of the nociceptive source was confirmed by repetition of resistive testing 5 mins after injection.\r\n\r\nResults: Seventy-five athletes were enrolled. Seventy-two athletes (39 rugby, 29 soccer, and 4 other) completed the minimum two-treatment protocol. Their data revealed a mean groin pain history of 11 (3–60) mos. Average number of treatments received was 3 (1–6). Individual paired t tests for Visual Analog Scale (VAS) of pain with sport (VAS Pain) and Nirschl pain phase scale measured at 0 and an average of 26 (6–73) mos indicated VAS Pain improvement of 82% (P 􏰀 10􏰁10) and Nirschl pain phase scale improvement of 78% (P 􏰀 10􏰁10). Six athletes did not improve following regenerative injection therapy treatment, and the remaining 66 returned to unrestricted sport. Return to unrestricted sport occurred in an average of 3 (1–5) mos.\r\n\r\nConclusions: Athletes returned to full elite-level performance in a timely and sustainable manner after regenerative injection therapy using dextrose.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\"><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\"><img title=\"Groin/Pelvis\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium.png\" alt=\"Groin/Pelvis\" /></a><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Groin/Pelvis</a></div>\r\n</div>\r\n</div>\r\n</div>','Groin Pain Resolved with Regenerative Therapy','','inherit','closed','closed','','2028-revision-v1','','','2020-09-12 19:51:07','2020-09-12 19:51:07','',2028,'https://www.drfields.com/uncategorized/2028-revision-v1/',0,'revision','',0),(4120,9,'2020-09-12 19:51:27','2020-09-12 19:51:27','Resolve Groin Pain with Regenerative Therapies','Resolve Groin Pain','Resolve Groin Pain with Regenerative Therapies','inherit','open','closed','','hip-pain-medium-2','','','2020-09-12 19:52:09','2020-09-12 19:52:09','',2028,'https://www.drfields.com/wp-content/uploads/2019/06/hip-pain-medium-1.png',0,'attachment','image/png',0),(4121,9,'2020-09-12 19:58:21','2020-09-12 19:58:21','<h3><strong>Take A Look at This Medical Journal Article About Groin Pain Resolved with Regenerative Therapy</strong></h3>\r\n<em>If you have groin pain after a sports injury or even after lifting or some other activity that ended in groin injury, you can find relief with regenerative therapies. If elite athletes can get relief, so can you. </em>\r\n\r\n<em>After monthly regenerative injections of dextrose and lidocaine, these athletes returned to full activity. <a href=\"https://prolotherapy.com/Topol_Regenerative%20Injection%20of%20Elite%20Athletes%20with%20Career-Altering%20Chronic%20Groin%20Pain%20Who%20Fail%20Conservative%20Treatment_2008.pdf\">Click here for the full article</a>, or check out the abstract below.</em>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n<h3><strong>Regenerative Injection of Elite Athletes with Career-Altering Chronic Groin Pain Who Fail Conservative Treatment</strong></h3>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nABSTRACT\r\n\r\nTopol GA, Reeves KD: Regenerative injection of elite athletes with career-altering chronic groin pain who fail conservative treatment: a consecutive case series. <a href=\"https://prolotherapy.com/Topol_Regenerative%20Injection%20of%20Elite%20Athletes%20with%20Career-Altering%20Chronic%20Groin%20Pain%20Who%20Fail%20Conservative%20Treatment_2008.pdf\">Am J Phys Med Rehabil 2008;87;890–902.</a>\r\n<h4>Objective: To obtain multisport and long-term outcome data from the use of     regenerative injection therapy on career-threatened athletes.</h4>\r\nDesign: Consecutive enrollment of elite performance-limited athletes with chronic groin/abdominal pain who failed a conservative treatment trial. The treatment consisted of monthly injections of 12.5% dextrose in 0.5% lidocaine in abdominal and adductor attachments on the pubis. Injection of the nociceptive source was confirmed by repetition of resistive testing 5 mins after injection.\r\n\r\nResults: Seventy-five athletes were enrolled. Seventy-two athletes (39 rugby, 29 soccer, and 4 other) completed the minimum two-treatment protocol. Their data revealed a mean groin pain history of 11 (3–60) mos. Average number of treatments received was 3 (1–6).\r\n\r\nIndividual paired t tests for Visual Analog Scale (VAS) of pain with sport (VAS Pain) and Nirschl pain phase scale measured at 0 and an average of 26 (6–73) mos indicated VAS Pain improvement of 82% (P 􏰀 10􏰁10) and Nirschl pain phase scale improvement of 78% (P 􏰀 10􏰁10).\r\n\r\nSix athletes did not improve following regenerative injection therapy treatment, and the remaining 66 returned to unrestricted sport. Return to unrestricted sport occurred in an average of 3 (1–5) mos.\r\n\r\nConclusions: Athletes returned to full elite-level performance in a timely and sustainable manner after regenerative injection therapy using dextrose.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\"><a href=\"/Articles/Prolotherapy-Research/Groin-Pelvis\">Read more about Regenerative Orthopedics for Groin/Pelvis</a></div>\r\n</div>\r\n</div>\r\n</div>','Groin Pain Resolved with Regenerative Therapy','','inherit','closed','closed','','2028-revision-v1','','','2020-09-12 19:58:21','2020-09-12 19:58:21','',2028,'https://www.drfields.com/uncategorized/2028-revision-v1/',0,'revision','',0),(4122,9,'2020-09-12 20:39:27','2020-09-12 20:39:27','<header id=\"heading\" class=\"heading\">\n<div id=\"full-view-heading\" class=\"full-view\">\n\n[caption id=\"attachment_4124\" align=\"alignright\" width=\"530\"]<img class=\" wp-image-4124\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium-1.png\" alt=\"Tennis Elbow\" width=\"530\" height=\"530\" /> <strong>                  Prolotherapy Is a Lasting Treatment for Tennis Elbo</strong>w[/caption]\n<h3>Read this <em>Orthopedic Review and Research</em> Medical Journal Article about Tennis Elbow Treatment with Prolotherapy versus Cortisone Injections.</h3>\n<em>The article shows that patients improved with both Prolotherapy and Cortisone in the short-term. However, as we have discussed in <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">previous articles</a>, cortisone injections did not last in the long term. Here you will see that patients who received Prolotherapy, continued to improve at the 3 month follow-up. And those who received cortisone did not.</em>\n\n<header id=\"heading\" class=\"heading\">\n<div id=\"full-view-heading\" class=\"full-view\">\n<h3 class=\"heading-title\">Is Dextrose Prolotherapy Superior To Corticosteroid Injection In Patients With Chronic Lateral Epicondylitis?: A Randomized Clinical Trial</h3>\n<div class=\"inline-authors\">\n<div class=\"authors\">\n<div class=\"authors-list\"><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Bayat+M&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Masume Bayat\">Masume Bayat</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-1\">1</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Raeissadat+SA&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Seyed Ahmad Raeissadat\">Seyed Ahmad Raeissadat</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-2\">2</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Mortazavian+Babaki+M&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Maryam Mortazavian Babaki\">Maryam Mortazavian Babaki</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-3\">3</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Rahimi-Dehgolan+S&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Shahram Rahimi-Dehgolan\">Shahram Rahimi-Dehgolan</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-4\">4</a></sup></span></div>\n</div>\n</div>\n<div class=\"short-article-details\">Affiliations <button id=\"toggle-authors\" class=\"more-details\" data-alt-text=\"Collapse\" aria-controls=\"expanded-authors\" aria-expanded=\"false\" data-pinger-ignore=\"\">expand</button></div>\n<ul id=\"full-view-identifiers\" class=\"identifiers\"></ul>\n</div>\n</header>\n<div id=\"abstract\" class=\"abstract\">\n<h2 class=\"title\"><a href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/\">Abstract</a></h2>\n<div id=\"enc-abstract\" class=\"abstract-content selected\">\n\n<strong class=\"sub-title\">Purpose: </strong>To compare the efficacy of dextrose prolotherapy versus steroid injection in the treatment of patients with chronic lateral epicondylitis.\n\n<strong class=\"sub-title\">Methods: </strong>Thirty subjects with chronic lateral epicondylitis were randomly assigned into two groups of hypertonic dextrose or methylprednisolone injection. Participants were assessed through Quick DASH and VAS scores, once before injection, and then after 1- and 3-months follow-up. Two patients were excluded due to not completing the follow-up timepoints.\n\n<strong class=\"sub-title\">Results: </strong>In both groups VAS scores revealed significant improvement during the first month follow-up [mean difference (MD) = 1.9±3.3, versus 1.5±1.9 for the prolotherapy and steroid groups, respectively]. This declining trajectory continued at the third month visit in the prolotherapy group and MD reached 4.4±2.9, while it did not change remarkably in the steroid group (MD=1.9±3.4).\n\nIn fact, comparing VAS scores between the 1st- and 3rd-month time points did not reveal a significant improvement in the steroid group (<i>p</i>=0.6). Also, the Quick DASH index showed a similar pattern and improved remarkably in both groups during the first visit.\n<h4><strong>However, only the efficacy in the prolotherapy group persisted after 3-month follow-up (MD = 9.5±21.6, <i>p</i>=0.044)</strong>.</h4>\nOne month after injections no preference was observed between the two interventions (<i>p</i>=0.74 for VAS and 0.14 for Quick DASH score). However, the 3rd-month follow-up revealed a meaningful superiority (<i>p</i>=0.03 for VAS and <i>p</i>=0.01 for Quick DASH score) favoring the prolotherapy method.\n\n<strong class=\"sub-title\">Conclusion: </strong>Both methods were proven to be effective in the short-term treatment of chronic lateral epicondylitis, but dextrose prolotherapy seems to be slightly more efficacious than steroid injection over a longer period.<b>Clinical trial registration:</b> Iranian Registry of Clinical Trials Database: IRCT20170311033000N3.\n\n</div>\n</div>\n</div>\n</header>\n<div class=\"fullwidth color_bar row-full \">\n<div class=\"container\">\n<div class=\"row-fluid\">\n<div class=\"large_thumb\">Read other articles about cortisone or corticosteroid injections:</div>\n<div>\n<h3><a title=\"Cortisone – Is it Really Good for You\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">Cortisone – Is it Really Good for You</a></h3>\n<h3><a title=\"Cortisone Injections Are As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-injections-are-as-safe-as-you-think/\">Cortisone Injections: Are They As Safe As You Think</a></h3>\n</div>\n<h3 class=\"large_thumb\">Reference:</h3>\n<div class=\"large_thumb\">Bayat M, Raeissadat SA, Mortazavian Babaki M, Rahimi-Dehgolan S. Is Dextrose Prolotherapy Superior To Corticosteroid Injection In Patients With Chronic Lateral Epicondylitis?: A Randomized Clinical Trial. Orthop Res Rev. 2019;11:167-175. Published 2019 Nov 5. doi:10.2147/ORR.S218698</div>\n</div>\n</div>\n</div>','Tennis Elbow or Lateral Epicondylitis','','inherit','closed','closed','','2024-autosave-v1','','','2020-09-12 20:39:27','2020-09-12 20:39:27','',2024,'https://www.drfields.com/uncategorized/2024-autosave-v1/',0,'revision','',0),(4123,9,'2020-09-12 20:29:32','2020-09-12 20:29:32','<header id=\"heading\" class=\"heading\">\r\n<div id=\"full-view-heading\" class=\"full-view\">\r\n<h3>Read this <em>Orthopedic Review and Research</em> Medical Journal Article about Tennis Elbow Treatment with Prolotherapy versus Cortisone Injections.</h3>\r\n<em>The article shows that patients improved with both Prolotherapy and Cortisone in the short-term. However, as we have discussed in previous articles, cortisone injections did not last in the long term. Here you will see that patients who received Prolotherapy, continued to improve at the 3 month follow-up. And those who received cortisone did not.</em>\r\n\r\n<header id=\"heading\" class=\"heading\">\r\n<div id=\"full-view-heading\" class=\"full-view\">\r\n<h1 class=\"heading-title\">Is Dextrose Prolotherapy Superior To Corticosteroid Injection In Patients With Chronic Lateral Epicondylitis?: A Randomized Clinical Trial</h1>\r\n<div class=\"inline-authors\">\r\n<div class=\"authors\">\r\n<div class=\"authors-list\"><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Bayat+M&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Masume Bayat\">Masume Bayat</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-1\">1</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Raeissadat+SA&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Seyed Ahmad Raeissadat\">Seyed Ahmad Raeissadat</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-2\">2</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Mortazavian+Babaki+M&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Maryam Mortazavian Babaki\">Maryam Mortazavian Babaki</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-3\">3</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Rahimi-Dehgolan+S&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Shahram Rahimi-Dehgolan\">Shahram Rahimi-Dehgolan</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-4\">4</a></sup></span></div>\r\n</div>\r\n</div>\r\n<div class=\"short-article-details\">Affiliations <button id=\"toggle-authors\" class=\"more-details\" data-alt-text=\"Collapse\" aria-controls=\"expanded-authors\" aria-expanded=\"false\" data-pinger-ignore=\"\">expand</button></div>\r\n<ul id=\"full-view-identifiers\" class=\"identifiers\"></ul>\r\n</div>\r\n</header>\r\n<div id=\"abstract\" class=\"abstract\">\r\n<h2 class=\"title\">Abstract</h2>\r\n<div id=\"enc-abstract\" class=\"abstract-content selected\">\r\n\r\n<strong class=\"sub-title\">Purpose: </strong>To compare the efficacy of dextrose prolotherapy versus steroid injection in the treatment of patients with chronic lateral epicondylitis.\r\n\r\n<strong class=\"sub-title\">Methods: </strong>Thirty subjects with chronic lateral epicondylitis were randomly assigned into two groups of hypertonic dextrose or methylprednisolone injection. Participants were assessed through Quick DASH and VAS scores, once before injection, and then after 1- and 3-months follow-up. Two patients were excluded due to not completing the follow-up timepoints.\r\n\r\n<strong class=\"sub-title\">Results: </strong>In both groups VAS scores revealed significant improvement during the first month follow-up [mean difference (MD) = 1.9±3.3, versus 1.5±1.9 for the prolotherapy and steroid groups, respectively]. This declining trajectory continued at the third month visit in the prolotherapy group and MD reached 4.4±2.9, while it did not change remarkably in the steroid group (MD=1.9±3.4). In fact, comparing VAS scores between the 1st- and 3rd-month time points did not reveal a significant improvement in the steroid group (<i>p</i>=0.6). Also, the Quick DASH index showed a similar pattern and improved remarkably in both groups during the first visit. However, only the efficacy in the prolotherapy group persisted after 3-month follow-up (MD = 9.5±21.6, <i>p</i>=0.044). One month after injections no preference between the two interventions was observed (<i>p</i>=0.74 for VAS and 0.14 for Quick DASH score). However, the 3rd-month follow-up revealed a meaningful superiority (<i>p</i>=0.03 for VAS and <i>p</i>=0.01 for Quick DASH score) favoring the prolotherapy method.\r\n\r\n<strong class=\"sub-title\">Conclusion: </strong>Both methods were proven to be effective in the short-term treatment of chronic lateral epicondylitis, but dextrose prolotherapy seems to be slightly more efficacious than steroid injection over a longer period.<b>Clinical trial registration:</b> Iranian Registry of Clinical Trials Database: IRCT20170311033000N3.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</header>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"><a href=\"/Articles/Prolotherapy-Research/Elbow\"><img title=\"Elbow Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium.png\" alt=\"Elbow Pain\" /></a><a href=\"/Articles/Prolotherapy-Research/Elbow\">Elbow</a></div>\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\">Bayat M, Raeissadat SA, Mortazavian Babaki M, Rahimi-Dehgolan S. Is Dextrose Prolotherapy Superior To Corticosteroid Injection In Patients With Chronic Lateral Epicondylitis?: A Randomized Clinical Trial. <i>Orthop Res Rev</i>. 2019;11:167-175. Published 2019 Nov 5. doi:10.2147/ORR.S218698</div>\r\n</div>\r\n</div>\r\n</div>','Tennis Elbow or Lateral Epicondylitis','','inherit','closed','closed','','2024-revision-v1','','','2020-09-12 20:29:32','2020-09-12 20:29:32','',2024,'https://www.drfields.com/uncategorized/2024-revision-v1/',0,'revision','',0),(4124,9,'2020-09-12 20:31:31','2020-09-12 20:31:31','Prolotherapy Is a Lasting Treatment for Tennis Elbow','Prolotherapy Is a Lasting Treatment for Tennis Elbow','Prolotherapy Is a Lasting Treatment for Tennis Elbow','inherit','open','closed','','elbow-pain-medium-2','','','2020-09-12 20:32:33','2020-09-12 20:32:33','',2024,'https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium-1.png',0,'attachment','image/png',0),(4125,9,'2020-09-12 20:38:24','2020-09-12 20:38:24','<header id=\"heading\" class=\"heading\">\r\n<div id=\"full-view-heading\" class=\"full-view\">\r\n\r\n[caption id=\"attachment_4124\" align=\"alignright\" width=\"530\"]<img class=\" wp-image-4124\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium-1.png\" alt=\"Tennis Elbow\" width=\"530\" height=\"530\" /> <strong>                  Prolotherapy Is a Lasting Treatment for Tennis Elbo</strong>w[/caption]\r\n<h3>Read this <em>Orthopedic Review and Research</em> Medical Journal Article about Tennis Elbow Treatment with Prolotherapy versus Cortisone Injections.</h3>\r\n<em>The article shows that patients improved with both Prolotherapy and Cortisone in the short-term. However, as we have discussed in <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">previous articles</a>, cortisone injections did not last in the long term. Here you will see that patients who received Prolotherapy, continued to improve at the 3 month follow-up. And those who received cortisone did not.</em>\r\n\r\n<header id=\"heading\" class=\"heading\">\r\n<div id=\"full-view-heading\" class=\"full-view\">\r\n<h3 class=\"heading-title\">Is Dextrose Prolotherapy Superior To Corticosteroid Injection In Patients With Chronic Lateral Epicondylitis?: A Randomized Clinical Trial</h3>\r\n<div class=\"inline-authors\">\r\n<div class=\"authors\">\r\n<div class=\"authors-list\"><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Bayat+M&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Masume Bayat\">Masume Bayat</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-1\">1</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Raeissadat+SA&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Seyed Ahmad Raeissadat\">Seyed Ahmad Raeissadat</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-2\">2</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Mortazavian+Babaki+M&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Maryam Mortazavian Babaki\">Maryam Mortazavian Babaki</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-3\">3</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Rahimi-Dehgolan+S&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Shahram Rahimi-Dehgolan\">Shahram Rahimi-Dehgolan</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-4\">4</a></sup></span></div>\r\n</div>\r\n</div>\r\n<div class=\"short-article-details\">Affiliations <button id=\"toggle-authors\" class=\"more-details\" data-alt-text=\"Collapse\" aria-controls=\"expanded-authors\" aria-expanded=\"false\" data-pinger-ignore=\"\">expand</button></div>\r\n<ul id=\"full-view-identifiers\" class=\"identifiers\"></ul>\r\n</div>\r\n</header>\r\n<div id=\"abstract\" class=\"abstract\">\r\n<h2 class=\"title\"><a href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/\">Abstract</a></h2>\r\n<div id=\"enc-abstract\" class=\"abstract-content selected\">\r\n\r\n<strong class=\"sub-title\">Purpose: </strong>To compare the efficacy of dextrose prolotherapy versus steroid injection in the treatment of patients with chronic lateral epicondylitis.\r\n\r\n<strong class=\"sub-title\">Methods: </strong>Thirty subjects with chronic lateral epicondylitis were randomly assigned into two groups of hypertonic dextrose or methylprednisolone injection. Participants were assessed through Quick DASH and VAS scores, once before injection, and then after 1- and 3-months follow-up. Two patients were excluded due to not completing the follow-up timepoints.\r\n\r\n<strong class=\"sub-title\">Results: </strong>In both groups VAS scores revealed significant improvement during the first month follow-up [mean difference (MD) = 1.9±3.3, versus 1.5±1.9 for the prolotherapy and steroid groups, respectively]. This declining trajectory continued at the third month visit in the prolotherapy group and MD reached 4.4±2.9, while it did not change remarkably in the steroid group (MD=1.9±3.4).\r\n\r\nIn fact, comparing VAS scores between the 1st- and 3rd-month time points did not reveal a significant improvement in the steroid group (<i>p</i>=0.6). Also, the Quick DASH index showed a similar pattern and improved remarkably in both groups during the first visit.\r\n<h4><strong>However, only the efficacy in the prolotherapy group persisted after 3-month follow-up (MD = 9.5±21.6, <i>p</i>=0.044)</strong>.</h4>\r\nOne month after injections no preference between the two interventions was observed (<i>p</i>=0.74 for VAS and 0.14 for Quick DASH score). However, the 3rd-month follow-up revealed a meaningful superiority (<i>p</i>=0.03 for VAS and <i>p</i>=0.01 for Quick DASH score) favoring the prolotherapy method.\r\n\r\n<strong class=\"sub-title\">Conclusion: </strong>Both methods were proven to be effective in the short-term treatment of chronic lateral epicondylitis, but dextrose prolotherapy seems to be slightly more efficacious than steroid injection over a longer period.<b>Clinical trial registration:</b> Iranian Registry of Clinical Trials Database: IRCT20170311033000N3.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</header>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">Read other articles about cortisone or corticosteroid injections:</div>\r\n<div>\r\n<h3><a title=\"Cortisone – Is it Really Good for You\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">Cortisone – Is it Really Good for You</a></h3>\r\n<h3><a title=\"Cortisone Injections Are As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-injections-are-as-safe-as-you-think/\">Cortisone Injections Are They As Safe As You Think</a></h3>\r\n</div>\r\n<h3 class=\"large_thumb\">Reference:</h3>\r\n<div class=\"large_thumb\">Bayat M, Raeissadat SA, Mortazavian Babaki M, Rahimi-Dehgolan S. Is Dextrose Prolotherapy Superior To Corticosteroid Injection In Patients With Chronic Lateral Epicondylitis?: A Randomized Clinical Trial. Orthop Res Rev. 2019;11:167-175. Published 2019 Nov 5. doi:10.2147/ORR.S218698</div>\r\n</div>\r\n</div>\r\n</div>','Tennis Elbow or Lateral Epicondylitis','','inherit','closed','closed','','2024-revision-v1','','','2020-09-12 20:38:24','2020-09-12 20:38:24','',2024,'https://www.drfields.com/uncategorized/2024-revision-v1/',0,'revision','',0),(4126,9,'2020-09-12 20:40:29','2020-09-12 20:40:29','<header id=\"heading\" class=\"heading\">\r\n<div id=\"full-view-heading\" class=\"full-view\">\r\n\r\n[caption id=\"attachment_4124\" align=\"alignright\" width=\"530\"]<img class=\" wp-image-4124\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium-1.png\" alt=\"Tennis Elbow\" width=\"530\" height=\"530\" /> <strong>                  Prolotherapy Is a Lasting Treatment for Tennis Elbo</strong>w[/caption]\r\n<h3>Read this <em>Orthopedic Review and Research</em> Medical Journal Article about Tennis Elbow Treatment with Prolotherapy versus Cortisone Injections.</h3>\r\n<em>The article shows that patients improved with both Prolotherapy and Cortisone in the short-term. However, as we have discussed in <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">previous articles</a>, cortisone injections did not last in the long term. Here you will see that patients who received Prolotherapy, continued to improve at the 3 month follow-up. And those who received cortisone did not.</em>\r\n\r\n<header id=\"heading\" class=\"heading\">\r\n<div id=\"full-view-heading\" class=\"full-view\">\r\n<h3 class=\"heading-title\">Is Dextrose Prolotherapy Superior To Corticosteroid Injection In Patients With Chronic Lateral Epicondylitis?: A Randomized Clinical Trial</h3>\r\n<div class=\"inline-authors\">\r\n<div class=\"authors\">\r\n<div class=\"authors-list\"><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Bayat+M&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Masume Bayat\">Masume Bayat</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-1\">1</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Raeissadat+SA&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Seyed Ahmad Raeissadat\">Seyed Ahmad Raeissadat</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-2\">2</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Mortazavian+Babaki+M&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Maryam Mortazavian Babaki\">Maryam Mortazavian Babaki</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-3\">3</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Rahimi-Dehgolan+S&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Shahram Rahimi-Dehgolan\">Shahram Rahimi-Dehgolan</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-4\">4</a></sup></span></div>\r\n</div>\r\n</div>\r\n<div class=\"short-article-details\">Affiliations <button id=\"toggle-authors\" class=\"more-details\" data-alt-text=\"Collapse\" aria-controls=\"expanded-authors\" aria-expanded=\"false\" data-pinger-ignore=\"\">expand</button></div>\r\n<ul id=\"full-view-identifiers\" class=\"identifiers\"></ul>\r\n</div>\r\n</header>\r\n<div id=\"abstract\" class=\"abstract\">\r\n<h2 class=\"title\"><a href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/\">Abstract</a></h2>\r\n<div id=\"enc-abstract\" class=\"abstract-content selected\">\r\n\r\n<strong class=\"sub-title\">Purpose: </strong>To compare the efficacy of dextrose prolotherapy versus steroid injection in the treatment of patients with chronic lateral epicondylitis.\r\n\r\n<strong class=\"sub-title\">Methods: </strong>Thirty subjects with chronic lateral epicondylitis were randomly assigned into two groups of hypertonic dextrose or methylprednisolone injection. Participants were assessed through Quick DASH and VAS scores, once before injection, and then after 1- and 3-months follow-up. And two patients were excluded due to not completing the follow-up timepoints.\r\n\r\n<strong class=\"sub-title\">Results: </strong>In both groups VAS scores revealed significant improvement during the first month follow-up [mean difference (MD) = 1.9±3.3, versus 1.5±1.9 for the prolotherapy and steroid groups, respectively]. This declining trajectory continued at the third month visit in the prolotherapy group and MD reached 4.4±2.9, while it did not change remarkably in the steroid group (MD=1.9±3.4).\r\n\r\nIn fact, comparing VAS scores between the 1st- and 3rd-month time points did not reveal a significant improvement in the steroid group (<i>p</i>=0.6). Also, the Quick DASH index showed a similar pattern and improved remarkably in both groups during the first visit.\r\n<h4><strong>However, only the efficacy in the prolotherapy group persisted after 3-month follow-up (MD = 9.5±21.6, <i>p</i>=0.044)</strong>.</h4>\r\nOne month after injections no preference was observed between the two interventions (<i>p</i>=0.74 for VAS and 0.14 for Quick DASH score). However, the 3rd-month follow-up revealed a meaningful superiority (<i>p</i>=0.03 for VAS and <i>p</i>=0.01 for Quick DASH score) favoring the prolotherapy method.\r\n\r\n<strong class=\"sub-title\">Conclusion: </strong>Both methods were proven to be effective in the short-term treatment of chronic lateral epicondylitis, but dextrose prolotherapy seems to be slightly more efficacious than steroid injection over a longer period.<b>Clinical trial registration:</b> Iranian Registry of Clinical Trials Database: IRCT20170311033000N3.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</header>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">Read other articles about cortisone or corticosteroid injections:</div>\r\n<div>\r\n<h3><a title=\"Cortisone – Is it Really Good for You\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">Cortisone – Is it Really Good for You</a></h3>\r\n<h3><a title=\"Cortisone Injections Are As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-injections-are-as-safe-as-you-think/\">Cortisone Injections: Are They As Safe As You Think</a></h3>\r\n</div>\r\n<h3 class=\"large_thumb\">Reference:</h3>\r\n<div class=\"large_thumb\">Bayat M, Raeissadat SA, Mortazavian Babaki M, Rahimi-Dehgolan S. Is Dextrose Prolotherapy Superior To Corticosteroid Injection In Patients With Chronic Lateral Epicondylitis?: A Randomized Clinical Trial. Orthop Res Rev. 2019;11:167-175. Published 2019 Nov 5. doi:10.2147/ORR.S218698</div>\r\n</div>\r\n</div>\r\n</div>','Tennis Elbow or Lateral Epicondylitis','','inherit','closed','closed','','2024-revision-v1','','','2020-09-12 20:40:29','2020-09-12 20:40:29','',2024,'https://www.drfields.com/uncategorized/2024-revision-v1/',0,'revision','',0),(4127,9,'2020-09-12 20:40:48','2020-09-12 20:40:48','We have made reference to cortisone injections in several previous articles regarding treatment options for joint pain, because cortisone (steroid injection) is generally recommended by conventional medicine. Cortisone treatment may only result in temporary relief. And it is frequently used to delay the eventual joint replacement.\r\n\r\nBut did you know this commonly used treatment option may not be as safe as you think? Recently released evidence in the medical journal “Radiology,” describes the negative risks of using cortisone injections. <a href=\"#_edn1\" name=\"_ednref1\">[i]</a>Although prior studies have been conducted showing cortisone to have a negative impact on joints, this most recent article helps to bring awareness to the adverse effects cortisone injections have on the joint.\r\n\r\n[caption id=\"attachment_4020\" align=\"alignright\" width=\"400\"]<img class=\"wp-image-4020 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2020/08/cortisone-400x500.png\" alt=\"Cortisone\" width=\"400\" height=\"500\" /> <strong>     Cortisone Injections Can Be Toxic to Cartilage</strong>[/caption]\r\n<h2>What Happens When Cortisone Is Injected Into the Joint?</h2>\r\n<em><strong>Cortisone appears to be toxic to cartilage.</strong></em> When cortisone is injected into the joint, it actually boosts the progression of the destruction of cartilage. That means it accelerates arthritis.\r\n\r\nOftentimes, cortisone is injected into joints for relief of arthritis pain and the symptoms associated with it. But doesn\'t it seem contrary then, to use a “treatment” that makes arthritis worse, in an effort to treat it? Cortisone destroys cartilage, boosts cell death in the joint, and increases bone loss.\r\n<h2>Behind the Use of Cortisone Injections</h2>\r\nArthritis is a very common disease of the joint that limits activity and quality of life. It often results in disability. In an effort to treat arthritis, physicians initially approach pain and symptom control in a non-surgical fashion, generally attempting to delay the eventual joint replacement.\r\n\r\nAdditionally, older or sicker patients may not be able to tolerate surgery, and in those cases, more conservative treatments are needed and recommended. Cortisone injections may provide some patients with days of relief. Others may get months of pain and symptom control with cortisone injections into the joint. For this reason it is a commonly performed treatment, because it does reduce the inflammation and swelling of arthritis.\r\n\r\nPhysicians have known there were risks involved in the use of cortisone injections into joints! <em><strong>Even though the study mentioned in this article is a new study, there have been many previous studies demonstrating the risks and the damage cortisone does to the joint structures.</strong></em> That is why, when your physician discusses cortisone injection with you, it is recommended that the injections not be given more than once every three months. Hopefully, the reason behind the limits is explained as well. It is important for the patient to be educated on the risks of treatment with cortisone injections.\r\n<h2>Cortisone Injections May Do More Harm than Good</h2>\r\nThe researchers in this most recent study looked at the effect of cortisone injected into knees and hips. And they found that cortisone boosted the progression of arthritis and <strong>accelerated the need for joint replacement surgery.</strong>\r\n\r\nThe researchers looked at 459 patients who received one to three cortisone injections into the hip or knee in 2018. Almost a tenth developed complications such as cartilage loss, stress fractures, bone loss, and joint destruction in the two to fifteen months following the injections. The authors note that this percentage may be an understatement because half of the participants did not receive follow-up imaging tests to assess the health of their joints.\r\n\r\n<strong>In summary, the studies are showing that cortisone injections accelerate arthritis and can be detrimental in the long-run</strong>. But even with this knowledge, cortisone injections continue to be recommended frequently for joint pain. Millions of Americans suffer from arthritis and its symptoms of pain, swelling, cartilage loss, and bone destruction. Sufferers want relief, and the injections often give relief. And they are also covered by insurance.\r\n<h3>Alternatives to Cortisone Injections</h3>\r\nGiven that cortisone injections are being given more and more to treat pain in patients with joint arthritis, what is the alternative? Especially when you consider that many arthritis sufferers are at the point where they need relief to just live day to day.\r\n\r\nThat’s where Regenerative Orthopedics comes in!  Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to<strong> actually repair the arthritic joint.</strong> These treatments provide pain relief. But they don’t provide relief at the expense of the joint. <em><strong>They actually heal the joint, strengthen the structures of the joints, and even boost growth of cartilage</strong></em>. Regenerative Orthopedics regenerates the joint rather than causing degeneration like what occurs with cortisone injections.\r\n\r\nThere is also minimal downtime needed to receive these regenerative treatments. That means you can continue to exercise, and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire, while returning function to your painful arthritic joint, and helping you to once again enjoy the activities you desire to do.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\"><strong>[i]</strong></a> Kompel AJ, Roemer FW, Murakami AM, Dias LE, Crema MD, Guermazi A.  Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology. Oct 15 2019. <a href=\"https://doi.org/10.1148/radiol.2019190341\" target=\"_blank\" rel=\"noopener noreferrer\">https://doi.org/10.1148/radiol.2019190341</a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Cortisone Injections: Are They As Safe As You Think','','inherit','closed','closed','','2915-revision-v1','','','2020-09-12 20:40:48','2020-09-12 20:40:48','',2915,'https://www.drfields.com/uncategorized/2915-revision-v1/',0,'revision','',0),(4128,9,'2020-09-12 20:45:18','2020-09-12 20:45:18','<header id=\"heading\" class=\"heading\">\r\n<div id=\"full-view-heading\" class=\"full-view\">\r\n\r\n[caption id=\"attachment_4124\" align=\"alignright\" width=\"530\"]<img class=\" wp-image-4124\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium-1.png\" alt=\"Tennis Elbow\" width=\"530\" height=\"530\" /> <strong>                  Prolotherapy Is a Lasting Treatment for Tennis Elbo</strong>w[/caption]\r\n<h3>Read this <em>Orthopedic Review and Research</em> Medical Journal Article about Tennis Elbow Treatment with Prolotherapy versus Cortisone Injections.</h3>\r\n<em>The article shows that patients improved with both Prolotherapy and Cortisone in the short-term. However, as we have discussed in <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">previous articles</a>, cortisone injections did not last in the long term. Here you will see that patients who received Prolotherapy, continued to improve at the 3 month follow-up. And those who received cortisone did not.</em>\r\n\r\n<header id=\"heading\" class=\"heading\">\r\n<div id=\"full-view-heading\" class=\"full-view\">\r\n<h3 class=\"heading-title\">Is Dextrose Prolotherapy Superior To Corticosteroid Injection In Patients With Chronic Lateral Epicondylitis?: A Randomized Clinical Trial</h3>\r\n<div class=\"inline-authors\">\r\n<div class=\"authors\">\r\n<div class=\"authors-list\"><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Bayat+M&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Masume Bayat\">Masume Bayat</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-1\">1</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Raeissadat+SA&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Seyed Ahmad Raeissadat\">Seyed Ahmad Raeissadat</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-2\">2</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Mortazavian+Babaki+M&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Maryam Mortazavian Babaki\">Maryam Mortazavian Babaki</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-3\">3</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Rahimi-Dehgolan+S&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Shahram Rahimi-Dehgolan\">Shahram Rahimi-Dehgolan</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-4\">4</a></sup></span></div>\r\n</div>\r\n</div>\r\n<div class=\"short-article-details\">Affiliations <button id=\"toggle-authors\" class=\"more-details\" data-alt-text=\"Collapse\" aria-controls=\"expanded-authors\" aria-expanded=\"false\" data-pinger-ignore=\"\">expand</button></div>\r\n<ul id=\"full-view-identifiers\" class=\"identifiers\"></ul>\r\n</div>\r\n</header>\r\n<div id=\"abstract\" class=\"abstract\">\r\n<h2 class=\"title\"><a href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/\">Abstract</a></h2>\r\n<div id=\"enc-abstract\" class=\"abstract-content selected\">\r\n\r\n<strong class=\"sub-title\">Purpose: </strong>To compare the efficacy of dextrose prolotherapy versus steroid injection in the treatment of patients with chronic lateral epicondylitis.\r\n\r\n<strong class=\"sub-title\">Methods: </strong>Thirty subjects with chronic lateral epicondylitis were randomly assigned into two groups of hypertonic dextrose or methylprednisolone injection. Participants were assessed through Quick DASH and VAS scores, once before injection, and then after 1- and 3-months follow-up. And two patients were excluded due to not completing the follow-up timepoints.\r\n\r\n<strong class=\"sub-title\">Results: </strong>In both groups VAS scores revealed significant improvement during the first month follow-up [mean difference (MD) = 1.9±3.3, versus 1.5±1.9 for the prolotherapy and steroid groups, respectively]. This declining trajectory continued at the third month visit in the prolotherapy group and MD reached 4.4±2.9, while it did not change remarkably in the steroid group (MD=1.9±3.4).\r\n\r\nIn fact, comparing VAS scores between the 1st- and 3rd-month time points did not reveal a significant improvement in the steroid group (<i>p</i>=0.6). Also, the Quick DASH index showed a similar pattern and improved remarkably in both groups during the first visit.\r\n<h4><strong>However, only the efficacy in the prolotherapy group persisted after 3-month follow-up (MD = 9.5±21.6, <i>p</i>=0.044)</strong>.</h4>\r\nOne month after injections no preference was observed between the two interventions (<i>p</i>=0.74 for VAS and 0.14 for Quick DASH score). However, the 3rd-month follow-up revealed a meaningful superiority (<i>p</i>=0.03 for VAS and <i>p</i>=0.01 for Quick DASH score) favoring the prolotherapy method.\r\n\r\n<strong class=\"sub-title\">Conclusion: </strong>Both methods were proven to be effective in the short-term treatment of chronic lateral epicondylitis, but dextrose prolotherapy seems to be slightly more efficacious than steroid injection over a longer period.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</header>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<h3 class=\"large_thumb\">Read other articles about cortisone or corticosteroid injections:</h3>\r\n<div>\r\n<h3><a title=\"Cortisone – Is it Really Good for You\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">Cortisone – Is it Really Good for You</a></h3>\r\n<h3><a title=\"Cortisone Injections Are As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-injections-are-as-safe-as-you-think/\">Cortisone Injections: Are They As Safe As You Think</a></h3>\r\n</div>\r\n<h3 class=\"large_thumb\">Reference:</h3>\r\n<div class=\"large_thumb\">Bayat M, Raeissadat SA, Mortazavian Babaki M, Rahimi-Dehgolan S. Is Dextrose Prolotherapy Superior To Corticosteroid Injection In Patients With Chronic Lateral Epicondylitis?: A Randomized Clinical Trial. Orthop Res Rev. 2019;11:167-175. Published 2019 Nov 5. doi:10.2147/ORR.S218698</div>\r\n</div>\r\n</div>\r\n</div>','Tennis Elbow or Lateral Epicondylitis','','inherit','closed','closed','','2024-revision-v1','','','2020-09-12 20:45:18','2020-09-12 20:45:18','',2024,'https://www.drfields.com/uncategorized/2024-revision-v1/',0,'revision','',0),(4129,9,'2020-09-12 20:48:01','2020-09-12 20:48:01','<header id=\"heading\" class=\"heading\">\r\n<div id=\"full-view-heading\" class=\"full-view\">\r\n\r\n[caption id=\"attachment_4124\" align=\"alignright\" width=\"530\"]<img class=\" wp-image-4124\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium-1.png\" alt=\"Tennis Elbow\" width=\"530\" height=\"530\" /> <strong>                  Prolotherapy Is a Lasting Treatment for Tennis Elbo</strong>w[/caption]\r\n<h3>Read this <em>Orthopedic Review and Research</em> Medical Journal Article about Tennis Elbow Treatment with Prolotherapy versus Cortisone Injections.</h3>\r\n<em>The article shows that patients improved with both Prolotherapy and Cortisone in the short-term. However, as we have discussed in <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">previous articles</a>, cortisone injections did not last in the long term. Here you will see that patients who received Prolotherapy, continued to improve at the 3 month follow-up. And those who received cortisone did not.</em>\r\n\r\n<header id=\"heading\" class=\"heading\">\r\n<div id=\"full-view-heading\" class=\"full-view\">\r\n<h3 class=\"heading-title\">Is Dextrose Prolotherapy Superior To Corticosteroid Injection In Patients With Chronic Lateral Epicondylitis?: A Randomized Clinical Trial</h3>\r\n<div class=\"inline-authors\">\r\n<div class=\"authors\">\r\n<div class=\"authors-list\"><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Bayat+M&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Masume Bayat\">Masume Bayat</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-1\">1</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Raeissadat+SA&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Seyed Ahmad Raeissadat\">Seyed Ahmad Raeissadat</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-2\">2</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Mortazavian+Babaki+M&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Maryam Mortazavian Babaki\">Maryam Mortazavian Babaki</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-3\">3</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Rahimi-Dehgolan+S&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Shahram Rahimi-Dehgolan\">Shahram Rahimi-Dehgolan</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-4\">4</a></sup></span></div>\r\n</div>\r\n</div>\r\n<div class=\"short-article-details\">Affiliations <button id=\"toggle-authors\" class=\"more-details\" data-alt-text=\"Collapse\" aria-controls=\"expanded-authors\" aria-expanded=\"false\" data-pinger-ignore=\"\">expand</button></div>\r\n<ul id=\"full-view-identifiers\" class=\"identifiers\"></ul>\r\n</div>\r\n</header>\r\n<div id=\"abstract\" class=\"abstract\">\r\n<h2 class=\"title\"><a href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/\">Abstract</a></h2>\r\n<div id=\"enc-abstract\" class=\"abstract-content selected\">\r\n\r\n<strong class=\"sub-title\">Purpose: </strong>To compare the efficacy of dextrose prolotherapy versus steroid injection in the treatment of patients with chronic lateral epicondylitis.\r\n\r\n<strong class=\"sub-title\">Methods: </strong>Thirty subjects with chronic lateral epicondylitis were randomly assigned into two groups of hypertonic dextrose or methylprednisolone injection. Participants were assessed through Quick DASH and VAS scores, once before injection, and then after 1- and 3-months follow-up. And two patients were excluded due to not completing the follow-up timepoints.\r\n\r\n<strong class=\"sub-title\">Results: </strong>In both groups VAS scores revealed significant improvement during the first month follow-up [mean difference (MD) = 1.9±3.3, versus 1.5±1.9 for the prolotherapy and steroid groups, respectively]. This declining trajectory continued at the third month visit in the prolotherapy group and MD reached 4.4±2.9, while it did not change remarkably in the steroid group (MD=1.9±3.4).\r\n\r\nIn fact, comparing VAS scores between the 1st- and 3rd-month time points did not reveal a significant improvement in the steroid group (<i>p</i>=0.6). Also, the Quick DASH index showed a similar pattern and improved remarkably in both groups during the first visit.\r\n<h4><strong>However, only the efficacy in the prolotherapy group persisted after 3-month follow-up (MD = 9.5±21.6, <i>p</i>=0.044)</strong>.</h4>\r\nOne month after injections no preference was observed between the two interventions (<i>p</i>=0.74 for VAS and 0.14 for Quick DASH score). However, the 3rd-month follow-up revealed a meaningful superiority (<i>p</i>=0.03 for VAS and <i>p</i>=0.01 for Quick DASH score) favoring the prolotherapy method.\r\n\r\n<strong class=\"sub-title\">Conclusion: </strong>Both methods were proven to be effective in the short-term treatment of chronic lateral epicondylitis, but dextrose prolotherapy seems to be slightly more efficacious than steroid injection over a longer period.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</header>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<h3 class=\"large_thumb\">Read other articles about cortisone or corticosteroid injections:</h3>\r\n<div>\r\n<h3><a title=\"Cortisone – Is it Really Good for You\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">Cortisone – Is it Really Good for You</a></h3>\r\n<h3><a title=\"Cortisone Injections Are As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-injections-are-as-safe-as-you-think/\">Cortisone Injections: Are They As Safe As You Think</a></h3>\r\n</div>\r\n<h3 class=\"large_thumb\">Reference:</h3>\r\n<div class=\"large_thumb\">Bayat M, Raeissadat SA, Mortazavian Babaki M, Rahimi-Dehgolan S. Is Dextrose Prolotherapy Superior To Corticosteroid Injection In Patients With Chronic Lateral Epicondylitis?: A Randomized Clinical Trial. Orthop Res Rev. 2019;11:167-175. Published 2019 Nov 5. doi:10.2147/ORR.S218698</div>\r\n</div>\r\n</div>\r\n</div>','Prolotherapy or Cortisone','','inherit','closed','closed','','2024-revision-v1','','','2020-09-12 20:48:01','2020-09-12 20:48:01','',2024,'https://www.drfields.com/uncategorized/2024-revision-v1/',0,'revision','',0),(4130,9,'2020-09-12 20:48:27','2020-09-12 20:48:27','<header id=\"heading\" class=\"heading\">\r\n<div id=\"full-view-heading\" class=\"full-view\">\r\n\r\n[caption id=\"attachment_4124\" align=\"alignright\" width=\"530\"]<img class=\" wp-image-4124\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium-1.png\" alt=\"Tennis Elbow\" width=\"530\" height=\"530\" /> <strong>                  Prolotherapy Is a Lasting Treatment for Tennis Elbo</strong>w[/caption]\r\n<h3>Read this <em>Orthopedic Review and Research</em> Medical Journal Article about Tennis Elbow Treatment with Prolotherapy versus Cortisone Injections.</h3>\r\n<em>The article shows that patients improved with both Prolotherapy and Cortisone in the short-term. However, as we have discussed in <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">previous articles</a>, cortisone injections did not last in the long term. Here you will see that patients who received Prolotherapy, continued to improve at the 3 month follow-up. And those who received cortisone did not.</em>\r\n\r\n<header id=\"heading\" class=\"heading\">\r\n<div id=\"full-view-heading\" class=\"full-view\">\r\n<h3 class=\"heading-title\">Is Dextrose Prolotherapy Superior To Corticosteroid Injection In Patients With Chronic Lateral Epicondylitis?: A Randomized Clinical Trial</h3>\r\n<div class=\"inline-authors\">\r\n<div class=\"authors\">\r\n<div class=\"authors-list\"><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Bayat+M&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Masume Bayat\">Masume Bayat</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-1\">1</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Raeissadat+SA&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Seyed Ahmad Raeissadat\">Seyed Ahmad Raeissadat</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-2\">2</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Mortazavian+Babaki+M&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Maryam Mortazavian Babaki\">Maryam Mortazavian Babaki</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-3\">3</a></sup><span class=\"comma\">, </span></span><span class=\"authors-list-item \"><a class=\"full-name\" href=\"https://pubmed.ncbi.nlm.nih.gov/?term=Rahimi-Dehgolan+S&amp;cauthor_id=31819675\" data-ga-category=\"search\" data-ga-action=\"author_link\" data-ga-label=\"Shahram Rahimi-Dehgolan\">Shahram Rahimi-Dehgolan</a><sup class=\"affiliation-links\"><span class=\"author-sup-separator\"> </span><a class=\"affiliation-link\" href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-4\">4</a></sup></span></div>\r\n</div>\r\n</div>\r\n<div class=\"short-article-details\">Affiliations <button id=\"toggle-authors\" class=\"more-details\" data-alt-text=\"Collapse\" aria-controls=\"expanded-authors\" aria-expanded=\"false\" data-pinger-ignore=\"\">expand</button></div>\r\n<ul id=\"full-view-identifiers\" class=\"identifiers\"></ul>\r\n</div>\r\n</header>\r\n<div id=\"abstract\" class=\"abstract\">\r\n<h2 class=\"title\"><a href=\"https://pubmed.ncbi.nlm.nih.gov/31819675/\">Abstract</a></h2>\r\n<div id=\"enc-abstract\" class=\"abstract-content selected\">\r\n\r\n<strong class=\"sub-title\">Purpose: </strong>To compare the efficacy of dextrose prolotherapy versus steroid injection in the treatment of patients with chronic lateral epicondylitis.\r\n\r\n<strong class=\"sub-title\">Methods: </strong>Thirty subjects with chronic lateral epicondylitis were randomly assigned into two groups of hypertonic dextrose or methylprednisolone injection. Participants were assessed through Quick DASH and VAS scores, once before injection, and then after 1- and 3-months follow-up. And two patients were excluded due to not completing the follow-up timepoints.\r\n\r\n<strong class=\"sub-title\">Results: </strong>In both groups VAS scores revealed significant improvement during the first month follow-up [mean difference (MD) = 1.9±3.3, versus 1.5±1.9 for the prolotherapy and steroid groups, respectively]. This declining trajectory continued at the third month visit in the prolotherapy group and MD reached 4.4±2.9, while it did not change remarkably in the steroid group (MD=1.9±3.4).\r\n\r\nIn fact, comparing VAS scores between the 1st- and 3rd-month time points did not reveal a significant improvement in the steroid group (<i>p</i>=0.6). Also, the Quick DASH index showed a similar pattern and improved remarkably in both groups during the first visit.\r\n<h4><strong>However, only the efficacy in the prolotherapy group persisted after 3-month follow-up (MD = 9.5±21.6, <i>p</i>=0.044)</strong>.</h4>\r\nOne month after injections no preference was observed between the two interventions (<i>p</i>=0.74 for VAS and 0.14 for Quick DASH score). However, the 3rd-month follow-up revealed a meaningful superiority (<i>p</i>=0.03 for VAS and <i>p</i>=0.01 for Quick DASH score) favoring the prolotherapy method.\r\n\r\n<strong class=\"sub-title\">Conclusion: </strong>Both methods were proven to be effective in the short-term treatment of chronic lateral epicondylitis, but dextrose prolotherapy seems to be slightly more efficacious than steroid injection over a longer period.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</header>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<h3 class=\"large_thumb\">Read other articles about cortisone or corticosteroid injections:</h3>\r\n<div>\r\n<h3><a title=\"Cortisone – Is it Really Good for You\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/\">Cortisone – Is it Really Good for You</a></h3>\r\n<h3><a title=\"Cortisone Injections Are As Safe As You Think\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/cortisone-injections-are-as-safe-as-you-think/\">Cortisone Injections: Are They As Safe As You Think</a></h3>\r\n</div>\r\n<h3 class=\"large_thumb\">Reference:</h3>\r\n<div class=\"large_thumb\">Bayat M, Raeissadat SA, Mortazavian Babaki M, Rahimi-Dehgolan S. Is Dextrose Prolotherapy Superior To Corticosteroid Injection In Patients With Chronic Lateral Epicondylitis?: A Randomized Clinical Trial. Orthop Res Rev. 2019;11:167-175. Published 2019 Nov 5. doi:10.2147/ORR.S218698</div>\r\n</div>\r\n</div>\r\n</div>','Prolotherapy or Cortisone?','','inherit','closed','closed','','2024-revision-v1','','','2020-09-12 20:48:27','2020-09-12 20:48:27','',2024,'https://www.drfields.com/uncategorized/2024-revision-v1/',0,'revision','',0),(4131,9,'2020-09-12 21:22:28','2020-09-12 21:22:28','[caption id=\"attachment_4134\" align=\"alignright\" width=\"547\"]<img class=\" wp-image-4134\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium-1.png\" alt=\"Osgood-Schlatter\" width=\"547\" height=\"547\" /> <strong>                 Is Prolotherapy Effective for Osgood-Schlatter Disease?</strong>[/caption]\n<h3>In this research article in the medical journal <em>\"Pediatrics\",</em> the authors look at whether Prolotherapy can achieve faster results than the usual care for Osgood-Schlatter Disease in the adolescent.</h3>\n<em>Osgood-Schlatter Disease is a childhood repetitive use injury that causes a painful lump below the kneecap. It commonly affects children experiencing growth spurts and those who play sports in which they regularly run and jump are most at risk. </em>\n\nWe are including the abstract here. <a href=\"http://Read the full article by clicking here.\">But you can read the full article by clicking here.</a>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<h3>Hyperosmolar Dextrose Injection for Recalcitrant Osgood-Schlatter Disease</h3>\nGastón Andrés Topol, Leandro Ariel Podesta, Kenneth Dean Reeves, Marcelo Francisco Raya, Bradley Dean Fullerton and Hung-wen Yeh\n\n</div>\n</div>\n</div>\n<div class=\"page\" title=\"Page 2\">\n<div class=\"section\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<h4>WHAT’S KNOWN ON THIS SUBJECT:</h4>\nOsgood-Schlatter disease symptoms may wax and wane until maturity and affect sport confidence and participation periodically. Chronic sequelae may include anterior knee pain, kneeling discomfort, or sports limitation. Symptom reduction parallels resolution of patellar tendinopathy by MRI/ultrasound, although ossicles may persist radiographically.\n<h4><strong>WHAT THIS STUDY ADDS:</strong></h4>\nSmall-needle injection of the patellar tendon enthesis/tibial apophysis with 12.5% dextrose was safe and well tolerated in adolescents with recalcitrant Osgood- Schlatter disease. Dextrose injection resulted in more rapid and frequent achievement of unaltered sport and asymptomatic sport than did usual care.\n<h2>Abstract</h2>\nOBJECTIVE: To examine the potential of dextrose injection versus lido- caine injection versus supervised usual care to reduce sport alteration and sport-related symptoms in adolescent athletes with Osgood- Schlatter disease.\n\nPATIENTS AND METHODS: Girls aged 9 to 15 and boys aged 10 to 17 were randomly assigned to either therapist-supervised usual care or double-blind injection of 1% lidocaine solution with or without 12.5% dextrose. Injections were administered monthly for 3 months. All sub- jects were then offered dextrose injections monthly as needed. Unal- tered sport (Nirschl Pain Phase Scale 􏰀 4) and asymptomatic sport (Nirschl Pain Phase Scale 􏰁 0) were the threshold goals.\n\nRESULTS: Sixty-five knees in 54 athletes were treated. Compared with usual care at 3 months, unaltered sport was more common in both dextrose-treated (21 of 21 vs 13 of 22; P 􏰁 .001) and lidocaine-treated (20 of 22 vs 13 of 22; P 􏰁 .034) knees, and asymptomatic sport was more frequent in dextrose-treated knees than either lidocaine-treated (14 of 21 vs 5 of 22; P 􏰁 .006) or usual-care–treated (14 of 21 vs 3 of 22; P 􏰀 .001) knees. At 1 year, asymptomatic sport was more common in dextrose-treated knees than knees treated with only lidocaine (32 of 38 vs6of13;P􏰁.024)oronlyusualcare(32of38vs2of14;P􏰀.0001).\n\nCONCLUSIONS: Our results suggest superior symptom-reduction effi- cacy of injection therapy over usual care in the treatment of Osgood- Schlatter disease in adolescents. A significant component of the effect seems to be associated with the dextrose component of a dextrose/ lidocaine solution. Dextrose injection over the apophysis and patellar tendon origin was safe and well tolerated and resulted in more rapid and frequent achievement of unaltered sport and asymptomatic sport than usual care. Pediatrics 2011;128:e000\n\n</div>\n</div>\n</div>\n</div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<div class=\"fullwidth color_bar row-full \">\n<div class=\"container\">\n<div class=\"row-fluid\">\n<div class=\"large_thumb\">\n<p id=\"page-title\" class=\"highwire-cite-title\"><a href=\"https://pediatrics.aappublications.org/content/128/5/e1121\">Hyperosmolar Dextrose Injection for Recalcitrant Osgood-Schlatter Disease</a>. <span class=\"highwire-citation-authors\"><span class=\"highwire-citation-author first\" data-delta=\"0\">Gastón Andrés Topol</span>, <span class=\"highwire-citation-author has-tooltip hasTooltip author-popup-hover\" data-delta=\"1\" data-hasqtip=\"2\" aria-describedby=\"qtip-2\">Leandro Ariel Podesta</span>, <span class=\"highwire-citation-author has-tooltip hasTooltip\" data-delta=\"2\" data-hasqtip=\"1\" aria-describedby=\"qtip-1\">Kenneth Dean Reeves</span>, <span class=\"highwire-citation-author has-tooltip hasTooltip\" data-delta=\"3\" data-hasqtip=\"0\" aria-describedby=\"qtip-0\">Marcelo Francisco Raya</span>, <span class=\"highwire-citation-author\" data-delta=\"4\">Bradley Dean Fullerton</span> and <span class=\"highwire-citation-author\" data-delta=\"5\">Hung-wen Yeh. </span></span><em><span class=\"highwire-cite-metadata-journal highwire-cite-metadata\">Pediatrics. </span></em><span class=\"highwire-cite-metadata-date highwire-cite-metadata\">November 2011, </span><span class=\"highwire-cite-metadata-volume highwire-cite-metadata\">128 </span><span class=\"highwire-cite-metadata-issue highwire-cite-metadata\">(5) </span><span class=\"highwire-cite-metadata-pages highwire-cite-metadata\">e1121-e1128; </span><span class=\"highwire-cite-metadata-doi highwire-cite-metadata\">DOI: https://doi.org/10.1542/peds.2010-1931</span></p>\n\n</div>\n<div class=\"large_thumb\"><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a></div>\n<div class=\"large_thumb\"></div>\n<div class=\"large_thumb\"></div>\n</div>\n</div>\n</div>','Osgood-Schlatter Disease','','inherit','closed','closed','','2020-autosave-v1','','','2020-09-12 21:22:28','2020-09-12 21:22:28','',2020,'https://www.drfields.com/uncategorized/2020-autosave-v1/',0,'revision','',0),(4132,9,'2020-09-12 20:52:15','2020-09-12 20:52:15','<h6>TOPICS</h6>\r\nACL Laxity\r\nBaker\'s Cyst\r\nJumper\'s Knee (See Patellar Tendinosis)\r\nMedial Meniscus Tear\r\nOsteoarthritis Of Knee\r\n\r\n<strong>ACL LAXITY DEX: Reeves et al 2003 </strong>\r\nDextrose tightens loose ACL ligament by simple Reeves KD Hassanein K Long term effects of dextrose prolotherapy for anterior cruciate ligament laxity: A prospective and consecutive patient study. Alt Ther Hlth Med May-Jun 2003, 9(3): p58-62.\r\nTo read the entire study click here --&gt; View ACL Laxity Study\r\n\r\nMethod: 16 knees with machine measured ACL laxity (KT-1000 arthrometer) were injected bimonthly with 10-25% dextrose solution for 1 year and then an average of 4 times yearly thereafter until 3 year follow-up.\r\n\r\nSummary: Using simple dextrose injection into 16 knees with a loose ACL ligament, 10/16 knees were no longer loose by machine measurement at time of follow-up, and symptoms were improved. Symptom of osteoarthritits improved even in those who still tested loose. At the 3 year follow-up pain with walking had improved by 43% , subjective swelling improved 63%, flexion range of motion improved by 10.5 degrees, and KT1000 ADD (machine measure of ACL ligament looseness) improved by 71%.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"><a href=\"/Articles/Prolotherapy-Research/Knee\"><img title=\"Knee Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium.png\" alt=\"Knee Pain\" /></a><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a></div>\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n</div>\r\n</div>\r\n</div>','Knee','','inherit','closed','closed','','2020-revision-v1','','','2020-09-12 20:52:15','2020-09-12 20:52:15','',2020,'https://www.drfields.com/uncategorized/2020-revision-v1/',0,'revision','',0),(4133,9,'2020-09-12 21:14:11','2020-09-12 21:14:11','<h3>In this research article in the medical journal <em>\"Pediatrics\",</em> the authors look at whether Prolotherapy can achieve faster results than the usual care for Osgood-Schlatter Disease in the adolescent.</h3>\r\n<em>Osgood-Schlatter Disease is a childhood repetitive use injury that causes a painful lump below the kneecap. It commonly affects children experiencing growth spurts and those who play sports in which they regularly run and jump are most at risk. </em>\r\n\r\nWe are including the abstract here. <a href=\"http://Read the full article by clicking here.\">But you can read the full article by clicking here.</a>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n<h3>Hyperosmolar Dextrose Injection for Recalcitrant Osgood-Schlatter Disease</h3>\r\nGastón Andrés Topol, Leandro Ariel Podesta, Kenneth Dean Reeves, Marcelo Francisco Raya, Bradley Dean Fullerton and Hung-wen Yeh\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nWHAT’S KNOWN ON THIS SUBJECT: Osgood-Schlatter disease symptoms may wax and wane until maturity and affect sport confidence and participation periodically. Chronic sequelae may include anterior knee pain, kneeling discomfort, or sports limitation. Symptom reduction parallels resolution of patellar tendinopathy by MRI/ultrasound, although ossicles may persist radiographically.\r\n\r\nWHAT THIS STUDY ADDS: Small-needle injection of the patellar tendon enthesis/tibial apophysis with 12.5% dextrose was safe and well tolerated in adolescents with recalcitrant Osgood- Schlatter disease. Dextrose injection resulted in more rapid and frequent achievement of unaltered sport and asymptomatic sport than did usual care.\r\n\r\nabstract\r\n\r\nOBJECTIVE: To examine the potential of dextrose injection versus lido- caine injection versus supervised usual care to reduce sport alteration and sport-related symptoms in adolescent athletes with Osgood- Schlatter disease.\r\n\r\nPATIENTS AND METHODS: Girls aged 9 to 15 and boys aged 10 to 17 were randomly assigned to either therapist-supervised usual care or double-blind injection of 1% lidocaine solution with or without 12.5% dextrose. Injections were administered monthly for 3 months. All sub- jects were then offered dextrose injections monthly as needed. Unal- tered sport (Nirschl Pain Phase Scale 􏰀 4) and asymptomatic sport (Nirschl Pain Phase Scale 􏰁 0) were the threshold goals.\r\n\r\nRESULTS: Sixty-five knees in 54 athletes were treated. Compared with usual care at 3 months, unaltered sport was more common in both dextrose-treated (21 of 21 vs 13 of 22; P 􏰁 .001) and lidocaine-treated (20 of 22 vs 13 of 22; P 􏰁 .034) knees, and asymptomatic sport was more frequent in dextrose-treated knees than either lidocaine-treated (14 of 21 vs 5 of 22; P 􏰁 .006) or usual-care–treated (14 of 21 vs 3 of 22; P 􏰀 .001) knees. At 1 year, asymptomatic sport was more common in dextrose-treated knees than knees treated with only lidocaine (32 of 38 vs6of13;P􏰁.024)oronlyusualcare(32of38vs2of14;P􏰀.0001).\r\n\r\nCONCLUSIONS: Our results suggest superior symptom-reduction effi- cacy of injection therapy over usual care in the treatment of Osgood- Schlatter disease in adolescents. A significant component of the effect seems to be associated with the dextrose component of a dextrose/ lidocaine solution. Dextrose injection over the apophysis and patellar tendon origin was safe and well tolerated and resulted in more rapid and frequent achievement of unaltered sport and asymptomatic sport than usual care. Pediatrics 2011;128:e000\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a></div>\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n</div>\r\n</div>\r\n</div>','Osgood-Schlatter Disease','','inherit','closed','closed','','2020-revision-v1','','','2020-09-12 21:14:11','2020-09-12 21:14:11','',2020,'https://www.drfields.com/uncategorized/2020-revision-v1/',0,'revision','',0),(4134,9,'2020-09-12 21:15:36','2020-09-12 21:15:36','Is Prolotherapy Effective for Osgood-Schlatter Disease?','Knee Pain Medium','Is Prolotherapy Effective for Osgood-Schlatter Disease?','inherit','open','closed','','knee-pain-medium-2','','','2020-09-12 21:16:25','2020-09-12 21:16:25','',2020,'https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium-1.png',0,'attachment','image/png',0),(4135,9,'2020-09-12 21:22:32','2020-09-12 21:22:32','[caption id=\"attachment_4134\" align=\"alignright\" width=\"547\"]<img class=\" wp-image-4134\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium-1.png\" alt=\"Osgood-Schlatter\" width=\"547\" height=\"547\" /> <strong>                 Is Prolotherapy Effective for Osgood-Schlatter Disease?</strong>[/caption]\r\n<h3>In this research article in the medical journal <em>\"Pediatrics\",</em> the authors look at whether Prolotherapy can achieve faster results than the usual care for Osgood-Schlatter Disease in the adolescent.</h3>\r\n<em>Osgood-Schlatter Disease is a childhood repetitive use injury that causes a painful lump below the kneecap. It commonly affects children experiencing growth spurts and those who play sports in which they regularly run and jump are most at risk. </em>\r\n\r\nWe are including the abstract here. <a href=\"http://Read the full article by clicking here.\">But you can read the full article by clicking here.</a>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n<h3>Hyperosmolar Dextrose Injection for Recalcitrant Osgood-Schlatter Disease</h3>\r\nGastón Andrés Topol, Leandro Ariel Podesta, Kenneth Dean Reeves, Marcelo Francisco Raya, Bradley Dean Fullerton and Hung-wen Yeh\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n<h4>WHAT’S KNOWN ON THIS SUBJECT:</h4>\r\nOsgood-Schlatter disease symptoms may wax and wane until maturity and affect sport confidence and participation periodically. Chronic sequelae may include anterior knee pain, kneeling discomfort, or sports limitation. Symptom reduction parallels resolution of patellar tendinopathy by MRI/ultrasound, although ossicles may persist radiographically.\r\n<h4><strong>WHAT THIS STUDY ADDS:</strong></h4>\r\nSmall-needle injection of the patellar tendon enthesis/tibial apophysis with 12.5% dextrose was safe and well tolerated in adolescents with recalcitrant Osgood- Schlatter disease. Dextrose injection resulted in more rapid and frequent achievement of unaltered sport and asymptomatic sport than did usual care.\r\n<h2>Abstract</h2>\r\nOBJECTIVE: To examine the potential of dextrose injection versus lido- caine injection versus supervised usual care to reduce sport alteration and sport-related symptoms in adolescent athletes with Osgood- Schlatter disease.\r\n\r\nPATIENTS AND METHODS: Girls aged 9 to 15 and boys aged 10 to 17 were randomly assigned to either therapist-supervised usual care or double-blind injection of 1% lidocaine solution with or without 12.5% dextrose. Injections were administered monthly for 3 months. All sub- jects were then offered dextrose injections monthly as needed. Unal- tered sport (Nirschl Pain Phase Scale 􏰀 4) and asymptomatic sport (Nirschl Pain Phase Scale 􏰁 0) were the threshold goals.\r\n\r\nRESULTS: Sixty-five knees in 54 athletes were treated. Compared with usual care at 3 months, unaltered sport was more common in both dextrose-treated (21 of 21 vs 13 of 22; P 􏰁 .001) and lidocaine-treated (20 of 22 vs 13 of 22; P 􏰁 .034) knees, and asymptomatic sport was more frequent in dextrose-treated knees than either lidocaine-treated (14 of 21 vs 5 of 22; P 􏰁 .006) or usual-care–treated (14 of 21 vs 3 of 22; P 􏰀 .001) knees. At 1 year, asymptomatic sport was more common in dextrose-treated knees than knees treated with only lidocaine (32 of 38 vs6of13;P􏰁.024)oronlyusualcare(32of38vs2of14;P􏰀.0001).\r\n\r\nCONCLUSIONS: Our results suggest superior symptom-reduction effi- cacy of injection therapy over usual care in the treatment of Osgood- Schlatter disease in adolescents. A significant component of the effect seems to be associated with the dextrose component of a dextrose/ lidocaine solution. Dextrose injection over the apophysis and patellar tendon origin was safe and well tolerated and resulted in more rapid and frequent achievement of unaltered sport and asymptomatic sport than usual care. Pediatrics 2011;128:e000\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\">\r\n<p id=\"page-title\" class=\"highwire-cite-title\"><a href=\"https://pediatrics.aappublications.org/content/128/5/e1121\">Hyperosmolar Dextrose Injection for Recalcitrant Osgood-Schlatter Disease</a>. <span class=\"highwire-citation-authors\"><span class=\"highwire-citation-author first\" data-delta=\"0\">Gastón Andrés Topol</span>, <span class=\"highwire-citation-author has-tooltip hasTooltip author-popup-hover\" data-delta=\"1\" data-hasqtip=\"2\" aria-describedby=\"qtip-2\">Leandro Ariel Podesta</span>, <span class=\"highwire-citation-author has-tooltip hasTooltip\" data-delta=\"2\" data-hasqtip=\"1\" aria-describedby=\"qtip-1\">Kenneth Dean Reeves</span>, <span class=\"highwire-citation-author has-tooltip hasTooltip\" data-delta=\"3\" data-hasqtip=\"0\" aria-describedby=\"qtip-0\">Marcelo Francisco Raya</span>, <span class=\"highwire-citation-author\" data-delta=\"4\">Bradley Dean Fullerton</span> and <span class=\"highwire-citation-author\" data-delta=\"5\">Hung-wen Yeh. </span></span><em><span class=\"highwire-cite-metadata-journal highwire-cite-metadata\">Pediatrics. </span></em><span class=\"highwire-cite-metadata-date highwire-cite-metadata\">November 2011, </span><span class=\"highwire-cite-metadata-volume highwire-cite-metadata\">128 </span><span class=\"highwire-cite-metadata-issue highwire-cite-metadata\">(5) </span><span class=\"highwire-cite-metadata-pages highwire-cite-metadata\">e1121-e1128; </span><span class=\"highwire-cite-metadata-doi highwire-cite-metadata\">DOI: https://doi.org/10.1542/peds.2010-1931</span></p>\r\n\r\n</div>\r\n<div class=\"large_thumb\"><a href=\"/Articles/Prolotherapy-Research/Knee\">Knee</a></div>\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n</div>\r\n</div>\r\n</div>','Osgood-Schlatter Disease','','inherit','closed','closed','','2020-revision-v1','','','2020-09-12 21:22:32','2020-09-12 21:22:32','',2020,'https://www.drfields.com/uncategorized/2020-revision-v1/',0,'revision','',0),(4136,9,'2020-09-12 22:05:23','2020-09-12 22:05:23','[caption id=\"attachment_4139\" align=\"alignleft\" width=\"737\"]<img class=\" wp-image-4139\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/arthritis-symptoms-500x500.jpg\" alt=\"Arthritis Pain\" width=\"737\" height=\"737\" /> <strong>                                 <em> Prolotherapy Is More Effective Than Other Treatments</em></strong>[/caption]\n<h1>How Effective Is Prolotherapy versus Exercise Or Cortisone for Arthritis Pain?</h1>\n<em>Researchers in the Journal of Pain Research compared dextrose Prolotherapy to different arthritis pain treatments such as exercise, local anesthesia injections, and even cortisone injections. </em>\n\n<em>What did they conclude? </em>\n\n<em>Dextrose prolotherapy provided a better effect than exercise, local anesthetics, and probably corticosteroids at their 6 months follow-up.</em>\n\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/\">Read the full article by clicking here.</a>\n\nAnd take a look at the abstract below.\n<h3></h3>\n<h3></h3>\n<h2 class=\"content-title\">Comparative effectiveness of dextrose prolotherapy versus control injections and exercise in the management of osteoarthritis pain: a systematic review and meta-analysis</h2>\n<div class=\"half_rhythm\">\n<div class=\"contrib-group fm-author\"><a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Hung%20CY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Chen-Yu Hung</a>,<sup>1</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Hsiao%20MY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Ming-Yen Hsiao</a>,<sup>2,</sup><sup>3</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Chang%20KV%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Ke-Vin Chang</a>,<sup>1,</sup><sup>2</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Han%20DS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Der-Sheng Han</a>,<sup>1,</sup><sup>2</sup> and <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Wang%20TG%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Tyng-Guey Wang</a><sup>2,</sup><sup>3</sup></div>\n<div class=\"fm-panel half_rhythm\">\n<div class=\"togglers\"><a class=\"pmctoggle\" href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#\">Author information</a> <a class=\"pmctoggle\" href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#\">Copyright and License information</a> <a href=\"https://www.ncbi.nlm.nih.gov/pmc/about/disclaimer/\">Disclaimer</a></div>\n<div id=\"pmclinksbox\" class=\"links-box whole_rhythm\">\n<div class=\"fm-panel\">\n<h2 id=\"idm140468391900000title\" class=\"head no_bottom_margin ui-helper-clearfix\">Abstract</h2>\n<div>\n<div id=\"__sec1\" class=\"sec sec-first\">\n<h3 id=\"__sec1title\">Background</h3>\n<p id=\"__p1\" class=\"p p-first-last\">Increasing evidence has supported the use of dextrose prolotherapy for patients with osteoarthritis. However, the real benefits may be affected by differences in injection protocols, comparative regimens, and evaluation scales.</p>\n\n</div>\n<div id=\"__sec2\" class=\"sec\">\n<h3 id=\"__sec2title\">Methods</h3>\n<p id=\"__p2\" class=\"p p-first-last\">PubMed and Scopus were searched from the earliest record until February 2016. One single-arm study and five randomized controlled trials were included, comprising 326 participants. We estimated the effect sizes of pain reduction before and after serial dextrose injections and compared the values between dextrose prolotherapy, comparative regimens, and exercise 6 months after the initial injection.</p>\n\n</div>\n<div id=\"__sec3\" class=\"sec\">\n<h3 id=\"__sec3title\">Results</h3>\n<p id=\"__p3\" class=\"p p-first-last\">Regarding the treatment arm using dextrose prolotherapy, the effect sizes compared with baseline were 0.65 (95% confidence interval [CI], 0.14–1.17), 0.84 (95% CI, 0.40–1.27), 0.85 (95% CI, 0.60–1.10), and 0.87 (95% CI, 0.53–1.21) after the first, second, third, and fourth or more injections, respectively. The overall effect of dextrose was better than control injections (effect size, 0.36; 95% CI, 0.10–0.63).</p>\n<p class=\"p p-first-last\">Dextrose prolotherapy had a superior effect compared with local anesthesia (effect size, 0.38; 95% CI, 0.07–0.70) and exercise (effect size, 0.71; 95% CI, 0.30–1.11). There was an insignificant advantage of dextrose over corticosteroids (effect size, 0.31; 95% CI, –0.18 to 0.80) which was only estimated from one study.</p>\n\n</div>\n<div id=\"__sec4\" class=\"sec sec-last\">\n<h3 id=\"__sec4title\">Conclusion</h3>\n<p id=\"__p4\" class=\"p p-first-last\">Dextrose injections decreased pain in osteoarthritis patients but did not exhibit a positive dose–response relationship following serial injections. Dextrose prolotherapy was found to provide a better therapeutic effect than exercise, local anesthetics, and probably corticosteroids when patients were retested 6 months following the initial injection.</p>\n\n</div>\n</div>\n</div>\n</div>\n</div>\n<h3 class=\"sec\">Reference:</h3>\n</div>\nHung, Chen-Yu, et al. \"Comparative effectiveness of dextrose prolotherapy versus control injections and exercise in the management of osteoarthritis pain: a systematic review and meta-analysis.\" <i>Journal of pain research</i> 9 (2016): 847.\n\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/\">Read the full article by clicking here.</a>\n\nTake a look at more articles on Regenerative Orthopedic treatments for arthritis:\n<h3><a title=\"How Arthritis Affects Older Athletes\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/\">How Arthritis Affects Older Athletes</a></h3>\n&nbsp;\n\nhttps://www.drfields.com/articles/magazine-column/townsend-letter-arthritis/\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<div class=\"fullwidth color_bar row-full \">\n<div class=\"container\">\n<div class=\"row-fluid\">\n<div class=\"large_thumb\"></div>\n<div class=\"large_thumb\"></div>\n<div class=\"large_thumb\"></div>\n</div>\n</div>\n</div>','Arthritis Pain: How Effective Is Prolotherapy vs Exercise Or Cortisone?','','inherit','closed','closed','','2014-autosave-v1','','','2020-09-12 22:05:23','2020-09-12 22:05:23','',2014,'https://www.drfields.com/uncategorized/2014-autosave-v1/',0,'revision','',0),(4137,9,'2020-09-12 21:42:49','2020-09-12 21:42:49','<h2>How Effective Is Prolotherapy vs Exercise Or Cortisone for Arthritis Pain?</h2>\r\n<em>Researchers in the Journal of Pain Research compare dextrose Prolotherapy to different arthritis treatments like exercise, local anesthesia injections, and even cortisone injections. What did they conclude? Dextrose prolotherapy provided a better effect than exercise, local anesthetics, and probably corticosteroids at their 6 months follow-up.</em>\r\n\r\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/\">Read the full article by clicking here.</a> Or take a look at the abstract below.\r\n<h3 class=\"content-title\">Comparative effectiveness of dextrose prolotherapy versus control injections and exercise in the management of osteoarthritis pain: a systematic review and meta-analysis</h3>\r\n<div class=\"half_rhythm\">\r\n<div class=\"contrib-group fm-author\"><a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Hung%20CY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Chen-Yu Hung</a>,<sup>1</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Hsiao%20MY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Ming-Yen Hsiao</a>,<sup>2,</sup><sup>3</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Chang%20KV%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Ke-Vin Chang</a>,<sup>1,</sup><sup>2</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Han%20DS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Der-Sheng Han</a>,<sup>1,</sup><sup>2</sup> and <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Wang%20TG%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Tyng-Guey Wang</a><sup>2,</sup><sup>3</sup></div>\r\n<div class=\"fm-panel half_rhythm\">\r\n<div class=\"togglers\"><a class=\"pmctoggle\" href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#\">Author information</a> <a class=\"pmctoggle\" href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#\">Copyright and License information</a> <a href=\"https://www.ncbi.nlm.nih.gov/pmc/about/disclaimer/\">Disclaimer</a></div>\r\n<div class=\"fm-article-notes fm-panel half_rhythm\"></div>\r\n<div id=\"pmclinksbox\" class=\"links-box whole_rhythm\">\r\n<div class=\"fm-panel\">\r\n<h2 id=\"idm140468391900000title\" class=\"head no_bottom_margin ui-helper-clearfix\">Abstract</h2>\r\n<div>\r\n<div id=\"__sec1\" class=\"sec sec-first\">\r\n<h3 id=\"__sec1title\">Background</h3>\r\n<p id=\"__p1\" class=\"p p-first-last\">Increasing evidence has supported the use of dextrose prolotherapy for patients with osteoarthritis. However, the real benefits may be affected by differences in injection protocols, comparative regimens, and evaluation scales.</p>\r\n\r\n</div>\r\n<div id=\"__sec2\" class=\"sec\">\r\n<h3 id=\"__sec2title\">Methods</h3>\r\n<p id=\"__p2\" class=\"p p-first-last\">PubMed and Scopus were searched from the earliest record until February 2016. One single-arm study and five randomized controlled trials were included, comprising 326 participants. We estimated the effect sizes of pain reduction before and after serial dextrose injections and compared the values between dextrose prolotherapy, comparative regimens, and exercise 6 months after the initial injection.</p>\r\n\r\n</div>\r\n<div id=\"__sec3\" class=\"sec\">\r\n<h3 id=\"__sec3title\">Results</h3>\r\n<p id=\"__p3\" class=\"p p-first-last\">Regarding the treatment arm using dextrose prolotherapy, the effect sizes compared with baseline were 0.65 (95% confidence interval [CI], 0.14–1.17), 0.84 (95% CI, 0.40–1.27), 0.85 (95% CI, 0.60–1.10), and 0.87 (95% CI, 0.53–1.21) after the first, second, third, and fourth or more injections, respectively. The overall effect of dextrose was better than control injections (effect size, 0.36; 95% CI, 0.10–0.63). Dextrose prolotherapy had a superior effect compared with local anesthesia (effect size, 0.38; 95% CI, 0.07–0.70) and exercise (effect size, 0.71; 95% CI, 0.30–1.11). There was an insignificant advantage of dextrose over corticosteroids (effect size, 0.31; 95% CI, –0.18 to 0.80) which was only estimated from one study.</p>\r\n\r\n</div>\r\n<div id=\"__sec4\" class=\"sec sec-last\">\r\n<h3 id=\"__sec4title\">Conclusion</h3>\r\n<p id=\"__p4\" class=\"p p-first-last\">Dextrose injections decreased pain in osteoarthritis patients but did not exhibit a positive dose–response relationship following serial injections. Dextrose prolotherapy was found to provide a better therapeutic effect than exercise, local anesthetics, and probably corticosteroids when patients were retested 6 months following the initial injection.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"sec\"></div>\r\n</div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n</div>\r\n</div>\r\n</div>','Finger','','inherit','closed','closed','','2014-revision-v1','','','2020-09-12 21:42:49','2020-09-12 21:42:49','',2014,'https://www.drfields.com/uncategorized/2014-revision-v1/',0,'revision','',0),(4138,9,'2020-09-12 21:56:32','2020-09-12 21:56:32','<h2>How Effective Is Prolotherapy vs Exercise Or Cortisone for Arthritis Pain?</h2>\r\n<em>Researchers in the Journal of Pain Research compare dextrose Prolotherapy to different arthritis treatments like exercise, local anesthesia injections, and even cortisone injections. What did they conclude? Dextrose prolotherapy provided a better effect than exercise, local anesthetics, and probably corticosteroids at their 6 months follow-up.</em>\r\n\r\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/\">Read the full article by clicking here.</a> Or take a look at the abstract below.\r\n<h3 class=\"content-title\">Comparative effectiveness of dextrose prolotherapy versus control injections and exercise in the management of osteoarthritis pain: a systematic review and meta-analysis</h3>\r\n<div class=\"half_rhythm\">\r\n<div class=\"contrib-group fm-author\"><a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Hung%20CY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Chen-Yu Hung</a>,<sup>1</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Hsiao%20MY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Ming-Yen Hsiao</a>,<sup>2,</sup><sup>3</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Chang%20KV%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Ke-Vin Chang</a>,<sup>1,</sup><sup>2</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Han%20DS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Der-Sheng Han</a>,<sup>1,</sup><sup>2</sup> and <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Wang%20TG%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Tyng-Guey Wang</a><sup>2,</sup><sup>3</sup></div>\r\n<div class=\"fm-panel half_rhythm\">\r\n<div class=\"togglers\"><a class=\"pmctoggle\" href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#\">Author information</a> <a class=\"pmctoggle\" href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#\">Copyright and License information</a> <a href=\"https://www.ncbi.nlm.nih.gov/pmc/about/disclaimer/\">Disclaimer</a></div>\r\n<div class=\"fm-article-notes fm-panel half_rhythm\"></div>\r\n<div id=\"pmclinksbox\" class=\"links-box whole_rhythm\">\r\n<div class=\"fm-panel\">\r\n<h2 id=\"idm140468391900000title\" class=\"head no_bottom_margin ui-helper-clearfix\">Abstract</h2>\r\n<div>\r\n<div id=\"__sec1\" class=\"sec sec-first\">\r\n<h3 id=\"__sec1title\">Background</h3>\r\n<p id=\"__p1\" class=\"p p-first-last\">Increasing evidence has supported the use of dextrose prolotherapy for patients with osteoarthritis. However, the real benefits may be affected by differences in injection protocols, comparative regimens, and evaluation scales.</p>\r\n\r\n</div>\r\n<div id=\"__sec2\" class=\"sec\">\r\n<h3 id=\"__sec2title\">Methods</h3>\r\n<p id=\"__p2\" class=\"p p-first-last\">PubMed and Scopus were searched from the earliest record until February 2016. One single-arm study and five randomized controlled trials were included, comprising 326 participants. We estimated the effect sizes of pain reduction before and after serial dextrose injections and compared the values between dextrose prolotherapy, comparative regimens, and exercise 6 months after the initial injection.</p>\r\n\r\n</div>\r\n<div id=\"__sec3\" class=\"sec\">\r\n<h3 id=\"__sec3title\">Results</h3>\r\n<p id=\"__p3\" class=\"p p-first-last\">Regarding the treatment arm using dextrose prolotherapy, the effect sizes compared with baseline were 0.65 (95% confidence interval [CI], 0.14–1.17), 0.84 (95% CI, 0.40–1.27), 0.85 (95% CI, 0.60–1.10), and 0.87 (95% CI, 0.53–1.21) after the first, second, third, and fourth or more injections, respectively. The overall effect of dextrose was better than control injections (effect size, 0.36; 95% CI, 0.10–0.63). Dextrose prolotherapy had a superior effect compared with local anesthesia (effect size, 0.38; 95% CI, 0.07–0.70) and exercise (effect size, 0.71; 95% CI, 0.30–1.11). There was an insignificant advantage of dextrose over corticosteroids (effect size, 0.31; 95% CI, –0.18 to 0.80) which was only estimated from one study.</p>\r\n\r\n</div>\r\n<div id=\"__sec4\" class=\"sec sec-last\">\r\n<h3 id=\"__sec4title\">Conclusion</h3>\r\n<p id=\"__p4\" class=\"p p-first-last\">Dextrose injections decreased pain in osteoarthritis patients but did not exhibit a positive dose–response relationship following serial injections. Dextrose prolotherapy was found to provide a better therapeutic effect than exercise, local anesthetics, and probably corticosteroids when patients were retested 6 months following the initial injection.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"sec\"></div>\r\n</div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n</div>\r\n</div>\r\n</div>','Arthritis Pain: How Effective Is Prolotherapy vs Exercise Or Cortisone?','','inherit','closed','closed','','2014-revision-v1','','','2020-09-12 21:56:32','2020-09-12 21:56:32','',2014,'https://www.drfields.com/uncategorized/2014-revision-v1/',0,'revision','',0),(4139,9,'2020-09-12 21:57:06','2020-09-12 21:57:06','Prolotherapy Is More Effective Than Other Treatments','Prolotherapy Is More Effective Than Other Treatments','Prolotherapy Is More Effective Than Other Treatments','inherit','open','closed','','arthritis-symptoms','','','2020-09-12 21:57:50','2020-09-12 21:57:50','',2014,'https://www.drfields.com/wp-content/uploads/2019/06/arthritis-symptoms.jpg',0,'attachment','image/jpeg',0),(4140,9,'2020-09-12 22:05:35','2020-09-12 22:05:35','[caption id=\"attachment_4139\" align=\"alignleft\" width=\"737\"]<img class=\" wp-image-4139\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/arthritis-symptoms-500x500.jpg\" alt=\"Arthritis Pain\" width=\"737\" height=\"737\" /> <strong>                                 <em> Prolotherapy Is More Effective Than Other Treatments</em></strong>[/caption]\r\n<h1>How Effective Is Prolotherapy versus Exercise Or Cortisone for Arthritis Pain?</h1>\r\n<em>Researchers in the Journal of Pain Research compared dextrose Prolotherapy to different arthritis pain treatments such as exercise, local anesthesia injections, and even cortisone injections. </em>\r\n\r\n<em>What did they conclude? </em>\r\n\r\n<em>Dextrose prolotherapy provided a better effect than exercise, local anesthetics, and probably corticosteroids at their 6 months follow-up.</em>\r\n\r\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/\">Read the full article by clicking here.</a>\r\n\r\nAnd take a look at the abstract below.\r\n<h3></h3>\r\n<h3></h3>\r\n<h2 class=\"content-title\">Comparative effectiveness of dextrose prolotherapy versus control injections and exercise in the management of osteoarthritis pain: a systematic review and meta-analysis</h2>\r\n<div class=\"half_rhythm\">\r\n<div class=\"contrib-group fm-author\"><a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Hung%20CY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Chen-Yu Hung</a>,<sup>1</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Hsiao%20MY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Ming-Yen Hsiao</a>,<sup>2,</sup><sup>3</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Chang%20KV%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Ke-Vin Chang</a>,<sup>1,</sup><sup>2</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Han%20DS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Der-Sheng Han</a>,<sup>1,</sup><sup>2</sup> and <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Wang%20TG%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Tyng-Guey Wang</a><sup>2,</sup><sup>3</sup></div>\r\n<div class=\"fm-panel half_rhythm\">\r\n<div class=\"togglers\"><a class=\"pmctoggle\" href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#\">Author information</a> <a class=\"pmctoggle\" href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#\">Copyright and License information</a> <a href=\"https://www.ncbi.nlm.nih.gov/pmc/about/disclaimer/\">Disclaimer</a></div>\r\n<div id=\"pmclinksbox\" class=\"links-box whole_rhythm\">\r\n<div class=\"fm-panel\">\r\n<h2 id=\"idm140468391900000title\" class=\"head no_bottom_margin ui-helper-clearfix\">Abstract</h2>\r\n<div>\r\n<div id=\"__sec1\" class=\"sec sec-first\">\r\n<h3 id=\"__sec1title\">Background</h3>\r\n<p id=\"__p1\" class=\"p p-first-last\">Increasing evidence has supported the use of dextrose prolotherapy for patients with osteoarthritis. However, the real benefits may be affected by differences in injection protocols, comparative regimens, and evaluation scales.</p>\r\n\r\n</div>\r\n<div id=\"__sec2\" class=\"sec\">\r\n<h3 id=\"__sec2title\">Methods</h3>\r\n<p id=\"__p2\" class=\"p p-first-last\">PubMed and Scopus were searched from the earliest record until February 2016. One single-arm study and five randomized controlled trials were included, comprising 326 participants. We estimated the effect sizes of pain reduction before and after serial dextrose injections and compared the values between dextrose prolotherapy, comparative regimens, and exercise 6 months after the initial injection.</p>\r\n\r\n</div>\r\n<div id=\"__sec3\" class=\"sec\">\r\n<h3 id=\"__sec3title\">Results</h3>\r\n<p id=\"__p3\" class=\"p p-first-last\">Regarding the treatment arm using dextrose prolotherapy, the effect sizes compared with baseline were 0.65 (95% confidence interval [CI], 0.14–1.17), 0.84 (95% CI, 0.40–1.27), 0.85 (95% CI, 0.60–1.10), and 0.87 (95% CI, 0.53–1.21) after the first, second, third, and fourth or more injections, respectively. The overall effect of dextrose was better than control injections (effect size, 0.36; 95% CI, 0.10–0.63).</p>\r\n<p class=\"p p-first-last\">Dextrose prolotherapy had a superior effect compared with local anesthesia (effect size, 0.38; 95% CI, 0.07–0.70) and exercise (effect size, 0.71; 95% CI, 0.30–1.11). There was an insignificant advantage of dextrose over corticosteroids (effect size, 0.31; 95% CI, –0.18 to 0.80) which was only estimated from one study.</p>\r\n\r\n</div>\r\n<div id=\"__sec4\" class=\"sec sec-last\">\r\n<h3 id=\"__sec4title\">Conclusion</h3>\r\n<p id=\"__p4\" class=\"p p-first-last\">Dextrose injections decreased pain in osteoarthritis patients but did not exhibit a positive dose–response relationship following serial injections. Dextrose prolotherapy was found to provide a better therapeutic effect than exercise, local anesthetics, and probably corticosteroids when patients were retested 6 months following the initial injection.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 class=\"sec\">Reference:</h3>\r\n</div>\r\nHung, Chen-Yu, et al. \"Comparative effectiveness of dextrose prolotherapy versus control injections and exercise in the management of osteoarthritis pain: a systematic review and meta-analysis.\" <i>Journal of pain research</i> 9 (2016): 847.\r\n\r\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/\">Read the full article by clicking here.</a>\r\n\r\nTake a look at more articles on Regenerative Orthopedic treatments for arthritis:\r\n<h3><a title=\"How Arthritis Affects Older Athletes\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/\">How Arthritis Affects Older Athletes</a></h3>\r\n<h3><a title=\"Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain\" href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a></h3>\r\nhttps://www.drfields.com/articles/magazine-column/townsend-letter-arthritis/\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n</div>\r\n</div>\r\n</div>','Arthritis Pain: How Effective Is Prolotherapy vs Exercise Or Cortisone?','','inherit','closed','closed','','2014-revision-v1','','','2020-09-12 22:05:35','2020-09-12 22:05:35','',2014,'https://www.drfields.com/uncategorized/2014-revision-v1/',0,'revision','',0),(4141,9,'2020-09-12 22:06:14','2020-09-12 22:06:14','[caption id=\"attachment_4139\" align=\"alignleft\" width=\"737\"]<img class=\" wp-image-4139\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/arthritis-symptoms-500x500.jpg\" alt=\"Arthritis Pain\" width=\"737\" height=\"737\" /> <strong>                                 <em> Prolotherapy Is More Effective Than Other Treatments</em></strong>[/caption]\r\n<h1>How Effective Is Prolotherapy versus Exercise Or Cortisone for Arthritis Pain?</h1>\r\n<em>Researchers in the Journal of Pain Research compared dextrose Prolotherapy to different arthritis pain treatments such as exercise, local anesthesia injections, and even cortisone injections. </em>\r\n\r\n<em>What did they conclude? </em>\r\n\r\n<em>Dextrose prolotherapy provided a better effect than exercise, local anesthetics, and probably corticosteroids at their 6 months follow-up.</em>\r\n\r\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/\">Read the full article by clicking here.</a>\r\n\r\nAnd take a look at the abstract below.\r\n<h3></h3>\r\n<h3></h3>\r\n<h2 class=\"content-title\">Comparative effectiveness of dextrose prolotherapy versus control injections and exercise in the management of osteoarthritis pain: a systematic review and meta-analysis</h2>\r\n<div class=\"half_rhythm\">\r\n<div class=\"contrib-group fm-author\"><a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Hung%20CY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Chen-Yu Hung</a>,<sup>1</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Hsiao%20MY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Ming-Yen Hsiao</a>,<sup>2,</sup><sup>3</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Chang%20KV%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Ke-Vin Chang</a>,<sup>1,</sup><sup>2</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Han%20DS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Der-Sheng Han</a>,<sup>1,</sup><sup>2</sup> and <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Wang%20TG%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Tyng-Guey Wang</a><sup>2,</sup><sup>3</sup></div>\r\n<div class=\"fm-panel half_rhythm\">\r\n<div class=\"togglers\"><a class=\"pmctoggle\" href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#\">Author information</a> <a class=\"pmctoggle\" href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#\">Copyright and License information</a> <a href=\"https://www.ncbi.nlm.nih.gov/pmc/about/disclaimer/\">Disclaimer</a></div>\r\n<div id=\"pmclinksbox\" class=\"links-box whole_rhythm\">\r\n<div class=\"fm-panel\">\r\n<h2 id=\"idm140468391900000title\" class=\"head no_bottom_margin ui-helper-clearfix\">Abstract</h2>\r\n<div>\r\n<div id=\"__sec1\" class=\"sec sec-first\">\r\n<h3 id=\"__sec1title\">Background</h3>\r\n<p id=\"__p1\" class=\"p p-first-last\">Increasing evidence has supported the use of dextrose prolotherapy for patients with osteoarthritis. However, the real benefits may be affected by differences in injection protocols, comparative regimens, and evaluation scales.</p>\r\n\r\n</div>\r\n<div id=\"__sec2\" class=\"sec\">\r\n<h3 id=\"__sec2title\">Methods</h3>\r\n<p id=\"__p2\" class=\"p p-first-last\">PubMed and Scopus were searched from the earliest record until February 2016. One single-arm study and five randomized controlled trials were included, comprising 326 participants. We estimated the effect sizes of pain reduction before and after serial dextrose injections and compared the values between dextrose prolotherapy, comparative regimens, and exercise 6 months after the initial injection.</p>\r\n\r\n</div>\r\n<div id=\"__sec3\" class=\"sec\">\r\n<h3 id=\"__sec3title\">Results</h3>\r\n<p id=\"__p3\" class=\"p p-first-last\">Regarding the treatment arm using dextrose prolotherapy, the effect sizes compared with baseline were 0.65 (95% confidence interval [CI], 0.14–1.17), 0.84 (95% CI, 0.40–1.27), 0.85 (95% CI, 0.60–1.10), and 0.87 (95% CI, 0.53–1.21) after the first, second, third, and fourth or more injections, respectively. The overall effect of dextrose was better than control injections (effect size, 0.36; 95% CI, 0.10–0.63).</p>\r\n<p class=\"p p-first-last\">Dextrose prolotherapy had a superior effect compared with local anesthesia (effect size, 0.38; 95% CI, 0.07–0.70) and exercise (effect size, 0.71; 95% CI, 0.30–1.11). There was an insignificant advantage of dextrose over corticosteroids (effect size, 0.31; 95% CI, –0.18 to 0.80) which was only estimated from one study.</p>\r\n\r\n</div>\r\n<div id=\"__sec4\" class=\"sec sec-last\">\r\n<h3 id=\"__sec4title\">Conclusion</h3>\r\n<p id=\"__p4\" class=\"p p-first-last\">Dextrose injections decreased pain in osteoarthritis patients but did not exhibit a positive dose–response relationship following serial injections. Dextrose prolotherapy was found to provide a better therapeutic effect than exercise, local anesthetics, and probably corticosteroids when patients were retested 6 months following the initial injection.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 class=\"sec\">Reference:</h3>\r\n</div>\r\nHung, Chen-Yu, et al. \"Comparative effectiveness of dextrose prolotherapy versus control injections and exercise in the management of osteoarthritis pain: a systematic review and meta-analysis.\" <i>Journal of pain research</i> 9 (2016): 847.\r\n\r\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/\">Read the full article by clicking here.</a>\r\n<h3>Take a look at more articles on Regenerative Orthopedic treatments for arthritis:</h3>\r\n<h4><a title=\"How Arthritis Affects Older Athletes\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/\">How Arthritis Affects Older Athletes</a></h4>\r\n<h4><a title=\"Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain\" href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a></h4>\r\nhttps://www.drfields.com/articles/magazine-column/townsend-letter-arthritis/\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n</div>\r\n</div>\r\n</div>','Arthritis Pain: How Effective Is Prolotherapy vs Exercise Or Cortisone?','','inherit','closed','closed','','2014-revision-v1','','','2020-09-12 22:06:14','2020-09-12 22:06:14','',2014,'https://www.drfields.com/uncategorized/2014-revision-v1/',0,'revision','',0),(4143,9,'2020-09-15 21:31:32','2020-09-15 21:31:32','<img class=\"wp-image-3766 size-full alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/photo-1559757175-5700dde675bc.jpg\" alt=\"Photo 1559757175 5700dde675bc\" width=\"400\" height=\"225\" />\r\n\r\n<strong>Exercise Strengthens the Brain</strong>\r\n\r\nWe all know that exercise is good for the body. But did you know that new scientific evidence also confirms that exercise strengthens the brain? It sure does! In fact, moderate exercise nourishes the brain, improves our ability to learn, boosts mental performance, remodels the brain, and helps prevent the brain from aging.\r\n\r\nScientists used to think the adult brain structure was fixed. They used to think that no new cells could be made or the brain altered in any way after adolescence. But exercise can change that! Physical activity can boost blood flow all through the body, even to the brain. And this boost of blood flow increases the ability of brain cells to connect with each other. Increased connectivity can occur by simply walking. And if you exercise more vigorously, like running, faster reaction times and improved learning will result. Physical activity has been linked to a lower risk of the development of cognitive decline, because it is, in essence, a fertilizer for the brain, nourishing it and improving attention, memory and information processing. Exercise can help reduce the risk of Parkinson\'s Disease.\r\n\r\n<strong>What Does the Literature Say About Exercise and Parkinson\'s Disease?</strong>\r\n\r\nA June 2020 article in <em>Frontiers in Aging Neuroscience</em> reports that \"Epidemiological studies of prospectively followed cohorts have shown a <strong>lower risk</strong> for later developing Parkinson\'s Disease in healthy people who report <strong>moderate to high levels of physical activity</strong>, and slower rates of motor and non-motor symptom progression in people with Parkinson\'s Disease who report higher baseline physical activity.\"1 As you can see, the literature shows a direct benefit of exercise on the brain. Dementia is the most feared aspect of Parkinson’s, but adults who engage in exercise during midlife, are able to significantly reduce the risks of dementia and cognitive impairment later in life.\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nThe <em>American College of Sports Medicine</em> recommends the following:<em> \"</em>Because Parkinson\'s Disease is a chronic and progressive disorder, an exercise program should be prescribed early when the individual is first diagnosed, should continue throughout life and should be reviewed and revised as the disease progresses. Exercise prescription should ultimately aim to slow the rate at which the signs of the disease progress, limit comorbidities, minimize complications associated with muscle disuse, and maintain the ability to live an independent life.\"<a href=\"https://www.revdesportiva.pt/files/para_publicar/Exercising_for_People_with_Parkinson_s_Disease_and.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nExercise reshapes the brain. When we don’t use our muscles, they atrophy. The brain is no different. Boost the health of brain cells, stimulate the growth of new blood vessels in the brain, and encourage new neuronal connections through exercise. Start your day with exercise! Exercise helps us to be fit in so many capacities. Exercising in the morning prepares you for the day by enhancing brain activity, improving information retention, and fine-tuning your ability to react to the situations and stressors that come your way. Exercise also helps our brains to be fit and reduces the risk of Parkinson\'s Disease.\r\n<ol>\r\n 	<li>Crotty, Grace F., and Michael A. Schwarzschild. \"Chasing Protection in Parkinson’s Disease: Does Exercise Reduce Risk and Progression?.\" <i>Frontiers in Aging Neuroscience</i> 12 (2020): 186.</li>\r\n 	<li>Corcos, Daniel M., and Elizabeth M. Skender. \"Exercising for People with Parkinson’s Disease and Their Support Group.\" <i>ACSM\'s Health &amp; Fitness Journal</i> 24.2 (2020): 5-7.</li>\r\n</ol>','Improve Brain Fitness and Parkinson\'s Risk with Exercise','','inherit','closed','closed','','1516-revision-v1','','','2020-09-15 21:31:32','2020-09-15 21:31:32','',1516,'https://www.drfields.com/uncategorized/1516-revision-v1/',0,'revision','',0),(4144,9,'2020-09-15 21:35:07','2020-09-15 21:35:07','<img class=\"wp-image-3766 size-full alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/photo-1559757175-5700dde675bc.jpg\" alt=\"Photo 1559757175 5700dde675bc\" width=\"400\" height=\"225\" />\r\n\r\n<strong>Exercise Strengthens the Brain</strong>\r\n\r\nWe all know that exercise is good for the body. But did you know that new scientific evidence also confirms that exercise strengthens the brain? It sure does! In fact, moderate exercise nourishes the brain, improves our ability to learn, boosts mental performance, remodels the brain, and helps prevent the brain from aging. Exercise helps us to enjoy both body and brain fitness\r\n\r\nScientists used to think the adult brain structure was fixed. They used to think that no new cells could be made or the brain altered in any way after adolescence. But exercise can change that! Physical activity can boost blood flow all through the body, even to the brain. And this boost of blood flow increases the ability of brain cells to connect with each other. Increased connectivity can occur by simply walking. And if you exercise more vigorously, like running, faster reaction times and improved learning will result. Physical activity has been linked to a lower risk of the development of cognitive decline, because it is, in essence, a fertilizer for the brain, nourishing it and improving attention, memory and information processing. Exercise can help reduce the risk of Parkinson\'s Disease.\r\n\r\n<strong>What Does the Literature Say About Exercise and Parkinson\'s Disease?</strong>\r\n\r\nA June 2020 article in <em>Frontiers in Aging Neuroscience</em> reports that \"Epidemiological studies of prospectively followed cohorts have shown a <strong>lower risk</strong> for later developing Parkinson\'s Disease in healthy people who report <strong>moderate to high levels of physical activity</strong>, and slower rates of motor and non-motor symptom progression in people with Parkinson\'s Disease who report higher baseline physical activity.\"1 As you can see, the literature shows a direct benefit of exercise on the brain. Dementia is the most feared aspect of Parkinson’s, but adults who engage in exercise during midlife, are able to significantly reduce the risks of dementia and cognitive impairment later in life.\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nThe <em>American College of Sports Medicine</em> recommends the following:<em> \"</em>Because Parkinson\'s Disease is a chronic and progressive disorder, an exercise program should be prescribed early when the individual is first diagnosed, should continue throughout life and should be reviewed and revised as the disease progresses. Exercise prescription should ultimately aim to slow the rate at which the signs of the disease progress, limit comorbidities, minimize complications associated with muscle disuse, and maintain the ability to live an independent life.\"<a href=\"https://www.revdesportiva.pt/files/para_publicar/Exercising_for_People_with_Parkinson_s_Disease_and.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nExercise reshapes the brain. When we don’t use our muscles, they atrophy. The brain is no different. Boost the health of brain cells, stimulate the growth of new blood vessels in the brain, and encourage new neuronal connections through exercise. Start your day with exercise! Exercise helps us to be fit in so many capacities. Exercising in the morning prepares you for the day by enhancing brain activity, improving information retention, and fine-tuning your ability to react to the situations and stressors that come your way. Exercise also helps our brains to be fit and reduces the risk of Parkinson\'s Disease.\r\n<ol>\r\n 	<li>Crotty, Grace F., and Michael A. Schwarzschild. \"Chasing Protection in Parkinson’s Disease: Does Exercise Reduce Risk and Progression?.\" <i>Frontiers in Aging Neuroscience</i> 12 (2020): 186.</li>\r\n 	<li>Corcos, Daniel M., and Elizabeth M. Skender. \"Exercising for People with Parkinson’s Disease and Their Support Group.\" <i>ACSM\'s Health &amp; Fitness Journal</i> 24.2 (2020): 5-7.</li>\r\n</ol>','Improve Brain Fitness and Parkinson\'s Risk with Exercise','','inherit','closed','closed','','1516-revision-v1','','','2020-09-15 21:35:07','2020-09-15 21:35:07','',1516,'https://www.drfields.com/uncategorized/1516-revision-v1/',0,'revision','',0),(4145,9,'2020-09-15 21:40:46','2020-09-15 21:40:46','[caption id=\"attachment_3766\" align=\"alignleft\" width=\"400\"]<img class=\"wp-image-3766 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/photo-1559757175-5700dde675bc.jpg\" alt=\"Brain Fitness\" width=\"400\" height=\"225\" /> <em>Maintain brain fitness with exercise</em>[/caption]\r\n<h3><strong>Exercise for Body and Brain Fitness</strong></h3>\r\nWe all know that exercise is good for the body. But did you know that new scientific evidence also confirms that exercise strengthens the brain? It sure does! In fact, moderate exercise nourishes the brain, improves our ability to learn, boosts mental performance, remodels the brain, and helps prevent the brain from aging. Exercise helps us to enjoy both body and brain fitness.\r\n\r\nScientists used to think the adult brain structure was fixed. And they thought that no new cells could be made or the brain altered in any way after adolescence.\r\n\r\n<strong>But exercise can change that!</strong> Physical activity can boost blood flow all through the body, even to the brain. And this boost of blood flow increases the ability of brain cells to connect with each other. Increased connectivity can occur by simply walking.\r\n\r\nAnd if you exercise more vigorously, like when running, faster reaction times and improved learning will result. Physical activity has been linked to a lower risk of the development of cognitive decline. That\'s because it is, in essence, a fertilizer for the brain. Exercise nourishes the brain, and improves attention, memory, and information processing. And exercise can even help reduce the risk of Parkinson\'s Disease.\r\n\r\n<strong>What Does the Literature Say About Exercise and Parkinson\'s Disease?</strong>\r\n\r\nA June 2020 article in <em>Frontiers in Aging Neuroscience</em> reports that \"Epidemiological studies of prospectively followed cohorts have shown a <strong>lower risk</strong> for later developing Parkinson\'s Disease in healthy people who report <strong>moderate to high levels of physical activity</strong>, and slower rates of motor and non-motor symptom progression in people with Parkinson\'s Disease who report higher baseline physical activity.\"1 As you can see, the literature shows a direct benefit of exercise on the brain. Dementia is the most feared aspect of Parkinson’s, but adults who engage in exercise during midlife, are able to significantly reduce the risks of dementia and cognitive impairment later in life.\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nThe <em>American College of Sports Medicine</em> recommends the following:<em> \"</em>Because Parkinson\'s Disease is a chronic and progressive disorder, an exercise program should be prescribed early when the individual is first diagnosed, should continue throughout life and should be reviewed and revised as the disease progresses. Exercise prescription should ultimately aim to slow the rate at which the signs of the disease progress, limit comorbidities, minimize complications associated with muscle disuse, and maintain the ability to live an independent life.\"<a href=\"https://www.revdesportiva.pt/files/para_publicar/Exercising_for_People_with_Parkinson_s_Disease_and.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nExercise reshapes the brain. When we don’t use our muscles, they atrophy. The brain is no different. Boost the health of brain cells, stimulate the growth of new blood vessels in the brain, and encourage new neuronal connections through exercise. Start your day with exercise! Exercise helps us to be fit in so many capacities. Exercising in the morning prepares you for the day by enhancing brain activity, improving information retention, and fine-tuning your ability to react to the situations and stressors that come your way. Exercise also helps our brains to be fit and reduces the risk of Parkinson\'s Disease.\r\n<ol>\r\n 	<li>Crotty, Grace F., and Michael A. Schwarzschild. \"Chasing Protection in Parkinson’s Disease: Does Exercise Reduce Risk and Progression?.\" <i>Frontiers in Aging Neuroscience</i> 12 (2020): 186.</li>\r\n 	<li>Corcos, Daniel M., and Elizabeth M. Skender. \"Exercising for People with Parkinson’s Disease and Their Support Group.\" <i>ACSM\'s Health &amp; Fitness Journal</i> 24.2 (2020): 5-7.</li>\r\n</ol>','Improve Brain Fitness and Reduce Parkinson\'s Risk with Exercise','','inherit','closed','closed','','1516-revision-v1','','','2020-09-15 21:40:46','2020-09-15 21:40:46','',1516,'https://www.drfields.com/uncategorized/1516-revision-v1/',0,'revision','',0),(4146,9,'2020-09-15 21:48:52','2020-09-15 21:48:52','<h3><strong>Exercise for Body and Brain Fitness</strong></h3>\r\nWe all know that exercise is good for the body. But did you know that new scientific evidence also confirms that exercise strengthens the brain? It sure does! In fact, moderate exercise nourishes the brain, improves our ability to learn, boosts mental performance, remodels the brain, and helps prevent the brain from aging. Exercise helps us to enjoy both body and brain fitness.\r\n\r\nScientists used to think the adult brain structure was fixed. And they thought that no new cells could be made or the brain altered in any way after adolescence.\r\n\r\n<strong>But exercise can change that!</strong> Physical activity can boost blood flow all through the body, even to the brain. And this boost of blood flow increases the ability of brain cells to connect with each other. Increased connectivity can occur by simply walking.\r\n\r\nAnd if you exercise more vigorously, like when running, faster reaction times and improved learning will result. Physical activity has been linked to a lower risk of the development of cognitive decline. That\'s because it is, in essence, a fertilizer for the brain. Exercise nourishes the brain, and improves attention, memory, and information processing. And exercise can even help reduce the risk of Parkinson\'s Disease.\r\n<h3><strong>What Does the Literature Say About Exercise and Parkinson\'s Disease?</strong></h3>\r\nA June 2020 article in <em>Frontiers in Aging Neuroscience</em> reports that \"Epidemiological studies of prospectively followed cohorts have shown a <strong>lower risk</strong> for later developing Parkinson\'s Disease in healthy people who report <strong>moderate to high levels of physical activity</strong>, and slower rates of motor and non-motor symptom progression in people with Parkinson\'s Disease who report higher baseline physical activity.\"1\r\n\r\n<strong>As you can see, the literature shows a direct benefit of exercise on the brain.</strong> Dementia is the most feared aspect of Parkinson’s Disease. But adults who engage in exercise during midlife, are able to significantly reduce the risks of dementia and cognitive impairment later in life.\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nThe <em>American College of Sports Medicine</em> recommends the following:<em> \"</em>Because Parkinson\'s Disease is a chronic and progressive disorder, an exercise program should be prescribed early when the individual is first diagnosed, should continue throughout life and should be reviewed and revised as the disease progresses. Exercise prescription should ultimately aim to slow the rate at which the signs of the disease progress, limit comorbidities, minimize complications associated with muscle disuse, and maintain the ability to live an independent life.\"<a href=\"https://www.revdesportiva.pt/files/para_publicar/Exercising_for_People_with_Parkinson_s_Disease_and.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4><em>Exercise reshapes the brain. </em></h4>\r\nWhen we don’t use our muscles, they atrophy. And the brain is no different. Boost the health of brain cells, stimulate the growth of new blood vessels in the brain, and encourage new neuronal connections through exercise.\r\n\r\nStart your day with exercise! Because exercise helps us to be fit in so many capacities. Are you a morning exerciser? If so, that\'s really great. Because exercising in the morning prepares you for the day by enhancing brain activity. And it also improves information retention, and fine-tunes your ability to react to the situations and stressors that come your way through the day. Exercise is so beneficial. It helps our body to be fit. But it also boosts brain fitness and reduces the risk of Parkinson\'s Disease.\r\n<ol>\r\n 	<li>Crotty, Grace F., and Michael A. Schwarzschild. \"Chasing Protection in Parkinson’s Disease: Does Exercise Reduce Risk and Progression?.\" <i>Frontiers in Aging Neuroscience</i> 12 (2020): 186.</li>\r\n 	<li>Corcos, Daniel M., and Elizabeth M. Skender. \"Exercising for People with Parkinson’s Disease and Their Support Group.\" <i>ACSM\'s Health &amp; Fitness Journal</i> 24.2 (2020): 5-7.</li>\r\n</ol>','Improve Brain Fitness and Reduce Parkinson\'s Risk with Exercise','','inherit','closed','closed','','1516-revision-v1','','','2020-09-15 21:48:52','2020-09-15 21:48:52','',1516,'https://www.drfields.com/uncategorized/1516-revision-v1/',0,'revision','',0),(4147,9,'2020-09-15 21:54:20','2020-09-15 21:54:20','Exercise boosts brain fitness','Exercise boosts brain fitness','Exercise boosts brain fitness','inherit','open','closed','','screen-shot-2020-09-15-at-4-52-16-pm','','','2020-09-15 21:54:57','2020-09-15 21:54:57','',1516,'https://www.drfields.com/wp-content/uploads/2019/06/Screen-Shot-2020-09-15-at-4.52.16-PM.png',0,'attachment','image/png',0),(4148,9,'2020-09-15 21:58:29','2020-09-15 21:58:29','[caption id=\"attachment_4147\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4147\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Screen-Shot-2020-09-15-at-4.52.16-PM-500x260.png\" alt=\"Brain fitness\" width=\"500\" height=\"260\" /> <em>                                      Exercise boosts brain fitness</em>[/caption]\r\n<h3><strong>Exercise for Body and Brain Fitness</strong></h3>\r\nWe all know that exercise is good for the body. But did you know that new scientific evidence also confirms that exercise strengthens the brain? It sure does! In fact, moderate exercise nourishes the brain, improves our ability to learn, boosts mental performance, remodels the brain, and helps prevent the brain from aging. Exercise helps us to enjoy both body and brain fitness.\r\n\r\nScientists used to think the adult brain structure was fixed. They thought that no new cells could be made. And they thought the brain could not be altered in any way after adolescence.\r\n\r\n<strong>But exercise can change that!</strong> Physical activity can boost blood flow all through the body, even to the brain. And this boost of blood flow increases the ability of brain cells to connect with each other. Increased connectivity can occur by simply walking.\r\n\r\nAnd if you exercise more vigorously, like when running, faster reaction times and improved learning will result. Physical activity has been linked to a lower risk of the development of cognitive decline. That\'s because it is, in essence, a fertilizer for the brain. Exercise nourishes the brain, and improves attention, memory, and information processing. And exercise can even help reduce the risk of Parkinson\'s Disease.\r\n<h3><strong>What Does the Literature Say About Exercise and Parkinson\'s Disease?</strong></h3>\r\nA June 2020 article in <em>Frontiers in Aging Neuroscience</em> reports that \"Epidemiological studies of prospectively followed cohorts have shown a <strong>lower risk</strong> for later developing Parkinson\'s Disease in healthy people who report <strong>moderate to high levels of physical activity</strong>, and slower rates of motor and non-motor symptom progression in people with Parkinson\'s Disease who report higher baseline physical activity.\"1\r\n\r\n<strong>As you can see, the literature shows a direct benefit of exercise on the brain.</strong> Dementia is the most feared aspect of Parkinson’s Disease. But adults who engage in exercise during midlife, are able to significantly reduce the risks of dementia and cognitive impairment later in life.\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nThe <em>American College of Sports Medicine</em> recommends the following:<em> \"</em>Because Parkinson\'s Disease is a chronic and progressive disorder, an exercise program should be prescribed early when the individual is first diagnosed, should continue throughout life and should be reviewed and revised as the disease progresses. Exercise prescription should ultimately aim to slow the rate at which the signs of the disease progress, limit comorbidities, minimize complications associated with muscle disuse, and maintain the ability to live an independent life.\"<a href=\"https://www.revdesportiva.pt/files/para_publicar/Exercising_for_People_with_Parkinson_s_Disease_and.pdf\">2</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h4><em>Exercise reshapes the brain. </em></h4>\r\nWhen we don’t use our muscles, they atrophy. And the brain is no different. Boost the health of brain cells, stimulate the growth of new blood vessels in the brain, and encourage new neuronal connections through exercise.\r\n\r\nStart your day with exercise! Because exercise helps us to be fit in so many capacities. Are you a morning exerciser? If so, that\'s really great. Because exercising in the morning prepares you for the day by enhancing brain activity. And it also improves information retention, and fine-tunes your ability to react to the situations and stressors that come your way through the day. Exercise is so beneficial. True, it helps our body to be fit. But it also boosts brain fitness and reduces the risk of Parkinson\'s Disease.\r\n<ol>\r\n 	<li>Crotty, Grace F., and Michael A. Schwarzschild. \"Chasing Protection in Parkinson’s Disease: Does Exercise Reduce Risk and Progression?.\" <i>Frontiers in Aging Neuroscience</i> 12 (2020): 186.</li>\r\n 	<li>Corcos, Daniel M., and Elizabeth M. Skender. \"Exercising for People with Parkinson’s Disease and Their Support Group.\" <i>ACSM\'s Health &amp; Fitness Journal</i> 24.2 (2020): 5-7.</li>\r\n</ol>','Improve Brain Fitness and Reduce Parkinson\'s Risk with Exercise','','inherit','closed','closed','','1516-revision-v1','','','2020-09-15 21:58:29','2020-09-15 21:58:29','',1516,'https://www.drfields.com/uncategorized/1516-revision-v1/',0,'revision','',0),(4152,8,'2020-09-23 22:06:10','2020-09-23 22:06:10','','iwp_log_5f6bc6d2257c8','','publish','closed','closed','','iwp_log_5f6bc6d2257c8','','','2020-09-23 22:06:10','2020-09-23 22:06:10','',0,'https://www.drfields.com/uncategorized/iwp_log_5f6bc6d2257c8/',0,'iwp_log','',0),(4153,8,'2020-09-24 12:21:49','2020-09-24 12:21:49','<h4>The Athletic Doc<sup>®</sup></h4>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img class=\"size-full wp-image-374\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" /> <strong> Pete Jacobs 2012 Ironman<br />World Champion<br />&amp; Dr. Peter A Fields</strong>[/caption]\r\n\r\nDr. Peter A. Fields is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h5>How Doctor Fields Became <strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong></h5>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has lead to he became known as <strong>The Athletic Doc<sup>®</sup></strong>. In November 2019, he completed his ninth Ironman Triathlon. An Ironman Triathlon is a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n<h5><strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong> Keeps Active and Fit to Maintain Optimal Health</h5>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods, and white flour or white sugar products. <em>The Athletic Doc<sup>®</sup></em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h5>About <strong>The Athletic Doc<sup>®</sup></strong></h5>\r\nDr. Fields is the Director of OrthoRegen<sup>®</sup> in Santa Monica, Ca. one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr. Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic. Dr. Fields is a leading expert in Prolotherapy treatments to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc<sup>®</sup> motto is \"not only train hard but smart – as if your body depended on it\"</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar\">\r\n<div id=\"aboutdocgallery\" class=\"col-md-12\">\r\n<h4>Ironman Photos &amp; Stories</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" />2017 Ironman Santa Rose</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" />2016 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" />2016 Ironman Switzerland</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\" />2015 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\" />2015 Ironman Brazil</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\" />2014 Ironman Austria</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" />2013 Ironman Canada</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" />2012 Ironman Cozumel</a></li>\r\n</ul>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2020-09-24 12:21:49','2020-09-24 12:21:49','',373,'https://www.drfields.com/uncategorized/373-revision-v1/',0,'revision','',0),(4154,8,'2020-09-24 12:22:42','2020-09-24 12:22:42','','iwp_log_5f6c8f92e6794','','publish','closed','closed','','iwp_log_5f6c8f92e6794','','','2020-09-24 12:22:42','2020-09-24 12:22:42','',0,'https://www.drfields.com/uncategorized/iwp_log_5f6c8f92e6794/',0,'iwp_log','',0),(4155,8,'2020-09-24 12:22:56','2020-09-24 12:22:56','','iwp_log_5f6c8fa03e93b','','publish','closed','closed','','iwp_log_5f6c8fa03e93b','','','2020-09-24 12:22:56','2020-09-24 12:22:56','',0,'https://www.drfields.com/uncategorized/iwp_log_5f6c8fa03e93b/',0,'iwp_log','',0),(4156,8,'2020-09-24 12:23:16','2020-09-24 12:23:16','','iwp_log_5f6c8fb448415','','publish','closed','closed','','iwp_log_5f6c8fb448415','','','2020-09-24 12:23:16','2020-09-24 12:23:16','',0,'https://www.drfields.com/uncategorized/iwp_log_5f6c8fb448415/',0,'iwp_log','',0),(4157,8,'2020-09-24 12:24:09','2020-09-24 12:24:09','','iwp_log_5f6c8fe969d4d','','publish','closed','closed','','iwp_log_5f6c8fe969d4d','','','2020-09-24 12:24:09','2020-09-24 12:24:09','',0,'https://www.drfields.com/iwp_log/iwp_log_5f6c8fe969d4d/',0,'iwp_log','',0),(4158,8,'2020-09-24 12:24:27','2020-09-24 12:24:27','','iwp_log_5f6c8ffb6da1c','','publish','closed','closed','','iwp_log_5f6c8ffb6da1c','','','2020-09-24 12:24:27','2020-09-24 12:24:27','',0,'https://www.drfields.com/iwp_log/iwp_log_5f6c8ffb6da1c/',0,'iwp_log','',0),(4159,8,'2020-09-24 12:25:02','2020-09-24 12:25:02','','iwp_log_5f6c901e30ed4','','publish','closed','closed','','iwp_log_5f6c901e30ed4','','','2020-09-24 12:25:02','2020-09-24 12:25:02','',0,'https://www.drfields.com/iwp_log/iwp_log_5f6c901e30ed4/',0,'iwp_log','',0),(4160,8,'2020-09-24 12:25:15','2020-09-24 12:25:15','','iwp_log_5f6c902b38056','','publish','closed','closed','','iwp_log_5f6c902b38056','','','2020-09-24 12:25:15','2020-09-24 12:25:15','',0,'https://www.drfields.com/iwp_log/iwp_log_5f6c902b38056/',0,'iwp_log','',0),(4162,9,'2020-09-24 21:04:39','2020-09-24 21:04:39','<div id=\"dnn_ctr610_ModuleContent\" class=\"DNNModuleContent ModDNNHTMLC\">\n<div id=\"dnn_ctr610_HtmlModule_lblContent\" class=\"Normal\">\n\nMany Americans, including some vegetarians, still consume substantial amounts of dairy products—and government policies still promote them—despite scientific evidence that questions their health benefits and indicates their potential health risks.\n\n<strong>Osteoporosis</strong>\nMilk’s main selling point is calcium. And milk-drinking is touted for building strong bones in children and preventing osteoporosis in older persons. However, clinical research shows that dairy products have little or no benefit for bones. A 2005 review published in Pediatrics showed that milk consumption does not improve bone integrity in children.<sup>1</sup> Similarly, the Harvard Nurses’ Health Study,<sup>2</sup> which followed more than 72,000 women for 18 years, showed no protective effect of increased milk consumption on fracture risk. While calcium is important for bone health, studies show that increasing consumption beyond approximately 600 mg per day—amounts that are easily achieved without dairy products or calcium supplements—does not improve bone integrity.<sup>2</sup>\n\nIn studies of children and adults, exercise has been found to have a major effect on bone density.<sup>3-5</sup> You can decrease your risk of osteoporosis by reducing sodium and animal protein intake in the diet,<sup>6-9</sup> increasing intake of fruits and vegetables,<sup>9,10</sup> exercising,<sup>4,11</sup> and ensuring adequate calcium intake from plant foods such as kale, broccoli, and other leafy green vegetables and beans. You can also use calcium-fortified products such as breakfast cereals and juices, although these products provide more concentrated calcium than is necessary.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n\n<strong>Fat Content and Cardiovascular Disease</strong>\nDairy products—including cheese, ice cream, milk, butter, and yogurt—contribute significant amounts of cholesterol and saturated fat to the diet.<sup>12</sup> Diets high in fat and saturated fat can increase the risk of heart disease, among other serious health problems. A low-fat vegetarian diet that eliminates dairy products, in combination with exercise, smoking cessation, and stress management, can not only prevent heart disease, but may also reverse it.<sup>13,14</sup> Non-fat dairy products are available; however, they pose other health risks as noted below.\n\n<strong>Cancer</strong>\nProstate and breast cancers have been linked to consumption of dairy products, presumably related to increases in a compound called insulin-like growth factor (IGF-I).<sup>15</sup> IGF-I is found in cow’s milk and has been shown to occur in increased levels in the blood of individuals consuming dairy products on a regular basis.<sup>16</sup> Other nutrients that increase IGF-I are also found in cow’s milk.\n\nCase-control studies in diverse populations have shown a strong and consistent association between serum IGF-I concentrations and prostate cancer risk.<sup>17</sup> One study showed that men who had the highest levels of IGF-I had more than four times the risk of prostate cancer compared with those who had the lowest levels.<sup>18</sup> Other findings show that prostate cancer risk was elevated with increased consumption of low-fat milk, suggesting that too much dairy calcium could be a potential threat to prostate health.<sup>19,20</sup>\n\nOvarian cancer may also be related to the consumption of dairy products. The milk sugar lactose is broken down in the body into another sugar, galactose. Research suggests that the dairy sugar galactose might be toxic to ovarian cells.<sup>21</sup> In a study conducted in Sweden, consumption of lactose and dairy products was positively linked to ovarian cancer.<sup>22</sup> A similar study, the Iowa Women’s Health Study, found that women who consumed more than one glass of milk per day had a 73 percent greater chance of ovarian cancer than women who drank less than one glass per day.<sup>23</sup>\n\n<strong>Lactose Intolerance</strong>\nLactose intolerance is common among many populations, affecting approximately 95 percent of Asian Americans, 74 percent of Native Americans, 70 percent of African Americans, 53 percent of Mexican Americans, and 15 percent of Caucasians.<sup>24</sup> Symptoms, which include gastrointestinal distress, diarrhea, and flatulence, occur because these individuals do not have the enzyme lactase that digests the milk sugar lactose. For those who can digest lactose, its breakdown products are two simple sugars: glucose and galactose. Nursing children have active enzymes that break down galactose. As we age, many of us lose much of this capacity.<sup>25</sup> Additionally, along with unwanted symptoms, milk-drinkers also put themselves at risk for development of other chronic diseases and ailments.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n\n<strong>Vitamin D</strong>\nIndividuals often drink milk in order to obtain vitamin D in their diet, unaware that they can receive vitamin D through other sources. The natural source of vitamin D is sunlight. Five to fifteen minutes of sun exposure to the arms and legs or the hands, face, and arms can be enough to meet the body’s requirements for vitamin D, depending on the individual’s skin tone.<sup>26</sup> Darker skin requires longer exposure to the sun in order to obtain adequate levels of vitamin D. In colder climates during the winter months the sun may not be able to provide adequate vitamin D. During this time the diet must be able to provide vitamin D. Fortified cereals, grains, bread, orange juice, and soy- or rice milk are healthful foods that provide vitamin D. All common multiple vitamins also provide vitamin D.\n\n<strong>Contaminants</strong>\nMilk contains contaminants that range from pesticides to drugs. Milk naturally contains hormones and growth factors produced within a cow’s body. In addition, synthetic hormones such as recombinant bovine growth hormone (rBGH) are commonly used in dairy cows to increase the production of milk.<sup>27</sup> Because treated cows are producing quantities of milk nature never intended, the end result can be mastitis, or inflammation of the mammary glands. Treatment of this condition requires the use of antibiotics, and antibiotic traces have occasionally been found in samples of milk and other dairy products. Pesticides, polychlorinated biphenyls (PCBs), and dioxins are other examples of contaminants found in milk. These toxins do not readily leave the body and can eventually build to harmful levels that may affect the immune and reproductive systems. The central nervous system can also be affected. Moreover, PCBs and dioxins have also been linked to cancer.<sup>28</sup>\n\n<strong>Milk Proteins and Diabetes</strong>\nInsulin-dependent (type 1 or childhood-onset) diabetes is linked to consumption of dairy products.<sup>29</sup> A 2001 Finnish study of 3,000 infants with genetically increased risk for developing diabetes showed that early introduction of cow’s milk increased susceptibility to type 1 diabetes.<sup>30</sup>\n\n<strong>Health Concerns of Infants and Children</strong>\nMilk proteins, milk sugar, fat, and saturated fat in dairy products pose health risks for children and encourage the development of obesity, diabetes, and heart disease.\n\nThe American Academy of Pediatrics recommends that infants below one year of age not be given whole cow’s milk,<sup>31</sup> as iron deficiency is more likely on a dairy-rich diet. Cow’s milk products are very low in iron.<sup>32</sup> If dairy products become a major part of one’s diet, iron deficiency is more likely. Colic is an additional concern with milk consumption. Up to 28 percent of infants suffer from colic during the first month of life.<sup>33</sup> Pediatricians learned long ago that cow’s milk was often the reason. We now know that breastfeeding mothers can have colicky babies if the mothers consume cow’s milk. The cow’s antibodies can pass through the mother’s bloodstream, into her breast milk, and to the baby.<sup>34,35</sup> Additionally, food allergies appear to be common results of cow’s milk consumption, particularly in children.<sup>36,37</sup> Cow’s milk consumption has also been linked to chronic constipation in children. Researchers suggested that milk consumption resulted in perianal sores and severe pain on defecation, leading to constipation.<sup>38</sup>\n\nMilk and dairy products are not necessary in the diet and can, in fact, be harmful to health. It is best to consume a healthful diet of grains, fruits, vegetables, legumes, and fortified foods including cereals and juices. These nutrient-dense foods can help you meet your calcium, potassium, riboflavin, and vitamin D requirements with ease—and without health risks.\n\n<strong>References on request</strong>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n\n</div>\n</div>','Health Concerns about Dairy Products','','inherit','closed','closed','','1482-autosave-v1','','','2020-09-24 21:04:39','2020-09-24 21:04:39','',1482,'https://www.drfields.com/uncategorized/1482-autosave-v1/',0,'revision','',0),(4163,9,'2020-09-26 03:09:59','2020-09-26 03:09:59','<h2><strong>.Dry Needling of Tendons Is NOT a Placebo</strong></h2>\n[caption id=\"attachment_4166\" align=\"alignright\" width=\"402\"]<img class=\"wp-image-4166\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Prolo-definition-500x376.png\" alt=\"Prolotherapy Definition\" width=\"402\" height=\"302\" /> <strong><i>Encourage even more tendon healing than dry needling with Prolotherapy!</i></strong>[/caption]\n\nDry needling of tendons is not a placebo, but is a treatment in and of itself.\n\nWe have a couple of takeaways in this article:\n<ol>\n 	<li>Since dry needling is not a placebo, then when researchers do studies that compare such treatments as PRP to dry needling. This needs to be understood and taken into consideration when comparing results. Dry needling is a treatment too. And dry needling has been shown to be effective at reducing painful tendon conditions.</li>\n 	<li>Dry needling encourages localized bleeding and fibroblastic proliferation. That means it boosts the body\'s natural healing cascade, which is also one of the healing mechanisms of Regenerative Orthopedics. But Regenerative Orthopedics also adds potent growth factors to begin tissue repair and regeneration at the injury site.</li>\n</ol>\n<h3>What Does the Research Say About Dry Needling as a Treatment?</h3>\n<a href=\"https://link.springer.com/journal/12178\" data-test=\"journal-link\"><i data-test=\"journal-title\">Current Reviews in Musculoskeletal Medicine</i></a> says, \"Dry needling involves inserting needles into the affected tendon, and it is thought to disrupt the chronic degenerative process and encourage localized bleeding and fibroblastic proliferation.\"1 Dextrose Prolotherapy works by similar means. But it also adds the benefit of dextrose. That means it will boost the body\'s natural healing cascade by introducing this natural substance.\n\nAnd dry needling has also been shown to have a positive effect by decreasing knee pain. A study in the <em>Journal of Clinical Medicine</em> demonstrates that \"low to moderate evidence suggests a positive effect of trigger point dry needling on pain and related disability in patellofemoral pain.\"2 Again, dry needling is a treatment in itself and not a placebo.\n\nAnd dry needling also decreases tennis elbow pain. A 2020 article in the journal <i>Clinical Rehabilitation </i>found that the the treatment reduced pain intensity. And it had a \"positive effect on pain-related disability, pressure pain sensitivity and strength at short-term in patients with lateral epicondylalgia (tennis elbow) of musculoskeletal origin.\"3\n<h3>Regenerative Orthopedics Boost the Healing Effect Even More</h3>\nThere is a benefit  to the healing process when a needle is inserted at the attachment of a tendon and of a ligament. And there is more of a benefit when the solutions used in Prolotherapy, PRP, and Stem Cell Therapy are part of the therapy. Regenerative Orthopedics are all injection techniques directed at tendons, ligaments, and other soft tissue structures. The treatments are very effective at reducing and eliminating the pain involved in a multitude of painful joint conditions.\n\nIt makes sense that if it is helpful to reduce pain by just inserting a needle into the tendon, then it is even more helpful to include solutions that boost the healing capacity. At OrthoRegen, we have many years of experience treating people with painful joint conditions, and getting them back to doing the activities and sports that they love. <a href=\"https://www.drfields.com/contact/\">Contact us today.</a>\n\n&nbsp;\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<h3>References</h3>\n<ol>\n 	<li>Sychev, Vladimir, Aharon S. Finestone, and Leonid Kalichman. \"Dry Needling as a Treatment Modality for Tendinopathy: a Narrative Review.\" <i>Current Reviews in Musculoskeletal Medicine</i> (2020): 1-8.</li>\n 	<li>Rahou-El-Bachiri, Youssef, et al. \"Effects of Trigger Point Dry Needling for the Management of Knee Pain Syndromes: A Systematic Review and Meta-Analysis.\" <i>Journal of Clinical Medicine</i> 9.7 (2020): 2044.</li>\n 	<li>Navarro-Santana, Marcos J., et al. \"Effects of trigger point dry needling on lateral epicondylalgia of musculoskeletal origin: a systematic review and meta-analysis.\" <i>Clinical Rehabilitation</i>(2020): 0269215520937468.</li>\n</ol>\n&nbsp;','Dry Needling of Tendons is Not a Placebo','','inherit','closed','closed','','2012-autosave-v1','','','2020-09-26 03:09:59','2020-09-26 03:09:59','',2012,'https://www.drfields.com/uncategorized/2012-autosave-v1/',0,'revision','',0),(4164,9,'2020-09-24 22:41:17','2020-09-24 22:41:17','<h2><strong>Dry Needling of Tendons Is NOT a Placebo</strong></h2>\r\nDry needling of tendons is not a placebo, but is a treatment in and of itself.\r\n\r\nWe have a couple of takeaways in this article:\r\n<ol>\r\n 	<li>Since dry needling is not a placebo, then when researchers do studies that compare such treatments as PRP to dry needling, the results need to be understood. Dry needling is a treatment too. And dry needling has been shown to be effective at reducing painful tendon conditions.</li>\r\n 	<li>Dry needling encourages localized bleeding and fibroblastic proliferation. That means it boosts the body\'s natural healing cascade, which is also one of the healing mechanisms of Regenerative Orthopedics. But Regenerative Orthopedics also adds potent growth factors to begin tissue repair and regeneration at the injury site.</li>\r\n</ol>\r\n<h3>What Does the Research Say About Dry Needling as a Treatment?</h3>\r\n<a href=\"https://link.springer.com/journal/12178\" data-test=\"journal-link\"><i data-test=\"journal-title\">Current Reviews in Musculoskeletal Medicine</i></a> says, \"Dry needling involves inserting needles into the affected tendon, and it is thought to disrupt the chronic degenerative process and encourage localized bleeding and fibroblastic proliferation.\"1 Dextrose Prolotherapy works by similar means, but it also adds the benefit of dextrose which will boost the body\'s natural healing cascade by introducing this natural substance.\r\n\r\nAnd dry needling has also been shown to have a positive effect by decreasing knee pain. A study in the <em>Journal of Clinical Medicine</em> demonstrates that \"low to moderate evidence suggests a positive effect of trigger point dry needling on pain and related disability in patellofemoral pain.\"2 Again, dry needling is a treatment in itself and not a placebo.\r\n\r\nDry needling also has been shown to decrease tennis elbow pain. A 2020 article in the journal <i>Clinical Rehabilitation </i>found that the dry needling reduced pain intensity and had a \"positive effect on pain-related disability, pressure pain sensitivity and strength at short-term in patients with lateral epicondylalgia (tennis elbow) of musculoskeletal origin.\"3\r\n<h3>Regenerative Orthopedics Boost the Healing Effect Even More</h3>\r\nThere is a benefit  to the healing process when a needle is inserted at the attachment of a tendon and of a ligament. And there is more of a benefit when the solutions used in Prolotherapy, PRP, and Stem Cell Therapy are part of the therapy. Regenerative Orthopedics are all injection techniques directed at tendons, ligaments, and other soft tissue structures. The treatments are very effective at reducing and eliminating the pain involved in a multitude of painful joint conditions.\r\n\r\nIt makes sense that if it is helpful to reduce pain by just inserting a needle into the tendon, then it is even more helpful to include solutions that boost the healing capacity even more. At OrthoRegen, we have many years of experience treating people with painful joint conditions, and getting them back to doing the activities and sports that they love. <a href=\"https://www.drfields.com/contact/\">Contact us today.</a>\r\n\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n&nbsp;\r\n<ol>\r\n 	<li>Sychev, Vladimir, Aharon S. Finestone, and Leonid Kalichman. \"Dry Needling as a Treatment Modality for Tendinopathy: a Narrative Review.\" <i>Current Reviews in Musculoskeletal Medicine</i> (2020): 1-8.</li>\r\n 	<li>Rahou-El-Bachiri, Youssef, et al. \"Effects of Trigger Point Dry Needling for the Management of Knee Pain Syndromes: A Systematic Review and Meta-Analysis.\" <i>Journal of Clinical Medicine</i> 9.7 (2020): 2044.</li>\r\n 	<li>Navarro-Santana, Marcos J., et al. \"Effects of trigger point dry needling on lateral epicondylalgia of musculoskeletal origin: a systematic review and meta-analysis.\" <i>Clinical Rehabilitation</i>(2020): 0269215520937468.</li>\r\n</ol>\r\n&nbsp;','Dry Needling of Tendons is Not a Placebo','','inherit','closed','closed','','2012-revision-v1','','','2020-09-24 22:41:17','2020-09-24 22:41:17','',2012,'https://www.drfields.com/uncategorized/2012-revision-v1/',0,'revision','',0),(4165,9,'2020-09-24 22:43:03','2020-09-24 22:43:03','<h2><strong>Dry Needling of Tendons Is NOT a Placebo</strong></h2>\r\nDry needling of tendons is not a placebo, but is a treatment in and of itself.\r\n\r\nWe have a couple of takeaways in this article:\r\n<ol>\r\n 	<li>Since dry needling is not a placebo, then when researchers do studies that compare such treatments as PRP to dry needling, the results need to be understood. Dry needling is a treatment too. And dry needling has been shown to be effective at reducing painful tendon conditions.</li>\r\n 	<li>Dry needling encourages localized bleeding and fibroblastic proliferation. That means it boosts the body\'s natural healing cascade, which is also one of the healing mechanisms of Regenerative Orthopedics. But Regenerative Orthopedics also adds potent growth factors to begin tissue repair and regeneration at the injury site.</li>\r\n</ol>\r\n<h3>What Does the Research Say About Dry Needling as a Treatment?</h3>\r\n<a href=\"https://link.springer.com/journal/12178\" data-test=\"journal-link\"><i data-test=\"journal-title\">Current Reviews in Musculoskeletal Medicine</i></a> says, \"Dry needling involves inserting needles into the affected tendon, and it is thought to disrupt the chronic degenerative process and encourage localized bleeding and fibroblastic proliferation.\"1 Dextrose Prolotherapy works by similar means, but it also adds the benefit of dextrose which will boost the body\'s natural healing cascade by introducing this natural substance.\r\n\r\nAnd dry needling has also been shown to have a positive effect by decreasing knee pain. A study in the <em>Journal of Clinical Medicine</em> demonstrates that \"low to moderate evidence suggests a positive effect of trigger point dry needling on pain and related disability in patellofemoral pain.\"2 Again, dry needling is a treatment in itself and not a placebo.\r\n\r\nDry needling also has been shown to decrease tennis elbow pain. A 2020 article in the journal <i>Clinical Rehabilitation </i>found that the dry needling reduced pain intensity and had a \"positive effect on pain-related disability, pressure pain sensitivity and strength at short-term in patients with lateral epicondylalgia (tennis elbow) of musculoskeletal origin.\"3\r\n<h3>Regenerative Orthopedics Boost the Healing Effect Even More</h3>\r\nThere is a benefit  to the healing process when a needle is inserted at the attachment of a tendon and of a ligament. And there is more of a benefit when the solutions used in Prolotherapy, PRP, and Stem Cell Therapy are part of the therapy. Regenerative Orthopedics are all injection techniques directed at tendons, ligaments, and other soft tissue structures. The treatments are very effective at reducing and eliminating the pain involved in a multitude of painful joint conditions.\r\n\r\nIt makes sense that if it is helpful to reduce pain by just inserting a needle into the tendon, then it is even more helpful to include solutions that boost the healing capacity. At OrthoRegen, we have many years of experience treating people with painful joint conditions, and getting them back to doing the activities and sports that they love. <a href=\"https://www.drfields.com/contact/\">Contact us today.</a>\r\n\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Sychev, Vladimir, Aharon S. Finestone, and Leonid Kalichman. \"Dry Needling as a Treatment Modality for Tendinopathy: a Narrative Review.\" <i>Current Reviews in Musculoskeletal Medicine</i> (2020): 1-8.</li>\r\n 	<li>Rahou-El-Bachiri, Youssef, et al. \"Effects of Trigger Point Dry Needling for the Management of Knee Pain Syndromes: A Systematic Review and Meta-Analysis.\" <i>Journal of Clinical Medicine</i> 9.7 (2020): 2044.</li>\r\n 	<li>Navarro-Santana, Marcos J., et al. \"Effects of trigger point dry needling on lateral epicondylalgia of musculoskeletal origin: a systematic review and meta-analysis.\" <i>Clinical Rehabilitation</i>(2020): 0269215520937468.</li>\r\n</ol>\r\n&nbsp;','Dry Needling of Tendons is Not a Placebo','','inherit','closed','closed','','2012-revision-v1','','','2020-09-24 22:43:03','2020-09-24 22:43:03','',2012,'https://www.drfields.com/uncategorized/2012-revision-v1/',0,'revision','',0),(4166,9,'2020-09-24 22:46:03','2020-09-24 22:46:03','Prolo Definition','Prolo Definition','Prolo Definition','inherit','open','closed','','prolo-definition','','','2020-09-24 22:46:03','2020-09-24 22:46:03','',2012,'https://www.drfields.com/wp-content/uploads/2019/06/Prolo-definition.png',0,'attachment','image/png',0),(4167,9,'2020-09-24 22:48:06','2020-09-24 22:48:06','<h2><strong>Dry Needling of Tendons Is NOT a Placebo</strong></h2>\r\n[caption id=\"attachment_4166\" align=\"alignright\" width=\"402\"]<img class=\" wp-image-4166\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Prolo-definition-500x376.png\" alt=\"Prolo Definition\" width=\"402\" height=\"302\" />                           <strong>Prolotherapy Definition</strong>[/caption]\r\n\r\nDry needling of tendons is not a placebo, but is a treatment in and of itself.\r\n\r\nWe have a couple of takeaways in this article:\r\n<ol>\r\n 	<li>Since dry needling is not a placebo, then when researchers do studies that compare such treatments as PRP to dry needling, the results need to be understood. Dry needling is a treatment too. And dry needling has been shown to be effective at reducing painful tendon conditions.</li>\r\n 	<li>Dry needling encourages localized bleeding and fibroblastic proliferation. That means it boosts the body\'s natural healing cascade, which is also one of the healing mechanisms of Regenerative Orthopedics. But Regenerative Orthopedics also adds potent growth factors to begin tissue repair and regeneration at the injury site.</li>\r\n</ol>\r\n<h3>What Does the Research Say About Dry Needling as a Treatment?</h3>\r\n<a href=\"https://link.springer.com/journal/12178\" data-test=\"journal-link\"><i data-test=\"journal-title\">Current Reviews in Musculoskeletal Medicine</i></a> says, \"Dry needling involves inserting needles into the affected tendon, and it is thought to disrupt the chronic degenerative process and encourage localized bleeding and fibroblastic proliferation.\"1 Dextrose Prolotherapy works by similar means, but it also adds the benefit of dextrose which will boost the body\'s natural healing cascade by introducing this natural substance.\r\n\r\nAnd dry needling has also been shown to have a positive effect by decreasing knee pain. A study in the <em>Journal of Clinical Medicine</em> demonstrates that \"low to moderate evidence suggests a positive effect of trigger point dry needling on pain and related disability in patellofemoral pain.\"2 Again, dry needling is a treatment in itself and not a placebo.\r\n\r\nDry needling also has been shown to decrease tennis elbow pain. A 2020 article in the journal <i>Clinical Rehabilitation </i>found that the dry needling reduced pain intensity and had a \"positive effect on pain-related disability, pressure pain sensitivity and strength at short-term in patients with lateral epicondylalgia (tennis elbow) of musculoskeletal origin.\"3\r\n<h3>Regenerative Orthopedics Boost the Healing Effect Even More</h3>\r\nThere is a benefit  to the healing process when a needle is inserted at the attachment of a tendon and of a ligament. And there is more of a benefit when the solutions used in Prolotherapy, PRP, and Stem Cell Therapy are part of the therapy. Regenerative Orthopedics are all injection techniques directed at tendons, ligaments, and other soft tissue structures. The treatments are very effective at reducing and eliminating the pain involved in a multitude of painful joint conditions.\r\n\r\nIt makes sense that if it is helpful to reduce pain by just inserting a needle into the tendon, then it is even more helpful to include solutions that boost the healing capacity. At OrthoRegen, we have many years of experience treating people with painful joint conditions, and getting them back to doing the activities and sports that they love. <a href=\"https://www.drfields.com/contact/\">Contact us today.</a>\r\n\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Sychev, Vladimir, Aharon S. Finestone, and Leonid Kalichman. \"Dry Needling as a Treatment Modality for Tendinopathy: a Narrative Review.\" <i>Current Reviews in Musculoskeletal Medicine</i> (2020): 1-8.</li>\r\n 	<li>Rahou-El-Bachiri, Youssef, et al. \"Effects of Trigger Point Dry Needling for the Management of Knee Pain Syndromes: A Systematic Review and Meta-Analysis.\" <i>Journal of Clinical Medicine</i> 9.7 (2020): 2044.</li>\r\n 	<li>Navarro-Santana, Marcos J., et al. \"Effects of trigger point dry needling on lateral epicondylalgia of musculoskeletal origin: a systematic review and meta-analysis.\" <i>Clinical Rehabilitation</i>(2020): 0269215520937468.</li>\r\n</ol>\r\n&nbsp;','Dry Needling of Tendons is Not a Placebo','','inherit','closed','closed','','2012-revision-v1','','','2020-09-24 22:48:06','2020-09-24 22:48:06','',2012,'https://www.drfields.com/uncategorized/2012-revision-v1/',0,'revision','',0),(4168,9,'2020-09-24 22:51:12','2020-09-24 22:51:12','<h2><strong>Dry Needling of Tendons Is NOT a Placebo</strong></h2>\r\n[caption id=\"attachment_4166\" align=\"alignright\" width=\"402\"]<img class=\"wp-image-4166\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Prolo-definition-500x376.png\" alt=\"Prolo Definition\" width=\"402\" height=\"302\" /> <em>Prolotherapy assists the damaged structures to heal even further than dry needling</em>[/caption]\r\n\r\nDry needling of tendons is not a placebo, but is a treatment in and of itself.\r\n\r\nWe have a couple of takeaways in this article:\r\n<ol>\r\n 	<li>Since dry needling is not a placebo, then when researchers do studies that compare such treatments as PRP to dry needling, the results need to be understood. Dry needling is a treatment too. And dry needling has been shown to be effective at reducing painful tendon conditions.</li>\r\n 	<li>Dry needling encourages localized bleeding and fibroblastic proliferation. That means it boosts the body\'s natural healing cascade, which is also one of the healing mechanisms of Regenerative Orthopedics. But Regenerative Orthopedics also adds potent growth factors to begin tissue repair and regeneration at the injury site.</li>\r\n</ol>\r\n<h3>What Does the Research Say About Dry Needling as a Treatment?</h3>\r\n<a href=\"https://link.springer.com/journal/12178\" data-test=\"journal-link\"><i data-test=\"journal-title\">Current Reviews in Musculoskeletal Medicine</i></a> says, \"Dry needling involves inserting needles into the affected tendon, and it is thought to disrupt the chronic degenerative process and encourage localized bleeding and fibroblastic proliferation.\"1 Dextrose Prolotherapy works by similar means, but it also adds the benefit of dextrose which will boost the body\'s natural healing cascade by introducing this natural substance.\r\n\r\nAnd dry needling has also been shown to have a positive effect by decreasing knee pain. A study in the <em>Journal of Clinical Medicine</em> demonstrates that \"low to moderate evidence suggests a positive effect of trigger point dry needling on pain and related disability in patellofemoral pain.\"2 Again, dry needling is a treatment in itself and not a placebo.\r\n\r\nDry needling also has been shown to decrease tennis elbow pain. A 2020 article in the journal <i>Clinical Rehabilitation </i>found that the dry needling reduced pain intensity and had a \"positive effect on pain-related disability, pressure pain sensitivity and strength at short-term in patients with lateral epicondylalgia (tennis elbow) of musculoskeletal origin.\"3\r\n<h3>Regenerative Orthopedics Boost the Healing Effect Even More</h3>\r\nThere is a benefit  to the healing process when a needle is inserted at the attachment of a tendon and of a ligament. And there is more of a benefit when the solutions used in Prolotherapy, PRP, and Stem Cell Therapy are part of the therapy. Regenerative Orthopedics are all injection techniques directed at tendons, ligaments, and other soft tissue structures. The treatments are very effective at reducing and eliminating the pain involved in a multitude of painful joint conditions.\r\n\r\nIt makes sense that if it is helpful to reduce pain by just inserting a needle into the tendon, then it is even more helpful to include solutions that boost the healing capacity. At OrthoRegen, we have many years of experience treating people with painful joint conditions, and getting them back to doing the activities and sports that they love. <a href=\"https://www.drfields.com/contact/\">Contact us today.</a>\r\n\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Sychev, Vladimir, Aharon S. Finestone, and Leonid Kalichman. \"Dry Needling as a Treatment Modality for Tendinopathy: a Narrative Review.\" <i>Current Reviews in Musculoskeletal Medicine</i> (2020): 1-8.</li>\r\n 	<li>Rahou-El-Bachiri, Youssef, et al. \"Effects of Trigger Point Dry Needling for the Management of Knee Pain Syndromes: A Systematic Review and Meta-Analysis.\" <i>Journal of Clinical Medicine</i> 9.7 (2020): 2044.</li>\r\n 	<li>Navarro-Santana, Marcos J., et al. \"Effects of trigger point dry needling on lateral epicondylalgia of musculoskeletal origin: a systematic review and meta-analysis.\" <i>Clinical Rehabilitation</i>(2020): 0269215520937468.</li>\r\n</ol>\r\n&nbsp;','Dry Needling of Tendons is Not a Placebo','','inherit','closed','closed','','2012-revision-v1','','','2020-09-24 22:51:12','2020-09-24 22:51:12','',2012,'https://www.drfields.com/uncategorized/2012-revision-v1/',0,'revision','',0),(4169,9,'2020-09-26 03:01:21','2020-09-26 03:01:21','<h2><strong>.Dry Needling of Tendons Is NOT a Placebo</strong></h2>\r\n[caption id=\"attachment_4166\" align=\"alignright\" width=\"402\"]<img class=\"wp-image-4166\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Prolo-definition-500x376.png\" alt=\"Prolotherapy Definition\" width=\"402\" height=\"302\" /> <em>Prolotherapy assists the damaged structures to heal even more than dry needling</em>[/caption]\r\n\r\nDry needling of tendons is not a placebo, but is a treatment in and of itself.\r\n\r\nWe have a couple of takeaways in this article:\r\n<ol>\r\n 	<li>Since dry needling is not a placebo, then when researchers do studies that compare such treatments as PRP to dry needling. This needs to be understood and taken into consideration when comparing results. Dry needling is a treatment too. And dry needling has been shown to be effective at reducing painful tendon conditions.</li>\r\n 	<li>Dry needling encourages localized bleeding and fibroblastic proliferation. That means it boosts the body\'s natural healing cascade, which is also one of the healing mechanisms of Regenerative Orthopedics. But Regenerative Orthopedics also adds potent growth factors to begin tissue repair and regeneration at the injury site.</li>\r\n</ol>\r\n<h3>What Does the Research Say About Dry Needling as a Treatment?</h3>\r\n<a href=\"https://link.springer.com/journal/12178\" data-test=\"journal-link\"><i data-test=\"journal-title\">Current Reviews in Musculoskeletal Medicine</i></a> says, \"Dry needling involves inserting needles into the affected tendon, and it is thought to disrupt the chronic degenerative process and encourage localized bleeding and fibroblastic proliferation.\"1 Dextrose Prolotherapy works by similar means. But it also adds the benefit of dextrose. That means it will boost the body\'s natural healing cascade by introducing this natural substance.\r\n\r\nAnd dry needling has also been shown to have a positive effect by decreasing knee pain. A study in the <em>Journal of Clinical Medicine</em> demonstrates that \"low to moderate evidence suggests a positive effect of trigger point dry needling on pain and related disability in patellofemoral pain.\"2 Again, dry needling is a treatment in itself and not a placebo.\r\n\r\nDry needling also has been shown to decrease tennis elbow pain. A 2020 article in the journal <i>Clinical Rehabilitation </i>found that the the treatment reduced pain intensity. And it had a \"positive effect on pain-related disability, pressure pain sensitivity and strength at short-term in patients with lateral epicondylalgia (tennis elbow) of musculoskeletal origin.\"3\r\n<h3>Regenerative Orthopedics Boost the Healing Effect Even More</h3>\r\nThere is a benefit  to the healing process when a needle is inserted at the attachment of a tendon and of a ligament. And there is more of a benefit when the solutions used in Prolotherapy, PRP, and Stem Cell Therapy are part of the therapy. Regenerative Orthopedics are all injection techniques directed at tendons, ligaments, and other soft tissue structures. The treatments are very effective at reducing and eliminating the pain involved in a multitude of painful joint conditions.\r\n\r\nIt makes sense that if it is helpful to reduce pain by just inserting a needle into the tendon, then it is even more helpful to include solutions that boost the healing capacity. At OrthoRegen, we have many years of experience treating people with painful joint conditions, and getting them back to doing the activities and sports that they love. <a href=\"https://www.drfields.com/contact/\">Contact us today.</a>\r\n\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Sychev, Vladimir, Aharon S. Finestone, and Leonid Kalichman. \"Dry Needling as a Treatment Modality for Tendinopathy: a Narrative Review.\" <i>Current Reviews in Musculoskeletal Medicine</i> (2020): 1-8.</li>\r\n 	<li>Rahou-El-Bachiri, Youssef, et al. \"Effects of Trigger Point Dry Needling for the Management of Knee Pain Syndromes: A Systematic Review and Meta-Analysis.\" <i>Journal of Clinical Medicine</i> 9.7 (2020): 2044.</li>\r\n 	<li>Navarro-Santana, Marcos J., et al. \"Effects of trigger point dry needling on lateral epicondylalgia of musculoskeletal origin: a systematic review and meta-analysis.\" <i>Clinical Rehabilitation</i>(2020): 0269215520937468.</li>\r\n</ol>\r\n&nbsp;','Dry Needling of Tendons is Not a Placebo','','inherit','closed','closed','','2012-revision-v1','','','2020-09-26 03:01:21','2020-09-26 03:01:21','',2012,'https://www.drfields.com/uncategorized/2012-revision-v1/',0,'revision','',0),(4170,9,'2020-09-26 03:03:31','2020-09-26 03:03:31','<h2><strong>.Dry Needling of Tendons Is NOT a Placebo</strong></h2>\r\n[caption id=\"attachment_4166\" align=\"alignright\" width=\"402\"]<img class=\"wp-image-4166\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Prolo-definition-500x376.png\" alt=\"Prolotherapy Definition\" width=\"402\" height=\"302\" /> <em>Prolotherapy assists the damaged structures to heal even more than dry needling</em>[/caption]\r\n\r\nDry needling of tendons is not a placebo, but is a treatment in and of itself.\r\n\r\nWe have a couple of takeaways in this article:\r\n<ol>\r\n 	<li>Since dry needling is not a placebo, then when researchers do studies that compare such treatments as PRP to dry needling. This needs to be understood and taken into consideration when comparing results. Dry needling is a treatment too. And dry needling has been shown to be effective at reducing painful tendon conditions.</li>\r\n 	<li>Dry needling encourages localized bleeding and fibroblastic proliferation. That means it boosts the body\'s natural healing cascade, which is also one of the healing mechanisms of Regenerative Orthopedics. But Regenerative Orthopedics also adds potent growth factors to begin tissue repair and regeneration at the injury site.</li>\r\n</ol>\r\n<h3>What Does the Research Say About Dry Needling as a Treatment?</h3>\r\n<a href=\"https://link.springer.com/journal/12178\" data-test=\"journal-link\"><i data-test=\"journal-title\">Current Reviews in Musculoskeletal Medicine</i></a> says, \"Dry needling involves inserting needles into the affected tendon, and it is thought to disrupt the chronic degenerative process and encourage localized bleeding and fibroblastic proliferation.\"1 Dextrose Prolotherapy works by similar means. But it also adds the benefit of dextrose. That means it will boost the body\'s natural healing cascade by introducing this natural substance.\r\n\r\nAnd dry needling has also been shown to have a positive effect by decreasing knee pain. A study in the <em>Journal of Clinical Medicine</em> demonstrates that \"low to moderate evidence suggests a positive effect of trigger point dry needling on pain and related disability in patellofemoral pain.\"2 Again, dry needling is a treatment in itself and not a placebo.\r\n\r\nAnd dry needling also decreases tennis elbow pain. A 2020 article in the journal <i>Clinical Rehabilitation </i>found that the the treatment reduced pain intensity. And it had a \"positive effect on pain-related disability, pressure pain sensitivity and strength at short-term in patients with lateral epicondylalgia (tennis elbow) of musculoskeletal origin.\"3\r\n<h3>Regenerative Orthopedics Boost the Healing Effect Even More</h3>\r\nThere is a benefit  to the healing process when a needle is inserted at the attachment of a tendon and of a ligament. And there is more of a benefit when the solutions used in Prolotherapy, PRP, and Stem Cell Therapy are part of the therapy. Regenerative Orthopedics are all injection techniques directed at tendons, ligaments, and other soft tissue structures. The treatments are very effective at reducing and eliminating the pain involved in a multitude of painful joint conditions.\r\n\r\nIt makes sense that if it is helpful to reduce pain by just inserting a needle into the tendon, then it is even more helpful to include solutions that boost the healing capacity. At OrthoRegen, we have many years of experience treating people with painful joint conditions, and getting them back to doing the activities and sports that they love. <a href=\"https://www.drfields.com/contact/\">Contact us today.</a>\r\n\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Sychev, Vladimir, Aharon S. Finestone, and Leonid Kalichman. \"Dry Needling as a Treatment Modality for Tendinopathy: a Narrative Review.\" <i>Current Reviews in Musculoskeletal Medicine</i> (2020): 1-8.</li>\r\n 	<li>Rahou-El-Bachiri, Youssef, et al. \"Effects of Trigger Point Dry Needling for the Management of Knee Pain Syndromes: A Systematic Review and Meta-Analysis.\" <i>Journal of Clinical Medicine</i> 9.7 (2020): 2044.</li>\r\n 	<li>Navarro-Santana, Marcos J., et al. \"Effects of trigger point dry needling on lateral epicondylalgia of musculoskeletal origin: a systematic review and meta-analysis.\" <i>Clinical Rehabilitation</i>(2020): 0269215520937468.</li>\r\n</ol>\r\n&nbsp;','Dry Needling of Tendons is Not a Placebo','','inherit','closed','closed','','2012-revision-v1','','','2020-09-26 03:03:31','2020-09-26 03:03:31','',2012,'https://www.drfields.com/uncategorized/2012-revision-v1/',0,'revision','',0),(4171,9,'2020-09-26 03:10:44','2020-09-26 03:10:44','<h2><strong>Dry Needling of Tendons Is NOT a Placebo</strong></h2>\r\n[caption id=\"attachment_4166\" align=\"alignright\" width=\"402\"]<img class=\"wp-image-4166\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Prolo-definition-500x376.png\" alt=\"Prolotherapy Definition\" width=\"402\" height=\"302\" /> <strong><i>Encourage even more tendon healing than dry needling with Prolotherapy!</i></strong>[/caption]\r\n\r\nDry needling of tendons is not a placebo, but is a treatment in and of itself.\r\n\r\nWe have a couple of takeaways in this article:\r\n<ol>\r\n 	<li>Since dry needling is not a placebo, then when researchers do studies that compare such treatments as PRP to dry needling. This needs to be understood and taken into consideration when comparing results. Dry needling is a treatment too. And dry needling has been shown to be effective at reducing painful tendon conditions.</li>\r\n 	<li>Dry needling encourages localized bleeding and fibroblastic proliferation. That means it boosts the body\'s natural healing cascade, which is also one of the healing mechanisms of Regenerative Orthopedics. But Regenerative Orthopedics also adds potent growth factors to begin tissue repair and regeneration at the injury site.</li>\r\n</ol>\r\n<h3>What Does the Research Say About Dry Needling as a Treatment?</h3>\r\n<a href=\"https://link.springer.com/journal/12178\" data-test=\"journal-link\"><i data-test=\"journal-title\">Current Reviews in Musculoskeletal Medicine</i></a> says, \"Dry needling involves inserting needles into the affected tendon, and it is thought to disrupt the chronic degenerative process and encourage localized bleeding and fibroblastic proliferation.\"1 Dextrose Prolotherapy works by similar means. But it also adds the benefit of dextrose. That means it will boost the body\'s natural healing cascade by introducing this natural substance.\r\n\r\nAnd dry needling has also been shown to have a positive effect by decreasing knee pain. A study in the <em>Journal of Clinical Medicine</em> demonstrates that \"low to moderate evidence suggests a positive effect of trigger point dry needling on pain and related disability in patellofemoral pain.\"2 Again, dry needling is a treatment in itself and not a placebo.\r\n\r\nAnd dry needling also decreases tennis elbow pain. A 2020 article in the journal <i>Clinical Rehabilitation </i>found that the the treatment reduced pain intensity. And it had a \"positive effect on pain-related disability, pressure pain sensitivity and strength at short-term in patients with lateral epicondylalgia (tennis elbow) of musculoskeletal origin.\"3\r\n<h3>Regenerative Orthopedics Boost the Healing Effect Even More</h3>\r\nThere is a benefit  to the healing process when a needle is inserted at the attachment of a tendon and of a ligament. And there is more of a benefit when the solutions used in Prolotherapy, PRP, and Stem Cell Therapy are part of the therapy. Regenerative Orthopedics are all injection techniques directed at tendons, ligaments, and other soft tissue structures. The treatments are very effective at reducing and eliminating the pain involved in a multitude of painful joint conditions.\r\n\r\nIt makes sense that if it is helpful to reduce pain by just inserting a needle into the tendon, then it is even more helpful to include solutions that boost the healing capacity. At OrthoRegen, we have many years of experience treating people with painful joint conditions, and getting them back to doing the activities and sports that they love. <a href=\"https://www.drfields.com/contact/\">Contact us today.</a>\r\n\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Sychev, Vladimir, Aharon S. Finestone, and Leonid Kalichman. \"Dry Needling as a Treatment Modality for Tendinopathy: a Narrative Review.\" <i>Current Reviews in Musculoskeletal Medicine</i> (2020): 1-8.</li>\r\n 	<li>Rahou-El-Bachiri, Youssef, et al. \"Effects of Trigger Point Dry Needling for the Management of Knee Pain Syndromes: A Systematic Review and Meta-Analysis.\" <i>Journal of Clinical Medicine</i> 9.7 (2020): 2044.</li>\r\n 	<li>Navarro-Santana, Marcos J., et al. \"Effects of trigger point dry needling on lateral epicondylalgia of musculoskeletal origin: a systematic review and meta-analysis.\" <i>Clinical Rehabilitation</i>(2020): 0269215520937468.</li>\r\n</ol>\r\n&nbsp;','Dry Needling of Tendons is Not a Placebo','','inherit','closed','closed','','2012-revision-v1','','','2020-09-26 03:10:44','2020-09-26 03:10:44','',2012,'https://www.drfields.com/uncategorized/2012-revision-v1/',0,'revision','',0),(4172,9,'2020-09-28 00:18:54','2020-09-28 00:18:54','<div class=\"page\" title=\"Page 1\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\n[caption id=\"attachment_4174\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-500x281.jpg\" alt=\"Foot Pain\" width=\"500\" height=\"281\" /> <strong><em>                        Resolve Foot Pain with Prolotherapy</em></strong>[/caption]\n\nAnnoying foot pain affects about a quarter of the population. And let\'s face it, most of us spend a lot of time on our feet. Every time we take a step, we put half of our body weight on our feet. Add running and jumping place into the mix, and you have even more stress placed on them. So, it doesn\'t come as any surprise then, that a bunch of Americans would end up with foot pain.\n\nPoorly fitting shoes can add to the pain too. And some foot shapes and conditions like flat foot can add to the problem too. Also, forefoot or toe problems, like hammer toe and bunions are conditions that can cause foot pain.\n\n</div>\n</div>\n</div>\n<div class=\"page\" title=\"Page 2\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\nOftentimes, an underlying problem of ligament or tendon injury or weakness is at the core and is the pain causing culprit.\n<h3>What Helps Foot Pain Besides Surgery?</h3>\n<h3><em>Regenerative Orthopedics like Prolotherapy, PRP, and Stem Cell Therapy Can!</em></h3>\n<div class=\"page\" title=\"Page 2\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\nRegenerative therapies, like <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy,</a> are becoming more and more widespread as a form of non-surgical pain management. And they are very often used in relieving pain associated with tendon and ligament injuries in the joints. But how effective is it?\n<h3>How Effective Is Prolotherapy and What Does the Research Show?</h3>\n<div class=\"page\" title=\"Page 2\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\nStudies have shown that Prolotherapy boosts the production of new collagen.1 And they have also shown that Prolotherapy improves ligament and tendon diameter and strength.2 Therefore, Prolotherapy doesn\'t just take some pain away. It can actually repair the tendon or ligament. And that is great news. Very often then, in tendon and ligament injury, the person can avoid surgery by choosing this therapy instead. And who doesn\'t want to avoid surgery?\n\n</div>\n<h3>What About Foot Pain from Plantar Fasciosis?</h3>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\nYeah, plantar fasciosis is a pretty painful foot condition. Can Prolotherapy help? In an article in the <em>British Journal of Sports Medicine</em>, the researchers noted that 16 out of 20 patient with plantar fasciosis who received Dextrose Prolotherapy had good to excellent results.3 And these were cases of chronic, persistent pain lasting an average of 21 months.3 That sounds like a lot of relief!\n<h3>Regenerative Orthopedics, Like Prolotherapy, Are Effective Treatment Options for Persistent Foot Pain</h3>\n<div class=\"page\" title=\"Page 8\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\nDextrose Prolotherapy can be used on patients who have months or even years of unresolved foot pain. And Regenerative Orthopedics  can improve the quality of life for those who suffer from annoying, persistent foot pain. Patients who have received this treatment have reported \"less pain, stiffness, depressed and anxious thoughts, medication usage, as well as improved walking ability, sleep and exercise ability.\"Why put up with pain, when you have an alternative.\n\nCall us today!\n\n</div>\n</div>\n</div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n\n&nbsp;\n<h3>References</h3>\n<div class=\"page\" title=\"Page 9\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<ol>\n 	<li>Schmidt H. Effect of growth factors on proliferation of fibroblasts from the medial collateral and anterior cruciate ligaments. Journal of Orthopaedic Research. 1995;13:184-190.</li>\n 	<li>Hackett G. Joint stabilization: An experimental, histiologic study with comments on the clinical application in ligament proliferation. American Journal of Surgery. 1955;89:968-973</li>\n 	<li>Ryan MB, Wong AD, Gillies JH, Wong J, Traunton JE Sonographically guided intratendinous injections of hyperosmolar dextrose/lidocaine: a pilot study for the treatment of chronic plantar fasciitis. Br J Sports Med 2009;43 :303–306.</li>\n 	<li>Hauser, Ross A., Marion A. Hauser, and J. K. Cukla. \"A retrospective observational study on Hackett-Hemwall Dextrose Prolotherapy for unresolved foot and toe pain at an outpatient charity clinic in rural Illinois.\" <i>J Prolotherapy</i> 3 (2011): 543-551.</li>\n</ol>\n</div>\n</div>\n</div>\n<div class=\"fullwidth color_bar row-full \">\n<div class=\"container\">\n<div class=\"row-fluid\">\n<div class=\"large_thumb\"><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\" alt=\"foot pain medium\" /></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\">Ankle/Foot</a></div>\n<div class=\"large_thumb\"></div>\n</div>\n</div>\n</div>','Foot Pain Resolution','','inherit','closed','closed','','2009-autosave-v1','','','2020-09-28 00:18:54','2020-09-28 00:18:54','',2009,'https://www.drfields.com/uncategorized/2009-autosave-v1/',0,'revision','',0),(4173,9,'2020-09-28 00:10:23','2020-09-28 00:10:23','<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nAnnoying foot pain affects about a quarter of the population. Let\'s face it. Most of us spend a lot of time on our feet. And every time we take a step, we put half of our body weight on our feet. Running and jumping place even more stress on them. So, it doesn\'t come as any surprise then, that a bunch of Americans would end up with foot pain.\r\n\r\nPoorly fitting shoes can add to the pain too. And some foot shapes and conditions like flat foot can add to the problem too. Forefoot or toe problems, like hammer toe and bunions are other conditions that can cause foot pain.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nOftentimes, an underlying problem of ligament or tendon injury or weakness is at the core and is the pain causing culprit.\r\n<h3>What helps foot pain besides surgery? Regenerative Orthopedics like Prolotherapy, PRP, and Stem Cell Therapy can!</h3>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nRegenerative therapies, like <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy,</a> are becoming more and more widespread as a form of non-surgical pain management. And it is very often used in relieving pain associated with tendon and ligament injuries in the joints. But how effective is it?\r\n<h3>How Effective Is Prolotherapy and What Does the Research Show?</h3>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nStudies have shown that Prolotherapy boosts the production of new collagen.1 They have also shown that Prolotherapy improves ligament and tendon diameter and strength.2 Therefore, it doesn\'t just take some pain away. It can actually repair the tendon or ligament. That is great news. Very often then, in tendon and ligament injury, the person can avoid surgery by choosing this therapy instead. And who doesn\'t want to avoid surgery.\r\n\r\n</div>\r\n<h3>What About Foot Pain from Plantar Fasciosis?</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nYeah, that\'s a pretty painful foot condition. Can Prolotherapy help? In an article in the British Journal of Sports Medicine, the researchers noted that 16 out of 20 patient with plantar fasciosis who received Dextrose Prolotherapy had good to excellent results.3 And these were cases of chronic, persistent pain lasting an average of 21 months.3\r\n<h3>Regenerative Orthopedics, Like Prolotherapy, Are Effective Treatment Options for Persistent Foot Pain</h3>\r\n<div class=\"page\" title=\"Page 8\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nDextrose Prolotherapy can be used on patients who have months or even years of unresolved foot pain. Regenerative Orthopedic treatment can improve the quality of life for those who suffer from annoying, persistent foot pain. Patients who have received this treatment have reported \"less pain, stiffness, depressed and anxious thoughts, medication usage, as well as improved walking ability, sleep and exercise ability.\"Why put up with pain, when you have an alternative.\r\n\r\nCall us today!\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n&nbsp;\r\n<h3>References</h3>\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n<ol>\r\n 	<li>Schmidt H. Effect of growth factors on proliferation of fibroblasts from the medial collateral and anterior cruciate ligaments. Journal of Orthopaedic Research. 1995;13:184-190.</li>\r\n 	<li>Hackett G. Joint stabilization: An experimental, histiologic study with comments on the clinical application in ligament proliferation. American Journal of Surgery. 1955;89:968-973</li>\r\n 	<li>Ryan MB, Wong AD, Gillies JH, Wong J, Traunton JE Sonographically guided intratendinous injections of hyperosmolar dextrose/lidocaine: a pilot study for the treatment of chronic plantar fasciitis. Br J Sports Med 2009;43 :303–306.</li>\r\n 	<li>Hauser, Ross A., Marion A. Hauser, and J. K. Cukla. \"A retrospective observational study on Hackett-Hemwall Dextrose Prolotherapy for unresolved foot and toe pain at an outpatient charity clinic in rural Illinois.\" <i>J Prolotherapy</i> 3 (2011): 543-551.</li>\r\n</ol>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\"><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\" alt=\"foot pain medium\" /></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\">Ankle/Foot</a></div>\r\n<div class=\"large_thumb\"></div>\r\n</div>\r\n</div>\r\n</div>','Foot Pain Resolution','','inherit','closed','closed','','2009-revision-v1','','','2020-09-28 00:10:23','2020-09-28 00:10:23','',2009,'https://www.drfields.com/uncategorized/2009-revision-v1/',0,'revision','',0),(4174,9,'2020-09-28 00:10:55','2020-09-28 00:10:55','Foot Pain','Foot Pain','Resolve Foot Pain with Prolotherapy','inherit','open','closed','','foot-pain-2','','','2020-09-28 00:11:18','2020-09-28 00:11:18','',2009,'https://www.drfields.com/wp-content/uploads/2019/06/foot-pain.jpg',0,'attachment','image/jpeg',0),(4175,9,'2020-09-28 00:19:20','2020-09-28 00:19:20','<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n[caption id=\"attachment_4174\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-500x281.jpg\" alt=\"Foot Pain\" width=\"500\" height=\"281\" /> <strong><em>                        Resolve Foot Pain with Prolotherapy</em></strong>[/caption]\r\n\r\nAnnoying foot pain affects about a quarter of the population. And let\'s face it, most of us spend a lot of time on our feet. Every time we take a step, we put half of our body weight on our feet. Add running and jumping place into the mix, and you have even more stress placed on them. So, it doesn\'t come as any surprise then, that a bunch of Americans would end up with foot pain.\r\n\r\nPoorly fitting shoes can add to the pain too. And some foot shapes and conditions like flat foot can add to the problem too. Also, forefoot or toe problems, like hammer toe and bunions are conditions that can cause foot pain.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nOftentimes, an underlying problem of ligament or tendon injury or weakness is at the core and is the pain causing culprit.\r\n<h3>What Helps Foot Pain Besides Surgery?</h3>\r\n<h3><em>Regenerative Orthopedics like Prolotherapy, PRP, and Stem Cell Therapy Can!</em></h3>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nRegenerative therapies, like <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy,</a> are becoming more and more widespread as a form of non-surgical pain management. And they are very often used in relieving pain associated with tendon and ligament injuries in the joints. But how effective is it?\r\n<h3>How Effective Is Prolotherapy and What Does the Research Show?</h3>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nStudies have shown that Prolotherapy boosts the production of new collagen.1 And they have also shown that Prolotherapy improves ligament and tendon diameter and strength.2 Therefore, Prolotherapy doesn\'t just take some pain away. It can actually repair the tendon or ligament. And that is great news. Very often then, in tendon and ligament injury, the person can avoid surgery by choosing this therapy instead. And who doesn\'t want to avoid surgery?\r\n\r\n</div>\r\n<h3>What About Foot Pain from Plantar Fasciosis?</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nYeah, plantar fasciosis is a pretty painful foot condition. Can Prolotherapy help? In an article in the <em>British Journal of Sports Medicine</em>, the researchers noted that 16 out of 20 patient with plantar fasciosis who received Dextrose Prolotherapy had good to excellent results.3 And these were cases of chronic, persistent pain lasting an average of 21 months.3 That sounds like a lot of relief!\r\n<h3>Regenerative Orthopedics, Like Prolotherapy, Are Effective Treatment Options for Persistent Foot Pain</h3>\r\n<div class=\"page\" title=\"Page 8\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nDextrose Prolotherapy can be used on patients who have months or even years of unresolved foot pain. And Regenerative Orthopedics  can improve the quality of life for those who suffer from annoying, persistent foot pain. Patients who have received this treatment have reported \"less pain, stiffness, depressed and anxious thoughts, medication usage, as well as improved walking ability, sleep and exercise ability.\"Why put up with pain, when you have an alternative.\r\n\r\nGet rid of your foot pain. Call us today!\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n&nbsp;\r\n<h3>References</h3>\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n<ol>\r\n 	<li>Schmidt H. Effect of growth factors on proliferation of fibroblasts from the medial collateral and anterior cruciate ligaments. Journal of Orthopaedic Research. 1995;13:184-190.</li>\r\n 	<li>Hackett G. Joint stabilization: An experimental, histiologic study with comments on the clinical application in ligament proliferation. American Journal of Surgery. 1955;89:968-973</li>\r\n 	<li>Ryan MB, Wong AD, Gillies JH, Wong J, Traunton JE Sonographically guided intratendinous injections of hyperosmolar dextrose/lidocaine: a pilot study for the treatment of chronic plantar fasciitis. Br J Sports Med 2009;43 :303–306.</li>\r\n 	<li>Hauser, Ross A., Marion A. Hauser, and J. K. Cukla. \"A retrospective observational study on Hackett-Hemwall Dextrose Prolotherapy for unresolved foot and toe pain at an outpatient charity clinic in rural Illinois.\" <i>J Prolotherapy</i> 3 (2011): 543-551.</li>\r\n</ol>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\"><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\"><img title=\"foot pain medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png\" alt=\"foot pain medium\" /></a><a href=\"/Articles/Prolotherapy-Research/Ankle-Foot\">Ankle/Foot</a></div>\r\n<div class=\"large_thumb\"></div>\r\n</div>\r\n</div>\r\n</div>','Foot Pain Resolution','','inherit','closed','closed','','2009-revision-v1','','','2020-09-28 00:19:20','2020-09-28 00:19:20','',2009,'https://www.drfields.com/uncategorized/2009-revision-v1/',0,'revision','',0),(4178,9,'2020-10-05 22:41:11','2020-10-05 22:41:11','<em>My dad’s life could be an example for all of us during COVID-19 to encourage us to keep moving forwards and to not look back no matter how bad things are.</em>\r\n<h2><strong>Keep Looking Forward Despite COVID-19: My Dad\'s Story</strong></h2>\r\n<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nMy dad passed away just shy of his 85th birthday in 2004. Although he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\r\n\r\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example applies especially today. To me, he was not only my dad but my best friend and my mentor. He taught me so much.\r\n\r\nMy dad was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\r\n\r\nIn 1934, his life would change forever. At first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\r\n\r\nAfter that, he applied for a program where he could be sent to the United States to live with a family, since things were getting worse for Jewish people, and especially young men, in Germany. My dad was so excited when he was accepted into the program. He had a farewell party and said goodbye to his friends and relatives as he prepared for what was ahead.\r\n\r\nA few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\r\n\r\nThen on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred. My dad\'s mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\r\n\r\nHe knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\r\n\r\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\r\n\r\nMy dad\'s mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein, and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\r\n\r\nHe did what he could to survive, he kept moving forward, and looked to the future for better days.\r\n\r\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\r\n\r\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\r\n<h4><em>“By the time you receive this, I will no longer exist.\"</em></h4>\r\nThese words struck like a lead pipe over his head.\r\n\r\nMy dad\'s mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\r\n\r\nHe could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\r\n\r\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\r\n\r\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\r\n<h4>And so, he went on. He persevered for the rest of the war in Shanghai.</h4>\r\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\r\n\r\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\r\n\r\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\r\n\r\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\r\n\r\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this story and his words and actions will help you during these very difficult times.\r\n\r\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\r\n\r\nThere is a bright future out there for all of us.\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','My Dad\'s Story: Keep Looking Forward Despite COVID-19','','inherit','closed','closed','','3677-revision-v1','','','2020-10-05 22:41:11','2020-10-05 22:41:11','',3677,'https://www.drfields.com/uncategorized/3677-revision-v1/',0,'revision','',0),(4179,9,'2020-10-05 22:42:56','2020-10-05 22:42:56','<em>My dad’s life could be an example for all of us during COVID-19 to encourage us to keep moving forwards and to not look back no matter how bad things are.</em>\r\n<h2><strong>Keep Looking Forward Despite COVID-19: My Dad\'s Story</strong></h2>\r\n<strong>By Peter A. Fields, MD, DC</strong>\r\n\r\nMy dad passed away just shy of his 85th birthday in 2004. Although he never even knew about COVID-19, I learned a lot from him to help survive this current horrible situation.\r\n\r\nHe was a man that believed actions speak louder than words. And it was his actions in his life that have helped me through tough times in my own life, and his example applies especially today. To me, he was not only my dad but my best friend and my mentor. He taught me so much.\r\n\r\nMy dad was raised in a middle-class Jewish family in Berlin, Germany, which was then a very modern and beautiful city. Life for him was pretty good, even though his parents were divorced, which was not the norm back then. He was raised by his mother and grandmother and he had a happy childhood.\r\n<h4>In 1934, his life would change forever.</h4>\r\nAt first, new laws were put in place that prohibited Jews from attending public school. Then, in 1935, Jews had their citizenship taken away. Life as he knew it was changing and things were not good.\r\n\r\nAfter that, he applied for a program where he could be sent to the United States to live with a family, since things were getting worse for Jewish people, and especially young men, in Germany. My dad was so excited when he was accepted into the program. He had a farewell party and said goodbye to his friends and relatives as he prepared for what was ahead.\r\n\r\nA few days before he was to leave, the monies for this program were delayed through the banks and they were going to have to wait a while. Eventually, when the program started up again, his 16th birthday had already passed and he was now too old for the program. For a 16-year-old, this was devastating. But he realized he could not do anything about it and knew he had to just keep looking forwards.\r\n<h4>Then on November 11th, 1938 Kristallnacht or the Night of the Broken Glass occurred.</h4>\r\nMy dad\'s mother had been forewarned that something was about to happen, so a bunch of boys (including my father) left town for the night. Upon returning to Berlin, they saw the devastation and ruins that had been wrought upon the Jewish businesses.\r\n\r\nHe knew he had to get out. The noose was getting tighter. He did not know what was about to take place in the future, but he knew that Germany would eventually go to war with Russia. He also knew that as a 19-year-old Jewish boy, he would be the first to go.\r\n\r\nThere was only one place in the world he could go without his citizenship papers (they were taken away back in 1935), and that was Shanghai, China. All other countries had closed their doors, including the United States. But 8,000 miles was very far away, and although China was not really what he wanted, he had no other choice. He had to keep looking forwards to a better future.\r\n\r\nMy dad\'s mother said she would follow. So, at 19 years of age, off he went to a very strange and foreign land. From the modern country that had given the world Mozart, Beethoven, Einstein, and others, he now found himself in a city that lacked central heat (in the winter it was below freezing), had no central plumbing, and required one to relieve themselves in a bucket. He was happy that he at least still received letters from his mother.\r\n<h4>He did what he could to survive, he kept moving forward, and looked to the future for better days.</h4>\r\nIn 1941, on December 7th, the United States entered the war. At that point, the Japanese took control of the city and made all the Jewish people live in a ghetto-like situation. There was no time for self-pity, he kept moving forward, just like he had all the other times.\r\n\r\nThe fateful day for him came in 1942 when he received what was to be the last letter from his mother. It started off with the very tragic line:\r\n<h4><em>“By the time you receive this, I will no longer exist.\"</em></h4>\r\nThese words struck like a lead pipe over his head.\r\n\r\nMy dad\'s mother had seen things collapse in Germany and she knew her days were numbered. She had been in hiding and figured she would be caught sooner or later. Unfortunately, she was right.\r\n\r\nHe could have just given up at that point. Not only was his mom murdered, but he also had lost generations of his family, which left him without 90% of his family and most likely most of his friends. Plus, he was living in squalor in a foreign city 8,000 miles away from his own country. Devastated would be too light of a word to describe how he felt.\r\n\r\nBut he knew that you cannot look back. He understood what was needed was to keep looking forward and always hope for brighter days in the future.\r\n\r\n<img class=\"size-medium wp-image-3679\" src=\"https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png\" alt=\"Look Forward\" width=\"500\" height=\"500\" />\r\n<h4>And so, he went on. He persevered for the rest of the war in Shanghai.</h4>\r\nTwo years after the war ended, in 1947, he finally received papers to enter the United States, which had always been a dream of his since his youth. Penniless, extremely thin, and without any family left, he had no idea of where he was supposed to go, or what he was supposed to do. But he just kept moving forward, taking one day at a time, and looking for the best the world could offer.\r\n\r\nThe rest is history. He met my mom, started a successful business, raised myself, my brother, and my sister, and had a wonderful life.\r\n\r\nMy dad’s life could be an example for all of us during COVID-19 and might encourage us to keep moving forwards and to not look back no matter how bad things are. Always hope for a wonderful future, strive to do the best you can, take care of yourself, look out for others, and always keep a cheerful smile on your face.\r\n\r\nThat was my father. Always looking forwards with a smile and gratitude, no matter how bad things got. If you met him you would never guess the hardships that he went thru.\r\n\r\nIn no way am I comparing our situation now to what my dad went thru, but hopefully this story and his words and actions will help you during these very difficult times.\r\n\r\nSo please be safe, be cautious, but keep looking forwards no matter how bad things get.\r\n\r\nThere is a bright future out there for all of us.\r\n\r\n~Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','My Dad\'s Story: Keep Looking Forward Despite COVID-19','','inherit','closed','closed','','3677-revision-v1','','','2020-10-05 22:42:56','2020-10-05 22:42:56','',3677,'https://www.drfields.com/uncategorized/3677-revision-v1/',0,'revision','',0),(4181,9,'2020-10-05 22:48:15','2020-10-05 22:48:15','<div class=\"col-md-8\">\r\n<h4>Holistic Integrative Medicine</h4>\r\n<img class=\"alignleft size-full wp-image-1846\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Integrative-Medicine.jpg\" alt=\"Integrative Medicine\" width=\"200\" height=\"174\" />Holistic or Integrative Medicine is a multi-faceted approach to wellness. It is more than not being sick. Rather than focusing on illness or specific parts of the body, this approach to health considers the whole person. The goal is to achieve maximum well-being, where everything is functioning at the best possible level. Often referred to as personalized or individualized medicine, healthcare based on the integrated/holistic model is considered by most practitioners today to be the future of medicine.\r\n\r\nIt couples current scientific advances with the best that alternative medicine has to offer. It expands our ability to preserve health, increase longevity and speed recovery. It does not end when you leave the office. As a lifestyle, it includes a personal commitment to move toward the right end of the wellness continuum. No matter what their current status of health, people can improve their level of well-being. Even when there are temporary setbacks, movement is always headed toward wellness.\r\n\r\nAn integrative/holistic approach to healing goes beyond just eliminating symptoms. For example, taking an aspirin for a headache would be like disconnecting the oil light on the dash of a car when it flashes. The irritation is eliminated, but the real problem still exists. In holistic/integrative medicine, a symptom is considered a message that something needs attention. So, the symptom is used as a guide to look below the surface for the root cause. Then what really needs attention can be addressed.\r\n\r\n<a href=\"https://www.drfields.com/contact/\"><img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg\" alt=\"\" /></a>\r\n\r\nHolistic Medicine utilizes the most effective, safest and least expensive treatments to help individual patients achieve the best health possible. It appreciates the value of good scientific information, but it is not confined to evidence-based medicine, which strives to limit variables and identify which treatments are helpful for the majority of patients. Holistic/Integrative Medicine recognizes that patients can be very complex individuals, who might benefit from a variety of treatments, not all of which are \"proven\" effective by expensive randomized clinical trials. Holistic/Integrative Medicine puts a premium on treatments that are very low risk and affordable to most people. It tends to choose natural remedies, as opposed to drugs and surgery. It emphasizes mind-body connections, balance, homeostasis, and restoring normal function. It tries to achieve confidence and peacefulness in a medical world that too often creates fear and anxiety.\r\n\r\nHolistic Medicine supports reaching higher levels of wellness as well as preventing illness. People enjoy the vitality and well-being that results from their positive lifestyle changes, and are motivated to continue this process throughout their lives.\r\n\r\nPacific Prolotherapy and Wellness Center focuses on disease prevention. We explain and discuss all possible treatments with you, taking the time to answer your questions carefully and honestly.\r\n\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\r\n 	<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n 	<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n 	<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n 	<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n 	<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n 	<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Holistic Integrative Medicine','','inherit','closed','closed','','1845-revision-v1','','','2020-10-05 22:48:15','2020-10-05 22:48:15','',1845,'https://www.drfields.com/uncategorized/1845-revision-v1/',0,'revision','',0),(4182,9,'2020-10-05 22:48:49','2020-10-05 22:48:49','<div class=\"col-md-8\">\r\n<h4>Musculo-Skeletal Laser Therapy</h4>\r\nLaser therapy is a new and cutting edge treatment that may benefit you. It stimulates cellular activity, expediting the healing processes to reduce inflammation and repair damaged tissue. It does this by deep tissue penetration which significantly increases the body\'s cellular production of ATP (Adenosine-triphosphate) to reduce inflammation and heal the inflamed area.\r\n<a href=\"https://www.drfields.com/contact/\"><img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg\" alt=\"\" /></a>\r\n\r\n<strong>Powerful deep tissue penetration safely and effectively treats more conditions than traditional low level laser therapy</strong>\r\n<ul>\r\n 	<li>Healing and pain relief with no side effects, drug interaction or invasive surgery.</li>\r\n 	<li>Treats acute and chronic conditions as well as post-surgical pain.</li>\r\n 	<li>Most treatments take only 10 minutes or less.</li>\r\n</ul>\r\n<strong>Are You a Potential Candidate?</strong>\r\n<ul>\r\n 	<li>If you have muscle/tendon/ligament or joint pain</li>\r\n 	<li>If you need <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or <a title=\"PRP Therapy\" href=\"/Regenerative-Techniques/PRP-Treatment\">PRP therapy</a> but are afraid of needles</li>\r\n 	<li>If you have trigger points that do not go away with rest or therapy</li>\r\n 	<li>If you have had <a title=\"Prolotherapy\" href=\"/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> or <a title=\"PRP Therapy\" href=\"/Regenerative-Techniques/PRP-Treatment\">PRP</a>, and wish to accelerate its response</li>\r\n 	<li>If you have the wound that is slow to heal and has been resistant to treatment</li>\r\n</ul>\r\n<strong>Conditions Laser Treats:</strong>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\">\r\n<ul>\r\n 	<li>Joint Pain (knee, shoulder, ankle, elbow, etc.)</li>\r\n 	<li>Back &amp; <a href=\"/conditions/chronic-pain/chronic-neck-pain/\">Neck Pain</a></li>\r\n 	<li>Acute Injuries/Swelling</li>\r\n 	<li>Chronic Conditions</li>\r\n 	<li>Sprains &amp; Strains</li>\r\n 	<li>Trigger Points</li>\r\n 	<li>Rib Pain</li>\r\n</ul>\r\n</td>\r\n<td valign=\"top\">\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Carpal Tunnel</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>Fractures</li>\r\n 	<li>Migraines</li>\r\n 	<li>Skin Wounds &amp; Rashes</li>\r\n 	<li>Neuropathy &amp; more</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>Treatment Facts</strong>\r\n<ul>\r\n 	<li>Average treatment time: 6 -10 minutes.</li>\r\n 	<li>Typical treatment schedule is 8 to 12 treatment sessions</li>\r\n 	<li>Recommended treatments per week; usually 2 – 3 times a week.</li>\r\n 	<li>Very comfortable for the patient; most feel a slight soothing warmth on their skin.</li>\r\n 	<li>Upon completion of the initial set of treatments, re-evaluation will be made.</li>\r\n 	<li>Laser Therapy has a curative component rather than simply treating symptoms</li>\r\n</ul>\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\r\n 	<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n 	<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n 	<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n 	<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n 	<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n 	<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Musculo-Skeletal Laser Therapy','','inherit','closed','closed','','1837-revision-v1','','','2020-10-05 22:48:49','2020-10-05 22:48:49','',1837,'https://www.drfields.com/uncategorized/1837-revision-v1/',0,'revision','',0),(4183,9,'2020-10-05 23:52:56','2020-10-05 23:52:56','<div class=\"col-md-8\">\r\n<h4>Bio-Identical Hormones</h4>\r\n<strong><img class=\"alignleft size-full wp-image-1832\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Bio-Identical-Hormones.jpg\" alt=\"Bio Identical Hormones\" width=\"200\" height=\"171\" />Is It For You?</strong>\r\n\r\n<strong>As we age, our hormone production changes. When hormones are in balance, studies show that your body operates at its healthiest and most efficient level. </strong>Unfortunately, the levels of the hormones your body needs to function optimally decreases as you age. And with the stresses of life, whether physical, mental or emotional, our hormone systems have added demands.<strong> Although originally thought of for women during the menopausal years, hormone deficiency can affect women and men at any age. More recent therapies promise anti-aging effects and possible deferral of the diseases of aging.</strong>\r\n\r\n<strong>Some things that can be affected by a hormone deficiency are:</strong> hot flashes; memory loss; fatigue; muscle strength; libido; insomnia, effects of aging; irritability; mood; hair loss, immune function, stress; healing after a sprain, strain or injury; muscle aches; vaginal dryness; dry skin; bone density; insomnia; blood pressure; blood sugar levels; constipation and more.\r\n\r\n<a href=\"https://www.drfields.com/contact/\"><img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg\" alt=\"\" /></a>\r\n\r\n<strong>At Pacific Prolotherapy and Medical Wellness Center we use Bio-Identical Hormones</strong> to supplement what is out of balance in your body. <strong>Bio-identical hormone replacement therapy (BHRT) uses supplemental doses of hormones with a chemical structure identical to endogenous human hormones (hormones naturally produced in the human body).</strong> BHRT differs from conventional hormone replacement therapy which by definition uses animal or synthetic hormones whose structures differ from those produced in the human body. Conventional hormone replacement therapy also uses patented medicines that come in standard sizes. This is generally a one-size-fits-all dosage regime.\r\n\r\n<strong>In an individualized approach like the one at Pacific Prolotherapy and Medical Wellness Center</strong>,\r\nwe begin by evaluating your need for hormone replacement therapy with a thorough history followed up by comprehensive testing. Once we determine where hormonal deficiencies exist, patients are prescribed precise dosages of bio-identical hormones based upon their specific and particular needs. <strong>This hormone replacement therapy plan is aimed at helping you look and feel your best.</strong> Our hormones are made up especially for our practice at a holistic (compounding) pharmacy. Our goal is to get the desired results with the lowest possible dosages.\r\n\r\n<a href=\"https://www.drfields.com/wp-content/uploads/2019/06/self_test.pdf\"><img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fields-hormone-level-quiz.jpg\" alt=\"\" /></a>\r\n\r\n<strong>Once hormone replacement therapy helps bring your levels back to optimal concentration, it may help you feel more energized, achieve a leaner, stronger physique, stabilize blood pressure and cholesterol levels, increase bone strength, boost memory, improve skin tone and more.</strong>\r\n\r\n<strong>So what are you waiting for? As time goes on, your hormone deficiencies will only get worse.\r\nCall us now for your personal hormone consultation.</strong>\r\n\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h5>Medical Services</h5>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com\">Orthopedic &amp; Sports Medicine</a></li>\r\n 	<li><a href=\"/conditions/intravenous-iv-nutritional-therapy\">Intravenous (IV) Nutritional Therapy</a></li>\r\n 	<li><a href=\"/conditions/Bio-Identical-Hormones\">Bio-Identical Hormones</a></li>\r\n 	<li><a href=\"/conditions/Musculo-Skeletal-Laser-Therapy\">Musculo-Skeletal Laser Therapy</a></li>\r\n 	<li><a href=\"/conditions/Holistic-Integrative-Medicine\">Holistic / Integrative Medicine</a></li>\r\n 	<li><a href=\"/conditions/Nutrition-Weight-Loss\">Nutrition / Weight Loss</a></li>\r\n 	<li><a href=\"/conditions/Chelation-Therapy\">Chelation Therapy</a></li>\r\n</ul>\r\n</div>','Bio-Identical Hormones','','inherit','closed','closed','','1831-revision-v1','','','2020-10-05 23:52:56','2020-10-05 23:52:56','',1831,'https://www.drfields.com/uncategorized/1831-revision-v1/',0,'revision','',0),(4184,9,'2020-10-12 18:38:44','2020-10-12 18:38:44','<h3>Stem Cell Prolotherapy</h3>\nTake a look at this article published in The<em> Townsend Letter</em> by Peter A. Fields, MD, DC  that covers Stem Cell Prolotherapy. If you\'ve ever wondered what it was all about, this article explains in detail.\n\nEver wonder how you can regenerative cartilage? Has joint replacement been recommended, but you\'d really rather not go that route? <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a> is an effective treatment option that can meet your non-surgical and regenerative joint repair goals.\n\nStem Cells therapies are definitely a newer treatment option many are seeking. But not all therapies are the same. It\'s important to educate yourself on what this treatment really offers. This is an in-depth article that discusses bone marrow stem cells and adipose stem cells. Peter A. Fields, MD, DC will tell you what they are and how they work.\n\nThis article is a great place to find out more about a non-surgical alternative to joint replacement with this regenerative injection therapy. And remember...once surgery is done, it cannot be undone! We would like to help you to avoid that scenario!\n<h4>Are you a Candidate?</h4>\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. And Stem Cell Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. And Stem Cell Prolotherapy is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process. By contrast, surgery requires you reduce activity after treatment.\n\nWould you like a <strong>second opinion before you have irreversible surgery</strong>? Are you a candidate for Stem Cell Prolotherapy? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation at <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\nCheck out other articles in the <a href=\"https://www.townsendletter.com\">Townsend Letter</a>.\n\n<img class=\"aligncenter wp-image-1207 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article-2014_Page_1.jpg\" alt=\"Stem Cell Prolotherapy\" width=\"955\" height=\"1244\" />\n\n<img class=\"aligncenter size-full wp-image-1208\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article2014_Page_2.jpg\" alt=\"Fields July Article2014 Page 2\" width=\"1650\" height=\"2150\" />','Stem Cell Prolotherapy','','inherit','closed','closed','','1524-autosave-v1','','','2020-10-12 18:38:44','2020-10-12 18:38:44','',1524,'https://www.drfields.com/uncategorized/1524-autosave-v1/',0,'revision','',0),(4185,9,'2020-10-07 17:26:20','2020-10-07 17:26:20','<h3>Stem Cell Prolotherapy</h3>\r\nTake a look at this article published in <em>The Townsend Article</em> by Peter A. Fields, MD, DC  that covers Stem Cell Prolotherapy. If you\'ve ever wondered what it was all about, this article explains in detail.\r\n\r\nEver wonder how you can regenerative cartilage? Has joint replacement been recommended, but you\'d really rather not go that route? Stem Cell Prolotherapy is an effective treatment option that can meet your non-surgical joint repair goals.\r\n\r\n<img class=\"aligncenter wp-image-1207 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article-2014_Page_1.jpg\" alt=\"Fields July Article 2014 Page 1\" width=\"955\" height=\"1244\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1208\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article2014_Page_2.jpg\" alt=\"Fields July Article2014 Page 2\" width=\"1650\" height=\"2150\" />','Stem Cell Prolotherapy','','inherit','closed','closed','','1524-revision-v1','','','2020-10-07 17:26:20','2020-10-07 17:26:20','',1524,'https://www.drfields.com/uncategorized/1524-revision-v1/',0,'revision','',0),(4186,9,'2020-10-07 17:43:19','2020-10-07 17:43:19','<h3>Stem Cell Prolotherapy</h3>\r\nTake a look at this article published in The<em> Townsend Letter</em> by Peter A. Fields, MD, DC  that covers Stem Cell Prolotherapy. If you\'ve ever wondered what it was all about, this article explains in detail.\r\n\r\nEver wonder how you can regenerative cartilage? Has joint replacement been recommended, but you\'d really rather not go that route? <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a> is an effective treatment option that can meet your non-surgical joint repair goals.\r\n\r\nStem Cells therapies are definitely a newer treatment option many are seeking. But not all therapies are the same. It\'s important to educate yourself on what this treatment really offers. This is an in-depth article that discusses bone marrow stem cells and adipose stem cells. Dr. Fields will tell you what they are and how they work.\r\n\r\nThis article is a great place to find out more about a non-surgical alternative to joint replacement with this regenerative injection therapy.\r\n\r\nCheck out other articles in the <a href=\"https://www.townsendletter.com\">Townsend Letter</a>.\r\n\r\n<img class=\"aligncenter wp-image-1207 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article-2014_Page_1.jpg\" alt=\"Stem Cell Prolotherapy\" width=\"955\" height=\"1244\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1208\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article2014_Page_2.jpg\" alt=\"Fields July Article2014 Page 2\" width=\"1650\" height=\"2150\" />','Stem Cell Prolotherapy','','inherit','closed','closed','','1524-revision-v1','','','2020-10-07 17:43:19','2020-10-07 17:43:19','',1524,'https://www.drfields.com/uncategorized/1524-revision-v1/',0,'revision','',0),(4187,9,'2020-10-07 17:47:13','2020-10-07 17:47:13','<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong></div>\r\nLos Angeles PRP treatments at OrthoRegen with Peter A. Fields MD DC are a modern, effective and less invasive way to deal with joint and muscle pain and injury for athletes or anyone who wants quick and healthy relief.\r\n\r\nAs a pioneer of treatments involving <strong>PRP in Los Angeles</strong>, Peter A Fields MD DC works with patients who need fast relief from joint and muscle pain but who also want the latest and most natural healing methods available.\r\n<div class=\"clearfix\"></div>\r\n<h4>What Is PRP Prolotherapy?</h4>\r\nThere are two ways prolotherapy can be administered. In <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose prolotherapy</a>, a solution is injected that is created from organic substances, while PRP prolotherapy uses platelets from the patient\'s own body. While more expensive and time-consuming, PRP has worked well in some cases in which dextrose prolotherapy proved ineffective.\r\n\r\nPRP prolotherapy has been shown to be highly effective at stimulating tissue repair and regenerating weak muscles, joints and other body components. When injected into an injury or pain site, prolotherapy fluids often have remarkable outcomes in terms of patient recovery times and lack of side effects.\r\n\r\nPRP treatment specifically focuses on giving patients doses of their own platelets, derived from drawn blood. Blood contains a certain number of platelets per fluid unit. By concentrating those platelets and reinjecting them into the body, not only can tissues heal remarkably quickly but the patient is not exposed to drugs or other foreign substances that can cause reactions.\r\n<h4>PRP vs. Surgery and Other Methods</h4>\r\nWhile there are many methods, including surgery, for treating injury or pain, PRP has some distinct advantages, including:\r\n<ul>\r\n 	<li>Less pain and shorter recovery time when compared to surgery or other invasive methods</li>\r\n 	<li>No addictive drugs.</li>\r\n 	<li>Short recovery time</li>\r\n 	<li>Quicker healing time</li>\r\n 	<li>No long-term treatment outlook</li>\r\n</ul>\r\nPRP prolotherapy is more expensive than other forms of prolotherapy, so the professionals at OrthoRegen may try other methods before recommending this particular treatment option.\r\n<h4>What Conditions Can Be Treated With PRP and Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles PRP and Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\nLos Angeles PRP Doctor\r\n\r\nPeter A. Fields, MD DC, also known as \"<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" is a Los Angeles PRP Doctor with years of experience in working with PRP and prolotherapy candidates and can help patients decide what is the right method of treatment for their particular needs. All it takes is a consultation.\r\n\r\nPRP Prolotherapy can be a miracle when it comes to ending joint damage and muscle pain, especially when compare to invasive surgery. OrthoRegen is ready to help people like you who want to learn just how simple it can be to treat your chronic and acute joint and muscle pain. Call our Los Angeles PRP Clinic at <a href=\"tel:+[phone_raw]\">[phone]</a> to schedule a consultation or to talk with the Doctor. You can also <a href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a> via email to set up an in-person consultation.','Los Angeles PRP Prolotherapy','','inherit','closed','closed','','1669-revision-v1','','','2020-10-07 17:47:13','2020-10-07 17:47:13','',1669,'https://www.drfields.com/uncategorized/1669-revision-v1/',0,'revision','',0),(4188,9,'2020-10-07 17:48:41','2020-10-07 17:48:41','<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\n<strong>Roberto - Knee (In Spanish)</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\n<strong>Wilbur - Knee</strong></div>\nLos Angeles PRP Prolotherapy treatments at OrthoRegen with Peter A. Fields MD DC are a modern, effective and less invasive way to deal with joint and muscle pain and injury for athletes or anyone who wants quick and healthy relief.\n\nAs a pioneer of treatments involving <strong>PRP in Los Angeles</strong>, Peter A Fields MD DC works with patients who need fast relief from joint and muscle pain but who also want the latest and most natural healing methods available.\n<div class=\"clearfix\"></div>\n<h4>What Is PRP Prolotherapy?</h4>\nThere are two ways prolotherapy can be administered. In <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose prolotherapy</a>, a solution is injected that is created from organic substances, while PRP prolotherapy uses platelets from the patient\'s own body. While more expensive and time-consuming, PRP has worked well in some cases in which dextrose prolotherapy proved ineffective.\n\nPRP prolotherapy has been shown to be highly effective at stimulating tissue repair and regenerating weak muscles, joints and other body components. When injected into an injury or pain site, prolotherapy fluids often have remarkable outcomes in terms of patient recovery times and lack of side effects.\n\nPRP treatment specifically focuses on giving patients doses of their own platelets, derived from drawn blood. Blood contains a certain number of platelets per fluid unit. By concentrating those platelets and reinjecting them into the body, not only can tissues heal remarkably quickly but the patient is not exposed to drugs or other foreign substances that can cause reactions.\n<h4>PRP vs. Surgery and Other Methods</h4>\nWhile there are many methods, including surgery, for treating injury or pain, PRP has some distinct advantages, including:\n<ul>\n 	<li>Less pain and shorter recovery time when compared to surgery or other invasive methods</li>\n 	<li>No addictive drugs.</li>\n 	<li>Short recovery time</li>\n 	<li>Quicker healing time</li>\n 	<li>No long-term treatment outlook</li>\n</ul>\nPRP prolotherapy is more expensive than other forms of prolotherapy, so the professionals at OrthoRegen may try other methods before recommending this particular treatment option.\n<h4>What Conditions Can Be Treated With PRP and Prolotherapy?</h4>\nAt OrthoRegen, my Los Angeles PRP and Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\n<ul>\n 	<li>ACL</li>\n 	<li>Tears</li>\n 	<li>Arthritis</li>\n 	<li>Bulging discs</li>\n 	<li>Bursitis</li>\n 	<li>Fibromyalgia</li>\n 	<li>Bone on Bone conditions</li>\n 	<li>Hip dysfunction</li>\n 	<li>Hip replacement</li>\n 	<li><a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\n 	<li>Knee replacement</li>\n 	<li>Lumbar or cervical spine instability</li>\n 	<li>Tendinitis</li>\n 	<li>Rotator cuff injuries</li>\n 	<li>Sciatica</li>\n</ul>\nLos Angeles PRP Doctor\n\nPeter A. Fields, MD DC, also known as \"<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" is a Los Angeles PRP Doctor with years of experience in working with PRP and prolotherapy candidates and can help patients decide what is the right method of treatment for their particular needs. All it takes is a consultation.\n\nPRP Prolotherapy can be a miracle when it comes to ending joint damage and muscle pain, especially when compare to invasive surgery. OrthoRegen is ready to help people like you who want to learn just how simple it can be to treat your chronic and acute joint and muscle pain. Call our Los Angeles PRP Clinic at <a href=\"tel:+[phone_raw]\">[phone]</a> to schedule a consultation or to talk with the Doctor. You can also <a href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a> via email to set up an in-person consultation.','Los Angeles PRP Prolotherapy','','inherit','closed','closed','','1669-autosave-v1','','','2020-10-07 17:48:41','2020-10-07 17:48:41','',1669,'https://www.drfields.com/uncategorized/1669-autosave-v1/',0,'revision','',0),(4189,9,'2020-10-07 17:50:49','2020-10-07 17:50:49','<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong></div>\r\nLos Angeles PRP Prolotherapy treatments at OrthoRegen with Peter A. Fields MD DC are a modern, effective and less invasive way to deal with joint and muscle pain and injury for athletes or anyone who wants quick and healthy relief.\r\n\r\nAs a pioneer of treatments involving <strong>PRP in Los Angeles</strong>, Peter A Fields MD DC works with patients who need fast relief from joint and muscle pain but who also want the latest and most natural healing methods available.\r\n<div class=\"clearfix\"></div>\r\n<h4>What Is PRP Prolotherapy?</h4>\r\nThere are two ways prolotherapy can be administered. In <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose prolotherapy</a>, a solution is injected that is created from organic substances, while PRP prolotherapy uses platelets from the patient\'s own body. While more expensive and time-consuming, PRP has worked well in some cases in which dextrose prolotherapy proved ineffective.\r\n\r\nPRP prolotherapy has been shown to be highly effective at stimulating tissue repair and regenerating weak muscles, joints and other body components. When injected into an injury or pain site, prolotherapy fluids often have remarkable outcomes in terms of patient recovery times and lack of side effects.\r\n\r\nPRP treatment specifically focuses on giving patients doses of their own platelets, derived from drawn blood. Blood contains a certain number of platelets per fluid unit. By concentrating those platelets and reinjecting them into the body, not only can tissues heal remarkably quickly but the patient is not exposed to drugs or other foreign substances that can cause reactions.\r\n<h4>PRP vs. Surgery and Other Methods</h4>\r\nWhile there are many methods, including surgery, for treating injury or pain, PRP has some distinct advantages, including:\r\n<ul>\r\n 	<li>Less pain and shorter recovery time when compared to surgery or other invasive methods</li>\r\n 	<li>No addictive drugs.</li>\r\n 	<li>Short recovery time</li>\r\n 	<li>Quicker healing time</li>\r\n 	<li>No long-term treatment outlook</li>\r\n</ul>\r\nPRP prolotherapy is more expensive than other forms of prolotherapy, so the professionals at OrthoRegen may try other methods before recommending this particular treatment option.\r\n<h4>What Conditions Can Be Treated With PRP and Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles PRP and Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\nLos Angeles PRP Doctor\r\n\r\nPeter A. Fields, MD DC, also known as \"<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" is a Los Angeles PRP Doctor with years of experience in working with PRP and prolotherapy candidates and can help patients decide what is the right method of treatment for their particular needs. All it takes is a consultation.\r\n\r\nPRP Prolotherapy can be a miracle when it comes to ending joint damage and muscle pain, especially when compare to invasive surgery. OrthoRegen is ready to help people like you who want to learn just how simple it can be to treat your chronic and acute joint and muscle pain. Call our Los Angeles PRP Clinic at <a href=\"tel:+[phone_raw]\">[phone]</a> to schedule a consultation or to talk with the Doctor. You can also <a href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a> via email to set up an in-person consultation.','Los Angeles PRP Prolotherapy','','inherit','closed','closed','','1669-revision-v1','','','2020-10-07 17:50:49','2020-10-07 17:50:49','',1669,'https://www.drfields.com/uncategorized/1669-revision-v1/',0,'revision','',0),(4190,9,'2020-10-07 18:12:05','2020-10-07 18:12:05','<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\n<strong>Roberto - Knee (In Spanish)</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\n<strong>Wilbur - Knee</strong></div>\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. But unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. And these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A. Fields, MD,DC.\n\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD, DC, \"<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h4>What Is Prolotherapy?</h4>\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> is a shortened name for \"proliferation therapy.\" And it is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce a gentle inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\n\nWhen the body suffers an injury, it responds by producing growth factors. But the process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand. They say areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. And this means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\n\nBut unfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\n<h4>How Does Prolotherapy Work?</h4>\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\n<h4>Does Prolotherapy Work?</h4>\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"https://www.drfields.com/how-prolotherapy-can-eliminate-joint-pain-without-surgery/\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\n<h4>What Conditions Can Be Treated With Prolotherapy?</h4>\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\n<ul>\n 	<li>ACL</li>\n 	<li>Tears</li>\n 	<li>Arthritis</li>\n 	<li>Bulging discs</li>\n 	<li>Bursitis</li>\n 	<li>Fibromyalgia</li>\n 	<li>Bone on Bone conditions</li>\n 	<li>Hip dysfunction</li>\n 	<li>Hip replacement</li>\n 	<li><a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\n 	<li>Knee replacement</li>\n 	<li>Lumbar or cervical spine instability</li>\n 	<li>Tendinitis</li>\n 	<li>Rotator cuff injuries</li>\n 	<li>Sciatica</li>\n</ul>\n<h4>How Did Prolotherapy Begin?</h4>\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\n\nProlotherapy has been shown to have a beneficial effect for many patients. And it helps them <a href=\"https://www.drfields.com/articles/prolo-news/joint-surgery-think-again-learn-about-prolotherapy/\">avoid surgery</a> which should be a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\n<h4>What Can I Expect From Prolotherapy Treatment?</h4>\nBefore you can be treated using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/ \">Prolotherapy</a>, you will be examined by Dr. Peter A. Fields, MD,DC. He is the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition. And he will also review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\n\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\n\nYou are then sent home to rest. And you will gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\n\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\n<h4>Los Angeles Prolotherapy</h4>\nPeter A. Fields MD, DC is an internationally recognized expert in the field of regenerative medicine. Specifically, in all forms of Prolotherapy – Dextrose Prolotherapy, PRP Prolotherapy and Stem Cell Prolotherapy. Dr. Fields is known as the “The Athletic Doc®” and has completed eleven Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\n\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\"\n\nThe professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs. And they have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\n<h4>Are you a Candidate for Prolotherapy?&lt;/h4 &gt; Call <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with Peter A. Fields, MD,DC to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a> to set up an in-person consultation.</h4>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','inherit','closed','closed','','1667-autosave-v1','','','2020-10-07 18:12:05','2020-10-07 18:12:05','',1667,'https://www.drfields.com/uncategorized/1667-autosave-v1/',0,'revision','',0),(4191,9,'2020-10-07 18:07:49','2020-10-07 18:07:49','<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong></div>\r\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. But unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. And these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A. Fields, MD,DC.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD, DC, \"<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>What Is Prolotherapy?</h4>\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> is a shortened name for \"proliferation therapy.\" And it is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce a gentle inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\r\n\r\nWhen the body suffers an injury, it responds by producing growth factors. But the process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand. They say areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. And this means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\r\n\r\nUnfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\r\n<h4>How Does Prolotherapy Work?</h4>\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\r\n<h4>Does Prolotherapy Work?</h4>\r\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"https://www.drfields.com/how-prolotherapy-can-eliminate-joint-pain-without-surgery/\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\r\n<h4>What Conditions Can Be Treated With Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\n<h4>How Did Prolotherapy Begin?</h4>\r\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\r\n\r\nProlotherapy has been shown to have a beneficial effect for many patients. And it helps them <a href=\"https://www.drfields.com/articles/prolo-news/joint-surgery-think-again-learn-about-prolotherapy/\">avoid surgery</a> which should be a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\r\n<h4>What Can I Expect From Prolotherapy Treatment?</h4>\r\nBefore you can be treated using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/ \">Prolotherapy</a>, you will be examined by Dr. Peter A. Fields, MD,DC. He is the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition. He will also review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\r\n\r\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\r\n\r\nYou are then sent home to rest. And you will gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\r\n\r\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\r\n<h4>Los Angeles Prolotherapy</h4>\r\nPeter A. Fields MD, DC is an internationally recognized expert in the field of regenerative medicine. Specifically in all forms of Prolotherapy – Dextrose Prolotherapy, PRP Prolotherapy and Stem Cell Prolotherapy. Dr. Fields is known as the “The Athletic Doc®” and has completed eleven Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\r\n\r\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\"\r\n\r\nThe professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs. And they have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\r\n<h4>Are you a Candidate for Prolotherapy?&lt;/h4 &gt; Call <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a> to set up an in-person consultation.</h4>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','inherit','closed','closed','','1667-revision-v1','','','2020-10-07 18:07:49','2020-10-07 18:07:49','',1667,'https://www.drfields.com/uncategorized/1667-revision-v1/',0,'revision','',0),(4192,9,'2020-10-07 18:09:57','2020-10-07 18:09:57','<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong></div>\r\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. But unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. And these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A. Fields, MD,DC.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD, DC, \"<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>What Is Prolotherapy?</h4>\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> is a shortened name for \"proliferation therapy.\" And it is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce a gentle inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\r\n\r\nWhen the body suffers an injury, it responds by producing growth factors. But the process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand. They say areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. And this means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\r\n\r\nUnfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\r\n<h4>How Does Prolotherapy Work?</h4>\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\r\n<h4>Does Prolotherapy Work?</h4>\r\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"https://www.drfields.com/how-prolotherapy-can-eliminate-joint-pain-without-surgery/\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\r\n<h4>What Conditions Can Be Treated With Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\n<h4>How Did Prolotherapy Begin?</h4>\r\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\r\n\r\nProlotherapy has been shown to have a beneficial effect for many patients. And it helps them <a href=\"https://www.drfields.com/articles/prolo-news/joint-surgery-think-again-learn-about-prolotherapy/\">avoid surgery</a> which should be a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\r\n<h4>What Can I Expect From Prolotherapy Treatment?</h4>\r\nBefore you can be treated using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/ \">Prolotherapy</a>, you will be examined by Dr. Peter A. Fields, MD,DC. He is the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition. And he will also review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\r\n\r\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\r\n\r\nYou are then sent home to rest. And you will gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\r\n\r\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\r\n<h4>Los Angeles Prolotherapy</h4>\r\nPeter A. Fields MD, DC is an internationally recognized expert in the field of regenerative medicine. Specifically in all forms of Prolotherapy – Dextrose Prolotherapy, PRP Prolotherapy and Stem Cell Prolotherapy. Dr. Fields is known as the “The Athletic Doc®” and has completed eleven Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\r\n\r\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\"\r\n\r\nThe professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs. And they have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\r\n<h4>Are you a Candidate for Prolotherapy?&lt;/h4 &gt; Call <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with Peter A. Fields, MD,DC to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a> to set up an in-person consultation.</h4>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','inherit','closed','closed','','1667-revision-v1','','','2020-10-07 18:09:57','2020-10-07 18:09:57','',1667,'https://www.drfields.com/uncategorized/1667-revision-v1/',0,'revision','',0),(4193,9,'2020-10-07 18:12:17','2020-10-07 18:12:17','<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilber-Knee\"]\r\n<strong>Wilbur - Knee</strong></div>\r\nLos Angeles has many opportunities for people to engage in sports such as jogging, basketball, baseball, football, soccer and water sports. But unfortunately, almost any type of sports activity can result in injuries to joints, ligaments and tendons. And these activities can lead to damage and injuries, which is why so many active people become patients of Los Angeles Prolotherapy Doctor Peter A. Fields, MD,DC.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> are effective ways to treat tendon, ligament and musculoskeletal damage or pain naturally and without invasive surgery or addictive drugs. OrthoRegen and Peter A. Fields MD, DC, \"<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc®</a>,\" have made it possible to find quality treatment utilizing Prolotherapy in Los Angeles.\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>What Is Prolotherapy?</h4>\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> is a shortened name for \"proliferation therapy.\" And it is named for the idea that this technique helps the body heal itself. It may also be called \"regenerative injection therapy\" or \"proliferative injection therapy.\" Prolotherapy treatments consist of a series of injections that are designed to produce a gentle inflammation in injured tissue in order to spur the body\'s natural healing mechanisms to take over.\r\n\r\nWhen the body suffers an injury, it responds by producing growth factors. But the process that leads up to this production and how these growth factors help the body heal are topics that are extremely complicated. However, researchers have observed one fact that is very easy to understand. They say areas with high levels of blood flow and many blood vessels are far more receptive to healing than those areas without high levels of blood flow. And this means that ligaments, tendons and cartilage, which all have poor blood supplies, may not heal as quickly as other areas of the body.\r\n\r\nBut unfortunately, some of the drugs used to treat pain and swelling may also interfere with proper healing. Medications like NSAIDS may cause patients to heal more slowly or suffer complications from drug therapies. Ironically, the very nature of NSAIDS and what they do—reduce swelling and inflammation—may be the reason they interfere with natural healing. When the body suffers inflammation, it is a signal to produce the factors that will heal the wounded area.\r\n<h4>How Does Prolotherapy Work?</h4>\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, on the other hand, works with the body\'s natural processes to provide permanent healing. Prolotherapy basically tricks the body into healing itself! By injecting mildly irritating substances into the body, Prolotherapy treatments trigger a natural healing response. Prolotherapy can also include painkillers such as lidocaine to ease discomfort and soothe any sensations of irritation or swelling.\r\n<h4>Does Prolotherapy Work?</h4>\r\nDextrose Prolotherapy has been studied for many years and has been shown not only to help heal various injuries but in conjunction with PRP Prolotherapy and/or <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell</a> (Cellular Regeneration) triggers growth of new cartilage. This outcome has tremendous possibilities for patients with serious injuries or degenerative diseases. While more research is needed to explore all of Prolotherapy\'s possibilities, the future looks bright for Prolotherapy patients.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nOne of the biggest advantages of Prolotherapy is that it helps patients <a href=\"https://www.drfields.com/how-prolotherapy-can-eliminate-joint-pain-without-surgery/\">avoid joint surgery</a>. Patients who are facing a knee replacement or who have suffered with <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a> or hip pain for many months or years may be able to heal without the necessity of going \"under the knife.\"\r\n<h4>What Conditions Can Be Treated With Prolotherapy?</h4>\r\nAt OrthoRegen, my Los Angeles Prolotherapy clinic, we use injections to treat a variety of disorders and chronic or acute pain conditions. These conditions include:\r\n<ul>\r\n 	<li>ACL</li>\r\n 	<li>Tears</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Fibromyalgia</li>\r\n 	<li>Bone on Bone conditions</li>\r\n 	<li>Hip dysfunction</li>\r\n 	<li>Hip replacement</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">Knee injury</a></li>\r\n 	<li>Knee replacement</li>\r\n 	<li>Lumbar or cervical spine instability</li>\r\n 	<li>Tendinitis</li>\r\n 	<li>Rotator cuff injuries</li>\r\n 	<li>Sciatica</li>\r\n</ul>\r\n<h4>How Did Prolotherapy Begin?</h4>\r\nProlotherapy is based on principles from ancient Greek medicine , but did not become accepted by the modern medical community until the 1950s when Drs. George Hackett and Gustav Hemwall began research on how the body is able to heal itself with the proper support and treatment. Modern medicine has not been successful in treating many types of tendon and ligament damage and pain, so the surge in popularity of alternative treatments such as Prolotherapy is understandable.\r\n\r\nProlotherapy has been shown to have a beneficial effect for many patients. And it helps them <a href=\"https://www.drfields.com/articles/prolo-news/joint-surgery-think-again-learn-about-prolotherapy/\">avoid surgery</a> which should be a last resort to treat painful damaged joints and tendons. Just a few Prolotherapy treatments may restore joint function and ease pain permanently.\r\n<h4>What Can I Expect From Prolotherapy Treatment?</h4>\r\nBefore you can be treated using <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/ \">Prolotherapy</a>, you will be examined by Dr. Peter A. Fields, MD,DC. He is the premier Los Angeles Prolotherapy Doctor and an internationally renowned expert in the field of regenerative medicine. It is very important to take Prolotherapy treatments in a controlled environment to ensure the procedure is administered correctly. Dr. Fields will perform some simple manual tests to assess your condition. And he will also review any X-rays or MRI’s you may have received and determine the best site for Prolotherapy injections.\r\n\r\nProlotherapy treatments begin with a simple injection to the site of joint damage. It is important for the injections to be given at the right spot, such as where the tendon connects to the bone, in order to receive maximum benefit. The injections are relatively painless and take only a few minutes.\r\n\r\nYou are then sent home to rest. And you will gradually begin working your damaged joint according to an agreed therapy schedule. It is important to follow the instructions given by Dr. Fields. You may be required to take follow-up injections, depending on the efficacy of the initial treatment. These injections will be spaced over a period of time to give your body the best chance to heal.\r\n\r\nOnce your Prolotherapy injection regimen is complete, you should enjoy the kind of change for the better in joint mobility and pain level that many patients of Dr. Fields have experienced. Your medical caregivers will continue to monitor you for some time to ensure that your Prolotherapy treatments are a success.\r\n<h4>Los Angeles Prolotherapy</h4>\r\nPeter A. Fields MD, DC is an internationally recognized expert in the field of regenerative medicine. Specifically, in all forms of Prolotherapy – Dextrose Prolotherapy, PRP Prolotherapy and Stem Cell Prolotherapy. Dr. Fields is known as the “The Athletic Doc®” and has completed eleven Iron Man Triathlon events. That\'s why Dr. Fields understands the passion his patients have to ‘get back into their sport’ and resume their normal activities without pain.\r\n\r\nDr. Fields is a regular contributor to a national health magazine and lectures at national health conventions and trains other physicians in Prolotherapy techniques. For one of the most modern approaches in the country to Prolotherapy, many patients turn to OrthoRegen, a <strong>Los Angeles Prolotherapy Clinic</strong> and Peter A. Fields MD DC, \"The Athletic Doc®.\"\r\n\r\nThe professional staff at OrthoRegen can help patients find the right Prolotherapy treatments for their particular needs. And they have had great success in reducing pain and healing injury or damage without the need for dangerous, invasive surgical procedures or addictive drugs and painkillers.\r\n<h4>Are you a Candidate for Prolotherapy?&lt;/h4 &gt; Call <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with Peter A. Fields, MD,DC to see if Prolotherapy can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"https://www.drfields.com/contact/\">contact Dr. Fields\' office</a> to set up an in-person consultation.</h4>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"clear\"></div>','Los Angeles Prolotherapy','','inherit','closed','closed','','1667-revision-v1','','','2020-10-07 18:12:17','2020-10-07 18:12:17','',1667,'https://www.drfields.com/uncategorized/1667-revision-v1/',0,'revision','',0),(4194,9,'2020-10-07 19:14:24','2020-10-07 19:14:24','<h1>Regenerative Orthopedics:\nFixing Your Joints and Spine Without Surgery</h1>\nPeter A. Fields, MD, DC had a pleasure of lecturing about Regenerative Orthopedics in Mexico at a Medical Convention in Mexico City. Dr. Fields always loves to take the opportunity to educate his peer as well as the public on the benefits of this non-surgical alternative.\n\nSince joint replacements are increasing so much year after year, it is so important to know that there is an option other than surgery. Regenerative Orthopedics is effective as a non-surgical option to repair joint injuries and to regenerative degenerated joints. For those who have injured their joints and for those who suffer from joint pain because of arthritis, this non-surgical option is a great way to experience pain relief.\n\nIt was an honor to have this opportunity to talk about Regenerative Orthopedics in Mexico, and discuss how patients can fix their joints and spine without surgery. By choosing this non-surgical at OrthoRegen and Peter A. Fields, MD, DC patients can find lasting pain relief.\n\nSchedule an appointment or <a href=\"https://www.drfields.com/contact/\">contact us</a> for more information at <strong><a href=\"tel:310-453-1234\">310-453-1234</a>.</strong>\n\nSee link below for more photos:\n\n<a href=\"https://photos.app.goo.gl/hJxezx9ECHWjf6Sd2\" target=\"_blank\" rel=\"noopener noreferrer\">Click Here for More Photos</a>\n\n[caption id=\"\" align=\"alignnone\" width=\"400\"]<img class=\"smallgallery_image\" title=\"Lecture Mexico City\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-2.jpg\" alt=\"Regenerative Orthopedics in Mexico \" width=\"400\" height=\"499\" /> Dr. Fields lecturing on Regenerative Orthopedics in Mexico City[/caption]\n\n<img class=\"smallgallery_image\" title=\"Mexico City Lecture 2018\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-1.jpg\" alt=\"Mexico City Lecture 2018\" /><img class=\"smallgallery_image\" title=\"A man is holding a baby\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-3.jpg\" alt=\"A man is holding a baby\" />\n\n<a class=\"buttonlink\" href=\"/Contact-Us\">  Schedule Your Appointment Today!</a>','Regenerative Orthopedics in Mexico','','inherit','closed','closed','','1558-autosave-v1','','','2020-10-07 19:14:24','2020-10-07 19:14:24','',1558,'https://www.drfields.com/uncategorized/1558-autosave-v1/',0,'revision','',0),(4195,9,'2020-10-07 19:14:29','2020-10-07 19:14:29','<h1>Regenerative Orthopedics:\r\nFixing Your Joints and Spine Without Surgery</h1>\r\nPeter A. Fields, MD, DC had a pleasure of lecturing about Regenerative Orthopedics in Mexico at a Medical Convention in Mexico City. Dr. Fields always loves to take the opportunity to educate his peer as well as the public on the benefits of this non-surgical alternative.\r\n\r\nSince joint replacements are increasing so much year after year, it is so important to know that there is an option other than surgery. Regenerative Orthopedics is effective as a non-surgical option to repair joint injuries and to regenerative degenerated joints. For those who have injured their joints and for those who suffer from joint pain because of arthritis, this non-surgical option is a great way to experience pain relief.\r\n\r\nIt was an honor to have this opportunity to talk about Regenerative Orthopedics in Mexico, and discuss how patients can fix their joints and spine without surgery. By choosing this non-surgical at OrthoRegen and Peter A. Fields, MD, DC patients can find lasting pain relief.\r\n\r\nSchedule an appointment or <a href=\"https://www.drfields.com/contact/\">contact us</a> for more information at <strong><a href=\"tel:310-453-1234\">310-453-1234</a>.</strong>\r\n\r\nSee link below for more photos:\r\n\r\n<a href=\"https://photos.app.goo.gl/hJxezx9ECHWjf6Sd2\" target=\"_blank\" rel=\"noopener noreferrer\">Click Here for More Photos</a>\r\n\r\n[caption id=\"\" align=\"alignnone\" width=\"400\"]<img class=\"smallgallery_image\" title=\"Lecture Mexico City\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-2.jpg\" alt=\"Regenerative Orthopedics in Mexico \" width=\"400\" height=\"499\" /> Dr. Fields lecturing on Regenerative Orthopedics in Mexico City[/caption]\r\n\r\n<img class=\"smallgallery_image\" title=\"Mexico City Lecture 2018\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-1.jpg\" alt=\"Mexico City Lecture 2018\" /><img class=\"smallgallery_image\" title=\"A man is holding a baby\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-3.jpg\" alt=\"A man is holding a baby\" />\r\n\r\n<a class=\"buttonlink\" href=\"/Contact-Us\">  Schedule Your Appointment Today!</a>','Regenerative Orthopedics in Mexico','','inherit','closed','closed','','1558-revision-v1','','','2020-10-07 19:14:29','2020-10-07 19:14:29','',1558,'https://www.drfields.com/uncategorized/1558-revision-v1/',0,'revision','',0),(4196,9,'2020-10-10 19:42:42','2020-10-10 19:42:42','<h4>Prolotherapy Videos</h4>\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\n\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\n<h3></h3>\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"></h3>\n&nbsp;\n<h3>What Is Prolotherapy?</h3>\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how this non-surgical Regenerative Therapy can help you find relief and repair of your painful joint condition.</div>\n<div></div>\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h3></h3>\n&nbsp;\n\n&nbsp;\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\n<div></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\n\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\n\n</div>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\n<div></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\n<h3></h3>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h3>Do Prolotherapy Treatments Hurt?</h3>\nMost people do well without the need for any added anesthetic. The injections themselves contain an anesthetic and an anesthetic is applied to the skin prior to the treatment. The OrthoRegen staff will do everything possible to make your experience as pleasant as possible. And Dr. Fields will let you know what to expect before any treatment is begun.\n\n&nbsp;\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\n\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\n\n</div>\n<div class=\"clear\"></div>\n<div></div>\n<div></div>\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\n<div></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\n\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\n\n</div>\n<div class=\"clear\"></div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-autosave-v1','','','2020-10-10 19:42:42','2020-10-10 19:42:42','',1614,'https://www.drfields.com/uncategorized/1614-autosave-v1/',0,'revision','',0),(4197,9,'2020-10-09 18:34:29','2020-10-09 18:34:29','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \"><strong>What is Prolotherapy?</strong></p>\r\n\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]\r\n</p>\r\n\r\n<div><strong>What to ask when looking for a Prolotherapist?</strong></div>\r\n<div></div>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<h3 class=\"youtube-click-div \">\r\n<strong>Do Prolotherapy injections hurt?</strong></h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-09 18:34:29','2020-10-09 18:34:29','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4198,9,'2020-10-09 18:35:17','2020-10-09 18:35:17','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \"><strong>What is Prolotherapy?</strong></p>\r\n\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div><strong>What to ask when looking for a Prolotherapist?</strong></div>\r\n<div></div>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-09 18:35:17','2020-10-09 18:35:17','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4199,9,'2020-10-09 18:36:22','2020-10-09 18:36:22','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \"><strong>What is Prolotherapy?</strong></h3>\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div><strong>What to ask when looking for a Prolotherapist?</strong></div>\r\n<div></div>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-09 18:36:22','2020-10-09 18:36:22','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4200,9,'2020-10-09 18:36:57','2020-10-09 18:36:57','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \"><strong>What is Prolotherapy?</strong></h3>\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-09 18:36:57','2020-10-09 18:36:57','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4201,9,'2020-10-09 18:37:28','2020-10-09 18:37:28','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \"><strong>What is Prolotherapy?</strong></h3>\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-09 18:37:28','2020-10-09 18:37:28','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4202,9,'2020-10-09 18:38:20','2020-10-09 18:38:20','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \"><strong>What is Prolotherapy?</strong></h3>\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-09 18:38:20','2020-10-09 18:38:20','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4203,9,'2020-10-10 19:23:26','2020-10-10 19:23:26','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \"><strong>What is Prolotherapy?</strong></h3>\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:23:26','2020-10-10 19:23:26','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4204,9,'2020-10-10 19:24:05','2020-10-10 19:24:05','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \"><strong>What is Prolotherapy?</strong></h3>\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:24:05','2020-10-10 19:24:05','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4205,9,'2020-10-10 19:24:30','2020-10-10 19:24:30','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \"><strong>What is Prolotherapy?</strong></h3>\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:24:30','2020-10-10 19:24:30','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4206,9,'2020-10-10 19:25:21','2020-10-10 19:25:21','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \"><strong>What is Prolotherapy?</strong></h3>\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:25:21','2020-10-10 19:25:21','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4207,9,'2020-10-10 19:25:50','2020-10-10 19:25:50','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \"><strong>What is Prolotherapy?</strong></h3>\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:25:50','2020-10-10 19:25:50','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4208,9,'2020-10-10 19:26:37','2020-10-10 19:26:37','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \"><strong>What is Prolotherapy?</strong></h3>\r\n&nbsp;\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\n&nbsp;\r\n\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:26:37','2020-10-10 19:26:37','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4209,9,'2020-10-10 19:27:26','2020-10-10 19:27:26','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \"><strong>What is Prolotherapy?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\n&nbsp;\r\n\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:27:26','2020-10-10 19:27:26','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4210,9,'2020-10-10 19:28:25','2020-10-10 19:28:25','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \"><strong>What is Prolotherapy?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:28:25','2020-10-10 19:28:25','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4211,9,'2020-10-10 19:29:24','2020-10-10 19:29:24','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"><strong>What is Prolotherapy?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:29:24','2020-10-10 19:29:24','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4212,9,'2020-10-10 19:30:08','2020-10-10 19:30:08','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"><strong>What is Prolotherapy?</strong></h3>\r\n&nbsp;\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:30:08','2020-10-10 19:30:08','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4213,9,'2020-10-10 19:30:46','2020-10-10 19:30:46','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"><strong>What is Prolotherapy?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:30:46','2020-10-10 19:30:46','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4214,9,'2020-10-10 19:31:03','2020-10-10 19:31:03','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"><strong>What is Prolotherapy?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3 class=\"youtube-click-div \"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:31:03','2020-10-10 19:31:03','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4215,9,'2020-10-10 19:31:59','2020-10-10 19:31:59','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"><strong>What is Prolotherapy?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3 class=\"youtube-click-div \" style=\"text-align: left;\"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:31:59','2020-10-10 19:31:59','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4216,9,'2020-10-10 19:32:25','2020-10-10 19:32:25','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"><strong>What is Prolotherapy?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3 class=\"youtube-click-div \" style=\"text-align: left;\"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:32:25','2020-10-10 19:32:25','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4217,9,'2020-10-10 19:32:58','2020-10-10 19:32:58','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"><strong>What is Prolotherapy?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3></h3>\r\n<h3 class=\"youtube-click-div \" style=\"text-align: left;\"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:32:58','2020-10-10 19:32:58','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4218,9,'2020-10-10 19:33:22','2020-10-10 19:33:22','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"><strong>What is Prolotherapy?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3></h3>\r\n<h3 class=\"youtube-click-div \" style=\"text-align: left;\"><strong>Do Prolotherapy injections hurt?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:33:22','2020-10-10 19:33:22','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4219,9,'2020-10-10 19:34:13','2020-10-10 19:34:13','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"><strong>What is Prolotherapy?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3></h3>\r\n<h3 class=\"youtube-click-div \" style=\"text-align: left;\"></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Do Prolotherapy Treatments Hurt?</h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:34:13','2020-10-10 19:34:13','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4220,9,'2020-10-10 19:34:43','2020-10-10 19:34:43','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"><strong>What is Prolotherapy?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Do Prolotherapy Treatments Hurt?</h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:34:43','2020-10-10 19:34:43','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4221,9,'2020-10-10 19:35:09','2020-10-10 19:35:09','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"><strong>What is Prolotherapy?</strong></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Do Prolotherapy Treatments Hurt?</h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:35:09','2020-10-10 19:35:09','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4222,9,'2020-10-10 19:35:51','2020-10-10 19:35:51','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"></h3>\r\n<h3>What Is Prolotherapy?</h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Do Prolotherapy Treatments Hurt?</h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:35:51','2020-10-10 19:35:51','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4223,9,'2020-10-10 19:36:22','2020-10-10 19:36:22','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"></h3>\r\n&nbsp;\r\n<h3>What Is Prolotherapy?</h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Do Prolotherapy Treatments Hurt?</h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:36:22','2020-10-10 19:36:22','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4224,9,'2020-10-10 19:36:53','2020-10-10 19:36:53','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"></h3>\r\n&nbsp;\r\n<h3>What Is Prolotherapy?</h3>\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Do Prolotherapy Treatments Hurt?</h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:36:53','2020-10-10 19:36:53','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4225,9,'2020-10-10 19:38:30','2020-10-10 19:38:30','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"></h3>\r\n&nbsp;\r\n<h3>What Is Prolotherapy?</h3>\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how it can help you without the need for surgery.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Do Prolotherapy Treatments Hurt?</h3>\r\nThe OrthoRegen staff will do everything possible to make your experience as pleasant as possible. And Dr. Fields will let you know what to expect before any treatment is begun. You can certainly discuss any concerns beforehand.\r\n\r\n&nbsp;\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:38:30','2020-10-10 19:38:30','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4226,9,'2020-10-10 19:42:45','2020-10-10 19:42:45','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at one of all of the videos on this page. And if you have any questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"></h3>\r\n&nbsp;\r\n<h3>What Is Prolotherapy?</h3>\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how this non-surgical Regenerative Therapy can help you find relief and repair of your painful joint condition.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Do Prolotherapy Treatments Hurt?</h3>\r\nMost people do well without the need for any added anesthetic. The injections themselves contain an anesthetic and an anesthetic is applied to the skin prior to the treatment. The OrthoRegen staff will do everything possible to make your experience as pleasant as possible. And Dr. Fields will let you know what to expect before any treatment is begun.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:42:45','2020-10-10 19:42:45','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4227,9,'2020-10-10 19:44:04','2020-10-10 19:44:04','<h4>Prolotherapy Videos</h4>\r\nDo you have questions about Prolotherapy? In these Prolotherapy videos, Peter A. Fields, MD,DC discusses many different aspects of Prolotherapy.\r\n\r\nTake a look at the various videos on this page to help answer any questions you may have. And if you have any further questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us!</a>\r\n<h3></h3>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \" style=\"text-align: left;\"></h3>\r\n&nbsp;\r\n<h3>What Is Prolotherapy?</h3>\r\n<div>Peter A. Fields, MD, DC explains what Prolotherapy is and how this non-surgical Regenerative Therapy can help you find relief and repair of your painful joint condition.</div>\r\n<div></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"What is Prolotherapy?\"]</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>What to ask when looking for a Prolotherapist?</strong></h3>\r\n<div>All Prolotherapists are not the same. And you need to do your homework when looking for one. For example, how long has the doctor been doing Prolotherapy? Will the physician treat all areas? Why or why not?</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"azw0gVUKxik\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg\" alt=\"What to ask when looking for a Prolotherapist?\"]\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong>How many treatments does one need for Prolotherapy?</strong></h3>\r\n<div>Many clinics give just one injection, or may even give just a couple. However, joint injuries pretty much involve more than just one little area of the soft tissue. In order to have proper repair and pain relief, all of the involved areas need to be treated. That\'s why we treat the area comprehensively.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mf3ROqVhK8Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg\" alt=\"How many treatments does one need\"]</div>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Do Prolotherapy Treatments Hurt?</h3>\r\nMost people do well without the need for any added anesthetic. The injections themselves contain an anesthetic and an anesthetic is applied to the skin prior to the treatment. The OrthoRegen staff will do everything possible to make your experience as pleasant as possible. And Dr. Fields will let you know what to expect before any treatment is begun.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"omMzZGlk9ns\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg\" alt=\"Do Prolotherapy injections hurt?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div></div>\r\n<div></div>\r\n<h3>Cortisone and Prolotherapy injections are not the same.</h3>\r\n<div>Why is that? Cortisone has been found to interfere with the healing of soft tissue. And when you are looking for repair, you sure don\'t want something that inhibits healing. Prolotherapy is a Regenerative Orthopedic technique which does what the name says. It regenerates.</div>\r\n<div></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">\r\n\r\n[video_lightbox_youtube video_id=\"pWkUap8KpEE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg\" alt=\"Is Prolotherapy the same as cortisone injections?\"]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy Videos Provide Answers','','inherit','closed','closed','','1614-revision-v1','','','2020-10-10 19:44:04','2020-10-10 19:44:04','',1614,'https://www.drfields.com/uncategorized/1614-revision-v1/',0,'revision','',0),(4228,9,'2020-10-10 21:32:40','2020-10-10 21:32:40','<h3>Elbow Injuries</h3>\nAt one time or another, about 15% of people in the U.S. will have elbow pain from some type of elbow injuries. These injuries can happen in sports, at work, and even at home. The majority involve a ligament injury. Annular ligament injuries from repetitive motion, like constant computer usage, is often the culprit. Other ligaments can be the pain-causing culprit too. And so can tendons.\n<h3>How Are the Injuries Treated?</h3>\nConventional treatment often involves icing, NSAIDS, or even surgery. But icing and NSAIDS both inhibit healing. And many of us prefer avoiding surgery. Right? Remember...once surgery is done, it cannot be undone. And it\'s better to not get into that predicament if it can be avoided.\n\nThe great news is that Prolotherapy, a <strong>non-surgical</strong> regenerative treatment option works great at healing both ligament and tendon injuries.\n\nAnd Regenerative Orthopedics for elbow pain is regenerative. What does that mean? Treatments like <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> <strong>regenerate</strong> collagen tissue which means the treatment repairs the injury. And it does it naturally. So that\'s\'. good to know, especially since the treatment fixes both the cause and the effect.\n\nFind out more about how Regenerative Orthopedics can heal your joint pain non-surgically by reading this article in the <a href=\"https://www.townsendletter.com\">\"Townsend Letter.\"</a>\n\n[caption id=\"attachment_1212\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1212 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-1.gif\" alt=\"Elbow Injuries\" width=\"955\" height=\"1249\" /> What To Do About Elbow Injuries[/caption]\n\n<img class=\"aligncenter size-full wp-image-1213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-2.gif\" alt=\"Townsend Article Feb Mar 2014 2\" width=\"955\" height=\"1249\" />','Elbow Injuries: Townsend Letter','','inherit','closed','closed','','1526-autosave-v1','','','2020-10-10 21:32:40','2020-10-10 21:32:40','',1526,'https://www.drfields.com/uncategorized/1526-autosave-v1/',0,'revision','',0),(4229,9,'2020-10-10 21:21:45','2020-10-10 21:21:45','<h3>Elbow Injuries</h3>\r\nAt one time or another, about 15% of people in the U.S. will have elbow pain from some type of elbow injuries. These injuries can happen in sports, at work, and even at home. The majority involve a ligament injury. Annular ligament injuries from repetitive motion, like constant computer usage, is often the culprit.\r\n<h3>How Are Elbow Injuries Treated?</h3>\r\nConventional treatment often involves icing, NSAIDS, or even surgery. But icing and NSAIDS both inhibit healing. And many of us prefer avoiding surgery. Remember...once surgery is done, it cannot be undone. It\'s better to not get in that predicament if it can be avoided.\r\n\r\nRegenerative Orthopedics for elbow pain is regenerative. Treatments like <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> regenerate collagen tissue to repair the injury naturally. And that is good to know, especially since the treatment fixes both the cause and the effect.\r\n\r\nFind out more about how Regenerative Orthopedics can heal your joint pain non-surgically by reading this article in the <a href=\"https://www.townsendletter.com\">\"Townsend Letter.\"</a>\r\n\r\n<img class=\"aligncenter size-full wp-image-1212\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-1.gif\" alt=\"Townsend Article Feb Mar 2014 1\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-2.gif\" alt=\"Townsend Article Feb Mar 2014 2\" width=\"955\" height=\"1249\" />','Elbow Injuries Article','','inherit','closed','closed','','1526-revision-v1','','','2020-10-10 21:21:45','2020-10-10 21:21:45','',1526,'https://www.drfields.com/uncategorized/1526-revision-v1/',0,'revision','',0),(4230,9,'2020-10-10 21:22:58','2020-10-10 21:22:58','<h3>Elbow Injuries</h3>\r\nAt one time or another, about 15% of people in the U.S. will have elbow pain from some type of elbow injuries. These injuries can happen in sports, at work, and even at home. The majority involve a ligament injury. Annular ligament injuries from repetitive motion, like constant computer usage, is often the culprit.\r\n<h3>How Are the Injuries Treated?</h3>\r\nConventional treatment often involves icing, NSAIDS, or even surgery. But icing and NSAIDS both inhibit healing. And many of us prefer avoiding surgery. Remember...once surgery is done, it cannot be undone. It\'s better to not get in that predicament if it can be avoided.\r\n\r\nRegenerative Orthopedics for elbow pain is regenerative. Treatments like <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> regenerate collagen tissue to repair the injury naturally. And that is good to know, especially since the treatment fixes both the cause and the effect.\r\n\r\nFind out more about how Regenerative Orthopedics can heal your joint pain non-surgically by reading this article in the <a href=\"https://www.townsendletter.com\">\"Townsend Letter.\"</a>\r\n\r\n<img class=\"aligncenter size-full wp-image-1212\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-1.gif\" alt=\"Townsend Article Feb Mar 2014 1\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-2.gif\" alt=\"Townsend Article Feb Mar 2014 2\" width=\"955\" height=\"1249\" />','Elbow Injuries: Townsend Letter','','inherit','closed','closed','','1526-revision-v1','','','2020-10-10 21:22:58','2020-10-10 21:22:58','',1526,'https://www.drfields.com/uncategorized/1526-revision-v1/',0,'revision','',0),(4231,9,'2020-10-10 21:32:50','2020-10-10 21:32:50','<h3>Elbow Injuries</h3>\r\nAt one time or another, about 15% of people in the U.S. will have elbow pain from some type of elbow injuries. These injuries can happen in sports, at work, and even at home. The majority involve a ligament injury. Annular ligament injuries from repetitive motion, like constant computer usage, is often the culprit. Other ligaments can be the pain-causing culprit too. And so can tendons.\r\n<h3>How Are the Injuries Treated?</h3>\r\nConventional treatment often involves icing, NSAIDS, or even surgery. But icing and NSAIDS both inhibit healing. And many of us prefer avoiding surgery. Right? Remember...once surgery is done, it cannot be undone. And it\'s better to not get into that predicament if it can be avoided.\r\n\r\nThe great news is that Prolotherapy, a <strong>non-surgical</strong> regenerative treatment option works great at healing both ligament and tendon injuries.\r\n\r\nAnd Regenerative Orthopedics for elbow pain is regenerative. What does that mean? Treatments like <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> <strong>regenerate</strong> collagen tissue which means the treatment repairs the injury. And it does it naturally. So that\'s good to know, especially since the treatment fixes both the cause and the effect.\r\n\r\nFind out more about how Regenerative Orthopedics can heal your joint pain non-surgically by reading this article in the <a href=\"https://www.townsendletter.com\">\"Townsend Letter.\"</a>\r\n\r\n[caption id=\"attachment_1212\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1212 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-1.gif\" alt=\"Elbow Injuries\" width=\"955\" height=\"1249\" /> What To Do About Elbow Injuries[/caption]\r\n\r\n<img class=\"aligncenter size-full wp-image-1213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-2.gif\" alt=\"Townsend Article Feb Mar 2014 2\" width=\"955\" height=\"1249\" />','Elbow Injuries: Townsend Letter','','inherit','closed','closed','','1526-revision-v1','','','2020-10-10 21:32:50','2020-10-10 21:32:50','',1526,'https://www.drfields.com/uncategorized/1526-revision-v1/',0,'revision','',0),(4232,9,'2020-10-10 21:36:43','2020-10-10 21:36:43','<span style=\"font-weight: 400;\">Iliotibial band syndrome (ITBS) is a painful knee condition that takes place more frequently in athletes, especially endurance athletes, like runners, cyclists, and in </span><span style=\"font-weight: 400;\">those who repeatedly squat</span><span style=\"font-weight: 400;\">. The iliotibial band runs along the outside of the thigh, from the pelvis to the shinbone. The band crosses both the hip and the knee and is a structure that helps the knee to bend and straighten smoothly and in a stable fashion.  The injury occurs most often because of overuse, as the band gets irritated from repeatedly crossing over the femoral epicondyle, a bony prominence on the thighbone, every time the knee bends and straightens. Those with this condition will notice pain at the outside of the knee, especially when their heel strikes the ground while running.</span>\r\n\r\n<b>More About the Iliotibial Band</b>\r\n\r\n<span style=\"font-weight: 400;\">The iliotibial (IT) band is a dense band of tissue beginning at the iliac crest of the pelvis extending over the hip joint running down the outside part of the thigh, crossing over the outside of the knee and attaching to the shinbone. The iliotibial (IT) band forms from something called the tensor fascia lata and two of the gluteal muscles in the buttock and then it stretches across the knee. Along with ligaments and other joint structures, the iliotibial (IT) band plays a role in providing stability to both the knee and hip. </span>\r\n\r\n<span style=\"font-weight: 400;\">The band works to help abduct the leg, especially during walking, and it keeps the legs from crossing while walking. The IT band helps stabilize the outside part of the knee through its range of motion. The band moves back and forth when the knee is in motion. While the knee is bent, the iliotibial band is located behind the femoral epicondyle near the knee joint. The band moves forward across the epicondyle when the knee is straightened. With iliotibial band syndrome, the band becomes irritated, and pain is experienced on the outer aspect of the knee</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<b>What is Behind Iliotibial Band Syndrome?</b>\r\n\r\n<span style=\"font-weight: 400;\">Although iliotibial band syndrome has generally been recognized as an injury caused by the friction that occurs as the band rubs back and forth over the bony epicondyle, recent studies have challenged this concept. When the knee is bent, the iliotibial band is also compressed against the thigh bone, as it braces the knee when stress is placed on it. In instances when the knee is turned or rotated too much, the band can be injured as well. Therefore, another theory is that the injury occurs when the band is compressed at the epicondyle, causing irritation and inflammation there. Additionally, researchers suggest there is a fat pad full of nerves that are compressed between the iliotibial band and the epicondyle as the IT band is pulled towards the epicondyle. </span>\r\n<ul>\r\n 	<li><em>Theories of How Iliotibial Band Syndrome Develops: </em>Although there are different theories of how iliotibial band syndrome develops, most are in agreement that there is a component of irregular compression forces between the iliotibial band and the femoral epicondyle that generates the irritation and inflammation. Most likely, iliotibial band syndrome is the result of a combination of issues, including poor training habits, weakened soft tissue (muscle, ligament, and tendons), mechanical imbalances, and joint instability, especially involving the low back, pelvis, hips, and knees. The injury occurs to the joint tissue because the joint begins to move in an abnormal fashion, irritating the tissue and altering the joint motion further. The irritation of the joint tissues in iliotibial band syndrome is both the cause and effect of altered joint mechanics.</li>\r\n</ul>\r\n<ul>\r\n 	<li><em> Instability Adds to the Problem: </em>As an added problem, when instability is present, the sufferer will begin to walk in an altered pattern in an attempt to brace the knee, but this change in the walking pattern puts additional stress on the joint and can injure or tear the cartilage. Since the iliotibial band crosses both the hip and knee joints, injury can cause abnormal motion and instability at both the hip and knee, which puts more and more stress on the iliotibial band. The increased stress will rotate the kneecap and put increased pressure on the cartilage. If the symptoms are ignored, the irritation and inflammation will continue, and even scarring can develop, which can decrease the knee range of motion and cause pain even with reduced activity.</li>\r\n</ul>\r\n<ul>\r\n 	<li><em> Anatomic Issues: </em>Anatomic issues can predispose folks to the development of iliotibial band syndrome. Leg-length discrepancies, an abnormally tilted pelvis, or bowed legs can cause the iliotibial band to become excessively tight or loose, which will increase the friction when the band as it crosses back and forth across the epicondyle, and change the stressors on the joint structures due to the abnormal way the anatomic issues cause the joint to move, which all will increase irritation, injury, and pain.</li>\r\n</ul>\r\n<ul>\r\n 	<li><em> Poor Training Habits: </em>Poor training habits can have the same effect on the iliotibial band as the anatomic issues do. For example, runners who tend to always run on the same side of the road may repeatedly have one leg moving slightly downhill compared to the other. Always running downhill also stresses the band, and cycling with the foot rotated inwards will increase the angle at which the band crosses over the epicondyle. All of these repeated activities can irritate the iliotibial band.</li>\r\n</ul>\r\n<b>Treatment for Iliotibial Band Syndrome</b>\r\n\r\n<span style=\"font-weight: 400;\">Conservative treatment, including rest, modification of activity, and physical therapy are commonly recommended. Surgery to cut the IT band and “release” tension are occasionally recommended for cases that will not resolve, but conservative treatment should be sought first. When the IT band and associated muscles are “tight,” a lot of strain is put on the ligaments, making muscle stretching and massage beneficial. The affected ligaments need to be treated as well because all of the involved structures become weakened by the abnormal motion. The joint instability in the hip and the knee needs to be properly diagnosed and treated in order to find the relief and the desired return to function. </span>\r\n\r\n<strong>Treating Iliotibial Band Syndrome with Regenerative Orthopedics</strong>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is an effective and promising treatment option that can offer a non-surgical treatment solution for patients with persistent iliotibial band syndrome. Treatment into and around both the hip joint and the knee may very well be needed. If the hip is found to be stable upon evaluation, and the knee alone is affected, then the athlete with iliotibial band syndrome will receive Regenerative Orthopedic treatments to the area on the lower leg where the iliotibial band attaches. </span>\r\n\r\n<span style=\"font-weight: 400;\">Additionally, if there are parts of the band itself that are tender, these areas can be treated as well. Generally, after just a couple of treatments, the athlete is able to start to work out again. Regenerative Orthopedics offers a successful and much-needed alternative by stimulating the body to repair the supportive ligaments around the joints, heal the iliotibial band, as well as promote cartilage regeneration when necessary. The treatment is safe and effective for athletes suffering from chronic lateral knee pain, such as that experienced in iliotibial band syndrome.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Iliotibial Band Syndrome Repair','','inherit','closed','closed','','2775-revision-v1','','','2020-10-10 21:36:43','2020-10-10 21:36:43','',2775,'https://www.drfields.com/uncategorized/2775-revision-v1/',0,'revision','',0),(4233,9,'2020-10-10 21:37:24','2020-10-10 21:37:24','Iliotibial Band Repair','Iliotibial Band Repair','Iliotibial Band Repair with Regenerative Orthopedics','inherit','open','closed','','it-band','','','2020-10-10 21:38:12','2020-10-10 21:38:12','',2775,'https://www.drfields.com/wp-content/uploads/2019/10/IT-band.png',0,'attachment','image/png',0),(4234,9,'2020-10-10 21:59:01','2020-10-10 21:59:01','<img class=\"size-medium wp-image-4233 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/IT-band-400x500.png\" alt=\"&quot;&lt;yoastmark\" />\r\n<h3>Iliotibial Band Repair</h3>\r\n<span style=\"font-weight: 400;\">Athletes are the ones who commonly suffer with this painful condition. And <strong>Iliotibial Band Syndrome (ITBS)</strong>  takes place more frequently in endurance athletes, like runners, cyclists, and in </span><span style=\"font-weight: 400;\">those who repeatedly squat</span><span style=\"font-weight: 400;\">. </span>\r\n\r\n<span style=\"font-weight: 400;\">The iliotibial band runs along the outside of the thigh, from the pelvis to the shinbone. The band crosses both the hip and the knee and is a structure that helps the knee to bend and straighten smoothly and in a stable fashion.  </span>\r\n\r\n<span style=\"font-weight: 400;\">The injury occurs most often because of overuse, as the band gets irritated from repeatedly crossing over the femoral epicondyle, a bony prominence on the thighbone, every time the knee bends and straightens. So, those with this condition will notice pain at the outside of the knee, especially when their heel strikes the ground while running.</span>\r\n<h3><b>More About the Iliotibial (IT) Band</b></h3>\r\n<span style=\"font-weight: 400;\">The iliotibial (IT) band is a dense band of tissue beginning at the iliac crest of the pelvis extending over the hip joint running down the outside part of the thigh, crossing over the outside of the knee and attaching to the shinbone. </span>\r\n\r\n<span style=\"font-weight: 400;\">The IT band forms from something called the tensor fascia lata and two of the gluteal muscles in the buttock. And then it stretches across the knee. Along with ligaments and other joint structures, the IT band plays a role in providing stability to both the knee and hip. </span>\r\n\r\n<span style=\"font-weight: 400;\">The band works to help abduct the leg, especially during walking, and it keeps the legs from crossing while walking. The IT band helps stabilize the outside part of the knee through its range of motion. The band moves back and forth when the knee is in motion.</span>\r\n\r\n<span style=\"font-weight: 400;\"> While the knee is bent, the band is located behind the femoral epicondyle near the knee joint. And then the band moves forward across the epicondyle when the knee is straightened. With iliotibial band syndrome, the band becomes irritated, and pain is experienced on the outer aspect of the knee</span><span style=\"font-weight: 400;\">.</span>\r\n<h3><b>What is Behind Iliotibial Band Syndrome?</b></h3>\r\n<span style=\"font-weight: 400;\">Although iliotibial band syndrome has generally been recognized as an injury caused by the friction that occurs as the band rubs back and forth over the bony epicondyle, recent studies have challenged this concept. When the knee is bent, the band is also compressed against the thigh bone, as it braces the knee when stress is placed on it. </span>\r\n\r\n<span style=\"font-weight: 400;\">And in instances when the knee is turned or rotated too much, the band can be injured as well. Therefore, another theory is that the injury occurs when the band is compressed at the epicondyle, causing irritation and inflammation there. Additionally, researchers suggest there is a fat pad full of nerves that are compressed between the iliotibial band and the epicondyle as the IT band is pulled towards the epicondyle. </span>\r\n<h4><em>Theories of How Iliotibial Band Syndrome Develops: </em></h4>\r\nAlthough there are different theories of how ITBS develops, most are in agreement that there is a component of irregular compression forces between the iliotibial band and the femoral epicondyle that generates the irritation and inflammation. Most likely, ITBS is the result of a combination of issues, including poor training habits, weakened soft tissue (muscle, ligament, and tendons), mechanical imbalances, and joint instability, especially involving the low back, pelvis, hips, and knees.\r\n\r\nThe injury occurs to the joint tissue because the joint begins to move in an abnormal fashion, irritating the tissue and altering the joint motion further. And the irritation of the joint tissues in iliotibial band syndrome is both the cause and effect of altered joint mechanics.\r\n<h3><em>Instability Adds to the Problem: </em></h3>\r\nAs an added problem, when instability is present, the sufferer will begin to walk in an altered pattern in an attempt to brace the knee. But this change in the walking pattern puts additional stress on the joint and can injure or tear the cartilage. Since the iliotibial band crosses both the hip and knee joints, injury can cause abnormal motion and instability at both the hip and knee. And this puts more and more stress on the iliotibial band.\r\n\r\nThe increased stress will rotate the kneecap and put increased pressure on the cartilage. If the symptoms are ignored, the irritation and inflammation will continue. And then scarring can develop, which can decrease the knee range of motion and cause pain even with reduced activity.\r\n<h3><em> Anatomic Issues:</em></h3>\r\nAnatomic issues can predispose folks to the development of iliotibial band syndrome. Leg-length discrepancies, an abnormally tilted pelvis, or bowed legs can cause the iliotibial band to become excessively tight or loose, which will increase the friction when the band as it crosses back and forth across the epicondyle, and change the stressors on the joint structures due to the abnormal way the anatomic issues cause the joint to move. All all of this will increase irritation, injury, and pain.\r\n<h3><em> Poor Training Habits: </em></h3>\r\nPoor training habits can have the same effect on the iliotibial band as the anatomic issues do. For example, runners who tend to always run on the same side of the road may repeatedly have one leg moving slightly downhill compared to the other. Also, always running downhill stresses the band. And cycling with the foot rotated inwards will increase the angle at which the band crosses over the epicondyle. All of these repeated activities can irritate the iliotibial band.\r\n<h3><b>Treatment for Iliotibial Band Syndrome</b></h3>\r\n<span style=\"font-weight: 400;\">Conservative treatment, including rest, modification of activity, and physical therapy are commonly recommended. Surgery to cut the IT band and “release” tension are occasionally recommended for cases that will not resolve, but conservative treatment should be sought first. </span>\r\n\r\n<span style=\"font-weight: 400;\">When the IT band and associated muscles are “tight,” a lot of strain is put on the ligaments, making muscle stretching and massage beneficial. The affected ligaments need to be treated as well because all of the involved structures become weakened by the abnormal motion. The joint instability in the hip and the knee needs to be properly diagnosed and treated in order to find the relief and the desired return to function. </span>\r\n<h3><strong>Treating Iliotibial Band Syndrome with Regenerative Orthopedics</strong></h3>\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics is an effective and promising treatment option that can offer a non-surgical treatment solution for patients with persistent iliotibial band syndrome. Treatment into and around both the hip joint and the knee may very well be needed. </span>\r\n\r\n<span style=\"font-weight: 400;\">If the hip is found to be stable upon evaluation, and the knee alone is affected, then the athlete with iliotibial band syndrome will receive Regenerative Orthopedic treatments to the area on the lower leg where the iliotibial band attaches. </span>\r\n\r\n<span style=\"font-weight: 400;\">Additionally, if there are parts of the band itself that are tender, these areas can be treated as well. Generally, after just a couple of treatments, the athlete is able to start to work out again. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics offers a successful and much-needed alternative by stimulating the body to repair the supportive ligaments around the joints, heal the iliotibial band, as well as promote cartilage regeneration when necessary. The treatment is safe and effective for athletes suffering from chronic lateral knee pain, such as that experienced in iliotibial band syndrome.</span>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>\r\n\r\n<a href=\"https://www.orthoregen.com/testimonials/\">Read Patient Testimonials</a>','Iliotibial Band Syndrome Repair','','inherit','closed','closed','','2775-revision-v1','','','2020-10-10 21:59:01','2020-10-10 21:59:01','',2775,'https://www.drfields.com/uncategorized/2775-revision-v1/',0,'revision','',0),(4235,9,'2020-10-12 17:56:50','2020-10-12 17:56:50','<h3><img class=\"alignright size-full wp-image-1185\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Foods-That-Burn-Fat.jpg\" alt=\"Foods That Burn Fat\" width=\"200\" height=\"313\" />Fat Fighting Foods</h3>\r\nTired of that spare tire? Sick of your love handles? You can increase your body’s fat-burning power by eating more fat fighting foods that strengthen your liver (your body’s main fat-metabolizing organ) to burn fat better. The result? A leaner you! There are many great liver boosting foods, but here are some of my favorites:\r\n<h3><strong>Leafy Greens</strong>:</h3>\r\nSpinach, spring mix, mustard greens, and other dark leafy greens are good sources of fiber and powerhouses of nutrition. Research demonstrates that their high concentration of vitamins and antioxidants helps prevent hunger while protecting you from heart disease, cancer, cataracts, and memory loss.\r\n<h3><strong>Beans and Legumes:</strong></h3>\r\nLegumes are the best source of  fiber of any foods. They help to stabilize blood sugar while keeping you regular. They are also high in potassium, a critical mineral that reduces dehydration and the risk of high blood pressure and stroke.\r\n<h3><strong>Garlic and Onions:</strong></h3>\r\nThis dynamic duo of foods contains phytochemicals that break down fatty deposits in the body. They also breakdown cholesterol; kill viruses, bacteria, and fungi; and protect against heart disease. With a little help from garlic and onions, you can burn fat while warding off illness.\r\n<h3><strong>Cayenne:</strong></h3>\r\nThis hot spice lessens the risk of excess insulin in the body by speeding metabolism and lowering blood glucose (sugar) levels before the excess insulin can result in fat stores. Spice up your next meal with cayenne and lessen those love handles.\r\n<h3><strong>Turmeric:</strong></h3>\r\nThe popular spice used primarily in Indian cooking is one of the highest known sources of beta carotene. It is an antioxidant that helps protect the liver from free radical damage. Turmeric also helps strengthen your liver while helping your body metabolize fats by decreasing the fat storage rate in liver cells. Add a teaspoon of turmeric into your next curry dish to help your body fight fat.\r\n<h3><strong>Cinnamon:</strong></h3>\r\nResearchers at the United States Department of Agriculture showed that a quarter to one teaspoon of cinnamon with food helps metabolize sugar up to twenty times better than food not eaten with cinnamon. Excess sugar in the blood can lead to fat storage. Before you sip that chai tea latte or eat your oatmeal, sprinkle on the cinnamon.\r\n<h3><strong>Flax Seeds and Flax Seed Oil:</strong></h3>\r\nThese seeds and oil attract oil-soluble toxins that become lodged in the fatty tissues of the body. Once attracted, they help to escort fat-soluble toxins out. That spells fewer fat stores and a trimmer you.\r\n\r\nAnd if you are having a difficult time choosing to eat healthy foods like vegetables and fruit, it\'s important to remember to make them look good and palatable. Keep in mind that we are bombarded constantly with junk food advertisements. An article in <em>Media Psychology</em> notes...\"promoting healthy foods (Bruce et al.,<span class=\"Apple-converted-space\"> </span><span class=\"ref-lnk lazy-ref\"><a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0009\" data-reflink=\"_i32 _i33\">2016</a>; Hanks, Just, &amp; Brumberg, <a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0021\" data-reflink=\"_i32 _i33\">2016</a>; Papies, <a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0039\" data-reflink=\"_i32 _i33\">2016;</a> Hanks et al. (<a href=\"https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#\" data-rid=\"CIT0021\" data-reflink=\"_i32 _i33\">2016</a>) revealed that children chose to eat twice as many vegetables when they were advertised through fun appeals: depicting healthy foods as humanized cheerful cartoon characters.\"<a href=\"https://www.tandfonline.com/doi/abs/10.1080/15213269.2019.1584569\">[1]</a></span>\r\n\r\n1Samson, Lelia, and Moniek Buijzen. \"Craving healthy foods?! How sensory appeals increase appetitive motivational processing of healthy foods in adolescents.\" <i>Media Psychology</i> 23.2 (2020): 159-183.','Fat Fighting Foods. Learn How Certain Food Can Help Burn Fat','','inherit','closed','closed','','1520-revision-v1','','','2020-10-12 17:56:50','2020-10-12 17:56:50','',1520,'https://www.drfields.com/uncategorized/1520-revision-v1/',0,'revision','',0),(4236,9,'2020-10-12 18:02:54','2020-10-12 18:02:54','<h2 style=\"text-align: center;\">Persistent Joint Pain Putting a Damper on Your Style?</h2>\r\n[caption id=\"attachment_3793\" align=\"alignright\" width=\"403\"]<img class=\"wp-image-3793\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Pain.-OrthoRegen-Copy-500x500.png\" alt=\"Persistent Joint Pain\" width=\"403\" height=\"403\" /> <strong>Persistent Joint Pain? Regenerative Orthopedics Gets You Back To Doing What You Love!</strong>[/caption]\r\n\r\nMany of us have aches or pains that just won’t go away no matter what we do. Medications, rest, physical therapy, acupuncture, and manipulation just aren\'t doing the trick. Somehow that joint pain either never goes away or just keeps coming back. But have you tried Regenerative Orthopedics?\r\n<h3>What\'s Regenerative Orthopedics?</h3>\r\nRegenerative Orthopedics is a technique that helps to stimulate the body’s ability to repair a painful area when the natural healing process isn\'t cutting it. <em><strong>In most cases, Regenerative Orthopedics is effective at eliminating persistent joint pain due to ligament and tendon weakness 80 to 90 percent of the time</strong></em>.\r\n<h3>Why Can\'t I Get Rid of This Joint Pain?</h3>\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months, or years. The answer lies in the fact that both ligaments and tendons have very poor circulation. These areas may have little or no blood flow, <em><strong>but they have lots of nerves</strong></em>. When the structures that stabilize the joint become weak, the nerves around them (ligaments and tendons) become stretched and irritated. That produces pain.\r\n\r\nRegenerative Orthopedics involves the injection of a solution that causes a healing response that stimulates the healing process. This results in a stronger tendon or ligament that can hold these joint structures in place more effectively.\r\n<h3>A Repaired Joint Is the Result</h3>\r\nThe weakened area heals, and the patient\'s pain is reduced or eliminated. It is also an excellent alternative to cortisone injections. Many doctors still recommend cortisone. That\'s unfortunate because long-term studies have shown cortisone to actually weaken tissue.\r\n\r\nMost patients require about 4-6 treatments to restore function and relieve pain. The treatments are usually given at about 3-week intervals.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedics</a> is effective for all types of persistent joint pain. It works for the neck, shoulder, knee, elbow, and other joints. Plus, this treatment can reduce or eliminate pain altogether for conditions like tendonitis, arthritis, herniated discs, and headaches.\r\n\r\nAnd if you have a sports injury, look no further than Regenerative Orthopedics. If the injury involves soft tissue, like a tendon or ligament, chances are Regenerative Orthopedics will help. Don\'t let joint pain keep you from doing the things you love!','Persistent Joint Pain? Try Regenerative Orthopedics','','inherit','closed','closed','','1461-revision-v1','','','2020-10-12 18:02:54','2020-10-12 18:02:54','',1461,'https://www.drfields.com/uncategorized/1461-revision-v1/',0,'revision','',0),(4237,9,'2020-10-12 18:05:18','2020-10-12 18:05:18','[caption id=\"attachment_2337\" align=\"alignright\" width=\"166\"]<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"166\" height=\"264\" /> Peter A. Fields, MD, DC[/caption]\r\n<h3><strong>Prolotherapy Treatment on KCAL/CBS by </strong><strong>Peter A. Fields, MD, DC </strong></h3>\r\nHave you ever seen a Prolotherapy Treatment? Watch it here. In this episode, the folks at <a href=\"https://losangeles.cbslocal.com\">KCAL/CBS</a> talk about Prolotherapy while Dr. Fields treats a patient with knee pain. Karen lived with knee pain for a long time after tearing her meniscus in a skiing accident. Prolotherapy treatments repaired her knee. She got rid of her pain too! And you can get rid of your joint pain because this non-surgical treatment actually repairs the source of the pain. Prolotherapy is extremely effective at joint repair and pain reduction. <a href=\"https://youtu.be/3JIY8OCt1FY\">Watch now! </a>\r\n\r\nIn this episode, KCAL 9 Los Angeles shows how a Prolotherapy can repair injured or painful joints. Do you have arthritis? If you do, you\'ll be happy to know that this popular technique reduces arthritis pain in many patients. And it treats other joint conditions as well. Pain causing tendonitis, bursitis, and other joint conditions are helped too!\r\n\r\nIs it surgery? No, a Prolotherapy treatment is a natural non-surgical method that assists the body to heal injured or weakened joints, ligaments, and tendons. With Prolotherapy, the weakened areas are injected with a natural solution that stimulates the growth of healthy, strong tissues. Plus, as the tendons and ligaments grow stronger and vibrant, the pain is alleviated.\r\n\r\nThe repair is quick too. After about two or three treatments, most people notice quite a difference. Then, after a few more treatments, people are back to full function. Why wait? Repair your joint, and get back doing life like you want to. Are you an athlete with a sports injury? We can help you too! Call us today at 310-453-1234.\r\n\r\nYou can read about Regenerative Orthopedics too. Click <a href=\"https://www.drfields.com\">here</a> to find out more.','Prolotherapy Treatment by Peter A. Fields, MD, DC on KCAL/CBS','','inherit','closed','closed','','1436-revision-v1','','','2020-10-12 18:05:18','2020-10-12 18:05:18','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(4238,9,'2020-10-12 18:07:05','2020-10-12 18:07:05','[caption id=\"attachment_2337\" align=\"alignright\" width=\"166\"]<img class=\" wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"166\" height=\"264\" /> Peter A. Fields, MD, DC[/caption]\r\n<h3><strong>Prolotherapy Treatment on KCAL/CBS by </strong><strong>Peter A. Fields, MD, DC </strong></h3>\r\nHave you ever seen a Prolotherapy Treatment? Watch it here. In this episode, the folks at <a href=\"https://losangeles.cbslocal.com\">KCAL/CBS</a> talk about Prolotherapy while Dr. Fields treats a patient with knee pain. Karen lived with knee pain for a long time after tearing her meniscus in a skiing accident. Prolotherapy treatments repaired her knee. She got rid of her pain too! And you can get rid of your joint pain because this non-surgical treatment actually repairs the source of the pain. Prolotherapy is extremely effective at joint repair and pain reduction. <a href=\"https://youtu.be/3JIY8OCt1FY\">Watch now! </a>\r\n\r\nIn this episode, KCAL 9 Los Angeles shows how a Prolotherapy can repair injured or painful joints. Do you have arthritis? If you do, you\'ll be happy to know that this popular technique reduces arthritis pain in many patients. And it treats other joint conditions as well. Pain causing tendonitis, bursitis, and other joint conditions are helped too!\r\n\r\nIs it surgery? No, a Prolotherapy treatment is a natural non-surgical method that assists the body to heal injured or weakened joints, ligaments, and tendons. And with Prolotherapy, the weakened areas are injected with a natural solution that stimulates the growth of healthy, strong tissues. Plus, as the tendons and ligaments grow stronger and vibrant, the pain is alleviated.\r\n\r\nThe repair is quick too. And after about two or three treatments, most people notice quite a difference. Then, after a few more treatments, people are back to full function. Why wait? Repair your joint, and get back doing life like you want to. Are you an athlete with a sports injury? We can help you too! Call us today at 310-453-1234.\r\n\r\nYou can read about Regenerative Orthopedics too. Click <a href=\"https://www.drfields.com\">here</a> to find out more.','Prolotherapy Treatment on KCAL/CBS','','inherit','closed','closed','','1436-revision-v1','','','2020-10-12 18:07:05','2020-10-12 18:07:05','',1436,'https://www.drfields.com/uncategorized/1436-revision-v1/',0,'revision','',0),(4239,9,'2020-10-12 18:19:53','2020-10-12 18:19:53','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\n<strong>Joel - Foot</strong></div>\n<h4>Prolotherapy for Foot and Ankle Injuries</h4>\nAre you looking for relief from your foot pain that does not include surgery? Or are you looking for an alternative to surgery for your chronic ankle sprains? Every day at OrthoRegen<sup>®</sup> , we use comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> for foot and ankle injuries. And nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\n<h4>Why Should You Choose Prolotherapy Treatment by Dr. Fields?</h4>\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  And like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\n\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. So if you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. And if you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> at OrthoRegen<sup>®</sup> are:</strong>\n<ul>\n 	<li>Achilles tendinopathy</li>\n 	<li>Ankle fusion pain</li>\n 	<li>Instability</li>\n 	<li>Ankle pain</li>\n 	<li>Ankle sprains</li>\n 	<li>Arthritis</li>\n 	<li>Bunion pain</li>\n 	<li>Fallen arch</li>\n 	<li>Hammertoe pain</li>\n 	<li>Heel pain</li>\n 	<li>Heel spur</li>\n 	<li>Metatarsalgia</li>\n 	<li>Morton\'s neuroma</li>\n 	<li>Pain after ankle surgery</li>\n 	<li>Pain after foot surgery</li>\n 	<li>Plantar fasciitis</li>\n 	<li>Tarsal tunnel syndrome</li>\n 	<li>Tendonitis</li>\n 	<li>Toe pain</li>\n 	<li>Turf toe</li>\n</ul>\n<h4>Are You A Candidate for Prolotherapy?</h4>\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials/\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials/\">Ankle Testimonials</a> pages.','Prolotherapy for Foot Injuries','','inherit','closed','closed','','595-autosave-v1','','','2020-10-12 18:19:53','2020-10-12 18:19:53','',595,'https://www.drfields.com/uncategorized/595-autosave-v1/',0,'revision','',0),(4240,9,'2020-10-12 18:18:36','2020-10-12 18:18:36','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\r\n<strong>Joel - Foot</strong></div>\r\n<h4>Prolotherapy for Foot and Ankle Injuries</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Or are you looking for an alternative to surgery for your chronic ankle sprains? Every day at OrthoRegen<sup>®</sup> , we use comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> for foot and ankle injuries. And nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n<h4>Why Should You Choose Prolotherapy Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  And like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. So if you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. And if you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> at OrthoRegen<sup>®</sup> are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Ankle instability</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials/\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials/\">Ankle Testimonials</a> pages.','Prolotherapy for Foot Injuries','','inherit','closed','closed','','595-revision-v1','','','2020-10-12 18:18:36','2020-10-12 18:18:36','',595,'https://www.drfields.com/uncategorized/595-revision-v1/',0,'revision','',0),(4241,9,'2020-10-12 18:20:11','2020-10-12 18:20:11','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\r\n<strong>Joel - Foot</strong></div>\r\n<h4>Prolotherapy for Foot and Ankle Injuries</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Or are you looking for an alternative to surgery for your chronic ankle sprains? Every day at OrthoRegen<sup>®</sup> , we use comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> for foot and ankle injuries. And nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n<h4>Why Should You Choose Prolotherapy Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  And like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. So if you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. And if you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> at OrthoRegen<sup>®</sup> are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Instability of the foot or ankle</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials/\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials/\">Ankle Testimonials</a> pages.','Prolotherapy for Foot Injuries','','inherit','closed','closed','','595-revision-v1','','','2020-10-12 18:20:11','2020-10-12 18:20:11','',595,'https://www.drfields.com/uncategorized/595-revision-v1/',0,'revision','',0),(4242,9,'2020-10-12 18:28:18','2020-10-12 18:28:18','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Prolotherapy Hip Injury\'\"]\n<strong>Chris - Hip</strong></div>\n<h4>Prolotherapy for Hip and Groin Injuries</h4>\nHip and groin injuries can quickly become debilitating and escalate into athletic career ending injuries. MRI and arthroscopic surgery are routinely recommended for patients. Other patients may spend months or longer on pain medication, while undergoing rounds of physical therapy. <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> for hip and groin injuries offers a successful alternative to pain medication and surgery. And OrthoRegen<sup>®</sup> offers comprehensive treatment for your hip injuries and groin pain without pain medication, surgery or extended time away from the sport you love.\n<h4>Who Is Prolotherapy for Hip Injuries For?</h4>\nOur patients include Olympic hopefuls to weekend warriors. Dr. Peter Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an Ironman Triathlete. So he understands the concerns of injured athletes, hoping to return quickly to their chosen sport. His clinical experience has shown that Prolotherapy hip treatment is the preferred way to treat hip injuries and groin pain for optimal long term results. We can get you back into your sport without surgery, without medication, and without extended time away from your sport.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n\n<strong>Some of the most common pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment are:</strong>\n<ul>\n 	<li>Acetabular labrum tear</li>\n 	<li>Arthritis</li>\n 	<li>Femoroacetabular impingement</li>\n 	<li>Groin pain</li>\n 	<li>Instability of the hip and groin</li>\n 	<li>Hip impingement</li>\n 	<li>Hip pain</li>\n 	<li>Ischial tuberosity pain</li>\n 	<li>Labral tear</li>\n 	<li>Pelvic floor dysfunction</li>\n 	<li>Post pelvic fusion pain</li>\n 	<li>Post-surgical hip pain</li>\n 	<li>Pubic symphysis injury</li>\n 	<li>Pubis pain</li>\n 	<li>Pupalgia</li>\n 	<li>Snapping hip syndrome</li>\n 	<li>Torn Labrum</li>\n</ul>\n<h4>Are You A Candidate for Prolotherapy?</h4>\nPeter A. Fields, MD,DC and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy hip and groin treatments, as well as PRP Prolotherapy, and Stem Cell Prolotherapy. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>','Prolotherapy for Hip and Groin Injuries','','inherit','closed','closed','','528-autosave-v1','','','2020-10-12 18:28:18','2020-10-12 18:28:18','',528,'https://www.drfields.com/uncategorized/528-autosave-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (4243,9,'2020-10-12 18:28:21','2020-10-12 18:28:21','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Prolotherapy Hip Injury\'\"]\r\n<strong>Chris - Hip</strong></div>\r\n<h4>Prolotherapy for Hip and Groin Injuries</h4>\r\nHip and groin injuries can quickly become debilitating and escalate into athletic career ending injuries. MRI and arthroscopic surgery are routinely recommended for patients. Other patients may spend months or longer on pain medication, while undergoing rounds of physical therapy. <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> for hip and groin injuries offers a successful alternative to pain medication and surgery. And OrthoRegen<sup>®</sup> offers comprehensive treatment for your hip injuries and groin pain without pain medication, surgery or extended time away from the sport you love.\r\n<h4>Who Is Prolotherapy for Hip Injuries For?</h4>\r\nOur patients include Olympic hopefuls to weekend warriors. Dr. Peter Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an Ironman Triathlete. So he understands the concerns of injured athletes, hoping to return quickly to their chosen sport. His clinical experience has shown that Prolotherapy hip treatment is the preferred way to treat hip injuries and groin pain for optimal long term results. We can get you back into your sport without surgery, without medication, and without extended time away from your sport.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment are:</strong>\r\n<ul>\r\n 	<li>Acetabular labrum tear</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Femoroacetabular impingement</li>\r\n 	<li>Groin pain</li>\r\n 	<li>Instability of the hip and groin</li>\r\n 	<li>Hip impingement</li>\r\n 	<li>Hip pain</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Post pelvic fusion pain</li>\r\n 	<li>Post-surgical hip pain</li>\r\n 	<li>Pubic symphysis injury</li>\r\n 	<li>Pubis pain</li>\r\n 	<li>Pupalgia</li>\r\n 	<li>Snapping hip syndrome</li>\r\n 	<li>Torn Labrum</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nPeter A. Fields, MD,DC and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy hip and groin treatments, as well as PRP Prolotherapy, and Stem Cell Prolotherapy. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>','Prolotherapy for Hip and Groin Injuries','','inherit','closed','closed','','528-revision-v1','','','2020-10-12 18:28:21','2020-10-12 18:28:21','',528,'https://www.drfields.com/uncategorized/528-revision-v1/',0,'revision','',0),(4244,9,'2020-10-12 18:39:26','2020-10-12 18:39:26','<h3>Stem Cell Prolotherapy</h3>\r\nTake a look at this article published in The<em> Townsend Letter</em> by Peter A. Fields, MD, DC  that covers Stem Cell Prolotherapy. If you\'ve ever wondered what it was all about, this article explains in detail.\r\n\r\nEver wonder how you can regenerative cartilage? Has joint replacement been recommended, but you\'d really rather not go that route? <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a> is an effective treatment option that can meet your non-surgical and regenerative joint repair goals.\r\n\r\nStem Cells therapies are definitely a newer treatment option many are seeking. But not all therapies are the same. It\'s important to educate yourself on what this treatment really offers. This is an in-depth article that discusses bone marrow stem cells and adipose stem cells. Peter A. Fields, MD, DC will tell you what they are and how they work.\r\n\r\nThis article is a great place to find out more about a non-surgical alternative to joint replacement with this regenerative injection therapy. And remember...once surgery is done, it cannot be undone! We would like to help you to avoid that scenario!\r\n<h4>Are you a Candidate?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. And Stem Cell Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Plus, Stem Cell Prolotherapy is one of the few treatments that encourages movement after the treatment. That\'s because movement actually aids the healing process. By contrast, surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible surgery</strong>? Are you a candidate for Stem Cell Prolotherapy? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nCheck out other articles in the <a href=\"https://www.townsendletter.com\">Townsend Letter</a>.\r\n\r\n<img class=\"aligncenter wp-image-1207 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article-2014_Page_1.jpg\" alt=\"Stem Cell Prolotherapy\" width=\"955\" height=\"1244\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1208\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article2014_Page_2.jpg\" alt=\"Fields July Article2014 Page 2\" width=\"1650\" height=\"2150\" />','Stem Cell Prolotherapy','','inherit','closed','closed','','1524-revision-v1','','','2020-10-12 18:39:26','2020-10-12 18:39:26','',1524,'https://www.drfields.com/uncategorized/1524-revision-v1/',0,'revision','',0),(4245,9,'2020-10-12 18:52:41','2020-10-12 18:52:41','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\n<strong>Jennifer - Elbow</strong></div>\n<h4>What Is Causing Your Elbow Pain?</h4>\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. But the ligaments or tendons are usually injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\n<h3><strong>Ligament Injuries in the Elbow</strong></h3>\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<strong>Tendon Injuries in the Elbow</strong>\n\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. The <strong>extensor tendons</strong> move the wrist up, and in tennis elbow, these can be damaged. In golfer’s elbow, it is the <strong>flexor tendons</strong> that get injured, as they move the wrist down. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\n\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\n<h3><strong>The Most Common Elbow Injuries </strong></h3>\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\n\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\n\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\n\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder ligaments, tendons, or joints. And this leads to gentle, local inflammation in that specific area that boosts healing. Also, the localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. And new collagen shrinks as it matures and tightens the ligaments that were injected, making them stronger.\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. And Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Because movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\n\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? And are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy for Elbow Pain','','inherit','closed','closed','','524-autosave-v1','','','2020-10-12 18:52:41','2020-10-12 18:52:41','',524,'https://www.drfields.com/uncategorized/524-autosave-v1/',0,'revision','',0),(4246,9,'2020-10-12 18:43:33','2020-10-12 18:43:33','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Jennifer - Elbow</strong></div>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. It is usually the ligaments and tendons that are injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n\r\n<strong>Ligament Injuries in the Elbow</strong>\r\n\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. In tennis elbow it is the <strong>extensor tendons</strong> which move the wrist up, that can be damaged. In golfer’s elbow it is the <strong>flexor tendons</strong>, that move the wrist down, that get injured. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n\r\n<strong>The Most Common Elbow Injuries </strong>\r\n\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? Are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy for Elbow Pain','','inherit','closed','closed','','524-revision-v1','','','2020-10-12 18:43:33','2020-10-12 18:43:33','',524,'https://www.drfields.com/uncategorized/524-revision-v1/',0,'revision','',0),(4247,9,'2020-10-12 18:48:24','2020-10-12 18:48:24','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Jennifer - Elbow</strong></div>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. But the ligaments or tendons are usually injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n<h3><strong>Ligament Injuries in the Elbow</strong></h3>\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. The <strong>extensor tendons</strong> move the wrist up, and in tennis elbow, these can be damaged. In golfer’s elbow, it is the <strong>flexor tendons</strong> that get injured, as they move the wrist down. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n<h3><strong>The Most Common Elbow Injuries </strong></h3>\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? Are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy for Elbow Pain','','inherit','closed','closed','','524-revision-v1','','','2020-10-12 18:48:24','2020-10-12 18:48:24','',524,'https://www.drfields.com/uncategorized/524-revision-v1/',0,'revision','',0),(4248,9,'2020-10-12 18:53:09','2020-10-12 18:53:09','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Jennifer - Elbow</strong></div>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. But the ligaments or tendons are usually injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n<h3><strong>Ligament Injuries in the Elbow</strong></h3>\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. The <strong>extensor tendons</strong> move the wrist up, and in tennis elbow, these can be damaged. In golfer’s elbow, it is the <strong>flexor tendons</strong> that get injured, as they move the wrist down. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n<h3><strong>The Most Common Elbow Injuries </strong></h3>\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder ligaments, tendons, or joints. And this leads to gentle, local inflammation in that specific area that boosts healing. Also, the localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. And new collagen shrinks as it matures and tightens the ligaments that were injected, making them stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. And Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Because movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? And are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy for Elbow Pain','','inherit','closed','closed','','524-revision-v1','','','2020-10-12 18:53:09','2020-10-12 18:53:09','',524,'https://www.drfields.com/uncategorized/524-revision-v1/',0,'revision','',0),(4250,9,'2020-10-20 17:44:44','2020-10-20 17:44:44','<h4>Stop Back Pain and the Endless Cycle of Chasing Symptoms</h4>\r\n<span style=\"font-weight: 400;\">So many people suffer with back pain, stuck in a cycle of pain medications, hours of therapy appointments, more prescription medications, over the counter medications, supplements, and more therapy. Only to continue to suffer from continued back pain. The cycle is an attempt to manage the pain. </span><span style=\"font-weight: 400;\">You might think, “Of course, I want to manage the pain!” But what if there is a better way, and one that actually corrects the back pain problem. Regenerative Orthopedics can stop back pain and the cycle because it repairs the underlying source of pain. Since it treats at the source, it ends up resolving the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\"> Chasing symptoms keeps the sufferer in the pain cycle. Correcting the problems with Regenerative Orthopedics can stop back pain and the endless cycle!</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<b>What Is the Reason Behind Most Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Since back pain is so common and a leading cause of disability, it is important to look at the reason for it. The underlying cause of most back pain issues is </span><b><i>spinal instability</i></b><span style=\"font-weight: 400;\">. </span>\r\n\r\n<span style=\"font-weight: 400;\">What is spinal instability you might ask? When you bend and twist and tweak your back, you injure soft tissue, like muscle and ligaments. Muscles have a great blood supply, so they heal quickly. Ligaments have a poor blood supply, and take quite a while to heal. In fact, they heal quite poorly. </span>\r\n\r\n<span style=\"font-weight: 400;\">Unhealed ligaments are weak and lax, similar to stretched out rubber bands. Ligaments connect bone to bone. So if the ligaments are weak, then the bone connection will be weak and wobbly. That bone connection or joint is then unstable. </span>\r\n<h3>The Vertebral Spine</h3>\r\n<span style=\"font-weight: 400;\">The vertebral bones in the back make up the spine. So when the ligaments in the spine are weak or wobbly, that makes for spinal instability. When these ligaments remain unhealed, the problem gets worse and worse. The ligaments get more lax and the spine becomes more unstable. You can imagine that if the joints of the spine become wobbly, that the bony structures will have difficulty moving like they should. </span>\r\n\r\n<span style=\"font-weight: 400;\">When motion in the vertebral joint connections stops being smooth, the abnormal motion causes the joint structures to degenerate. Instability and abnormal joint motion is behind all types of painful back conditions. Painful problems like bulging discs, arthritis, sciatica, and degenerative joint disease can result from abnormal motion in the spine.</span>\r\n\r\n<span style=\"font-weight: 400;\"> The underlying problem is ligament weakness, which creates the abnormal joint motion that will eventually damage the joint structures and elicit pain. Pain pills aren’t able to fix the weakened ligaments. And cortisone makes soft tissue weaker. So even if these things provide some short-term relief, they will eventually worsen the problem in the long run. Massage can’t strengthen weakened ligaments either.</span>\r\n<h4><em>Regenerative Orthopedics Can Stop Back Pain</em></h4>\r\n<span style=\"font-weight: 400;\">What’s the solution? The degenerative condition needs a regenerative treatment. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are all regenerative treatments that strengthen ligaments, restore normal joint motion, and regenerate joint structures. Good quality <a href=\"https://lyfebotanicals.com/health/turmeric-back-pain/\">supplements</a>, like turmeric, which can aid in the healing process, are also of benefit.</span>\r\n\r\n<b>Ligaments Are Structures that Provide Stability to the Joint</b>\r\n\r\n<span style=\"font-weight: 400;\">As mentioned earlier, the most common cause of unresolved back pain is spinal instability, due to weakened and stretched out ligaments. Ligaments are very important for stability of the spine and for proper motion. In fact, they are some of the main stabilizing structure for the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Sure, those with back pain will definitely complain of muscle spasms and tightness, because muscles help with stability too. But muscles will spasm because they are overcompensating for the inability of the injured ligaments to keep the spine in place. Treatments that relieve muscle spasms will give temporary reprieve of the spasms. But they will not address the ligament weakness. Instability and pain will continue, because the ligaments are unable to hold the adjacent bones of the spine together properly.</span>\r\n\r\n<b>How Can You Stop Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Each year, thousands and thousands of people are disabled due to some type of painful back condition. Back pain is actually one of the main reasons people come to see us at OrthoRegen<sup>®</sup>. By the time they come to see us, they have usually tried numerous types of pills, treatments, and even surgery. </span>\r\n\r\n<span style=\"font-weight: 400;\">But they are in our office because the pain has not stopped!</span><span style=\"font-weight: 400;\"> That’s because these other treatments are only short-lived and because they only provide temporary relief. Even surgical treatments end up with poor rates of success. Surgery may emphasize treatment of the disc, for example, but it misses treating the ligament injury which is the originating source of the pain. So pain continues.</span>\r\n<h3>Ligaments Can Refer Pain Too</h3>\r\n<span style=\"font-weight: 400;\">The places where the ligaments attach to the bones are full of nerves, which elicit pain when stretched out or injured. Injured ligaments can send out referral pain down the back of the leg and even to the foot. They can also refer pain into the groin and pelvic floor. If weak ligaments exist, the physician knowledgeable in examination techniques can diagnose instability during the physical examination with varied maneuvers and positioning. Even palpating, or pressing with the thumb at the ligament attachments will elicit pain indicating ligament laxity.</span>\r\n\r\n<span style=\"font-weight: 400;\">Back pain is one of the easiest conditions to treat with Regenerative Orthopedics. Most often, the pain is located in the lower back, where the vertebrae of the lumbar spine meet the pelvis. Four structures adjoin there in a pretty small area, with all of it held together by ligaments, connecting the sacrum to the sides of the iliac crest and the ilium, while the lower part of the lumbar spine connects to the sacrum. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics to the ligaments in this area strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication. </span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Stop Back Pain with Regenerative Orthopedics','','inherit','closed','closed','','2760-revision-v1','','','2020-10-20 17:44:44','2020-10-20 17:44:44','',2760,'https://www.drfields.com/uncategorized/2760-revision-v1/',0,'revision','',0),(4251,9,'2020-10-20 18:33:50','2020-10-20 18:33:50','<h3>What Is the Cause of Back Pain?</h3>\nAlmost anything can cause back pain. Part of the reason is all of the stress we put on our backs. Weight from the upper body, prolonged sitting, sports, being overweight, and poor flexibility all can put added stress on the back. And at some point, all of this stress adds up and at some point will cause back pain.\n<h3>And What Are the Best Treatment Options?</h3>\nIt is not unusual to hear our patients say they have tried all kinds of treatments to no avail. That\'s why they are now in our office. They have tried stretching, yoga, pilates, massage, and all kinds of therapies. But their pain persists. And it is a good possibility that surgery has been recommended. But once surgery is done, it cannot be undone. So, many people look for an alternative.\n\nRegenerative Orthopedics is an effective, non-surgical alternative for back pain relief for most musculoskeletal conditions that cause back pain. <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, one form of Regenerative Orthopedics, looks at the cause of back pain, and not just the effect. Prolotherapy stimulates repair. It\'s not just a bandaid to cover up back pain. But rather, it gets to the root of the problem, like tendon and ligament injury. And it repairs the injury, which results in the pain relief you seek.\n\nWhen you want to get to the root of the problem, Regenerative Medicine options like Prolotherapy, PRP, and Stem Cell Therapy, are not just effective, but they are non-surgical treatment options that relieve your back pain, and get you back to doing what you love.\n\nRead more about back pain in this article by Peter A. Fields, MD, DC in the <a href=\"https://www.townsendletter.com\">Townsend Article</a>, and why surgery may not be the best choice when looking into treatment options.\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-1219\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-1.gif\" alt=\"Townsend Article Jan 2014 1\" width=\"955\" height=\"1249\" data-wp-editing=\"1\" />\n\n<img class=\"aligncenter size-full wp-image-1220\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-2.gif\" alt=\"Townsend Article Jan 2014 2\" width=\"955\" height=\"1249\" />\n\n<img class=\"aligncenter size-full wp-image-1221\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-3.gif\" alt=\"Townsend Article Jan 2014 3\" width=\"955\" height=\"1249\" />','What is the Cause of Back Pain?','','inherit','closed','closed','','1530-autosave-v1','','','2020-10-20 18:33:50','2020-10-20 18:33:50','',1530,'https://www.drfields.com/uncategorized/1530-autosave-v1/',0,'revision','',0),(4252,9,'2020-10-20 18:34:35','2020-10-20 18:34:35','<h3>What Is the Cause of Back Pain?</h3>\r\nAlmost anything can cause back pain. Part of the reason is all of the stress we put on our backs. Weight from the upper body, prolonged sitting, sports, being overweight, and poor flexibility all can put added stress on the back. And at some point, all of this stress adds up and at some point will cause back pain.\r\n<h3>And What Are the Best Treatment Options?</h3>\r\nIt is not unusual to hear our patients say they have tried all kinds of treatments to no avail. That\'s why they are now in our office. They have tried stretching, yoga, pilates, massage, and all kinds of therapies. But their pain persists. And it is a good possibility that surgery has been recommended. But once surgery is done, it cannot be undone. So, many people look for an alternative.\r\n\r\nRegenerative Orthopedics is an effective, non-surgical alternative for back pain relief for most musculoskeletal conditions that cause back pain. <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, one form of Regenerative Orthopedics, looks at the cause of back pain, and not just the effect. Prolotherapy stimulates repair. It\'s not just a bandaid to cover up back pain. But rather, it gets to the root of the problem, like tendon and ligament injury. And it repairs the injury, which results in the pain relief you seek.\r\n\r\nWhen you want to get to the root of the problem, Regenerative Medicine options like Prolotherapy, PRP, and Stem Cell Therapy, are not just effective, but they are non-surgical treatment options that relieve your back pain, and get you back to doing what you love.\r\n\r\nRead more about back pain in this article by Peter A. Fields, MD, DC in the <a href=\"https://www.townsendletter.com\">Townsend Article</a>, and why surgery may not be the best choice when looking into treatment options.\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_1219\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1219 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-1.gif\" alt=\"What is the Cause of back pain?\" width=\"955\" height=\"1249\" /> What is the Cause of Back Pain? In this article, Peter A. Fields, MD, DC goes into depth on the anatomy and cause of back pain and the treatment options.[/caption]\r\n\r\n<img class=\"aligncenter size-full wp-image-1220\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-2.gif\" alt=\"Townsend Article Jan 2014 2\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1221\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-3.gif\" alt=\"Townsend Article Jan 2014 3\" width=\"955\" height=\"1249\" />','What is the Cause of Back Pain?','','inherit','closed','closed','','1530-revision-v1','','','2020-10-20 18:34:35','2020-10-20 18:34:35','',1530,'https://www.drfields.com/uncategorized/1530-revision-v1/',0,'revision','',0),(4254,9,'2020-10-20 19:33:51','2020-10-20 19:33:51','<h4>Regenerative Orthopedics for Annoying Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you\'re prevented from doing all of that and more. Moreover, many conventional treatments include surgery, arthroscopy, cortisone, and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Regenerative Orthopedics to treat persistent joint pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the shin\'s upper end (tibia). The knee cap (patellae) slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. For example, if you are experiencing minor pain, clicking, giving way, or ‘trick knee,’ you may be feeling the first symptoms of arthritis. Plus, arthritis can begin in people as early as thirty years of age. And this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain, accompanied by significant inflammation and swelling, can be caused by gout or even infection.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. And other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Additionally, pseudogout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease, and chondromalacia patellae can also cause knee pain. As we age, the smooth and resilient cartilage on our long bones\' ends wears down, but this cartilage is needed for normal joint function.\r\n<h4>How Does Regenerative Orthopedics Work for Chronic Knee Pain?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Regenerative Orthopedics</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons, and possibly cartilage. Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nRegenerative Orthopedics works because it stimulates an inflammatory reaction in the body. In short, solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. And then, the localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. Subsequently, the new collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Regenerative Orthopedics?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. And Regenerative Orthopedics is a very safe, affordable option that allows you to keep working, training, and living a normal life during the recovery process. Regenerative Orthopedics for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after Regenerative Orthopedics, like Stem Cell Therapy, PRP, and <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Regenerative Orthopedics for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Peter A. Fields, MD, DC, and OrthoRegen<sup>®</sup> at 310-453-1234.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Knee Pain That Won\'t Go Away','','inherit','closed','closed','','486-revision-v1','','','2020-10-20 19:33:51','2020-10-20 19:33:51','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(4255,9,'2020-10-20 19:35:13','2020-10-20 19:35:13','<h4>Regenerative Orthopedics for Annoying Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you are prevented from doing all of that and more. Moreover, many conventional treatments include surgery, arthroscopy, cortisone, and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Regenerative Orthopedics to treat persistent joint pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the shin\'s upper end (tibia). The knee cap (patellae) slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. For example, if you are experiencing minor pain, clicking, giving way, or ‘trick knee,’ you may be feeling the first symptoms of arthritis. Plus, arthritis can begin in people as early as thirty years of age. And this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain, accompanied by significant inflammation and swelling, can be caused by gout or even infection.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. And other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Additionally, pseudogout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease, and chondromalacia patellae can also cause knee pain. As we age, the smooth and resilient cartilage on our long bones\' ends wears down, but this cartilage is needed for normal joint function.\r\n<h4>How Does Regenerative Orthopedics Work for Chronic Knee Pain?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Regenerative Orthopedics</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons, and possibly cartilage. Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nRegenerative Orthopedics works because it stimulates an inflammatory reaction in the body. In short, solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. And then, the localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. Subsequently, the new collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Regenerative Orthopedics?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. And Regenerative Orthopedics is a very safe, affordable option that allows you to keep working, training, and living a normal life during the recovery process. Regenerative Orthopedics for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after Regenerative Orthopedics, like Stem Cell Therapy, PRP, and <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Regenerative Orthopedics for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Peter A. Fields, MD, DC, and OrthoRegen<sup>®</sup> at 310-453-1234.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Knee Pain That Won\'t Go Away','','inherit','closed','closed','','486-revision-v1','','','2020-10-20 19:35:13','2020-10-20 19:35:13','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(4256,9,'2022-11-02 23:23:33','2022-11-02 23:23:33','<h4>Stem Cell Treatment Los Angeles for Joints and Spine - Alternative To Joint Replacement</h4>\nOrthoRegen<strong><sup>®</sup></strong> is a medical clinic specializing in Stem Cell Treatment in the Los Angeles area. If you are looking to avoid surgery in your joints or spine, then we are what you are looking for since we offer effective non-surgical alternatives for joint and spine repair.\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\n<strong>Knee Treatment</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\n<strong>Stem Cell Hip</strong></div>\n<i>Regenerating a person\'s joints and spine is not something of the future: <strong>it is happening today!</strong> Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\n\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\n<h4>Who Needs Stem Cell Treatment in Los Angeles?</h4>\n<img class=\"size-medium wp-image-5586\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.1-400x500.png\" alt=\"Stem Cells.1\" width=\"400\" height=\"500\" />\n\nOur Stem Cell technique for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\n<ul>\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\n 	<li>Both solutions are then centrifuged and concentrated to produce a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\n</ul>\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\n\nAgain, this procedure is usually used for cases where you have been told to have your joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear, or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\n\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once the surgery is done, it cannot be undone!</em></strong>\n\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\n<strong>Bone Marrow Stem Cells</strong>\nStem cells are contained within the bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross-reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\n\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments, and more.  All this allows for the repair and remodeling of cartilage, bone, and other soft tissue structures such as meniscus, labrums, ligaments, and tendons.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<strong>Adipose Stem Cells </strong>\nOn the other hand, adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle, or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate the above tissues and to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar but not identical to bone marrow cells.\n\n<img class=\"wp-image-5587 size-medium\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.-1-500x500.png\" alt=\"Stem Cells.\" width=\"500\" height=\"500\" />\n\nNot all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries, or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\n\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulate full-thickness cartilage defects to heal.”\n<h4>Research On Stem Cell Treatment for Joints</h4>\nSeveral human studies have been done using bone marrow and fat stem cells for articular cartilage lesions. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers successfully studied the treatment results from the bone marrow mesenchymal stem cells.\n\n<img class=\"alignright wp-image-735 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" />Articular Cartilage has limited repair capacity, and marrow-stimulation procedures such as microfracture, osteochondral grafts, and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients, the bone marrow was harvested from the iliac crest (hip bone).\n\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\n<h3><strong>Stem Cell Treatment Results</strong></h3>\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near-normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\n\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1-year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\n\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <a href=\"tel:+[phone_raw]\">[phone]</a> to make an appointment now.','Stem Cell Treatment Los Angeles','','inherit','closed','closed','','431-autosave-v1','','','2022-11-02 23:23:33','2022-11-02 23:23:33','',431,'https://www.drfields.com/uncategorized/431-autosave-v1/',0,'revision','',0),(4257,9,'2020-10-20 19:41:30','2020-10-20 19:41:30','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Knee Treatment</strong></div>\r\n<h3 id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong></h3>\r\n<i>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\r\n<div class=\"clear\"></div>\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"alignleft wp-image-732 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\" width=\"215\" height=\"167\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"alignright wp-image-735 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n<h3><strong>Stem Cell Treatment Results</strong></h3>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <a href=\"tel:+[phone_raw]\">[phone]</a>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2020-10-20 19:41:30','2020-10-20 19:41:30','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(4258,9,'2020-10-20 19:42:04','2020-10-20 19:42:04','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Knee Treatment</strong></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong></p>\r\n<i>Regenerating a person\'s joints and spine is not something of the future: it is happening today! Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\r\n<div class=\"clear\"></div>\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"alignleft wp-image-732 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\" width=\"215\" height=\"167\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"alignright wp-image-735 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n<h3><strong>Stem Cell Treatment Results</strong></h3>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <a href=\"tel:+[phone_raw]\">[phone]</a>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2020-10-20 19:42:04','2020-10-20 19:42:04','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(4259,9,'2020-10-20 19:44:52','2020-10-20 19:44:52','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Knee Treatment</strong></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong></p>\r\n<i>Regenerating a person\'s joints and spine is not something of the future: <strong>it is happening today!</strong> Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\r\n<div class=\"clear\"></div>\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"alignleft wp-image-732 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\" width=\"215\" height=\"167\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"alignright wp-image-735 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n<h3><strong>Stem Cell Treatment Results</strong></h3>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <a href=\"tel:+[phone_raw]\">[phone]</a>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2020-10-20 19:44:52','2020-10-20 19:44:52','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(4260,8,'2020-10-21 21:34:34','2020-10-21 21:34:34','','iwp_log_5f90a96af2117','','publish','closed','closed','','iwp_log_5f90a96af2117','','','2020-10-21 21:34:34','2020-10-21 21:34:34','',0,'https://www.drfields.com/iwp_log/iwp_log_5f90a96af2117/',0,'iwp_log','',0),(4261,8,'2020-10-21 21:34:57','2020-10-21 21:34:57','','iwp_log_5f90a9816c159','','publish','closed','closed','','iwp_log_5f90a9816c159','','','2020-10-21 21:34:57','2020-10-21 21:34:57','',0,'https://www.drfields.com/iwp_log/iwp_log_5f90a9816c159/',0,'iwp_log','',0),(4262,8,'2020-10-21 21:35:31','2020-10-21 21:35:31','','iwp_log_5f90a9a3be459','','publish','closed','closed','','iwp_log_5f90a9a3be459','','','2020-10-21 21:35:31','2020-10-21 21:35:31','',0,'https://www.drfields.com/iwp_log/iwp_log_5f90a9a3be459/',0,'iwp_log','',0),(4263,8,'2020-10-28 17:46:35','2020-10-28 17:46:35','','iwp_log_5f99ae7b7ae8f','','publish','closed','closed','','iwp_log_5f99ae7b7ae8f','','','2020-10-28 17:46:35','2020-10-28 17:46:35','',0,'https://www.drfields.com/iwp_log/iwp_log_5f99ae7b7ae8f/',0,'iwp_log','',0),(4264,8,'2020-10-28 17:46:54','2020-10-28 17:46:54','','iwp_log_5f99ae8e9697a','','publish','closed','closed','','iwp_log_5f99ae8e9697a','','','2020-10-28 17:46:54','2020-10-28 17:46:54','',0,'https://www.drfields.com/iwp_log/iwp_log_5f99ae8e9697a/',0,'iwp_log','',0),(4266,8,'2020-10-28 17:49:15','2020-10-28 17:49:15','','iwp_log_5f99af1b84ab0','','publish','closed','closed','','iwp_log_5f99af1b84ab0','','','2020-10-28 17:49:15','2020-10-28 17:49:15','',0,'https://www.drfields.com/iwp_log/iwp_log_5f99af1b84ab0/',0,'iwp_log','',0),(4268,9,'2020-10-29 23:31:05','2020-10-29 23:31:05','&nbsp;\n\nThe hip gets a lot of wear and tear! And it can be weakened by a lot of different things. Eventually, the cumulative injuries cause arthritis to develop. And before long, people find themselves in the surgeon\'s office receiving the news that they need a hip replacement. But do they really?\n\nHip surgeries are going through the roof. With close to 10 million hip surgeries performed annually. That\'s a lot of surgery. And many of us would prefer to avoid surgery if at all possible.\n<h3>Are there treatments that can help us to avoid surgery?</h3>\nThere are different non-surgical treatments that are commonly recommended prior to the surgical recommendation. These include non-inflammatory medications and cortisone injections. But these treatments are not curative. And although they may help you to endure the pain, they will not prevent the eventual hip replacement.\n\nIt is important to address the cause and not just the effect of the wearing out hip. Regenerative Orthopedics, such as Dextrose Prolotherapy, Platelet Rich Plasma, and Stem Cell Prolotherapy, are all non-surgical treatment options that get to the root of the problem. They actually stimulate ligament, tendon, and cartilage repair. And most people have pain because of injury to one or all of these structures.\n\nInjury to soft tissue, like the ligaments, tendons, and cartilage, causes the joint to become unstable. And this instability breaks the joint down further. Eventually, the person with a worn out hip will experience loss of motion. Bone spurs will develop, and the bones will \"bump\" into one another. These symptoms probably sound familiar, because they are experienced with arthritis. And pain medication won\'t fix the cause.\n\nSurgery that takes out parts will alter the structure and function of the joint. Eventually, more surgery will be needed. Yes, surgery is sometimes needed. But unnecessary hip replacements should be avoided. Seek out an experienced Prolotherapist to see if you are a candidate for a regenerative therapy that can help you to avoid surgery.\n\nRemember, once surgery is done, it cannot be undone.\n\nSee testimonials from patients who have received Regenerative Orthopedics by clicking <a href=\"https://www.orthoregen.com/testimonials/\">here</a>.\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-1230\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-1.jpg\" alt=\"Townsend Article Dec 2013 1\" width=\"955\" height=\"1249\" />\n\n<img class=\"aligncenter size-full wp-image-1231\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-2.gif\" alt=\"Townsend Article Dec 2013 2\" width=\"955\" height=\"1249\" />\n\n<img class=\"aligncenter size-full wp-image-1232\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-3.gif\" alt=\"Townsend Article Dec 2013 3\" width=\"955\" height=\"1249\" />','Hip Replacement: Do You Really Need It?','','inherit','closed','closed','','1532-autosave-v1','','','2020-10-29 23:31:05','2020-10-29 23:31:05','',1532,'https://www.drfields.com/uncategorized/1532-autosave-v1/',0,'revision','',0),(4269,9,'2020-10-29 23:32:06','2020-10-29 23:32:06','&nbsp;\r\n\r\nThe hip gets a lot of wear and tear! And it can be weakened by a lot of different things. Eventually, the cumulative injuries cause arthritis to develop. And before long, people find themselves in the surgeon\'s office receiving the news that they need a hip replacement. But do they really?\r\n\r\nHip surgeries are going through the roof. With close to 10 million hip surgeries performed annually. That\'s a lot of surgery. And many of us would prefer to avoid surgery if at all possible.\r\n<h3>Are there treatments that can help us to avoid surgery?</h3>\r\nDifferent non-surgical treatments are commonly recommended before the surgical recommendation. These include non-inflammatory medications and cortisone injections. But these treatments are not curative. And although they may help you endure the pain, they will not prevent the eventual hip replacement.\r\n\r\nIt is important to address the cause and not just the effect of the wearing out hip. Regenerative Orthopedics, such as Dextrose Prolotherapy, Platelet Rich Plasma, and Stem Cell Prolotherapy, are all non-surgical treatment options that get to the root of the problem. They actually stimulate ligament, tendon, and cartilage repair. And most people have pain because of injury to one or all of these structures.\r\n\r\nInjury to soft tissue, like the ligaments, tendons, and cartilage, causes the joint to become unstable. And this instability breaks the joint down further. Eventually, the person with a worn-out hip will experience loss of motion. Bone spurs will develop, and the bones will \"bump\" into one another. These symptoms probably sound familiar because they are experienced with arthritis. And pain medication won\'t fix the cause.\r\n\r\nSurgery that takes out parts will alter the structure and function of the joint. Eventually, more surgery will be needed. Yes, surgery is sometimes needed. But unnecessary hip replacements should be avoided. Seek out an experienced Prolotherapist to see if you are a candidate for a regenerative therapy that can help you to avoid surgery.\r\n\r\nRemember, once the surgery is done, it cannot be undone.\r\n\r\nSee testimonials from patients who have received Regenerative Orthopedics by clicking <a href=\"https://www.orthoregen.com/testimonials/\">here</a>.\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter size-full wp-image-1230\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-1.jpg\" alt=\"Townsend Article Dec 2013 1\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1231\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-2.gif\" alt=\"Townsend Article Dec 2013 2\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1232\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-3.gif\" alt=\"Townsend Article Dec 2013 3\" width=\"955\" height=\"1249\" />','Hip Replacement: Do You Really Need It?','','inherit','closed','closed','','1532-revision-v1','','','2020-10-29 23:32:06','2020-10-29 23:32:06','',1532,'https://www.drfields.com/uncategorized/1532-revision-v1/',0,'revision','',0),(4270,9,'2020-10-30 00:09:41','2020-10-30 00:09:41','<h4>Platelet Rich Plasma Treatments</h4>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\n<div class=\"clearfix\"></div>\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>Platelet Rich Plasma Treatments</strong> (also known as PRP Injections, PRP Therapy, or PRP Prolotherapy) are treatments for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications, and recovery time associated with joint surgery.\n<h4>Why Does PL Treatment Work?</h4>\n[caption id=\"attachment_642\" align=\"alignright\" width=\"200\"]<img class=\"wp-image-642 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" /> <em>Platelet Rich Plasma Treatments can help to keep you running</em>[/caption]\n\nYour blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that can greatly and naturally accelerate the normal healing process. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair and regenerate weakened torn or damaged ligaments, ligaments, and joints.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h4>PRP Treatment vs. Dextrose Prolotherapy Treatment</h4>\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.), which causes an inflammatory response that stimulates the healing process.\n\nBy contrast, the PRP treatment solution is derived from your own blood. A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This highly concentrated amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze new soft-tissue growth.\n\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair and regenerate weakened torn or damaged ligaments, ligaments, and joints.\n<h4>Which Treatment is Right For Me?</h4>\nMost organizations and the physicians associated with them teach Prolotherapy, and PRP agree that <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\n<ul>\n 	<li><strong>It is less painful.</strong></li>\n 	<li><strong>Prolotherapy primes the area that is damaged, which PRP does not.\n</strong></li>\n 	<li><strong>It is less expensive.</strong></li>\n</ul>\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h4>PRP Treatment: Frequently Asked Questions</h4>\n<h4><em><strong>What is PRP Treatment?</strong></em></h4>\nPRP, as used in Regenerative Orthopedics, is a non-surgical healing treatment for healing soft tissue. The solution is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\n<h4><em>What does PRP mean?</em></h4>\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood that contains cellular components such as red cells, white blood cells, and platelets. The Harvest Method that OrthoRegen and Peter A. Fields, MD, DC uses concentrates the platelets 7-10 times of what is normally found in the blood. Other systems concentrate them, but to a lesser extent.\n<h4><em>What conditions are treated with PRP?</em></h4>\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci, or labrums are the most common soft tissue structures treated. PRP has also been effective in treating arthritis.\n\n<img class=\"wp-image-712 size-full alignleft\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" />\n<h3>What are some common diagnoses treated with PRP?</h3>\n<ul>\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\n 	<li>Hip: labrum, tenositis, bursitis</li>\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpal tunnel</li>\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\n</ul>\n<h3>How is PRP treatment administered?</h3>\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Then, a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\n\n&nbsp;\n<h3>Is PRP curative?</h3>\nPRP actually heals the injured region. Unlike pharmaceutical medications, like ibuprofen or cortisone, which may just take the pain away but cannot heal the injury.\n<h3>How does PRP work to heal?</h3>\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate and promote healing of weakened, torn, or damaged soft tissue such as tendons, ligaments, meniscus, or labrum.\n<h3>Is PRP painful?</h3>\nPatients typically tolerate the procedure well, although post-injection soreness is sometimes experienced.\n<h3>How many PRP treatments do you need?</h3>\nTwo to four treatments are needed depending on the degree of injury and how long the injury has been there.\n<h3>How far apart are PRP treatments spaced?</h3>\nTypically about every 6 weeks if indicated.<img class=\"alignright wp-image-644 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\n<h3>What can you expect after getting PRP?</h3>\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to resolve substantially.\n<h3>Are there side effects/complications of PRP?</h3>\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\n<h3>How long does it take the PRP to “work”?</h3>\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with the usual reports of original pain being lessened over time. Increased endurance and strength are typically reported.\n<h6>Platelet Rich Plasma (PRP) Therapy in the News:</h6>\n<ul>\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\n</strong></li>\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\n</strong></li>\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\n</ul>','Platelet Rich Plasma Treatments: How Are They Different from Prolotherapy?','','inherit','closed','closed','','414-autosave-v1','','','2020-10-30 00:09:41','2020-10-30 00:09:41','',414,'https://www.drfields.com/uncategorized/414-autosave-v1/',0,'revision','',0),(4271,9,'2020-10-29 23:42:17','2020-10-29 23:42:17','<h4>Platelet Rich Plasma Treatments</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clearfix\"></div>\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>Platelet Rich Plasma Treatments</strong> (also known as PRP Injections, PRP Therapy or PRP Prolotherapy) are treatments for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications and recovery time associated with joint surgery.\r\n<h4>Why Does PRP Treatment Work?</h4>\r\n<img class=\"alignright wp-image-642 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />Your blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>PRP Treatment vs Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. By contrast, the PRP treatment solution is derived from your own blood. A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This highly concentrated amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze the growth of new soft-tissue.\r\n\r\nBlood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, ligaments and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations, and the physicians associated with them, that teach Prolotherapy and PRP agree that <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>Prolotherapy primes the area that is damaged, which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>PRP Treatment Frequently Asked Questions</h4>\r\n<h6><strong>What is PRP Treatment?</strong></h6>\r\nPRP as used in regenerative orthopedics is a non-surgical healing treatment for healing soft tissue. PRP is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n<h6>What does PRP mean?</h6>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood which contains cellular components such as red cells, white blood cells and platelets. The Harvest method that Dr Fields uses concentrates the platelets 7-10 times of what is normally found in blood. Other systems concentrate them, but to a lesser extent.\r\n<h6>What conditions are treated with PRP?</h6>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci or labrums are the most common soft tissue structures that are treated. PRP has also been effective in treating arthritis.\r\n\r\n<img class=\"alignleft wp-image-712 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" />\r\n<h6>What are some common diagnoses treated with PRP?</h6>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, Bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpel tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h6>How is PRP treatment administered?</h6>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Second a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n<h6>Is PRP curative?</h6>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications like ibuprofen or cortisone which just take the pain away but do not heal the injury.\r\n<h6>How does PRP work to heal?</h6>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate promote stimulate healing of weakened, torn or damaged soft tissue such as tendons, ligaments, meniscus or labrum.\r\n<h6>Is PRP painful?</h6>\r\nPatients typically tolerate the procedure well although post-injection soreness is sometime experienced.\r\n<h6>How many PRP treatments do you need?</h6>\r\nTwo to four treatments depending on the degree of injury and how long the injury has been there.\r\n<h6>How far apart are PRP treatments spaced?</h6>\r\nTypically about every 6 weeks if indicated.<img class=\"alignright wp-image-644 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h6>What can you expect after getting PRP?</h6>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to substantially resolve.\r\n<h6>Are there side effects/complications of PRP?</h6>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n<h6>How long does it take the PRP to “work”?</h6>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with usual report of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n<h6>Platelet Rich Plasma (PRP) Therapy in the News:</h6>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>','Platelet Rich Plasma Treatments','','inherit','closed','closed','','414-revision-v1','','','2020-10-29 23:42:17','2020-10-29 23:42:17','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(4272,9,'2020-10-30 00:10:22','2020-10-30 00:10:22','<h4>Platelet Rich Plasma Treatments</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clearfix\"></div>\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>Platelet Rich Plasma Treatments</strong> (also known as PRP Injections, PRP Therapy, or PRP Prolotherapy) are treatments for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications, and recovery time associated with joint surgery.\r\n<h4>Why Do Platelet Rich Plasma Treatments Work?</h4>\r\n[caption id=\"attachment_642\" align=\"alignright\" width=\"200\"]<img class=\"wp-image-642 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" /> <em>Platelet Rich Plasma Treatments can help to keep you running</em>[/caption]\r\n\r\nYour blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that can greatly and naturally accelerate the normal healing process. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair and regenerate weakened torn or damaged ligaments, ligaments, and joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Platelet Rich Plasma Treatments vs. Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.), which causes an inflammatory response that stimulates the healing process.\r\n\r\nBy contrast, the PRP treatment solution is derived from your own blood. A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This highly concentrated amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze new soft-tissue growth.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair and regenerate weakened torn or damaged ligaments, ligaments, and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations and the physicians associated with them teach Prolotherapy, and PRP agree that <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>Prolotherapy primes the area that is damaged, which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive.</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>PRP Treatment: Frequently Asked Questions</h4>\r\n<h4><em><strong>What is PRP Treatment?</strong></em></h4>\r\nPRP, as used in Regenerative Orthopedics, is a non-surgical healing treatment for healing soft tissue. The solution is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n<h4><em>What does PRP mean?</em></h4>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood that contains cellular components such as red cells, white blood cells, and platelets. The Harvest Method that OrthoRegen and Peter A. Fields, MD, DC uses concentrates the platelets 7-10 times of what is normally found in the blood. Other systems concentrate them, but to a lesser extent.\r\n<h4><em>What conditions are treated with PRP?</em></h4>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci, or labrums are the most common soft tissue structures treated. PRP has also been effective in treating arthritis.\r\n\r\n<img class=\"wp-image-712 size-full alignleft\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" />\r\n<h3>What are some common diagnoses treated with PRP?</h3>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpal tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h3>How is PRP treatment administered?</h3>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Then, a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n\r\n&nbsp;\r\n<h3>Is PRP curative?</h3>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications, like ibuprofen or cortisone, which may just take the pain away but cannot heal the injury.\r\n<h3>How does PRP work to heal?</h3>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate and promote healing of weakened, torn, or damaged soft tissue such as tendons, ligaments, meniscus, or labrum.\r\n<h3>Is PRP painful?</h3>\r\nPatients typically tolerate the procedure well, although post-injection soreness is sometimes experienced.\r\n<h3>How many PRP treatments do you need?</h3>\r\nTwo to four treatments are needed depending on the degree of injury and how long the injury has been there.\r\n<h3>How far apart are PRP treatments spaced?</h3>\r\nTypically about every 6 weeks if indicated.<img class=\"alignright wp-image-644 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h3>What can you expect after getting PRP?</h3>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to resolve substantially.\r\n<h3>Are there side effects/complications of PRP?</h3>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n<h3>How long does it take the PRP to “work”?</h3>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with the usual reports of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n<h6>Platelet Rich Plasma (PRP) Therapy in the News:</h6>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>','Platelet Rich Plasma Treatments: How Are They Different from Prolotherapy?','','inherit','closed','closed','','414-revision-v1','','','2020-10-30 00:10:22','2020-10-30 00:10:22','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(4273,9,'2020-10-31 01:45:15','2020-10-31 01:45:15','&nbsp;\r\n\r\nThe hip gets a lot of wear and tear! And it can be weakened by a lot of different things. Eventually, the cumulative injuries cause arthritis to develop. And before long, people find themselves in the surgeon\'s office receiving the news that they need a hip replacement. But do they really?\r\n\r\nHip surgeries are going through the roof. With close to 10 million hip surgeries performed annually. That\'s a lot of surgery. And many of us would prefer to avoid surgery if at all possible.\r\n<h3>Are there treatments that can help me avoid surgery?</h3>\r\nDifferent non-surgical treatments are commonly recommended before the surgical recommendation. These include non-inflammatory medications and cortisone injections. But these treatments are not curative. And although they may help you endure the pain, they will not prevent the eventual hip replacement.\r\n\r\nIt is important to address the cause and not just the effect of the wearing out hip. Regenerative Orthopedics, such as Dextrose Prolotherapy, Platelet Rich Plasma, and Stem Cell Prolotherapy, are all non-surgical treatment options that get to the root of the problem. They actually stimulate ligament, tendon, and cartilage repair. And most people have pain because of injury to one or all of these structures.\r\n\r\nInjury to soft tissue, like the ligaments, tendons, and cartilage, causes the joint to become unstable. And this instability breaks the joint down further. Eventually, the person with a worn-out hip will experience loss of motion. Bone spurs will develop, and the bones will \"bump\" into one another. These symptoms probably sound familiar because they are experienced with arthritis. And pain medication won\'t fix the cause.\r\n\r\nSurgery that takes out parts will alter the structure and function of the joint. Eventually, more surgery will be needed. Yes, surgery is sometimes needed. But unnecessary hip replacements should be avoided. Seek out an experienced Prolotherapist to see if you are a candidate for a regenerative therapy that can help you to avoid surgery.\r\n\r\nRemember, once the surgery is done, it cannot be undone.\r\n\r\nSee testimonials from patients who have received Regenerative Orthopedics by clicking <a href=\"https://www.orthoregen.com/testimonials/\">here</a>.\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter size-full wp-image-1230\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-1.jpg\" alt=\"Townsend Article Dec 2013 1\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1231\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-2.gif\" alt=\"Townsend Article Dec 2013 2\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1232\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-3.gif\" alt=\"Townsend Article Dec 2013 3\" width=\"955\" height=\"1249\" />','Hip Replacement: Do You Really Need It?','','inherit','closed','closed','','1532-revision-v1','','','2020-10-31 01:45:15','2020-10-31 01:45:15','',1532,'https://www.drfields.com/uncategorized/1532-revision-v1/',0,'revision','',0),(4274,9,'2020-11-03 23:50:19','2020-11-03 23:50:19','<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\n<h4>What Are Prolotherapy Treatments?</h4>\nProlotherapy treatments are a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\n\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall. But the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells. And it strengthens lax or torn tendons and ligaments. Ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\n\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\n\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\n<h4>What is Prolotherapy Treatment Like?</h4>\nThe Prolotherapy technique involves the injection of a proliferant that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>.\n\nProlotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\n\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\n\nProlotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more. And it is effective at treating many causes of chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis, and bursitis.\n\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\n<h4 class=\"text-center\">Video: What is Prolotherapy Treatment?</h4>\n<div style=\"display: table; margin: 0 auto;\">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]</div>\n<a class=\"buttonlink\" href=\"/regenerative-techniques/prolotherapy-videos/\">View More Videos on Prolotherapy</a>\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-autosave-v1','','','2020-11-03 23:50:19','2020-11-03 23:50:19','',382,'https://www.drfields.com/uncategorized/382-autosave-v1/',0,'revision','',0),(4275,9,'2020-11-03 23:44:57','2020-11-03 23:44:57','<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What Are Prolotherapy Treatments?</h4>\r\nProlotherapy treatments are a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall, but the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells, which strengthen lax or torn tendons and ligaments (ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.) that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>. Prolotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nIn addition to chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis and bursitis, prolotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n<h4 class=\"text-center\">Video: What is Prolotherapy Treatment?</h4>\r\n<div style=\"display: table; margin: 0 auto;\">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]</div>\r\n<a class=\"buttonlink\" href=\"/regenerative-techniques/prolotherapy-videos/\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2020-11-03 23:44:57','2020-11-03 23:44:57','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(4276,9,'2020-11-04 01:13:12','2020-11-04 01:13:12','<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What Are Prolotherapy Treatments?</h4>\r\nProlotherapy treatments are a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall. But the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells. And it strengthens lax or torn tendons and ligaments. Ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>.\r\n\r\nProlotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nProlotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more. And it is effective at treating many causes of chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis, and bursitis.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n<h4 class=\"text-center\">Video: What is Prolotherapy Treatment?</h4>\r\n<div style=\"display: table; margin: 0 auto;\">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]</div>\r\n<a class=\"buttonlink\" href=\"/regenerative-techniques/prolotherapy-videos/\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2020-11-04 01:13:12','2020-11-04 01:13:12','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(4277,9,'2020-11-04 01:32:02','2020-11-04 01:32:02','<img class=\"alignleft size-full wp-image-1183\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Exercise-Energy.jpg\" alt=\"Exercise Energy\" width=\"200\" height=\"285\" />We all know that 30 minutes per day of strenuous exercise will provide many health benefits.  And studies show that higher levels of physical activity are linked to a remarkable number of health benefits.1 Recent <a href=\"https://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2019.305443\">Federal guidelines</a> from the Department of Health and Human Services1 have even made this official.2\r\n\r\nExercise also improves cognitive functioning, mental health, and memory; plus, it hinders the development of certain neurological conditions.1\r\n\r\nThe real question for most of us is how to find the time to exercise regularly and consistently. All we have is 24 hours each day to get done all the things we need to get done. Exercising often takes a back seat to work, shopping, cooking, cleaning, getting the kids ready for school, and ready for bed. And all of the other million-and-one little details that demand our attention every day.\r\n\r\nMost of us have the motivation to exercise. we want to do it and we know it\'s important and good for us. But when to fit it in? A few hardy souls bite the bullet and get up at 5:00 AM - making more time in the day by getting less sleep. Others exercise at the end of a long day, but sometimes that\'s stressful and counterproductive. However they do it, many people make real efforts to exercise a few times each week.\r\n\r\nMost likely - over time - our good intentions get stymied by our daily concerns. Deadlines and scheduling take precedence and the most easy-to-jettison item on our to-do list - exercise - gets lost in the process. And sooner rather than later we\'re back to not exercising at all. Public health experts and policymakers have been struggling, too, with this apparent no-win situation.\r\n\r\nThe outcome is brand-new recommendations relating to short bursts of activity during the day. These three- to five-minute bursts have been studied and shown to provide real health benefits to real people under real-world circumstances.\r\n\r\nInstead of taking coffee breaks at work, people are beginning to take activity breaks. Three to five minutes of climbing office building stairs or brisk walking outside the building or a quick series of calisthenics are all it takes. Six to ten such breaks fulfills the daily requirement of 30 minutes of exercise. No separately scheduled exercise time is necessary. You\'re already at work, you\'re already taking breaks. So the breaks become exercise breaks. And you get your exercise done. And you feel great for the entire day, due to bursts of endorphins occurring throughout the day.\r\n\r\nThese bursts of activity are also ideal for people working at home, as well as for school children. Studies in schools are showing increased attention spans and increased learning as a result of short bursts of intense physical activity.\r\n\r\nEveryone can do this; everyone can have a workable system for getting the exercise they need.\r\n\r\n<strong>Lean Muscle Mass</strong>\r\n\r\nWe often hear that building \"lean muscle mass\" is one of the key benefits of strenuous exercise. The human body adapts to environmental stresses, and building lean muscle mass is an important adaptation. Lean muscle mass is a metabolic furnace - muscle cells are high-energy cells that actually burn calories when your body is at rest.\r\n\r\nYour internal thermostat is turned up owing to your increased amount of lean muscle mass, and so you burn fat to fulfill these increased energy needs.\r\n\r\nLean muscle mass is not only energy-efficient, but it is also much more shapely than the pounds of fat it replaces. Lean muscle mass creates long lines, outlines, and bulk along your arms, torso, and legs. The result is a supple, shapely body, filled with energy and purpose.\r\n\r\n1Pate, Russell R., James F. Sallis, and Keshia M. Pollack Porter. \"Surveillance of Physical Activity: Actions Needed to Support New Federal Guidelines.\" (2020).\r\n\r\n2Much, How, and How Often is it Recommended. \"10 Neurological Benefits of Exercise.\" <i>Image</i> 10 (2020): 08-01.\r\n\r\n3Vallance JK, et al: Maintenance of physical activity in breast cancer survivors after a randomized trial. Med Sci Sports Exerc 40(1):173-180, 2008.\r\n\r\n4Heckman GE, McKelvie RS: Cardiovascular aging and exercise in healthy older adults. Clin J Sport Med 18(6):479-485, 2008','Exercise Provides Many Health Benerits','','inherit','closed','closed','','1518-revision-v1','','','2020-11-04 01:32:02','2020-11-04 01:32:02','',1518,'https://www.drfields.com/uncategorized/1518-revision-v1/',0,'revision','',0),(4278,9,'2020-11-04 01:32:09','2020-11-04 01:32:09','<img class=\"alignleft size-full wp-image-1183\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Exercise-Energy.jpg\" alt=\"Exercise Energy\" width=\"200\" height=\"285\" />We all know that 30 minutes per day of strenuous exercise will provide many health benefits.  And studies show that higher levels of physical activity are linked to a remarkable number of health benefits.1 Recent <a href=\"https://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2019.305443\">Federal guidelines</a> from the Department of Health and Human Services1 have even made this official.2\r\n\r\nExercise also improves cognitive functioning, mental health, and memory; plus, it hinders the development of certain neurological conditions.1\r\n\r\nThe real question for most of us is how to find the time to exercise regularly and consistently. All we have is 24 hours each day to get done all the things we need to get done. Exercising often takes a back seat to work, shopping, cooking, cleaning, getting the kids ready for school, and ready for bed. And all of the other million-and-one little details that demand our attention every day.\r\n\r\nMost of us have the motivation to exercise. we want to do it and we know it\'s important and good for us. But when to fit it in? A few hardy souls bite the bullet and get up at 5:00 AM - making more time in the day by getting less sleep. Others exercise at the end of a long day, but sometimes that\'s stressful and counterproductive. However they do it, many people make real efforts to exercise a few times each week.\r\n\r\nMost likely - over time - our good intentions get stymied by our daily concerns. Deadlines and scheduling take precedence and the most easy-to-jettison item on our to-do list - exercise - gets lost in the process. And sooner rather than later we\'re back to not exercising at all. Public health experts and policymakers have been struggling, too, with this apparent no-win situation.\r\n\r\nThe outcome is brand-new recommendations relating to short bursts of activity during the day. These three- to five-minute bursts have been studied and shown to provide real health benefits to real people under real-world circumstances.\r\n\r\nInstead of taking coffee breaks at work, people are beginning to take activity breaks. Three to five minutes of climbing office building stairs or brisk walking outside the building or a quick series of calisthenics are all it takes. Six to ten such breaks fulfills the daily requirement of 30 minutes of exercise. No separately scheduled exercise time is necessary. You\'re already at work, you\'re already taking breaks. So the breaks become exercise breaks. And you get your exercise done. And you feel great for the entire day, due to bursts of endorphins occurring throughout the day.\r\n\r\nThese bursts of activity are also ideal for people working at home, as well as for school children. Studies in schools are showing increased attention spans and increased learning as a result of short bursts of intense physical activity.\r\n\r\nEveryone can do this; everyone can have a workable system for getting the exercise they need.\r\n\r\n<strong>Lean Muscle Mass</strong>\r\n\r\nWe often hear that building \"lean muscle mass\" is one of the key benefits of strenuous exercise. The human body adapts to environmental stresses, and building lean muscle mass is an important adaptation. Lean muscle mass is a metabolic furnace - muscle cells are high-energy cells that actually burn calories when your body is at rest.\r\n\r\nYour internal thermostat is turned up owing to your increased amount of lean muscle mass, and so you burn fat to fulfill these increased energy needs.\r\n\r\nLean muscle mass is not only energy-efficient, but it is also much more shapely than the pounds of fat it replaces. Lean muscle mass creates long lines, outlines, and bulk along your arms, torso, and legs. The result is a supple, shapely body, filled with energy and purpose.\r\n\r\n1Pate, Russell R., James F. Sallis, and Keshia M. Pollack Porter. \"Surveillance of Physical Activity: Actions Needed to Support New Federal Guidelines.\" (2020).\r\n\r\n2Much, How, and How Often is it Recommended. \"10 Neurological Benefits of Exercise.\" <i>Image</i> 10 (2020): 08-01.\r\n\r\n3Vallance JK, et al: Maintenance of physical activity in breast cancer survivors after a randomized trial. Med Sci Sports Exerc 40(1):173-180, 2008.\r\n\r\n4Heckman GE, McKelvie RS: Cardiovascular aging and exercise in healthy older adults. Clin J Sport Med 18(6):479-485, 2008','Exercise Provides Many Health Benefits','','inherit','closed','closed','','1518-revision-v1','','','2020-11-04 01:32:09','2020-11-04 01:32:09','',1518,'https://www.drfields.com/uncategorized/1518-revision-v1/',0,'revision','',0),(4279,9,'2020-11-04 02:01:35','2020-11-04 02:01:35','&nbsp;\r\n\r\n<img class=\"alignleft size-full wp-image-1183\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Exercise-Energy.jpg\" alt=\"Exercise Energy\" width=\"200\" height=\"285\" />We all know that 30 minutes per day of strenuous exercise provides health benefits.  And studies show that higher levels of physical activity are linked to a remarkable number of health benefits. Recent <a href=\"https://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2019.305443\">Federal guidelines</a> from the Department of Health and Human Services1 have even made this official.1\r\n\r\nExercise also improves cognitive functioning, mental health, and memory; plus, it hinders the development of certain neurological conditions.2\r\n\r\nThe real question for most of us is how to find the time to exercise regularly and consistently. All we have is 24 hours each day to get done all the things we need to get done. Exercising often takes a back seat to work, shopping, cooking, cleaning, getting the kids ready for school, and ready for bed. And all of the other million-and-one little details that demand our attention every day.\r\n<h3>Finding the Time to Exercise</h3>\r\nMost of us have the motivation to exercise. We know exercise provides health benefits. Therefore, we want to do it and understand it\'s good for us. But when can we fit it in? A few hardy souls bite the bullet and get up at 5:00 AM - making more time in the day by getting less sleep. Others exercise at the end of a long day. But sometimes that\'s stressful and counterproductive. However they do it, many people make real efforts to exercise a few times each week.\r\n\r\nMost likely, over time,  our good intentions get stymied by our daily concerns. Moreover, deadlines and scheduling take precedence. And the most easy-to-jettison item on our to-do list, exercise, gets lost in the process. And, sooner rather than later, we\'re back to not exercising at all. Public health experts and policymakers have been struggling, too, with this apparent no-win situation.\r\n<h3>Short Bursts of Exercise Provides Health Benefits Too</h3>\r\nThe outcome is brand-new recommendations relating to short bursts of activity during the day. These three- to five-minute bursts have been studied and shown to provide real health benefits to real people under real-world circumstances.3\r\n\r\nInstead of taking coffee breaks at work, people are beginning to take activity breaks. And three to five minutes of climbing office building stairs or brisk walking outside the building or a quick series of calisthenics are all it takes. Six to ten such breaks fulfills the daily requirement of 30 minutes of exercise. Above all, no separately scheduled exercise time is necessary.\r\n\r\nYou\'re already at work, you\'re already taking breaks. So, the breaks become exercise breaks. And you get your exercise done. And you feel great for the entire day, due to bursts of endorphins occurring throughout the day.\r\n\r\nThese bursts of activity are also ideal for people working at home. Plus, they work for school children too. Studies in schools are showing increased attention spans and increased learning as a result of short bursts of intense physical activity.\r\n\r\nEveryone can do this. And everyone can have a workable system for getting the exercise they need.\r\n<h3><strong>Lean Muscle Mass</strong></h3>\r\nWe often hear that building \"lean muscle mass\" is one of the key benefits of strenuous exercise. The human body adapts to environmental stresses. And building lean muscle mass is an important adaptation. Moreover, lean muscle mass is a metabolic furnace. Muscle cells are high-energy cells that actually burn calories when your body is at rest.\r\n\r\nYour internal thermostat is turned up owing to your increased amount of lean muscle mass. And so you burn fat to fulfill these increased energy needs.\r\n\r\nLean muscle mass is not only energy-efficient, but it is also much more shapely than the pounds of fat it replaces. Lean muscle mass creates long lines, outlines, and bulk along your arms, torso, and legs. The result is a supple, shapely body, filled with energy and purpose.\r\n\r\n1Pate, Russell R., James F. Sallis, and Keshia M. Pollack Porter. \"Surveillance of Physical Activity: Actions Needed to Support New Federal Guidelines.\" (2020).\r\n\r\n2Much, How, and How Often is it Recommended. \"10 Neurological Benefits of Exercise.\" <i>Image</i> 10 (2020): 08-01.\r\n\r\n3Stamatakis, Emmanuel, et al. \"Untapping the Health Enhancing Potential of Vigorous Intermittent Lifestyle Physical Activity (VILPA): Rationale, Scoping Review, and a 4-Pillar Research Framework.\" <i>Sports Medicine</i> (2020): 1-10.\r\n\r\n3Vallance JK, et al: Maintenance of physical activity in breast cancer survivors after a randomized trial. Med Sci Sports Exerc 40(1):173-180, 2008.\r\n\r\n4Heckman GE, McKelvie RS: Cardiovascular aging and exercise in healthy older adults. Clin J Sport Med 18(6):479-485, 2008','Exercise Provides Health Benefits For All Ages','','inherit','closed','closed','','1518-revision-v1','','','2020-11-04 02:01:35','2020-11-04 02:01:35','',1518,'https://www.drfields.com/uncategorized/1518-revision-v1/',0,'revision','',0),(4280,9,'2020-11-04 02:02:28','2020-11-04 02:02:28','&nbsp;\r\n\r\n[caption id=\"attachment_1183\" align=\"alignleft\" width=\"200\"]<img class=\"wp-image-1183 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Exercise-Energy.jpg\" alt=\"Exercise for Health\" width=\"200\" height=\"285\" /> Exercise Provides Health Benefits[/caption]\r\n\r\nWe all know that 30 minutes per day of strenuous exercise provides health benefits.  And studies show that higher levels of physical activity are linked to a remarkable number of health benefits. Recent <a href=\"https://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2019.305443\">Federal guidelines</a> from the Department of Health and Human Services1 have even made this official.1\r\n\r\nExercise also improves cognitive functioning, mental health, and memory; plus, it hinders the development of certain neurological conditions.2\r\n\r\nThe real question for most of us is how to find the time to exercise regularly and consistently. All we have is 24 hours each day to get done all the things we need to get done. Exercising often takes a back seat to work, shopping, cooking, cleaning, getting the kids ready for school, and ready for bed. And all of the other million-and-one little details that demand our attention every day.\r\n<h3>Finding the Time to Exercise</h3>\r\nMost of us have the motivation to exercise. We know exercise provides health benefits. Therefore, we want to do it and understand it\'s good for us. But when can we fit it in? A few hardy souls bite the bullet and get up at 5:00 AM - making more time in the day by getting less sleep. Others exercise at the end of a long day. But sometimes that\'s stressful and counterproductive. However they do it, many people make real efforts to exercise a few times each week.\r\n\r\nMost likely, over time,  our good intentions get stymied by our daily concerns. Moreover, deadlines and scheduling take precedence. And the most easy-to-jettison item on our to-do list, exercise, gets lost in the process. And, sooner rather than later, we\'re back to not exercising at all. Public health experts and policymakers have been struggling, too, with this apparent no-win situation.\r\n<h3>Short Bursts of Exercise Provides Health Benefits Too</h3>\r\nThe outcome is brand-new recommendations relating to short bursts of activity during the day. These three- to five-minute bursts have been studied and shown to provide real health benefits to real people under real-world circumstances.3\r\n\r\nInstead of taking coffee breaks at work, people are beginning to take activity breaks. And three to five minutes of climbing office building stairs or brisk walking outside the building or a quick series of calisthenics are all it takes. Six to ten such breaks fulfills the daily requirement of 30 minutes of exercise. Above all, no separately scheduled exercise time is necessary.\r\n\r\nYou\'re already at work, you\'re already taking breaks. So, the breaks become exercise breaks. And you get your exercise done. And you feel great for the entire day, due to bursts of endorphins occurring throughout the day.\r\n\r\nThese bursts of activity are also ideal for people working at home. Plus, they work for school children too. Studies in schools are showing increased attention spans and increased learning as a result of short bursts of intense physical activity.\r\n\r\nEveryone can do this. And everyone can have a workable system for getting the exercise they need.\r\n<h3><strong>Lean Muscle Mass</strong></h3>\r\nWe often hear that building \"lean muscle mass\" is one of the key benefits of strenuous exercise. The human body adapts to environmental stresses. And building lean muscle mass is an important adaptation. Moreover, lean muscle mass is a metabolic furnace. Muscle cells are high-energy cells that actually burn calories when your body is at rest.\r\n\r\nYour internal thermostat is turned up owing to your increased amount of lean muscle mass. And so you burn fat to fulfill these increased energy needs.\r\n\r\nLean muscle mass is not only energy-efficient, but it is also much more shapely than the pounds of fat it replaces. Lean muscle mass creates long lines, outlines, and bulk along your arms, torso, and legs. The result is a supple, shapely body, filled with energy and purpose.\r\n\r\n1Pate, Russell R., James F. Sallis, and Keshia M. Pollack Porter. \"Surveillance of Physical Activity: Actions Needed to Support New Federal Guidelines.\" (2020).\r\n\r\n2Much, How, and How Often is it Recommended. \"10 Neurological Benefits of Exercise.\" <i>Image</i> 10 (2020): 08-01.\r\n\r\n3Stamatakis, Emmanuel, et al. \"Untapping the Health Enhancing Potential of Vigorous Intermittent Lifestyle Physical Activity (VILPA): Rationale, Scoping Review, and a 4-Pillar Research Framework.\" <i>Sports Medicine</i> (2020): 1-10.\r\n\r\n3Vallance JK, et al: Maintenance of physical activity in breast cancer survivors after a randomized trial. Med Sci Sports Exerc 40(1):173-180, 2008.\r\n\r\n4Heckman GE, McKelvie RS: Cardiovascular aging and exercise in healthy older adults. Clin J Sport Med 18(6):479-485, 2008','Exercise Provides Health Benefits For All Ages','','inherit','closed','closed','','1518-revision-v1','','','2020-11-04 02:02:28','2020-11-04 02:02:28','',1518,'https://www.drfields.com/uncategorized/1518-revision-v1/',0,'revision','',0),(4281,9,'2020-11-04 23:43:28','2020-11-04 23:43:28','<img class=\"alignleft size-full wp-image-1178\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Vitamin-D.jpg\" alt=\"Vitamin D\" width=\"200\" height=\"300\" />New research around vitamin D shows that those deficient in the vitamin may have more far-reaching implications than just bone health. A deficiency may even be implicated in a COVID‐19 prognosis.1 And the importance of healthy levels continues to expand.\n\nDeficiency of this vitamin has been widely known to cause rickets in children and osteomalacia in adults. Contraversely, those women with the highest intake have been able to reduce their fracture risk. Overall, supplementation has been shown to improve bone health in older subjects.2\n<h3>Vitamin D: More Than Bone Health Is Involved</h3>\nBut the effects of this vitamin are so much broader than bone health alone. According to researchers, vitamin D may reduce or eliminate <a href=\"/chronic-pain-overview/\">chronic pain</a> due to arthritis, fibromyalgia, chronic fatigue, headaches, and other types of pain.2\n\nMoreover, the vitamin can help with hypertension, psoriasis, several autoimmune diseases (including multiple sclerosis and rheumatoid arthritis), and reduced fractured bones incidence.\n\nResearch has also indicated that deficiency is linked to colon cancer and, more recently, to breast cancer. And researchers have found that individuals who had higher levels had a 50 percent lower risk of breast cancer than those with low levels. A deficiency has also been associated with a higher risk of a heart attack in men. And a recent study in the journal <em>JAMA Network Open</em> reported about its affect on our newest pandemic stating, \"In this single-center, retrospective cohort study, likely deficient vitamin D status was associated with increased COVID-19 risk.\"3\n\nMore than half of the people in the United States, and the rest of the world, are deficient in vitamin D. \"In order to maintain levels associated with the lowest risk of several types of cancers, cardiovascular diseases, autoimmune diseases, and all-cause mortality with minimal sunlight exposure, a person would require ingestion of 4000–6000 IUs of vitamin D daily, which would maintain serum vitamin D levels in the range of 20–40 ng/mL (50–100 nmol/L) and serum 25(OH)D levels in the range of 40–60 ng/mL (50–100 nmol/L).\"4\n\nThere are basically two types of Vitamin D. The natural one is D3 (cholecalciferol), which is similar to what your body makes when exposed to sunshine. The synthetic one (also made by plants) is vitamin D2 (ergocalciferol). In your body, both need to be converted to a more active form. Here is the catch: Vitamin D3 is converted 500 percent faster than vitamin D2.\nTherefore, Vitamin D3 is the preferred supplement.\n<h3>The Sunshine Vitamin</h3>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\nVitamin D is best known as the sunshine vitamin and its best source is from sunrays. It is a fat-soluble vitamin that acts like a hormone in your body to help you absorb calcium. Your body makes it when your skin is exposed to sunlight, although you can also get a little  from fish and some fortified foods. However,, even with proper sun exposure and eating the right foods, one may become deficient in this important vitamin.\n\n</div>\n</div>\n</div>\nWhat level is optimal? Authors in the medical journal <a href=\"https://www.mdpi.com/2072-6643/12/7/2097/htm?fbclid=IwAR0W1FofI_w0VV11-tH0LwTiljf-h9lLvjI3vx2Wz-9mTlAJDc25on5IJ5w\"><em>Nutrients</em></a> report, \"Although it is still debatable what level of serum 25-hydroxyvitamin D is optimal, it is advisable to increase vitamin D intake and have sensible sunlight exposure to maintain serum 25-hydroxyvitamin D at least 30 ng/mL (75 nmol/L), and preferably at 40–60 ng/mL (100–150 nmol/L) to achieve the optimal overall health benefits of vitamin D. If tested, the optimal value that you’re looking for is 115-128 nmol/L (50-55 ng/ml).\"4\n\nKeeping your level in this range, and even erring toward the higher numbers in this range, is going to give you the most protective benefit.\n\nVitamin D supplements are generally safe to take. But be sure you speak with your healthcare provider first.\n\n1Munshi, Ruhul, et al. \"Vitamin D insufficiency as a potential culprit in critical COVID‐19 patients.\" <i>Journal of medical virology</i> (2020).\n\n2Martens, Pieter-Jan, Conny Gysemans, and Annemieke Verstuyf. \"Vitamin D’s Effect on Immune Function.\" <i>Nutrients</i>12.5 (2020): 1248.\n\n3Meltzer, David O., et al. \"Association of vitamin D status and other clinical characteristics with COVID-19 test results.\" <i>JAMA network open</i> 3.9 (2020): e2019722-e2019722.\n\n4Charoenngam, Nipith, and Michael F. Holick. \"Immunologic effects of vitamin D on human health and disease.\" <i>Nutrients</i>12.7 (2020): 2097.','Vitamin D: It’s Not Just For Bones Anymore','','inherit','closed','closed','','1514-autosave-v1','','','2020-11-04 23:43:28','2020-11-04 23:43:28','',1514,'https://www.drfields.com/uncategorized/1514-autosave-v1/',0,'revision','',0),(4282,8,'2020-11-04 19:21:06','2020-11-04 19:21:06','','iwp_log_5fa2ff229cd95','','publish','closed','closed','','iwp_log_5fa2ff229cd95','','','2020-11-04 19:21:06','2020-11-04 19:21:06','',0,'https://www.drfields.com/iwp_log/iwp_log_5fa2ff229cd95/',0,'iwp_log','',0),(4283,8,'2020-11-04 19:21:31','2020-11-04 19:21:31','','iwp_log_5fa2ff3b9ef32','','publish','closed','closed','','iwp_log_5fa2ff3b9ef32','','','2020-11-04 19:21:31','2020-11-04 19:21:31','',0,'https://www.drfields.com/iwp_log/iwp_log_5fa2ff3b9ef32/',0,'iwp_log','',0),(4284,9,'2020-11-04 23:30:12','2020-11-04 23:30:12','<img class=\"alignleft size-full wp-image-1178\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Vitamin-D.jpg\" alt=\"Vitamin D\" width=\"200\" height=\"300\" />New research around vitamin D shows that those deficient in the vitamin may have more far-reaching implications than just bone health. A deficiency in vitamin D levels may even be implicated in a COVID‐19 prognosis.1 And the importance of healthy levels continues to expand.\r\n\r\nA deficiency in Vitamin D has been widely known to cause rickets in children and osteomalacia in adults. Contraversely, those women with the highest vitamin D intake have been able to reduce their fracture risk. Similarly, it is definitely true that Vitamin D supplementation has been shown to improve bone health in older subjects.2\r\n<h3>Vitamin D Involves More Than Bone Health</h3>\r\nBut the effects of this vitamin are so much broader than bone health alone. According to researchers, vitamin D may reduce or eliminate <a href=\"/chronic-pain-overview/\">chronic pain</a> due to arthritis, fibromyalgia, chronic fatigue, headaches, and other types of pain.\r\n\r\nMoreover, the vitamin can help with hypertension, psoriasis, several autoimmune diseases (including multiple sclerosis and rheumatoid arthritis), and reduced fractured bones incidence.\r\n\r\nResearch has also indicated that deficiency is linked to colon cancer and, more recently, to breast cancer. And researchers have found that individuals who had higher levels had a 50 percent lower risk of breast cancer than those with low levels. A deficiency has also been associated with a higher risk of a heart attack in men, according to a report in the June 9, 2008 issue of Archives of Internal Medicine. And a recent study in the journal <em>JAMA Network Open</em> reported, \"In this single-center, retrospective cohort study, likely deficient vitamin D status was associated with increased COVID-19 risk.\"3\r\n\r\nResearchers also have determined that more than half of the people in the United States, and the rest of the world, are deficient in vitamin D. They also believe the currently recommended daily adequate intake of the supplement– up to 600 IU per day – is outdated and too low. According to the study, most children and adults need at least 1000 IU per day, and persons with chronic musculoskeletal pain would benefit from 2000 IU or more per day of supplemental vitamin D.\r\n\r\nThere are basically two types of Vitamin D. The natural one is D3 (cholecalciferol), which is similar to what your body makes when exposed to sunshine. The synthetic one (also made by plants) is vitamin D2 (ergocalciferol). In your body, both need to be converted to a more active form. Here is the catch: Vitamin D3 is converted 500 percent faster than vitamin D2.\r\nTherefore, Vitamin D3 is the preferred supplement.\r\n<h3>The Sunshine Vitamin</h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nVitamin D is best known as the sunshine vitamin and its best source is from sunrays. It is a fat-soluble vitamin that acts like a hormone in your body to help you absorb calcium. Your body makes vitamin D when your skin is exposed to sunlight, although you can also get a little  from fish and some fortified foods. However,, even with proper sun exposure and eating the right foods, one may become deficient in this important vitamin.\r\n\r\n</div>\r\n</div>\r\n</div>\r\nWhat level is optimal? Authors in the medical journal <a href=\"https://www.mdpi.com/2072-6643/12/7/2097/htm?fbclid=IwAR0W1FofI_w0VV11-tH0LwTiljf-h9lLvjI3vx2Wz-9mTlAJDc25on5IJ5w\"><em>Nutrients</em></a> report, \"Although it is still debatable what level of serum 25-hydroxyvitamin D is optimal, it is advisable to increase vitamin D intake and have sensible sunlight exposure to maintain serum 25-hydroxyvitamin D at least 30 ng/mL (75 nmol/L), and preferably at 40–60 ng/mL (100–150 nmol/L) to achieve the optimal overall health benefits of vitamin D. If tested, the optimal value that you’re looking for is 115-128 nmol/L (50-55 ng/ml).\"4\r\n\r\nKeeping your level in this range, and even erring toward the higher numbers in this range, is going to give you the most protective benefit.\r\n\r\nVitamin D supplements are generally safe to take. But be sure you speak with your healthcare provider first.\r\n\r\n1Munshi, Ruhul, et al. \"Vitamin D insufficiency as a potential culprit in critical COVID‐19 patients.\" <i>Journal of medical virology</i> (2020).\r\n\r\n2Martens, Pieter-Jan, Conny Gysemans, and Annemieke Verstuyf. \"Vitamin D’s Effect on Immune Function.\" <i>Nutrients</i>12.5 (2020): 1248.\r\n\r\n3Meltzer, David O., et al. \"Association of vitamin D status and other clinical characteristics with COVID-19 test results.\" <i>JAMA network open</i> 3.9 (2020): e2019722-e2019722.\r\n\r\n4Charoenngam, Nipith, and Michael F. Holick. \"Immunologic effects of vitamin D on human health and disease.\" <i>Nutrients</i>12.7 (2020): 2097.','Vitamin D: It’s Not Just For Bones Anymore','','inherit','closed','closed','','1514-revision-v1','','','2020-11-04 23:30:12','2020-11-04 23:30:12','',1514,'https://www.drfields.com/uncategorized/1514-revision-v1/',0,'revision','',0),(4285,9,'2020-11-04 23:44:12','2020-11-04 23:44:12','<img class=\"alignleft size-full wp-image-1178\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Vitamin-D.jpg\" alt=\"Vitamin D\" width=\"200\" height=\"300\" />New research around vitamin D shows that those deficient in the vitamin may have more far-reaching implications than just bone health. A deficiency may even be implicated in a COVID‐19 prognosis.1 And the importance of healthy levels continues to expand.\r\n\r\nDeficiency of this vitamin has been widely known to cause rickets in children and osteomalacia in adults. Contraversely, those women with the highest intake have been able to reduce their fracture risk. Overall, supplementation has been shown to improve bone health in older subjects.2\r\n<h3>Vitamin D: More Than Bone Health Is Involved</h3>\r\nBut the effects of this vitamin are so much broader than bone health alone. According to researchers, vitamin D may reduce or eliminate <a href=\"/chronic-pain-overview/\">chronic pain</a> due to arthritis, fibromyalgia, chronic fatigue, headaches, and other types of pain.2\r\n\r\nMoreover, the vitamin can help with hypertension, psoriasis, several autoimmune diseases (including multiple sclerosis and rheumatoid arthritis), and reduced fractured bones incidence.\r\n\r\nResearch has also indicated that deficiency is linked to colon cancer and, more recently, to breast cancer. And researchers have found that individuals who had higher levels had a 50 percent lower risk of breast cancer than those with low levels. A deficiency has also been associated with a higher risk of a heart attack in men. And a recent study in the journal <em>JAMA Network Open</em> reported about its affect on our newest pandemic stating, \"In this single-center, retrospective cohort study, likely deficient vitamin D status was associated with increased COVID-19 risk.\"3\r\n<h3>Maintaining Adequate Levels</h3>\r\nMore than half of the people in the United States, and the rest of the world, are deficient in vitamin D. \"In order to maintain levels associated with the lowest risk of several types of cancers, cardiovascular diseases, autoimmune diseases, and all-cause mortality with minimal sunlight exposure, a person would require ingestion of 4000–6000 IUs of vitamin D daily, which would maintain serum vitamin D levels in the range of 20–40 ng/mL (50–100 nmol/L) and serum 25(OH)D levels in the range of 40–60 ng/mL (50–100 nmol/L).\"4\r\n\r\nThere are basically two types of Vitamin D. The natural one is D3 (cholecalciferol), which is similar to what your body makes when exposed to sunshine. The synthetic one (also made by plants) is vitamin D2 (ergocalciferol). In your body, both need to be converted to a more active form. Here is the catch: Vitamin D3 is converted 500 percent faster than vitamin D2.\r\nTherefore, Vitamin D3 is the preferred supplement.\r\n<h3>The Sunshine Vitamin</h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nVitamin D is best known as the sunshine vitamin and its best source is from sunrays. It is a fat-soluble vitamin that acts like a hormone in your body to help you absorb calcium. Your body makes it when your skin is exposed to sunlight, although you can also get a little  from fish and some fortified foods. However,, even with proper sun exposure and eating the right foods, one may become deficient in this important vitamin.\r\n\r\n</div>\r\n</div>\r\n</div>\r\nWhat level is optimal? Authors in the medical journal <a href=\"https://www.mdpi.com/2072-6643/12/7/2097/htm?fbclid=IwAR0W1FofI_w0VV11-tH0LwTiljf-h9lLvjI3vx2Wz-9mTlAJDc25on5IJ5w\"><em>Nutrients</em></a> report, \"Although it is still debatable what level of serum 25-hydroxyvitamin D is optimal, it is advisable to increase vitamin D intake and have sensible sunlight exposure to maintain serum 25-hydroxyvitamin D at least 30 ng/mL (75 nmol/L), and preferably at 40–60 ng/mL (100–150 nmol/L) to achieve the optimal overall health benefits of vitamin D. If tested, the optimal value that you’re looking for is 115-128 nmol/L (50-55 ng/ml).\"4\r\n\r\nKeeping your level in this range, and even erring toward the higher numbers in this range, is going to give you the most protective benefit.\r\n\r\nVitamin D supplements are generally safe to take. But be sure you speak with your healthcare provider first.\r\n\r\n1Munshi, Ruhul, et al. \"Vitamin D insufficiency as a potential culprit in critical COVID‐19 patients.\" <i>Journal of medical virology</i> (2020).\r\n\r\n2Martens, Pieter-Jan, Conny Gysemans, and Annemieke Verstuyf. \"Vitamin D’s Effect on Immune Function.\" <i>Nutrients</i>12.5 (2020): 1248.\r\n\r\n3Meltzer, David O., et al. \"Association of vitamin D status and other clinical characteristics with COVID-19 test results.\" <i>JAMA network open</i> 3.9 (2020): e2019722-e2019722.\r\n\r\n4Charoenngam, Nipith, and Michael F. Holick. \"Immunologic effects of vitamin D on human health and disease.\" <i>Nutrients</i>12.7 (2020): 2097.','Vitamin D: It’s Not Just For Bones Anymore','','inherit','closed','closed','','1514-revision-v1','','','2020-11-04 23:44:12','2020-11-04 23:44:12','',1514,'https://www.drfields.com/uncategorized/1514-revision-v1/',0,'revision','',0),(4286,9,'2020-11-07 03:36:30','2020-11-07 03:36:30','<h3><img class=\"alignleft size-full wp-image-1174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Napping.jpg\" alt=\"Napping\" width=\"200\" height=\"300\" />Workplace Napping May Boost Productivity</h3>\nDaytime nappers may be in luck. New research shows taking a midday nap, and workplace napping can actually improve productivity.\n<div class=\"page\" title=\"Page 7\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\nSleep deficiency is a pretty prevalent problem. It results from short sleep duration, poorly timed sleep, or poor quality of sleep. \"The Institute of Medicine estimates that 50 to 70 million American adults have a chronic sleep disorder that hinders daily function and contributes to poor health.\"1\n<h3>Sacrificing Sleep Is Part of American Culture</h3>\nAmerican culture is all about productivity. And that is true even if sleep needs to be sacrificed. Why sleep a lot when you can get more done without it, right? But that\'s not what studies show. Sleep boosts our productivity because it helps our memory. \"Not only does a daytime nap appear to facilitate the formation of direct associative memories, but we now conclude that napping also facilitates the formation of relational memories, such that associations between items in memory acquired before sleep are strengthened and reorganized by sleep to be flexibly retrieved at a later time.\"2\n\nWe all know that young children need to nap. And some adults maintain that habit. But most don\'t. Work and life demand way too much time and make naps difficult to fit in. But other countries think differently. For instance, Spain and Italy incorporate mid-afternoon <em>siestas</em> and <em>riposos</em> into the workday schedules to allow for napping. Most Americans would balk at that idea!\n<h3 class=\"chapter-para\">But what is the cost of working in a state of fatigue?</h3>\n<p class=\"chapter-para\">\"According to a fatigue cost estimator from the National Safety Council and Brigham and Women’s Sleep Matters Initiative, the health-related cost of lost productivity is $136 billion a year.\"3 The result of sleep deficiency is reduced productivity in the workplace. Furthermore, it results in increased absenteeism, more workplace injuries, higher health care costs, and higher rates of car accidents during commutes. What does that mean to the employer? Likely higher costs in the long-run. Therefore, a short workplace nap to increase productivity and actually reduce costs in the long-run may be the smart way to go.</p>\n\n<h3 class=\"chapter-para\">Does Workplace Napping Only Help the Sleep Deprived?</h3>\n<p class=\"chapter-para\">Naps do not just benefit those who are sleep deprived. That\'s right! Even individuals who have rested sufficiently reap the rewards of improved alertness, performance, and productivity. Naps relieve stress too. And reduced stress results in added health benefits. Why just push through fatigue when you could take a nap instead?</p>\n\n<h3>It\'s Really Doesn\'t Make You Tough To Be Sleep Deprived.</h3>\nAlthough many may be proud of \"having gotten only a few hours of sleep,\" it\'s really not that good for you. The habit of getting the recommended 7–9 hours of sleep per night is really your best bet. Plus, companies are integrating workplace naps as part of a change in workplace culture. In fact, some of the world’s largest companies are doing it. Google, Uber, Nike, Cisco, Zappos, Huffington Post, PricewaterhouseCoopers, Proctor &amp; Gamble, and Ben &amp; Jerry’s are some of them. Moreover, they are also providing the accommodations necessary to take better naps, like secluded rooms equipped with nap pods or beds.3\n<h3>Spread the Good News of the Benefits of Napping</h3>\n<p class=\"chapter-para\">Since workplace napping goes against the grain for many Americans, the challenge is to spread the news regarding how beneficial it really is.  Napping combats many physical, mental, and financial consequences of fatigue. Once Americans understand the health benefits, they will be more responsive to workplace napping as part of the scheduled workweek. Give them evidence, and they will be more prone to accept it.  \"Building and disseminating this evidence will push us closer to a society that values napping and works to remove the stigma of taking that mid-day snooze.\"3</p>\n\n</div>\n</div>\n</div>\nIf workplace napping is not a part of your work environment, it may be coming soon! And you can try different things to make it a part of your life now. For example, napping may be as easy as closing your eyes for 5-15 minutes. You can lie down if possible. Or sit in your car. But also just sitting in your chair or leaning over a desk will work too. Be creative, and you can find a way.\n\nRedeker, Nancy S., et al. \"Workplace interventions to promote sleep health and an alert, healthy workforce.\" <i>Journal of Clinical Sleep Medicine</i> 15.4 (2019): 649-657.\n\n2Lau, H., M. A. Tucker, and W. Fishbein. \"Daytime napping: Effects on human direct associative and relational memory.\" <i>Neurobiology of learning and memory</i> 93.4 (2010): 554-560.\n\n3Alger, Sara E., Allison J. Brager, and Vincent F. Capaldi. \"Challenging the stigma of workplace napping.\" <i>Sleep</i> 42.8 (2019): zsz097.\n\n&nbsp;','Workplace Napping Boosts Productivity','','inherit','closed','closed','','1512-autosave-v1','','','2020-11-07 03:36:30','2020-11-07 03:36:30','',1512,'https://www.drfields.com/uncategorized/1512-autosave-v1/',0,'revision','',0),(4287,9,'2020-11-07 03:37:50','2020-11-07 03:37:50','<h3><img class=\"alignleft size-full wp-image-1174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Napping.jpg\" alt=\"Napping\" width=\"200\" height=\"300\" />Workplace Napping May Boost Productivity</h3>\r\nDaytime nappers may be in luck. New research shows taking a midday nap, and workplace napping can actually improve productivity.\r\n<div class=\"page\" title=\"Page 7\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nSleep deficiency is a pretty prevalent problem. It results from short sleep duration, poorly timed sleep, or poor quality of sleep. \"The Institute of Medicine estimates that 50 to 70 million American adults have a chronic sleep disorder that hinders daily function and contributes to poor health.\"1\r\n<h3>Sacrificing Sleep Is Part of American Culture</h3>\r\nAmerican culture is all about productivity. And that is true even if sleep needs to be sacrificed. Why sleep a lot when you can get more done without it, right? But that\'s not what studies show. Sleep boosts our productivity because it helps our memory. \"Not only does a daytime nap appear to facilitate the formation of direct associative memories, but we now conclude that napping also facilitates the formation of relational memories, such that associations between items in memory acquired before sleep are strengthened and reorganized by sleep to be flexibly retrieved at a later time.\"2\r\n\r\nWe all know that young children need to nap. And some adults maintain that habit. But most don\'t. Work and life demand way too much time and make naps difficult to fit in. But other countries think differently. For instance, Spain and Italy incorporate mid-afternoon <em>siestas</em> and <em>riposos</em> into the workday schedules to allow for napping. Most Americans would balk at that idea!\r\n<h3 class=\"chapter-para\">But what is the cost of working in a state of fatigue?</h3>\r\n<p class=\"chapter-para\">\"According to a fatigue cost estimator from the National Safety Council and Brigham and Women’s Sleep Matters Initiative, the health-related cost of lost productivity is $136 billion a year.\"3 The result of sleep deficiency is reduced productivity in the workplace. Furthermore, it results in increased absenteeism, more workplace injuries, higher health care costs, and higher rates of car accidents during commutes. What does that mean to the employer? Likely higher costs in the long-run. Therefore, a short workplace nap to increase productivity and actually reduce costs in the long-run may be the smart way to go.</p>\r\n\r\n<h3 class=\"chapter-para\">Does Workplace Napping Only Help the Sleep Deprived?</h3>\r\n<p class=\"chapter-para\">Naps do not just benefit those who are sleep deprived. That\'s right! Even individuals who have rested sufficiently reap the rewards of improved alertness, performance, and productivity. Naps relieve stress too. And reduced stress results in added health benefits. Why push through fatigue when you could take a nap instead?</p>\r\n\r\n<h3>It\'s Really Doesn\'t Make You Tough To Be Sleep Deprived.</h3>\r\nAlthough many may be proud of \"having gotten only a few hours of sleep,\" it\'s really not that good for you. The habit of getting the recommended 7–9 hours of sleep per night is really your best bet. Plus, companies are integrating workplace naps as part of a change in workplace culture. In fact, some of the world’s largest companies are doing it. Google, Uber, Nike, Cisco, Zappos, Huffington Post, PricewaterhouseCoopers, Proctor &amp; Gamble, and Ben &amp; Jerry’s are some of them. Moreover, they are also providing the accommodations necessary to take better naps, like secluded rooms equipped with nap pods or beds.3\r\n<h3>Spread the Good News of the Benefits of Napping</h3>\r\n<p class=\"chapter-para\">Since workplace napping goes against the grain for many Americans, the challenge is to spread the news regarding how beneficial it really is.  Napping combats many physical, mental, and financial consequences of fatigue. Once Americans understand the health benefits, they will be more responsive to workplace napping as part of the scheduled workweek. Give them evidence, and they will be more prone to accept it.  \"Building and disseminating this evidence will push us closer to a society that values napping and works to remove the stigma of taking that mid-day snooze.\"3</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\nIf workplace napping is not a part of your work environment, it may be coming soon! And you can try different things to make it a part of your life now. For example, napping may be as easy as closing your eyes for 5-15 minutes. You can lie down if possible. Or sit in your car. But also just sitting in your chair or leaning over a desk will work too. Be creative, and you can find a way.\r\n\r\nRedeker, Nancy S., et al. \"Workplace interventions to promote sleep health and an alert, healthy workforce.\" <i>Journal of Clinical Sleep Medicine</i> 15.4 (2019): 649-657.\r\n\r\n2Lau, H., M. A. Tucker, and W. Fishbein. \"Daytime napping: Effects on human direct associative and relational memory.\" <i>Neurobiology of learning and memory</i> 93.4 (2010): 554-560.\r\n\r\n3Alger, Sara E., Allison J. Brager, and Vincent F. Capaldi. \"Challenging the stigma of workplace napping.\" <i>Sleep</i> 42.8 (2019): zsz097.\r\n\r\n&nbsp;','Workplace Napping Boosts Productivity','','inherit','closed','closed','','1512-revision-v1','','','2020-11-07 03:37:50','2020-11-07 03:37:50','',1512,'https://www.drfields.com/uncategorized/1512-revision-v1/',0,'revision','',0),(4288,8,'2020-11-11 18:13:10','2020-11-11 18:13:10','','iwp_log_5fac29b60481a','','publish','closed','closed','','iwp_log_5fac29b60481a','','','2020-11-11 18:13:10','2020-11-11 18:13:10','',0,'https://www.drfields.com/iwp_log/iwp_log_5fac29b60481a/',0,'iwp_log','',0),(4290,8,'2020-11-18 19:15:35','2020-11-18 19:15:35','','iwp_log_5fb572d779890','','publish','closed','closed','','iwp_log_5fb572d779890','','','2020-11-18 19:15:35','2020-11-18 19:15:35','',0,'https://www.drfields.com/iwp_log/iwp_log_5fb572d779890/',0,'iwp_log','',0),(4291,8,'2020-11-18 19:16:11','2020-11-18 19:16:11','','iwp_log_5fb572fbbe56f','','publish','closed','closed','','iwp_log_5fb572fbbe56f','','','2020-11-18 19:16:11','2020-11-18 19:16:11','',0,'https://www.drfields.com/iwp_log/iwp_log_5fb572fbbe56f/',0,'iwp_log','',0),(4293,8,'2020-11-24 00:03:13','2020-11-24 00:03:13','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2020-11-24 00:03:13','2020-11-24 00:03:13','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(4294,8,'2020-11-24 00:10:59','2020-11-24 00:10:59','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2020-11-24 00:10:59','2020-11-24 00:10:59','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(4295,8,'2020-11-24 00:12:33','2020-11-24 00:12:33','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2020-11-24 00:12:33','2020-11-24 00:12:33','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(4297,9,'2020-12-01 02:01:21','2020-12-01 02:01:21','<img class=\"alignleft size-full wp-image-1162\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Supplementation.jpg\" alt=\"Supplementation\" width=\"200\" height=\"300\" />Dietary supplements are used by more than half of adults. Most of these adults use supplements to improve or even to maintain their health. For example, women commonly supplement with calcium to help with bone health. And men may choose supplements that help with heart health or to lower cholesterol.1 Interestingly, people don\'t just take supplements because their doctor recommended them. Rather, over 75% choose supplementation on their own.1\n<h3>But Do Dietary Supplements Improve Health?</h3>\nA study in the medical journal <em>\" </em><i>JAMA Internal Medicine\" </i>says dietary supplements do improve health. \"Use of supplements was related to more favorable health and lifestyle choices.\"1\n\nAnd another study published in the Journal of the American Dietetic Association, reported that a substantial proportion of people 51 years of age or older do not get enough vitamins and minerals from their diets alone and that less than half take supplements.\n\nThe article states that older men and women who take nutritional supplements on a regular basis are more likely to get adequate amounts of several vitamins and minerals than peers who do not take supplements. Analyzing data on 4,384 men and women aged 51 or older showed conclusively that those persons who took supplements were better nourished. 2\n<div class=\"page\" title=\"Page 4\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<h3>Malnourishment Is Still A Problem, Even in Modern Society</h3>\nInterestingly, 1 in 4  adults who live in an urban community (≥55 years of age) was at nutrition risk. 3 That\'s a lot of people who are malnourished, especially considering the availability of so many programs. And when compared to adequately nourished patients, malnourished patients are at increased risk of death and have fewer quality-adjusted years of life.3\n\n</div>\n</div>\n</div>\n<h3>Who Takes Dietary Supplements?</h3>\nMore people are taking supplements now than they did in years past. And most people take more than one type. What are the characteristics of people who take supplements? Dietary supplement users tend to be older, more physically active, non-smokers, educated, and with lower BMI\'s when compared with non-supplement users.1\n<h3>What Do People Take?</h3>\nMultivitamin-minerals (MVMs) were the most common type of dietary supplements reported.1 Omega-3 fatty acids and fish oils were the third most common supplement taken. And these were used most commonly for “heart health or to lower cholesterol.” 1\n\nThe studies indicate that certain dietary supplement ingredients may cause health problems if ingested in excess. For instance, too much iron consumption may be harmful to the heart, while too much zinc may impair immune function and decrease HDL (good cholesterol).\n\nKeep in mind the importance of not only using dietary supplements to ensure proper nutritional intake and health. But also remember to use reputable, high quality products that have been formulated based on scientific and clinical evidence.\n\n&nbsp;\n\n1Bailey, Regan L., et al. \"Why US adults use dietary supplements.\" <i>JAMA internal medicine</i> 173.5 (2013): 355-361.\n\n2Sebastian, Rhonda S., et al. \"Older adults who use vitamin/mineral supplements differ from nonusers in nutrient intake adequacy and dietary attitudes.\" <i>Journal of the American Dietetic Association</i> 107.8 (2007): 1322-1332.\n\n3Sulo, Suela, et al. \"Community-Dwelling Adults at Nutrition Risk: Characteristics in Relation to the Consumption of Oral Nutritional Supplements.\" <i>Journal of Primary Care &amp; Community Health</i> 11 (2020): 2150132720922716.','Do Dietary Supplements Improve Health?','','inherit','closed','closed','','1508-autosave-v1','','','2020-12-01 02:01:21','2020-12-01 02:01:21','',1508,'https://www.drfields.com/uncategorized/1508-autosave-v1/',0,'revision','',0),(4298,9,'2020-12-01 02:02:14','2020-12-01 02:02:14','<img class=\"alignleft size-full wp-image-1162\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Supplementation.jpg\" alt=\"Supplementation\" width=\"200\" height=\"300\" />Dietary supplements are used by more than half of adults. Most of these adults use supplements to improve or even to maintain their health. For example, women commonly supplement with calcium to help with bone health. And men may choose supplements that help with heart health or to lower cholesterol.1 Interestingly, people don\'t just take supplements because their doctor recommended them. Rather, over 75% choose supplementation on their own.1\r\n<h3>But Do Dietary Supplements Improve Health?</h3>\r\nA study in the medical journal <em>\" </em><i>JAMA Internal Medicine\" </i>says dietary supplements do improve health. \"Use of supplements was related to more favorable health and lifestyle choices.\"1\r\n\r\nAnd another study published in the Journal of the American Dietetic Association reported that a substantial proportion of people 51 years of age or older do not get enough vitamins and minerals from their diets alone and less than half take supplements.\r\n\r\nThe article states that older men and women who regularly take nutritional supplements are more likely to get adequate amounts of several vitamins and minerals than peers who do not take supplements. Analyzing data on 4,384 men and women aged 51 or older showed conclusively that those persons who took supplements were better nourished. 2\r\n<div class=\"page\" title=\"Page 4\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n<h3>Malnourishment Is Still A Problem, Even in Modern Society</h3>\r\nInterestingly, 1 in 4  adults who live in an urban community (≥55 years of age) was at nutrition risk. 3 That\'s a lot of people who are malnourished, especially considering the availability of so many programs. Compared to adequately nourished patients, malnourished patients are at increased risk of death and have fewer quality-adjusted years of life.3\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h3>Who Takes Dietary Supplements?</h3>\r\nMore people are taking supplements now than they did in years past. And most people take more than one type. What are the characteristics of people who take supplements? Dietary supplement users tend to be older, more physically active, non-smokers, educated, and with lower BMI compared with non-supplement users.1\r\n<h3>What Do People Take?</h3>\r\nMultivitamin-minerals (MVMs) were the most common type of dietary supplements reported.1 Omega-3 fatty acids and fish oils were the third most common supplement taken. And these were used most commonly for “heart health or to lower cholesterol.” 1\r\n\r\nThe studies indicate that certain dietary supplement ingredients may cause health problems if ingested in excess. For instance, too much iron consumption may be harmful to the heart, while too much zinc may impair immune function and decrease HDL (good cholesterol).\r\n\r\nKeep in mind the importance of not only using dietary supplements to ensure proper nutritional intake and health. But also remember to use reputable, high-quality products formulated based on scientific and clinical evidence.\r\n\r\n&nbsp;\r\n\r\n1Bailey, Regan L., et al. \"Why US adults use dietary supplements.\" <i>JAMA internal medicine</i> 173.5 (2013): 355-361.\r\n\r\n2Sebastian, Rhonda S., et al. \"Older adults who use vitamin/mineral supplements differ from nonusers in nutrient intake adequacy and dietary attitudes.\" <i>Journal of the American Dietetic Association</i> 107.8 (2007): 1322-1332.\r\n\r\n3Sulo, Suela, et al. \"Community-Dwelling Adults at Nutrition Risk: Characteristics in Relation to the Consumption of Oral Nutritional Supplements.\" <i>Journal of Primary Care &amp; Community Health</i> 11 (2020): 2150132720922716.','Do Dietary Supplements Improve Health?','','inherit','closed','closed','','1508-revision-v1','','','2020-12-01 02:02:14','2020-12-01 02:02:14','',1508,'https://www.drfields.com/uncategorized/1508-revision-v1/',0,'revision','',0),(4300,8,'2020-12-02 16:48:10','2020-12-02 16:48:10','','iwp_log_5fc7c54a1014d','','publish','closed','closed','','iwp_log_5fc7c54a1014d','','','2020-12-02 16:48:10','2020-12-02 16:48:10','',0,'https://www.drfields.com/iwp_log/iwp_log_5fc7c54a1014d/',0,'iwp_log','',0),(4301,9,'2020-12-05 02:36:33','2020-12-05 02:36:33','<h1>Body Cleansing Foods</h1>\n<img class=\"alignleft size-full wp-image-1144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Body-Cleansing-Foods.jpg\" alt=\"Body Cleansing Foods\" width=\"200\" height=\"300\" />The body can do a great job at getting rid of toxins. And we can help it by providing the right foods to do that. Body cleansing foods help your body cleanse itself. Simple as that; eat more of these and your body does its own internal “cleaning,\" Food is really your best medicine.\n\nThe liver is a big part of the cleansing process. It is essential for proper body functioning, as it purifies toxins, and produces the necessary digestive substances. Plus, it stores the vitamins and minerals the body needs for distribution throughout the body.1 Eating overly processed and fried foods overstresses the liver.  As do environmental pollutants.\n<h3>Detox with Body Cleansing Foods</h3>\nYou can detox or remove toxic substances from the body when you eat a healthier diet. Here are some nourishing foods that can promote a healthier liver and a healthier body. These foods cleanse the body’s detoxification organs including the liver, intestines, kidneys, and skin, preventing harmful toxic buildup.\n\nHelp ward off the harmful effects of pollution, food additives, second-hand smoke, and other toxins with delicious fruits, vegetables, nuts, oils, and beans (eating organic whenever possible is always the best way to go).\n<h2>List of Body Cleansing Foods</h2>\n<h3><strong>Apples</strong></h3>\nApples are high in pectin, a type of soluble fiber that helps remove toxins from the digestive tract helping to eliminate toxic build up while cleanse the intestines. It also binds to cholesterol and heavy metals in the body.\n<h3><strong>Avocados</strong></h3>\nWe rarely think of avocados as a cleansing food but these nutritional powerhouses and dense super foods lower cholesterol and dilate blood vessels while blocking artery-destroying toxicity. Avocados contain a nutrient called glutathione, which blocks at least thirty different carcinogens and is necessary for the liver to detoxify harmful toxins and synthetic chemicals.\n\n<strong>Beets</strong>\n\nTime to whip up some delicious borscht soup since its main ingredient, beets, contain a unique mixture of natural plant compounds that make them superb blood purifiers and liver cleansers. Beets protect bile ducts in the liver from damage from toxins. They are high in potassium, magnesium, fiber, phosphorous, iron, and vitamins A, B, C, and folic acid. They can also be used as a natural energy source that is better for you than caffeine. Want a great duo to improve liver function? Then combine carrots and beets for a high amount of plant-flavonoids and beta-carotene.\n<h3><strong>Blueberries</strong></h3>\nTruly one of the most powerful healing foods, blueberries contain natural aspirin that helps lessen the tissue-damaging effects of chronic inflammation, while lessening pain. Blueberries also act as antibiotics by blocking bacteria in the urinary tract, thereby helping to prevent infections. They also have antiviral properties and help to block toxins from crossing the blood-brain barrier to gain access to the delicate brain.\n<h3><strong>Cabbage</strong></h3>\nCabbage contains numerous anticancer and antioxidant compounds and helps the liver break down excess hormones. Cabbage also cleanses the digestive tract and neutralizes some of the damaging compounds found in cigarette smoke (and second-hand smoke). It also strengthens the liver’s ability to detoxify. Try eating more kimchi, coleslaw, cabbage soup, and sauerkraut.\n<h3><strong>Celery and Celery Seeds</strong></h3>\nCelery and celery seeds are excellent blood cleansers and contain many different anti-cancer compounds that help detoxify cancer cells from the body. Celery seeds contain over twenty anti-inflammatory substances. It is particularly good for detoxifying substances found in cigarette smoke.\n<h3><strong>Cranberries</strong></h3>\nCleanse your body from harmful bacteria and viruses that may be lingering in your urinary tract with cranberries since they contain antibiotic and antiviral substances.\n<h3>Lemons and Limes</h3>\nTry drinking freshly squeezed lemon or lime juice first thing in the morning to stimulate the liver\'s production of bile, which pushes toxins out. It also helps to prevent gallstone buildup, promotes digestion, and liver function. Excellent liver detoxifiers, lemons and limes contain high amounts of vitamin C, a vitamin needed by the body to make an important substance called glutathione. Glutathione helps the liver detoxify harmful chemicals. Add a squeeze of fresh lemon juice (not the bottled variety) to pure water to support your cleansing efforts on a daily basis.\n<h3><strong>Flaxseeds and Flaxseed Oil</strong></h3>\nLoaded with essential fatty acids, particularly the Omega-3s, flaxseeds and flaxseed oil are essential for many cleansing functions throughout the body.\n<h3><strong>Garlic</strong></h3>\nEat garlic to cleanse harmful bacteria, intestinal parasites and viruses from your body, especially from the blood and intestines. It also helps cleanse build-up from the arteries and has anti-cancer and antioxidant properties that help detoxify the body of harmful substances. Additionally, garlic assists with cleansing the respiratory tract by expelling mucous build-up in the lungs and sinuses. Garlic aids the liver in flushing out toxins too. And it\'s sulfur compounds activate liver enzymes. For the health benefits, choose only fresh garlic, not garlic powder, which has virtually none of the above properties.\n<h3><strong>Grapefruit</strong></h3>\nAdd a ruby red grapefruit to your breakfast to benefit from pectin fiber that binds to cholesterol, thereby cleansing the blood. Pectin also binds to heavy metals and helps escort them out of the body. It also has antiviral compounds that cleanse harmful viruses out of the body. Grapefruit is an excellent intestinal and liver detoxifier, and is rich in Vitamin C.\n<h3><strong>Kale</strong></h3>\nSteam some kale to benefit from its powerful anti-cancer and antioxidant compounds that help cleanse the body of harmful substances. It is also high in fiber, which helps cleanse the intestinal tract. Like cabbage, kale helps neutralize compounds found in cigarette smoke and strengthens liver cleansing.\n<h3><strong>Legumes</strong></h3>\nAdd a handful of cooked beans to your next meal since they loaded with fiber that helps lower cholesterol, cleanses the intestines, and regulates blood sugar levels. Legumes also help protect the body against cancer.\n<h3><strong>Seaweed</strong></h3>\nSeaweed could be the most underrated vegetable in the western world. Studies at McGill University in Montreal showed that seaweeds bind to radioactive waste in the body. Seaweed also binds to heavy metals to help eliminate them from the body. In addition, they are powerhouses of minerals and trace minerals.\n<h3><strong>Watercress</strong></h3>\nIf you haven’t tried watercress add this delicious green to your next sandwich since it increases detoxification enzymes and acts on cancer cells in the body. In a study at the Norwich Food Research Centre in the United Kingdom, smokers who were given 170 grams of watercress per day eliminated higher than average amounts of carcinogens in their urine, thereby eliminating them from their body.\n<h3>Eat a Variety of Fresh Fruit and Vegetables As Body Cleansing Foods</h3>\nEating a variety of fresh fruits and vegetables assists with detoxifying harmful substances from your body. So what are you waiting for? Who knew cleansing could taste so good.\n\nWant more ideas on using food to promote health. Read our article on <em>\"Fat Fighting Foods\"</em> by clicking <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">here</a>.\n\n1 Thilagavathi, T., et al. \"Foods That Cleanses The Liver.\" <i>Biotica Research Today</i> 2.5 Spl. (2020): 300-302.','Body Cleansing Foods','','inherit','closed','closed','','1498-autosave-v1','','','2020-12-05 02:36:33','2020-12-05 02:36:33','',1498,'https://www.drfields.com/uncategorized/1498-autosave-v1/',0,'revision','',0),(4302,9,'2020-12-05 02:38:12','2020-12-05 02:38:12','<h1>Body Cleansing Foods</h1>\r\n<img class=\"alignleft size-full wp-image-1144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Body-Cleansing-Foods.jpg\" alt=\"Body Cleansing Foods\" width=\"200\" height=\"300\" />The body can do a great job at getting rid of toxins. And we can help it by providing the right foods to do that. Body cleansing foods help your body cleanse itself. Simple as that; eat more of these and your body does its own internal “cleaning,\" Food is really your best medicine.\r\n\r\nThe liver is a big part of the cleansing process. It is essential for proper body functioning, as it purifies toxins, and produces the necessary digestive substances. Plus, it stores the vitamins and minerals the body needs for distribution throughout the body.1 Eating overly processed and fried foods overstresses the liver.  As do environmental pollutants.\r\n<h3>Detox with Body Cleansing Foods</h3>\r\nYou can detox or remove toxic substances from the body when you eat a healthier diet. Here are some nourishing foods that can promote a healthier liver and a healthier body. These foods cleanse the body’s detoxification organs including the liver, intestines, kidneys, and skin, preventing harmful toxic buildup.\r\n\r\nHelp ward off the harmful effects of pollution, food additives, second-hand smoke, and other toxins with delicious fruits, vegetables, nuts, oils, and beans (eating organic whenever possible is always the best way to go).\r\n<h2>List of Body Cleansing Foods</h2>\r\n<h3><strong>Apples</strong></h3>\r\nApples are high in pectin, a type of soluble fiber that helps remove toxins from the digestive tract helping to eliminate toxic build up while cleanse the intestines. It also binds to cholesterol and heavy metals in the body.\r\n<h3><strong>Avocados</strong></h3>\r\nWe rarely think of avocados as a cleansing food but these nutritional powerhouses and dense super foods lower cholesterol and dilate blood vessels while blocking artery-destroying toxicity. Avocados contain a nutrient called glutathione, which blocks at least thirty different carcinogens and is necessary for the liver to detoxify harmful toxins and synthetic chemicals.\r\n\r\n<strong>Beets</strong>\r\n\r\nTime to whip up some delicious borscht soup since its main ingredient, beets, contain a unique mixture of natural plant compounds that make them superb blood purifiers and liver cleansers. Beets protect bile ducts in the liver from damage from toxins. They are high in potassium, magnesium, fiber, phosphorous, iron, and vitamins A, B, C, and folic acid. They can also be used as a natural energy source that is better for you than caffeine. Want a great duo to improve liver function? Then combine carrots and beets for a high amount of plant-flavonoids and beta-carotene.\r\n<h3><strong>Blueberries</strong></h3>\r\nTruly one of the most powerful healing foods, blueberries contain natural aspirin that helps lessen the tissue-damaging effects of chronic inflammation, while lessening pain. Blueberries also act as antibiotics by blocking bacteria in the urinary tract, thereby helping to prevent infections. They also have antiviral properties and help to block toxins from crossing the blood-brain barrier to gain access to the delicate brain.\r\n<h3><strong>Cabbage</strong></h3>\r\nCabbage contains numerous anticancer and antioxidant compounds and helps the liver break down excess hormones. Cabbage also cleanses the digestive tract and neutralizes some of the damaging compounds found in cigarette smoke (and second-hand smoke). It also strengthens the liver’s ability to detoxify. Try eating more kimchi, coleslaw, cabbage soup, and sauerkraut.\r\n<h3><strong>Celery and Celery Seeds</strong></h3>\r\nCelery and celery seeds are excellent blood cleansers and contain many different anti-cancer compounds that help detoxify cancer cells from the body. Celery seeds contain over twenty anti-inflammatory substances. It is particularly good for detoxifying substances found in cigarette smoke.\r\n<h3><strong>Cranberries</strong></h3>\r\nCleanse your body from harmful bacteria and viruses that may be lingering in your urinary tract with cranberries since they contain antibiotic and antiviral substances.\r\n<h3>Lemons and Limes</h3>\r\nTry drinking freshly squeezed lemon or lime juice first thing in the morning to stimulate the liver\'s production of bile, which pushes toxins out. It also helps to prevent gallstone buildup, promotes digestion, and liver function. Excellent liver detoxifiers, lemons and limes contain high amounts of vitamin C, a vitamin needed by the body to make an important substance called glutathione. Glutathione helps the liver detoxify harmful chemicals. Add a squeeze of fresh lemon juice (not the bottled variety) to pure water to support your cleansing efforts on a daily basis.\r\n<h3><strong>Flaxseeds and Flaxseed Oil</strong></h3>\r\nLoaded with essential fatty acids, particularly the Omega-3s, flaxseeds and flaxseed oil are essential for many cleansing functions throughout the body.\r\n<h3><strong>Garlic</strong></h3>\r\nEat garlic to cleanse harmful bacteria, intestinal parasites and viruses from your body, especially from the blood and intestines. It also helps cleanse build-up from the arteries and has anti-cancer and antioxidant properties that help detoxify the body of harmful substances. Additionally, garlic assists with cleansing the respiratory tract by expelling mucous build-up in the lungs and sinuses. Garlic aids the liver in flushing out toxins too. And it\'s sulfur compounds activate liver enzymes. For the health benefits, choose only fresh garlic, not garlic powder, which has virtually none of the above properties.\r\n<h3><strong>Grapefruit</strong></h3>\r\nAdd a ruby red grapefruit to your breakfast to benefit from pectin fiber that binds to cholesterol, thereby cleansing the blood. Pectin also binds to heavy metals and helps escort them out of the body. It also has antiviral compounds that cleanse harmful viruses out of the body. Grapefruit is an excellent intestinal and liver detoxifier, and is rich in Vitamin C.\r\n<h3><strong>Kale</strong></h3>\r\nSteam some kale to benefit from its powerful anti-cancer and antioxidant compounds that help cleanse the body of harmful substances. It is also high in fiber, which helps cleanse the intestinal tract. Like cabbage, kale helps neutralize compounds found in cigarette smoke and strengthens liver cleansing.\r\n<h3><strong>Legumes</strong></h3>\r\nAdd a handful of cooked beans to your next meal since they loaded with fiber that helps lower cholesterol, cleanses the intestines, and regulates blood sugar levels. Legumes also help protect the body against cancer.\r\n<h3><strong>Seaweed</strong></h3>\r\nSeaweed could be the most underrated vegetable in the western world. Studies at McGill University in Montreal showed that seaweeds bind to radioactive waste in the body. Seaweed also binds to heavy metals to help eliminate them from the body. In addition, they are powerhouses of minerals and trace minerals.\r\n<h3><strong>Watercress</strong></h3>\r\nIf you haven’t tried watercress add this delicious green to your next sandwich since it increases detoxification enzymes and acts on cancer cells in the body. In a study at the Norwich Food Research Centre in the United Kingdom, smokers who were given 170 grams of watercress per day eliminated higher than average amounts of carcinogens in their urine, thereby eliminating them from their body.\r\n<h3>Eat a Variety of Fresh Fruit and Vegetables As Body Cleansing Foods</h3>\r\nEating a variety of fresh fruits and vegetables assists with detoxifying harmful substances from your body. So what are you waiting for? Who knew cleansing could taste so good.\r\n\r\nWant more ideas on using food to promote health. Read our article on <em>\"Fat Fighting Foods\"</em> by clicking <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">here</a>.\r\n\r\n1 Thilagavathi, T., et al. \"Foods That Cleanses The Liver.\" <i>Biotica Research Today</i> 2.5 Spl. (2020): 300-302.','Body Cleansing Foods','','inherit','closed','closed','','1498-revision-v1','','','2020-12-05 02:38:12','2020-12-05 02:38:12','',1498,'https://www.drfields.com/uncategorized/1498-revision-v1/',0,'revision','',0),(4303,8,'2020-12-09 18:30:05','2020-12-09 18:30:05','','iwp_log_5fd117ad10d18','','publish','closed','closed','','iwp_log_5fd117ad10d18','','','2020-12-09 18:30:05','2020-12-09 18:30:05','',0,'https://www.drfields.com/iwp_log/iwp_log_5fd117ad10d18/',0,'iwp_log','',0),(4305,8,'2020-12-11 18:06:49','2020-12-11 18:06:49','Kili Top Header 2','Kili Top Header 2','Kili Top Header 2','inherit','open','closed','','kili-top-header-2','','','2020-12-11 18:06:49','2020-12-11 18:06:49','',0,'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg',0,'attachment','image/jpeg',0),(4306,8,'2020-12-11 18:09:37','2020-12-11 18:09:37','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-12-11 18:09:37','2020-12-11 18:09:37','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4307,8,'2020-12-11 18:18:33','2020-12-11 18:18:33','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/bob.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2020-12-11 18:18:33','2020-12-11 18:18:33','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(4308,8,'2020-12-11 19:06:38','2020-12-11 19:06:38','Bob 2','Bob 2','Bob 2','inherit','open','closed','','bob-2','','','2020-12-11 19:06:38','2020-12-11 19:06:38','',0,'https://www.drfields.com/wp-content/uploads/2020/12/bob-2.jpg',0,'attachment','image/jpeg',0),(4309,8,'2020-12-11 19:07:11','2020-12-11 19:07:11','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/bob-2.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Michael-Ganglion-Cyst.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2020-12-11 19:07:11','2020-12-11 19:07:11','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(4310,8,'2020-12-11 20:15:08','2020-12-11 20:15:08','Michael Ganglion Cyst 2','Michael Ganglion Cyst 2','Michael Ganglion Cyst 2','inherit','open','closed','','michael-ganglion-cyst-2','','','2020-12-11 20:15:08','2020-12-11 20:15:08','',0,'https://www.drfields.com/wp-content/uploads/2020/12/Michael-Ganglion-Cyst-2.jpg',0,'attachment','image/jpeg',0),(4311,8,'2020-12-11 20:15:09','2020-12-11 20:15:09','Keith Shoulder 2','Keith Shoulder 2','Keith Shoulder 2','inherit','open','closed','','keith-shoulder-2','','','2020-12-11 20:15:09','2020-12-11 20:15:09','',0,'https://www.drfields.com/wp-content/uploads/2020/12/Keith-Shoulder-2.jpg',0,'attachment','image/jpeg',0),(4312,8,'2020-12-11 20:16:11','2020-12-11 20:16:11','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/bob-2.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn Stem Cell Knee\"]<strong>Glenn - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Stem Cell Knee\"]<strong>Jerry - Stem Cell Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom - Stem Cell Knee \"]<strong>Tom - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry - Stem Cell Knee\"]<strong>Larry - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff - Stem Cell Shoulder\"]<strong>Jeff - Stem Cell Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"1lcGXGB5nlQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary - Stem Cell Hip\"]<strong>Mary - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Stem Cell Knee\"]<strong>Robert C. - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Stem Cell Knee\"]<strong>Mike - Stem Cell Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Stem Cell Hip\"]<strong>Tisha - Stem Cell Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Stem Cell Knee\"]<strong>Robert B. - Stem Cell Knee</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vMWJVoJaVJs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg\" alt=\"Nanette - Hip\"]<strong>Nanette - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Roberto - Knee (Spanish)\"]<strong>Roberto - Knee (Spanish)</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"cFCO3DIv3mA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Knee\"]<strong>Tim - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa - Knee\"]<strong>Christa - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"mVHo_vvsd9A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg\" alt=\"Sam - Sports Hernia\"]<strong>Sam - Sports Hernia</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"9B54Xx1z8IE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg\" alt=\"Patrick - Hamstring\"]<strong>Patrick - Hamstring</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam - Knee\"]<strong>Adam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/Michael-Ganglion-Cyst-2.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"CfhXiKoiO08\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg\" alt=\"Josh - Knee\"]<strong>Josh - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4GsVa7DN2Do\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Knee\"]<strong>Wilbur - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Sam - Knee\"]<strong>Sam - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer - Elbow\"]<strong>Jennifer - Elbow</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aO2HpYrEJIg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg\" alt=\"Alex - Knee\"]<strong>Alex - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"4kip37rZH6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg\" alt=\"Moira - Knee\"]<strong>Moira - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Chris - Hip\"]<strong>Chris - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg\" alt=\"Dr. Doug - Headaches &amp; Shoulder\"]<strong>Dr. Doug - Headaches &amp; Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/Keith-Shoulder-2.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"If3I_k5wvdU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg\" alt=\"Jan - Hip\"]<strong>Jan - Hip</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"BZ65bEr1Qlo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg\" alt=\"Yelena - Knee\"]<strong>Yelena - Knee</strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"Y19FJAblO6o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Hamstring\"]<strong>Nick - Hamstring</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"wd73iKcFLDY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg\" alt=\"Willie - Knee\"]<strong>Willie - Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"7sBZyf4bAyI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg\" alt=\"Dale - Knee\"]<strong>Dale - Knee</strong></div>\r\n<div class=\"clear\"></div>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Video Testimonials','','inherit','closed','closed','','1340-revision-v1','','','2020-12-11 20:16:11','2020-12-11 20:16:11','',1340,'https://www.drfields.com/uncategorized/1340-revision-v1/',0,'revision','',0),(4313,8,'2020-12-11 20:35:27','2020-12-11 20:35:27','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n\r\n<h3>Testimonials</h3>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow...\"\r\n\r\n<h3>Mindy</h3>\r\n<h4>Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else...\"\r\n\r\n<h3>Robert</h3>\r\n<h4>Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3>Lois</h3>\r\n<h4>Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-12-11 20:35:27','2020-12-11 20:35:27','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4314,8,'2020-12-11 20:36:41','2020-12-11 20:36:41','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\nVideo:\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n\r\nWritten:\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow...\"\r\n\r\n<h3>Mindy</h3>\r\n<h4>Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else...\"\r\n\r\n<h3>Robert</h3>\r\n<h4>Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3>Lois</h3>\r\n<h4>Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-12-11 20:36:41','2020-12-11 20:36:41','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4315,8,'2020-12-11 20:38:48','2020-12-11 20:38:48','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\nVideo:<br />\r\n<br />\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n\r\nWritten:<br />\r\n<br />\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow...\"\r\n\r\n<h3>Mindy</h3>\r\n<h4>Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else...\"\r\n\r\n<h3>Robert</h3>\r\n<h4>Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3>Lois</h3>\r\n<h4>Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-12-11 20:38:48','2020-12-11 20:38:48','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4316,8,'2020-12-11 20:40:28','2020-12-11 20:40:28','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<p>Video:</p>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n\r\n<p>Written:</p>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow...\"\r\n\r\n<h3>Mindy</h3>\r\n<h4>Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else...\"\r\n\r\n<h3>Robert</h3>\r\n<h4>Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3>Lois</h3>\r\n<h4>Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-12-11 20:40:28','2020-12-11 20:40:28','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4317,8,'2020-12-11 20:41:06','2020-12-11 20:41:06','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\nVideo:\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n\r\nWritten:\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow...\"\r\n\r\n<h3>Mindy</h3>\r\n<h4>Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else...\"\r\n\r\n<h3>Robert</h3>\r\n<h4>Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3>Lois</h3>\r\n<h4>Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-12-11 20:41:06','2020-12-11 20:41:06','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4318,8,'2020-12-11 20:42:05','2020-12-11 20:42:05','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow...\"\r\n\r\n<h3>Mindy</h3>\r\n<h4>Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else...\"\r\n\r\n<h3>Robert</h3>\r\n<h4>Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3>Lois</h3>\r\n<h4>Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-12-11 20:42:05','2020-12-11 20:42:05','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4319,8,'2020-12-11 20:43:31','2020-12-11 20:43:31','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"height: 20px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow...\"\r\n\r\n<h3>Mindy</h3>\r\n<h4>Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else...\"\r\n\r\n<h3>Robert</h3>\r\n<h4>Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3>Lois</h3>\r\n<h4>Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-12-11 20:43:31','2020-12-11 20:43:31','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4320,8,'2020-12-11 20:45:20','2020-12-11 20:45:20','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"height: 20px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow...\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else...\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-12-11 20:45:20','2020-12-11 20:45:20','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4321,8,'2020-12-11 20:48:16','2020-12-11 20:48:16','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"height: 20px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow...\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else...\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Want to avoid orthopedic surgery? Find out how!</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-12-11 20:48:16','2020-12-11 20:48:16','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4322,8,'2020-12-11 20:49:21','2020-12-11 20:49:21','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"height: 20px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow...\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else...\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-12-11 20:49:21','2020-12-11 20:49:21','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4323,8,'2020-12-11 20:51:17','2020-12-11 20:51:17','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"height: 20px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2020-12-11 20:51:17','2020-12-11 20:51:17','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4324,8,'2020-12-11 21:21:48','2020-12-11 21:21:48','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/bob-2.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla Knee\"]<strong>Priscilla - Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Knee - \"]<strong>Andy -Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Knee\"]<strong>Claire - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Knee\"]<strong>Robert B. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','inherit','closed','closed','','1700-revision-v1','','','2020-12-11 21:21:48','2020-12-11 21:21:48','',1700,'https://www.drfields.com/uncategorized/1700-revision-v1/',0,'revision','',0),(4325,8,'2020-12-11 21:24:06','2020-12-11 21:24:06','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Keith-Shoulder.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Shoulder Testimonials','','inherit','closed','closed','','1706-revision-v1','','','2020-12-11 21:24:06','2020-12-11 21:24:06','',1706,'https://www.drfields.com/uncategorized/1706-revision-v1/',0,'revision','',0),(4326,8,'2020-12-11 21:25:38','2020-12-11 21:25:38','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle-<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/Keith-Shoulder-2.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Shoulder Testimonials','','inherit','closed','closed','','1706-revision-v1','','','2020-12-11 21:25:38','2020-12-11 21:25:38','',1706,'https://www.drfields.com/uncategorized/1706-revision-v1/',0,'revision','',0),(4327,8,'2020-12-11 21:26:26','2020-12-11 21:26:26','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark - Neck\"]<strong>Mark - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"DQwesSp8YGs\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg\" alt=\"Jamie - Neck\"]<strong>Jamie - Neck</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter - Neck\"]<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Neck Testimonials','','inherit','closed','closed','','1711-revision-v1','','','2020-12-11 21:26:26','2020-12-11 21:26:26','',1711,'https://www.drfields.com/uncategorized/1711-revision-v1/',0,'revision','',0),(4328,8,'2020-12-11 21:27:16','2020-12-11 21:27:16','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"37KInzxAg6Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/Michael-Ganglion-Cyst-2.jpg\" alt=\"Michael - Ganglion Cyst\"]<strong>Michael - Ganglion Cyst</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Ganglion Cyst Testimonials','','inherit','closed','closed','','1727-revision-v1','','','2020-12-11 21:27:16','2020-12-11 21:27:16','',1727,'https://www.drfields.com/uncategorized/1727-revision-v1/',0,'revision','',0),(4329,8,'2020-12-11 21:27:51','2020-12-11 21:27:51','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n\r\n&nbsp;\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Headache Testimonials','','inherit','closed','closed','','1729-revision-v1','','','2020-12-11 21:27:51','2020-12-11 21:27:51','',1729,'https://www.drfields.com/uncategorized/1729-revision-v1/',0,'revision','',0),(4330,8,'2020-12-11 21:28:40','2020-12-11 21:28:40','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \" id=\"centrevideo\">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>','German Testimonials','','inherit','closed','closed','','2833-revision-v1','','','2020-12-11 21:28:40','2020-12-11 21:28:40','',2833,'https://www.drfields.com/uncategorized/2833-revision-v1/',0,'revision','',0),(4331,8,'2020-12-11 21:28:57','2020-12-11 21:28:57','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"centrevideo\">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>','German Testimonials','','inherit','closed','closed','','2833-revision-v1','','','2020-12-11 21:28:57','2020-12-11 21:28:57','',2833,'https://www.drfields.com/uncategorized/2833-revision-v1/',0,'revision','',0),(4332,8,'2020-12-11 21:30:28','2020-12-11 21:30:28','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">[video_lightbox_youtube video_id=\"hLgJ4IV96Mk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg\" alt=\"Jim Mcdermat - PRP Foot\"]<strong>Jim Mcdermat - PRP Foot</strong></div>\r\n<div class=\"youtube-click-div\" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Joel - Foot\"]<strong>Joel - Foot</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Foot Testimonials','','inherit','closed','closed','','1717-revision-v1','','','2020-12-11 21:30:28','2020-12-11 21:30:28','',1717,'https://www.drfields.com/uncategorized/1717-revision-v1/',0,'revision','',0),(4333,8,'2020-12-11 21:31:37','2020-12-11 21:31:37','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Di5g-tBclIY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg\" alt=\"Athena - Wrist\"]<strong>Athena - Wrist</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Suzie - Wrist\"]<strong>Suzie - Wrist</strong>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Wrist Testimonials','','inherit','closed','closed','','1719-revision-v1','','','2020-12-11 21:31:37','2020-12-11 21:31:37','',1719,'https://www.drfields.com/uncategorized/1719-revision-v1/',0,'revision','',0),(4334,8,'2020-12-11 21:31:57','2020-12-11 21:31:57','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"dRU13CJixJQ\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg\" alt=\"Nick - Ankle\"]<strong>Nick - Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MYI_vSJe378\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg\" alt=\"Jeremy - Ankle\"]<strong>Jeremy - Ankle</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Ankle Testimonials','','inherit','closed','closed','','1713-revision-v1','','','2020-12-11 21:31:57','2020-12-11 21:31:57','',1713,'https://www.drfields.com/uncategorized/1713-revision-v1/',0,'revision','',0),(4335,8,'2020-12-11 21:32:20','2020-12-11 21:32:20','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder & Ankle\"]<strong>Tony - PRP Shoulder & Ankle</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"AioI5BZz3UE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg\" alt=\"Tim - Shoulder\"]<strong>Tim - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"lbdZS9nI4P0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg\" alt=\"Gayle - Shoulder\"]<strong>Gayle - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"k4qgeZ5hEsk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg\" alt=\"Dan - Shoulder\"]<strong>Dan - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Shoulder\"]<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"pkxNgsAzzq4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg\" alt=\"Benjamin - Shoulder\"]<strong>Benjamin - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5rBHAXq3PLM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg\" alt=\"Ryan - Shoulder\"]<strong>Ryan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"4oBchrO2tug\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg\" alt=\"Cheryl - Shoulder\"]<strong>Cheryl - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg\" alt=\"Dr. Doug - Headaches & Shoulder\"]<strong>Dr. Doug - Headaches & Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"gaioPXwk4pc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/Keith-Shoulder-2.jpg\" alt=\"Keith - Shoulder\"]<strong>Keith - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nGyhBJFOn24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg\" alt=\"Elan - Shoulder\"]<strong>Elan - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IrOa6fvRip4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg\" alt=\"Jun - Shoulder\"]<strong>Jun - Shoulder</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"xE-RZymaOmY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg\" alt=\"Bob - Shoulder\"]<strong>Bob - Shoulder</strong>\r\n</div>\r\n\r\n\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Shoulder Testimonials','','inherit','closed','closed','','1706-revision-v1','','','2020-12-11 21:32:20','2020-12-11 21:32:20','',1706,'https://www.drfields.com/uncategorized/1706-revision-v1/',0,'revision','',0),(4336,8,'2020-12-11 21:32:43','2020-12-11 21:32:43','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"VLbs4_l5Ky0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg\" alt=\"Dr. Eric (Chiropractor) - Low Back\"]<strong>Dr. Eric (Chiropractor) - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"9pkum_ODeLk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg\" alt=\"Gayle - Low Back\"]<strong>Gayle - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"fSQ33gk_qSo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg\" alt=\"Rich - Low Back\"]<strong>Rich - Low Back</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"ErGDFmRC9_0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg\" alt=\"Patrick - Low Back\"]<strong>Patrick - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur - Low Back\"]<strong>Wilbur - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"FqX0AEE0z24\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg\" alt=\"Jennifer - Low Back\"]<strong>Jennifer - Low Back</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MbclxvLrVec\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg\" alt=\"Sam - Back (Spanish)\"]<strong>Sam - Back (Spanish)</strong>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Low Back Testimonials','','inherit','closed','closed','','1704-revision-v1','','','2020-12-11 21:32:43','2020-12-11 21:32:43','',1704,'https://www.drfields.com/uncategorized/1704-revision-v1/',0,'revision','',0),(4337,8,'2020-12-11 21:35:39','2020-12-11 21:35:39','[video-menu-cat]\n\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\n\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\n\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\n\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\n\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\n\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/bob-2.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\n\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\n\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\n\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\n\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\n\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla Knee\"]<strong>Priscilla - Knee - <span class=\"newtag\">NEW!</span></strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Knee - \"]<strong>Andy -Knee - <span class=\"newtag\">NEW!</span></strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn - Knee -<span class=\"newtag\">NEW!</span></strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee -<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom - Knee -<span class=\"newtag\">NEW!</span></strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry - Knee</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary - Hip</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\n</div>\n\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\n</div>\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Knee\"]<strong>Robert B. - Knee</strong>\n</div>\n\n<div class=\"clear\"></div>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','inherit','closed','closed','','1700-autosave-v1','','','2020-12-11 21:35:39','2020-12-11 21:35:39','',1700,'https://www.drfields.com/uncategorized/1700-autosave-v1/',0,'revision','',0),(4338,8,'2020-12-11 21:36:14','2020-12-11 21:36:14','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/bob-2.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Stem Videotestimonial\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla Knee\"]<strong>Priscilla - Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Knee - \"]<strong>Andy -Knee - <span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Knee\"]<strong>Robert B. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','inherit','closed','closed','','1700-revision-v1','','','2020-12-11 21:36:14','2020-12-11 21:36:14','',1700,'https://www.drfields.com/uncategorized/1700-revision-v1/',0,'revision','',0),(4339,8,'2020-12-11 21:37:51','2020-12-11 21:37:51','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/bob-2.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Knee\"]<strong>Robert B. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','inherit','closed','closed','','1700-revision-v1','','','2020-12-11 21:37:51','2020-12-11 21:37:51','',1700,'https://www.drfields.com/uncategorized/1700-revision-v1/',0,'revision','',0),(4340,8,'2020-12-11 21:38:46','2020-12-11 21:38:46','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/bob-2.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Knee\"]<strong>Robert B. - Knee</strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','inherit','closed','closed','','1700-revision-v1','','','2020-12-11 21:38:46','2020-12-11 21:38:46','',1700,'https://www.drfields.com/uncategorized/1700-revision-v1/',0,'revision','',0),(4341,8,'2020-12-11 21:39:43','2020-12-11 21:39:43','[video-menu-cat]\r\n\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/testimonials/written-testimonials/\" class=\"btn-more\"><em class=\"fa fa-video-camera\"></em>&nbsp;&nbsp;View Written Testimonials</a></p>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jhN7D30YcYI\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg\" alt=\"Kelsey Stem Cell Knee\"]<strong>Kelsey - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lUmMXcDmnb0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg\" alt=\"Stefan Stem Cell\"]<strong>Stefan - Stem Cell (German) <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"P0R8A3h2iVE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg\" alt=\"Raymond Stem Cell Knee\"]<strong>Raymond - Stem Cell - Knee<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"lg7LfbQ_2X8\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg\" alt=\"Tom Stem Cell Knee\"]<strong>Tom - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"yzIzTbV2H-E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg\" alt=\"Dave Stem Cell Knee\"]<strong>Dave - Stem Cell - Knee <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"txf3iJeuS8E\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2020/12/bob-2.jpg\" alt=\"Bob Stem Cell Shoulder\"]<strong>Bob - Stem Cell - Shoulder <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"jBiDs3CZb60\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg\" alt=\"Sue Stem Cell Knee\"]<strong>Sue - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"MMQf25t2YVw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg\" alt=\"Priscilla - Stem Cell Knee\"]<strong>Priscilla - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"r3eZmnX-Krc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg\" alt=\"Andy - Stem Cell Knee - \"]<strong>Andy - Stem Cell Knee - <span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"DzXPaTqr8wo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg\" alt=\"Claire - Stem Cell Knee\"]<strong>Claire - Stem Cell Knee -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"3ch1-0uGaYc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg\" alt=\"Glenn- Knee\"]<strong>Glenn - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"quj4K0wbfu4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg\" alt=\"Jerry - Knee\"]<strong>Jerry -Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"77NOlzjsrbc\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg\" alt=\"Tom -Knee \"]<strong>Tom - Knee -<span class=\"newtag\">NEW!</span></strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"hhZQOqjwadg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg\" alt=\"Larry -Knee\"]<strong>Larry - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"NSQ6NTv4E7Q\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg\" alt=\"Jeff -Shoulder\"]<strong>Jeff - Shoulder</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Mary -Hip\"]<strong>Mary - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Robert C. - Knee\"]<strong>Robert C. - Knee</strong>\r\n</div>\r\n\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"5DYp-0v0Ptg\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg\" alt=\"Mike - Knee\"]<strong>Mike - Knee</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"p37-iQnCvrM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg\" alt=\"Tisha - Hip\"]<strong>Tisha - Hip</strong>\r\n</div>\r\n<div class=\"youtube-click-div \" id=\"youtubeleft\">\r\n[video_lightbox_youtube video_id=\"KdDTQn5-WMA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg\" alt=\"Robert B. - Knee\"]<strong>Robert B. - Knee</strong>\r\n</div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"nPw5OVgcUlU\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg\" alt=\"Mark - Back\"]<strong>Mark - Back -<span class=\"newtag\">NEW!</span></strong></div>\r\n\r\n<div class=\"clear\"></div>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<em>*The testimonials reflect the real life experiences of individuals who used our products and/or services. However, individual results may vary.</em>','Stem Cell','','inherit','closed','closed','','1700-revision-v1','','','2020-12-11 21:39:43','2020-12-11 21:39:43','',1700,'https://www.drfields.com/uncategorized/1700-revision-v1/',0,'revision','',0),(4343,9,'2020-12-16 01:56:14','2020-12-16 01:56:14','<h3><img class=\"alignleft size-full wp-image-1142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Healthy-Breakfast.jpg\" alt=\"Healthy Breakfast\" width=\"200\" height=\"300\" />Protein Foods and Our Health</h3>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\nNo matter our age, an intake of high-quality protein foods is necessary in adequate amounts to maintain health. Protein intake is necessary for the growth, development, and maintenance of skeletal muscle tissue.\n\nSkeletal muscle helps us to be physically strong. And building muscle over the years also helps to safeguard against the muscle mass decline that results with age. Both physical activity and dietary factors, such as protein intake, influence growth of muscle mass.  And many protein recommendations, like the RDA, are only set to cover basic needs. But higher protein intake might be necessary for optimizing muscle mass.(1)\n<h3>Eat A Variety of High Quality Protein Foods</h3>\n<div class=\"page\" title=\"Page 2\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\nConsuming a variety of high quality protein foods to ensure a sufficient supply of amino acids for lean mass and an overall healthy diet quality (2). And many have chosen to get their protein from plant-based sources. \"Indeed, there has been a shift toward plant-based dietary patterns within dietary guidelines to presumably maximize population health benefits and to support environmental sustainability \"(3). Studies have shown that minimizing red meat consumption is favorable to reduce disease the risk of type 2 diabetes, cardiovascular disease, and other conditions. (4,5).\n<h3>Plant-Based Diets</h3>\nAre plant based diets healthier? Interestingly, when compared with regular meat-eaters, those who eat lower quantities of meat, and non-meat-eaters were younger, had a higher education level, a lower socio-economic status, were less likely to smoke and consume alcohol, had higher levels of physical activity, a a lower BMI (6).\n<h4>Protein for Breakfast</h4>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\nBy eating a breakfast high in protein, not only increases satiety and reduces hunger throughout the day, but it reduces the brain signals controlling food motivation and reward-driven eating behavior.\n<h4><em>What Do Researchers Say About Eating Breakfast?</em></h4>\nHeather J. Leidy, from University of Missouri (Missouri, USA), and colleagues assessed physiological hunger and satiety by measuring perceived appetite sensations and hormonal markers in combination with psychological reward-driven motivation to eat, using functional MRI imaging (fMRI) to identify brain activation in specific regions related to food motivation and reward.(7)\n<h4>Breakfast Skipping Is Linked to Unhealthy Snacking and Weight Gain</h4>\nThe researchers focused on teenagers, who often skip breakfast. Interestingly, breakfast skipping has been strongly associated with unhealthy snacking, overeating (especially at night), weight gain and obesity. For three weeks, the teens either continued to skip breakfast or consumed 500-calorie breakfast meals containing cereal and milk (which contained normal quantities of protein) or higher protein meals prepared as Belgium waffles, syrup and yogurt. At the end of each week, the volunteers completed appetite and satiety questionnaires. Right before lunch, the volunteers completed a brain scan, using fMRI, to identify brain activation responses.\n<h4>Eating Breakfast Reduces Hunger Throughout the Morning</h4>\nCompared to breakfast skipping, both breakfast meals led to increased fullness and reductions in hunger throughout the morning. fMRI results showed that brain activation in regions controlling food motivation and reward was reduced prior to lunch time when breakfast was consumed in the morning. Additionally, the higher protein breakfast led to even greater changes in appetite, satiety and reward-driven eating behavior compared to the normal protein breakfast. The team concluded, “The addition of breakfast led to alterations in brain activation in regions previously associated with food motivation and reward with additional alterations following the higher-protein breakfast.”(7)\n<h3>Choose Fresh, Non-Processed Food</h3>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\nWhether you are a meat eater or not, a healthy eating pattern will include a variety of high-quality protein foods throughout the day. And staying away from processed and sugary foods is also encouraged. Instead, try to stick to fresh, non-processed foods when choosing your protein food sources for a healthier you.\n\n</div>\nWant more information on healthy eating? Read our article about <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">Fat Fighting Foods</a> by clicking <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">here.</a>\n\n</div>\n</div>\n&nbsp;\n\n&nbsp;\n\n1Burd, Nicholas A., et al. \"Dietary protein quantity, quality, and exercise are key to healthy living: a muscle-centric perspective across the lifespan.\" <i>Frontiers in nutrition</i> 6 (2019): 83.\n<div class=\"page\" title=\"Page 9\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\n2Phillips SM, Fulgoni VL III, Heaney RP, Nicklas TA, Slavin JL, Weaver CM. Commonly consumed protein foods contribute to nutrient intake, diet quality, and nutrient adequacy. Am J Clin Nutr. (2015) 101:1346S−52S. doi: 10.3945/ajcn.114.084079\n<div class=\"page\" title=\"Page 9\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\n3Committee DGA. Scientific Report of the 2015 Dietary Guidelines Advisory Committee: Advisory Report to the Secretary of Health and Human Services and the Secretary of Agriculture. U.S. Department of Agriculture. Washington, DC (2015).\n<div class=\"page\" title=\"Page 9\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\n4Micha R, Wallace Sarah K, Mozaffarian D. Red and processed meat consumption and risk of incident coronary heart disease, stroke, and diabetes mellitus. Circulation. (2010) 121:2271–83. doi: 10.1161/CIRCULATIONAHA.109.924977\n\n5Pan A, Sun Q, Bernstein AM, Manson JE, Willett WC, Hu FB. Changes in red meat consumption and subsequent risk of type 2 diabetes mellitus: three cohorts of US men and womenred meat consumption and type 2 diabetes riskred meat consumption and type 2 diabetes risk. JAMA Internal Med. (2013) 173:1328–35. doi: 10.1001/jamainternmed.2013.6633\n\n6Papier, Keren, et al. \"Comparison of major protein-source foods and other food groups in meat-eaters and non-meat-eaters in the EPIC-Oxford cohort.\" <i>Nutrients</i> 11.4 (2019): 824.\n\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\nHeather J. Leidy, Rebecca J. Lepping, Cary R. Savage, Corey T. Harris.” Neural Responses to Visual Food Stimuli After a Normal vs. Higher Protein Breakfast in Breakfast-Skipping Teens: A Pilot fMRI Study.” Obesity, 5 May 2011.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Protein Foods','','inherit','closed','closed','','1496-autosave-v1','','','2020-12-16 01:56:14','2020-12-16 01:56:14','',1496,'https://www.drfields.com/uncategorized/1496-autosave-v1/',0,'revision','',0),(4344,9,'2020-12-16 01:41:00','2020-12-16 01:41:00','<h3><img class=\"alignleft size-full wp-image-1142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Healthy-Breakfast.jpg\" alt=\"Healthy Breakfast\" width=\"200\" height=\"300\" />Protein Foods and Our Health</h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nNo matter our age,  high-quality protein food intake in adequate amounts for all meals is good for our health. Protein intake is necessary mainly for the growth, development, and maintenance of skeletal muscle tissue.\r\n\r\nSkeletal muscle helps us to be physically strong. Building muscle over the years also helps to safeguard against the muscle mass decline that results with age. Both physical activity and dietary factors, such as protein intake, influence growth of muscle mass.  Many protein recommendations, like the RDA, are set to cover basic needs. But higher protein intake might be necessary for optimizing muscle mass.\r\n<h3>Eat A Variety of High Quality Protein Foods</h3>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nConsuming a variety of high quality protein foods to ensure a sufficient supply of amino acids for lean mass and an overall healthy diet quality (2). And many have chosen to get their protein from plant-based sources. \"Indeed, there has been a shift toward plant-based dietary patterns within dietary guidelines to presumably maximize population health benefits and to support environmental sustainability \"(3). Studies have shown that minimizing red meat consumption is favorable to reduce disease the risk of type 2 diabetes, cardiovascular disease, and other conditions. (4, 5).\r\n<h3>Plant-Based Diets</h3>\r\nAre plant based diets healthier? Interestingly, when compared with regular meat-eaters, those who eat lower quantities of meat, and non-meat-eaters were younger, had a higher education level, a lower socio-economic status, were less likely to smoke and consume alcohol, had higher levels of physical activity, a a lower BMI (6).\r\n<h3>Protein Foods for Breakfast</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nBy eating a breakfast high in protein, not only increases satiety and reduces hunger throughout the day, but it reduces the brain signals controlling food motivation and reward-driven eating behavior.\r\n\r\nHeather J. Leidy, from University of Missouri (Missouri, USA), and colleagues assessed physiological hunger and satiety by measuring perceived appetite sensations and hormonal markers in combination with psychological reward-driven motivation to eat, using functional MRI imaging (fMRI) to identify brain activation in specific regions related to food motivation and reward.\r\n\r\nThe researchers focused on teenagers, who often skip breakfast. Interestingly, breakfast skipping has been strongly associated with unhealthy snacking, overeating (especially at night), weight gain and obesity. For three weeks, the teens either continued to skip breakfast or consumed 500-calorie breakfast meals containing cereal and milk (which contained normal quantities of protein) or higher protein meals prepared as Belgium waffles, syrup and yogurt. At the end of each week, the volunteers completed appetite and satiety questionnaires. Right before lunch, the volunteers completed a brain scan, using fMRI, to identify brain activation responses.\r\n\r\nCompared to breakfast skipping, both breakfast meals led to increased fullness and reductions in hunger throughout the morning. fMRI results showed that brain activation in regions controlling food motivation and reward was reduced prior to lunch time when breakfast was consumed in the morning. Additionally, the higher protein breakfast led to even greater changes in appetite, satiety and reward-driven eating behavior compared to the normal protein breakfast. The team concluded, “The addition of breakfast led to alterations in brain activation in regions previously associated with food motivation and reward with additional alterations following the higher-protein breakfast.”(7)\r\n<h3>Choose Fresh, Non-Processed Protein Foods</h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nWhether you are a meat eater or not, a healthy eating pattern will include a variety of high-quality protein foods throughout the day. Staying away from processed and sugary foods is also encouraged. Try to stick to fresh, non-processed foods when choosing your protein food sources for a healthier you.\r\n\r\n</div>\r\nWant more information on healthy eating? Read our article about <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">Fat Fighting Foods</a> by clicking <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">here.</a>\r\n\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n1Burd, Nicholas A., et al. \"Dietary protein quantity, quality, and exercise are key to healthy living: a muscle-centric perspective across the lifespan.\" <i>Frontiers in nutrition</i> 6 (2019): 83.\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n2Phillips SM, Fulgoni VL III, Heaney RP, Nicklas TA, Slavin JL, Weaver CM. Commonly consumed protein foods contribute to nutrient intake, diet quality, and nutrient adequacy. Am J Clin Nutr. (2015) 101:1346S−52S. doi: 10.3945/ajcn.114.084079\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n3Committee DGA. Scientific Report of the 2015 Dietary Guidelines Advisory Committee: Advisory Report to the Secretary of Health and Human Services and the Secretary of Agriculture. U.S. Department of Agriculture. Washington, DC (2015).\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n4Micha R, Wallace Sarah K, Mozaffarian D. Red and processed meat consumption and risk of incident coronary heart disease, stroke, and diabetes mellitus. Circulation. (2010) 121:2271–83. doi: 10.1161/CIRCULATIONAHA.109.924977\r\n\r\n5Pan A, Sun Q, Bernstein AM, Manson JE, Willett WC, Hu FB. Changes in red meat consumption and subsequent risk of type 2 diabetes mellitus: three cohorts of US men and womenred meat consumption and type 2 diabetes riskred meat consumption and type 2 diabetes risk. JAMA Internal Med. (2013) 173:1328–35. doi: 10.1001/jamainternmed.2013.6633\r\n\r\n6Papier, Keren, et al. \"Comparison of major protein-source foods and other food groups in meat-eaters and non-meat-eaters in the EPIC-Oxford cohort.\" <i>Nutrients</i> 11.4 (2019): 824.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nHeather J. Leidy, Rebecca J. Lepping, Cary R. Savage, Corey T. Harris.” Neural Responses to Visual Food Stimuli After a Normal vs. Higher Protein Breakfast in Breakfast-Skipping Teens: A Pilot fMRI Study.” Obesity, 5 May 2011.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Protein Foods and Your Health','','inherit','closed','closed','','1496-revision-v1','','','2020-12-16 01:41:00','2020-12-16 01:41:00','',1496,'https://www.drfields.com/uncategorized/1496-revision-v1/',0,'revision','',0),(4345,9,'2020-12-16 01:45:59','2020-12-16 01:45:59','<h3><img class=\"alignleft size-full wp-image-1142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Healthy-Breakfast.jpg\" alt=\"Healthy Breakfast\" width=\"200\" height=\"300\" />Protein Foods and Our Health</h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nNo matter our age, an intake of high-quality protein foods is necessary in adequate amounts to maintain health. Protein intake is necessary for the growth, development, and maintenance of skeletal muscle tissue.\r\n\r\nSkeletal muscle helps us to be physically strong. And building muscle over the years also helps to safeguard against the muscle mass decline that results with age. Both physical activity and dietary factors, such as protein intake, influence growth of muscle mass.  Many protein recommendations, like the RDA, are set to cover basic needs. But higher protein intake might be necessary for optimizing muscle mass.(1)\r\n<h3>Eat A Variety of High Quality Protein Foods</h3>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nConsuming a variety of high quality protein foods to ensure a sufficient supply of amino acids for lean mass and an overall healthy diet quality (2). And many have chosen to get their protein from plant-based sources. \"Indeed, there has been a shift toward plant-based dietary patterns within dietary guidelines to presumably maximize population health benefits and to support environmental sustainability \"(3). Studies have shown that minimizing red meat consumption is favorable to reduce disease the risk of type 2 diabetes, cardiovascular disease, and other conditions. (4,5).\r\n<h3>Plant-Based Diets</h3>\r\nAre plant based diets healthier? Interestingly, when compared with regular meat-eaters, those who eat lower quantities of meat, and non-meat-eaters were younger, had a higher education level, a lower socio-economic status, were less likely to smoke and consume alcohol, had higher levels of physical activity, a a lower BMI (6).\r\n<h3>Protein Foods for Breakfast</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nBy eating a breakfast high in protein, not only increases satiety and reduces hunger throughout the day, but it reduces the brain signals controlling food motivation and reward-driven eating behavior.\r\n\r\nHeather J. Leidy, from University of Missouri (Missouri, USA), and colleagues assessed physiological hunger and satiety by measuring perceived appetite sensations and hormonal markers in combination with psychological reward-driven motivation to eat, using functional MRI imaging (fMRI) to identify brain activation in specific regions related to food motivation and reward.\r\n\r\nThe researchers focused on teenagers, who often skip breakfast. Interestingly, breakfast skipping has been strongly associated with unhealthy snacking, overeating (especially at night), weight gain and obesity. For three weeks, the teens either continued to skip breakfast or consumed 500-calorie breakfast meals containing cereal and milk (which contained normal quantities of protein) or higher protein meals prepared as Belgium waffles, syrup and yogurt. At the end of each week, the volunteers completed appetite and satiety questionnaires. Right before lunch, the volunteers completed a brain scan, using fMRI, to identify brain activation responses.\r\n\r\nCompared to breakfast skipping, both breakfast meals led to increased fullness and reductions in hunger throughout the morning. fMRI results showed that brain activation in regions controlling food motivation and reward was reduced prior to lunch time when breakfast was consumed in the morning. Additionally, the higher protein breakfast led to even greater changes in appetite, satiety and reward-driven eating behavior compared to the normal protein breakfast. The team concluded, “The addition of breakfast led to alterations in brain activation in regions previously associated with food motivation and reward with additional alterations following the higher-protein breakfast.”(7)\r\n<h3>Choose Fresh, Non-Processed Protein Foods</h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nWhether you are a meat eater or not, a healthy eating pattern will include a variety of high-quality protein foods throughout the day. Staying away from processed and sugary foods is also encouraged. Try to stick to fresh, non-processed foods when choosing your protein food sources for a healthier you.\r\n\r\n</div>\r\nWant more information on healthy eating? Read our article about <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">Fat Fighting Foods</a> by clicking <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">here.</a>\r\n\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n1Burd, Nicholas A., et al. \"Dietary protein quantity, quality, and exercise are key to healthy living: a muscle-centric perspective across the lifespan.\" <i>Frontiers in nutrition</i> 6 (2019): 83.\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n2Phillips SM, Fulgoni VL III, Heaney RP, Nicklas TA, Slavin JL, Weaver CM. Commonly consumed protein foods contribute to nutrient intake, diet quality, and nutrient adequacy. Am J Clin Nutr. (2015) 101:1346S−52S. doi: 10.3945/ajcn.114.084079\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n3Committee DGA. Scientific Report of the 2015 Dietary Guidelines Advisory Committee: Advisory Report to the Secretary of Health and Human Services and the Secretary of Agriculture. U.S. Department of Agriculture. Washington, DC (2015).\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n4Micha R, Wallace Sarah K, Mozaffarian D. Red and processed meat consumption and risk of incident coronary heart disease, stroke, and diabetes mellitus. Circulation. (2010) 121:2271–83. doi: 10.1161/CIRCULATIONAHA.109.924977\r\n\r\n5Pan A, Sun Q, Bernstein AM, Manson JE, Willett WC, Hu FB. Changes in red meat consumption and subsequent risk of type 2 diabetes mellitus: three cohorts of US men and womenred meat consumption and type 2 diabetes riskred meat consumption and type 2 diabetes risk. JAMA Internal Med. (2013) 173:1328–35. doi: 10.1001/jamainternmed.2013.6633\r\n\r\n6Papier, Keren, et al. \"Comparison of major protein-source foods and other food groups in meat-eaters and non-meat-eaters in the EPIC-Oxford cohort.\" <i>Nutrients</i> 11.4 (2019): 824.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nHeather J. Leidy, Rebecca J. Lepping, Cary R. Savage, Corey T. Harris.” Neural Responses to Visual Food Stimuli After a Normal vs. Higher Protein Breakfast in Breakfast-Skipping Teens: A Pilot fMRI Study.” Obesity, 5 May 2011.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Protein Foods','','inherit','closed','closed','','1496-revision-v1','','','2020-12-16 01:45:59','2020-12-16 01:45:59','',1496,'https://www.drfields.com/uncategorized/1496-revision-v1/',0,'revision','',0),(4346,9,'2020-12-16 01:50:33','2020-12-16 01:50:33','<h3><img class=\"alignleft size-full wp-image-1142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Healthy-Breakfast.jpg\" alt=\"Healthy Breakfast\" width=\"200\" height=\"300\" />Protein Foods and Our Health</h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nNo matter our age, an intake of high-quality protein foods is necessary in adequate amounts to maintain health. Protein intake is necessary for the growth, development, and maintenance of skeletal muscle tissue.\r\n\r\nSkeletal muscle helps us to be physically strong. And building muscle over the years also helps to safeguard against the muscle mass decline that results with age. Both physical activity and dietary factors, such as protein intake, influence growth of muscle mass.  Many protein recommendations, like the RDA, are set to cover basic needs. But higher protein intake might be necessary for optimizing muscle mass.(1)\r\n<h3>Eat A Variety of High Quality Protein Foods</h3>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nConsuming a variety of high quality protein foods to ensure a sufficient supply of amino acids for lean mass and an overall healthy diet quality (2). And many have chosen to get their protein from plant-based sources. \"Indeed, there has been a shift toward plant-based dietary patterns within dietary guidelines to presumably maximize population health benefits and to support environmental sustainability \"(3). Studies have shown that minimizing red meat consumption is favorable to reduce disease the risk of type 2 diabetes, cardiovascular disease, and other conditions. (4,5).\r\n<h3>Plant-Based Diets</h3>\r\nAre plant based diets healthier? Interestingly, when compared with regular meat-eaters, those who eat lower quantities of meat, and non-meat-eaters were younger, had a higher education level, a lower socio-economic status, were less likely to smoke and consume alcohol, had higher levels of physical activity, a a lower BMI (6).\r\n<h3>Protein for Breakfast</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nBy eating a breakfast high in protein, not only increases satiety and reduces hunger throughout the day, but it reduces the brain signals controlling food motivation and reward-driven eating behavior.\r\n\r\nHeather J. Leidy, from University of Missouri (Missouri, USA), and colleagues assessed physiological hunger and satiety by measuring perceived appetite sensations and hormonal markers in combination with psychological reward-driven motivation to eat, using functional MRI imaging (fMRI) to identify brain activation in specific regions related to food motivation and reward.(7)\r\n<h3>Breakfast Skipping Is Linked to Unhealthy Snacking and Weight Gain</h3>\r\nThe researchers focused on teenagers, who often skip breakfast. Interestingly, breakfast skipping has been strongly associated with unhealthy snacking, overeating (especially at night), weight gain and obesity. For three weeks, the teens either continued to skip breakfast or consumed 500-calorie breakfast meals containing cereal and milk (which contained normal quantities of protein) or higher protein meals prepared as Belgium waffles, syrup and yogurt. At the end of each week, the volunteers completed appetite and satiety questionnaires. Right before lunch, the volunteers completed a brain scan, using fMRI, to identify brain activation responses.\r\n\r\nCompared to breakfast skipping, both breakfast meals led to increased fullness and reductions in hunger throughout the morning. fMRI results showed that brain activation in regions controlling food motivation and reward was reduced prior to lunch time when breakfast was consumed in the morning. Additionally, the higher protein breakfast led to even greater changes in appetite, satiety and reward-driven eating behavior compared to the normal protein breakfast. The team concluded, “The addition of breakfast led to alterations in brain activation in regions previously associated with food motivation and reward with additional alterations following the higher-protein breakfast.”(7)\r\n<h3>Choose Fresh, Non-Processed Food</h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nWhether you are a meat eater or not, a healthy eating pattern will include a variety of high-quality protein foods throughout the day. Staying away from processed and sugary foods is also encouraged. Try to stick to fresh, non-processed foods when choosing your protein food sources for a healthier you.\r\n\r\n</div>\r\nWant more information on healthy eating? Read our article about <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">Fat Fighting Foods</a> by clicking <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">here.</a>\r\n\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n1Burd, Nicholas A., et al. \"Dietary protein quantity, quality, and exercise are key to healthy living: a muscle-centric perspective across the lifespan.\" <i>Frontiers in nutrition</i> 6 (2019): 83.\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n2Phillips SM, Fulgoni VL III, Heaney RP, Nicklas TA, Slavin JL, Weaver CM. Commonly consumed protein foods contribute to nutrient intake, diet quality, and nutrient adequacy. Am J Clin Nutr. (2015) 101:1346S−52S. doi: 10.3945/ajcn.114.084079\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n3Committee DGA. Scientific Report of the 2015 Dietary Guidelines Advisory Committee: Advisory Report to the Secretary of Health and Human Services and the Secretary of Agriculture. U.S. Department of Agriculture. Washington, DC (2015).\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n4Micha R, Wallace Sarah K, Mozaffarian D. Red and processed meat consumption and risk of incident coronary heart disease, stroke, and diabetes mellitus. Circulation. (2010) 121:2271–83. doi: 10.1161/CIRCULATIONAHA.109.924977\r\n\r\n5Pan A, Sun Q, Bernstein AM, Manson JE, Willett WC, Hu FB. Changes in red meat consumption and subsequent risk of type 2 diabetes mellitus: three cohorts of US men and womenred meat consumption and type 2 diabetes riskred meat consumption and type 2 diabetes risk. JAMA Internal Med. (2013) 173:1328–35. doi: 10.1001/jamainternmed.2013.6633\r\n\r\n6Papier, Keren, et al. \"Comparison of major protein-source foods and other food groups in meat-eaters and non-meat-eaters in the EPIC-Oxford cohort.\" <i>Nutrients</i> 11.4 (2019): 824.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nHeather J. Leidy, Rebecca J. Lepping, Cary R. Savage, Corey T. Harris.” Neural Responses to Visual Food Stimuli After a Normal vs. Higher Protein Breakfast in Breakfast-Skipping Teens: A Pilot fMRI Study.” Obesity, 5 May 2011.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Protein Foods','','inherit','closed','closed','','1496-revision-v1','','','2020-12-16 01:50:33','2020-12-16 01:50:33','',1496,'https://www.drfields.com/uncategorized/1496-revision-v1/',0,'revision','',0),(4347,9,'2020-12-16 01:56:28','2020-12-16 01:56:28','<h3><img class=\"alignleft size-full wp-image-1142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Healthy-Breakfast.jpg\" alt=\"Healthy Breakfast\" width=\"200\" height=\"300\" />Protein Foods and Our Health</h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nNo matter our age, an intake of high-quality protein foods is necessary in adequate amounts to maintain health. Protein intake is necessary for the growth, development, and maintenance of skeletal muscle tissue.\r\n\r\nSkeletal muscle helps us to be physically strong. And building muscle over the years also helps to safeguard against the muscle mass decline that results with age. Both physical activity and dietary factors, such as protein intake, influence growth of muscle mass.  And many protein recommendations, like the RDA, are only set to cover basic needs. But higher protein intake might be necessary for optimizing muscle mass.(1)\r\n<h3>Eat A Variety of High Quality Protein Foods</h3>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nConsuming a variety of high quality protein foods to ensure a sufficient supply of amino acids for lean mass and an overall healthy diet quality (2). And many have chosen to get their protein from plant-based sources. \"Indeed, there has been a shift toward plant-based dietary patterns within dietary guidelines to presumably maximize population health benefits and to support environmental sustainability \"(3). Studies have shown that minimizing red meat consumption is favorable to reduce disease the risk of type 2 diabetes, cardiovascular disease, and other conditions. (4,5).\r\n<h3>Plant-Based Diets</h3>\r\nAre plant based diets healthier? Interestingly, when compared with regular meat-eaters, those who eat lower quantities of meat, and non-meat-eaters were younger, had a higher education level, a lower socio-economic status, were less likely to smoke and consume alcohol, had higher levels of physical activity, a a lower BMI (6).\r\n<h4>Protein for Breakfast</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nBy eating a breakfast high in protein, not only increases satiety and reduces hunger throughout the day, but it reduces the brain signals controlling food motivation and reward-driven eating behavior.\r\n<h4><em>What Do Researchers Say About Eating Breakfast?</em></h4>\r\nHeather J. Leidy, from University of Missouri (Missouri, USA), and colleagues assessed physiological hunger and satiety by measuring perceived appetite sensations and hormonal markers in combination with psychological reward-driven motivation to eat, using functional MRI imaging (fMRI) to identify brain activation in specific regions related to food motivation and reward.(7)\r\n<h4>Breakfast Skipping Is Linked to Unhealthy Snacking and Weight Gain</h4>\r\nThe researchers focused on teenagers, who often skip breakfast. Interestingly, breakfast skipping has been strongly associated with unhealthy snacking, overeating (especially at night), weight gain and obesity. For three weeks, the teens either continued to skip breakfast or consumed 500-calorie breakfast meals containing cereal and milk (which contained normal quantities of protein) or higher protein meals prepared as Belgium waffles, syrup and yogurt. At the end of each week, the volunteers completed appetite and satiety questionnaires. Right before lunch, the volunteers completed a brain scan, using fMRI, to identify brain activation responses.\r\n<h4>Eating Breakfast Reduces Hunger Throughout the Morning</h4>\r\nCompared to breakfast skipping, both breakfast meals led to increased fullness and reductions in hunger throughout the morning. fMRI results showed that brain activation in regions controlling food motivation and reward was reduced prior to lunch time when breakfast was consumed in the morning. Additionally, the higher protein breakfast led to even greater changes in appetite, satiety and reward-driven eating behavior compared to the normal protein breakfast. The team concluded, “The addition of breakfast led to alterations in brain activation in regions previously associated with food motivation and reward with additional alterations following the higher-protein breakfast.”(7)\r\n<h3>Choose Fresh, Non-Processed Food</h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nWhether you are a meat eater or not, a healthy eating pattern will include a variety of high-quality protein foods throughout the day. And staying away from processed and sugary foods is also encouraged. Instead, try to stick to fresh, non-processed foods when choosing your protein food sources for a healthier you.\r\n\r\n</div>\r\nWant more information on healthy eating? Read our article about <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">Fat Fighting Foods</a> by clicking <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">here.</a>\r\n\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n1Burd, Nicholas A., et al. \"Dietary protein quantity, quality, and exercise are key to healthy living: a muscle-centric perspective across the lifespan.\" <i>Frontiers in nutrition</i> 6 (2019): 83.\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n2Phillips SM, Fulgoni VL III, Heaney RP, Nicklas TA, Slavin JL, Weaver CM. Commonly consumed protein foods contribute to nutrient intake, diet quality, and nutrient adequacy. Am J Clin Nutr. (2015) 101:1346S−52S. doi: 10.3945/ajcn.114.084079\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n3Committee DGA. Scientific Report of the 2015 Dietary Guidelines Advisory Committee: Advisory Report to the Secretary of Health and Human Services and the Secretary of Agriculture. U.S. Department of Agriculture. Washington, DC (2015).\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n4Micha R, Wallace Sarah K, Mozaffarian D. Red and processed meat consumption and risk of incident coronary heart disease, stroke, and diabetes mellitus. Circulation. (2010) 121:2271–83. doi: 10.1161/CIRCULATIONAHA.109.924977\r\n\r\n5Pan A, Sun Q, Bernstein AM, Manson JE, Willett WC, Hu FB. Changes in red meat consumption and subsequent risk of type 2 diabetes mellitus: three cohorts of US men and womenred meat consumption and type 2 diabetes riskred meat consumption and type 2 diabetes risk. JAMA Internal Med. (2013) 173:1328–35. doi: 10.1001/jamainternmed.2013.6633\r\n\r\n6Papier, Keren, et al. \"Comparison of major protein-source foods and other food groups in meat-eaters and non-meat-eaters in the EPIC-Oxford cohort.\" <i>Nutrients</i> 11.4 (2019): 824.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nHeather J. Leidy, Rebecca J. Lepping, Cary R. Savage, Corey T. Harris.” Neural Responses to Visual Food Stimuli After a Normal vs. Higher Protein Breakfast in Breakfast-Skipping Teens: A Pilot fMRI Study.” Obesity, 5 May 2011.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Protein Foods','','inherit','closed','closed','','1496-revision-v1','','','2020-12-16 01:56:28','2020-12-16 01:56:28','',1496,'https://www.drfields.com/uncategorized/1496-revision-v1/',0,'revision','',0),(4348,9,'2020-12-16 01:57:10','2020-12-16 01:57:10','<h3><img class=\"alignleft size-full wp-image-1142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Healthy-Breakfast.jpg\" alt=\"Healthy Breakfast\" width=\"200\" height=\"300\" />Protein Foods and Our Health</h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nNo matter our age, an intake of high-quality protein foods is necessary in adequate amounts to maintain health. Protein intake is necessary for the growth, development, and maintenance of skeletal muscle tissue.\r\n\r\nSkeletal muscle helps us to be physically strong. And building muscle over the years also helps to safeguard against the muscle mass decline that results with age. Both physical activity and dietary factors, such as protein intake, influence growth of muscle mass.  And many protein recommendations, like the RDA, are only set to cover basic needs. But higher protein intake might be necessary for optimizing muscle mass.(1)\r\n<h3>Eat A Variety of High Quality Protein Foods</h3>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nConsuming a variety of high quality protein foods to ensure a sufficient supply of amino acids for lean mass and an overall healthy diet quality (2). And many have chosen to get their protein from plant-based sources. \"Indeed, there has been a shift toward plant-based dietary patterns within dietary guidelines to presumably maximize population health benefits and to support environmental sustainability \"(3). Studies have shown that minimizing red meat consumption is favorable to reduce disease the risk of type 2 diabetes, cardiovascular disease, and other conditions. (4,5).\r\n<h3>Plant-Based Diets</h3>\r\nAre plant based diets healthier? Interestingly, when compared with regular meat-eaters, those who eat lower quantities of meat, and non-meat-eaters were younger, had a higher education level, a lower socio-economic status, were less likely to smoke and consume alcohol, had higher levels of physical activity, a a lower BMI (6).\r\n<h4>Protein for Breakfast</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nBy eating a breakfast high in protein, not only increases satiety and reduces hunger throughout the day, but it reduces the brain signals controlling food motivation and reward-driven eating behavior.\r\n<h4><em>What Do Researchers Say About Eating Breakfast?</em></h4>\r\nHeather J. Leidy, from University of Missouri (Missouri, USA), and colleagues assessed physiological hunger and satiety by measuring perceived appetite sensations and hormonal markers in combination with psychological reward-driven motivation to eat, using functional MRI imaging (fMRI) to identify brain activation in specific regions related to food motivation and reward.(7)\r\n<h4>Breakfast Skipping Is Linked to Unhealthy Snacking and Weight Gain</h4>\r\nThe researchers focused on teenagers, who often skip breakfast. Interestingly, breakfast skipping has been strongly associated with unhealthy snacking, overeating (especially at night), weight gain and obesity. For three weeks, the teens either continued to skip breakfast or consumed 500-calorie breakfast meals containing cereal and milk (which contained normal quantities of protein) or higher protein meals prepared as Belgium waffles, syrup and yogurt. At the end of each week, the volunteers completed appetite and satiety questionnaires. Right before lunch, the volunteers completed a brain scan, using fMRI, to identify brain activation responses.\r\n\r\nCompared to breakfast skipping, both breakfast meals led to increased fullness and reductions in hunger throughout the morning. fMRI results showed that brain activation in regions controlling food motivation and reward was reduced prior to lunch time when breakfast was consumed in the morning. Additionally, the higher protein breakfast led to even greater changes in appetite, satiety and reward-driven eating behavior compared to the normal protein breakfast. The team concluded, “The addition of breakfast led to alterations in brain activation in regions previously associated with food motivation and reward with additional alterations following the higher-protein breakfast.”(7)\r\n<h3>Choose Fresh, Non-Processed Food</h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nWhether you are a meat eater or not, a healthy eating pattern will include a variety of high-quality protein foods throughout the day. And staying away from processed and sugary foods is also encouraged. Instead, try to stick to fresh, non-processed foods when choosing your protein food sources for a healthier you.\r\n\r\n</div>\r\nWant more information on healthy eating? Read our article about <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">Fat Fighting Foods</a> by clicking <a href=\"https://www.drfields.com/articles/health-news/fat-fighting-foods/\">here.</a>\r\n\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>References</h3>\r\n1Burd, Nicholas A., et al. \"Dietary protein quantity, quality, and exercise are key to healthy living: a muscle-centric perspective across the lifespan.\" <i>Frontiers in nutrition</i> 6 (2019): 83.\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n2Phillips SM, Fulgoni VL III, Heaney RP, Nicklas TA, Slavin JL, Weaver CM. Commonly consumed protein foods contribute to nutrient intake, diet quality, and nutrient adequacy. Am J Clin Nutr. (2015) 101:1346S−52S. doi: 10.3945/ajcn.114.084079\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n3Committee DGA. Scientific Report of the 2015 Dietary Guidelines Advisory Committee: Advisory Report to the Secretary of Health and Human Services and the Secretary of Agriculture. U.S. Department of Agriculture. Washington, DC (2015).\r\n<div class=\"page\" title=\"Page 9\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n4Micha R, Wallace Sarah K, Mozaffarian D. Red and processed meat consumption and risk of incident coronary heart disease, stroke, and diabetes mellitus. Circulation. (2010) 121:2271–83. doi: 10.1161/CIRCULATIONAHA.109.924977\r\n\r\n5Pan A, Sun Q, Bernstein AM, Manson JE, Willett WC, Hu FB. Changes in red meat consumption and subsequent risk of type 2 diabetes mellitus: three cohorts of US men and womenred meat consumption and type 2 diabetes riskred meat consumption and type 2 diabetes risk. JAMA Internal Med. (2013) 173:1328–35. doi: 10.1001/jamainternmed.2013.6633\r\n\r\n6Papier, Keren, et al. \"Comparison of major protein-source foods and other food groups in meat-eaters and non-meat-eaters in the EPIC-Oxford cohort.\" <i>Nutrients</i> 11.4 (2019): 824.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nHeather J. Leidy, Rebecca J. Lepping, Cary R. Savage, Corey T. Harris.” Neural Responses to Visual Food Stimuli After a Normal vs. Higher Protein Breakfast in Breakfast-Skipping Teens: A Pilot fMRI Study.” Obesity, 5 May 2011.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Protein Foods','','inherit','closed','closed','','1496-revision-v1','','','2020-12-16 01:57:10','2020-12-16 01:57:10','',1496,'https://www.drfields.com/uncategorized/1496-revision-v1/',0,'revision','',0),(4349,8,'2020-12-16 18:55:56','2020-12-16 18:55:56','','iwp_log_5fda583cc617d','','publish','closed','closed','','iwp_log_5fda583cc617d','','','2020-12-16 18:55:56','2020-12-16 18:55:56','',0,'https://www.drfields.com/iwp_log/iwp_log_5fda583cc617d/',0,'iwp_log','',0),(4350,8,'2020-12-16 18:57:27','2020-12-16 18:57:27','','iwp_log_5fda589726558','','publish','closed','closed','','iwp_log_5fda589726558','','','2020-12-16 18:57:27','2020-12-16 18:57:27','',0,'https://www.drfields.com/iwp_log/iwp_log_5fda589726558/',0,'iwp_log','',0),(4351,8,'2020-12-16 18:57:49','2020-12-16 18:57:49','','iwp_log_5fda58adab696','','publish','closed','closed','','iwp_log_5fda58adab696','','','2020-12-16 18:57:49','2020-12-16 18:57:49','',0,'https://www.drfields.com/iwp_log/iwp_log_5fda58adab696/',0,'iwp_log','',0),(4352,9,'2020-12-18 00:01:15','2020-12-18 00:01:15','<h3>Are The Supplements You\'re Taking Good Quality Supplements?</h3>\nWhile everyone loves a bargain, there are some problems with shopping for supplements using only price as a guideline. The difference in quality between different brands of supplements is often considerable. And taking quality supplements to help stay healthy during the COVID-19 pandemic is especially important!\n<h3>Coronavirus and Supplementation</h3>\nPlus, since people with low immunity are at a higher risk for coronavirus, then it would be a good idea to boost our immune systems in order to reduce our risk of acquiring it. Supplementation is one part of boosting our immunity. Following a healthy lifestyle, and eating a proper diet will help as well.\n\nThere are many micronutrients (vitamins, minerals, antioxidants, etc.) that research has shown are very beneficial to our health. And in particular, very beneficial to our immune systems.\n<h4><strong>Vitamin D Helps Reduce Viral Upper Respiratory Infections </strong></h4>\nVitamin D is associated with a reduction in the incidence of colds and influenza.  People with lower vitamin D levels have a higher the prevalence of upper respiratory tract infections from viruses like coronaviruses, rhinoviruses, and influenza. And a single high-dose of vitamin D, combined with antibiotics has been shown to improve and resolve pneumonia.1\n\nOther antioxidants, such as alpha lipoic acid, vitamin C, and vitamin E, if  already in the system, are effective for the treatment of Acute Respiratory Distress.\n\nGetting overly stressed increases our chance of getting sick. Keep in mind that the immune system is suppressed from excessive exercise, emotional stress, and lack of sleep.\n\n[caption id=\"attachment_4356\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4356\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Quality-Supplements-500x500.png\" alt=\"Quality Supplements\" width=\"500\" height=\"500\" /> <strong><em>Boost Your Immune System with Quality Supplements</em></strong>[/caption]\n<h4><strong>Various Flavonoid Antioxidants, Such as Quercetin and Grape Seed Extract, Demonstrate Anti-Viral Activity</strong></h4>\nFlavonoid antioxidants, such as quercetin and resveratrol exhibit anti-viral activity against common viruses that cause upper respiratory tract infections, including influenza A (H1N1) and B. And the compounds found in green tea extract, have shown anti-viral activity against the SARS coronavirus. <b>2</b> Since COVID-19 is essentially SARS2, it wouldn\'t be a bad idea to take these micronutrients.\n\nGrape seed extract exhibits potent antioxidant capacity, as well as anti‑bacterial, anti‑viral, anti‑carcinogenic, anti‑inflammatory and anti‑allergic actions. Respiratory viruses cause inflammation in the epithelial cells of the lungs (as does COVID-19), and increase the risk of respiratory distress and pneumonia. Grape seed extract inhibits the abnormal release of proinflammatory cytokines caused by the virus. <strong>3,4</strong>\n<h3>Boost Your Immune System with Quality Supplements</h3>\nAgain, since a low immunity increases the risk of infections, then it makes sense that boosting immunity will help you to remain healthy. And by boosting immunity, your immune system will be better able to deal with the onslaught of viruses and bacteria.\n\nIf you are not taking quality nutritional supplements, you might want to consider doing so, after first consulting with your own licensed health care professional.\n<h3>Choose Quality Supplements</h3>\nQuality pure raw ingredients and quality manufacturing of potent supplements make a huge difference in effectiveness. Not all supplements are created equally.\n\nWe want our supplements to help provide better healthy. When you choose your wine or ice cream, the only physiologic concern is taste. But what a difference between the quality of a cheap product and a good one. Compare the taste of a premium ice cream to the cheap store brand. Compare inexpensive wine to Lafite Rothschild. It should be obvious that the difference between the quality of supplements should be at least as great.\n<h4><em>Quality and Bioavailability Are Important</em></h4>\nBioavailability has to do with how well the supplement is utilized by the body. There is gasoline in coal. But you can’t just run your car on it. Similarly, there are ingredients listed on a supplement’s label that are as useless to your body as coal is to your automobile.\n\nWhat about the quality of components? Take calcium, for example. Oyster shell has calcium, but the body can’t use it (just like your car can’t use the gasoline in coal). Calcium carbonate is cheap, but is not well absorbed. Calcium citrate is much more expensive than the oyster shell or the carbonate. A high quality supplement will use the citrate, a poor one will use oyster shell. There are similar quality issues for just about every vitamin and herb.\n<h4><em>Read the Label on Supplements</em></h4>\nMany companies don’t actually produce their own vitamins, and they don’t test what they buy. Without testing, you can be lied to about the content of the product. Second, by the time the product changes hands several times, anywhere along the line someone can substitute cheaper or even phony ingredients and not be held accountable. The product can be contaminated when it changes hands. Familiarize yourself with ingredients, and read the label.\n<h4><em>Do Your Research</em></h4>\nAre the products tested for quality or for contaminants? Where did the materials come from? Most of the botanicals purchased in the US come from the Far East. There are manufacturing practices in some Third World countries that would surprise many Americans.\n\nHow is the tablet or capsule made? Bioavailability can be affected by something as simple as how the tablet is made. Many manufacturers use inert ingredients that interfere with the absorption of the nutrients. Even capsules can contain inert ingredients that interfere with absorption.\n\nThere’s a lot to know when buying supplements and herbs. Educate yourself about the product quality, and realize that self-treatment with bargain basement supplements is not a good idea.\n<h3>A Combination Approach For Staying Healthy</h3>\nFinally, just taking even quality nutritional supplements is not sufficient. We all need to eat well, get regular restorative sleep, reduce stress, exercise, maintain a healthy weight, not smoke, and use alcohol in moderation. All of these factors affect your immune system’s ability to keep you healthy. Now, as always, it is important to try to follow all of these recommendations as much as possible in order to stay healthy.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h3>References</h3>\n<ol>\n 	<li>Slow S, et al. Effect of adjunctive single high-dose vitamin D3 on outcome of community-acquired pneumonia in hospitalised adults: The VIDCAPS randomised controlled trial. Sci Rep. 2018 Sep 14;8(1):13829.</li>\n 	<li>Park HR, et al. Synthesis and antiviral evaluation of 7-O-arylmethylquercetin derivatives against SARS-associated coronavirus (SCV) and hepatitis C virus (HCV). Arch Pharm Res. 2012 Jan;35(1):77-85.</li>\n 	<li>Kim SJ, et al. Pretreatment with a grape seed proanthocyanidin extract downregulates proinflammatory cytokine expression in airway epithelial cells infected with respiratory syncytial virus. Mol Med Rep. 2019 Apr;19(4):3330-3336.</li>\n 	<li>McNamara, Ladd. \"Covid-19fighting fear and the coronavirus pandemic with precautions and quality supplements.\" <i>medRxiv</i>(2020).</li>\n</ol>','Quality Supplements and COVID-19','','inherit','closed','closed','','1494-autosave-v1','','','2020-12-18 00:01:15','2020-12-18 00:01:15','',1494,'https://www.drfields.com/uncategorized/1494-autosave-v1/',0,'revision','',0),(4353,9,'2020-12-17 22:59:30','2020-12-17 22:59:30','<h3>Are The Supplements You\'re Taking Good Quality Supplements?</h3>\r\nWhile everyone loves a bargain, there are some problems with shopping for supplements using only price as a guideline. The difference in quality between different brands of supplements is often considerable. The supplement quality issue alone makes it important that you get professional help with your nutritional supplementation.\r\n<h3>Coronavirus and Supplementation</h3>\r\nPlus, since people with low immunity are at a higher risk for coronavirus, then it would be a good idea to boost our immune systems in order to reduce our risk of acquiring it. Supplementation is one part of boosting our immunity. Following a healthy lifestyle, and eating a proper diet will help as well.\r\n\r\nThere are many micronutrients (vitamins, minerals, antioxidants, etc.) that research has shown are very beneficial to our health, and in particular, very beneficial to our immune systems.\r\n<h4><strong>Vitamin D Helps Reduce Viral Upper Respiratory Infections </strong></h4>\r\nVitamin D is associated with a reduction in the incidence of colds and influenza.  People with lower vitamin D levels have a higher the prevalence of upper respiratory tract infections from viruses like coronaviruses, rhinoviruses, and influenza. And a single high-dose of vitamin D, combined with antibiotics has been shown to improve, and resolve pneumonia.1\r\n\r\nAnimal models are useful for studying the results of micronutrients, as it allows researchers to cause illness, and observe the direct results of treatment. Such studies have shown that various antioxidants, such as alpha lipoic acid, vitamin C, and vitamin E are beneficial in the premedication of Acute Respiratory Distress. In other words, if antioxidants are already in the system, treatment of Acute Respiratory Distress is more effective. <strong>(18)</strong>\r\n\r\nOf course, we need to do more than just take nutritional supplements, such as eat well, get regular restorative sleep, reduce stress, exercise, maintain a healthy weight, not smoke, use alcohol in moderation or not at all, etc. All these factors affect your immune system’s ability to keep you healthy.\r\n\r\nViral upper respiratory tract infections occur frequently in young people who are overly stressed. The immune system is suppressed from excessive exercise, emotional stress, and lack of sleep. One case study showed that a combination of improved sleep, vitamin D supplementation, along with quercetin (a flavonoid antioxidant) significantly reduced the frequency of recurrent upper respiratory tract infections. <strong>(19)</strong>\r\n<h4><strong>Various Flavonoid Antioxidants, Such as Quercetin, Stilbenes, and Grape Seed Extract, Demonstrate Anti-Viral Activity</strong></h4>\r\n<img class=\"wp-image-1666 alignright\" src=\"https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm-1024x683.jpg\" sizes=\"(max-width: 400px) 100vw, 400px\" srcset=\"https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm-1024x683.jpg 1024w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm-300x200.jpg 300w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm-768x512.jpg 768w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm-1536x1025.jpg 1536w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm.jpg 1800w\" alt=\"\" width=\"400\" height=\"267\" />Flavonoid antioxidants, such as quercetin and resveratrol exhibit anti-viral activity against common viruses that cause upper respiratory tract infections, including influenza A (H1N1) and B. (20 – 26) Of note, <strong>stilbene</strong> derivatives, (including resveratrol), quercitin derivatives, and the compounds found in green tea extract, have shown anti-viral activity against the SARS coronavirus. <strong>(27 – 30)</strong> Since COVID-19 is essentially SARS2, you cannot blame anyone using such micronutrients at this time.\r\n\r\nGrape seed extract (proanthocyanidin bioflavonoid) exhibit potent antioxidant capacity, as well as anti‑bacterial, anti‑viral, anti‑carcinogenic, anti‑inflammatory and anti‑allergic actions. One significant way respiratory viruses cause death is by  causing an overwhelming system-wide inflammation, known as cytokine storm. Respiratory viruses cause inflammation in the epithelial cells of the lungs (as does COVID-19), and increase the risk of respiratory distress and pneumonia. Grape seed extract inhibits the abnormal release of proinflammatory cytokines caused by the virus. <strong>(31)</strong>\r\n\r\nI have been recommending high quality supplements to my patients since 1995, and although retired from medical practice, I have been actively researching nutritional supplements for over 25 years. If you knew what I know about the benefits of quality supplements, you would never miss a day of taking what I take, especially now with this pandemic; particularly if you have an underlying chronic illness.\r\n\r\nWe know that a low immunity increases the risk of infections, and it stands to reason, that boosting immunity will give you a fighting chance to remain healthy. If nothing else, if you get sick, by boosting immunity, your immune system will be primed to deal with viruses and bacteria, and have the energy needed to cope with the illness, reduce the risk of complications, and shorten the recovery time.\r\n\r\nAlthough, I have been taking a wide range of quality nutritional supplements, twice daily for over 25 years, since COVID-19 first started showing in the U.S, I increased the dose of certain supplements that I have already been taking, particularly a quality beta glucan supplement with zinc, and a quality grape seed extract with vitamin C. If you are not yet taking quality nutritional supplements, such as what I listed below, consider doing so, after first consulting with your own licensed health care professional, of course.\r\n<h4><strong>Beta Glucan Supplement</strong></h4>\r\n<img class=\"alignright wp-image-1360\" src=\"https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_102957589-sm-1024x680.jpg\" sizes=\"(max-width: 400px) 100vw, 400px\" srcset=\"https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_102957589-sm-1024x680.jpg 1024w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_102957589-sm-300x199.jpg 300w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_102957589-sm-768x510.jpg 768w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_102957589-sm-1536x1020.jpg 1536w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_102957589-sm.jpg 1600w\" alt=\"\" width=\"400\" height=\"266\" />\r\n\r\nBiologically-active beta glucan polysaccharides are one of the most studied micronutrient immunomodulators that have multiple modes of action. According to many studies, they exert immunomodulatory, anti-inflammatory, anti-carcinogenic, anti-fungal, anti-bacterial, and anti-viral activity, and are therefore an obvious choice for preventing and treating upper respiratory tract infections caused by the rhinoviruses and coronaviruses. <strong>(32)</strong> Beta glucans have proven therapeutic and preventive anti-viral effects against respiratory tract infections in children, adults, and elite athletes. <strong>(33)</strong>\r\n\r\nBeta glucans are fiber polysaccharides derived from the cell membranes of the reishi and shiitake mushrooms, as well as from baker’s yeast extract (Saccharomyces <em>cerevisiae</em>). These polysaccharides (chains of sugar molecules) do not breakdown in the stomach, and therefore do not have any impact on blood glucose levels, nor provide calories. The molecules pass into the intestines and then bloodstream, where they exert their effects on the white blood cells of the immune system.\r\n<h4><strong>Beta Glucans Activate Various White Blood Cells</strong></h4>\r\nBeta glucan polysaccharides directly modulate (activate or trigger) white blood cells, called macrophages, to more effectively attack and kill bacteria, mold/yeast, viruses, and cancer cells. In addition, through cytokine cell signaling, beta glucans trigger B lymphocytes and Cytotoxic T Lymphocytes (another type of white blood cells), to activate a complement and antibody response, to create a “one-two” knock-out punch to kill bacteria, cancer cells, viruses, and cells infected with viruses. Through triggering cell-signaling messenger cytokines, beta glucans trigger other white blood cells, called Natural Killer Cells to be armed with cytotoxic chemicals to be able to destroy bacteria, mold/yeast, viruses, and cancer cells.\r\n\r\nBeta glucans have been shown to reduce the number of viral upper respiratory tract infections (common colds, which are caused by rhinoviruses and coronaviruses), and even improves mood. <strong>(34)</strong>  One study among people between the ages of 50 – 70, showed that daily supplementation with beta glucans protected against contracting viral upper respiratory tract infections, and reduced the duration of the symptoms once infected. <strong>(35)</strong>\r\n<h4><strong>Beta Glucans Modulate a Healthy Immune Response and Prevent Cytokine Storm </strong></h4>\r\nBeta glucans heighten, or sharpen the immune response when needed, without causing an over-reaction.\r\n\r\nViral and bacterial respiratory infections can cause organ failure and death through causing widespread inflammation, known as cytokine storm. Cytokines are cell signaling biochemicals, some of which are pro-inflammatory. Cytokines recruit white blood cells to fight infections. Beta glucans cause a normal physiological release of pro-inflammatory cytokines for the recruitment of white blood cells. Most significantly, beta glucans also help prevent the over-reaction caused by the virus, specifically, cytokine storm. <strong>(36)</strong>\r\n\r\nIn addition to their anti-microbial, anti-viral, and anti-fungal effect, beta glucan polysaccharides demonstrate anti-obesity, anti-diabetic, and anti-cancer properties. The first mechanisms of action begins in the gut, where the beta glucans act as prebiotics for the digestive bacteria (probiotics). In addition beta glucans exert antioxidant, anti-inflammatory, and additional immuno-modulating activities.\r\n<h4><strong>Micronutrients Work Synergistically with Other Micronutrients</strong></h4>\r\nBeta glucans work synergistically with other supplements, to work better together to prevent and fight infections of all types. Various micronutrients work synergistically with beta-glucan, such as vitamin D, vitamin C, resveratrol, quercetin, elderberry extract, and grape seed extract.\r\n\r\nFrom all that I have studied and experienced, beta glucans are so powerful in exerting antiviral activity, I believe this is one critical supplement to be taking at this time.\r\n\r\nOrgan transplant recepients should NOT take beta glucans, on the chance that beta glucans may cause the immune system to overcome the immuno-suppressant medications and damage the transplanted organ.\r\n\r\nFor those with an autoimmune disease, you may wish to avoid beta glucan supplements on the theoretical risk of causing the immune system to flareup. However, from all reports I have heard for over three years now, those with autoimmune disorders who are taking 550 mg of beta glucan polysaccharides per day are not experiencing flareups. I only make this warning out of an abundance of caution.\r\n\r\nIt is imperative to understand that I am providing my suggestions and considerations as information only, not as medical advice. Please see the medical disclaimer in the footer about consulting with your personal physician.\r\n<h4><strong>Probiotics</strong></h4>\r\n<img class=\"alignright wp-image-1362\" src=\"https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_20489962-sm-1024x768.jpg\" sizes=\"(max-width: 400px) 100vw, 400px\" srcset=\"https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_20489962-sm-1024x768.jpg 1024w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_20489962-sm-300x225.jpg 300w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_20489962-sm-768x576.jpg 768w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_20489962-sm-1536x1152.jpg 1536w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_20489962-sm.jpg 1600w\" alt=\"\" width=\"400\" height=\"300\" />Probiotics are beneficial bacteria that inhabit our intestines. They are among many bacteria that make up our microbiome. Among many roles that the microbiome plays, supporting the immune system is a critical one. <strong>(37, 38)</strong>\r\n\r\nMost people do not have a healthy, or at least optimal microbiome. To support your gastro-intestinal tract, reduce gas, bloating, diarrhea, constipation, improve digestion, improve mood, and support your immune system, consider taking probiotics daily.\r\n\r\nThe probiotics that have scientifically shown to be beneficial to seed the microbiome, to create a beneficial milieu for other beneficial bacteria to flourish, and stave off the bad bacteria, provide numerous benefits, including reducing upper respiratory infections, are Bifidobacterium BB-12 and Lactobacillus <em>rhamnosus </em>LGG. <strong>(39 – 42)</strong> These two strains can remain viable for up to 18 months at room temperature, and they survive the harsh acidic environment of the stomach, and pass into the intestines to duplicate rapidly to establish a healthy microbiome.\r\n<h4><strong>A Boost of Vitamin C with Elderberry Extract, Zinc, and Echinacea</strong></h4>\r\nAnother supplement that may provide beneficial effects for respiratory infections, at least in the short-term (8 weeks or less), is echinacea.  Studies are mixed on its benefits, but it is seems to be more effective when combined with other micronutrients, particularly when combined with vitamin C, zinc, and elderberry extract. <strong>(43 – 46)</strong>\r\n\r\nSince echinacea should not be used for more than 8 weeks, as it may elevate liver enzymes, or have a negative effect on immunity, I suggest reserving this supplement when actually feeling an illness coming on.\r\n<h3><a name=\"fourteen\"></a><strong>Dr. Ladd’s Nutritional Supplement Considerations to Support Your Immune System</strong></h3>\r\nThe following is the basic protocol for supporting the immune system. This is not intended as medical advice, but as information only. Please consult your own personal physician prior to starting a supplement regimen. Please read full disclaimer in the footer of this webpage.\r\n\r\nNote: When taking supplements, remember that quality pure raw ingredients and quality manufacturing of potent supplements make a huge difference in effectiveness. Not all supplements are created equally.\r\n<ul>\r\n 	<li><strong><img class=\"alignright wp-image-1365\" src=\"https://laddmcnamara.com/wp-content/uploads/2020/03/MyDaily-Ladd-handful-1-1024x644.jpg\" sizes=\"(max-width: 400px) 100vw, 400px\" srcset=\"https://laddmcnamara.com/wp-content/uploads/2020/03/MyDaily-Ladd-handful-1-1024x644.jpg 1024w, https://laddmcnamara.com/wp-content/uploads/2020/03/MyDaily-Ladd-handful-1-300x189.jpg 300w, https://laddmcnamara.com/wp-content/uploads/2020/03/MyDaily-Ladd-handful-1-768x483.jpg 768w, https://laddmcnamara.com/wp-content/uploads/2020/03/MyDaily-Ladd-handful-1-1536x965.jpg 1536w, https://laddmcnamara.com/wp-content/uploads/2020/03/MyDaily-Ladd-handful-1-2048x1287.jpg 2048w\" alt=\"\" width=\"400\" height=\"251\" />Wide-Spectrum of Vitamin-Antioxidant Supplement, (preferrably one that also includes quercetin, resveratrol, curcumin, olive extract, among many other micronutrients), Twice Daily</strong></li>\r\n 	<li><strong>Multi-Mineral Supplement, (one that provides selenium, zinc, calcium, magnesium, mangenese, as well as many other minerals), Twice Daily</strong></li>\r\n 	<li><strong>Pure Fish Oil, Twice Daily</strong></li>\r\n 	<li><strong>Vitamin D, 6000 – 10,000 IU (150 – 250 mcg) per day</strong></li>\r\n 	<li><strong>Grape Seed Extract, 200 – 400 mg, Twice Daily</strong></li>\r\n 	<li><strong>Beta Glucan Polysaccharide (extracts derived from reishi and shiitake mushrooms, as well as baker’s yeast extract, preferably with zinc) 225 – 550 mg, Twice Daily.</strong></li>\r\n 	<li><strong>Probiotics, (Bifidobacterium BB-12 and Lactobacillus <em>rhamnosus </em>LGG), Once per Day.</strong></li>\r\n</ul>\r\nIf you are not sure what quality brand to take, feel free to contact me regarding what I take, knowing that there is no claim being made that it can prevent or cure COVID-19.\r\n<h3><strong>Conclusion</strong></h3>\r\nDo not fear, do not panic, and do not hoard. Let’s be aware of those most at risk, and be kind to one another. Most of all, let’s not allow ourselves to knowingly put others at risk. We can mitigate this pandemic, by protecting ourselves and others. We are all in this together, and together we will get through this.\r\n\r\nHerbs, vitamins and minerals are meant to be utilized by the body, to help with physiology and biochemistry. Think of wine or ice cream. The only physiologic concern with these products is taste, but what a difference between the quality of a cheap product and a good one. Compare the taste of a premium ice cream to the cheap store brand. Compare inexpensive wine to Lafite Rothschild. It should be obvious that the difference between the quality of vitamins and herbs should be at least as great.\r\n\r\nQuality and bioavailability are important. Bioavailability has to do with how well the supplement is utilized by the body. There is gasoline in coal, you just can’t run your car on it. Similarly, there are ingredients listed on a supplement’s label that are as useless to your body as coal is to your automobile.\r\n\r\nWhat about the quality of components? Take calcium, for example. Oyster shell has calcium, but the body can’t use it (just like your car can’t use the gasoline in coal). Calcium carbonate is cheap, but is not well absorbed. Calcium citrate is much more expensive than the oyster shell or the carbonate. A high quality supplement will use the citrate, a poor one will use oyster shell. There are similar quality issues for just about every vitamin and herb.\r\n\r\nMany companies don’t actually produce their own vitamins, and they don’t test what they buy. Without testing, you can be lied to about the content of the product. Second, by the time the product changes hands several times, anywhere along the line someone can substitute cheaper or even phony ingredients and not be held accountable. The product can be contaminated when it changes hands. Sometimes the label claims are fraudulent.\r\n\r\nAre the products tested for quality or for contaminants? Where did the materials come from? Most of the botanicals purchased in the US come from the Far East. There are manufacturing practices in some Third World countries that would surprise many Americans.\r\n\r\nHow is the tablet or capsule made? Bioavailability can be affected by something as simple as how the tablet is made. Many manufacturers use inert ingredients that interfere with the absorption of the nutrients. Even capsules can contain inert ingredients that interfere with absorption.\r\n\r\nThere’s a lot to know when buying supplements and herbs. When you learn about product quality, they will realize that self-treatment with bargain basement supplements is not a good idea.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<ol>\r\n 	<li>Slow S, et al. Effect of adjunctive single high-dose vitamin D3 on outcome of community-acquired pneumonia in hospitalised adults: The VIDCAPS randomised controlled trial. Sci Rep. 2018 Sep 14;8(1):13829.</li>\r\n</ol>\r\nMcNamara, Ladd. \"Covid-19fighting fear and the coronavirus pandemic with precautions and quality supplements.\" <i>medRxiv</i>(2020).','Taking Quality Supplements?','','inherit','closed','closed','','1494-revision-v1','','','2020-12-17 22:59:30','2020-12-17 22:59:30','',1494,'https://www.drfields.com/uncategorized/1494-revision-v1/',0,'revision','',0),(4354,9,'2020-12-17 23:39:37','2020-12-17 23:39:37','<h3>Are The Supplements You\'re Taking Good Quality Supplements?</h3>\r\nWhile everyone loves a bargain, there are some problems with shopping for supplements using only price as a guideline. The difference in quality between different brands of supplements is often considerable. The supplement quality issue alone makes it important that you get professional help with your nutritional supplementation.\r\n<h3>Coronavirus and Supplementation</h3>\r\nPlus, since people with low immunity are at a higher risk for coronavirus, then it would be a good idea to boost our immune systems in order to reduce our risk of acquiring it. Supplementation is one part of boosting our immunity. Following a healthy lifestyle, and eating a proper diet will help as well.\r\n\r\nThere are many micronutrients (vitamins, minerals, antioxidants, etc.) that research has shown are very beneficial to our health, and in particular, very beneficial to our immune systems.\r\n<h4><strong>Vitamin D Helps Reduce Viral Upper Respiratory Infections </strong></h4>\r\nVitamin D is associated with a reduction in the incidence of colds and influenza.  People with lower vitamin D levels have a higher the prevalence of upper respiratory tract infections from viruses like coronaviruses, rhinoviruses, and influenza. And a single high-dose of vitamin D, combined with antibiotics has been shown to improve, and resolve pneumonia.1\r\n\r\nOther antioxidants, such as alpha lipoic acid, vitamin C, and vitamin E, if  already in the system, are effective for the treatment of Acute Respiratory Distress.\r\n\r\nGetting overly stressed increases our chance of getting sick. The immune system is suppressed from excessive exercise, emotional stress, and lack of sleep.\r\n<h4><strong>Various Flavonoid Antioxidants, Such as Quercetin and Grape Seed Extract, Demonstrate Anti-Viral Activity</strong></h4>\r\n<img class=\"wp-image-1666 alignright\" src=\"https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm-1024x683.jpg\" sizes=\"(max-width: 400px) 100vw, 400px\" srcset=\"https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm-1024x683.jpg 1024w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm-300x200.jpg 300w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm-768x512.jpg 768w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm-1536x1025.jpg 1536w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm.jpg 1800w\" alt=\"\" width=\"400\" height=\"267\" />Flavonoid antioxidants, such as quercetin and resveratrol exhibit anti-viral activity against common viruses that cause upper respiratory tract infections, including influenza A (H1N1) and B. And the compounds found in green tea extract, have shown anti-viral activity against the SARS coronavirus. <b>2</b> Since COVID-19 is essentially SARS2, it wouldn\'t be a bad idea to take these micronutrients.\r\n\r\nGrape seed extract exhibits potent antioxidant capacity, as well as anti‑bacterial, anti‑viral, anti‑carcinogenic, anti‑inflammatory and anti‑allergic actions. Respiratory viruses cause inflammation in the epithelial cells of the lungs (as does COVID-19), and increase the risk of respiratory distress and pneumonia. Grape seed extract inhibits the abnormal release of proinflammatory cytokines caused by the virus. <strong>3,4</strong>\r\n<h3>Boost Your Immune System with Quality Supplements</h3>\r\nAgain, since a low immunity increases the risk of infections, then it makes sense that boosting immunity will help you to remain healthy. And by boosting immunity, your immune system will be better able to deal with the onslaught of viruses and bacteria.\r\n\r\nIf you are not taking quality nutritional supplements, you might want to consider doing so, after first consulting with your own licensed health care professional.\r\n<h3>Choose Quality Supplements</h3>\r\nQuality pure raw ingredients and quality manufacturing of potent supplements make a huge difference in effectiveness. Not all supplements are created equally.\r\n\r\nWe want our supplements to help provide better healthy. When you choose your wine or ice cream, the only physiologic concern is taste. But what a difference between the quality of a cheap product and a good one. Compare the taste of a premium ice cream to the cheap store brand. Compare inexpensive wine to Lafite Rothschild. It should be obvious that the difference between the quality of supplements should be at least as great.\r\n\r\nQuality and bioavailability are important. Bioavailability has to do with how well the supplement is utilized by the body. There is gasoline in coal. But you can’t just run your car on it. Similarly, there are ingredients listed on a supplement’s label that are as useless to your body as coal is to your automobile.\r\n\r\nWhat about the quality of components? Take calcium, for example. Oyster shell has calcium, but the body can’t use it (just like your car can’t use the gasoline in coal). Calcium carbonate is cheap, but is not well absorbed. Calcium citrate is much more expensive than the oyster shell or the carbonate. A high quality supplement will use the citrate, a poor one will use oyster shell. There are similar quality issues for just about every vitamin and herb.\r\n\r\nMany companies don’t actually produce their own vitamins, and they don’t test what they buy. Without testing, you can be lied to about the content of the product. Second, by the time the product changes hands several times, anywhere along the line someone can substitute cheaper or even phony ingredients and not be held accountable. The product can be contaminated when it changes hands. Sometimes the label claims are fraudulent.\r\n\r\nAre the products tested for quality or for contaminants? Where did the materials come from? Most of the botanicals purchased in the US come from the Far East. There are manufacturing practices in some Third World countries that would surprise many Americans.\r\n\r\nHow is the tablet or capsule made? Bioavailability can be affected by something as simple as how the tablet is made. Many manufacturers use inert ingredients that interfere with the absorption of the nutrients. Even capsules can contain inert ingredients that interfere with absorption.\r\n\r\nThere’s a lot to know when buying supplements and herbs. Educate yourself about the product quality, and realize that self-treatment with bargain basement supplements is not a good idea.\r\n\r\nFinally, just taking even quality nutritional supplements is not sufficient. We all need to eat well, get regular restorative sleep, reduce stress, exercise, maintain a healthy weight, not smoke, and use alcohol in moderation. All of these factors affect your immune system’s ability to keep you healthy. Now, as always, it is important to try to follow all of these recommendations as much as possible in order to stay healthy.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<ol>\r\n 	<li>Slow S, et al. Effect of adjunctive single high-dose vitamin D3 on outcome of community-acquired pneumonia in hospitalised adults: The VIDCAPS randomised controlled trial. Sci Rep. 2018 Sep 14;8(1):13829.</li>\r\n 	<li>Park HR, et al. Synthesis and antiviral evaluation of 7-O-arylmethylquercetin derivatives against SARS-associated coronavirus (SCV) and hepatitis C virus (HCV). Arch Pharm Res. 2012 Jan;35(1):77-85.</li>\r\n 	<li>Kim SJ, et al. Pretreatment with a grape seed proanthocyanidin extract downregulates proinflammatory cytokine expression in airway epithelial cells infected with respiratory syncytial virus. Mol Med Rep. 2019 Apr;19(4):3330-3336.</li>\r\n 	<li>McNamara, Ladd. \"Covid-19fighting fear and the coronavirus pandemic with precautions and quality supplements.\" <i>medRxiv</i>(2020).</li>\r\n</ol>','Taking Quality Supplements?','','inherit','closed','closed','','1494-revision-v1','','','2020-12-17 23:39:37','2020-12-17 23:39:37','',1494,'https://www.drfields.com/uncategorized/1494-revision-v1/',0,'revision','',0),(4355,9,'2020-12-17 23:54:35','2020-12-17 23:54:35','<h3>Are The Supplements You\'re Taking Good Quality Supplements?</h3>\r\nWhile everyone loves a bargain, there are some problems with shopping for supplements using only price as a guideline. The difference in quality between different brands of supplements is often considerable. And taking quality supplements to help stay healthy during the COVID-19 pandemic is especially important!\r\n<h3>Coronavirus and Supplementation</h3>\r\nPlus, since people with low immunity are at a higher risk for coronavirus, then it would be a good idea to boost our immune systems in order to reduce our risk of acquiring it. Supplementation is one part of boosting our immunity. Following a healthy lifestyle, and eating a proper diet will help as well.\r\n\r\nThere are many micronutrients (vitamins, minerals, antioxidants, etc.) that research has shown are very beneficial to our health. And in particular, very beneficial to our immune systems.\r\n<h4><strong>Vitamin D Helps Reduce Viral Upper Respiratory Infections </strong></h4>\r\nVitamin D is associated with a reduction in the incidence of colds and influenza.  People with lower vitamin D levels have a higher the prevalence of upper respiratory tract infections from viruses like coronaviruses, rhinoviruses, and influenza. And a single high-dose of vitamin D, combined with antibiotics has been shown to improve and resolve pneumonia.1\r\n\r\nOther antioxidants, such as alpha lipoic acid, vitamin C, and vitamin E, if  already in the system, are effective for the treatment of Acute Respiratory Distress.\r\n\r\nGetting overly stressed increases our chance of getting sick. Keep in mind that the immune system is suppressed from excessive exercise, emotional stress, and lack of sleep.\r\n<h4><strong>Various Flavonoid Antioxidants, Such as Quercetin and Grape Seed Extract, Demonstrate Anti-Viral Activity</strong></h4>\r\n<img class=\"wp-image-1666 alignright\" src=\"https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm-1024x683.jpg\" sizes=\"(max-width: 400px) 100vw, 400px\" srcset=\"https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm-1024x683.jpg 1024w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm-300x200.jpg 300w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm-768x512.jpg 768w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm-1536x1025.jpg 1536w, https://laddmcnamara.com/wp-content/uploads/2020/03/AdobeStock_64367068-sm.jpg 1800w\" alt=\"\" width=\"400\" height=\"267\" />Flavonoid antioxidants, such as quercetin and resveratrol exhibit anti-viral activity against common viruses that cause upper respiratory tract infections, including influenza A (H1N1) and B. And the compounds found in green tea extract, have shown anti-viral activity against the SARS coronavirus. <b>2</b> Since COVID-19 is essentially SARS2, it wouldn\'t be a bad idea to take these micronutrients.\r\n\r\nGrape seed extract exhibits potent antioxidant capacity, as well as anti‑bacterial, anti‑viral, anti‑carcinogenic, anti‑inflammatory and anti‑allergic actions. Respiratory viruses cause inflammation in the epithelial cells of the lungs (as does COVID-19), and increase the risk of respiratory distress and pneumonia. Grape seed extract inhibits the abnormal release of proinflammatory cytokines caused by the virus. <strong>3,4</strong>\r\n<h3>Boost Your Immune System with Quality Supplements</h3>\r\nAgain, since a low immunity increases the risk of infections, then it makes sense that boosting immunity will help you to remain healthy. And by boosting immunity, your immune system will be better able to deal with the onslaught of viruses and bacteria.\r\n\r\nIf you are not taking quality nutritional supplements, you might want to consider doing so, after first consulting with your own licensed health care professional.\r\n<h3>Choose Quality Supplements</h3>\r\nQuality pure raw ingredients and quality manufacturing of potent supplements make a huge difference in effectiveness. Not all supplements are created equally.\r\n\r\nWe want our supplements to help provide better healthy. When you choose your wine or ice cream, the only physiologic concern is taste. But what a difference between the quality of a cheap product and a good one. Compare the taste of a premium ice cream to the cheap store brand. Compare inexpensive wine to Lafite Rothschild. It should be obvious that the difference between the quality of supplements should be at least as great.\r\n\r\nQuality and bioavailability are important. Bioavailability has to do with how well the supplement is utilized by the body. There is gasoline in coal. But you can’t just run your car on it. Similarly, there are ingredients listed on a supplement’s label that are as useless to your body as coal is to your automobile.\r\n\r\nWhat about the quality of components? Take calcium, for example. Oyster shell has calcium, but the body can’t use it (just like your car can’t use the gasoline in coal). Calcium carbonate is cheap, but is not well absorbed. Calcium citrate is much more expensive than the oyster shell or the carbonate. A high quality supplement will use the citrate, a poor one will use oyster shell. There are similar quality issues for just about every vitamin and herb.\r\n\r\nMany companies don’t actually produce their own vitamins, and they don’t test what they buy. Without testing, you can be lied to about the content of the product. Second, by the time the product changes hands several times, anywhere along the line someone can substitute cheaper or even phony ingredients and not be held accountable. The product can be contaminated when it changes hands. Sometimes the label claims are fraudulent.\r\n\r\nAre the products tested for quality or for contaminants? Where did the materials come from? Most of the botanicals purchased in the US come from the Far East. There are manufacturing practices in some Third World countries that would surprise many Americans.\r\n\r\nHow is the tablet or capsule made? Bioavailability can be affected by something as simple as how the tablet is made. Many manufacturers use inert ingredients that interfere with the absorption of the nutrients. Even capsules can contain inert ingredients that interfere with absorption.\r\n\r\nThere’s a lot to know when buying supplements and herbs. Educate yourself about the product quality, and realize that self-treatment with bargain basement supplements is not a good idea.\r\n\r\nFinally, just taking even quality nutritional supplements is not sufficient. We all need to eat well, get regular restorative sleep, reduce stress, exercise, maintain a healthy weight, not smoke, and use alcohol in moderation. All of these factors affect your immune system’s ability to keep you healthy. Now, as always, it is important to try to follow all of these recommendations as much as possible in order to stay healthy.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<ol>\r\n 	<li>Slow S, et al. Effect of adjunctive single high-dose vitamin D3 on outcome of community-acquired pneumonia in hospitalised adults: The VIDCAPS randomised controlled trial. Sci Rep. 2018 Sep 14;8(1):13829.</li>\r\n 	<li>Park HR, et al. Synthesis and antiviral evaluation of 7-O-arylmethylquercetin derivatives against SARS-associated coronavirus (SCV) and hepatitis C virus (HCV). Arch Pharm Res. 2012 Jan;35(1):77-85.</li>\r\n 	<li>Kim SJ, et al. Pretreatment with a grape seed proanthocyanidin extract downregulates proinflammatory cytokine expression in airway epithelial cells infected with respiratory syncytial virus. Mol Med Rep. 2019 Apr;19(4):3330-3336.</li>\r\n 	<li>McNamara, Ladd. \"Covid-19fighting fear and the coronavirus pandemic with precautions and quality supplements.\" <i>medRxiv</i>(2020).</li>\r\n</ol>','Quality Supplements and COVID-19','','inherit','closed','closed','','1494-revision-v1','','','2020-12-17 23:54:35','2020-12-17 23:54:35','',1494,'https://www.drfields.com/uncategorized/1494-revision-v1/',0,'revision','',0),(4356,9,'2020-12-17 23:55:13','2020-12-17 23:55:13','Quality Supplements','Quality Supplements','Boost Your Immune System with Quality Supplements','inherit','open','closed','','quality-supplements','','','2020-12-17 23:55:44','2020-12-17 23:55:44','',1494,'https://www.drfields.com/wp-content/uploads/2019/06/Quality-Supplements.png',0,'attachment','image/png',0),(4357,9,'2020-12-17 23:56:54','2020-12-17 23:56:54','<h3>Are The Supplements You\'re Taking Good Quality Supplements?</h3>\r\nWhile everyone loves a bargain, there are some problems with shopping for supplements using only price as a guideline. The difference in quality between different brands of supplements is often considerable. And taking quality supplements to help stay healthy during the COVID-19 pandemic is especially important!\r\n<h3>Coronavirus and Supplementation</h3>\r\nPlus, since people with low immunity are at a higher risk for coronavirus, then it would be a good idea to boost our immune systems in order to reduce our risk of acquiring it. Supplementation is one part of boosting our immunity. Following a healthy lifestyle, and eating a proper diet will help as well.\r\n\r\nThere are many micronutrients (vitamins, minerals, antioxidants, etc.) that research has shown are very beneficial to our health. And in particular, very beneficial to our immune systems.\r\n<h4><strong>Vitamin D Helps Reduce Viral Upper Respiratory Infections </strong></h4>\r\nVitamin D is associated with a reduction in the incidence of colds and influenza.  People with lower vitamin D levels have a higher the prevalence of upper respiratory tract infections from viruses like coronaviruses, rhinoviruses, and influenza. And a single high-dose of vitamin D, combined with antibiotics has been shown to improve and resolve pneumonia.1\r\n\r\nOther antioxidants, such as alpha lipoic acid, vitamin C, and vitamin E, if  already in the system, are effective for the treatment of Acute Respiratory Distress.\r\n\r\nGetting overly stressed increases our chance of getting sick. Keep in mind that the immune system is suppressed from excessive exercise, emotional stress, and lack of sleep.\r\n\r\n[caption id=\"attachment_4356\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4356\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Quality-Supplements-500x500.png\" alt=\"Quality Supplements\" width=\"500\" height=\"500\" /> <strong><em>Boost Your Immune System with Quality Supplements</em></strong>[/caption]\r\n<h4><strong>Various Flavonoid Antioxidants, Such as Quercetin and Grape Seed Extract, Demonstrate Anti-Viral Activity</strong></h4>\r\nFlavonoid antioxidants, such as quercetin and resveratrol exhibit anti-viral activity against common viruses that cause upper respiratory tract infections, including influenza A (H1N1) and B. And the compounds found in green tea extract, have shown anti-viral activity against the SARS coronavirus. <b>2</b> Since COVID-19 is essentially SARS2, it wouldn\'t be a bad idea to take these micronutrients.\r\n\r\nGrape seed extract exhibits potent antioxidant capacity, as well as anti‑bacterial, anti‑viral, anti‑carcinogenic, anti‑inflammatory and anti‑allergic actions. Respiratory viruses cause inflammation in the epithelial cells of the lungs (as does COVID-19), and increase the risk of respiratory distress and pneumonia. Grape seed extract inhibits the abnormal release of proinflammatory cytokines caused by the virus. <strong>3,4</strong>\r\n<h3>Boost Your Immune System with Quality Supplements</h3>\r\nAgain, since a low immunity increases the risk of infections, then it makes sense that boosting immunity will help you to remain healthy. And by boosting immunity, your immune system will be better able to deal with the onslaught of viruses and bacteria.\r\n\r\nIf you are not taking quality nutritional supplements, you might want to consider doing so, after first consulting with your own licensed health care professional.\r\n<h3>Choose Quality Supplements</h3>\r\nQuality pure raw ingredients and quality manufacturing of potent supplements make a huge difference in effectiveness. Not all supplements are created equally.\r\n\r\nWe want our supplements to help provide better healthy. When you choose your wine or ice cream, the only physiologic concern is taste. But what a difference between the quality of a cheap product and a good one. Compare the taste of a premium ice cream to the cheap store brand. Compare inexpensive wine to Lafite Rothschild. It should be obvious that the difference between the quality of supplements should be at least as great.\r\n\r\nQuality and bioavailability are important. Bioavailability has to do with how well the supplement is utilized by the body. There is gasoline in coal. But you can’t just run your car on it. Similarly, there are ingredients listed on a supplement’s label that are as useless to your body as coal is to your automobile.\r\n\r\nWhat about the quality of components? Take calcium, for example. Oyster shell has calcium, but the body can’t use it (just like your car can’t use the gasoline in coal). Calcium carbonate is cheap, but is not well absorbed. Calcium citrate is much more expensive than the oyster shell or the carbonate. A high quality supplement will use the citrate, a poor one will use oyster shell. There are similar quality issues for just about every vitamin and herb.\r\n\r\nMany companies don’t actually produce their own vitamins, and they don’t test what they buy. Without testing, you can be lied to about the content of the product. Second, by the time the product changes hands several times, anywhere along the line someone can substitute cheaper or even phony ingredients and not be held accountable. The product can be contaminated when it changes hands. Sometimes the label claims are fraudulent.\r\n\r\nAre the products tested for quality or for contaminants? Where did the materials come from? Most of the botanicals purchased in the US come from the Far East. There are manufacturing practices in some Third World countries that would surprise many Americans.\r\n\r\nHow is the tablet or capsule made? Bioavailability can be affected by something as simple as how the tablet is made. Many manufacturers use inert ingredients that interfere with the absorption of the nutrients. Even capsules can contain inert ingredients that interfere with absorption.\r\n\r\nThere’s a lot to know when buying supplements and herbs. Educate yourself about the product quality, and realize that self-treatment with bargain basement supplements is not a good idea.\r\n\r\nFinally, just taking even quality nutritional supplements is not sufficient. We all need to eat well, get regular restorative sleep, reduce stress, exercise, maintain a healthy weight, not smoke, and use alcohol in moderation. All of these factors affect your immune system’s ability to keep you healthy. Now, as always, it is important to try to follow all of these recommendations as much as possible in order to stay healthy.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<ol>\r\n 	<li>Slow S, et al. Effect of adjunctive single high-dose vitamin D3 on outcome of community-acquired pneumonia in hospitalised adults: The VIDCAPS randomised controlled trial. Sci Rep. 2018 Sep 14;8(1):13829.</li>\r\n 	<li>Park HR, et al. Synthesis and antiviral evaluation of 7-O-arylmethylquercetin derivatives against SARS-associated coronavirus (SCV) and hepatitis C virus (HCV). Arch Pharm Res. 2012 Jan;35(1):77-85.</li>\r\n 	<li>Kim SJ, et al. Pretreatment with a grape seed proanthocyanidin extract downregulates proinflammatory cytokine expression in airway epithelial cells infected with respiratory syncytial virus. Mol Med Rep. 2019 Apr;19(4):3330-3336.</li>\r\n 	<li>McNamara, Ladd. \"Covid-19fighting fear and the coronavirus pandemic with precautions and quality supplements.\" <i>medRxiv</i>(2020).</li>\r\n</ol>','Quality Supplements and COVID-19','','inherit','closed','closed','','1494-revision-v1','','','2020-12-17 23:56:54','2020-12-17 23:56:54','',1494,'https://www.drfields.com/uncategorized/1494-revision-v1/',0,'revision','',0),(4358,9,'2020-12-18 00:01:55','2020-12-18 00:01:55','<h3>Are The Supplements You\'re Taking Good Quality Supplements?</h3>\r\nWhile everyone loves a bargain, there are some problems with shopping for supplements using only price as a guideline. The difference in quality between different brands of supplements is often considerable. And taking quality supplements to help stay healthy during the COVID-19 pandemic is especially important!\r\n<h3>Coronavirus and Supplementation</h3>\r\nPlus, since people with low immunity are at a higher risk for coronavirus, then it would be a good idea to boost our immune systems in order to reduce our risk of acquiring it. Supplementation is one part of boosting our immunity. Following a healthy lifestyle, and eating a proper diet will help as well.\r\n\r\nThere are many micronutrients (vitamins, minerals, antioxidants, etc.) that research has shown are very beneficial to our health. And in particular, very beneficial to our immune systems.\r\n<h4><strong>Vitamin D Helps Reduce Viral Upper Respiratory Infections </strong></h4>\r\nVitamin D is associated with a reduction in the incidence of colds and influenza.  People with lower vitamin D levels have a higher the prevalence of upper respiratory tract infections from viruses like coronaviruses, rhinoviruses, and influenza. And a single high-dose of vitamin D, combined with antibiotics has been shown to improve and resolve pneumonia.1\r\n\r\nOther antioxidants, such as alpha lipoic acid, vitamin C, and vitamin E, if  already in the system, are effective for the treatment of Acute Respiratory Distress.\r\n\r\nGetting overly stressed increases our chance of getting sick. Keep in mind that the immune system is suppressed from excessive exercise, emotional stress, and lack of sleep.\r\n\r\n[caption id=\"attachment_4356\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4356\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Quality-Supplements-500x500.png\" alt=\"Quality Supplements\" width=\"500\" height=\"500\" /> <strong><em>Boost Your Immune System with Quality Supplements</em></strong>[/caption]\r\n<h4><strong>Various Flavonoid Antioxidants, Such as Quercetin and Grape Seed Extract, Demonstrate Anti-Viral Activity</strong></h4>\r\nFlavonoid antioxidants, such as quercetin and resveratrol exhibit anti-viral activity against common viruses that cause upper respiratory tract infections, including influenza A (H1N1) and B. And the compounds found in green tea extract, have shown anti-viral activity against the SARS coronavirus. <b>2</b> Since COVID-19 is essentially SARS2, it wouldn\'t be a bad idea to take these micronutrients.\r\n\r\nGrape seed extract exhibits potent antioxidant capacity, as well as anti‑bacterial, anti‑viral, anti‑carcinogenic, anti‑inflammatory and anti‑allergic actions. Respiratory viruses cause inflammation in the epithelial cells of the lungs (as does COVID-19), and increase the risk of respiratory distress and pneumonia. Grape seed extract inhibits the abnormal release of proinflammatory cytokines caused by the virus. <strong>3,4</strong>\r\n<h3>Boost Your Immune System with Quality Supplements</h3>\r\nAgain, since a low immunity increases the risk of infections, then it makes sense that boosting immunity will help you to remain healthy. And by boosting immunity, your immune system will be better able to deal with the onslaught of viruses and bacteria.\r\n\r\nIf you are not taking quality nutritional supplements, you might want to consider doing so, after first consulting with your own licensed health care professional.\r\n<h3>Choose Quality Supplements</h3>\r\nQuality pure raw ingredients and quality manufacturing of potent supplements make a huge difference in effectiveness. Not all supplements are created equally.\r\n\r\nWe want our supplements to help provide better healthy. When you choose your wine or ice cream, the only physiologic concern is taste. But what a difference between the quality of a cheap product and a good one. Compare the taste of a premium ice cream to the cheap store brand. Compare inexpensive wine to Lafite Rothschild. It should be obvious that the difference between the quality of supplements should be at least as great.\r\n<h4><em>Quality and Bioavailability Are Important</em></h4>\r\nBioavailability has to do with how well the supplement is utilized by the body. There is gasoline in coal. But you can’t just run your car on it. Similarly, there are ingredients listed on a supplement’s label that are as useless to your body as coal is to your automobile.\r\n\r\nWhat about the quality of components? Take calcium, for example. Oyster shell has calcium, but the body can’t use it (just like your car can’t use the gasoline in coal). Calcium carbonate is cheap, but is not well absorbed. Calcium citrate is much more expensive than the oyster shell or the carbonate. A high quality supplement will use the citrate, a poor one will use oyster shell. There are similar quality issues for just about every vitamin and herb.\r\n<h4><em>Read the Label on Supplements</em></h4>\r\nMany companies don’t actually produce their own vitamins, and they don’t test what they buy. Without testing, you can be lied to about the content of the product. Second, by the time the product changes hands several times, anywhere along the line someone can substitute cheaper or even phony ingredients and not be held accountable. The product can be contaminated when it changes hands. Familiarize yourself with ingredients, and read the label.\r\n<h4><em>Do Your Research</em></h4>\r\nAre the products tested for quality or for contaminants? Where did the materials come from? Most of the botanicals purchased in the US come from the Far East. There are manufacturing practices in some Third World countries that would surprise many Americans.\r\n\r\nHow is the tablet or capsule made? Bioavailability can be affected by something as simple as how the tablet is made. Many manufacturers use inert ingredients that interfere with the absorption of the nutrients. Even capsules can contain inert ingredients that interfere with absorption.\r\n\r\nThere’s a lot to know when buying supplements and herbs. Educate yourself about the product quality, and realize that self-treatment with bargain basement supplements is not a good idea.\r\n<h3>A Combination Approach For Staying Healthy</h3>\r\nFinally, just taking even quality nutritional supplements is not sufficient. We all need to eat well, get regular restorative sleep, reduce stress, exercise, maintain a healthy weight, not smoke, and use alcohol in moderation. All of these factors affect your immune system’s ability to keep you healthy. Now, as always, it is important to try to follow all of these recommendations as much as possible in order to stay healthy.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Slow S, et al. Effect of adjunctive single high-dose vitamin D3 on outcome of community-acquired pneumonia in hospitalised adults: The VIDCAPS randomised controlled trial. Sci Rep. 2018 Sep 14;8(1):13829.</li>\r\n 	<li>Park HR, et al. Synthesis and antiviral evaluation of 7-O-arylmethylquercetin derivatives against SARS-associated coronavirus (SCV) and hepatitis C virus (HCV). Arch Pharm Res. 2012 Jan;35(1):77-85.</li>\r\n 	<li>Kim SJ, et al. Pretreatment with a grape seed proanthocyanidin extract downregulates proinflammatory cytokine expression in airway epithelial cells infected with respiratory syncytial virus. Mol Med Rep. 2019 Apr;19(4):3330-3336.</li>\r\n 	<li>McNamara, Ladd. \"Covid-19fighting fear and the coronavirus pandemic with precautions and quality supplements.\" <i>medRxiv</i>(2020).</li>\r\n</ol>','Quality Supplements and COVID-19','','inherit','closed','closed','','1494-revision-v1','','','2020-12-18 00:01:55','2020-12-18 00:01:55','',1494,'https://www.drfields.com/uncategorized/1494-revision-v1/',0,'revision','',0),(4359,9,'2020-12-18 00:02:22','2020-12-18 00:02:22','<h3>Are The Supplements You\'re Taking Good Quality Supplements?</h3>\r\nWhile everyone loves a bargain, there are some problems with shopping for supplements using only price as a guideline. The difference in quality between different brands of supplements is often considerable. And taking quality supplements to help stay healthy during the COVID-19 pandemic is especially important!\r\n<h3>Coronavirus and Supplementation</h3>\r\n<em><strong>Plus, since people with low immunity are at a higher risk for coronavirus, then it would be a good idea to boost our immune systems in order to reduce our risk of acquiring it</strong></em>. Supplementation is one part of boosting our immunity. Following a healthy lifestyle, and eating a proper diet will help as well.\r\n\r\nThere are many micronutrients (vitamins, minerals, antioxidants, etc.) that research has shown are very beneficial to our health. And in particular, very beneficial to our immune systems.\r\n<h4><strong>Vitamin D Helps Reduce Viral Upper Respiratory Infections </strong></h4>\r\nVitamin D is associated with a reduction in the incidence of colds and influenza.  People with lower vitamin D levels have a higher the prevalence of upper respiratory tract infections from viruses like coronaviruses, rhinoviruses, and influenza. And a single high-dose of vitamin D, combined with antibiotics has been shown to improve and resolve pneumonia.1\r\n\r\nOther antioxidants, such as alpha lipoic acid, vitamin C, and vitamin E, if  already in the system, are effective for the treatment of Acute Respiratory Distress.\r\n\r\nGetting overly stressed increases our chance of getting sick. Keep in mind that the immune system is suppressed from excessive exercise, emotional stress, and lack of sleep.\r\n\r\n[caption id=\"attachment_4356\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4356\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Quality-Supplements-500x500.png\" alt=\"Quality Supplements\" width=\"500\" height=\"500\" /> <strong><em>Boost Your Immune System with Quality Supplements</em></strong>[/caption]\r\n<h4><strong>Various Flavonoid Antioxidants, Such as Quercetin and Grape Seed Extract, Demonstrate Anti-Viral Activity</strong></h4>\r\nFlavonoid antioxidants, such as quercetin and resveratrol exhibit anti-viral activity against common viruses that cause upper respiratory tract infections, including influenza A (H1N1) and B. And the compounds found in green tea extract, have shown anti-viral activity against the SARS coronavirus. <b>2</b> Since COVID-19 is essentially SARS2, it wouldn\'t be a bad idea to take these micronutrients.\r\n\r\nGrape seed extract exhibits potent antioxidant capacity, as well as anti‑bacterial, anti‑viral, anti‑carcinogenic, anti‑inflammatory and anti‑allergic actions. Respiratory viruses cause inflammation in the epithelial cells of the lungs (as does COVID-19), and increase the risk of respiratory distress and pneumonia. Grape seed extract inhibits the abnormal release of proinflammatory cytokines caused by the virus. <strong>3,4</strong>\r\n<h3>Boost Your Immune System with Quality Supplements</h3>\r\nAgain, since a low immunity increases the risk of infections, then it makes sense that boosting immunity will help you to remain healthy. And by boosting immunity, your immune system will be better able to deal with the onslaught of viruses and bacteria.\r\n\r\nIf you are not taking quality nutritional supplements, you might want to consider doing so, after first consulting with your own licensed health care professional.\r\n<h3>Choose Quality Supplements</h3>\r\nQuality pure raw ingredients and quality manufacturing of potent supplements make a huge difference in effectiveness. Not all supplements are created equally.\r\n\r\nWe want our supplements to help provide better healthy. When you choose your wine or ice cream, the only physiologic concern is taste. But what a difference between the quality of a cheap product and a good one. Compare the taste of a premium ice cream to the cheap store brand. Compare inexpensive wine to Lafite Rothschild. It should be obvious that the difference between the quality of supplements should be at least as great.\r\n<h4><em>Quality and Bioavailability Are Important</em></h4>\r\nBioavailability has to do with how well the supplement is utilized by the body. There is gasoline in coal. But you can’t just run your car on it. Similarly, there are ingredients listed on a supplement’s label that are as useless to your body as coal is to your automobile.\r\n\r\nWhat about the quality of components? Take calcium, for example. Oyster shell has calcium, but the body can’t use it (just like your car can’t use the gasoline in coal). Calcium carbonate is cheap, but is not well absorbed. Calcium citrate is much more expensive than the oyster shell or the carbonate. A high quality supplement will use the citrate, a poor one will use oyster shell. There are similar quality issues for just about every vitamin and herb.\r\n<h4><em>Read the Label on Supplements</em></h4>\r\nMany companies don’t actually produce their own vitamins, and they don’t test what they buy. Without testing, you can be lied to about the content of the product. Second, by the time the product changes hands several times, anywhere along the line someone can substitute cheaper or even phony ingredients and not be held accountable. The product can be contaminated when it changes hands. Familiarize yourself with ingredients, and read the label.\r\n<h4><em>Do Your Research</em></h4>\r\nAre the products tested for quality or for contaminants? Where did the materials come from? Most of the botanicals purchased in the US come from the Far East. There are manufacturing practices in some Third World countries that would surprise many Americans.\r\n\r\nHow is the tablet or capsule made? Bioavailability can be affected by something as simple as how the tablet is made. Many manufacturers use inert ingredients that interfere with the absorption of the nutrients. Even capsules can contain inert ingredients that interfere with absorption.\r\n\r\nThere’s a lot to know when buying supplements and herbs. Educate yourself about the product quality, and realize that self-treatment with bargain basement supplements is not a good idea.\r\n<h3>A Combination Approach For Staying Healthy</h3>\r\nFinally, just taking even quality nutritional supplements is not sufficient. We all need to eat well, get regular restorative sleep, reduce stress, exercise, maintain a healthy weight, not smoke, and use alcohol in moderation. All of these factors affect your immune system’s ability to keep you healthy. Now, as always, it is important to try to follow all of these recommendations as much as possible in order to stay healthy.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Slow S, et al. Effect of adjunctive single high-dose vitamin D3 on outcome of community-acquired pneumonia in hospitalised adults: The VIDCAPS randomised controlled trial. Sci Rep. 2018 Sep 14;8(1):13829.</li>\r\n 	<li>Park HR, et al. Synthesis and antiviral evaluation of 7-O-arylmethylquercetin derivatives against SARS-associated coronavirus (SCV) and hepatitis C virus (HCV). Arch Pharm Res. 2012 Jan;35(1):77-85.</li>\r\n 	<li>Kim SJ, et al. Pretreatment with a grape seed proanthocyanidin extract downregulates proinflammatory cytokine expression in airway epithelial cells infected with respiratory syncytial virus. Mol Med Rep. 2019 Apr;19(4):3330-3336.</li>\r\n 	<li>McNamara, Ladd. \"Covid-19fighting fear and the coronavirus pandemic with precautions and quality supplements.\" <i>medRxiv</i>(2020).</li>\r\n</ol>','Quality Supplements and COVID-19','','inherit','closed','closed','','1494-revision-v1','','','2020-12-18 00:02:22','2020-12-18 00:02:22','',1494,'https://www.drfields.com/uncategorized/1494-revision-v1/',0,'revision','',0),(4360,9,'2020-12-19 23:52:33','2020-12-19 23:52:33','<h3>Are MRI\'s Replacing The Physical Exam?</h3>\nEveryone seems to want to get an MRI nowadays. It\'s like there is an MRI epidemic, with millions and millions being performed in the U.S. A patient complains of pain, and an MRI is ordered. But are MRI\'s replacing the physical exam?\n\nSure, an MRI will often show an abnormality. But the problem is...<strong>that abnormality very well may not be what is causing the pain. </strong>A disc abnormality does not necessarily mean that the disc is causing the pain. Many people who have no pain have disc abnormalities.\n<h3>MRI Results Without A Physical Exam</h3>\nThe lack of a physical exam is becoming a problem. Before the MRI, physicians had to diagnose by an exam. And they would actually palpate and touch the patient. In fact, 90% of the diagnosis would come from the history and physical exam. MRI\'s should confirm what already is suspected as a result of a thorough patient history and examination.\n<h3>MRI and Surgery</h3>\nIf you are seriously considering surgery, then an MRI is what the orthopedic surgeon will use to map the surgery. <strong>But never have surgery based just on the results of an MRI. </strong>Get another opinion. And make sure you receive a proper exam. A practical option would be to receive a consult from a Prolotherapist who specializes in fixing the spine and joints without surgery. Surgery should only be done after all conservative care has been tried, including Regenerative Orthopedic options like Prolotherapy.\n<h4><em>MRI studies are not always helpful and can sometimes lead to further intervention. Do not let MRI results dictate your treatment. Fixing your problem with the least invasive and most effective method should be your priority</em>.</h4>\n<em>Please read the entire article, which was originally printed in the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.</em>\n\nIf a joint replacement has been recommended, Stem Cell Therapy, another Regenerative Orthopedic option, is an effective non-surgical alternative. Please read our article <a title=\"Alternative to Joint Replacement Surgery\" href=\"https://www.drfields.com/alternative-to-joint-replacement-surgery/\">Alternative to Joint Replacement Surgery </a> <a href=\"https://www.drfields.com/alternative-to-joint-replacement-surgery/\">here.</a>\n\n[caption id=\"attachment_1235\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1235 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-1.gif\" alt=\"Townsend Article October 2013 1\" width=\"955\" height=\"1241\" /> <strong>Are MRI\'s replacing the physical exam?</strong>[/caption]\n\n<img class=\"aligncenter size-full wp-image-1236\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-2.gif\" alt=\"Townsend Article October 2013 2\" width=\"955\" height=\"1251\" />','Are MRI\'s Replacing The Physical Exam','','inherit','closed','closed','','1535-autosave-v1','','','2020-12-19 23:52:33','2020-12-19 23:52:33','',1535,'https://www.drfields.com/uncategorized/1535-autosave-v1/',0,'revision','',0),(4361,9,'2020-12-19 23:23:56','2020-12-19 23:23:56','<h3>MRI: Why Get One?</h3>\r\nEveryone seems to want to get an MRI nowadays. It\'s like there is an MRI epidemic, with millions and millions being performed in the U.S. A patient complains of pain, and an MRI is ordered.\r\n\r\nAnd an MRI will often show an abnormality. But the problem is...<strong>that abnormality very well may not be what is causing the pain. </strong>A disc abnormality does not necessarily mean that the disc is causing the pain. Many people who have no pain have disc abnormalities.\r\n<h3>Another problem is the lack of a physical exam.</h3>\r\nBefore the MRI, physicians had to diagnose by an exam. And they would actually palpate, and touch the patient. In fact, 90% of the diagnosis would come from the history and physical exam. MRI\'s should confirm what already is suspected.\r\n\r\nPlus, if you are seriously considering surgery, then an MRI is what the orthopedic surgeon will use to map the surgery. <strong>But never have surgery based just on the results of an MRI. </strong>Get another opinion. A practical option would be to receive a consult from a Prolotherapist who specializes in fixing the spine and joints without surgery. Surgery should only be done after all conservative care has been tried, including Regenerative Orthopedic options like Prolotherapy.\r\n<h3></h3>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter size-full wp-image-1235\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-1.gif\" alt=\"Townsend Article October 2013 1\" width=\"955\" height=\"1241\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1236\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-2.gif\" alt=\"Townsend Article October 2013 2\" width=\"955\" height=\"1251\" />','October 2013 Townsend Article','','inherit','closed','closed','','1535-revision-v1','','','2020-12-19 23:23:56','2020-12-19 23:23:56','',1535,'https://www.drfields.com/uncategorized/1535-revision-v1/',0,'revision','',0),(4362,9,'2020-12-19 23:53:07','2020-12-19 23:53:07','<h3>Are MRI\'s Replacing The Physical Exam?</h3>\r\nEveryone seems to want to get an MRI nowadays. It\'s like there is an MRI epidemic, with millions and millions being performed in the U.S. A patient complains of pain, and an MRI is ordered. But are MRI\'s replacing the physical exam?\r\n\r\nSure, an MRI will often show an abnormality. But the problem is...<strong>that abnormality very well may not be what is causing the pain. </strong>A disc abnormality does not necessarily mean that the disc is causing the pain. Many people who have no pain have disc abnormalities.\r\n<h3>MRI Results Without A Physical Exam</h3>\r\nThe lack of a physical exam is becoming a problem. Before the MRI, physicians had to diagnose by an exam. And they would actually palpate and touch the patient. In fact, 90% of the diagnosis would come from the history and physical exam. MRI\'s should confirm what already is suspected as a result of a thorough patient history and examination.\r\n<h3>MRI and Surgery</h3>\r\nIf you are seriously considering surgery, then an MRI is what the orthopedic surgeon will use to map the surgery. <strong>But never have surgery based just on the results of an MRI. </strong>Get another opinion. And make sure you receive a proper exam. A practical option would be to receive a consult from a Prolotherapist who specializes in fixing the spine and joints without surgery. Surgery should only be done after all conservative care has been tried, including Regenerative Orthopedic options like Prolotherapy.\r\n<h4><em>MRI studies are not always helpful and can sometimes lead to further intervention. Do not let MRI results dictate your treatment. Fixing your problem with the least invasive and most effective method should be your priority</em>.</h4>\r\n<em>Please read the entire article, which was originally printed in the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.</em>\r\n\r\nIf a joint replacement has been recommended, Stem Cell Therapy, another Regenerative Orthopedic option, is an effective non-surgical alternative. Please read our article <a title=\"Alternative to Joint Replacement Surgery\" href=\"https://www.drfields.com/alternative-to-joint-replacement-surgery/\">Alternative to Joint Replacement Surgery </a> <a href=\"https://www.drfields.com/alternative-to-joint-replacement-surgery/\">here.</a>\r\n\r\n[caption id=\"attachment_1235\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1235 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-1.gif\" alt=\"Townsend Article October 2013 1\" width=\"955\" height=\"1241\" /> <strong>Are MRI\'s replacing the physical exam?</strong>[/caption]\r\n\r\n<img class=\"aligncenter size-full wp-image-1236\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-2.gif\" alt=\"Townsend Article October 2013 2\" width=\"955\" height=\"1251\" />','Are MRI\'s Replacing The Physical Exam','','inherit','closed','closed','','1535-revision-v1','','','2020-12-19 23:53:07','2020-12-19 23:53:07','',1535,'https://www.drfields.com/uncategorized/1535-revision-v1/',0,'revision','',0),(4363,9,'2020-12-20 21:38:29','2020-12-20 21:38:29','<h2>Rotator Cuff Shoulder Injuries</h2>\nConditions of the rotator cuff are the most common shoulder problem. Lots of people over 50 experience rotator cuff shoulder injuries. That\'s because the tendons and ligaments become weaker and are more prone to injury. And since tendons and ligaments have a poor blood supply to begin with, these injuries are difficult to repair.\n<h3>Treat Shoulder Injuries with Non-Surgical Regenerative Orthopedics</h3>\nWhen conservative measures are tried, and if they fail to result in the sought after results, surgery is often recommended. But surgery takes parts like ligaments, tendons, and labrum out. And once they are removed, they can not be put back. A better approach would be Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy. These treatments result in effective repair and resolution of the rotator cuff shoulder injury without the need for surgery. The joint tissue can regenerate with Regenerative Orthopedics, and repair can be achieved naturally.\n<h3>Shoulder Arthritis</h3>\nArthritis is another common condition of the shoulder, and shoulder injuries can lead to this problem. Regenerative Orthopedics can effectively treat shoulder pain due to arthritis.\n\nRegenerative Orthopedics helps your body to heal itself. You can get back to doing the activities you love quickly, without the need for surgery, and without extended downtime. <a href=\"https://www.drfields.com/contact/\">Contact us</a> to find out more.\n\nRead the full article from the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.\n\nFind out more about <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> by clicking <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">here</a>.\n\n&nbsp;\n\n<img class=\"alignnone wp-image-1240 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-1.gif\" alt=\"Rotator Cuff Shoulder Injuries\" width=\"955\" height=\"1249\" />\n\n<img class=\"wp-image-1241 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-2.gif\" alt=\"&quot;&lt;yoastmark\" />','Rotator Cuff Shoulder Injuries','','inherit','closed','closed','','1537-autosave-v1','','','2020-12-20 21:38:29','2020-12-20 21:38:29','',1537,'https://www.drfields.com/uncategorized/1537-autosave-v1/',0,'revision','',0),(4364,9,'2020-12-20 21:24:58','2020-12-20 21:24:58','<h2>Rotator Cuff Shoulder Injuries</h2>\r\nConditions of the rotator cuff are the most common shoulder problem. Lots of people over 50 experience rotator cuff shoulder injuries. That\'s because the tendons and ligaments become weaker and are more prone to injury. And since tendons and ligaments have a poor blood supply to begin with, these rotator cuff shoulder injuries are difficult to repair.\r\n<h3>Treat Rotator Cuff Injuries with Non-Surgical Regenerative Orthopedics</h3>\r\nWhen conservative measures are tried, and if they fail to result in the sought after results, surgery is often recommended. But surgery takes parts like ligaments, tendons, and labrum out. And once they are removed, they can not be put back. A better approach would be Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy. These treatments result in effective repair and resolution of the rotator cuff shoulder injury without the need for surgery. The joint tissue can regenerate with Regenerative Orthopedics, and repair can be achieved naturally.\r\n<h3>Shoulder Arthritis</h3>\r\nArthritis is another common condition of the shoulder, and shoulder injuries can lead to this problem. Regenerative Orthopedics can effectively treat shoulder pain due to arthritis.\r\n\r\nRead the full article from the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.\r\n\r\nFind out more about <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> by clicking <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">here</a>.\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-1240 size-full\" title=\"&quot;&lt;yoastmark\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1241\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-2.gif\" alt=\"Townsend Article August 2013 2\" width=\"955\" height=\"1241\" />','Rotator Cuff Shoulder Injuries','','inherit','closed','closed','','1537-revision-v1','','','2020-12-20 21:24:58','2020-12-20 21:24:58','',1537,'https://www.drfields.com/uncategorized/1537-revision-v1/',0,'revision','',0),(4365,9,'2020-12-20 21:29:36','2020-12-20 21:29:36','<h2>Rotator Cuff Shoulder Injuries</h2>\nConditions of the rotator cuff are the most common shoulder problem. Lots of people over 50 experience rotator cuff shoulder injuries. That\'s because the tendons and ligaments become weaker and are more prone to injury. And since tendons and ligaments have a poor blood supply to begin with, these rotator cuff shoulder injuries are difficult to repair.\n<h3>Treat Rotator Cuff Injuries with Non-Surgical Regenerative Orthopedics</h3>\nWhen conservative measures are tried, and if they fail to result in the sought after results, surgery is often recommended. But surgery takes parts like ligaments, tendons, and labrum out. And once they are removed, they can not be put back. A better approach would be Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy. These treatments result in effective repair and resolution of the rotator cuff shoulder injury without the need for surgery. The joint tissue can regenerate with Regenerative Orthopedics, and repair can be achieved naturally.\n<h3>Shoulder Arthritis</h3>\nArthritis is another common condition of the shoulder, and shoulder injuries can lead to this problem. Regenerative Orthopedics can effectively treat shoulder pain due to arthritis.\n\nRead the full article from the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.\n\nFind out more about <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> by clicking <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">here</a>.\n\n&nbsp;\n\n<img class=\"wp-image-1240 size-full alignleft\" title=\"&quot;&lt;yoastmark\" data-wp-editing=\"1\" />\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-1241\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-2.gif\" alt=\"Townsend Article August 2013 2\" width=\"955\" height=\"1241\" />','Rotator Cuff Shoulder Injuries','','inherit','closed','closed','','1537-revision-v1','','','2020-12-20 21:29:36','2020-12-20 21:29:36','',1537,'https://www.drfields.com/uncategorized/1537-revision-v1/',0,'revision','',0),(4366,9,'2020-12-20 21:30:47','2020-12-20 21:30:47','<h2>Rotator Cuff Shoulder Injuries</h2>\r\nConditions of the rotator cuff are the most common shoulder problem. Lots of people over 50 experience rotator cuff shoulder injuries. That\'s because the tendons and ligaments become weaker and are more prone to injury. And since tendons and ligaments have a poor blood supply to begin with, these rotator cuff shoulder injuries are difficult to repair.\r\n<h3>Treat Rotator Cuff Injuries with Non-Surgical Regenerative Orthopedics</h3>\r\nWhen conservative measures are tried, and if they fail to result in the sought after results, surgery is often recommended. But surgery takes parts like ligaments, tendons, and labrum out. And once they are removed, they can not be put back. A better approach would be Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy. These treatments result in effective repair and resolution of the rotator cuff shoulder injury without the need for surgery. The joint tissue can regenerate with Regenerative Orthopedics, and repair can be achieved naturally.\r\n<h3>Shoulder Arthritis</h3>\r\nArthritis is another common condition of the shoulder, and shoulder injuries can lead to this problem. Regenerative Orthopedics can effectively treat shoulder pain due to arthritis.\r\n\r\nRead the full article from the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.\r\n\r\nFind out more about <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> by clicking <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">here</a>.\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-1240 size-full\" title=\"&quot;&lt;yoastmark\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1241\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-2.gif\" alt=\"Townsend Article August 2013 2\" width=\"955\" height=\"1241\" />','Rotator Cuff Shoulder Injuries','','inherit','closed','closed','','1537-revision-v1','','','2020-12-20 21:30:47','2020-12-20 21:30:47','',1537,'https://www.drfields.com/uncategorized/1537-revision-v1/',0,'revision','',0),(4367,9,'2020-12-20 21:31:06','2020-12-20 21:31:06','<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-1.gif\" alt=\"Townsend Article August 2013 1\" width=\"955\" height=\"1249\" class=\"aligncenter size-full wp-image-1240\" />\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-2.gif\" alt=\"Townsend Article August 2013 2\" width=\"955\" height=\"1241\" class=\"aligncenter size-full wp-image-1241\" />','August September 2013 Townsend Article','','inherit','closed','closed','','1537-revision-v1','','','2020-12-20 21:31:06','2020-12-20 21:31:06','',1537,'https://www.drfields.com/uncategorized/1537-revision-v1/',0,'revision','',0),(4368,9,'2020-12-20 21:33:35','2020-12-20 21:33:35','<h2>Rotator Cuff Shoulder Injuries</h2>\r\nConditions of the rotator cuff are the most common shoulder problem. Lots of people over 50 experience rotator cuff injuries. That\'s because the tendons and ligaments become weaker and are more prone to injury. And since tendons and ligaments have a poor blood supply to begin with, these injuries are difficult to repair.\r\n<h3>Treat Injuries with Non-Surgical Regenerative Orthopedics</h3>\r\nWhen conservative measures are tried, and if they fail to result in the sought after results, surgery is often recommended. But surgery takes parts like ligaments, tendons, and labrum out. And once they are removed, they can not be put back. A better approach would be Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy. These treatments result in effective repair and resolution of the rotator cuff shoulder injury without the need for surgery. The joint tissue can regenerate with Regenerative Orthopedics, and repair can be achieved naturally.\r\n<h3>Shoulder Arthritis</h3>\r\nArthritis is another common condition of the shoulder, and shoulder injuries can lead to this problem. Regenerative Orthopedics can effectively treat shoulder pain due to arthritis.\r\n\r\nRead the full article from the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.\r\n\r\nFind out more about <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> by clicking <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">here</a>.\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-1240 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-1.gif\" alt=\"&quot;&lt;yoastmark\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1241\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-2.gif\" alt=\"Townsend Article August 2013 2\" width=\"955\" height=\"1241\" />','Rotator Cuff Shoulder Injuries','','inherit','closed','closed','','1537-revision-v1','','','2020-12-20 21:33:35','2020-12-20 21:33:35','',1537,'https://www.drfields.com/uncategorized/1537-revision-v1/',0,'revision','',0),(4369,9,'2020-12-20 21:34:07','2020-12-20 21:34:07','<h2>Rotator Cuff Shoulder Injuries</h2>\r\nConditions of the rotator cuff are the most common shoulder problem. Lots of people over 50 experience rotator cuff shoulder injuries. That\'s because the tendons and ligaments become weaker and are more prone to injury. And since tendons and ligaments have a poor blood supply to begin with, these injuries are difficult to repair.\r\n<h3>Treat Injuries with Non-Surgical Regenerative Orthopedics</h3>\r\nWhen conservative measures are tried, and if they fail to result in the sought after results, surgery is often recommended. But surgery takes parts like ligaments, tendons, and labrum out. And once they are removed, they can not be put back. A better approach would be Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy. These treatments result in effective repair and resolution of the rotator cuff shoulder injury without the need for surgery. The joint tissue can regenerate with Regenerative Orthopedics, and repair can be achieved naturally.\r\n<h3>Shoulder Arthritis</h3>\r\nArthritis is another common condition of the shoulder, and shoulder injuries can lead to this problem. Regenerative Orthopedics can effectively treat shoulder pain due to arthritis.\r\n\r\nRead the full article from the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.\r\n\r\nFind out more about <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> by clicking <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">here</a>.\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-1240 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-1.gif\" alt=\"&quot;&lt;yoastmark\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1241\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-2.gif\" alt=\"Townsend Article August 2013 2\" width=\"955\" height=\"1241\" />','Rotator Cuff Shoulder Injuries','','inherit','closed','closed','','1537-revision-v1','','','2020-12-20 21:34:07','2020-12-20 21:34:07','',1537,'https://www.drfields.com/uncategorized/1537-revision-v1/',0,'revision','',0),(4370,9,'2020-12-20 21:38:47','2020-12-20 21:38:47','<h2>Rotator Cuff Shoulder Injuries</h2>\r\nConditions of the rotator cuff are the most common shoulder problem. Lots of people over 50 experience rotator cuff shoulder injuries. That\'s because the tendons and ligaments become weaker and are more prone to injury. And since tendons and ligaments have a poor blood supply to begin with, these injuries are difficult to repair.\r\n<h3>Treat Shoulder Injuries with Non-Surgical Regenerative Orthopedics</h3>\r\nWhen conservative measures are tried, and if they fail to result in the sought after results, surgery is often recommended. But surgery takes parts like ligaments, tendons, and labrum out. And once they are removed, they can not be put back. A better approach would be Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy. These treatments result in effective repair and resolution of the rotator cuff shoulder injury without the need for surgery. The joint tissue can regenerate with Regenerative Orthopedics, and repair can be achieved naturally.\r\n<h3>Shoulder Arthritis</h3>\r\nArthritis is another common condition of the shoulder, and shoulder injuries can lead to this problem. Regenerative Orthopedics can effectively treat shoulder pain due to arthritis.\r\n\r\nRegenerative Orthopedics helps your body to heal itself. You can get back to doing the activities you love quickly, without the need for surgery, and without extended downtime. <a href=\"https://www.drfields.com/contact/\">Contact us</a> to find out more.\r\n\r\nRead the full article from the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.\r\n\r\nFind out more about <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> by clicking <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">here</a>.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-1240 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-1.gif\" alt=\"Rotator Cuff Shoulder Injuries\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"wp-image-1241 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-2.gif\" alt=\"&quot;&lt;yoastmark\" />','Rotator Cuff Shoulder Injuries','','inherit','closed','closed','','1537-revision-v1','','','2020-12-20 21:38:47','2020-12-20 21:38:47','',1537,'https://www.drfields.com/uncategorized/1537-revision-v1/',0,'revision','',0),(4371,9,'2020-12-29 22:38:17','2020-12-29 22:38:17','<h3>Knee Pain and Dysfunction</h3>\nAt one time or another, most of us will have had some sort of knee dysfunction or pain. After all, we use our knees on a daily basis. And because the knee is a weight-bearing joint, athletic individuals and overweight people are more prone to knee pain and injuries.\n\nKnee pain can develop suddenly or come on over a period of time. The acute or sudden pain may be the result of a fall or mistep. And pain that develops chronically over time may be the result of an acute injury that never healed correctly. Chronic conditions are the most common cause of knee pain and dysfunction, and the culprit is very often arthritis.\n<h3>Degenerative Joint Disease and Osteoarthritis</h3>\nOsteoarthritis affects most of us as we age, steadily wearing away the smooth cartilage that caps the ends of our long bones. That cartilage is essential for proper motion and function of the joint. The wearing down of the joint can be accelerated by overuse in playing sports, physically demanding jobs, walking, excessive sitting (which increases the pressure within the knee) or just over time through daily wear and tear.\n\nReferred pain, which occurs when a ligament injury or weakness in one part of the body cause pain in another part, may also be involved.\n<h3>Knee Pain Treatments</h3>\nKnee pain will often go away on its on. Heat, ice, massage, PT, acupuncture, chiropractic, laser, and other treatments may help to resolve the pain. But when these treatments do not work, Regenerative Orthopedics, such as Stem Cell Therapy, PRP, and Prolotherapy are excellent non-surgical treatment solutions. And they can get you back to doing what you love without the need for extended time off.\n\nEven if you have a partial tear in a ligament or tendon, Regenerative Orthopedics can successfully resolve the injury without the need for surgery. If the tear is complete, surgery is necessary. Regenerative Orthopedics are the safest and most effective treatment options for the repair of ligaments, tendons, and cartilage damage.\n\nMany of my patients have had surgery, but still experience pain. Regenerative Orthopedics is still able to help even if you have already had surgery. But if surgery is being recommended, consider the alternative. Give us a <a href=\"https://www.drfields.com/contact/\">call <strong>at <a href=\"tel:310-453-1234\">310-453-1234</a>.</strong></a>\n\nRead the full article from the Townsend Letter below.\n\n[caption id=\"attachment_4373\" align=\"alignnone\" width=\"955\"]<img class=\"wp-image-4373 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-2-2.gif\" alt=\"Knee Pain\" width=\"955\" height=\"1249\" /> Knee Pain and Dysfunction[/caption]\n\n<img class=\"wp-image-1244 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-1.gif\" alt=\"Townsend Article July 2013 1\" width=\"939\" height=\"1231\" />\n\n&nbsp;','Knee Pain and Dysfunction','','inherit','closed','closed','','1539-autosave-v1','','','2020-12-29 22:38:17','2020-12-29 22:38:17','',1539,'https://www.drfields.com/uncategorized/1539-autosave-v1/',0,'revision','',0),(4372,9,'2020-12-29 22:08:26','2020-12-29 22:08:26','Townsend Article July 2013 2','Townsend Article July 2013 2','Townsend Article July 2013 2','inherit','open','closed','','townsend-article-july-2013-2-2','','','2020-12-29 22:08:26','2020-12-29 22:08:26','',1539,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-2-1.gif',0,'attachment','image/gif',0),(4373,9,'2020-12-29 22:09:19','2020-12-29 22:09:19','Townsend Article July 2013 2','Townsend Article July 2013 2','Townsend Article July 2013 2','inherit','open','closed','','townsend-article-july-2013-2-3','','','2020-12-29 22:09:19','2020-12-29 22:09:19','',1539,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-2-2.gif',0,'attachment','image/gif',0),(4374,9,'2020-12-29 22:38:30','2020-12-29 22:38:30','<h3>Knee Pain and Dysfunction</h3>\r\nAt one time or another, most of us will have had some sort of knee dysfunction or pain. After all, we use our knees on a daily basis. And because the knee is a weight-bearing joint, athletic individuals and overweight people are more prone to knee pain and injuries.\r\n\r\nKnee pain can develop suddenly or come on over a period of time. The acute or sudden pain may be the result of a fall or mistep. And pain that develops chronically over time may be the result of an acute injury that never healed correctly. Chronic conditions are the most common cause of knee pain and dysfunction, and the culprit is very often arthritis.\r\n<h3>Degenerative Joint Disease and Osteoarthritis</h3>\r\nOsteoarthritis affects most of us as we age, steadily wearing away the smooth cartilage that caps the ends of our long bones. That cartilage is essential for proper motion and function of the joint. The wearing down of the joint can be accelerated by overuse in playing sports, physically demanding jobs, walking, excessive sitting (which increases the pressure within the knee) or just over time through daily wear and tear.\r\n\r\nReferred pain, which occurs when a ligament injury or weakness in one part of the body cause pain in another part, may also be involved.\r\n<h3>Knee Pain Treatments</h3>\r\nKnee pain will often go away on its on. Heat, ice, massage, PT, acupuncture, chiropractic, laser, and other treatments may help to resolve the pain. But when these treatments do not work, Regenerative Orthopedics, such as Stem Cell Therapy, PRP, and Prolotherapy are excellent non-surgical treatment solutions. And they can get you back to doing what you love without the need for extended time off.\r\n\r\nEven if you have a partial tear in a ligament or tendon, Regenerative Orthopedics can successfully resolve the injury without the need for surgery. If the tear is complete, surgery is necessary. Regenerative Orthopedics are the safest and most effective treatment options for the repair of ligaments, tendons, and cartilage damage.\r\n\r\nMany of my patients have had surgery, but still experience pain. Regenerative Orthopedics is still able to help even if you have already had surgery. But if surgery is being recommended, consider the alternative. Give us a <a href=\"https://www.drfields.com/contact/\">call <strong>at <a href=\"tel:310-453-1234\">310-453-1234</a>.</strong></a>\r\n\r\nRead the full article from the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.\r\n\r\n[caption id=\"attachment_4373\" align=\"alignnone\" width=\"955\"]<img class=\"wp-image-4373 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-2-2.gif\" alt=\"Knee Pain\" width=\"955\" height=\"1249\" /> Knee Pain and Dysfunction[/caption]\r\n\r\n<img class=\"wp-image-1244 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-1.gif\" alt=\"Townsend Article July 2013 1\" width=\"939\" height=\"1231\" />\r\n\r\n&nbsp;','Knee Pain and Dysfunction','','inherit','closed','closed','','1539-revision-v1','','','2020-12-29 22:38:30','2020-12-29 22:38:30','',1539,'https://www.drfields.com/uncategorized/1539-revision-v1/',0,'revision','',0),(4375,9,'2020-12-29 22:39:02','2020-12-29 22:39:02','<h3>Knee Pain and Dysfunction</h3>\r\nAt one time or another, most of us will have had some sort of knee dysfunction or pain. After all, we use our knees on a daily basis. And because the knee is a weight-bearing joint, athletic individuals and overweight people are more prone to knee pain and injuries.\r\n\r\nKnee pain can develop suddenly or come on over a period of time. The acute or sudden pain may be the result of a fall or mistep. And pain that develops chronically over time may be the result of an acute injury that never healed correctly. Chronic conditions are the most common cause of knee pain and dysfunction, and the culprit is very often arthritis.\r\n<h3>Degenerative Joint Disease and Osteoarthritis</h3>\r\nOsteoarthritis affects most of us as we age, steadily wearing away the smooth cartilage that caps the ends of our long bones. That cartilage is essential for proper motion and function of the joint. The wearing down of the joint can be accelerated by overuse in playing sports, physically demanding jobs, walking, excessive sitting (which increases the pressure within the knee) or just over time through daily wear and tear.\r\n\r\nReferred pain, which occurs when a ligament injury or weakness in one part of the body cause pain in another part, may also be involved.\r\n<h3>Knee Pain Treatments</h3>\r\nKnee pain will often go away on its on. Heat, ice, massage, PT, acupuncture, chiropractic, laser, and other treatments may help to resolve the pain. But when these treatments do not work, Regenerative Orthopedics, such as Stem Cell Therapy, PRP, and Prolotherapy are excellent non-surgical treatment solutions. And they can get you back to doing what you love without the need for extended time off.\r\n\r\nEven if you have a partial tear in a ligament or tendon, Regenerative Orthopedics can successfully resolve the injury without the need for surgery. If the tear is complete, surgery is necessary. Regenerative Orthopedics are the safest and most effective treatment options for the repair of ligaments, tendons, and cartilage damage.\r\n\r\nMany of my patients have had surgery, but still experience pain. Regenerative Orthopedics is still able to help even if you have already had surgery. But if surgery is being recommended, consider the alternative. Give us a <a href=\"https://www.drfields.com/contact/\">call <strong>at </strong></a><strong><a href=\"tel:310-453-1234\">310-453-1234</a>.</strong>\r\n\r\nRead the full article from the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.\r\n\r\n[caption id=\"attachment_4373\" align=\"alignnone\" width=\"955\"]<img class=\"wp-image-4373 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-2-2.gif\" alt=\"Knee Pain\" width=\"955\" height=\"1249\" /> Knee Pain and Dysfunction[/caption]\r\n\r\n<img class=\"wp-image-1244 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-1.gif\" alt=\"Townsend Article July 2013 1\" width=\"939\" height=\"1231\" />\r\n\r\n&nbsp;','Knee Pain and Dysfunction','','inherit','closed','closed','','1539-revision-v1','','','2020-12-29 22:39:02','2020-12-29 22:39:02','',1539,'https://www.drfields.com/uncategorized/1539-revision-v1/',0,'revision','',0),(4377,9,'2020-12-30 21:48:38','2020-12-30 21:48:38','<h3>How to Avoid Joint and Spine Surgery <em>and Live Pain Free</em></h3>\nRegenerative Orthopedics are natural non-surgical methods that assist the body to heal injured tendons and ligaments. These treatments help your body make new cells by boosting the natural healing cascade of the body. This serves to strengthen lax or torn ligaments and tendons, and repairs the damaged structures. It also helps patients avoid joint and spine surgery.\n<h3>When Is It Time To Seek Regenerative Orthopedics?</h3>\nIf you have had chronic pain that remains even after weeks, months, or years of healing, then it\'s time to seek out a practitioner who is experienced in Regenerative Orthopedics. The problem lies in the fact that both ligaments and tendons have poor circulations. And it is this lack of blood supply to the injured area that deprives the injured area of the nutrients it needs to heal properly.\n\nAnd although the blood supply is low, the presence of nerves is not. So these nerves become stretched and irritated in these weakened areas, and the tweaked nerves send out pain signals. Additionally, the ongoing weakness in the ligaments and tendons will also lead to degenerative of the cartilage. Eventually, arthritis will result. It is not uncommon for surgery to be recommended at this point.\n\nBut non-surgical Regenerative Orthopedics is a more logical alternative, and one that does not require extended downtime. Regenerative Orthopedics can help you avoid joint and spine surgery. It can boost healing in your joint and help you to achieve the pain-free results you seek.\n<h3>Regenerative Orthopedics include Stem Cell Therapy, PRP, and Prolotherapy</h3>\n<h4><em>Dextrose Prolotherapy</em></h4>\nDextrose Prolotherapy is just one type of Regenerative Orthopedics. It involves a series of 6-8 treatments with injections of a mild proliferant that stimulates the healing process. Prolotherapy is an excellent alternative to cortisone injections, which in long-term studies have been shown to actually weaken tissue. Prolotherapy is effective at eliminating pain in many different painful conditions.\n<h4><em>Platelet Rich Plasma (PRP)</em></h4>\nPlatelet Rich Plasma uses the patients own blood to concentrate platelets by a factor of 7 to 10 times. That means there are a lot of growth factors available in this concentrated solution. The solution rich in growth factors can then be injected into the damaged area to catalyze the growth of new soft tissue. PRP is good for structures such as the labrum of the hip and shoulder, the knee meniscus, and some forms of arthritis.\n<h4><em>Stem Cell Therapy</em></h4>\nStem Cell Therapy is derived from the patients own bone marrow stem cells and adipose stem cells. These cells can regenerate tissue like cartilage. Typically, stem cell therapy is used to regenerative articular cartilage, but it can also regenerative ligaments and tendons. This treatment is generally used in more advanced cases, such as degenerative arthritis, severe tendon injuries, and severely degenerated joints.\n\nAll three regenerative techniques accelerate fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissue, and chondrocyte proliferation. All of which amplify the body\'s own repair process and accelerate healing.\n\nRegenerative Orthopedics help you to avoid joint and spine surgery and to live pain free without the need for invasive surgery. And it is tolerated well by people of all ages.\n\nRead the full article below as it appeared in the <a href=\"https://www.townsendletter.com\">Townsend Letter.</a>\n\nWe have quite a few more articles about arthritis pain. To read more articles about treatment options for arthritis, <a href=\"https://www.drfields.com/?s=arthritis\">click here.</a>\n\n[caption id=\"attachment_1248\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1248 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-june-2013-2.gif\" alt=\"How to Avoid Joint and Spine Surgery\" width=\"955\" height=\"1248\" /> How to Avoid Joint and Spine Surgery[/caption]\n\n[caption id=\"attachment_1249\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1249 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-june-2013-3.gif\" alt=\"How to Avoid Joint and Spine Surgery\" width=\"955\" height=\"1241\" /> How to Avoid Joint and Spine Surgery[/caption]','How to Avoid Joint and Spine Surgery','','inherit','closed','closed','','1541-autosave-v1','','','2020-12-30 21:48:38','2020-12-30 21:48:38','',1541,'https://www.drfields.com/uncategorized/1541-autosave-v1/',0,'revision','',0),(4378,9,'2020-12-30 21:48:53','2020-12-30 21:48:53','<h3>How to Avoid Joint and Spine Surgery <em>and Live Pain Free</em></h3>\r\nRegenerative Orthopedics are natural non-surgical methods that assist the body to heal injured tendons and ligaments. These treatments help your body make new cells by boosting the natural healing cascade of the body. This serves to strengthen lax or torn ligaments and tendons, and repairs the damaged structures. It also helps patients avoid joint and spine surgery.\r\n<h3>When Is It Time To Seek Regenerative Orthopedics?</h3>\r\nIf you have had chronic pain that remains even after weeks, months, or years of healing, then it\'s time to seek out a practitioner who is experienced in Regenerative Orthopedics. The problem lies in the fact that both ligaments and tendons have poor circulations. And it is this lack of blood supply to the injured area that deprives the injured area of the nutrients it needs to heal properly.\r\n\r\nAnd although the blood supply is low, the presence of nerves is not. So these nerves become stretched and irritated in these weakened areas, and the tweaked nerves send out pain signals. Additionally, the ongoing weakness in the ligaments and tendons will also lead to degenerative of the cartilage. Eventually, arthritis will result. It is not uncommon for surgery to be recommended at this point.\r\n\r\nBut non-surgical Regenerative Orthopedics is a more logical alternative, and one that does not require extended downtime. Regenerative Orthopedics can help you avoid joint and spine surgery. It can boost healing in your joint and help you to achieve the pain-free results you seek.\r\n<h3>Regenerative Orthopedics include Stem Cell Therapy, PRP, and Prolotherapy</h3>\r\n<h4><em>Dextrose Prolotherapy</em></h4>\r\nDextrose Prolotherapy is just one type of Regenerative Orthopedics. It involves a series of 6-8 treatments with injections of a mild proliferant that stimulates the healing process. Prolotherapy is an excellent alternative to cortisone injections, which in long-term studies have been shown to actually weaken tissue. Prolotherapy is effective at eliminating pain in many different painful conditions.\r\n<h4><em>Platelet Rich Plasma (PRP)</em></h4>\r\nPlatelet Rich Plasma uses the patients own blood to concentrate platelets by a factor of 7 to 10 times. That means there are a lot of growth factors available in this concentrated solution. The solution rich in growth factors can then be injected into the damaged area to catalyze the growth of new soft tissue. PRP is good for structures such as the labrum of the hip and shoulder, the knee meniscus, and some forms of arthritis.\r\n<h4><em>Stem Cell Therapy</em></h4>\r\nStem Cell Therapy is derived from the patients own bone marrow stem cells and adipose stem cells. These cells can regenerate tissue like cartilage. Typically, stem cell therapy is used to regenerative articular cartilage, but it can also regenerative ligaments and tendons. This treatment is generally used in more advanced cases, such as degenerative arthritis, severe tendon injuries, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissue, and chondrocyte proliferation. All of which amplify the body\'s own repair process and accelerate healing.\r\n\r\nRegenerative Orthopedics help you to avoid joint and spine surgery and to live pain free without the need for invasive surgery. And it is tolerated well by people of all ages.\r\n\r\nRead the full article below as it appeared in the <a href=\"https://www.townsendletter.com\">Townsend Letter.</a>\r\n\r\nWe have quite a few more articles about arthritis pain. To read more articles about treatment options for arthritis, <a href=\"https://www.drfields.com/?s=arthritis\">click here.</a>\r\n\r\n[caption id=\"attachment_1248\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1248 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-june-2013-2.gif\" alt=\"How to Avoid Joint and Spine Surgery\" width=\"955\" height=\"1248\" /> How to Avoid Joint and Spine Surgery[/caption]\r\n\r\n[caption id=\"attachment_1249\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1249 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-june-2013-3.gif\" alt=\"How to Avoid Joint and Spine Surgery\" width=\"955\" height=\"1241\" /> How to Avoid Joint and Spine Surgery[/caption]','How to Avoid Joint and Spine Surgery','','inherit','closed','closed','','1541-revision-v1','','','2020-12-30 21:48:53','2020-12-30 21:48:53','',1541,'https://www.drfields.com/uncategorized/1541-revision-v1/',0,'revision','',0),(4379,9,'2020-12-31 20:43:11','2020-12-31 20:43:11','[caption id=\"attachment_1159\" align=\"alignright\" width=\"355\"]<img class=\"wp-image-1159 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Soft-Drinks.jpg\" alt=\"Soft Drinks Increase Risk for Disease\" width=\"355\" height=\"463\" /> <em>         <strong>Soft Drinks Increase Risk for Disease</strong></em>[/caption]\n<h3>Soft Drinks Increase Risk for Disease</h3>\nSugary beverages are the leading sources of added sugars in diets in the US. Did you know a single can of sugar-sweetened soda contains about the upper limit of the recommended 25 to 50 g per day?1 Sucrose-sweetened soft drinks increase the risk of disease and have been implicated for decades in cardiometabolic diseases.\n\nSugary beverages are any liquids sweetened with added sugars. And there are many of them like brown sugar, corn sweetener, corn syrup, dextrose, fructose, glucose, high-fructose corn syrup, and more.\n<h3>What kind of drinks are considered sugary beverages?</h3>\nExamples of sugary drinks include regular soda (not sugar-free), fruit drinks, sports drinks, energy drinks, sweetened waters, hot chocolate, chai, and coffee and tea beverages with added sugars.\n\nAll of this sugar has harmful effects. Sugary beverage intake boosts the risk for weight gain, <span class=\"ej-keyword\" data-value=\"metabolic syndrome\">metabolic syndrome</span>, <span class=\"ej-keyword\" data-value=\"type 2 diabetes\">type 2 diabetes</span>, coronary heart diseases, hypertension, and stroke. In one study, over 50,000 deaths from cardiac reasons were attributed to high sugar consumption. 2\n<h3>The Framingham Heart Study</h3>\nThe Framingham Heart Study released the results of an observational study that associates the consumption of sugary drinks to an increased risk for coronary vascular disease and with adverse changes in high‐density lipoprotein cholesterol and triglyceride concentrations and may contribute to the development of dyslipidemia.3\n<h4><em>Both Diet and Regular Soft Drinks Increase Disease Risk</em></h4>\nThe researchers expressed surprise that it did not matter whether the soft drink was diet or regular. \"We were struck by the fact that it didn’t matter…the association with increased risk was present.\" said Ramachandron Vasan, M.D., and senior author of the study and professor of medicine at Boston University. \"In those who drink one or more soft drinks daily, there was an association of an increased risk of developing the metabolic syndrome.\"\n<h4><em>Metabolic Syndrome</em></h4>\nMetabolic syndrome is a relatively new term to describe a cluster of cardiovascular disease and diabetes risk factors, including high blood pressure, excess waist circumference, high triglycerides, low HDL, and high fasting glucose.\n\nThe study, which included approximately 9000 person observations of middle-aged men and women, showed that those who consumed one or more soft drinks per day had a 48% percent increase in metabolic syndrome prevalence compared to those consuming less than one soft drink per day.\n\nThere has been some press regarding the potential health effects of high fructose corn syrup, a common but relatively new sweetener. However, the Framingham Heart Study shows an equal risk increase regardless of the soft drink\'s sweetener type.\n<h4><em>How Do Soft Drinks Cause Problems in the Body?</em></h4>\nTheories by the research group include that, potentially, the drinks\' high sweetness makes a person more prone to eat sweet items, that the caramel content in soft drinks may promote the development of advanced glycation end products. And potential complexes of sugars can then result in insulin resistance, which can cause inflammation in experimental models.\n\nThe journal, <i>Current Opinion in Clinical Nutrition &amp; Metabolic Care</i> says, \"sugary drinks enhance levels of circulating triglycerides and the accumulation of fat in the liver, muscle, and in the visceral fat depot.  Concerning the mechanisms for SSB to induce these metabolic aberrations? It is mainly <span class=\"ej-keyword\" data-value=\"fructose\">fructose</span> (free or as part of the sucrose molecule) that is the main driver of these metabolic aberrations presumably primarily by inducing lipid synthesis in and release from the liver.\"4\n<h3>Other observations noted in the Framingham Heart Study for people who drink at least one soft drink per day include:</h3>\n<ul>\n 	<li>31 percent greater risk of developing new-onset obesity (defined as a body mass index [BMI] of 30 kilograms/meter2 or more)</li>\n 	<li>30 percent increased risk of developing increased waist circumference.</li>\n 	<li>25 percent increased risk of developing high blood triglycerides or high fasting blood glucose.</li>\n 	<li>32 percent higher risk of having low HDL levels.</li>\n 	<li>A trend towards an increased risk of developing high blood pressure that was not statistically significant</li>\n</ul>\nThe Framingham Heart Study was established in 1948 to identify the common factors or characteristics that contribute to cardiovascular disease (CVD) by following its development over a long period of time in a large group of participants who had not yet developed overt symptoms of CVD or suffered a heart attack or stroke. The Framingham Heart Study is a joint project of the National Heart, Lung and Blood Institute, and Boston University.3\n<h3>Summary</h3>\n<h4><em>A recommended amount of soda consumption to maintain health has not been determined. But intake of soft drinks should generally be reduced as much as possible to improve health.Whatever the ultimate mechanism leading to increased risk, it seems like a wise recommendation would be to substitute water for soft drinks.</em></h4>\n<h3>References</h3>\n1World Health Organization. WHO Calls on Countries to Reduce Sugars Intake Among Adults and Children. <a class=\"references__uri\" href=\"http://www.who.int/mediacentre/news/releases/2015/sugar-guideline/en/\">http://www.who.int/mediacentre/news/releases/2015/sugar-guideline/en/</a>. Accessed December 30, 2020.\n\n2Micha R, Peñalvo JL, Cudhea F, Imamura F, Rehm CD, Mozaffarian D. <span class=\"references__article-title\">Association between dietary factors and mortality from heart disease, stroke, and type 2 diabetes in the United States. </span><span class=\"references__source\"><strong>JAMA</strong></span>. <span class=\"references__year\">2017</span>; <i>317</i>:912–924. DOI: 10.1001/JAMA.2017.0947.\n\n3Haslam, Danielle E., et al. \"Beverage consumption and longitudinal changes in lipoprotein concentrations and incident dyslipidemia in US adults: The Framingham Heart Study.\" <i>Journal of the American Heart Association</i> 9.5 (2020): e014083.\n\n4Richelsen, Bjørn. \"Sugar-sweetened beverages and cardio-metabolic disease risks.\" <i>Current Opinion in Clinical Nutrition &amp; Metabolic Care</i> 16.4 (2013): 478-484.','Soft Drinks Increase Risk for Disease','','inherit','closed','closed','','1506-autosave-v1','','','2020-12-31 20:43:11','2020-12-31 20:43:11','',1506,'https://www.drfields.com/uncategorized/1506-autosave-v1/',0,'revision','',0),(4380,9,'2020-12-31 20:34:59','2020-12-31 20:34:59','[caption id=\"attachment_1159\" align=\"alignright\" width=\"355\"]<img class=\"wp-image-1159 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Soft-Drinks.jpg\" alt=\"Soft Drinks Increase Risk for Disease\" width=\"355\" height=\"463\" /> <em>     Soft Drinks Increase Risk for Disease</em>[/caption]\r\n<h3>Soft Drinks Increase Risk for Disease</h3>\r\nSugary beverages are the leading sources of added sugars in diets in the US. Did you know a single can of sugar-sweetened soda contains about the upper limit of the recommended 25 to 50 g per day?1 Sucrose-sweetened soft drinks increase risk for disease and have been implicated for decades in cardiometabolic diseases.\r\n\r\nSugary beverages are any liquids sweetened with added sugars. And there are a bunch of them like brown sugar, corn sweetener, corn syrup, dextrose, fructose, glucose, high-fructose corn syrup, and more.\r\n<h3>What kind of drinks are considered sugary beverages?</h3>\r\nExamples of sugary drinks include, regular soda (not sugar-free), fruit drinks, sports drinks, energy drinks, sweetened waters, hot chocolate, chai, and coffee and tea beverages with added sugars.\r\n\r\nAll of this sugar has harmful effects. Sugary beverage intake boosts the risk for weight gain, <span class=\"ej-keyword\" data-value=\"metabolic syndrome\">metabolic syndrome</span>, <span class=\"ej-keyword\" data-value=\"type 2 diabetes\">type 2 diabetes</span>, coronary heart diseases, hypertension, and stroke. In one study, over 50, 000 deaths from cardiac reasons were attributed to high sugar consumption. 2\r\n<h3>The Framingham Heart Study</h3>\r\nThe Framingham Heart Study released the results of an observational study that associates the consumption of sugary drinks to an increased risk for coronary vascular disease and with adverse changes in high‐density lipoprotein cholesterol and triglyceride concentrations, and may contribute to the development of dyslipidemia.3\r\n<h4><em>Both Diet and Regular Soft Drinks Increase Disease Risk</em></h4>\r\nThe researchers expressed surprise at that fact that it did not matter whether the soft drink was diet or regular. \"We were struck by the fact that it didn’t matter…the association with increased risk was present.\" said Ramachandron Vasan, M.D., and senior author of the study and professor of medicine at Boston University. \"In those who drink one or more soft drinks daily, there was an association of an increased risk of developing the metabolic syndrome.\"\r\n<h4><em>Metabolic Syndrome</em></h4>\r\nMetabolic syndrome is a relatively new term to describe a cluster of cardiovascular disease and diabetes risk factors that include high blood pressure, excess waist circumference, high triglycerides, low HDL, and high fasting glucose.\r\n\r\nThe study, which included approximately 9000 person observations of middle aged men and women showed that those who consumed one or more soft drinks per day had a 48% percent increase of prevalence in metabolic syndrome as compared to those consuming less than one soft drink per day.\r\n\r\nThere has been some press regarding the potential health affects of high fructose corn syrup, a common but relatively new sweetener. However, the Framingham Heart Study shows equal risk increase regardless of the sweetener type contained in the soft drink.\r\n<h4><em>How Do Soft Drinks Cause Problems in the Body?</em></h4>\r\nTheories by the research group include that, potentially, the high sweetness of the drinks makes a person more prone to eat sweet items, that the caramel content in soft drinks may promote the development of advanced glycation end products. And potential complexes of sugars can then result in insulin resistance which can cause inflammation in experimental models.\r\n\r\nThe journal, <i>Current Opinion in Clinical Nutrition &amp; Metabolic Care</i> says, \"sugary drinks enhance levels of circulating triglycerides and the accumulation of fat in the liver, muscle, and in the visceral fat depot.  Concerning the mechanisms for SSB to induce these metabolic aberrations? It is mainly <span class=\"ej-keyword\" data-value=\"fructose\">fructose</span> (free or as part of the sucrose molecule) that is the main driver of these metabolic aberrations presumably primarily by inducing lipid synthesis in and release from the liver.\"4\r\n<h3>Other observations noted in the Framingham Heart Study for people who drink at least one soft drink per day include:</h3>\r\n<ul>\r\n 	<li>31 percent greater risk of developing new-onset obesity (defined as a body mass index [BMI] of 30 kilograms/meter2 or more)</li>\r\n 	<li>30 percent increased risk of developing increased waist circumference.</li>\r\n 	<li>25 percent increased risk of developing high blood triglycerides or high fasting blood glucose.</li>\r\n 	<li>32 percent higher risk of having low HDL levels.</li>\r\n 	<li>A trend towards an increased risk of developing high blood pressure that was not statistically significant</li>\r\n</ul>\r\nThe Framingham Heart Study was established in 1948 to identify the common factors or characteristics that contribute to cardiovascular disease (CVD) by following its development over a long period of time in a large group of participants who had not yet developed overt symptoms of CVD or suffered a heart attack or stroke. The Framingham Heart Study is joint project of the National Heart, Lung and Blood Institute and Boston University.3\r\n<h3>Summary</h3>\r\n<h4><em>A recommended amount of soda consumption to maintain health has not been determined. But intake of soft drinks should generally be reduced as much as possible to improve health.Whatever the ultimate mechanism leading to increased risk, it seems like a wise recommendation would be to substitute water for soft drinks.</em></h4>\r\n<h3>References</h3>\r\n1World Health Organization. WHO Calls on Countries to Reduce Sugars Intake Among Adults and Children. <a class=\"references__uri\" href=\"http://www.who.int/mediacentre/news/releases/2015/sugar-guideline/en/\">http://www.who.int/mediacentre/news/releases/2015/sugar-guideline/en/</a>. Accessed December 30, 2020.\r\n\r\n2Micha R, Peñalvo JL, Cudhea F, Imamura F, Rehm CD, Mozaffarian D. <span class=\"references__article-title\">Association between dietary factors and mortality from heart disease, stroke, and type 2 diabetes in the United States. </span><span class=\"references__source\"><strong>JAMA</strong></span>. <span class=\"references__year\">2017</span>; <i>317</i>:912–924. doi: 10.1001/jama.2017.0947.\r\n\r\n3Haslam, Danielle E., et al. \"Beverage consumption and longitudinal changes in lipoprotein concentrations and incident dyslipidemia in US adults: The Framingham Heart Study.\" <i>Journal of the American Heart Association</i> 9.5 (2020): e014083.\r\n\r\n4Richelsen, Bjørn. \"Sugar-sweetened beverages and cardio-metabolic disease risks.\" <i>Current Opinion in Clinical Nutrition &amp; Metabolic Care</i> 16.4 (2013): 478-484.','Soft Drinks Increase Risk for Disease','','inherit','closed','closed','','1506-revision-v1','','','2020-12-31 20:34:59','2020-12-31 20:34:59','',1506,'https://www.drfields.com/uncategorized/1506-revision-v1/',0,'revision','',0),(4381,9,'2020-12-31 20:43:28','2020-12-31 20:43:28','[caption id=\"attachment_1159\" align=\"alignright\" width=\"355\"]<img class=\"wp-image-1159 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Soft-Drinks.jpg\" alt=\"Soft Drinks Increase Risk for Disease\" width=\"355\" height=\"463\" /> <em>         <strong>Soft Drinks Increase Risk for Disease</strong></em>[/caption]\r\n<h3>Soft Drinks Increase Risk for Disease</h3>\r\nSugary beverages are the leading sources of added sugars in diets in the US. Did you know a single can of sugar-sweetened soda contains about the upper limit of the recommended 25 to 50 g per day?1 Sucrose-sweetened soft drinks increase the risk of disease and have been implicated for decades in cardiometabolic diseases.\r\n\r\nSugary beverages are any liquids sweetened with added sugars. And there are many of them like brown sugar, corn sweetener, corn syrup, dextrose, fructose, glucose, high-fructose corn syrup, and more.\r\n<h3>What kind of drinks are considered sugary beverages?</h3>\r\nExamples of sugary drinks include regular soda (not sugar-free), fruit drinks, sports drinks, energy drinks, sweetened waters, hot chocolate, chai, and coffee and tea beverages with added sugars.\r\n\r\nAll of this sugar has harmful effects. Sugary beverage intake boosts the risk for weight gain, <span class=\"ej-keyword\" data-value=\"metabolic syndrome\">metabolic syndrome</span>, <span class=\"ej-keyword\" data-value=\"type 2 diabetes\">type 2 diabetes</span>, coronary heart diseases, hypertension, and stroke. In one study, over 50,000 deaths from cardiac reasons were attributed to high sugar consumption. 2\r\n<h3>The Framingham Heart Study</h3>\r\nThe Framingham Heart Study released the results of an observational study that associates the consumption of sugary drinks to an increased risk for coronary vascular disease and with adverse changes in high‐density lipoprotein cholesterol and triglyceride concentrations and may contribute to the development of dyslipidemia.3\r\n<h4><em>Both Diet and Regular Soft Drinks Increase Disease Risk</em></h4>\r\nThe researchers expressed surprise that it did not matter whether the soft drink was diet or regular. \"We were struck by the fact that it didn’t matter…the association with increased risk was present.\" said Ramachandron Vasan, M.D., and senior author of the study and professor of medicine at Boston University. \"In those who drink one or more soft drinks daily, there was an association of an increased risk of developing the metabolic syndrome.\"\r\n<h4><em>Metabolic Syndrome</em></h4>\r\nMetabolic syndrome is a relatively new term to describe a cluster of cardiovascular disease and diabetes risk factors, including high blood pressure, excess waist circumference, high triglycerides, low HDL, and high fasting glucose.\r\n\r\nThe study, which included approximately 9000 person observations of middle-aged men and women, showed that those who consumed one or more soft drinks per day had a 48% percent increase in metabolic syndrome prevalence compared to those consuming less than one soft drink per day.\r\n\r\nThere has been some press regarding the potential health effects of high fructose corn syrup, a common but relatively new sweetener. However, the Framingham Heart Study shows an equal risk increase regardless of the soft drink\'s sweetener type.\r\n<h4><em>How Do Soft Drinks Cause Problems in the Body?</em></h4>\r\nTheories by the research group include that, potentially, the drinks\' high sweetness makes a person more prone to eat sweet items, that the caramel content in soft drinks may promote the development of advanced glycation end products. And potential complexes of sugars can then result in insulin resistance, which can cause inflammation in experimental models.\r\n\r\nThe journal, <i>Current Opinion in Clinical Nutrition &amp; Metabolic Care</i> says, \"sugary drinks enhance levels of circulating triglycerides and the accumulation of fat in the liver, muscle, and in the visceral fat depot.  Concerning the mechanisms for SSB to induce these metabolic aberrations? It is mainly <span class=\"ej-keyword\" data-value=\"fructose\">fructose</span> (free or as part of the sucrose molecule) that is the main driver of these metabolic aberrations presumably primarily by inducing lipid synthesis in and release from the liver.\"4\r\n<h3>Other observations noted in the Framingham Heart Study for people who drink at least one soft drink per day include:</h3>\r\n<ul>\r\n 	<li>31 percent greater risk of developing new-onset obesity (defined as a body mass index [BMI] of 30 kilograms/meter2 or more)</li>\r\n 	<li>30 percent increased risk of developing increased waist circumference.</li>\r\n 	<li>25 percent increased risk of developing high blood triglycerides or high fasting blood glucose.</li>\r\n 	<li>32 percent higher risk of having low HDL levels.</li>\r\n 	<li>A trend towards an increased risk of developing high blood pressure that was not statistically significant</li>\r\n</ul>\r\nThe Framingham Heart Study was established in 1948 to identify the common factors or characteristics that contribute to cardiovascular disease (CVD) by following its development over a long period of time in a large group of participants who had not yet developed overt symptoms of CVD or suffered a heart attack or stroke. The Framingham Heart Study is a joint project of the National Heart, Lung and Blood Institute, and Boston University.3\r\n<h3>Summary</h3>\r\n<h4><em>A recommended amount of soda consumption to maintain health has not been determined. But intake of soft drinks should generally be reduced as much as possible to improve health.Whatever the ultimate mechanism leading to increased risk, it seems like a wise recommendation would be to substitute water for soft drinks.</em></h4>\r\n<h3>References</h3>\r\n1World Health Organization. WHO Calls on Countries to Reduce Sugars Intake Among Adults and Children. <a class=\"references__uri\" href=\"http://www.who.int/mediacentre/news/releases/2015/sugar-guideline/en/\">http://www.who.int/mediacentre/news/releases/2015/sugar-guideline/en/</a>. Accessed December 30, 2020.\r\n\r\n2Micha R, Peñalvo JL, Cudhea F, Imamura F, Rehm CD, Mozaffarian D. <span class=\"references__article-title\">Association between dietary factors and mortality from heart disease, stroke, and type 2 diabetes in the United States. </span><span class=\"references__source\"><strong>JAMA</strong></span>. <span class=\"references__year\">2017</span>; <i>317</i>:912–924. DOI: 10.1001/JAMA.2017.0947.\r\n\r\n3Haslam, Danielle E., et al. \"Beverage consumption and longitudinal changes in lipoprotein concentrations and incident dyslipidemia in US adults: The Framingham Heart Study.\" <i>Journal of the American Heart Association</i> 9.5 (2020): e014083.\r\n\r\n4Richelsen, Bjørn. \"Sugar-sweetened beverages and cardio-metabolic disease risks.\" <i>Current Opinion in Clinical Nutrition &amp; Metabolic Care</i> 16.4 (2013): 478-484.','Soft Drinks Increase Risk for Disease','','inherit','closed','closed','','1506-revision-v1','','','2020-12-31 20:43:28','2020-12-31 20:43:28','',1506,'https://www.drfields.com/uncategorized/1506-revision-v1/',0,'revision','',0),(4382,9,'2021-01-06 01:11:50','2021-01-06 01:11:50','[caption id=\"attachment_4099\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4099\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/headaches-1-500x500.jpg\" alt=\"Headaches\" width=\"500\" height=\"500\" /> <strong><em>                        Are Headaches Coming From Your Neck?</em></strong>[/caption]\r\n<h3><b>Suffering from Headaches? </b><em><b>The Problem May Come From Your Neck.</b></em></h3>\r\n<span style=\"font-weight: 400;\">Headaches are a recurrent malady suffered by millions of Americans, causing pain and discomfort in the head, forehead, scalp, or neck. At times they are a mild nuisance. But headaches can become severe, even disabling, with the pain leading to difficulty at work, concentration and performance of daily activities. </span>\r\n<h3><b>What is the Source of Headaches?</b></h3>\r\n<h4><b><i>Hormones</i></b></h4>\r\n<span style=\"font-weight: 400;\">Headaches have different sources, and the causative factors require some investigation. Hormones might be the culprit. Women may experience headaches during the menstrual cycle due to shifts in hormone levels. And when this is the case, there may be a need to balance the hormones, because the woman could have too much estrogen and not enough progesterone.</span>\r\n<h4><em><strong>Diet </strong></em></h4>\r\n<span style=\"font-weight: 400;\">Headache pain can often be </span><span style=\"font-weight: 400;\">corrected with diet. Food allergies or sensitivities can trigger headaches. And eating too many carbohydrates or not enough protein, for example, can alter blood chemistry. And that can prompt a headache or foster problems with the hormonal system, which can again lead to headaches.</span>\r\n<h4><strong><i>TMJ Syndrome</i></strong></h4>\r\n<span style=\"font-weight: 400;\">Temporomandibular</span><span style=\"font-weight: 400;\"> joint (TMJ) problems may contribute to headaches</span><span style=\"font-weight: 400;\">. Sufferers with TMJ have clicking at this joint, experience facial pain, and may notice a stiff mouth upon awakening after a night’s sleep. And all of this can then lead to a headache. TMJ syndrome, which often includes headaches, requires stabilization of the TMJ joint and ligament. Also, bite problems may be present, necessitating bite equilibration.</span>\r\n<h3><b>The Neck as the Source of Headaches</b></h3>\r\n<span style=\"font-weight: 400;\">It is not uncommon for the source of headaches to originate in the neck. Do you have neck pain before or during a headache? If you have neck pain followed by a tension or migraine headache, then the source of the headache may very well be coming from your neck. </span>\r\n\r\n<span style=\"font-weight: 400;\">The most common neck problem producing headaches is injury to the ligaments in the neck. How do you know if you have ligament injury in your neck? You will hear grinding, crunching, and popping sounds when you turn your neck. And there is also a high probability that you crack your neck often. Injured ligaments generate instability in the neck, which induces muscle spasms in the neck as the muscles attempt to stabilize it. And the result is referral pain in the form of a tension headache in the forehead, back of the neck, or occiput. </span>\r\n<h4><strong><i>Cervicocranial Syndrome or </i><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><i>Barré-Liéou</i></a><i> Syndrome</i></strong></h4>\r\n<span style=\"font-weight: 400;\">Cervicocranial Syndrome, previously known as </span><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><span style=\"font-weight: 400;\">Barré-Liéou</span></a><span style=\"font-weight: 400;\"> Syndrome is a condition that causes a bunch of s</span><span style=\"font-weight: 400;\">ymptoms. The symptoms may include headache, dizziness, facial pain, ear pain, vertigo, tinnitus, loss of voice,</span> <span style=\"font-weight: 400;\">hoarseness, neck pain and severe fatigue. </span>\r\n\r\n<span style=\"font-weight: 400;\">Instability of the neck or cervical spine is usually the source of these symptoms.</span><span style=\"font-weight: 400;\"> Neck instability involves increased motion between adjacent vertebrae which causes excessive stress on the supporting ligament structures. And the nerve endings within those structures elicit pain and a variety of symptoms.</span> <span style=\"font-weight: 400;\">In other words</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">neck instability causes extra movement in the neck bones. And this extra motion can cause the bones to push on the nerves and cause irritation of the nervous system, leading to headaches and a bunch of other symptoms. </span>\r\n<h4><strong><i>Occipital Neuralgia</i></strong></h4>\r\n<span style=\"font-weight: 400;\">Occipital neuralgia is another headache causing condition related to neck instability. Those with this condition often experience sharp, stabbing pain in the lower part of the neck, the back of the head, and behind their eyes. The pain is typically one-sided. </span>\r\n\r\n<span style=\"font-weight: 400;\">The occipital nerve, which runs at the back of the head, can cause severe pain when injured. Many folks get nerve blocks for this pain. But these are not always effective at resolving the pain. Any instability of C1, C2, the first two neck vertebrae, can pinch or irritate the occipital nerve. And the extra motion along the spine can kink, press and tighten on the nerves at the base of the skull. Neck instability symptoms include tenderness, clicking, grinding and popping in the back of the head. </span>\r\n<h4><strong><i>Whiplash</i></strong></h4>\r\n<span style=\"font-weight: 400;\">Headaches can occur after whiplash injuries. During a whiplash injury the head flexes and extends, in a forward and backward whip that injures the neck ligaments. </span><span style=\"font-weight: 400;\">Whiplash injuries are a common source of neck instability.</span>\r\n\r\n<span style=\"font-weight: 400;\">The lack of stable neck vertebrae can lead to further injury of the soft tissue and joint structures, as well as the possibility of nerve injury and the irritation of the nervous system. And that can result in headaches and other symptoms. Whiplash often results in long-term pain, which is due to ligament injury and malalignment of the neck vertebrae.</span>\r\n<h3><b>Regenerative Orthopedics Repairs Neck Instability</b></h3>\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics involve the injection of natural substances into the damaged ligaments. The treatment results in tightening, repair, and regeneration of the ligaments involved in TMJ and  neck instability. The area becomes stabilized, thus eliminating the instability, muscle spasms and associated neck and jaw pain and other related symptoms. </span>\r\n\r\n<span style=\"font-weight: 400;\">For those who are tired of the disability and pain of severe headaches, and other conditions related to neck instability, Regenerative Orthopedics is a safe, non-surgical option that stops headache pain, decreases symptoms, and increases functionality in otherwise life-altering conditions.</span>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/EKGWkEAaqTM\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Headache Sufferer? It Could Be Your Neck.','','inherit','closed','closed','','2501-revision-v1','','','2021-01-06 01:11:50','2021-01-06 01:11:50','',2501,'https://www.drfields.com/uncategorized/2501-revision-v1/',0,'revision','',0),(4383,9,'2021-01-06 01:40:42','2021-01-06 01:40:42','<h3>A Wonderful Ending to An Almost Disastrous Event</h3>\nIn this article, printed in the <a href=\"https://www.smdp.com\">Santa Monica Daily Press</a>, Peter A. Fields, MD, DC tells the story of an event that could have ended up disastrous. The situation took place while Dr. Fields was swimming at the Santa Monica College pool.\n\nThe combination of being a strong swimmer, having the training of a water safety instructor, and being a doctor, came in handy and resulted in the saving of another swimmer\'s life.\n\nPlease take a look at the full article below.\n\n&nbsp;\n<div class=\"col-md-12\">\n\n[caption id=\"attachment_1115\" align=\"alignleft\" width=\"626\"]<img class=\"wp-image-1115 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Santa-Monica-Daily-Press-Article-2.jpg\" alt=\"A Wonderful Ending to a Most Disastrous Event\" width=\"626\" height=\"1999\" /> A Wonderful Ending to a Most Disastrous Event[/caption]\n\n[caption id=\"attachment_955\" align=\"alignright\" width=\"160\"]<img class=\"wp-image-955 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" /> Dr. Fields[/caption]\n\n</div>\n<img class=\"alignleft size-full wp-image-1116\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1-small.jpg\" alt=\"Stem Cell1 Small\" width=\"62\" height=\"62\" />\n\n&nbsp;\n\n<a href=\"https://www.drfields.com/stem-cell-treatment/\">Stem Cell Prolotherapy</a>\n\nRegenerating one’s joints and spine is not in the future: it is happening today!…\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h3><em>Need Relief from painful joints?</em></h3>\n<em>If you are experiencing painful joints, Peter A. Fields, MD, DC and his staff are ready to help get you back to doing what you love, and doing it pain-free. </em>\n\n<em>Although many treatments may offer temporary pain relief for arthritis and other painful joint conditions, it is important to find a treatment that does more than chase the symptoms and one that actually repairs the injured soft tissue in order to restore normal motion to the knee joint. </em>\n\n<em>Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy which are effective therapies for repair and restoration of motion. These treatments stimulate healing of ligaments, tendons, and restore the normal functioning of the joint, thus preventing the arthritic progression.</em>\n\nCall us today at <a title=\"phone\" href=\"tel:+310-453-1234\"><span class=\"wsm_phone\">310-453-1234</span></a>','A wonderful ending to an almost disastrous event','','inherit','closed','closed','','1473-autosave-v1','','','2021-01-06 01:40:42','2021-01-06 01:40:42','',1473,'https://www.drfields.com/uncategorized/1473-autosave-v1/',0,'revision','',0),(4384,9,'2021-01-06 01:32:17','2021-01-06 01:32:17','<h3>A Wonderful Ending to An Almost Disastrous Event</h3>\r\nIn this article, printed in the <a href=\"https://www.smdp.com\">Santa Monica Daily Press</a>, Peter A. Fields, MD, DC tells the story of A Wonderful Ending to An Almost Disastrous Event that occurred while he was swimming at the Santa Monica College pool.\r\n\r\nThe combination of being a strong swimmer, having the training of a water safety instructor, and being a doctor, came in handy and resulted in the saving of another swimmer\'s life.\r\n\r\nPlease take a look at the full article below.\r\n<div class=\"col-md-12\">\r\n\r\n[caption id=\"attachment_1115\" align=\"alignleft\" width=\"626\"]<img class=\"wp-image-1115 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Santa-Monica-Daily-Press-Article-2.jpg\" alt=\"A Wonderful Ending to a Most Disastrous Event\" width=\"626\" height=\"1999\" /> A Wonderful Ending to a Most Disastrous Event[/caption]\r\n\r\n[caption id=\"attachment_955\" align=\"alignright\" width=\"160\"]<img class=\"wp-image-955 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" /> Dr. Fields[/caption]\r\n\r\n</div>\r\n<img class=\"alignleft size-full wp-image-1116\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1-small.jpg\" alt=\"Stem Cell1 Small\" width=\"62\" height=\"62\" />\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.drfields.com/stem-cell-treatment/\">Stem Cell Prolotherapy</a>\r\n\r\nRegenerating one’s joints and spine is not in the future: it is happening today!…\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','A wonderful ending to an almost disastrous event','','inherit','closed','closed','','1473-revision-v1','','','2021-01-06 01:32:17','2021-01-06 01:32:17','',1473,'https://www.drfields.com/uncategorized/1473-revision-v1/',0,'revision','',0),(4385,9,'2021-01-06 01:40:58','2021-01-06 01:40:58','<h3>A Wonderful Ending to An Almost Disastrous Event</h3>\r\nIn this article, printed in the <a href=\"https://www.smdp.com\">Santa Monica Daily Press</a>, Peter A. Fields, MD, DC tells the story of an event that could have ended up disastrous. The situation took place while Dr. Fields was swimming at the Santa Monica College pool.\r\n\r\nThe combination of being a strong swimmer, having the training of a water safety instructor, and being a doctor, came in handy and resulted in the saving of another swimmer\'s life.\r\n\r\nPlease take a look at the full article below.\r\n\r\n&nbsp;\r\n<div class=\"col-md-12\">\r\n\r\n[caption id=\"attachment_1115\" align=\"alignleft\" width=\"626\"]<img class=\"wp-image-1115 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Santa-Monica-Daily-Press-Article-2.jpg\" alt=\"A Wonderful Ending to a Most Disastrous Event\" width=\"626\" height=\"1999\" /> A Wonderful Ending to a Most Disastrous Event[/caption]\r\n\r\n[caption id=\"attachment_955\" align=\"alignright\" width=\"160\"]<img class=\"wp-image-955 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg\" alt=\"Drfields Bio Img\" width=\"160\" height=\"216\" /> Dr. Fields[/caption]\r\n\r\n</div>\r\n<img class=\"alignleft size-full wp-image-1116\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1-small.jpg\" alt=\"Stem Cell1 Small\" width=\"62\" height=\"62\" />\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.drfields.com/stem-cell-treatment/\">Stem Cell Prolotherapy</a>\r\n\r\nRegenerating one’s joints and spine is not in the future: it is happening today!…\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3><em>Need Relief from painful joints?</em></h3>\r\n<em>If you are experiencing painful joints, Peter A. Fields, MD, DC and his staff are ready to help get you back to doing what you love, and doing it pain-free. </em>\r\n\r\n<em>Although many treatments may offer temporary pain relief for arthritis and other painful joint conditions, it is important to find a treatment that does more than chase the symptoms and one that actually repairs the injured soft tissue in order to restore normal motion to the knee joint. </em>\r\n\r\n<em>Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy which are effective therapies for repair and restoration of motion. These treatments stimulate healing of ligaments, tendons, and restore the normal functioning of the joint, thus preventing the arthritic progression.</em>\r\n\r\nCall us today at <span class=\"wsm_phone\"><a title=\"phone\" href=\"tel:+310-453-1234\">310-453-1234</a>.</span>','A wonderful ending to an almost disastrous event','','inherit','closed','closed','','1473-revision-v1','','','2021-01-06 01:40:58','2021-01-06 01:40:58','',1473,'https://www.drfields.com/uncategorized/1473-revision-v1/',0,'revision','',0),(4387,8,'2021-01-06 18:39:08','2021-01-06 18:39:08','','iwp_log_5ff603cc462ae','','publish','closed','closed','','iwp_log_5ff603cc462ae','','','2021-01-06 18:39:08','2021-01-06 18:39:08','',0,'https://www.drfields.com/iwp_log/iwp_log_5ff603cc462ae/',0,'iwp_log','',0),(4388,8,'2021-01-13 22:18:25','2021-01-13 22:18:25','','iwp_log_5fff71b14c63a','','publish','closed','closed','','iwp_log_5fff71b14c63a','','','2021-01-13 22:18:25','2021-01-13 22:18:25','',0,'https://www.drfields.com/iwp_log/iwp_log_5fff71b14c63a/',0,'iwp_log','',0),(4389,8,'2021-01-13 22:18:48','2021-01-13 22:18:48','','iwp_log_5fff71c83fa6a','','publish','closed','closed','','iwp_log_5fff71c83fa6a','','','2021-01-13 22:18:48','2021-01-13 22:18:48','',0,'https://www.drfields.com/iwp_log/iwp_log_5fff71c83fa6a/',0,'iwp_log','',0),(4391,9,'2021-01-14 01:52:35','2021-01-14 01:52:35','[caption id=\"attachment_4393\" align=\"alignleft\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" title=\"Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'\" width=\"500\" height=\"500\" /> <strong>Dr. Fields interviewed on KCAL/CBS  about Prolotherapy</strong>[/caption]\n<h3>Dr. Fields Interviewed on KCAL/CBS about \'Prolotherapy\'</h3>\nPeter A. Fields, MD, DC is an expert lecturer on Regenerative Orthopedic therapies like Prolotherapy. And in this video, Dr. Fields explains one of the regenerative methods in this<strong> Interview on KCAL/CBS About \'Prolotherapy.\' </strong>One of his patients also describes her experience with Prolotherapy on this video, after coming to see Dr. Fields for the knee pain she was experiencing.\n\nIf you\'ve wondered what Prolotherapy is, watching this video is a great way to familiarize yourself with the treatment. And it\'s quick and interesting too! We hope you enjoy it.\n<h3>Want More Information about Prolotherapy?</h3>\nProlotherapy is a non-surgical treatment for joint and spine pain. The treatments are a natural method of assisting the body to heal injured or weakened joints, ligaments and tendons. They actually boost the body\'s own healing abilities.\n\nWith Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. And as the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\n\nIs a joint, ligament or tendon is causing you pain or limited movement? Then Prolotherapy might be the right choice for you! Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\n<h3>Visit Our Website</h3>\nFor more information about Prolotherapy and other Regenerative Orthopedic techniques, please visit our website at <a href=\"https://www.drfields.com\">drfields.com</a>, where you will find many, many articles that describe the various conditions effectively treated with Regenerative Orthopedics.\n<h3>We Would Be Happy to Answer Your Questions!</h3>\nIf you have any questions, please contact us by calling <span class=\"wsm_phone\"><a title=\"phone\" href=\"tel:+310-453-1234\">310-453-1234</a>. </span>\n\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"About Prolotherapy\'\"]\n<strong> </strong>','Dr. Fields interviewed on KCAL/CBS about Prolotherapy','','inherit','closed','closed','','1504-autosave-v1','','','2021-01-14 01:52:35','2021-01-14 01:52:35','',1504,'https://www.drfields.com/uncategorized/1504-autosave-v1/',0,'revision','',0),(4392,9,'2021-01-14 01:00:58','2021-01-14 01:00:58','Peter A. Fields, MD, DC is an expert lecturer on Regenerative Orthopedic therapies like Prolotherapy. In this video, Dr. Fields is<strong> Interviewed on KCAL/CBS About \'Prolotherapy.\'</strong>\r\n\r\nFor more information about Prolotherapy and other Regenerative Orthopedic techniques, please visit our website at <a href=\"https://www.drfields.com\">drfields.com</a>, where you will find many, many articles that describe the various conditions effectively treated with Regenerative Orthopedics.\r\n\r\nIf you have any questions, please contact us by calling <span class=\"wsm_phone\"><a title=\"phone\" href=\"tel:+310-453-1234\">310-453-1234</a>. </span>\r\n\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"About Prolotherapy\'\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS About \'Prolotherapy  </strong>','Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'','','inherit','closed','closed','','1504-revision-v1','','','2021-01-14 01:00:58','2021-01-14 01:00:58','',1504,'https://www.drfields.com/uncategorized/1504-revision-v1/',0,'revision','',0),(4393,9,'2021-01-14 01:27:52','2021-01-14 01:27:52','','Services','Non-Surgical Services for Joint Pain','inherit','open','closed','','prolotherapy-copy-2','','','2021-06-25 20:13:20','2021-06-25 20:13:20','',1504,'https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2.png',0,'attachment','image/png',0),(4394,9,'2021-01-14 01:44:31','2021-01-14 01:44:31','[caption id=\"attachment_4393\" align=\"alignleft\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" title=\"Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'\" width=\"500\" height=\"500\" /> <strong>Dr. Fields interviewed on KCAL/CBS  about Prolotherapy</strong>[/caption]\r\n<h3>Dr. Fields Interviewed on KCAL/CBS about \'Prolotherapy\'</h3>\r\nPeter A. Fields, MD, DC is an expert lecturer on Regenerative Orthopedic therapies like Prolotherapy. And in this video, Dr. Fields explains one of the regenerative methods as he is<strong> Interviewed on KCAL/CBS About \'Prolotherapy.\' </strong>One of his patients also describes her experience with Prolotherapy on this video, after coming to see Dr. Fields for the knee pain she was experiencing.\r\n<h3>Want More Information about Prolotherapy?</h3>\r\nFor more information about Prolotherapy and other Regenerative Orthopedic techniques, please visit our website at <a href=\"https://www.drfields.com\">drfields.com</a>, where you will find many, many articles that describe the various conditions effectively treated with Regenerative Orthopedics.\r\n<h3>We Would Be Happy to Answer Your Questions!</h3>\r\nIf you have any questions, please contact us by calling <span class=\"wsm_phone\"><a title=\"phone\" href=\"tel:+310-453-1234\">310-453-1234</a>. </span>\r\n\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"About Prolotherapy\'\"]\r\n<strong> </strong>','Dr. Fields interviewed on KCAL/CBS about Prolotherapy','','inherit','closed','closed','','1504-revision-v1','','','2021-01-14 01:44:31','2021-01-14 01:44:31','',1504,'https://www.drfields.com/uncategorized/1504-revision-v1/',0,'revision','',0),(4395,9,'2021-01-14 01:53:29','2021-01-14 01:53:29','[caption id=\"attachment_4393\" align=\"alignleft\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" title=\"Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Dr. Fields interviewed on KCAL/CBS about \'Prolotherapy\'\" width=\"500\" height=\"500\" /> <strong>Dr. Fields interviewed on KCAL/CBS  about Prolotherapy</strong>[/caption]\r\n<h3>Dr. Fields Interviewed on KCAL/CBS about \'Prolotherapy\'</h3>\r\nPeter A. Fields, MD, DC is an expert lecturer on Regenerative Orthopedic therapies like Prolotherapy. And in this video, Dr. Fields explains one of the regenerative methods in this<strong> Interview on KCAL/CBS About \'Prolotherapy.\' </strong>One of his patients also describes her experience with Prolotherapy in this video, after coming to see Dr. Fields for the knee pain she was experiencing.\r\n\r\nIf you\'ve wondered what Prolotherapy is, watching this video is a great way to familiarize yourself with the treatment. And it\'s quick and interesting too! We hope you enjoy it.\r\n<h3>Want More Information about Prolotherapy?</h3>\r\nProlotherapy is a non-surgical treatment for joint and spine pain. The treatments are a natural method of assisting the body to heal injured or weakened joints, ligaments, and tendons. They actually boost the body\'s own healing abilities.\r\n\r\nWith Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. And as the tendons and ligaments grow stronger and vibrant, the pain is alleviated, and motion is restored.\r\n\r\nIs a joint, ligament, or tendon is causing you pain or limited movement? Then Prolotherapy might be the right choice for you! Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendonitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h3>Visit Our Website</h3>\r\nFor more information about Prolotherapy and other Regenerative Orthopedic techniques, please visit our website at <a href=\"https://www.drfields.com\">drfields.com</a>, where you will find many, many articles that describe the various conditions effectively treated with Regenerative Orthopedics.\r\n<h3>We Would Be Happy to Answer Your Questions!</h3>\r\nIf you have any questions, please contact us by calling <span class=\"wsm_phone\"><a title=\"phone\" href=\"tel:+310-453-1234\">310-453-1234</a>. </span>\r\n\r\n[video_lightbox_youtube video_id=\"3JIY8OCt1FY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg\" alt=\"About Prolotherapy\'\"]\r\n<strong> </strong>','Dr. Fields interviewed on KCAL/CBS about Prolotherapy','','inherit','closed','closed','','1504-revision-v1','','','2021-01-14 01:53:29','2021-01-14 01:53:29','',1504,'https://www.drfields.com/uncategorized/1504-revision-v1/',0,'revision','',0),(4396,9,'2021-01-16 01:00:18','2021-01-16 01:00:18','[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dangers of Anti-Inflammatory Medicines\'\"]\r\n<strong>Dr. Fields Interviewed on KCAL/CBS\r\nAbout \'Dangers of Anti-Inflammatory\r\nMedicines\'</strong>\r\n\r\n&nbsp;\r\n\r\nPeter A. Fields, MD, DC is an expert lecturer on Regenerative Orthopedic therapies like Prolotherapy. And in this video, Dr. Fields explains one of the regenerative methods in this<strong> Interview on KCAL/CBS About ‘Prolotherapy.’ </strong>One of his patients also describes her experience with Prolotherapy in this video, after coming to see Dr. Fields for the knee pain she was experiencing.\r\n\r\nIf you’ve wondered what Prolotherapy is, watching this video is a great way to familiarize yourself with the treatment. And it’s quick and interesting too! We hope you enjoy it.\r\n<h3>Want More Information about Prolotherapy?</h3>\r\nProlotherapy is a non-surgical treatment for joint and spine pain. The treatments are a natural method of assisting the body to heal injured or weakened joints, ligaments, and tendons. They actually boost the body’s own healing abilities.\r\n\r\nWith Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. And as the tendons and ligaments grow stronger and vibrant, the pain is alleviated, and motion is restored.\r\n\r\nIs a joint, ligament, or tendon is causing you pain or limited movement? Then Prolotherapy might be the right choice for you! Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendonitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h3>Visit Our Website</h3>\r\nFor more information about Prolotherapy and other Regenerative Orthopedic techniques, please visit our website at <a href=\"https://www.drfields.com\">drfields.com</a>, where you will find many, many articles that describe the various conditions effectively treated with Regenerative Orthopedics.\r\n<h3>We Would Be Happy to Answer Your Questions!</h3>\r\nIf you have any questions, please contact us by calling <span class=\"wsm_phone\"><a title=\"phone\" href=\"tel:+310-453-1234\">310-453-1234</a>. </span>\r\n\r\n&nbsp;','Dr. Fields interviewed on KCAL/CBS about \'Dangers of Anti-Inflammatory Medicines\'','','inherit','closed','closed','','1502-revision-v1','','','2021-01-16 01:00:18','2021-01-16 01:00:18','',1502,'https://www.drfields.com/uncategorized/1502-revision-v1/',0,'revision','',0),(4397,9,'2021-01-16 01:20:33','2021-01-16 01:20:33','<h3><strong>Dr. Fields Talks About the Dangers of Anti-Inflammatory Medicines: An I</strong><strong>nterview on KCAL/CBS </strong></h3>\nPeter A. Fields, MD, DC is an expert lecturer on Regenerative Orthopedic therapies and is a sought after speaker for his medical knowledge as both a chiropractor and medical doctor. And in this video, Dr. Fields gives some insight into some of the problems people can encounter when taking too many anti-inflammatories. Check out this <strong>Interview with Dr. Fields on KCAL/CBS About </strong><strong>the Dangers of Anti-Inflammatory Medicines.</strong>\n\nAnti-inflammatories, such as Ibuprofen and Naproxen, can result in the eventual destruction of a joint, because they actually interfere with the healing process. Dr. Fields discusses this in greater detail in this video.\n<h3>Watch the Video</h3>\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dangers of Anti-Inflammatory Medicines\'\"]\n<h3>Want More Information On Treating the Painful Joint Without NSAIDS?</h3>\nProlotherapy, a regenerative therapy, is a non-surgical treatment for joint and spine pain. The treatments are a natural method of assisting the body to heal injured or weakened joints, ligaments, and tendons. They actually boost the body’s own healing abilities.\n\nWith Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates healthy, strong tissues. And as the tendons and ligaments grow stronger and vibrant, the pain is alleviated, and motion is restored.\n\nIs a joint, ligament, or tendon is causing you pain or limited movement? Then Prolotherapy might be the right choice for you! Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendonitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\n<h3>Visit Our Website</h3>\nFor more information about Prolotherapy and other Regenerative Orthopedic techniques, please visit our website at <a href=\"https://www.drfields.com\">drfields.com</a>, where you will find many, many articles that describe the various conditions effectively treated with Regenerative Orthopedics.\n\nSimilar to NSAID\'s, cortisone injections are another common treatment that can end up destroying the joint. Find out more by reading articles we have written about the effects of cortisone. Click <a href=\"https://www.drfields.com/?s=cortisone\">here</a>.\n<h3>We Would Be Happy to Answer Your Questions!</h3>\nIf you have any questions about Regenerative Orthopedic treatments like Prolotherapy, PRP, and Stem Cell Therapy, please contact us by calling <span class=\"wsm_phone\"><a title=\"phone\" href=\"tel:+310-453-1234\">310-453-1234</a>. </span>\n\n&nbsp;','Dr. Fields Talks about \'Dangers of Anti-Inflammatory Medicines\'','','inherit','closed','closed','','1502-autosave-v1','','','2021-01-16 01:20:33','2021-01-16 01:20:33','',1502,'https://www.drfields.com/uncategorized/1502-autosave-v1/',0,'revision','',0),(4398,9,'2021-01-16 01:19:10','2021-01-16 01:19:10','<h3><strong>Dr. Fields Talks About the Dangers of Anti-Inflammatory Medicines: An I</strong><strong>nterview on KCAL/CBS </strong></h3>\r\nPeter A. Fields, MD, DC is an expert lecturer on Regenerative Orthopedic therapies and is a sought after speaker for his medical knowledge as both a chiropractor and medical doctor. And in this video, Dr. Fields gives some insight into some of the problems people can encounter when taking too many anti-inflammatories. Check out this <strong>Interview with Dr. Fields on KCAL/CBS About </strong><strong>the Dangers of Anti-Inflammatory Medicines.</strong>\r\n\r\nAnti-inflammatories, such as Ibuprofen and Naproxen, can result in the eventual destruction of a joint, because they actually interfere with the healing process. Dr. Fields discusses this in greater detail in this video.\r\n<h3>Watch the Video</h3>\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dangers of Anti-Inflammatory Medicines\'\"]\r\n<h3>Want More Information On Treating the Painful Joint Without NSAIDS?</h3>\r\nProlotherapy, a regenerative therapy, is a non-surgical treatment for joint and spine pain. The treatments are a natural method of assisting the body to heal injured or weakened joints, ligaments, and tendons. They actually boost the body’s own healing abilities.\r\n\r\nWith Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates healthy, strong tissues. And as the tendons and ligaments grow stronger and vibrant, the pain is alleviated, and motion is restored.\r\n\r\nIs a joint, ligament, or tendon is causing you pain or limited movement? Then Prolotherapy might be the right choice for you! Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendonitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h3>Visit Our Website</h3>\r\nFor more information about Prolotherapy and other Regenerative Orthopedic techniques, please visit our website at <a href=\"https://www.drfields.com\">drfields.com</a>, where you will find many, many articles that describe the various conditions effectively treated with Regenerative Orthopedics.\r\n\r\nSimilar to NSAID\'s, cortisone injections are another common treatment that can end up destroying the joint. Find out more by reading articles we have written about the effects of cortisone. Click <a href=\"https://www.drfields.com/?s=cortisone\">here</a>.\r\n<h3>We Would Be Happy to Answer Your Questions!</h3>\r\nIf you have any questions about Regenerative Orthopedic treatments like Prolotherapy, PRP, and Stem Cell Therapy, please contact us by calling <span class=\"wsm_phone\"><a title=\"phone\" href=\"tel:+310-453-1234\">310-453-1234</a>. </span>\r\n\r\n&nbsp;','Dr. Fields interviewed on KCAL/CBS about \'Dangers of Anti-Inflammatory Medicines\'','','inherit','closed','closed','','1502-revision-v1','','','2021-01-16 01:19:10','2021-01-16 01:19:10','',1502,'https://www.drfields.com/uncategorized/1502-revision-v1/',0,'revision','',0),(4399,9,'2021-01-16 01:21:28','2021-01-16 01:21:28','<h3><strong>Dr. Fields Talks About the Dangers of Anti-Inflammatory Medicines: An I</strong><strong>nterview on KCAL/CBS </strong></h3>\r\nPeter A. Fields, MD, DC is an expert lecturer on Regenerative Orthopedic therapies and is a sought after speaker for his medical knowledge as both a chiropractor and medical doctor. And in this video, Dr. Fields gives some insight into some of the problems people can encounter when taking too many anti-inflammatories. Check out this <strong>Interview with Dr. Fields on KCAL/CBS About </strong><strong>the Dangers of Anti-Inflammatory Medicines.</strong>\r\n\r\nAnti-inflammatories, such as Ibuprofen and Naproxen, can result in the eventual destruction of a joint, because they actually interfere with the healing process. Dr. Fields discusses this in greater detail in this video.\r\n<h3>Watch the Video</h3>\r\n[video_lightbox_youtube video_id=\"I0HcX8Kcy2k\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dangers of Anti-Inflammatory Medicines\'\"]\r\n<h3>Want More Information On Treating the Painful Joint Without NSAIDS?</h3>\r\nProlotherapy, a regenerative therapy, is a non-surgical treatment for joint and spine pain. The treatments are a natural method of assisting the body to heal injured or weakened joints, ligaments, and tendons. They actually boost the body’s own healing abilities.\r\n\r\nWith Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates healthy, strong tissues. And as the tendons and ligaments grow stronger and vibrant, the pain is alleviated, and motion is restored.\r\n\r\nIs a joint, ligament, or tendon is causing you pain or limited movement? Then Prolotherapy might be the right choice for you! Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendonitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h3>Visit Our Website</h3>\r\nFor more information about Prolotherapy and other Regenerative Orthopedic techniques, please visit our website at <a href=\"https://www.drfields.com\">drfields.com</a>, where you will find many, many articles that describe the various conditions effectively treated with Regenerative Orthopedics.\r\n\r\nSimilar to NSAID\'s, cortisone injections are another common treatment that can end up destroying the joint. Find out more by reading articles we have written about the effects of cortisone. Click <a href=\"https://www.drfields.com/?s=cortisone\">here</a>.\r\n<h3>We Would Be Happy to Answer Your Questions!</h3>\r\nIf you have any questions about Regenerative Orthopedic treatments like Prolotherapy, PRP, and Stem Cell Therapy, please contact us by calling <span class=\"wsm_phone\"><a title=\"phone\" href=\"tel:+310-453-1234\">310-453-1234</a>. </span>\r\n\r\n&nbsp;','Dr. Fields Talks About the Dangers of Anti-Inflammatory Medicines','','inherit','closed','closed','','1502-revision-v1','','','2021-01-16 01:21:28','2021-01-16 01:21:28','',1502,'https://www.drfields.com/uncategorized/1502-revision-v1/',0,'revision','',0),(4401,9,'2021-01-21 00:02:01','2021-01-21 00:02:01','<h3>Needles, Not Knives, to Treat Sports Injuries and Degeneration</h3>\nBy Nancy Deville\n\n[caption id=\"attachment_4403\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4403\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Nancy-Deville-with-Dr.-Peter-Fields-500x423.png\" alt=\"Needles Not Knives\" width=\"500\" height=\"423\" /> <strong>                                            Needles Not Knives</strong>[/caption]\n\nMy first pair of running shoes were men’s shoes because they didn’t make them for women in 1974. That’s how many years I’ve been pounding away at my joints. The first sign of wear began around 1994. On the urging of an orthopedic surgeon, I quit running and started hiking and yoga. Unfortunately, the damage had already been done.\n\nThough I’ve had both of my rotator cuffs worked on after trashing them doing Ashtanga, I don’t want knee or hip replacements. Call me vain, but I want to be able to do a full lotus for the duration.\n\nFortunately, for me and millions of boomers like me who have been athletic our entire adult lives, we now have <strong>regenerative medicine</strong> to turn to rather than cortisone injections, which merely provide temporary relief (and can ultimately cause more damage), or joint replacement, the extreme fix.\n\nThere are several modalities of regenerative medicine, a system of medicine that employs your body to heal itself.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<h3>Prolotherapy Is the Most Common Type of Regenerative Medicine</h3>\nThe most common (and least expensive) of regenerative medicine is prolotherapy, which involves injecting a mild irritant such as dextrose, along with tapping the damaged area with the needle. The irritant combination causes an inflammatory response, which stimulates the immune system to rush in and begin healing whatever particular damage you have.\n<h3>Platelet Rich Plasma: A Bigger Gun</h3>\nIf your injury or degeneration requires a bigger gun, the next step is Platelet Rich Plasma (PRP), which is essentially your own blood. Your blood is drawn and spun down to filter out the platelets. These concentrated platelets are injected into the area to be treated. Blood platelets contain potent growth factors that begin the repair naturally.\n<h3>My Prolotherapy Treatment Path</h3>\nMy first doctor was Allen Thomashefsky, a former Iron Man triathlete, who practices in Santa Barbara and Ashland, California. I had gotten to the point, after 20 years of running followed by 15 years of serious hiking, that I was hobbling around on painful feet. I had seriously begun to question whether I would be able even to walk around normally, my feet were so painful. Prolotherapy injections put me back on the hiking trail (okay, the injections hurt, but no pain no gain).\n\nIn addition to sports, I am a lifelong knitter. I found myself waking up with hands like claws, an attractive image, I know. But beyond the aesthetics, I wanted the use of my hands back. Dr. Tom injected every single one of my knuckles. It was like magic.\n\nRecently, I’ve taken up bushwhacking in Daniel Boone National Forest in the Appalachian foothills. I was seriously handicapped by a knee that had begun deteriorating from my 20 years of running. Living in LA now, I went to Dr. Peter Fields (pictured here with me), who is one of a few physicians in the US who has both medical and chiropractic degrees. He’s an active Iron Man triathlete and, like Dr. Tom, a wizard in regenerative medicine. <strong>A mere two sessions of prolotherapy and my last hike was pain-free.</strong>\n\nBoomers have a long history of trailblazing. As I said, women didn’t run before 1974. Exploring the boundaries of human endurance has opened up new horizons for subsequent generations. But when it comes to joint damage, our fitness model came with a price tag. And speaking of price, regenerative medicine is not paid for by insurance companies or Medicare. They will replace a knee or hip at astronomical costs, but they will not pay a fraction of those costs for your body to heal itself. I believe they will wake up, eventually. For now, I would rather have brand new cartilage in my knee that my body made itself than have a new outfit. My body has always been my priority.1\n\nRead the original article in <a href=\"https://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration\">The Three Tomatoes by Nancy Deville</a>\n\n<a href=\"http://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration\" target=\"_blank\" rel=\"noopener noreferrer\">1 http://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration</a>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Needles, Not Knives, To Treat Sports Injuries And Degeneration','','inherit','closed','closed','','1475-autosave-v1','','','2021-01-21 00:02:01','2021-01-21 00:02:01','',1475,'https://www.drfields.com/uncategorized/1475-autosave-v1/',0,'revision','',0),(4402,9,'2021-01-20 23:54:47','2021-01-20 23:54:47','<h3>Needles, Not Knives, to Treat Sports Injuries and Degeneration</h3>\r\nBy Nancy Deville\r\n\r\nMy first pair of running shoes were men’s shoes because they didn’t make them for women in 1974. That’s how many years I’ve been pounding away at my joints. The first sign of wear began around 1994. On the urging of an orthopedic surgeon, I quit running and started hiking and yoga. Unfortunately, the damage had already been done.\r\n\r\nThough I’ve had both of my rotator cuffs worked on after trashing them doing Ashtanga, I don’t want knee or hip replacements. Call me vain, but I want to be able to do a full lotus for the duration.\r\n\r\nFortunately, for me and millions of boomers like me who have been athletic our entire adult lives, we now have <strong>regenerative medicine</strong> to turn to rather than cortisone injections, which merely provide temporary relief (and can ultimately cause more damage), or joint replacement, the extreme fix.\r\n\r\nThere are several modalities of regenerative medicine, a system of medicine that employs your body to heal itself.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h3>Prolotherapy Is the Most Common Type of Regenerative Medicine</h3>\r\nThe most common (and least expensive) of regenerative medicine is prolotherapy, which involves injecting a mild irritant such as dextrose, along with tapping the damaged area with the needle. The irritant combination causes an inflammatory response, which stimulates the immune system to rush in and begin healing whatever particular damage you have.\r\n<h3>Platelet Rich Plasma: A Bigger Gun</h3>\r\nIf your injury or degeneration requires a bigger gun, the next step is Platelet Rich Plasma (PRP), which is essentially your own blood. Your blood is drawn and spun down to filter out the platelets. These concentrated platelets are injected into the area to be treated. Blood platelets contain potent growth factors that begin the repair naturally.\r\n<h3>My Prolotherapy Treatment Path</h3>\r\nMy first doctor was Allen Thomashefsky, a former Iron Man triathlete, who practices in Santa Barbara and Ashland, California. I had gotten to the point, after 20 years of running followed by 15 years of serious hiking, that I was hobbling around on painful feet. I had seriously begun to question whether I would be able to even walk around normally, my feet were so painful. Injections of prolotherapy put me back on the hiking trail (okay, the injections hurt, but no pain no gain).\r\n\r\nIn addition to sports, I am a lifelong knitter. I found myself waking up with hands like claws, an attractive image, I know. But beyond the aesthetics, I wanted the use of my hands back. Dr. Tom injected every single one of my knuckles. It was like magic.\r\n\r\nRecently, I’ve taken up bushwhacking in Daniel Boone National Forest in the Appalachian foothills. I was seriously handicapped by a knee that had begun deteriorating from my 20 years of running. Living in LA now, I went to Dr. Peter Fields, (pictured here with me) who is one of a few physicians in the US who has both medical and chiropractic degrees. He’s an active Iron Man triathlete and, like Dr. Tom, a wizard in regenerative medicine. <strong>A mere two sessions of prolotherapy and my last hike was pain free.</strong>\r\n\r\nBoomers have a long history of trail blazing. Like I said, women didn’t run before 1974. Exploring the boundaries of human endurance has opened up new horizons for subsequent generations. But when it comes to joint damage, our fitness model came with a price tag. And speaking of price, regenerative medicine is not paid for by insurance companies or Medicare. They will replace a knee or hip, at astronomical costs, but they will not pay a fraction of those costs for your body to heal itself. I believe they will wake up, eventually. For now, I would rather have brand new cartilage in my knee that my body made itself, than have a new outfit. My body has always been my priority.\r\n\r\n<a href=\"http://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration\" target=\"_blank\" rel=\"noopener noreferrer\">http://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration</a>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Needles, Not Knives, To Treat Sports Injuries And Degeneration','','inherit','closed','closed','','1475-revision-v1','','','2021-01-20 23:54:47','2021-01-20 23:54:47','',1475,'https://www.drfields.com/uncategorized/1475-revision-v1/',0,'revision','',0),(4403,9,'2021-01-20 23:56:34','2021-01-20 23:56:34','Needles Not Knives is an article by Nancy Deville With Dr. Peter Fields','Needles Not Knives','Needles Not Knives','inherit','open','closed','','nancy-deville-with-dr-peter-fields','','','2021-01-20 23:57:32','2021-01-20 23:57:32','',1475,'https://www.drfields.com/wp-content/uploads/2019/06/Nancy-Deville-with-Dr.-Peter-Fields.png',0,'attachment','image/png',0),(4404,9,'2021-01-21 00:02:49','2021-01-21 00:02:49','<h3>Needles, Not Knives, to Treat Sports Injuries and Degeneration</h3>\r\nBy Nancy Deville\r\n\r\n[caption id=\"attachment_4403\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4403\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Nancy-Deville-with-Dr.-Peter-Fields-500x423.png\" alt=\"Needles Not Knives\" width=\"500\" height=\"423\" /> <strong>                                            Needles Not Knives</strong>[/caption]\r\n\r\nMy first pair of running shoes were men’s shoes because they didn’t make them for women in 1974. That’s how many years I’ve been pounding away at my joints. The first sign of wear began around 1994. On the urging of an orthopedic surgeon, I quit running and started hiking and yoga. Unfortunately, the damage had already been done.\r\n\r\nThough I’ve had both of my rotator cuffs worked on after trashing them doing Ashtanga, I don’t want knee or hip replacements. Call me vain, but I want to be able to do a full lotus for the duration.\r\n\r\nFortunately, for me and millions of boomers like me who have been athletic our entire adult lives, we now have <strong>regenerative medicine</strong> to turn to rather than cortisone injections, which merely provide temporary relief (and can ultimately cause more damage), or joint replacement, the extreme fix.\r\n\r\nThere are several modalities of regenerative medicine, a system of medicine that employs your body to heal itself.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h3>Prolotherapy Is the Most Common Type of Regenerative Medicine</h3>\r\nThe most common (and least expensive) of regenerative medicine is prolotherapy, which involves injecting a mild irritant such as dextrose, along with tapping the damaged area with the needle. The irritant combination causes an inflammatory response, which stimulates the immune system to rush in and begin healing whatever particular damage you have.\r\n<h3>Platelet Rich Plasma: A Bigger Gun</h3>\r\nIf your injury or degeneration requires a bigger gun, the next step is Platelet Rich Plasma (PRP), which is essentially your own blood. Your blood is drawn and spun down to filter out the platelets. These concentrated platelets are injected into the area to be treated. Blood platelets contain potent growth factors that begin the repair naturally.\r\n<h3>My Prolotherapy Treatment Path</h3>\r\nMy first doctor was Allen Thomashefsky, a former Iron Man triathlete, who practices in Santa Barbara and Ashland, California. I had gotten to the point, after 20 years of running followed by 15 years of serious hiking, that I was hobbling around on painful feet. I had seriously begun to question whether I would be able even to walk around normally, my feet were so painful. Prolotherapy injections put me back on the hiking trail (okay, the injections hurt, but no pain no gain).\r\n\r\nIn addition to sports, I am a lifelong knitter. I found myself waking up with hands like claws, an attractive image, I know. But beyond the aesthetics, I wanted the use of my hands back. Dr. Tom injected every single one of my knuckles. It was like magic.\r\n\r\nRecently, I’ve taken up bushwhacking in Daniel Boone National Forest in the Appalachian foothills. I was seriously handicapped by a knee that had begun deteriorating from my 20 years of running. Living in LA now, I went to Dr. Peter Fields (pictured here with me), who is one of a few physicians in the US who has both medical and chiropractic degrees. He’s an active Iron Man triathlete and, like Dr. Tom, a wizard in regenerative medicine. <strong>A mere two sessions of prolotherapy and my last hike was pain-free.</strong>\r\n\r\nBoomers have a long history of trailblazing. As I said, women didn’t run before 1974. Exploring the boundaries of human endurance has opened up new horizons for subsequent generations. But when it comes to joint damage, our fitness model came with a price tag. And speaking of price, regenerative medicine is not paid for by insurance companies or Medicare. They will replace a knee or hip at astronomical costs, but they will not pay a fraction of those costs for your body to heal itself. I believe they will wake up, eventually. For now, I would rather have brand new cartilage in my knee that my body made itself than have a new outfit. My body has always been my priority.1\r\n\r\nRead the original article in <a href=\"https://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration\">The Three Tomatoes by Nancy Deville</a>\r\n\r\n<a href=\"http://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration\" target=\"_blank\" rel=\"noopener noreferrer\">1 http://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration</a>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Needles, Not Knives, To Treat Sports Injuries And Degeneration','','inherit','closed','closed','','1475-revision-v1','','','2021-01-21 00:02:49','2021-01-21 00:02:49','',1475,'https://www.drfields.com/uncategorized/1475-revision-v1/',0,'revision','',0),(4405,9,'2021-01-21 00:03:23','2021-01-21 00:03:23','<h3>Needles, Not Knives, to Treat Sports Injuries and Degeneration</h3>\r\n<em>By Nancy Deville</em>\r\n\r\n[caption id=\"attachment_4403\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4403\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Nancy-Deville-with-Dr.-Peter-Fields-500x423.png\" alt=\"Needles Not Knives\" width=\"500\" height=\"423\" /> <strong>                                            Needles Not Knives</strong>[/caption]\r\n\r\nMy first pair of running shoes were men’s shoes because they didn’t make them for women in 1974. That’s how many years I’ve been pounding away at my joints. The first sign of wear began around 1994. On the urging of an orthopedic surgeon, I quit running and started hiking and yoga. Unfortunately, the damage had already been done.\r\n\r\nThough I’ve had both of my rotator cuffs worked on after trashing them doing Ashtanga, I don’t want knee or hip replacements. Call me vain, but I want to be able to do a full lotus for the duration.\r\n\r\nFortunately, for me and millions of boomers like me who have been athletic our entire adult lives, we now have <strong>regenerative medicine</strong> to turn to rather than cortisone injections, which merely provide temporary relief (and can ultimately cause more damage), or joint replacement, the extreme fix.\r\n\r\nThere are several modalities of regenerative medicine, a system of medicine that employs your body to heal itself.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h3>Prolotherapy Is the Most Common Type of Regenerative Medicine</h3>\r\nThe most common (and least expensive) of regenerative medicine is prolotherapy, which involves injecting a mild irritant such as dextrose, along with tapping the damaged area with the needle. The irritant combination causes an inflammatory response, which stimulates the immune system to rush in and begin healing whatever particular damage you have.\r\n<h3>Platelet Rich Plasma: A Bigger Gun</h3>\r\nIf your injury or degeneration requires a bigger gun, the next step is Platelet Rich Plasma (PRP), which is essentially your own blood. Your blood is drawn and spun down to filter out the platelets. These concentrated platelets are injected into the area to be treated. Blood platelets contain potent growth factors that begin the repair naturally.\r\n<h3>My Prolotherapy Treatment Path</h3>\r\nMy first doctor was Allen Thomashefsky, a former Iron Man triathlete, who practices in Santa Barbara and Ashland, California. I had gotten to the point, after 20 years of running followed by 15 years of serious hiking, that I was hobbling around on painful feet. I had seriously begun to question whether I would be able even to walk around normally, my feet were so painful. Prolotherapy injections put me back on the hiking trail (okay, the injections hurt, but no pain no gain).\r\n\r\nIn addition to sports, I am a lifelong knitter. I found myself waking up with hands like claws, an attractive image, I know. But beyond the aesthetics, I wanted the use of my hands back. Dr. Tom injected every single one of my knuckles. It was like magic.\r\n\r\nRecently, I’ve taken up bushwhacking in Daniel Boone National Forest in the Appalachian foothills. I was seriously handicapped by a knee that had begun deteriorating from my 20 years of running. Living in LA now, I went to Dr. Peter Fields (pictured here with me), who is one of a few physicians in the US who has both medical and chiropractic degrees. He’s an active Iron Man triathlete and, like Dr. Tom, a wizard in regenerative medicine. <strong>A mere two sessions of prolotherapy and my last hike was pain-free.</strong>\r\n\r\nBoomers have a long history of trailblazing. As I said, women didn’t run before 1974. Exploring the boundaries of human endurance has opened up new horizons for subsequent generations. But when it comes to joint damage, our fitness model came with a price tag. And speaking of price, regenerative medicine is not paid for by insurance companies or Medicare. They will replace a knee or hip at astronomical costs, but they will not pay a fraction of those costs for your body to heal itself. I believe they will wake up, eventually. For now, I would rather have brand new cartilage in my knee that my body made itself than have a new outfit. My body has always been my priority.1\r\n\r\nRead the original article in <a href=\"https://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration\">The Three Tomatoes by Nancy Deville</a>\r\n\r\n<a href=\"http://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration\" target=\"_blank\" rel=\"noopener noreferrer\">1 http://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration</a>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Needles, Not Knives, To Treat Sports Injuries And Degeneration','','inherit','closed','closed','','1475-revision-v1','','','2021-01-21 00:03:23','2021-01-21 00:03:23','',1475,'https://www.drfields.com/uncategorized/1475-revision-v1/',0,'revision','',0),(4406,9,'2021-01-24 02:48:01','2021-01-24 02:48:01','<h3>Benefits of Vitamin Supplementation in COVID-19: The Anti-Oxidants, A, C &amp; D</h3>\nSince treatment options to prevent and even treat COVID-19 are limited, the use of vitamins and mineral supplementation is worth exploring. Let\'s take a look at what some of the research says about the benefits of vitamin supplementation in COVID-19.\n<h3>The Immune-mediating, Antioxidant and Antimicrobial Roles of Vitamins A</h3>\nIncreasing the level of antioxidant nutrients within the body is thought to have a beneficial effect. And the dietary supplementation of nutrients has been recognized to alter the clinical course and health of patients. Vitamin A supplementation is helpful in many conditions. For example, vitamin A improves pulmonary function test results, has been found to have antimicrobial qualities, addresses vitamin A deficiency to effectively aid in tuberculosis prevention, and has antioxidative properties.\n\n<strong>How does this relate to the benefits of vitamin A in COVID-19?</strong> The pulmonary, immunomodulatory, and antimicrobial roles of vitamin A may provide a crucial element in the fight against viral diseases, including COVID-19! Both oxidative\n\n[caption id=\"attachment_4410\" align=\"alignright\" width=\"425\"]<img class=\"wp-image-4410\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Antioxidants-500x500.png\" alt=\"Antioxidants\" width=\"425\" height=\"425\" /> <strong>                      <em>The Benefits of Vitamins During COVID-19</em></strong>[/caption]\n\ndamage and the regenerative capacity of the lungs may be mediated through vitamin A-dependent mechanisms. Plus, it is possible that vitamin A combats viral infections. Because of its role in helping with pulmonary conditions and in building the immune system, oral supplementation of vitamin A is a current topic of investigation in the treatment of COVID-19. 1\n\n&nbsp;\n<h3>What About Vitamin C? Does it Help During COVID-19?</h3>\nOther antioxidants are being studied concerning their role to combat COVID-19. The role these vitamins play in the body and how each boosts the immune system, their role in respiratory infections, acute respiratory distress syndrome (ARDS), and COVID-19...are all being examined. Vitamin C has an important antioxidant role, plus it may help in the stress response. Vitamin C has been encouraged as a treatment for respiratory infections since the 1930s. We are all familiar with its popularity in the prevention and alleviation of the common cold. And it may also have an antival effect.\n\nStudies do support the beneficial role of vitamin C in reducing the incidence and severity of both bacterial and viral infections. Vitamin C is being investigated as a possible treatment to offset the effects of inflammation and oxidative stress seen in sepsis and ARDS. And there is evidence to suggest that vitamin C helps to regulate the process that occurs in the damaging \'cytokine storm\' in COVID-19. Its possible benefits, plus low cost, and safety profile make it an attractive candidate to help with the prevention and treatment of COVID-19. 1\n<h3>What Are the Potential Benefits from Vitamin D Supplementation During the COVID-19 Pandemic?</h3>\nThe protective role of vitamin D in cardiovascular disease is well established, as it may significantly increase a person\'s risk of stroke, heart disease, and even death. Plus, intake of vitamin D, as most of us are aware, plays a key role in bone health. Check out our other article which discusses the many benefits of vitamin D called, \"<a title=\"Vitamin D: It’s Not Just For Bones Anymore\" href=\"https://www.drfields.com/articles/health-news/vitamin-d-its-not-just-for-bones-anymore/\">Vitamin D: It’s Not Just For Bones Anymore.\"</a>\n<h4><em><strong>But are there any potential benefits from vitamin D supplementation during the COVID-19 pandemic?</strong></em></h4>\nVitamin D benefits the immune system. It plays a role in helping in chronic and acute inflammatory disorders, including autoimmune disease and infections. In fact, higher levels of vitamin D are associated with reduced risk for developing multiple sclerosis, gastrointestinal inflammatory disorders, type 1 diabetes and other immune-mediated disease. In addition, it has been suggested that vitamin D could reduce the effect on the exacerbation of the immune response and the complications in the ARDS condition in COVID-19. And therefore, it may play a promising role in COVID-19 treatments.1,2\n\nResearchers are studying the way vitamin D helps with the immune and inflammatory response in the body, and some studies show that vitamin D supplementation could lower the risk of acute respiratory infections. The British Dietetic Association recommends taking a daily supplement containing 10 µg to ensure a healthy vitamin D status (for adults and children over the age of one).3 And ‘The Irish Longitudinal Study on Ageing\' says that vitamin D could benefit vulnerable adults, in particularly those over 70 years. (<a href=\"https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf\" rel=\"noopener\" data-ga-action=\"click_feat_suppl\">https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf)4</a>\n<div class=\"page\" title=\"Page 2\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\nEven though appropriate vitamin D doses have been shown to provide benefits, especially considering that deficiency in vitamin D leaves people vulnerable to other diseases, there has been some concern that higher doses may be harmful for those who also use ACE inhibitors.5 With that in mind, one study suggests a limiting consumption to a daily dose of 800-1000 IU of vitamin D to sufficiently meet the needs of most of the population.6\n<h3>We\'ll Need to Continue Weighing the Benefits and Risks of Vitamin and Mineral Supplementation for COVID-19</h3>\nFurther clinical trials are needed to assess the potential benefits of vitamin and mineral supplementation, including the anti-oxidants A,C &amp; D, for the prevention and treatment of the COVID-19 infection. In the meantime, follow your physicians recommendations for the best vitamin and mineral supplementation to benefit you personally, eat healthy foods, stay active, and try your best to limit stress in your life for the maintainance of your overall health.\n<h3>References:</h3>\n</div>\n</div>\n</div>\n1 Jovic, Thomas H., et al. \"Could vitamins help in the fight against COVID-19?.\" <i>Nutrients</i> 12.9 (2020): 2550.\n\n2 Khare D, Godbole NM, Pawar SD, Mohan V, Pandey G, Gupta S, et al.<span class=\"ref-title\">Calcitriol [1, 25[OH]2 D3] pre- and post-treatment suppresses inflammatory response to influenza A (H1N1) infection in human lung A549 epithelial cells</span>. <span class=\"ref-journal\">Eur J Nutr</span> 2013; <span class=\"ref-vol\">52</span>:1405–15.\n\n3 Verdoia, Monica, and Giuseppe De Luca. \"Potential role of hypovitaminosis D and Vitamin D supplementation during COVID-19 pandemic.\" <i>QJM: An International Journal of Medicine</i> (2020).\n\n4https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf. Accessed January 23, 2021.\n\n5Fang L, Karakiulakis G, Roth M. Are patients with hypertension and diabetes mellitus at increased risk for COVID-19 infection? Lancet Respir Med. 2020;8(4): e21.\n\n6Mansour, Asieh, Mohammad Reza Mohajeri-Tehrani, and Sayed Mahmoud Sajjadi-Jazi. \"Vitamin D supplementation in COVID-19: A friend or foe?.\" <i>EXCLI journal</i> 19 (2020): 1166-1168.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Benefits of Vitamin Supplementation in COVID-19','','inherit','closed','closed','','1492-autosave-v1','','','2021-01-24 02:48:01','2021-01-24 02:48:01','',1492,'https://www.drfields.com/uncategorized/1492-autosave-v1/',0,'revision','',0),(4407,9,'2021-01-24 01:36:40','2021-01-24 01:36:40','<h3>\r\nBenefits of Vitamin Supplementation in COVID-19</h3>\r\nSince treatment options to prevent and even treat COVID-19 are limited, the use of vitamins and mineral supplementation is worth exploring. Let\'s take a look at what some of the research is saying about the benefits of vitamin supplementation in COVID-19.\r\n<h3>The Immune-mediating, Antioxidant and Antimicrobial Roles of Vitamins A</h3>\r\nIncreasing the level of antioxidant nutrients within the body is thought to have a beneficial effect. And the dietary supplementation of nutrients has been recognized to alter the clinical course and health of patients. Vitamin A supplementation is helpful in many conditions. For example, vitamin A improves pulmonary function test results, has been found to have antimicrobial qualities, addresses vitamin A deficiency to effectively aid in tuberculosis prevention, and has antioxidative properties.\r\n\r\n<strong>How does this relate in the benefits of vitamin A in COVID-19?</strong> The pulmonary, immunomodulatory, and antimicrobial roles of vitamin A may provide a crucial element in the fight against viral diseases, including COVID-19! Both oxidative damage and the regenerative capacity of the lungs may be mediated through vitamin A-dependent mechanisms. Plus, it is possible that vitamin A is combats viral infections. Because of its role in helping with pulmonary conditions and in building the immune system, oral supplementation of vitamin A is a current topic of investigation in the treatment of COVID-19.1\r\n<h3>What About Vitamin C? Does it Help During COVID-19?</h3>\r\nOther antioxidants are being studied in their role to combat COVID-19. The role these vitamins play in the body and how each boosts the immune system, their role in respiratory infections, acute respiratory distress syndrome (ARDS), and COVID-19...are all being examined. Vitamin C has an important antioxidant role, plus it may help in the stress response. Vitamin C has been encouraged as a treatment for respiratory infections since the 1930\'s. We are all familiar with it\'s popularity for the prevention and alleviation of the common cold. And it may also have an antival effect.\r\n\r\nStudies do support the beneficial role of vitamin C in reducing the incidence and severity of both bacterial and viral infections. Vitamin C is being investigated as a possible treatment to offset the effects of inflammation and oxidative stress seen in sepsis and ARDS. And there is evidence to suggest that vitamin C helps to regulate the process that occurs in the damaging \'cytokine storm\' in COVID-19. Its possible benefits, plus low cost, and safety profile make it an attractive candidate to help with the prevention and treatment of COVID-19. 1\r\n<h3>What Are the Potential Benefits from Vitamin D Supplementation During the COVID-19 Pandemic?</h3>\r\nThe protective role of vitamin D in cardiovascular disease is well established, as it may significantly increase a person\'s risk of stroke, heart disease, and even death. Plus, intake of vitamin D, as most of us are aware, plays a key role in bone health. Check out our other article which discusses the many benefits of vitamin D called, \"<a title=\"Vitamin D: It’s Not Just For Bones Anymore\" href=\"https://www.drfields.com/articles/health-news/vitamin-d-its-not-just-for-bones-anymore/\">Vitamin D: It’s Not Just For Bones Anymore.\"</a>\r\n<h4><em><strong>But are there any potential benefits from vitamin D supplementation during the COVID-19 pandemic?</strong></em></h4>\r\nVitamin D benefits the immune system. It plays a role in helping in chronic and acute inflammatory disorders, including autoimmune disease and infections. In fact, higher levels of vitamin D are associated with reduced risk for developing multiple sclerosis, gastrointestinal inflammatory disorders, type 1 diabetes and other immune-mediated disease. In addition, it has been suggested that vitamin D could reduce the effect of the exacerbation of the immune response and the complications in the ARDS condition in COVID-19. And therefore, it may play a promising role in COVID-19 treatments.1,2\r\n\r\nResearchers are studying the way vitamin D helps with the immune and inflammatory response in the body, and some studies show that vitamin D supplementation could lower the risk of acute respiratory infections. The British Dietetic Association recommends taking a daily supplement containing 10 µg to ensure a healthy vitamin D status (for adults and children over the age of one).3 And ‘The Irish Longitudinal Study on Ageing\' says that vitamin D could benefit vulnerable adults, in particularly those over 70 years. (<a href=\"https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf\" target=\"_blank\" rel=\"noopener\" data-ga-action=\"click_feat_suppl\">https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf)4</a>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nEven though appropriate vitamin D doses have been shown to provide benefits, especially considering that deficiency in vitamin D leaves people vulnerable to other diseases, there has been some concern that higher doses may be harmful for those who also use ACE inhibitors.5 With that in mind, one study suggests a limiting consumption to a daily dose of 800-1000 IU of vitamin D to sufficiently meet the needs of most of the population.6\r\n<h3>We\'ll Need to Continue Weighing the Benefits and Risks of Vitamin and Mineral Supplementation for COVID-19</h3>\r\nFurther clinical trials are needed to assess the potential benefits of vitamin and mineral supplementation for the prevention and treatment of the COVID-19 infection. In the meantime, follow your physicians recommendations for the best vitamin and mineral supplementation to benefit you personally, eat healthy foods, stay active, and try your best to limit stress in your life to maintain your overall health.\r\n<h3>References:</h3>\r\n</div>\r\n</div>\r\n</div>\r\n1 Jovic, Thomas H., et al. \"Could vitamins help in the fight against COVID-19?.\" <i>Nutrients</i> 12.9 (2020): 2550.\r\n\r\n2 Khare D, Godbole NM, Pawar SD, Mohan V, Pandey G, Gupta S, et al.<span class=\"ref-title\">Calcitriol [1, 25[OH]2 D3] pre- and post-treatment suppresses inflammatory response to influenza A (H1N1) infection in human lung A549 epithelial cells</span>. <span class=\"ref-journal\">Eur J Nutr</span> 2013; <span class=\"ref-vol\">52</span>:1405–15.\r\n\r\n3 Verdoia, Monica, and Giuseppe De Luca. \"Potential role of hypovitaminosis D and Vitamin D supplementation during COVID-19 pandemic.\" <i>QJM: An International Journal of Medicine</i> (2020).\r\n\r\n4https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf. Accessed January 23, 2021.\r\n\r\n5Fang L, Karakiulakis G, Roth M. Are patients with hypertension and diabetes mellitus at increased risk for COVID-19 infection? Lancet Respir Med. 2020;8(4): e21.\r\n\r\n6Mansour, Asieh, Mohammad Reza Mohajeri-Tehrani, and Sayed Mahmoud Sajjadi-Jazi. \"Vitamin D supplementation in COVID-19: A friend or foe?.\" <i>EXCLI journal</i> 19 (2020): 1166-1168.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Benefits of Vitamin Supplementation in COVID-19','','inherit','closed','closed','','1492-revision-v1','','','2021-01-24 01:36:40','2021-01-24 01:36:40','',1492,'https://www.drfields.com/uncategorized/1492-revision-v1/',0,'revision','',0),(4408,9,'2021-01-24 01:42:44','2021-01-24 01:42:44','<h3>Benefits of Vitamin Supplementation in COVID-19</h3>\r\nSince treatment options to prevent and even treat COVID-19 are limited, the use of vitamins and mineral supplementation is worth exploring. Let\'s take a look at what some of the research is saying about the benefits of vitamin supplementation in COVID-19.\r\n<h3>The Immune-mediating, Antioxidant and Antimicrobial Roles of Vitamins A</h3>\r\nIncreasing the level of antioxidant nutrients within the body is thought to have a beneficial effect. And the dietary supplementation of nutrients has been recognized to alter the clinical course and health of patients. Vitamin A supplementation is helpful in many conditions. For example, vitamin A improves pulmonary function test results, has been found to have antimicrobial qualities, addresses vitamin A deficiency to effectively aid in tuberculosis prevention, and has antioxidative properties.\r\n\r\n<strong>How does this relate in the benefits of vitamin A in COVID-19?</strong> The pulmonary, immunomodulatory, and antimicrobial roles of vitamin A may provide a crucial element in the fight against viral diseases, including COVID-19! Both oxidative damage and the regenerative capacity of the lungs may be mediated through vitamin A-dependent mechanisms. Plus, it is possible that vitamin A is combats viral infections. Because of its role in helping with pulmonary conditions and in building the immune system, oral supplementation of vitamin A is a current topic of investigation in the treatment of COVID-19.1\r\n<h3>What About Vitamin C? Does it Help During COVID-19?</h3>\r\nOther antioxidants are being studied in their role to combat COVID-19. The role these vitamins play in the body and how each boosts the immune system, their role in respiratory infections, acute respiratory distress syndrome (ARDS), and COVID-19...are all being examined. Vitamin C has an important antioxidant role, plus it may help in the stress response. Vitamin C has been encouraged as a treatment for respiratory infections since the 1930\'s. We are all familiar with it\'s popularity for the prevention and alleviation of the common cold. And it may also have an antival effect.\r\n\r\nStudies do support the beneficial role of vitamin C in reducing the incidence and severity of both bacterial and viral infections. Vitamin C is being investigated as a possible treatment to offset the effects of inflammation and oxidative stress seen in sepsis and ARDS. And there is evidence to suggest that vitamin C helps to regulate the process that occurs in the damaging \'cytokine storm\' in COVID-19. Its possible benefits, plus low cost, and safety profile make it an attractive candidate to help with the prevention and treatment of COVID-19. 1\r\n<h3>What Are the Potential Benefits from Vitamin D Supplementation During the COVID-19 Pandemic?</h3>\r\nThe protective role of vitamin D in cardiovascular disease is well established, as it may significantly increase a person\'s risk of stroke, heart disease, and even death. Plus, intake of vitamin D, as most of us are aware, plays a key role in bone health. Check out our other article which discusses the many benefits of vitamin D called, \"<a title=\"Vitamin D: It’s Not Just For Bones Anymore\" href=\"https://www.drfields.com/articles/health-news/vitamin-d-its-not-just-for-bones-anymore/\">Vitamin D: It’s Not Just For Bones Anymore.\"</a>\r\n<h4><em><strong>But are there any potential benefits from vitamin D supplementation during the COVID-19 pandemic?</strong></em></h4>\r\nVitamin D benefits the immune system. It plays a role in helping in chronic and acute inflammatory disorders, including autoimmune disease and infections. In fact, higher levels of vitamin D are associated with reduced risk for developing multiple sclerosis, gastrointestinal inflammatory disorders, type 1 diabetes and other immune-mediated disease. In addition, it has been suggested that vitamin D could reduce the effect of the exacerbation of the immune response and the complications in the ARDS condition in COVID-19. And therefore, it may play a promising role in COVID-19 treatments.1,2\r\n\r\nResearchers are studying the way vitamin D helps with the immune and inflammatory response in the body, and some studies show that vitamin D supplementation could lower the risk of acute respiratory infections. The British Dietetic Association recommends taking a daily supplement containing 10 µg to ensure a healthy vitamin D status (for adults and children over the age of one).3 And ‘The Irish Longitudinal Study on Ageing\' says that vitamin D could benefit vulnerable adults, in particularly those over 70 years. (<a href=\"https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf\" target=\"_blank\" rel=\"noopener\" data-ga-action=\"click_feat_suppl\">https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf)4</a>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nEven though appropriate vitamin D doses have been shown to provide benefits, especially considering that deficiency in vitamin D leaves people vulnerable to other diseases, there has been some concern that higher doses may be harmful for those who also use ACE inhibitors.5 With that in mind, one study suggests a limiting consumption to a daily dose of 800-1000 IU of vitamin D to sufficiently meet the needs of most of the population.6\r\n<h3>We\'ll Need to Continue Weighing the Benefits and Risks of Vitamin and Mineral Supplementation for COVID-19</h3>\r\nFurther clinical trials are needed to assess the potential benefits of vitamin and mineral supplementation for the prevention and treatment of the COVID-19 infection. In the meantime, follow your physicians recommendations for the best vitamin and mineral supplementation to benefit you personally, eat healthy foods, stay active, and try your best to limit stress in your life to maintain your overall health.\r\n<h3>References:</h3>\r\n</div>\r\n</div>\r\n</div>\r\n1 Jovic, Thomas H., et al. \"Could vitamins help in the fight against COVID-19?.\" <i>Nutrients</i> 12.9 (2020): 2550.\r\n\r\n2 Khare D, Godbole NM, Pawar SD, Mohan V, Pandey G, Gupta S, et al.<span class=\"ref-title\">Calcitriol [1, 25[OH]2 D3] pre- and post-treatment suppresses inflammatory response to influenza A (H1N1) infection in human lung A549 epithelial cells</span>. <span class=\"ref-journal\">Eur J Nutr</span> 2013; <span class=\"ref-vol\">52</span>:1405–15.\r\n\r\n3 Verdoia, Monica, and Giuseppe De Luca. \"Potential role of hypovitaminosis D and Vitamin D supplementation during COVID-19 pandemic.\" <i>QJM: An International Journal of Medicine</i> (2020).\r\n\r\n4https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf. Accessed January 23, 2021.\r\n\r\n5Fang L, Karakiulakis G, Roth M. Are patients with hypertension and diabetes mellitus at increased risk for COVID-19 infection? Lancet Respir Med. 2020;8(4): e21.\r\n\r\n6Mansour, Asieh, Mohammad Reza Mohajeri-Tehrani, and Sayed Mahmoud Sajjadi-Jazi. \"Vitamin D supplementation in COVID-19: A friend or foe?.\" <i>EXCLI journal</i> 19 (2020): 1166-1168.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Benefits of Vitamin Supplementation in COVID-19','','inherit','closed','closed','','1492-revision-v1','','','2021-01-24 01:42:44','2021-01-24 01:42:44','',1492,'https://www.drfields.com/uncategorized/1492-revision-v1/',0,'revision','',0),(4409,9,'2021-01-24 02:31:56','2021-01-24 02:31:56','<h3>Benefits of Vitamin Supplementation in COVID-19: The Anti-Oxidants, A, C &amp; D</h3>\r\nSince treatment options to prevent and even treat COVID-19 are limited, the use of vitamins and mineral supplementation is worth exploring. Let\'s take a look at what some of the research is saying about the benefits of vitamin supplementation in COVID-19.\r\n<h3>The Immune-mediating, Antioxidant and Antimicrobial Roles of Vitamins A</h3>\r\nIncreasing the level of antioxidant nutrients within the body is thought to have a beneficial effect. And the dietary supplementation of nutrients has been recognized to alter the clinical course and health of patients. Vitamin A supplementation is helpful in many conditions. For example, vitamin A improves pulmonary function test results, has been found to have antimicrobial qualities, addresses vitamin A deficiency to effectively aid in tuberculosis prevention, and has antioxidative properties.\r\n\r\n<strong>How does this relate in the benefits of vitamin A in COVID-19?</strong> The pulmonary, immunomodulatory, and antimicrobial roles of vitamin A may provide a crucial element in the fight against viral diseases, including COVID-19! Both oxidative damage and the regenerative capacity of the lungs may be mediated through vitamin A-dependent mechanisms. Plus, it is possible that vitamin A is combats viral infections. Because of its role in helping with pulmonary conditions and in building the immune system, oral supplementation of vitamin A is a current topic of investigation in the treatment of COVID-19.1\r\n<h3>What About Vitamin C? Does it Help During COVID-19?</h3>\r\nOther antioxidants are being studied in their role to combat COVID-19. The role these vitamins play in the body and how each boosts the immune system, their role in respiratory infections, acute respiratory distress syndrome (ARDS), and COVID-19...are all being examined. Vitamin C has an important antioxidant role, plus it may help in the stress response. Vitamin C has been encouraged as a treatment for respiratory infections since the 1930\'s. We are all familiar with it\'s popularity for the prevention and alleviation of the common cold. And it may also have an antival effect.\r\n\r\nStudies do support the beneficial role of vitamin C in reducing the incidence and severity of both bacterial and viral infections. Vitamin C is being investigated as a possible treatment to offset the effects of inflammation and oxidative stress seen in sepsis and ARDS. And there is evidence to suggest that vitamin C helps to regulate the process that occurs in the damaging \'cytokine storm\' in COVID-19. Its possible benefits, plus low cost, and safety profile make it an attractive candidate to help with the prevention and treatment of COVID-19. 1\r\n<h3>What Are the Potential Benefits from Vitamin D Supplementation During the COVID-19 Pandemic?</h3>\r\nThe protective role of vitamin D in cardiovascular disease is well established, as it may significantly increase a person\'s risk of stroke, heart disease, and even death. Plus, intake of vitamin D, as most of us are aware, plays a key role in bone health. Check out our other article which discusses the many benefits of vitamin D called, \"<a title=\"Vitamin D: It’s Not Just For Bones Anymore\" href=\"https://www.drfields.com/articles/health-news/vitamin-d-its-not-just-for-bones-anymore/\">Vitamin D: It’s Not Just For Bones Anymore.\"</a>\r\n<h4><em><strong>But are there any potential benefits from vitamin D supplementation during the COVID-19 pandemic?</strong></em></h4>\r\nVitamin D benefits the immune system. It plays a role in helping in chronic and acute inflammatory disorders, including autoimmune disease and infections. In fact, higher levels of vitamin D are associated with reduced risk for developing multiple sclerosis, gastrointestinal inflammatory disorders, type 1 diabetes and other immune-mediated disease. In addition, it has been suggested that vitamin D could reduce the effect of the exacerbation of the immune response and the complications in the ARDS condition in COVID-19. And therefore, it may play a promising role in COVID-19 treatments.1,2\r\n\r\nResearchers are studying the way vitamin D helps with the immune and inflammatory response in the body, and some studies show that vitamin D supplementation could lower the risk of acute respiratory infections. The British Dietetic Association recommends taking a daily supplement containing 10 µg to ensure a healthy vitamin D status (for adults and children over the age of one).3 And ‘The Irish Longitudinal Study on Ageing\' says that vitamin D could benefit vulnerable adults, in particularly those over 70 years. (<a href=\"https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf\" target=\"_blank\" rel=\"noopener\" data-ga-action=\"click_feat_suppl\">https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf)4</a>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nEven though appropriate vitamin D doses have been shown to provide benefits, especially considering that deficiency in vitamin D leaves people vulnerable to other diseases, there has been some concern that higher doses may be harmful for those who also use ACE inhibitors.5 With that in mind, one study suggests a limiting consumption to a daily dose of 800-1000 IU of vitamin D to sufficiently meet the needs of most of the population.6\r\n<h3>We\'ll Need to Continue Weighing the Benefits and Risks of Vitamin and Mineral Supplementation for COVID-19</h3>\r\nFurther clinical trials are needed to assess the potential benefits of vitamin and mineral supplementation, including the anti-oxidants A,C &amp; D, for the prevention and treatment of the COVID-19 infection. In the meantime, follow your physicians recommendations for the best vitamin and mineral supplementation to benefit you personally, eat healthy foods, stay active, and try your best to limit stress in your life for the maintainance of your overall health.\r\n<h3>References:</h3>\r\n</div>\r\n</div>\r\n</div>\r\n1 Jovic, Thomas H., et al. \"Could vitamins help in the fight against COVID-19?.\" <i>Nutrients</i> 12.9 (2020): 2550.\r\n\r\n2 Khare D, Godbole NM, Pawar SD, Mohan V, Pandey G, Gupta S, et al.<span class=\"ref-title\">Calcitriol [1, 25[OH]2 D3] pre- and post-treatment suppresses inflammatory response to influenza A (H1N1) infection in human lung A549 epithelial cells</span>. <span class=\"ref-journal\">Eur J Nutr</span> 2013; <span class=\"ref-vol\">52</span>:1405–15.\r\n\r\n3 Verdoia, Monica, and Giuseppe De Luca. \"Potential role of hypovitaminosis D and Vitamin D supplementation during COVID-19 pandemic.\" <i>QJM: An International Journal of Medicine</i> (2020).\r\n\r\n4https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf. Accessed January 23, 2021.\r\n\r\n5Fang L, Karakiulakis G, Roth M. Are patients with hypertension and diabetes mellitus at increased risk for COVID-19 infection? Lancet Respir Med. 2020;8(4): e21.\r\n\r\n6Mansour, Asieh, Mohammad Reza Mohajeri-Tehrani, and Sayed Mahmoud Sajjadi-Jazi. \"Vitamin D supplementation in COVID-19: A friend or foe?.\" <i>EXCLI journal</i> 19 (2020): 1166-1168.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Benefits of Vitamin Supplementation in COVID-19','','inherit','closed','closed','','1492-revision-v1','','','2021-01-24 02:31:56','2021-01-24 02:31:56','',1492,'https://www.drfields.com/uncategorized/1492-revision-v1/',0,'revision','',0),(4410,9,'2021-01-24 02:33:43','2021-01-24 02:33:43','Benefits of Vitamins during COVID-19','Benefits of Vitamins during COVID-19','Benefits of Vitamins during COVID-19','inherit','open','closed','','antioxidants-2','','','2021-01-24 02:34:41','2021-01-24 02:34:41','',1492,'https://www.drfields.com/wp-content/uploads/2019/06/Antioxidants.png',0,'attachment','image/png',0),(4411,9,'2021-01-24 02:46:53','2021-01-24 02:46:53','<h3>Benefits of Vitamin Supplementation in COVID-19: The Anti-Oxidants, A, C &amp; D</h3>\r\nSince treatment options to prevent and even treat COVID-19 are limited, the use of vitamins and mineral supplementation is worth exploring. Let\'s take a look at what some of the research says about the benefits of vitamin supplementation in COVID-19.\r\n<h3>The Immune-mediating, Antioxidant and Antimicrobial Roles of Vitamins A</h3>\r\nIncreasing the level of antioxidant nutrients within the body is thought to have a beneficial effect. And the dietary supplementation of nutrients has been recognized to alter the clinical course and health of patients. Vitamin A supplementation is helpful in many conditions. For example, vitamin A improves pulmonary function test results, has been found to have antimicrobial qualities, addresses vitamin A deficiency to effectively aid in tuberculosis prevention, and has antioxidative properties.\r\n\r\n<strong>How does this relate to the benefits of vitamin A in COVID-19?</strong> The pulmonary, immunomodulatory, and antimicrobial roles of vitamin A may provide a crucial element in the fight against viral diseases, including COVID-19! Both oxidative\r\n\r\n[caption id=\"attachment_4410\" align=\"alignright\" width=\"425\"]<img class=\"wp-image-4410\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Antioxidants-500x500.png\" alt=\"Antioxidants\" width=\"425\" height=\"425\" /> <strong>                      <em>The Benefits of Vitamins During COVID-19</em></strong>[/caption]\r\n\r\ndamage and the regenerative capacity of the lungs may be mediated through vitamin A-dependent mechanisms. Plus, it is possible that vitamin A is combats viral infections. Because of its role in helping with pulmonary conditions and in building the immune system, oral supplementation of vitamin A is a current topic of investigation in the treatment of COVID-19. 1\r\n\r\n&nbsp;\r\n<h3>What About Vitamin C? Does it Help During COVID-19?</h3>\r\nOther antioxidants are being studied concerning their role to combat COVID-19. The role these vitamins play in the body and how each boosts the immune system, their role in respiratory infections, acute respiratory distress syndrome (ARDS), and COVID-19...are all being examined. Vitamin C has an important antioxidant role, plus it may help in the stress response. Vitamin C has been encouraged as a treatment for respiratory infections since the 1930\'s. We are all familiar with it\'s popularity for the prevention and alleviation of the common cold. And it may also have an antival effect.\r\n\r\nStudies do support the beneficial role of vitamin C in reducing the incidence and severity of both bacterial and viral infections. Vitamin C is being investigated as a possible treatment to offset the effects of inflammation and oxidative stress seen in sepsis and ARDS. And there is evidence to suggest that vitamin C helps to regulate the process that occurs in the damaging \'cytokine storm\' in COVID-19. Its possible benefits, plus low cost, and safety profile make it an attractive candidate to help with the prevention and treatment of COVID-19. 1\r\n<h3>What Are the Potential Benefits from Vitamin D Supplementation During the COVID-19 Pandemic?</h3>\r\nThe protective role of vitamin D in cardiovascular disease is well established, as it may significantly increase a person\'s risk of stroke, heart disease, and even death. Plus, intake of vitamin D, as most of us are aware, plays a key role in bone health. Check out our other article which discusses the many benefits of vitamin D called, \"<a title=\"Vitamin D: It’s Not Just For Bones Anymore\" href=\"https://www.drfields.com/articles/health-news/vitamin-d-its-not-just-for-bones-anymore/\">Vitamin D: It’s Not Just For Bones Anymore.\"</a>\r\n<h4><em><strong>But are there any potential benefits from vitamin D supplementation during the COVID-19 pandemic?</strong></em></h4>\r\nVitamin D benefits the immune system. It plays a role in helping in chronic and acute inflammatory disorders, including autoimmune disease and infections. In fact, higher levels of vitamin D are associated with reduced risk for developing multiple sclerosis, gastrointestinal inflammatory disorders, type 1 diabetes and other immune-mediated disease. In addition, it has been suggested that vitamin D could reduce the effect on the exacerbation of the immune response and the complications in the ARDS condition in COVID-19. And therefore, it may play a promising role in COVID-19 treatments.1,2\r\n\r\nResearchers are studying the way vitamin D helps with the immune and inflammatory response in the body, and some studies show that vitamin D supplementation could lower the risk of acute respiratory infections. The British Dietetic Association recommends taking a daily supplement containing 10 µg to ensure a healthy vitamin D status (for adults and children over the age of one).3 And ‘The Irish Longitudinal Study on Ageing\' says that vitamin D could benefit vulnerable adults, in particularly those over 70 years. (<a href=\"https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf\" rel=\"noopener\" data-ga-action=\"click_feat_suppl\">https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf)4</a>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nEven though appropriate vitamin D doses have been shown to provide benefits, especially considering that deficiency in vitamin D leaves people vulnerable to other diseases, there has been some concern that higher doses may be harmful for those who also use ACE inhibitors.5 With that in mind, one study suggests a limiting consumption to a daily dose of 800-1000 IU of vitamin D to sufficiently meet the needs of most of the population.6\r\n<h3>We\'ll Need to Continue Weighing the Benefits and Risks of Vitamin and Mineral Supplementation for COVID-19</h3>\r\nFurther clinical trials are needed to assess the potential benefits of vitamin and mineral supplementation, including the anti-oxidants A,C &amp; D, for the prevention and treatment of the COVID-19 infection. In the meantime, follow your physicians recommendations for the best vitamin and mineral supplementation to benefit you personally, eat healthy foods, stay active, and try your best to limit stress in your life for the maintainance of your overall health.\r\n<h3>References:</h3>\r\n</div>\r\n</div>\r\n</div>\r\n1 Jovic, Thomas H., et al. \"Could vitamins help in the fight against COVID-19?.\" <i>Nutrients</i> 12.9 (2020): 2550.\r\n\r\n2 Khare D, Godbole NM, Pawar SD, Mohan V, Pandey G, Gupta S, et al.<span class=\"ref-title\">Calcitriol [1, 25[OH]2 D3] pre- and post-treatment suppresses inflammatory response to influenza A (H1N1) infection in human lung A549 epithelial cells</span>. <span class=\"ref-journal\">Eur J Nutr</span> 2013; <span class=\"ref-vol\">52</span>:1405–15.\r\n\r\n3 Verdoia, Monica, and Giuseppe De Luca. \"Potential role of hypovitaminosis D and Vitamin D supplementation during COVID-19 pandemic.\" <i>QJM: An International Journal of Medicine</i> (2020).\r\n\r\n4https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf. Accessed January 23, 2021.\r\n\r\n5Fang L, Karakiulakis G, Roth M. Are patients with hypertension and diabetes mellitus at increased risk for COVID-19 infection? Lancet Respir Med. 2020;8(4): e21.\r\n\r\n6Mansour, Asieh, Mohammad Reza Mohajeri-Tehrani, and Sayed Mahmoud Sajjadi-Jazi. \"Vitamin D supplementation in COVID-19: A friend or foe?.\" <i>EXCLI journal</i> 19 (2020): 1166-1168.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Benefits of Vitamin Supplementation in COVID-19','','inherit','closed','closed','','1492-revision-v1','','','2021-01-24 02:46:53','2021-01-24 02:46:53','',1492,'https://www.drfields.com/uncategorized/1492-revision-v1/',0,'revision','',0),(4412,9,'2021-01-24 02:52:13','2021-01-24 02:52:13','<h3>Benefits of Vitamin Supplementation in COVID-19: The Anti-Oxidants, A, C &amp; D</h3>\r\nSince treatment options to prevent and even treat COVID-19 are limited, the use of vitamins and mineral supplementation is worth exploring. Let\'s look at what some of the research says about the benefits of vitamin supplementation in COVID-19.\r\n<h3>The Immune-mediating, Antioxidant and Antimicrobial Roles of Vitamins A</h3>\r\nIncreasing the level of antioxidant nutrients within the body is thought to have a beneficial effect. And the dietary supplementation of nutrients has been recognized to alter the clinical course and health of patients. Vitamin A supplementation is helpful in many conditions. For example, vitamin A improves pulmonary function test results, has been found to have antimicrobial qualities, addresses vitamin A deficiency to effectively aid in tuberculosis prevention, and has antioxidative properties.\r\n\r\n<strong>How does this relate to the benefits of vitamin A in COVID-19?</strong> The pulmonary, immunomodulatory, and antimicrobial roles of vitamin A may provide a crucial element in the fight against viral diseases, including COVID-19! Both oxidative\r\n\r\n[caption id=\"attachment_4410\" align=\"alignright\" width=\"425\"]<img class=\"wp-image-4410\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Antioxidants-500x500.png\" alt=\"Antioxidants\" width=\"425\" height=\"425\" /> <strong>                      <em>The Benefits of Vitamins During COVID-19</em></strong>[/caption]\r\n\r\ndamage and the regenerative capacity of the lungs may be mediated through vitamin A-dependent mechanisms. Plus, vitamin A may combat viral infections. Because of its role in helping with pulmonary conditions and building the immune system, oral supplementation of vitamin A is a current topic of investigation in the treatment of COVID-19. 1\r\n\r\n&nbsp;\r\n<h3>What About Vitamin C? Does it Help During COVID-19?</h3>\r\nOther antioxidants are being studied concerning their role to combat COVID-19. The role these vitamins play in the body and how each boosts the immune system, their role in respiratory infections, acute respiratory distress syndrome (ARDS), and COVID-19...are all being examined. Vitamin C has an important antioxidant role, plus it may help in the stress response. Vitamin C has been encouraged as a treatment for respiratory infections since the 1930s. We are all familiar with its popularity in the prevention and alleviation of the common cold. And it may also have an antiviral effect.\r\n\r\nStudies support the beneficial role of vitamin C in reducing bacterial and viral infections\' incidence and severity. Vitamin C is being investigated as a possible treatment to offset the effects of inflammation and oxidative stress seen in sepsis and ARDS. And there is evidence suggesting that vitamin C helps regulate the process that occurs in the damaging \'cytokine storm\' in COVID-19. Its possible benefits, plus low cost and safety profile, make it an attractive candidate to help prevent and treat COVID-19. 1\r\n<h3>What Are the Potential Benefits from Vitamin D Supplementation During the COVID-19 Pandemic?</h3>\r\nThe protective role of vitamin D in cardiovascular disease is well established, as it may significantly increase a person\'s risk of stroke, heart disease, and even death. Plus, as most of us are aware, vitamin D intake plays a key role in bone health. Check out our other article, which discusses the many benefits of vitamin D called \"<a title=\"Vitamin D: It’s Not Just For Bones Anymore\" href=\"https://www.drfields.com/articles/health-news/vitamin-d-its-not-just-for-bones-anymore/\">Vitamin D: It’s Not Just For Bones Anymore.\"</a>\r\n<h4><em><strong>But are there any potential benefits from vitamin D supplementation during the COVID-19 pandemic?</strong></em></h4>\r\nVitamin D benefits the immune system. It plays a role in helping in chronic and acute inflammatory disorders, including autoimmune disease and infections. In fact, higher levels of vitamin D are associated with reduced risk for developing multiple sclerosis, gastrointestinal inflammatory disorders, type 1 diabetes, and other immune-mediated diseases. In addition, it has been suggested that vitamin D could reduce the effect on the exacerbation of the immune response and the complications in the ARDS condition in COVID-19. And therefore, it may play a promising role in COVID-19 treatments.1,2\r\n\r\nResearchers are studying how vitamin D helps with the immune and inflammatory response in the body. Some studies show that vitamin D supplementation could lower the risk of acute respiratory infections. The British Dietetic Association recommends taking a daily supplement containing 10 µg to ensure a healthy vitamin D status (for adults and children over the age of one).3 And ‘The Irish Longitudinal Study on Ageing\' says that vitamin D could benefit vulnerable adults, particularly those over 70 years. (<a href=\"https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf\" rel=\"noopener\" data-ga-action=\"click_feat_suppl\">https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf)4</a>\r\n<div class=\"page\" title=\"Page 2\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nEven though appropriate vitamin D doses have been shown to provide benefits, especially considering that vitamin D deficiency leaves people vulnerable to other diseases, there has been some concern that higher doses may be harmful to those who also use ACE inhibitors.5 With that in mind, one study suggests a limiting consumption to a daily dose of 800-1000 IU of vitamin D to sufficiently meet the needs of most of the population.6\r\n<h3>We\'ll Need to Continue Weighing the Benefits and Risks of Vitamin and Mineral Supplementation for COVID-19.</h3>\r\nFurther clinical trials are needed to assess the potential benefits of vitamin and mineral supplementation, including the anti-oxidants A, C &amp; D, to prevent and treat the COVID-19 infection. In the meantime, follow your physician\'s recommendations for the best vitamin and mineral supplementation to benefit you personally, eat healthy foods, stay active, and try your best to limit stress in your life to maintain your overall health.\r\n<h3>References:</h3>\r\n</div>\r\n</div>\r\n</div>\r\n1 Jovic, Thomas H., et al. \"Could vitamins help in the fight against COVID-19?.\" <i>Nutrients</i> 12.9 (2020): 2550.\r\n\r\n2 Khare D, Godbole NM, Pawar SD, Mohan V, Pandey G, Gupta S, et al.<span class=\"ref-title\">Calcitriol [1, 25[OH]2 D3] pre-and post-treatment suppresses inflammatory response to influenza A (H1N1) infection in human lung A549 epithelial cells</span>. <span class=\"ref-journal\">Eur J Nutr</span> 2013; <span class=\"ref-vol\">52</span>:1405–15.\r\n\r\n3 Verdoia, Monica, and Giuseppe De Luca. \"Potential role of hypovitaminosis D and Vitamin D supplementation during COVID-19 pandemic.\" <i>QJM: An International Journal of Medicine</i> (2020).\r\n\r\n4https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf. Accessed January 23, 2021.\r\n\r\n5Fang L, Karakiulakis G, Roth M. Are patients with hypertension and diabetes mellitus at increased risk for COVID-19 infection? Lancet Respir Med. 2020;8(4): e21.\r\n\r\n6Mansour, Asieh, Mohammad Reza Mohajeri-Tehrani, and Sayed Mahmoud Sajjadi-Jazi. \"Vitamin D supplementation in COVID-19: A friend or foe?.\" <i>EXCLI journal</i> 19 (2020): 1166-1168.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Benefits of Vitamin Supplementation in COVID-19','','inherit','closed','closed','','1492-revision-v1','','','2021-01-24 02:52:13','2021-01-24 02:52:13','',1492,'https://www.drfields.com/uncategorized/1492-revision-v1/',0,'revision','',0),(4414,8,'2021-01-25 22:56:46','2021-01-25 22:56:46','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"height: 50px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-01-25 22:56:46','2021-01-25 22:56:46','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4415,8,'2021-01-25 22:58:50','2021-01-25 22:58:50','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"display: inline-block; height: 50px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-01-25 22:58:50','2021-01-25 22:58:50','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4416,8,'2021-01-25 23:04:00','2021-01-25 23:04:00','<h2 class=\"text-center\">Contact Dr. Fields</h2>\r\n<p style=\"text-align: center;\"><strong>To find out if you are a candidate for Stem Cell, PRP or Prolotherapy, call Dr. Fields office at <a href=\"tel:310-453-1234\">310-453-1234</a>, or fill out the Consultation form here.</strong></p>\r\n\r\n<div class=\"contact-frm\">[gravityform id=\"1\" title=\"false\" description=\"false\"]</div>\r\n\r\n<a href=\"https://www.carecredit.com/apply?sitecode=bb3banpc06182018\" style=\"position:relative; display:inline-block;\"><div class=\"blocker\" style=\"position:absolute; height:100%; width:100%; z-index:1;\"></div><iframe width=\"728\" height=\"90\" class=\"assetIframe\" style=\"border:0\" src=\"//www.carecredit.com/providercenter/assets/views/resourcescenter/promote/assetlistings/getAsset.php?asset=598&mtype=\"></iframe></a>','Contact','','inherit','closed','closed','','29-revision-v1','','','2021-01-25 23:04:00','2021-01-25 23:04:00','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(4417,8,'2021-01-25 23:04:48','2021-01-25 23:04:48','<h2 class=\"text-center\">Contact Dr. Fields</h2>\r\n<p style=\"text-align: center;\"><strong>To find out if you are a candidate for Stem Cell, PRP or Prolotherapy, call Dr. Fields office at <a href=\"tel:310-453-1234\">310-453-1234</a>, or fill out the Consultation form here.</strong></p>\r\n\r\n<div class=\"contact-frm\">[gravityform id=\"1\" title=\"false\" description=\"false\"]</div>\r\n\r\n<div style=\"text-align: center\">\r\n<a href=\"https://www.carecredit.com/apply?sitecode=bb3banpc06182018\" style=\"position:relative; display:inline-block;\"><div class=\"blocker\" style=\"position:absolute; height:100%; width:100%; z-index:1;\"></div><iframe width=\"728\" height=\"90\" class=\"assetIframe\" style=\"border:0\" src=\"//www.carecredit.com/providercenter/assets/views/resourcescenter/promote/assetlistings/getAsset.php?asset=598&mtype=\"></iframe></a></div>','Contact','','inherit','closed','closed','','29-revision-v1','','','2021-01-25 23:04:48','2021-01-25 23:04:48','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(4418,8,'2021-01-25 23:05:10','2021-01-25 23:05:10','<h2 class=\"text-center\">Contact Dr. Fields</h2>\r\n<p style=\"text-align: center;\"><strong>To find out if you are a candidate for Stem Cell, PRP or Prolotherapy, call Dr. Fields office at <a href=\"tel:310-453-1234\">310-453-1234</a>, or fill out the Consultation form here.</strong></p>\r\n\r\n<div class=\"contact-frm\">[gravityform id=\"1\" title=\"false\" description=\"false\"]</div>\r\n\r\n<div style=\"margin: 0 auto; text-align: center\">\r\n<a href=\"https://www.carecredit.com/apply?sitecode=bb3banpc06182018\" style=\"position:relative; display:inline-block;\"><div class=\"blocker\" style=\"position:absolute; height:100%; width:100%; z-index:1;\"></div><iframe width=\"728\" height=\"90\" class=\"assetIframe\" style=\"border:0\" src=\"//www.carecredit.com/providercenter/assets/views/resourcescenter/promote/assetlistings/getAsset.php?asset=598&mtype=\"></iframe></a></div>','Contact','','inherit','closed','closed','','29-revision-v1','','','2021-01-25 23:05:10','2021-01-25 23:05:10','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(4419,8,'2021-01-25 23:09:23','2021-01-25 23:09:23','<h2 class=\"text-center\">Contact Dr. Fields</h2>\r\n<p style=\"text-align: center;\"><strong>To find out if you are a candidate for Stem Cell, PRP or Prolotherapy, call Dr. Fields office at <a href=\"tel:310-453-1234\">310-453-1234</a>, or fill out the Consultation form here.</strong></p>\r\n\r\n<div class=\"contact-frm\">[gravityform id=\"1\" title=\"false\" description=\"false\"]</div>\r\n\r\n<div style=\"margin: 0 auto; text-align: center\">\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a></div>','Contact','','inherit','closed','closed','','29-revision-v1','','','2021-01-25 23:09:23','2021-01-25 23:09:23','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(4420,8,'2021-01-25 23:21:15','2021-01-25 23:21:15','<h2 class=\"text-center\">Contact Dr. Fields</h2>\r\n<p style=\"text-align: center;\"><strong>To find out if you are a candidate for Stem Cell, PRP or Prolotherapy, call Dr. Fields office at <a href=\"tel:310-453-1234\">310-453-1234</a>, or fill out the Consultation form here.</strong></p>\r\n\r\n<div class=\"contact-frm\">[gravityform id=\"1\" title=\"false\" description=\"false\"]</div>\r\n\r\n<div style=\"max-width: 280px; text-align: center\">\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a></div>','Contact','','inherit','closed','closed','','29-revision-v1','','','2021-01-25 23:21:15','2021-01-25 23:21:15','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(4421,8,'2021-01-25 23:22:32','2021-01-25 23:22:32','<h2 class=\"text-center\">Contact Dr. Fields</h2>\r\n<p style=\"text-align: center;\"><strong>To find out if you are a candidate for Stem Cell, PRP or Prolotherapy, call Dr. Fields office at <a href=\"tel:310-453-1234\">310-453-1234</a>, or fill out the Consultation form here.</strong></p>\r\n\r\n<div class=\"contact-frm\">[gravityform id=\"1\" title=\"false\" description=\"false\"]</div>\r\n\r\n<div style=\"margin: 0 auto; max-width: 275px;\">\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a></div>','Contact','','inherit','closed','closed','','29-revision-v1','','','2021-01-25 23:22:32','2021-01-25 23:22:32','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(4422,8,'2021-01-25 23:47:43','2021-01-25 23:47:43','<h6>Fees</h6>\n\n<p>For your first visit:\nA complete Regenerative Orthopedics history and physical is done at that time. \nThis takes approximately 30-40 minutes.\nThen the treatment options are explained (prices below).</p>\n\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\n\n<h6>Prolotherapy Charges</h6>\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\nPRP (in addition to the above joint charges): <strong>$550</strong>\nStem Cell Therapy: <strong>Please call for pricing</strong>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<strong>Payment Policy</strong>\n\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\n\nOnly you can decide what is fair and if it is worth the investment even if you instil pay out-of-pocket costs for your health care.\n\nWe will make every effort to instill the feeling that your time with us is worth it.\nWoman Paying\n\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>. \nWe accept credit cards, checks, or cash for payment of services.\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\n\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\n\nRemember that health insurance is a contract between you and your insurance carrier.\n\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\n\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\n\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\nPlease do not ask us to attempt this as it is not possible.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Fees & Policies','','inherit','closed','closed','','202-autosave-v1','','','2021-01-25 23:47:43','2021-01-25 23:47:43','',202,'https://www.drfields.com/uncategorized/202-autosave-v1/',0,'revision','',0),(4423,8,'2021-01-25 23:48:42','2021-01-25 23:48:42','<h6>Fees</h6>\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" class=\"alignright\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\"/></a>For your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time. \r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you instil pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\nWoman Paying\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>. \r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Fees & Policies','','inherit','closed','closed','','202-revision-v1','','','2021-01-25 23:48:42','2021-01-25 23:48:42','',202,'https://www.drfields.com/uncategorized/202-revision-v1/',0,'revision','',0),(4424,8,'2021-01-25 23:49:50','2021-01-25 23:49:50','<h6>Fees</h6>\r\n\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time. \r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" class=\"alignright\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\"/></a>\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you instil pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\nWoman Paying\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>. \r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Fees & Policies','','inherit','closed','closed','','202-revision-v1','','','2021-01-25 23:49:50','2021-01-25 23:49:50','',202,'https://www.drfields.com/uncategorized/202-revision-v1/',0,'revision','',0),(4425,8,'2021-01-25 23:50:27','2021-01-25 23:50:27','<h6>Fees</h6>\r\n\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time. \r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" class=\"alignright\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\"/></a>\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you instil pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\nWoman Paying\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>. \r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Fees & Policies','','inherit','closed','closed','','202-revision-v1','','','2021-01-25 23:50:27','2021-01-25 23:50:27','',202,'https://www.drfields.com/uncategorized/202-revision-v1/',0,'revision','',0),(4426,8,'2023-03-23 03:38:40','2023-03-23 03:38:40','<img class=\"alignleft size-full wp-image-288\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\">Click Here</a>\n\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\n\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\n\n<u><strong>How long is each visit?</strong></u>\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\n\n<u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h6>Fees</h6>\nFor your first visit:\nA complete Regenerative Orthopedics history and physical is done at that time.\nThis takes approximately 30-40 minutes.\nThen the treatment options are explained (prices below).\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img class=\"alignright\" style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" width=\"275\" /></a>\nInitial Regenerative Orthopedic Consultation: <strong>$550</strong>\n<h6>Prolotherapy Charges</h6>\nSmall Joint (fingers, toes, TMJ): <strong>$500</strong>\nMedium Joint (knee, shoulder, Wrist): <strong>$600</strong>\nLarge Joint (hip, Neck, Mid Back, or Low Back): <strong>$900</strong>\nStem Cell Therapy: <strong>Please call for pricing</strong>\n<h6>PRP Charges</h6>\nPRP Small joint: <strong>$1100</strong>\nPRP Medium joint: <strong>$1300</strong>\nPRP Large joint: <strong>$1600</strong>\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n\n<strong>Payment Policy</strong>\n\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\n\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\n\nWe will make every effort to instill the feeling that your time with us is worth it.\n\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\nWe accept credit cards, checks, or cash for payment of services.\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\n\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\n\nRemember that health insurance is a contract between you and your insurance carrier.\n\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\n\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\n\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\nPlease do not ask us to attempt this as it is not possible.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Questions + Costs','','inherit','closed','closed','','2536-autosave-v1','','','2023-03-23 03:38:40','2023-03-23 03:38:40','',2536,'https://www.drfields.com/uncategorized/2536-autosave-v1/',0,'revision','',0),(4427,8,'2021-01-25 23:51:57','2021-01-25 23:51:57','<img class=\"alignleft size-full wp-image-288\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h6>Fees</h6>\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time.\r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" class=\"alignright\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\"/></a>\r\nInitial Regenerative Orthopedic Consultation: <strong>$300</strong>\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): <strong>$400</strong>\r\nMedium Joint (knee, hip, shoulder, ribs): <strong>$550</strong>\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): <strong>$700</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Questions + Costs','','inherit','closed','closed','','2536-revision-v1','','','2021-01-25 23:51:57','2021-01-25 23:51:57','',2536,'https://www.drfields.com/uncategorized/2536-revision-v1/',0,'revision','',0),(4428,8,'2021-01-26 00:29:36','2021-01-26 00:29:36','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n\r\n<div class=\"clearfix\"></div>\r\n\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n<a href=\"https://www.carecredit.com/apply?sitecode=bb3banpc06182018\" style=\"position:relative; display:inline-block;\"><div class=\"blocker\" style=\"position:absolute; height:100%; width:100%; z-index:1;\"></div><iframe width=\"728\" height=\"90\" class=\"assetIframe\" style=\"border:0\" src=\"//www.carecredit.com/providercenter/assets/views/resourcescenter/promote/assetlistings/getAsset.php?asset=598&mtype=\"></iframe></a>\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen<sup>®</sup>, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2021-01-26 00:29:36','2021-01-26 00:29:36','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(4429,8,'2021-01-26 00:30:34','2021-01-26 00:30:34','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n\r\n<div class=\"clearfix\"></div>\r\n\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen<sup>®</sup>, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2021-01-26 00:30:34','2021-01-26 00:30:34','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(4430,8,'2021-01-26 00:31:43','2021-01-26 00:31:43','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n\r\n<div class=\"clearfix\"></div>\r\n\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n<div style=\"text-align: center;\"\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a></div>\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen<sup>®</sup>, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2021-01-26 00:31:43','2021-01-26 00:31:43','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(4431,8,'2021-01-26 00:33:43','2021-01-26 00:33:43','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n\r\n<div class=\"clearfix\"></div>\r\n\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n<div style=\"margin: 0 auto; max-width: 275px;\"\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a></div>\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen<sup>®</sup>, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2021-01-26 00:33:43','2021-01-26 00:33:43','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(4432,8,'2021-01-26 00:36:22','2021-01-26 00:36:22','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n\r\n<div class=\"clearfix\"></div>\r\n\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"text-align: center;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen<sup>®</sup>, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2021-01-26 00:36:22','2021-01-26 00:36:22','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(4433,8,'2021-01-26 00:38:07','2021-01-26 00:38:07','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\n\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n\r\n<div class=\"clearfix\"></div>\r\n\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<h4>Who Uses Prolotherapy?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen<sup>®</sup>, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2021-01-26 00:38:07','2021-01-26 00:38:07','',469,'https://www.drfields.com/uncategorized/469-revision-v1/',0,'revision','',0),(4434,8,'2021-01-26 23:22:02','2021-01-26 23:22:02','<h4>Regenerative Orthopedics for Annoying Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you are prevented from doing all of that and more. Moreover, many conventional treatments include surgery, arthroscopy, cortisone, and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Regenerative Orthopedics to treat persistent joint pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the shin\'s upper end (tibia). The knee cap (patellae) slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. For example, if you are experiencing minor pain, clicking, giving way, or ‘trick knee,’ you may be feeling the first symptoms of arthritis. Plus, arthritis can begin in people as early as thirty years of age. And this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain, accompanied by significant inflammation and swelling, can be caused by gout or even infection.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. And other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Additionally, pseudogout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease, and chondromalacia patellae can also cause knee pain. As we age, the smooth and resilient cartilage on our long bones\' ends wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4>How Does Regenerative Orthopedics Work for Chronic Knee Pain?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Regenerative Orthopedics</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons, and possibly cartilage. Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nRegenerative Orthopedics works because it stimulates an inflammatory reaction in the body. In short, solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. And then, the localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. Subsequently, the new collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Regenerative Orthopedics?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. And Regenerative Orthopedics is a very safe, affordable option that allows you to keep working, training, and living a normal life during the recovery process. Regenerative Orthopedics for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after Regenerative Orthopedics, like Stem Cell Therapy, PRP, and <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Regenerative Orthopedics for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Peter A. Fields, MD, DC, and OrthoRegen<sup>®</sup> at 310-453-1234.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Knee Pain That Won\'t Go Away','','inherit','closed','closed','','486-revision-v1','','','2021-01-26 23:22:02','2021-01-26 23:22:02','',486,'https://www.drfields.com/uncategorized/486-revision-v1/',0,'revision','',0),(4435,8,'2021-01-26 23:22:29','2021-01-26 23:22:29','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy for Chronic Neck Pain</h4>\r\nBecause the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and to rotate, but if you can\'t move your neck normally, your life can be severely disrupted and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be prolotherapy for chronic neck pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>What Causes Neck Pain?</h4>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\nSymptoms of <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands and feet.</li>\r\n</ul>\r\n\r\nIf you are experiencing minor neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty and symptoms may begin to appear years after the disease begins.\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck can be the causes of the neck pain you feel. Pain in the neck can also be caused by injury such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, a pinched nerve, meningitis, influenza, a heart attack or torticollis, can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture, and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4>How Prolotherapy Is Used To Treat Chronic Neck Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Neck Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic neck pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are you a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Chronic Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2021-01-26 23:22:29','2021-01-26 23:22:29','',509,'https://www.drfields.com/uncategorized/509-revision-v1/',0,'revision','',0),(4436,8,'2021-01-26 23:27:59','2021-01-26 23:27:59','<h4>Prolotherapy for Chronic Shoulder Pain</h4>\n<div class=\"youtube-click-div video_left\">\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Mark-Neck\"]\n<strong>Wilbur - Shoulder</strong>\n</div>\n\nIt\'s easy to take your own body for granted when your body is working well. But when a part of your body, such as your shoulder, begins to hurt or hurts for an extended period of time, you quickly realize how much you depend on your shoulders for reaching, raising your arm, lifting yourself up or even just opening a cupboard. That\'s why so many people with shoulder pain or injuries look to <strong>Prolotherapy for chronic shoulder pain</strong> treatment.\n\n<h4>Causes of Shoulder Pain</h4>\nThe muscles and joints of the shoulder allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso and allow the arm to move a full 360°. This tremendous range of motion also makes the shoulder extremely unstable, and far more prone to dislocation and injury than other joints.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\nBecause the rounded head or ball of the upper arm bone (humerus) is larger than the socket of the shoulder bone (scapula), this area is especially susceptible to injury. The shoulder joint consists of bones, muscles and ligaments that are all subject to stress and overuse.\n\nCommon causes of shoulder pain can be:\n<ul>\n 	<li>Tendonitis</li>\n 	<li>Bursitis</li>\n 	<li>Dislocation and attendant injury</li>\n 	<li>Impingement syndrome</li>\n 	<li>Rotator cuff tear</li>\n 	<li>Adhesive capsulated (frozen shoulder)</li>\n 	<li>Fracture</li>\n 	<li>Poor posture.</li>\n</ul>\nBut the <strong>most common cause of chronic pain in the shoulder is arthritis</strong>. This can take many forms such as: osteoarthritis, rheumatoid, traumatic, and gouty arthritis.\n\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\n<h4>Which Kind of Shoulder Pain Do You Have?</h4>\nIf you are experiencing pain from a rotator cuff injury, you will feel a dull aching pain, which worsens with movement.  A rotator cuff injury includes any type of irritation or damage to your <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> muscles or tendons. Causes of a rotator cuff injury may include falling, lifting and repetitive arm activities — especially those done overhead.\n\n<strong>Shoulder tendonitis</strong> can produce symptoms including a slow onset of discomfort, pain in the upper third of your arm and difficulty sleeping on the side of that arm.\n\nRedness and swelling that is tender and warm to the touch can be caused by <strong>bursitis</strong>.\n\nMinor shoulder pain, ‘clicking’, ‘giving way’, or frozen shoulder, are symptoms of <strong>arthritis</strong>. Osteoarthritis can begin as early as thirty, but symptoms can appear later, as the condition progresses.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\n<h4>How Prolotherapy Is Used To Treat Chronic Shoulder Pain</h4>\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\n\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\n\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\n\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\n\n<h4>Are you a Candidate For Prolotherapy for Chronic Shoulder Pain?</h4>\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic shoulder pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, shoulder surgery requires you reduce activity after treatment.\n\nAre you a candidate for Prolotherapy for your chronic shoulder pain? Would you like a <strong>second opinion before you have irreversible shoulder surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Chronic Shoulder Pain','','inherit','closed','closed','','511-autosave-v1','','','2021-01-26 23:27:59','2021-01-26 23:27:59','',511,'https://www.drfields.com/uncategorized/511-autosave-v1/',0,'revision','',0),(4437,8,'2021-01-26 23:28:06','2021-01-26 23:28:06','<h4>Prolotherapy for Chronic Shoulder Pain</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Wilbur - Shoulder</strong>\r\n</div>\r\n\r\nIt\'s easy to take your own body for granted when your body is working well. But when a part of your body, such as your shoulder, begins to hurt or hurts for an extended period of time, you quickly realize how much you depend on your shoulders for reaching, raising your arm, lifting yourself up or even just opening a cupboard. That\'s why so many people with shoulder pain or injuries look to <strong>Prolotherapy for chronic shoulder pain</strong> treatment.\r\n\r\n<h4>Causes of Shoulder Pain</h4>\r\nThe muscles and joints of the shoulder allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso and allow the arm to move a full 360°. This tremendous range of motion also makes the shoulder extremely unstable, and far more prone to dislocation and injury than other joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nBecause the rounded head or ball of the upper arm bone (humerus) is larger than the socket of the shoulder bone (scapula), this area is especially susceptible to injury. The shoulder joint consists of bones, muscles and ligaments that are all subject to stress and overuse.\r\n\r\nCommon causes of shoulder pain can be:\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation and attendant injury</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Adhesive capsulated (frozen shoulder)</li>\r\n 	<li>Fracture</li>\r\n 	<li>Poor posture.</li>\r\n</ul>\r\nBut the <strong>most common cause of chronic pain in the shoulder is arthritis</strong>. This can take many forms such as: osteoarthritis, rheumatoid, traumatic, and gouty arthritis.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4>Which Kind of Shoulder Pain Do You Have?</h4>\r\nIf you are experiencing pain from a rotator cuff injury, you will feel a dull aching pain, which worsens with movement.  A rotator cuff injury includes any type of irritation or damage to your <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> muscles or tendons. Causes of a rotator cuff injury may include falling, lifting and repetitive arm activities — especially those done overhead.\r\n\r\n<strong>Shoulder tendonitis</strong> can produce symptoms including a slow onset of discomfort, pain in the upper third of your arm and difficulty sleeping on the side of that arm.\r\n\r\nRedness and swelling that is tender and warm to the touch can be caused by <strong>bursitis</strong>.\r\n\r\nMinor shoulder pain, ‘clicking’, ‘giving way’, or frozen shoulder, are symptoms of <strong>arthritis</strong>. Osteoarthritis can begin as early as thirty, but symptoms can appear later, as the condition progresses.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>How Prolotherapy Is Used To Treat Chronic Shoulder Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder  ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Shoulder Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Prolotherapy for chronic shoulder pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, shoulder surgery requires you reduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic shoulder pain? Would you like a <strong>second opinion before you have irreversible shoulder surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Chronic Shoulder Pain','','inherit','closed','closed','','511-revision-v1','','','2021-01-26 23:28:06','2021-01-26 23:28:06','',511,'https://www.drfields.com/uncategorized/511-revision-v1/',0,'revision','',0),(4438,8,'2021-01-26 23:28:41','2021-01-26 23:28:41','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Jennifer - Elbow</strong></div>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. But the ligaments or tendons are usually injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n<h3><strong>Ligament Injuries in the Elbow</strong></h3>\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. The <strong>extensor tendons</strong> move the wrist up, and in tennis elbow, these can be damaged. In golfer’s elbow, it is the <strong>flexor tendons</strong> that get injured, as they move the wrist down. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h3><strong>The Most Common Elbow Injuries </strong></h3>\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder ligaments, tendons, or joints. And this leads to gentle, local inflammation in that specific area that boosts healing. Also, the localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. And new collagen shrinks as it matures and tightens the ligaments that were injected, making them stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. And Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Because movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? And are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy for Elbow Pain','','inherit','closed','closed','','524-revision-v1','','','2021-01-26 23:28:41','2021-01-26 23:28:41','',524,'https://www.drfields.com/uncategorized/524-revision-v1/',0,'revision','',0),(4439,8,'2021-01-26 23:30:07','2021-01-26 23:30:07','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Jennifer - Elbow</strong></div>\r\n<h4>What Is Causing Your Elbow Pain?</h4>\r\nThe most common cause of elbow pain is injury or overuse, often from sports, work-related overuse projects around your home, or a fall where you might land on or hit your elbow. Most blows to the elbow are not strong enough to fracture it. But the ligaments or tendons are usually injured. Depending on the injury or condition, <strong>prolotherapy for chronic elbow pain </strong>may give you permanent relief.\r\n<h3><strong>Ligament Injuries in the Elbow</strong></h3>\r\nThese injuries may involve a tear in the <strong>annular ligament</strong>, which wraps around the radius bone to the humerus bone. These ligaments take all the strain when the lower arm turns. Twisting a screwdriver, turning a key or hitting a baseball are all activities that use the annular ligament.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Tendon Injuries in the Elbow</strong>\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">Elbow pain</a> can also involve tendon injury, as in the cases of tennis or golfer’s elbow. The <strong>extensor tendons</strong> move the wrist up, and in tennis elbow, these can be damaged. In golfer’s elbow, it is the <strong>flexor tendons</strong> that get injured, as they move the wrist down. It is not rare for us to see elbow and hand pain that has been misdiagnosed as carpal tunnel syndrome. Carpal tunnel syndrome involves the entrapment of the median nerve where the wrist and hand connect.\r\n\r\nOther causes of elbow pain include tendonitis, bursitis, arthritis, elbow strains and infections.\r\nCommon symptoms of elbow injury are: pain, swelling, numbness, tingling in the arm, weakness, and changes in temperature or colour of the skin. A patient may not remember having a specific injury, especially if symptoms began gradually or during usual activities.\r\n<h3><strong>The Most Common Elbow Injuries </strong></h3>\r\n<strong>But eighty percent of chronic elbow pain is caused by spraining the annular ligament</strong>, which attaches the radius bone to the ulnar bone. Because of the heavy demands placed on the fingers and hands by performing repetitive tasks, the annular ligament is stressed daily and could become a source of chronic pain. Another source of chronic elbow pain is strain of the ulnar collateral ligament. This ligament supports the inside of the elbow and holds the ulnar bone to the humerus.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4>How Prolotherapy Is Used To Treat Chronic Elbow Pain</h4>\r\nConventional medical treatments may relieve the symptoms of elbow pain, but they do not remedy the underlying cause of the problem. That\'s why many patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder ligaments, tendons, or joints. And this leads to gentle, local inflammation in that specific area that boosts healing. Also, the localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. And new collagen shrinks as it matures and tightens the ligaments that were injected, making them stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Elbow Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. And Prolotherapy for chronic elbow pain is one of the few treatments that encourages movement post-treatment. Because movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, elbow surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible elbow surgery</strong>? And are you a candidate for Prolotherapy for your chronic elbow pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Prolotherapy for Elbow Pain','','inherit','closed','closed','','524-revision-v1','','','2021-01-26 23:30:07','2021-01-26 23:30:07','',524,'https://www.drfields.com/uncategorized/524-revision-v1/',0,'revision','',0),(4440,8,'2021-01-26 23:30:53','2021-01-26 23:30:53','<h4>Regenerative Orthopedics for Chronic, Persistent Hip Pain</h4>\r\n<span style=\"font-weight: 400;\">The main reason patients with hip pain come to OrthoRegen<sup>®</sup> is to avoid hip replacement surgery. And the pain is usually due to damage caused by hip arthritis. The majority of these folks have received years of different types of treatments such as multiple cortisone injections, prescriptions for NSAIDs (which actually degenerate articular cartilage further), and other therapies that have failed to sufficiently relieve their pain. They have tried the different treatments offered by their doctor and orthopedic surgeons, only to find that they haven’t worked.</span>\r\n\r\n<span style=\"font-weight: 400;\">The degenerative arthritis in their hip hasn’t stopped, and their hips just aren’t functioning like they want or need them to. And now, their “ortho doc” is recommending hip replacement. But they don’t want that and are looking for a way to avoid the surgery! That\'s why they choose Regenerative Orthopedics. The treatment gives them a non-surgical option and an alternative to hip replacement surgery.</span>\r\n<h4><b>Hip Pain and Arthritis</b></h4>\r\n<b></b><span style=\"font-weight: 400;\">The hip is a ball and socket joint that connects the leg to the pelvis. </span><span style=\"font-weight: 400;\">It has very large ligaments that work to stabilize the hip and prevent injuries. Also, the hip joint has a ring of cartilage that seals the ball and socket called the labrum. And the labrum helps to provide movement between the leg and pelvis. </span>\r\n\r\n<span style=\"font-weight: 400;\">Overuse injuries or traumatic injuries to these various soft tissue structures damage them (ligaments, tendons, and/or hip labrum) and put into motion the arthritis cycle. As this cycle progresses, arthritis pain becomes a source of persistent and often unrelenting pain and disability, which puts a damper on </span><span style=\"font-weight: 400;\">everyday activities. And the symptoms can make even the simplest of tasks difficult to accomplish. That is why so many people turn to Regenerative Orthopedics for Chronic Hip Pain treatment.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4><b>What Causes Hip Pain?</b></h4>\r\n<span style=\"font-weight: 400;\">Arthritis is the most common cause of chronic hip pain. Symptoms may include pain while driving or pain with sitting for longer periods of time. And other symptoms include limited motion in the hip, with stiffness, pain, and soreness. Have you started to waddle? Waddling is definitely something we observe in those with hip arthritis.</span>\r\n<h4><em><span style=\"font-weight: 400;\">Arthritis, and the loss of cartilage that accompanies it, did not just happen overnight! </span></em></h4>\r\n<span style=\"font-weight: 400;\">At some point the hip joint becomes destabilized by injury. Most of our patients can recall some type of trauma to the hip. Or even a previous hip procedure. And traumas will injure the ligaments, tendons, and labrum, which set the hip joint up to be unstable. The ongoing instability causes abnormal motion in the hip joint which wears out and promotes degeneration of the hip structures. </span>\r\n\r\n<span style=\"font-weight: 400;\">And when the abnormal motion is not repaired and stabilized, the arthritis cycle is encouraged. </span><span style=\"font-weight: 400;\">Abnormal motion leads to wear of the joint structures, which causes more abnormality in the hip motion. And that destroys the hip joint further.  </span>\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4><strong>How does surgery cause arthritis to worsen? </strong></h4>\r\n<span style=\"font-weight: 400;\">In surgeries, like hip arthroscopy, the surgeon reshapes, shaves, and/or removes structures in the hip. The cutting, shaving, and scraping of the hip joint structures worsens the instability. Surgery itself stretches out the ligaments and tendons of the hip.  Just by inserting the large arthroscope into the hip stretches and weakens the ligaments and tendons. In the end, this all adds to the abnormal motion and instability of the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Labral tears, femoroacetabular impingement, and hip dysplasia are a few other structural hip disorders that can cause chronic joint pain and promote ongoing joint instability. And later, the development of arthritis. Surgeons may recommend surgery for all of these conditions.</span>\r\n\r\n<span style=\"font-weight: 400;\">Consider non-surgical Regenerative Orthopedics prior to opting for surgery. </span>\r\n<h4><b>Regenerative Orthopedics Treats Chronic Hip Pain</b></h4>\r\n<span style=\"font-weight: 400;\">Have other treatments failed to give you the relief from pain you seek, or the return to function you once enjoyed? Regenerative Orthopedics are very successful at changing many patients lives for the better by decreasing pain and stiffness levels, boosting exercise ability, and lowering or eliminating the need for pain medication. </span>\r\n\r\n<span style=\"font-weight: 400;\">As with other joints, musculoskeletal pain is usually due to weakness in the ligaments, tendons and other soft tissue, like the labrum. Regenerative Orthopedics can strengthen the weak and injured soft tissue, repair the injury, and </span><b>regenerate damaged tissue, </b><span style=\"font-weight: 400;\">which ultimately alleviates and resolves the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">The regenerative solutions are injected into the affected hip ligaments, tendons, labrum, and associated joint structures. This stimulates the body’s natural healing cascade to initiate repair to the area. New collagen is deposited. And since this is the material in which ligaments and tendons are made, the result is tightened and stronger soft tissue structures.</span>\r\n<h4><strong>Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. </strong></h4>\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedic solutions are very safe, affordable options that allow you to keep working, training, and living a normal life without the need for an extended recovery process. And in cases of severe degeneration, the Gold Standard in Stem Cell Therapy may be recommended for optimal repair and return to function.  </span>\r\n\r\n<span style=\"font-weight: 400;\">When you receive Regenerative Orthopedic treatments for chronic hip pain, movement will be encouraged, rather than immobilization, because movement is important, and even essential to the healing process.</span>\r\n<h4><b>Are You A Candidate for Regenerative Orthopedics for Chronic Hip Pain?</b></h4>\r\n<span style=\"font-weight: 400;\">Would you like a </span><b>second opinion before you have irreversible hip surgery for your unrelenting, chronic hip pain</b><span style=\"font-weight: 400;\">?  Schedule a consultation and find out if you are a good candidate for our Regenerative Orthopedic treatments. </span><a href=\"https://www.drfields.com/contact/\"><span style=\"font-weight: 400;\">Contact us today</span></a><span style=\"font-weight: 400;\"> for a consultation, or call OrthoRegen<sup>®</sup> at </span><span style=\"font-weight: 400;\">[phone]</span><span style=\"font-weight: 400;\">.</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Hip Pain Solutions','','inherit','closed','closed','','2665-revision-v1','','','2021-01-26 23:30:53','2021-01-26 23:30:53','',2665,'https://www.drfields.com/uncategorized/2665-revision-v1/',0,'revision','',0),(4441,8,'2021-01-26 23:31:27','2021-01-26 23:31:27','<h4>Stop Back Pain and the Endless Cycle of Chasing Symptoms</h4>\r\n<span style=\"font-weight: 400;\">So many people suffer with back pain, stuck in a cycle of pain medications, hours of therapy appointments, more prescription medications, over the counter medications, supplements, and more therapy. Only to continue to suffer from continued back pain. The cycle is an attempt to manage the pain. </span><span style=\"font-weight: 400;\">You might think, “Of course, I want to manage the pain!” But what if there is a better way, and one that actually corrects the back pain problem. Regenerative Orthopedics can stop back pain and the cycle because it repairs the underlying source of pain. Since it treats at the source, it ends up resolving the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\"> Chasing symptoms keeps the sufferer in the pain cycle. Correcting the problems with Regenerative Orthopedics can stop back pain and the endless cycle!</span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<b>What Is the Reason Behind Most Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Since back pain is so common and a leading cause of disability, it is important to look at the reason for it. The underlying cause of most back pain issues is </span><b><i>spinal instability</i></b><span style=\"font-weight: 400;\">. </span>\r\n\r\n<span style=\"font-weight: 400;\">What is spinal instability you might ask? When you bend and twist and tweak your back, you injure soft tissue, like muscle and ligaments. Muscles have a great blood supply, so they heal quickly. Ligaments have a poor blood supply, and take quite a while to heal. In fact, they heal quite poorly. </span>\r\n\r\n<span style=\"font-weight: 400;\">Unhealed ligaments are weak and lax, similar to stretched out rubber bands. Ligaments connect bone to bone. So if the ligaments are weak, then the bone connection will be weak and wobbly. That bone connection or joint is then unstable. </span>\r\n<h3>The Vertebral Spine</h3>\r\n<span style=\"font-weight: 400;\">The vertebral bones in the back make up the spine. So when the ligaments in the spine are weak or wobbly, that makes for spinal instability. When these ligaments remain unhealed, the problem gets worse and worse. The ligaments get more lax and the spine becomes more unstable. You can imagine that if the joints of the spine become wobbly, that the bony structures will have difficulty moving like they should. </span>\r\n\r\n<span style=\"font-weight: 400;\">When motion in the vertebral joint connections stops being smooth, the abnormal motion causes the joint structures to degenerate. Instability and abnormal joint motion is behind all types of painful back conditions. Painful problems like bulging discs, arthritis, sciatica, and degenerative joint disease can result from abnormal motion in the spine.</span>\r\n\r\n<span style=\"font-weight: 400;\"> The underlying problem is ligament weakness, which creates the abnormal joint motion that will eventually damage the joint structures and elicit pain. Pain pills aren’t able to fix the weakened ligaments. And cortisone makes soft tissue weaker. So even if these things provide some short-term relief, they will eventually worsen the problem in the long run. Massage can’t strengthen weakened ligaments either.</span>\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4><em>Regenerative Orthopedics Can Stop Back Pain</em></h4>\r\n<span style=\"font-weight: 400;\">What’s the solution? The degenerative condition needs a regenerative treatment. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are all regenerative treatments that strengthen ligaments, restore normal joint motion, and regenerate joint structures. Good quality <a href=\"https://lyfebotanicals.com/health/turmeric-back-pain/\">supplements</a>, like turmeric, which can aid in the healing process, are also of benefit.</span>\r\n\r\n<b>Ligaments Are Structures that Provide Stability to the Joint</b>\r\n\r\n<span style=\"font-weight: 400;\">As mentioned earlier, the most common cause of unresolved back pain is spinal instability, due to weakened and stretched out ligaments. Ligaments are very important for stability of the spine and for proper motion. In fact, they are some of the main stabilizing structure for the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Sure, those with back pain will definitely complain of muscle spasms and tightness, because muscles help with stability too. But muscles will spasm because they are overcompensating for the inability of the injured ligaments to keep the spine in place. Treatments that relieve muscle spasms will give temporary reprieve of the spasms. But they will not address the ligament weakness. Instability and pain will continue, because the ligaments are unable to hold the adjacent bones of the spine together properly.</span>\r\n\r\n<b>How Can You Stop Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Each year, thousands and thousands of people are disabled due to some type of painful back condition. Back pain is actually one of the main reasons people come to see us at OrthoRegen<sup>®</sup>. By the time they come to see us, they have usually tried numerous types of pills, treatments, and even surgery. </span>\r\n\r\n<span style=\"font-weight: 400;\">But they are in our office because the pain has not stopped!</span><span style=\"font-weight: 400;\"> That’s because these other treatments are only short-lived and because they only provide temporary relief. Even surgical treatments end up with poor rates of success. Surgery may emphasize treatment of the disc, for example, but it misses treating the ligament injury which is the originating source of the pain. So pain continues.</span>\r\n<h3>Ligaments Can Refer Pain Too</h3>\r\n<span style=\"font-weight: 400;\">The places where the ligaments attach to the bones are full of nerves, which elicit pain when stretched out or injured. Injured ligaments can send out referral pain down the back of the leg and even to the foot. They can also refer pain into the groin and pelvic floor. If weak ligaments exist, the physician knowledgeable in examination techniques can diagnose instability during the physical examination with varied maneuvers and positioning. Even palpating, or pressing with the thumb at the ligament attachments will elicit pain indicating ligament laxity.</span>\r\n\r\n<span style=\"font-weight: 400;\">Back pain is one of the easiest conditions to treat with Regenerative Orthopedics. Most often, the pain is located in the lower back, where the vertebrae of the lumbar spine meet the pelvis. Four structures adjoin there in a pretty small area, with all of it held together by ligaments, connecting the sacrum to the sides of the iliac crest and the ilium, while the lower part of the lumbar spine connects to the sacrum. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics to the ligaments in this area strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication. </span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Stop Back Pain with Regenerative Orthopedics','','inherit','closed','closed','','2760-revision-v1','','','2021-01-26 23:31:27','2021-01-26 23:31:27','',2760,'https://www.drfields.com/uncategorized/2760-revision-v1/',0,'revision','',0),(4442,8,'2021-01-26 23:32:08','2021-01-26 23:32:08','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Prolotherapy Hip Injury\'\"]\r\n<strong>Chris - Hip</strong></div>\r\n<h4>Prolotherapy for Hip and Groin Injuries</h4>\r\nHip and groin injuries can quickly become debilitating and escalate into athletic career ending injuries. MRI and arthroscopic surgery are routinely recommended for patients. Other patients may spend months or longer on pain medication, while undergoing rounds of physical therapy. <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> for hip and groin injuries offers a successful alternative to pain medication and surgery. And OrthoRegen<sup>®</sup> offers comprehensive treatment for your hip injuries and groin pain without pain medication, surgery or extended time away from the sport you love.\r\n<h4>Who Is Prolotherapy for Hip Injuries For?</h4>\r\nOur patients include Olympic hopefuls to weekend warriors. Dr. Peter Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an Ironman Triathlete. So he understands the concerns of injured athletes, hoping to return quickly to their chosen sport. His clinical experience has shown that Prolotherapy hip treatment is the preferred way to treat hip injuries and groin pain for optimal long term results. We can get you back into your sport without surgery, without medication, and without extended time away from your sport.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment are:</strong>\r\n<ul>\r\n 	<li>Acetabular labrum tear</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Femoroacetabular impingement</li>\r\n 	<li>Groin pain</li>\r\n 	<li>Instability of the hip and groin</li>\r\n 	<li>Hip impingement</li>\r\n 	<li>Hip pain</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Post pelvic fusion pain</li>\r\n 	<li>Post-surgical hip pain</li>\r\n 	<li>Pubic symphysis injury</li>\r\n 	<li>Pubis pain</li>\r\n 	<li>Pupalgia</li>\r\n 	<li>Snapping hip syndrome</li>\r\n 	<li>Torn Labrum</li>\r\n</ul>\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nPeter A. Fields, MD,DC and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy hip and groin treatments, as well as PRP Prolotherapy, and Stem Cell Prolotherapy. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>','Prolotherapy for Hip and Groin Injuries','','inherit','closed','closed','','528-revision-v1','','','2021-01-26 23:32:08','2021-01-26 23:32:08','',528,'https://www.drfields.com/uncategorized/528-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (4443,8,'2021-01-26 23:38:11','2021-01-26 23:38:11','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"aXwHPE_WEd0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg\" alt=\"Prolotherapy Hip Injury\'\"]\r\n<strong>Chris - Hip</strong></div>\r\n<h4>Prolotherapy for Hip and Groin Injuries</h4>\r\nHip and groin injuries can quickly become debilitating and escalate into athletic career ending injuries. MRI and arthroscopic surgery are routinely recommended for patients. Other patients may spend months or longer on pain medication, while undergoing rounds of physical therapy. <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> for hip and groin injuries offers a successful alternative to pain medication and surgery. And OrthoRegen<sup>®</sup> offers comprehensive treatment for your hip injuries and groin pain without pain medication, surgery or extended time away from the sport you love.\r\n<h4>Who Is Prolotherapy for Hip Injuries For?</h4>\r\nOur patients include Olympic hopefuls to weekend warriors. Dr. Peter Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an Ironman Triathlete. So he understands the concerns of injured athletes, hoping to return quickly to their chosen sport. His clinical experience has shown that Prolotherapy hip treatment is the preferred way to treat hip injuries and groin pain for optimal long term results. We can get you back into your sport without surgery, without medication, and without extended time away from your sport.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> hip and groin treatment are:</strong>\r\n<ul>\r\n 	<li>Acetabular labrum tear</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Femoroacetabular impingement</li>\r\n 	<li>Groin pain</li>\r\n 	<li>Instability of the hip and groin</li>\r\n 	<li>Hip impingement</li>\r\n 	<li>Hip pain</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Post pelvic fusion pain</li>\r\n 	<li>Post-surgical hip pain</li>\r\n 	<li>Pubic symphysis injury</li>\r\n 	<li>Pubis pain</li>\r\n 	<li>Pupalgia</li>\r\n 	<li>Snapping hip syndrome</li>\r\n 	<li>Torn Labrum</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nPeter A. Fields, MD,DC and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy hip and groin treatments, as well as PRP Prolotherapy, and Stem Cell Prolotherapy. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>','Prolotherapy for Hip and Groin Injuries','','inherit','closed','closed','','528-revision-v1','','','2021-01-26 23:38:11','2021-01-26 23:38:11','',528,'https://www.drfields.com/uncategorized/528-revision-v1/',0,'revision','',0),(4444,8,'2021-01-26 23:45:31','2021-01-26 23:45:31','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong></div>\r\n<h4>Regenerative Orthopedic Knee Treatments</h4>\r\nKnee injuries are one of the most common problems we treat with Regenerative Orthopedic knee treatments at OrthoRegen<sup>®</sup>, and that\'s important because the knee joint is one of the most crucial joints in the body, not to mention that knee function is vital to involvement in everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nThere are also two forms of cartilage in the knee, including articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement. The meniscus is another type of cartilage, which consists of two semicircular discs providing cushioning and support for the bones. Our knees are extremely vulnerable to injury in one or a combination of these elements. In the case of a knee injury, we recommend our <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair damaged tissue, ligaments, and tendons, to get you back quickly to the activities you love.\r\n<h4>How Regenerative Orthopedics Works to Treat the Knee</h4>\r\nRegenerative Orthopedics are innovative therapies that treat the knee by stimulating the immune system to repair damaged tissue. Prolotherapy is one type of regenerative treatment that is effective for knee injuries. \"Prolo\" comes from the word proliferate, and Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the ligaments and tendons. The proliferation of the fibroblasts encourages new, strong, tissue to be formed. Why is this important? Because this new tissue is exactly what is needed to repair ligament, tendon, and meniscus injuries.\r\n\r\nIn some cases of knee injury, Platelet Rich Plasma (PRP) may be recommended. The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Certain injuries will require more potent means for healing and regeneration. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, tendons, and the menisci of the knee joint.\r\n\r\nReceive treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nPeter A. Fields, MD, DC and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Regenerative Orthopedic treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, Dc is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>. For over 25 years, Dr. Fields has been active in the sport of Triathlon. In 2019, he completed his 11th Ironman Triathlon, in Cozumel, Mexico. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nContact us to see if you are a candidate for Regenerative Orthopedics or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\r\n\r\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Knee pain after surgery</li>\r\n 	<li>Knee popping</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Knee replacement pain</a></li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\r\n 	<li>Ligament sprain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-revision-v1','','','2021-01-26 23:45:31','2021-01-26 23:45:31','',533,'https://www.drfields.com/uncategorized/533-revision-v1/',0,'revision','',0),(4445,8,'2021-01-26 23:51:20','2021-01-26 23:51:20','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\r\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> neck treatment at OrthoRegen<sup>®</sup>.\r\n\r\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\r\nDr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\r\n\r\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n','Neck Injury Treatment','','inherit','closed','closed','','536-revision-v1','','','2021-01-26 23:51:20','2021-01-26 23:51:20','',536,'https://www.drfields.com/uncategorized/536-revision-v1/',0,'revision','',0),(4446,8,'2021-01-26 23:52:02','2021-01-26 23:52:02','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg\" alt=\"Dr.doug – Headaches & Shoulder\"]\r\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Shoulder Treatment</h4>\r\nAt OrthoRegen<sup>®</sup>, shoulder injuries are one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Shoulder injuries are common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive prolotherapy shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\r\n\r\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\r\n\">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist and swimmer, understands your desire to return to full participation in your training and competition.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen<sup>®</sup> are:</strong>\r\n<ul>\r\n 	<li>Acromioclavicular joint arthrosis</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation</li>\r\n 	<li>Frozen shoulder</li>\r\n 	<li>Glenoid labrum tear</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Multi-directional instability</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Shoulder dislocation</li>\r\n 	<li>Shoulder instability</li>\r\n 	<li>Shoulder pain</li>\r\n 	<li>Shoulder separation</li>\r\n 	<li>SLAP lesion</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Swimmers shoulder</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendonosis</li>\r\n 	<li>Torn labrum</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials/\">Shoulder Prolotherapy Testimonials page</a>.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n','Shoulder Injury Treatment','','inherit','closed','closed','','545-revision-v1','','','2021-01-26 23:52:02','2021-01-26 23:52:02','',545,'https://www.drfields.com/uncategorized/545-revision-v1/',0,'revision','',0),(4447,8,'2021-01-26 23:53:20','2021-01-26 23:53:20','<h4>Prolotherapy Back and Pelvic Treatment</h4>\r\n<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur – Low Back\"]\r\n<strong>Wilbur - Low Back</strong>\r\n</div>\r\nOne of the main reasons patients come to OrthoRegen<sup>®</sup> is for back relief with our Prolotherapy Back Treatment. Back or pelvic injury is also the main reason our patients say, they have had to stop participation in sports.\r\n\r\nMany of the traditional treatments for back pain can actually be the cause for continuing problems. If you have tried NSAID medications (like Ibuprofen or Naproxen), nerve blocks, acupuncture or chiropractic adjustments, and have not found relief, join our growing patient list of people who have benefited from comprehensive treatment.\r\n\r\n<h4>Does Prolotherapy Back Treatment Work?</h4>\r\nWe are very successful at treating people for back and pelvic pain with our Prolotherapy Back treatment. We get them back to their sport without surgery, without medications, and without extended time off! To properly treat the lower back, the whole area needs to be treated. Especially in cases of sport injury trauma, patients find better and faster relief from the techniques used here at OrthoRegen<sup>®</sup>. We will work to rehabilitate the whole athlete through nutritional and exercise regimens.\r\n\r\nIn our experience, the preferred way to treat back and pelvic with a comprehensive program of <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. In that way, patients see long term optimal results.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common back and pelvic pains and injuries that we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Back pain</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Buttock pain</li>\r\n 	<li>Coccyx pain</li>\r\n 	<li>Degenerated discs</li>\r\n 	<li>Herniated discs</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Failed back fusion pain</li>\r\n 	<li>Failed back surgery syndrome</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>Muscle spasms</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Pelvic pain</li>\r\n 	<li>Retrolisthesis</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tailbone pain</li>\r\n 	<li>Thoracic spine pain</li>\r\n 	<li>SI instability</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Yoga injury</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy back treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials/\">Prolotherapy Back Testimonials page</a>.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>','Back Injury Treatment','','inherit','closed','closed','','567-revision-v1','','','2021-01-26 23:53:20','2021-01-26 23:53:20','',567,'https://www.drfields.com/uncategorized/567-revision-v1/',0,'revision','',0),(4448,8,'2021-01-26 23:53:47','2021-01-26 23:53:47','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer- Elbow\"]\r\n<strong>Jennifer - Elbow</strong>\r\n</div>\r\n\r\n<h4>Prolotherapy Elbow Treatment</h4>\r\nOrthoRegen<sup>®</sup> offers you the most effective treatment for elbow injuries. Avoid the long term side effects of NSAID and cortisone injections with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> elbow treatment. We offer our patients experience and knowledgeable treatment for their elbow pain and injuries. From future Olympians to weekend warriors, we can help you return to your sport without surgery, without pain medications and without extended periods of time away from your sport.\r\n\r\n<h4>Why Prolotherapy Elbow Treatment with Dr. Fields?</h4>\r\nDr. Peter Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an experienced marathoner, long-distance cyclist and swimmer. He has participated in Triathlons as well as Ironman competitions. He understands the passion that athletes have to train and compete. In our experience, our comprehensive Prolotherapy elbow treatment is the best way to treat elbow injuries for long term positive results.\r\n\r\n<a class=\"buttonlink\" href=\"http://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common elbow pain and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Elbow pain</a></li>\r\n 	<li>Elbow sprain</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>Lateral epicondylitis</li>\r\n 	<li>Medial epicondylitis</li>\r\n 	<li>Post-surgical elbow pain</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendinosis</li>\r\n 	<li>Tennis elbow</li>\r\n</ul>\r\n\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy elbow treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\r\n\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials/\">Prolotherapy Elbow Testimonials page</a>.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>','Elbow Injury Treatment','','inherit','closed','closed','','582-revision-v1','','','2021-01-26 23:53:47','2021-01-26 23:53:47','',582,'https://www.drfields.com/uncategorized/582-revision-v1/',0,'revision','',0),(4449,8,'2021-01-26 23:54:29','2021-01-26 23:54:29','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"0jafVf5mDIk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg\" alt=\"Foot Injury Treatment Joel\"]\r\n<strong>Joel - Foot</strong></div>\r\n<h4>Prolotherapy for Foot and Ankle Injuries</h4>\r\nAre you looking for relief from your foot pain that does not include surgery? Or are you looking for an alternative to surgery for your chronic ankle sprains? Every day at OrthoRegen<sup>®</sup> , we use comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> for foot and ankle injuries. And nearly every type of painful foot and ankle injury can be treated at our Medical Wellness Center. We work diligently with and for our patients, to help them get back to their sport without surgery, without medications, and without extended time away from the activity they love.\r\n<h4>Why Should You Choose Prolotherapy Treatment by Dr. Fields?</h4>\r\nWhether you are an Olympic hopeful, a triathlete or a weekend warrior, Prolotherapy can help you. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is passionate about helping his clients eliminate their foot and ankle pain for optimal long term results, with the use of comprehensive Prolotherapy.  And like you, Dr. Fields enjoys training and competing. As a Triathlete and Ironman competitor, he continues to train and improve his times.\r\n\r\nBe treated by a physician who understands your enjoyment of sports and your need for peak performance. So if you are experiencing foot or ankle pain and want to see if you would be a candidate for Prolotherapy treatment, see us for a consultation. And if you want a second opinion on a recommended surgery, and are not ready to retire from your favorite sport, call us for a consultation <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><strong>Common Foot and Ankle Injuries Treated with Prolotherapy</strong></h4>\r\n<strong>Some of the most common foot and ankle pain and injuries we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> at OrthoRegen<sup>®</sup> are:</strong>\r\n<ul>\r\n 	<li>Achilles tendinopathy</li>\r\n 	<li>Ankle fusion pain</li>\r\n 	<li>Instability of the foot or ankle</li>\r\n 	<li>Ankle pain</li>\r\n 	<li>Ankle sprains</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bunion pain</li>\r\n 	<li>Fallen arch</li>\r\n 	<li>Hammertoe pain</li>\r\n 	<li>Heel pain</li>\r\n 	<li>Heel spur</li>\r\n 	<li>Metatarsalgia</li>\r\n 	<li>Morton\'s neuroma</li>\r\n 	<li>Pain after ankle surgery</li>\r\n 	<li>Pain after foot surgery</li>\r\n 	<li>Plantar fasciitis</li>\r\n 	<li>Tarsal tunnel syndrome</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Toe pain</li>\r\n 	<li>Turf toe</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy foot and ankle treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Foot-Testimonials/\">Prolotherapy Foot Testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Ankle-Testimonials/\">Ankle Testimonials</a> pages.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>','Prolotherapy for Foot Injuries','','inherit','closed','closed','','595-revision-v1','','','2021-01-26 23:54:29','2021-01-26 23:54:29','',595,'https://www.drfields.com/uncategorized/595-revision-v1/',0,'revision','',0),(4450,8,'2021-01-26 23:55:31','2021-01-26 23:55:31','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Hand Injury Treatment Suzie Wrist\"]\r\n<strong>Suzie - Wrist</strong>\r\n</div>\r\n<h4>Prolotherapy Hand and Wrist Injuries and Treatment</h4>\r\nWhether you are suffering from a sprained finger from football or baseball, or wrist pain from tennis or golf, OrthoRegen<sup>®</sup> treats numerous finger, hand and wrist injuries with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\r\n\">Prolotherapy</a> hand treatments. We can treat your pain or injury without surgery, without pain medications or without extended time away from training and competition.\r\n\r\nIn our experience, comprehensive Prolotherapy can successfully treat pain in your fingers, hands and wrists, with optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, can consult with you to determine if you are a candidate for <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Because of his participation in Triathlons and Ironman competitions, he understands your desire to return quickly to the sports in which you participate.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Common Hand and Wrist Injuries Treatable by Prolotheraphy</h4>\r\nThe most common finger, wrist and hand pain and injuries we treat with comprehensive Prolotherapy are:\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Baseball injuries</li>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Finger pain</li>\r\n 	<li>Football injuries</li>\r\n 	<li>Golf injuries</li>\r\n 	<li>Hand pain</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Sprain injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tennis injuries</li>\r\n 	<li>Thumb pain</li>\r\n 	<li>Wrist pain</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy hand and wrist treatments, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Prolotherapy Hand and Wrist Testimonials page</a>.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>','Hand Injury Treatment','','inherit','closed','closed','','615-revision-v1','','','2021-01-26 23:55:31','2021-01-26 23:55:31','',615,'https://www.drfields.com/uncategorized/615-revision-v1/',0,'revision','',0),(4451,8,'2021-01-26 23:56:06','2021-01-26 23:56:06','<h4>Sports Injuries Treatment</h4>\r\nHave sports injuries stopped you? Get back in the game with Prolotherapy and Dr. Peter A. Fields, The Athletic Doc<sup>®</sup>. At OrthoRegen<sup>®</sup> we offer innovative, non-surgical treatments for your sports injury or chronic pain problems. Without unnecessary medication, prescriptions, cortisone shots or surgery, Prolotherapy can regenerate damaged or worn ligaments and strengthen weakened tendons. The most beneficial aspect of our non-surgical sports injuries treatment is that you can continue to train while you receive Prolotherapy treatments. We treat athletes of all skill and age levels: high school to college; amateur to professional athletes.\r\n\r\n<h4>How Can Prolotherapy Help Your Sports Injury?</h4>\r\nProlotherapy is an innovative treatment that stimulates the immune system to repair damaged tissue.”Prolo” comes from the word proliferate. Prolotherapy then, describes the therapy which utilizes proliferation of fibroblastic cells that grow the ligaments and tendons. By proliferation of the fibroblasts, new, strong, collagen tissue is formed. This new tissue is what is needed to repair ligament and tendon sprains and other sports injuries. Receive treatment for your sports injuries with comprehensive Prolotherapy at OrthoRegen<sup>®</sup>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Are You Suffering from a Sports Injury?</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">K</a><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">nee Pain</a></li>\r\n 	<li> ACL Tear</li>\r\n 	<li>Torn Meniscus</li>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Neck-Pain\">Neck pain</a></li>\r\n 	<li>Back Pain</li>\r\n 	<li>Shin Splints</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>Hamstring Strain</li>\r\n 	<li>IT Band Injury</li>\r\n 	<li>Turf Toe</li>\r\n</ul>\r\n<strong><em> Prolotherapy Sports Injuries Treatment can help you get back in the game – and get back quickly!</em></strong>\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4>Prolotherapy Doctor Treats Sports Injuries Without Surgery</h4>\r\nReceive treatment for your sports injuries by Ironman Triathlete Dr. Peter A. Fields. For over 25 years, Dr. Fields has been active in the sport of Triathlon. It is his experience as an athlete that allows him to understand the potential for injury and the demands of sports on the physical body. He also understands the passion athletes have to get back to training and competition, and their need to recover quickly from injury, because he has been there. In November 2012, Dr. Fields completed his second Ironman Triathlon, beating his 2011 time by better than 14 minutes. Dr. Fields is known as The Athletic Doc<sup>®</sup>. Wouldn’t you want to be treated by a sports doctor who is also an athlete?\r\n\r\nOur medical team finds that treating athletes is very rewarding. We can utilize a comprehensive health approach to help you reach your peak physical performance. <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> allows you to get back to training within a couple of days and does not involve periods of long recovery. Prolotherapy involves the injection of natural substances at the exact site of an injury. This stimulates the immune system to repair the sports injury. Areas often injured through sports related activities—ligaments, tendons, menisci, muscles, growth plates, joint capsules and cartilage are stimulated to heal. Anesthetics are also used to minimize any unpleasant pain.\r\n\r\n<h4>Are You A Candidate for Non- Surgical Sports Injuries Treatment?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Testimonials page</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Sports Injuries Treatment Overview','','inherit','closed','closed','','632-revision-v1','','','2021-01-26 23:56:06','2021-01-26 23:56:06','',632,'https://www.drfields.com/uncategorized/632-revision-v1/',0,'revision','',0),(4452,8,'2021-01-27 17:56:21','2021-01-27 17:56:21','','iwp_log_6011a945c067e','','publish','closed','closed','','iwp_log_6011a945c067e','','','2021-01-27 17:56:21','2021-01-27 17:56:21','',0,'https://www.drfields.com/iwp_log/iwp_log_6011a945c067e/',0,'iwp_log','',0),(4453,8,'2021-01-27 17:56:51','2021-01-27 17:56:51','','iwp_log_6011a963b5fc4','','publish','closed','closed','','iwp_log_6011a963b5fc4','','','2021-01-27 17:56:51','2021-01-27 17:56:51','',0,'https://www.drfields.com/iwp_log/iwp_log_6011a963b5fc4/',0,'iwp_log','',0),(4454,8,'2021-01-28 00:50:00','2021-01-28 00:50:00','Palm Tree View Preview','Palm Tree View Preview','Palm Tree View Preview','inherit','open','closed','','palm-tree-view-preview','','','2021-01-28 00:50:00','2021-01-28 00:50:00','',0,'https://www.drfields.com/wp-content/uploads/2021/01/Palm-Tree-View-Preview.jpg',0,'attachment','image/jpeg',0),(4455,8,'2021-01-28 20:07:39','2021-01-28 20:07:39','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"display: inline-block; height: 50px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a><br />\r\n<br />\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-01-28 20:07:39','2021-01-28 20:07:39','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4456,8,'2021-01-28 20:08:54','2021-01-28 20:08:54','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"display: inline-block; height: 50px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n<span style=\"height: 20px;\"></span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-01-28 20:08:54','2021-01-28 20:08:54','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4457,8,'2021-01-28 20:10:21','2021-01-28 20:10:21','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 13-15 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"display: inline-block; height: 50px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n<span style=\"height: 20px;\"></span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-01-28 20:10:21','2021-01-28 20:10:21','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4458,8,'2021-03-30 19:56:18','2021-03-30 19:56:18','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\n<strong>Knee Treatment</strong></div>\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\n<strong>Stem Cell Hip</strong></p>\n<i>Regenerating a person\'s joints and spine is not something of the future: <strong>it is happening today!</strong> Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\n\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\n<div class=\"clear\"></div>\n<h4>Who Needs Stem Cell Treatment?</h4>\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<strong>If you have been told</strong> that you have any of these conditions...\n<ul>\n 	<li>Bone-on-bone</li>\n 	<li>Severe arthritis</li>\n 	<li>A degenerated joint</li>\n 	<li>Your cartilage has been worn away,</li>\n 	<li>The only option left is to have your joint replaced...</li>\n</ul>\n...you now have another option.\n\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\n<ul>\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\n</ul>\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\n\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\n\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\n<strong>Bone Marrow Stem Cells</strong>\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\n\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n\n<strong>Adipose Stem Cells </strong>\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\n\n<img class=\"alignleft wp-image-732 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\" width=\"215\" height=\"167\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\n\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\n<h4>Research On Stem Cell Treatment for Joints</h4>\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\n\n<img class=\"alignright wp-image-735 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\n\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\n<h3><strong>Stem Cell Treatment Results</strong></h3>\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\n\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\n\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <a href=\"tel:+[phone_raw]\">[phone]</a>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-autosave-v1','','','2021-03-30 19:56:18','2021-03-30 19:56:18','',431,'https://www.drfields.com/uncategorized/431-autosave-v1/',0,'revision','',0),(4459,8,'2021-01-28 20:12:49','2021-01-28 20:12:49','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Knee Treatment</strong></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong></p>\r\n<i>Regenerating a person\'s joints and spine is not something of the future: <strong>it is happening today!</strong> Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\r\n<div class=\"clear\"></div>\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"alignleft wp-image-732 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\" width=\"215\" height=\"167\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"alignright wp-image-735 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n<h3><strong>Stem Cell Treatment Results</strong></h3>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <a href=\"tel:+[phone_raw]\">[phone]</a>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2021-01-28 20:12:49','2021-01-28 20:12:49','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(4460,8,'2021-01-28 20:13:54','2021-01-28 20:13:54','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Knee Treatment</strong></div>\r\n<p id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong></p>\r\n<i>Regenerating a person\'s joints and spine is not something of the future: <strong>it is happening today!</strong> Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\r\n<div class=\"clear\"></div>\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"alignleft wp-image-732 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\" width=\"215\" height=\"167\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"alignright wp-image-735 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n<h3><strong>Stem Cell Treatment Results</strong></h3>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <a href=\"tel:+[phone_raw]\">[phone]</a>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2021-01-28 20:13:54','2021-01-28 20:13:54','',431,'https://www.drfields.com/uncategorized/431-revision-v1/',0,'revision','',0),(4461,8,'2021-01-28 20:15:18','2021-01-28 20:15:18','<h4>Platelet Rich Plasma Treatments</h4>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\n<div class=\"clearfix\"></div>\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>Platelet Rich Plasma Treatments</strong> (also known as PRP Injections, PRP Therapy, or PRP Prolotherapy) are treatments for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications, and recovery time associated with joint surgery.\n<h4>Why Do Platelet Rich Plasma Treatments Work?</h4>\n[caption id=\"attachment_642\" align=\"alignright\" width=\"200\"]<img class=\"wp-image-642 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" /> <em>Platelet Rich Plasma Treatments can help to keep you running</em>[/caption]\n\nYour blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that can greatly and naturally accelerate the normal healing process. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair and regenerate weakened torn or damaged ligaments, ligaments, and joints.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h4>Platelet Rich Plasma Treatments vs. Dextrose Prolotherapy Treatment</h4>\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.), which causes an inflammatory response that stimulates the healing process.\n\nBy contrast, the PRP treatment solution is derived from your own blood. A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This highly concentrated amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze new soft-tissue growth.\n\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair and regenerate weakened torn or damaged ligaments, ligaments, and joints.\n<h4>Which Treatment is Right For Me?</h4>\nMost organizations and the physicians associated with them teach Prolotherapy, and PRP agree that <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\n<ul>\n 	<li><strong>It is less painful.</strong></li>\n 	<li><strong>Prolotherapy primes the area that is damaged, which PRP does not.\n</strong></li>\n 	<li><strong>It is less expensive.</strong></li>\n</ul>\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\n<h4>PRP Treatment: Frequently Asked Questions</h4>\n<h4><em><strong>What is PRP Treatment?</strong></em></h4>\nPRP, as used in Regenerative Orthopedics, is a non-surgical healing treatment for healing soft tissue. The solution is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\n<h4><em>What does PRP mean?</em></h4>\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood that contains cellular components such as red cells, white blood cells, and platelets. The Harvest Method that OrthoRegen and Peter A. Fields, MD, DC uses concentrates the platelets 7-10 times of what is normally found in the blood. Other systems concentrate them, but to a lesser extent.\n<h4><em>What conditions are treated with PRP?</em></h4>\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci, or labrums are the most common soft tissue structures treated. PRP has also been effective in treating arthritis.\n\n<img class=\"wp-image-712 size-full alignleft\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" />\n<h3>What are some common diagnoses treated with PRP?</h3>\n<ul>\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\n 	<li>Hip: labrum, tenositis, bursitis</li>\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpal tunnel</li>\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\n</ul>\n<h3>How is PRP treatment administered?</h3>\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Then, a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\n\n&nbsp;\n<h3>Is PRP curative?</h3>\nPRP actually heals the injured region. Unlike pharmaceutical medications, like ibuprofen or cortisone, which may just take the pain away but cannot heal the injury.\n<h3>How does PRP work to heal?</h3>\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate and promote healing of weakened, torn, or damaged soft tissue such as tendons, ligaments, meniscus, or labrum.\n<h3>Is PRP painful?</h3>\nPatients typically tolerate the procedure well, although post-injection soreness is sometimes experienced.\n<h3>How many PRP treatments do you need?</h3>\nTwo to four treatments are needed depending on the degree of injury and how long the injury has been there.\n<h3>How far apart are PRP treatments spaced?</h3>\nTypically about every 6 weeks if indicated.<img class=\"alignright wp-image-644 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\n<h3>What can you expect after getting PRP?</h3>\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to resolve substantially.\n<h3>Are there side effects/complications of PRP?</h3>\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\n<h3>How long does it take the PRP to “work”?</h3>\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with the usual reports of original pain being lessened over time. Increased endurance and strength are typically reported.\n<h6>Platelet Rich Plasma (PRP) Therapy in the News:</h6>\n<ul>\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\n</strong></li>\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\n</strong></li>\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\n</ul>','Platelet Rich Plasma Treatments: How Are They Different from Prolotherapy?','','inherit','closed','closed','','414-autosave-v1','','','2021-01-28 20:15:18','2021-01-28 20:15:18','',414,'https://www.drfields.com/uncategorized/414-autosave-v1/',0,'revision','',0),(4462,8,'2021-01-28 20:16:18','2021-01-28 20:16:18','<h4>Platelet Rich Plasma Treatments</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hmq3WQRNSlk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg\" alt=\"Christopher - PRP Knee\"]<strong>Christopher - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"rCf1JO5aNNA\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg\" alt=\"Tony - PRP Shoulder &amp; Ankle\"]<strong>Tony - PRP Shoulder &amp; Ankle-<span class=\"newtag\">NEW!</span></strong></div>\r\n<div class=\"clearfix\"></div>\r\nHave you been told you need joint surgery? Then imagine for a moment that you can avoid joint surgery with a few simple injections. <strong>Platelet Rich Plasma Treatments</strong> (also known as PRP Injections, PRP Therapy, or PRP Prolotherapy) are treatments for acute or chronic musculoskeletal injury or pain that can help you avoid the pain, complications, and recovery time associated with joint surgery.\r\n<h4>Why Do Platelet Rich Plasma Treatments Work?</h4>\r\n[caption id=\"attachment_642\" align=\"alignright\" width=\"200\"]<img class=\"wp-image-642 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" /> <em>Platelet Rich Plasma Treatments can help to keep you running</em>[/caption]\r\n\r\nYour blood platelets contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Concentrated platelets contain large reservoirs of growth factors that can greatly and naturally accelerate the normal healing process. The use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair and regenerate weakened torn or damaged ligaments, ligaments, and joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Platelet Rich Plasma Treatments vs. Dextrose Prolotherapy Treatment</h4>\r\nThe main difference between PRP Prolotherapy treatment and <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> treatment is the solution being used. Dextrose Prolotherapy involves the injection of a proliferant (a mild irritant solution – dextrose, phenol, glycerin, etc.), which causes an inflammatory response that stimulates the healing process.\r\n\r\nBy contrast, the PRP treatment solution is derived from your own blood. A small amount of your own blood is drawn, and after filtering out the rest of the cells and plasma, a small amount of platelets remain. This highly concentrated amount of platelets — from 7 to 10 times that of normal blood — can be injected into the damaged areas and catalyze new soft-tissue growth.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair and regenerate weakened torn or damaged ligaments, ligaments, and joints.\r\n<h4>Which Treatment is Right For Me?</h4>\r\nMost organizations and the physicians associated with them teach Prolotherapy, and PRP agree that <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> should be tried first.\r\n<ul>\r\n 	<li><strong>It is less painful.</strong></li>\r\n 	<li><strong>Prolotherapy primes the area that is damaged, which PRP does not.\r\n</strong></li>\r\n 	<li><strong>It is less expensive.</strong></li>\r\n</ul>\r\nSince Prolotherapy can usually fix at least 80 - 85% of injuries, it is the first best choice. If healing is not attained with Prolotherapy, then PRP would be your next logical choice.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4>PRP Treatment: Frequently Asked Questions</h4>\r\n<h4><em><strong>What is PRP Treatment?</strong></em></h4>\r\nPRP, as used in Regenerative Orthopedics, is a non-surgical healing treatment for healing soft tissue. The solution is injected into the affected region to stimulate and enhance healing. PRP is your own blood concentrated so that more platelets (AKA growth factors) that are normally found in your blood are obtained.\r\n<h4><em>What does PRP mean?</em></h4>\r\nPRP stands for Platelet Rich Plasma. Plasma is the fluid portion of blood that contains cellular components such as red cells, white blood cells, and platelets. The Harvest Method that OrthoRegen and Peter A. Fields, MD, DC uses concentrates the platelets 7-10 times of what is normally found in the blood. Other systems concentrate them, but to a lesser extent.\r\n<h4><em>What conditions are treated with PRP?</em></h4>\r\nWeakened torn or damaged ligaments, tendons, muscle tears, menisci, or labrums are the most common soft tissue structures treated. PRP has also been effective in treating arthritis.\r\n\r\n<img class=\"wp-image-712 size-full alignleft\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" />\r\n<h3>What are some common diagnoses treated with PRP?</h3>\r\n<ul>\r\n 	<li>Knees: meniscus, ACL, MCL LCL, arthritis, knee cap instability</li>\r\n 	<li>Shoulder: Rotator Cuff Tears, labrum tears, tenositis</li>\r\n 	<li>Hip: labrum, tenositis, bursitis</li>\r\n 	<li>Low Back: Facet joints, arthritis, Sacro-Iliac dysfunction</li>\r\n 	<li>Ankle/Foot: Achilles dysfunction, tendonitis, arthritis, ankle sprains</li>\r\n 	<li>Wrist/Hand finger/joint tendinitis, ligament tears, arthritis, carpal tunnel</li>\r\n 	<li>Elbow: Tennis elbow (later epicondylitis, golfers elbow (medial epicondylitis</li>\r\n</ul>\r\n<h3>How is PRP treatment administered?</h3>\r\nThe patient’s blood is collected and then spun in a centrifuge specifically designed to concentrate platelets. Then, a local anesthetic is provided to the affected region. The PRP is then injected into the affected area.\r\n\r\n&nbsp;\r\n<h3>Is PRP curative?</h3>\r\nPRP actually heals the injured region. Unlike pharmaceutical medications, like ibuprofen or cortisone, which may just take the pain away but cannot heal the injury.\r\n<h3>How does PRP work to heal?</h3>\r\nGrowth Factors are released from large quantities of activated platelets at the site of injury. This leads to a reaction that initiates a healing cascade. Growth factors stimulate and promote healing of weakened, torn, or damaged soft tissue such as tendons, ligaments, meniscus, or labrum.\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>Is PRP painful?</h3>\r\nPatients typically tolerate the procedure well, although post-injection soreness is sometimes experienced.\r\n<h3>How many PRP treatments do you need?</h3>\r\nTwo to four treatments are needed depending on the degree of injury and how long the injury has been there.\r\n<h3>How far apart are PRP treatments spaced?</h3>\r\nTypically about every 6 weeks if indicated.<img class=\"alignright wp-image-644 size-full\" title=\"prp acl repair\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h3>What can you expect after getting PRP?</h3>\r\nFor the first 48 hours, swelling and mild discomfort are typical in the injected area. Therefore, all patients are provided with pain medicine after PRP. By day 3, these symptoms will begin to resolve substantially.\r\n<h3>Are there side effects/complications of PRP?</h3>\r\nMinimal side effects have been observed with treatment. Any stiffness or discomfort reported after PRP should resolve with time.\r\n<h3>How long does it take the PRP to “work”?</h3>\r\nMost patients notice some element of improvement by 2-6 weeks after PRP treatment. Symptom improvement is slow and subtle as days and weeks pass, with the usual reports of original pain being lessened over time. Increased endurance and strength are typically reported.\r\n<h6>Platelet Rich Plasma (PRP) Therapy in the News:</h6>\r\n<ul>\r\n 	<li><strong><a href=\"http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1\" target=\"_blank\" rel=\"noopener noreferrer\">New Idea: Healing Injuries, Arthritis with Blood (Good Morning America)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Body, Heal Thyself (CBS News)</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694\" target=\"_blank\" rel=\"noopener noreferrer\">Plasma Helps Athlete be Super (New York Daily News)</a></strong></li>\r\n</ul>','Platelet Rich Plasma Treatments: How Are They Different from Prolotherapy?','','inherit','closed','closed','','414-revision-v1','','','2021-01-28 20:16:18','2021-01-28 20:16:18','',414,'https://www.drfields.com/uncategorized/414-revision-v1/',0,'revision','',0),(4463,8,'2021-01-28 20:17:31','2021-01-28 20:17:31','<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What Are Prolotherapy Treatments?</h4>\r\nProlotherapy treatments are a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall. But the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells. And it strengthens lax or torn tendons and ligaments. Ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>.\r\n\r\nProlotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nProlotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more. And it is effective at treating many causes of chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis, and bursitis.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4 class=\"text-center\">Video: What is Prolotherapy Treatment?</h4>\r\n<div style=\"display: table; margin: 0 auto;\">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]</div>\r\n<a class=\"buttonlink\" href=\"/regenerative-techniques/prolotherapy-videos/\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2021-01-28 20:17:31','2021-01-28 20:17:31','',382,'https://www.drfields.com/uncategorized/382-revision-v1/',0,'revision','',0),(4464,8,'2021-01-28 20:23:00','2021-01-28 20:23:00','&nbsp;\n\n<strong> <a href=\"#1\">1) What does it treat</a></strong>\n<strong><a href=\"#2\">2) How many treatments will I need?</a></strong>\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\n<strong><a href=\"#4\">4) Is this the same thing as cortisone shots?</a></strong>\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\n\n<strong><a id=\"1\" name=\"1\"></a>1) What does it treat</strong>\nJoint Pain and Injury:\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td style=\"width: 125px;\">\n<ul>\n 	<li>knee</li>\n 	<li>ankle</li>\n 	<li>low back</li>\n 	<li>neck</li>\n 	<li>shoulder</li>\n 	<li>hip</li>\n</ul>\n</td>\n<td valign=\"top\" style=\"width: 125px;\">\n<ul>\n 	<li>foot</li>\n 	<li>wrist</li>\n 	<li>hand</li>\n 	<li>elbow</li>\n 	<li>sacro-iliac</li>\n 	<li>ribs</li>\n</ul>\n</td>\n</tr>\n</tbody>\n</table>\nOther Areas Where Prolotherapy Can Help:\n<ul>\n 	<li>Athletic injuries, new and old</li>\n 	<li>Arthritis pain</li>\n 	<li>Sciatica and Pinched Nerves</li>\n 	<li>Herniated and Degenerative Discs</li>\n 	<li>Whiplash injuries</li>\n 	<li>Tension and Migraine Headaches</li>\n 	<li>TMJ syndrome</li>\n 	<li>Weak, loose and unstable joints</li>\n 	<li>Fibromyalgia and Myofascial pain</li>\n 	<li>Muscle tightness, strain and spasm</li>\n</ul>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\n<strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How many treatments will I need?</strong>\n\nThe average person requires 6 treatment sessions given at 2 to 4 week intervals, but the number of treatments varies with each patient. Difficult (post surgical, long standing, etc) or other complicated cases may require 8, 10 or 12 treatments. Many patients feel relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\n<strong><a id=\"3\" name=\"3\"></a>3) Will I need to continue care after treatment?</strong>\n\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, an additional treatment maybe needed\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\n<strong><a id=\"4\" name=\"4\"></a>4) Is this the same thing as cortisone shots</strong><strong>?</strong>\n\nLong term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection; Prolotherapy is multiple injections to an area so as to induce healing in the biggest area possible.\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\n<strong><a id=\"5\" name=\"5\"></a>5) Is Prolotherapy safe?</strong>\n\nAs with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. On the other hand, Prolotherapy is an extremely safe procedure. The risks are far less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\n\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\n<strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong>\n\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\n\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive the treatments without pain killers and do just fine. </strong>\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\n<strong><a id=\"7\" name=\"7\"></a>7) Will my insurance cover this and what are the fees?</strong>\n\nFor information regarding insurence and fees <a href=\"https://www.drfields.com/about/common-questions/\">Click Here</a> to visit out common questions section.\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\n<strong><a id=\"8\" name=\"8\"></a>8) Is it advisable to drive or work after Prolotherapy?</strong>\n\nYou can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.<br />\n<br />\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n','Prolotherapy FAQ','','inherit','closed','closed','','395-autosave-v1','','','2021-01-28 20:23:00','2021-01-28 20:23:00','',395,'https://www.drfields.com/uncategorized/395-autosave-v1/',0,'revision','',0),(4465,8,'2021-01-28 20:23:07','2021-01-28 20:23:07','&nbsp;\r\n\r\n<strong> <a href=\"#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n\r\n<strong><a id=\"1\" name=\"1\"></a>1) What does it treat</strong>\r\nJoint Pain and Injury:\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 125px;\">\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td valign=\"top\" style=\"width: 125px;\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacro-iliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nOther Areas Where Prolotherapy Can Help:\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How many treatments will I need?</strong>\r\n\r\nThe average person requires 6 treatment sessions given at 2 to 4 week intervals, but the number of treatments varies with each patient. Difficult (post surgical, long standing, etc) or other complicated cases may require 8, 10 or 12 treatments. Many patients feel relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"3\" name=\"3\"></a>3) Will I need to continue care after treatment?</strong>\r\n\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, an additional treatment maybe needed\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"4\" name=\"4\"></a>4) Is this the same thing as cortisone shots</strong><strong>?</strong>\r\n\r\nLong term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection; Prolotherapy is multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"5\" name=\"5\"></a>5) Is Prolotherapy safe?</strong>\r\n\r\nAs with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. On the other hand, Prolotherapy is an extremely safe procedure. The risks are far less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong>\r\n\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive the treatments without pain killers and do just fine. </strong>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"7\" name=\"7\"></a>7) Will my insurance cover this and what are the fees?</strong>\r\n\r\nFor information regarding insurence and fees <a href=\"https://www.drfields.com/about/common-questions/\">Click Here</a> to visit out common questions section.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"8\" name=\"8\"></a>8) Is it advisable to drive or work after Prolotherapy?</strong>\r\n\r\nYou can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.<br />\r\n<br />\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n','Prolotherapy FAQ','','inherit','closed','closed','','395-revision-v1','','','2021-01-28 20:23:07','2021-01-28 20:23:07','',395,'https://www.drfields.com/uncategorized/395-revision-v1/',0,'revision','',0),(4466,8,'2021-01-28 20:23:35','2021-01-28 20:23:35','&nbsp;\r\n\r\n<strong>WHAT TO EXPECT POST TREATMENT</strong>\r\n\r\n<strong>Stiffness and Soreness:</strong> You can expect to be stiff and sore post treatment. This could last from 2 to 7 days. If it lasts longer it is best to call back and keep us informed on how you are doing.\r\n\r\n<strong>Driving and working</strong>: You can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.<strong>\r\n</strong>\r\n\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/prolotherapy-3.jpg\" alt=\"Prolotherapy 3\" width=\"200\" height=\"306\" class=\"alignright size-full wp-image-698\" /><strong>Pain Medication:</strong> Try Tylenol or Tylenol extra strength first. Apply moist heat to the area every 20-30 minutes too. If that does not work, which it usually does in 90% of the cases, you can call the office for a prescription pain medicine.\r\n\r\n<strong>Numbness: </strong> You may notice some numbness post treatment. This is not unusual as we have nerves all over our bodies and a needle may have irritated one. If this happens, your nerve will heal itself over time. Contact us if burning pain is noted, as medication is important for that symptom.\r\n\r\n<strong>Bruising: </strong> Bruising is quite common; do not be alarmed by it. Bruising is good for us, as it has growth factors in it.\r\n\r\n<strong>Exercising:  </strong>Exercising is encouraged, but please do not over do it. Pay attention to what your body tells you. If it hurts, take a break! Do not push yourself just because you feel better. You may pay for it later. Use heat to help calm pain or spasms.\r\n\r\n<strong>Remember that the use of anti-inflammatory medicines and ice are contraindicated.</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>','Post Treatment','','inherit','closed','closed','','408-revision-v1','','','2021-01-28 20:23:35','2021-01-28 20:23:35','',408,'https://www.drfields.com/uncategorized/408-revision-v1/',0,'revision','',0),(4467,8,'2021-01-28 20:31:24','2021-01-28 20:31:24','<h2 class=\"text-center\">Contact Dr. Fields</h2>\r\n<p style=\"text-align: center;\"><strong>To find out if you are a candidate for Stem Cell, PRP or Prolotherapy, call Dr. Fields office at <a href=\"tel:310-453-1234\">310-453-1234</a>, or fill out the Consultation form here.</strong></p>\r\n<div style=\"margin: 0 auto; max-width: 275px;\">\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a></div>\r\n<div class=\"contact-frm\">[gravityform id=\"1\" title=\"false\" description=\"false\"]</div>','Contact','','inherit','closed','closed','','29-revision-v1','','','2021-01-28 20:31:24','2021-01-28 20:31:24','',29,'https://www.drfields.com/uncategorized/29-revision-v1/',0,'revision','',0),(4468,9,'2021-01-29 23:06:06','2021-01-29 23:06:06','<h1 style=\"text-align: center;\">                Cortisone - Is it Really Good for You?</h1>\n[caption id=\"attachment_1084\" align=\"alignright\" width=\"380\"]<img class=\"wp-image-1084 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/older-man-pain.jpg\" alt=\"Cortisone Injections\" width=\"380\" height=\"571\" /> <em><strong>Cortisone-Is It Really Good for You?</strong></em>[/caption]\n\nMany people get cortisone injections to help with knee pain, hip pain, or pain in another joint. If it helps with pain, then it must be right for you. But is cortisone really good for you? Not really. Sure, cortisone may help to alleviate pain temporarily. But what is the trade-off?\n<h3>Cortisone Weakens the Ligament-bone Junction</h3>\nIf the goal is to weaken your ligament-bone junction eventually, then cortisone just may do that. And of course, that is not what anyone wants. But studies \"suggest that negative structural outcomes including accelerated osteoarthritis progression, subchondral insufficiency fracture, complications of pre-existing osteonecrosis, and rapid joint destruction (including bone loss) may be observed in patients who received intra-articular corticosteroid injections.\"1  Cortisone and other steroid injections, unfortunately, have detrimental effects on articular cartilage. And eventually, the result is a weakened joint and the development of a degenerated joint.\n<h3>How Do Cortisone Injections Adversely Affect the Joint?</h3>\nCortisone injections inhibit the synthesis of proteins, collagen, and proteoglycans in articular cartilage, by inhibiting chondrocyte production, the cells that comprise and produce the articular cartilage. The net catabolic (breakdown) effect of steroids is inhibition of fibroblast production of collagen, ground substance, and new blood vessel formation. The result is weakened synovial joints, supporting structures, articular cartilage, ligaments, and tendons. <em><strong>This weakness increases the pain...and the increased pain leads to more steroid injections.</strong></em>\n<h3>Cortisone Leads to Weakness of the Fibro-osseous Junction of the Joint</h3>\nSteroids also limit calcium absorption by the gastrointestinal tract, inactivate <a href=\"/Articles/Health-News/Vitamin-D-Its-Not-Just-For-Bones-Anymore\">vitamin D</a> and increase the urinary excretion of calcium. Bone also shows a decrease in calcium uptake with cortisone use, ultimately leading to weakness at the fibro-osseous junction. Corticosteroids also inhibit the release of growth hormone, which further decreases soft tissue and bone repair. Ultimately, corticosteroids lead to a decrease in bone, ligament, and tendon strength.\n\nAlthough anti-inflammatory medications and steroid injections reduce pain, they do so at the cost of destroying tissue. In one study, some joints were injected only one time. Even after one steroid injection, cartilage remained biochemically and metabolically impaired. Other studies have confirmed similar harmful effects of steroids on joint and cartilage tissue. A cortisone shot can permanently damage joints.\n<h3>If Cortisone Weakens My Joint, Then What Other Option Do I Have?</h3>\nCortisone does degenerate joints. But these injections are not your only option. Fortunately, there are other injections that are regenerative in nature. Regenerative Orthopedic options, like Stem Cell Therapy, PRP, and Prolotherapy, actually encourage repair and regeneration of the joint. Regenerative injection alternative, like <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy, </a>  have the opposite effect of cortisone. They actually strengthen the joints, ligaments, and tendons.\n<h3>What If I Need to Get Quick Relief?</h3>\nSome professional athletes and weekend warriors want quick relief. But the problem with choosing cortisone for quick relief, is that even though the athlete may get pain relief at the moment, it may be at the expense of a permanent inability to participate in athletics. Athletes often receive cortisone shots in order to play. They return to the playing field with an injury after getting a steroid injection to relieve the pain. Unfortunately, they cannot feel the pain anymore...so they play as if there was no injury. We know (see above) that the injury could not possibly be healed because of the tremendous anti-healing properties of cortisone. Thus, the athlete can further injure the joint while playing on an injury, plus can add to the problem by weakening the joint from the cortisone itself. The result of this choice is worsening of the already bad injury.\n\nBottom line- get a “quick fix” with steroid injections and set yourself up for further damage. Or fix your problem for good with <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. The choice is yours.\n\nHave questions? <a href=\"https://www.drfields.com/contact/\">Give us a call.</a> We\'d be happy to talk about your options.\n<h3>References:</h3>\n1Guermazi, Ali, et al. \"Intra-articular corticosteroid injections for the treatment of hip and knee osteoarthritis-related pain: considerations and controversies with a focus on imaging—Radiology Scientific Expert Panel.\" <i>Radiology</i> 297.3 (2020): 503-512.\n\n2Jurgensmeier, Kevin, et al. \"Intra-articular Injections of the Hip and Knee With Triamcinolone vs Ketorolac: A Randomized Controlled Trial.\" <i>The Journal of Arthroplasty</i> (2020).','Cortisone - Is it Really Good for You?','','inherit','closed','closed','','1459-autosave-v1','','','2021-01-29 23:06:06','2021-01-29 23:06:06','',1459,'https://www.drfields.com/uncategorized/1459-autosave-v1/',0,'revision','',0),(4469,9,'2021-01-29 23:03:56','2021-01-29 23:03:56','<h3>Cortisone - Is it Really Good for You?</h3>\r\n[caption id=\"attachment_1084\" align=\"alignleft\" width=\"200\"]<img class=\"wp-image-1084 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/older-man-pain.jpg\" alt=\"Cortisone Injections\" width=\"200\" height=\"300\" /> Cortisone-Is It Really Good for You?[/caption]\r\n\r\nMany people get cortisone injections to help with knee pain, hip pain, or pain in another joint. If it helps with pain, then it must be right for you. But is cortisone really good for you? Not really. Sure, cortisone may help to alleviate pain temporarily. But what is the trade-off?\r\n<h3>Cortisone Weakens the Ligament-bone Junction</h3>\r\nIf the goal is to weaken your ligament-bone junction eventually, then cortisone just may do that. And of course, that is not what anyone wants. But studies \"suggest that negative structural outcomes including accelerated osteoarthritis progression, subchondral insufficiency fracture, complications of pre-existing osteonecrosis, and rapid joint destruction (including bone loss) may be observed in patients who received intra-articular corticosteroid injections.\"1  Cortisone and other steroid injections unfortunately have detrimental effects on articular cartilage. And eventually, the result is a weakened joint and the development of a degenerated joint.\r\n<h3>How Do Cortisone Injections Adversely Affect the Joint?</h3>\r\nCortisone injections inhibit the synthesis of proteins, collagen, and proteoglycans in articular cartilage, by inhibiting chondrocyte production, the cells that comprise and produce the articular cartilage. The net catabolic (breakdown) effect of steroids is inhibition of fibroblast production of collagen, ground substance, and new blood vessel formation. The result is weakened synovial joints, supporting structures, articular cartilage, ligaments, and tendons. <em><strong>This weakness increases the pain...and the increased pain leads to more steroid injections.</strong></em>\r\n<h3>Cortisone Leads to Weakness of the Fibro-osseous Junction of the Joint</h3>\r\nSteroids also limit calcium absorption by the gastrointestinal tract, inactivate <a href=\"/Articles/Health-News/Vitamin-D-Its-Not-Just-For-Bones-Anymore\">vitamin D</a> and increase the urinary excretion of calcium. Bone also shows a decrease in calcium uptake with cortisone use, ultimately leading to weakness at the fibro-osseous junction. Corticosteroids also inhibit the release of growth hormone, which further decreases soft tissue and bone repair. Ultimately, corticosteroids lead to a decrease in bone, ligament, and tendon strength.\r\n\r\nAlthough anti-inflammatory medications and steroid injections reduce pain, they do so at the cost of destroying tissue. In one study, some joints were injected only one time. Even after one steroid injection, cartilage remained biochemically and metabolically impaired. Other studies have confirmed similar harmful effects of steroids on joint and cartilage tissue. A cortisone shot can permanently damage joints.\r\n<h3>If Cortisone Weakens My Joint, Then What Other Option Do I Have?</h3>\r\nCortisone does degenerate joints. But these injections are not your only option. Fortunately, there are other injections that are regenerative in nature. Regenerative Orthopedic options, like Stem Cell Therapy, PRP, and Prolotherapy, actually encourage repair and regeneration of the joint. Regenerative injection alternative, like <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy, </a>  have the opposite effect of cortisone. They actually strengthen the joints, ligaments, and tendons.\r\n<h3>What If I Need to Get Quick Relief?</h3>\r\nSome professional athletes and weekend warriors want quick relief. But the problem with choosing cortisone for quick relief, is that even though the athlete may get pain relief at the moment, it may be at the expense of a permanent inability to participate in athletics. Athletes often receive cortisone shots in order to play. They return to the playing field with an injury after getting a steroid injection to relieve the pain. Unfortunately, they cannot feel the pain anymore...so they play as if there was no injury. We know (see above) that the injury could not possibly be healed because of the tremendous anti-healing properties of cortisone. Thus, the athlete can further injure the joint while playing on an injury, plus can add to the problem by weakening the joint from the cortisone itself. The result of this choice is worsening of the already bad injury.\r\n\r\nBottom line- get a “quick fix” with steroid injections and set yourself up for further damage. Or fix your problem for good with <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. The choice is yours.\r\n\r\nHave questions? <a href=\"https://www.drfields.com/contact/\">Give us a call.</a> We\'d be happy to talk about your options.\r\n<h3>References:</h3>\r\n1Guermazi, Ali, et al. \"Intra-articular corticosteroid injections for the treatment of hip and knee osteoarthritis-related pain: considerations and controversies with a focus on imaging—Radiology Scientific Expert Panel.\" <i>Radiology</i> 297.3 (2020): 503-512.\r\n\r\n2Jurgensmeier, Kevin, et al. \"Intra-articular Injections of the Hip and Knee With Triamcinolone vs Ketorolac: A Randomized Controlled Trial.\" <i>The Journal of Arthroplasty</i> (2020).','Cortisone - Is it Really Good for You?','','inherit','closed','closed','','1459-revision-v1','','','2021-01-29 23:03:56','2021-01-29 23:03:56','',1459,'https://www.drfields.com/uncategorized/1459-revision-v1/',0,'revision','',0),(4470,9,'2021-01-29 23:06:42','2021-01-29 23:06:42','<h1 style=\"text-align: center;\">Cortisone - Is it Really Good for You?</h1>\r\n[caption id=\"attachment_1084\" align=\"alignright\" width=\"380\"]<img class=\"wp-image-1084 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/older-man-pain.jpg\" alt=\"Cortisone Injections\" width=\"380\" height=\"571\" /> <em><strong>Cortisone-Is It Really Good for You?</strong></em>[/caption]\r\n\r\nMany people get cortisone injections to help with knee pain, hip pain, or pain in another joint. If it helps with pain, then it must be right for you. <em>But is cortisone really good for you?</em> Not really. Sure, cortisone may help to alleviate pain temporarily. But what is the trade-off?\r\n<h3>Cortisone Weakens the Ligament-bone Junction</h3>\r\nIf the goal is to weaken your ligament-bone junction eventually, then cortisone just may do that. And of course, that is not what anyone wants. But studies \"suggest that negative structural outcomes including accelerated osteoarthritis progression, subchondral insufficiency fracture, complications of pre-existing osteonecrosis, and rapid joint destruction (including bone loss) may be observed in patients who received intra-articular corticosteroid injections.\"1  Cortisone and other steroid injections, unfortunately, have detrimental effects on articular cartilage. And eventually, the result is a weakened joint and the development of a degenerated joint.\r\n<h3>How Do Cortisone Injections Adversely Affect the Joint?</h3>\r\nCortisone injections inhibit the synthesis of proteins, collagen, and proteoglycans in articular cartilage, by inhibiting chondrocyte production, the cells that comprise and produce the articular cartilage. The net catabolic (breakdown) effect of steroids is inhibition of fibroblast production of collagen, ground substance, and new blood vessel formation. The result is weakened synovial joints, supporting structures, articular cartilage, ligaments, and tendons. <em><strong>This weakness increases the pain...and the increased pain leads to more steroid injections.</strong></em>\r\n<h3>Cortisone Leads to Weakness of the Fibro-osseous Junction of the Joint</h3>\r\nSteroids also limit calcium absorption by the gastrointestinal tract, inactivate <a href=\"/Articles/Health-News/Vitamin-D-Its-Not-Just-For-Bones-Anymore\">vitamin D</a> and increase the urinary excretion of calcium. Bone also shows a decrease in calcium uptake with cortisone use, ultimately leading to weakness at the fibro-osseous junction. Corticosteroids also inhibit the release of growth hormone, which further decreases soft tissue and bone repair. Ultimately, corticosteroids lead to a decrease in bone, ligament, and tendon strength.\r\n\r\nAlthough anti-inflammatory medications and steroid injections reduce pain, they do so at the cost of destroying tissue. In one study, some joints were injected only one time. Even after one steroid injection, cartilage remained biochemically and metabolically impaired. Other studies have confirmed similar harmful effects of steroids on joint and cartilage tissue. A cortisone shot can permanently damage joints.\r\n<h3>If Cortisone Weakens My Joint, Then What Other Option Do I Have?</h3>\r\nCortisone does degenerate joints. But these injections are not your only option. Fortunately, there are other injections that are regenerative in nature. Regenerative Orthopedic options, like Stem Cell Therapy, PRP, and Prolotherapy, actually encourage repair and regeneration of the joint. Regenerative injection alternative, like <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy, </a>  have the opposite effect of cortisone. They actually strengthen the joints, ligaments, and tendons.\r\n<h3>What If I Need to Get Quick Relief?</h3>\r\nSome professional athletes and weekend warriors want quick relief. But the problem with choosing cortisone for quick relief, is that even though the athlete may get pain relief at the moment, it may be at the expense of a permanent inability to participate in athletics. Athletes often receive cortisone shots in order to play. They return to the playing field with an injury after getting a steroid injection to relieve the pain. Unfortunately, they cannot feel the pain anymore...so they play as if there was no injury. We know (see above) that the injury could not possibly be healed because of the tremendous anti-healing properties of cortisone. Thus, the athlete can further injure the joint while playing on an injury, plus can add to the problem by weakening the joint from the cortisone itself. The result of this choice is worsening of the already bad injury.\r\n\r\nBottom line- get a “quick fix” with steroid injections and set yourself up for further damage. Or fix your problem for good with <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>. The choice is yours.\r\n\r\nHave questions? <a href=\"https://www.drfields.com/contact/\">Give us a call.</a> We\'d be happy to talk about your options.\r\n<h3>References:</h3>\r\n1Guermazi, Ali, et al. \"Intra-articular corticosteroid injections for the treatment of hip and knee osteoarthritis-related pain: considerations and controversies with a focus on imaging—Radiology Scientific Expert Panel.\" <i>Radiology</i> 297.3 (2020): 503-512.\r\n\r\n2Jurgensmeier, Kevin, et al. \"Intra-articular Injections of the Hip and Knee With Triamcinolone vs Ketorolac: A Randomized Controlled Trial.\" <i>The Journal of Arthroplasty</i> (2020).','Cortisone - Is it Really Good for You?','','inherit','closed','closed','','1459-revision-v1','','','2021-01-29 23:06:42','2021-01-29 23:06:42','',1459,'https://www.drfields.com/uncategorized/1459-revision-v1/',0,'revision','',0),(4472,9,'2021-02-03 01:54:59','2021-02-03 01:54:59','<h3>Injured While Exercising?</h3>\r\n<strong><em>Many of us are love exercising.</em></strong> And that\'s good because exercise is so much better for us than inactivity. But it\'s always important to stay within our range of abilities when exercising. Why? Because going from little or no exercise to a vigorous regimen can set you up for injuries.\r\n\r\nOf course, injuries can happen to people from all levels of ability. Yes, even professional athletes and avid exercisers get injured. Exercise injuries can occur suddenly, like during a fall or after lifting weights that are too heavy. They can also be more subtle and transpire over weeks or months. An example of a more subtle injury would be an injury that occurs from using poor form over and over.\r\n\r\nThe risk of injury is genuine from overtraining, poor abdominal support, too lengthy runs, unfamiliarity with gym equipment or exercises, and the use of poor technique or posture. And typical injuries for those who are not used to working out include back pain, tendinitis, and pulled muscles.\r\n<h4>Tips to Prevent Exercise Injuries Before They Occur</h4>\r\nLet\'s review some tips that can be followed to try to avoid exercise injuries before they happen. When exercising, it\'s better to begin by staying closer to the intensity of activity we are accustomed to. For example, don\'t go immediately from low intensity to high intensity. Going from zero to 60 in a workout regimen can set you up for exercise injuries.\r\n\r\nSecondly, pick activities within your fitness and balance levels and those your body can handle. If the goal is to improve general health and not be sedentary, it\'s wise to progress slowly while listening to your body. There is no need to begin with throwing around heavy weights and doing intense workouts. Keep in mind that after periods of inactivity, running, and even vigorous walking can be damaging or cause an exercise injury. Start slowly and work up to longer times and distances.\r\n<h4>But I Was An Athlete in High School, So I Can Exercise Harder!</h4>\r\nSure, you may have been a distance runner in high school. But that doesn’t mean you can jump right into that level of running without proper training. To prevent exercise injuries, start by easing your way into new exercise routines and gradually build up to heavier weights, faster or longer bike rides, and a more vigorous walking or jogging routine.\r\n<h4>Be Aware of Putting Too Much Strain On Your Joints and Overuse Injuries</h4>\r\nPeople make a common mistake by working through the pain felt while exercising, thinking it will eventually go away. The repeated injury from the use of poor form, puts too much strain on the joints. These exercise injuries are referred to as overuse injuries and are typical injuries seen by physicians. Tendonitis is an example of an overuse injury from repetitive activity that aggravates the joint. <strong><em>I</em><em>t’s normal to experience muscle soreness after working out, but when that pain lasts more than a few days, that exercise injury has not healed, and it’s time to talk to your doctor.</em></strong>\r\n\r\nSeeking the advice of a physician before initiating an exercise program is always recommended. Use a trainer to educate and supervise for proper form, use of equipment, and variety and frequency of exercise. Even those who are accustomed to exercise may also become injured with overuse injuries. So always be aware of the repeated stress various exercises can place on joints, and use proper body mechanics and posturing.\r\n<h4>What Happens When Injuries Are Not Addressed?</h4>\r\nUnaddressed exercise injuries, overuse injuries, and cumulative traumas can damage the joint’s ligaments, tendons, and cartilage. Whether you are riding the waves, running on the beach, pounding the pavement, or climbing some new height, the repetitive low-grade impact can be enough to damage the soft tissues.\r\n\r\nWhen these injuries are not addressed and the soft tissue is not repaired, degeneration of the joint can occur. Unhealed soft tissue makes the joint unstable, which allows for extra and abnormal motion in the joint. These unhealed sports injuries can frequently lead to symptomatic arthritis in later years due to the injured ligaments that cause instability and abnormal joint motion.\r\n\r\nIn an attempt to stabilize the joint, painful muscle spasms may occur at first. Over time, the body will deposit calcium along the lines of stress, producing bone spurs. Bone spurs are typically a sign that the ligaments were no longer able to stabilize the joint. And the body has sent in reinforcement in the form of additional bone. Arthritis has taken place!\r\n<h4>Treating Exercise and Sports Injuries with Regenerative Orthopedics</h4>\r\nStandard treatments for musculoskeletal injuries resulting in joint pain usually involve symptom management utilizing NSAIDs, cortisone injections, physical therapy, and chiropractic to provide pain relief. These modalities can often provide relief for sports injuries, but for those who have already exhausted these methods and continue to experience pain, Regenerative Orthopedics should be sought. If cartilage damage has taken place, Stem Cell Therapy may be part of the treatment plan.\r\n\r\nRegenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, are great treatment options that are very effective for injuries that arise from overzealous exercising. Plus, these non-surgical treatments repair those injuries that occur during athletic events, regenerating the damaged ligaments and soft tissue and allowing the exerciser and athlete to continue with their desired activity.\r\n\r\n<strong>If you’ve injured yourself while trying a new exercise or sport or are a regular exerciser or athlete with a sports injury, Regenerative Orthopedics can get you back to the activity you love.</strong>\r\n\r\n<a href=\"https://www.drfields.com/testimonials/video-testimonials/\">Click here to watch videos from patients who have received Regenerative Orthopedics.</a>','Injured While Exercising?','','inherit','closed','closed','','1414-revision-v1','','','2021-02-03 01:54:59','2021-02-03 01:54:59','',1414,'https://www.drfields.com/uncategorized/1414-revision-v1/',0,'revision','',0),(4473,9,'2021-02-03 01:56:40','2021-02-03 01:56:40','Exercising At Home (1) Copy','Exercising At Home (1) Copy','Exercising At Home (1) Copy','inherit','open','closed','','exercising-at-home-1-copy','','','2021-02-03 01:56:40','2021-02-03 01:56:40','',1414,'https://www.drfields.com/wp-content/uploads/2019/06/Exercising-at-home-1-copy.png',0,'attachment','image/png',0),(4474,9,'2021-02-03 02:08:45','2021-02-03 02:08:45','[caption id=\"attachment_4473\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4473\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Exercising-at-home-1-copy-400x500.png\" alt=\"Exercising At Home (1) Copy\" width=\"400\" height=\"500\" /> <em><strong>                       Injured While Exercising?</strong></em>[/caption]\r\n<h3>Injured While Exercising?</h3>\r\n<strong><em>Many of us are love exercising.</em></strong> And that\'s good because exercise is so much better for us than inactivity. But it\'s always important to stay within our range of abilities when exercising. Why? Because going from little or no exercise to a vigorous regimen can set you up for injuries.\r\n\r\nOf course, injuries can happen to people from all levels of ability. Yes, even professional athletes and avid exercisers get injured. Exercise injuries can occur suddenly, like during a fall or after lifting weights that are too heavy. They can also be more subtle and transpire over weeks or months. An example of a more subtle injury would be an injury that occurs from using poor form repeatedly.\r\n\r\nThe risk of injury is genuine from overtraining, poor abdominal support, too lengthy runs, unfamiliarity with gym equipment or exercises, and the use of poor technique or posture. And typical injuries for those who are not used to working out include back pain, tendinitis, and pulled muscles.\r\n<h4>Tips to Prevent Exercise Injuries Before They Occur</h4>\r\nLet\'s review some tips that can be followed to try to avoid exercise injuries before they happen. When exercising, it\'s better to begin by staying closer to the intensity of activity we are accustomed to. For example, don\'t go immediately from low intensity to high intensity. Going from zero to 60 in a workout regimen can set you up for exercise injuries.\r\n\r\nSecondly, pick activities within your fitness and balance levels and those your body can handle. If the goal is to improve general health and not be sedentary, it\'s wise to progress slowly while listening to your body. There is no need to begin with throwing around heavy weights and doing intense workouts. Keep in mind that after periods of inactivity, running, and even vigorous walking can be damaging or cause an exercise injury. Start slowly and work up to longer times and distances.\r\n<h4>But I Was An Athlete in High School, So I Can Exercise Harder!</h4>\r\nSure, you may have been a distance runner in high school. But that doesn’t mean you can jump right into that level of running without proper training. To prevent exercise injuries, start by easing your way into new exercise routines and gradually build up to heavier weights, faster or longer bike rides, and a more vigorous walking or jogging routine.\r\n<h4>Be Aware of Putting Too Much Strain On Your Joints and Overuse Injuries</h4>\r\nPeople make a common mistake by working through the pain felt while exercising, thinking it will eventually go away. The repeated injury from the use of poor form puts too much strain on the joints. These exercise injuries are referred to as overuse injuries and are typical injuries seen by physicians. Tendonitis is an example of an overuse injury from repetitive activity that aggravates the joint. <strong><em>I</em><em>t’s normal to experience muscle soreness after working out, but when that pain lasts more than a few days, that exercise injury has not healed, and it’s time to talk to your doctor.</em></strong>\r\n\r\nSeeking the advice of a physician before initiating an exercise program is always recommended. Use a trainer to educate and supervise for proper form, use of equipment, and variety and frequency of exercise. Even those who are accustomed to exercise may also become injured with overuse injuries. So always be aware of the repeated stress various exercises can place on joints, and use proper body mechanics and posturing.\r\n<h4>What Happens When Injuries Are Not Addressed?</h4>\r\nUnaddressed exercise injuries, overuse injuries, and cumulative traumas can damage the joint’s ligaments, tendons, and cartilage. Whether you are riding the waves, running on the beach, pounding the pavement, or climbing some new height, the repetitive low-grade impact can be enough to damage the soft tissues.\r\n\r\nWhen these injuries are not addressed and the soft tissue is not repaired, degeneration of the joint can occur. Unhealed soft tissue makes the joint unstable, which allows for extra and abnormal motion in the joint. These unhealed sports injuries can frequently lead to symptomatic arthritis in later years due to the injured ligaments that cause instability and abnormal joint motion.\r\n\r\nIn an attempt to stabilize the joint, painful muscle spasms may occur at first. Over time, the body will deposit calcium along the lines of stress, producing bone spurs. Bone spurs are typically a sign that the ligaments were no longer able to stabilize the joint. And the body has sent in reinforcement in the form of additional bone. Arthritis has taken place!\r\n<h4>Treating Exercise and Sports Injuries with Regenerative Orthopedics</h4>\r\nStandard treatments for musculoskeletal injuries resulting in joint pain usually involve symptom management utilizing NSAIDs, cortisone injections, physical therapy, and chiropractic to provide pain relief. These modalities can often provide relief for sports injuries, but for those who have already exhausted these methods and continue to experience pain, Regenerative Orthopedics should be sought. If cartilage damage has taken place, Stem Cell Therapy may be part of the treatment plan.\r\n\r\nRegenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, are great treatment options that are very effective for injuries that arise from overzealous exercising. Plus, these non-surgical treatments repair those injuries that occur during athletic events, regenerating the damaged ligaments and soft tissue and allowing the exerciser and athlete to continue with their desired activity.\r\n\r\n<strong>If you’ve injured yourself while trying a new exercise or sport or are a regular exerciser or athlete with a sports injury, Regenerative Orthopedics can get you back to the activity you love.</strong>\r\n\r\nFor more information about sports injuries and older athletes, read our article on <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/\">\"How Arthritis Affects Older Athletes.\" </a>\r\n\r\n<a href=\"https://www.drfields.com/testimonials/video-testimonials/\">Click here to watch videos from patients who have received Regenerative Orthopedics.</a>','Injured While Exercising?','','inherit','closed','closed','','1414-revision-v1','','','2021-02-03 02:08:45','2021-02-03 02:08:45','',1414,'https://www.drfields.com/uncategorized/1414-revision-v1/',0,'revision','',0),(4475,9,'2021-02-03 02:10:53','2021-02-03 02:10:53','[caption id=\"attachment_4473\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4473\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Exercising-at-home-1-copy-400x500.png\" alt=\"Exercising At Home (1) Copy\" width=\"400\" height=\"500\" /> <em><strong>                       Injured While Exercising?</strong></em>[/caption]\r\n<h3>Injured While Exercising?</h3>\r\n<strong><em>Many of us are love exercising.</em></strong> And that\'s good because exercise is so much better for us than inactivity. But it\'s always important to stay within our range of abilities when exercising. Why? Because going from little or no exercise to a vigorous regimen can set you up for exercise injuries.\r\n\r\nOf course, injuries can happen to people from all levels of ability. Yes, even professional athletes and avid exercisers get injured. Exercise injuries can occur suddenly, like during a fall or after lifting weights that are too heavy. They can also be more subtle and transpire over weeks or months. An example of a more subtle injury would be an injury that occurs from using poor form repeatedly.\r\n\r\nThe risk of injury is genuine from overtraining, poor abdominal support, too lengthy runs, unfamiliarity with gym equipment or exercises, and the use of poor technique or posture. And typical injuries for those who are not used to working out include back pain, tendinitis, and pulled muscles.\r\n<h4>Tips to Prevent Exercise Injuries Before They Occur</h4>\r\nLet\'s review some tips that can be followed to try to avoid exercise injuries before they happen. When exercising, it\'s better to begin by staying closer to the intensity of activity we are accustomed to. For example, don\'t go immediately from low intensity to high intensity. Going from zero to 60 in a workout regimen can set you up for exercise injuries.\r\n\r\nSecondly, pick activities within your fitness and balance levels and those your body can handle. If the goal is to improve general health and not be sedentary, it\'s wise to progress slowly while listening to your body. There is no need to begin with throwing around heavy weights and doing intense workouts. Keep in mind that after periods of inactivity, running, and even vigorous walking can be damaging or cause an exercise injury. Start slowly and work up to longer times and distances.\r\n<h4>But I Was An Athlete in High School, So I Can Exercise Harder!</h4>\r\nSure, you may have been a distance runner in high school. But that doesn’t mean you can jump right into that level of running without proper training. To prevent exercise injuries, start by easing your way into new exercise routines and gradually build up to heavier weights, faster or longer bike rides, and a more vigorous walking or jogging routine.\r\n<h4>Be Aware of Putting Too Much Strain On Your Joints and Overuse Injuries</h4>\r\nPeople make a common mistake by working through the pain felt while exercising, thinking it will eventually go away. The repeated injury from the use of poor form puts too much strain on the joints. These exercise injuries are referred to as overuse injuries and are typical injuries seen by physicians. Tendonitis is an example of an overuse injury from repetitive activity that aggravates the joint. <strong><em>I</em><em>t’s normal to experience muscle soreness after working out, but when that pain lasts more than a few days, that exercise injury has not healed, and it’s time to talk to your doctor.</em></strong>\r\n\r\nSeeking the advice of a physician before initiating an exercise program is always recommended. Use a trainer to educate and supervise for proper form, use of equipment, and variety and frequency of exercise. Even those who are accustomed to exercise may also become injured with overuse injuries. So always be aware of the repeated stress various exercises can place on joints, and use proper body mechanics and posturing.\r\n<h4>What Happens When Injuries Are Not Addressed?</h4>\r\nUnaddressed exercise injuries, overuse injuries, and cumulative traumas can damage the joint’s ligaments, tendons, and cartilage. Whether you are riding the waves, running on the beach, pounding the pavement, or climbing some new height, the repetitive low-grade impact can be enough to damage the soft tissues.\r\n\r\nWhen these injuries are not addressed and the soft tissue is not repaired, degeneration of the joint can occur. Unhealed soft tissue makes the joint unstable, which allows for extra and abnormal motion in the joint. These unhealed sports injuries can frequently lead to symptomatic arthritis in later years due to the injured ligaments that cause instability and abnormal joint motion.\r\n\r\nIn an attempt to stabilize the joint, painful muscle spasms may occur at first. Over time, the body will deposit calcium along the lines of stress, producing bone spurs. Bone spurs are typically a sign that the ligaments were no longer able to stabilize the joint. And the body has sent in reinforcement in the form of additional bone. Arthritis has taken place!\r\n<h4>Treating Exercise and Sports Injuries with Regenerative Orthopedics</h4>\r\nStandard treatments for musculoskeletal injuries resulting in joint pain usually involve symptom management utilizing NSAIDs, cortisone injections, physical therapy, and chiropractic to provide pain relief. These modalities can often provide relief for sports injuries, but for those who have already exhausted these methods and continue to experience pain, Regenerative Orthopedics should be sought. If cartilage damage has taken place, Stem Cell Therapy may be part of the treatment plan.\r\n\r\nRegenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, are great treatment options that are very effective for injuries that arise from overzealous exercising. Plus, these non-surgical treatments repair those injuries that occur during athletic events, regenerating the damaged ligaments and soft tissue and allowing the exerciser and athlete to continue with their desired activity.\r\n\r\n<strong>If you’ve injured yourself while trying a new exercise or sport or are a regular exerciser or athlete with a sports injury, Regenerative Orthopedics can get you back to the activity you love.</strong>\r\n\r\nFor more information about sports injuries and older athletes, read our article on <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/\">\"How Arthritis Affects Older Athletes.\" </a>\r\n\r\n<a href=\"https://www.drfields.com/testimonials/video-testimonials/\">Click here to watch videos from patients who have received Regenerative Orthopedics.</a>','Injured While Exercising?','','inherit','closed','closed','','1414-revision-v1','','','2021-02-03 02:10:53','2021-02-03 02:10:53','',1414,'https://www.drfields.com/uncategorized/1414-revision-v1/',0,'revision','',0),(4476,9,'2021-02-03 02:12:37','2021-02-03 02:12:37','[caption id=\"attachment_4473\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4473\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Exercising-at-home-1-copy-400x500.png\" alt=\"Exercising At Home (1) Copy\" width=\"400\" height=\"500\" /> <em><strong>                       Injured While Exercising?</strong></em>[/caption]\r\n<h3>Injured While Exercising?</h3>\r\n<strong><em>Many of us are love exercising.</em></strong> And that\'s good because exercise is so much better for us than inactivity. But it\'s always important to stay within our range of abilities when exercising. Why? Because going from little or no exercise to a vigorous regimen can set you up for exercise injuries.\r\n\r\nOf course, injuries can happen to people from all levels of ability. Yes, even professional athletes and avid exercisers get injured. Exercise injuries can occur suddenly, like during a fall or after lifting weights that are too heavy. They can also be more subtle and transpire over weeks or months. An example of a more subtle injury would be an injury that occurs from using poor form repeatedly.\r\n\r\nThe risk of injury is genuine from overtraining, poor abdominal support, too lengthy runs, unfamiliarity with gym equipment or exercises, and the use of poor technique or posture. And typical injuries for those who are not used to working out include back pain, tendinitis, and pulled muscles.\r\n<h4>Tips to Prevent Exercise Injuries Before They Occur</h4>\r\nLet\'s review some tips that can be followed to try to avoid exercise injuries before they happen. When exercising, it\'s better to begin by staying closer to the intensity of activity we are accustomed to. For example, don\'t go immediately from low intensity to high intensity. Going from zero to 60 in a workout regimen can set you up for exercise injuries.\r\n\r\nSecondly, pick activities within your fitness and balance levels and those your body can handle. If the goal is to improve general health and not be sedentary, it\'s wise to progress slowly while listening to your body. There is no need to begin with throwing around heavy weights and doing intense workouts. Keep in mind that after periods of inactivity, running, and even vigorous walking can be damaging or cause an exercise injury. Start slowly and work up to longer times and distances.\r\n<h4>But I Was An Athlete in High School, So I Can Exercise Harder!</h4>\r\nSure, you may have been a distance runner in high school. But that doesn’t mean you can jump right into that level of running without proper training. To prevent exercise injuries, start by easing your way into new exercise routines and gradually build up to heavier weights, faster or longer bike rides, and a more vigorous walking or jogging routine.\r\n<h4>Be Aware of Putting Too Much Strain On Your Joints So You Can Prevent Overuse Exercise Injuries</h4>\r\nPeople make a common mistake by working through the pain felt while exercising, thinking it will eventually go away. The repeated injury from the use of poor form puts too much strain on the joints. These exercise injuries are referred to as overuse injuries and are typical injuries seen by physicians. Tendonitis is an example of an overuse injury from repetitive activity that aggravates the joint. <strong><em>I</em><em>t’s normal to experience muscle soreness after working out, but when that pain lasts more than a few days, that exercise injury has not healed, and it’s time to talk to your doctor.</em></strong>\r\n\r\nSeeking the advice of a physician before initiating an exercise program is always recommended. Use a trainer to educate and supervise for proper form, use of equipment, and variety and frequency of exercise. Even those who are accustomed to exercise may also become injured with overuse injuries. So always be aware of the repeated stress various exercises can place on joints, and use proper body mechanics and posturing.\r\n<h4>What Happens When Injuries Are Not Addressed?</h4>\r\nUnaddressed exercise injuries, overuse injuries, and cumulative traumas can damage the joint’s ligaments, tendons, and cartilage. Whether you are riding the waves, running on the beach, pounding the pavement, or climbing some new height, the repetitive low-grade impact can be enough to damage the soft tissues.\r\n\r\nWhen these injuries are not addressed and the soft tissue is not repaired, degeneration of the joint can occur. Unhealed soft tissue makes the joint unstable, which allows for extra and abnormal motion in the joint. These unhealed sports injuries can frequently lead to symptomatic arthritis in later years due to the injured ligaments that cause instability and abnormal joint motion.\r\n\r\nIn an attempt to stabilize the joint, painful muscle spasms may occur at first. Over time, the body will deposit calcium along the lines of stress, producing bone spurs. Bone spurs are typically a sign that the ligaments were no longer able to stabilize the joint. And the body has sent in reinforcement in the form of additional bone. Arthritis has taken place!\r\n<h4>Treating Exercise Injuries and Sports Injuries with Regenerative Orthopedics</h4>\r\nStandard treatments for musculoskeletal injuries resulting in joint pain usually involve symptom management utilizing NSAIDs, cortisone injections, physical therapy, and chiropractic to provide pain relief. These modalities can often provide relief for sports injuries, but for those who have already exhausted these methods and continue to experience pain, Regenerative Orthopedics should be sought. If cartilage damage has taken place, Stem Cell Therapy may be part of the treatment plan.\r\n\r\nRegenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, are great treatment options that are very effective for injuries that arise from overzealous exercising. Plus, these non-surgical treatments repair those injuries that occur during athletic events, regenerating the damaged ligaments and soft tissue and allowing the exerciser and athlete to continue with their desired activity.\r\n\r\n<strong>If you’ve injured yourself while trying a new exercise or sport or are a regular exerciser or athlete with a sports injury, Regenerative Orthopedics can get you back to the activity you love.</strong>\r\n\r\nFor more information about sports injuries and older athletes, read our article on <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/\">\"How Arthritis Affects Older Athletes.\" </a>\r\n\r\n<a href=\"https://www.drfields.com/testimonials/video-testimonials/\">Click here to watch videos from patients who have received Regenerative Orthopedics.</a>','Injured While Exercising?','','inherit','closed','closed','','1414-revision-v1','','','2021-02-03 02:12:37','2021-02-03 02:12:37','',1414,'https://www.drfields.com/uncategorized/1414-revision-v1/',0,'revision','',0),(4477,9,'2021-02-03 02:16:10','2021-02-03 02:16:10','[caption id=\"attachment_4473\" align=\"alignright\" width=\"400\"]<img class=\"wp-image-4473 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Exercising-at-home-1-copy-400x500.png\" alt=\"Exercising At Home (1) Copy\" width=\"400\" height=\"500\" /> Exercise injuries[/caption]\r\n<h3>Preventing Exercise Injuries</h3>\r\n<strong><em>Many of us are love exercising.</em></strong> And that\'s good because exercise is so much better for us than inactivity. But it\'s always important to stay within our range of abilities when exercising. Why? Because going from little or no exercise to a vigorous regimen can set you up for exercise injuries.\r\n\r\nOf course, injuries can happen to people from all levels of ability. Yes, even professional athletes and avid exercisers get injured. Exercise injuries can occur suddenly, like during a fall or after lifting weights that are too heavy. They can also be more subtle and transpire over weeks or months. An example of a more subtle injury would be an injury that occurs from using poor form repeatedly.\r\n\r\nThe risk of injury is genuine from overtraining, poor abdominal support, too lengthy runs, unfamiliarity with gym equipment or exercises, and the use of poor technique or posture. And typical injuries for those who are not used to working out include back pain, tendinitis, and pulled muscles.\r\n<h4>Tips to Prevent Exercise Injuries Before They Occur</h4>\r\nLet\'s review some tips that can be followed to try to avoid exercise injuries before they happen. When exercising, it\'s better to begin by staying closer to the intensity of activity we are accustomed to. For example, don\'t go immediately from low intensity to high intensity. Going from zero to 60 in a workout regimen can set you up for exercise injuries.\r\n\r\nSecondly, pick activities within your fitness and balance levels and those your body can handle. If the goal is to improve general health and not be sedentary, it\'s wise to progress slowly while listening to your body. There is no need to begin with throwing around heavy weights and doing intense workouts. Keep in mind that after periods of inactivity, running, and even vigorous walking can be damaging or cause an exercise injury. Start slowly and work up to longer times and distances.\r\n<h4>But I Was An Athlete in High School, So I Can Exercise Harder!</h4>\r\nSure, you may have been a distance runner in high school. But that doesn’t mean you can jump right into that level of running without proper training. To prevent exercise injuries, start by easing your way into new exercise routines and gradually build up to heavier weights, faster or longer bike rides, and a more vigorous walking or jogging routine.\r\n<h4>Be Aware of Putting Too Much Strain On Your Joints So You Can Prevent Overuse Exercise Injuries</h4>\r\nPeople make a common mistake by working through the pain felt while exercising, thinking it will eventually go away. The repeated injury from the use of poor form puts too much strain on the joints. These exercise injuries are referred to as overuse injuries and are typical injuries seen by physicians. Tendonitis is an example of an overuse injury from repetitive activity that aggravates the joint. <strong><em>I</em><em>t’s normal to experience muscle soreness after working out, but when that pain lasts more than a few days, that exercise injury has not healed, and it’s time to talk to your doctor.</em></strong>\r\n\r\nSeeking the advice of a physician before initiating an exercise program is always recommended. Use a trainer to educate and supervise for proper form, use of equipment, and variety and frequency of exercise. Even those who are accustomed to exercise may also become injured with overuse injuries. So always be aware of the repeated stress various exercises can place on joints, and use proper body mechanics and posturing.\r\n<h4>What Happens When Injuries Are Not Addressed?</h4>\r\nUnaddressed exercise injuries, overuse injuries, and cumulative traumas can damage the joint’s ligaments, tendons, and cartilage. Whether you are riding the waves, running on the beach, pounding the pavement, or climbing some new height, the repetitive low-grade impact can be enough to damage the soft tissues.\r\n\r\nWhen these injuries are not addressed and the soft tissue is not repaired, degeneration of the joint can occur. Unhealed soft tissue makes the joint unstable, which allows for extra and abnormal motion in the joint. These unhealed sports injuries can frequently lead to symptomatic arthritis in later years due to the injured ligaments that cause instability and abnormal joint motion.\r\n\r\nIn an attempt to stabilize the joint, painful muscle spasms may occur at first. Over time, the body will deposit calcium along the lines of stress, producing bone spurs. Bone spurs are typically a sign that the ligaments were no longer able to stabilize the joint. And the body has sent in reinforcement in the form of additional bone. Arthritis has taken place!\r\n<h4>Treating Exercise Injuries and Sports Injuries with Regenerative Orthopedics</h4>\r\nStandard treatments for musculoskeletal injuries resulting in joint pain usually involve symptom management utilizing NSAIDs, cortisone injections, physical therapy, and chiropractic to provide pain relief. These modalities can often provide relief for sports injuries, but for those who have already exhausted these methods and continue to experience pain, Regenerative Orthopedics should be sought. If cartilage damage has taken place, Stem Cell Therapy may be part of the treatment plan.\r\n\r\nRegenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, are great treatment options that are very effective for injuries that arise from overzealous exercising. Plus, these non-surgical treatments repair those injuries that occur during athletic events, regenerating the damaged ligaments and soft tissue and allowing the exerciser and athlete to continue with their desired activity.\r\n\r\n<strong>If you’ve injured yourself while trying a new exercise or sport or are a regular exerciser or athlete with a sports injury, Regenerative Orthopedics can get you back to the activity you love.</strong>\r\n\r\nFor more information about sports injuries and older athletes, read our article on <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/\">\"How Arthritis Affects Older Athletes.\" </a>\r\n\r\n<a href=\"https://www.drfields.com/testimonials/video-testimonials/\">Click here to watch videos from patients who have received Regenerative Orthopedics.</a>','Preventing Exercise Injuries','','inherit','closed','closed','','1414-revision-v1','','','2021-02-03 02:16:10','2021-02-03 02:16:10','',1414,'https://www.drfields.com/uncategorized/1414-revision-v1/',0,'revision','',0),(4479,9,'2021-02-16 21:48:00','2021-02-16 21:48:00','<div class=\"col-md-8\">\n<h3>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h3>\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain, or any other joint pain, you have probably tried to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain, and recovery time that joint surgery always requires?\n<h4><em>And You\'ve Tried All Kinds of Treatments...</em></h4>\n[caption id=\"attachment_1685\" align=\"alignright\" width=\"405\"]<img class=\"wp-image-1685 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Eliminate Joint Pain Without Surgery\" width=\"405\" height=\"643\" /> <em><strong>                  Eliminate Joint Pain Without Surgery</strong></em>[/caption]\n\nYou may have tried physical therapy, chiropractic, cortisone shots, NSAIDs (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\n\nAnd now, since you\'ve tried all of these different things, you are faced with the question of whether you need to get surgery?! You don\'t want surgery, but you are so tired of the pain. What else can you?\n<h4><em>There Is An Alternative Ways to Eliminate Joint Pain Without Surgery. Let me tell you about it...</em></h4>\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics. I am also uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that <strong>you do NOT need to have surgery</strong> to eliminate joint pain in many cases.\n\nMy treatments have helped thousands of people resume their normal lives without joint surgery. And there’s an excellent chance that I can do the same for you.\n\nI am a specialist in a natural, non-surgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy. </strong> It is one type of Regenerative Orthopedic treatment that helps your body make new cells to repair your joint damage.\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\nLet\'s talk about what is behind a lot of the joint pain people experience. Most joint pain is caused by weakened, torn, or damaged tendons or ligaments. These types of soft tissues have very low blood flow. And that inhibits their ability to repair themselves on their own. Plus, to make things even worse, they also have a high number of nerves, causing you pain.\n\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are injured, stretched out, and weak...\n<ul>\n 	<li>\n<h5>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></h5>\n</li>\n 	<li>\n<h5>Which causes <strong>arthritis-like</strong> pain...</h5>\n</li>\n 	<li>\n<h5>Plus, the nerves surrounding soft tissues become stretched and irritated...</h5>\n</li>\n 	<li>\n<h5>Causing you <strong>even more </strong><strong>pain</strong>.</h5>\n</li>\n</ul>\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\n\nAnd Regenerative therapies, like Prolotherapy, work to do just that! Prolotherapy is very effective at repairing and strengthening ligaments and tendons.\n<h4>How Does Prolotherapy Eliminate Chronic Joint Pain Without Surgery?</h4>\nProlotherapy works by increasing nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons, or joints. <strong>Your own body does the work to grow healthy, strong, and vibrant tissue</strong>.\n\nAs the tissue grows and strengthens, your joint begins to operate properly. And your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\n\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\n<h4>Schedule Your Consultation Today</h4>\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/contact/\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to determine if you are a candidate for Prolotherapy, Platelet Rich Plasma Therapy, or Stem Cell Therapy.\n<h3>Listen to these testimonials from patients I have treated with Regenerative Orthopedics...</h3>\n<div class=\"col-md-6\">\n\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\n<div class=\"text-wrap\">\n<p class=\"video-text\"><strong>Christa - Knee </strong></p>\n\n<h5><em>Christa, a former college athlete, had a knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</em></h5>\n</div>\n</div>\n<div class=\"col-md-6\">\n\n<iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\n<div class=\"text-wrap\">\n<p class=\"video-text\"><strong>Dr. Eric - Lower Back</strong></p>\n\n<h5><em>Dr. Eric had low back pain since age 15. Damaged ligaments caused his pain and tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Eric has his life back again!</em></h5>\n</div>\n</div>\n<div class=\"col-md-6\"></div>\n<div class=\"col-md-6\">\n\n<iframe src=\"https://www.youtube.com/embed/MYI_vSJe378?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\n<div class=\"text-wrap\">\n<p class=\"video-text\"><strong>Jeremy - Ankle</strong></p>\n\n<h4><em>Cortisone didn’t help Jeremy’s repeated ankle injuries. He had just two options: Prolotherapy or “Surgery with no guarantee.” After Prolotherapy treatment by Dr. Fields, he is now back to running 3-5 times per week and feeling great!</em></h4>\n</div>\n</div>\n<div class=\"clear\"></div>\n<div class=\"col-md-6\">\n\n<iframe src=\"https://www.youtube.com/embed/VkDlCmTq6dE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\n<div class=\"text-wrap\">\n<p class=\"video-text\"><strong>Wilbur - Shoulder</strong></p>\n\n<h4><em>Wilbur, a firefighter who hurt his shoulders, had a limited range of motion. He received Prolotherapy from Dr. Fields immediately. Now he’s doing core power yoga 5x a week!</em></h4>\n</div>\n</div>\n<div class=\"col-md-6\">\n\n<iframe src=\"https://www.youtube.com/embed/AioI5BZz3UE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\n<div class=\"text-wrap\">\n<p class=\"video-text\"><strong>Tim - Shoulder</strong></p>\n<strong><em>A shoulder injury kept Tim from working out. His Orthopedic surgeon told him to stop any shoulder exercise: “Your days are over,” he said. Now he’s back to normal after 6 Prolotherapy treatments by Dr. Fields.</em></strong>\n\n</div>\n</div>\n</div>\n<div class=\"col-md-4\">\n<h3>Will Prolotherapy Work For You?</h3>\nFind out if you\'re a candidate for Prolotherapy and eliminating your joint pain without surgery. Schedule your consultation by calling our office now at <a href=\"tel:+[phone_raw]\">[phone].</a>\n\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-autosave-v1','','','2021-02-16 21:48:00','2021-02-16 21:48:00','',1682,'https://www.drfields.com/uncategorized/1682-autosave-v1/',0,'revision','',0),(4480,9,'2021-02-04 04:09:11','2021-02-04 04:09:11','<div class=\"col-md-8\">\r\n<h3>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h3>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain or any other joint pain, you have probably tried to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain and recovery time that joint surgery always requires?\r\n<h4><em>And You\'veTried All Kinds of Treatments...</em></h4>\r\n[caption id=\"attachment_1685\" align=\"alignright\" width=\"474\"]<img class=\"wp-image-1685 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Eliminate Joint Pain Without Surgery\" width=\"474\" height=\"752\" /> Eliminate Joint Pain Without Surgery[/caption]\r\n\r\nYou may have tried physical therapy, chiropractic, cortisone shots, NSAIDS (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since you\'ve tried all of these different things, you are faced with the question of whether you need to get surgery?! You don\'t want surgery, but you are so tired of the pain. What else can you?\r\n<h4><em>There is an Alternative Ways to Eliminate Joint Pain Without Surgery. Let me tell you about it...</em></h4>\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics. I am also uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, <strong>you do NOT need to have surgery</strong> to eliminate joint pain.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery. And there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, non-surgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy. </strong> It is one type of Regenerative Orthopedic treatments that help your body make new cells to repair the damage in your joint.\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nLet\'s talk about what is behind a lot of the joint pain people experience. Most joint pain is caused by weakened, torn or damaged tendons or ligaments. These types of soft tissues have very low blood flow. And that inhibits their ability to repair themselves on their own. Plus, to make things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are injured, stretched out, and weak...\r\n<ul>\r\n 	<li>\r\n<h4>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></h4>\r\n</li>\r\n 	<li>\r\n<h4>Which causes <strong>arthritis-like</strong> pain...</h4>\r\n</li>\r\n 	<li>\r\n<h4>Plus, the nerves surrounding soft tissues become stretched and irritated...</h4>\r\n</li>\r\n 	<li>\r\n<h4>Causing you <strong>even more </strong><strong>pain</strong>.</h4>\r\n</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\nAnd Regenerative therapies, like Prolotherapy, work to do just that! Prolotherapy is very effective at repairing and strenthening ligaments and tendons.\r\n<h4>How Does Prolotherapy Eliminate Chronic Joint Pain Without Surgery?</h4>\r\nProlotherapy works by increasing nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. <strong>Your own body does the work to grow healthy, strong and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly. And your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/contact/\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for Prolotherapy, Platelet Rich Plasma Therapy, or Stem Cell Therapy.\r\n<div class=\"col-md-6\"><iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christa - Knee - <span style=\"color: #ff0000;\">NEW!</span></p>\r\n\r\n<h4><em>Christa, a former college athlete, had a knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</em></h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\"><iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Eric - Lower Back</p>\r\n\r\n<h4><em>Dr. Eric had low back pain since age 15. Damaged ligaments caused his pain and tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Eric has his life back again!</em></h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\"></div>\r\n<div class=\"col-md-6\"><iframe src=\"https://www.youtube.com/embed/MYI_vSJe378?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Jeremy. - Ankle</p>\r\n\r\n<h4><em>Cortisone didn’t help Jeremy’s repeated ankle injuries. He had just two options: Prolotherapy or “Surgery with no guarantee.” After Prolotherapy treatment by Dr. Fields, he is now back to running 3-5 times per week and feeling great!</em></h4>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\"><iframe src=\"https://www.youtube.com/embed/VkDlCmTq6dE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Wilbur - Shoulder</p>\r\n\r\n<h4><em>Wilbur, a firefighter who hurt his shoulders, had limited range of motion. He received Prolotherapy from Dr. Fields immediately. Now he’s doing core power yoga 5x week!</em></h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\"><iframe src=\"https://www.youtube.com/embed/AioI5BZz3UE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Tim - Shoulder</p>\r\n<strong><em>Shoulder injury kept Tim from working out. His Orthopedic surgeon told him to stop any shoulder exercise: “Your days are over,” he said. Now he’s back to normal after 6 Prolotherapy treatments by Dr. Fields.</em></strong>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h3>Will Prolotherapy Work For You?</h3>\r\nFind out if you\'re a candidate for Prolotherapy and eliminating your joint pain without surgery. Schedule your consultation by calling our office now at <a href=\"tel:+[phone_raw]\">[phone].</a>\r\n\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2021-02-04 04:09:11','2021-02-04 04:09:11','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(4481,9,'2021-02-04 04:15:56','2021-02-04 04:15:56','<div class=\"col-md-8\">\r\n<h3>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h3>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain, or any other joint pain, you have probably tried to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain, and recovery time that joint surgery always requires?\r\n<h4><em>And You\'ve Tried All Kinds of Treatments...</em></h4>\r\n[caption id=\"attachment_1685\" align=\"alignright\" width=\"405\"]<img class=\"wp-image-1685 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Eliminate Joint Pain Without Surgery\" width=\"405\" height=\"643\" /> <em><strong>                  Eliminate Joint Pain Without Surgery</strong></em>[/caption]\r\n\r\nYou may have tried physical therapy, chiropractic, cortisone shots, NSAIDs (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since you\'ve tried all of these different things, you are faced with the question of whether you need to get surgery?! You don\'t want surgery, but you are so tired of the pain. What else can you?\r\n<h4><em>There Is An Alternative Ways to Eliminate Joint Pain Without Surgery. Let me tell you about it...</em></h4>\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics. I am also uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that <strong>you do NOT need to have surgery</strong> to eliminate joint pain in many cases.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery. And there’s an excellent chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, non-surgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy. </strong> It is one type of Regenerative Orthopedic treatment that helps your body make new cells to repair your joint damage.\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nLet\'s talk about what is behind a lot of the joint pain people experience. Most joint pain is caused by weakened, torn, or damaged tendons or ligaments. These types of soft tissues have very low blood flow. And that inhibits their ability to repair themselves on their own. Plus, to make things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are injured, stretched out, and weak...\r\n<ul>\r\n 	<li>\r\n<h4>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></h4>\r\n</li>\r\n 	<li>\r\n<h4>Which causes <strong>arthritis-like</strong> pain...</h4>\r\n</li>\r\n 	<li>\r\n<h4>Plus, the nerves surrounding soft tissues become stretched and irritated...</h4>\r\n</li>\r\n 	<li>\r\n<h4>Causing you <strong>even more </strong><strong>pain</strong>.</h4>\r\n</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\nAnd Regenerative therapies, like Prolotherapy, work to do just that! Prolotherapy is very effective at repairing and strengthening ligaments and tendons.\r\n<h4>How Does Prolotherapy Eliminate Chronic Joint Pain Without Surgery?</h4>\r\nProlotherapy works by increasing nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons, or joints. <strong>Your own body does the work to grow healthy, strong, and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly. And your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/contact/\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to determine if you are a candidate for Prolotherapy, Platelet Rich Plasma Therapy, or Stem Cell Therapy.\r\n<h3>Listen to these testimonials from patients I have treated with Regenerative Orthopedics...</h3>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"><strong>Christa - Knee </strong></p>\r\n\r\n<h4><em>Christa, a former college athlete, had a knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</em></h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"><strong>Dr. Eric - Lower Back</strong></p>\r\n\r\n<h4><em>Dr. Eric had low back pain since age 15. Damaged ligaments caused his pain and tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Eric has his life back again!</em></h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\"></div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/MYI_vSJe378?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"><strong>Jeremy - Ankle</strong></p>\r\n\r\n<h4><em>Cortisone didn’t help Jeremy’s repeated ankle injuries. He had just two options: Prolotherapy or “Surgery with no guarantee.” After Prolotherapy treatment by Dr. Fields, he is now back to running 3-5 times per week and feeling great!</em></h4>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/VkDlCmTq6dE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"><strong>Wilbur - Shoulder</strong></p>\r\n\r\n<h4><em>Wilbur, a firefighter who hurt his shoulders, had a limited range of motion. He received Prolotherapy from Dr. Fields immediately. Now he’s doing core power yoga 5x a week!</em></h4>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/AioI5BZz3UE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"><strong>Tim - Shoulder</strong></p>\r\n<strong><em>A shoulder injury kept Tim from working out. His Orthopedic surgeon told him to stop any shoulder exercise: “Your days are over,” he said. Now he’s back to normal after 6 Prolotherapy treatments by Dr. Fields.</em></strong>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h3>Will Prolotherapy Work For You?</h3>\r\nFind out if you\'re a candidate for Prolotherapy and eliminating your joint pain without surgery. Schedule your consultation by calling our office now at <a href=\"tel:+[phone_raw]\">[phone].</a>\r\n\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2021-02-04 04:15:56','2021-02-04 04:15:56','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(4482,9,'2021-08-26 22:18:46','2021-08-26 22:18:46','&nbsp;\n\n[caption id=\"attachment_4837\" align=\"alignleft\" width=\"500\"]<img class=\"wp-image-4837 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Rotator-Cuff-500x375.jpeg\" alt=\"Rotator Cuff\" width=\"500\" height=\"375\" /> <strong>      Prolotherapy is effective for chronic rotator cuff pain</strong>[/caption]\n<h1><strong>Rotator Cuff Injuries: Tears, Impingement, and Tendonitis </strong></h1>\nRotator cuff injuries are prevalent. Most of us have heard about rotator cuff tears and even impingement syndromes. We have probably seen and heard about them in the news. We often hear about professional athletes taken out of the game and possibly facing surgery. But these injuries affect the general public too!\n\nRotator cuff injuries are so common that they affect about a quarter of the population over 50 years of age.1 Many people are opting for surgery to fix their injury. The numbers of surgical repairs are going up and up! In some locations, surgeries are doubling in number, and particular surgeries, like arthroscopic rotator cuff repairs, have increased by 353%. 2,3 But are all of these surgeries really necessary? Especially considering the economic costs, the time needed for rehabilitation, and other personal risks!\n<h3>Non-Surgical Options for Rotator Cuff Injuries</h3>\nIn so many rotator cuff injury cases, Regenerative Orthopedic techniques, like Stem Cell Therapy, PRP, and Prolotherapy, can be used to repair the shoulder. Plus, these treatments effectively repair the injury without the need for surgery. Regenerative Orthopedics has many advantages over surgery. First and foremost, it gets to the root cause of the problem. What do we mean by that? Rotator cuff injuries affect the tendon and ligaments of the shoulder. And treatments like Prolotherapy are especially effective at healing soft tissue like tendons and ligaments.\n\nBesides, Regenerative Orthopedic options require much less rehabilitation time. They also help you avoid the risks associated with rotator cuff surgery, such as frozen shoulder, deep infection, and dislocation. And many patients who develop these complications also end up needing a second surgical procedure.\n\n[caption id=\"attachment_4483\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4483\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/rotator-cuff-problem-400x500.png\" alt=\"Rotator Cuff Injuries\" width=\"400\" height=\"500\" /> <em><strong>       Rotator Cuff Injuries Affect Your Sleep Too!</strong></em>[/caption]\n<h3>Who Is At Risk for Rotator Cuff Injuries?</h3>\nAs mentioned previously, many people are at risk for rotator cuff injuries. Among athletes, rotator cuff injuries are more common with pitchers, tennis players, swimmers, and any sport that involves a throwing motion or repeated over-the-head movements. Non-athletes who repeatedly use overhead movements are also at increased risk for rotator cuff injuries. For example, rotator cuff tendinitis occurs when the rotator cuff\'s small muscles become strained, causing weakness of these structures and subsequent tendonitis. Left untreated, a chronic condition of tendinosis can develop.\n<h4><em>Impingement Syndrome</em></h4>\nAnother shoulder condition involving the rotator cuff is impingement syndrome. This condition occurs when the <a href=\"/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> tendon becomes pinched between the head of the humerus and the acromion process during the arm\'s motion raised above the head. This happens because the space gets narrowed, as occurs when the rotator cuff muscles weaken, and the humeral head rides high in the socket.\n\nImpingement can also ensue when bone spurs and calcium deposits narrow the space. Impingement also occurs when the contents of the subacromial space increase in size. This is most often due to a swollen rotator cuff tendon or bursa, which is painfully squeezed between the humeral head and the acromion process.\n<h3>Common Treatments for Rotator Cuff Injuries</h3>\nTreatment for rotator cuff injuries usually includes rest, non-steroidal anti-inflammatory drugs (NSAIDs), physical therapy, and cortisone injections. Cortisone has a substantial anti-inflammatory property, reducing the tendon and bursa\'s swelling and relieving the symptoms. Unfortunately, cortisone has also been found to lead to degeneration of the soft tissue eventually. It\'s so much better to regenerate the joint. And you can get regenerative results with Regenerative Orthopedics.\n\nMany common treatments only provide temporary help. That\'s because the underlying cause is not addressed, and the problem usually returns. Degenerative fraying and tearing of the tendon may occur when the tendon is allowed to be in a constant state of irritation over time. Non-Surgical Regenerative Orthopedics is a great way to address the underlying tendon and ligament injuries and repair all of the involved soft tissue. The result is a re-strengthening of the rotator cuff, an improved shoulder joint, and an excellent chance for a full recovery and performance.\n<h3><a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! It\'s free</a></h3>\n<h3>References:</h3>\n1Blitzer Charles, M. \"Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery.\" <i>The Journal of Arthroscopic and Related Surgery</i> 9.4 (1993): 414-416.\n\n2Iyengar, Jaicharan J., et al. \"Current trends in rotator cuff repair: surgical technique, setting, and cost.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 30.3 (2014): 284-288.\n\n3Traven, Sophia A., et al. \"The 5-factor modified frailty index predicts complications, hospital admission, and mortality following arthroscopic rotator cuff repair.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 36.2 (2020): 383-388.\n\nWant more information about treating Rotator Cuff injuries? Click <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stop-shoulder-pain-from-rotator-cuff-and-other-shoulder-injuries/\">here</a> to read our article called, <a href=\"http://Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries\">\"Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries.\"</a>\n<h1></h1>\n&nbsp;','Rotator Cuff Injuries: Tears, Impingement, and Tendonitis','','inherit','closed','closed','','1457-autosave-v1','','','2021-08-26 22:18:46','2021-08-26 22:18:46','',1457,'https://www.drfields.com/uncategorized/1457-autosave-v1/',0,'revision','',0),(4483,9,'2021-02-10 03:07:33','2021-02-10 03:07:33','Rotator Cuff Injuries can affect your sleep. Get your sleep back with Regenerative Orthopedics!','Rotator Cuff Injuries','Rotator Cuff Injuries Affect Your Sleep Too!','inherit','open','closed','','rotator-cuff-problem','','','2021-02-10 03:09:07','2021-02-10 03:09:07','',1457,'https://www.drfields.com/wp-content/uploads/2019/06/rotator-cuff-problem.png',0,'attachment','image/png',0),(4484,9,'2021-02-10 03:12:37','2021-02-10 03:12:37','&nbsp;\r\n\r\n[caption id=\"attachment_1081\" align=\"alignleft\" width=\"244\"]<img class=\"wp-image-1081 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/shoulder-joint-pain.jpg\" alt=\"Rotator Cuff Injuries\" width=\"244\" height=\"243\" /> <em><strong>Rotator Cuff Injuries: Tears, Impingement, and Tendonitis</strong></em>[/caption]\r\n<h3><strong>Rotator Cuff Injuries: Tears, Impingement, and Tendonitis</strong></h3>\r\nRotator cuff pathology is very common. Most of us have heard about rotator cuff tears, and even impingement syndromes. We have probably seen and heard about rotator cuff injuries in the news. We often hear about professional athletes taken out of the game, and possibly facing surgery. But rotator cuff injuries affect the general public too!\r\n\r\nRotator cuff injuries are so common that they affect about a quarter of the population over 50 years of age.1 There are many people opting for surgery to fix their rotator cuff injury. The numbers of surgical repairs going up and up! In some locations, surgeries are doubling in number, and particular surgeries, like arthroscopic rotator cuff repairs, have increased by 353%. 2,3 But are all of these surgeries really necessary? Especially considering the economic costs, time needed for rehabilitation, and other personal risks!\r\n<h3>Non-Surgical Options for Rotator Cuff Injuries</h3>\r\nIn so many cases of rotator cuff injury, Regenerative Orthopedic techniques, like Stem Cell Therapy, PRP, and Prolotherapy, can be used to repair the shoulder. Plus, these treatments effectively repair the injury without the need for surgery. Regenerative Orthopedics has many advantages over surgery. First and foremost, it gets to the root cause of the problem. What do we mean by that? Rotator cuff injuries affect the tendon and ligaments of the shoulder. And treatments like Prolotherapy, are especially effective at healing soft tissue like tendons and ligaments.\r\n\r\nIn addition, Regenerative Orthopedic options require much less rehabilitation time. They also help you to avoid the risks associated with rotator cuff surgery such as frozen shoulder, deep infection, and dislocation. Many patients who develop these complications also end up needing a second surgical procedure.\r\n\r\n[caption id=\"attachment_4483\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4483\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/rotator-cuff-problem-400x500.png\" alt=\"Rotator Cuff Injuries\" width=\"400\" height=\"500\" /> <em><strong>       Rotator Cuff Injuries Affect Your Sleep Too!</strong></em>[/caption]\r\n<h3>Who Is At Risk for Rotator Cuff Injuries?</h3>\r\nAs mentioned previously, many people are at risk for rotator cuff injuries. Among athletes, rotator cuff injuries are more common with pitchers, tennis players, swimmers and any sport that involves a throwing motion or repeated over the head movements. Non-athletes who repeatedly use overhead movements are also at increased risk. For example, rotator cuff tendinitis occurs when the small muscles of the rotator cuff become strained causing weakness of these structures and subsequent tendonitis. Left untreated, a chronic condition of tendinosis can develop.\r\n<h4><em>Impingement Syndrome</em></h4>\r\nAnother shoulder condition involving the rotator cuff is impingement syndrome. This condition occurs when the <a href=\"/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> tendon becomes pinched between the head of the humerus and the acromion process during the motion of the arm raised above the head. This happens because the space gets narrowed, as occurs when the rotator cuff muscles weaken and the humeral head rides high in the socket.\r\n\r\nImpingement can also ensue when bone spurs and calcium deposits narrow the space. Impingement also occurs when the contents of the subacromial space increase in size, most often due to a swollen rotator cuff tendon or bursa, which is painfully squeezed between the humeral head and the acromion process.\r\n<h3>Common Treatments for Rotator Cuff Injuries</h3>\r\nTreatment for rotator cuff injuries usually include rest, non-steroidal anti-inflammatory drugs (NSAIDs), physical therapy, and cortisone injections. Cortisone has a strong anti-inflammatory property, so it may reduce the swelling in the tendon and bursa, and relieve the symptoms. Unfortunately, cortisone has also been found to eventually lead to degeneration of the soft tissue. It\'s so much better to regenerate the joint. And you can get regenerative results with Regenerative Orthopedics.\r\n\r\nMany common treatments only provide temporary help. That\'s because the underlying cause is not addressed and the problem usually returns. Degenerative fraying and tearing of the tendon may occur when the tendon is allowed to be in a constant state of irritation over time. Non-surgical Regenerative Orthopedics is a great way to address the underlying tendon and ligament injuries, and repair all of the involved soft tissue. The result is a re-strengthening of the rotator cuff, a repaired shoulder joint, and an excellent chance for a full recovery and performance.\r\n<h3><a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s free</a></h3>\r\n<h3>References:</h3>\r\n1Blitzer Charles, M. \"Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery.\" <i>The Journal of Arthroscopic and Related Surgery</i> 9.4 (1993): 414-416.\r\n\r\n2Iyengar, Jaicharan J., et al. \"Current trends in rotator cuff repair: surgical technique, setting, and cost.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 30.3 (2014): 284-288.\r\n\r\n3Traven, Sophia A., et al. \"The 5-factor modified frailty index predicts complications, hospital admission, and mortality following arthroscopic rotator cuff repair.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 36.2 (2020): 383-388.','Rotator Cuff Injuries: Tears, Impingement, and Tendonitis','','inherit','closed','closed','','1457-revision-v1','','','2021-02-10 03:12:37','2021-02-10 03:12:37','',1457,'https://www.drfields.com/uncategorized/1457-revision-v1/',0,'revision','',0),(4485,9,'2021-02-10 03:21:51','2021-02-10 03:21:51','&nbsp;\r\n\r\n[caption id=\"attachment_1081\" align=\"alignleft\" width=\"470\"]<img class=\"wp-image-1081 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/shoulder-joint-pain.jpg\" alt=\"Rotator Cuff Injuries\" width=\"470\" height=\"468\" /> <em><strong>Rotator Cuff Injuries: Tears, Impingement, and Tendonitis</strong></em>[/caption]\r\n<h2><strong>Rotator Cuff Injuries: Tears, Impingement, and Tendonitis</strong></h2>\r\nRotator cuff pathology is prevalent. Most of us have heard about rotator cuff tears and even impingement syndromes. We have probably seen and heard about rotator cuff injuries in the news. We often hear about professional athletes taken out of the game and possibly facing surgery. But rotator cuff injuries affect the general public too!\r\n\r\nRotator cuff injuries are so common that they affect about a quarter of the population over 50 years of age.1 Many people are opting for surgery to fix their rotator cuff injury. The numbers of surgical repairs are going up and up! In some locations, surgeries are doubling in number, and particular surgeries, like arthroscopic rotator cuff repairs, have increased by 353%. 2,3 But are all of these surgeries really necessary? Especially considering the economic costs, the time needed for rehabilitation, and other personal risks!\r\n<h3>Non-Surgical Options for Rotator Cuff Injuries</h3>\r\nIn so many rotator cuff injury cases, Regenerative Orthopedic techniques, like Stem Cell Therapy, PRP, and Prolotherapy, can be used to repair the shoulder. Plus, these treatments effectively repair the injury without the need for surgery. Regenerative Orthopedics has many advantages over surgery. First and foremost, it gets to the root cause of the problem. What do we mean by that? Rotator cuff injuries affect the tendon and ligaments of the shoulder. And treatments like Prolotherapy are especially effective at healing soft tissue like tendons and ligaments.\r\n\r\nBesides, Regenerative Orthopedic options require much less rehabilitation time. They also help you avoid the risks associated with rotator cuff surgery, such as frozen shoulder, deep infection, and dislocation. And many patients who develop these complications also end up needing a second surgical procedure.\r\n\r\n[caption id=\"attachment_4483\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4483\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/rotator-cuff-problem-400x500.png\" alt=\"Rotator Cuff Injuries\" width=\"400\" height=\"500\" /> <em><strong>       Rotator Cuff Injuries Affect Your Sleep Too!</strong></em>[/caption]\r\n<h3>Who Is At Risk for Rotator Cuff Injuries?</h3>\r\nAs mentioned previously, many people are at risk for rotator cuff injuries. Among athletes, rotator cuff injuries are more common with pitchers, tennis players, swimmers, and any sport that involves a throwing motion or repeated over the head movements. Non-athletes who repeatedly use overhead movements are also at increased risk for rotator cuff injuries. For example, rotator cuff tendinitis occurs when the rotator cuff\'s small muscles become strained, causing weakness of these structures and subsequent tendonitis. Left untreated, a chronic condition of tendinosis can develop.\r\n<h4><em>Impingement Syndrome</em></h4>\r\nAnother shoulder condition involving the rotator cuff is impingement syndrome. This condition occurs when the <a href=\"/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> tendon becomes pinched between the head of the humerus and the acromion process during the arm\'s motion raised above the head. This happens because the space gets narrowed, as occurs when the rotator cuff muscles weaken, and the humeral head rides high in the socket.\r\n\r\nImpingement can also ensue when bone spurs and calcium deposits narrow the space. Impingement also occurs when the contents of the subacromial space increase in size. This is most often due to a swollen rotator cuff tendon or bursa, which is painfully squeezed between the humeral head and the acromion process.\r\n<h3>Common Treatments for Rotator Cuff Injuries</h3>\r\nTreatment for rotator cuff injuries usually includes rest, non-steroidal anti-inflammatory drugs (NSAIDs), physical therapy, and cortisone injections. Cortisone has a substantial anti-inflammatory property, reducing the tendon and bursa\'s swelling and relieving the symptoms. Unfortunately, cortisone has also been found to lead to degeneration of the soft tissue eventually. It\'s so much better to regenerate the joint. And you can get regenerative results with Regenerative Orthopedics.\r\n\r\nMany common treatments only provide temporary help. That\'s because the underlying cause is not addressed, and the problem usually returns. Degenerative fraying and tearing of the tendon may occur when the tendon is allowed to be in a constant state of irritation over time. Non-Surgical Regenerative Orthopedics is a great way to address the underlying tendon and ligament injuries and repair all of the involved soft tissue. The result is a re-strengthening of the rotator cuff, an improved shoulder joint, and an excellent chance for a full recovery and performance.\r\n<h3><a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! It\'s free</a></h3>\r\n<h3>References:</h3>\r\n1Blitzer Charles, M. \"Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery.\" <i>The Journal of Arthroscopic and Related Surgery</i> 9.4 (1993): 414-416.\r\n\r\n2Iyengar, Jaicharan J., et al. \"Current trends in rotator cuff repair: surgical technique, setting, and cost.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 30.3 (2014): 284-288.\r\n\r\n3Traven, Sophia A., et al. \"The 5-factor modified frailty index predicts complications, hospital admission, and mortality following arthroscopic rotator cuff repair.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 36.2 (2020): 383-388.','Rotator Cuff Injuries: Tears, Impingement, and Tendonitis','','inherit','closed','closed','','1457-revision-v1','','','2021-02-10 03:21:51','2021-02-10 03:21:51','',1457,'https://www.drfields.com/uncategorized/1457-revision-v1/',0,'revision','',0),(4486,9,'2021-02-10 03:27:57','2021-02-10 03:27:57','&nbsp;\r\n\r\n[caption id=\"attachment_1081\" align=\"alignleft\" width=\"470\"]<img class=\"wp-image-1081 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/shoulder-joint-pain.jpg\" alt=\"Rotator Cuff Injuries\" width=\"470\" height=\"468\" /> <em><strong>Rotator Cuff Injuries: Tears, Impingement, and Tendonitis</strong></em>[/caption]\r\n<h2><strong>Rotator Cuff Injuries: Tears, Impingement, and Tendonitis</strong></h2>\r\nRotator cuff pathology is prevalent. Most of us have heard about rotator cuff tears and even impingement syndromes. We have probably seen and heard about rotator cuff injuries in the news. We often hear about professional athletes taken out of the game and possibly facing surgery. But rotator cuff injuries affect the general public too!\r\n\r\nRotator cuff injuries are so common that they affect about a quarter of the population over 50 years of age.1 Many people are opting for surgery to fix their rotator cuff injury. The numbers of surgical repairs are going up and up! In some locations, surgeries are doubling in number, and particular surgeries, like arthroscopic rotator cuff repairs, have increased by 353%. 2,3 But are all of these surgeries really necessary? Especially considering the economic costs, the time needed for rehabilitation, and other personal risks!\r\n<h3>Non-Surgical Options for Rotator Cuff Injuries</h3>\r\nIn so many rotator cuff injury cases, Regenerative Orthopedic techniques, like Stem Cell Therapy, PRP, and Prolotherapy, can be used to repair the shoulder. Plus, these treatments effectively repair the injury without the need for surgery. Regenerative Orthopedics has many advantages over surgery. First and foremost, it gets to the root cause of the problem. What do we mean by that? Rotator cuff injuries affect the tendon and ligaments of the shoulder. And treatments like Prolotherapy are especially effective at healing soft tissue like tendons and ligaments.\r\n\r\nBesides, Regenerative Orthopedic options require much less rehabilitation time. They also help you avoid the risks associated with rotator cuff surgery, such as frozen shoulder, deep infection, and dislocation. And many patients who develop these complications also end up needing a second surgical procedure.\r\n\r\n[caption id=\"attachment_4483\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4483\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/rotator-cuff-problem-400x500.png\" alt=\"Rotator Cuff Injuries\" width=\"400\" height=\"500\" /> <em><strong>       Rotator Cuff Injuries Affect Your Sleep Too!</strong></em>[/caption]\r\n<h3>Who Is At Risk for Rotator Cuff Injuries?</h3>\r\nAs mentioned previously, many people are at risk for rotator cuff injuries. Among athletes, rotator cuff injuries are more common with pitchers, tennis players, swimmers, and any sport that involves a throwing motion or repeated over the head movements. Non-athletes who repeatedly use overhead movements are also at increased risk for rotator cuff injuries. For example, rotator cuff tendinitis occurs when the rotator cuff\'s small muscles become strained, causing weakness of these structures and subsequent tendonitis. Left untreated, a chronic condition of tendinosis can develop.\r\n<h4><em>Impingement Syndrome</em></h4>\r\nAnother shoulder condition involving the rotator cuff is impingement syndrome. This condition occurs when the <a href=\"/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> tendon becomes pinched between the head of the humerus and the acromion process during the arm\'s motion raised above the head. This happens because the space gets narrowed, as occurs when the rotator cuff muscles weaken, and the humeral head rides high in the socket.\r\n\r\nImpingement can also ensue when bone spurs and calcium deposits narrow the space. Impingement also occurs when the contents of the subacromial space increase in size. This is most often due to a swollen rotator cuff tendon or bursa, which is painfully squeezed between the humeral head and the acromion process.\r\n<h3>Common Treatments for Rotator Cuff Injuries</h3>\r\nTreatment for rotator cuff injuries usually includes rest, non-steroidal anti-inflammatory drugs (NSAIDs), physical therapy, and cortisone injections. Cortisone has a substantial anti-inflammatory property, reducing the tendon and bursa\'s swelling and relieving the symptoms. Unfortunately, cortisone has also been found to lead to degeneration of the soft tissue eventually. It\'s so much better to regenerate the joint. And you can get regenerative results with Regenerative Orthopedics.\r\n\r\nMany common treatments only provide temporary help. That\'s because the underlying cause is not addressed, and the problem usually returns. Degenerative fraying and tearing of the tendon may occur when the tendon is allowed to be in a constant state of irritation over time. Non-Surgical Regenerative Orthopedics is a great way to address the underlying tendon and ligament injuries and repair all of the involved soft tissue. The result is a re-strengthening of the rotator cuff, an improved shoulder joint, and an excellent chance for a full recovery and performance.\r\n<h3><a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! It\'s free</a></h3>\r\n<h3>References:</h3>\r\n1Blitzer Charles, M. \"Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery.\" <i>The Journal of Arthroscopic and Related Surgery</i> 9.4 (1993): 414-416.\r\n\r\n2Iyengar, Jaicharan J., et al. \"Current trends in rotator cuff repair: surgical technique, setting, and cost.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 30.3 (2014): 284-288.\r\n\r\n3Traven, Sophia A., et al. \"The 5-factor modified frailty index predicts complications, hospital admission, and mortality following arthroscopic rotator cuff repair.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 36.2 (2020): 383-388.\r\n\r\nWant more information about treating Rotator Cuff injuries? Click <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stop-shoulder-pain-from-rotator-cuff-and-other-shoulder-injuries/\">here</a> to read our article called, <a href=\"http://Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries\">\"Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries.\"</a>\r\n<h1></h1>\r\n&nbsp;','Rotator Cuff Injuries: Tears, Impingement, and Tendonitis','','inherit','closed','closed','','1457-revision-v1','','','2021-02-10 03:27:57','2021-02-10 03:27:57','',1457,'https://www.drfields.com/uncategorized/1457-revision-v1/',0,'revision','',0),(4487,8,'2021-02-10 19:24:37','2021-02-10 19:24:37','','iwp_log_602432f5f2247','','publish','closed','closed','','iwp_log_602432f5f2247','','','2021-02-10 19:24:37','2021-02-10 19:24:37','',0,'https://www.drfields.com/iwp_log/iwp_log_602432f5f2247/',0,'iwp_log','',0),(4488,8,'2021-02-10 19:24:57','2021-02-10 19:24:57','','iwp_log_602433090ee14','','publish','closed','closed','','iwp_log_602433090ee14','','','2021-02-10 19:24:57','2021-02-10 19:24:57','',0,'https://www.drfields.com/iwp_log/iwp_log_602433090ee14/',0,'iwp_log','',0),(4489,8,'2021-02-10 19:25:17','2021-02-10 19:25:17','','iwp_log_6024331d73b8e','','publish','closed','closed','','iwp_log_6024331d73b8e','','','2021-02-10 19:25:17','2021-02-10 19:25:17','',0,'https://www.drfields.com/iwp_log/iwp_log_6024331d73b8e/',0,'iwp_log','',0),(4490,9,'2021-02-11 22:24:11','2021-02-11 22:24:11','Unrelenting Back Pain can be resolved with Regenerative Orthopedics','Unrelenting Back Pain','Unrelenting Back Pain Resolved with Prolotherapy','inherit','open','closed','','back-pain-2','','','2021-02-11 22:25:12','2021-02-11 22:25:12','',1410,'https://www.drfields.com/wp-content/uploads/2019/06/BACK-pain.jpg',0,'attachment','image/jpeg',0),(4491,9,'2022-03-26 16:10:11','2022-03-26 16:10:11','[caption id=\"attachment_4490\" align=\"alignright\" width=\"445\"]<img class=\" wp-image-4490\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/BACK-pain-500x500.jpg\" alt=\"Back Pain\" width=\"445\" height=\"445\" /> <em><strong>          Unrelenting Back Pain Resolved with Prolotherapy</strong></em>[/caption]\n<h3>Unrelenting Back Pain Repaired with Regenerative Orthopedics</h3>\nIs your unrelenting back pain becoming progressively worse? And is prolonged sitting or standing for extended periods of time getting more and more difficult? Do you frequently pop or crack your own back to get some relief or are your adjustments not holding? Have you tried all different types of treatments to find some relief?\n<h3>Common Treatment Options for Unrelenting Back Pain</h3>\nDoes this sound like you? It\'s true that many commonly used treatments for back pain can ease some of the pain. For example, sOTC pain medication, NSAIDs, and massage can provide a bit of relief.\n\nWhen the pain persists, some folks with back pain turn to narcotics, steroids,, and even anti-depressants. But these treatment options come with their own set of problems. Oftentimes, back pain becomes chronic, and can last three to six months or more, with the pain returning again and again.\n<h3>Pain Will Continue Until the Underlying Cause Is Addressed</h3>\nSo why don’t these treatments make the pain go away for good? The pain stays because the underlying causative factor has not been repaired. Pain medications, NSAIDs, steroids, and anti-depressants are not reparative. And they do not fix the ligamentous source of the musculoskeletal pain. They may relieve some of the symptoms for a period of time, but they do not correct the problem. Injured ligaments are frequently the root cause of back pain. Therefore, when they remain unrepaired, the back pain sufferer is left with ongoing pain and will continue to experience difficulties in function and quality of life.\n\nChiropractors can provide relief for back pain, with care that is often excellent in many cases. However, there are times when back pain becomes more and more frequent, and the adjustments do not hold. In these instances, the patient experiences pain again only a few days after getting treatment. Ligament and/or tendon injuries are very likely at the root of this back pain problem.\n\nImaging tools, like X-rays and MRI’s, may be helpful in certain situations. But although highly accessible, their usage has not caused the rates of back pain to go down.\n<h3>What Causes Back Pain?</h3>\nBack pain is often the result of an injury, possibly due to sudden movements and poor body mechanics. It may also be due to trauma that transpires during a sports activity, fall,, or motor vehicle accident. Acute injuries, such as minor muscle strains, frequently heal quickly due to the great blood supply and healing capacity of the muscles.\n\nHowever, many back pain sufferers deal with chronic pain, or pain that lasts more than three to six months. And all too often, the underlying cause is not identified. The common denominator for many painful musculoskeletal conditions causing back pain is spinal instability due to injury to the ligaments. <em><strong>Regenerative Orthopedics is a non-surgical treatment that can provide the solution to heal those injured ligaments and get rid of your back pain.</strong></em>\n<h4>Let’s Explain What Happens In Disc Degeneration and Herniated Discs:</h4>\nA herniated disc actually herniates <em><strong>through</strong></em> ligaments. Disc degeneration occurs when ligaments around the spine are injured. That’s why treatment needs to be directed at healing these injured ligaments. Interestingly, when scientists want to induce a disc herniation or degeneration in an animal, they damage the ligaments. After the ligaments are intentionally injured, within a short period of time, the discs will become degenerated or herniated.\n\nLigaments are supportive structures joining bone to bone. In the back or spine, they connect adjacent vertebrae. The ligaments of the back serve as one of the primary stabilizing structures of the spinal column. They help to provide adequate motion and also restrict excessive movement, which protects the spinal column and nerve roots as they exit the spine.\n\nInstability is part of the pathophysiology of the degenerated and herniated disc. When the ligaments around the spine are injured, excessive joint mobility occurs, and the bones (vertebrae) move too much. The extra movement creates unstable vertebrae, which will result in back pain.\n\nWhy does movement lead to pain? The exaggerated motion from instability causes abnormal forces and pressure on the discs between the vertebrae.  And that will eventually produce degeneration of the discs. Disc degeneration eventually leads to arthritis. When the ligaments become stretched out or injured, the muscles tighten and generate pain. You feel this in the form of muscle spasms.\n\nIf the ligaments and/or muscles are unable to stabilize the vertebrae, the body overgrows bone. This overgrowth of bone produces the loss of motion noted in arthritis as the body tries to stabilize the spine.\n<h4>Does Fusion Surgery Help the Instability?</h4>\nFusion surgery can prevent the motion of these segments that are moving excessively. However, the fusion does not resolve the underlying ligament injury. Back pain may continue even after surgery due to damage in other vertebral regions, like the segments above or below the fusions, or the unaddressed ligament injury.\n\nRegenerative Orthopedic treatments to the area above and below the disc degeneration strengthen the ligaments, resolve the subluxation and instability, and relieve the back pain. The therapy stabilizes the joint by treating the disc degeneration\'s underlying cause and relieving back pain.\n<h4>Regeneration, Not Surgery</h4>\n[caption id=\"attachment_4960\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4960\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Back-Pain.Hauser-500x419.png\" alt=\"Back Pain.hauser\" width=\"500\" height=\"419\" /> <strong>             Prolotherapy and PRP Are Beneficial for Back Pain</strong>[/caption]\n\nRegenerative Orthopedic physicians utilize regenerative injection therapies to stimulate the body to repair the ligaments. Our bodies have exceptional regenerative capabilities. The regenerative medicine approach triggers the body to strengthen the tissue on its own. Regenerative Orthopedics, such as Prolotherapy, Platelet Rich Plasma and Stem Cell Therapy, stimulate the body to heal itself. In the case of unrelenting back pain, regenerative techniques specifically stimulate the repair of the ligaments through which the disc herniates and the ligaments connecting the vertebrae.\n\nOne of the wonderful things about Regenerative Orthopedics for back pain is that the individual can maintain activity and get back to sports or other activities they enjoy without extensive downtime. Treatments are individually tailored to promote healing and return people to their active lives. It’s really an amazing transformation to see people regain their mobility and independence!\n\nWe strongly recommend looking into Regenerative Orthopedics for those with back pain because it is helpful for many back pain related conditions, including herniated discs, bulging discs, and degenerative disc disease. Why continue to suffer when you can eliminate back pain with Regenerative Orthopedics.\n\n<a href=\"https://www.drfields.com/articles/prolo-news\"><strong>Click here for more articles by Dr. Fields</strong></a>','Unrelenting Back Pain Repaired with Regenerative Orthopedics','','inherit','closed','closed','','1410-autosave-v1','','','2022-03-26 16:10:11','2022-03-26 16:10:11','',1410,'https://www.drfields.com/uncategorized/1410-autosave-v1/',0,'revision','',0),(4493,8,'2021-02-11 22:28:55','2021-02-11 22:28:55','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"display: inline-block; height: 50px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n<span style=\"height: 20px;\"></span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-02-11 22:28:55','2021-02-11 22:28:55','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4494,8,'2021-02-11 22:46:03','2021-02-11 22:46:03','Carecredit Button Applynow 280x100 A V1','Carecredit Button Applynow 280x100 A V1','Carecredit Button Applynow 280x100 A V1','inherit','open','closed','','carecredit_button_applynow_280x100_a_v1','','','2021-06-25 19:51:33','2021-06-25 19:51:33','',207,'https://www.drfields.com/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png',0,'attachment','image/png',0),(4495,8,'2021-02-11 22:48:31','2021-02-11 22:48:31','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"display: inline-block; height: 50px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n<span style=\"height: 20px;\"></span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-02-11 22:48:31','2021-02-11 22:48:31','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4496,9,'2021-02-11 23:08:34','2021-02-11 23:08:34','[caption id=\"attachment_4490\" align=\"alignright\" width=\"445\"]<img class=\" wp-image-4490\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/BACK-pain-500x500.jpg\" alt=\"Back Pain\" width=\"445\" height=\"445\" /> <em><strong>          Unrelenting Back Pain Resolved with Prolotherapy</strong></em>[/caption]\r\n<h3>Unrelenting Back Pain Repaired with Regenerative Orthopedics</h3>\r\nIs your unrelenting back pain becoming progressively worse? And is prolonged sitting or standing for extended periods of time getting more and more difficult? Do you frequently pop or crack your own back to get some relief or are your adjustments not holding? Have you tried all different types of treatments to find some relief?\r\n<h3>Common Treatment Options for Unrelenting Back Pain</h3>\r\nDoes this sound like you? It\'s true that many commonly used treatments for back pain can ease some of the pain. For example, sOTC pain medication, NSAIDs, and massage can provide a bit of relief.\r\n\r\nWhen the pain persists, some folks with back pain turn to narcotics, steroids,, and even anti-depressants. But these treatment options come with their own set of problems. Oftentimes, back pain becomes chronic, and can last three to six months or more, with the pain returning again and again.\r\n<h3>Pain Will Continue Until the Underlying Cause Is Addressed</h3>\r\nSo why don’t these treatments make the pain go away for good? The pain stays because the underlying causative factor has not been repaired. Pain medications, NSAIDs, steroids, and anti-depressants are not reparative. And they do not fix the ligamentous source of the musculoskeletal pain. They may relieve some of the symptoms for a period of time, but they do not correct the problem. Injured ligaments are frequently the root cause of back pain. Therefore, when they remain unrepaired, the back pain sufferer is left with ongoing pain and will continue to experience difficulties in function and quality of life.\r\n\r\nChiropractors can provide relief for back pain, with care that is often excellent in many cases. However, there are times when back pain becomes more and more frequent, and the adjustments do not hold. In these instances, the patient experiences pain again only a few days after getting treatment. Ligament and/or tendon injuries are very likely at the root of this back pain problem.\r\n\r\nImaging tools, like X-rays and MRI’s, may be helpful in certain situations. But although highly accessible, their usage has not caused the rates of back pain to go down.\r\n<h3>What Causes Back Pain?</h3>\r\nBack pain is often the result of an injury, possibly due to sudden movements and poor body mechanics. It may also be due to trauma that transpires during a sports activity, fall,, or motor vehicle accident. Acute injuries, such as minor muscle strains, frequently heal quickly due to the great blood supply and healing capacity of the muscles.\r\n\r\nHowever, many back pain sufferers deal with chronic pain, or pain that lasts more than three to six months. And all too often, the underlying cause is not identified. The common denominator for many painful musculoskeletal conditions causing back pain is spinal instability due to injury to the ligaments. <em><strong>Regenerative Orthopedics is a non-surgical treatment that can provide the solution to heal those injured ligaments and get rid of your back pain.</strong></em>\r\n<h4>Let’s Explain What Happens In Disc Degeneration and Herniated Discs:</h4>\r\nA herniated disc actually herniates <em><strong>through</strong></em> ligaments. Disc degeneration occurs when ligaments around the spine are injured. That’s why treatment needs to be directed at healing these injured ligaments. Interestingly, when scientists want to induce a disc herniation or degeneration in an animal, they damage the ligaments. After the ligaments are intentionally injured, within a short period of time, the discs will become degenerated or herniated.\r\n\r\nLigaments are supportive structures joining bone to bone. In the back or spine, they connect adjacent vertebrae. The ligaments of the back serve as one of the primary stabilizing structures of the spinal column. They help to provide adequate motion and also restrict excessive movement, which protects the spinal column and nerve roots as they exit the spine.\r\n\r\nInstability is part of the pathophysiology of the degenerated and herniated disc. When the ligaments around the spine are injured, excessive joint mobility occurs, and the bones (vertebrae) move too much. The extra movement creates unstable vertebrae, which will result in back pain.\r\n\r\nWhy does movement lead to pain? The exaggerated motion from instability causes abnormal forces and pressure on the discs between the vertebrae.  And that will eventually produce degeneration of the discs. Disc degeneration eventually leads to arthritis. When the ligaments become stretched out or injured, the muscles tighten and generate pain. You feel this in the form of muscle spasms.\r\n\r\nIf the ligaments and/or muscles are unable to stabilize the vertebrae, the body overgrows bone. This overgrowth of bone produces the loss of motion noted in arthritis as the body tries to stabilize the spine.\r\n<h4>Does Fusion Surgery Help the Instability?</h4>\r\nFusion surgery can prevent the motion of these segments that are moving excessively. However, the fusion does not resolve the underlying ligament injury. Back pain may continue even after surgery due to damage in other vertebral regions, like the segments above or below the fusions, or the unaddressed ligament injury.\r\n\r\nRegenerative Orthopedic treatments to the area above and below the disc degeneration strengthen the ligaments, resolve the subluxation and instability, and relieve the back pain. The therapy stabilizes the joint by treating the disc degeneration\'s underlying cause and relieving back pain.\r\n<h4>Regeneration, Not Surgery</h4>\r\nRegenerative Orthopedic physicians utilize regenerative injection therapies to stimulate the body to repair the ligaments. Our bodies have exceptional regenerative capabilities. The regenerative medicine approach triggers the body to strengthen the tissue on its own. Regenerative Orthopedics, such as Prolotherapy, Platelet Rich Plasma and Stem Cell Therapy, stimulate the body to heal itself. In the case of unrelenting back pain, regenerative techniques specifically stimulate the repair of the ligaments through which the disc herniates and the ligaments connecting the vertebrae.\r\n\r\nOne of the wonderful things about Regenerative Orthopedics for back pain is that the individual can maintain activity and get back to sports or other activities they enjoy without extensive downtime. Treatments are individually tailored to promote healing and return people to their active lives. It’s really an amazing transformation to see people regain their mobility and independence!\r\n\r\nWe strongly recommend looking into Regenerative Orthopedics for those with back pain because it is helpful for many back pain related conditions, including herniated discs, bulging discs, and degenerative disc disease. Why continue to suffer when you can eliminate back pain with Regenerative Orthopedics.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news\"><strong>Click here for more articles by Dr. Fields</strong></a>','Unrelenting Back Pain Repaired with Regenerative Orthopedics','','inherit','closed','closed','','1410-revision-v1','','','2021-02-11 23:08:34','2021-02-11 23:08:34','',1410,'https://www.drfields.com/uncategorized/1410-revision-v1/',0,'revision','',0),(4498,8,'2021-02-11 23:52:56','2021-02-11 23:52:56','Palm Tree Sky Bg','Palm Tree Sky Bg','Palm Tree Sky Bg','inherit','open','closed','','palm-tree-sky-bg','','','2021-02-11 23:52:56','2021-02-11 23:52:56','',0,'https://www.drfields.com/wp-content/uploads/2021/02/Palm-Tree-Sky-BG.jpg',0,'attachment','image/jpeg',0),(4499,8,'2021-02-12 00:03:10','2021-02-12 00:03:10','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2021/02/Palm-Tree-Sky-BG.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_second\">We Now Accept CareCredit!</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Find Out How to Apply Below</span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"display: inline-block; height: 50px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n<span style=\"height: 20px;\"></span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-02-12 00:03:10','2021-02-12 00:03:10','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4500,8,'2021-02-12 00:03:59','2021-02-12 00:03:59','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2021/02/Palm-Tree-Sky-BG.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_second\">We Now Accept CareCredit!</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Find Out How to Apply Below</span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"display: inline-block; height: 50px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n<span style=\"height: 20px;\"></span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-02-12 00:03:59','2021-02-12 00:03:59','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4501,8,'2021-02-12 00:04:35','2021-02-12 00:04:35','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2021/02/Palm-Tree-Sky-BG.jpg\');\">\r\n<div class=\"carousel-caption\">\r\n<span class=\"header_text_second\">We Now Accept CareCredit!</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Find Out How to Apply Below</span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:275px;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"display: inline-block; height: 50px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n<span style=\"height: 20px;\"></span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-02-12 00:04:35','2021-02-12 00:04:35','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4502,8,'2021-02-12 00:05:17','2021-02-12 00:05:17','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2021/02/Palm-Tree-Sky-BG.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\"></span>\r\n<span class=\"header_text_second\">We Now Accept CareCredit!</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Find Out How to Apply Below</span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:275px;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"display: inline-block; height: 50px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n<span style=\"height: 20px;\"></span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-02-12 00:05:17','2021-02-12 00:05:17','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4503,8,'2021-02-12 00:05:38','2021-02-12 00:05:38','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2021/02/Palm-Tree-Sky-BG.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">&nbsp;</span>\r\n<span class=\"header_text_second\">We Now Accept CareCredit!</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Find Out How to Apply Below</span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:275px;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"display: inline-block; height: 50px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n<span style=\"height: 20px;\"></span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-02-12 00:05:38','2021-02-12 00:05:38','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4504,8,'2021-02-12 00:06:43','2021-02-12 00:06:43','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2021/02/Palm-Tree-Sky-BG.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">&nbsp;</span>\r\n<span class=\"header_text_second\">We Now Accept CareCredit!</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Find Out How to Apply Below</span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" target=\"_blank\" rel=\"noopener\"><img width=\"275\" style=\"max-width:275px;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"display: inline-block; height: 50px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n<span style=\"height: 20px;\"></span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-02-12 00:06:43','2021-02-12 00:06:43','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4505,8,'2021-02-12 00:07:35','2021-02-12 00:07:35','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2021/02/Palm-Tree-Sky-BG.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">&nbsp;</span>\r\n<span class=\"header_text_second\">We Now Accept CareCredit!</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Find Out How to Apply Below</span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" target=\"_blank\" rel=\"noopener\"><img width=\"275\" style=\"max-width:275px;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"display: inline-block; height: 50px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n<span style=\"height: 20px;\"></span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" target=\"_blank\" rel=\"noopener\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-02-12 00:07:35','2021-02-12 00:07:35','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4506,8,'2021-02-16 16:01:46','2021-02-16 16:01:46','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"display: inline-block; height: 50px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n<span style=\"height: 20px;\"></span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" target=\"_blank\" rel=\"noopener\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-02-16 16:01:46','2021-02-16 16:01:46','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4507,9,'2021-02-16 21:48:52','2021-02-16 21:48:52','<div class=\"col-md-8\">\r\n<h3>Prolotherapy: Finally, A Permanent Way To Eliminate Joint Pain Without Surgery</h3>\r\nIf you are like most people who suffer from back pain, neck pain, shoulder pain, knee pain, elbow pain, or any other joint pain, you have probably tried to eliminate your joint pain without surgery. After all, who really wants all the expense, additional pain, and recovery time that joint surgery always requires?\r\n<h4><em>And You\'ve Tried All Kinds of Treatments...</em></h4>\r\n[caption id=\"attachment_1685\" align=\"alignright\" width=\"405\"]<img class=\"wp-image-1685 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Eliminate Joint Pain Without Surgery\" width=\"405\" height=\"643\" /> <em><strong>                  Eliminate Joint Pain Without Surgery</strong></em>[/caption]\r\n\r\nYou may have tried physical therapy, chiropractic, cortisone shots, NSAIDs (like Ibuprofen or Naprosyn), or even a long list of home remedies...only to discover that if there was any relief from your pain at all, <strong>the relief was only temporary</strong>.\r\n\r\nAnd now, since you\'ve tried all of these different things, you are faced with the question of whether you need to get surgery?! You don\'t want surgery, but you are so tired of the pain. What else can you?\r\n<h4><em>There Is An Alternative Way to Eliminate Joint Pain Without Surgery. Let me tell you about it...</em></h4>\r\n<strong>My name is Dr. Peter Fields</strong>, and I am the leading expert in Regenerative Orthopedics. I am also uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that <strong>you do NOT need to have surgery</strong> to eliminate joint pain in many cases.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery. And there’s an excellent chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, non-surgical method of assisting the body to heal injured tendons and ligaments called <strong>Prolotherapy. </strong> It is one type of Regenerative Orthopedic treatment that helps your body make new cells to repair your joint damage.\r\n<h4>Why Does My Knee/Hip/Back/Shoulder/Elbow/Neck STILL HURT After All This Time?</h4>\r\nLet\'s talk about what is behind a lot of the joint pain people experience. Most joint pain is caused by weakened, torn, or damaged tendons or ligaments. These types of soft tissues have very low blood flow. And that inhibits their ability to repair themselves on their own. Plus, to make things even worse, they also have a high number of nerves, causing you pain.\r\n\r\nYou may know that the job of tendons and ligaments is to keep your joints aligned and moving properly. But when they are injured, stretched out, and weak...\r\n<ul>\r\n 	<li>\r\n<h5>The cartilage can degenerate and <strong>cause bone-on-bone friction...</strong></h5>\r\n</li>\r\n 	<li>\r\n<h5>Which causes <strong>arthritis-like</strong> pain...</h5>\r\n</li>\r\n 	<li>\r\n<h5>Plus, the nerves surrounding soft tissues become stretched and irritated...</h5>\r\n</li>\r\n 	<li>\r\n<h5>Causing you <strong>even more </strong><strong>pain</strong>.</h5>\r\n</li>\r\n</ul>\r\nUnless you strengthen your tendons and ligaments and restore your joint to its proper, natural alignment and motion, <strong>you will continue to be in pain</strong>.\r\n\r\nAnd Regenerative therapies, like Prolotherapy, work to do just that! Prolotherapy is very effective at repairing and strengthening ligaments and tendons.\r\n<h4>How Does Prolotherapy Eliminate Chronic Joint Pain Without Surgery?</h4>\r\nProlotherapy works by increasing nutrient-rich blood cells to the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons, or joints. <strong>Your own body does the work to grow healthy, strong, and vibrant tissue</strong>.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly. And your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you eliminate your pain with <strong>NO surgery, NO hospital stay</strong>, and <strong>NO general anesthesia</strong>. And isn’t that what you want most?\r\n<h4>Schedule Your Consultation Today</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/contact/\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to determine if you are a candidate for Prolotherapy, Platelet Rich Plasma Therapy, or Stem Cell Therapy.\r\n<h3>Listen to these testimonials from patients I have treated with Regenerative Orthopedics...</h3>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/Mc4Xo9RTwjw?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"><strong>Christa - Knee </strong></p>\r\n\r\n<h5><em>Christa, a former college athlete, had a knee dislocation with pain and stiffness in her right knee. Five surgeries and other procedures couldn’t help her, but Dr. Fields’ Prolotherapy did. Now she is feeling “whole” and “healthy” again.</em></h5>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/VLbs4_l5Ky0?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"><strong>Dr. Eric - Lower Back</strong></p>\r\n\r\n<h5><em>Dr. Eric had low back pain since age 15. Damaged ligaments caused his pain and tightness. Now he can run and surf again after just 7 visits with Dr. Fields. Eric has his life back again!</em></h5>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\"></div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/MYI_vSJe378?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"><strong>Jeremy - Ankle</strong></p>\r\n\r\n<h5><em>Cortisone didn’t help Jeremy’s repeated ankle injuries. He had just two options: Prolotherapy or “Surgery with no guarantee.” After Prolotherapy treatment by Dr. Fields, he is now back to running 3-5 times per week and feeling great!</em></h5>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/VkDlCmTq6dE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"><strong>Wilbur - Shoulder</strong></p>\r\n\r\n<h5><em>Wilbur, a firefighter who hurt his shoulders, had a limited range of motion. He received Prolotherapy from Dr. Fields immediately. Now he’s doing core power yoga 5x a week!</em></h5>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/AioI5BZz3UE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\"><strong>Tim - Shoulder</strong></p>\r\n\r\n<h5><strong><em>A shoulder injury kept Tim from working out. His Orthopedic surgeon told him to stop any shoulder exercise: “Your days are over,” he said. Now he’s back to normal after 6 Prolotherapy treatments by Dr. Fields.</em></strong></h5>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h3>Will Prolotherapy Work For You?</h3>\r\n<em>Find out if you\'re a candidate for Prolotherapy and eliminating your joint pain without surgery. Schedule your consultation by calling our office now at <a href=\"tel:+[phone_raw]\">[phone].</a></em>\r\n\r\n</div>','How Prolotherapy Can Eliminate Joint Pain Without Surgery','','inherit','closed','closed','','1682-revision-v1','','','2021-02-16 21:48:52','2021-02-16 21:48:52','',1682,'https://www.drfields.com/uncategorized/1682-revision-v1/',0,'revision','',0),(4508,9,'2021-02-16 21:51:36','2021-02-16 21:51:36','[caption id=\"attachment_4139\" align=\"alignleft\" width=\"575\"]<img class=\" wp-image-4139\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/arthritis-symptoms-500x500.jpg\" alt=\"Arthritis Pain\" width=\"575\" height=\"575\" /> <strong>                                 <em> Prolotherapy Is More Effective Than Other Treatments</em></strong>[/caption]\r\n<h1>How Effective Is Prolotherapy versus Exercise Or Cortisone for Arthritis Pain?</h1>\r\n<em>Researchers in the Journal of Pain Research compared dextrose Prolotherapy to different arthritis pain treatments such as exercise, local anesthesia injections, and even cortisone injections. </em>\r\n\r\n<em>What did they conclude? </em>\r\n\r\n<em>Dextrose prolotherapy provided a better effect than exercise, local anesthetics, and probably corticosteroids at their 6 months follow-up.</em>\r\n\r\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/\">Read the full article by clicking here.</a>\r\n\r\nAnd take a look at the abstract below.\r\n<h3></h3>\r\n<h3></h3>\r\n<h2 class=\"content-title\">Comparative effectiveness of dextrose prolotherapy versus control injections and exercise in the management of osteoarthritis pain: a systematic review and meta-analysis</h2>\r\n<div class=\"half_rhythm\">\r\n<div class=\"contrib-group fm-author\"><a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Hung%20CY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Chen-Yu Hung</a>,<sup>1</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Hsiao%20MY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Ming-Yen Hsiao</a>,<sup>2,</sup><sup>3</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Chang%20KV%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Ke-Vin Chang</a>,<sup>1,</sup><sup>2</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Han%20DS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Der-Sheng Han</a>,<sup>1,</sup><sup>2</sup> and <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Wang%20TG%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Tyng-Guey Wang</a><sup>2,</sup><sup>3</sup></div>\r\n<div class=\"fm-panel half_rhythm\">\r\n<div class=\"togglers\"><a class=\"pmctoggle\" href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#\">Author information</a> <a class=\"pmctoggle\" href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#\">Copyright and License information</a> <a href=\"https://www.ncbi.nlm.nih.gov/pmc/about/disclaimer/\">Disclaimer</a></div>\r\n<div id=\"pmclinksbox\" class=\"links-box whole_rhythm\">\r\n<div class=\"fm-panel\">\r\n<h2 id=\"idm140468391900000title\" class=\"head no_bottom_margin ui-helper-clearfix\">Abstract</h2>\r\n<div>\r\n<div id=\"__sec1\" class=\"sec sec-first\">\r\n<h3 id=\"__sec1title\">Background</h3>\r\n<p id=\"__p1\" class=\"p p-first-last\">Increasing evidence has supported the use of dextrose prolotherapy for patients with osteoarthritis. However, the real benefits may be affected by differences in injection protocols, comparative regimens, and evaluation scales.</p>\r\n\r\n</div>\r\n<div id=\"__sec2\" class=\"sec\">\r\n<h3 id=\"__sec2title\">Methods</h3>\r\n<p id=\"__p2\" class=\"p p-first-last\">PubMed and Scopus were searched from the earliest record until February 2016. One single-arm study and five randomized controlled trials were included, comprising 326 participants. We estimated the effect sizes of pain reduction before and after serial dextrose injections and compared the values between dextrose prolotherapy, comparative regimens, and exercise 6 months after the initial injection.</p>\r\n\r\n</div>\r\n<div id=\"__sec3\" class=\"sec\">\r\n<h3 id=\"__sec3title\">Results</h3>\r\n<p id=\"__p3\" class=\"p p-first-last\">Regarding the treatment arm using dextrose prolotherapy, the effect sizes compared with baseline were 0.65 (95% confidence interval [CI], 0.14–1.17), 0.84 (95% CI, 0.40–1.27), 0.85 (95% CI, 0.60–1.10), and 0.87 (95% CI, 0.53–1.21) after the first, second, third, and fourth or more injections, respectively. The overall effect of dextrose was better than control injections (effect size, 0.36; 95% CI, 0.10–0.63).</p>\r\n<p class=\"p p-first-last\">Dextrose prolotherapy had a superior effect compared with local anesthesia (effect size, 0.38; 95% CI, 0.07–0.70) and exercise (effect size, 0.71; 95% CI, 0.30–1.11). There was an insignificant advantage of dextrose over corticosteroids (effect size, 0.31; 95% CI, –0.18 to 0.80) which was only estimated from one study.</p>\r\n\r\n</div>\r\n<div id=\"__sec4\" class=\"sec sec-last\">\r\n<h3 id=\"__sec4title\">Conclusion</h3>\r\n<p id=\"__p4\" class=\"p p-first-last\">Dextrose injections decreased pain in osteoarthritis patients but did not exhibit a positive dose–response relationship following serial injections. Dextrose prolotherapy was found to provide a better therapeutic effect than exercise, local anesthetics, and probably corticosteroids when patients were retested 6 months following the initial injection.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 class=\"sec\">Reference:</h3>\r\n</div>\r\nHung, Chen-Yu, et al. \"Comparative effectiveness of dextrose prolotherapy versus control injections and exercise in the management of osteoarthritis pain: a systematic review and meta-analysis.\" <i>Journal of pain research</i> 9 (2016): 847.\r\n\r\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/\">Read the full article by clicking here.</a>\r\n<h3>Take a look at more articles on Regenerative Orthopedic treatments for arthritis:</h3>\r\n<h4><a title=\"How Arthritis Affects Older Athletes\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/\">How Arthritis Affects Older Athletes</a></h4>\r\n<h4><a title=\"Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain\" href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a></h4>\r\nhttps://www.drfields.com/articles/magazine-column/townsend-letter-arthritis/\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n</div>\r\n</div>\r\n</div>','Arthritis Pain: How Effective Is Prolotherapy vs Exercise Or Cortisone?','','inherit','closed','closed','','2014-revision-v1','','','2021-02-16 21:51:36','2021-02-16 21:51:36','',2014,'https://www.drfields.com/uncategorized/2014-revision-v1/',0,'revision','',0),(4509,9,'2021-02-16 21:52:40','2021-02-16 21:52:40','[caption id=\"attachment_4139\" align=\"alignleft\" width=\"575\"]<img class=\" wp-image-4139\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/arthritis-symptoms-500x500.jpg\" alt=\"Arthritis Pain\" width=\"575\" height=\"575\" /> <strong>                                 <em> Prolotherapy Is More Effective Than Other Treatments</em></strong>[/caption]\r\n<h1>How Effective Is Prolotherapy Versus Exercise or Cortisone for Arthritis Pain?</h1>\r\n<em>Researchers in the Journal of Pain Research compared dextrose Prolotherapy to different arthritis pain treatments such as exercise, local anesthesia injections, and even cortisone injections. </em>\r\n\r\n<em>What did they conclude? </em>\r\n\r\n<em>Dextrose prolotherapy provided a better effect than exercise, local anesthetics, and probably corticosteroids at their 6 months follow-up.</em>\r\n\r\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/\">Read the full article by clicking here.</a>\r\n\r\nAnd take a look at the abstract below.\r\n<h3></h3>\r\n<h3></h3>\r\n<h2 class=\"content-title\">Comparative effectiveness of dextrose prolotherapy versus control injections and exercise in the management of osteoarthritis pain: a systematic review and meta-analysis</h2>\r\n<div class=\"half_rhythm\">\r\n<div class=\"contrib-group fm-author\"><a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Hung%20CY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Chen-Yu Hung</a>,<sup>1</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Hsiao%20MY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Ming-Yen Hsiao</a>,<sup>2,</sup><sup>3</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Chang%20KV%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Ke-Vin Chang</a>,<sup>1,</sup><sup>2</sup> <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Han%20DS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Der-Sheng Han</a>,<sup>1,</sup><sup>2</sup> and <a class=\"affpopup\" href=\"https://www.ncbi.nlm.nih.gov/pubmed/?term=Wang%20TG%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816\">Tyng-Guey Wang</a><sup>2,</sup><sup>3</sup></div>\r\n<div class=\"fm-panel half_rhythm\">\r\n<div class=\"togglers\"><a class=\"pmctoggle\" href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#\">Author information</a> <a class=\"pmctoggle\" href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#\">Copyright and License information</a> <a href=\"https://www.ncbi.nlm.nih.gov/pmc/about/disclaimer/\">Disclaimer</a></div>\r\n<div id=\"pmclinksbox\" class=\"links-box whole_rhythm\">\r\n<div class=\"fm-panel\">\r\n<h2 id=\"idm140468391900000title\" class=\"head no_bottom_margin ui-helper-clearfix\">Abstract</h2>\r\n<div>\r\n<div id=\"__sec1\" class=\"sec sec-first\">\r\n<h3 id=\"__sec1title\">Background</h3>\r\n<p id=\"__p1\" class=\"p p-first-last\">Increasing evidence has supported the use of dextrose prolotherapy for patients with osteoarthritis. However, the real benefits may be affected by differences in injection protocols, comparative regimens, and evaluation scales.</p>\r\n\r\n</div>\r\n<div id=\"__sec2\" class=\"sec\">\r\n<h3 id=\"__sec2title\">Methods</h3>\r\n<p id=\"__p2\" class=\"p p-first-last\">PubMed and Scopus were searched from the earliest record until February 2016. One single-arm study and five randomized controlled trials were included, comprising 326 participants. We estimated the effect sizes of pain reduction before and after serial dextrose injections and compared the values between dextrose prolotherapy, comparative regimens, and exercise 6 months after the initial injection.</p>\r\n\r\n</div>\r\n<div id=\"__sec3\" class=\"sec\">\r\n<h3 id=\"__sec3title\">Results</h3>\r\n<p id=\"__p3\" class=\"p p-first-last\">Regarding the treatment arm using dextrose prolotherapy, the effect sizes compared with baseline were 0.65 (95% confidence interval [CI], 0.14–1.17), 0.84 (95% CI, 0.40–1.27), 0.85 (95% CI, 0.60–1.10), and 0.87 (95% CI, 0.53–1.21) after the first, second, third, and fourth or more injections, respectively. The overall effect of dextrose was better than control injections (effect size, 0.36; 95% CI, 0.10–0.63).</p>\r\n<p class=\"p p-first-last\">Dextrose prolotherapy had a superior effect compared with local anesthesia (effect size, 0.38; 95% CI, 0.07–0.70) and exercise (effect size, 0.71; 95% CI, 0.30–1.11). There was an insignificant advantage of dextrose over corticosteroids (effect size, 0.31; 95% CI, –0.18 to 0.80) which was only estimated from one study.</p>\r\n\r\n</div>\r\n<div id=\"__sec4\" class=\"sec sec-last\">\r\n<h3 id=\"__sec4title\">Conclusion</h3>\r\n<p id=\"__p4\" class=\"p p-first-last\">Dextrose injections decreased pain in osteoarthritis patients but did not exhibit a positive dose–response relationship following serial injections. Dextrose prolotherapy was found to provide a better therapeutic effect than exercise, local anesthetics, and probably corticosteroids when patients were retested 6 months following the initial injection.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 class=\"sec\">Reference:</h3>\r\n</div>\r\nHung, Chen-Yu, et al. \"Comparative effectiveness of dextrose prolotherapy versus control injections and exercise in the management of osteoarthritis pain: a systematic review and meta-analysis.\" <i>Journal of pain research</i> 9 (2016): 847.\r\n\r\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/\">Read the full article by clicking here.</a>\r\n<h3>Take a look at more articles on Regenerative Orthopedic treatments for arthritis:</h3>\r\n<h4><a title=\"How Arthritis Affects Older Athletes\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/\">How Arthritis Affects Older Athletes</a></h4>\r\n<h4><a title=\"Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain\" href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</a></h4>\r\nhttps://www.drfields.com/articles/magazine-column/townsend-letter-arthritis/\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar row-full \">\r\n<div class=\"container\">\r\n<div class=\"row-fluid\">\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n<div class=\"large_thumb\"></div>\r\n</div>\r\n</div>\r\n</div>','Arthritis Pain: How Effective Is Prolotherapy vs Exercise Or Cortisone?','','inherit','closed','closed','','2014-revision-v1','','','2021-02-16 21:52:40','2021-02-16 21:52:40','',2014,'https://www.drfields.com/uncategorized/2014-revision-v1/',0,'revision','',0),(4510,9,'2021-02-16 23:44:26','2021-02-16 23:44:26','<h2>Prolotherapy: Is It For You?</h2>\n[caption id=\"attachment_4513\" align=\"alignright\" width=\"390\"]<img class=\"wp-image-4513\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-1-copy-500x500.png\" alt=\"Dextrose Prolotherapy\" width=\"390\" height=\"390\" /> <em><strong>Dextrose Prolotherapy: Repair Your Joint Non-Surgically!</strong></em><br /><br />[/caption]\n\nDextrose Prolotherapy is a natural and effective treatment to strengthen specific joint and spine areas and eliminate the pain. Prolotherapy stimulates the body to repair the painful area and starts developing new healthy, strong tissue. One’s body – and their own immune system – proliferates the tissue.\n\nProlotherapy is performed as an in-office injection procedure. And research has shown the treatment to be effective, trustworthy, and reliable. In many cases, it can be used as an alternative to surgical treatments. And Prolotherapy is often superior to other treatments because it gets to the root of the problem. This regenerative therapy relieves chronic joint and spine pain problems by getting to the source of the pain. The result? You can get back to your active lifestyle.\n<h3>What Can I Expect From Dextrose Prolotherapy at OrthoRegen?</h3>\n<ul>\n 	<li>In our clinic, we offer Comprehensive Prolotherapy. By using this Prolotherapy technique, it means that all of the affected soft tissue areas of the joint are treated for the best possible repair and outcome. (Platelet Rich Plasma and/or Stem Cell Therapy may be recommended in more serious joint degeneration cases. And at OrthoRegen, we use the Gold Standard in Stem Cell Therapy. Find out more about why the <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Gold Standard in Stem Cell Therapy</a> is different by clicking <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">here</a>.</li>\n 	<li><strong>Regenerative Prolotherapy injection treatments </strong>treat joint and spine pain by repairing damaged and weakened ligaments and tendons.</li>\n 	<li>Dextrose Prolotherapy is a viable <strong>alternative to surgery</strong>, <strong>cortisone,</strong> and other steroidal injections.</li>\n 	<li>Prolotherapy is a <strong>safe, affordable option</strong> that allows you to keep working and remain active.</li>\n 	<li><strong>The Comprehensive Prolotherapy difference:</strong> It is typically best to treat <strong>all or most</strong> of the ligaments of an injured and unstable joint, especially when the surrounding structures are painful.</li>\n</ul>\n<h3>What makes an ideal <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> candidate?</h3>\n<ul>\n 	<li>The presence of ligament or tendon pain</li>\n 	<li>A desire to get better and follow the necessary treatment plan</li>\n 	<li>Maintaining a positive mental outlook and minimizing stress.</li>\n 	<li>Following a healthy diet is recommended.</li>\n 	<li>Doing your best to optimize your immune system.</li>\n</ul>\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! It\'s Free</a>\n<h2><strong>What Does the Research Say About Prolotherapy?</strong></h2>\n<ul>\n 	<li>A May 2020 study in the<strong> <em>Annals of Family Medicine</em></strong> made the following statement about their research findings:<em>“Intra-articular dextrose prolotherapy injections reduced pain, improved function and quality of life in patients with knee osteoarthritis compared with blinded saline injections.</em> The procedure is straightforward and safe; the adherence and satisfaction were high.”1</li>\n 	<li>Another May study published in <strong><em>The Journal of Alternative and Complementary Medicine</em></strong> said, <em>“These findings suggest that dextrose prolotherapy is effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.</em>\"2</li>\n 	<li>In January 2019, a research article about Dextrose <span class=\"highlight\">Prolotherapy</span> for Symptomatic <span class=\"highlight\">Knee</span> Osteoarthritis in the <em><strong>Journal of Alternative and Complementary Medicine</strong> </em>concluded, <em>“These data suggest that prolotherapy in this primary care clinic is feasible and acceptable.\" 3 </em></li>\n</ul>\n<h3>Choose A Natural, Non-Surgical Method: Prolotherapy</h3>\nProlotherapy treatments are a natural non-surgical method that assists the body in healing injured or weakened joints, ligaments, and tendons. With Dextrose Prolotherapy, the weakened areas of the joint become stronger. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated, and motion is restored.\n\nDon\'t wait any longer. Call <a href=\"tel:+310-453-1234\"><span class=\"wsm_phone\">310-453-1234</span></a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields’ office</a> to set up an in-person consultation.\n<h3>References:</h3>\n1 Shan Sit RW, Keung Wu RW, Rabago D, et al. <a href=\"https://www.annfammed.org/content/18/3/235\" target=\"_blank\" rel=\"noopener noreferrer\">Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis</a>: A Randomized Controlled Trial. <i>Ann Fam Med</i>. 2020;18(3):235‐242. doi:10.1370/afm.2520 [<a href=\"https://scholar.google.com/scholar?cluster=11142953714076712894&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]\n\n2Sert AT, Sen EI, Esmaeilzadeh S, Ozcan E. <a href=\"https://pubmed.ncbi.nlm.nih.gov/32223554/\" target=\"_blank\" rel=\"noopener noreferrer\">The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study</a>. <i>J Altern Complement Med</i>. 2020;26(5):409‐417. doi:10.1089/acm.2019.0335 [<a href=\"https://scholar.google.com/scholar?cluster=4570911058763587373&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]\n\nRabago D, Kansariwala I, Marshall D, Nourani B, Stiffler-Joachim M, Heiderscheit B. <a href=\"https://pubmed.ncbi.nlm.nih.gov/30688517/\" target=\"_blank\" rel=\"noopener noreferrer\">Dextrose Prolotherapy for Symptomatic Knee Osteoarthritis</a>: Feasibility, Acceptability, and Patient-Oriented Outcomes in a Pilot-Level Quality Improvement Project. The Journal of Alternative and Complementary Medicine. 2019 Jan 28. [<a href=\"https://scholar.google.com/scholar?cluster=14882716272312898995&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]','Dextrose Prolotherapy - Is It For You','','inherit','closed','closed','','1454-autosave-v1','','','2021-02-16 23:44:26','2021-02-16 23:44:26','',1454,'https://www.drfields.com/uncategorized/1454-autosave-v1/',0,'revision','',0),(4511,9,'2021-02-16 23:16:17','2021-02-16 23:16:17','<h3>Prolotherapy: Is It For You?</h3>\r\n<img class=\"size-full wp-image-1078 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-smiling.jpg\" alt=\"Woman Smiling\" width=\"200\" height=\"184\" />\r\n\r\nDextrose Prolotherapy is a natural and effective treatment to strengthen specific joint and spine areas and eliminate the pain. Prolotherapy stimulates the body to repair the painful area and starts the growth of new healthy, strong tissue. One’s body – and their own immune system – proliferates the tissue.\r\n\r\nProlotherapy is performed as an in-office injection procedure. And research has shown the treatment to be effective, trustworthy, and reliable. In many cases, it can be used as an alternative to surgical treatments. Prolotherapy is often superior to other treatments because it gets to the root of the problem. By getting to the source of the pain, this regenerative therapy relieves the problems of chronic joint and spine pain. The result? You can get back to your active lifestyle.\r\n<h3>What Can I Expect From Dextrose Prolotherapy at OrthoRegen?</h3>\r\n<ul>\r\n 	<li>In our clinic, we offer Comprehensive Prolotherapy. This Prolotherapy technique means that all of the affected soft tissue areas of the joint are treated for the best possible repair and outcome. In cases of more serious joint degeneration, Platelet Rich Plasma and/or Stem Cell Therapy may be recommended. And at OrthoRegen, we use the Gold Standard in Stem Cell Therapy. Find out more about why the <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Gold Standard in Stem Cell Therapy</a> is different by clicking <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">here</a>.</li>\r\n 	<li>Prolotherapy is a <strong>regenerative injection treatment </strong>used to treat joint and spine pain by repairing damaged and weakened ligaments and tendons.</li>\r\n 	<li>Prolotherapy is a viable <strong>alternative to surgery</strong>, <strong>cortisone,</strong> and other steroidal injections.</li>\r\n 	<li>Prolotherapy  is a <strong>safe, affordable option</strong> that allows you to keep working and remain active.</li>\r\n 	<li><strong>Comprehensive Prolotherapy difference:</strong> It is typically best to treat <strong>all or most</strong> of the ligaments of an injured and unstable joint, especially when the surrounding structures are painful.</li>\r\n</ul>\r\n<h3>What makes an ideal <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> candidate?</h3>\r\n<ul>\r\n 	<li>Ligament or tendon pain</li>\r\n 	<li>Desire to get better and follow a treatment plan</li>\r\n 	<li>Positive mental outlook</li>\r\n 	<li>Healthy diet</li>\r\n 	<li>Strong immune system</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! It\'s Free</a>\r\n<h2><strong>What Does the Research Say About Prolotherapy?</strong></h2>\r\n<ul>\r\n 	<li>A May 2020 study in the <em>Annals of Family Medicine</em> made the following  statement about their research findings:<em>“Intra-articular dextrose prolotherapy injections reduced pain, improved function and quality of life in patients with knee osteoarthritis compared with blinded saline injections. The procedure is straightforward and safe; the adherence and satisfaction were high.”1</em></li>\r\n 	<li>Another May study published in <em>The Journal of Alternative and Complementary Medicine</em> said, <em>“These findings suggest that dextrose prolotherapy is effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.\"2</em></li>\r\n 	<li>In January 2019, a research article on Dextrose <span class=\"highlight\">Prolotherapy</span> for Symptomatic <span class=\"highlight\">Knee</span> Osteoarthritis in the <em>Journal of Alternative and Complementary Medicine </em>concluded, <em>“These data suggest that prolotherapy in this primary care clinic is feasible and acceptable.\" 3 </em></li>\r\n</ul>\r\n<h3>Choose A Natural, Non-Surgical Method: Prolotherapy</h3>\r\nProlotherapy treatments are a natural non-surgical method that assists the body to heal injured or weakened joints, ligaments, and tendons. With Dextrose Prolotherapy, the weakened areas of the joint become stronger. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated, and motion is restored.\r\n\r\nDon\'t wait any longer. Call <a href=\"tel:+310-453-1234\"><span class=\"wsm_phone\">310-453-1234</span></a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields’ office</a>  to set up an in-person consultation.\r\n<h3>References:</h3>\r\n1 Shan Sit RW, Keung Wu RW, Rabago D, et al. <a href=\"https://www.annfammed.org/content/18/3/235\" target=\"_blank\" rel=\"noopener noreferrer\">Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis</a>: A Randomized Controlled Trial. <i>Ann Fam Med</i>. 2020;18(3):235‐242. doi:10.1370/afm.2520 [<a href=\"https://scholar.google.com/scholar?cluster=11142953714076712894&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]\r\n\r\n2Sert AT, Sen EI, Esmaeilzadeh S, Ozcan E. <a href=\"https://pubmed.ncbi.nlm.nih.gov/32223554/\" target=\"_blank\" rel=\"noopener noreferrer\">The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study</a>. <i>J Altern Complement Med</i>. 2020;26(5):409‐417. doi:10.1089/acm.2019.0335 [<a href=\"https://scholar.google.com/scholar?cluster=4570911058763587373&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]\r\n\r\nRabago D, Kansariwala I, Marshall D, Nourani B, Stiffler-Joachim M, Heiderscheit B. <a href=\"https://pubmed.ncbi.nlm.nih.gov/30688517/\" target=\"_blank\" rel=\"noopener noreferrer\">Dextrose Prolotherapy for Symptomatic Knee Osteoarthritis</a>: Feasibility, Acceptability, and Patient-Oriented Outcomes in a Pilot-Level Quality Improvement Project. The Journal of Alternative and Complementary Medicine. 2019 Jan 28. [<a href=\"https://scholar.google.com/scholar?cluster=14882716272312898995&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]','Prolotherapy - Is It For You','','inherit','closed','closed','','1454-revision-v1','','','2021-02-16 23:16:17','2021-02-16 23:16:17','',1454,'https://www.drfields.com/uncategorized/1454-revision-v1/',0,'revision','',0),(4512,9,'2021-02-16 23:31:13','2021-02-16 23:31:13','<h3>Dextrose Prolotherapy: Is It For You?</h3>\r\n&nbsp;\r\n\r\nDextrose Prolotherapy is a natural and effective treatment to strengthen specific joint and spine areas and eliminate the pain. Prolotherapy stimulates the body to repair the painful area and starts the growth of new healthy, strong tissue. One’s body – and their own immune system – proliferates the tissue.\r\n\r\nProlotherapy is performed as an in-office injection procedure. And research has shown the treatment to be effective, trustworthy, and reliable. In many cases, it can be used as an alternative to surgical treatments. Prolotherapy is often superior to other treatments because it gets to the root of the problem. By getting to the source of the pain, this regenerative therapy relieves the problems of chronic joint and spine pain. The result? You can get back to your active lifestyle.\r\n<h3>What Can I Expect From Dextrose Prolotherapy at OrthoRegen?</h3>\r\n<ul>\r\n 	<li>In our clinic, we offer Comprehensive Prolotherapy. This Prolotherapy technique means that all of the affected soft tissue areas of the joint are treated for the best possible repair and outcome. In cases of more serious joint degeneration, Platelet Rich Plasma and/or Stem Cell Therapy may be recommended. And at OrthoRegen, we use the Gold Standard in Stem Cell Therapy. Find out more about why the <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Gold Standard in Stem Cell Therapy</a> is different by clicking <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">here</a>.</li>\r\n 	<li>Prolotherapy is a <strong>regenerative injection treatment </strong>used to treat joint and spine pain by repairing damaged and weakened ligaments and tendons.</li>\r\n 	<li>Prolotherapy is a viable <strong>alternative to surgery</strong>, <strong>cortisone,</strong> and other steroidal injections.</li>\r\n 	<li>Prolotherapy  is a <strong>safe, affordable option</strong> that allows you to keep working and remain active.</li>\r\n 	<li><strong>Comprehensive Prolotherapy difference:</strong> It is typically best to treat <strong>all or most</strong> of the ligaments of an injured and unstable joint, especially when the surrounding structures are painful.</li>\r\n</ul>\r\n<h3>What makes an ideal <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> candidate?</h3>\r\n<ul>\r\n 	<li>Ligament or tendon pain</li>\r\n 	<li>Desire to get better and follow a treatment plan</li>\r\n 	<li>Positive mental outlook</li>\r\n 	<li>Healthy diet</li>\r\n 	<li>Strong immune system</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! It\'s Free</a>\r\n<h2><strong>What Does the Research Say About Prolotherapy?</strong></h2>\r\n<ul>\r\n 	<li>A May 2020 study in the <em>Annals of Family Medicine</em> made the following  statement about their research findings:<em>“Intra-articular dextrose prolotherapy injections reduced pain, improved function and quality of life in patients with knee osteoarthritis compared with blinded saline injections. The procedure is straightforward and safe; the adherence and satisfaction were high.”1</em></li>\r\n 	<li>Another May study published in <em>The Journal of Alternative and Complementary Medicine</em> said, <em>“These findings suggest that dextrose prolotherapy is effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.\"2</em></li>\r\n 	<li>In January 2019, a research article on Dextrose <span class=\"highlight\">Prolotherapy</span> for Symptomatic <span class=\"highlight\">Knee</span> Osteoarthritis in the <em>Journal of Alternative and Complementary Medicine </em>concluded, <em>“These data suggest that prolotherapy in this primary care clinic is feasible and acceptable.\" 3 </em></li>\r\n</ul>\r\n<h3>Choose A Natural, Non-Surgical Method: Prolotherapy</h3>\r\nProlotherapy treatments are a natural non-surgical method that assists the body to heal injured or weakened joints, ligaments, and tendons. With Dextrose Prolotherapy, the weakened areas of the joint become stronger. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated, and motion is restored.\r\n\r\nDon\'t wait any longer. Call <a href=\"tel:+310-453-1234\"><span class=\"wsm_phone\">310-453-1234</span></a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields’ office</a>  to set up an in-person consultation.\r\n<h3>References:</h3>\r\n1 Shan Sit RW, Keung Wu RW, Rabago D, et al. <a href=\"https://www.annfammed.org/content/18/3/235\" target=\"_blank\" rel=\"noopener noreferrer\">Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis</a>: A Randomized Controlled Trial. <i>Ann Fam Med</i>. 2020;18(3):235‐242. doi:10.1370/afm.2520 [<a href=\"https://scholar.google.com/scholar?cluster=11142953714076712894&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]\r\n\r\n2Sert AT, Sen EI, Esmaeilzadeh S, Ozcan E. <a href=\"https://pubmed.ncbi.nlm.nih.gov/32223554/\" target=\"_blank\" rel=\"noopener noreferrer\">The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study</a>. <i>J Altern Complement Med</i>. 2020;26(5):409‐417. doi:10.1089/acm.2019.0335 [<a href=\"https://scholar.google.com/scholar?cluster=4570911058763587373&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]\r\n\r\nRabago D, Kansariwala I, Marshall D, Nourani B, Stiffler-Joachim M, Heiderscheit B. <a href=\"https://pubmed.ncbi.nlm.nih.gov/30688517/\" target=\"_blank\" rel=\"noopener noreferrer\">Dextrose Prolotherapy for Symptomatic Knee Osteoarthritis</a>: Feasibility, Acceptability, and Patient-Oriented Outcomes in a Pilot-Level Quality Improvement Project. The Journal of Alternative and Complementary Medicine. 2019 Jan 28. [<a href=\"https://scholar.google.com/scholar?cluster=14882716272312898995&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]','Dextrose Prolotherapy - Is It For You','','inherit','closed','closed','','1454-revision-v1','','','2021-02-16 23:31:13','2021-02-16 23:31:13','',1454,'https://www.drfields.com/uncategorized/1454-revision-v1/',0,'revision','',0),(4513,9,'2021-02-16 23:31:41','2021-02-16 23:31:41','Dextrose Prolotherapy \nRepair your joint non-surgically','Dextrose Prolotherapy','Dextrose Prolotherapy: \nRepair your joint non-surgically','inherit','open','closed','','dextrose-prolotherapy-1-copy','','','2021-02-16 23:32:51','2021-02-16 23:32:51','',1454,'https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-1-copy.png',0,'attachment','image/png',0),(4514,9,'2021-02-16 23:39:58','2021-02-16 23:39:58','<h2>Dextrose Prolotherapy: Is It For You?</h2>\r\n[caption id=\"attachment_4513\" align=\"alignright\" width=\"390\"]<img class=\"wp-image-4513\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-1-copy-500x500.png\" alt=\"Dextrose Prolotherapy\" width=\"390\" height=\"390\" /> <em><strong>Dextrose Prolotherapy: Repair Your Joint Non-Surgically!</strong></em><br /><br />[/caption]\r\n\r\nDextrose Prolotherapy is a natural and effective treatment to strengthen specific joint and spine areas and eliminate the pain. Prolotherapy stimulates the body to repair the painful area and starts the growth of new healthy, strong tissue. One’s body – and their own immune system – proliferates the tissue\r\n\r\nProlotherapy is performed as an in-office injection procedure. And research has shown the treatment to be effective, trustworthy, and reliable. In many cases, it can be used as an alternative to surgical treatments. Prolotherapy is often superior to other treatments because it gets to the root of the problem. By getting to the source of the pain, this regenerative therapy relieves the problems of chronic joint and spine pain. The result? You can get back to your active lifestyle.\r\n<h3>What Can I Expect From Dextrose Prolotherapy at OrthoRegen?</h3>\r\n<ul>\r\n 	<li>In our clinic, we offer Comprehensive Prolotherapy. This Prolotherapy technique means that all of the affected soft tissue areas of the joint are treated for the best possible repair and outcome. In cases of more serious joint degeneration, Platelet Rich Plasma and/or Stem Cell Therapy may be recommended. And at OrthoRegen, we use the Gold Standard in Stem Cell Therapy. Find out more about why the <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Gold Standard in Stem Cell Therapy</a> is different by clicking <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">here</a>.</li>\r\n 	<li><strong>Regenerative Prolotherapy injection treatments </strong>areused to treat joint and spine pain by repairing damaged and weakened ligaments and tendons.</li>\r\n 	<li>Dextrose Prolotherapy is a viable <strong>alternative to surgery</strong>, <strong>cortisone,</strong> and other steroidal injections.</li>\r\n 	<li>Prolotherapy  is a <strong>safe, affordable option</strong> that allows you to keep working and remain active.</li>\r\n 	<li><strong>The Comprehensive Prolotherapy difference:</strong> It is typically best to treat <strong>all or most</strong> of the ligaments of an injured and unstable joint, especially when the surrounding structures are painful.</li>\r\n</ul>\r\n<h3>What makes an ideal <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> candidate?</h3>\r\n<ul>\r\n 	<li>The presence of ligament or tendon pain</li>\r\n 	<li>A desire to get better and follow the necessary treatment plan</li>\r\n 	<li>Maintaining a positive mental outlook and minimizing stress</li>\r\n 	<li>Following a healthy diet is recommended</li>\r\n 	<li>Doing your best to optimize your immune system</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! It\'s Free</a>\r\n<h2><strong>What Does the Research Say About Prolotherapy?</strong></h2>\r\n<ul>\r\n 	<li>A May 2020 study in the<strong> <em>Annals of Family Medicine</em></strong> made the following  statement about their research findings:<em>“Intra-articular dextrose prolotherapy injections reduced pain, improved function and quality of life in patients with knee osteoarthritis compared with blinded saline injections. The procedure is straightforward and safe; the adherence and satisfaction were high.”1</em></li>\r\n 	<li>Another May study published in <strong><em>The Journal of Alternative and Complementary Medicine</em></strong> said, <em>“These findings suggest that dextrose prolotherapy is effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.\"2</em></li>\r\n 	<li>In January 2019, a research article about Dextrose <span class=\"highlight\">Prolotherapy</span> for Symptomatic <span class=\"highlight\">Knee</span> Osteoarthritis in the <em><strong>Journal of Alternative and Complementary Medicine</strong> </em>concluded, <em>“These data suggest that prolotherapy in this primary care clinic is feasible and acceptable.\" 3 </em></li>\r\n</ul>\r\n<h3>Choose A Natural, Non-Surgical Method: Prolotherapy</h3>\r\nProlotherapy treatments are a natural non-surgical method that assists the body to heal injured or weakened joints, ligaments, and tendons. With Dextrose Prolotherapy, the weakened areas of the joint become stronger. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated, and motion is restored.\r\n\r\nDon\'t wait any longer. Call <a href=\"tel:+310-453-1234\"><span class=\"wsm_phone\">310-453-1234</span></a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields’ office</a>  to set up an in-person consultation.\r\n<h3>References:</h3>\r\n1 Shan Sit RW, Keung Wu RW, Rabago D, et al. <a href=\"https://www.annfammed.org/content/18/3/235\" target=\"_blank\" rel=\"noopener noreferrer\">Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis</a>: A Randomized Controlled Trial. <i>Ann Fam Med</i>. 2020;18(3):235‐242. doi:10.1370/afm.2520 [<a href=\"https://scholar.google.com/scholar?cluster=11142953714076712894&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]\r\n\r\n2Sert AT, Sen EI, Esmaeilzadeh S, Ozcan E. <a href=\"https://pubmed.ncbi.nlm.nih.gov/32223554/\" target=\"_blank\" rel=\"noopener noreferrer\">The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study</a>. <i>J Altern Complement Med</i>. 2020;26(5):409‐417. doi:10.1089/acm.2019.0335 [<a href=\"https://scholar.google.com/scholar?cluster=4570911058763587373&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]\r\n\r\nRabago D, Kansariwala I, Marshall D, Nourani B, Stiffler-Joachim M, Heiderscheit B. <a href=\"https://pubmed.ncbi.nlm.nih.gov/30688517/\" target=\"_blank\" rel=\"noopener noreferrer\">Dextrose Prolotherapy for Symptomatic Knee Osteoarthritis</a>: Feasibility, Acceptability, and Patient-Oriented Outcomes in a Pilot-Level Quality Improvement Project. The Journal of Alternative and Complementary Medicine. 2019 Jan 28. [<a href=\"https://scholar.google.com/scholar?cluster=14882716272312898995&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]','Dextrose Prolotherapy - Is It For You','','inherit','closed','closed','','1454-revision-v1','','','2021-02-16 23:39:58','2021-02-16 23:39:58','',1454,'https://www.drfields.com/uncategorized/1454-revision-v1/',0,'revision','',0),(4515,9,'2021-02-16 23:44:38','2021-02-16 23:44:38','<h2>Prolotherapy: Is It For You?</h2>\r\n[caption id=\"attachment_4513\" align=\"alignright\" width=\"390\"]<img class=\"wp-image-4513\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-1-copy-500x500.png\" alt=\"Dextrose Prolotherapy\" width=\"390\" height=\"390\" /> <em><strong>Dextrose Prolotherapy: Repair Your Joint Non-Surgically!</strong></em><br /><br />[/caption]\r\n\r\nDextrose Prolotherapy is a natural and effective treatment to strengthen specific joint and spine areas and eliminate the pain. Prolotherapy stimulates the body to repair the painful area and starts developing new healthy, strong tissue. One’s body – and their own immune system – proliferates the tissue.\r\n\r\nProlotherapy is performed as an in-office injection procedure. And research has shown the treatment to be effective, trustworthy, and reliable. In many cases, it can be used as an alternative to surgical treatments. And Prolotherapy is often superior to other treatments because it gets to the root of the problem. This regenerative therapy relieves chronic joint and spine pain problems by getting to the source of the pain. The result? You can get back to your active lifestyle.\r\n<h3>What Can I Expect From Dextrose Prolotherapy at OrthoRegen?</h3>\r\n<ul>\r\n 	<li>In our clinic, we offer Comprehensive Prolotherapy. By using this Prolotherapy technique, it means that all of the affected soft tissue areas of the joint are treated for the best possible repair and outcome. (Platelet Rich Plasma and/or Stem Cell Therapy may be recommended in more serious joint degeneration cases. And at OrthoRegen, we use the Gold Standard in Stem Cell Therapy. Find out more about why the <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Gold Standard in Stem Cell Therapy</a> is different by clicking <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">here</a>.)</li>\r\n 	<li><strong>Regenerative Prolotherapy injection treatments </strong>treat joint and spine pain by repairing damaged and weakened ligaments and tendons.</li>\r\n 	<li>Dextrose Prolotherapy is a viable <strong>alternative to surgery</strong>, <strong>cortisone,</strong> and other steroidal injections.</li>\r\n 	<li>Prolotherapy is a <strong>safe, affordable option</strong> that allows you to keep working and remain active.</li>\r\n 	<li><strong>The Comprehensive Prolotherapy difference:</strong> It is typically best to treat <strong>all or most</strong> of the ligaments of an injured and unstable joint, especially when the surrounding structures are painful.</li>\r\n</ul>\r\n<h3>What makes an ideal <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> candidate?</h3>\r\n<ul>\r\n 	<li>The presence of ligament or tendon pain</li>\r\n 	<li>A desire to get better and follow the necessary treatment plan</li>\r\n 	<li>Maintaining a positive mental outlook and minimizing stress.</li>\r\n 	<li>Following a healthy diet is recommended.</li>\r\n 	<li>Doing your best to optimize your immune system.</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! It\'s Free</a>\r\n<h2><strong>What Does the Research Say About Prolotherapy?</strong></h2>\r\n<ul>\r\n 	<li>A May 2020 study in the<strong> <em>Annals of Family Medicine</em></strong> made the following statement about their research findings:<em>“Intra-articular dextrose prolotherapy injections reduced pain, improved function and quality of life in patients with knee osteoarthritis compared with blinded saline injections.</em> The procedure is straightforward and safe; the adherence and satisfaction were high.”1</li>\r\n 	<li>Another May study published in <strong><em>The Journal of Alternative and Complementary Medicine</em></strong> said, <em>“These findings suggest that dextrose prolotherapy is effective at reducing pain and improving the functional status and quality of life in patients with knee osteoarthritis.</em>\"2</li>\r\n 	<li>In January 2019, a research article about Dextrose <span class=\"highlight\">Prolotherapy</span> for Symptomatic <span class=\"highlight\">Knee</span> Osteoarthritis in the <em><strong>Journal of Alternative and Complementary Medicine</strong> </em>concluded, <em>“These data suggest that prolotherapy in this primary care clinic is feasible and acceptable.\" 3 </em></li>\r\n</ul>\r\n<h3>Choose A Natural, Non-Surgical Method: Prolotherapy</h3>\r\nProlotherapy treatments are a natural non-surgical method that assists the body in healing injured or weakened joints, ligaments, and tendons. With Dextrose Prolotherapy, the weakened areas of the joint become stronger. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated, and motion is restored.\r\n\r\nDon\'t wait any longer. Call <a href=\"tel:+310-453-1234\"><span class=\"wsm_phone\">310-453-1234</span></a> today for a free phone consultation with Dr. Peter Fields to see if Prolotherapy treatment can get you pain-free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields’ office</a> to set up an in-person consultation.\r\n<h3>References:</h3>\r\n1 Shan Sit RW, Keung Wu RW, Rabago D, et al. <a href=\"https://www.annfammed.org/content/18/3/235\" target=\"_blank\" rel=\"noopener noreferrer\">Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis</a>: A Randomized Controlled Trial. <i>Ann Fam Med</i>. 2020;18(3):235‐242. doi:10.1370/afm.2520 [<a href=\"https://scholar.google.com/scholar?cluster=11142953714076712894&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]\r\n\r\n2Sert AT, Sen EI, Esmaeilzadeh S, Ozcan E. <a href=\"https://pubmed.ncbi.nlm.nih.gov/32223554/\" target=\"_blank\" rel=\"noopener noreferrer\">The Effects of Dextrose Prolotherapy in Symptomatic Knee Osteoarthritis: A Randomized Controlled Study</a>. <i>J Altern Complement Med</i>. 2020;26(5):409‐417. doi:10.1089/acm.2019.0335 [<a href=\"https://scholar.google.com/scholar?cluster=4570911058763587373&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]\r\n\r\nRabago D, Kansariwala I, Marshall D, Nourani B, Stiffler-Joachim M, Heiderscheit B. <a href=\"https://pubmed.ncbi.nlm.nih.gov/30688517/\" target=\"_blank\" rel=\"noopener noreferrer\">Dextrose Prolotherapy for Symptomatic Knee Osteoarthritis</a>: Feasibility, Acceptability, and Patient-Oriented Outcomes in a Pilot-Level Quality Improvement Project. The Journal of Alternative and Complementary Medicine. 2019 Jan 28. [<a href=\"https://scholar.google.com/scholar?cluster=14882716272312898995&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]','Dextrose Prolotherapy - Is It For You','','inherit','closed','closed','','1454-revision-v1','','','2021-02-16 23:44:38','2021-02-16 23:44:38','',1454,'https://www.drfields.com/uncategorized/1454-revision-v1/',0,'revision','',0),(4516,8,'2021-02-17 22:01:57','2021-02-17 22:01:57','','iwp_log_602d9255274b8','','publish','closed','closed','','iwp_log_602d9255274b8','','','2021-02-17 22:01:57','2021-02-17 22:01:57','',0,'https://www.drfields.com/iwp_log/iwp_log_602d9255274b8/',0,'iwp_log','',0),(4518,9,'2021-02-23 00:39:12','2021-02-23 00:39:12','[caption id=\"attachment_4520\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4520\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee.-avoid-replacement2-1-400x500.png\" alt=\"Knee. Avoid Replacement2\" width=\"400\" height=\"500\" /> <em><strong>                   Joint Replacement Alternative</strong></em>[/caption]\n<h3>What\'s Your Joint Replacement Alternative?</h3>\nJoint replacements are on the rise. In fact, they have increased so much that, in the last ten years, knee replacements have more than doubled and hip replacements more than tripled. <sup><strong>1</strong></sup> As life expectancy increases, this number will continue to go up. What\'s the reason for so many?Arthritis is the most common cause of chronic knee and hip pain, and this condition eventually leads to joint replacement. Other causes of knee and hip pain include bursitis, tendonitis, sports injuries, chondromalacia patellae, ligament injury, meniscal injury, hip impingement, and labral injury, all of which often lead to an eventual surgical recommendation or joint replacement intervention. With all of these problems, am I destined for joint replacement? Or is there a joint replacement alternative?\n<h4>Traditional Therapies for Joint Pain May Buy You Time. But They Aren\'t Joint Replacement Alternatives</h4>\nThere are a lot of common treatments that people with joint pain encounter prior to considering joint replacement. But why don\'t they fix the problem? It seems they just buy you time until the eventual joint replacement. So why is that?\n\nThe goal of traditional therapies is to decrease pain and improve function. Treatments, such as weight loss, exercise, physiotherapy, bracing, and orthotics, may help temporarily. They only buy you more time because they are unfortunately unable to actually repair the joint instability or source of the pain.\n\nLet\'s take a look at what\'s behind the problem. The increased mechanical stress caused by injury to the ligaments, meniscus, labrum, etc. changes the way the joint functions and makes the joint unstable. And that instability makes the soft tissue of the joint even more susceptible to further injury. What is the result? When left unrepaired, the long-lasting effect of continual joint instability is arthritis.\n\nAgain, many conventional treatments do not last in providing pain relief because they fail to repair the instability. They are also unable to prevent the eventual joint replacement. The road to arthritis, and the ensuing joint replacement, can only be remedied when the problem of joint instability is addressed.\n<h4>NSAIDS and Cortisone Interfere with Healing</h4>\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are conservative, non-surgical therapies generally recommended initially for pain alleviation. Although steroid injections and NSAIDs have been shown to be effective in decreasing inflammation and pain short-term, they do not reverse the disease.\n\nThey do however, inhibit the properties of healing. For this reason, their use is cautioned in those who have joint injuries and arthritis. Did you know that NSAIDs and corticosteroids have no beneficial effect on articular cartilage in arthritis? Instead, they accelerate the very disease for which they are most often used and prescribed, and are a catalyst towards joint replacement. That means, instead of being a joint replacement alternative, they actually propel you more quickly towards the problem.\n\nIt is interesting to point out that not long after doctors started injecting cortisone and other steroids into joints way back in the 1950s, reports of terrible joint diseases were already surfacing. And even back then, the intra-articular use of steroids was discouraged. Corticosteroid injections accelerate cartilage degeneration and joint destruction. Today, despite the dangers, cortisone use is widespread and has become the standard of care.\n<h4>What about the Popular Use of Hyaluronic Acid Injections for Joint Pain? Are They Joint Replacement Alternatives?</h4>\nUnfortunately, those who do find some pain relief from hyaluronic acid, generally only experience short-term results, which are frequently designed to delay the inevitable joint replacement.\n<h4>Does Arthroscopic Surgery Prevent Joint Replacement?</h4>\nAn attempt to eliminate pain or a painful area by the arthroscopic shaving, cutting, or removal of tissue will only delay the pain for a few years until the remaining tissue becomes degenerated. Arthroscopy is a direct assault to the joint tissue. Arthroscopy, like the aforementioned treatments, may give some temporary relief of symptoms. But in the long-term, it will destabilize the joint and boost degeneration. In the long-run, these surgeries can lead to even more surgeries and the eventual joint replacement.\n\nEven athletes, when faced with surgical repair of injuries, like an ACL tear for example, have a low rate of return to sport, and a high rate of new injury. That\'s because surgery makes the joint instability worse, not better. Many surgeries such as labral repair and ACL reconstruction can provide remarkable short-term pain relief. However, the replacement material will not function long-term like the original.\n\nACL grafts and labral repairs with titanium tacks just do not have the same pliability as the original tissue and cannot restore the joint back to normal. Eventually, they will cause problems.\n\nThe athlete or any joint pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or corticosteroid injection, the risk of developing long-term arthritis and the eventual joint replacement is greatly increased. The key to keeping the joint strong is to stimulate the area to heal.\n<h4>Regenerative Orthopedics Is An Actual Joint Replacement Alternative Because It Repairs the Joint</h4>\nRegenerative Orthopedics can help you to avoid joint replacement by stimulating healing and by repairing the joint. Plus, it does not interfere with the normal healing process of the body. PRP, Prolotherapy, and the Gold Standard in Stem Cell Therapy, as utilized at OrthoRegen<sup>®</sup>, are types of Regenerative Orthopedics that stimulate the normal reparative mechanisms of the body by laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee and hip labrum, and boosting cartilage growth.\n\nAll of these regenerative therapies work to reduce the chance of long-term arthritis and joint replacement. Platelet Rich Plasma, Prolotherapy, and Stem Cell Therapy offer hope to those suffering from various types of joint pain and to those trying to avoid joint replacement. While surgery is necessary in a small percentage of patients, non-surgical regenerative therapies should be first-line, conservative treatments tried prior to surgery.\n\nHave you already had surgery, but continue to experience pain? Regenerative Orthopedics is effective even after surgery, when continued pain is experienced or for arthritis that was accelerated due to the surgery. Regenerative Orthopedics offers a promising alternative to joint replacement and the opportunity for healing and return to function for those suffering from chronic joint pain.\n\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Ever Wonder If There Is A Joint Replacement Alternative?Click here for more articles by Dr. Fields</strong></a>\n\n<em>1. Kim, S. Changes in surgical loads and economic burden of hip and knee replacements in the US: 1997–2004. Arthritis &amp; Rheumatism,2008: 59: 481–488. </em>doi<em>:10.1002/art.23525</em>','Ever Wonder If You Have Another Choice Other Than Joint Replacement?','','inherit','closed','closed','','1406-autosave-v1','','','2021-02-23 00:39:12','2021-02-23 00:39:12','',1406,'https://www.drfields.com/uncategorized/1406-autosave-v1/',0,'revision','',0),(4519,9,'2021-02-23 00:35:12','2021-02-23 00:35:12','<h4>What\'s Your Joint Replacement Alternative?</h4>\r\nJoint replacements are on the rise. In fact, they have increased so much that, in the last ten years, knee replacements have more than doubled and hip replacements more than tripled. <sup><strong>1</strong></sup> As life expectancy increases, this number will continue to go up. What\'s the reason for so many?Arthritis is the most common cause of chronic knee and hip pain, and this condition eventually leads to joint replacement. Other causes of knee and hip pain include bursitis, tendonitis, sports injuries, chondromalacia patellae, ligament injury, meniscal injury, hip impingement, and labral injury, all of which often lead to an eventual surgical recommendation or joint replacement intervention. With all of these problems, am I destined for joint replacement? Or is there a joint replacement alternative?\r\n<h4>Traditional Therapies for Joint Pain May Buy You Time. But They Aren\'t Joint Replacement Alternatives</h4>\r\nThere are a lot of common treatments that people with joint pain encounter prior to considering joint replacement. But why don\'t they fix the problem? It seems they just buy you time until the eventual joint replacement. So why is that?\r\n\r\nThe goal of traditional therapies is to decrease pain and improve function. Treatments, such as weight loss, exercise, physiotherapy, bracing, and orthotics, may help temporarily. They only buy you more time because they are unfortunately unable to actually repair the joint instability or source of the pain.\r\n\r\nLet\'s take a look at what\'s behind the problem. The increased mechanical stress caused by injury to the ligaments, meniscus, labrum, etc. changes the way the joint functions and makes the joint unstable. And that instability makes the soft tissue of the joint even more susceptible to further injury. What is the result? When left unrepaired, the long-lasting effect of continual joint instability is arthritis.\r\n\r\nAgain, many conventional treatments do not last in providing pain relief because they fail to repair the instability. They are also unable to prevent the eventual joint replacement. The road to arthritis, and the ensuing joint replacement, can only be remedied when the problem of joint instability is addressed.\r\n<h4>NSAIDS and Cortisone Interfere with Healing</h4>\r\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are conservative, non-surgical therapies generally recommended initially for pain alleviation. Although steroid injections and NSAIDs have been shown to be effective in decreasing inflammation and pain short-term, they do not reverse the disease.\r\n\r\nThey do however, inhibit the properties of healing. For this reason, their use is cautioned in those who have joint injuries and arthritis. Did you know that NSAIDs and corticosteroids have no beneficial effect on articular cartilage in arthritis? Instead, they accelerate the very disease for which they are most often used and prescribed, and are a catalyst towards joint replacement. That means, instead of being a joint replacement alternative, they actually propel you more quickly towards the problem.\r\n\r\nIt is interesting to point out that not long after doctors started injecting cortisone and other steroids into joints way back in the 1950s, reports of terrible joint diseases were already surfacing. And even back then, the intra-articular use of steroids was discouraged. Corticosteroid injections accelerate cartilage degeneration and joint destruction. Today, despite the dangers, cortisone use is widespread and has become the standard of care.\r\n<h4>What about the Popular Use of Hyaluronic Acid Injections for Joint Pain? Are They Joint Replacement Alternatives?</h4>\r\nUnfortunately, those who do find some pain relief from hyaluronic acid, generally only experience short-term results, which are frequently designed to delay the inevitable joint replacement.\r\n<h4>Does Arthroscopic Surgery Prevent Joint Replacement?</h4>\r\nAn attempt to eliminate pain or a painful area by the arthroscopic shaving, cutting, or removal of tissue will only delay the pain for a few years until the remaining tissue becomes degenerated. Arthroscopy is a direct assault to the joint tissue. Arthroscopy, like the aforementioned treatments, may give some temporary relief of symptoms. But in the long-term, it will destabilize the joint and boost degeneration. In the long-run, these surgeries can lead to even more surgeries and the eventual joint replacement.\r\n\r\nEven athletes, when faced with surgical repair of injuries, like an ACL tear for example, have a low rate of return to sport, and a high rate of new injury. That\'s because surgery makes the joint instability worse, not better. Many surgeries such as labral repair and ACL reconstruction can provide remarkable short-term pain relief. However, the replacement material will not function long-term like the original.\r\n\r\nACL grafts and labral repairs with titanium tacks just do not have the same pliability as the original tissue and cannot restore the joint back to normal. Eventually, they will cause problems.\r\n\r\nThe athlete or any joint pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or corticosteroid injection, the risk of developing long-term arthritis and the eventual joint replacement is greatly increased. The key to keeping the joint strong is to stimulate the area to heal.\r\n<h4>Regenerative Orthopedics Is An Actual Joint Replacement Alternative Because It Repairs the Joint</h4>\r\nRegenerative Orthopedics can help you to avoid joint replacement by stimulating healing and by repairing the joint. Plus, it does not interfere with the normal healing process of the body. PRP, Prolotherapy, and the Gold Standard in Stem Cell Therapy, as utilized at OrthoRegen<sup>®</sup>, are types of Regenerative Orthopedics that stimulate the normal reparative mechanisms of the body by laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee and hip labrum, and boosting cartilage growth.\r\n\r\nAll of these regenerative therapies work to reduce the chance of long-term arthritis and joint replacement. Platelet Rich Plasma, Prolotherapy, and Stem Cell Therapy offer hope to those suffering from various types of joint pain and to those trying to avoid joint replacement. While surgery is necessary in a small percentage of patients, non-surgical regenerative therapies should be first-line, conservative treatments tried prior to surgery.\r\n\r\nHave you already had surgery, but continue to experience pain? Regenerative Orthopedics is effective even after surgery, when continued pain is experienced or for arthritis that was accelerated due to the surgery. Regenerative Orthopedics offers a promising alternative to joint replacement and the opportunity for healing and return to function for those suffering from chronic joint pain.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Ever Wonder If There Is A Joint Replacement Alternative?Click here for more articles by Dr. Fields</strong></a>\r\n\r\n<em>1. Kim, S. Changes in surgical loads and economic burden of hip and knee replacements in the US: 1997–2004. Arthritis &amp; Rheumatism,2008: 59: 481–488. </em>doi<em>:10.1002/art.23525</em>','Ever Wonder If You Have Another Choice Other Than Joint Replacement?','','inherit','closed','closed','','1406-revision-v1','','','2021-02-23 00:35:12','2021-02-23 00:35:12','',1406,'https://www.drfields.com/uncategorized/1406-revision-v1/',0,'revision','',0),(4520,9,'2021-02-23 00:36:02','2021-02-23 00:36:02','Joint Replacement Alternative2','Joint Replacement Alternative','Joint Replacement Alternative','inherit','open','closed','','knee-avoid-replacement2-2','','','2021-02-23 00:36:59','2021-02-23 00:36:59','',1406,'https://www.drfields.com/wp-content/uploads/2019/06/knee.-avoid-replacement2-1.png',0,'attachment','image/png',0),(4521,9,'2021-02-23 00:43:48','2021-02-23 00:43:48','[caption id=\"attachment_4520\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4520\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee.-avoid-replacement2-1-400x500.png\" alt=\"Knee. Avoid Replacement2\" width=\"400\" height=\"500\" /> <em><strong>                   Joint Replacement Alternative</strong></em>[/caption]\r\n<h3>What\'s Your Joint Replacement Alternative?</h3>\r\nJoint replacements are on the rise. In fact, they have increased so much that, in the last ten years, knee replacements have more than doubled and hip replacements more than tripled. <sup><strong>1</strong></sup> As life expectancy increases, this number will continue to go up. What\'s the reason for so many? Arthritis is the most common cause of chronic knee and hip pain, and this condition eventually leads to joint replacement. Other causes of knee and hip pain include bursitis, tendonitis, sports injuries, chondromalacia patellae, ligament injury, meniscal injury, hip impingement, and labral injury, which often lead to an eventual surgical recommendation or joint replacement intervention. With all of these problems, am I destined for joint replacement? Or is there a joint replacement alternative?\r\n<h4>Traditional Therapies for Joint Pain May Buy You Time. But They Aren\'t Joint Replacement Alternatives.</h4>\r\nThere are a lot of common treatments that people with joint pain encounter before considering joint replacement. But why don\'t they fix the problem? It seems they just buy you time until the eventual joint replacement. So why is that?\r\n\r\nThe goal of traditional therapies is to decrease pain and improve function. Treatments, such as weight loss, exercise, physiotherapy, bracing, and orthotics, may help temporarily. They only buy you more time because they are unfortunately unable to repair the joint instability or source of the pain.\r\n\r\nLet\'s take a look at what\'s behind the problem. The increased mechanical stress caused by injury to the ligaments, meniscus, labrum, etc., changes the joint functions and makes the joint unstable. And that instability makes the soft tissue of the joint even more susceptible to further injury. What is the result? When left unrepaired, the long-lasting effect of continual joint instability is arthritis.\r\n\r\nAgain, many conventional treatments do not last in providing pain relief because they fail to repair the instability. They are also unable to prevent the eventual joint replacement. The road to arthritis, and the ensuing joint replacement, can only be remedied when the problem of joint instability is addressed.\r\n<h4>NSAIDs and Cortisone Interfere with Healing</h4>\r\nNSAIDs (non-steroidal anti-inflammatory drugs) and corticosteroid injections are conservative, non-surgical therapies generally recommended initially for pain alleviation. Although steroid injections and NSAIDs have been shown to be effective in decreasing inflammation and pain short-term, they do not reverse the disease.\r\n\r\nThey do, however, inhibit the properties of healing. For this reason, their use is cautioned in those who have joint injuries and arthritis. Did you know that NSAIDs and corticosteroids have no beneficial effect on articular cartilage in arthritis? Instead, they accelerate the very disease they are most often used and prescribed and are a catalyst towards joint replacement. That means, instead of being a joint replacement alternative, they actually propel you more quickly towards the problem.\r\n\r\nIt is interesting to point out that not long after doctors started injecting cortisone and other steroids into joints way back in the 1950s, reports of terrible joint diseases were already surfacing. And even back then, the intra-articular use of steroids was discouraged. Corticosteroid injections accelerate cartilage degeneration and joint destruction. Today, despite the dangers, cortisone use is widespread and has become the standard of care.\r\n<h4>What about the Popular Use of Hyaluronic Acid Injections for Joint Pain? Are They Joint Replacement Alternatives?</h4>\r\nUnfortunately, those who do find some pain relief from hyaluronic acid generally only experience short-term results, which are frequently designed to delay the inevitable joint replacement.\r\n<h4>Does Arthroscopic Surgery Prevent Joint Replacement?</h4>\r\nAn attempt to eliminate pain or a painful area by arthroscopic shaving, cutting, or tissue removal will only delay the pain for a few years until the remaining tissue becomes degenerated. Arthroscopy is a direct assault on the joint tissue. Arthroscopy, like the aforementioned treatments, may give some temporary relief of symptoms. But in the long-term, it will destabilize the joint and boost degeneration. In the long-run, these surgeries can lead to even more surgeries and eventual joint replacement.\r\n\r\nEven athletes, when faced with surgical repair of injuries, like an ACL tear, for example, have a low rate of return to sport and a high rate of new injury. That\'s because surgery makes the joint instability worse, not better. Many surgeries such as labral repair and ACL reconstruction can provide remarkable short-term pain relief. However, the replacement material will not function long-term like the original.\r\n\r\nACL grafts and labral repairs with titanium tacks just do not have the same pliability as the original tissue and cannot restore the joint back to normal. Eventually, they will cause problems.\r\n\r\nThe athlete or any joint pain patient must realize that with each procedure and each shaving or cutting of tissue, NSAID prescription, or corticosteroid injection, the risk of developing long-term arthritis and the eventual joint replacement is greatly increased. The key to keeping the joint strong is to stimulate the area to heal.\r\n<h4>Regenerative Orthopedics Is An Actual Joint Replacement Alternative Because It Repairs the Joint</h4>\r\nRegenerative Orthopedics can help you to avoid joint replacement by stimulating healing and by repairing the joint. Plus, it does not interfere with the normal healing process of the body. PRP, Prolotherapy, and the Gold Standard in Stem Cell Therapy, as utilized at OrthoRegen<sup>®</sup>, are types of Regenerative Orthopedics that stimulate the normal reparative mechanisms of the body by laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee and hip labrum, and boosting cartilage growth.\r\n\r\nAll of these regenerative therapies work to reduce the chance of long-term arthritis and joint replacement. Platelet Rich Plasma, Prolotherapy, and Stem Cell Therapy offer hope to those suffering from various joint pain types and those trying to avoid joint replacement. While surgery is necessary for a small percentage of patients, non-surgical regenerative therapies should be first-line, conservative treatments tried before surgery.\r\n\r\nHave you already had surgery but continue to experience pain? Regenerative Orthopedics is effective even after surgery, when continued pain is experienced or for arthritis accelerated due to the surgery. Regenerative Orthopedics offers a promising alternative to joint replacement and the opportunity for healing and return to function for those suffering from chronic joint pain.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Ever Wonder If There Is A Joint Replacement Alternative? Click here for more articles by Dr. Fields</strong></a>\r\n\r\n<em>1. Kim, S. Changes in surgical loads and economic burden of hip and knee replacements in the US: 1997–2004. Arthritis &amp; Rheumatism,2008: 59: 481–488. </em>doi<em>:10.1002/art.23525</em>','Ever Wonder If You Have Another Choice Other Than Joint Replacement?','','inherit','closed','closed','','1406-revision-v1','','','2021-02-23 00:43:48','2021-02-23 00:43:48','',1406,'https://www.drfields.com/uncategorized/1406-revision-v1/',0,'revision','',0),(4522,9,'2021-02-24 00:04:38','2021-02-24 00:04:38','<h3>Find Relief from Painful Knees with Regenerative Orthopedics</h3>\nOur knees are a critical part of our ability to move, especially since they assist us in getting around from place to place. Our knees are called on so we can conquer even the simplest of tasks. We can\'t really accomplish our day to day living without them. How else can we get out of bed every morning? And for those who choose the more daunting endeavors like running a marathon, working knees are pretty important. Painful knees can sure get in the way!\n\nWhen our knees are healthy, we go about our daily activities without much thought. That\'s because our knees are strong, stable, and pain-free. Healthy knees can help us conquer uneven terrain, move around obstacles, walk over wet and slippery surfaces, run, jump and twist. It takes a complex balance of coordinated efforts between all of the structures of the knee to move normally, maintain performance, and remain healthy.\n\nBut once we sustain an injury, all of that changes. When our knees begin to hurt, we sure take notice! It\'s then that even simple, every-day tasks feels daunting. Besides causing pain, a knee injury alters the way the knee structures work together. Any change in the structures of the knee set it up for imbalance. That\'s because the muscles, tendons, ligaments, menisci, cartilage and bone cooperate together to ensure smooth function. And when they are injured, the distribution of stresses changes, allowing for instability of the knee, further injury, and pain.\n<h3>Strong Ligaments Are Crucial to Prevent Painful Knees</h3>\nLigaments are structures of the knee that play a crucial role in the health and stability of the knee. Yet they are particularly vulnerable when the loads placed on them exceed their allowed elasticity. If ligaments become injured, your knee will hurt! Why? Ligaments are full of nerve endings! When overloaded from an injury, the ligaments stretch out and weaken. And that creates an unstable knee joint, which causes those nerve endings to send out pain signals.\n\nThere are quite a few secondary conditions that arise from a knee joint that is unstable due to too much pressure placed on other knee structures. Some examples include conditions like patellar tendonitis, meniscal injuries, runner’s knee, jumper’s knee, patellofemoral pain syndrome, chondromalacia patella, and osteoarthritis. All of these conditions arise from altered joint mechanics and injured soft tissue of the knee which end up causing painful knees.\n\nInjury to the ligaments of the knee is quite common. Those who follow sports will frequently hear of athletes missing their entire season due to injuries like anterior cruciate ligament (ACL) tears? Since the knee structures all work together in a coordinated effort, an injury to one joint structure can also affect other structures of the knee.\n\nLigament Injury at the Time of the Trauma\n\nSometimes the injury to the other structure(s) occurs at the time of the trauma. For example, if the force during the injury is sufficiently excessive, it is capable of tearing the ACL along with the meniscus, and quite possibly injuring other ligaments as well. Secondary injury can also occur over time. This can happen when an injury to one structure allows for an abnormal balance of the knee joint. The imbalance negatively affects the structures as the uneven distribution of motion causes them to work harder.\n\nThe unstable knee joint transmits impaired forces to the bones, ligaments, tendons and menisci, resulting in pain, excessive joint displacement, lack of smooth motion and joint weakness. Each link is important, so if one link is affected, the dynamics of the rest of the knee are altered.\n\nThe assault to knee health doesn’t stop there. When injury to the soft tissue or articular surfaces of the knee takes place, it is very common for secondary arthritis to develop in the knee. Arthritis can occur within a few years with severe injuries, or take decades to occur when the injury is less severe. The end result is that your knee will hurt more.\n<h3>Treatment Options for Painful Knees</h3>\nCurrent treatment options for injured and painful knees generally focus on short-term relief of symptoms. They are utilized in an effort to stop your knees from hurting. Examples include treatments like physical therapy, corticosteroid injections, NSAIDS and intra-articular hyaluronic acid injections. These treatments may provide some pain relief, and stop your knees from hurting for a period of time.\n\n<em><strong>But not all treatments make your knee healthy.</strong></em> It is important to be aware that corticosteroids and NSAIDS have both been linked to the acceleration of the arthritic process, among other deleterious side effects. In the long run, they may make your knees hurt more.\n\nTo stop the knees from hurting, treatments need to address the injured joint structures. The soft tissue, such as the ligaments, need to be strengthened. And unfortunately, most treatments are unable to strengthen them. And so they often fail to resolve the pain, since injured ligaments are often at the core of the painful knee. A lack of knee health continues as do symptoms and progression of the disease process. If the root of the problem is not repaired, you are left with knees that continue to hurt.\n<h3>Will Surgery Stop My Knee from Hurting?</h3>\nAlthough surgical intervention may be needed in cases of fracture and complete tears, surgical arthroscopy for arthritis has been shown to lack benefit, even when compared to exercise and other non-surgical treatments.<sup><strong>1</strong></sup> Repair of meniscal injuries by arthroscopic partial meniscectomy has also been questioned in studies due to lack of efficacy.<sup><strong>2</strong></sup> These surgeries are also highly associated with acceleration of the arthritic process,3 which as you know, will cause your knee to hurt.\n<h3>What Treatment Stops the Knee from Hurting?</h3>\nThe knee needs to be repair and regeneration! Regenerative Orthopedics does just that. And it addresses knee pain, because it strengthens and repairs the underlying ligament injury and weakness. As a safe and effective non-surgical treatment option, Regenerative Orthopedics, including Prolotherapy, PRP and Stem Cell Therapy, actually repairs the knee joint.\n\nIt resolves the problem because it promotes healing of the knee structures such as ligaments, tendons, menisci and cartilage.\n\nIf knee pain has you side-lined, don’t put up with knees that continue to hurt. We can help get you back to doing the things you love, without the nuisance of painful knees!\n\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>\n<h3>References:</h3>\n<em>1. Marsh JD, Birmingham TB, Giffin JR, et al. Cost-effectiveness analysis of arthroscopic surgery compared with non-operative management for osteoarthritis of the knee. BMJ Open 2016; 5:e009949.doi:10.1136/bmjopen-2015- 009949</em>\n<em>2. Khan M, Evaniew N, Bedi A, Ayeni OR, Bhandari M. Arthroscopic surgery for degenerative tears of the meniscus: a systematic review and meta-analysis. CMAJ.2014;186(14):1057-1064.</em>\n<em>3. Berthiaume MJ, Raynauld JP, Martel-Pelletier J, et al. Meniscal tear and extrusion are strongly associated with progression of symptomatic knee osteoarthritis as assessed by quantitative magnetic resonance imaging. Ann Rheum Dis 2005;64(4):556-563.</em>','Relief from Painful Knees','','inherit','closed','closed','','1412-autosave-v1','','','2021-02-24 00:04:38','2021-02-24 00:04:38','',1412,'https://www.drfields.com/uncategorized/1412-autosave-v1/',0,'revision','',0),(4523,9,'2021-02-24 00:02:54','2021-02-24 00:02:54','<h3>Find Relief from Painful Knees with Regenerative Orthopedics</h3>\r\nOur knees are a critical part of our ability to move, especially since they assist us in getting around from place to place. Our knees are called on so we can conquer even the simplest of tasks. We can\'t really accomplish our day to day living without them. How else can we get out of bed every morning? And for those who choose the more daunting endeavors like running a marathon, working knees are pretty important. Painful knees can sure get in the way!\r\n\r\nWhen our knees are healthy, we go about our daily activities without much thought. That\'s because our knees are strong, stable, and pain-free. Healthy knees can help us conquer uneven terrain, move around obstacles, walk over wet and slippery surfaces, run, jump and twist. It takes a complex balance of coordinated efforts between all of the structures of the knee to move normally, maintain performance, and remain healthy.\r\n\r\nBut once we sustain an injury, all of that changes. When our knees begin to hurt, we sure take notice! It\'s then that even simple, every-day tasks feels daunting. Besides causing pain, a knee injury alters the way the knee structures work together. Any change in the structures of the knee set it up for imbalance. That\'s because the muscles, tendons, ligaments, menisci, cartilage and bone cooperate together to ensure smooth function. And when they are injured, the distribution of stresses changes, allowing for instability of the knee, further injury, and pain.\r\n<h3>Strong Ligaments Are Crucial to Prevent Painful Knees</h3>\r\nLigaments are structures of the knee that play a crucial role in the health and stability of the knee. Yet they are particularly vulnerable when the loads placed on them exceed their allowed elasticity. If ligaments become injured, your knee will hurt! Why? Ligaments are full of nerve endings! When overloaded from an injury, the ligaments stretch out and weaken. And that creates an unstable knee joint, which causes those nerve endings to send out pain signals.\r\n\r\nThere are quite a few secondary conditions that arise from a knee joint that is unstable due to too much pressure placed on other knee structures. Some examples include conditions like patellar tendonitis, meniscal injuries, runner’s knee, jumper’s knee, patellofemoral pain syndrome, chondromalacia patella, and osteoarthritis. All of these conditions arise from altered joint mechanics and injured soft tissue of the knee which end up causing painful knees.\r\n\r\nInjury to the ligaments of the knee is quite common. Those who follow sports will frequently hear of athletes missing their entire season due to injuries like anterior cruciate ligament (ACL) tears? Since the knee structures all work together in a coordinated effort, an injury to one joint structure can also affect other structures of the knee.\r\n\r\nSometimes the injury to the other structure(s) occurs at the time of the trauma. For example, if the force during the injury is sufficiently excessive, it is capable of tearing the ACL along with the meniscus, and quite possibly injuring other ligaments as well. Secondary injury can also occur over time. This can happen when an injury to one structure allows for an abnormal balance of the knee joint. The imbalance negatively affects the structures as the uneven distribution of motion causes them to work harder.\r\n\r\nThe unstable knee joint transmits impaired forces to the bones, ligaments, tendons and menisci, resulting in pain, excessive joint displacement, lack of smooth motion and joint weakness. Each link is important, so if one link is affected, the dynamics of the rest of the knee are altered.\r\n\r\nThe assault to knee health doesn’t stop there. When injury to the soft tissue or articular surfaces of the knee takes place, it is very common for secondary arthritis to develop in the knee. Arthritis can occur within a few years with severe injuries, or take decades to occur when the injury is less severe. The end result is that your knee will hurt more.\r\n<h3>Treatment Options for Painful Knees</h3>\r\nCurrent treatment options for injured and painful knees generally focus on short-term relief of symptoms. They are utilized in an effort to stop your knees from hurting. Examples include treatments like physical therapy, corticosteroid injections, NSAIDS and intra-articular hyaluronic acid injections. These treatments may provide some pain relief, and stop your knees from hurting for a period of time.\r\n\r\n<em><strong>But not all treatments make your knee healthy.</strong></em> It is important to be aware that corticosteroids and NSAIDS have both been linked to the acceleration of the arthritic process, among other deleterious side effects. In the long run, they may make your knees hurt more.\r\n\r\nTo stop the knees from hurting, treatments need to address the injured joint structures. The soft tissue, such as the ligaments, need to be strengthened. And unfortunately, most treatments are unable to strengthen them. And so they often fail to resolve the pain, since injured ligaments are often at the core of the painful knee. A lack of knee health continues as do symptoms and progression of the disease process. If the root of the problem is not repaired, you are left with knees that continue to hurt.\r\n<h3>Will Surgery Stop My Knee from Hurting?</h3>\r\nAlthough surgical intervention may be needed in cases of fracture and complete tears, surgical arthroscopy for arthritis has been shown to lack benefit, even when compared to exercise and other non-surgical treatments.<sup><strong>1</strong></sup> Repair of meniscal injuries by arthroscopic partial meniscectomy has also been questioned in studies due to lack of efficacy.<sup><strong>2</strong></sup> These surgeries are also highly associated with acceleration of the arthritic process,3 which as you know, will cause your knee to hurt.\r\n<h3>What Treatment Stops the Knee from Hurting?</h3>\r\nThe knee needs to be repair and regeneration! Regenerative Orthopedics does just that. And it addresses knee pain, because it strengthens and repairs the underlying ligament injury and weakness. As a safe and effective non-surgical treatment option, Regenerative Orthopedics, including Prolotherapy, PRP and Stem Cell Therapy, actually repairs the knee joint.\r\n\r\nIt resolves the problem because it promotes healing of the knee structures such as ligaments, tendons, menisci and cartilage.\r\n\r\nIf knee pain has you side-lined, don’t put up with knees that continue to hurt. We can help get you back to doing the things you love, without the nuisance of painful knees!\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n\r\n<em>1. Marsh JD, Birmingham TB, Giffin JR, et al. Cost-effectiveness analysis of arthroscopic surgery compared with non-operative management for osteoarthritis of the knee. BMJ Open 2016; 5:e009949.doi:10.1136/bmjopen-2015- 009949</em>\r\n<em>2. Khan M, Evaniew N, Bedi A, Ayeni OR, Bhandari M. Arthroscopic surgery for degenerative tears of the meniscus: a systematic review and meta-analysis. CMAJ.2014;186(14):1057-1064.</em>\r\n<em>3. Berthiaume MJ, Raynauld JP, Martel-Pelletier J, et al. Meniscal tear and extrusion are strongly associated with progression of symptomatic knee osteoarthritis as assessed by quantitative magnetic resonance imaging. Ann Rheum Dis 2005;64(4):556-563.</em>','Relief from Painful Knees','','inherit','closed','closed','','1412-revision-v1','','','2021-02-24 00:02:54','2021-02-24 00:02:54','',1412,'https://www.drfields.com/uncategorized/1412-revision-v1/',0,'revision','',0),(4524,9,'2021-02-24 00:03:36','2021-02-24 00:03:36','<h3>Find Relief from Painful Knees with Regenerative Orthopedics</h3>\r\nOur knees are a critical part of our ability to move, especially since they assist us in getting around from place to place. Our knees are called on so we can conquer even the simplest of tasks. We can\'t really accomplish our day to day living without them. How else can we get out of bed every morning? And for those who choose the more daunting endeavors like running a marathon, working knees are pretty important. Painful knees can sure get in the way!\r\n\r\nWhen our knees are healthy, we go about our daily activities without much thought. That\'s because our knees are strong, stable, and pain-free. Healthy knees can help us conquer uneven terrain, move around obstacles, walk over wet and slippery surfaces, run, jump and twist. It takes a complex balance of coordinated efforts between all of the structures of the knee to move normally, maintain performance, and remain healthy.\r\n\r\nBut once we sustain an injury, all of that changes. When our knees begin to hurt, we sure take notice! It\'s then that even simple, every-day tasks feels daunting. Besides causing pain, a knee injury alters the way the knee structures work together. Any change in the structures of the knee set it up for imbalance. That\'s because the muscles, tendons, ligaments, menisci, cartilage and bone cooperate together to ensure smooth function. And when they are injured, the distribution of stresses changes, allowing for instability of the knee, further injury, and pain.\r\n<h3>Strong Ligaments Are Crucial to Prevent Painful Knees</h3>\r\nLigaments are structures of the knee that play a crucial role in the health and stability of the knee. Yet they are particularly vulnerable when the loads placed on them exceed their allowed elasticity. If ligaments become injured, your knee will hurt! Why? Ligaments are full of nerve endings! When overloaded from an injury, the ligaments stretch out and weaken. And that creates an unstable knee joint, which causes those nerve endings to send out pain signals.\r\n\r\nThere are quite a few secondary conditions that arise from a knee joint that is unstable due to too much pressure placed on other knee structures. Some examples include conditions like patellar tendonitis, meniscal injuries, runner’s knee, jumper’s knee, patellofemoral pain syndrome, chondromalacia patella, and osteoarthritis. All of these conditions arise from altered joint mechanics and injured soft tissue of the knee which end up causing painful knees.\r\n\r\nInjury to the ligaments of the knee is quite common. Those who follow sports will frequently hear of athletes missing their entire season due to injuries like anterior cruciate ligament (ACL) tears? Since the knee structures all work together in a coordinated effort, an injury to one joint structure can also affect other structures of the knee.\r\n\r\nSometimes the injury to the other structure(s) occurs at the time of the trauma. For example, if the force during the injury is sufficiently excessive, it is capable of tearing the ACL along with the meniscus, and quite possibly injuring other ligaments as well. Secondary injury can also occur over time. This can happen when an injury to one structure allows for an abnormal balance of the knee joint. The imbalance negatively affects the structures as the uneven distribution of motion causes them to work harder.\r\n\r\nThe unstable knee joint transmits impaired forces to the bones, ligaments, tendons and menisci, resulting in pain, excessive joint displacement, lack of smooth motion and joint weakness. Each link is important, so if one link is affected, the dynamics of the rest of the knee are altered.\r\n\r\nThe assault to knee health doesn’t stop there. When injury to the soft tissue or articular surfaces of the knee takes place, it is very common for secondary arthritis to develop in the knee. Arthritis can occur within a few years with severe injuries, or take decades to occur when the injury is less severe. The end result is that your knee will hurt more.\r\n<h3>Treatment Options for Painful Knees</h3>\r\nCurrent treatment options for injured and painful knees generally focus on short-term relief of symptoms. They are utilized in an effort to stop your knees from hurting. Examples include treatments like physical therapy, corticosteroid injections, NSAIDS and intra-articular hyaluronic acid injections. These treatments may provide some pain relief, and stop your knees from hurting for a period of time.\r\n\r\n<em><strong>But not all treatments make your knee healthy.</strong></em> It is important to be aware that corticosteroids and NSAIDS have both been linked to the acceleration of the arthritic process, among other deleterious side effects. In the long run, they may make your knees hurt more.\r\n\r\nTo stop the knees from hurting, treatments need to address the injured joint structures. The soft tissue, such as the ligaments, need to be strengthened. And unfortunately, most treatments are unable to strengthen them. And so they often fail to resolve the pain, since injured ligaments are often at the core of the painful knee. A lack of knee health continues as do symptoms and progression of the disease process. If the root of the problem is not repaired, you are left with knees that continue to hurt.\r\n<h3>Will Surgery Stop My Knee from Hurting?</h3>\r\nAlthough surgical intervention may be needed in cases of fracture and complete tears, surgical arthroscopy for arthritis has been shown to lack benefit, even when compared to exercise and other non-surgical treatments.<sup><strong>1</strong></sup> Repair of meniscal injuries by arthroscopic partial meniscectomy has also been questioned in studies due to lack of efficacy.<sup><strong>2</strong></sup> These surgeries are also highly associated with acceleration of the arthritic process,3 which as you know, will cause your knee to hurt.\r\n<h3>What Treatment Stops the Knee from Hurting?</h3>\r\nThe knee needs to be repair and regeneration! Regenerative Orthopedics does just that. And it addresses knee pain, because it strengthens and repairs the underlying ligament injury and weakness. As a safe and effective non-surgical treatment option, Regenerative Orthopedics, including Prolotherapy, PRP and Stem Cell Therapy, actually repairs the knee joint.\r\n\r\nIt resolves the problem because it promotes healing of the knee structures such as ligaments, tendons, menisci and cartilage.\r\n\r\nIf knee pain has you side-lined, don’t put up with knees that continue to hurt. We can help get you back to doing the things you love, without the nuisance of painful knees!\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n<h3>References:</h3>\r\n<em>1. Marsh JD, Birmingham TB, Giffin JR, et al. Cost-effectiveness analysis of arthroscopic surgery compared with non-operative management for osteoarthritis of the knee. BMJ Open 2016; 5:e009949.doi:10.1136/bmjopen-2015- 009949</em>\r\n<em>2. Khan M, Evaniew N, Bedi A, Ayeni OR, Bhandari M. Arthroscopic surgery for degenerative tears of the meniscus: a systematic review and meta-analysis. CMAJ.2014;186(14):1057-1064.</em>\r\n<em>3. Berthiaume MJ, Raynauld JP, Martel-Pelletier J, et al. Meniscal tear and extrusion are strongly associated with progression of symptomatic knee osteoarthritis as assessed by quantitative magnetic resonance imaging. Ann Rheum Dis 2005;64(4):556-563.</em>','Relief from Painful Knees','','inherit','closed','closed','','1412-revision-v1','','','2021-02-24 00:03:36','2021-02-24 00:03:36','',1412,'https://www.drfields.com/uncategorized/1412-revision-v1/',0,'revision','',0),(4525,9,'2021-02-24 00:05:29','2021-02-24 00:05:29','<h3>Find Relief from Painful Knees with Regenerative Orthopedics</h3>\r\nOur knees are a critical part of our ability to move, especially since they assist us in getting around from place to place. Our knees are called on so we can conquer even the simplest of tasks. We can\'t really accomplish our day to day living without them. How else can we get out of bed every morning? And for those who choose the more daunting endeavors like running a marathon, working knees are pretty important. Painful knees can sure get in the way!\r\n\r\nWhen our knees are healthy, we go about our daily activities without much thought. That\'s because our knees are strong, stable, and pain-free. Healthy knees can help us conquer uneven terrain, move around obstacles, walk over wet and slippery surfaces, run, jump and twist. It takes a complex balance of coordinated efforts between all of the structures of the knee to move normally, maintain performance, and remain healthy.\r\n\r\nBut once we sustain an injury, all of that changes. When our knees begin to hurt, we sure take notice! It\'s then that even simple, every-day tasks feels daunting. Besides causing pain, a knee injury alters the way the knee structures work together. Any change in the structures of the knee set it up for imbalance. That\'s because the muscles, tendons, ligaments, menisci, cartilage and bone cooperate together to ensure smooth function. And when they are injured, the distribution of stresses changes, allowing for instability of the knee, further injury, and pain.\r\n<h3>Strong Ligaments Are Crucial to Prevent Painful Knees</h3>\r\nLigaments are structures of the knee that play a crucial role in the health and stability of the knee. Yet they are particularly vulnerable when the loads placed on them exceed their allowed elasticity. If ligaments become injured, your knee will hurt! Why? Ligaments are full of nerve endings! When overloaded from an injury, the ligaments stretch out and weaken. And that creates an unstable knee joint, which causes those nerve endings to send out pain signals.\r\n\r\nThere are quite a few secondary conditions that arise from a knee joint that is unstable due to too much pressure placed on other knee structures. Some examples include conditions like patellar tendonitis, meniscal injuries, runner’s knee, jumper’s knee, patellofemoral pain syndrome, chondromalacia patella, and osteoarthritis. All of these conditions arise from altered joint mechanics and injured soft tissue of the knee which end up causing painful knees.\r\n\r\nInjury to the ligaments of the knee is quite common. Those who follow sports will frequently hear of athletes missing their entire season due to injuries like anterior cruciate ligament (ACL) tears? Since the knee structures all work together in a coordinated effort, an injury to one joint structure can also affect other structures of the knee.\r\n<h4><em>Ligament Injury Can Occur at the Time of the Trauma or Over Time</em></h4>\r\nSometimes the injury to the other structure(s) occurs at the time of the trauma. For example, if the force during the injury is sufficiently excessive, it is capable of tearing the ACL along with the meniscus, and quite possibly injuring other ligaments as well. Secondary injury can also occur over time. This can happen when an injury to one structure allows for an abnormal balance of the knee joint. The imbalance negatively affects the structures as the uneven distribution of motion causes them to work harder.\r\n\r\nThe unstable knee joint transmits impaired forces to the bones, ligaments, tendons and menisci, resulting in pain, excessive joint displacement, lack of smooth motion and joint weakness. Each link is important, so if one link is affected, the dynamics of the rest of the knee are altered.\r\n\r\nThe assault to knee health doesn’t stop there. When injury to the soft tissue or articular surfaces of the knee takes place, it is very common for secondary arthritis to develop in the knee. Arthritis can occur within a few years with severe injuries, or take decades to occur when the injury is less severe. The end result is that your knee will hurt more.\r\n<h3>Treatment Options for Painful Knees</h3>\r\nCurrent treatment options for injured and painful knees generally focus on short-term relief of symptoms. They are utilized in an effort to stop your knees from hurting. Examples include treatments like physical therapy, corticosteroid injections, NSAIDS and intra-articular hyaluronic acid injections. These treatments may provide some pain relief, and stop your knees from hurting for a period of time.\r\n\r\n<em><strong>But not all treatments make your knee healthy.</strong></em> It is important to be aware that corticosteroids and NSAIDS have both been linked to the acceleration of the arthritic process, among other deleterious side effects. In the long run, they may make your knees hurt more.\r\n\r\nTo stop the knees from hurting, treatments need to address the injured joint structures. The soft tissue, such as the ligaments, need to be strengthened. And unfortunately, most treatments are unable to strengthen them. And so they often fail to resolve the pain, since injured ligaments are often at the core of the painful knee. A lack of knee health continues as do symptoms and progression of the disease process. If the root of the problem is not repaired, you are left with knees that continue to hurt.\r\n<h3>Will Surgery Stop My Knee from Hurting?</h3>\r\nAlthough surgical intervention may be needed in cases of fracture and complete tears, surgical arthroscopy for arthritis has been shown to lack benefit, even when compared to exercise and other non-surgical treatments.<sup><strong>1</strong></sup> Repair of meniscal injuries by arthroscopic partial meniscectomy has also been questioned in studies due to lack of efficacy.<sup><strong>2</strong></sup> These surgeries are also highly associated with acceleration of the arthritic process,3 which as you know, will cause your knee to hurt.\r\n<h3>What Treatment Stops the Knee from Hurting?</h3>\r\nThe knee needs to be repair and regeneration! Regenerative Orthopedics does just that. And it addresses knee pain, because it strengthens and repairs the underlying ligament injury and weakness. As a safe and effective non-surgical treatment option, Regenerative Orthopedics, including Prolotherapy, PRP and Stem Cell Therapy, actually repairs the knee joint.\r\n\r\nIt resolves the problem because it promotes healing of the knee structures such as ligaments, tendons, menisci and cartilage.\r\n\r\nIf knee pain has you side-lined, don’t put up with knees that continue to hurt. We can help get you back to doing the things you love, without the nuisance of painful knees!\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n<h3>References:</h3>\r\n<em>1. Marsh JD, Birmingham TB, Giffin JR, et al. Cost-effectiveness analysis of arthroscopic surgery compared with non-operative management for osteoarthritis of the knee. BMJ Open 2016; 5:e009949.doi:10.1136/bmjopen-2015- 009949</em>\r\n<em>2. Khan M, Evaniew N, Bedi A, Ayeni OR, Bhandari M. Arthroscopic surgery for degenerative tears of the meniscus: a systematic review and meta-analysis. CMAJ.2014;186(14):1057-1064.</em>\r\n<em>3. Berthiaume MJ, Raynauld JP, Martel-Pelletier J, et al. Meniscal tear and extrusion are strongly associated with progression of symptomatic knee osteoarthritis as assessed by quantitative magnetic resonance imaging. Ann Rheum Dis 2005;64(4):556-563.</em>','Relief from Painful Knees','','inherit','closed','closed','','1412-revision-v1','','','2021-02-24 00:05:29','2021-02-24 00:05:29','',1412,'https://www.drfields.com/uncategorized/1412-revision-v1/',0,'revision','',0),(4526,8,'2021-02-24 20:25:20','2021-02-24 20:25:20','','iwp_log_6036b63069d5d','','publish','closed','closed','','iwp_log_6036b63069d5d','','','2021-02-24 20:25:20','2021-02-24 20:25:20','',0,'https://www.drfields.com/iwp_log/iwp_log_6036b63069d5d/',0,'iwp_log','',0),(4527,8,'2021-02-24 20:27:01','2021-02-24 20:27:01','','iwp_log_6036b69587618','','publish','closed','closed','','iwp_log_6036b69587618','','','2021-02-24 20:27:01','2021-02-24 20:27:01','',0,'https://www.drfields.com/iwp_log/iwp_log_6036b69587618/',0,'iwp_log','',0),(4528,9,'2022-04-05 00:11:12','2022-04-05 00:11:12','[caption id=\"attachment_4530\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4530\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/shoulder-copy-2-500x500.jpg\" alt=\"Stop Pain from Rotator Cuff Injuries\" width=\"500\" height=\"500\" /> <em><strong> Stop Pain from Rotator Cuff Injuries and Other Shoulder Problems</strong></em>[/caption]\n<h2>Stop Shoulder Pain from Rotator Cuff Injuries</h2>\nMany of us really enjoy participating in indoor and outdoor activities. Our favorite sport or activity might include swimming, golfing, bicycling, or playing tennis, volleyball or another favorite sport. But injuries to the shoulder are common. How do you stop pain from rotator cuff injuries and other shoulder problems?\n<h3>The Unique Shoulder Joint and How That Uniqueness Predisposes Us to Shoulder Injury</h3>\nThe shoulder is a unique joint in that it is incredibly flexible. The shoulder joint is one of the body’s ball and socket joints, equipped with a huge range of motion. That’s a great feature! Why? Because so many of the activities the shoulder is called upon to perform require mobility and flexibility.\n\n<em>But there is a balance between flexibility and the maintenance of joint stability.</em> The downside of all that flexibility and motion is injury and instability. And that unfortunately results in pain and impaired function! Athletes such as pitchers, quarterbacks, tennis players and swimmers, are prone to shoulder injuries. These sports all require repetitive overhead movements. Even golfers suffer regularly from shoulder injuries due to the positioning in the backswing, which commonly affects the non-dominant shoulder. Jobs requiring repeated overhead motion, like painting, can aggravate the shoulder as well and lead to shoulder injury and pain.\n<h3>What\'s Behind Rotator Cuff and Other Shoulder Injuries?</h3>\nAggressive, repetitive use can cause ligaments to stretch out and elongate. Does your shoulder click and clunk? That\'s not normal. But it is a result of stretched out soft tissue and abnormal motion in the shoulder joint. Unfortunately, the ligaments do not have much of a blood supply. And when injured, the lower blood supply means ligament healing can be insufficient. If complete healing does not occur, then the abnormal joint motion from unstable ligaments continues.\n\nDamaged ligaments need time to remodel and repair. For instance, a tennis player with shoulder pain may need to reduce training hours and allow for proper rest time between workouts. The same is true for the golfer, swimmer, pitcher, and painter! With inadequate healing, the shoulder becomes unstable, and will start making a clunking or clicking noise. When this occurs with every stroke or swing motion, it can indicate a more severe, multidirectional shoulder instability. The shoulder joint at this point is moving abnormally in a variety of directions, generating more shoulder injury and provoking shoulder pain.\n<h3>Shoulder Pain from Rotator Cuff Injury</h3>\nHave you or someone you know suffered from a rotator cuff injury? It’s quite a common shoulder injury. The rotator cuff is a group of four muscles and tendons surrounding the glenohumeral joint. The function of the rotator cuff is to provide motion for activities above the waist and shoulders. Because of this, injuries to this group of muscles and tendons, often transpires with overhead activities.\n\nOngoing instability causes strain and weakness in the rotator cuff muscles, which persists at fatiguing the muscles. This will alter the way they function and move, and can lead to injury to other shoulder structures. You can picture how continuing to use poor form, or persisting to work out with an injured shoulder, can set the sufferer on an ongoing course of abnormal joint motion and shoulder injury. Continued overuse results in increased instability, a weaker rotator cuff, and an eventual tear and shoulder degeneration.\n<h4>Glenoid Labral Tears of the Shoulder</h4>\nAnother affliction common to the shoulder is a glenoid labrum injury. The glenoid labrum is a very important structure because it stabilizes the shoulder. The glenoid is the shoulder socket and the labrum is basically the soft tissue surrounding the socket. A tear to this soft tissue labrum is prevalent in workers who do a lot of manual labor and is also a common injury in athletes.\n\nThis shoulder injury can occur in a traumatic event, through repetitive motion, or with recurrent dislocations. When the labrum is torn, other ligaments and tendons surrounding the shoulder are often injured too. So if the forces involved in the injury were significant enough to tear the labrum, they were most likely also sufficient to injure the ligaments or tendons.\n\nKeep this in mind when seeking repair, because all of injured shoulder structures need to be treated to have a completely healed shoulder joint. Otherwise, the healing will be incomplete, and a cycle of shoulder injury, shoulder re-injury, and shoulder pain is set in motion.\n<h4>Should Surgery Be Sought in Shoulder Injuries?</h4>\nSurgery is commonly sought to stop pain from rotator cuff injuries and labral tears, but the correction is often ineffective. Why is that? The reason is that surgery, including arthroscopic treatment, involves the removal or debridement of the shoulder structures. When these structures are removed, the shoulder joint is left more unstable, and prone to re-injury!\n\nGuess what happens when the instability is not repaired? The ongoing <em><strong>abnormal movement</strong></em> will eventually result in the development of arthritis. That\'s because the body will try to stop the movement or stabilize the shoulder by growing more bone! More instability results in more problems and more shoulder pain.\n<h4><em>What About Other Conservative Treatment Options to Stop Shoulder Pain from Rotator Cuff Injuries?</em></h4>\nConservative treatments such as non-steroidal anti-inflammatories (NSAIDS) and corticosteroids are often recommended too. And although they may give some short-term pain relief, these treatments do not resolve the underlying soft tissue tears and shoulder injury. Sadly, these treatments inhibit healing and further the problem they are given for in the first place. The shoulder pain sufferer is then left with unhealed soft tissue in the shoulder, abnormal motion, and continued pain.\n\n[caption id=\"attachment_4964\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4964\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Shoulder.-Journal-of-Clinical-Imaging-500x419.png\" alt=\"Shoulder. Journal Of Clinical Imaging\" width=\"500\" height=\"419\" /> <strong>             PRP is effective at reducing shoulder pain</strong>[/caption]\n<h4><strong>Regenerative Treatments That Heal the Shoulder</strong></h4>\nWhen shoulder injuries do occur or when injuries do not heal properly despite trials of multiple treatment modalities, an effective option is available. Non-Surgical Regenerative Orthopedics, such as Stem Cell Therapy, Prolotherapy, and PRP are treatments that can be utilized to treat and repair shoulder injuries such as glenoid labral tears and rotator cuff injuries. These treatments work because they correct the underlying problem and naturally alleviate shoulder pain.\n\nProlotherapy, Stem Cell Therapy, and PRP require almost no downtime. They are ideal for athletes who need to continue training, the weekend golfer who doesn’t want to stop their beloved sport, and the painter who cannot afford much downtime. Shoulder injuries often need a treatment that restarts or reboots the ability to repair, and these regenerative therapies do just that. Shoulder instability, rotator cuff injuries, glenoid labral tears (as long as the tear is not complete) and pain can be successfully addressed with these regenerative medicine techniques.\n\nProlotherapy, Stem Cell Therapy, and PRP are designed to help repair the painful shoulder without cutting, suturing, sewing, or stapling. This is a natural injection therapy that strengthens loose and unstable shoulder joints and the involved ligaments and tendons, creating a more stable, strong, and pain-free shoulder. And this results in the active person being able to continue working or engaging in the sports and activities they love!\n<h3>References</h3>\n1Sengodan, Vetrivel Chezian, Sajith Kurian, and Raghupathy Ramasamy. \"Treatment of partial rotator cuff tear with ultrasound-guided platelet-rich plasma.\" <em>Journal of clinical imaging science</em> 7 (2017).\n2Mora, Maria Valencia, et al. “Stem cell therapy in the management of shoulder rotator cuff disorders.” <em>World Journal of Stem Cells</em>.4 (2015): 691.\n\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>','Stop Shoulder Pain from Rotator Cuff Injuries','','inherit','closed','closed','','1408-autosave-v1','','','2022-04-05 00:11:12','2022-04-05 00:11:12','',1408,'https://www.drfields.com/uncategorized/1408-autosave-v1/',0,'revision','',0),(4529,9,'2021-02-25 22:08:11','2021-02-25 22:08:11','<h2>Stop Shoulder Pain from Rotator Cuff Injuries</h2>\r\nMany of us really enjoy participating in indoor and outdoor activities. Our favorite sport or activity might include swimming, golfing, bicycling, or playing tennis, volleyball or another favorite sport. But injuries to the shoulder are common. How do you stop pain from rotator cuff injuries and other shoulder problems?\r\n<h3>The Unique Shoulder Joint and How That Uniqueness Predisposes Us to Shoulder Injury</h3>\r\nThe shoulder is a unique joint in that it is incredibly flexible. The shoulder joint is one of the body’s ball and socket joints, equipped with a huge range of motion. That’s a great feature! Why? Because so many of the activities the shoulder is called upon to perform require mobility and flexibility.\r\n\r\n<em>But there is a balance between flexibility and the maintenance of joint stability.</em> The downside of all that flexibility and motion is injury and instability. And that unfortunately results in pain and impaired function! Athletes such as pitchers, quarterbacks, tennis players and swimmers, are prone to shoulder injuries. These sports all require repetitive overhead movements. Even golfers suffer regularly from shoulder injuries due to the positioning in the backswing, which commonly affects the non-dominant shoulder. Jobs requiring repeated overhead motion, like painting, can aggravate the shoulder as well and lead to shoulder injury and pain.\r\n<h3>What\'s Behind Rotator Cuff and Other Shoulder Injuries?</h3>\r\nAggressive, repetitive use can cause ligaments to stretch out and elongate. Does your shoulder click and clunk? That\'s not normal. But it is a result of stretched out soft tissue and abnormal motion in the shoulder joint. Unfortunately, the ligaments do not have much of a blood supply. And when injured, the lower blood supply means ligament healing can be insufficient. If complete healing does not occur, then the abnormal joint motion from unstable ligaments continues.\r\n\r\nDamaged ligaments need time to remodel and repair. For instance, a tennis player with shoulder pain may need to reduce training hours and allow for proper rest time between workouts. The same is true for the golfer, swimmer, pitcher, and painter! With inadequate healing, the shoulder becomes unstable, and will start making a clunking or clicking noise. When this occurs with every stroke or swing motion, it can indicate a more severe, multidirectional shoulder instability. The shoulder joint at this point is moving abnormally in a variety of directions, generating more shoulder injury and provoking shoulder pain.\r\n<h3>Shoulder Pain from Rotator Cuff Injury</h3>\r\nHave you or someone you know suffered from a rotator cuff injury? It’s quite a common shoulder injury. The rotator cuff is a group of four muscles and tendons surrounding the glenohumeral joint. The function of the rotator cuff is to provide motion for activities above the waist and shoulders. Because of this, injuries to this group of muscles and tendons, often transpires with overhead activities.\r\n\r\nOngoing instability causes strain and weakness in the rotator cuff muscles, which persists at fatiguing the muscles. This will alter the way they function and move, and can lead to injury to other shoulder structures. You can picture how continuing to use poor form, or persisting to work out with an injured shoulder, can set the sufferer on an ongoing course of abnormal joint motion and shoulder injury. Continued overuse results in increased instability, a weaker rotator cuff, and an eventual tear and shoulder degeneration.\r\n<h4>Glenoid Labral Tears of the Shoulder</h4>\r\nAnother affliction common to the shoulder is a glenoid labrum injury. The glenoid labrum is a very important structure because it stabilizes the shoulder. The glenoid is the shoulder socket and the labrum is basically the soft tissue surrounding the socket. A tear to this soft tissue labrum is prevalent in workers who do a lot of manual labor and is also a common injury in athletes.\r\n\r\nThis shoulder injury can occur in a traumatic event, through repetitive motion, or with recurrent dislocations. When the labrum is torn, other ligaments and tendons surrounding the shoulder are often injured too. So if the forces involved in the injury were significant enough to tear the labrum, they were most likely also sufficient to injure the ligaments or tendons.\r\n\r\nKeep this in mind when seeking repair, because all of injured shoulder structures need to be treated to have a completely healed shoulder joint. Otherwise, the healing will be incomplete, and a cycle of shoulder injury, shoulder re-injury, and shoulder pain is set in motion.\r\n<h4>Should Surgery Be Sought in Shoulder Injuries?</h4>\r\nSurgery is commonly sought to stop pain from rotator cuff injuries and labral tears, but the correction is often ineffective. Why is that? The reason is that surgery, including arthroscopic treatment, involves the removal or debridement of the shoulder structures. When these structures are removed, the shoulder joint is left more unstable, and prone to re-injury!\r\n\r\nGuess what happens when the instability is not repaired? The ongoing <em><strong>abnormal movement</strong></em> will eventually result in the development of arthritis. That\'s because the body will try to stop the movement or stabilize the shoulder by growing more bone! More instability results in more problems and more shoulder pain.\r\n<h4><em>What About Other Conservative Treatment Options to Stop Shoulder Pain from Rotator Cuff Injuries?</em></h4>\r\nConservative treatments such as non-steroidal anti-inflammatories (NSAIDS) and corticosteroids are often recommended too. And although they may give some short-term pain relief, these treatments do not resolve the underlying soft tissue tears and shoulder injury. Sadly, these treatments inhibit healing and further the problem they are given for in the first place. The shoulder pain sufferer is then left with unhealed soft tissue in the shoulder, abnormal motion, and continued pain.\r\n<h4>Regenerative Treatments That Heal the Shoulder</h4>\r\nWhen shoulder injuries do occur or when injuries do not heal properly despite trials of multiple treatment modalities, an effective option is available. Non-Surgical Regenerative Orthopedics, such as Stem Cell Therapy, Prolotherapy, and PRP are treatments that can be utilized to treat and repair shoulder injuries such as glenoid labral tears and rotator cuff injuries. These treatments work because they correct the underlying problem and naturally alleviate shoulder pain.\r\n\r\nProlotherapy, Stem Cell Therapy, and PRP require almost no down time. They are ideal for athletes who need to continue training, the weekend golfer who doesn’t want to stop their beloved sport, and the painter who cannot afford much downtime. Shoulder injuries often need a treatment that restarts or reboots the ability to repair, and these regenerative therapies do just that. Shoulder instability, rotator cuff injuries, glenoid labral tears (as long as the tear is not complete) and pain can be successfully addressed with these regenerative medicine techniques.\r\n\r\nProlotherapy, Stem Cell Therapy, and PRP are designed to help repair the painful shoulder without cutting, suturing, sewing, or stapling. This is a natural injection therapy that strengthens loose and unstable shoulder joints and the involved ligaments and tendons, creating a more stable, strong, and pain-free shoulder. And this results in the active person being able to continue working or engaging in the sports and activities they love!\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>','Stop Shoulder Pain from Rotator Cuff Injuries','','inherit','closed','closed','','1408-revision-v1','','','2021-02-25 22:08:11','2021-02-25 22:08:11','',1408,'https://www.drfields.com/uncategorized/1408-revision-v1/',0,'revision','',0),(4530,9,'2021-02-25 22:08:53','2021-02-25 22:08:53','Stop Pain from Rotator Cuff Injuries and Other Shoulder Problems with Regenerative Orthopedics','Stop Pain from Rotator Cuff Injuries','Stop Pain from Rotator Cuff Injuries and Other Shoulder Problems','inherit','open','closed','','shoulder-copy-2','','','2021-02-25 22:09:58','2021-02-25 22:09:58','',1408,'https://www.drfields.com/wp-content/uploads/2019/06/shoulder-copy-2.jpg',0,'attachment','image/jpeg',0),(4531,9,'2021-02-25 22:10:48','2021-02-25 22:10:48','[caption id=\"attachment_4530\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4530\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/shoulder-copy-2-500x500.jpg\" alt=\"Stop Pain from Rotator Cuff Injuries\" width=\"500\" height=\"500\" /> <em><strong> Stop Pain from Rotator Cuff Injuries and Other Shoulder Problems</strong></em>[/caption]\r\n<h2>Stop Shoulder Pain from Rotator Cuff Injuries</h2>\r\nMany of us really enjoy participating in indoor and outdoor activities. Our favorite sport or activity might include swimming, golfing, bicycling, or playing tennis, volleyball or another favorite sport. But injuries to the shoulder are common. How do you stop pain from rotator cuff injuries and other shoulder problems?\r\n<h3>The Unique Shoulder Joint and How That Uniqueness Predisposes Us to Shoulder Injury</h3>\r\nThe shoulder is a unique joint in that it is incredibly flexible. The shoulder joint is one of the body’s ball and socket joints, equipped with a huge range of motion. That’s a great feature! Why? Because so many of the activities the shoulder is called upon to perform require mobility and flexibility.\r\n\r\n<em>But there is a balance between flexibility and the maintenance of joint stability.</em> The downside of all that flexibility and motion is injury and instability. And that unfortunately results in pain and impaired function! Athletes such as pitchers, quarterbacks, tennis players and swimmers, are prone to shoulder injuries. These sports all require repetitive overhead movements. Even golfers suffer regularly from shoulder injuries due to the positioning in the backswing, which commonly affects the non-dominant shoulder. Jobs requiring repeated overhead motion, like painting, can aggravate the shoulder as well and lead to shoulder injury and pain.\r\n<h3>What\'s Behind Rotator Cuff and Other Shoulder Injuries?</h3>\r\nAggressive, repetitive use can cause ligaments to stretch out and elongate. Does your shoulder click and clunk? That\'s not normal. But it is a result of stretched out soft tissue and abnormal motion in the shoulder joint. Unfortunately, the ligaments do not have much of a blood supply. And when injured, the lower blood supply means ligament healing can be insufficient. If complete healing does not occur, then the abnormal joint motion from unstable ligaments continues.\r\n\r\nDamaged ligaments need time to remodel and repair. For instance, a tennis player with shoulder pain may need to reduce training hours and allow for proper rest time between workouts. The same is true for the golfer, swimmer, pitcher, and painter! With inadequate healing, the shoulder becomes unstable, and will start making a clunking or clicking noise. When this occurs with every stroke or swing motion, it can indicate a more severe, multidirectional shoulder instability. The shoulder joint at this point is moving abnormally in a variety of directions, generating more shoulder injury and provoking shoulder pain.\r\n<h3>Shoulder Pain from Rotator Cuff Injury</h3>\r\nHave you or someone you know suffered from a rotator cuff injury? It’s quite a common shoulder injury. The rotator cuff is a group of four muscles and tendons surrounding the glenohumeral joint. The function of the rotator cuff is to provide motion for activities above the waist and shoulders. Because of this, injuries to this group of muscles and tendons, often transpires with overhead activities.\r\n\r\nOngoing instability causes strain and weakness in the rotator cuff muscles, which persists at fatiguing the muscles. This will alter the way they function and move, and can lead to injury to other shoulder structures. You can picture how continuing to use poor form, or persisting to work out with an injured shoulder, can set the sufferer on an ongoing course of abnormal joint motion and shoulder injury. Continued overuse results in increased instability, a weaker rotator cuff, and an eventual tear and shoulder degeneration.\r\n<h4>Glenoid Labral Tears of the Shoulder</h4>\r\nAnother affliction common to the shoulder is a glenoid labrum injury. The glenoid labrum is a very important structure because it stabilizes the shoulder. The glenoid is the shoulder socket and the labrum is basically the soft tissue surrounding the socket. A tear to this soft tissue labrum is prevalent in workers who do a lot of manual labor and is also a common injury in athletes.\r\n\r\nThis shoulder injury can occur in a traumatic event, through repetitive motion, or with recurrent dislocations. When the labrum is torn, other ligaments and tendons surrounding the shoulder are often injured too. So if the forces involved in the injury were significant enough to tear the labrum, they were most likely also sufficient to injure the ligaments or tendons.\r\n\r\nKeep this in mind when seeking repair, because all of injured shoulder structures need to be treated to have a completely healed shoulder joint. Otherwise, the healing will be incomplete, and a cycle of shoulder injury, shoulder re-injury, and shoulder pain is set in motion.\r\n<h4>Should Surgery Be Sought in Shoulder Injuries?</h4>\r\nSurgery is commonly sought to stop pain from rotator cuff injuries and labral tears, but the correction is often ineffective. Why is that? The reason is that surgery, including arthroscopic treatment, involves the removal or debridement of the shoulder structures. When these structures are removed, the shoulder joint is left more unstable, and prone to re-injury!\r\n\r\nGuess what happens when the instability is not repaired? The ongoing <em><strong>abnormal movement</strong></em> will eventually result in the development of arthritis. That\'s because the body will try to stop the movement or stabilize the shoulder by growing more bone! More instability results in more problems and more shoulder pain.\r\n<h4><em>What About Other Conservative Treatment Options to Stop Shoulder Pain from Rotator Cuff Injuries?</em></h4>\r\nConservative treatments such as non-steroidal anti-inflammatories (NSAIDS) and corticosteroids are often recommended too. And although they may give some short-term pain relief, these treatments do not resolve the underlying soft tissue tears and shoulder injury. Sadly, these treatments inhibit healing and further the problem they are given for in the first place. The shoulder pain sufferer is then left with unhealed soft tissue in the shoulder, abnormal motion, and continued pain.\r\n<h4>Regenerative Treatments That Heal the Shoulder</h4>\r\nWhen shoulder injuries do occur or when injuries do not heal properly despite trials of multiple treatment modalities, an effective option is available. Non-Surgical Regenerative Orthopedics, such as Stem Cell Therapy, Prolotherapy, and PRP are treatments that can be utilized to treat and repair shoulder injuries such as glenoid labral tears and rotator cuff injuries. These treatments work because they correct the underlying problem and naturally alleviate shoulder pain.\r\n\r\nProlotherapy, Stem Cell Therapy, and PRP require almost no down time. They are ideal for athletes who need to continue training, the weekend golfer who doesn’t want to stop their beloved sport, and the painter who cannot afford much downtime. Shoulder injuries often need a treatment that restarts or reboots the ability to repair, and these regenerative therapies do just that. Shoulder instability, rotator cuff injuries, glenoid labral tears (as long as the tear is not complete) and pain can be successfully addressed with these regenerative medicine techniques.\r\n\r\nProlotherapy, Stem Cell Therapy, and PRP are designed to help repair the painful shoulder without cutting, suturing, sewing, or stapling. This is a natural injection therapy that strengthens loose and unstable shoulder joints and the involved ligaments and tendons, creating a more stable, strong, and pain-free shoulder. And this results in the active person being able to continue working or engaging in the sports and activities they love!\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>','Stop Shoulder Pain from Rotator Cuff Injuries','','inherit','closed','closed','','1408-revision-v1','','','2021-02-25 22:10:48','2021-02-25 22:10:48','',1408,'https://www.drfields.com/uncategorized/1408-revision-v1/',0,'revision','',0),(4532,9,'2021-03-05 19:02:49','2021-03-05 19:02:49','When neck injuries occur, like after car accidents, sports injuries, or even wear and tear, the sufferer often lives with neck pain and other disabling symptoms. In this article, we are not referring to a catastrophic neck injury, but one that very often may be considered \"minor.\" Yet the sufferer still lives with symptoms that alter their ability to live normally. The cause may very well be cervical instability, a disorder of the neck or cervical spine that can result in a myriad of symptoms.\r\n<h3>The Uniqueness of the Cervical Spine</h3>\r\nThe neck is unique because it consists of vertebrae that are smaller and more mobile than all of the movable vertebrae of the spine. The high degree of mobility in the neck or cervical spine is necessary in order to move the head through all the different ranges of motion we put it through. Blood is also transported through the neck on the way to the brain by means of the vertebral artery. The artery goes up through an opening called the transverse foramina in the vertebrae of the neck.\r\n\r\nWhy are these features important when discussing neck pain, symptoms, and instability? Well first of all, although the mobility of the neck is great and necessary in order to get things done and function like we like to, this same feature makes the neck vulnerable to injury.\r\n<h3>Ligaments are Affected by Neck Injuries Too. And When Injured, Cause Cervical Instability and Pain!</h3>\r\nSecondly, when an injury to the neck occurs, ligaments are affected. The ligaments are structures that are primarily responsible for joining bones. And they are especially vulnerable when trauma occurs. When the neck is stable, it moves and functions normally, while remaining in proper alignment. All of this protects the blood vessels, nerves, and spinal cord. But an injury to the ligaments changes this whole dynamic because it causes the cervical spine to become unstable.\r\n\r\nWhen the neck is called upon to function, this new instability of the cervical spine can\'t provide adequate support. Neck alignment is changed and a cycle of imbalance is created between the different neck structures. This causes too much movement of the neighboring vertebrae which stresses the ligaments that support them. It also puts undue pressure on the nerve endings within those structures. The result is neck pain! A host of other possible symptoms are set into motion as a result of the various blood vessels and nerves running through the neck vertebrae.\r\n<h2><strong>Whiplash Injuries Are Examples of Cervical Instability </strong></h2>\r\n<img class=\"alignright size-medium wp-image-3311\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-1-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" />People who have experienced whiplash, often have symptoms that seem to last and last. <em>These symptoms are frequently a result of the instability of the vertebrae of the neck, or cervical instability.</em>\r\n\r\nWhiplash injuries are a common cause of cervical instability. The head is literally “whipped” in these injuries. The sudden acceleration and deceleration during rear-end collisions is an example of whiplash. During whiplash, a severe flexion is generated followed by an extension of the neck, in a whip-type motion forward and backward.\r\n\r\nThe backward hyperextension is often associated with more injury to the muscles and ligaments because it lacks the limiting effect of the chin meets the chest in the forward “whip.” Excessive motion in hyperextension severely strains the involved muscles and ligaments. This motion also compresses the adjoining vertebrae.\r\n\r\nLet\'s consider a person who is looking in the rearview mirror at the time of the collision. The rotated neck position puts the ligaments in even greater vulnerability for injury. Why? Well, these particular ligaments are those that help in side to side head movements and they are more susceptible when in this position.\r\n\r\nAs the ligaments become weaker, they are unable to provide a stable neck structure, which leads to even more injury and an ongoing provocation of the nerve endings. The ongoing provocation alters a part of the nervous system called the sympathetic nervous system which becomes increasingly activated. This can result in a myriad of symptoms, including a syndrome of symptoms referred to as Barré-Liéou Syndrome.\r\n<h2><strong>Symptoms from Cervical Instability</strong></h2>\r\nSymptoms of neck instability or cervical instability include neck pain, muscle spasms, cracking sounds, and numbness in the arms and legs. Also, remember how we discussed the unique anatomical relationship of the vertebral arteries through the transverse foramina?\r\n\r\nInstability of the neck can cause a change in the flow of the arterial blood through the vertebrae when they are moving excessively. This artery provides circulation to half of the brain, so the extra mobile vertebrae can pinch it off, fostering an insufficiency of blood supply as it travels up to the brain. The condition is called vertebrobasilar insufficiency (VBI). Symptoms of VBI include neck pain, headaches/migraines, dizziness, drop attacks, dizziness, difficulty swallowing and/or speaking, and disturbances in hearing and vision.\r\n<h2><strong>How Can You Treat Neck Pain and Cervical Instability?</strong></h2>\r\n[caption id=\"attachment_3310\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-3310 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" /> <em><strong>       Repair the spine &amp; Relieve Cervical Instability Symptoms</strong></em>[/caption]\r\n\r\nAll of these symptoms can perplex many clinicians. Meanwhile, the sufferer lives with debilitating symptoms, oftentimes going from doctor to doctor, seeking some type of relief from the many and varied symptoms they experience.\r\n\r\nChiropractors do a great job at not only assessing these problems but treating them.  But when Chiropractors are not able to solve the problem or find a complete solution, one must look elsewhere.\r\n\r\nTalk with your chiropractor about Regenerative Orthopedics and what it can do to save your neck from surgery. Many chiropractors know Peter A. Fields, MD, DC, and have heard him lecture, as Dr. Fields is both an MD and a chiropractor.\r\n\r\nRegenerative Orthopedics is actually a great solution to the puzzle of neck pain and cervical instability. Regenerative therapies like Stem Cell Therapy, PRP, and Prolotherapy repair the injured ligaments that are at the core of the problem. Regenerative Orthopedics involves regenerative injection therapies that tighten, repair, and regenerate the ligaments involved in neck instability. The treatments eliminate the unstable movement, associated neck pain, and multiple symptoms.\r\n\r\nRegenerative Orthopedics is a safe non-surgical option that brings stability back to the neck and its structures, which results in increased functional ability. Those who suffer from all of these symptoms as a result of the instability of the neck or cervical spine can finally get relief from this life-altering condition.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Cervical Instability and Neck Pain That Changes Your Life','','inherit','closed','closed','','3301-revision-v1','','','2021-03-05 19:02:49','2021-03-05 19:02:49','',3301,'https://www.drfields.com/uncategorized/3301-revision-v1/',0,'revision','',0),(4533,9,'2021-03-05 19:07:55','2021-03-05 19:07:55','<h3>Cervical Instability and Neck Pain and Symptoms That Change Your Life</h3>\r\nWhen neck injuries occur, like after car accidents, sports injuries, or even wear and tear, the sufferer often lives with neck pain and other disabling symptoms. In this article, we are not referring to a catastrophic neck injury, but one that very often may be considered \"minor.\" Yet the sufferer still lives with symptoms that alter their ability to live normally. The cause may very well be cervical instability, a disorder of the neck or cervical spine that can result in a myriad of symptoms.\r\n<h3>The Uniqueness of the Cervical Spine</h3>\r\nThe neck is unique because it consists of vertebrae that are smaller and more mobile than all of the movable vertebrae of the spine. The high degree of mobility in the neck or cervical spine is necessary in order to move the head through all the different ranges of motion we put it through. Blood is also transported through the neck on the way to the brain by means of the vertebral artery. The artery goes up through an opening called the transverse foramina in the vertebrae of the neck.\r\n\r\nWhy are these features important when discussing neck pain, symptoms, and instability? Well first of all, although the mobility of the neck is great and necessary in order to get things done and function like we like to, this same feature makes the neck vulnerable to injury.\r\n<h3>Ligaments are Affected by Neck Injuries Too. And When Injured, Cause Cervical Instability and Pain!</h3>\r\nSecondly, when an injury to the neck occurs, ligaments are affected. The ligaments are structures that are primarily responsible for joining bones. And they are especially vulnerable when trauma occurs. When the neck is stable, it moves and functions normally, while remaining in proper alignment. All of this protects the blood vessels, nerves, and spinal cord. But an injury to the ligaments changes this whole dynamic because it causes the cervical spine to become unstable.\r\n\r\nWhen the neck is called upon to function, this new instability of the cervical spine can\'t provide adequate support. Neck alignment is changed and a cycle of imbalance is created between the different neck structures. This causes too much movement of the neighboring vertebrae which stresses the ligaments that support them. It also puts undue pressure on the nerve endings within those structures. The result is neck pain! A host of other possible symptoms are set into motion as a result of the various blood vessels and nerves running through the neck vertebrae.\r\n<h2><strong>Whiplash Injuries Are Examples of Cervical Instability </strong></h2>\r\n<img class=\"alignright size-medium wp-image-3311\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-1-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" />People who have experienced whiplash, often have symptoms that seem to last and last. <em>These symptoms are frequently a result of the instability of the vertebrae of the neck, or cervical instability.</em>\r\n\r\nWhiplash injuries are a common cause of cervical instability. The head is literally “whipped” in these injuries. The sudden acceleration and deceleration during rear-end collisions is an example of whiplash. During whiplash, a severe flexion is generated followed by an extension of the neck, in a whip-type motion forward and backward.\r\n\r\nThe backward hyperextension is often associated with more injury to the muscles and ligaments because it lacks the limiting effect of the chin meets the chest in the forward “whip.” Excessive motion in hyperextension severely strains the involved muscles and ligaments. This motion also compresses the adjoining vertebrae.\r\n\r\nLet\'s consider a person who is looking in the rearview mirror at the time of the collision. The rotated neck position puts the ligaments in even greater vulnerability for injury. Why? Well, these particular ligaments are those that help in side to side head movements and they are more susceptible when in this position.\r\n\r\nAs the ligaments become weaker, they are unable to provide a stable neck structure, which leads to even more injury and an ongoing provocation of the nerve endings. The ongoing provocation alters a part of the nervous system called the sympathetic nervous system which becomes increasingly activated. This can result in a myriad of symptoms, including a syndrome of symptoms referred to as Barré-Liéou Syndrome.\r\n<h3><strong>What Are the Symptoms of Cervical Instability?</strong></h3>\r\nSymptoms of neck instability or cervical instability include neck pain, muscle spasms, cracking sounds, and numbness in the arms and legs. Also, remember how we discussed the unique anatomical relationship of the vertebral arteries through the transverse foramina?\r\n\r\nInstability of the neck can cause a change in the flow of the arterial blood through the vertebrae when they are moving excessively. This artery provides circulation to half of the brain, so the extra mobile vertebrae can pinch it off, fostering an insufficiency of blood supply as it travels up to the brain. The condition is called vertebrobasilar insufficiency (VBI). Symptoms of VBI include neck pain, headaches/migraines, dizziness, drop attacks, dizziness, difficulty swallowing and/or speaking, and disturbances in hearing and vision.\r\n<h3><strong>Repair the Neck, And Relieve the Pain of Cervical Instability with Regenerative Orthopedics</strong></h3>\r\n[caption id=\"attachment_3310\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-3310 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" /> <em><strong>       Repair the spine &amp; Relieve Cervical Instability Symptoms</strong></em>[/caption]\r\n\r\nAll of these symptoms can perplex many clinicians. Meanwhile, the sufferer lives with debilitating symptoms, oftentimes going from doctor to doctor, seeking some type of relief from the many and varied symptoms they experience.\r\n\r\nChiropractors do a great job at not only assessing these problems but treating them.  But when Chiropractors are not able to solve the problem or find a complete solution, one must look elsewhere.\r\n\r\nTalk with your chiropractor about Regenerative Orthopedics and what it can do to save your neck from surgery. Many chiropractors know Peter A. Fields, MD, DC, and have heard him lecture, as Dr. Fields is both an MD and a chiropractor.\r\n\r\nRegenerative Orthopedics is actually a great solution to the puzzle of neck pain and cervical instability. Stem Cell Therapy, PRP, and Prolotherapy are types of regenerative therapies that repair the injured ligaments at the core of the problem. Regenerative Orthopedics involves regenerative injection therapies that tighten, repair, and regenerate the ligaments involved in neck instability. The treatments eliminate the unstable movement, associated neck pain, and multiple symptoms.\r\n\r\nRegenerative Orthopedics is a safe non-surgical option that brings stability back to the neck and its structures, which results in increased functional ability. Those who suffer from all of these symptoms as a result of the instability of the neck or cervical spine can finally get relief from this life-altering condition.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Cervical Instability and Neck Pain That Changes Your Life','','inherit','closed','closed','','3301-revision-v1','','','2021-03-05 19:07:55','2021-03-05 19:07:55','',3301,'https://www.drfields.com/uncategorized/3301-revision-v1/',0,'revision','',0),(4534,9,'2021-03-05 19:27:09','2021-03-05 19:27:09','<h3>Cervical Instability and Neck Pain and Symptoms That Change Your Life</h3>\r\nWhen neck injuries occur, like after car accidents, sports injuries, or even wear and tear, the sufferer often lives with neck pain and other disabling symptoms. In this article, we are not referring to a catastrophic neck injury, but one that very often may be considered \"minor.\" Yet the sufferer still lives with symptoms that alter their ability to live normally. The cause may very well be cervical instability, a disorder of the neck or cervical spine that can result in a myriad of symptoms.\r\n<h3>The Uniqueness of the Cervical Spine</h3>\r\nThe neck is unique because it consists of vertebrae that are smaller and more mobile than all of the movable vertebrae of the spine. The high degree of mobility in the neck or cervical spine is necessary in order to move the head through all the different ranges of motion we put it through. Blood is also transported through the neck on the way to the brain by means of the vertebral artery. The artery goes up through an opening called the transverse foramina in the vertebrae of the neck.\r\n\r\nWhy are these features important when discussing neck pain, symptoms, and instability? Well first of all, although the mobility of the neck is great and necessary in order to get things done and function like we like to, this same feature makes the neck vulnerable to injury.\r\n<h3>Ligaments are Affected by Neck Injuries Too. And When Injured, Cause Cervical Instability and Pain!</h3>\r\nSecondly, when an injury to the neck occurs, ligaments are affected. The ligaments are structures that are primarily responsible for joining bones. And they are especially vulnerable when trauma occurs. When the neck is stable, it moves and functions normally. And that\'s because it is remaining in proper alignment. Plus, proper alignment and function protects the blood vessels, nerves, and spinal cord. But an injury to the ligaments changes this whole dynamic because it causes the cervical spine to become unstable.\r\n\r\nAn unstable cervical spine cannot provide adequate support to function properly. But why does the instability make a difference? The instability alters the alignment of the neck which creates a cycle of imbalance between the different neck structures. It also causes too much movement of the neighboring vertebrae. And that stresses the ligaments that support the vertebrae. It also puts undue pressure on the nerve endings within those structures. The result is neck pain! A host of other possible symptoms are set into motion as a result of the various blood vessels and nerves running through the neck vertebrae.\r\n<h2><strong>Whiplash Injuries Are Examples of Cervical Instability </strong></h2>\r\n<img class=\"alignright size-medium wp-image-3311\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-1-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" />People who have experienced whiplash, often have symptoms that seem to last and last. <em>These symptoms are frequently a result of the instability of the vertebrae of the neck, or cervical instability.</em>\r\n\r\nWhiplash injuries are a common cause of cervical instability. The head is literally “whipped” in these injuries. The sudden acceleration and deceleration during rear-end collisions is an example of whiplash. During whiplash, a severe flexion is generated followed by an extension of the neck, in a whip-type motion forward and backward.\r\n\r\nThe backward hyperextension is often associated with more injury to the muscles and ligaments because it lacks the limiting effect of the chin meets the chest in the forward “whip.” Excessive motion in hyperextension severely strains the involved muscles and ligaments. This motion also compresses the adjoining vertebrae.\r\n\r\nLet\'s consider a person who is looking in the rearview mirror at the time of the collision. The rotated neck position puts the ligaments in even greater vulnerability for injury. Why? Well, these particular ligaments are those that help in side to side head movements and they are more susceptible when in this position.\r\n\r\nAs the ligaments become weaker, they are unable to provide a stable neck structure.  And that leads to even more injury and an ongoing provocation of the nerve endings. The ongoing provocation alters a part of the nervous system called the sympathetic nervous system (SNS). And then the SNS becomes increasingly activated. The result of an overactive SNS is a myriad of symptoms, including a syndrome of symptoms referred to as Barré-Liéou Syndrome. We\'ll talk about some of the symptoms of cervical instability below.\r\n<h3><strong>What Are the Symptoms of Cervical Instability?</strong></h3>\r\nSymptoms of neck instability or cervical instability include neck pain, muscle spasms, cracking sounds, and numbness in the arms and legs. Also, remember how we discussed the unique anatomical relationship of the vertebral arteries through the transverse foramina?\r\n\r\nInstability of the neck can cause a change in the flow of the arterial blood through the vertebrae when they are moving excessively. The vertebral artery provides circulation to half of the brain. Therefore, the extra mobile vertebrae can pinch off this artery, fostering an insufficiency of blood supply as it travels up to the brain. The condition is called vertebrobasilar insufficiency (VBI). Symptoms of VBI include neck pain, headaches/migraines, dizziness, drop attacks, dizziness, difficulty swallowing and/or speaking, and disturbances in hearing and vision.\r\n<h3><strong>Repair the Neck, And Relieve the Pain of Cervical Instability with Regenerative Orthopedics</strong></h3>\r\n[caption id=\"attachment_3310\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-3310 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" /> <em><strong>       Repair the spine &amp; Relieve Cervical Instability Symptoms</strong></em>[/caption]\r\n\r\nAll of these symptoms can perplex many clinicians. Meanwhile, the sufferer lives with debilitating symptoms. Oftentimes, they go from doctor to doctor, seeking some type of relief from the many and varied symptoms they experience.\r\n\r\nChiropractors do a great job at not only assessing these problems but treating them.  But when Chiropractors are not able to solve the problem or find a complete solution, one must look elsewhere.\r\n\r\nTalk with your chiropractor about Regenerative Orthopedics and what it can do to save your neck from surgery. Many chiropractors know Peter A. Fields, MD, DC, and have heard him lecture, as Dr. Fields is both an MD and a chiropractor.\r\n\r\nRegenerative Orthopedics is actually a great solution to the puzzle of neck pain and cervical instability. Stem Cell Therapy, PRP, and Prolotherapy are types of regenerative therapies that repair the injured ligaments at the core of the problem. Regenerative Orthopedics involves regenerative injection therapies that tighten, repair, and regenerate the ligaments involved in neck instability. The treatments eliminate the unstable movement, associated neck pain, and multiple symptoms.\r\n\r\nRegenerative Orthopedics is a safe non-surgical option that brings stability back to the neck and its structures, which results in increased functional ability. Those who suffer from all of these symptoms as a result of the instability of the neck or cervical spine can finally get relief from this life-altering condition.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Cervical Instability and Neck Pain That Changes Your Life','','inherit','closed','closed','','3301-revision-v1','','','2021-03-05 19:27:09','2021-03-05 19:27:09','',3301,'https://www.drfields.com/uncategorized/3301-revision-v1/',0,'revision','',0),(4536,9,'2021-03-12 03:06:39','2021-03-12 03:06:39','<h2>Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics</h2>\nMost of us are doing everything we can to stay out of the hospital during this pandemic age. Who would blame us?! So, we do everything we can think of to keep going and keep moving, even if we are hurting. And those who have an injured joint, who still want to exercise, may choose bicycling instead of running, or swimming instead of hiking. That way, they can still keep exercising since there is less stress on the joint and less pain with the different activities.\n\nAnd we may also try over-the-counter medications, rest, physical therapy, acupuncture, manipulation, and whatever else we can possibly find in an effort to get relief. But for some, that pain either never goes away, or it just keeps coming back.\n\n<strong>There is another way!</strong> Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy, is one of the best ways to get relief from your pain without hospitalization or the need for surgery.\n<h3>With Regenerative Orthopedics, There Is:</h3>\n[caption id=\"attachment_4538\" align=\"alignright\" width=\"527\"]<img class=\" wp-image-4538\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Avoid-the-hospital-1-500x466.png\" alt=\"Avoid The Hospital (1)\" width=\"527\" height=\"490\" /> <em>   Stay Out of The Hospital and Avoid Surgery with Regenerative Orthopedics</em>[/caption]\n<ul>\n 	<li><strong>No Hospitalization               </strong></li>\n 	<li><strong>No Surgery</strong></li>\n 	<li><strong>No Steroids</strong></li>\n 	<li><strong>No Drugs Just to Mask Painful Symptoms</strong></li>\n 	<li><strong>No General Anesthesia</strong></li>\n</ul>\n<h3><strong>Plus, With Regenerative Orthopedics, You Get:</strong></h3>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li><strong>Regeneration of Injured Soft Tissue</strong></li>\n 	<li><strong>Joint Repair</strong></li>\n 	<li><strong>No Down Time</strong></li>\n 	<li><strong>Faster Recovery</strong></li>\n 	<li><strong>Pain Relief</strong></li>\n</ul>\n</li>\n</ul>\n<h3>1. No Hospitalization with Regenerative Orthopedics:</h3>\nAt OrthoRegen, we see you and treat you in our medical clinic. <strong>There is no need to go to a hospital! </strong>\n\nPlus, Peter A. Fields, MD, DC is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor.</em> And his practice is exclusively Regenerative Orthopedics. That means you get a very experienced practitioner and a leader in regenerative medicine.\n\nAs a medical doctor with years of experience in regenerative medicine, Peter A. Fields, MD, DC will seek out the best natural medicine solution and perform the optimal type of regenerative therapy for you. And that means you get the treatment that\'s right for you and the best treatment possible to repair your joint quickly. And all of these regenerative therapies are available right in our clinic. As a chiropractor, Dr. Fields understands how the joints work. So, you don\'t have to step into the hospital for what is often unnecessary testing. Sure, if further testing is deemed necessary, they can be prescribed. But a chiropractor\'s familiarity with the joints and referral pain makes imaging less necessary.\n\nIn most cases, Regenerative Orthopedics is effective at eliminating joint<a href=\"/Chronic-Pain\"> pain</a> due to ligament and tendon injury 80 to 90 percent of the time. That\'s a high rate of success! Plus, all of these regenerative techniques help to stimulate the body’s ability to repair...naturally.\n<h3>2. No Surgery Is Needed with Regenerative Orthopedics:</h3>\nRegenerative Orthopedics is an in-office injection treatment that both research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical treatments. We see so many patients in our clinic who are looking to avoid surgery. We are accustomed to that! And we see amazing results. In our opinion, Regenerative Orthopedics is superior to many other treatments in relieving chronic joint and spine pain. Plus, and most importantly, you get back to a happy and active lifestyle without the need for surgery.\n\n<strong>Regenerative Orthopedics is:</strong>\n<ul>\n 	<li>A viable <strong>alternative to surgery</strong></li>\n 	<li><strong>A safe and affordable option</strong> that allows you to keep working and/or training during treatment.</li>\n 	<li>Typically the best treatment to <strong>stabilize and repair injured ligaments and tendons</strong>. Plus, multiple joints and structures can be treated with each visit.</li>\n 	<li><strong>Reparative</strong> in nature. Instead of cutting and removing, it will regenerate and repair the joint.</li>\n</ul>\n<h3><strong>3. No Steroids or Cortisone Are Used in Regenerative Orthopedics:</strong></h3>\nFirst of all, why is this a good thing? <strong>More and more research is pouring in on the detrimental effects of steroids or cortisone </strong><b>injections. Sure, cortisone shots may relieve your pain in the short-term. But they make the problem worse over the long haul.</b>\n\n<strong>Cortisone injections cause:</strong>\n<ul>\n 	<li>Cartilage destruction</li>\n 	<li>Cartilage surface deterioration</li>\n 	<li>Inhibition of new cartilage growth</li>\n 	<li>A decrease in <strong>protein and matrix synthesis</strong> (which refers to the nutrient and healing bed the cells grow in)</li>\n</ul>\n<h4><em>What do the studies show?</em></h4>\n<ul>\n 	<li><strong>Mayo Clinic</strong> says cortisone may hinder the native stem cells in cartilage. \"Studies have shown the deleterious effects of corticosteroids on chondrocytes, suggesting a potentiation of degenerative joint disease.\" And, \"Corticosteroids frequently are used by physicians to reduce inflammation in patients with musculoskeletal disorders, but these agents may hinder MSCs\' innate regenerative capacity in exchange for temporary analgesia.\" <strong>What are Mesenchymal Stem Cells (MSCs)?</strong> They are the building blocks of cartilage and other musculoskeletal tissue. And cortisone threatens their ability to build and repair in exchange for temporary pain relief.1</li>\n</ul>\n<h4><em>Many Physicians Routinely Use Cortisone When It Is Damaging to the Joint. We Do Not!</em></h4>\n<ul>\n 	<li>Another study from the University of Pittsburgh School of Medicine revealed that \"The combination of methylprednisolone and lidocaine was toxic, with virtually no cells surviving after treatment. In addition, methylprednisolone did not mitigate the inflammatory effects of IL-1beta; rather, <strong>it further potentiated the chondrotoxicity.</strong>\"2</li>\n</ul>\nSo we can see that intra-articular injections of corticosteroids are toxic to the joint even though they are widely used in clinical practice. The truth is – <strong>When injected into joints, corticosteroids trigger cartilage cell death!</strong> Plus, they also suppress healing by their innate mechanism of action, which suppresses the immune system and blocks inflammation.\n<h3>4. No Drugs Just to Mask or Chase Pain...Are Used in Regenerative Orthopedics:</h3>\nWe don\'t use addictive pain medications or other medications that just mask or chase the pain. In Regenerative Orthopedics, all of the therapies are natural treatment techniques. For example, the primary ingredient in the Prolotherapy injections is dextrose. This technique involves using the simple and safe base solution dextrose, which is given into and around the entire painful/injured area(s). Why treat the whole area? All of the affected areas are treated comprehensively, so you have the best results.\n\nIf Platelet Rich Plasma (PRP) is recommended, we use your own blood.  PRP is used for acute or chronic musculoskeletal injuries. It is a great option to repair particular soft tissue injuries to help you avoid the pain, complications, and recovery time associated with various types of joint surgery. Your blood platelets contain potent growth factors that are exceptional at tissue repair. Again, <a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\">Platelet Rich Plasma</a> naturally accelerates the normal healing process. Plus, it results in tissue repair and the regeneration of weakened torn or damaged ligaments, tendons, and joints.\n\nWhen Stem Cell Therapy is recommended, we use the <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Gold Standard in Stem Cell Therapy</a>. This is also a natural technique where we use all four kinds of Regenerative Orthopedics, including your own stem cells, to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\n<h3>5. No General Anesthesia Is Used in Regenerative Orthopedics:</h3>\nAre you afraid of receiving general anesthesia? With Regenerative Orthopedics, it\'s not necessary! You not only stay out of the hospital and avoid surgery with Regenerative Orthopedics. But you avoid general anesthesia too! Surgery definitely has its risks. And general anesthesia adds to those risks. Especially for older people.\n\nA recent medical journal says, \"Postoperative mortality and complications after geriatric hip fracture surgery remain high despite efforts to improve perioperative care for these patients.\" And concludes, \"We found the use of general anesthesia and conversion from regional to general anesthesia were associated with a higher risk of mortality during the in-hospital stay compared with regional anesthetic techniques... We also found general anesthesia to be associated with a higher risk of all-cause readmission compared with regional.\"3\n\nIt is such a better idea to avoid anesthesia completely. And you can do that with Regenerative Orthopedics.\n<h3>Regenerative Orthopedics Is Your Answer to Resolve Joint Pain Without Needing to Go To the Hospital</h3>\nAt OrthoRegen, we use a comprehensive approach and a variety of regenerative techniques. And each treatment is individualized according to your unique needs as a patient. The appropriate technique is recommended depending on you and what is required to produce the best healing results and repair.\n\nAre you experiencing pain and trying to stay out of the hospital? Would you like to avoid surgery too? Regenerative Orthopedics can be your non-surgical alternative. Contact us! We would be more than happy to give you a recommendation geared to getting you pain-free and back to the activities you love.\n\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! </a>\n\nRegenerative Orthopedics is effective for sports injuries; back, neck, shoulder, knee, and other joint pain; tendonitis, arthritis, herniated disc, and headaches. Plus, if the injury involves a tendon or ligament, chances are Regenerative Orthopedics will help.\n<h3>References:</h3>\n1Wyles, Cody C., et al. \"Differential cytotoxicity of corticosteroids on human mesenchymal stem cells.\" <i>Clinical Orthopaedics and Related Research®</i> 473.3 (2015): 1155-1164.\n\n2Seshadri, Venkat, Christian H. Coyle, and Constance R. Chu. \"Lidocaine potentiates the chondrotoxicity of methylprednisolone.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 25.4 (2009): 337-347.\n\n3Desai, Vimal, et al. \"Is anesthesia technique associated with a higher risk of mortality or complications within 90 days of surgery for geriatric patients with hip fractures?.\" <i>Clinical orthopaedics and related research</i> 476.6 (2018): 1178.','Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics','','inherit','closed','closed','','1452-autosave-v1','','','2021-03-12 03:06:39','2021-03-12 03:06:39','',1452,'https://www.drfields.com/uncategorized/1452-autosave-v1/',0,'revision','',0),(4537,9,'2021-03-07 21:56:12','2021-03-07 21:56:12','<h2>Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics</h2>\r\nMost of us are doing everything we can to stay out of the hospital during this pandemic age. Who would blame us?! So, we do everything we can in order to keep going. And those who have a joint that hurts, but still want to exercise, may choose bicycling instead of running, or swimming instead of hiking, because their knee or hip hurts too much. And we try over-the-counter medications, rest, physical therapy, acupuncture, manipulation, and whatever else we can find for relief. But somehow that pain either never goes away or just keeps coming back. But there is another way! Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy is one of the best ways to get relief from your pain without the need for surgery.\r\n<h3>With Regenerative Orthopedics There Is:</h3>\r\n<ul>\r\n 	<li><strong>No Hospitalization               </strong></li>\r\n 	<li><strong>No Surgery</strong></li>\r\n 	<li><strong>No Steroids</strong></li>\r\n 	<li><strong>No Drugs</strong></li>\r\n 	<li><strong>No Anesthesia</strong></li>\r\n</ul>\r\n<h3><strong>Plus, With Regenerative Orthopedics You Get:</strong></h3>\r\n<ul>\r\n 	<li><strong>Pain Relief</strong></li>\r\n 	<li><strong>Fast Recovery</strong></li>\r\n 	<li><strong>Joint Repair</strong></li>\r\n 	<li><strong>Regeneration of Injured Soft Tissue</strong></li>\r\n 	<li><strong>No Down Time</strong></li>\r\n</ul>\r\n<h3>No Hospitalization with Regenerative Orthopedics:</h3>\r\nAt OrthoRegen, we see you in our medical clinic. Dr. Peter Fields is dual degreed as both a medical doctor and a chiropractor, and he practices exclusively Regenerative Orthopedics. That means you get a very experiences practitioner. As a chiropractor, he understands how the joints work. You don\'t have to step into the hospital for often unnecessary testing. Plus, as a medical doctor with years of experience in regenerative medicine, he is able to recommend and perform the best type of regenerative therapy that will repair your joint fast. And all of the top of the line therapies are done right in our clinic.\r\n\r\nIn most cases, Regenerative Orthopedics is effective at eliminating joint<a href=\"/Chronic-Pain\"> pain</a> due to ligament and tendon injury 80 to 90 percent of the time. All of these regenerative techniques help to stimulate the body’s ability to repair...naturally.\r\n<h3>No Surgery Is Needed with Regenerative Orthopedics:</h3>\r\nRegenerative Orthopedics is an in-office injection treatment that both research and medical studies have shown to be effective, trustworthy, reliable alternatives to surgical treatments. We see so many patients in our clinic who are trying to avoid surgery. We are accustomed to that! And we see amazing results. In our opinion, Regenerative Orthopedics is superior to many other treatments in relieving the chronic joint and spine pain. Plus, and most importantly, you get back to a happy and active lifestyle, without the need for surgery.\r\n\r\n<strong>Regenerative Orthopedics is:</strong>\r\n<ul>\r\n 	<li>A viable <strong>alternative to surgery</strong></li>\r\n 	<li><strong>Safe and an affordable option</strong> that allows the patient to keep working and/or training during treatment.</li>\r\n 	<li>Typically the best to treatment to stabilize injured ligaments and tendons. Plus, multiple joints and structures can be treated with each visit.</li>\r\n 	<li>Reparative in nature. Instead of cutting and removing, will regenerate and repair the joint.</li>\r\n</ul>\r\n<h3><strong>No Steroids or Cortisone Are Used in Regenerative Orthopedics:</strong></h3>\r\nFirst of all, why is this a good thing? <strong>More and more research is pouring in on the detrimental effects of steroids or cortisone </strong><b>injections. Sure, cortisone shots may relieve your pain in the short-term. But they make the problem worse over the long haul.</b>\r\n\r\n<strong>Cortisone injections cause:</strong>\r\n<ul>\r\n 	<li>Cartilage destruction</li>\r\n 	<li>Cartilage surface deterioration</li>\r\n 	<li>Inhibition of new cartilage growth</li>\r\n 	<li>A decrease of <strong>protein and matrix synthesis</strong> (which refers to the nutrient and healing bed that cells grow in)</li>\r\n</ul>\r\n<h4><em>What do the studies show?</em></h4>\r\n<ul>\r\n 	<li><strong>Mayo Clinic</strong> says cortisone may hinder the native stem cells in cartilage. \"Studies have shown the deleterious effects of corticosteroids on chondrocytes, suggesting a potentiation of degenerative joint disease.\" And, \"Corticosteroids frequently are used by physicians to reduce inflammation in patients with musculoskeletal disorders, but these agents may hinder MSCs\' innate regenerative capacity in exchange for temporary analgesia.\" What are Mesenchymal stem cells (MSCs)? They are the building blocks of cartilage and other musculoskeletal tissue. And cortisone threatens their ability to build and repair  in exchange for temporary pain relief.1</li>\r\n</ul>\r\n<h4><em>Physicians Routinely Use Cortisone When It Is Damaging to the Joint</em></h4>\r\n<ul>\r\n 	<li>Another study from the University of Pittsburgh School of Medicine revealed that, \"The combination of methylprednisolone and lidocaine was toxic, with virtually no cells surviving after treatment. The combination of methylprednisolone and lidocaine was toxic, with virtually no cells surviving after treatment. In addition, methylprednisolone did not mitigate the inflammatory effects of IL-1beta; rather, it further potentiated the chondrotoxicity.\"2</li>\r\n</ul>\r\nSo we can see that intra-articular injections of corticosteroids are toxic to the joint even though they are widely used in clinical practice. The truth is – <strong>When injected into joints, corticosteroids trigger cartilage cell death!</strong> Plus, they also suppress healing by their innate mechanism of action of suppressing the immune system and blocking inflammation.\r\n<h3>No Drugs Are Used in Regenerative Orthopedics:</h3>\r\nWe don\'t use addictive pain medications or any other medication. In Regenerative Orthopedics, all of the therapies are natural treatment techniques. For example, the primary ingredient in the Prolotherapy injections is dextrose. This technique involves using the simple and safe base solution dextrose that is given into and around the entire painful/injured area(s). And the entire joint is treated so you have the best results.\r\n\r\nIf Platelet Rich Plasma (PRP) is recommended, we use your own blood.  PRP is used for acute or chronic musculoskeletal injuries. It is a great option to repair particular soft tissue injuries to help you avoid the pain, complications, and recovery time associated with various types of joint surgery. Your blood platelets contain potent growth factors that are exceptional at tissue repair. Again, <a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\">Platelet Rich Plasma</a> naturally accelerates the normal healing process. Plus, it results in tissue repair and the regeneration of weakened torn or damaged ligaments, ligaments, and joints.\r\n\r\nWhen Stem Cell Therapy is recommended, we use the <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Gold Standard in Stem Cell Therapy</a>. This is also a natural technique where we use all four kinds of Regenerative Orthopedics, including your own stem cells, to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<h3>No Anesthesia Is Used in Regenerative Orthopedics:</h3>\r\nAre you afraid of getting anesthesia? With Regenerative Orthopedics, it\'s not necessary! You not only stay out of the hospital and avoid surgery with Regenerative Orthopedics. But you avoid anesthesia too! Surgery has its risks. And anesthesia adds to those risks. Especially for older people.\r\n\r\nA recent medical journal says, \"Postoperative mortality and complications after geriatric hip fracture surgery remain high despite efforts to improve perioperative care for these patients.\" And concludes, \"We found the use of general anesthesia and conversion from regional to general anesthesia were associated with a higher risk of mortality during the in-hospital stay compared with regional anesthetic techniques... We also found general anesthesia to be associated with a higher risk of all-cause readmission compared with regional.\"3\r\n\r\nIt is such a better idea to avoid anesthesia completely. And you can do that with Regenerative Orthopedics.\r\n<h3>Regenerative Orthopedics Is Your Answer to Resolve Joint Pain Without Needing to Go To the Hospital</h3>\r\nWith a comprehensive approach at OrthoRegen, we utilize a variety of regenerative techniques. And each treatment is individualizing according to your unique needs as a patient. The technique is recommended depending on you and what is required to produce the best healing results and repair.\r\n\r\nIf you have pain but are trying to stay out of the hospital and avoiding surgery, Regenerative Orthopedics is your non-surgical alternative. We would be more than happy to give you a recommendation that is geared to getting you back to the activities you love.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n\r\nRegenerative Orthopedics is effective for sports injuries, back, neck, shoulder, knee, and other joint pain; tendonitis, arthritis, herniated disc and headaches. Plus, if the injury involves a tendon or ligament, chances are Regenerative Orthopedics will help.\r\n<h3>References:</h3>\r\n1Wyles, Cody C., et al. \"Differential cytotoxicity of corticosteroids on human mesenchymal stem cells.\" <i>Clinical Orthopaedics and Related Research®</i> 473.3 (2015): 1155-1164.\r\n\r\n2Seshadri, Venkat, Christian H. Coyle, and Constance R. Chu. \"Lidocaine potentiates the chondrotoxicity of methylprednisolone.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 25.4 (2009): 337-347.\r\n\r\n3Desai, Vimal, et al. \"Is anesthesia technique associated with a higher risk of mortality or complications within 90 days of surgery for geriatric patients with hip fractures?.\" <i>Clinical orthopaedics and related research</i> 476.6 (2018): 1178.','Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics','','inherit','closed','closed','','1452-revision-v1','','','2021-03-07 21:56:12','2021-03-07 21:56:12','',1452,'https://www.drfields.com/uncategorized/1452-revision-v1/',0,'revision','',0),(4538,9,'2021-03-07 22:00:30','2021-03-07 22:00:30','Avoid The Hospital (1)','Stay Out of The Hospital (1)','Stay Out of The Hospital and Avoid Surgery','inherit','open','closed','','avoid-the-hospital-1','','','2021-03-07 22:01:00','2021-03-07 22:01:00','',1452,'https://www.drfields.com/wp-content/uploads/2019/06/Avoid-the-hospital-1.png',0,'attachment','image/png',0),(4539,9,'2021-03-07 22:02:24','2021-03-07 22:02:24','<h2>Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics</h2>\r\nMost of us are doing everything we can to stay out of the hospital during this pandemic age. Who would blame us?! So, we do everything we can in order to keep going. And those who have a joint that hurts, but still want to exercise, may choose bicycling instead of running, or swimming instead of hiking, because their knee or hip hurts too much. And we try over-the-counter medications, rest, physical therapy, acupuncture, manipulation, and whatever else we can find for relief. But somehow that pain either never goes away or just keeps coming back. But there is another way! Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy is one of the best ways to get relief from your pain without the need for surgery.\r\n<h3>With Regenerative Orthopedics There Is:</h3>\r\n[caption id=\"attachment_4538\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4538\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Avoid-the-hospital-1-500x466.png\" alt=\"Avoid The Hospital (1)\" width=\"500\" height=\"466\" /> <em>  Stay Out of The Hospital and Avoid Surgery with Regenerative Orthopedics</em>[/caption]\r\n<ul>\r\n 	<li><strong>No Hospitalization               </strong></li>\r\n 	<li><strong>No Surgery</strong></li>\r\n 	<li><strong>No Steroids</strong></li>\r\n 	<li><strong>No Drugs</strong></li>\r\n 	<li><strong>No Anesthesia</strong></li>\r\n</ul>\r\n<h3><strong>Plus, With Regenerative Orthopedics You Get:</strong></h3>\r\n<ul>\r\n 	<li><strong>Pain Relief</strong></li>\r\n 	<li><strong>Fast Recovery</strong></li>\r\n 	<li><strong>Joint Repair</strong></li>\r\n 	<li><strong>Regeneration of Injured Soft Tissue</strong></li>\r\n 	<li><strong>No Down Time</strong></li>\r\n</ul>\r\n<h3>No Hospitalization with Regenerative Orthopedics:</h3>\r\nAt OrthoRegen, we see you in our medical clinic. Dr. Peter Fields is dual degreed as both a medical doctor and a chiropractor, and he practices exclusively Regenerative Orthopedics. That means you get a very experiences practitioner. As a chiropractor, he understands how the joints work. You don\'t have to step into the hospital for often    unnecessary testing. Plus, as a medical doctor with years of experience in regenerative medicine, he is able to recommend and perform the best type of regenerative therapy that will repair your joint fast. And all of the top of the line therapies are done right in our clinic.\r\n\r\nIn most cases, Regenerative Orthopedics is effective at eliminating joint<a href=\"/Chronic-Pain\"> pain</a> due to ligament and tendon injury 80 to 90 percent of the time. All of these regenerative techniques help to stimulate the body’s ability to repair...naturally.\r\n<h3>No Surgery Is Needed with Regenerative Orthopedics:</h3>\r\nRegenerative Orthopedics is an in-office injection treatment that both research and medical studies have shown to be effective, trustworthy, reliable alternatives to surgical treatments. We see so many patients in our clinic who are trying to avoid surgery. We are accustomed to that! And we see amazing results. In our opinion, Regenerative Orthopedics is superior to many other treatments in relieving the chronic joint and spine pain. Plus, and most importantly, you get back to a happy and active lifestyle, without the need for surgery.\r\n\r\n<strong>Regenerative Orthopedics is:</strong>\r\n<ul>\r\n 	<li>A viable <strong>alternative to surgery</strong></li>\r\n 	<li><strong>Safe and an affordable option</strong> that allows the patient to keep working and/or training during treatment.</li>\r\n 	<li>Typically the best to treatment to stabilize injured ligaments and tendons. Plus, multiple joints and structures can be treated with each visit.</li>\r\n 	<li>Reparative in nature. Instead of cutting and removing, will regenerate and repair the joint.</li>\r\n</ul>\r\n<h3><strong>No Steroids or Cortisone Are Used in Regenerative Orthopedics:</strong></h3>\r\nFirst of all, why is this a good thing? <strong>More and more research is pouring in on the detrimental effects of steroids or cortisone </strong><b>injections. Sure, cortisone shots may relieve your pain in the short-term. But they make the problem worse over the long haul.</b>\r\n\r\n<strong>Cortisone injections cause:</strong>\r\n<ul>\r\n 	<li>Cartilage destruction</li>\r\n 	<li>Cartilage surface deterioration</li>\r\n 	<li>Inhibition of new cartilage growth</li>\r\n 	<li>A decrease of <strong>protein and matrix synthesis</strong> (which refers to the nutrient and healing bed that cells grow in)</li>\r\n</ul>\r\n<h4><em>What do the studies show?</em></h4>\r\n<ul>\r\n 	<li><strong>Mayo Clinic</strong> says cortisone may hinder the native stem cells in cartilage. \"Studies have shown the deleterious effects of corticosteroids on chondrocytes, suggesting a potentiation of degenerative joint disease.\" And, \"Corticosteroids frequently are used by physicians to reduce inflammation in patients with musculoskeletal disorders, but these agents may hinder MSCs\' innate regenerative capacity in exchange for temporary analgesia.\" What are Mesenchymal stem cells (MSCs)? They are the building blocks of cartilage and other musculoskeletal tissue. And cortisone threatens their ability to build and repair  in exchange for temporary pain relief.1</li>\r\n</ul>\r\n<h4><em>Physicians Routinely Use Cortisone When It Is Damaging to the Joint</em></h4>\r\n<ul>\r\n 	<li>Another study from the University of Pittsburgh School of Medicine revealed that, \"The combination of methylprednisolone and lidocaine was toxic, with virtually no cells surviving after treatment. The combination of methylprednisolone and lidocaine was toxic, with virtually no cells surviving after treatment. In addition, methylprednisolone did not mitigate the inflammatory effects of IL-1beta; rather, it further potentiated the chondrotoxicity.\"2</li>\r\n</ul>\r\nSo we can see that intra-articular injections of corticosteroids are toxic to the joint even though they are widely used in clinical practice. The truth is – <strong>When injected into joints, corticosteroids trigger cartilage cell death!</strong> Plus, they also suppress healing by their innate mechanism of action of suppressing the immune system and blocking inflammation.\r\n<h3>No Drugs Are Used in Regenerative Orthopedics:</h3>\r\nWe don\'t use addictive pain medications or any other medication. In Regenerative Orthopedics, all of the therapies are natural treatment techniques. For example, the primary ingredient in the Prolotherapy injections is dextrose. This technique involves using the simple and safe base solution dextrose that is given into and around the entire painful/injured area(s). And the entire joint is treated so you have the best results.\r\n\r\nIf Platelet Rich Plasma (PRP) is recommended, we use your own blood.  PRP is used for acute or chronic musculoskeletal injuries. It is a great option to repair particular soft tissue injuries to help you avoid the pain, complications, and recovery time associated with various types of joint surgery. Your blood platelets contain potent growth factors that are exceptional at tissue repair. Again, <a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\">Platelet Rich Plasma</a> naturally accelerates the normal healing process. Plus, it results in tissue repair and the regeneration of weakened torn or damaged ligaments, ligaments, and joints.\r\n\r\nWhen Stem Cell Therapy is recommended, we use the <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Gold Standard in Stem Cell Therapy</a>. This is also a natural technique where we use all four kinds of Regenerative Orthopedics, including your own stem cells, to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<h3>No Anesthesia Is Used in Regenerative Orthopedics:</h3>\r\nAre you afraid of getting anesthesia? With Regenerative Orthopedics, it\'s not necessary! You not only stay out of the hospital and avoid surgery with Regenerative Orthopedics. But you avoid anesthesia too! Surgery has its risks. And anesthesia adds to those risks. Especially for older people.\r\n\r\nA recent medical journal says, \"Postoperative mortality and complications after geriatric hip fracture surgery remain high despite efforts to improve perioperative care for these patients.\" And concludes, \"We found the use of general anesthesia and conversion from regional to general anesthesia were associated with a higher risk of mortality during the in-hospital stay compared with regional anesthetic techniques... We also found general anesthesia to be associated with a higher risk of all-cause readmission compared with regional.\"3\r\n\r\nIt is such a better idea to avoid anesthesia completely. And you can do that with Regenerative Orthopedics.\r\n<h3>Regenerative Orthopedics Is Your Answer to Resolve Joint Pain Without Needing to Go To the Hospital</h3>\r\nWith a comprehensive approach at OrthoRegen, we utilize a variety of regenerative techniques. And each treatment is individualizing according to your unique needs as a patient. The technique is recommended depending on you and what is required to produce the best healing results and repair.\r\n\r\nIf you have pain but are trying to stay out of the hospital and avoiding surgery, Regenerative Orthopedics is your non-surgical alternative. We would be more than happy to give you a recommendation that is geared to getting you back to the activities you love.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n\r\nRegenerative Orthopedics is effective for sports injuries, back, neck, shoulder, knee, and other joint pain; tendonitis, arthritis, herniated disc and headaches. Plus, if the injury involves a tendon or ligament, chances are Regenerative Orthopedics will help.\r\n<h3>References:</h3>\r\n1Wyles, Cody C., et al. \"Differential cytotoxicity of corticosteroids on human mesenchymal stem cells.\" <i>Clinical Orthopaedics and Related Research®</i> 473.3 (2015): 1155-1164.\r\n\r\n2Seshadri, Venkat, Christian H. Coyle, and Constance R. Chu. \"Lidocaine potentiates the chondrotoxicity of methylprednisolone.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 25.4 (2009): 337-347.\r\n\r\n3Desai, Vimal, et al. \"Is anesthesia technique associated with a higher risk of mortality or complications within 90 days of surgery for geriatric patients with hip fractures?.\" <i>Clinical orthopaedics and related research</i> 476.6 (2018): 1178.','Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics','','inherit','closed','closed','','1452-revision-v1','','','2021-03-07 22:02:24','2021-03-07 22:02:24','',1452,'https://www.drfields.com/uncategorized/1452-revision-v1/',0,'revision','',0),(4540,9,'2021-03-09 01:53:30','2021-03-09 01:53:30','<h2>Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics</h2>\r\nMost of us are doing everything we can to stay out of the hospital during this pandemic age. Who would blame us?! So, we do everything we can think of in order to keep going and keep moving, even if we are hurting. And those who have an injured joint, who still want to exercise, may choose bicycling instead of running, or swimming instead of hiking. That way they can still keep exercising since there is less stress on the joint and less pain with the different activity.\r\n\r\nAnd we may also try over-the-counter medications, rest, physical therapy, acupuncture, manipulation, and whatever else we can possibly find in an effort to get relief. But for some, that pain either never goes away or it just keeps coming back.\r\n\r\n<strong>There is another way!</strong> Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy is one of the best ways to get relief from your pain without hospitalization or the need for surgery.\r\n<h3>With Regenerative Orthopedics There Is:</h3>\r\n[caption id=\"attachment_4538\" align=\"alignright\" width=\"462\"]<img class=\" wp-image-4538\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Avoid-the-hospital-1-500x466.png\" alt=\"Avoid The Hospital (1)\" width=\"462\" height=\"430\" /> <em>  Stay Out of The Hospital and Avoid Surgery with Regenerative Orthopedics</em>[/caption]\r\n<ul>\r\n 	<li><strong>No Hospitalization               </strong></li>\r\n 	<li><strong>No Surgery</strong></li>\r\n 	<li><strong>No Steroids</strong></li>\r\n 	<li><strong>No Drugs</strong></li>\r\n 	<li><strong>No Anesthesia</strong></li>\r\n</ul>\r\n<h3><strong>Plus, With Regenerative Orthopedics You Get:</strong></h3>\r\n<ul>\r\n 	<li><strong>Pain Relief</strong></li>\r\n 	<li><strong>Fast Recovery</strong></li>\r\n 	<li><strong>Joint Repair</strong></li>\r\n 	<li><strong>Regeneration of Injured Soft Tissue</strong></li>\r\n 	<li><strong>No Down Time</strong></li>\r\n</ul>\r\n<h3>No Hospitalization with Regenerative Orthopedics:</h3>\r\nAt OrthoRegen, we see you in our medical clinic. Dr. Peter Fields is dual degreed as both a medical doctor and a chiropractor, and he practices exclusively Regenerative Orthopedics. That means you get a very experiences practitioner. As a chiropractor, he understands how the joints work. You don\'t have to step into the hospital for often    unnecessary testing. Plus, as a medical doctor with years of experience in regenerative medicine, he is able to recommend and perform the best type of regenerative therapy that will repair your joint fast. And all of the top of the line therapies are done right in our clinic.\r\n\r\nIn most cases, Regenerative Orthopedics is effective at eliminating joint<a href=\"/Chronic-Pain\"> pain</a> due to ligament and tendon injury 80 to 90 percent of the time. All of these regenerative techniques help to stimulate the body’s ability to repair...naturally.\r\n<h3>No Surgery Is Needed with Regenerative Orthopedics:</h3>\r\nRegenerative Orthopedics is an in-office injection treatment that both research and medical studies have shown to be effective, trustworthy, reliable alternatives to surgical treatments. We see so many patients in our clinic who are trying to avoid surgery. We are accustomed to that! And we see amazing results. In our opinion, Regenerative Orthopedics is superior to many other treatments in relieving the chronic joint and spine pain. Plus, and most importantly, you get back to a happy and active lifestyle, without the need for surgery.\r\n\r\n<strong>Regenerative Orthopedics is:</strong>\r\n<ul>\r\n 	<li>A viable <strong>alternative to surgery</strong></li>\r\n 	<li><strong>Safe and an affordable option</strong> that allows the patient to keep working and/or training during treatment.</li>\r\n 	<li>Typically the best to treatment to stabilize injured ligaments and tendons. Plus, multiple joints and structures can be treated with each visit.</li>\r\n 	<li>Reparative in nature. Instead of cutting and removing, will regenerate and repair the joint.</li>\r\n</ul>\r\n<h3><strong>No Steroids or Cortisone Are Used in Regenerative Orthopedics:</strong></h3>\r\nFirst of all, why is this a good thing? <strong>More and more research is pouring in on the detrimental effects of steroids or cortisone </strong><b>injections. Sure, cortisone shots may relieve your pain in the short-term. But they make the problem worse over the long haul.</b>\r\n\r\n<strong>Cortisone injections cause:</strong>\r\n<ul>\r\n 	<li>Cartilage destruction</li>\r\n 	<li>Cartilage surface deterioration</li>\r\n 	<li>Inhibition of new cartilage growth</li>\r\n 	<li>A decrease of <strong>protein and matrix synthesis</strong> (which refers to the nutrient and healing bed that cells grow in)</li>\r\n</ul>\r\n<h4><em>What do the studies show?</em></h4>\r\n<ul>\r\n 	<li><strong>Mayo Clinic</strong> says cortisone may hinder the native stem cells in cartilage. \"Studies have shown the deleterious effects of corticosteroids on chondrocytes, suggesting a potentiation of degenerative joint disease.\" And, \"Corticosteroids frequently are used by physicians to reduce inflammation in patients with musculoskeletal disorders, but these agents may hinder MSCs\' innate regenerative capacity in exchange for temporary analgesia.\" What are Mesenchymal stem cells (MSCs)? They are the building blocks of cartilage and other musculoskeletal tissue. And cortisone threatens their ability to build and repair  in exchange for temporary pain relief.1</li>\r\n</ul>\r\n<h4><em>Physicians Routinely Use Cortisone When It Is Damaging to the Joint</em></h4>\r\n<ul>\r\n 	<li>Another study from the University of Pittsburgh School of Medicine revealed that, \"The combination of methylprednisolone and lidocaine was toxic, with virtually no cells surviving after treatment. The combination of methylprednisolone and lidocaine was toxic, with virtually no cells surviving after treatment. In addition, methylprednisolone did not mitigate the inflammatory effects of IL-1beta; rather, it further potentiated the chondrotoxicity.\"2</li>\r\n</ul>\r\nSo we can see that intra-articular injections of corticosteroids are toxic to the joint even though they are widely used in clinical practice. The truth is – <strong>When injected into joints, corticosteroids trigger cartilage cell death!</strong> Plus, they also suppress healing by their innate mechanism of action of suppressing the immune system and blocking inflammation.\r\n<h3>No Drugs Are Used in Regenerative Orthopedics:</h3>\r\nWe don\'t use addictive pain medications or any other medication. In Regenerative Orthopedics, all of the therapies are natural treatment techniques. For example, the primary ingredient in the Prolotherapy injections is dextrose. This technique involves using the simple and safe base solution dextrose that is given into and around the entire painful/injured area(s). And the entire joint is treated so you have the best results.\r\n\r\nIf Platelet Rich Plasma (PRP) is recommended, we use your own blood.  PRP is used for acute or chronic musculoskeletal injuries. It is a great option to repair particular soft tissue injuries to help you avoid the pain, complications, and recovery time associated with various types of joint surgery. Your blood platelets contain potent growth factors that are exceptional at tissue repair. Again, <a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\">Platelet Rich Plasma</a> naturally accelerates the normal healing process. Plus, it results in tissue repair and the regeneration of weakened torn or damaged ligaments, ligaments, and joints.\r\n\r\nWhen Stem Cell Therapy is recommended, we use the <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Gold Standard in Stem Cell Therapy</a>. This is also a natural technique where we use all four kinds of Regenerative Orthopedics, including your own stem cells, to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<h3>No Anesthesia Is Used in Regenerative Orthopedics:</h3>\r\nAre you afraid of getting anesthesia? With Regenerative Orthopedics, it\'s not necessary! You not only stay out of the hospital and avoid surgery with Regenerative Orthopedics. But you avoid anesthesia too! Surgery has its risks. And anesthesia adds to those risks. Especially for older people.\r\n\r\nA recent medical journal says, \"Postoperative mortality and complications after geriatric hip fracture surgery remain high despite efforts to improve perioperative care for these patients.\" And concludes, \"We found the use of general anesthesia and conversion from regional to general anesthesia were associated with a higher risk of mortality during the in-hospital stay compared with regional anesthetic techniques... We also found general anesthesia to be associated with a higher risk of all-cause readmission compared with regional.\"3\r\n\r\nIt is such a better idea to avoid anesthesia completely. And you can do that with Regenerative Orthopedics.\r\n<h3>Regenerative Orthopedics Is Your Answer to Resolve Joint Pain Without Needing to Go To the Hospital</h3>\r\nWith a comprehensive approach at OrthoRegen, we utilize a variety of regenerative techniques. And each treatment is individualizing according to your unique needs as a patient. The technique is recommended depending on you and what is required to produce the best healing results and repair.\r\n\r\nIf you have pain but are trying to stay out of the hospital and avoiding surgery, Regenerative Orthopedics is your non-surgical alternative. We would be more than happy to give you a recommendation that is geared to getting you back to the activities you love.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n\r\nRegenerative Orthopedics is effective for sports injuries, back, neck, shoulder, knee, and other joint pain; tendonitis, arthritis, herniated disc and headaches. Plus, if the injury involves a tendon or ligament, chances are Regenerative Orthopedics will help.\r\n<h3>References:</h3>\r\n1Wyles, Cody C., et al. \"Differential cytotoxicity of corticosteroids on human mesenchymal stem cells.\" <i>Clinical Orthopaedics and Related Research®</i> 473.3 (2015): 1155-1164.\r\n\r\n2Seshadri, Venkat, Christian H. Coyle, and Constance R. Chu. \"Lidocaine potentiates the chondrotoxicity of methylprednisolone.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 25.4 (2009): 337-347.\r\n\r\n3Desai, Vimal, et al. \"Is anesthesia technique associated with a higher risk of mortality or complications within 90 days of surgery for geriatric patients with hip fractures?.\" <i>Clinical orthopaedics and related research</i> 476.6 (2018): 1178.','Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics','','inherit','closed','closed','','1452-revision-v1','','','2021-03-09 01:53:30','2021-03-09 01:53:30','',1452,'https://www.drfields.com/uncategorized/1452-revision-v1/',0,'revision','',0),(4541,9,'2021-03-09 02:28:24','2021-03-09 02:28:24','<h2>Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics</h2>\r\nMost of us are doing everything we can to stay out of the hospital during this pandemic age. Who would blame us?! So, we do everything we can think of to keep going and keep moving, even if we are hurting. And those who have an injured joint, who still want to exercise, may choose bicycling instead of running, or swimming instead of hiking. That way, they can still keep exercising since there is less stress on the joint and less pain with the different activities.\r\n\r\nAnd we may also try over-the-counter medications, rest, physical therapy, acupuncture, manipulation, and whatever else we can possibly find in an effort to get relief. But for some, that pain either never goes away, or it just keeps coming back.\r\n\r\n<strong>There is another way!</strong> Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy, is one of the best ways to get relief from your pain without hospitalization or the need for surgery.\r\n<h3>With Regenerative Orthopedics, There Is:</h3>\r\n[caption id=\"attachment_4538\" align=\"alignright\" width=\"489\"]<img class=\" wp-image-4538\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Avoid-the-hospital-1-500x466.png\" alt=\"Avoid The Hospital (1)\" width=\"489\" height=\"455\" /> <em>  Stay Out of The Hospital and Avoid Surgery with Regenerative Orthopedics</em>[/caption]\r\n<ul>\r\n 	<li><strong>No Hospitalization               </strong></li>\r\n 	<li><strong>No Surgery</strong></li>\r\n 	<li><strong>No Steroids</strong></li>\r\n 	<li><strong>No Drugs</strong></li>\r\n 	<li><strong>No Anesthesia</strong></li>\r\n</ul>\r\n<h3><strong>Plus, With Regenerative Orthopedics, You Get:</strong></h3>\r\n<ul>\r\n 	<li><strong>Pain Relief</strong></li>\r\n 	<li><strong>Fast Recovery</strong></li>\r\n 	<li><strong>Joint Repair</strong></li>\r\n 	<li><strong>Regeneration of Injured Soft Tissue</strong></li>\r\n 	<li><strong>No Down Time</strong></li>\r\n</ul>\r\n<h3>1. No Hospitalization with Regenerative Orthopedics:</h3>\r\nAt OrthoRegen, we see you and treat you in our medical clinic. <strong>There is no need to go to a hospital! </strong>\r\n\r\nPlus, Dr. Peter Fields is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor.</em> And his practice is exclusively Regenerative Orthopedics. That means you get a very experienced practitioner.\r\n\r\nAs a chiropractor, he understands how the joints work. So, you don\'t have to step into the hospital for what is often unnecessary testing. Sure, if further testing is deemed necessary, they can be prescribed. But a chiropractor\'s familiarity with the joints and referral pain makes imaging less necessary. Plus, as a medical doctor with years of experience in regenerative medicine, he is able to recommend and perform the best type of regenerative therapy for you. And that means you get the right treatment for you and the best treatment to repair your joint quickly. And all of these regenerative therapies are available right in our clinic.\r\n\r\nIn most cases, Regenerative Orthopedics is effective at eliminating joint<a href=\"/Chronic-Pain\"> pain</a> due to ligament and tendon injury 80 to 90 percent of the time. That\'s a high rate of success! Plus, all of these regenerative techniques help to stimulate the body’s ability to repair...naturally.\r\n<h3>2. No Surgery Is Needed with Regenerative Orthopedics:</h3>\r\nRegenerative Orthopedics is an in-office injection treatment that both research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical treatments. We see so many patients in our clinic who are looking to avoid surgery. We are accustomed to that! And we see amazing results. In our opinion, Regenerative Orthopedics is superior to many other treatments in relieving chronic joint and spine pain. Plus, and most importantly, you get back to a happy and active lifestyle without the need for surgery.\r\n\r\n<strong>Regenerative Orthopedics is:</strong>\r\n<ul>\r\n 	<li>A viable <strong>alternative to surgery</strong></li>\r\n 	<li><strong>A safe and affordable option</strong> that allows you to keep working and/or training during treatment.</li>\r\n 	<li>Typically the best treatment to <strong>stabilize and repair injured ligaments and tendons</strong>. Plus, multiple joints and structures can be treated with each visit.</li>\r\n 	<li><strong>Reparative</strong> in nature. Instead of cutting and removing, it will regenerate and repair the joint.</li>\r\n</ul>\r\n<h3><strong>3. No Steroids or Cortisone Are Used in Regenerative Orthopedics:</strong></h3>\r\nFirst of all, why is this a good thing? <strong>More and more research is pouring in on the detrimental effects of steroids or cortisone </strong><b>injections. Sure, cortisone shots may relieve your pain in the short-term. But they make the problem worse over the long haul.</b>\r\n\r\n<strong>Cortisone injections cause:</strong>\r\n<ul>\r\n 	<li>Cartilage destruction</li>\r\n 	<li>Cartilage surface deterioration</li>\r\n 	<li>Inhibition of new cartilage growth</li>\r\n 	<li>A decrease in <strong>protein and matrix synthesis</strong> (which refers to the nutrient and healing bed the cells grow in)</li>\r\n</ul>\r\n<h4><em>What do the studies show?</em></h4>\r\n<ul>\r\n 	<li><strong>Mayo Clinic</strong> says cortisone may hinder the native stem cells in cartilage. \"Studies have shown the deleterious effects of corticosteroids on chondrocytes, suggesting a potentiation of degenerative joint disease.\" And, \"Corticosteroids frequently are used by physicians to reduce inflammation in patients with musculoskeletal disorders, but these agents may hinder MSCs\' innate regenerative capacity in exchange for temporary analgesia.\" <strong>What are Mesenchymal Stem Cells (MSCs)?</strong> They are the building blocks of cartilage and other musculoskeletal tissue. And cortisone threatens their ability to build and repair in exchange for temporary pain relief.1</li>\r\n</ul>\r\n<h4><em>Many Physicians Routinely Use Cortisone When It Is Damaging to the Joint. We Do Not!</em></h4>\r\n<ul>\r\n 	<li>Another study from the University of Pittsburgh School of Medicine revealed that \"The combination of methylprednisolone and lidocaine was toxic, with virtually no cells surviving after treatment. In addition, methylprednisolone did not mitigate the inflammatory effects of IL-1beta; rather, <strong>it further potentiated the chondrotoxicity.</strong>\"2</li>\r\n</ul>\r\nSo we can see that intra-articular injections of corticosteroids are toxic to the joint even though they are widely used in clinical practice. The truth is – <strong>When injected into joints, corticosteroids trigger cartilage cell death!</strong> Plus, they also suppress healing by their innate mechanism of action, which suppresses the immune system and blocks inflammation.\r\n<h3>4. No Drugs Are Used in Regenerative Orthopedics:</h3>\r\nWe don\'t use addictive pain medications or any other medication. In Regenerative Orthopedics, all of the therapies are natural treatment techniques. For example, the primary ingredient in the Prolotherapy injections is dextrose. This technique involves using the simple and safe base solution dextrose, which is given into and around the entire painful/injured area(s). Why treat the whole area? All of the affected areas are treated comprehensively, so you have the best results.\r\n\r\nIf Platelet Rich Plasma (PRP) is recommended, we use your own blood.  PRP is used for acute or chronic musculoskeletal injuries. It is a great option to repair particular soft tissue injuries to help you avoid the pain, complications, and recovery time associated with various types of joint surgery. Your blood platelets contain potent growth factors that are exceptional at tissue repair. Again, <a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\">Platelet Rich Plasma</a> naturally accelerates the normal healing process. Plus, it results in tissue repair and the regeneration of weakened torn or damaged ligaments, tendons, and joints.\r\n\r\nWhen Stem Cell Therapy is recommended, we use the <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Gold Standard in Stem Cell Therapy</a>. This is also a natural technique where we use all four kinds of Regenerative Orthopedics, including your own stem cells, to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<h3>5. No Anesthesia Is Used in Regenerative Orthopedics:</h3>\r\nAre you afraid of getting anesthesia? With Regenerative Orthopedics, it\'s not necessary! You not only stay out of the hospital and avoid surgery with Regenerative Orthopedics. But you avoid anesthesia too! Surgery definitely has its risks. And anesthesia adds to those risks. Especially for older people.\r\n\r\nA recent medical journal says, \"Postoperative mortality and complications after geriatric hip fracture surgery remain high despite efforts to improve perioperative care for these patients.\" And concludes, \"We found the use of general anesthesia and conversion from regional to general anesthesia were associated with a higher risk of mortality during the in-hospital stay compared with regional anesthetic techniques... We also found general anesthesia to be associated with a higher risk of all-cause readmission compared with regional.\"3\r\n\r\nIt is such a better idea to avoid anesthesia completely. And you can do that with Regenerative Orthopedics.\r\n<h3>Regenerative Orthopedics Is Your Answer to Resolve Joint Pain Without Needing to Go To the Hospital</h3>\r\nAt OrthoRegen, we use a comprehensive approach and a variety of regenerative techniques. And each treatment is individualized according to your unique needs as a patient. The appropriate technique is recommended depending on you and what is required to produce the best healing results and repair.\r\n\r\nAre you experiencing pain and trying to stay out of the hospital? Would you like to avoid surgery too? Regenerative Orthopedics can be your non-surgical alternative. Contact us! We would be more than happy to give you a recommendation geared to getting you pain-free and back to the activities you love.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! </a>\r\n\r\nRegenerative Orthopedics is effective for sports injuries; back, neck, shoulder, knee, and other joint pain; tendonitis, arthritis, herniated disc, and headaches. Plus, if the injury involves a tendon or ligament, chances are Regenerative Orthopedics will help.\r\n<h3>References:</h3>\r\n1Wyles, Cody C., et al. \"Differential cytotoxicity of corticosteroids on human mesenchymal stem cells.\" <i>Clinical Orthopaedics and Related Research®</i> 473.3 (2015): 1155-1164.\r\n\r\n2Seshadri, Venkat, Christian H. Coyle, and Constance R. Chu. \"Lidocaine potentiates the chondrotoxicity of methylprednisolone.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 25.4 (2009): 337-347.\r\n\r\n3Desai, Vimal, et al. \"Is anesthesia technique associated with a higher risk of mortality or complications within 90 days of surgery for geriatric patients with hip fractures?.\" <i>Clinical orthopaedics and related research</i> 476.6 (2018): 1178.','Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics','','inherit','closed','closed','','1452-revision-v1','','','2021-03-09 02:28:24','2021-03-09 02:28:24','',1452,'https://www.drfields.com/uncategorized/1452-revision-v1/',0,'revision','',0),(4542,9,'2021-03-09 03:03:00','2021-03-09 03:03:00','<h3>Cervical Instability: Neck Pain and Symptoms That Change Your Life</h3>\r\nWhen neck injuries occur, like after car accidents, sports injuries, or even wear and tear, the sufferer often lives with neck pain and other disabling symptoms. In this article, we are not referring to a catastrophic neck injury, but one that very often may be considered \"minor.\" Yet the sufferer still lives with symptoms that alter their ability to live normally. The cause may very well be cervical instability, a disorder of the neck or cervical spine that can result in a myriad of symptoms.\r\n<h3>The Uniqueness of the Cervical Spine</h3>\r\nThe neck is unique because it consists of vertebrae that are smaller and more mobile than all of the movable vertebrae of the spine. The high degree of mobility in the neck or cervical spine is necessary in order to move the head through all the different ranges of motion we put it through. Blood is also transported through the neck on the way to the brain by means of the vertebral artery. The artery goes up through an opening called the transverse foramina in the vertebrae of the neck.\r\n\r\nWhy are these features important when discussing neck pain, symptoms, and instability? Well first of all, although the mobility of the neck is great and necessary in order to get things done and function like we like to, this same feature makes the neck vulnerable to injury.\r\n<h3>Ligaments are Affected by Neck Injuries Too. And When Injured, Cause Cervical Instability and Pain!</h3>\r\nSecondly, when an injury to the neck occurs, ligaments are affected. The ligaments are structures that are primarily responsible for joining bones. And they are especially vulnerable when trauma occurs. When the neck is stable, it moves and functions normally. And that\'s because it is remaining in proper alignment. Plus, proper alignment and function protects the blood vessels, nerves, and spinal cord. But an injury to the ligaments changes this whole dynamic because it causes the cervical spine to become unstable.\r\n\r\nAn unstable cervical spine cannot provide adequate support to function properly. But why does the instability make a difference? The instability alters the alignment of the neck which creates a cycle of imbalance between the different neck structures. It also causes too much movement of the neighboring vertebrae. And that stresses the ligaments that support the vertebrae. It also puts undue pressure on the nerve endings within those structures. The result is neck pain! A host of other possible symptoms are set into motion as a result of the various blood vessels and nerves running through the neck vertebrae.\r\n<h2><strong>Whiplash Injuries Are Examples of Cervical Instability </strong></h2>\r\n<img class=\"alignright size-medium wp-image-3311\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-1-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" />People who have experienced whiplash, often have symptoms that seem to last and last. <em>These symptoms are frequently a result of the instability of the vertebrae of the neck, or cervical instability.</em>\r\n\r\nWhiplash injuries are a common cause of cervical instability. The head is literally “whipped” in these injuries. The sudden acceleration and deceleration during rear-end collisions is an example of whiplash. During whiplash, a severe flexion is generated followed by an extension of the neck, in a whip-type motion forward and backward.\r\n\r\nThe backward hyperextension is often associated with more injury to the muscles and ligaments because it lacks the limiting effect of the chin meets the chest in the forward “whip.” Excessive motion in hyperextension severely strains the involved muscles and ligaments. This motion also compresses the adjoining vertebrae.\r\n\r\nLet\'s consider a person who is looking in the rearview mirror at the time of the collision. The rotated neck position puts the ligaments in even greater vulnerability for injury. Why? Well, these particular ligaments are those that help in side to side head movements and they are more susceptible when in this position.\r\n\r\nAs the ligaments become weaker, they are unable to provide a stable neck structure.  And that leads to even more injury and an ongoing provocation of the nerve endings. The ongoing provocation alters a part of the nervous system called the sympathetic nervous system (SNS). And then the SNS becomes increasingly activated. The result of an overactive SNS is a myriad of symptoms, including a syndrome of symptoms referred to as Barré-Liéou Syndrome. We\'ll talk about some of the symptoms of cervical instability below.\r\n<h3><strong>What Are the Symptoms of Cervical Instability?</strong></h3>\r\nSymptoms of neck instability or cervical instability include neck pain, muscle spasms, cracking sounds, and numbness in the arms and legs. Also, remember how we discussed the unique anatomical relationship of the vertebral arteries through the transverse foramina?\r\n\r\nInstability of the neck can cause a change in the flow of the arterial blood through the vertebrae when they are moving excessively. The vertebral artery provides circulation to half of the brain. Therefore, the extra mobile vertebrae can pinch off this artery, fostering an insufficiency of blood supply as it travels up to the brain. The condition is called vertebrobasilar insufficiency (VBI). Symptoms of VBI include neck pain, headaches/migraines, dizziness, drop attacks, dizziness, difficulty swallowing and/or speaking, and disturbances in hearing and vision.\r\n<h3><strong>Repair the Neck, And Relieve the Pain of Cervical Instability with Regenerative Orthopedics</strong></h3>\r\n[caption id=\"attachment_3310\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-3310 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-500x500.png\" alt=\"An Answer for Life Altering Neck Pain and Instability\" width=\"500\" height=\"500\" /> <em><strong>       Repair the spine &amp; Relieve Cervical Instability Symptoms</strong></em>[/caption]\r\n\r\nAll of these symptoms can perplex many clinicians. Meanwhile, the sufferer lives with debilitating symptoms. Oftentimes, they go from doctor to doctor, seeking some type of relief from the many and varied symptoms they experience.\r\n\r\nChiropractors do a great job at not only assessing these problems but treating them.  But when Chiropractors are not able to solve the problem or find a complete solution, one must look elsewhere.\r\n\r\nTalk with your chiropractor about Regenerative Orthopedics and what it can do to save your neck from surgery. Many chiropractors know Peter A. Fields, MD, DC, and have heard him lecture, as Dr. Fields is both an MD and a chiropractor.\r\n\r\nRegenerative Orthopedics is actually a great solution to the puzzle of neck pain and cervical instability. Stem Cell Therapy, PRP, and Prolotherapy are types of regenerative therapies that repair the injured ligaments at the core of the problem. Regenerative Orthopedics involves regenerative injection therapies that tighten, repair, and regenerate the ligaments involved in neck instability. The treatments eliminate the unstable movement, associated neck pain, and multiple symptoms.\r\n\r\nRegenerative Orthopedics is a safe non-surgical option that brings stability back to the neck and its structures, which results in increased functional ability. Those who suffer from all of these symptoms as a result of the instability of the neck or cervical spine can finally get relief from this life-altering condition.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Cervical Instability: Neck Pain That Changes Your Life','','inherit','closed','closed','','3301-revision-v1','','','2021-03-09 03:03:00','2021-03-09 03:03:00','',3301,'https://www.drfields.com/uncategorized/3301-revision-v1/',0,'revision','',0),(4544,9,'2021-03-12 03:46:23','2021-03-12 03:46:23','<h3>Why Choose OrthoRegen<strong><sup>®</sup></strong>?</h3>\nAt OrthoRegen<strong><sup>®</sup></strong>, we want to help you achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. After all, this is your health that we are talking about.\n<h4><strong>The Future of Your Health in This Changing World</strong></h4>\nInvesting in your health is now more important than ever. Most of us are looking for ways to keep our immune system strong so we don\'t get sick. It is a new world out there! And we all want to do everything we can to avoid the hospital!  Since the future of health care is changing, you must know what choices are available to you.\n<h3>OrthoRegen<strong><sup>®</sup></strong> Is Exclusively a Regenerative Orthopedics Medical Office</h3>\nThe medical office of OrthoRegen<strong><sup>®</sup></strong> offers Regenerative Orthopedics exclusively. We don\'t do surgery. And we don\'t use anesthesia. Nor do we give out a bunch of medications. Plus, we don\'t just dabble in regenerative medicine or do a procedure once in a while. That\'s all we do. And we have been offering regenerative medicine options for many, many years. So that means your practitioners are very experienced.\n\nWith that in mind, our goal is to ensure that you will have an exceptional experience throughout your entire process. <strong>We offer safe, expedient, and effective treatments to resolve many painful conditions without the need for surgery.</strong> And when more advanced treatment is needed, such as in cases of very degenerated joints, OrthoRegen<strong><sup>®</sup></strong> offers the state-of-the-art Gold Standard in Stem Cell Therapy. What does that mean? The Gold Standard refers to four different types of regenerative therapies. That\'s four! Most clinics use just one.\n\nAnd that\'s why many Los Angeles residents choose us as their regenerative medicine alternative to surgery and joint replacement. With all of that regenerative capability, in most cases, we can resolve the majority of painful musculoskeletal conditions and ultimately enhance the quality of your life and get you back to the activities you love.\n<h4><em>If You Are An Athlete with an Injury, Peter A. Fields, MD, DC Understands, Because He Is An Athlete Too</em></h4>\n[caption id=\"attachment_4550\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4550 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Why-Choose-OrthoRegen-copy-500x500.png\" alt=\"Why Choose OrthoRegen®\" width=\"500\" height=\"500\" /> <em>                             <strong>Why Choose OrthoRegen<sup>®</sup>: Our Philosophy</strong></em>[/caption]\n\nAs an athlete himself, Peter A. Fields, MD, DC, also understands how important it is to stay in the game.  That, along with his extensive expertise, ensures a higher level of ability and understanding as a regenerative medicine physician because his experience encompasses a much broader knowledge base.\n<h3>Peter A. Fields, MD, DC is Dual Degreed as Both a Medical Doctor <strong>and</strong> a Chiropractor</h3>\nAs a medical doctor and one of the leaders in regenerative medicine, Peter A. Fields, MD, DC, has years of experience in regenerative therapies. Therefore, he can seek out the best solution, recommend, and perform the optimal type of regenerative therapy that is right for you. And that means you get the treatment that\'s right for you and the best possible therapy to repair your joint.  And all of these regenerative therapies are available right in our clinic.\n\nPlus, Peter A. Fields, MD, DC, is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor.</em> As a chiropractor, he understands the ins and out of every joint. That helps ensure that you won\'t need all of the imaging that many physicians order due to their lack of experience locating the problem via manual examination. Sure, if further testing is deemed necessary, it can be prescribed. But a chiropractor\'s familiarity with the joints and possible referral pain patterns makes imaging less necessary.\n\nOrthoRegen<strong><sup>® </sup></strong>has provided hope for patients from all over who are trying to avoid joint surgery. Even if surgery has already been done, Regenerative Orthopedics can provide pain relief. We have many <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">articles</a> on this website that discuss the various conditions you may face and how Regenerative Orthopedics can help. We welcome you to <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">search</a> through them to learn more about our treatments, research, and how we achieve outstanding patient results because of our unique approach. If you are looking for the top pain clinic in the Los Angeles area to actually resolve your pain and not just temporarily cover up the symptoms, let’s talk...<strong>Together, we can turn your case around!</strong>\n<h3>Regenerative Orthopedics Is Your Non-Surgical Option When You Injure Yourself?</h3>\nWe are thrilled to enable people to live fulfilling and active lives by resolving their joint pain and injury through comprehensive Regenerative Orthopedics. Why choose surgery when there is an alternative?\n\n<strong>Remember, once surgery is done, it can never be undone.</strong>\n\nAt OrthoRegen<strong><sup>®</sup></strong>, our team is dedicated to providing highly effective, individualized treatment plans that relieve pain and help you return to sports, work, and activities quickly and safely.\n\nPeter A. Fields, MD DC, is a <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\">Los Angeles Prolotherapy doctor</a> and <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\">PRP Doctor</a> and the founder of OrthoRegen<strong><sup>®</sup></strong>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','OrthoRegen®: Our Philosophy','','inherit','closed','closed','','213-autosave-v1','','','2021-03-12 03:46:23','2021-03-12 03:46:23','',213,'https://www.drfields.com/uncategorized/213-autosave-v1/',0,'revision','',0),(4545,9,'2021-03-09 19:19:04','2021-03-09 19:19:04','<img class=\"size-full wp-image-806 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-eating-fruit.jpg\" alt=\"Woman Eating Fruit\" width=\"200\" height=\"253\" />\r\n<h3>Why Choose Us?</h3>\r\nAt OrthoRegen we want to help you to achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. After all, this is your health that we are talking about.\r\n<h4><strong>The Future of Your Health in This Changing World</strong></h4>\r\nInvesting in your health is now more important than ever. Most are looking at ways to keep their immune system strong, so they don\'t get sick. It is a new world out there. And we all want to do everything we can to avoid the hospital too! Since the future of health care is changing, it is important that you know what choices are available to you.\r\n<h3>OrthoRegen Is Exclusively a Regenerative Orthopedics Medical Office</h3>\r\nThe medical office of OrthoRegen is exclusively Regenerative Orthopedics. That\'s what we do. We don\'t just dabble in it, or do a procedure once in a while. We have been offering regenerative medicine options for many, many years. And that means you get very experienced practitioners.\r\n\r\nOur goal is to ensure that you will have an exceptional experience throughout your entire process. We offer safe, expedient, and effective treatments for the resolution of many painful conditions, without the need for surgery. And when more advanced treatment is needed, such as in cases of very degenerated joints, our state-of-the-art Gold Standard in Stem Cell Therapy is available.\r\n\r\nMany Los Angeles residents choose us as their regenerative medicine alternative to surgery and joint replacement. Our goal is not only to resolve some pain but also to ultimately enhance the quality of your life and get you back to the activities you love.\r\n\r\nAs an athlete himself, Peter A. Fields, MD, DC also understands how important it is to stay in the game.  That, along with his extensive expertise ensure a higher level of ability and understanding as a regenerative medicine physician because his experience encompasses a much broader base of knowledge.\r\n<h3>Peter Fields is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor</em></h3>\r\nPlus, Dr. Peter Fields is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor. </em>As a chiropractor, he understands the ins and out of every joint. That helps to ensure that you won\'t need all of the imaging that many physicians order due to their lack of experience in locating the problem via manual examination. Sure, if further testing is deemed necessary, it can be prescribed. But a chiropractor\'s familiarity with the joints and referral pain makes imaging less necessary. Plus, as a medical doctor with years of experience in regenerative medicine, he is able to recommend and perform the best type of regenerative therapy for you. And that means you get the right treatment for you and the best treatment to repair your joint quickly. And all of these regenerative therapies are available right in our clinic.\r\n\r\nOrthoRegen versus\r\n\r\nOur clinic has provided an oasis of hope for patients from around the world who are trying to avoid joint surgery, as well as those who have already tried multiple treatments, including surgeries. On this site, you will learn more about our treatments, technology, and research, and how we achieve outstanding patient results because of our unique approach to Regenerative Orthopedics. If you are looking for the top pain clinic in the Los Angeles area to actually resolve your pain and not just temporarily cover up the symptoms, let’s talk... <strong>Together, we can turn your case around!</strong>\r\n<h3>What Option Do You Have If You Injure Yourself?</h3>\r\nSome of the treatments out there promoted by conventional medicine are doing their job- that is getting people better. But some can actually make you worse, or affect different parts of the body in a negative way. What good is it if it cures your specific ailment only to give you a different one.\r\n\r\nWhen you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more. There is an underlying cause for each of your symptoms and that will take time and effort on our part and yours to find out what that may be. For this reason, more and more people are starting to get concerned about and involved in, their own health care. Just treating the symptoms will not make the problem go away; one must get to the cause of the problem and fix that. This approach is what Integrative/Holistic medicine is all about.\r\n\r\nThe U.S. Centers for Disease Control and Prevention reports that the key factors influencing an individual\'s state of health have not changed significantly over the past 20 years. Heredity accounts for 18% and the environment is 19%. Everyday lifestyle choices are 53%. The decisions people make about their life and habits are therefore by far the largest factor in determining their state of wellness.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\">Los Angeles Prolotherapy doctor</a> and <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\">PRP Doctor</a> and the founder of OrthoRegen.\r\n<h3>Why Choose Us?</h3>\r\n&nbsp;\r\n\r\n<strong>Our Vision:</strong> Enable people to live fulfilling, passionate lives by resolving chronic pain and injury through Comprehensive H3 Prolotherapy.\r\n\r\n<strong>Our Mission:</strong> Act as a lighthouse, educating the world on the life-changing effects of Comprehensive Prolotherapy for pain and injury.\r\n\r\n<strong>Our Motto:</strong> Hope practiced here®.\r\n<h2>WE COMMIT TO:</h2>\r\n<ul>\r\n 	<li>Treating others as we want to be treated. We are athletes, parents, grandparents, and patients serving athletes, parents, grandparents, and patients.</li>\r\n 	<li>Integrity, both on the job and in our personal lives.</li>\r\n 	<li>Genuine love, care, and humility towards ourselves, each other, and our patients.</li>\r\n 	<li>Listening intently to each other and our patients with an open heart and mind.</li>\r\n 	<li>Providing achievable solutions for any situation presented to us.</li>\r\n 	<li>Continuing education in the field of chronic pain and the often missed diagnosis: joint instability leading to destructive joint motion.</li>\r\n 	<li>Developing safe, expedient, and effective treatments for resolution of painful conditions.</li>\r\n 	<li>Explaining the true concepts of successful treatments relating to the etiology of pain in an exceptionally understandable way, even if it challenges the prevailing standard methods of care.</li>\r\n</ul>\r\n<div id=\"specialistsInfo\">\r\n<div id=\"specialistsParagraph\">Caring Medical is blessed to have an incredible team of providers who are dedicated to providing highly effective, individualized treatment plans that relieve pain and help patients return to sports, work, and activities quickly and safely. For patients who are serious about receiving regenerative treatments from specialists who treat some of the toughest cases from around the world, Caring Medical is for you! Read more about our clinic, as well as our research, blogs, books, and other resources.</div>\r\n</div>\r\n&nbsp;\r\n\r\nAt OrthoRegen, we see you and treat you in our medical clinic. <strong>There is no need to go to a hospital! </strong>\r\n\r\nIn most cases, Regenerative Orthopedics is effective at eliminating joint<a href=\"/Chronic-Pain\"> pain</a> due to ligament and tendon injury 80 to 90 percent of the time. That\'s a high rate of success! Plus, all of these regenerative techniques help to stimulate the body’s ability to repair...naturally.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2021-03-09 19:19:04','2021-03-09 19:19:04','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(4546,9,'2021-03-09 23:01:20','2021-03-09 23:01:20','<img class=\"size-full wp-image-806 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-eating-fruit.jpg\" alt=\"Woman Eating Fruit\" width=\"200\" height=\"253\" />\r\n<h3>Why Choose OrthoRegen?</h3>\r\nAt OrthoRegen we want to help you to achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. After all, this is your health that we are talking about.\r\n<h4><strong>The Future of Your Health in This Changing World</strong></h4>\r\nInvesting in your health is now more important than ever. Most are looking at ways to keep their immune system strong, so they don\'t get sick. It is a new world out there. And we all want to do everything we can to avoid the hospital too! Since the future of health care is changing, it is important that you know what choices are available to you.\r\n<h3>OrthoRegen Is Exclusively a Regenerative Orthopedics Medical Office</h3>\r\nThe medical office of OrthoRegen is exclusively Regenerative Orthopedics. That\'s what we do. We don\'t just dabble in it, or do a procedure once in a while. We have been offering regenerative medicine options for many, many years. And that means you get very experienced practitioners.\r\n\r\nOur goal is to ensure that you will have an exceptional experience throughout your entire process. We offer safe, expedient, and effective treatments for the resolution of many painful conditions, without the need for surgery. And when more advanced treatment is needed, such as in cases of very degenerated joints, our state-of-the-art Gold Standard in Stem Cell Therapy is available.\r\n\r\nMany Los Angeles residents choose us as their regenerative medicine alternative to surgery and joint replacement. Our goal is not only to resolve some pain but also to ultimately enhance the quality of your life and get you back to the activities you love.\r\n\r\nAs an athlete himself, Peter A. Fields, MD, DC also understands how important it is to stay in the game.  That, along with his extensive expertise ensure a higher level of ability and understanding as a regenerative medicine physician because his experience encompasses a much broader base of knowledge.\r\n<h3>Peter Fields is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor</em></h3>\r\nPlus, Dr. Peter Fields is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor. </em>As a chiropractor, he understands the ins and out of every joint. That helps to ensure that you won\'t need all of the imaging that many physicians order due to their lack of experience in locating the problem via manual examination. Sure, if further testing is deemed necessary, it can be prescribed. But a chiropractor\'s familiarity with the joints and referral pain makes imaging less necessary. Plus, as a medical doctor with years of experience in regenerative medicine, he is able to recommend and perform the best type of regenerative therapy for you. And that means you get the right treatment for you and the best treatment to repair your joint quickly. And all of these regenerative therapies are available right in our clinic.\r\n\r\nOrthoRegen versus\r\n\r\nOur clinic has provided an oasis of hope for patients from around the world who are trying to avoid joint surgery, as well as those who have already tried multiple treatments, including surgeries. On this site, you will learn more about our treatments, technology, and research, and how we achieve outstanding patient results because of our unique approach to Regenerative Orthopedics. If you are looking for the top pain clinic in the Los Angeles area to actually resolve your pain and not just temporarily cover up the symptoms, let’s talk... <strong>Together, we can turn your case around!</strong>\r\n<h3>What Option Do You Have If You Injure Yourself?</h3>\r\nSome of the treatments out there promoted by conventional medicine are doing their job- that is getting people better. But some can actually make you worse, or affect different parts of the body in a negative way. What good is it if it cures your specific ailment only to give you a different one.\r\n\r\nWhen you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more. There is an underlying cause for each of your symptoms and that will take time and effort on our part and yours to find out what that may be. For this reason, more and more people are starting to get concerned about and involved in, their own health care. Just treating the symptoms will not make the problem go away; one must get to the cause of the problem and fix that. This approach is what Integrative/Holistic medicine is all about.\r\n\r\nThe U.S. Centers for Disease Control and Prevention reports that the key factors influencing an individual\'s state of health have not changed significantly over the past 20 years. Heredity accounts for 18% and the environment is 19%. Everyday lifestyle choices are 53%. The decisions people make about their life and habits are therefore by far the largest factor in determining their state of wellness.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\">Los Angeles Prolotherapy doctor</a> and <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\">PRP Doctor</a> and the founder of OrthoRegen.\r\n<h3>Why Choose Us?</h3>\r\n&nbsp;\r\n\r\n<strong>Our Vision:</strong> Enable people to live fulfilling, passionate lives by resolving chronic pain and injury through Comprehensive H3 Prolotherapy.\r\n\r\n<strong>Our Mission:</strong> Act as a lighthouse, educating the world on the life-changing effects of Comprehensive Prolotherapy for pain and injury.\r\n\r\n<strong>Our Motto:</strong> Hope practiced here®.\r\n<h2>WE COMMIT TO:</h2>\r\n<ul>\r\n 	<li>Treating others as we want to be treated. We are athletes, parents, grandparents, and patients serving athletes, parents, grandparents, and patients.</li>\r\n 	<li>Integrity, both on the job and in our personal lives.</li>\r\n 	<li>Genuine love, care, and humility towards ourselves, each other, and our patients.</li>\r\n 	<li>Listening intently to each other and our patients with an open heart and mind.</li>\r\n 	<li>Providing achievable solutions for any situation presented to us.</li>\r\n 	<li>Continuing education in the field of chronic pain and the often missed diagnosis: joint instability leading to destructive joint motion.</li>\r\n 	<li>Developing safe, expedient, and effective treatments for resolution of painful conditions.</li>\r\n 	<li>Explaining the true concepts of successful treatments relating to the etiology of pain in an exceptionally understandable way, even if it challenges the prevailing standard methods of care.</li>\r\n</ul>\r\n<div id=\"specialistsInfo\">\r\n<div id=\"specialistsParagraph\">Caring Medical is blessed to have an incredible team of providers who are dedicated to providing highly effective, individualized treatment plans that relieve pain and help patients return to sports, work, and activities quickly and safely. For patients who are serious about receiving regenerative treatments from specialists who treat some of the toughest cases from around the world, Caring Medical is for you! Read more about our clinic, as well as our research, blogs, books, and other resources.</div>\r\n</div>\r\n&nbsp;\r\n\r\nAt OrthoRegen, we see you and treat you in our medical clinic. <strong>There is no need to go to a hospital! </strong>\r\n\r\nIn most cases, Regenerative Orthopedics is effective at eliminating joint<a href=\"/Chronic-Pain\"> pain</a> due to ligament and tendon injury 80 to 90 percent of the time. That\'s a high rate of success! Plus, all of these regenerative techniques help to stimulate the body’s ability to repair...naturally.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','OrthoRegen: Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2021-03-09 23:01:20','2021-03-09 23:01:20','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(4547,9,'2021-03-09 23:10:36','2021-03-09 23:10:36','<img class=\"size-full wp-image-806 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-eating-fruit.jpg\" alt=\"Woman Eating Fruit\" width=\"200\" height=\"253\" />\r\n<h3>Why Choose OrthoRegen?</h3>\r\nAt OrthoRegen we want to help you achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. After all, this is your health that we are talking about.\r\n<h4><strong>The Future of Your Health in This Changing World</strong></h4>\r\nInvesting in your health is now more important than ever. Most are looking at ways to keep their immune system strong, so they don\'t get sick. It is a new world out there. And we all want to do everything we can to avoid the hospital too! Since the future of health care is changing, it is important that you know what choices are available to you.\r\n<h3>OrthoRegen Is Exclusively a Regenerative Orthopedics Medical Office</h3>\r\nThe medical office of OrthoRegen is exclusively Regenerative Orthopedics. That\'s what we do. We don\'t just dabble in it, or do a procedure once in a while. We have been offering regenerative medicine options for many, many years. And that means you get very experienced practitioners.\r\n\r\nOur goal is to ensure that you will have an exceptional experience throughout your entire process. We offer safe, expedient, and effective treatments for the resolution of many painful conditions, without the need for surgery. And when more advanced treatment is needed, such as in cases of very degenerated joints, our state-of-the-art Gold Standard in Stem Cell Therapy is available.\r\n\r\nMany Los Angeles residents choose us as their regenerative medicine alternative to surgery and joint replacement. Our goal is not only to resolve some pain but also to ultimately enhance the quality of your life and get you back to the activities you love.\r\n\r\nAs an athlete himself, Peter A. Fields, MD, DC also understands how important it is to stay in the game.  That, along with his extensive expertise ensure a higher level of ability and understanding as a regenerative medicine physician because his experience encompasses a much broader base of knowledge.\r\n<h3>Peter Fields is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor</em></h3>\r\nPlus, Dr. Peter Fields is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor. </em>As a chiropractor, he understands the ins and out of every joint. That helps to ensure that you won\'t need all of the imaging that many physicians order due to their lack of experience in locating the problem via manual examination. Sure, if further testing is deemed necessary, it can be prescribed. But a chiropractor\'s familiarity with the joints and referral pain makes imaging less necessary. Plus, as a medical doctor with years of experience in regenerative medicine, he is able to recommend and perform the best type of regenerative therapy for you. And that means you get the right treatment for you and the best treatment to repair your joint quickly. And all of these regenerative therapies are available right in our clinic.\r\n\r\nOrthoRegen versus\r\n\r\nOur clinic has provided an oasis of hope for patients from around the world who are trying to avoid joint surgery, as well as those who have already tried multiple treatments, including surgeries. On this site, you will learn more about our treatments, technology, and research, and how we achieve outstanding patient results because of our unique approach to Regenerative Orthopedics. If you are looking for the top pain clinic in the Los Angeles area to actually resolve your pain and not just temporarily cover up the symptoms, let’s talk... <strong>Together, we can turn your case around!</strong>\r\n<h3>What Option Do You Have If You Injure Yourself?</h3>\r\nSome of the treatments out there promoted by conventional medicine are doing their job- that is getting people better. But some can actually make you worse, or affect different parts of the body in a negative way. What good is it if it cures your specific ailment only to give you a different one.\r\n\r\nWhen you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more. There is an underlying cause for each of your symptoms and that will take time and effort on our part and yours to find out what that may be. For this reason, more and more people are starting to get concerned about and involved in, their own health care. Just treating the symptoms will not make the problem go away; one must get to the cause of the problem and fix that. This approach is what Integrative/Holistic medicine is all about.\r\n\r\nThe U.S. Centers for Disease Control and Prevention reports that the key factors influencing an individual\'s state of health have not changed significantly over the past 20 years. Heredity accounts for 18% and the environment is 19%. Everyday lifestyle choices are 53%. The decisions people make about their life and habits are therefore by far the largest factor in determining their state of wellness.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\">Los Angeles Prolotherapy doctor</a> and <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\">PRP Doctor</a> and the founder of OrthoRegen.\r\n<h3>Why Choose Us?</h3>\r\n&nbsp;\r\n\r\n<strong>Our Vision:</strong> Enable people to live fulfilling, passionate lives by resolving chronic pain and injury through Comprehensive H3 Prolotherapy.\r\n\r\n<strong>Our Mission:</strong> Act as a lighthouse, educating the world on the life-changing effects of Comprehensive Prolotherapy for pain and injury.\r\n\r\n<strong>Our Motto:</strong> Hope practiced here®.\r\n<h2>WE COMMIT TO:</h2>\r\n<ul>\r\n 	<li>Treating others as we want to be treated. We are athletes, parents, grandparents, and patients serving athletes, parents, grandparents, and patients.</li>\r\n 	<li>Integrity, both on the job and in our personal lives.</li>\r\n 	<li>Genuine love, care, and humility towards ourselves, each other, and our patients.</li>\r\n 	<li>Listening intently to each other and our patients with an open heart and mind.</li>\r\n 	<li>Providing achievable solutions for any situation presented to us.</li>\r\n 	<li>Continuing education in the field of chronic pain and the often missed diagnosis: joint instability leading to destructive joint motion.</li>\r\n 	<li>Developing safe, expedient, and effective treatments for resolution of painful conditions.</li>\r\n 	<li>Explaining the true concepts of successful treatments relating to the etiology of pain in an exceptionally understandable way, even if it challenges the prevailing standard methods of care.</li>\r\n</ul>\r\n<div id=\"specialistsInfo\">\r\n<div id=\"specialistsParagraph\">Caring Medical is blessed to have an incredible team of providers who are dedicated to providing highly effective, individualized treatment plans that relieve pain and help patients return to sports, work, and activities quickly and safely. For patients who are serious about receiving regenerative treatments from specialists who treat some of the toughest cases from around the world, Caring Medical is for you! Read more about our clinic, as well as our research, blogs, books, and other resources.</div>\r\n</div>\r\n&nbsp;\r\n\r\nAt OrthoRegen, we see you and treat you in our medical clinic. <strong>There is no need to go to a hospital! </strong>\r\n\r\nIn most cases, Regenerative Orthopedics is effective at eliminating joint<a href=\"/Chronic-Pain\"> pain</a> due to ligament and tendon injury 80 to 90 percent of the time. That\'s a high rate of success! Plus, all of these regenerative techniques help to stimulate the body’s ability to repair...naturally.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','OrthoRegen: Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2021-03-09 23:10:36','2021-03-09 23:10:36','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(4548,9,'2021-03-09 23:42:12','2021-03-09 23:42:12','<img class=\"size-full wp-image-806 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/woman-eating-fruit.jpg\" alt=\"Woman Eating Fruit\" width=\"200\" height=\"253\" />\r\n<h3>Why Choose OrthoRegen?</h3>\r\nAt OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. After all, this is your health that we are talking about.\r\n<h4><strong>The Future of Your Health in This Changing World</strong></h4>\r\nInvesting in your health is now more important than ever. Most of us are looking for ways to keep our immune system strong so we don\'t get sick. It is a new world out there! And we all want to do everything we can to avoid the hospital!  Since the future of health care is changing, you must know what choices are available to you.\r\n<h3>OrthoRegen Is Exclusively a Regenerative Orthopedics Medical Office</h3>\r\nThe medical office of OrthoRegen offers Regenerative Orthopedics exclusively. We don\'t do surgery. We don\'t use anesthesia. We don\'t give out a bunch of medications. Plus, we don\'t just dabble in regenerative medicine or do a procedure once in a while. That\'s all we do. And we have been offering regenerative medicine options for many, many years. So that means your practitioners are very experienced.\r\n\r\nWith that in mind, our goal is to ensure that you will have an exceptional experience throughout your entire process. <strong>We offer safe, expedient, and effective treatments to resolve many painful conditions without the need for surgery.</strong> And when more advanced treatment is needed, such as in cases of very degenerated joints, OrthoRegen offers the state-of-the-art Gold Standard in Stem Cell Therapy. What does that mean? The Gold Standard refers to four different types of regenerative therapies. That\'s four! Most clinics use just one.\r\n\r\nAnd that\'s why many Los Angeles residents choose us as their regenerative medicine alternative to surgery and joint replacement. With all of that regenerative capability, in most cases, we can resolve the majority of painful musculoskeletal conditions and ultimately enhance the quality of your life and get you back to the activities you love.\r\n<h3>Peter A. Fields, MD, DC Is An Athlete Too</h3>\r\nAs an athlete himself, Peter A. Fields, MD, DC, also understands how important it is to stay in the game.  That, along with his extensive expertise, ensures a higher level of ability and understanding as a regenerative medicine physician because his experience encompasses a much broader knowledge base.\r\n<h3>Dr. Peter A. Fields is Dual Degreed as Both a Medical Doctor <strong>and</strong> a Chiropractor</h3>\r\nPlus, Dr. Peter Fields is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor. </em>As a chiropractor, he understands the ins and out of every joint. That helps ensure that you won\'t need all of the imaging that many physicians order due to their lack of experience in locating the problem via manual examination. Sure, if further testing is deemed necessary, it can be prescribed. But a chiropractor\'s familiarity with the joints and possible referral pain patterns makes imaging less necessary.\r\n\r\nAs a medical doctor with years of experience in regenerative medicine, he can recommend and perform the best type of regenerative therapy that is right for you. And that means you get the right treatment for you and the best possible treatment to repair your joint.  And all of these regenerative therapies are available right in our clinic.\r\n\r\nOrthoRegen has provided hope for patients from all over who are trying to avoid joint surgery. Even if surgery has already been done, Regenerative Orthopedics can provide pain relief. We have many <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">articles</a> on this website that discuss the various conditions you may face and how Regenerative Orthopedics can help. We welcome you to <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">search</a> through them to learn more about our treatments, research, and how we achieve outstanding patient results because of our unique approach. If you are looking for the top pain clinic in the Los Angeles area to actually resolve your pain and not just temporarily cover up the symptoms, let’s talk...<strong>Together, we can turn your case around!</strong>\r\n<h3>Regenerative Orthopedics Is Your Non-Surgical Option When You Injure Yourself?</h3>\r\nWe are thrilled to enable people to live fulfilling and active lives by resolving their joint pain and injury through comprehensive Regenerative Orthopedics. Why choose surgery when there is an alternative? <strong>And always remember that once the surgery is done, it cannot be undone.</strong> At OrthoRegen, our team is dedicated to providing highly effective, individualized treatment plans that relieve pain and help you return to sports, work, and activities quickly and safely.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\">Los Angeles Prolotherapy doctor</a> and <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\">PRP Doctor</a> and the founder of OrthoRegen.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','OrthoRegen: Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2021-03-09 23:42:12','2021-03-09 23:42:12','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(4549,9,'2021-03-10 00:03:37','2021-03-10 00:03:37','Why Choose Orthoregen','Why Choose Orthoregen','Why Choose Orthoregen: Our Philosophy','inherit','open','closed','','why-choose-orthoregen','','','2021-03-10 00:04:08','2021-03-10 00:04:08','',213,'https://www.drfields.com/wp-content/uploads/2019/06/Why-Choose-OrthoRegen.png',0,'attachment','image/png',0),(4550,9,'2021-03-10 00:10:01','2021-03-10 00:10:01','Why Choose Orthoregen: Our Philosophy','Why Choose Orthoregen Copy','Why Choose Orthoregen Copy','inherit','open','closed','','why-choose-orthoregen-copy','','','2021-03-10 00:10:37','2021-03-10 00:10:37','',213,'https://www.drfields.com/wp-content/uploads/2019/06/Why-Choose-OrthoRegen-copy.png',0,'attachment','image/png',0),(4551,9,'2021-03-10 00:12:24','2021-03-10 00:12:24','[caption id=\"attachment_4550\" align=\"alignright\" width=\"321\"]<img class=\"wp-image-4550 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Why-Choose-OrthoRegen-copy-500x500.png\" alt=\"Why Choose Orthoregen Copy\" width=\"321\" height=\"321\" /> <em><strong> Why Choose Orthoregen: Our Philosophy</strong></em>[/caption]\r\n<h3>Why Choose OrthoRegen?</h3>\r\nAt OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. After all, this is your health that we are talking about.\r\n<h4><strong>The Future of Your Health in This Changing World</strong></h4>\r\nInvesting in your health is now more important than ever. Most of us are looking for ways to keep our immune system strong so we don\'t get sick. It is a new world out there! And we all want to do everything we can to avoid the hospital!  Since the future of health care is changing, you must know what choices are available to you.\r\n<h3>OrthoRegen Is Exclusively a Regenerative Orthopedics Medical Office</h3>\r\nThe medical office of OrthoRegen offers Regenerative Orthopedics exclusively. We don\'t do surgery. We don\'t use anesthesia. We don\'t give out a bunch of medications. Plus, we don\'t just dabble in regenerative medicine or do a procedure once in a while. That\'s all we do. And we have been offering regenerative medicine options for many, many years. So that means your practitioners are very experienced.\r\n\r\nWith that in mind, our goal is to ensure that you will have an exceptional experience throughout your entire process. <strong>We offer safe, expedient, and effective treatments to resolve many painful conditions without the need for surgery.</strong> And when more advanced treatment is needed, such as in cases of very degenerated joints, OrthoRegen offers the state-of-the-art Gold Standard in Stem Cell Therapy. What does that mean? The Gold Standard refers to four different types of regenerative therapies. That\'s four! Most clinics use just one.\r\n\r\nAnd that\'s why many Los Angeles residents choose us as their regenerative medicine alternative to surgery and joint replacement. With all of that regenerative capability, in most cases, we can resolve the majority of painful musculoskeletal conditions and ultimately enhance the quality of your life and get you back to the activities you love.\r\n<h3>Peter A. Fields, MD, DC Is An Athlete Too</h3>\r\nAs an athlete himself, Peter A. Fields, MD, DC, also understands how important it is to stay in the game.  That, along with his extensive expertise, ensures a higher level of ability and understanding as a regenerative medicine physician because his experience encompasses a much broader knowledge base.\r\n<h3>Dr. Peter A. Fields is Dual Degreed as Both a Medical Doctor <strong>and</strong> a Chiropractor</h3>\r\nPlus, Dr. Peter Fields is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor. </em>As a chiropractor, he understands the ins and out of every joint. That helps ensure that you won\'t need all of the imaging that many physicians order due to their lack of experience in locating the problem via manual examination. Sure, if further testing is deemed necessary, it can be prescribed. But a chiropractor\'s familiarity with the joints and possible referral pain patterns makes imaging less necessary.\r\n\r\nAs a medical doctor with years of experience in regenerative medicine, he can recommend and perform the best type of regenerative therapy that is right for you. And that means you get the right treatment for you and the best possible treatment to repair your joint.  And all of these regenerative therapies are available right in our clinic.\r\n\r\nOrthoRegen has provided hope for patients from all over who are trying to avoid joint surgery. Even if surgery has already been done, Regenerative Orthopedics can provide pain relief. We have many <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">articles</a> on this website that discuss the various conditions you may face and how Regenerative Orthopedics can help. We welcome you to <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">search</a> through them to learn more about our treatments, research, and how we achieve outstanding patient results because of our unique approach. If you are looking for the top pain clinic in the Los Angeles area to actually resolve your pain and not just temporarily cover up the symptoms, let’s talk...<strong>Together, we can turn your case around!</strong>\r\n<h3>Regenerative Orthopedics Is Your Non-Surgical Option When You Injure Yourself?</h3>\r\nWe are thrilled to enable people to live fulfilling and active lives by resolving their joint pain and injury through comprehensive Regenerative Orthopedics. Why choose surgery when there is an alternative? <strong>And always remember that once the surgery is done, it cannot be undone.</strong> At OrthoRegen, our team is dedicated to providing highly effective, individualized treatment plans that relieve pain and help you return to sports, work, and activities quickly and safely.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\">Los Angeles Prolotherapy doctor</a> and <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\">PRP Doctor</a> and the founder of OrthoRegen.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','OrthoRegen: Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2021-03-10 00:12:24','2021-03-10 00:12:24','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(4552,9,'2021-03-10 00:19:45','2021-03-10 00:19:45','<h3>Why Choose OrthoRegen?</h3>\r\nAt OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. After all, this is your health that we are talking about.\r\n<h4><strong>The Future of Your Health in This Changing World</strong></h4>\r\nInvesting in your health is now more important than ever. Most of us are looking for ways to keep our immune system strong so we don\'t get sick. It is a new world out there! And we all want to do everything we can to avoid the hospital!  Since the future of health care is changing, you must know what choices are available to you.\r\n<h3>OrthoRegen Is Exclusively a Regenerative Orthopedics Medical Office</h3>\r\nThe medical office of OrthoRegen offers Regenerative Orthopedics exclusively. We don\'t do surgery. And we don\'t use anesthesia. Nor do we give out a bunch of medications. Plus, we don\'t just dabble in regenerative medicine or do a procedure once in a while. That\'s all we do. And we have been offering regenerative medicine options for many, many years. So that means your practitioners are very experienced.\r\n\r\nWith that in mind, our goal is to ensure that you will have an exceptional experience throughout your entire process. <strong>We offer safe, expedient, and effective treatments to resolve many painful conditions without the need for surgery.</strong> And when more advanced treatment is needed, such as in cases of very degenerated joints, OrthoRegen offers the state-of-the-art Gold Standard in Stem Cell Therapy. What does that mean? The Gold Standard refers to four different types of regenerative therapies. That\'s four! Most clinics use just one.\r\n\r\nAnd that\'s why many Los Angeles residents choose us as their regenerative medicine alternative to surgery and joint replacement. With all of that regenerative capability, in most cases, we can resolve the majority of painful musculoskeletal conditions and ultimately enhance the quality of your life and get you back to the activities you love.\r\n<h3>Peter A. Fields, MD, DC Is An Athlete Too</h3>\r\nAs an athlete himself, Peter A. Fields, MD, DC, also understands how important it is to stay in the game.  That, along with his extensive expertise, ensures a higher level of ability and understanding as a regenerative medicine physician because his experience encompasses a much broader knowledge base.\r\n<h3>Dr. Peter A. Fields is Dual Degreed as Both a Medical Doctor <strong>and</strong> a Chiropractor</h3>\r\nPlus, Dr. Peter Fields is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor. </em>As a chiropractor, he understands the ins and out of every joint. That helps ensure that you won\'t need all of the imaging that many physicians order due to their lack of experience in locating the problem via manual examination. Sure, if further testing is deemed necessary, it can be prescribed. But a chiropractor\'s familiarity with the joints and possible referral pain patterns makes imaging less necessary.\r\n\r\nAs a medical doctor with years of experience in regenerative medicine, he can recommend and perform the best type of regenerative therapy that is right for you. And that means you get the right treatment for you and the best possible treatment to repair your joint.  And all of these regenerative therapies are available right in our clinic.\r\n\r\nOrthoRegen has provided hope for patients from all over who are trying to avoid joint surgery. Even if surgery has already been done, Regenerative Orthopedics can provide pain relief. We have many <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">articles</a> on this website that discuss the various conditions you may face and how Regenerative Orthopedics can help. We welcome you to <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">search</a> through them to learn more about our treatments, research, and how we achieve outstanding patient results because of our unique approach. If you are looking for the top pain clinic in the Los Angeles area to actually resolve your pain and not just temporarily cover up the symptoms, let’s talk...<strong>Together, we can turn your case around!</strong>\r\n<h3>Regenerative Orthopedics Is Your Non-Surgical Option When You Injure Yourself?</h3>\r\nWe are thrilled to enable people to live fulfilling and active lives by resolving their joint pain and injury through comprehensive Regenerative Orthopedics. Why choose surgery when there is an alternative? <strong>And always remember that once the surgery is done, it cannot be undone.</strong> At OrthoRegen, our team is dedicated to providing highly effective, individualized treatment plans that relieve pain and help you return to sports, work, and activities quickly and safely.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\">Los Angeles Prolotherapy doctor</a> and <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\">PRP Doctor</a> and the founder of OrthoRegen.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','OrthoRegen: Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2021-03-10 00:19:45','2021-03-10 00:19:45','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(4553,9,'2021-03-10 00:22:41','2021-03-10 00:22:41','<h3>Why Choose OrthoRegen?</h3>\r\nAt OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. After all, this is your health that we are talking about.\r\n<h4><strong>The Future of Your Health in This Changing World</strong></h4>\r\nInvesting in your health is now more important than ever. Most of us are looking for ways to keep our immune system strong so we don\'t get sick. It is a new world out there! And we all want to do everything we can to avoid the hospital!  Since the future of health care is changing, you must know what choices are available to you.\r\n<h3>OrthoRegen Is Exclusively a Regenerative Orthopedics Medical Office</h3>\r\nThe medical office of OrthoRegen offers Regenerative Orthopedics exclusively. We don\'t do surgery. And we don\'t use anesthesia. Nor do we give out a bunch of medications. Plus, we don\'t just dabble in regenerative medicine or do a procedure once in a while. That\'s all we do. And we have been offering regenerative medicine options for many, many years. So that means your practitioners are very experienced.\r\n\r\nWith that in mind, our goal is to ensure that you will have an exceptional experience throughout your entire process. <strong>We offer safe, expedient, and effective treatments to resolve many painful conditions without the need for surgery.</strong> And when more advanced treatment is needed, such as in cases of very degenerated joints, OrthoRegen offers the state-of-the-art Gold Standard in Stem Cell Therapy. What does that mean? The Gold Standard refers to four different types of regenerative therapies. That\'s four! Most clinics use just one.\r\n\r\nAnd that\'s why many Los Angeles residents choose us as their regenerative medicine alternative to surgery and joint replacement. With all of that regenerative capability, in most cases, we can resolve the majority of painful musculoskeletal conditions and ultimately enhance the quality of your life and get you back to the activities you love.\r\n<h3>Peter A. Fields, MD, DC Is An Athlete Too</h3>\r\n[caption id=\"attachment_4550\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4550\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Why-Choose-OrthoRegen-copy-500x500.png\" alt=\"Why Choose Orthoregen Copy\" width=\"500\" height=\"500\" /> <em>                             Why Choose Orthoregen: Our Philosophy</em>[/caption]\r\n\r\nAs an athlete himself, Peter A. Fields, MD, DC, also understands how important it is to stay in the game.  That, along with his extensive expertise, ensures a higher level of ability and understanding as a regenerative medicine physician because his experience encompasses a much broader knowledge base.\r\n<h3>Dr. Peter A. Fields is Dual Degreed as Both a Medical Doctor <strong>and</strong> a Chiropractor</h3>\r\nPlus, Dr. Peter Fields is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor. </em>As a chiropractor, he understands the ins and out of every joint. That helps ensure that you won\'t need all of the imaging that many physicians order due to their lack of experience in locating the problem via manual examination. Sure, if further testing is deemed necessary, it can be prescribed. But a chiropractor\'s familiarity with the joints and possible referral pain patterns makes imaging less necessary.\r\n\r\nAs a medical doctor with years of experience in regenerative medicine, he can recommend and perform the best type of regenerative therapy that is right for you. And that means you get the right treatment for you and the best possible treatment to repair your joint.  And all of these regenerative therapies are available right in our clinic.\r\n\r\nOrthoRegen has provided hope for patients from all over who are trying to avoid joint surgery. Even if surgery has already been done, Regenerative Orthopedics can provide pain relief. We have many <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">articles</a> on this website that discuss the various conditions you may face and how Regenerative Orthopedics can help. We welcome you to <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">search</a> through them to learn more about our treatments, research, and how we achieve outstanding patient results because of our unique approach. If you are looking for the top pain clinic in the Los Angeles area to actually resolve your pain and not just temporarily cover up the symptoms, let’s talk...<strong>Together, we can turn your case around!</strong>\r\n<h3>Regenerative Orthopedics Is Your Non-Surgical Option When You Injure Yourself?</h3>\r\nWe are thrilled to enable people to live fulfilling and active lives by resolving their joint pain and injury through comprehensive Regenerative Orthopedics. Why choose surgery when there is an alternative? <strong>And always remember that once the surgery is done, it cannot be undone.</strong> At OrthoRegen, our team is dedicated to providing highly effective, individualized treatment plans that relieve pain and help you return to sports, work, and activities quickly and safely.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\">Los Angeles Prolotherapy doctor</a> and <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\">PRP Doctor</a> and the founder of OrthoRegen.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','OrthoRegen: Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2021-03-10 00:22:41','2021-03-10 00:22:41','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(4554,9,'2021-03-10 00:30:20','2021-03-10 00:30:20','<h3>Why Choose OrthoRegen?</h3>\r\nAt OrthoRegen, we want to help you achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. After all, this is your health that we are talking about.\r\n<h4><strong>The Future of Your Health in This Changing World</strong></h4>\r\nInvesting in your health is now more important than ever. Most of us are looking for ways to keep our immune system strong so we don\'t get sick. It is a new world out there! And we all want to do everything we can to avoid the hospital!  Since the future of health care is changing, you must know what choices are available to you.\r\n<h3>OrthoRegen Is Exclusively a Regenerative Orthopedics Medical Office</h3>\r\nThe medical office of OrthoRegen offers Regenerative Orthopedics exclusively. We don\'t do surgery. And we don\'t use anesthesia. Nor do we give out a bunch of medications. Plus, we don\'t just dabble in regenerative medicine or do a procedure once in a while. That\'s all we do. And we have been offering regenerative medicine options for many, many years. So that means your practitioners are very experienced.\r\n\r\nWith that in mind, our goal is to ensure that you will have an exceptional experience throughout your entire process. <strong>We offer safe, expedient, and effective treatments to resolve many painful conditions without the need for surgery.</strong> And when more advanced treatment is needed, such as in cases of very degenerated joints, OrthoRegen offers the state-of-the-art Gold Standard in Stem Cell Therapy. What does that mean? The Gold Standard refers to four different types of regenerative therapies. That\'s four! Most clinics use just one.\r\n\r\nAnd that\'s why many Los Angeles residents choose us as their regenerative medicine alternative to surgery and joint replacement. With all of that regenerative capability, in most cases, we can resolve the majority of painful musculoskeletal conditions and ultimately enhance the quality of your life and get you back to the activities you love.\r\n<h4><em>If You Are An Athlete with an Injury, Peter A. Fields, MD, DC Understands, Because He Is An Athlete Too</em></h4>\r\n[caption id=\"attachment_4550\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4550\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Why-Choose-OrthoRegen-copy-500x500.png\" alt=\"Why Choose Orthoregen Copy\" width=\"500\" height=\"500\" /> <em>                             Why Choose Orthoregen: Our Philosophy</em>[/caption]\r\n\r\nAs an athlete himself, Peter A. Fields, MD, DC, also understands how important it is to stay in the game.  That, along with his extensive expertise, ensures a higher level of ability and understanding as a regenerative medicine physician because his experience encompasses a much broader knowledge base.\r\n<h3>Dr. Peter A. Fields is Dual Degreed as Both a Medical Doctor <strong>and</strong> a Chiropractor</h3>\r\nPlus, Dr. Peter Fields is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor. </em>As a chiropractor, he understands the ins and out of every joint. That helps ensure that you won\'t need all of the imaging that many physicians order due to their lack of experience in locating the problem via manual examination. Sure, if further testing is deemed necessary, it can be prescribed. But a chiropractor\'s familiarity with the joints and possible referral pain patterns makes imaging less necessary.\r\n\r\nAs a medical doctor with years of experience in regenerative medicine, he can recommend and perform the best type of regenerative therapy that is right for you. And that means you get the right treatment for you and the best possible treatment to repair your joint.  And all of these regenerative therapies are available right in our clinic.\r\n\r\nOrthoRegen has provided hope for patients from all over who are trying to avoid joint surgery. Even if surgery has already been done, Regenerative Orthopedics can provide pain relief. We have many <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">articles</a> on this website that discuss the various conditions you may face and how Regenerative Orthopedics can help. We welcome you to <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">search</a> through them to learn more about our treatments, research, and how we achieve outstanding patient results because of our unique approach. If you are looking for the top pain clinic in the Los Angeles area to actually resolve your pain and not just temporarily cover up the symptoms, let’s talk...<strong>Together, we can turn your case around!</strong>\r\n<h3>Regenerative Orthopedics Is Your Non-Surgical Option When You Injure Yourself?</h3>\r\nWe are thrilled to enable people to live fulfilling and active lives by resolving their joint pain and injury through comprehensive Regenerative Orthopedics. Why choose surgery when there is an alternative? <strong>And always remember that once the surgery is done, it cannot be undone.</strong> At OrthoRegen, our team is dedicated to providing highly effective, individualized treatment plans that relieve pain and help you return to sports, work, and activities quickly and safely.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\">Los Angeles Prolotherapy doctor</a> and <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\">PRP Doctor</a> and the founder of OrthoRegen.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','OrthoRegen: Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2021-03-10 00:30:20','2021-03-10 00:30:20','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(4555,8,'2021-03-10 00:32:31','2021-03-10 00:32:31','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<span style=\"display: inline-block; height: 50px;\"></span>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n\r\n<h3 style=\"margin-left: 0\">Mindy</h3>\r\n<h4 style=\"margin-left: 0\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n\r\n<h3 style=\"margin-left: 0\">Robert</h3>\r\n<h4 style=\"margin-left: 0\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n\r\n<h3 style=\"margin-left: 0\">Lois</h3>\r\n<h4 style=\"margin-left: 0\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<span style=\"height: 20px;\"></span>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n<span style=\"height: 20px;\"></span>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" target=\"_blank\" rel=\"noopener\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\"/></a>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-03-10 00:32:31','2021-03-10 00:32:31','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4556,8,'2022-12-02 06:01:38','2021-03-10 00:47:07','','Our Philosophy','','publish','closed','closed','','our-philosophy','','','2022-12-02 06:01:38','2022-12-02 06:01:38','',0,'https://www.drfields.com/?p=4556',21,'nav_menu_item','',0),(4557,8,'2021-03-10 22:06:25','2021-03-10 22:06:25','','iwp_log_604942e11abb1','','publish','closed','closed','','iwp_log_604942e11abb1','','','2021-03-10 22:06:25','2021-03-10 22:06:25','',0,'https://www.drfields.com/iwp_log/iwp_log_604942e11abb1/',0,'iwp_log','',0),(4558,8,'2021-03-10 22:09:23','2021-03-10 22:09:23','','iwp_log_60494393a5eb8','','publish','closed','closed','','iwp_log_60494393a5eb8','','','2021-03-10 22:09:23','2021-03-10 22:09:23','',0,'https://www.drfields.com/iwp_log/iwp_log_60494393a5eb8/',0,'iwp_log','',0),(4559,8,'2021-03-10 22:10:24','2021-03-10 22:10:24','','iwp_log_604943d0bdf70','','publish','closed','closed','','iwp_log_604943d0bdf70','','','2021-03-10 22:10:24','2021-03-10 22:10:24','',0,'https://www.drfields.com/iwp_log/iwp_log_604943d0bdf70/',0,'iwp_log','',0),(4560,8,'2021-03-10 22:11:07','2021-03-10 22:11:07','','iwp_log_604943fb0b60d','','publish','closed','closed','','iwp_log_604943fb0b60d','','','2021-03-10 22:11:07','2021-03-10 22:11:07','',0,'https://www.drfields.com/iwp_log/iwp_log_604943fb0b60d/',0,'iwp_log','',0),(4561,9,'2021-03-12 03:00:57','2021-03-12 03:00:57','<h2>Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics</h2>\r\nMost of us are doing everything we can to stay out of the hospital during this pandemic age. Who would blame us?! So, we do everything we can think of to keep going and keep moving, even if we are hurting. And those who have an injured joint, who still want to exercise, may choose bicycling instead of running, or swimming instead of hiking. That way, they can still keep exercising since there is less stress on the joint and less pain with the different activities.\r\n\r\nAnd we may also try over-the-counter medications, rest, physical therapy, acupuncture, manipulation, and whatever else we can possibly find in an effort to get relief. But for some, that pain either never goes away, or it just keeps coming back.\r\n\r\n<strong>There is another way!</strong> Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy, is one of the best ways to get relief from your pain without hospitalization or the need for surgery.\r\n<h3>With Regenerative Orthopedics, There Is:</h3>\r\n[caption id=\"attachment_4538\" align=\"alignright\" width=\"489\"]<img class=\" wp-image-4538\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Avoid-the-hospital-1-500x466.png\" alt=\"Avoid The Hospital (1)\" width=\"489\" height=\"455\" /> <em>  Stay Out of The Hospital and Avoid Surgery with Regenerative Orthopedics</em>[/caption]\r\n<ul>\r\n 	<li><strong>No Hospitalization               </strong></li>\r\n 	<li><strong>No Surgery</strong></li>\r\n 	<li><strong>No Steroids</strong></li>\r\n 	<li><strong>No Drugs Just to Mask Painful Symptoms</strong></li>\r\n 	<li><strong>No Anesthesia</strong></li>\r\n</ul>\r\n<h3><strong>Plus, With Regenerative Orthopedics, You Get:</strong></h3>\r\n<ul>\r\n 	<li style=\"list-style-type: none\">\r\n<ul>\r\n 	<li><strong>Regeneration of Injured Soft Tissue</strong></li>\r\n 	<li><strong>Joint Repair</strong></li>\r\n 	<li><strong>No Down Time</strong></li>\r\n 	<li><strong>Faster Recovery</strong></li>\r\n 	<li><strong>Pain Relief</strong></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<h3>1. No Hospitalization with Regenerative Orthopedics:</h3>\r\nAt OrthoRegen, we see you and treat you in our medical clinic. <strong>There is no need to go to a hospital! </strong>\r\n\r\nPlus, Peter A. Fields, MD, DC is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor.</em> And his practice is exclusively Regenerative Orthopedics. That means you get a very experienced practitioner and a leader in regenerative medicine.\r\n\r\nAs a medical doctor with years of experience in regenerative medicine, Peter A. Fields, MD, DC will seek out the best natural medicine solution and perform the optimal type of regenerative therapy for you. And that means you get the treatment that\'s right for you and the best treatment possible to repair your joint quickly. And all of these regenerative therapies are available right in our clinic. As a chiropractor, Dr. Fields understands how the joints work. So, you don\'t have to step into the hospital for what is often unnecessary testing. Sure, if further testing is deemed necessary, they can be prescribed. But a chiropractor\'s familiarity with the joints and referral pain makes imaging less necessary.\r\n\r\nIn most cases, Regenerative Orthopedics is effective at eliminating joint<a href=\"/Chronic-Pain\"> pain</a> due to ligament and tendon injury 80 to 90 percent of the time. That\'s a high rate of success! Plus, all of these regenerative techniques help to stimulate the body’s ability to repair...naturally.\r\n<h3>2. No Surgery Is Needed with Regenerative Orthopedics:</h3>\r\nRegenerative Orthopedics is an in-office injection treatment that both research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical treatments. We see so many patients in our clinic who are looking to avoid surgery. We are accustomed to that! And we see amazing results. In our opinion, Regenerative Orthopedics is superior to many other treatments in relieving chronic joint and spine pain. Plus, and most importantly, you get back to a happy and active lifestyle without the need for surgery.\r\n\r\n<strong>Regenerative Orthopedics is:</strong>\r\n<ul>\r\n 	<li>A viable <strong>alternative to surgery</strong></li>\r\n 	<li><strong>A safe and affordable option</strong> that allows you to keep working and/or training during treatment.</li>\r\n 	<li>Typically the best treatment to <strong>stabilize and repair injured ligaments and tendons</strong>. Plus, multiple joints and structures can be treated with each visit.</li>\r\n 	<li><strong>Reparative</strong> in nature. Instead of cutting and removing, it will regenerate and repair the joint.</li>\r\n</ul>\r\n<h3><strong>3. No Steroids or Cortisone Are Used in Regenerative Orthopedics:</strong></h3>\r\nFirst of all, why is this a good thing? <strong>More and more research is pouring in on the detrimental effects of steroids or cortisone </strong><b>injections. Sure, cortisone shots may relieve your pain in the short-term. But they make the problem worse over the long haul.</b>\r\n\r\n<strong>Cortisone injections cause:</strong>\r\n<ul>\r\n 	<li>Cartilage destruction</li>\r\n 	<li>Cartilage surface deterioration</li>\r\n 	<li>Inhibition of new cartilage growth</li>\r\n 	<li>A decrease in <strong>protein and matrix synthesis</strong> (which refers to the nutrient and healing bed the cells grow in)</li>\r\n</ul>\r\n<h4><em>What do the studies show?</em></h4>\r\n<ul>\r\n 	<li><strong>Mayo Clinic</strong> says cortisone may hinder the native stem cells in cartilage. \"Studies have shown the deleterious effects of corticosteroids on chondrocytes, suggesting a potentiation of degenerative joint disease.\" And, \"Corticosteroids frequently are used by physicians to reduce inflammation in patients with musculoskeletal disorders, but these agents may hinder MSCs\' innate regenerative capacity in exchange for temporary analgesia.\" <strong>What are Mesenchymal Stem Cells (MSCs)?</strong> They are the building blocks of cartilage and other musculoskeletal tissue. And cortisone threatens their ability to build and repair in exchange for temporary pain relief.1</li>\r\n</ul>\r\n<h4><em>Many Physicians Routinely Use Cortisone When It Is Damaging to the Joint. We Do Not!</em></h4>\r\n<ul>\r\n 	<li>Another study from the University of Pittsburgh School of Medicine revealed that \"The combination of methylprednisolone and lidocaine was toxic, with virtually no cells surviving after treatment. In addition, methylprednisolone did not mitigate the inflammatory effects of IL-1beta; rather, <strong>it further potentiated the chondrotoxicity.</strong>\"2</li>\r\n</ul>\r\nSo we can see that intra-articular injections of corticosteroids are toxic to the joint even though they are widely used in clinical practice. The truth is – <strong>When injected into joints, corticosteroids trigger cartilage cell death!</strong> Plus, they also suppress healing by their innate mechanism of action, which suppresses the immune system and blocks inflammation.\r\n<h3>4. No Drugs Are Used in Regenerative Orthopedics:</h3>\r\nWe don\'t use addictive pain medications or any other medication. In Regenerative Orthopedics, all of the therapies are natural treatment techniques. For example, the primary ingredient in the Prolotherapy injections is dextrose. This technique involves using the simple and safe base solution dextrose, which is given into and around the entire painful/injured area(s). Why treat the whole area? All of the affected areas are treated comprehensively, so you have the best results.\r\n\r\nIf Platelet Rich Plasma (PRP) is recommended, we use your own blood.  PRP is used for acute or chronic musculoskeletal injuries. It is a great option to repair particular soft tissue injuries to help you avoid the pain, complications, and recovery time associated with various types of joint surgery. Your blood platelets contain potent growth factors that are exceptional at tissue repair. Again, <a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\">Platelet Rich Plasma</a> naturally accelerates the normal healing process. Plus, it results in tissue repair and the regeneration of weakened torn or damaged ligaments, tendons, and joints.\r\n\r\nWhen Stem Cell Therapy is recommended, we use the <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Gold Standard in Stem Cell Therapy</a>. This is also a natural technique where we use all four kinds of Regenerative Orthopedics, including your own stem cells, to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<h3>5. No Anesthesia Is Used in Regenerative Orthopedics:</h3>\r\nAre you afraid of getting anesthesia? With Regenerative Orthopedics, it\'s not necessary! You not only stay out of the hospital and avoid surgery with Regenerative Orthopedics. But you avoid anesthesia too! Surgery definitely has its risks. And anesthesia adds to those risks. Especially for older people.\r\n\r\nA recent medical journal says, \"Postoperative mortality and complications after geriatric hip fracture surgery remain high despite efforts to improve perioperative care for these patients.\" And concludes, \"We found the use of general anesthesia and conversion from regional to general anesthesia were associated with a higher risk of mortality during the in-hospital stay compared with regional anesthetic techniques... We also found general anesthesia to be associated with a higher risk of all-cause readmission compared with regional.\"3\r\n\r\nIt is such a better idea to avoid anesthesia completely. And you can do that with Regenerative Orthopedics.\r\n<h3>Regenerative Orthopedics Is Your Answer to Resolve Joint Pain Without Needing to Go To the Hospital</h3>\r\nAt OrthoRegen, we use a comprehensive approach and a variety of regenerative techniques. And each treatment is individualized according to your unique needs as a patient. The appropriate technique is recommended depending on you and what is required to produce the best healing results and repair.\r\n\r\nAre you experiencing pain and trying to stay out of the hospital? Would you like to avoid surgery too? Regenerative Orthopedics can be your non-surgical alternative. Contact us! We would be more than happy to give you a recommendation geared to getting you pain-free and back to the activities you love.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! </a>\r\n\r\nRegenerative Orthopedics is effective for sports injuries; back, neck, shoulder, knee, and other joint pain; tendonitis, arthritis, herniated disc, and headaches. Plus, if the injury involves a tendon or ligament, chances are Regenerative Orthopedics will help.\r\n<h3>References:</h3>\r\n1Wyles, Cody C., et al. \"Differential cytotoxicity of corticosteroids on human mesenchymal stem cells.\" <i>Clinical Orthopaedics and Related Research®</i> 473.3 (2015): 1155-1164.\r\n\r\n2Seshadri, Venkat, Christian H. Coyle, and Constance R. Chu. \"Lidocaine potentiates the chondrotoxicity of methylprednisolone.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 25.4 (2009): 337-347.\r\n\r\n3Desai, Vimal, et al. \"Is anesthesia technique associated with a higher risk of mortality or complications within 90 days of surgery for geriatric patients with hip fractures?.\" <i>Clinical orthopaedics and related research</i> 476.6 (2018): 1178.','Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics','','inherit','closed','closed','','1452-revision-v1','','','2021-03-12 03:00:57','2021-03-12 03:00:57','',1452,'https://www.drfields.com/uncategorized/1452-revision-v1/',0,'revision','',0),(4562,9,'2021-03-12 03:02:32','2021-03-12 03:02:32','<h2>Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics</h2>\r\nMost of us are doing everything we can to stay out of the hospital during this pandemic age. Who would blame us?! So, we do everything we can think of to keep going and keep moving, even if we are hurting. And those who have an injured joint, who still want to exercise, may choose bicycling instead of running, or swimming instead of hiking. That way, they can still keep exercising since there is less stress on the joint and less pain with the different activities.\r\n\r\nAnd we may also try over-the-counter medications, rest, physical therapy, acupuncture, manipulation, and whatever else we can possibly find in an effort to get relief. But for some, that pain either never goes away, or it just keeps coming back.\r\n\r\n<strong>There is another way!</strong> Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy, is one of the best ways to get relief from your pain without hospitalization or the need for surgery.\r\n<h3>With Regenerative Orthopedics, There Is:</h3>\r\n[caption id=\"attachment_4538\" align=\"alignright\" width=\"489\"]<img class=\" wp-image-4538\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Avoid-the-hospital-1-500x466.png\" alt=\"Avoid The Hospital (1)\" width=\"489\" height=\"455\" /> <em>  Stay Out of The Hospital and Avoid Surgery with Regenerative Orthopedics</em>[/caption]\r\n<ul>\r\n 	<li><strong>No Hospitalization               </strong></li>\r\n 	<li><strong>No Surgery</strong></li>\r\n 	<li><strong>No Steroids</strong></li>\r\n 	<li><strong>No Drugs Just to Mask Painful Symptoms</strong></li>\r\n 	<li><strong>No Anesthesia</strong></li>\r\n</ul>\r\n<h3><strong>Plus, With Regenerative Orthopedics, You Get:</strong></h3>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Regeneration of Injured Soft Tissue</strong></li>\r\n 	<li><strong>Joint Repair</strong></li>\r\n 	<li><strong>No Down Time</strong></li>\r\n 	<li><strong>Faster Recovery</strong></li>\r\n 	<li><strong>Pain Relief</strong></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h3>1. No Hospitalization with Regenerative Orthopedics:</h3>\r\nAt OrthoRegen, we see you and treat you in our medical clinic. <strong>There is no need to go to a hospital! </strong>\r\n\r\nPlus, Peter A. Fields, MD, DC is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor.</em> And his practice is exclusively Regenerative Orthopedics. That means you get a very experienced practitioner and a leader in regenerative medicine.\r\n\r\nAs a medical doctor with years of experience in regenerative medicine, Peter A. Fields, MD, DC will seek out the best natural medicine solution and perform the optimal type of regenerative therapy for you. And that means you get the treatment that\'s right for you and the best treatment possible to repair your joint quickly. And all of these regenerative therapies are available right in our clinic. As a chiropractor, Dr. Fields understands how the joints work. So, you don\'t have to step into the hospital for what is often unnecessary testing. Sure, if further testing is deemed necessary, they can be prescribed. But a chiropractor\'s familiarity with the joints and referral pain makes imaging less necessary.\r\n\r\nIn most cases, Regenerative Orthopedics is effective at eliminating joint<a href=\"/Chronic-Pain\"> pain</a> due to ligament and tendon injury 80 to 90 percent of the time. That\'s a high rate of success! Plus, all of these regenerative techniques help to stimulate the body’s ability to repair...naturally.\r\n<h3>2. No Surgery Is Needed with Regenerative Orthopedics:</h3>\r\nRegenerative Orthopedics is an in-office injection treatment that both research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical treatments. We see so many patients in our clinic who are looking to avoid surgery. We are accustomed to that! And we see amazing results. In our opinion, Regenerative Orthopedics is superior to many other treatments in relieving chronic joint and spine pain. Plus, and most importantly, you get back to a happy and active lifestyle without the need for surgery.\r\n\r\n<strong>Regenerative Orthopedics is:</strong>\r\n<ul>\r\n 	<li>A viable <strong>alternative to surgery</strong></li>\r\n 	<li><strong>A safe and affordable option</strong> that allows you to keep working and/or training during treatment.</li>\r\n 	<li>Typically the best treatment to <strong>stabilize and repair injured ligaments and tendons</strong>. Plus, multiple joints and structures can be treated with each visit.</li>\r\n 	<li><strong>Reparative</strong> in nature. Instead of cutting and removing, it will regenerate and repair the joint.</li>\r\n</ul>\r\n<h3><strong>3. No Steroids or Cortisone Are Used in Regenerative Orthopedics:</strong></h3>\r\nFirst of all, why is this a good thing? <strong>More and more research is pouring in on the detrimental effects of steroids or cortisone </strong><b>injections. Sure, cortisone shots may relieve your pain in the short-term. But they make the problem worse over the long haul.</b>\r\n\r\n<strong>Cortisone injections cause:</strong>\r\n<ul>\r\n 	<li>Cartilage destruction</li>\r\n 	<li>Cartilage surface deterioration</li>\r\n 	<li>Inhibition of new cartilage growth</li>\r\n 	<li>A decrease in <strong>protein and matrix synthesis</strong> (which refers to the nutrient and healing bed the cells grow in)</li>\r\n</ul>\r\n<h4><em>What do the studies show?</em></h4>\r\n<ul>\r\n 	<li><strong>Mayo Clinic</strong> says cortisone may hinder the native stem cells in cartilage. \"Studies have shown the deleterious effects of corticosteroids on chondrocytes, suggesting a potentiation of degenerative joint disease.\" And, \"Corticosteroids frequently are used by physicians to reduce inflammation in patients with musculoskeletal disorders, but these agents may hinder MSCs\' innate regenerative capacity in exchange for temporary analgesia.\" <strong>What are Mesenchymal Stem Cells (MSCs)?</strong> They are the building blocks of cartilage and other musculoskeletal tissue. And cortisone threatens their ability to build and repair in exchange for temporary pain relief.1</li>\r\n</ul>\r\n<h4><em>Many Physicians Routinely Use Cortisone When It Is Damaging to the Joint. We Do Not!</em></h4>\r\n<ul>\r\n 	<li>Another study from the University of Pittsburgh School of Medicine revealed that \"The combination of methylprednisolone and lidocaine was toxic, with virtually no cells surviving after treatment. In addition, methylprednisolone did not mitigate the inflammatory effects of IL-1beta; rather, <strong>it further potentiated the chondrotoxicity.</strong>\"2</li>\r\n</ul>\r\nSo we can see that intra-articular injections of corticosteroids are toxic to the joint even though they are widely used in clinical practice. The truth is – <strong>When injected into joints, corticosteroids trigger cartilage cell death!</strong> Plus, they also suppress healing by their innate mechanism of action, which suppresses the immune system and blocks inflammation.\r\n<h3>4. No Drugs Are Used in Regenerative Orthopedics:</h3>\r\nWe don\'t use addictive pain medications or any other medication. In Regenerative Orthopedics, all of the therapies are natural treatment techniques. For example, the primary ingredient in the Prolotherapy injections is dextrose. This technique involves using the simple and safe base solution dextrose, which is given into and around the entire painful/injured area(s). Why treat the whole area? All of the affected areas are treated comprehensively, so you have the best results.\r\n\r\nIf Platelet Rich Plasma (PRP) is recommended, we use your own blood.  PRP is used for acute or chronic musculoskeletal injuries. It is a great option to repair particular soft tissue injuries to help you avoid the pain, complications, and recovery time associated with various types of joint surgery. Your blood platelets contain potent growth factors that are exceptional at tissue repair. Again, <a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\">Platelet Rich Plasma</a> naturally accelerates the normal healing process. Plus, it results in tissue repair and the regeneration of weakened torn or damaged ligaments, tendons, and joints.\r\n\r\nWhen Stem Cell Therapy is recommended, we use the <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Gold Standard in Stem Cell Therapy</a>. This is also a natural technique where we use all four kinds of Regenerative Orthopedics, including your own stem cells, to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<h3>5. No Anesthesia Is Used in Regenerative Orthopedics:</h3>\r\nAre you afraid of getting anesthesia? With Regenerative Orthopedics, it\'s not necessary! You not only stay out of the hospital and avoid surgery with Regenerative Orthopedics. But you avoid anesthesia too! Surgery definitely has its risks. And anesthesia adds to those risks. Especially for older people.\r\n\r\nA recent medical journal says, \"Postoperative mortality and complications after geriatric hip fracture surgery remain high despite efforts to improve perioperative care for these patients.\" And concludes, \"We found the use of general anesthesia and conversion from regional to general anesthesia were associated with a higher risk of mortality during the in-hospital stay compared with regional anesthetic techniques... We also found general anesthesia to be associated with a higher risk of all-cause readmission compared with regional.\"3\r\n\r\nIt is such a better idea to avoid anesthesia completely. And you can do that with Regenerative Orthopedics.\r\n<h3>Regenerative Orthopedics Is Your Answer to Resolve Joint Pain Without Needing to Go To the Hospital</h3>\r\nAt OrthoRegen, we use a comprehensive approach and a variety of regenerative techniques. And each treatment is individualized according to your unique needs as a patient. The appropriate technique is recommended depending on you and what is required to produce the best healing results and repair.\r\n\r\nAre you experiencing pain and trying to stay out of the hospital? Would you like to avoid surgery too? Regenerative Orthopedics can be your non-surgical alternative. Contact us! We would be more than happy to give you a recommendation geared to getting you pain-free and back to the activities you love.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! </a>\r\n\r\nRegenerative Orthopedics is effective for sports injuries; back, neck, shoulder, knee, and other joint pain; tendonitis, arthritis, herniated disc, and headaches. Plus, if the injury involves a tendon or ligament, chances are Regenerative Orthopedics will help.\r\n<h3>References:</h3>\r\n1Wyles, Cody C., et al. \"Differential cytotoxicity of corticosteroids on human mesenchymal stem cells.\" <i>Clinical Orthopaedics and Related Research®</i> 473.3 (2015): 1155-1164.\r\n\r\n2Seshadri, Venkat, Christian H. Coyle, and Constance R. Chu. \"Lidocaine potentiates the chondrotoxicity of methylprednisolone.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 25.4 (2009): 337-347.\r\n\r\n3Desai, Vimal, et al. \"Is anesthesia technique associated with a higher risk of mortality or complications within 90 days of surgery for geriatric patients with hip fractures?.\" <i>Clinical orthopaedics and related research</i> 476.6 (2018): 1178.','Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics','','inherit','closed','closed','','1452-revision-v1','','','2021-03-12 03:02:32','2021-03-12 03:02:32','',1452,'https://www.drfields.com/uncategorized/1452-revision-v1/',0,'revision','',0),(4563,9,'2021-03-12 03:03:26','2021-03-12 03:03:26','<h2>Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics</h2>\r\nMost of us are doing everything we can to stay out of the hospital during this pandemic age. Who would blame us?! So, we do everything we can think of to keep going and keep moving, even if we are hurting. And those who have an injured joint, who still want to exercise, may choose bicycling instead of running, or swimming instead of hiking. That way, they can still keep exercising since there is less stress on the joint and less pain with the different activities.\r\n\r\nAnd we may also try over-the-counter medications, rest, physical therapy, acupuncture, manipulation, and whatever else we can possibly find in an effort to get relief. But for some, that pain either never goes away, or it just keeps coming back.\r\n\r\n<strong>There is another way!</strong> Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy, is one of the best ways to get relief from your pain without hospitalization or the need for surgery.\r\n<h3>With Regenerative Orthopedics, There Is:</h3>\r\n[caption id=\"attachment_4538\" align=\"alignright\" width=\"527\"]<img class=\" wp-image-4538\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Avoid-the-hospital-1-500x466.png\" alt=\"Avoid The Hospital (1)\" width=\"527\" height=\"490\" /> <em>   Stay Out of The Hospital and Avoid Surgery with Regenerative Orthopedics</em>[/caption]\r\n<ul>\r\n 	<li><strong>No Hospitalization               </strong></li>\r\n 	<li><strong>No Surgery</strong></li>\r\n 	<li><strong>No Steroids</strong></li>\r\n 	<li><strong>No Drugs Just to Mask Painful Symptoms</strong></li>\r\n 	<li><strong>No Anesthesia</strong></li>\r\n</ul>\r\n<h3><strong>Plus, With Regenerative Orthopedics, You Get:</strong></h3>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Regeneration of Injured Soft Tissue</strong></li>\r\n 	<li><strong>Joint Repair</strong></li>\r\n 	<li><strong>No Down Time</strong></li>\r\n 	<li><strong>Faster Recovery</strong></li>\r\n 	<li><strong>Pain Relief</strong></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h3>1. No Hospitalization with Regenerative Orthopedics:</h3>\r\nAt OrthoRegen, we see you and treat you in our medical clinic. <strong>There is no need to go to a hospital! </strong>\r\n\r\nPlus, Peter A. Fields, MD, DC is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor.</em> And his practice is exclusively Regenerative Orthopedics. That means you get a very experienced practitioner and a leader in regenerative medicine.\r\n\r\nAs a medical doctor with years of experience in regenerative medicine, Peter A. Fields, MD, DC will seek out the best natural medicine solution and perform the optimal type of regenerative therapy for you. And that means you get the treatment that\'s right for you and the best treatment possible to repair your joint quickly. And all of these regenerative therapies are available right in our clinic. As a chiropractor, Dr. Fields understands how the joints work. So, you don\'t have to step into the hospital for what is often unnecessary testing. Sure, if further testing is deemed necessary, they can be prescribed. But a chiropractor\'s familiarity with the joints and referral pain makes imaging less necessary.\r\n\r\nIn most cases, Regenerative Orthopedics is effective at eliminating joint<a href=\"/Chronic-Pain\"> pain</a> due to ligament and tendon injury 80 to 90 percent of the time. That\'s a high rate of success! Plus, all of these regenerative techniques help to stimulate the body’s ability to repair...naturally.\r\n<h3>2. No Surgery Is Needed with Regenerative Orthopedics:</h3>\r\nRegenerative Orthopedics is an in-office injection treatment that both research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical treatments. We see so many patients in our clinic who are looking to avoid surgery. We are accustomed to that! And we see amazing results. In our opinion, Regenerative Orthopedics is superior to many other treatments in relieving chronic joint and spine pain. Plus, and most importantly, you get back to a happy and active lifestyle without the need for surgery.\r\n\r\n<strong>Regenerative Orthopedics is:</strong>\r\n<ul>\r\n 	<li>A viable <strong>alternative to surgery</strong></li>\r\n 	<li><strong>A safe and affordable option</strong> that allows you to keep working and/or training during treatment.</li>\r\n 	<li>Typically the best treatment to <strong>stabilize and repair injured ligaments and tendons</strong>. Plus, multiple joints and structures can be treated with each visit.</li>\r\n 	<li><strong>Reparative</strong> in nature. Instead of cutting and removing, it will regenerate and repair the joint.</li>\r\n</ul>\r\n<h3><strong>3. No Steroids or Cortisone Are Used in Regenerative Orthopedics:</strong></h3>\r\nFirst of all, why is this a good thing? <strong>More and more research is pouring in on the detrimental effects of steroids or cortisone </strong><b>injections. Sure, cortisone shots may relieve your pain in the short-term. But they make the problem worse over the long haul.</b>\r\n\r\n<strong>Cortisone injections cause:</strong>\r\n<ul>\r\n 	<li>Cartilage destruction</li>\r\n 	<li>Cartilage surface deterioration</li>\r\n 	<li>Inhibition of new cartilage growth</li>\r\n 	<li>A decrease in <strong>protein and matrix synthesis</strong> (which refers to the nutrient and healing bed the cells grow in)</li>\r\n</ul>\r\n<h4><em>What do the studies show?</em></h4>\r\n<ul>\r\n 	<li><strong>Mayo Clinic</strong> says cortisone may hinder the native stem cells in cartilage. \"Studies have shown the deleterious effects of corticosteroids on chondrocytes, suggesting a potentiation of degenerative joint disease.\" And, \"Corticosteroids frequently are used by physicians to reduce inflammation in patients with musculoskeletal disorders, but these agents may hinder MSCs\' innate regenerative capacity in exchange for temporary analgesia.\" <strong>What are Mesenchymal Stem Cells (MSCs)?</strong> They are the building blocks of cartilage and other musculoskeletal tissue. And cortisone threatens their ability to build and repair in exchange for temporary pain relief.1</li>\r\n</ul>\r\n<h4><em>Many Physicians Routinely Use Cortisone When It Is Damaging to the Joint. We Do Not!</em></h4>\r\n<ul>\r\n 	<li>Another study from the University of Pittsburgh School of Medicine revealed that \"The combination of methylprednisolone and lidocaine was toxic, with virtually no cells surviving after treatment. In addition, methylprednisolone did not mitigate the inflammatory effects of IL-1beta; rather, <strong>it further potentiated the chondrotoxicity.</strong>\"2</li>\r\n</ul>\r\nSo we can see that intra-articular injections of corticosteroids are toxic to the joint even though they are widely used in clinical practice. The truth is – <strong>When injected into joints, corticosteroids trigger cartilage cell death!</strong> Plus, they also suppress healing by their innate mechanism of action, which suppresses the immune system and blocks inflammation.\r\n<h3>4. No Drugs Are Used in Regenerative Orthopedics:</h3>\r\nWe don\'t use addictive pain medications or any other medication. In Regenerative Orthopedics, all of the therapies are natural treatment techniques. For example, the primary ingredient in the Prolotherapy injections is dextrose. This technique involves using the simple and safe base solution dextrose, which is given into and around the entire painful/injured area(s). Why treat the whole area? All of the affected areas are treated comprehensively, so you have the best results.\r\n\r\nIf Platelet Rich Plasma (PRP) is recommended, we use your own blood.  PRP is used for acute or chronic musculoskeletal injuries. It is a great option to repair particular soft tissue injuries to help you avoid the pain, complications, and recovery time associated with various types of joint surgery. Your blood platelets contain potent growth factors that are exceptional at tissue repair. Again, <a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\">Platelet Rich Plasma</a> naturally accelerates the normal healing process. Plus, it results in tissue repair and the regeneration of weakened torn or damaged ligaments, tendons, and joints.\r\n\r\nWhen Stem Cell Therapy is recommended, we use the <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Gold Standard in Stem Cell Therapy</a>. This is also a natural technique where we use all four kinds of Regenerative Orthopedics, including your own stem cells, to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<h3>5. No Anesthesia Is Used in Regenerative Orthopedics:</h3>\r\nAre you afraid of getting anesthesia? With Regenerative Orthopedics, it\'s not necessary! You not only stay out of the hospital and avoid surgery with Regenerative Orthopedics. But you avoid anesthesia too! Surgery definitely has its risks. And anesthesia adds to those risks. Especially for older people.\r\n\r\nA recent medical journal says, \"Postoperative mortality and complications after geriatric hip fracture surgery remain high despite efforts to improve perioperative care for these patients.\" And concludes, \"We found the use of general anesthesia and conversion from regional to general anesthesia were associated with a higher risk of mortality during the in-hospital stay compared with regional anesthetic techniques... We also found general anesthesia to be associated with a higher risk of all-cause readmission compared with regional.\"3\r\n\r\nIt is such a better idea to avoid anesthesia completely. And you can do that with Regenerative Orthopedics.\r\n<h3>Regenerative Orthopedics Is Your Answer to Resolve Joint Pain Without Needing to Go To the Hospital</h3>\r\nAt OrthoRegen, we use a comprehensive approach and a variety of regenerative techniques. And each treatment is individualized according to your unique needs as a patient. The appropriate technique is recommended depending on you and what is required to produce the best healing results and repair.\r\n\r\nAre you experiencing pain and trying to stay out of the hospital? Would you like to avoid surgery too? Regenerative Orthopedics can be your non-surgical alternative. Contact us! We would be more than happy to give you a recommendation geared to getting you pain-free and back to the activities you love.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! </a>\r\n\r\nRegenerative Orthopedics is effective for sports injuries; back, neck, shoulder, knee, and other joint pain; tendonitis, arthritis, herniated disc, and headaches. Plus, if the injury involves a tendon or ligament, chances are Regenerative Orthopedics will help.\r\n<h3>References:</h3>\r\n1Wyles, Cody C., et al. \"Differential cytotoxicity of corticosteroids on human mesenchymal stem cells.\" <i>Clinical Orthopaedics and Related Research®</i> 473.3 (2015): 1155-1164.\r\n\r\n2Seshadri, Venkat, Christian H. Coyle, and Constance R. Chu. \"Lidocaine potentiates the chondrotoxicity of methylprednisolone.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 25.4 (2009): 337-347.\r\n\r\n3Desai, Vimal, et al. \"Is anesthesia technique associated with a higher risk of mortality or complications within 90 days of surgery for geriatric patients with hip fractures?.\" <i>Clinical orthopaedics and related research</i> 476.6 (2018): 1178.','Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics','','inherit','closed','closed','','1452-revision-v1','','','2021-03-12 03:03:26','2021-03-12 03:03:26','',1452,'https://www.drfields.com/uncategorized/1452-revision-v1/',0,'revision','',0),(4564,9,'2021-03-12 03:07:01','2021-03-12 03:07:01','<h2>Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics</h2>\r\nMost of us are doing everything we can to stay out of the hospital during this pandemic age. Who would blame us?! So, we do everything we can think of to keep going and keep moving, even if we are hurting. And those who have an injured joint, who still want to exercise, may choose bicycling instead of running, or swimming instead of hiking. That way, they can still keep exercising since there is less stress on the joint and less pain with the different activities.\r\n\r\nAnd we may also try over-the-counter medications, rest, physical therapy, acupuncture, manipulation, and whatever else we can possibly find in an effort to get relief. But for some, that pain either never goes away, or it just keeps coming back.\r\n\r\n<strong>There is another way!</strong> Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy, is one of the best ways to get relief from your pain without hospitalization or the need for surgery.\r\n<h3>With Regenerative Orthopedics, There Is:</h3>\r\n[caption id=\"attachment_4538\" align=\"alignright\" width=\"527\"]<img class=\" wp-image-4538\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Avoid-the-hospital-1-500x466.png\" alt=\"Avoid The Hospital (1)\" width=\"527\" height=\"490\" /> <em>   Stay Out of The Hospital and Avoid Surgery with Regenerative Orthopedics</em>[/caption]\r\n<ul>\r\n 	<li><strong>No Hospitalization               </strong></li>\r\n 	<li><strong>No Surgery</strong></li>\r\n 	<li><strong>No Steroids</strong></li>\r\n 	<li><strong>No Drugs Just to Mask Painful Symptoms</strong></li>\r\n 	<li><strong>No General Anesthesia</strong></li>\r\n</ul>\r\n<h3><strong>Plus, With Regenerative Orthopedics, You Get:</strong></h3>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Regeneration of Injured Soft Tissue</strong></li>\r\n 	<li><strong>Joint Repair</strong></li>\r\n 	<li><strong>No Down Time</strong></li>\r\n 	<li><strong>Faster Recovery</strong></li>\r\n 	<li><strong>Pain Relief</strong></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h3>1. No Hospitalization with Regenerative Orthopedics:</h3>\r\nAt OrthoRegen, we see you and treat you in our medical clinic. <strong>There is no need to go to a hospital! </strong>\r\n\r\nPlus, Peter A. Fields, MD, DC is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor.</em> And his practice is exclusively Regenerative Orthopedics. That means you get a very experienced practitioner and a leader in regenerative medicine.\r\n\r\nAs a medical doctor with years of experience in regenerative medicine, Peter A. Fields, MD, DC will seek out the best natural medicine solution and perform the optimal type of regenerative therapy for you. And that means you get the treatment that\'s right for you and the best treatment possible to repair your joint quickly. And all of these regenerative therapies are available right in our clinic. As a chiropractor, Dr. Fields understands how the joints work. So, you don\'t have to step into the hospital for what is often unnecessary testing. Sure, if further testing is deemed necessary, they can be prescribed. But a chiropractor\'s familiarity with the joints and referral pain makes imaging less necessary.\r\n\r\nIn most cases, Regenerative Orthopedics is effective at eliminating joint<a href=\"/Chronic-Pain\"> pain</a> due to ligament and tendon injury 80 to 90 percent of the time. That\'s a high rate of success! Plus, all of these regenerative techniques help to stimulate the body’s ability to repair...naturally.\r\n<h3>2. No Surgery Is Needed with Regenerative Orthopedics:</h3>\r\nRegenerative Orthopedics is an in-office injection treatment that both research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical treatments. We see so many patients in our clinic who are looking to avoid surgery. We are accustomed to that! And we see amazing results. In our opinion, Regenerative Orthopedics is superior to many other treatments in relieving chronic joint and spine pain. Plus, and most importantly, you get back to a happy and active lifestyle without the need for surgery.\r\n\r\n<strong>Regenerative Orthopedics is:</strong>\r\n<ul>\r\n 	<li>A viable <strong>alternative to surgery</strong></li>\r\n 	<li><strong>A safe and affordable option</strong> that allows you to keep working and/or training during treatment.</li>\r\n 	<li>Typically the best treatment to <strong>stabilize and repair injured ligaments and tendons</strong>. Plus, multiple joints and structures can be treated with each visit.</li>\r\n 	<li><strong>Reparative</strong> in nature. Instead of cutting and removing, it will regenerate and repair the joint.</li>\r\n</ul>\r\n<h3><strong>3. No Steroids or Cortisone Are Used in Regenerative Orthopedics:</strong></h3>\r\nFirst of all, why is this a good thing? <strong>More and more research is pouring in on the detrimental effects of steroids or cortisone </strong><b>injections. Sure, cortisone shots may relieve your pain in the short-term. But they make the problem worse over the long haul.</b>\r\n\r\n<strong>Cortisone injections cause:</strong>\r\n<ul>\r\n 	<li>Cartilage destruction</li>\r\n 	<li>Cartilage surface deterioration</li>\r\n 	<li>Inhibition of new cartilage growth</li>\r\n 	<li>A decrease in <strong>protein and matrix synthesis</strong> (which refers to the nutrient and healing bed the cells grow in)</li>\r\n</ul>\r\n<h4><em>What do the studies show?</em></h4>\r\n<ul>\r\n 	<li><strong>Mayo Clinic</strong> says cortisone may hinder the native stem cells in cartilage. \"Studies have shown the deleterious effects of corticosteroids on chondrocytes, suggesting a potentiation of degenerative joint disease.\" And, \"Corticosteroids frequently are used by physicians to reduce inflammation in patients with musculoskeletal disorders, but these agents may hinder MSCs\' innate regenerative capacity in exchange for temporary analgesia.\" <strong>What are Mesenchymal Stem Cells (MSCs)?</strong> They are the building blocks of cartilage and other musculoskeletal tissue. And cortisone threatens their ability to build and repair in exchange for temporary pain relief.1</li>\r\n</ul>\r\n<h4><em>Many Physicians Routinely Use Cortisone When It Is Damaging to the Joint. We Do Not!</em></h4>\r\n<ul>\r\n 	<li>Another study from the University of Pittsburgh School of Medicine revealed that \"The combination of methylprednisolone and lidocaine was toxic, with virtually no cells surviving after treatment. In addition, methylprednisolone did not mitigate the inflammatory effects of IL-1beta; rather, <strong>it further potentiated the chondrotoxicity.</strong>\"2</li>\r\n</ul>\r\nSo we can see that intra-articular injections of corticosteroids are toxic to the joint even though they are widely used in clinical practice. The truth is – <strong>When injected into joints, corticosteroids trigger cartilage cell death!</strong> Plus, they also suppress healing by their innate mechanism of action, which suppresses the immune system and blocks inflammation.\r\n<h3>4. No Drugs Just to Mask or Chase Pain...Are Used in Regenerative Orthopedics:</h3>\r\nWe don\'t use addictive pain medications or other medications that just mask or chase the pain. In Regenerative Orthopedics, all of the therapies are natural treatment techniques. For example, the primary ingredient in the Prolotherapy injections is dextrose. This technique involves using the simple and safe base solution dextrose, which is given into and around the entire painful/injured area(s). Why treat the whole area? All of the affected areas are treated comprehensively, so you have the best results.\r\n\r\nIf Platelet Rich Plasma (PRP) is recommended, we use your own blood.  PRP is used for acute or chronic musculoskeletal injuries. It is a great option to repair particular soft tissue injuries to help you avoid the pain, complications, and recovery time associated with various types of joint surgery. Your blood platelets contain potent growth factors that are exceptional at tissue repair. Again, <a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\">Platelet Rich Plasma</a> naturally accelerates the normal healing process. Plus, it results in tissue repair and the regeneration of weakened torn or damaged ligaments, tendons, and joints.\r\n\r\nWhen Stem Cell Therapy is recommended, we use the <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Gold Standard in Stem Cell Therapy</a>. This is also a natural technique where we use all four kinds of Regenerative Orthopedics, including your own stem cells, to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<h3>5. No General Anesthesia Is Used in Regenerative Orthopedics:</h3>\r\nAre you afraid of receiving general anesthesia? With Regenerative Orthopedics, it\'s not necessary! You not only stay out of the hospital and avoid surgery with Regenerative Orthopedics. But you avoid general anesthesia too! Surgery definitely has its risks. And general anesthesia adds to those risks. Especially for older people.\r\n\r\nA recent medical journal says, \"Postoperative mortality and complications after geriatric hip fracture surgery remain high despite efforts to improve perioperative care for these patients.\" And concludes, \"We found the use of general anesthesia and conversion from regional to general anesthesia were associated with a higher risk of mortality during the in-hospital stay compared with regional anesthetic techniques... We also found general anesthesia to be associated with a higher risk of all-cause readmission compared with regional.\"3\r\n\r\nIt is such a better idea to avoid anesthesia completely. And you can do that with Regenerative Orthopedics.\r\n<h3>Regenerative Orthopedics Is Your Answer to Resolve Joint Pain Without Needing to Go To the Hospital</h3>\r\nAt OrthoRegen, we use a comprehensive approach and a variety of regenerative techniques. And each treatment is individualized according to your unique needs as a patient. The appropriate technique is recommended depending on you and what is required to produce the best healing results and repair.\r\n\r\nAre you experiencing pain and trying to stay out of the hospital? Would you like to avoid surgery too? Regenerative Orthopedics can be your non-surgical alternative. Contact us! We would be more than happy to give you a recommendation geared to getting you pain-free and back to the activities you love.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! </a>\r\n\r\nRegenerative Orthopedics is effective for sports injuries; back, neck, shoulder, knee, and other joint pain; tendonitis, arthritis, herniated disc, and headaches. Plus, if the injury involves a tendon or ligament, chances are Regenerative Orthopedics will help.\r\n<h3>References:</h3>\r\n1Wyles, Cody C., et al. \"Differential cytotoxicity of corticosteroids on human mesenchymal stem cells.\" <i>Clinical Orthopaedics and Related Research®</i> 473.3 (2015): 1155-1164.\r\n\r\n2Seshadri, Venkat, Christian H. Coyle, and Constance R. Chu. \"Lidocaine potentiates the chondrotoxicity of methylprednisolone.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 25.4 (2009): 337-347.\r\n\r\n3Desai, Vimal, et al. \"Is anesthesia technique associated with a higher risk of mortality or complications within 90 days of surgery for geriatric patients with hip fractures?.\" <i>Clinical orthopaedics and related research</i> 476.6 (2018): 1178.','Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics','','inherit','closed','closed','','1452-revision-v1','','','2021-03-12 03:07:01','2021-03-12 03:07:01','',1452,'https://www.drfields.com/uncategorized/1452-revision-v1/',0,'revision','',0),(4565,9,'2021-03-12 03:07:21','2021-03-12 03:07:21','<h2>Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics</h2>\r\nMost of us are doing everything we can to stay out of the hospital during this pandemic age. Who would blame us?! So, we do everything we can think of to keep going and keep moving, even if we are hurting. And those who have an injured joint, who still want to exercise, may choose bicycling instead of running, or swimming instead of hiking. That way, they can still keep exercising since there is less stress on the joint and less pain with the different activities.\r\n\r\nAnd we may also try over-the-counter medications, rest, physical therapy, acupuncture, manipulation, and whatever else we can possibly find in an effort to get relief. But for some, that pain either never goes away, or it just keeps coming back.\r\n\r\n<strong>There is another way!</strong> Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy, is one of the best ways to get relief from your pain without hospitalization or the need for surgery.\r\n<h3>With Regenerative Orthopedics, There Is:</h3>\r\n[caption id=\"attachment_4538\" align=\"alignright\" width=\"527\"]<img class=\" wp-image-4538\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Avoid-the-hospital-1-500x466.png\" alt=\"Avoid The Hospital (1)\" width=\"527\" height=\"490\" /> <em>   Stay Out of The Hospital and Avoid Surgery with Regenerative Orthopedics</em>[/caption]\r\n<ul>\r\n 	<li><strong>No Hospitalization               </strong></li>\r\n 	<li><strong>No Surgery</strong></li>\r\n 	<li><strong>No Steroids</strong></li>\r\n 	<li><strong>No Drugs Just to Mask Painful Symptoms</strong></li>\r\n 	<li><strong>No General Anesthesia</strong></li>\r\n</ul>\r\n<h3><strong>Plus, With Regenerative Orthopedics, You Get:</strong></h3>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong>Regeneration of Injured Soft Tissue</strong></li>\r\n 	<li><strong>Joint Repair</strong></li>\r\n 	<li><strong>No Down Time</strong></li>\r\n 	<li><strong>Faster Recovery</strong></li>\r\n 	<li><strong>Pain Relief</strong></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h3>1. No Hospitalization with Regenerative Orthopedics:</h3>\r\nAt OrthoRegen, we see you and treat you in our medical clinic. <strong>There is no need to go to a hospital! </strong>\r\n\r\nPlus, Peter A. Fields, MD, DC is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor.</em> And his practice is exclusively Regenerative Orthopedics. That means you get a very experienced practitioner and a leader in regenerative medicine.\r\n\r\nAs a medical doctor with years of experience in regenerative medicine, Peter A. Fields, MD, DC will seek out the best natural medicine solution and perform the optimal type of regenerative therapy for you. And that means you get the treatment that\'s right for you and the best treatment possible to repair your joint quickly. And all of these regenerative therapies are available right in our clinic. As a chiropractor, Dr. Fields understands how the joints work. So, you don\'t have to step into the hospital for what is often unnecessary testing. Sure, if further testing is deemed necessary, they can be prescribed. But a chiropractor\'s familiarity with the joints and referral pain makes imaging less necessary.\r\n\r\nIn most cases, Regenerative Orthopedics is effective at eliminating joint<a href=\"/Chronic-Pain\"> pain</a> due to ligament and tendon injury 80 to 90 percent of the time. That\'s a high rate of success! Plus, all of these regenerative techniques help to stimulate the body’s ability to repair...naturally.\r\n<h3>2. No Surgery Is Needed with Regenerative Orthopedics:</h3>\r\nRegenerative Orthopedics is an in-office injection treatment that both research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical treatments. We see so many patients in our clinic who are looking to avoid surgery. We are accustomed to that! And we see amazing results. In our opinion, Regenerative Orthopedics is superior to many other treatments in relieving chronic joint and spine pain. Plus, and most importantly, you get back to a happy and active lifestyle without the need for surgery.\r\n\r\n<strong>Regenerative Orthopedics is:</strong>\r\n<ul>\r\n 	<li>A viable <strong>alternative to surgery</strong></li>\r\n 	<li><strong>A safe and affordable option</strong> that allows you to keep working and/or training during treatment.</li>\r\n 	<li>Typically the best treatment to <strong>stabilize and repair injured ligaments and tendons</strong>. Plus, multiple joints and structures can be treated with each visit.</li>\r\n 	<li><strong>Reparative</strong> in nature. Instead of cutting and removing, it will regenerate and repair the joint.</li>\r\n</ul>\r\n<h3><strong>3. No Steroids or Cortisone Are Used in Regenerative Orthopedics:</strong></h3>\r\nFirst of all, why is this a good thing? <strong>More and more research is pouring in on the detrimental effects of steroids or cortisone </strong><b>injections. Sure, cortisone shots may relieve your pain in the short-term. But they make the problem worse over the long haul.</b>\r\n\r\n<strong>Cortisone injections cause:</strong>\r\n<ul>\r\n 	<li>Cartilage destruction</li>\r\n 	<li>Cartilage surface deterioration</li>\r\n 	<li>Inhibition of new cartilage growth</li>\r\n 	<li>A decrease in <strong>protein and matrix synthesis</strong> (which refers to the nutrient and healing bed the cells grow in)</li>\r\n</ul>\r\n<h4><em>What do the studies show?</em></h4>\r\n<ul>\r\n 	<li><strong>Mayo Clinic</strong> says cortisone may hinder the native stem cells in cartilage. \"Studies have shown the deleterious effects of corticosteroids on chondrocytes, suggesting a potentiation of degenerative joint disease.\" And, \"Corticosteroids frequently are used by physicians to reduce inflammation in patients with musculoskeletal disorders, but these agents may hinder MSCs\' innate regenerative capacity in exchange for temporary analgesia.\" <strong>What are Mesenchymal Stem Cells (MSCs)?</strong> They are the building blocks of cartilage and other musculoskeletal tissue. And cortisone threatens their ability to build and repair in exchange for temporary pain relief.1</li>\r\n</ul>\r\n<h4><em>Many Physicians Routinely Use Cortisone When It Is Damaging to the Joint. We Do Not!</em></h4>\r\n<ul>\r\n 	<li>Another study from the University of Pittsburgh School of Medicine revealed that \"The combination of methylprednisolone and lidocaine was toxic, with virtually no cells surviving after treatment. In addition, methylprednisolone did not mitigate the inflammatory effects of IL-1beta; rather, <strong>it further potentiated the chondrotoxicity.</strong>\"2</li>\r\n</ul>\r\nSo we can see that intra-articular injections of corticosteroids are toxic to the joint even though they are widely used in clinical practice. The truth is – <strong>When injected into joints, corticosteroids trigger cartilage cell death!</strong> Plus, they also suppress healing by their innate mechanism of action, which suppresses the immune system and blocks inflammation.\r\n<h3>4. No Drugs Just to Mask or Chase Pain...Are Used in Regenerative Orthopedics:</h3>\r\nWe don\'t use addictive pain medications or other medications that just mask or chase the pain. In Regenerative Orthopedics, all of the therapies are natural treatment techniques. For example, the primary ingredient in the Prolotherapy injections is dextrose. This technique involves using the simple and safe base solution dextrose, which is given into and around the entire painful/injured area(s). Why treat the whole area? All of the affected areas are treated comprehensively, so you have the best results.\r\n\r\nIf Platelet Rich Plasma (PRP) is recommended, we use your own blood.  PRP is used for acute or chronic musculoskeletal injuries. It is a great option to repair particular soft tissue injuries to help you avoid the pain, complications, and recovery time associated with various types of joint surgery. Your blood platelets contain potent growth factors that are exceptional at tissue repair. Again, <a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\">Platelet Rich Plasma</a> naturally accelerates the normal healing process. Plus, it results in tissue repair and the regeneration of weakened torn or damaged ligaments, tendons, and joints.\r\n\r\nWhen Stem Cell Therapy is recommended, we use the <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Gold Standard in Stem Cell Therapy</a>. This is also a natural technique where we use all four kinds of Regenerative Orthopedics, including your own stem cells, to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<h3>5. No General Anesthesia Is Used in Regenerative Orthopedics:</h3>\r\nAre you afraid of receiving general anesthesia? With Regenerative Orthopedics, it\'s not necessary! You not only stay out of the hospital and avoid surgery with Regenerative Orthopedics. But you avoid general anesthesia too! Surgery definitely has its risks. And general anesthesia adds to those risks. Especially for older people.\r\n\r\nA recent medical journal says, \"Postoperative mortality and complications after geriatric hip fracture surgery remain high despite efforts to improve perioperative care for these patients.\" And concludes, \"We found the use of general anesthesia and conversion from regional to general anesthesia were associated with a higher risk of mortality during the in-hospital stay compared with regional anesthetic techniques... We also found general anesthesia to be associated with a higher risk of all-cause readmission compared with regional.\"3\r\n\r\nIt is such a better idea to avoid general anesthesia completely. And you can do that with Regenerative Orthopedics.\r\n<h3>Regenerative Orthopedics Is Your Answer to Resolve Joint Pain Without Needing to Go To the Hospital</h3>\r\nAt OrthoRegen, we use a comprehensive approach and a variety of regenerative techniques. And each treatment is individualized according to your unique needs as a patient. The appropriate technique is recommended depending on you and what is required to produce the best healing results and repair.\r\n\r\nAre you experiencing pain and trying to stay out of the hospital? Would you like to avoid surgery too? Regenerative Orthopedics can be your non-surgical alternative. Contact us! We would be more than happy to give you a recommendation geared to getting you pain-free and back to the activities you love.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! </a>\r\n\r\nRegenerative Orthopedics is effective for sports injuries; back, neck, shoulder, knee, and other joint pain; tendonitis, arthritis, herniated disc, and headaches. Plus, if the injury involves a tendon or ligament, chances are Regenerative Orthopedics will help.\r\n<h3>References:</h3>\r\n1Wyles, Cody C., et al. \"Differential cytotoxicity of corticosteroids on human mesenchymal stem cells.\" <i>Clinical Orthopaedics and Related Research®</i> 473.3 (2015): 1155-1164.\r\n\r\n2Seshadri, Venkat, Christian H. Coyle, and Constance R. Chu. \"Lidocaine potentiates the chondrotoxicity of methylprednisolone.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 25.4 (2009): 337-347.\r\n\r\n3Desai, Vimal, et al. \"Is anesthesia technique associated with a higher risk of mortality or complications within 90 days of surgery for geriatric patients with hip fractures?.\" <i>Clinical orthopaedics and related research</i> 476.6 (2018): 1178.','Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics','','inherit','closed','closed','','1452-revision-v1','','','2021-03-12 03:07:21','2021-03-12 03:07:21','',1452,'https://www.drfields.com/uncategorized/1452-revision-v1/',0,'revision','',0),(4566,9,'2021-03-12 03:23:06','2021-03-12 03:23:06','<h3>Why Choose OrthoRegen®?</h3>\r\nAt OrthoRegen®, we want to help you achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. After all, this is your health that we are talking about.\r\n<h4><strong>The Future of Your Health in This Changing World</strong></h4>\r\nInvesting in your health is now more important than ever. Most of us are looking for ways to keep our immune system strong so we don\'t get sick. It is a new world out there! And we all want to do everything we can to avoid the hospital!  Since the future of health care is changing, you must know what choices are available to you.\r\n<h3>OrthoRegen Is Exclusively a Regenerative Orthopedics Medical Office</h3>\r\nThe medical office of OrthoRegen®, offers Regenerative Orthopedics exclusively. We don\'t do surgery. And we don\'t use anesthesia. Nor do we give out a bunch of medications. Plus, we don\'t just dabble in regenerative medicine or do a procedure once in a while. That\'s all we do. And we have been offering regenerative medicine options for many, many years. So that means your practitioners are very experienced.\r\n\r\nWith that in mind, our goal is to ensure that you will have an exceptional experience throughout your entire process. <strong>We offer safe, expedient, and effective treatments to resolve many painful conditions without the need for surgery.</strong> And when more advanced treatment is needed, such as in cases of very degenerated joints, OrthoRegen offers the state-of-the-art Gold Standard in Stem Cell Therapy. What does that mean? The Gold Standard refers to four different types of regenerative therapies. That\'s four! Most clinics use just one.\r\n\r\nAnd that\'s why many Los Angeles residents choose us as their regenerative medicine alternative to surgery and joint replacement. With all of that regenerative capability, in most cases, we can resolve the majority of painful musculoskeletal conditions and ultimately enhance the quality of your life and get you back to the activities you love.\r\n<h4><em>If You Are An Athlete with an Injury, Peter A. Fields, MD, DC Understands, Because He Is An Athlete Too</em></h4>\r\n[caption id=\"attachment_4550\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4550\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Why-Choose-OrthoRegen-copy-500x500.png\" alt=\"Why Choose Orthoregen Copy\" width=\"500\" height=\"500\" /> <em>                             <strong>Why Choose OrthoRegen®: Our Philosophy</strong></em>[/caption]\r\n\r\nAs an athlete himself, Peter A. Fields, MD, DC, also understands how important it is to stay in the game.  That, along with his extensive expertise, ensures a higher level of ability and understanding as a regenerative medicine physician because his experience encompasses a much broader knowledge base.\r\n<h3>Peter A. Fields, MD, DC is Dual Degreed as Both a Medical Doctor <strong>and</strong> a Chiropractor</h3>\r\nAs a medical doctor and one of the leaders in regenerative medicine, Peter A. Fields, MD, DC, has years of experience in regenerative therapies. Therefore, he can seek out the best solution, recommend, and perform the optimal type of regenerative therapy that is right for you. And that means you get the treatment that\'s right for you and the best possible therapy to repair your joint.  And all of these regenerative therapies are available right in our clinic.\r\n\r\nPlus, Peter A. Fields, MD, DC, is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor. </em>As a chiropractor, he understands the ins and out of every joint. That helps ensure that you won\'t need all of the imaging that many physicians order due to their lack of experience locating the problem via manual examination. Sure, if further testing is deemed necessary, it can be prescribed. But a chiropractor\'s familiarity with the joints and possible referral pain patterns makes imaging less necessary.\r\n\r\nOrthoRegen® has provided hope for patients from all over who are trying to avoid joint surgery. Even if surgery has already been done, Regenerative Orthopedics can provide pain relief. We have many <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">articles</a> on this website that discuss the various conditions you may face and how Regenerative Orthopedics can help. We welcome you to <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">search</a> through them to learn more about our treatments, research, and how we achieve outstanding patient results because of our unique approach. If you are looking for the top pain clinic in the Los Angeles area to actually resolve your pain and not just temporarily cover up the symptoms, let’s talk...<strong>Together, we can turn your case around!</strong>\r\n<h3>Regenerative Orthopedics Is Your Non-Surgical Option When You Injure Yourself?</h3>\r\nWe are thrilled to enable people to live fulfilling and active lives by resolving their joint pain and injury through comprehensive Regenerative Orthopedics. Why choose surgery when there is an alternative? <strong>And always remember that once the surgery is done, it cannot be undone.</strong> At OrthoRegen, our team is dedicated to providing highly effective, individualized treatment plans that relieve pain and help you return to sports, work, and activities quickly and safely.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\">Los Angeles Prolotherapy doctor</a> and <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\">PRP Doctor</a> and the founder of OrthoRegen®.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','OrthoRegen®: Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2021-03-12 03:23:06','2021-03-12 03:23:06','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(4567,9,'2021-03-12 03:28:59','2021-03-12 03:28:59','<h3>Why Choose OrthoRegen®?</h3>\r\nAt OrthoRegen®, we want to help you achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. After all, this is your health that we are talking about.\r\n<h4><strong>The Future of Your Health in This Changing World</strong></h4>\r\nInvesting in your health is now more important than ever. Most of us are looking for ways to keep our immune system strong so we don\'t get sick. It is a new world out there! And we all want to do everything we can to avoid the hospital!  Since the future of health care is changing, you must know what choices are available to you.\r\n<h3>OrthoRegen® Is Exclusively a Regenerative Orthopedics Medical Office</h3>\r\nThe medical office of OrthoRegen® offers Regenerative Orthopedics exclusively. We don\'t do surgery. And we don\'t use anesthesia. Nor do we give out a bunch of medications. Plus, we don\'t just dabble in regenerative medicine or do a procedure once in a while. That\'s all we do. And we have been offering regenerative medicine options for many, many years. So that means your practitioners are very experienced.\r\n\r\nWith that in mind, our goal is to ensure that you will have an exceptional experience throughout your entire process. <strong>We offer safe, expedient, and effective treatments to resolve many painful conditions without the need for surgery.</strong> And when more advanced treatment is needed, such as in cases of very degenerated joints, OrthoRegen offers the state-of-the-art Gold Standard in Stem Cell Therapy. What does that mean? The Gold Standard refers to four different types of regenerative therapies. That\'s four! Most clinics use just one.\r\n\r\nAnd that\'s why many Los Angeles residents choose us as their regenerative medicine alternative to surgery and joint replacement. With all of that regenerative capability, in most cases, we can resolve the majority of painful musculoskeletal conditions and ultimately enhance the quality of your life and get you back to the activities you love.\r\n<h4><em>If You Are An Athlete with an Injury, Peter A. Fields, MD, DC Understands, Because He Is An Athlete Too</em></h4>\r\n[caption id=\"attachment_4550\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4550 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Why-Choose-OrthoRegen-copy-500x500.png\" alt=\"Why Choose OrthoRegen®\" width=\"500\" height=\"500\" /> <em>                             <strong>Why Choose OrthoRegen®: Our Philosophy</strong></em>[/caption]\r\n\r\nAs an athlete himself, Peter A. Fields, MD, DC, also understands how important it is to stay in the game.  That, along with his extensive expertise, ensures a higher level of ability and understanding as a regenerative medicine physician because his experience encompasses a much broader knowledge base.\r\n<h3>Peter A. Fields, MD, DC is Dual Degreed as Both a Medical Doctor <strong>and</strong> a Chiropractor</h3>\r\nAs a medical doctor and one of the leaders in regenerative medicine, Peter A. Fields, MD, DC, has years of experience in regenerative therapies. Therefore, he can seek out the best solution, recommend, and perform the optimal type of regenerative therapy that is right for you. And that means you get the treatment that\'s right for you and the best possible therapy to repair your joint.  And all of these regenerative therapies are available right in our clinic.\r\n\r\nPlus, Peter A. Fields, MD, DC, is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor.</em> As a chiropractor, he understands the ins and out of every joint. That helps ensure that you won\'t need all of the imaging that many physicians order due to their lack of experience locating the problem via manual examination. Sure, if further testing is deemed necessary, it can be prescribed. But a chiropractor\'s familiarity with the joints and possible referral pain patterns makes imaging less necessary.\r\n\r\nOrthoRegen® has provided hope for patients from all over who are trying to avoid joint surgery. Even if surgery has already been done, Regenerative Orthopedics can provide pain relief. We have many <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">articles</a> on this website that discuss the various conditions you may face and how Regenerative Orthopedics can help. We welcome you to <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">search</a> through them to learn more about our treatments, research, and how we achieve outstanding patient results because of our unique approach. If you are looking for the top pain clinic in the Los Angeles area to actually resolve your pain and not just temporarily cover up the symptoms, let’s talk...<strong>Together, we can turn your case around!</strong>\r\n<h3>Regenerative Orthopedics Is Your Non-Surgical Option When You Injure Yourself?</h3>\r\nWe are thrilled to enable people to live fulfilling and active lives by resolving their joint pain and injury through comprehensive Regenerative Orthopedics. Why choose surgery when there is an alternative?\r\n\r\n<strong>Remember, once surgery is done, it can never be undone.</strong>\r\n\r\nAt OrthoRegen®, our team is dedicated to providing highly effective, individualized treatment plans that relieve pain and help you return to sports, work, and activities quickly and safely.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\">Los Angeles Prolotherapy doctor</a> and <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\">PRP Doctor</a> and the founder of OrthoRegen®.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','OrthoRegen®: Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2021-03-12 03:28:59','2021-03-12 03:28:59','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(4568,9,'2021-03-12 03:34:26','2021-03-12 03:34:26','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"noopener\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\" width=\"275\" /></a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-03-12 03:34:26','2021-03-12 03:34:26','',2109,'https://www.drfields.com/uncategorized/2109-revision-v1/',0,'revision','',0),(4569,9,'2021-03-12 03:46:28','2021-03-12 03:46:28','<h3>Why Choose OrthoRegen<strong><sup>®</sup></strong>?</h3>\r\nAt OrthoRegen<strong><sup>®</sup></strong>, we want to help you achieve your goals of optimal health and sustained wellness. We will do so using the most effective, least invasive path. After all, this is your health that we are talking about.\r\n<h4><strong>The Future of Your Health in This Changing World</strong></h4>\r\nInvesting in your health is now more important than ever. Most of us are looking for ways to keep our immune system strong so we don\'t get sick. It is a new world out there! And we all want to do everything we can to avoid the hospital!  Since the future of health care is changing, you must know what choices are available to you.\r\n<h3>OrthoRegen<strong><sup>®</sup></strong> Is Exclusively a Regenerative Orthopedics Medical Office</h3>\r\nThe medical office of OrthoRegen<strong><sup>®</sup></strong> offers Regenerative Orthopedics exclusively. We don\'t do surgery. And we don\'t use anesthesia. Nor do we give out a bunch of medications. Plus, we don\'t just dabble in regenerative medicine or do a procedure once in a while. That\'s all we do. And we have been offering regenerative medicine options for many, many years. So that means your practitioners are very experienced.\r\n\r\nWith that in mind, our goal is to ensure that you will have an exceptional experience throughout your entire process. <strong>We offer safe, expedient, and effective treatments to resolve many painful conditions without the need for surgery.</strong> And when more advanced treatment is needed, such as in cases of very degenerated joints, OrthoRegen<strong><sup>®</sup></strong> offers the state-of-the-art Gold Standard in Stem Cell Therapy. What does that mean? The Gold Standard refers to four different types of regenerative therapies. That\'s four! Most clinics use just one.\r\n\r\nAnd that\'s why many Los Angeles residents choose us as their regenerative medicine alternative to surgery and joint replacement. With all of that regenerative capability, in most cases, we can resolve the majority of painful musculoskeletal conditions and ultimately enhance the quality of your life and get you back to the activities you love.\r\n<h4><em>If You Are An Athlete with an Injury, Peter A. Fields, MD, DC Understands, Because He Is An Athlete Too</em></h4>\r\n[caption id=\"attachment_4550\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4550 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Why-Choose-OrthoRegen-copy-500x500.png\" alt=\"Why Choose OrthoRegen®\" width=\"500\" height=\"500\" /> <em>                             <strong>Why Choose OrthoRegen<sup>®</sup>: Our Philosophy</strong></em>[/caption]\r\n\r\nAs an athlete himself, Peter A. Fields, MD, DC, also understands how important it is to stay in the game.  That, along with his extensive expertise, ensures a higher level of ability and understanding as a regenerative medicine physician because his experience encompasses a much broader knowledge base.\r\n<h3>Peter A. Fields, MD, DC is Dual Degreed as Both a Medical Doctor <strong>and</strong> a Chiropractor</h3>\r\nAs a medical doctor and one of the leaders in regenerative medicine, Peter A. Fields, MD, DC, has years of experience in regenerative therapies. Therefore, he can seek out the best solution, recommend, and perform the optimal type of regenerative therapy that is right for you. And that means you get the treatment that\'s right for you and the best possible therapy to repair your joint.  And all of these regenerative therapies are available right in our clinic.\r\n\r\nPlus, Peter A. Fields, MD, DC, is dual degreed as both a<em> medical doctor <strong>and</strong> a chiropractor.</em> As a chiropractor, he understands the ins and out of every joint. That helps ensure that you won\'t need all of the imaging that many physicians order due to their lack of experience locating the problem via manual examination. Sure, if further testing is deemed necessary, it can be prescribed. But a chiropractor\'s familiarity with the joints and possible referral pain patterns makes imaging less necessary.\r\n\r\nOrthoRegen<strong><sup>® </sup></strong>has provided hope for patients from all over who are trying to avoid joint surgery. Even if surgery has already been done, Regenerative Orthopedics can provide pain relief. We have many <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">articles</a> on this website that discuss the various conditions you may face and how Regenerative Orthopedics can help. We welcome you to <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/\">search</a> through them to learn more about our treatments, research, and how we achieve outstanding patient results because of our unique approach. If you are looking for the top pain clinic in the Los Angeles area to actually resolve your pain and not just temporarily cover up the symptoms, let’s talk...<strong>Together, we can turn your case around!</strong>\r\n<h3>Regenerative Orthopedics Is Your Non-Surgical Option When You Injure Yourself?</h3>\r\nWe are thrilled to enable people to live fulfilling and active lives by resolving their joint pain and injury through comprehensive Regenerative Orthopedics. Why choose surgery when there is an alternative?\r\n\r\n<strong>Remember, once surgery is done, it can never be undone.</strong>\r\n\r\nAt OrthoRegen<strong><sup>®</sup></strong>, our team is dedicated to providing highly effective, individualized treatment plans that relieve pain and help you return to sports, work, and activities quickly and safely.\r\n\r\nPeter A. Fields, MD DC, is a <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/\" rel=\"noopener noreferrer\">Los Angeles Prolotherapy doctor</a> and <a href=\"https://www.drfields.com/regenerative-techniques/los-angeles-prp/\" rel=\"noopener noreferrer\">PRP Doctor</a> and the founder of OrthoRegen<strong><sup>®</sup></strong>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','OrthoRegen®: Our Philosophy','','inherit','closed','closed','','213-revision-v1','','','2021-03-12 03:46:28','2021-03-12 03:46:28','',213,'https://www.drfields.com/uncategorized/213-revision-v1/',0,'revision','',0),(4571,9,'2021-03-21 19:51:01','2021-03-21 19:51:01','Runner\'s Knee','Runner\'s Knee','Runner\'s Knee','inherit','open','closed','','runners-knee-2','','','2021-03-21 19:51:20','2021-03-21 19:51:20','',1401,'https://www.drfields.com/wp-content/uploads/2019/06/Runners-Knee.jpg',0,'attachment','image/jpeg',0),(4572,9,'2021-03-22 01:43:05','2021-03-22 01:43:05','[caption id=\"attachment_4571\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4571 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Runners-Knee-500x500.jpg\" alt=\"Runner\'s Knee Pain\" width=\"500\" height=\"500\" /> Runner\'s Knee Pain[/caption]\n<h2>Runner\'s Knee Pain: Get Relief Non-Surgically</h2>\nRunner’s Knee is a painful knee condition that commonly affects runners. Another name for Runner’s Knee is also called Patellofemoral Pain Syndrome (PFPS). The condition is characterized by anterior knee pain. <em>And Runner\'s Knee pain is commonly experienced behind and around the kneecap or patella. </em>\n\nRunner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. And it particularly affects adolescents and young adults. Also, the condition is quite common in younger recreational runners, with females suffering more frequently than males.\n<h3>Runner\'s Knee Pain &amp; Patellofemoral Pain Syndrome</h3>\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur. The patella not only moves up and down but also tilts and rotates. And that movement allows for various points of contact between the patella and femur.\n\nRepetitive contact at these locations combined with the abnormal articulation of the patella is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome. Patellofemoral Pain Syndrome should be distinguished from chondromalacia, which is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\n<h3>What\'s Behind Runner\'s Knee Pain?</h3>\n<h4><em>Theories</em></h4>\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces.  such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint.\n<h4><em>Anatomic factors</em></h4>\nAnatomic factors that predispose towards patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\n<h4><em>Etiology: What Causes Runner\'s Knee?</em></h4>\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint, which causes instability and improper tracking as the patella articulates with the patellofemoral groove in the femur.\n\nFor example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee as this movement increases the pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable, especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces and, eventually, the articular cartilage.\n<h4>Runner’s Knee Symptoms</h4>\nBesides the tenderness behind, around, and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint. The pain typically occurs with activity and often worsens with those activities that include steps, hills, and uneven surfaces. Going downhill or downstairs aggravates the condition.\n\nPain can also be triggered by prolonged sitting due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\n<h4>How is Runner’s Knee Treated?</h4>\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, orthotics. Plus, physical therapy with quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles, and iliotibial band stretching exercises.\n\nThis approach may temporarily help, but it does not fix the problem of instability in the knee joint, causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful, and exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee.\n\nRegenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella, will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening will pull the patella into the groove, allowing for a realignment of the patella.\n\nRegenerative Orthopedics, along with vastus medialis strengthening, will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee. The treatment allows for a quick return to activities without the need for surgery.\n\n<a href=\"https://www.drfields.com/contact/\">Contact OrthoRegen</a> for more information.','Runner\'s Knee Pain: Get Relief Non-Surgically','','inherit','closed','closed','','1401-autosave-v1','','','2021-03-22 01:43:05','2021-03-22 01:43:05','',1401,'https://www.drfields.com/uncategorized/1401-autosave-v1/',0,'revision','',0),(4573,9,'2021-03-21 20:02:27','2021-03-21 20:02:27','[caption id=\"attachment_4571\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4571\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Runners-Knee-500x500.jpg\" alt=\"Runner\'s Knee\" width=\"500\" height=\"500\" /> Runner\'s Knee[/caption]\r\n<h2>Runner\'s Knee Pain Relief</h2>\r\nRunner’s Knee is a painful knee condition that is- like the name says- common in runners. Runner’s Knee is also called Patellofemoral Pain Syndrome (PFPS). The condition is characterized by anterior knee pain. <em>Sufferers commonly experience pain behind and around the kneecap or patella. </em>\r\n\r\nRunner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. Runner’s Knee particularly affects adolescents and young adults. And it is quite common in younger recreational runners, with females suffering more frequently than males.\r\n<h3>Patellofemoral Pain Syndrome</h3>\r\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur. The patella not only moves up and down but also tilts and rotates. And that movement allows for various points of contact between the patella and femur. Repetitive contact at these locations combined with the abnormal articulation of the patella is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome. Patellofemoral Pain Syndrome should be distinguished from chondromalacia, which is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\r\n<h3>What\'s Behind Runner\'s Knee?</h3>\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. Anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. Anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint, which causes instability and improper tracking as the patella articulates with the patellofemoral groove in the femur. For example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee as this movement increases the pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable, especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces, and eventually the articular cartilage.\r\n<h4>Runner’s Knee Symptoms</h4>\r\nBesides the tenderness behind, around, and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint. The pain typically occurs with activity and often worsens with those activities that include steps, hills, and uneven surfaces. Going downhill or downstairs aggravates the condition. Pain can also be triggered by prolonged sitting, due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\r\n<h4>How is Runner’s Knee Treated?</h4>\r\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, orthotics and physical therapy with quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles and iliotibial band stretching exercises. This approach may help temporarily, but it does not fix the problem of instability in the knee joint which is causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful, and exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee. Regenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening will pull the patella into the groove, allowing for a realignment of the patella.\r\nRegenerative Orthopedics along with vastus medialis strengthening will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee, allowing for a quick return to activities.','Runner\'s Knee Pain Relief','','inherit','closed','closed','','1401-revision-v1','','','2021-03-21 20:02:27','2021-03-21 20:02:27','',1401,'https://www.drfields.com/uncategorized/1401-revision-v1/',0,'revision','',0),(4574,9,'2021-03-22 00:56:41','2021-03-22 00:56:41','[caption id=\"attachment_4571\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4571\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Runners-Knee-500x500.jpg\" alt=\"Runner\'s Knee\" width=\"500\" height=\"500\" /> Runner\'s Knee[/caption]\r\n<h2>Runner\'s Knee Pain: Non-Surgical Pain Relief</h2>\r\nRunner’s Knee is a painful knee condition that is- like the name says- common in runners. Runner’s Knee is also called Patellofemoral Pain Syndrome (PFPS). The condition is characterized by anterior knee pain. <em>Sufferers commonly experience pain behind and around the kneecap or patella. </em>\r\n\r\nRunner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. Runner’s Knee particularly affects adolescents and young adults. And it is quite common in younger recreational runners, with females suffering more frequently than males.\r\n<h3>Patellofemoral Pain Syndrome</h3>\r\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur. The patella not only moves up and down but also tilts and rotates. And that movement allows for various points of contact between the patella and femur. Repetitive contact at these locations combined with the abnormal articulation of the patella is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome. Patellofemoral Pain Syndrome should be distinguished from chondromalacia, which is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\r\n<h3>What\'s Behind Runner\'s Knee?</h3>\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. Anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. Anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint, which causes instability and improper tracking as the patella articulates with the patellofemoral groove in the femur. For example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee as this movement increases the pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable, especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces, and eventually the articular cartilage.\r\n<h4>Runner’s Knee Symptoms</h4>\r\nBesides the tenderness behind, around, and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint. The pain typically occurs with activity and often worsens with those activities that include steps, hills, and uneven surfaces. Going downhill or downstairs aggravates the condition. Pain can also be triggered by prolonged sitting, due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\r\n<h4>How is Runner’s Knee Treated?</h4>\r\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, orthotics and physical therapy with quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles and iliotibial band stretching exercises. This approach may help temporarily, but it does not fix the problem of instability in the knee joint which is causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful, and exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee. Regenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening will pull the patella into the groove, allowing for a realignment of the patella.\r\nRegenerative Orthopedics along with vastus medialis strengthening will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee, allowing for a quick return to activities.','Runner\'s Knee Pain: Get Relief Non-Surgically','','inherit','closed','closed','','1401-revision-v1','','','2021-03-22 00:56:41','2021-03-22 00:56:41','',1401,'https://www.drfields.com/uncategorized/1401-revision-v1/',0,'revision','',0),(4575,9,'2021-03-22 01:05:26','2021-03-22 01:05:26','[caption id=\"attachment_4571\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4571 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Runners-Knee-500x500.jpg\" alt=\"Runner\'s Knee Pain\" width=\"500\" height=\"500\" /> Runner\'s Knee Pain[/caption]\r\n<h2>Runner\'s Knee Pain: Get Relief Non-Surgically</h2>\r\nRunner’s Knee is a painful knee condition that commonly affects runners. Another name for Runner’s Knee is also called Patellofemoral Pain Syndrome (PFPS). The condition is characterized by anterior knee pain. <em>And Runner\'s Knee pain is commonly experienced behind and around the kneecap or patella. </em>\r\n\r\nRunner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. And it particularly affects adolescents and young adults. Also, the condition is quite common in younger recreational runners, with females suffering more frequently than males.\r\n<h3>Runner\'s Knee Pain &amp; Patellofemoral Pain Syndrome</h3>\r\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur. The patella not only moves up and down but also tilts and rotates. And that movement allows for various points of contact between the patella and femur. Repetitive contact at these locations combined with the abnormal articulation of the patella is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome. Patellofemoral Pain Syndrome should be distinguished from chondromalacia, which is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\r\n<h3>What\'s Behind Runner\'s Knee Pain?</h3>\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. Anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. Anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint, which causes instability and improper tracking as the patella articulates with the patellofemoral groove in the femur. For example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee as this movement increases the pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable, especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces, and eventually the articular cartilage.\r\n<h4>Runner’s Knee Symptoms</h4>\r\nBesides the tenderness behind, around, and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint. The pain typically occurs with activity and often worsens with those activities that include steps, hills, and uneven surfaces. Going downhill or downstairs aggravates the condition. Pain can also be triggered by prolonged sitting, due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\r\n<h4>How is Runner’s Knee Treated?</h4>\r\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, orthotics and physical therapy with quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles and iliotibial band stretching exercises. This approach may help temporarily, but it does not fix the problem of instability in the knee joint which is causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful, and exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee. Regenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening will pull the patella into the groove, allowing for a realignment of the patella.\r\nRegenerative Orthopedics along with vastus medialis strengthening will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee, allowing for a quick return to activities.','Runner\'s Knee Pain: Get Relief Non-Surgically','','inherit','closed','closed','','1401-revision-v1','','','2021-03-22 01:05:26','2021-03-22 01:05:26','',1401,'https://www.drfields.com/uncategorized/1401-revision-v1/',0,'revision','',0),(4576,9,'2021-03-22 01:37:47','2021-03-22 01:37:47','[caption id=\"attachment_4571\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4571 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Runners-Knee-500x500.jpg\" alt=\"Runner\'s Knee Pain\" width=\"500\" height=\"500\" /> Runner\'s Knee Pain[/caption]\r\n<h2>Runner\'s Knee Pain: Get Relief Non-Surgically</h2>\r\nRunner’s Knee is a painful knee condition that commonly affects runners. Another name for Runner’s Knee is also called Patellofemoral Pain Syndrome (PFPS). The condition is characterized by anterior knee pain. <em>And Runner\'s Knee pain is commonly experienced behind and around the kneecap or patella. </em>\r\n\r\nRunner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. And it particularly affects adolescents and young adults. Also, the condition is quite common in younger recreational runners, with females suffering more frequently than males.\r\n<h3>Runner\'s Knee Pain &amp; Patellofemoral Pain Syndrome</h3>\r\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur. The patella not only moves up and down but also tilts and rotates. And that movement allows for various points of contact between the patella and femur.\r\n\r\nRepetitive contact at these locations combined with the abnormal articulation of the patella is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome. Patellofemoral Pain Syndrome should be distinguished from chondromalacia, which is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\r\n<h3>What\'s Behind Runner\'s Knee Pain?</h3>\r\n<h4><em>Theories</em></h4>\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint.\r\n<h4><em>Anatomic factors</em></h4>\r\nAnatomic factors that predispose towards patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n<h4><em>Etiology: What Causes Runner\'s Knee?</em></h4>\r\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint, which causes instability and improper tracking as the patella articulates with the patellofemoral groove in the femur.\r\n\r\nFor example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee as this movement increases the pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable, especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces and eventually, the articular cartilage.\r\n<h4>Runner’s Knee Symptoms</h4>\r\nBesides the tenderness behind, around, and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint. The pain typically occurs with activity and often worsens with those activities that include steps, hills, and uneven surfaces. Going downhill or downstairs aggravates the condition.\r\n\r\nPain can also be triggered by prolonged sitting due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\r\n<h4>How is Runner’s Knee Treated?</h4>\r\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, orthotics. Plus, physical therapy with quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles, and iliotibial band stretching exercises.\r\n\r\nThis approach may temporarily help, but it does not fix the problem of instability in the knee joint,, causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful, and exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee.\r\n\r\nRegenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella, will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening will pull the patella into the groove, allowing for a realignment of the patella.\r\n\r\nRegenerative Orthopedics,, along with vastus medialis strengthening, will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee. The treatment allows for a quick return to activities without the need for surgery.\r\n\r\n<a href=\"https://www.drfields.com/contact/\">Contact OrthoRegen</a> for more information.','Runner\'s Knee Pain: Get Relief Non-Surgically','','inherit','closed','closed','','1401-revision-v1','','','2021-03-22 01:37:47','2021-03-22 01:37:47','',1401,'https://www.drfields.com/uncategorized/1401-revision-v1/',0,'revision','',0),(4577,9,'2021-03-22 01:43:35','2021-03-22 01:43:35','[caption id=\"attachment_4571\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4571 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Runners-Knee-500x500.jpg\" alt=\"Runner\'s Knee Pain\" width=\"500\" height=\"500\" /> Runner\'s Knee Pain[/caption]\r\n<h2>Runner\'s Knee Pain: Get Relief Non-Surgically</h2>\r\nRunner’s Knee is a painful knee condition that commonly affects runners. Another name for Runner’s Knee is also called Patellofemoral Pain Syndrome (PFPS). The condition is characterized by anterior knee pain. <em>And Runner\'s Knee pain is commonly experienced behind and around the kneecap or patella. </em>\r\n\r\nRunner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. And it particularly affects adolescents and young adults. Also, the condition is quite common in younger recreational runners, with females suffering more frequently than males.\r\n<h3>Runner\'s Knee Pain &amp; Patellofemoral Pain Syndrome</h3>\r\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur. The patella not only moves up and down but also tilts and rotates. And that movement allows for various points of contact between the patella and femur.\r\n\r\nRepetitive contact at these locations combined with the abnormal articulation of the patella is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome. Patellofemoral Pain Syndrome should be distinguished from chondromalacia, which is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\r\n<h3>What\'s Behind Runner\'s Knee Pain?</h3>\r\n<h4><em>Theories</em></h4>\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction of Runner’s Knee may result from abnormal forces. Forces such as tight or weak quadriceps along with subluxation or dislocation of the patellofemoral joint. Runner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint.\r\n<h4><em>Anatomic factors</em></h4>\r\nAnatomic factors that predispose towards patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Ligamentous, meniscal, and soft tissue damage can also cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n<h4><em>Etiology: What Causes Runner\'s Knee?</em></h4>\r\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint, which causes instability and improper tracking as the patella articulates with the patellofemoral groove in the femur.\r\n\r\nFor example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee as this movement increases the pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable, especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces and, eventually, the articular cartilage.\r\n<h4>Runner’s Knee Symptoms</h4>\r\nBesides the tenderness behind, around, and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint. The pain typically occurs with activity and often worsens with those activities that include steps, hills, and uneven surfaces. Going downhill or downstairs aggravates the condition.\r\n\r\nPain can also be triggered by prolonged sitting due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\r\n<h4>How is Runner’s Knee Treated?</h4>\r\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, orthotics. Plus, physical therapy with quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles, and iliotibial band stretching exercises.\r\n\r\nThis approach may temporarily help, but it does not fix the problem of instability in the knee joint, causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful, and exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee.\r\n\r\nRegenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella, will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening will pull the patella into the groove, allowing for a realignment of the patella.\r\n\r\nRegenerative Orthopedics, along with vastus medialis strengthening, will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee. The treatment allows for a quick return to activities without the need for surgery.\r\n\r\n<a href=\"https://www.drfields.com/contact/\">Contact OrthoRegen</a> for more information.','Runner\'s Knee Pain: Get Relief Non-Surgically','','inherit','closed','closed','','1401-revision-v1','','','2021-03-22 01:43:35','2021-03-22 01:43:35','',1401,'https://www.drfields.com/uncategorized/1401-revision-v1/',0,'revision','',0),(4578,9,'2021-03-22 22:54:35','2021-03-22 22:54:35','Spinning Class','Exercise Is Good for You','Exercise Is Good for You','inherit','open','closed','','spinning-class','','','2021-03-22 22:56:03','2021-03-22 22:56:03','',1518,'https://www.drfields.com/wp-content/uploads/2019/06/Spinning-class.png',0,'attachment','image/png',0),(4579,9,'2021-03-22 22:58:09','2021-03-22 22:58:09','<h3>Exercise Provides Health Benefits</h3>\r\n[caption id=\"attachment_4578\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4578 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Spinning-class-500x500.png\" alt=\"Exercise Is Good for You\" width=\"500\" height=\"500\" /> <strong>                                 Exercise Provides Health Benefits</strong>[/caption]\r\n\r\nWe all know that 30 minutes per day of strenuous exercise provides health benefits.  And studies show that higher levels of physical activity are linked to a remarkable number of health benefits. Recent <a href=\"https://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2019.305443\">Federal guidelines</a> from the Department of Health and Human Services1 have even made this official.1\r\n\r\nExercise also improves cognitive functioning, mental health, and memory; plus, it hinders the development of certain neurological conditions.2\r\n\r\nThe real question for most of us is how to find the time to exercise regularly and consistently. All we have is 24 hours each day to get done all the things we need to get done. Exercising often takes a back seat to work, shopping, cooking, cleaning, getting the kids ready for school, and ready for bed. And all of the other million-and-one little details that demand our attention every day.\r\n<h3>Finding the Time to Exercise</h3>\r\nMost of us have the motivation to exercise. We know exercise provides health benefits. Therefore, we want to do it and understand it\'s good for us. But when can we fit it in? A few hardy souls bite the bullet and get up at 5:00 AM - making more time in the day by getting less sleep. Others exercise at the end of a long day. But sometimes that\'s stressful and counterproductive. However they do it, many people make real efforts to exercise a few times each week.\r\n\r\nMost likely, over time,  our good intentions get stymied by our daily concerns. Moreover, deadlines and scheduling take precedence. And the most easy-to-jettison item on our to-do list, exercise, gets lost in the process. And, sooner rather than later, we\'re back to not exercising at all. Public health experts and policymakers have been struggling, too, with this apparent no-win situation.\r\n<h3>Short Bursts of Exercise Provides Health Benefits Too</h3>\r\nThe outcome is brand-new recommendations relating to short bursts of activity during the day. These three- to five-minute bursts have been studied and shown to provide real health benefits to real people under real-world circumstances.3\r\n\r\nInstead of taking coffee breaks at work, people are beginning to take activity breaks. And three to five minutes of climbing office building stairs or brisk walking outside the building or a quick series of calisthenics are all it takes. Six to ten such breaks fulfills the daily requirement of 30 minutes of exercise. Above all, no separately scheduled exercise time is necessary.\r\n\r\nYou\'re already at work, you\'re already taking breaks. So, the breaks become exercise breaks. And you get your exercise done. And you feel great for the entire day, due to bursts of endorphins occurring throughout the day.\r\n\r\nThese bursts of activity are also ideal for people working at home. Plus, they work for school children too. Studies in schools are showing increased attention spans and increased learning as a result of short bursts of intense physical activity.\r\n\r\nEveryone can do this. And everyone can have a workable system for getting the exercise they need.\r\n<h3><strong>Lean Muscle Mass</strong></h3>\r\nWe often hear that building \"lean muscle mass\" is one of the key benefits of strenuous exercise. The human body adapts to environmental stresses. And building lean muscle mass is an important adaptation. Moreover, lean muscle mass is a metabolic furnace. Muscle cells are high-energy cells that actually burn calories when your body is at rest.\r\n\r\nYour internal thermostat is turned up owing to your increased amount of lean muscle mass. And so you burn fat to fulfill these increased energy needs.\r\n\r\nLean muscle mass is not only energy-efficient, but it is also much more shapely than the pounds of fat it replaces. Lean muscle mass creates long lines, outlines, and bulk along your arms, torso, and legs. The result is a supple, shapely body, filled with energy and purpose.\r\n\r\n1Pate, Russell R., James F. Sallis, and Keshia M. Pollack Porter. \"Surveillance of Physical Activity: Actions Needed to Support New Federal Guidelines.\" (2020).\r\n\r\n2Much, How, and How Often is it Recommended. \"10 Neurological Benefits of Exercise.\" <i>Image</i> 10 (2020): 08-01.\r\n\r\n3Stamatakis, Emmanuel, et al. \"Untapping the Health Enhancing Potential of Vigorous Intermittent Lifestyle Physical Activity (VILPA): Rationale, Scoping Review, and a 4-Pillar Research Framework.\" <i>Sports Medicine</i> (2020): 1-10.\r\n\r\n3Vallance JK, et al: Maintenance of physical activity in breast cancer survivors after a randomized trial. Med Sci Sports Exerc 40(1):173-180, 2008.\r\n\r\n4Heckman GE, McKelvie RS: Cardiovascular aging and exercise in healthy older adults. Clin J Sport Med 18(6):479-485, 2008','Exercise Provides Health Benefits For All Ages','','inherit','closed','closed','','1518-revision-v1','','','2021-03-22 22:58:09','2021-03-22 22:58:09','',1518,'https://www.drfields.com/uncategorized/1518-revision-v1/',0,'revision','',0),(4580,9,'2021-03-23 00:05:23','2021-03-23 00:05:23','<h2>.Is There Help for Arthritis Pain without Needing to Have Surgery?</h2>\n[caption id=\"attachment_4581\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4581 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/arthritis-steals-500x500.png\" alt=\"Help Arthritis Pain without Surgery\" width=\"500\" height=\"500\" /> <strong>Regenerative Orthopedics: Help Arthritis Pain without Surgery</strong>[/caption]\n\nArthritis is the most common joint disease in the world, representing a major cause of disability and an enormous financial and economic burden. Oftentimes, the result of arthritis is some type of surgery, and often joint replacement surgery. In this article, we will discuss arthritis, its cause, its progression, and ways to treat it. We will also talk about a non-surgical treatment option that is an amazing help for arthritis pain. Plus, it does not require hospitalization or surgery.\n<h3>Arthritis: The Disease and its Progression</h3>\nArthritis is a chronic disease that debilitates the articular joints. It occurs through a sequence of events that has at its core, a loss of joint cartilage. This affects other joint structures and eventually will lead to joint space narrowing and bony overgrowth. And the disease will continue to progress until joint movement becomes noticeably restricted.\n\nBony overgrowth with the appearance of bone spurs or osteophytes, detected by x-ray, has become the criterion for diagnosing advanced arthritis or radiographic osteoarthritis.\n\nBut what occurs before the cartilage loss? Arthritis almost always begins with ligament weakness or injury. Joints are composed of two bones covered with articular cartilage. Healthy cartilage allows the joint to slide because it has a smooth lubricated surface. And healthy ligaments hold the bones together. So, along with the cartilage, they enable the bones to glide evenly over one another when the joints are in motion.\n<h3>Weak and Injured Ligaments Add to the Arthritis Problem</h3>\nHowever, when the ligaments are weak, the bones will glide over one another in an uneven manner. And that causes one area of bone to bear additional weight on the articular cartilage when the joint is stressed. This uneven distribution expands with ongoing joint stress, weakening the ligaments further, and causing instability of the joint.\n\nThe increase in abnormal weight distribution inside the joint causes a breakdown of the articular cartilage. Without this surface, the joint loses its smooth gliding motion and becomes limited in its movement. With the ligaments unable to stabilize the joint, the muscles and their tendons will tense in an attempt to stabilize the weakened area. But they too will eventually weaken, producing “knots” and eliciting painful trigger points.\n\nThe unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing and exposure of the underlying subchondral bone.  And that precipitates a process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called osteoarthritis.\n\nArticular cartilage has no blood supply and therefore tends to heal slowly and imperfectly. <strong>Interestingly, cartilage also lacks a neural network and does not elicit pain itself.</strong> <em><strong>The pain in arthritis occurs from the pressure on the subchondral bone after the loss of cartilage tissue and from the stress on the tendons and ligaments of the joint.</strong></em>\n<h3>Ways to Help with Arthritis Pain</h3>\nThere are many medications and procedures that have been tried over the years for relief of pain and treatment of arthritis. But there is still no cure. Exercise, medications, physical therapy, and lifestyle modification may provide symptom relief, but they do nothing to regenerate the joint.\n\nThere are, however, treatments available that stimulate the regenerative processes in the joint to facilitate the restoration of degenerated cartilage to a healthy state--Regenerative Orthopedics. Stem Cell Therapy is one type of regenerative medicine. It is a  non-surgical treatment that supplies the affected joint with chondrogenic (cartilage forming) stem cells, which we obtain from both bone marrow and fat. Injecting these cells into the degenerated joint supports chondrogenesis or the process by which cartilage is developed. Let\'s explain the process further...\n<h4>The Gold Standard in Stem Cell Therapy: A Combination Treatment Far Above the Rest</h4>\nIn our practice, we stand apart from most other clinics when it comes to Stem Cell Therapy, because we use the Gold Standard. Instead of just one type, we use several different successful regenerative treatments in combination to effectively repair arthritic joints.\n\nAnd you don\'t have to be hospitalized or laid up for prolonged periods of type for these treatments either. They are non-surgical, so you can stay active. You don’t have to take extended time off of work, and you can still travel and be mobile! Those are such great benefits!\n\nAll Regenerative Orthopedic therapies, including Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy, are reparative and effective non-surgical alternatives! Prolotherapy alone is a technique to treat arthritis and to aid the body to heal. It prompting it to create new collagen. And various trials and studies have shown the effectiveness of dextrose prolotherapy in treating osteoarthritis, as well as ligament and tendon injuries.\n\nIn some arthritis cases, Prolotherapy is sufficient to bring the pain relief and repair needed. But in cases of arthritis where the degeneration is advanced, we may recommend the Gold Standard in Stem Cell Therapy. This treatment option combines Prolotherapy with components of blood, fat, and bone marrow.\n<h4><em>Four Types of Regenerative Therapies Combined for Amazing Reparative Results</em></h4>\nMany clinics use only one or two of these procedures. But we have discovered that Gold Standard combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint. We comprehensively treat the entire joint with multiple injections of the Platelet Rich Plasma portion of the blood. Plus, we use progenitor cells from an aspiration of adipose and bone marrow aspiration.\n\nThese regenerative treatments, along with Prolotherapy in and around the involved joint offer benefits in terms of pain relief, regenerative properties, and cartilage repair for people affected by arthritis. Prolotherapy involves the injection of a hyperosmolar dextrose solution into an injury site to elicit localized inflammation---which is the first step in healing the damaged area.\n\nThe dextrose solution acts as a proliferant via the induction of local inflammatory and wound healing cascades, including fibroblast cells that make collagen. With the Gold Standard in Stem Cell Therapy, the goal is to enhance the effects of prolotherapy and improve treatment outcomes in patients with advanced arthritic conditions.\n<h3>What is the Expected Outcome?</h3>\nPatients treated with the Gold Standard in Stem Cell Therapy report significantly decreased pain. Plus, they experience significant gains in function and quality of life, exercise ability, and range of motion, as well as losses in stiffness and crepitus. These regenerative therapies in conjunction with Prolotherapy are a safe and effective treatment for arthritis. And it has the potential to slow down the progression of the disease and promote the regeneration of articular cartilage. This treatment option is essentially a new paradigm in the treatment of arthritis.\n\nIn our opinion, nothing comes close to the effectiveness of Regenerative Orthopedics. That\'s because it can stimulate the regrowth of the injured tissue, and tighten the ligaments around the joint, which often reduces joint pain immediately. Proper exercise can then be resumed in order to bring the strength and flexibility of the surrounding muscles to a normal level.\n\nThe goal of treatment is not only pain relief but also the regeneration of joint structures--- including articular cartilage. This regeneration and repair allow the individual with arthritis to get back to the sport, activity, or way of life they love.\n\n<a href=\"https://www.drfields.com/contact/\">Contact us</a> to find out if you are a candidate for non-surgical Regenerative Orthopedics and the Gold Standard in Stem Cell Therapy!\n\nWe have written a number of articles about <a href=\"https://www.drfields.com/?s=arthritis\">arthritis</a>. Click <a href=\"https://www.drfields.com/?s=arthritis\">here</a> to read more articles.\n\n&nbsp;','Is there Help for Arthritis Pain?','','inherit','closed','closed','','1399-autosave-v1','','','2021-03-23 00:05:23','2021-03-23 00:05:23','',1399,'https://www.drfields.com/uncategorized/1399-autosave-v1/',0,'revision','',0),(4581,9,'2021-03-22 23:20:40','2021-03-22 23:20:40','Arthritis Steals. Relieve Arthritis Pain with Non-Surgical Regenerative Orthopedics','Relieve Arthritis Pain','Relieve Arthritis Pain with Non-Surgical Regenerative Orthopedics','inherit','open','closed','','arthritis-steals','','','2021-03-22 23:21:33','2021-03-22 23:21:33','',1399,'https://www.drfields.com/wp-content/uploads/2019/06/arthritis-steals.png',0,'attachment','image/png',0),(4582,9,'2021-03-22 23:35:03','2021-03-22 23:35:03','<h2>Is There Help for Arthritis Pain without Needing to Have Surgery?</h2>\r\n[caption id=\"attachment_4581\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4581 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/arthritis-steals-500x500.png\" alt=\"Help Arthritis Pain without Surgery\" width=\"500\" height=\"500\" />   <strong>Regenerative Orthopedics: Help Arthritis Pain without Surgery</strong>[/caption]\r\n\r\nArthritis is the most common joint disease in the world, representing a major cause of disability and an enormous financial and economic burden. Oftentimes, the result of arthritis is some type of surgery, and often joint replacement surgery. In this article, we will discuss arthritis, its cause, its progression, and ways to treat it. We will also talk about a non-surgical treatment option that is an amazing help for arthritis pain. Plus, it does not require hospitalization or surgery.\r\n<h3>Arthritis: The Disease and its Progression</h3>\r\nArthritis is a chronic disease that debilitates the articular joints. It occurs through a sequence of events that has at its core, a loss of joint cartilage. This affects other joint structures, and eventually will lead to joint space narrowing and bony overgrowth, progressing until joint movement becomes noticeably restricted. Bony overgrowth with the appearance of bone spurs or osteophytes, detected by x-ray, has become the criterion for diagnosing advanced arthritis or radiographic osteoarthritis.\r\n\r\nBut what occurs before the cartilage loss? Arthritis almost always begins with ligament weakness or injury. Joints are composed of two bones covered with articular cartilage. Healthy cartilage allows the joint to slide, because it has a smooth lubricated surface. Healthy ligaments hold the bones together, and along with the cartilage enable the bones to glide evenly over one another when the joints are in motion.\r\n\r\nWhen the ligaments are weak, the bones will glide over one another in an uneven manner, causing one area of bone to bear additional weight on the articular cartilage when the joint is stressed. This uneven distribution expands with ongoing joint stress, weakening the ligaments further, and causing instability of the joint. The increase in abnormal weight distribution inside the joint causes a breakdown of the articular cartilage. Without this surface, the joint loses its smooth gliding motion and becomes limited in its movement. With the ligaments unable to stabilize the joint, the muscles and their tendons will tense in an attempt to stabilize the weakened area, but they too will eventually weaken, producing “knots” and eliciting painful trigger points. The unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing, exposure of the underlying subchondral bone and precipitating a process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called osteoarthritis.\r\n\r\nArticular cartilage has no blood supply, and therefore tends to heal slowly and imperfectly. Cartilage also lacks a neural network and does not elicit pain itself. The pain in arthritis occurs from the pressure on the subchondral bone after the loss of cartilage tissue and from the stress on the tendons and ligaments of the joint.\r\n<h4>Ways to Help with Arthritis Pain</h4>\r\nThere are many medications and procedures that have been tried over the years for relief of pain and treatment of arthritis, but there is still no cure. Exercise, medications, physical therapy, and lifestyle modification may provide symptom relief, but they do nothing to regenerate the joint. There are however, treatments available that stimulate the regenerative processes in the joint to facilitate the restoration of degenerated cartilage to a healthy state. Stem Cell Therapy is a non-surgical treatment supplying the affected joint with chondrogenic (cartilage forming) stem cells, which we obtain from both bone marrow and fat. Injecting these cells into the degenerated joint supports chondrogenesis, or the process by which cartilage is developed.\r\n<h4>The Gold Standard in Stem Cell Therapy: A Combination Treatment Far Above the Rest</h4>\r\nIn our practice, we go even further in using regenerative therapies for arthritis. We use several different successful regenerative treatments in combination to effectively repair arthritic joints. You don’t have to be laid up for these treatments either. They are non-surgical, so you can stay active. You don’t have to take extended time off of work, and you can still travel and be mobile! Regenerative Orthopedic Therapies are reparative and effective non-surgical alternatives! Prolotherapy itself is a technique that is used to aid the body in healing by prompting it to create new collagen. Various trials and studies have shown the effectiveness of dextrose prolotherapy in treating osteoarthritis, as well as ligament and tendon injuries.,, In some cases, prolotherapy alone is sufficient to bring the pain relief and repair needed. When cases of degeneration are advanced, we use the Gold Standard in Stem Cell Therapy, which combines prolotherapy with components of blood, fat, and bone marrow. Many clinics use only one or two of these procedures, but we have discovered that this combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint. We comprehensively treat the entire joint with multiple injections of the Platelet Rich Plasma portion of the blood, progenitor cells from an aspiration of adipose, and bone marrow aspiration. These regenerative treatments, along with prolotherapy in and around the involved joint offer benefits in terms of pain relief, regenerative properties, and cartilage repair for people affected by musculoskeletal disorders such as arthritis. Prolotherapy involves the injection of a hypersmolar dextrose solution into an injury site to elicit localized inflammation, which is the first step in healing the damaged area. The dextrose solution acts as a proliferant via the induction of local inflammatory and wound healing cascades, including fibroblast cells that make collagen. With the addition of the Gold Standard in Stem Cell Therapy, the goal is to enhance the effects of prolotherapy and improve treatment outcomes in patients with advanced arthritic conditions.\r\n<h4>What is the Expected Outcome?</h4>\r\nPatients treated with the Gold Standard in Stem Cell Therapy report significantly decreased pain and significant gains in function and quality of life, exercise ability, and range of motion, as well as losses in stiffness and crepitus. These regenerative therapies in conjunction with prolotherapy are a safe and effective treatment for arthritis, one that has the potential to slow down the progression of the disease and one that promotes the regeneration of articular cartilage, which is essentially a new paradigm in the treatment of arthritis.\r\n\r\nIn our opinion, nothing comes close to the effectiveness of Regenerative Orthopedics, because it can stimulate the regrowth of the injured tissue, and tighten the ligaments around the joint, which often reduces joint pain immediately. Proper exercise can then be resumed in order to bring the strength and flexibility of the surrounding muscles to a normal level.\r\n\r\nThe goal of treatment is not only pain relief but also regeneration of joint structures including articular cartilage. This regeneration and repair allows the individual with arthritis to get back to the sport, activity or way of life they love.\r\n\r\nPatients treated with the Gold Standard in Stem Cell Therapy report significantly decreased pain and significant gains in function and quality of life, exercise ability, and range of motion, as well as losses in stiffness and crepitus. These regenerative therapies in conjunction with prolotherapy are a safe and effective treatment for arthritis, one that has the potential to slow down the progression of the disease and one that promotes the regeneration of articular cartilage, which is essentially a new paradigm in the treatment of arthritis.\r\n\r\nIn our opinion, nothing comes close to the effectiveness of Regenerative Orthopedics, because it can stimulate the regrowth of the injured tissue, and tighten the ligaments around the joint, which often reduces joint pain immediately. Proper exercise can then be resumed in order to bring the strength and flexibility of the surrounding muscles to a normal level. The goal of treatment is not only pain relief but also regeneration of joint structures including articular cartilage. This regeneration and repair allows the individual with arthritis to get back to the sport, activity or way of life they love.\r\n\r\nWe have written a number of articles about <a href=\"https://www.drfields.com/?s=arthritis\">arthritis</a>. Click <a href=\"https://www.drfields.com/?s=arthritis\">here</a> to read more articles.\r\n\r\n&nbsp;','Is there Help for Arthritis Pain?','','inherit','closed','closed','','1399-revision-v1','','','2021-03-22 23:35:03','2021-03-22 23:35:03','',1399,'https://www.drfields.com/uncategorized/1399-revision-v1/',0,'revision','',0),(4583,9,'2021-03-23 00:05:35','2021-03-23 00:05:35','<h2>.Is There Help for Arthritis Pain without Needing to Have Surgery?</h2>\r\n[caption id=\"attachment_4581\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4581 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/arthritis-steals-500x500.png\" alt=\"Help Arthritis Pain without Surgery\" width=\"500\" height=\"500\" /> <strong>Regenerative Orthopedics: Help Arthritis Pain without Surgery</strong>[/caption]\r\n\r\nArthritis is the most common joint disease in the world, representing a major cause of disability and an enormous financial and economic burden. Oftentimes, the result of arthritis is some type of surgery, and often joint replacement surgery. In this article, we will discuss arthritis, its cause, its progression, and ways to treat it. We will also talk about a non-surgical treatment option that is an amazing help for arthritis pain. Plus, it does not require hospitalization or surgery.\r\n<h3>Arthritis: The Disease and its Progression</h3>\r\nArthritis is a chronic disease that debilitates the articular joints. It occurs through a sequence of events that has at its core, a loss of joint cartilage. This affects other joint structures and eventually will lead to joint space narrowing and bony overgrowth. And the disease will continue to progress until joint movement becomes noticeably restricted.\r\n\r\nBony overgrowth with the appearance of bone spurs or osteophytes, detected by x-ray, has become the criterion for diagnosing advanced arthritis or radiographic osteoarthritis.\r\n\r\nBut what occurs before the cartilage loss? Arthritis almost always begins with ligament weakness or injury. Joints are composed of two bones covered with articular cartilage. Healthy cartilage allows the joint to slide because it has a smooth lubricated surface. And healthy ligaments hold the bones together. So, along with the cartilage, they enable the bones to glide evenly over one another when the joints are in motion.\r\n<h3>Weak and Injured Ligaments Add to the Arthritis Problem</h3>\r\nHowever, when the ligaments are weak, the bones will glide over one another in an uneven manner. And that causes one area of bone to bear additional weight on the articular cartilage when the joint is stressed. This uneven distribution expands with ongoing joint stress, weakening the ligaments further, and causing instability of the joint.\r\n\r\nThe increase in abnormal weight distribution inside the joint causes a breakdown of the articular cartilage. Without this surface, the joint loses its smooth gliding motion and becomes limited in its movement. With the ligaments unable to stabilize the joint, the muscles and their tendons will tense in an attempt to stabilize the weakened area. But they too will eventually weaken, producing “knots” and eliciting painful trigger points.\r\n\r\nThe unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing and exposure of the underlying subchondral bone.  And that precipitates a process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called osteoarthritis.\r\n\r\nArticular cartilage has no blood supply and therefore tends to heal slowly and imperfectly. <strong>Interestingly, cartilage also lacks a neural network and does not elicit pain itself.</strong> <em><strong>The pain in arthritis occurs from the pressure on the subchondral bone after the loss of cartilage tissue and from the stress on the tendons and ligaments of the joint.</strong></em>\r\n<h3>Ways to Help with Arthritis Pain</h3>\r\nThere are many medications and procedures that have been tried over the years for relief of pain and treatment of arthritis. But there is still no cure. Exercise, medications, physical therapy, and lifestyle modification may provide symptom relief, but they do nothing to regenerate the joint.\r\n\r\nThere are, however, treatments available that stimulate the regenerative processes in the joint to facilitate the restoration of degenerated cartilage to a healthy state--Regenerative Orthopedics. Stem Cell Therapy is one type of regenerative medicine. It is a  non-surgical treatment that supplies the affected joint with chondrogenic (cartilage forming) stem cells, which we obtain from both bone marrow and fat. Injecting these cells into the degenerated joint supports chondrogenesis or the process by which cartilage is developed. Let\'s explain the process further...\r\n<h4>The Gold Standard in Stem Cell Therapy: A Combination Treatment Far Above the Rest</h4>\r\nIn our practice, we stand apart from most other clinics when it comes to Stem Cell Therapy, because we use the Gold Standard. Instead of just one type, we use several different successful regenerative treatments in combination to effectively repair arthritic joints.\r\n\r\nAnd you don\'t have to be hospitalized or laid up for prolonged periods of type for these treatments either. They are non-surgical, so you can stay active. You don’t have to take extended time off of work, and you can still travel and be mobile! Those are such great benefits!\r\n\r\nAll Regenerative Orthopedic therapies, including Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy, are reparative and effective non-surgical alternatives! Prolotherapy alone is a technique to treat arthritis and to aid the body to heal. It prompts the body to create new collagen. And various trials and studies have shown the effectiveness of dextrose prolotherapy in treating osteoarthritis, as well as ligament and tendon injuries.\r\n\r\nIn some arthritis cases, Prolotherapy is sufficient to bring the pain relief and repair needed. But in cases of arthritis where the degeneration is advanced, we may recommend the Gold Standard in Stem Cell Therapy. This treatment option combines Prolotherapy with components of blood, fat, and bone marrow.\r\n<h4><em>Four Types of Regenerative Therapies Combined for Amazing Reparative Results</em></h4>\r\nMany clinics use only one or two of these procedures. But we have discovered that Gold Standard combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint. We comprehensively treat the entire joint with multiple injections of the Platelet Rich Plasma portion of the blood. Plus, we use progenitor cells from an aspiration of adipose and bone marrow aspiration.\r\n\r\nThese regenerative treatments, along with Prolotherapy in and around the involved joint offer benefits in terms of pain relief, regenerative properties, and cartilage repair for people affected by arthritis. Prolotherapy involves the injection of a hyperosmolar dextrose solution into an injury site to elicit localized inflammation---which is the first step in healing the damaged area.\r\n\r\nThe dextrose solution acts as a proliferant via the induction of local inflammatory and wound healing cascades, including fibroblast cells that make collagen. With the Gold Standard in Stem Cell Therapy, the goal is to enhance the effects of prolotherapy and improve treatment outcomes in patients with advanced arthritic conditions.\r\n<h3>What is the Expected Outcome?</h3>\r\nPatients treated with the Gold Standard in Stem Cell Therapy report significantly decreased pain. Plus, they experience significant gains in function and quality of life, exercise ability, and range of motion, as well as losses in stiffness and crepitus. These regenerative therapies in conjunction with Prolotherapy are a safe and effective treatment for arthritis. And it has the potential to slow down the progression of the disease and promote the regeneration of articular cartilage. This treatment option is essentially a new paradigm in the treatment of arthritis.\r\n\r\nIn our opinion, nothing comes close to the effectiveness of Regenerative Orthopedics. That\'s because it can stimulate the regrowth of the injured tissue, and tighten the ligaments around the joint, which often reduces joint pain immediately. Proper exercise can then be resumed in order to bring the strength and flexibility of the surrounding muscles to a normal level.\r\n\r\nThe goal of treatment is not only pain relief but also the regeneration of joint structures--- including articular cartilage. This regeneration and repair allow the individual with arthritis to get back to the sport, activity, or way of life they love.\r\n\r\n<a href=\"https://www.drfields.com/contact/\">Contact us</a> to find out if you are a candidate for non-surgical Regenerative Orthopedics and the Gold Standard in Stem Cell Therapy!\r\n\r\nWe have written a number of articles about <a href=\"https://www.drfields.com/?s=arthritis\">arthritis</a>. Click <a href=\"https://www.drfields.com/?s=arthritis\">here</a> to read more articles.\r\n\r\n&nbsp;','Is there Help for Arthritis Pain?','','inherit','closed','closed','','1399-revision-v1','','','2021-03-23 00:05:35','2021-03-23 00:05:35','',1399,'https://www.drfields.com/uncategorized/1399-revision-v1/',0,'revision','',0),(4584,9,'2021-03-23 00:06:00','2021-03-23 00:06:00','<h2>Is There Help for Arthritis Pain without Needing to Have Surgery?</h2>\r\n[caption id=\"attachment_4581\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4581 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/arthritis-steals-500x500.png\" alt=\"Help Arthritis Pain without Surgery\" width=\"500\" height=\"500\" /> <strong>Regenerative Orthopedics: Help Arthritis Pain without Surgery</strong>[/caption]\r\n\r\nArthritis is the most common joint disease in the world, representing a major cause of disability and an enormous financial and economic burden. Oftentimes, the result of arthritis is some type of surgery, and often joint replacement surgery. In this article, we will discuss arthritis, its cause, its progression, and ways to treat it. We will also talk about a non-surgical treatment option that is an amazing help for arthritis pain. Plus, it does not require hospitalization or surgery.\r\n<h3>Arthritis: The Disease and its Progression</h3>\r\nArthritis is a chronic disease that debilitates the articular joints. It occurs through a sequence of events that has at its core, a loss of joint cartilage. This affects other joint structures and eventually will lead to joint space narrowing and bony overgrowth. And the disease will continue to progress until joint movement becomes noticeably restricted.\r\n\r\nBony overgrowth with the appearance of bone spurs or osteophytes, detected by x-ray, has become the criterion for diagnosing advanced arthritis or radiographic osteoarthritis.\r\n\r\nBut what occurs before the cartilage loss? Arthritis almost always begins with ligament weakness or injury. Joints are composed of two bones covered with articular cartilage. Healthy cartilage allows the joint to slide because it has a smooth lubricated surface. And healthy ligaments hold the bones together. So, along with the cartilage, they enable the bones to glide evenly over one another when the joints are in motion.\r\n<h3>Weak and Injured Ligaments Add to the Arthritis Problem</h3>\r\nHowever, when the ligaments are weak, the bones will glide over one another in an uneven manner. And that causes one area of bone to bear additional weight on the articular cartilage when the joint is stressed. This uneven distribution expands with ongoing joint stress, weakening the ligaments further, and causing instability of the joint.\r\n\r\nThe increase in abnormal weight distribution inside the joint causes a breakdown of the articular cartilage. Without this surface, the joint loses its smooth gliding motion and becomes limited in its movement. With the ligaments unable to stabilize the joint, the muscles and their tendons will tense in an attempt to stabilize the weakened area. But they too will eventually weaken, producing “knots” and eliciting painful trigger points.\r\n\r\nThe unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing and exposure of the underlying subchondral bone.  And that precipitates a process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called osteoarthritis.\r\n\r\nArticular cartilage has no blood supply and therefore tends to heal slowly and imperfectly. <strong>Interestingly, cartilage also lacks a neural network and does not elicit pain itself.</strong> <em><strong>The pain in arthritis occurs from the pressure on the subchondral bone after the loss of cartilage tissue and from the stress on the tendons and ligaments of the joint.</strong></em>\r\n<h3>Ways to Help with Arthritis Pain</h3>\r\nThere are many medications and procedures that have been tried over the years for relief of pain and treatment of arthritis. But there is still no cure. Exercise, medications, physical therapy, and lifestyle modification may provide symptom relief, but they do nothing to regenerate the joint.\r\n\r\nThere are, however, treatments available that stimulate the regenerative processes in the joint to facilitate the restoration of degenerated cartilage to a healthy state--Regenerative Orthopedics. Stem Cell Therapy is one type of regenerative medicine. It is a  non-surgical treatment that supplies the affected joint with chondrogenic (cartilage forming) stem cells, which we obtain from both bone marrow and fat. Injecting these cells into the degenerated joint supports chondrogenesis or the process by which cartilage is developed. Let\'s explain the process further...\r\n<h4>The Gold Standard in Stem Cell Therapy: A Combination Treatment Far Above the Rest</h4>\r\nIn our practice, we stand apart from most other clinics when it comes to Stem Cell Therapy, because we use the Gold Standard. Instead of just one type, we use several different successful regenerative treatments in combination to effectively repair arthritic joints.\r\n\r\nAnd you don\'t have to be hospitalized or laid up for prolonged periods of type for these treatments either. They are non-surgical, so you can stay active. You don’t have to take extended time off of work, and you can still travel and be mobile! Those are such great benefits!\r\n\r\nAll Regenerative Orthopedic therapies, including Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy, are reparative and effective non-surgical alternatives! Prolotherapy alone is a technique to treat arthritis and to aid the body to heal. It prompts the body to create new collagen. And various trials and studies have shown the effectiveness of dextrose prolotherapy in treating osteoarthritis, as well as ligament and tendon injuries.\r\n\r\nIn some arthritis cases, Prolotherapy is sufficient to bring the pain relief and repair needed. But in cases of arthritis where the degeneration is advanced, we may recommend the Gold Standard in Stem Cell Therapy. This treatment option combines Prolotherapy with components of blood, fat, and bone marrow.\r\n<h4><em>Four Types of Regenerative Therapies Combined for Amazing Reparative Results</em></h4>\r\nMany clinics use only one or two of these procedures. But we have discovered that Gold Standard combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint. We comprehensively treat the entire joint with multiple injections of the Platelet Rich Plasma portion of the blood. Plus, we use progenitor cells from an aspiration of adipose and bone marrow aspiration.\r\n\r\nThese regenerative treatments, along with Prolotherapy in and around the involved joint offer benefits in terms of pain relief, regenerative properties, and cartilage repair for people affected by arthritis. Prolotherapy involves the injection of a hyperosmolar dextrose solution into an injury site to elicit localized inflammation---which is the first step in healing the damaged area.\r\n\r\nThe dextrose solution acts as a proliferant via the induction of local inflammatory and wound healing cascades, including fibroblast cells that make collagen. With the Gold Standard in Stem Cell Therapy, the goal is to enhance the effects of prolotherapy and improve treatment outcomes in patients with advanced arthritic conditions.\r\n<h3>What is the Expected Outcome?</h3>\r\nPatients treated with the Gold Standard in Stem Cell Therapy report significantly decreased pain. Plus, they experience significant gains in function and quality of life, exercise ability, and range of motion, as well as losses in stiffness and crepitus. These regenerative therapies in conjunction with Prolotherapy are a safe and effective treatment for arthritis. And it has the potential to slow down the progression of the disease and promote the regeneration of articular cartilage. This treatment option is essentially a new paradigm in the treatment of arthritis.\r\n\r\nIn our opinion, nothing comes close to the effectiveness of Regenerative Orthopedics. That\'s because it can stimulate the regrowth of the injured tissue, and tighten the ligaments around the joint, which often reduces joint pain immediately. Proper exercise can then be resumed in order to bring the strength and flexibility of the surrounding muscles to a normal level.\r\n\r\nThe goal of treatment is not only pain relief but also the regeneration of joint structures--- including articular cartilage. This regeneration and repair allow the individual with arthritis to get back to the sport, activity, or way of life they love.\r\n\r\n<a href=\"https://www.drfields.com/contact/\">Contact us</a> to find out if you are a candidate for non-surgical Regenerative Orthopedics and the Gold Standard in Stem Cell Therapy!\r\n\r\nWe have written a number of articles about <a href=\"https://www.drfields.com/?s=arthritis\">arthritis</a>. Click <a href=\"https://www.drfields.com/?s=arthritis\">here</a> to read more articles.\r\n\r\n&nbsp;','Is there Help for Arthritis Pain?','','inherit','closed','closed','','1399-revision-v1','','','2021-03-23 00:06:00','2021-03-23 00:06:00','',1399,'https://www.drfields.com/uncategorized/1399-revision-v1/',0,'revision','',0),(4585,8,'2021-03-24 17:24:10','2021-03-24 17:24:10','','iwp_log_605b75bae165e','','publish','closed','closed','','iwp_log_605b75bae165e','','','2021-03-24 17:24:10','2021-03-24 17:24:10','',0,'https://www.drfields.com/iwp_log/iwp_log_605b75bae165e/',0,'iwp_log','',0),(4586,8,'2021-03-24 17:26:18','2021-03-24 17:26:18','','iwp_log_605b763abf02d','','publish','closed','closed','','iwp_log_605b763abf02d','','','2021-03-24 17:26:18','2021-03-24 17:26:18','',0,'https://www.drfields.com/iwp_log/iwp_log_605b763abf02d/',0,'iwp_log','',0),(4587,8,'2021-03-24 17:26:46','2021-03-24 17:26:46','','iwp_log_605b76560e217','','publish','closed','closed','','iwp_log_605b76560e217','','','2021-03-24 17:26:46','2021-03-24 17:26:46','',0,'https://www.drfields.com/iwp_log/iwp_log_605b76560e217/',0,'iwp_log','',0),(4588,8,'2021-03-24 17:27:02','2021-03-24 17:27:02','','iwp_log_605b766652121','','publish','closed','closed','','iwp_log_605b766652121','','','2021-03-24 17:27:02','2021-03-24 17:27:02','',0,'https://www.drfields.com/iwp_log/iwp_log_605b766652121/',0,'iwp_log','',0),(4590,8,'2021-03-25 15:40:21','2021-03-25 15:40:21','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n<br />\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"noopener\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\" width=\"275\" /></a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-03-25 15:40:21','2021-03-25 15:40:21','',2109,'https://www.drfields.com/?p=4590',0,'revision','',0),(4591,8,'2021-03-29 18:03:36','2021-03-29 18:03:36','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\" style=\"width: 100%; font-size: 22px; text-align: center; padding: 25px 8%;\"> Are you a Stem Cell Candidate?</a>\r\n<br />\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"noopener\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\" width=\"275\" /></a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-03-29 18:03:36','2021-03-29 18:03:36','',2109,'https://www.drfields.com/?p=4591',0,'revision','',0),(4592,8,'2021-03-29 18:12:16','2021-03-29 18:12:16','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\"> Are you a Stem Cell Candidate?</a>\r\n<br />\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"noopener\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"/wp-content/uploads/2021/02/carecredit_button_applynow_280x100_a_v1.png\" width=\"275\" /></a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-03-29 18:12:16','2021-03-29 18:12:16','',2109,'https://www.drfields.com/?p=4592',0,'revision','',0),(4593,8,'2021-03-30 19:57:05','2021-03-30 19:57:05','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Knee Treatment</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong></div>\r\n<i>Regenerating a person\'s joints and spine is not something of the future: <strong>it is happening today!</strong> Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\r\n<div class=\"clear\"></div>\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\"><img width=\"275\" style=\"max-width:100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"alignleft wp-image-732 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\" width=\"215\" height=\"167\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"alignright wp-image-735 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n<h3><strong>Stem Cell Treatment Results</strong></h3>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <a href=\"tel:+[phone_raw]\">[phone]</a>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2021-03-30 19:57:05','2021-03-30 19:57:05','',431,'https://www.drfields.com/?p=4593',0,'revision','',0),(4594,8,'2021-03-31 16:56:27','2021-03-31 16:56:27','','iwp_log_6064a9bb20828','','publish','closed','closed','','iwp_log_6064a9bb20828','','','2021-03-31 16:56:27','2021-03-31 16:56:27','',0,'https://www.drfields.com/iwp_log/iwp_log_6064a9bb20828/',0,'iwp_log','',0),(4596,9,'2021-03-31 18:40:01','2021-03-31 18:40:01','<h2>What is Behind Joint Pain?</h2>\r\nSimply put, joint pain is due to weakness. Most of the joint pain we experience, whether from pain located in the neck, back, hip or knee, is due to weakness. More specifically, the weakness is coming from an injury of the ligaments and tendons, which will then cause the joint to become unstable. A joint is literally only as strong as its weakest ligament. Why is that? Because once one of the ligaments becomes injured and weak, the whole joint then moves abnormally. It would be like having a loose nut on a bicycle handle bar. You know that when that bar has a loose nut, the bar will eventually turn to the right or turn to the left or even drop down. Then it becomes difficult to steer since everything is now off kilter. A weakened ligament makes a joint off kilter too. And the joint left in this condition will wear away and cause more and more damage, only worsening the cycle of abnormal movement and joint destruction.\r\n<h6>Pain-Free Joint Motion Requires Strong and Healthy Joint Structures</h6>\r\nMost of the joint tissue structures that become worn in this destructive pattern are structures with a poor blood supply which unfortunately compromises the healing ability of the joint once it sustains an injury. These structures include cartilage, discs, labrum, ligaments, meniscus and tendons. When muscles are injured, they don’t have this difficulty in healing, because they fortunately have a great blood supply and can repair easily. Muscles, bone, and all of these other joint structures work together to stabilize the joint. In order for the joint to function correctly, all of the structures need to be strong and healthy.\r\n<h6>Ligaments Are Key to Maintaining Joint Health and Integrity</h6>\r\nLigaments are an integral part of proper functioning of the joint, but they are also unfortunately, one of the most common causes of musculoskeletal pain. The ligaments are a sensory organ, meaning they are full of free nerve endings. When they are injured, they generate pain. When the ligament is injured, the joint harmony between ligaments, muscles and bony structures is disrupted, interfering with mobility and joint stability. The integrity of the joint is disrupted, and abnormal forces are conveyed throughout the joint, causing damage to other structures in and around the joint. When the ligaments are left untreated, the body will try to stabilize the joint by causing chronic muscle spasms, joint swelling and eventually bone spur formation and degenerative arthritis. <em><strong>And there you have the cycle of chronic joint pain.</strong></em>\r\n<h6>Ligament Injury May Lead to Other Painful Joint Conditions</h6>\r\nThe cycle of joint pain which begins with ligament injury will continue, because joint instability instigated by injured ligaments also has the potential to lead to a number of other painful conditions. Ligament injury to the knee, for example, may give rise to jumper’s knee, osteochondral defects, iliotibial band syndrome, chondromalacia patella, osteoarthritis, bone spurs and more.\r\nPainful joint conditions, such as these, are often treated with medications to temporarily reduce the pain and inflammation. But what happens when you turn off the pain signal, while the joint is still injured, and without addressing the underlying source of injury, such as the ligament injury? The individual or athlete who continues to work, play and remain active on an injured joint, will cause further damage!\r\n<h6>How Can An Injured Joint Be Repaired?</h6>\r\nRegenerative Orthopedics stimulates blood flow to the joint structures, enhances healing, and repairs the joint. Regenerative Orthopedics is a regenerative technique used to stimulate repair of injured joint tissue and relieve joint pain. It works by stimulating ligaments and tendons to proliferate at the injection site and promotes the three stages of healing: inflammation, proliferation and remodeling.\r\n\r\nRegenerative Orthopedic treatments trigger healing via inflammation. After the solutions are injected at the injury site, a cellular reaction takes place in which various cells including fibroblasts, endothelial cells and myofibroblasts form new blood vessels and ultimately lay down collagen which enhances tissue repair and strength.The collagenous connective tissue produced, is new tissue identical to the collagen fabric of normal connective tissue, resulting in ligament attachments that are stronger.\r\n\r\nAdditionally, blood flow is stimulated by movement and exercise. Since there is basically no downtime with Regenerative Orthopedics, exercise and movement are encouraged. Motion causes an increase of blood flow to the affected joint, providing the damaged ligament tissue with the nutrients and metabolites necessary for tissue repair and healing.\r\n\r\nA ligament is not completely healed until all of the signs and symptoms of ligament injury are gone (which include pain, tenderness, crepitus, inhibited or excessive motion), and the individual has restored function.\r\nRegenerative Orthopedics treats joint pain at its source, including all of the difficult to heal joint structures. Ligaments, and other involved joint structures are comprehensively treated with this therapy, which results in a healed and strengthened joint, and resolves joint pain.','What is Behind Joint Pain?','','inherit','closed','closed','','1395-revision-v1','','','2021-03-31 18:40:01','2021-03-31 18:40:01','',1395,'https://www.drfields.com/?p=4596',0,'revision','',0),(4597,9,'2021-03-31 18:40:56','2021-03-31 18:40:56','Joint Pain','Joint Pain','Joint Pain','inherit','open','closed','','joint-pain','','','2021-03-31 18:40:56','2021-03-31 18:40:56','',1395,'https://www.drfields.com/wp-content/uploads/2019/06/joint-pain.png',0,'attachment','image/png',0),(4598,9,'2021-03-31 19:16:52','2021-03-31 19:16:52','[caption id=\"attachment_4597\" align=\"alignright\" width=\"324\"]<img class=\" wp-image-4597\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/joint-pain-400x500.png\" alt=\"Joint Pain\" width=\"324\" height=\"405\" /> <strong>                   What\'s Behind Joint Pain?</strong>[/caption]\n<h2>What is Behind Joint Pain?</h2>\nSimply put, joint pain is due to weakness. Most of the joint pain we experience, whether from pain located in the neck, back, hip or knee, is due to weakness. More specifically, the weakness is coming from an injury of the ligaments and tendons, which will then cause the joint to become unstable.\n\n<em><strong> A joint is literally only as strong as its weakest ligament.</strong></em> Why is that? Because once one of the ligaments becomes injured and weak, the whole joint then moves abnormally. It would be like having a loose nut on a bicycle handlebar. You know that when that bar has a loose nut, the bar will eventually become loose. And right when you don\'t want it to, it will turn to the right or turn to the left or even drop down. Now everything is off-kilter and steering becomes nearly impossible.\n\nA weakened ligament makes a joint off-kilter too. And the joint left in this condition will wear away and cause more and more damage. It only worsens the cycle of abnormal movement and joint destruction.\n<h3>Pain-Free Joint Motion Requires Strong and Healthy Joint Structures</h3>\nMost of the joint tissue structures that become worn in this destructive pattern are structures with poor blood supply. And that, unfortunately, compromises the healing ability of the joint once it sustains an injury. These blood-poor structures include cartilage, discs, labrum, ligaments, meniscus, and tendons.\n\nWhen muscles are injured, they don’t have this difficulty in healing. Why? Because they, fortunately, have a great blood supply and can repair easily. Muscles, bone, and all of these other joint structures work together to stabilize the joint. But for the joint to function correctly, all of the structures need to be strong and healthy.\n<h3>Ligaments Are Key to Maintaining Joint Health and Integrity</h3>\nLigaments are an integral part of the proper functioning of the joint. But they are also, unfortunately, one of the most common causes of musculoskeletal pain. The ligaments are a sensory organ--meaning they are full of free nerve endings. When they are injured, they generate pain.\n\nWhen the ligament is injured, the joint harmony between ligaments, muscles, and bony structures is disrupted. And this disruption interferes with mobility and joint stability. The integrity of the joint is disrupted, and abnormal forces are conveyed throughout the joint, causing damage to other structures in and around the joint.\n\nAnd when the ligaments are left untreated, the body will try to stabilize the joint by causing chronic muscle spasms, joint swelling, and eventually bone spur formation and degenerative arthritis. <em><strong>And there you have the cycle of chronic joint pain.</strong></em>\n<h3>Ligament Injury May Lead to Other Painful Joint Conditions</h3>\nThe cycle of joint pain, which begins with ligament injury, will continue. Why is that? Because joint instability instigated by injured ligaments also can lead to a number of other painful conditions.\n\nLigament injury to the knee, for example, may give rise to jumper’s knee, osteochondral defects, iliotibial band syndrome, chondromalacia patella, osteoarthritis, bone spurs, and more. Painful joint conditions, such as these, are often treated with medications to reduce pain and inflammation temporarily.\n\nBut what happens when you turn off the pain signal with pain medications while the joint is still injured and without addressing the underlying source of injury, such as the ligament injury? The individual or athlete who continues to work, play and remain active on an injured joint will cause further damage!\n<h3>An Injured Joint Can Be Repaired Non-Surgically with Regenerative Orthopedics</h3>\nRegenerative Orthopedics works great at healing these blood-poor soft tissue structures. That\'s because it actually stimulates blood flow to the joint structures. And the result is enhanced healing and repair of the joint. Healing and regeneration are what Regenerative Orthopedics does.\n\nAs a regenerative technique, the treatment stimulates the repair of injured joint tissue and relieves joint pain. It works by stimulating ligaments and tendons to proliferate at the injection site and promotes the three stages of healing: inflammation, proliferation, and remodeling.\n\nRegenerative Orthopedic treatments trigger healing via inflammation. After the solutions are injected at the injury site, a cellular reaction takes place. And various cells, including fibroblasts, endothelial cells, and myofibroblasts, form new blood vessels. The process ultimately lays down collagen, which enhances tissue repair and strength. The collagenous connective tissue produced is new tissue identical to the collagen fabric of normal connective tissue, resulting in stronger ligament attachments.\n\nAdditionally, blood flow is stimulated by movement and exercise. Since there is basically no downtime with Regenerative Orthopedics, exercise and movement are encouraged. Motion causes an increase in blood flow to the affected joint. And that provides the damaged ligament tissue with the nutrients and metabolites necessary for tissue repair and healing.\n\nA ligament is not completely healed until all of the signs and symptoms of ligament injury are gone. The symptoms include pain, tenderness, crepitus, and inhibited or excessive motion. The individual will experience restored function.\n\nRegenerative Orthopedics treats joint pain at its source, including all of the difficult to heal joint structures. Ligaments and other involved joint structures are comprehensively treated with this therapy. And the result of treatment is a healed and strengthened joint and resolved joint pain.\n\nContact Us\n\nFind out how you can get rid of your joint pain with Regenerative Orthopedics. <a href=\"https://www.drfields.com/contact/\">Contact us</a> now.\n\nRead more of our <a href=\"https://www.drfields.com/?s=joint+pain\">articles</a> about joint pain resolution and joint repair <a href=\"https://www.drfields.com/?s=joint+pain\">here</a>.','What is Behind Joint Pain?','','inherit','closed','closed','','1395-autosave-v1','','','2021-03-31 19:16:52','2021-03-31 19:16:52','',1395,'https://www.drfields.com/?p=4598',0,'revision','',0),(4599,9,'2021-03-31 19:17:32','2021-03-31 19:17:32','[caption id=\"attachment_4597\" align=\"alignright\" width=\"324\"]<img class=\" wp-image-4597\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/joint-pain-400x500.png\" alt=\"Joint Pain\" width=\"324\" height=\"405\" /> <strong>                   What\'s Behind Joint Pain?</strong>[/caption]\r\n<h2>What is Behind Joint Pain?</h2>\r\nSimply put, joint pain is due to weakness. Most of the joint pain we experience, whether from pain located in the neck, back, hip or knee, is due to weakness. More specifically, the weakness is coming from an injury of the ligaments and tendons, which will then cause the joint to become unstable.\r\n\r\n<em><strong> A joint is literally only as strong as its weakest ligament.</strong></em> Why is that? Because once one of the ligaments becomes injured and weak, the whole joint then moves abnormally. It would be like having a loose nut on a bicycle handlebar. You know that when that bar has a loose nut, the bar will eventually become loose. And right when you don\'t want it to, it will turn to the right or turn to the left or even drop down. Now everything is off-kilter and steering becomes nearly impossible.\r\n\r\nA weakened ligament makes a joint off-kilter too. And the joint left in this condition will wear away and cause more and more damage. It only worsens the cycle of abnormal movement and joint destruction.\r\n<h3>Pain-Free Joint Motion Requires Strong and Healthy Joint Structures</h3>\r\nMost of the joint tissue structures that become worn in this destructive pattern are structures with poor blood supply. And that, unfortunately, compromises the healing ability of the joint once it sustains an injury. These blood-poor structures include cartilage, discs, labrum, ligaments, meniscus, and tendons.\r\n\r\nWhen muscles are injured, they don’t have this difficulty in healing. Why? Because they, fortunately, have a great blood supply and can repair easily. Muscles, bone, and all of these other joint structures work together to stabilize the joint. But for the joint to function correctly, all of the structures need to be strong and healthy.\r\n<h3>Ligaments Are Key to Maintaining Joint Health and Integrity</h3>\r\nLigaments are an integral part of the proper functioning of the joint. But they are also, unfortunately, one of the most common causes of musculoskeletal pain. The ligaments are a sensory organ--meaning they are full of free nerve endings. When they are injured, they generate pain.\r\n\r\nWhen the ligament is injured, the joint harmony between ligaments, muscles, and bony structures is disrupted. And this disruption interferes with mobility and joint stability. The integrity of the joint is disrupted, and abnormal forces are conveyed throughout the joint, causing damage to other structures in and around the joint.\r\n\r\nAnd when the ligaments are left untreated, the body will try to stabilize the joint by causing chronic muscle spasms, joint swelling, and eventually bone spur formation and degenerative arthritis. <em><strong>And there you have the cycle of chronic joint pain.</strong></em>\r\n<h3>Ligament Injury May Lead to Other Painful Joint Conditions</h3>\r\nThe cycle of joint pain, which begins with ligament injury, will continue. Why is that? Because joint instability instigated by injured ligaments also can lead to a number of other painful conditions.\r\n\r\nLigament injury to the knee, for example, may give rise to jumper’s knee, osteochondral defects, iliotibial band syndrome, chondromalacia patella, osteoarthritis, bone spurs, and more. Painful joint conditions, such as these, are often treated with medications to reduce pain and inflammation temporarily.\r\n\r\nBut what happens when you turn off the pain signal with pain medications while the joint is still injured and without addressing the underlying source of injury, such as the ligament injury? The individual or athlete who continues to work, play and remain active on an injured joint will cause further damage!\r\n<h3>An Injured Joint Can Be Repaired Non-Surgically with Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics works great at healing these blood-poor soft tissue structures. That\'s because it actually stimulates blood flow to the joint structures. And the result is enhanced healing and repair of the joint. Healing and regeneration are what Regenerative Orthopedics does.\r\n\r\nAs a regenerative technique, the treatment stimulates the repair of injured joint tissue and relieves joint pain. It works by stimulating ligaments and tendons to proliferate at the injection site and promotes the three stages of healing: inflammation, proliferation, and remodeling.\r\n\r\nRegenerative Orthopedic treatments trigger healing via inflammation. After the solutions are injected at the injury site, a cellular reaction takes place. And various cells, including fibroblasts, endothelial cells, and myofibroblasts, form new blood vessels. The process ultimately lays down collagen, which enhances tissue repair and strength. The collagenous connective tissue produced is new tissue identical to the collagen fabric of normal connective tissue, resulting in stronger ligament attachments.\r\n\r\nAdditionally, blood flow is stimulated by movement and exercise. Since there is basically no downtime with Regenerative Orthopedics, exercise and movement are encouraged. Motion causes an increase in blood flow to the affected joint. And that provides the damaged ligament tissue with the nutrients and metabolites necessary for tissue repair and healing.\r\n\r\nA ligament is not completely healed until all of the signs and symptoms of ligament injury are gone. The symptoms include pain, tenderness, crepitus, and inhibited or excessive motion. The individual will experience restored function.\r\n\r\nRegenerative Orthopedics treats joint pain at its source, including all of the difficult to heal joint structures. Ligaments and other involved joint structures are comprehensively treated with this therapy. And the result of treatment is a healed and strengthened joint and resolved joint pain.\r\n<h3>Contact Us!</h3>\r\nFind out how you can get rid of your joint pain with Regenerative Orthopedics. <a href=\"https://www.drfields.com/contact/\">Contact us</a> now.\r\n\r\nRead more of our <a href=\"https://www.drfields.com/?s=joint+pain\">articles</a> about joint pain resolution and joint repair <a href=\"https://www.drfields.com/?s=joint+pain\">here</a>.','What is Behind Joint Pain?','','inherit','closed','closed','','1395-revision-v1','','','2021-03-31 19:17:32','2021-03-31 19:17:32','',1395,'https://www.drfields.com/?p=4599',0,'revision','',0),(4600,9,'2021-03-31 21:53:38','2021-03-31 21:53:38','Hip joint','Hip Joint','Hip Joint','inherit','open','closed','','hip-2','','','2021-03-31 21:54:00','2021-03-31 21:54:00','',1403,'https://www.drfields.com/wp-content/uploads/2019/06/hip.jpg',0,'attachment','image/jpeg',0),(4601,9,'2021-03-31 22:37:08','2021-03-31 22:37:08','[caption id=\"attachment_4600\" align=\"alignright\" width=\"445\"]<img class=\"wp-image-4600 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-500x500.jpg\" alt=\"Hip\" width=\"445\" height=\"445\" /> <strong>              Hip Joint Injuries and Pain Getting in Your Way?</strong>[/caption]\n<h2>Is Hip Injury and Pain Getting in Your Way?</h2>\nA hip injury and pain can often get in the way of us enjoying life and doing all of the things we love to do. In this article, we will talk about the hip, how it works, the types of hip injuries, and how to best repair them so you can get back to what you love.\n<h4><em>Hip Strength and Stability</em></h4>\nThe hip joint is a ball-and-socket joint with massive ligaments, making the hip quite stable. The bony anatomy, muscles, labrum, and ligaments of the hip contribute to its strength and stability.\n\nThe ball and socket are sealed by the hip labrum, a ring of cartilage that helps with movement between the leg and the pelvis. The hip ligaments are primarily responsible for maintaining smooth hip motion. And they keep the hip in place while it moves in a pain-free, strong and stable fashion.\n<h3>What Causes Hip Injury?</h3>\nEven though the hip has been known for its strength and stability, hip injuries have become increasingly recognized as a source of pain and disability. This makes sense when one considers we move our hips at least one million times per year during activities of daily living. The high rates of wear and tear attributable to normal use of the hip alone can result in long-term problems.\n\nAdd to that sports activities, and the requirements on athletes to become bigger and stronger places more and more force on the hip. The increased requirements place tremendous forces year after year. And that adds to the growth in hip injuries. When the hip\'s soft tissue structures, such as the labrum, tendons, and ligaments, are subjected to forces beyond their normal range, injury and failure occur, resulting in hip injury and instability.\n<h3>Types of Hip Injuries</h3>\nHip injuries are common in sports activities like soccer, ice hockey, and football. But they also include overuse injuries from repetitive use in activities like cycling, yoga, hiking, aerobics, and more. Symptoms from overuse injuries often have an insidious onset and become residual and chronic.\n\nHip injuries cause instability of the hip, which results in abnormal movement between the structures of the hip joint. And it is associated with an array of hip conditions, including labral tears, femoroacetabular impingement, ligament tears, dislocations, and osteoarthritis.\n<h4><em>Dislocation of the Hip</em></h4>\nOne of the most common conditions is dislocation of the hip. Hip dislocations are seen in sports like football, rugby, hurling, and soccer. And they commonly occur posteriorly due to the greater strength of the anterior capsule of the joint. In this situation, the individual is hit in the front of the thigh, forcing the thigh/hip complex backward. The result is hip dislocation and injury to the ligamentum teres and the posterior capsule.\n\nA joint dislocation significantly disrupts all the structures that support the joint. Long-term consequences of posterior hip dislocations can include sciatic nerve injury, avascular necrosis of the femoral head, and significant arthritis and cartilage damage.\n<h4><em>Anterior Hip Capsule Laxity</em></h4>\nLaxity of the anterior hip capsule is seen in sports injuries and overuse injuries. Activities that demand supraphysiologic joint motion such as figure skating, dance, and gymnastics are causative factors. The ileofemoral ligament of the anterior hip capsule may stretch out, causing a focal rotational type of instability. This type of instability can cause labral tears and associated pain.\n<h4><em>Overuse Injuries of the Hip and Femoroacetabular Impingement</em></h4>\nStances repeatedly taken by athletes such as hockey goalies and baseball catchers can cause overuse injuries and lead to femoroacetabular impingement (FAI). However, the most common cause of FAI is simply some soft tissue injury, such as an iliofemoral or ischiofemoral ligament injury.\n\nOver time, hip instability from ligament injuries and a hip labral tear can cause premature arthritis and FAI. The association between hip instability from athletic injuries and the development of arthritis has been well documented.\n<h3>Treating Hip Injury</h3>\nA thorough understanding of hip anatomy and instability is essential to managing hip instability and initiation of treatment. In most cases, the physician should be able to find the correct cause of instability with history taking, clinical examination, and radiographs.\n\nImaging such as MRI and MRI arthrography is also helpful. The evaluation of the hip range of motion, including flexion, internal/external rotation in flexion, abduction, and adduction, should be performed compared to the contralateral hip to confirm the presence of instability.\n<h3>Non-Surgical Treatment of the Hip with Regenerative Orthopedics</h3>\nThe majority of hip injury and instability cases can be managed non-surgically. Surgical intervention is required in cases of large acetabular fractures. Standard therapeutic approaches (pain medications, corticosteroid injections, and arthroscopy) employed to address hip instability have often been ineffective. That\'s because they do not repair the underlying cause of the problem, the injured ligaments and labrum.\n\nNon-surgical regenerative therapies, including Stem Cell Therapy, PRP, and Prolotherapy, are alternative modalities that can repair the instability by stimulating the natural regenerative processes in and around the hip joint. These treatments facilitate the restoration of the degenerated ligaments and labrum to a healthy state, improving joint support, function and reducing pain and symptoms.\n\nPlus, they get you back to doing what you love without the need for surgery and extended time off.\n\n<strong><a href=\"https://www.drfields.com/articles/prolo-news/\">Click here for more articles by Dr. Fields</a>.</strong>','Is Hip Injury and Pain Getting in Your Way?','','inherit','closed','closed','','1403-autosave-v1','','','2021-03-31 22:37:08','2021-03-31 22:37:08','',1403,'https://www.drfields.com/?p=4601',0,'revision','',0),(4602,9,'2021-03-31 22:29:25','2021-03-31 22:29:25','[caption id=\"attachment_4600\" align=\"alignright\" width=\"445\"]<img class=\"wp-image-4600 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-500x500.jpg\" alt=\"Hip\" width=\"445\" height=\"445\" /> <strong>              Hip Joint Injuries and Pain Getting in Your Way?</strong>[/caption]\r\n<h2>Is Hip Injury and Pain Getting in Your Way?</h2>\r\nA hip injury and pain can often get in the way of us enjoying life and doing all of the things we love to do. In this article, we will talk about the hip, how it works, the types of hip injuries, and how to best repair them so you can get back to what you love.\r\n<h4><em>Hip Strength and Stability</em></h4>\r\nThe hip joint is a ball-and-socket joint with massive ligaments, which make the hip quite stable and able to prevent many injuries. The bony anatomy, muscles, labrum, and ligaments of the hip all contribute to its strength and stability.\r\n\r\nThe ball and socket are sealed by the hip labrum, a ring of cartilage that helps with movement between the leg and the pelvis. The hip ligaments are structures that are primarily responsible for maintaining smooth hip motion, keeping the hip in place, while it moves in a pain-free, strong and stable fashion.\r\n<h3>What Causes Hip Injury?</h3>\r\nEven though the hip has been known for its strength and stability, hip injuries have become increasingly recognized as a source of pain and disability. This makes sense when one considers we move our hips at least one million times per year during activities of daily living. The high rates of wear and tear, attributable to normal use of the hip alone can result in long-term problems.\r\n\r\nAdd to that sports activities, and the requirements on athletes to become bigger and stronger, places more and more force on the hip. The increased requirements place tremendous forces year after year. And that adds to the growth in hip injuries. When the soft tissue structures of the hip, such as the labrum, tendons, and ligaments are subjected to forces beyond their normal range, injury and failure occur, resulting in hip injury and instability.\r\n<h3>Types of Hip Injuries</h3>\r\nHip injuries are common in sports activities like soccer, ice hockey, and football. But they also include overuse injuries from repetitive use in activities like cycling, yoga, hiking, aerobics, and more. Symptoms from overuse injuries often have an insidious onset and become residual and chronic.\r\n\r\nHip injuries cause instability of the hip, which results in abnormal movement between the structures of the hip joint. And it is associated with an array of hip conditions, including labral tears, femoroacetabular impingement, ligament tears, dislocations, and osteoarthritis.\r\n<h4><em>Dislocation of the Hip</em></h4>\r\nOne of the most common conditions is dislocation of the hip. Hip dislocations are seen in sports like football, rugby, hurling, and soccer. And they commonly occur posteriorly due to the greater strength of the anterior capsule of the joint. In this situation, the individual is hit in the front of the thigh, forcing the thigh/hip complex backward. The result is hip dislocation and injury to the ligamentum teres and the posterior capsule.\r\n\r\nA joint dislocation significantly disrupts all the structures that support the joint. Long-term consequences of posterior hip dislocations can include sciatic nerve injury, avascular necrosis of the femoral head, and significant arthritis and cartilage damage.\r\n<h4><em>Anterior Hip Capsule Laxity</em></h4>\r\nLaxity of the anterior hip capsule is seen in sports injuries and overuse injuries. Activities that demand supraphysiologic joint motion such as figure skating, dance, and gymnastics are causative factors. The ileofemoral ligament of the anterior hip capsule may stretch out causing a focal rotational type of instability. This type of instability can cause labral tears and associated pain.\r\n<h4><em>Overuse Injuries of the Hip and Femoroacetabular Impingement</em></h4>\r\nStances repeatedly taken by athletes such as hockey goalies and baseball catchers can cause overuse injuries and may lead to femoroacetabular impingement (FAI). However, the most common cause of FAI is simply some type of soft tissue injury such as an iliofemoral or ischiofemoral ligament injury.\r\n\r\nOver time, hip instability from ligament injuries as well as a hip labral tear can cause premature arthritis and FAI. The association between hip instability from athletic injuries and the development of arthritis has been well documented.\r\n<h3>Treating Hip Injury</h3>\r\nA thorough understanding of hip anatomy and instability is essential to the management of hip instability and initiation of treatment. In the majority of cases, the physician should be able to find the correct cause of instability with history taking, clinical examination, and radiographs.\r\n\r\nImaging such as MRI and MRI arthrography is also helpful. Evaluation of hip range of motion including flexion, internal/external rotation in flexion, abduction, and adduction should be performed with comparison to contralateral hip, to confirm the presence of instability.\r\n<h3>Non-Surgical Treatment of the Hip with Regenerative Orthopedics</h3>\r\nThe majority of hip injury and instability cases can be managed non-surgically. Surgical intervention is required in cases of large acetabular fractures. Standard therapeutic approaches (pain medications, corticosteroid injections, and arthroscopy) employed to address hip instability have often been ineffective. That\'s because they do not repair the underlying cause of the problem, the injured ligaments, and labrum.\r\n\r\nNon-surgical regenerative therapies including Stem Cell Therapy, PRP, and Prolotherapy are alternative modalities that can repair the instability by stimulating the natural regenerative processes in and around the hip joint. These treatments facilitate the restoration of the degenerated ligaments and labrum to a healthy state, improving joint support, function and reducing pain and symptoms.\r\n\r\nPlus, they get you back to doing what you love without the need for surgery and extended time off.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>','Is Hip Injury and Pain Getting in Your Way?','','inherit','closed','closed','','1403-revision-v1','','','2021-03-31 22:29:25','2021-03-31 22:29:25','',1403,'https://www.drfields.com/?p=4602',0,'revision','',0),(4603,9,'2021-03-31 22:37:55','2021-03-31 22:37:55','[caption id=\"attachment_4600\" align=\"alignright\" width=\"445\"]<img class=\"wp-image-4600 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/hip-500x500.jpg\" alt=\"Hip\" width=\"445\" height=\"445\" /> <strong>              Hip Joint Injuries and Pain Getting in Your Way?</strong>[/caption]\r\n<h2>Is Hip Injury and Pain Getting in Your Way?</h2>\r\nA hip injury and pain can often get in the way of us enjoying life and doing all of the things we love to do. In this article, we will talk about the hip, how it works, the types of hip injuries, and how to best repair them so you can get back to what you love.\r\n<h4><em>Hip Strength and Stability</em></h4>\r\nThe hip joint is a ball-and-socket joint with massive ligaments, making the hip quite stable. The bony anatomy, muscles, labrum, and ligaments of the hip contribute to its strength and stability.\r\n\r\nThe ball and socket are sealed by the hip labrum, a ring of cartilage that helps with movement between the leg and the pelvis. The hip ligaments are primarily responsible for maintaining smooth hip motion. And they keep the hip in place while it moves in a pain-free, strong and stable fashion.\r\n<h3>What Causes Hip Injury?</h3>\r\nEven though the hip has been known for its strength and stability, hip injuries have become increasingly recognized as a source of pain and disability. This makes sense when one considers we move our hips at least one million times per year during activities of daily living. The high rates of wear and tear attributable to normal use of the hip alone can result in long-term problems.\r\n\r\nAdd to that sports activities, and the requirements on athletes to become bigger and stronger places more and more force on the hip. The increased requirements place tremendous forces year after year. And that adds to the growth in hip injuries. When the hip\'s soft tissue structures, such as the labrum, tendons, and ligaments, are subjected to forces beyond their normal range, injury and failure occur, resulting in hip injury and instability.\r\n<h3>Types of Hip Injuries</h3>\r\nHip injuries are common in sports activities like soccer, ice hockey, and football. But they also include overuse injuries from repetitive use in activities like cycling, yoga, hiking, aerobics, and more. Symptoms from overuse injuries often have an insidious onset and become residual and chronic.\r\n\r\nHip injuries cause instability of the hip, which results in abnormal movement between the structures of the hip joint. And it is associated with an array of hip conditions, including labral tears, femoroacetabular impingement, ligament tears, dislocations, and osteoarthritis.\r\n<h4><em>Dislocation of the Hip</em></h4>\r\nOne of the most common conditions is dislocation of the hip. Hip dislocations are seen in sports like football, rugby, hurling, and soccer. And they commonly occur posteriorly due to the greater strength of the anterior capsule of the joint. In this situation, the individual is hit in the front of the thigh, forcing the thigh/hip complex backward. The result is hip dislocation and injury to the ligamentum teres and the posterior capsule.\r\n\r\nA joint dislocation significantly disrupts all the structures that support the joint. Long-term consequences of posterior hip dislocations can include sciatic nerve injury, avascular necrosis of the femoral head, and significant arthritis and cartilage damage.\r\n<h4><em>Anterior Hip Capsule Laxity</em></h4>\r\nLaxity of the anterior hip capsule is seen in sports injuries and overuse injuries. Activities that demand supraphysiologic joint motion such as figure skating, dance, and gymnastics are causative factors. The ileofemoral ligament of the anterior hip capsule may stretch out, causing a focal rotational type of instability. This type of instability can cause labral tears and associated pain.\r\n<h4><em>Overuse Injuries of the Hip and Femoroacetabular Impingement</em></h4>\r\nStances repeatedly taken by athletes such as hockey goalies and baseball catchers can cause overuse injuries and lead to femoroacetabular impingement (FAI). However, the most common cause of FAI is simply some soft tissue injury, such as an iliofemoral or ischiofemoral ligament injury.\r\n\r\nOver time, hip instability from ligament injuries and a hip labral tear can cause premature arthritis and FAI. The association between hip instability from athletic injuries and the development of arthritis has been well documented.\r\n<h3>Treating Hip Injury</h3>\r\nA thorough understanding of hip anatomy and instability is essential to managing hip instability and initiation of treatment. In most cases, the physician should be able to find the correct cause of instability with history taking, clinical examination, and radiographs.\r\n\r\nImaging such as MRI and MRI arthrography is also helpful. The evaluation of the hip range of motion, including flexion, internal/external rotation in flexion, abduction, and adduction, should be performed compared to the contralateral hip to confirm the presence of instability.\r\n<h3>Non-Surgical Treatment of the Hip with Regenerative Orthopedics</h3>\r\nThe majority of hip injury and instability cases can be managed non-surgically. Surgical intervention is required in cases of large acetabular fractures. Standard therapeutic approaches (pain medications, corticosteroid injections, and arthroscopy) employed to address hip instability have often been ineffective. That\'s because they do not repair the underlying cause of the problem, the injured ligaments and labrum.\r\n\r\nNon-surgical regenerative therapies, including Stem Cell Therapy, PRP, and Prolotherapy, are alternative modalities that can repair the instability by stimulating the natural regenerative processes in and around the hip joint. These treatments facilitate the restoration of the degenerated ligaments and labrum to a healthy state, improving joint support, function and reducing pain and symptoms.\r\n\r\nPlus, they get you back to doing what you love without the need for surgery and extended time off.\r\n\r\n<strong><a href=\"https://www.drfields.com/articles/prolo-news/\">Click here for more articles by Dr. Fields</a>.</strong>','Is Hip Injury and Pain Getting in Your Way?','','inherit','closed','closed','','1403-revision-v1','','','2021-03-31 22:37:55','2021-03-31 22:37:55','',1403,'https://www.drfields.com/?p=4603',0,'revision','',0),(4604,9,'2021-04-05 22:40:09','2021-04-05 22:40:09','<h2>Failed Back Surgery Syndrome</h2>\n&nbsp;\n\n[caption id=\"attachment_4606\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4606\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/failed-back-surgery-500x500.png\" alt=\"Failed Back Surgery\" width=\"500\" height=\"500\" /> <strong>                 A Solution for Failed Back Surgery Syndrome </strong>[/caption]\n\nBy the time people reach midlife, more than half of them will experience significant episodes of low back pain. That’s how common low back pain is! And because of the prevalence, low back pain often leads to surgery.\n\nSurgery for back pain may give the sufferer some relief, but many continue to experience a significant amount of pain. But wasn\'t the surgery done to put an end to the pain? And if surgery was performed to stop the pain, why would there still be pain after the surgery to relieve it?\n\nBack surgery requires removing some of the spine structures that help to stabilize the spine. So when they are removed, their absence will weaken the spine.\n\nAlso, in surgeries that involve fusion of the spinal vertebrae, the areas above and below the fusion often degenerate. It makes sense that movement needs to occur somewhere.  And the areas above and below the fusion take on a lot of the stress.\n\nThe various back surgeries alter the spinal dynamic and make the patient more susceptible to new pain. <strong>Unfortunately, ten to forty percent of lower back surgeries for disabling pain end up in the person needing repeat surgery due to ongoing pain</strong>.\n\n<em><strong>New or persistent back or leg pain after back surgery is a condition known as Failed Back Surgery Syndrome.</strong></em> The numbers are so overwhelming that this condition has its own diagnosis.\n<h3>A Little Background on the Low Back and Low Back Pain</h3>\nThe lumbar spine is composed of five vertebrae separated by discs and supported by strong muscles and ligaments. Cumulative trauma through years of certain activities or sports can result in small tears of the ligaments.\n\nIf a major trauma transpires, the ligament injury can be of such severity that ligament healing never occurs, leaving the vertebrae unstable and without the support they need. The instability and ligament laxity cause ongoing low back pain.\n\nThis pain is what sends people by the droves to orthopedic surgeons. If the back pain leads to back surgery, important muscles and ligaments are cut, adding to an already unstable lumbar structure.\n<h3>Explain What Failed Back Surgery Syndrome Involves</h3>\nBack surgery may be considered “successful” by the surgeon just because the anatomic area was surgically “fixed correctly.” However, the patient may still suffer from Failed Back Surgery Syndrome. And they continue to experience the defining symptoms, which include persistent back and/or leg pain.\n\nPain that occurs right after surgery is often due to sensitized nerves. Many nerves have to be cut by the surgeon to get to the area of the vertebrae being repaired. And sometimes, those nerves become inflamed and/or compressed. In cases where the post-surgical pain becomes chronic and ongoing, the pain is often from spinal instability.\n\nAnd the instability may be from causes, including removing too much bone or due to damage to the spinal ligaments. <strong>Any time surgery is performed on the spine; it will alter the mechanics of the spine. </strong>And this will result in more force being generated at and around the areas where the surgery is done.\n\nThe pain and discomfort of Failed Back Surgery Syndrome (FBSS) cause a major negative impact on the ability of those with the syndrome to manage everyday life activities. Even simple ones like standing, lifting, and traveling.\n\nPhysicians see many patients who have had back surgery or multiple surgeries who continue to have pain. Sometimes the surgery fixes the pain for a year or so. But then the pain returns. And the individual who had the surgery is terrified about going through another surgery. Plus, they are also afraid of the prospects of living in pain and on pain medication. A horrifying predicament!\n<h3>With so much progress technologically, how does FBSS still happen?</h3>\nSometimes surgery is done when it was never indicated. Surgery may be recommended based on MRI findings primarily. And that means it is not after a thorough history and review of symptoms to match the MRI. This results in performing surgery on a structure that looked bad on MRI but which was actually not the true cause of pain.\n\nAdditionally, while operating on one condition, another condition may be overlooked. For example, the surgeon m remove a disc. But its removal does not address the underlying instability, causing disc degeneration and stenosis. If the issue causing the problem in the first place is never addressed, disappointing results and pain will result.\n\nPlus, the surgeon may even operate on the wrong spinal levels. Failed Back Surgery Syndrome may result from outright inappropriate surgeries, inadequate surgeries where the underlying pathology is not addressed, or even unnecessary surgeries.\n<h3>Fusion Surgery Can Result in Failed Back Surgery Syndrome</h3>\nFailed Back Surgery Syndrome may result after fusion surgery. Once the joints are fused, motion in the spine has to come from somewhere else, creating added stress on the sections above and below the spine. It is then only a matter of time before arthritis and pain develop in the adjacent segments.\n\nFusion surgery is recommended because there is too much movement or instability in the spine. The surgeon is looking to place artificial material to fuse the area together to keep it from moving permanently. But this doesn’t always resolve the pain. Plus, it will eventually cause degeneration at the levels below and above the fusion.  And this will frequently leave the back pain sufferer with more back pain and arthritis because of the surgery.\n<h3>How Is Failed Back Surgery Syndrome Treated</h3>\nPatients with Failed Back Surgery Syndrome experience prolonged pain. And because of that, treatment often includes narcotics, steroids, and even anti-depressants, since the prolonged pain often results in depression. All of these medications come with their own set of problems.\n\nSpinal cord stimulation is also utilized and allows for relief in a subset of FBSS patients with radicular leg pain. These patients, however, continue to experience difficulties in function and quality of life.\n<h3>Regenerative Orthopedics Help with Failed Back Surgery Syndrome</h3>\nRegenerative Orthopedics refers to therapies that stimulate the body to heal itself, such as Stem Cell Therapy, PRP, and Prolotherapy. These regenerative injection therapies stimulate the body to repair without the need for surgery. Our bodies have amazing regenerative capabilities. This is a novel approach because we are triggering the body to strengthen the tissue independently without the use of artificial hardware.\n\nAn initial consultation to discuss these treatments would be recommended for those patients who are taking narcotics or for those with spinal cord stimulators. Regenerative Orthopedics therapies resolve the problems that damaged the spine. And for optimal healing, other therapies that are suppressing the ability of the body to heal need to be limited or stopped. Regenerative Orthopedic therapies are reparative treatments and are alternatives to surgery. They can also help when surgery has already been done but failed to address the root issue.\n\nWe strongly recommend looking into regenerative therapies first for those with back pain who have not had surgery yet. One of the wonderful things about Regenerative Orthopedics for back pain is that the individual can maintain activity and get back to the activities they enjoy without extensive downtime. Treatments and exercise programs are individually tailored to promote healing and return people to their active lives. It’s really an amazing transformation to see people regain their mobility and independence!\n<h4>Regenerative Orthopedics helps almost all types of back pain</h4>\nRegenerative Orthopedics helps almost all types of back pain: herniated discs, bulging discs, degenerative disc disease, chronic subluxation of the sacroiliac joints, and more. And these treatments may save you from unnecessary surgery because the treatments address the problems causing the instability and offer a way of repair when other treatments often fail.\n\nRegenerative Orthopedics treatments correct the underlying problem of spinal instability. Without this correction, the patient is more likely to continue on the course of pain and symptom chasing pain management therapies that only temporarily calm the pain. Remember, spinal instability is a progressive disorder, meaning that the area will continue to degenerate until regenerative treatments are used to restore them.','Failed Back Surgery Syndrome','','inherit','closed','closed','','1389-autosave-v1','','','2021-04-05 22:40:09','2021-04-05 22:40:09','',1389,'https://www.drfields.com/?p=4604',0,'revision','',0),(4605,9,'2021-04-05 21:27:45','2021-04-05 21:27:45','<h2>Failed Back Surgery Syndrome</h2>\r\n&nbsp;\r\n\r\nBy the time people reach midlife, more than half of them will experience significant episodes of low back pain. That’s how common low back pain is, and because of the prevalence, low back pain often leads to surgery. The surgery may give the back pain sufferer some relief, but many continue to experience a significant amount of pain. You may wonder, if surgery was done to stop the pain, then why would there still be pain after the surgery to relieve it? Back surgery requires the removal of some of the structures of the spine that help to stabilize the spine. So when they are removed, the spine will be weakened. Also, in surgeries that involve fusion of the spinal vertebrae, the areas above and below the fusion often degenerate, since movement needs to occur somewhere. The various back surgeries alter the spinal dynamic and make the patient more susceptible to new pain. Unfortunately, ten to forty percent of lower back surgeries for disabling pain end up in the person needing repeat surgery due to ongoing pain. New or persistent back or leg pain after back surgery is a condition known as Failed Back Surgery Syndrome. The numbers are so overwhelming that this condition has its own diagnosis.\r\n<h6>A Little Background on Low Back Pain</h6>\r\nThe lumbar spine is composed of five vertebrae separated by discs and supported by strong muscles and ligaments. Cumulative trauma through years of certain activities or sports can result in small tears of the ligaments. If a major trauma transpires, the injury to the ligament can be of such severity that ligament healing never occurs, leaving the vertebrae unstable and without the support they need. The instability and ligament laxity cause ongoing low back pain. This pain is what sends people by the droves to orthopedic surgeons. If the back pain leads to back surgery, important muscles and ligaments are cut, adding to an already unstable lumbar structure.\r\n<h6>Explain What Failed Back Surgery Syndrome Involves?</h6>\r\nA back surgery may be considered “successful” by the surgeon just because the anatomic area was surgically “fixed correctly.” However, the patient may still suffer from Failed Back Surgery Syndrome, and continue to experience the defining symptoms which include persistent back and/or leg pain. Pain that occurs right after surgery is often due to sensitized nerves. Many nerves have to be cut by the surgeon in order to get to the area of the vertebrae being repaired, and sometimes those nerves become inflamed and/or compressed. In cases where the post-surgical pain becomes chronic and ongoing, the pain is often from spinal instability from causes which may include the removal of too much bone or due to damage to the spinal ligaments. Any time surgery is performed on the spine, it will alter the mechanics of the spine, and this will result in more force being generated at and around the areas where the surgery is done.\r\n\r\nThe pain and discomfort of Failed Back Surgery Syndrome (FBSS) cause a major negative impact on the ability of those with the syndrome to manage everyday life activities such as standing, lifting and traveling. Physicians see many patients who have had back surgery or multiple surgeries who continue to have pain. Sometimes the surgery fixes the pain for a year or so, but then the pain returns. The individual who had the surgery is both terrified about going through another surgery, and is also afraid of the prospects of living in pain and on pain medication.\r\n<h6>With so much progress technologically, how does FBSS still happen?</h6>\r\nSometimes surgery is done when it was never indicated. Surgery may be recommended based on MRI findings primarily and not after a thorough history and review of symptoms to match up to the MRI. This results in performing surgery on a structure that looked bad on MRI, but which was actually not the true cause of pain.\r\n\r\nWhile operating on one condition, another condition may be overlooked. A disc may be removed, for example, but the underlying instability, causing disc degeneration and stenosis were not addressed. If the issue causing the problem in the first place is never addressed, disappointing results and pain will result. Wrong spinal levels may even be operated on. Failed Back Surgery Syndrome may be the result of outright inappropriate surgeries, inadequate surgeries where the underlying pathology is not addressed, or even unnecessary surgeries.\r\n<h6>Fusion Surgery</h6>\r\nFailed Back Surgery Syndrome may result after fusion surgery. Once the joints are fused together, motion in the spine has to come from somewhere else, creating added stress on the sections above and below the spine. It is then only a matter of time before arthritis and pain develop in the adjacent segments.\r\n\r\nFusion surgery is recommended because there is too much movement or instability in the spine. The surgeon is looking to place artificial material to permanently fuse the area together, to keep it from moving. But this doesn’t always resolve the pain, and will eventually cause degeneration at the levels below and above the fusion, frequently leaving the back pain sufferer with more back pain and arthritis because of the surgery.\r\n<h6>How Is Failed Back Surgery Syndrome Treated</h6>\r\nPatients with Failed Back Surgery Syndrome experience prolonged pain and because of that treatment often includes narcotics, steroids and even anti-depressants, since the prolonged pain often results in depression. All of these medications come with their own set of problems. Spinal cord stimulation is also utilized and allows for some relief in a subset of FBSS patients with radicular leg pain. These patients, however, continue to experience difficulties in function and quality of life.\r\n<h6>Regenerative Orthopedics Help with Failed Back Surgery Syndrome</h6>\r\nRegenerative Orthopedics refers to therapies that stimulate the body to heal itself, such as Stem Cell Therapy, PRP, and Prolotherapy. These regenerative injection therapies stimulate the body to repair, without the need for surgery. Our bodies have amazing regenerative capabilities. This is a novel approach because we are triggering the body to strengthen the tissue on its own, without the use of artificial hardware.\r\n\r\nFor those patients who are taking narcotics, or for those with spinal cord stimulators, an initial consultation to discuss these treatments would be recommended. Regenerative Orthopedics therapies resolve the problems that damaged the spine, and for optimal healing, other therapies that are suppressing the ability of the body to heal need to be limited or stopped. Regenerative Orthopedic therapies are reparative treatments and are alternatives to surgery. They can also help when surgery has already been done, but failed to address the root issue.\r\n\r\nFor those with back pain who have not had surgery yet, we strongly recommend looking into regenerative therapies first. One of the wonderful things about Regenerative Orthopedics for back pain is, the individual can maintain activity and get back to the activities they enjoy, without the need for extensive downtime. Treatments and exercise programs are individually tailored to promote healing and return people to their active lives. It’s really an amazing transformation to see people regain their mobility and independence!\r\n\r\nRegenerative Orthopedics is helpful for almost all types of back pain: herniated discs, bulging discs, degenerative disc disease, chronic subluxation of the sacroiliac joints, and more. Regenerative Orthopedics may save you from an unnecessary surgery, because the treatments address the problems causing the instability, and offer a way of repair when other treatments often fail.\r\n\r\nRegenerative Orthopedics treatments correct the underlying problem of spinal instability. Without this correction, the patient is more likely to continue on the course of pain and symptom chasing pain management therapies that only temporarily calm the pain. Remember, spinal instability is a progressive disorder, meaning that the area will continue to degenerate until regenerative treatments are used to restore them.','Failed Back Surgery Syndrome','','inherit','closed','closed','','1389-revision-v1','','','2021-04-05 21:27:45','2021-04-05 21:27:45','',1389,'https://www.drfields.com/?p=4605',0,'revision','',0),(4606,9,'2021-04-05 21:28:36','2021-04-05 21:28:36','Failed Back Surgery','Failed Back Surgery','Failed Back Surgery','inherit','open','closed','','failed-back-surgery','','','2021-04-05 21:28:36','2021-04-05 21:28:36','',1389,'https://www.drfields.com/wp-content/uploads/2019/06/failed-back-surgery.png',0,'attachment','image/png',0),(4607,9,'2021-04-05 22:37:27','2021-04-05 22:37:27','<h2>Failed Back Surgery Syndrome</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_4606\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4606\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/failed-back-surgery-500x500.png\" alt=\"Failed Back Surgery\" width=\"500\" height=\"500\" /> <strong>Failed Back Surgery Syndrome Has a Solution</strong>[/caption]\r\n\r\nBy the time people reach midlife, more than half of them will experience significant episodes of low back pain. That’s how common low back pain is! And because of the prevalence, low back pain often leads to surgery.\r\n\r\nSurgery for back pain may give the sufferer some relief, but many continue to experience a significant amount of pain. But wasn\'t the surgery done to put an end to the pain? And if surgery was performed to stop the pain, why would there still be pain after the surgery to relieve it?\r\n\r\nBack surgery requires removing some of the spine structures that help to stabilize the spine. So when they are removed, their absence will weaken the spine.\r\n\r\nAlso, in surgeries that involve fusion of the spinal vertebrae, the areas above and below the fusion often degenerate. It makes sense that movement needs to occur somewhere.  And the areas above and below the fusion take on a lot of the stress.\r\n\r\nThe various back surgeries alter the spinal dynamic and make the patient more susceptible to new pain. <strong>Unfortunately, ten to forty percent of lower back surgeries for disabling pain end up in the person needing repeat surgery due to ongoing pain</strong>.\r\n\r\n<em><strong>New or persistent back or leg pain after back surgery is a condition known as Failed Back Surgery Syndrome.</strong></em> The numbers are so overwhelming that this condition has its own diagnosis.\r\n<h3>A Little Background on the Low Back and Low Back Pain</h3>\r\nThe lumbar spine is composed of five vertebrae separated by discs and supported by strong muscles and ligaments. Cumulative trauma through years of certain activities or sports can result in small tears of the ligaments.\r\n\r\nIf a major trauma transpires, the ligament injury can be of such severity that ligament healing never occurs, leaving the vertebrae unstable and without the support they need. The instability and ligament laxity cause ongoing low back pain.\r\n\r\nThis pain is what sends people by the droves to orthopedic surgeons. If the back pain leads to back surgery, important muscles and ligaments are cut, adding to an already unstable lumbar structure.\r\n<h3>Explain What Failed Back Surgery Syndrome Involves?</h3>\r\nBack surgery may be considered “successful” by the surgeon just because the anatomic area was surgically “fixed correctly.” However, the patient may still suffer from Failed Back Surgery Syndrome. And they continue to experience the defining symptoms, which include persistent back and/or leg pain.\r\n\r\nPain that occurs right after surgery is often due to sensitized nerves. Many nerves have to be cut by the surgeon to get to the area of the vertebrae being repaired. And sometimes, those nerves become inflamed and/or compressed. In cases where the post-surgical pain becomes chronic and ongoing, the pain is often from spinal instability.\r\n\r\nAnd the instability may be from causes, including removing too much bone or due to damage to the spinal ligaments. <strong>Any time surgery is performed on the spine; it will alter the mechanics of the spine. </strong>And this will result in more force being generated at and around the areas where the surgery is done.\r\n\r\nThe pain and discomfort of Failed Back Surgery Syndrome (FBSS) cause a major negative impact on the ability of those with the syndrome to manage everyday life activities. Even simple ones like standing, lifting, and traveling.\r\n\r\nPhysicians see many patients who have had back surgery or multiple surgeries who continue to have pain. Sometimes the surgery fixes the pain for a year or so. But then the pain returns. And the individual who had the surgery is terrified about going through another surgery. Plus, they are also afraid of the prospects of living in pain and on pain medication. A horrifying predicament!\r\n<h3>With so much progress technologically, how does FBSS still happen?</h3>\r\nSometimes surgery is done when it was never indicated. Surgery may be recommended based on MRI findings primarily. And that means it is not after a thorough history and review of symptoms to match the MRI. This results in performing surgery on a structure that looked bad on MRI but which was actually not the true cause of pain.\r\n\r\nAdditionally, while operating on one condition, another condition may be overlooked. For example, the surgeon m remove a disc. But its removal does not address the underlying instability, causing disc degeneration and stenosis. If the issue causing the problem in the first place is never addressed, disappointing results and pain will result.\r\n\r\nPlus, the surgeon may even operate on the wrong spinal levels. Failed Back Surgery Syndrome may result from outright inappropriate surgeries, inadequate surgeries where the underlying pathology is not addressed, or even unnecessary surgeries.\r\n<h3>Fusion Surgery Can Result in Failed Back Surgery Syndrome</h3>\r\nFailed Back Surgery Syndrome may result after fusion surgery. Once the joints are fused, motion in the spine has to come from somewhere else, creating added stress on the sections above and below the spine. It is then only a matter of time before arthritis and pain develop in the adjacent segments.\r\n\r\nFusion surgery is recommended because there is too much movement or instability in the spine. The surgeon is looking to place artificial material to fuse the area together to keep it from moving permanently. But this doesn’t always resolve the pain. Plus, it will eventually cause degeneration at the levels below and above the fusion.  And this will frequently leave the back pain sufferer with more back pain and arthritis because of the surgery.\r\n<h3>How Is Failed Back Surgery Syndrome Treated</h3>\r\nPatients with Failed Back Surgery Syndrome experience prolonged pain. And because of that, treatment often includes narcotics, steroids, and even anti-depressants, since the prolonged pain often results in depression. All of these medications come with their own set of problems.\r\n\r\nSpinal cord stimulation is also utilized and allows for relief in a subset of FBSS patients with radicular leg pain. These patients, however, continue to experience difficulties in function and quality of life.\r\n<h3>Regenerative Orthopedics Help with Failed Back Surgery Syndrome</h3>\r\nRegenerative Orthopedics refers to therapies that stimulate the body to heal itself, such as Stem Cell Therapy, PRP, and Prolotherapy. These regenerative injection therapies stimulate the body to repair without the need for surgery. Our bodies have amazing regenerative capabilities. This is a novel approach because we are triggering the body to strengthen the tissue independently without the use of artificial hardware.\r\n\r\nAn initial consultation to discuss these treatments would be recommended for those patients who are taking narcotics or for those with spinal cord stimulators. Regenerative Orthopedics therapies resolve the problems that damaged the spine. And for optimal healing, other therapies that are suppressing the ability of the body to heal need to be limited or stopped. Regenerative Orthopedic therapies are reparative treatments and are alternatives to surgery. They can also help when surgery has already been done but failed to address the root issue.\r\n\r\nWe strongly recommend looking into regenerative therapies first for those with back pain who have not had surgery yet. One of the wonderful things about Regenerative Orthopedics for back pain is that the individual can maintain activity and get back to the activities they enjoy without extensive downtime. Treatments and exercise programs are individually tailored to promote healing and return people to their active lives. It’s really an amazing transformation to see people regain their mobility and independence!\r\n<h4>Regenerative Orthopedics helps almost all types of back pain</h4>\r\nRegenerative Orthopedics helps almost all types of back pain: herniated discs, bulging discs, degenerative disc disease, chronic subluxation of the sacroiliac joints, and more. And these treatments may save you from unnecessary surgery because the treatments address the problems causing the instability and offer a way of repair when other treatments often fail.\r\n\r\nRegenerative Orthopedics treatments correct the underlying problem of spinal instability. Without this correction, the patient is more likely to continue on the course of pain and symptom chasing pain management therapies that only temporarily calm the pain. Remember, spinal instability is a progressive disorder, meaning that the area will continue to degenerate until regenerative treatments are used to restore them.','Failed Back Surgery Syndrome','','inherit','closed','closed','','1389-revision-v1','','','2021-04-05 22:37:27','2021-04-05 22:37:27','',1389,'https://www.drfields.com/?p=4607',0,'revision','',0),(4608,9,'2021-04-05 22:40:23','2021-04-05 22:40:23','<h2>Failed Back Surgery Syndrome</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_4606\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4606\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/failed-back-surgery-500x500.png\" alt=\"Failed Back Surgery\" width=\"500\" height=\"500\" /> <strong>                 A Solution for Failed Back Surgery Syndrome </strong>[/caption]\r\n\r\nBy the time people reach midlife, more than half of them will experience significant episodes of low back pain. That’s how common low back pain is! And because of the prevalence, low back pain often leads to surgery.\r\n\r\nSurgery for back pain may give the sufferer some relief, but many continue to experience a significant amount of pain. But wasn\'t the surgery done to put an end to the pain? And if surgery was performed to stop the pain, why would there still be pain after the surgery to relieve it?\r\n\r\nBack surgery requires removing some of the spine structures that help to stabilize the spine. So when they are removed, their absence will weaken the spine.\r\n\r\nAlso, in surgeries that involve fusion of the spinal vertebrae, the areas above and below the fusion often degenerate. It makes sense that movement needs to occur somewhere.  And the areas above and below the fusion take on a lot of the stress.\r\n\r\nThe various back surgeries alter the spinal dynamic and make the patient more susceptible to new pain. <strong>Unfortunately, ten to forty percent of lower back surgeries for disabling pain end up in the person needing repeat surgery due to ongoing pain</strong>.\r\n\r\n<em><strong>New or persistent back or leg pain after back surgery is a condition known as Failed Back Surgery Syndrome.</strong></em> The numbers are so overwhelming that this condition has its own diagnosis.\r\n<h3>A Little Background on the Low Back and Low Back Pain</h3>\r\nThe lumbar spine is composed of five vertebrae separated by discs and supported by strong muscles and ligaments. Cumulative trauma through years of certain activities or sports can result in small tears of the ligaments.\r\n\r\nIf a major trauma transpires, the ligament injury can be of such severity that ligament healing never occurs, leaving the vertebrae unstable and without the support they need. The instability and ligament laxity cause ongoing low back pain.\r\n\r\nThis pain is what sends people by the droves to orthopedic surgeons. If the back pain leads to back surgery, important muscles and ligaments are cut, adding to an already unstable lumbar structure.\r\n<h3>Explain What Failed Back Surgery Syndrome Involves</h3>\r\nBack surgery may be considered “successful” by the surgeon just because the anatomic area was surgically “fixed correctly.” However, the patient may still suffer from Failed Back Surgery Syndrome. And they continue to experience the defining symptoms, which include persistent back and/or leg pain.\r\n\r\nPain that occurs right after surgery is often due to sensitized nerves. Many nerves have to be cut by the surgeon to get to the area of the vertebrae being repaired. And sometimes, those nerves become inflamed and/or compressed. In cases where the post-surgical pain becomes chronic and ongoing, the pain is often from spinal instability.\r\n\r\nAnd the instability may be from causes, including removing too much bone or due to damage to the spinal ligaments. <strong>Any time surgery is performed on the spine; it will alter the mechanics of the spine. </strong>And this will result in more force being generated at and around the areas where the surgery is done.\r\n\r\nThe pain and discomfort of Failed Back Surgery Syndrome (FBSS) cause a major negative impact on the ability of those with the syndrome to manage everyday life activities. Even simple ones like standing, lifting, and traveling.\r\n\r\nPhysicians see many patients who have had back surgery or multiple surgeries who continue to have pain. Sometimes the surgery fixes the pain for a year or so. But then the pain returns. And the individual who had the surgery is terrified about going through another surgery. Plus, they are also afraid of the prospects of living in pain and on pain medication. A horrifying predicament!\r\n<h3>With so much progress technologically, how does FBSS still happen?</h3>\r\nSometimes surgery is done when it was never indicated. Surgery may be recommended based on MRI findings primarily. And that means it is not after a thorough history and review of symptoms to match the MRI. This results in performing surgery on a structure that looked bad on MRI but which was actually not the true cause of pain.\r\n\r\nAdditionally, while operating on one condition, another condition may be overlooked. For example, the surgeon m remove a disc. But its removal does not address the underlying instability, causing disc degeneration and stenosis. If the issue causing the problem in the first place is never addressed, disappointing results and pain will result.\r\n\r\nPlus, the surgeon may even operate on the wrong spinal levels. Failed Back Surgery Syndrome may result from outright inappropriate surgeries, inadequate surgeries where the underlying pathology is not addressed, or even unnecessary surgeries.\r\n<h3>Fusion Surgery Can Result in Failed Back Surgery Syndrome</h3>\r\nFailed Back Surgery Syndrome may result after fusion surgery. Once the joints are fused, motion in the spine has to come from somewhere else, creating added stress on the sections above and below the spine. It is then only a matter of time before arthritis and pain develop in the adjacent segments.\r\n\r\nFusion surgery is recommended because there is too much movement or instability in the spine. The surgeon is looking to place artificial material to fuse the area together to keep it from moving permanently. But this doesn’t always resolve the pain. Plus, it will eventually cause degeneration at the levels below and above the fusion.  And this will frequently leave the back pain sufferer with more back pain and arthritis because of the surgery.\r\n<h3>How Is Failed Back Surgery Syndrome Treated</h3>\r\nPatients with Failed Back Surgery Syndrome experience prolonged pain. And because of that, treatment often includes narcotics, steroids, and even anti-depressants, since the prolonged pain often results in depression. All of these medications come with their own set of problems.\r\n\r\nSpinal cord stimulation is also utilized and allows for relief in a subset of FBSS patients with radicular leg pain. These patients, however, continue to experience difficulties in function and quality of life.\r\n<h3>Regenerative Orthopedics Help in Failed Back Surgery Syndrome</h3>\r\nRegenerative Orthopedics refers to therapies that stimulate the body to heal itself, such as Stem Cell Therapy, PRP, and Prolotherapy. These regenerative injection therapies stimulate the body to repair without the need for surgery. Our bodies have amazing regenerative capabilities. This is a novel approach because we are triggering the body to strengthen the tissue independently without the use of artificial hardware.\r\n\r\nAn initial consultation to discuss these treatments would be recommended for those patients who are taking narcotics or for those with spinal cord stimulators. Regenerative Orthopedics therapies resolve the problems that damaged the spine. And for optimal healing, other therapies that are suppressing the ability of the body to heal need to be limited or stopped. Regenerative Orthopedic therapies are reparative treatments and are alternatives to surgery. They can also help when surgery has already been done but failed to address the root issue.\r\n\r\nWe strongly recommend looking into regenerative therapies first for those with back pain who have not had surgery yet. One of the wonderful things about Regenerative Orthopedics for back pain is that the individual can maintain activity and get back to the activities they enjoy without extensive downtime. Treatments and exercise programs are individually tailored to promote healing and return people to their active lives. It’s really an amazing transformation to see people regain their mobility and independence!\r\n<h4>Regenerative Orthopedics helps almost all types of back pain</h4>\r\nRegenerative Orthopedics helps almost all types of back pain: herniated discs, bulging discs, degenerative disc disease, chronic subluxation of the sacroiliac joints, and more. And these treatments may save you from unnecessary surgery because the treatments address the problems causing the instability and offer a way of repair when other treatments often fail.\r\n\r\nRegenerative Orthopedics treatments correct the underlying problem of spinal instability. Without this correction, the patient is more likely to continue on the course of pain and symptom chasing pain management therapies that only temporarily calm the pain. Remember, spinal instability is a progressive disorder, meaning that the area will continue to degenerate until regenerative treatments are used to restore them.','Failed Back Surgery Syndrome','','inherit','closed','closed','','1389-revision-v1','','','2021-04-05 22:40:23','2021-04-05 22:40:23','',1389,'https://www.drfields.com/?p=4608',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (4610,8,'2021-04-05 23:22:35','2021-04-05 23:22:35','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"Dr. Fields Lectured in Mexico City\" href=\"https://www.drfields.com/Articles/Health-News/Mexico-City-Lecture-2018\">Dr. Fields Lectured in Mexico City </a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\"> Are you a Stem Cell Candidate?</a>\r\n<br />\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-04-05 23:22:35','2021-04-05 23:22:35','',2109,'https://www.drfields.com/?p=4610',0,'revision','',0),(4611,8,'2021-04-05 23:23:22','2021-04-05 23:23:22','<h2 class=\"text-center\">Contact Dr. Fields</h2>\r\n<p style=\"text-align: center;\"><strong>To find out if you are a candidate for Stem Cell, PRP or Prolotherapy, call Dr. Fields office at <a href=\"tel:310-453-1234\">310-453-1234</a>, or fill out the Consultation form here.</strong></p>\r\n<div class=\"contact-frm\">[gravityform id=\"1\" title=\"false\" description=\"false\"]</div>','Contact','','inherit','closed','closed','','29-revision-v1','','','2021-04-05 23:23:22','2021-04-05 23:23:22','',29,'https://www.drfields.com/?p=4611',0,'revision','',0),(4612,9,'2021-04-06 00:33:54','2021-04-06 00:33:54','<h2>Neck Pain Relief</h2>\n[caption id=\"attachment_4614\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4614 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cervivcal-Instability-copy-2-500x500.png\" alt=\"Neck Pain Relief\" width=\"500\" height=\"500\" /> <strong>                                   Cervical Instability and Neck Pain</strong>[/caption]\n\nLooking for neck pain relief? Joint pain in the various joints of the body is usually caused by weakness in the soft tissue. And pain in the neck is no different. Relief is possible with non-surgical regenerative therapy.\n\nLigament weakness is very often the underlying cause of neck pain. And it can also be the reason behind the headaches, ear and mouth pain which often accompany neck pain.\n\nRegenerative Orthopedics, such as Prolotherapy, have been proven to stimulate the healing of weakened ligaments behind this pain effectively. That’s great news because these treatments are an answer for those suffering from these ailments and often a way to find permanent pain relief.\n<h4>Neck Ligaments, Cervical Instability, and Symptoms</h4>\nWhen the ligaments of the neck are weakened, the instability that transpires in the neck is called cervical instability. Sufferers with this malady often experience a bunch of bizarre symptoms. In addition to neck pain, symptoms can include dizziness, visual disturbances, eye pressure, mouth pain, sinus congestion, tinnitus, and many others.\n\nInstability of the ligaments of the neck is implicated in conditions like disc herniation, whiplash, cervicocranial syndrome, and spondylosis. When these ligaments are injured, they elongate and become weak. And that allows for excessive movement in the vertebrae of the neck.\n<h3>Symptoms of Upper Neck Instability and Vertebrobasilar Insufficiency</h3>\nThe instability that arises in the upper part of the neck or cervical spine (C0-C2) can manifest symptoms such as vertigo, tinnitus, dizziness, facial pain, arm pain, and migraine headaches.\n\nAlso, a condition called vertebrobasilar insufficiency (VBI) can develop. VBI, with its associated symptoms of neck pain, headaches/migraines, dizziness, drop attacks, vertigo, difficulty swallowing and/or speaking, and auditory and visual disturbances, can develop in instances of upper cervical spine instability.  That\'s because excessive movement in the neck can alter the flow of vertebral arterial blood.\n<h3>Symptoms of Lower Neck Instability</h3>\nSometimes the instability in the neck is located at the lower part of the cervical spine. When the instability is located in the lower neck or cervical spine (C3-C7), the resultant symptoms include muscle spasms, crepitation, and feelings of pins and needles along with neck pain.\n\nAs the instability worsens, so do the symptoms. Surgery to fuse the vertebrae of the neck is often recommended in cases of cervical instability. But those suffering from this condition should seek a consultation from an expert in Regenerative Orthopedics first. Why? Because this therapy can often prevent the need for fusion surgery. Plus, Regenerative Orthopedics can strengthen the involved ligaments and restore proper motion to the neck.\n<h4>The Neck Is Unique</h4>\nThe neck is quite unique! The vertebrae in the neck are smaller and more mobile than all of the movable vertebrae of the spine.  And a high degree of mobility is required of the neck vertebrae to move the head through its varied range of motion.\n\nThese anatomic features are necessary for optimal functioning. But they also make the area more vulnerable to injury due to the demands placed upon the neck. The ligaments of the neck, which are the stabilizing structures primarily responsible for connecting adjacent bones, are especially vulnerable when trauma occurs.\n\nWhen the neck is stable, it moves and functions normally while remaining in proper alignment and protecting the blood vessels, nerves, and spinal cord—injury to the ligaments changes this dynamic. And the injury leads to instability of the cervical spine. Add to that all of the stresses and loads placed upon the neck, and a cycle of imbalance is set in motion generating even more abnormal changes in the vertebral alignment.\n\nRemember that cervical instability involves excessive motion between adjacent vertebrae, which causes excessive stress on the supporting ligaments and the nerve endings within them. The result is a cycle of pain and the associated variety of aforementioned symptoms.\n<h4>Whiplash: A Type of Cervical Instability</h4>\nWhiplash injuries are a common source of cervical instability. The sudden acceleration and deceleration during rear-end collisions cause the head to whip backward and forward severely. The backward “whip,” or hyperextension, is often associated with more injury to the soft tissue of the neck because it lacks the limiting effect of the chin meeting the chest in the forward “whip.” The excessive motion in hyperextension severely strains the involved muscles and ligaments and adjoining neck joints.\n\nThe ligaments of the neck are particularly vulnerable to injury during a whiplash event. And more notably, when the head is rotated at the time of the collision, such as when looking in the rear-view mirror. The ligaments that function to limit side-to-side head movement become susceptible to failure in this turned position, compromising their ability to limit motion.\n\nThe lack of a stabilizing structure can lead to further injury of the soft tissue and joint structures and the possibility of nerve injury and irritation of the sympathetic nervous system. The provocation of these nerve endings alters firing patterns and increases the sympathetic nervous system\'s activation, resulting in a myriad of symptoms. Another condition fraught with these many varied symptoms is called Barré-Liéou Syndrome, or cervicocranial syndrome encompasses.\n<h3>Neck Pain Relief and Resolution of the Underlying Ligament Injury and Symptoms of Cervical Instability with Regenerative Orthopedics</h3>\nRegenerative Orthopedics strengthens weakened ligaments. It is effective in repairing and regenerating the ligaments and structures involved in cervical instability. And the treatment eliminates the instability and abnormal movement, which then resolves the neck pain and associated symptoms.\n\nCervical instability can be a frustrating and life-altering condition. But Regenerative Orthopedics is a safe, non-surgical option that can stabilize the neck and increase functionality in the person suffering from it and essentially help the patient get their life back.\n\nWe have written other articles on <a href=\"https://www.drfields.com/conditions/sports-injuries/neck-injury-treatment/\">neck pain</a> and <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cervical-instability/\">cervical instability</a>. Read them by clicking <a href=\"https://www.drfields.com/?s=cervical+instability\">here</a>.','Neck Pain Relief','','inherit','closed','closed','','1393-autosave-v1','','','2021-04-06 00:33:54','2021-04-06 00:33:54','',1393,'https://www.drfields.com/?p=4612',0,'revision','',0),(4613,9,'2021-04-05 23:30:41','2021-04-05 23:30:41','<h2>Neck Pain Relief</h2>\r\nJoint pain in the various joints of the body is usually caused by some sort of weakness in the soft tissue. Pain in the neck is no different. Ligament weakness is very often the underlying cause of neck pain and it can also be the reason behind headaches, and even ear and mouth pain. Regenerative Orthopedics, such as Prolotherapy, has been proven to effectively stimulate the healing of weakened ligaments that are behind all of this pain. That’s great news because there is an answer for those suffering with these ailments and a way to find permanent pain relief.\r\n<h4>Neck Ligaments and Cervical Instability</h4>\r\nWhen the ligaments of the neck are weakened, the instability that transpires in the neck is called cervical instability. Sufferers with this malady often experience a bunch of bizarre symptoms in addition to neck pain which can include dizziness, visual disturbances, eye pressure, mouth pain, sinus congestion, tinnitus, and many others. Instability of the ligaments of the neck is implicated in conditions like disc herniation, whiplash, cervicocranial syndrome and spondylosis. When these ligaments are injured, they elongate and become weak, which allows for excessive movement in the vertebrae of the neck.\r\n\r\nInstability that arises in the upper part of the neck or cervical spine (C0-C2) can manifest symptoms such as vertigo, tinnitus, dizziness, facial pain, arm pain, and migraine headaches. A condition called vertebrobasilar insufficiency (VBI) with its associated symptoms of neck pain, headaches/migraines, dizziness, drop attacks, vertigo, difficulty swallowing and/or speaking, and auditory and visual disturbances can also develop in instances of upper cervical spine instability, because the excessive movement in the neck can alter the flow of vertebral arterial blood.\r\nWhen the instability is located in the lower neck or cervical spine (C3-C7), the resultant symptoms include muscle spasms, crepitation, and feelings of pins and needles along with neck pain. As the instability worsens, so do the symptoms. Surgery to fuse the vertebrae of the neck is often recommended in cases of cervical instability, but a consultation from an expert in Regenerative Orthopedics should be sought, since this therapy can often prevent the need for the fusion, as well as strengthen the involved ligaments and restore proper motion to the neck.\r\n<h4>The Neck Is Unique</h4>\r\nThe neck is unique, because the vertebrae in the neck are smaller and more mobile than all of the movable vertebrae of the spine. The high degree of mobility in the neck vertebrae is required to move the head through its varied range of motion. These anatomic features are necessary for optimal functioning, but also make the area vulnerable to injury due to the demands placed upon the neck. The ligaments of the neck, which are the stabilizing structures primarily responsible for connecting adjacent bones, are especially vulnerable when trauma occurs. When the neck is stable, it moves and functions normally, while remaining in proper alignment and protecting the blood vessels, nerves and spinal cord. Injury to the ligaments changes this dynamic, and leads to instability of the cervical spine. Add to that all of the stresses and loads placed upon the neck and a cycle of imbalance is set in motion generating even more abnormal changes in the vertebral alignment. Remember that cervical instability involves excessive motion between adjacent vertebrae which causes excessive stress on the supporting ligaments and the nerve endings within them. The result is a cycle of pain and the associated variety of aforementioned symptoms.\r\n<h4>Whiplash: A Type of Cervical Instability</h4>\r\nWhiplash injuries are a common source of cervical instability. The sudden acceleration and deceleration during rear end collisions causes the head to severely whip backwards and forwards. The backward “whip,” or hyperextension, is often associated with more injury to the soft tissue of the neck, because it lacks the limiting effect of the chin meeting the chest in the forward “whip.” The excessive motion in hyperextension severely strains the involved muscles and ligaments, and adjoining neck joints.\r\n\r\nThe ligaments of the neck are particularly vulnerable to injury during a whiplash event and more notably when the head is rotated at the time of collision, such as when looking in the rear-view mirror. The ligaments that function to limit side-to-side head movement become susceptible to failure in this turned position, which then compromises their ability to limit motion. The lack of a stabilizing structure can lead to further injury of the soft tissue and joint structures and the possibility of nerve injury as well as irritation of the sympathetic nervous system. Provocation of these nerve endings alters firing patterns and increases activation of the sympathetic nervous system resulting in a myriad of symptoms, as those that occur in the condition called Barré-Liéou Syndrome or cervicocranial syndrome.\r\n\r\nResolve the Underlying Ligament Injury and the Symptoms with Regenerative Orthopedics\r\nRegenerative Orthopedics strengthens weakened ligaments. It is effective in repairing and regenerating the ligaments and structures involved in cervical instability, eliminating the instability and abnormal movement, which then resolves the neck pain and associated symptoms. Cervical instability can be a frustrating and life-altering condition, but Regenerative Orthopedics, a safe non-surgical option, can stabilize the neck and increase functionality in the person suffering it, and essentially help the patient get their life back.','Neck Pain Relief','','inherit','closed','closed','','1393-revision-v1','','','2021-04-05 23:30:41','2021-04-05 23:30:41','',1393,'https://www.drfields.com/?p=4613',0,'revision','',0),(4614,9,'2021-04-05 23:31:22','2021-04-05 23:31:22','Cervical Instability and Neck Pain','Cervical Instability Copy 2','Cervical Instability and Neck Pain','inherit','open','closed','','cervivcal-instability-copy-2','','','2021-04-05 23:31:58','2021-04-05 23:31:58','',1393,'https://www.drfields.com/wp-content/uploads/2019/06/Cervivcal-Instability-copy-2.png',0,'attachment','image/png',0),(4615,9,'2021-04-05 23:59:54','2021-04-05 23:59:54','<h2>Neck Pain Relief</h2>\r\n[caption id=\"attachment_4614\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4614\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cervivcal-Instability-copy-2-500x500.png\" alt=\"Cervical Instability Copy 2\" width=\"500\" height=\"500\" /> <strong>                                   Cervical Instability and Neck Pain</strong>[/caption]\r\n\r\nJoint pain in the various joints of the body is usually caused by weakness in the soft tissue. Pain in the neck is no different. And neck pain relief is possible with non-surgical regenerative therapy.\r\n\r\nLigament weakness is very often the underlying cause of neck pain. And it can also be the reason behind the headaches, ear and mouth pain which often accompany neck pain.\r\n\r\nRegenerative Orthopedics, such as Prolotherapy, have been proven to stimulate the healing of weakened ligaments behind this pain effectively. That’s great news because these treatments are an answer for those suffering from these ailments and often a way to find permanent pain relief.\r\n<h4>Neck Ligaments and Cervical Instability</h4>\r\nWhen the ligaments of the neck are weakened, the instability that transpires in the neck is called cervical instability. Sufferers with this malady often experience a bunch of bizarre symptoms. In addition to neck pain, symptoms can include dizziness, visual disturbances, eye pressure, mouth pain, sinus congestion, tinnitus, and many others.\r\n\r\nInstability of the ligaments of the neck is implicated in conditions like disc herniation, whiplash, cervicocranial syndrome, and spondylosis. When these ligaments are injured, they elongate and become weak. And that allows for excessive movement in the vertebrae of the neck.\r\n<h3>Symptoms of Upper Neck Instability and Vertebrobasilar Insufficiency</h3>\r\nThe instability that arises in the upper part of the neck or cervical spine (C0-C2) can manifest symptoms such as vertigo, tinnitus, dizziness, facial pain, arm pain, and migraine headaches.\r\n\r\nAlso, a condition called vertebrobasilar insufficiency (VBI) can develop. VBI, with its associated symptoms of neck pain, headaches/migraines, dizziness, drop attacks, vertigo, difficulty swallowing and/or speaking, and auditory and visual disturbances, can develop in instances of upper cervical spine instability.  That\'s because excessive movement in the neck can alter the flow of vertebral arterial blood.\r\n<h3>Symptoms of Lower Neck Instability</h3>\r\nSometimes the instability in the neck is located at the lower part of the cervical spine. When the instability is located in the lower neck or cervical spine (C3-C7), the resultant symptoms include muscle spasms, crepitation, and feelings of pins and needles along with neck pain.\r\n\r\nAs the instability worsens, so do the symptoms. Surgery to fuse the vertebrae of the neck is often recommended in cases of cervical instability. But those suffering from this condition should seek a consultation from an expert in Regenerative Orthopedics first. Why? Because this therapy can often prevent the need for fusion surgery. Plus, Regenerative Orthopedics can strengthen the involved ligaments and restore proper motion to the neck.\r\n<h4>The Neck Is Unique</h4>\r\nThe neck is quite unique! The vertebrae in the neck are smaller and more mobile than all of the movable vertebrae of the spine.  And a high degree of mobility is required of the neck vertebrae to move the head through its varied range of motion.\r\n\r\nThese anatomic features are necessary for optimal functioning. But they also make the area more vulnerable to injury due to the demands placed upon the neck. The ligaments of the neck, which are the stabilizing structures primarily responsible for connecting adjacent bones, are especially vulnerable when trauma occurs.\r\n\r\nWhen the neck is stable, it moves and functions normally while remaining in proper alignment and protecting the blood vessels, nerves, and spinal cord—injury to the ligaments changes this dynamic. And the injury leads to instability of the cervical spine. Add to that all of the stresses and loads placed upon the neck, and a cycle of imbalance is set in motion generating even more abnormal changes in the vertebral alignment.\r\n\r\nRemember that cervical instability involves excessive motion between adjacent vertebrae, which causes excessive stress on the supporting ligaments and the nerve endings within them. The result is a cycle of pain and the associated variety of aforementioned symptoms.\r\n<h4>Whiplash: A Type of Cervical Instability</h4>\r\nWhiplash injuries are a common source of cervical instability. The sudden acceleration and deceleration during rear-end collisions cause the head to whip backward and forward severely. The backward “whip,” or hyperextension, is often associated with more injury to the soft tissue of the neck because it lacks the limiting effect of the chin meeting the chest in the forward “whip.” The excessive motion in hyperextension severely strains the involved muscles and ligaments and adjoining neck joints.\r\n\r\nThe ligaments of the neck are particularly vulnerable to injury during a whiplash event. And more notably, when the head is rotated at the time of the collision, such as when looking in the rear-view mirror. The ligaments that function to limit side-to-side head movement become susceptible to failure in this turned position, compromising their ability to limit motion.\r\n\r\nThe lack of a stabilizing structure can lead to further injury of the soft tissue and joint structures and the possibility of nerve injury and irritation of the sympathetic nervous system. The provocation of these nerve endings alters firing patterns and increases the sympathetic nervous system\'s activation, resulting in a myriad of symptoms. Another condition fraught with these many varied symptoms is called Barré-Liéou Syndrome, or cervicocranial syndrome encompasses.\r\n<h3>Resolve the Underlying Ligament Injury and the Symptoms with Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics strengthens weakened ligaments. It is effective in repairing and regenerating the ligaments and structures involved in cervical instability. And the treatment eliminates the instability and abnormal movement, which then resolves the neck pain and associated symptoms.\r\n\r\nCervical instability can be a frustrating and life-altering condition. But Regenerative Orthopedics is a safe, non-surgical option that can stabilize the neck and increase functionality in the person suffering from it and essentially help the patient get their life back.','Neck Pain Relief','','inherit','closed','closed','','1393-revision-v1','','','2021-04-05 23:59:54','2021-04-05 23:59:54','',1393,'https://www.drfields.com/?p=4615',0,'revision','',0),(4616,9,'2021-04-06 00:01:50','2021-04-06 00:01:50','<h2>Neck Pain Relief</h2>\r\n[caption id=\"attachment_4614\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4614\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cervivcal-Instability-copy-2-500x500.png\" alt=\"Cervical Instability Copy 2\" width=\"500\" height=\"500\" /> <strong>                                   Cervical Instability and Neck Pain</strong>[/caption]\r\n\r\nLooking for neck pain relief? Joint pain in the various joints of the body is usually caused by weakness in the soft tissue. And pain in the neck is no different. Relief is possible with non-surgical regenerative therapy.\r\n\r\nLigament weakness is very often the underlying cause of neck pain. And it can also be the reason behind the headaches, ear and mouth pain which often accompany neck pain.\r\n\r\nRegenerative Orthopedics, such as Prolotherapy, have been proven to stimulate the healing of weakened ligaments behind this pain effectively. That’s great news because these treatments are an answer for those suffering from these ailments and often a way to find permanent pain relief.\r\n<h4>Neck Ligaments and Cervical Instability</h4>\r\nWhen the ligaments of the neck are weakened, the instability that transpires in the neck is called cervical instability. Sufferers with this malady often experience a bunch of bizarre symptoms. In addition to neck pain, symptoms can include dizziness, visual disturbances, eye pressure, mouth pain, sinus congestion, tinnitus, and many others.\r\n\r\nInstability of the ligaments of the neck is implicated in conditions like disc herniation, whiplash, cervicocranial syndrome, and spondylosis. When these ligaments are injured, they elongate and become weak. And that allows for excessive movement in the vertebrae of the neck.\r\n<h3>Symptoms of Upper Neck Instability and Vertebrobasilar Insufficiency</h3>\r\nThe instability that arises in the upper part of the neck or cervical spine (C0-C2) can manifest symptoms such as vertigo, tinnitus, dizziness, facial pain, arm pain, and migraine headaches.\r\n\r\nAlso, a condition called vertebrobasilar insufficiency (VBI) can develop. VBI, with its associated symptoms of neck pain, headaches/migraines, dizziness, drop attacks, vertigo, difficulty swallowing and/or speaking, and auditory and visual disturbances, can develop in instances of upper cervical spine instability.  That\'s because excessive movement in the neck can alter the flow of vertebral arterial blood.\r\n<h3>Symptoms of Lower Neck Instability</h3>\r\nSometimes the instability in the neck is located at the lower part of the cervical spine. When the instability is located in the lower neck or cervical spine (C3-C7), the resultant symptoms include muscle spasms, crepitation, and feelings of pins and needles along with neck pain.\r\n\r\nAs the instability worsens, so do the symptoms. Surgery to fuse the vertebrae of the neck is often recommended in cases of cervical instability. But those suffering from this condition should seek a consultation from an expert in Regenerative Orthopedics first. Why? Because this therapy can often prevent the need for fusion surgery. Plus, Regenerative Orthopedics can strengthen the involved ligaments and restore proper motion to the neck.\r\n<h4>The Neck Is Unique</h4>\r\nThe neck is quite unique! The vertebrae in the neck are smaller and more mobile than all of the movable vertebrae of the spine.  And a high degree of mobility is required of the neck vertebrae to move the head through its varied range of motion.\r\n\r\nThese anatomic features are necessary for optimal functioning. But they also make the area more vulnerable to injury due to the demands placed upon the neck. The ligaments of the neck, which are the stabilizing structures primarily responsible for connecting adjacent bones, are especially vulnerable when trauma occurs.\r\n\r\nWhen the neck is stable, it moves and functions normally while remaining in proper alignment and protecting the blood vessels, nerves, and spinal cord—injury to the ligaments changes this dynamic. And the injury leads to instability of the cervical spine. Add to that all of the stresses and loads placed upon the neck, and a cycle of imbalance is set in motion generating even more abnormal changes in the vertebral alignment.\r\n\r\nRemember that cervical instability involves excessive motion between adjacent vertebrae, which causes excessive stress on the supporting ligaments and the nerve endings within them. The result is a cycle of pain and the associated variety of aforementioned symptoms.\r\n<h4>Whiplash: A Type of Cervical Instability</h4>\r\nWhiplash injuries are a common source of cervical instability. The sudden acceleration and deceleration during rear-end collisions cause the head to whip backward and forward severely. The backward “whip,” or hyperextension, is often associated with more injury to the soft tissue of the neck because it lacks the limiting effect of the chin meeting the chest in the forward “whip.” The excessive motion in hyperextension severely strains the involved muscles and ligaments and adjoining neck joints.\r\n\r\nThe ligaments of the neck are particularly vulnerable to injury during a whiplash event. And more notably, when the head is rotated at the time of the collision, such as when looking in the rear-view mirror. The ligaments that function to limit side-to-side head movement become susceptible to failure in this turned position, compromising their ability to limit motion.\r\n\r\nThe lack of a stabilizing structure can lead to further injury of the soft tissue and joint structures and the possibility of nerve injury and irritation of the sympathetic nervous system. The provocation of these nerve endings alters firing patterns and increases the sympathetic nervous system\'s activation, resulting in a myriad of symptoms. Another condition fraught with these many varied symptoms is called Barré-Liéou Syndrome, or cervicocranial syndrome encompasses.\r\n<h3>Resolve the Underlying Ligament Injury and the Symptoms with Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics strengthens weakened ligaments. It is effective in repairing and regenerating the ligaments and structures involved in cervical instability. And the treatment eliminates the instability and abnormal movement, which then resolves the neck pain and associated symptoms.\r\n\r\nCervical instability can be a frustrating and life-altering condition. But Regenerative Orthopedics is a safe, non-surgical option that can stabilize the neck and increase functionality in the person suffering from it and essentially help the patient get their life back.','Neck Pain Relief','','inherit','closed','closed','','1393-revision-v1','','','2021-04-06 00:01:50','2021-04-06 00:01:50','',1393,'https://www.drfields.com/?p=4616',0,'revision','',0),(4617,9,'2021-04-06 00:27:40','2021-04-06 00:27:40','<h2>Neck Pain Relief</h2>\r\n[caption id=\"attachment_4614\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4614\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cervivcal-Instability-copy-2-500x500.png\" alt=\"Cervical Instability Copy 2\" width=\"500\" height=\"500\" /> <strong>                                   Cervical Instability and Neck Pain</strong>[/caption]\r\n\r\nLooking for neck pain relief? Joint pain in the various joints of the body is usually caused by weakness in the soft tissue. And pain in the neck is no different. Relief is possible with non-surgical regenerative therapy.\r\n\r\nLigament weakness is very often the underlying cause of neck pain. And it can also be the reason behind the headaches, ear and mouth pain which often accompany neck pain.\r\n\r\nRegenerative Orthopedics, such as Prolotherapy, have been proven to stimulate the healing of weakened ligaments behind this pain effectively. That’s great news because these treatments are an answer for those suffering from these ailments and often a way to find permanent pain relief.\r\n<h4>Neck Ligaments, Cervical Instability, and Symptoms</h4>\r\nWhen the ligaments of the neck are weakened, the instability that transpires in the neck is called cervical instability. Sufferers with this malady often experience a bunch of bizarre symptoms. In addition to neck pain, symptoms can include dizziness, visual disturbances, eye pressure, mouth pain, sinus congestion, tinnitus, and many others.\r\n\r\nInstability of the ligaments of the neck is implicated in conditions like disc herniation, whiplash, cervicocranial syndrome, and spondylosis. When these ligaments are injured, they elongate and become weak. And that allows for excessive movement in the vertebrae of the neck.\r\n<h3>Symptoms of Upper Neck Instability and Vertebrobasilar Insufficiency</h3>\r\nThe instability that arises in the upper part of the neck or cervical spine (C0-C2) can manifest symptoms such as vertigo, tinnitus, dizziness, facial pain, arm pain, and migraine headaches.\r\n\r\nAlso, a condition called vertebrobasilar insufficiency (VBI) can develop. VBI, with its associated symptoms of neck pain, headaches/migraines, dizziness, drop attacks, vertigo, difficulty swallowing and/or speaking, and auditory and visual disturbances, can develop in instances of upper cervical spine instability.  That\'s because excessive movement in the neck can alter the flow of vertebral arterial blood.\r\n<h3>Symptoms of Lower Neck Instability</h3>\r\nSometimes the instability in the neck is located at the lower part of the cervical spine. When the instability is located in the lower neck or cervical spine (C3-C7), the resultant symptoms include muscle spasms, crepitation, and feelings of pins and needles along with neck pain.\r\n\r\nAs the instability worsens, so do the symptoms. Surgery to fuse the vertebrae of the neck is often recommended in cases of cervical instability. But those suffering from this condition should seek a consultation from an expert in Regenerative Orthopedics first. Why? Because this therapy can often prevent the need for fusion surgery. Plus, Regenerative Orthopedics can strengthen the involved ligaments and restore proper motion to the neck.\r\n<h4>The Neck Is Unique</h4>\r\nThe neck is quite unique! The vertebrae in the neck are smaller and more mobile than all of the movable vertebrae of the spine.  And a high degree of mobility is required of the neck vertebrae to move the head through its varied range of motion.\r\n\r\nThese anatomic features are necessary for optimal functioning. But they also make the area more vulnerable to injury due to the demands placed upon the neck. The ligaments of the neck, which are the stabilizing structures primarily responsible for connecting adjacent bones, are especially vulnerable when trauma occurs.\r\n\r\nWhen the neck is stable, it moves and functions normally while remaining in proper alignment and protecting the blood vessels, nerves, and spinal cord—injury to the ligaments changes this dynamic. And the injury leads to instability of the cervical spine. Add to that all of the stresses and loads placed upon the neck, and a cycle of imbalance is set in motion generating even more abnormal changes in the vertebral alignment.\r\n\r\nRemember that cervical instability involves excessive motion between adjacent vertebrae, which causes excessive stress on the supporting ligaments and the nerve endings within them. The result is a cycle of pain and the associated variety of aforementioned symptoms.\r\n<h4>Whiplash: A Type of Cervical Instability</h4>\r\nWhiplash injuries are a common source of cervical instability. The sudden acceleration and deceleration during rear-end collisions cause the head to whip backward and forward severely. The backward “whip,” or hyperextension, is often associated with more injury to the soft tissue of the neck because it lacks the limiting effect of the chin meeting the chest in the forward “whip.” The excessive motion in hyperextension severely strains the involved muscles and ligaments and adjoining neck joints.\r\n\r\nThe ligaments of the neck are particularly vulnerable to injury during a whiplash event. And more notably, when the head is rotated at the time of the collision, such as when looking in the rear-view mirror. The ligaments that function to limit side-to-side head movement become susceptible to failure in this turned position, compromising their ability to limit motion.\r\n\r\nThe lack of a stabilizing structure can lead to further injury of the soft tissue and joint structures and the possibility of nerve injury and irritation of the sympathetic nervous system. The provocation of these nerve endings alters firing patterns and increases the sympathetic nervous system\'s activation, resulting in a myriad of symptoms. Another condition fraught with these many varied symptoms is called Barré-Liéou Syndrome, or cervicocranial syndrome encompasses.\r\n<h3>Neck Pain Relief and Resolution of the Underlying Ligament Injury and Symptoms of Cervical Instability with Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics strengthens weakened ligaments. It is effective in repairing and regenerating the ligaments and structures involved in cervical instability. And the treatment eliminates the instability and abnormal movement, which then resolves the neck pain and associated symptoms.\r\n\r\nCervical instability can be a frustrating and life-altering condition. But Regenerative Orthopedics is a safe, non-surgical option that can stabilize the neck and increase functionality in the person suffering from it and essentially help the patient get their life back.','Neck Pain Relief','','inherit','closed','closed','','1393-revision-v1','','','2021-04-06 00:27:40','2021-04-06 00:27:40','',1393,'https://www.drfields.com/?p=4617',0,'revision','',0),(4618,9,'2021-04-06 00:34:42','2021-04-06 00:34:42','<h2>Neck Pain Relief</h2>\r\n[caption id=\"attachment_4614\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4614 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cervivcal-Instability-copy-2-500x500.png\" alt=\"Neck Pain Relief\" width=\"500\" height=\"500\" /> <strong>                                   Cervical Instability and Neck Pain</strong>[/caption]\r\n\r\nLooking for neck pain relief? Joint pain in the various joints of the body is usually caused by weakness in the soft tissue. And pain in the neck is no different. Relief is possible with non-surgical regenerative therapy.\r\n\r\nLigament weakness is very often the underlying cause of neck pain. And it can also be the reason behind the headaches, ear and mouth pain which often accompany neck pain.\r\n\r\nRegenerative Orthopedics, such as Prolotherapy, have been proven to stimulate the healing of weakened ligaments behind this pain effectively. That’s great news because these treatments are an answer for those suffering from these ailments and often a way to find permanent pain relief.\r\n<h4>Neck Ligaments, Cervical Instability, and Symptoms</h4>\r\nWhen the ligaments of the neck are weakened, the instability that transpires in the neck is called cervical instability. Sufferers with this malady often experience a bunch of bizarre symptoms. In addition to neck pain, symptoms can include dizziness, visual disturbances, eye pressure, mouth pain, sinus congestion, tinnitus, and many others.\r\n\r\nInstability of the ligaments of the neck is implicated in conditions like disc herniation, whiplash, cervicocranial syndrome, and spondylosis. When these ligaments are injured, they elongate and become weak. And that allows for excessive movement in the vertebrae of the neck.\r\n<h3>Symptoms of Upper Neck Instability and Vertebrobasilar Insufficiency</h3>\r\nThe instability that arises in the upper part of the neck or cervical spine (C0-C2) can manifest symptoms such as vertigo, tinnitus, dizziness, facial pain, arm pain, and migraine headaches.\r\n\r\nAlso, a condition called vertebrobasilar insufficiency (VBI) can develop. VBI, with its associated symptoms of neck pain, headaches/migraines, dizziness, drop attacks, vertigo, difficulty swallowing and/or speaking, and auditory and visual disturbances, can develop in instances of upper cervical spine instability.  That\'s because excessive movement in the neck can alter the flow of vertebral arterial blood.\r\n<h3>Symptoms of Lower Neck Instability</h3>\r\nSometimes the instability in the neck is located at the lower part of the cervical spine. When the instability is located in the lower neck or cervical spine (C3-C7), the resultant symptoms include muscle spasms, crepitation, and feelings of pins and needles along with neck pain.\r\n\r\nAs the instability worsens, so do the symptoms. Surgery to fuse the vertebrae of the neck is often recommended in cases of cervical instability. But those suffering from this condition should seek a consultation from an expert in Regenerative Orthopedics first. Why? Because this therapy can often prevent the need for fusion surgery. Plus, Regenerative Orthopedics can strengthen the involved ligaments and restore proper motion to the neck.\r\n<h4>The Neck Is Unique</h4>\r\nThe neck is quite unique! The vertebrae in the neck are smaller and more mobile than all of the movable vertebrae of the spine.  And a high degree of mobility is required of the neck vertebrae to move the head through its varied range of motion.\r\n\r\nThese anatomic features are necessary for optimal functioning. But they also make the area more vulnerable to injury due to the demands placed upon the neck. The ligaments of the neck, which are the stabilizing structures primarily responsible for connecting adjacent bones, are especially vulnerable when trauma occurs.\r\n\r\nWhen the neck is stable, it moves and functions normally while remaining in proper alignment and protecting the blood vessels, nerves, and spinal cord—injury to the ligaments changes this dynamic. And the injury leads to instability of the cervical spine. Add to that all of the stresses and loads placed upon the neck, and a cycle of imbalance is set in motion generating even more abnormal changes in the vertebral alignment.\r\n\r\nRemember that cervical instability involves excessive motion between adjacent vertebrae, which causes excessive stress on the supporting ligaments and the nerve endings within them. The result is a cycle of pain and the associated variety of aforementioned symptoms.\r\n<h4>Whiplash: A Type of Cervical Instability</h4>\r\nWhiplash injuries are a common source of cervical instability. The sudden acceleration and deceleration during rear-end collisions cause the head to whip backward and forward severely. The backward “whip,” or hyperextension, is often associated with more injury to the soft tissue of the neck because it lacks the limiting effect of the chin meeting the chest in the forward “whip.” The excessive motion in hyperextension severely strains the involved muscles and ligaments and adjoining neck joints.\r\n\r\nThe ligaments of the neck are particularly vulnerable to injury during a whiplash event. And more notably, when the head is rotated at the time of the collision, such as when looking in the rear-view mirror. The ligaments that function to limit side-to-side head movement become susceptible to failure in this turned position, compromising their ability to limit motion.\r\n\r\nThe lack of a stabilizing structure can lead to further injury of the soft tissue and joint structures and the possibility of nerve injury and irritation of the sympathetic nervous system. The provocation of these nerve endings alters firing patterns and increases the sympathetic nervous system\'s activation, resulting in a myriad of symptoms. Another condition fraught with these many varied symptoms is called Barré-Liéou Syndrome, or cervicocranial syndrome encompasses.\r\n<h3>Neck Pain Relief and Resolution of the Underlying Ligament Injury and Symptoms of Cervical Instability with Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics strengthens weakened ligaments. It is effective in repairing and regenerating the ligaments and structures involved in cervical instability. And the treatment eliminates the instability and abnormal movement, which then resolves the neck pain and associated symptoms.\r\n\r\nCervical instability can be a frustrating and life-altering condition. But Regenerative Orthopedics is a safe, non-surgical option that can stabilize the neck. Plus, it can increase functionality in the person suffering from it and essentially help the patient get their life back.\r\n\r\nWe have written other articles on <a href=\"https://www.drfields.com/conditions/sports-injuries/neck-injury-treatment/\">neck pain</a> and <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cervical-instability/\">cervical instability</a>. Read them by clicking <a href=\"https://www.drfields.com/?s=cervical+instability\">here</a>.','Neck Pain Relief','','inherit','closed','closed','','1393-revision-v1','','','2021-04-06 00:34:42','2021-04-06 00:34:42','',1393,'https://www.drfields.com/?p=4618',0,'revision','',0),(4619,8,'2021-04-07 20:23:21','2021-04-07 20:23:21','','iwp_log_606e14b99241a','','publish','closed','closed','','iwp_log_606e14b99241a','','','2021-04-07 20:23:21','2021-04-07 20:23:21','',0,'https://www.drfields.com/iwp_log/iwp_log_606e14b99241a/',0,'iwp_log','',0),(4620,8,'2021-04-07 20:24:08','2021-04-07 20:24:08','','iwp_log_606e14e8d1785','','publish','closed','closed','','iwp_log_606e14e8d1785','','','2021-04-07 20:24:08','2021-04-07 20:24:08','',0,'https://www.drfields.com/iwp_log/iwp_log_606e14e8d1785/',0,'iwp_log','',0),(4621,8,'2021-04-14 16:58:22','2021-04-14 16:58:22','','iwp_log_60771f2e1be7b','','publish','closed','closed','','iwp_log_60771f2e1be7b','','','2021-04-14 16:58:22','2021-04-14 16:58:22','',0,'https://www.drfields.com/iwp_log/iwp_log_60771f2e1be7b/',0,'iwp_log','',0),(4623,9,'2021-04-16 01:54:38','2021-04-16 01:54:38','<h2>Relief from Arthritis Pain that Lasts!</h2>\n[caption id=\"attachment_4625\" align=\"alignright\" width=\"400\"]<img class=\"wp-image-4625 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/avoid-replacement-400x500.png\" alt=\"Avoid Replacement\" width=\"400\" height=\"500\" /> Get Lasting Arthritis Pain Relief with Regenerative Orthopedics[/caption]\n\nAnyone with arthritis is familiar with the ongoing pain, joint stiffness, and the limitations the disease causes. Arthritis damages the joints, and the progressive loss of cartilage changes the joint structure. And that changes the way the joint moves. We are all aware of how limiting this disease is! And many of us are on a quest to find lasting relief from arthritis pain.\n\n<strong>Arthritis affects us at home, in our workplace, and while attempting to enjoy activities we love.</strong> Besides that, arthritis affects our finances. We lose pay because of hours of work lost. Then there is the cost for surgery, rehabilitation, various treatments, pain medications, and disability. Arthritis is a huge health concern.\n\nIn this article, we will discuss how to find lasting relief from arthritis pain. And to understand how to find relief, it helps to know how the condition develops in the first place.\n<h3>What’s the Reason behind Arthritis?</h3>\nArthritis does not just happen because of old age. There is a reason for it. Arthritis occurs over time. But it occurs as a result of joint instability. And the instability transpires after some injury that never fully healed. Of course, the eventual cartilage loss with its inhibition of joint motion plays a central role in arthritis. But that’s not where it all began.\n\nInjury to or failure of other joint structures, such as an injured ligament or tendon, actually initiates the change in equilibrium that leads to this breakdown of cartilage. <strong>Arthritis almost always begins with ligament weakness or injury.</strong> And that injury initiates a cycle of abnormal motion in the joint, which eventually changes the structure and function of the joint.\n\nLigaments hold the bones together. And along with healthy cartilage and other soft tissue, they allow for smooth joint motion. When the ligaments are weak due to injury, the motion becomes uneven. That uneven motion puts stress on other areas of the joint, which then causes some areas of bone to bear additional weight on the articular cartilage. This uneven distribution worsens and worsens with ongoing joint stress. And that weakens the ligaments further, causing additional instability of the joint.\n\nThe whole process leads to the eventual breakdown of the articular cartilage. The joint then is unable to glide smoothly, which causes limitations in joint function. The unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing and exposure of the underlying subchondral bone. And that precipitates the process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called <strong>osteoarthritis</strong>.\n<h3>Arthritis Pain and Symptoms</h3>\nArthritis typically causes pain, but not everyone is symptomatic. People with arthritis do not all have the same level of symptoms. And the same degree of arthritis can involve various levels of pain. When pain does arise, it generally occurs with activity and is relieved by rest.\n\nAny joint can be affected by arthritis. But it is found more commonly in the weight-bearing joints, like the knees, hips, and back. Arthritis pain and symptoms generally start and get worse with movement and activity. And in the beginning, they often go away at rest.\n\nAs the condition progresses, pain is present at rest too. At this point, pain is commonly experienced as a non-localized deep, aching pain accompanied by joint stiffness. In time, the aching and stiffness curtail activity and function. Since arthritis puts limitations on life, emotional symptoms develop as well. Since arthritis limits people from the enjoyment of doing the things they love, psychological distress is understandable.\n\n<strong>Interestingly, the pain of arthritis does not come from the cartilage!</strong> There are <strong>no</strong> nerve fibers or blood vessels in cartilage tissue. And therefore, cartilage is incapable of generating pain or inflammation or any of the symptoms commonly described with arthritis. The pain actually comes from the ligaments, tendons, and their insertion sites at the bone, which are all highly innervated. Lasting relief from arthritis pain will need to come from treatment at the source of the pain.\n<h3>Diagnosing Arthritis</h3>\nArthritis is diagnosed after a thorough history and physical examination. Radiography can be utilized to confirm the presence of joint space narrowing and bone spurs and to rule out the presence of other conditions.\n<h3>Relief from Arthritis Pain that Lasts with Regenerative Orthopedics</h3>\nSince arthritis begins with injury to the soft tissue structures like the ligaments and tendons, treatments that target repair of these structures are needed to restore joint physiology and biomechanics. Otherwise, the cycle will continue. Regenerative Orthopedic therapies, such as Stem Cell Therapy, PRP, and Prolotherapy, target the ligaments, tendons, and their insertion sites.\n\nBy treating the problem\'s source, regenerative medicine physicians can fix the involved structures and stabilize the joint. The treatments end the abnormal joint motion, stabilizing the joint and effectively stopping the cycle.\n<h3>If You Want Lasting Relief from Arthritis Pain: Regenerate, Don\'t Degenerate!</h3>\nIt is important to choose treatments that repair rather than cover up or mask the symptoms. Regenerative Orthopedic treatments increase blood flow in the tissue. And the result is an increase in the flow of immune cells to the injured tissue. That triggers the repair process! The solutions act as proliferants that boost the natural wound healing cascades, resulting in strengthening and repairing the injured joint structures.\n\nRegenerative Orthopedics offers benefits in pain relief, regenerative properties, and cartilage repair for people affected by arthritis. And they result in lasting relief from arthritis pain!\n<h3>The Gold Standard in Regenerative Therapies</h3>\nIn patients with more advanced arthritic conditions, the Gold Standard in Stem Cell Therapy can be utilized, which combines Prolotherapy with components of blood, fat, and bone marrow. Many clinics use only one or two of these procedures. But we have discovered that this combination of four regenerative therapies acts as an amazing regenerative solution to reverse arthritis damage on the joint.\n\nArthritis is a complex and unique condition, affecting individuals and those they love. In a time when healthcare providers have limited options for effective arthritis treatment and pain resolution, Regenerative Orthopedics is a promising treatment option. It is an option that aids in the relief of pain and one that results in increased motion. Plus, it provides gains in function and quality of life.\n\nThese treatments stimulate the regrowth of the injured tissue and tighten the ligaments around the joint, which often reduces joint pain immediately. They are safe and effective and are amazing non-surgical alternatives, with the potential to slow the disease progression, get rid of pain, and promote the regeneration of cartilage. What a great opportunity for healing and return to function for those suffering from the pain and disability of arthritis! Get lasting relief from arthritis pain with Regenerative Orthopedics!\n\nInterested in reading more about relief from arthritis pain with Regenerative Orthopedics? Great! We have more articles. Click <a href=\"https://www.drfields.com/?s=arthritis\">here</a> to read articles about arthritis pain relief.','Get Lasting Relief from Arthritis Pain','','inherit','closed','closed','','1381-autosave-v1','','','2021-04-16 01:54:38','2021-04-16 01:54:38','',1381,'https://www.drfields.com/?p=4623',0,'revision','',0),(4624,9,'2021-04-16 01:07:46','2021-04-16 01:07:46','<h2>Find Lasting Relief from Arthritis Pain</h2>\r\nAnyone suffering from arthritis is familiar with the ongoing pain, joint stiffness, and the limitations the disease causes. Arthritis damages the joints and the progressive loss of cartilage changes the joint structure. And that changes the way the joint moves. We are all aware of how limiting this disease is! And many of us are on a quest to find relief from arthritis pain.\r\n\r\n<strong>Arthritis affects us at home, in our workplace, and when we try to enjoy the activities we love.</strong> In addition, arthritis affects our finances, from hours of work lost to the cost for surgery, rehabilitation, various treatments, pain medications, and disability. Arthritis is a huge health concern. In order to understand how to find relief from arthritis pain, it helps to know how the condition develops in the first place.\r\n<h3>What’s the Reason behind Arthritis?</h3>\r\nArthritis does not just happen because of old age. There is a reason for it. Arthritis occurs over time. But it occurs as a result of joint instability. And the instability transpires after some type of injury that never fully healed. Of course, the eventual cartilage loss with its inhibition of joint motion plays a central role in arthritis. But that’s not where it all began.\r\n\r\nInjury to or failure of other joint structures, such as an injured ligament or tendon, actually initiates the change in equilibrium that leads to this breakdown of cartilage. <strong>Arthritis almost always begins with ligament weakness or injury.</strong> And that injury initiates a cycle of abnormal motion in the joint which eventually changes the structure and function of the joint.\r\n\r\nLigaments hold the bones together. And along with healthy cartilage and other soft tissue, they allow for smooth joint motion. When the ligaments are weak due to injury, the motion becomes uneven. That uneven motion puts stress on other areas of the joint, which then causes some areas of bone to bear additional weight on the articular cartilage. This uneven distribution worsens and worsens with ongoing joint stress. And that weakens the ligaments further, causing additional instability of the joint.\r\n\r\nThe whole process leads to the eventual breakdown of the articular cartilage. The joint then is unable to glide smoothly which causes limitations in joint function. The unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing and exposure of the underlying subchondral bone. And that precipitates the process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called <strong>osteoarthritis</strong>.\r\n<h3>Arthritis Pain and Symptoms</h3>\r\nArthritis typically causes pain, but not everyone is symptomatic. Plus, people with the same degree of arthritis can experience various levels of pain. When pain does arise, it generally occurs with activity and is relieved by rest. Arthritis can affect any joint, but it is more common in the weight bearing joints, like the knees, hips, and back. The symptoms generally start and get worse with movement and activity, and go away at rest. As the condition progresses, pain is present at rest too, and is commonly experienced as a non-localized deep, aching pain accompanied by joint stiffness. In time, the aching and stiffness curtail activity and function. Since arthritis puts limitations on life, and the enjoyment of doing the things people love, psychological distress is understandably another associated factor endured by those who suffer from it.\r\n\r\nAnother interesting point is that the pain in arthritis is not coming from the cartilage! There are no nerve fibers or blood vessels in cartilage tissue, and therefore it is incapable of generating pain or inflammation or any of the symptoms commonly described with arthritis. The pain actually comes from the ligaments, tendons and their insertion sites at the bone, which are all highly innervated.\r\n<h6>Diagnosing Arthritis</h6>\r\nArthritis is diagnosed after a thorough history and physical examination. Radiography can be utilized to confirm the presence of joint space narrowing and bone spurs, and to rule out the presence of other conditions.\r\n\r\nRegenerative Orthopedic Treatments Target and Repair the Source of Injury\r\nSince arthritis begins with injury to the soft tissue structures like the ligaments and tendons, treatments that target repair of these structures are needed to restore the joint physiology and biomechanics. Otherwise the cycle will continue. Regenerative Orthopedic therapies, such as Stem Cell Therapy, PRP and Prolotherapy, target the ligaments, tendons and their insertion sites, and treat the source of the problem, fixing the involved structures and stabilizing the joint. They put an end to the abnormal joint motion so the joint becomes stabilized and effectively stop the cycle.\r\n\r\nIt is important to choose treatments that repair, rather than those that just cover up or mask the symptoms. Regenerative Orthopedic treatments increase blood flow in the tissue which causes an increase in the flow of immune cells to the injured tissue, which triggers the repair process. The solutions act as proliferants and boost the natural wound healing cascades, resulting in strengthening and repair of the injured joint structures. Regenerative Orthopedics offers benefits in terms of pain relief, regenerative properties, and cartilage repair for people affected by arthritis.\r\n\r\nIn patients with more advanced arthritic conditions, the Gold Standard in Stem Cell Therapy can be utilized, which combines Prolotherapy with components of blood, fat, and bone marrow. Many clinics use only one or two of these procedures, but we have discovered that this combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint.\r\n\r\nArthritis is a complex and unique condition, affecting individuals and those they love. In a time when healthcare providers have limited options for effective arthritis treatment and pain resolution, Regenerative Orthopedics is a promising treatment option to aid in relief of pain, results in increased motion, and provides gains in function and quality of life. These treatments stimulate the regrowth of the injured tissue, and tighten the ligaments around the joint, which often reduces joint pain immediately. They are safe and effective and are amazing non-surgical alteratives, with the potential to slow the disease progression, get rid of pain, and promote the regeneration of cartilage. What a great opportunity for healing and return to function for those suffering from the pain and disability of arthritis!','Relieve Arthritis Pain','','inherit','closed','closed','','1381-revision-v1','','','2021-04-16 01:07:46','2021-04-16 01:07:46','',1381,'https://www.drfields.com/?p=4624',0,'revision','',0),(4625,9,'2021-04-16 01:09:30','2021-04-16 01:09:30','Avoid Replacement','Avoid Replacement','Get Lasting Arthritis Pain Relief with Regenerative Orthopedics','inherit','open','closed','','avoid-replacement','','','2021-04-16 01:23:45','2021-04-16 01:23:45','',1381,'https://www.drfields.com/wp-content/uploads/2019/06/avoid-replacement.png',0,'attachment','image/png',0),(4626,9,'2021-04-16 01:25:53','2021-04-16 01:25:53','<h2>Get Lasting Relief from Arthritis Pain</h2>\r\n[caption id=\"attachment_4625\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4625\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/avoid-replacement-400x500.png\" alt=\"Avoid Replacement\" width=\"400\" height=\"500\" /> Get Lasting Arthritis Pain Relief with Regenerative Orthopedics<span style=\"font-size: 16px;\">Get Lasting Arthritis Pain Relief</span>[/caption]\r\n\r\nAnyone suffering from arthritis is familiar with the ongoing pain, joint stiffness, and the limitations the disease causes. Arthritis damages the joints and the progressive loss of cartilage changes the joint structure. And that changes the way the joint moves. We are all aware of how limiting this disease is! And many of us are on a quest to find relief from arthritis pain.\r\n\r\n<strong>Arthritis affects us at home, in our workplace, and when we try to enjoy the activities we love.</strong> In addition, arthritis affects our finances, from hours of work lost to the cost for surgery, rehabilitation, various treatments, pain medications, and disability. Arthritis is a huge health concern. In order to understand how to find relief from arthritis pain, it helps to know how the condition develops in the first place.\r\n<h3>What’s the Reason behind Arthritis?</h3>\r\nArthritis does not just happen because of old age. There is a reason for it. Arthritis occurs over time. But it occurs as a result of joint instability. And the instability transpires after some type of injury that never fully healed. Of course, the eventual cartilage loss with its inhibition of joint motion plays a central role in arthritis. But that’s not where it all began.\r\n\r\nInjury to or failure of other joint structures, such as an injured ligament or tendon, actually initiates the change in equilibrium that leads to this breakdown of cartilage. <strong>Arthritis almost always begins with ligament weakness or injury.</strong> And that injury initiates a cycle of abnormal motion in the joint which eventually changes the structure and function of the joint.\r\n\r\nLigaments hold the bones together. And along with healthy cartilage and other soft tissue, they allow for smooth joint motion. When the ligaments are weak due to injury, the motion becomes uneven. That uneven motion puts stress on other areas of the joint, which then causes some areas of bone to bear additional weight on the articular cartilage. This uneven distribution worsens and worsens with ongoing joint stress. And that weakens the ligaments further, causing additional instability of the joint.\r\n\r\nThe whole process leads to the eventual breakdown of the articular cartilage. The joint then is unable to glide smoothly which causes limitations in joint function. The unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing and exposure of the underlying subchondral bone. And that precipitates the process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called <strong>osteoarthritis</strong>.\r\n<h3>Arthritis Pain and Symptoms</h3>\r\nArthritis typically causes pain, but not everyone is symptomatic. People with arthritis do not all have the same level of symptoms. And the same degree of arthritis can involve various levels of pain. When pain does arise, it generally occurs with activity and is relieved by rest.\r\n\r\nAny joint can be affected by arthritis. But it is found more commonly in the weight-bearing joints, like the knees, hips, and back. Arthritis pain and symptoms generally start and get worse with movement and activity. And in the beginning, they often go away at rest.\r\n\r\nAs the condition progresses, pain is present at rest too. At this point, pain is commonly experienced as a non-localized deep, aching pain accompanied by joint stiffness. In time, the aching and stiffness curtail activity and function. Since arthritis puts limitations on life, emotional symptoms develop as well. Since arthritis limits people from the enjoyment of doing the things they love, psychological distress is understandable.\r\n\r\n<strong>Interestingly, the pain of arthritis does not come from the cartilage!</strong> There are <strong>no</strong> nerve fibers or blood vessels in cartilage tissue. And therefore, cartilage is incapable of generating pain or inflammation or any of the symptoms commonly described with arthritis. The pain actually comes from the ligaments, tendons, and their insertion sites at the bone, which are all highly innervated.\r\n<h3>Diagnosing Arthritis</h3>\r\nArthritis is diagnosed after a thorough history and physical examination. Radiography can be utilized to confirm the presence of joint space narrowing and bone spurs, and to rule out the presence of other conditions.\r\n\r\nRegenerative Orthopedic Treatments Target and Repair the Source of Injury\r\nSince arthritis begins with injury to the soft tissue structures like the ligaments and tendons, treatments that target repair of these structures are needed to restore the joint physiology and biomechanics. Otherwise the cycle will continue. Regenerative Orthopedic therapies, such as Stem Cell Therapy, PRP and Prolotherapy, target the ligaments, tendons and their insertion sites, and treat the source of the problem, fixing the involved structures and stabilizing the joint. They put an end to the abnormal joint motion so the joint becomes stabilized and effectively stop the cycle.\r\n\r\nIt is important to choose treatments that repair, rather than those that just cover up or mask the symptoms. Regenerative Orthopedic treatments increase blood flow in the tissue which causes an increase in the flow of immune cells to the injured tissue, which triggers the repair process. The solutions act as proliferants and boost the natural wound healing cascades, resulting in strengthening and repair of the injured joint structures. Regenerative Orthopedics offers benefits in terms of pain relief, regenerative properties, and cartilage repair for people affected by arthritis.\r\n\r\nIn patients with more advanced arthritic conditions, the Gold Standard in Stem Cell Therapy can be utilized, which combines Prolotherapy with components of blood, fat, and bone marrow. Many clinics use only one or two of these procedures, but we have discovered that this combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint.\r\n\r\nArthritis is a complex and unique condition, affecting individuals and those they love. In a time when healthcare providers have limited options for effective arthritis treatment and pain resolution, Regenerative Orthopedics is a promising treatment option to aid in relief of pain, results in increased motion, and provides gains in function and quality of life. These treatments stimulate the regrowth of the injured tissue, and tighten the ligaments around the joint, which often reduces joint pain immediately. They are safe and effective and are amazing non-surgical alternatives, with the potential to slow the disease progression, get rid of pain, and promote the regeneration of cartilage. What a great opportunity for healing and return to function for those suffering from the pain and disability of arthritis!','Get Lasting Relief from Arthritis Pain','','inherit','closed','closed','','1381-revision-v1','','','2021-04-16 01:25:53','2021-04-16 01:25:53','',1381,'https://www.drfields.com/?p=4626',0,'revision','',0),(4627,9,'2021-04-16 01:38:23','2021-04-16 01:38:23','<h2>Relief from Arthritis Pain that Lasts!</h2>\r\n[caption id=\"attachment_4625\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4625\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/avoid-replacement-400x500.png\" alt=\"Avoid Replacement\" width=\"400\" height=\"500\" /> Get Lasting Arthritis Pain Relief with Regenerative Orthopedics<span style=\"font-size: 16px;\">Get Lasting Arthritis Pain Relief</span>[/caption]\r\n\r\nAnyone suffering from arthritis is familiar with the ongoing pain, joint stiffness, and the limitations the disease causes. Arthritis damages the joints and the progressive loss of cartilage changes the joint structure. And that changes the way the joint moves. We are all aware of how limiting this disease is! And many of us are on a quest to find lasting relief from arthritis pain.\r\n\r\n<strong>Arthritis affects us at home, in our workplace, and when we try to enjoy the activities we love.</strong> In addition, arthritis affects our finances, from hours of work lost to the cost for surgery, rehabilitation, various treatments, pain medications, and disability. Arthritis is a huge health concern. In order to understand how to find relief from arthritis pain, it helps to know how the condition develops in the first place.\r\n<h3>What’s the Reason behind Arthritis?</h3>\r\nArthritis does not just happen because of old age. There is a reason for it. Arthritis occurs over time. But it occurs as a result of joint instability. And the instability transpires after some type of injury that never fully healed. Of course, the eventual cartilage loss with its inhibition of joint motion plays a central role in arthritis. But that’s not where it all began.\r\n\r\nInjury to or failure of other joint structures, such as an injured ligament or tendon, actually initiates the change in equilibrium that leads to this breakdown of cartilage. <strong>Arthritis almost always begins with ligament weakness or injury.</strong> And that injury initiates a cycle of abnormal motion in the joint which eventually changes the structure and function of the joint.\r\n\r\nLigaments hold the bones together. And along with healthy cartilage and other soft tissue, they allow for smooth joint motion. When the ligaments are weak due to injury, the motion becomes uneven. That uneven motion puts stress on other areas of the joint, which then causes some areas of bone to bear additional weight on the articular cartilage. This uneven distribution worsens and worsens with ongoing joint stress. And that weakens the ligaments further, causing additional instability of the joint.\r\n\r\nThe whole process leads to the eventual breakdown of the articular cartilage. The joint then is unable to glide smoothly which causes limitations in joint function. The unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing and exposure of the underlying subchondral bone. And that precipitates the process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called <strong>osteoarthritis</strong>.\r\n<h3>Arthritis Pain and Symptoms</h3>\r\nArthritis typically causes pain, but not everyone is symptomatic. People with arthritis do not all have the same level of symptoms. And the same degree of arthritis can involve various levels of pain. When pain does arise, it generally occurs with activity and is relieved by rest.\r\n\r\nAny joint can be affected by arthritis. But it is found more commonly in the weight-bearing joints, like the knees, hips, and back. Arthritis pain and symptoms generally start and get worse with movement and activity. And in the beginning, they often go away at rest.\r\n\r\nAs the condition progresses, pain is present at rest too. At this point, pain is commonly experienced as a non-localized deep, aching pain accompanied by joint stiffness. In time, the aching and stiffness curtail activity and function. Since arthritis puts limitations on life, emotional symptoms develop as well. Since arthritis limits people from the enjoyment of doing the things they love, psychological distress is understandable.\r\n\r\n<strong>Interestingly, the pain of arthritis does not come from the cartilage!</strong> There are <strong>no</strong> nerve fibers or blood vessels in cartilage tissue. And therefore, cartilage is incapable of generating pain or inflammation or any of the symptoms commonly described with arthritis. The pain actually comes from the ligaments, tendons, and their insertion sites at the bone, which are all highly innervated. Lasting relief from arthritis pain will need to come from treatment at the source of the pain.\r\n<h3>Diagnosing Arthritis</h3>\r\nArthritis is diagnosed after a thorough history and physical examination. Radiography can be utilized to confirm the presence of joint space narrowing and bone spurs, and to rule out the presence of other conditions.\r\n<h3>Regenerative Orthopedic Treatments Target and Repair the Source of Injury</h3>\r\nSince arthritis begins with injury to the soft tissue structures like the ligaments and tendons, treatments that target repair of these structures are needed to restore joint physiology and biomechanics. Otherwise the cycle will continue. Regenerative Orthopedic therapies, such as Stem Cell Therapy, PRP and Prolotherapy, target the ligaments, tendons and their insertion sites.\r\n\r\nAnd by treating the source of the problem, regenerative medicine physicians are able to fix the involved structures and stabilize the joint. The treatments put an end to the abnormal joint motion, stabilizing the joint, and effectively stopping the cycle.\r\n<h3>Regenerate, Don\'t Degenerate!</h3>\r\nIt is important to choose treatments that repair, rather than those that just cover up or mask the symptoms. Regenerative Orthopedic treatments increase blood flow in the tissue. And the result is an increase in the flow of immune cells to the injured tissue. That triggers the repair process! The solutions act as proliferants that boost the natural wound healing cascades, resulting in strengthening and repair of the injured joint structures.\r\n\r\nRegenerative Orthopedics offers benefits in terms of pain relief, regenerative properties, and cartilage repair for people affected by arthritis. And they result in lasting relief from arthritis pain!\r\n<h3>The Gold Standard in Regenerative Therapies</h3>\r\nIn patients with more advanced arthritic conditions, the Gold Standard in Stem Cell Therapy can be utilized, which combines Prolotherapy with components of blood, fat, and bone marrow. Many clinics use only one or two of these procedures, but we have discovered that this combination of four regenerative therapies acts as an amazing regenerative solution to reverse the damage of arthritis on the joint.\r\n\r\nArthritis is a complex and unique condition, affecting individuals and those they love. In a time when healthcare providers have limited options for effective arthritis treatment and pain resolution, Regenerative Orthopedics is a promising treatment option. It is an option that aids in the relief of pain, and one that results in increased motion. Plus, it provides gains in function and quality of life.\r\n\r\nThese treatments stimulate the regrowth of the injured tissue, and tighten the ligaments around the joint, which often reduces joint pain immediately. They are safe and effective and are amazing non-surgical alternatives, with the potential to slow the disease progression, get rid of pain, and promote the regeneration of cartilage. What a great opportunity for healing and return to function for those suffering from the pain and disability of arthritis! Get lasting relief from arthritis pain with Regenerative Orthopedics!','Get Lasting Relief from Arthritis Pain','','inherit','closed','closed','','1381-revision-v1','','','2021-04-16 01:38:23','2021-04-16 01:38:23','',1381,'https://www.drfields.com/?p=4627',0,'revision','',0),(4628,9,'2021-04-16 01:54:58','2021-04-16 01:54:58','<h2>Relief from Arthritis Pain that Lasts!</h2>\r\n[caption id=\"attachment_4625\" align=\"alignright\" width=\"400\"]<img class=\"wp-image-4625 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/avoid-replacement-400x500.png\" alt=\"Avoid Replacement\" width=\"400\" height=\"500\" /> Get Lasting Arthritis Pain Relief with Regenerative Orthopedics[/caption]\r\n\r\nAnyone with arthritis is familiar with the ongoing pain, joint stiffness, and the limitations the disease causes. Arthritis damages the joints, and the progressive loss of cartilage changes the joint structure. And that changes the way the joint moves. We are all aware of how limiting this disease is! And many of us are on a quest to find lasting relief from arthritis pain.\r\n\r\n<strong>Arthritis affects us at home, in our workplace, and while attempting to enjoy activities we love.</strong> Besides that, arthritis affects our finances. We lose pay because of hours of work lost. Then there is the cost for surgery, rehabilitation, various treatments, pain medications, and disability. Arthritis is a huge health concern.\r\n\r\nIn this article, we will discuss how to find lasting relief from arthritis pain. And to understand how to find relief, it helps to know how the condition develops in the first place.\r\n<h3>What’s the Reason behind Arthritis?</h3>\r\nArthritis does not just happen because of old age. There is a reason for it. Arthritis occurs over time. But it occurs as a result of joint instability. And the instability transpires after some injury that never fully healed. Of course, the eventual cartilage loss with its inhibition of joint motion plays a central role in arthritis. But that’s not where it all began.\r\n\r\nInjury to or failure of other joint structures, such as an injured ligament or tendon, actually initiates the change in equilibrium that leads to this breakdown of cartilage. <strong>Arthritis almost always begins with ligament weakness or injury.</strong> And that injury initiates a cycle of abnormal motion in the joint, which eventually changes the structure and function of the joint.\r\n\r\nLigaments hold the bones together. And along with healthy cartilage and other soft tissue, they allow for smooth joint motion. When the ligaments are weak due to injury, the motion becomes uneven. That uneven motion puts stress on other areas of the joint, which then causes some areas of bone to bear additional weight on the articular cartilage. This uneven distribution worsens and worsens with ongoing joint stress. And that weakens the ligaments further, causing additional instability of the joint.\r\n\r\nThe whole process leads to the eventual breakdown of the articular cartilage. The joint then is unable to glide smoothly, which causes limitations in joint function. The unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing and exposure of the underlying subchondral bone. And that precipitates the process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called <strong>osteoarthritis</strong>.\r\n<h3>Arthritis Pain and Symptoms</h3>\r\nArthritis typically causes pain, but not everyone is symptomatic. People with arthritis do not all have the same level of symptoms. And the same degree of arthritis can involve various levels of pain. When pain does arise, it generally occurs with activity and is relieved by rest.\r\n\r\nAny joint can be affected by arthritis. But it is found more commonly in the weight-bearing joints, like the knees, hips, and back. Arthritis pain and symptoms generally start and get worse with movement and activity. And in the beginning, they often go away at rest.\r\n\r\nAs the condition progresses, pain is present at rest too. At this point, pain is commonly experienced as a non-localized deep, aching pain accompanied by joint stiffness. In time, the aching and stiffness curtail activity and function. Since arthritis puts limitations on life, emotional symptoms develop as well. Since arthritis limits people from the enjoyment of doing the things they love, psychological distress is understandable.\r\n\r\n<strong>Interestingly, the pain of arthritis does not come from the cartilage!</strong> There are <strong>no</strong> nerve fibers or blood vessels in cartilage tissue. And therefore, cartilage is incapable of generating pain or inflammation or any of the symptoms commonly described with arthritis. The pain actually comes from the ligaments, tendons, and their insertion sites at the bone, which are all highly innervated. Lasting relief from arthritis pain will need to come from treatment at the source of the pain.\r\n<h3>Diagnosing Arthritis</h3>\r\nArthritis is diagnosed after a thorough history and physical examination. Radiography can be utilized to confirm the presence of joint space narrowing and bone spurs and to rule out the presence of other conditions.\r\n<h3>Relief from Arthritis Pain that Lasts with Regenerative Orthopedics</h3>\r\nSince arthritis begins with injury to the soft tissue structures like the ligaments and tendons, treatments that target repair of these structures are needed to restore joint physiology and biomechanics. Otherwise, the cycle will continue. Regenerative Orthopedic therapies, such as Stem Cell Therapy, PRP, and Prolotherapy, target the ligaments, tendons, and their insertion sites.\r\n\r\nBy treating the problem\'s source, regenerative medicine physicians can fix the involved structures and stabilize the joint. The treatments end the abnormal joint motion, stabilizing the joint and effectively stopping the cycle.\r\n<h3>If You Want Lasting Relief from Arthritis Pain: Regenerate, Don\'t Degenerate!</h3>\r\nIt is important to choose treatments that repair rather than cover up or mask the symptoms. Regenerative Orthopedic treatments increase blood flow in the tissue. And the result is an increase in the flow of immune cells to the injured tissue. That triggers the repair process! The solutions act as proliferants that boost the natural wound healing cascades, resulting in strengthening and repairing the injured joint structures.\r\n\r\nRegenerative Orthopedics offers benefits in pain relief, regenerative properties, and cartilage repair for people affected by arthritis. And they result in lasting relief from arthritis pain!\r\n<h3>The Gold Standard in Regenerative Therapies</h3>\r\nIn patients with more advanced arthritic conditions, the Gold Standard in Stem Cell Therapy can be utilized, which combines Prolotherapy with components of blood, fat, and bone marrow. Many clinics use only one or two of these procedures. But we have discovered that this combination of four regenerative therapies acts as an amazing regenerative solution to reverse arthritis damage on the joint.\r\n\r\nArthritis is a complex and unique condition, affecting individuals and those they love. In a time when healthcare providers have limited options for effective arthritis treatment and pain resolution, Regenerative Orthopedics is a promising treatment option. It is an option that aids in the relief of pain and one that results in increased motion. Plus, it provides gains in function and quality of life.\r\n\r\nThese treatments stimulate the regrowth of the injured tissue and tighten the ligaments around the joint, which often reduces joint pain immediately. They are safe and effective and are amazing non-surgical alternatives, with the potential to slow the disease progression, get rid of pain, and promote the regeneration of cartilage. What a great opportunity for healing and return to function for those suffering from the pain and disability of arthritis! Get lasting relief from arthritis pain with Regenerative Orthopedics!\r\n\r\nInterested in reading more about relief from arthritis pain with Regenerative Orthopedics? Great! We have more articles. Click <a href=\"https://www.drfields.com/?s=arthritis\">here</a> to read articles about arthritis pain relief.','Get Lasting Relief from Arthritis Pain','','inherit','closed','closed','','1381-revision-v1','','','2021-04-16 01:54:58','2021-04-16 01:54:58','',1381,'https://www.drfields.com/?p=4628',0,'revision','',0),(4629,9,'2021-04-16 02:16:57','2021-04-16 02:16:57','<h2>Relief from Arthritis Pain that Lasts!</h2>\r\n[caption id=\"attachment_4625\" align=\"alignright\" width=\"400\"]<img class=\"wp-image-4625 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/avoid-replacement-400x500.png\" alt=\"Avoid Replacement\" width=\"400\" height=\"500\" /> Lasting Arthritis Pain Relief with Regenerative Orthopedics[/caption]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAnyone with arthritis is familiar with the ongoing pain, joint stiffness, and the limitations the disease causes. Arthritis damages the joints, and the progressive loss of cartilage changes the joint structure. And that changes the way the joint moves. We are all aware of how limiting this disease is! And many of us are on a quest to find lasting relief from arthritis pain.\r\n\r\n<strong>Arthritis affects us at home, in our workplace, and while attempting to enjoy activities we love.</strong> Besides that, arthritis affects our finances. We lose pay because of hours of work lost. Then there is the cost for surgery, rehabilitation, various treatments, pain medications, and disability. Arthritis is a huge health concern.\r\n\r\nIn this article, we will discuss how to find lasting relief from arthritis pain. And to understand how to find relief, it helps to know how the condition develops in the first place.\r\n<h3>What’s the Reason Behind Arthritis?</h3>\r\nArthritis does not just happen because of old age. There is a reason for it. Arthritis occurs over time. But it occurs as a result of joint instability. And the instability transpires after some injury that never fully healed. Of course, the eventual cartilage loss with its inhibition of joint motion plays a central role in arthritis. But that’s not where it all began.\r\n\r\nInjury to or failure of other joint structures, such as an injured ligament or tendon, actually initiates the change in equilibrium that leads to this breakdown of cartilage. <strong>Arthritis almost always begins with ligament weakness or injury.</strong> And that injury initiates a cycle of abnormal motion in the joint, which eventually changes the structure and function of the joint.\r\n\r\nLigaments hold the bones together. And along with healthy cartilage and other soft tissue, they allow for smooth joint motion. When the ligaments are weak due to injury, the motion becomes uneven. That uneven motion puts stress on other areas of the joint, which then causes some areas of bone to bear additional weight on the articular cartilage. This uneven distribution worsens and worsens with ongoing joint stress. And that weakens the ligaments further, causing additional instability of the joint.\r\n\r\nThe whole process leads to the eventual breakdown of the articular cartilage. The joint then is unable to glide smoothly, which causes limitations in joint function. The unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing and exposure of the underlying subchondral bone. And that precipitates the process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called <strong>osteoarthritis</strong>.\r\n<h3>Arthritis Pain and Symptoms</h3>\r\nArthritis typically causes pain, but not everyone is symptomatic. People with arthritis do not all have the same level of symptoms. And the same degree of arthritis can involve various levels of pain. When pain does arise, it generally occurs with activity and is relieved by rest.\r\n\r\nAny joint can be affected by arthritis. But it is found more commonly in the weight-bearing joints, like the knees, hips, and back. Arthritis pain and symptoms generally start and get worse with movement and activity. And in the beginning, they often go away at rest.\r\n\r\nAs the condition progresses, pain is present at rest too. At this point, pain is commonly experienced as a non-localized deep, aching pain accompanied by joint stiffness. In time, the aching and stiffness curtail activity and function. Since arthritis puts limitations on life, emotional symptoms develop as well. Since arthritis limits people from the enjoyment of doing the things they love, psychological distress is understandable.\r\n\r\n<strong>Interestingly, the pain of arthritis does not come from the cartilage!</strong> There are <strong>no</strong> nerve fibers or blood vessels in cartilage tissue. And therefore, cartilage is incapable of generating pain or inflammation or any of the symptoms commonly described with arthritis. The pain actually comes from the ligaments, tendons, and their insertion sites at the bone, which are all highly innervated. Lasting relief from arthritis pain will need to come from treatment at the source of the pain.\r\n<h3>Diagnosing Arthritis</h3>\r\nArthritis is diagnosed after a thorough history and physical examination. Radiography can be utilized to confirm the presence of joint space narrowing and bone spurs and to rule out the presence of other conditions.\r\n<h3>Relief from Arthritis Pain that Lasts with Regenerative Orthopedics</h3>\r\nSince arthritis begins with injury to the soft tissue structures like the ligaments and tendons, treatments that target repair of these structures are needed to restore joint physiology and biomechanics. Otherwise, the cycle will continue. Regenerative Orthopedic therapies, such as Stem Cell Therapy, PRP, and Prolotherapy, target the ligaments, tendons, and their insertion sites.\r\n\r\nBy treating the problem\'s source, regenerative medicine physicians can fix the involved structures and stabilize the joint. The treatments end the abnormal joint motion, stabilizing the joint and effectively stopping the cycle.\r\n<h3>If You Want Lasting Relief from Arthritis Pain: Regenerate, Don\'t Degenerate!</h3>\r\nIt is important to choose treatments that repair rather than cover up or mask the symptoms. Regenerative Orthopedic treatments increase blood flow in the tissue. And the result is an increase in the flow of immune cells to the injured tissue. That triggers the repair process! The solutions act as proliferants that boost the natural wound healing cascades, resulting in strengthening and repairing the injured joint structures.\r\n\r\nRegenerative Orthopedics offers benefits in pain relief, regenerative properties, and cartilage repair for people affected by arthritis. And they result in lasting relief from arthritis pain!\r\n<h3>The Gold Standard in Regenerative Therapies</h3>\r\nIn patients with more advanced arthritic conditions, the Gold Standard in Stem Cell Therapy can be utilized, which combines Prolotherapy with components of blood, fat, and bone marrow. Many clinics use only one or two of these procedures. But we have discovered that this combination of four regenerative therapies acts as an amazing regenerative solution to reverse arthritis damage on the joint.\r\n\r\nArthritis is a complex and unique condition, affecting individuals and those they love. In a time when healthcare providers have limited options for effective arthritis treatment and pain resolution, Regenerative Orthopedics is a promising treatment option. It is an option that aids in the relief of pain and one that results in increased motion. Plus, it provides gains in function and quality of life.\r\n\r\nThese treatments stimulate the regrowth of the injured tissue and tighten the ligaments around the joint, which often reduces joint pain immediately. They are safe and effective and are amazing non-surgical alternatives, with the potential to slow the disease progression, get rid of pain, and promote the regeneration of cartilage. What a great opportunity for healing and return to function for those suffering from the pain and disability of arthritis! Get lasting relief from arthritis pain with Regenerative Orthopedics!\r\n\r\nInterested in reading more about relief from arthritis pain with Regenerative Orthopedics? Great! We have more articles. Click <a href=\"https://www.drfields.com/?s=arthritis\">here</a> to read articles about arthritis pain relief.','Get Lasting Relief from Arthritis Pain','','inherit','closed','closed','','1381-revision-v1','','','2021-04-16 02:16:57','2021-04-16 02:16:57','',1381,'https://www.drfields.com/?p=4629',0,'revision','',0),(4630,9,'2021-04-16 02:17:12','2021-04-16 02:17:12','<h2>Relief from Arthritis Pain that Lasts!</h2>\r\n[caption id=\"attachment_4625\" align=\"alignright\" width=\"400\"]<img class=\"wp-image-4625 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/avoid-replacement-400x500.png\" alt=\"Avoid Replacement\" width=\"400\" height=\"500\" /> Lasting Arthritis Pain Relief with Regenerative Orthopedics[/caption]\r\n\r\nAnyone with arthritis is familiar with the ongoing pain, joint stiffness, and the limitations the disease causes. Arthritis damages the joints, and the progressive loss of cartilage changes the joint structure. And that changes the way the joint moves. We are all aware of how limiting this disease is! And many of us are on a quest to find lasting relief from arthritis pain.\r\n\r\n<strong>Arthritis affects us at home, in our workplace, and while attempting to enjoy activities we love.</strong> Besides that, arthritis affects our finances. We lose pay because of hours of work lost. Then there is the cost for surgery, rehabilitation, various treatments, pain medications, and disability. Arthritis is a huge health concern.\r\n\r\nIn this article, we will discuss how to find lasting relief from arthritis pain. And to understand how to find relief, it helps to know how the condition develops in the first place.\r\n<h3>What’s the Reason Behind Arthritis?</h3>\r\nArthritis does not just happen because of old age. There is a reason for it. Arthritis occurs over time. But it occurs as a result of joint instability. And the instability transpires after some injury that never fully healed. Of course, the eventual cartilage loss with its inhibition of joint motion plays a central role in arthritis. But that’s not where it all began.\r\n\r\nInjury to or failure of other joint structures, such as an injured ligament or tendon, actually initiates the change in equilibrium that leads to this breakdown of cartilage. <strong>Arthritis almost always begins with ligament weakness or injury.</strong> And that injury initiates a cycle of abnormal motion in the joint, which eventually changes the structure and function of the joint.\r\n\r\nLigaments hold the bones together. And along with healthy cartilage and other soft tissue, they allow for smooth joint motion. When the ligaments are weak due to injury, the motion becomes uneven. That uneven motion puts stress on other areas of the joint, which then causes some areas of bone to bear additional weight on the articular cartilage. This uneven distribution worsens and worsens with ongoing joint stress. And that weakens the ligaments further, causing additional instability of the joint.\r\n\r\nThe whole process leads to the eventual breakdown of the articular cartilage. The joint then is unable to glide smoothly, which causes limitations in joint function. The unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing and exposure of the underlying subchondral bone. And that precipitates the process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called <strong>osteoarthritis</strong>.\r\n<h3>Arthritis Pain and Symptoms</h3>\r\nArthritis typically causes pain, but not everyone is symptomatic. People with arthritis do not all have the same level of symptoms. And the same degree of arthritis can involve various levels of pain. When pain does arise, it generally occurs with activity and is relieved by rest.\r\n\r\nAny joint can be affected by arthritis. But it is found more commonly in the weight-bearing joints, like the knees, hips, and back. Arthritis pain and symptoms generally start and get worse with movement and activity. And in the beginning, they often go away at rest.\r\n\r\nAs the condition progresses, pain is present at rest too. At this point, pain is commonly experienced as a non-localized deep, aching pain accompanied by joint stiffness. In time, the aching and stiffness curtail activity and function. Since arthritis puts limitations on life, emotional symptoms develop as well. Since arthritis limits people from the enjoyment of doing the things they love, psychological distress is understandable.\r\n\r\n<strong>Interestingly, the pain of arthritis does not come from the cartilage!</strong> There are <strong>no</strong> nerve fibers or blood vessels in cartilage tissue. And therefore, cartilage is incapable of generating pain or inflammation or any of the symptoms commonly described with arthritis. The pain actually comes from the ligaments, tendons, and their insertion sites at the bone, which are all highly innervated. Lasting relief from arthritis pain will need to come from treatment at the source of the pain.\r\n<h3>Diagnosing Arthritis</h3>\r\nArthritis is diagnosed after a thorough history and physical examination. Radiography can be utilized to confirm the presence of joint space narrowing and bone spurs and to rule out the presence of other conditions.\r\n<h3>Relief from Arthritis Pain that Lasts with Regenerative Orthopedics</h3>\r\nSince arthritis begins with injury to the soft tissue structures like the ligaments and tendons, treatments that target repair of these structures are needed to restore joint physiology and biomechanics. Otherwise, the cycle will continue. Regenerative Orthopedic therapies, such as Stem Cell Therapy, PRP, and Prolotherapy, target the ligaments, tendons, and their insertion sites.\r\n\r\nBy treating the problem\'s source, regenerative medicine physicians can fix the involved structures and stabilize the joint. The treatments end the abnormal joint motion, stabilizing the joint and effectively stopping the cycle.\r\n<h3>If You Want Lasting Relief from Arthritis Pain: Regenerate, Don\'t Degenerate!</h3>\r\nIt is important to choose treatments that repair rather than cover up or mask the symptoms. Regenerative Orthopedic treatments increase blood flow in the tissue. And the result is an increase in the flow of immune cells to the injured tissue. That triggers the repair process! The solutions act as proliferants that boost the natural wound healing cascades, resulting in strengthening and repairing the injured joint structures.\r\n\r\nRegenerative Orthopedics offers benefits in pain relief, regenerative properties, and cartilage repair for people affected by arthritis. And they result in lasting relief from arthritis pain!\r\n<h3>The Gold Standard in Regenerative Therapies</h3>\r\nIn patients with more advanced arthritic conditions, the Gold Standard in Stem Cell Therapy can be utilized, which combines Prolotherapy with components of blood, fat, and bone marrow. Many clinics use only one or two of these procedures. But we have discovered that this combination of four regenerative therapies acts as an amazing regenerative solution to reverse arthritis damage on the joint.\r\n\r\nArthritis is a complex and unique condition, affecting individuals and those they love. In a time when healthcare providers have limited options for effective arthritis treatment and pain resolution, Regenerative Orthopedics is a promising treatment option. It is an option that aids in the relief of pain and one that results in increased motion. Plus, it provides gains in function and quality of life.\r\n\r\nThese treatments stimulate the regrowth of the injured tissue and tighten the ligaments around the joint, which often reduces joint pain immediately. They are safe and effective and are amazing non-surgical alternatives, with the potential to slow the disease progression, get rid of pain, and promote the regeneration of cartilage. What a great opportunity for healing and return to function for those suffering from the pain and disability of arthritis! Get lasting relief from arthritis pain with Regenerative Orthopedics!\r\n\r\nInterested in reading more about relief from arthritis pain with Regenerative Orthopedics? Great! We have more articles. Click <a href=\"https://www.drfields.com/?s=arthritis\">here</a> to read articles about arthritis pain relief.','Get Lasting Relief from Arthritis Pain','','inherit','closed','closed','','1381-revision-v1','','','2021-04-16 02:17:12','2021-04-16 02:17:12','',1381,'https://www.drfields.com/?p=4630',0,'revision','',0),(4631,9,'2021-04-16 02:18:03','2021-04-16 02:18:03','<h2>Relief from Arthritis Pain that Lasts!</h2>\r\n[caption id=\"attachment_4625\" align=\"alignright\" width=\"448\"]<img class=\"wp-image-4625 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/avoid-replacement-400x500.png\" alt=\"Avoid Replacement\" width=\"448\" height=\"560\" /> Lasting Arthritis Pain Relief with Regenerative Orthopedics[/caption]\r\n\r\nAnyone with arthritis is familiar with the ongoing pain, joint stiffness, and the limitations the disease causes. Arthritis damages the joints, and the progressive loss of cartilage changes the joint structure. And that changes the way the joint moves. We are all aware of how limiting this disease is! And many of us are on a quest to find lasting relief from arthritis pain.\r\n\r\n<strong>Arthritis affects us at home, in our workplace, and while attempting to enjoy activities we love.</strong> Besides that, arthritis affects our finances. We lose pay because of hours of work lost. Then there is the cost for surgery, rehabilitation, various treatments, pain medications, and disability. Arthritis is a huge health concern.\r\n\r\nIn this article, we will discuss how to find lasting relief from arthritis pain. And to understand how to find relief, it helps to know how the condition develops in the first place.\r\n<h3>What’s the Reason Behind Arthritis?</h3>\r\nArthritis does not just happen because of old age. There is a reason for it. Arthritis occurs over time. But it occurs as a result of joint instability. And the instability transpires after some injury that never fully healed. Of course, the eventual cartilage loss with its inhibition of joint motion plays a central role in arthritis. But that’s not where it all began.\r\n\r\nInjury to or failure of other joint structures, such as an injured ligament or tendon, actually initiates the change in equilibrium that leads to this breakdown of cartilage. <strong>Arthritis almost always begins with ligament weakness or injury.</strong> And that injury initiates a cycle of abnormal motion in the joint, which eventually changes the structure and function of the joint.\r\n\r\nLigaments hold the bones together. And along with healthy cartilage and other soft tissue, they allow for smooth joint motion. When the ligaments are weak due to injury, the motion becomes uneven. That uneven motion puts stress on other areas of the joint, which then causes some areas of bone to bear additional weight on the articular cartilage. This uneven distribution worsens and worsens with ongoing joint stress. And that weakens the ligaments further, causing additional instability of the joint.\r\n\r\nThe whole process leads to the eventual breakdown of the articular cartilage. The joint then is unable to glide smoothly, which causes limitations in joint function. The unstable bony surfaces continue to rub roughly and unevenly, causing bone loss. This bony loss leads to joint space narrowing and exposure of the underlying subchondral bone. And that precipitates the process of bone remodeling, in which the subchondral bone thickens. This accumulated or thickened bony overgrowth is called <strong>osteoarthritis</strong>.\r\n<h3>Arthritis Pain and Symptoms</h3>\r\nArthritis typically causes pain, but not everyone is symptomatic. People with arthritis do not all have the same level of symptoms. And the same degree of arthritis can involve various levels of pain. When pain does arise, it generally occurs with activity and is relieved by rest.\r\n\r\nAny joint can be affected by arthritis. But it is found more commonly in the weight-bearing joints, like the knees, hips, and back. Arthritis pain and symptoms generally start and get worse with movement and activity. And in the beginning, they often go away at rest.\r\n\r\nAs the condition progresses, pain is present at rest too. At this point, pain is commonly experienced as a non-localized deep, aching pain accompanied by joint stiffness. In time, the aching and stiffness curtail activity and function. Since arthritis puts limitations on life, emotional symptoms develop as well. Since arthritis limits people from the enjoyment of doing the things they love, psychological distress is understandable.\r\n\r\n<strong>Interestingly, the pain of arthritis does not come from the cartilage!</strong> There are <strong>no</strong> nerve fibers or blood vessels in cartilage tissue. And therefore, cartilage is incapable of generating pain or inflammation or any of the symptoms commonly described with arthritis. The pain actually comes from the ligaments, tendons, and their insertion sites at the bone, which are all highly innervated. Lasting relief from arthritis pain will need to come from treatment at the source of the pain.\r\n<h3>Diagnosing Arthritis</h3>\r\nArthritis is diagnosed after a thorough history and physical examination. Radiography can be utilized to confirm the presence of joint space narrowing and bone spurs and to rule out the presence of other conditions.\r\n<h3>Relief from Arthritis Pain that Lasts with Regenerative Orthopedics</h3>\r\nSince arthritis begins with injury to the soft tissue structures like the ligaments and tendons, treatments that target repair of these structures are needed to restore joint physiology and biomechanics. Otherwise, the cycle will continue. Regenerative Orthopedic therapies, such as Stem Cell Therapy, PRP, and Prolotherapy, target the ligaments, tendons, and their insertion sites.\r\n\r\nBy treating the problem\'s source, regenerative medicine physicians can fix the involved structures and stabilize the joint. The treatments end the abnormal joint motion, stabilizing the joint and effectively stopping the cycle.\r\n<h3>If You Want Lasting Relief from Arthritis Pain: Regenerate, Don\'t Degenerate!</h3>\r\nIt is important to choose treatments that repair rather than cover up or mask the symptoms. Regenerative Orthopedic treatments increase blood flow in the tissue. And the result is an increase in the flow of immune cells to the injured tissue. That triggers the repair process! The solutions act as proliferants that boost the natural wound healing cascades, resulting in strengthening and repairing the injured joint structures.\r\n\r\nRegenerative Orthopedics offers benefits in pain relief, regenerative properties, and cartilage repair for people affected by arthritis. And they result in lasting relief from arthritis pain!\r\n<h3>The Gold Standard in Regenerative Therapies</h3>\r\nIn patients with more advanced arthritic conditions, the Gold Standard in Stem Cell Therapy can be utilized, which combines Prolotherapy with components of blood, fat, and bone marrow. Many clinics use only one or two of these procedures. But we have discovered that this combination of four regenerative therapies acts as an amazing regenerative solution to reverse arthritis damage on the joint.\r\n\r\nArthritis is a complex and unique condition, affecting individuals and those they love. In a time when healthcare providers have limited options for effective arthritis treatment and pain resolution, Regenerative Orthopedics is a promising treatment option. It is an option that aids in the relief of pain and one that results in increased motion. Plus, it provides gains in function and quality of life.\r\n\r\nThese treatments stimulate the regrowth of the injured tissue and tighten the ligaments around the joint, which often reduces joint pain immediately. They are safe and effective and are amazing non-surgical alternatives, with the potential to slow the disease progression, get rid of pain, and promote the regeneration of cartilage. What a great opportunity for healing and return to function for those suffering from the pain and disability of arthritis! Get lasting relief from arthritis pain with Regenerative Orthopedics!\r\n\r\nInterested in reading more about relief from arthritis pain with Regenerative Orthopedics? Great! We have more articles. Click <a href=\"https://www.drfields.com/?s=arthritis\">here</a> to read articles about arthritis pain relief.','Get Lasting Relief from Arthritis Pain','','inherit','closed','closed','','1381-revision-v1','','','2021-04-16 02:18:03','2021-04-16 02:18:03','',1381,'https://www.drfields.com/?p=4631',0,'revision','',0),(4632,9,'2021-04-20 20:53:49','2021-04-20 20:53:49','<h2>ACL Tears and Knee Ligament Injuries</h2>\n[caption id=\"attachment_4633\" align=\"alignright\" width=\"368\"]<img class=\" wp-image-4633\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ACL-400x500.png\" alt=\"ACL Tear\" width=\"368\" height=\"460\" /> <strong>                     Non-Surgical ACL Tear Repair </strong>[/caption]\n\nACL tears are a pretty common injury! With ACL tears and other ligament injuries, the knee becomes unbalanced. And the knee will become unstable when these various structures of the knee are injured, torn, or degenerated.\n\nThere is a very complex yet intricate interplay between the different structures of the knee, such as the tendons, ligaments, meniscus, and muscles. And when any of these are injured, the whole knee becomes out of sorts.\n<h3>ACL Tears &amp; Ligament Injuries Can Disrupt Knee Balance</h3>\nLigament injuries are one of the common disruptions to this balance. The four major ligaments of the knee include the anterior cruciate ligament (ACL), the posterior cruciate ligament (PCL), the medial collateral ligament (MCL), and the lateral collateral ligament (LCL).\n\nInjuries that damage the meniscus and cartilage can also injure these ligaments. And once the injury to ligaments occurs, whether by trauma or by wear and tear, the other structures will be affected. Then, over time, the injury will lead to degeneration of the knee joint and arthritis. The ligaments become loose with injury. And similar to a stretched-out rubber band, they lose their tautness. When injury to one ligament occurs, as in the case of an ACL tear, it is not uncommon that some of the other ligaments are injured as well.\n<h3>Stabilize the Knee by Treating the Injured Ligaments with Regenerative Orthopedics</h3>\nSurgery is often resorted to for ligament injuries. However, surgical cutting and removal of important knee structures actually add to the instability. Why? Because the loss of these stabilizing structures boosts the degenerative process.\n\n<strong>But you do have a non-surgical option.</strong> Regenerative Orthopedics is a non-surgical option capable of repairing torn and injured ligaments. The treatment strengthens the loose ligaments and restores the normal motion back to the knee. And it resolves the pain too!\n\nRemember, it is very likely that more than just one ligament or joint structure is affected. Therefore, all of the affected structures need to be treated. Otherwise, the knee will remain unstable. And then the instability&gt;degeneration&gt;pain cycle will continue. Comprehensive treatment of the knee and all of the affected soft tissue structures will ensure that the knee will be strong and stable.\n\nSurgery is necessary when the ligament is completely torn. But the majority of cases are partial tears. And Regenerative Orthopedics is effective at repairing these ligaments, and stabilizing the knee once the ligaments are repaired.\n<h3>The Cruciate Ligaments and ACL Repair</h3>\nThe anterior and posterior cruciate ligaments help stabilize the knee. They also prevent excessive forward and backward movement. When these ligaments are injured, the knee may feel like it is loose. That\'s because these ligaments are powerhouses at keeping the knee stable. Pain with injury to these ligaments is often felt at the back of the knee.\n\nEven after the ACL ligament is repaired surgically, knee instability can occur. And there may be a feeling of looseness or a sensation that the knee can still give way. ACL reconstructive surgery works for many patients, but others experience continued symptoms.\n<h4><em>What About Athletes and ACL Reconstruction Surgery?</em></h4>\nOftentimes, those who are athletes want to get their knee repaired as quickly as possible. And they often resort to surgery thinking it will be a quick fix. But research suggests there are high levels of failure rates to restore stability in ACL repairs. And many of the patients in these studies are unable to return to their previous level of the sport.\n\nSurgical ACL reconstruction also accelerates the degeneration of the knee. <strong>Researchers have found that those who have had ACL reconstruction have an advanced risk for arthritis, as well as a higher long-term risk of requiring a knee replacement.</strong> But how many people does this really affect? Unfortunately, it’s not just a few. Researchers show that the failure rate is 10-25%. The problems of knee instability following an ACL tear reconstruction surgery can be severe enough to require repeat surgery.\n<h3>ACL Tear Repair at OrthoRegen</h3>\nFortunately, Regenerative Orthopedics is a non-surgical alternative to ACL surgery or even repeat surgery. In our opinion, it is a better solution to repair a stretched-out, loose, torn, or injured ligament. This treatment approach strengthens and heals the injured ligament in a non-surgical fashion, restoring the stability of the knee.\n\nAvoid the unsatisfactory outcome of incomplete healing and repair, and seek a consult with a clinician familiar with Regenerative Orthopedics. These <a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\">regenerative options</a> include Stem Cell Therapy, PRP, and Prolotherapy. And all of them have the goal of restoring normal ligament function and getting you back quickly to performing the sport and activity you love.\n\nWe see patients in our clinic who have already had ACL tear surgery too. These patients come to see us because they continue to have symptoms that are keeping them from doing the sports and activities they want to do. They thought for sure once they had the ACL surgery they would be back to doing what they were doing before the surgery. But they can’t. Other patients come because they are suffering from post-surgical complications and are looking for answers and a solution to their ongoing pain.\n\nGet your life back with Regenerative Orthopedics. <a href=\"https://www.drfields.com/contact/\">Contact us</a> soon!','ACL Tears and Knee Ligament Injuries','','inherit','closed','closed','','1379-autosave-v1','','','2021-04-20 20:53:49','2021-04-20 20:53:49','',1379,'https://www.drfields.com/?p=4632',0,'revision','',0),(4633,9,'2021-04-20 20:16:26','2021-04-20 20:16:26','ACL Tear','ACL Tear','ACL Tear','inherit','open','closed','','acl','','','2021-04-20 20:17:12','2021-04-20 20:17:12','',1379,'https://www.drfields.com/wp-content/uploads/2019/06/ACL.png',0,'attachment','image/png',0),(4634,9,'2021-04-20 20:51:43','2021-04-20 20:51:43','<h2>ACL Tears and Knee Ligament Injuries</h2>\r\n[caption id=\"attachment_4633\" align=\"alignright\" width=\"368\"]<img class=\" wp-image-4633\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ACL-400x500.png\" alt=\"ACL Tear\" width=\"368\" height=\"460\" /> <strong>                     Non-Surgical ACL Tear Repair </strong>[/caption]\r\n\r\nACL tears are a pretty common injury! With ACL tears and other ligament injuries, the knee becomes unbalanced. And the knee will become unstable when these various structures of the knee are injured, torn, or degenerated.\r\n\r\nThere is a very complex yet intricate interplay between the different structures of the knee, such as the tendons, ligaments, meniscus, and muscles. And when any of these are injured, the whole knee becomes out of sorts.\r\n<h3>Ligament Injuries Can Disrupt Knee Balance</h3>\r\nLigament injuries are one of the common disruptions to this balance. The four major ligaments of the knee include the anterior cruciate ligament (ACL), the posterior cruciate ligament (PCL), the medial collateral ligament (MCL), and the lateral collateral ligament (LCL).\r\n\r\nInjuries that damage the meniscus and cartilage can also injure these ligaments. And once the injury to ligaments occurs, whether by trauma or by wear and tear, the other structures will be affected. Then, over time, the injury will lead to degeneration of the knee joint and arthritis. The ligaments become loose with injury. And similar to a stretched-out rubber band, they lose their tautness. When injury to one ligament occurs, as in the case of an ACL tear, it is not uncommon that some of the other ligaments are injured as well.\r\n<h3>Stabilize the Knee by Treating the Injured Ligaments with Regenerative Orthopedics</h3>\r\nSurgery is often resorted to for ligament injuries. However, surgical cutting and removal of important knee structures actually add to the instability. Why? Because the loss of these stabilizing structures boosts the degenerative process.\r\n\r\n<strong>But you do have a non-surgical option.</strong> Regenerative Orthopedics is a non-surgical option capable of repairing torn and injured ligaments. The treatment strengthens the loose ligaments and restores the normal motion back to the knee. And it resolves the pain too!\r\n\r\nRemember, it is very likely that more than just one ligament or joint structure is affected. Therefore, all of the affected structures need to be treated. Otherwise, the knee will remain unstable. And then the instability&gt;degeneration&gt;pain cycle will continue. Comprehensive treatment of the knee and all of the affected soft tissue structures will ensure that the knee will be strong and stable.\r\n\r\nSurgery is necessary when the ligament is completely torn. But the majority of cases are partial tears. And Regenerative Orthopedics is effective at repairing these ligaments, and stabilizing the knee once the ligaments are repaired.\r\n<h3>The Cruciate Ligaments and ACL Repair</h3>\r\nThe anterior and posterior cruciate ligaments help stabilize the knee. They also prevent excessive forward and backward movement. When these ligaments are injured, the knee may feel like it is loose. That\'s because these ligaments are powerhouses at keeping the knee stable. Pain with injury to these ligaments is often felt at the back of the knee.\r\n\r\nEven after the ACL ligament is repaired surgically, knee instability can occur. And there may be a feeling of looseness or a sensation that the knee can still give way. ACL reconstructive surgery works for many patients, but others experience continued symptoms.\r\n<h4><em>What About Athletes and ACL Reconstruction Surgery?</em></h4>\r\nOftentimes, those who are athletes want to get their knee repaired as quickly as possible. And they often resort to surgery thinking it will be a quick fix. But research suggests there are high levels of failure rates to restore stability in ACL repairs. And many of the patients in these studies are unable to return to their previous level of the sport.\r\n\r\nSurgical ACL reconstruction also accelerates the degeneration of the knee. <strong>Researchers have found that those who have had ACL reconstruction have an advanced risk for arthritis, as well as a higher long-term risk of requiring a knee replacement.</strong> But how many people does this really affect? Unfortunately, it’s not just a few. Researchers show that the failure rate is 10-25%. The problems of knee instability following an ACL tear reconstruction surgery can be severe enough to require repeat surgery.\r\n<h3>ACL Tear Repair at OrthoRegen</h3>\r\nFortunately, Regenerative Orthopedics is a non-surgical alternative to ACL surgery or even repeat surgery. In our opinion, it is a better solution to repair a stretched-out, loose, torn, or injured ligament. This treatment approach strengthens and heals the injured ligament in a non-surgical fashion, restoring the stability of the knee.\r\n\r\nAvoid the unsatisfactory outcome of incomplete healing and repair, and seek a consult with a clinician familiar with Regenerative Orthopedics. These regenerative options include Stem Cell Therapy, PRP, and Prolotherapy. And all of them have the goal of restoring normal ligament function and getting you back quickly to performing the sport and activity you love.\r\n\r\nWe see patients in our clinic who have already had ACL tear surgery too. These patients come to see us because they continue to have symptoms that are keeping them from doing the sports and activities they want to do. They thought for sure once they had the ACL surgery they would be back to doing what they were doing before the surgery. But they can’t. Other patients come because they are suffering from post-surgical complications and are looking for answers and a solution to their ongoing pain.\r\n\r\nGet your life back with Regenerative Orthopedics. <a href=\"https://www.drfields.com/contact/\">Contact us</a> soon!','ACL Tears and Knee Ligament Injuries','','inherit','closed','closed','','1379-revision-v1','','','2021-04-20 20:51:43','2021-04-20 20:51:43','',1379,'https://www.drfields.com/?p=4634',0,'revision','',0),(4635,9,'2021-04-20 20:54:00','2021-04-20 20:54:00','<h2>ACL Tears and Knee Ligament Injuries</h2>\r\n[caption id=\"attachment_4633\" align=\"alignright\" width=\"368\"]<img class=\" wp-image-4633\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ACL-400x500.png\" alt=\"ACL Tear\" width=\"368\" height=\"460\" /> <strong>                     Non-Surgical ACL Tear Repair </strong>[/caption]\r\n\r\nACL tears are a pretty common injury! With ACL tears and other ligament injuries, the knee becomes unbalanced. And the knee will become unstable when these various structures of the knee are injured, torn, or degenerated.\r\n\r\nThere is a very complex yet intricate interplay between the different structures of the knee, such as the tendons, ligaments, meniscus, and muscles. And when any of these are injured, the whole knee becomes out of sorts.\r\n<h3>ACL Tears &amp; Ligament Injuries Can Disrupt Knee Balance</h3>\r\nLigament injuries are one of the common disruptions to this balance. The four major ligaments of the knee include the anterior cruciate ligament (ACL), the posterior cruciate ligament (PCL), the medial collateral ligament (MCL), and the lateral collateral ligament (LCL).\r\n\r\nInjuries that damage the meniscus and cartilage can also injure these ligaments. And once the injury to ligaments occurs, whether by trauma or by wear and tear, the other structures will be affected. Then, over time, the injury will lead to degeneration of the knee joint and arthritis. The ligaments become loose with injury. And similar to a stretched-out rubber band, they lose their tautness. When injury to one ligament occurs, as in the case of an ACL tear, it is not uncommon that some of the other ligaments are injured as well.\r\n<h3>Stabilize the Knee by Treating the Injured Ligaments with Regenerative Orthopedics</h3>\r\nSurgery is often resorted to for ligament injuries. However, surgical cutting and removal of important knee structures actually add to the instability. Why? Because the loss of these stabilizing structures boosts the degenerative process.\r\n\r\n<strong>But you do have a non-surgical option.</strong> Regenerative Orthopedics is a non-surgical option capable of repairing torn and injured ligaments. The treatment strengthens the loose ligaments and restores the normal motion back to the knee. And it resolves the pain too!\r\n\r\nRemember, it is very likely that more than just one ligament or joint structure is affected. Therefore, all of the affected structures need to be treated. Otherwise, the knee will remain unstable. And then the instability&gt;degeneration&gt;pain cycle will continue. Comprehensive treatment of the knee and all of the affected soft tissue structures will ensure that the knee will be strong and stable.\r\n\r\nSurgery is necessary when the ligament is completely torn. But the majority of cases are partial tears. And Regenerative Orthopedics is effective at repairing these ligaments, and stabilizing the knee once the ligaments are repaired.\r\n<h3>The Cruciate Ligaments and ACL Repair</h3>\r\nThe anterior and posterior cruciate ligaments help stabilize the knee. They also prevent excessive forward and backward movement. When these ligaments are injured, the knee may feel like it is loose. That\'s because these ligaments are powerhouses at keeping the knee stable. Pain with injury to these ligaments is often felt at the back of the knee.\r\n\r\nEven after the ACL ligament is repaired surgically, knee instability can occur. And there may be a feeling of looseness or a sensation that the knee can still give way. ACL reconstructive surgery works for many patients, but others experience continued symptoms.\r\n<h4><em>What About Athletes and ACL Reconstruction Surgery?</em></h4>\r\nOftentimes, those who are athletes want to get their knee repaired as quickly as possible. And they often resort to surgery thinking it will be a quick fix. But research suggests there are high levels of failure rates to restore stability in ACL repairs. And many of the patients in these studies are unable to return to their previous level of the sport.\r\n\r\nSurgical ACL reconstruction also accelerates the degeneration of the knee. <strong>Researchers have found that those who have had ACL reconstruction have an advanced risk for arthritis, as well as a higher long-term risk of requiring a knee replacement.</strong> But how many people does this really affect? Unfortunately, it’s not just a few. Researchers show that the failure rate is 10-25%. The problems of knee instability following an ACL tear reconstruction surgery can be severe enough to require repeat surgery.\r\n<h3>ACL Tear Repair at OrthoRegen</h3>\r\nFortunately, Regenerative Orthopedics is a non-surgical alternative to ACL surgery or even repeat surgery. In our opinion, it is a better solution to repair a stretched-out, loose, torn, or injured ligament. This treatment approach strengthens and heals the injured ligament in a non-surgical fashion, restoring the stability of the knee.\r\n\r\nAvoid the unsatisfactory outcome of incomplete healing and repair, and seek a consult with a clinician familiar with Regenerative Orthopedics. These <a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\">regenerative options</a> include Stem Cell Therapy, PRP, and Prolotherapy. And all of them have the goal of restoring normal ligament function and getting you back quickly to performing the sport and activity you love.\r\n\r\nWe see patients in our clinic who have already had ACL tear surgery too. These patients come to see us because they continue to have symptoms that are keeping them from doing the sports and activities they want to do. They thought for sure once they had the ACL surgery they would be back to doing what they were doing before the surgery. But they can’t. Other patients come because they are suffering from post-surgical complications and are looking for answers and a solution to their ongoing pain.\r\n\r\nGet your life back with Regenerative Orthopedics. <a href=\"https://www.drfields.com/contact/\">Contact us</a> soon!','ACL Tears and Knee Ligament Injuries','','inherit','closed','closed','','1379-revision-v1','','','2021-04-20 20:54:00','2021-04-20 20:54:00','',1379,'https://www.drfields.com/?p=4635',0,'revision','',0),(4637,9,'2021-04-24 01:52:52','2021-04-24 01:52:52','Calchiro Sports Symposium (2) Copy 3','Calchiro Sports Symposium (2) Copy 3','Calchiro Sports Symposium (2) Copy 3','inherit','open','closed','','calchiro-sports-symposium-2-copy-3','','','2021-04-24 01:52:52','2021-04-24 01:52:52','',1434,'https://www.drfields.com/wp-content/uploads/2019/06/CalChiro-Sports-Symposium-2-copy-3.png',0,'attachment','image/png',0),(4638,9,'2022-05-28 03:54:08','2022-05-28 03:54:08','<h3>Zoom Regenerative Orthopedics Lecture</h3>\n<h5>Peter A. Fields, MD, DC</h5>\n&nbsp;\n<h4><strong>You are invited!! </strong><strong>Join us </strong>Sunday, June 5th for this informative <strong>Regenerative Orthopedics Lecture </strong>with leading regenerative medicine expert Peter A. Fields, MD, DC at 9AM Los Angeles time.</h4>\n<img class=\"size-medium wp-image-4968 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\" alt=\"Dr. Fields\' Zoom Lecture (facebook Post).2\" width=\"500\" height=\"419\" />\n\n<b class=\"session-name\">Rege</b><b class=\"session-name\">nerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy</b>\n<div class=\"session-desc\">\n\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\n\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients.  This lecture could change your patients’ lives and maybe even yours.</em>\n\n</div>\nWe hope to see you there for this informative conference!\n\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>\n\n&nbsp;\n<h3>Regenerative Orthopedics</h3>\nRegenerative Orthopedics includes Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy. All of these treatments are natural non-surgical methods of assisting the body to heal weakened or injured joints, tendons and ligaments. With Regenerative Orthopedics, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, joint function is improved, and the pain is alleviated.\n\n<em>Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.</em>','Regenerative Orthopedics Lecture on Zoom','','inherit','closed','closed','','1434-autosave-v1','','','2022-05-28 03:54:08','2022-05-28 03:54:08','',1434,'https://www.drfields.com/?p=4638',0,'revision','',0),(4639,9,'2021-04-24 02:07:29','2021-04-24 02:07:29','<h2></h2>\r\n[caption id=\"attachment_4637\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4637 size-medium\" title=\"Cal Chiro Sports Symposium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/CalChiro-Sports-Symposium-2-copy-3-500x262.png\" alt=\"Cal Chiro Sports Symposium\" width=\"500\" height=\"262\" /> <strong>                                      Cal Chiro Sports Symposium</strong> [/caption]\r\n<h3>Peter A. Fields, MD, DC will be speaking at the Cal Chiro Sports Symposium on May 2nd at 10:30 AM.</h3>\r\nJoin Peter A. Fields, MD, DC, and your fellow sports chiropractic colleagues for the <strong>virtual</strong> CalChiro Sports Symposium - Spring Training 2021. The event will take place on <strong>Saturday, May 1st – Sunday, May 2nd</strong> and continue the following <strong>Tuesday, May 4th – Thursday, May 6th</strong>.\r\n\r\nThe topic Dr. Fields will discuss is:\r\n\r\n<a class=\"session-link\" href=\"https://whova.com/embedded/speaker_session_detail/calch_202105/1576545/\"><b class=\"session-name\">Regenerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy+</b></a>\r\n<div class=\"session-desc\">\r\n\r\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\r\n\r\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients. And yes, even with back problems that do not respond to chiropractic care, I might be able to help. Some of my patients are fellow chiropractors that wanted to avoid surgery. This lecture could change your patients’ lives and maybe even yours.</em>\r\n\r\n<em>By attending this lecture, you will learn about non-surgical alternatives to invasive orthopedic surgeries and will understand the concept behind Regenerative Orthopedics.\"</em>\r\n<h3>Are you a chiropractor interested in attending the Cal Chiro Sports Symposium?</h3>\r\nIf you are a chiropractor and want to join us at the Cal Chiro Sports Symposium, you can <a href=\"https://www.calchiro.org/sports-symposium-2021\">click here</a> to register at the Cal Chiro <a href=\"https://www.calchiro.org/sports-symposium-2021\">website</a>.\r\n\r\n</div>\r\nWe hope to see you there for this informative conference!\r\n\r\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>','Cal Chiro Sports Symposium','','inherit','closed','closed','','1434-revision-v1','','','2021-04-24 02:07:29','2021-04-24 02:07:29','',1434,'https://www.drfields.com/?p=4639',0,'revision','',0),(4640,9,'2021-04-24 02:11:20','2021-04-24 02:11:20','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/cal-chiro-sports-symposium/\">Join Peter A. Fields, MD, DC at the Cal Chiro Sports Symposium</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-04-24 02:11:20','2021-04-24 02:11:20','',2109,'https://www.drfields.com/?p=4640',0,'revision','',0),(4641,9,'2021-04-24 02:15:29','2021-04-24 02:15:29','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/cal-chiro-sports-symposium/\">Join Peter A. Fields, MD, DC at the 2021 Cal Chiro Sports Symposium</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"Our-Office/Our-Philosophy\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2021-04-24 02:15:29','2021-04-24 02:15:29','',2109,'https://www.drfields.com/?p=4641',0,'revision','',0),(4643,9,'2021-04-26 20:10:42','2021-04-26 20:10:42','<h2><img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" /></h2>\n<h2>Stem Cell Doctor in the Los Angeles Area</h2>\nPeter A. Fields, MD DC, is a Stem Cell Doctor in Los Angeles and the founder of OrthoRegen<sup>®</sup>. Dr. Fields is a leading expert in using Stem Cell Treatments for joint and spine regeneration. With the different forms of Regenerative Orthopedics, Dr. Fields helps people avoid unnecessary orthopedic surgeries. That includes arthroscopic procedures and more extensive surgeries. Dr. Fields is passionate about helping his clients by eliminating their joint pain. Many patients enjoy the increased function and optimal long-term results with the use of Stem Cell Regenerative Treatments.\n<h3>What is a Stem Cell Doctor?</h3>\nA Stem Cell Doctor like Peter A. Fields, MD, DC, provides Regenerative Orthopedics solutions like Stem Cell Therapy, PRP, and Prolotherapy for painful joint conditions. And all of these techniques are non-surgical alternatives to joint and spine repair. When Stem Cell Therapy is recommended, Dr. Fields utilizes the Gold Standard in Stem Cell therapy.\n\nWhat makes it the Gold Standard? At OrthoRegen, we use 4 different regenerative techniques to provide the greatest outcomes to regenerate the injured soft tissue. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Click here to find out more about the Gold Standard in Stem Cell Therapy.</a>\n\n<strong>Regenerative medicine is growing in popularity in the medical world as an alternative to invasive orthopedic surgeries, including joint replacement.</strong> The remarkable thing about Stem Cells is that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, cartilage cells or meniscus cells.\n<h3>What Conditions Can a Stem Cell Therapy Help?</h3>\nDr. Fields treats weakened, torn, or damaged ligaments. So if you are suffering from tendon tears, ligament tears, worn-out cartilage, a torn meniscus, or injured labrum...Regenerative Orthopedics is the ideal non-surgical treatment for you. And excitingly, Stem Cell Therapy is also very effective at treating arthritic conditions...even severe arthritis.\n<h4><strong>Peter A. Fields, MD, DC has had great success in treating joint conditions with Stem Cell Therapy, including:</strong></h4>\n<ul>\n 	<li>\"Bone-on-Bone\" Arthritis</li>\n 	<li>Severe Arthritis</li>\n 	<li>Degenerated Joint</li>\n 	<li>Torn, Worn, or Missing Cartilage</li>\n</ul>\n<a href=\"http://Amniotic “Stem Cells”?\">Click here</a> to find out more about Stem Cell Treatments like <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-options-for-arthritis/\">Amniotic “Stem Cells” and One-Shot Magic Cures</a>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h3>What is Stem Cell Therapy?</h3>\nStem Cell Therapy is an injection treatment of stem cells into the joint or affected area to promote healing. This procedure is usually used in cases such as where a joint replacement has been recommended when patients have been told their joint is \"bone-on-bone,\" in advanced arthritis, and other aggressive injuries.\n\nAs stated earlier, Stem Cell Therapy is just one type of Regenerative Orthopedics. And at OrthoRegen, we use the Gold Standard in Stem Cell Therapy because it is extremely comprehensive to help you avoid invasive surgery.\n\nStem Cell Therapy at OrthoRegen is a non-surgical healing treatment to repair soft tissue. Stem Cell Therapy incorporates autologous (your own) culture-expanded bone marrow mesenchymal stem cells and adipose (fat) stem cells in a platelet-rich-fibrin glue. Then, Dextrose Prolotherapy is applied around the entire area. It really is the best way to achieve the greatest possible results without the need for surgery.\n<h3>Are Stem Cell Treatments Safe?</h3>\nStem Cell Treatments at OrthoRegen are an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects that vary depending on the area being treated. The Stem Cell Doctor will discuss these possibilities fully with patients during the pre-treatment consultation. All Regenerative Orthopedic therapies are only recommended after an extensive history and physical exam.\n<h3>Are You A Candidate for Stem Cell Therapy?</h3>\nHave you been told you need to have joint replacement surgery -- whether that\'s shoulder replacement surgery, hip replacement surgery, knee replacement surgery (or any other joint)? Or has your doctor said that your condition is bone-on-bone, severely arthritic? there is a great possibility that Stem Cell Therapy is for you! And you owe it to yourself to examine all surgical alternatives before going under the knife.\n\nSpine Surgery and joint replacement surgery are very invasive procedures. And each comes with its own long list of risks and reasons to avoid it at all costs. Surgery comes with hospital stays, long recovery times, potential (dangerous) complications, and the possible need to have the procedure redone at some point.\n<h3>Contact Us for An Evaluation for Stem Cell Therapy</h3>\nMake an appointment with our Stem Cell Doctor for an evaluation to see if you are a good candidate for the Gold Standard in Stem Cell Therapy for Spine and Joints. Call <a href=\"tel:+[phone_raw]\">[phone] </a>to Schedule Your Appointment Today!\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stem Cell Doctor','','inherit','closed','closed','','292-autosave-v1','','','2021-04-26 20:10:42','2021-04-26 20:10:42','',292,'https://www.drfields.com/?p=4643',0,'revision','',0),(4644,9,'2021-04-26 20:03:41','2021-04-26 20:03:41','<h2><img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" /></h2>\r\n<h2>Stem Cell Doctor in the Los Angeles Area</h2>\r\nPeter A. Fields, MD DC, is a Stem Cell Doctor in Los Angeles and the founder of OrthoRegen<sup>®</sup>. Dr. Fields is a leading expert in using Stem Cell Treatments for joint and spine regeneration. With the different forms of Regenerative Orthopedics, Dr. Fields helps people avoid unnecessary orthopedic surgeries. That includes arthroscopic procedures and more extensive surgeries. Dr. Fields is passionate about helping his clients by eliminating their joint pain. So many patients enjoy increased function and optimal long-term results with the use of Stem Cell Regenerative Treatments.\r\n<h3>What is a Stem Cell Doctor?</h3>\r\nA Stem Cell Doctor like Peter A. Fields, MD, DC provides Regenerative Orthopedics solutions like Stem Cell Therapy, PRP, and Prolotherapy for painful joint conditions. And all of these techniques are non-surgical alternatives to joint and spine repair. When Stem Cell Therapy is recommended, Dr. Fields utilizes the Gold Standard in Stem Cell therapy.\r\n\r\nWhat makes it the Gold Standard? At OrthoRegen, we use 4 different types of regenerative techniques to provide the greatest outcomes to regenerate the injured soft tissue. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Click here to find out more about the Gold Standard in Stem Cell Therapy.</a>\r\n\r\n<strong>Regenerative medicine is growing in popularity in the medical world as an alternative to invasive orthopedic surgeries including joint replacement.</strong> The remarkable thing about Stem Cells is that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, cartilage cells or meniscus cells.\r\n<h3>What Conditions Can a Stem Cell Doctor Help?</h3>\r\nDr. Fields treats weakened, torn, or damaged ligaments. So if you are suffering from tendon tears, ligament tears, worn out cartilage, a torn meniscus, or injured labrum...Regenerative Orthopedics is the ideal non-surgical treatment for you. And excitingly, Stem Cell Therapy is also very effective at treating arthritic conditions...even severe arthritis.\r\n<h4><strong>Peter A. Fields, MD, DC has had great success in treating joint conditions with Stem Cell Therapy including:</strong></h4>\r\n<ul>\r\n 	<li>\"Bone-on-Bone\" Arthritis</li>\r\n 	<li>Severe Arthritis</li>\r\n 	<li>Degenerated Joint</li>\r\n 	<li>Torn, Worn, or Missing Cartilage</li>\r\n</ul>\r\n<a href=\"http://Amniotic “Stem Cells”?\">Click here</a> to find out more about Stem Cell Treatments like <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-options-for-arthritis/\">Amniotic “Stem Cells” and One-Shot Magic Cures</a>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>What is Stem Cell Therapy?</h3>\r\nStem Cell Therapy is an injection treatment of stem cells into the joint or affected area to promote healing. This procedure is usually used in cases such as where joint replacement has been recommended, when patients have be told there joint is \"bone-on-bone\", in advanced arthritis, and in other aggressive injuries.\r\n\r\nAs stated earlier, Stem Cell Therapy is just one type of Regenerative Orthopedics. And at OrthoRegen, we use the Gold Standard in Stem Cell Therapy, because it is extremely comprehensive to help you avoid invasive surgery.\r\n\r\nStem Cell Therapy at OrthoRegen is a non-surgical healing treatment to repair soft tissue. Stem Cell Therapy incorporates autologous (your own) culture-expanded bone marrow mesenchymal stem cells and adipose (fat) stem cells in a platelet rich-fibrin glue. Then, Dextrose Prolotherapy is applied around the entire area. It really is the best way to achieve the greatest possible results without the need for surgery.\r\n<h3>Are Stem Cell Treatments Safe?</h3>\r\nStem Cell Treatments at OrthoRegen are an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. The Stem Cell Doctor will discuss these possibilities fully with patients during the pre-treatment consultation. All Regenerative Orthopedic therapies are only recommended after a very thorough history and physical exam.\r\n<h3>Are You A Candidate for Stem Cell Therapy?</h3>\r\nIf you have been told that you need to have joint replacement surgery -- whether that\'s shoulder replacement surgery, hip replacement surgery, knee replacement surgery (or any other joint). Or if you\'ve been told that you need to have spine surgery due to bone-on-bone, arthritis or other conditions, there is a great possibility that Stem Cell Therapy is for you! And you owe it to yourself to examine all surgical alternatives before going under the knife.\r\n\r\nSpine Surgery and joint replacement surgery are very invasive procedures. And each comes with its own long list of risks and reasons to avoid it at all costs. Surgery comes with hospital stays, long recovery times, potential (dangerous) complications, and the possible need to have the procedure redone at some point.\r\n<h3>Contact Us for An Evaluation for Stem Cell Therapy</h3>\r\nMake an appointment with our Stem Cell Doctor for an evaluation to see if you are a good candidate for the Gold Standard in Stem Cell Therapy for Spine and Joints. Call <a href=\"tel:+[phone_raw]\">[phone] </a>to Schedule Your Appointment Today!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stem Cell Doctor','','inherit','closed','closed','','292-revision-v1','','','2021-04-26 20:03:41','2021-04-26 20:03:41','',292,'https://www.drfields.com/?p=4644',0,'revision','',0),(4645,9,'2021-04-26 20:04:59','2021-04-26 20:04:59','<h2><img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" /></h2>\r\n<h2>Stem Cell Doctor in the Los Angeles Area</h2>\r\nPeter A. Fields, MD DC, is a Stem Cell Doctor in Los Angeles and the founder of OrthoRegen<sup>®</sup>. Dr. Fields is a leading expert in using Stem Cell Treatments for joint and spine regeneration. With the different forms of Regenerative Orthopedics, Dr. Fields helps people avoid unnecessary orthopedic surgeries. That includes arthroscopic procedures and more extensive surgeries. Dr. Fields is passionate about helping his clients by eliminating their joint pain. So many patients enjoy the increased function and optimal long-term results with the use of Stem Cell Regenerative Treatments.\r\n<h3>What is a Stem Cell Doctor?</h3>\r\nA Stem Cell Doctor like Peter A. Fields, MD, DC provides Regenerative Orthopedics solutions like Stem Cell Therapy, PRP, and Prolotherapy for painful joint conditions. And all of these techniques are non-surgical alternatives to joint and spine repair. When Stem Cell Therapy is recommended, Dr. Fields utilizes the Gold Standard in Stem Cell therapy.\r\n\r\nWhat makes it the Gold Standard? At OrthoRegen, we use 4 different types of regenerative techniques to provide the greatest outcomes to regenerate the injured soft tissue. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Click here to find out more about the Gold Standard in Stem Cell Therapy.</a>\r\n\r\n<strong>Regenerative medicine is growing in popularity in the medical world as an alternative to invasive orthopedic surgeries including joint replacement.</strong> The remarkable thing about Stem Cells is that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, cartilage cells or meniscus cells.\r\n<h3>What Conditions Can a Stem Cell Therapy Help?</h3>\r\nDr. Fields treats weakened, torn, or damaged ligaments. So if you are suffering from tendon tears, ligament tears, worn out cartilage, a torn meniscus, or injured labrum...Regenerative Orthopedics is the ideal non-surgical treatment for you. And excitingly, Stem Cell Therapy is also very effective at treating arthritic conditions...even severe arthritis.\r\n<h4><strong>Peter A. Fields, MD, DC has had great success in treating joint conditions with Stem Cell Therapy including:</strong></h4>\r\n<ul>\r\n 	<li>\"Bone-on-Bone\" Arthritis</li>\r\n 	<li>Severe Arthritis</li>\r\n 	<li>Degenerated Joint</li>\r\n 	<li>Torn, Worn, or Missing Cartilage</li>\r\n</ul>\r\n<a href=\"http://Amniotic “Stem Cells”?\">Click here</a> to find out more about Stem Cell Treatments like <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-options-for-arthritis/\">Amniotic “Stem Cells” and One-Shot Magic Cures</a>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>What is Stem Cell Therapy?</h3>\r\nStem Cell Therapy is an injection treatment of stem cells into the joint or affected area to promote healing. This procedure is usually used in cases such as where joint replacement has been recommended, when patients have be told there joint is \"bone-on-bone\", in advanced arthritis, and in other aggressive injuries.\r\n\r\nAs stated earlier, Stem Cell Therapy is just one type of Regenerative Orthopedics. And at OrthoRegen, we use the Gold Standard in Stem Cell Therapy, because it is extremely comprehensive to help you avoid invasive surgery.\r\n\r\nStem Cell Therapy at OrthoRegen is a non-surgical healing treatment to repair soft tissue. Stem Cell Therapy incorporates autologous (your own) culture-expanded bone marrow mesenchymal stem cells and adipose (fat) stem cells in a platelet rich-fibrin glue. Then, Dextrose Prolotherapy is applied around the entire area. It really is the best way to achieve the greatest possible results without the need for surgery.\r\n<h3>Are Stem Cell Treatments Safe?</h3>\r\nStem Cell Treatments at OrthoRegen are an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects which will vary depending on the area being treated. The Stem Cell Doctor will discuss these possibilities fully with patients during the pre-treatment consultation. All Regenerative Orthopedic therapies are only recommended after a very thorough history and physical exam.\r\n<h3>Are You A Candidate for Stem Cell Therapy?</h3>\r\nIf you have been told that you need to have joint replacement surgery -- whether that\'s shoulder replacement surgery, hip replacement surgery, knee replacement surgery (or any other joint). Or if you\'ve been told that you need to have spine surgery due to bone-on-bone, arthritis or other conditions, there is a great possibility that Stem Cell Therapy is for you! And you owe it to yourself to examine all surgical alternatives before going under the knife.\r\n\r\nSpine Surgery and joint replacement surgery are very invasive procedures. And each comes with its own long list of risks and reasons to avoid it at all costs. Surgery comes with hospital stays, long recovery times, potential (dangerous) complications, and the possible need to have the procedure redone at some point.\r\n<h3>Contact Us for An Evaluation for Stem Cell Therapy</h3>\r\nMake an appointment with our Stem Cell Doctor for an evaluation to see if you are a good candidate for the Gold Standard in Stem Cell Therapy for Spine and Joints. Call <a href=\"tel:+[phone_raw]\">[phone] </a>to Schedule Your Appointment Today!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stem Cell Doctor','','inherit','closed','closed','','292-revision-v1','','','2021-04-26 20:04:59','2021-04-26 20:04:59','',292,'https://www.drfields.com/?p=4645',0,'revision','',0),(4646,9,'2021-04-26 20:08:34','2021-04-26 20:08:34','<h2><img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" /></h2>\r\n<h2>Stem Cell Doctor in the Los Angeles Area</h2>\r\nPeter A. Fields, MD DC, is a Stem Cell Doctor in Los Angeles and the founder of OrthoRegen<sup>®</sup>. Dr. Fields is a leading expert in using Stem Cell Treatments for joint and spine regeneration. With the different forms of Regenerative Orthopedics, Dr. Fields helps people avoid unnecessary orthopedic surgeries. That includes arthroscopic procedures and more extensive surgeries. Dr. Fields is passionate about helping his clients by eliminating their joint pain. Many patients enjoy the increased function and optimal long-term results with the use of Stem Cell Regenerative Treatments.\r\n<h3>What is a Stem Cell Doctor?</h3>\r\nA Stem Cell Doctor like Peter A. Fields, MD, DC, provides Regenerative Orthopedics solutions like Stem Cell Therapy, PRP, and Prolotherapy for painful joint conditions. And all of these techniques are non-surgical alternatives to joint and spine repair. When Stem Cell Therapy is recommended, Dr. Fields utilizes the Gold Standard in Stem Cell therapy.\r\n\r\nWhat makes it the Gold Standard? At OrthoRegen, we use 4 different regenerative techniques to provide the greatest outcomes to regenerate the injured soft tissue. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Click here to find out more about the Gold Standard in Stem Cell Therapy.</a>\r\n\r\n<strong>Regenerative medicine is growing in popularity in the medical world as an alternative to invasive orthopedic surgeries, including joint replacement.</strong> The remarkable thing about Stem Cells is that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, cartilage cells or meniscus cells.\r\n<h3>What Conditions Can a Stem Cell Therapy Help?</h3>\r\nDr. Fields treats weakened, torn, or damaged ligaments. So if you are suffering from tendon tears, ligament tears, worn-out cartilage, a torn meniscus, or injured labrum...Regenerative Orthopedics is the ideal non-surgical treatment for you. And excitingly, Stem Cell Therapy is also very effective at treating arthritic conditions...even severe arthritis.\r\n<h4><strong>Peter A. Fields, MD, DC has had great success in treating joint conditions with Stem Cell Therapy, including:</strong></h4>\r\n<ul>\r\n 	<li>\"Bone-on-Bone\" Arthritis</li>\r\n 	<li>Severe Arthritis</li>\r\n 	<li>Degenerated Joint</li>\r\n 	<li>Torn, Worn, or Missing Cartilage</li>\r\n</ul>\r\n<a href=\"http://Amniotic “Stem Cells”?\">Click here</a> to find out more about Stem Cell Treatments like <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-options-for-arthritis/\">Amniotic “Stem Cells” and One-Shot Magic Cures</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>What is Stem Cell Therapy?</h3>\r\nStem Cell Therapy is an injection treatment of stem cells into the joint or affected area to promote healing. This procedure is usually used in cases such as where a joint replacement has been recommended when patients have been told their joint is \"bone-on-bone,\" in advanced arthritis, and other aggressive injuries.\r\n\r\nAs stated earlier, Stem Cell Therapy is just one type of Regenerative Orthopedics. And at OrthoRegen, we use the Gold Standard in Stem Cell Therapy because it is extremely comprehensive to help you avoid invasive surgery.\r\n\r\nStem Cell Therapy at OrthoRegen is a non-surgical healing treatment to repair soft tissue. Stem Cell Therapy incorporates autologous (your own) culture-expanded bone marrow mesenchymal stem cells and adipose (fat) stem cells in a platelet-rich-fibrin glue. Then, Dextrose Prolotherapy is applied around the entire area. It really is the best way to achieve the greatest possible results without the need for surgery.\r\n<h3>Are Stem Cell Treatments Safe?</h3>\r\nStem Cell Treatments at OrthoRegen are an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects that vary depending on the area being treated. The Stem Cell Doctor will discuss these possibilities fully with patients during the pre-treatment consultation. All Regenerative Orthopedic therapies are only recommended after an extensive history and physical exam.\r\n<h3>Are You A Candidate for Stem Cell Therapy?</h3>\r\nIf you have been told that you need to have joint replacement surgery -- whether that\'s shoulder replacement surgery, hip replacement surgery, knee replacement surgery (or any other joint). Or if you\'ve been told that you need to have spine surgery due to bone-on-bone, arthritis, or other conditions, there is a great possibility that Stem Cell Therapy is for you! And you owe it to yourself to examine all surgical alternatives before going under the knife.\r\n\r\nSpine Surgery and joint replacement surgery are very invasive procedures. And each comes with its own long list of risks and reasons to avoid it at all costs. Surgery comes with hospital stays, long recovery times, potential (dangerous) complications, and the possible need to have the procedure redone at some point.\r\n<h3>Contact Us for An Evaluation for Stem Cell Therapy</h3>\r\nMake an appointment with our Stem Cell Doctor for an evaluation to see if you are a good candidate for the Gold Standard in Stem Cell Therapy for Spine and Joints. Call <a href=\"tel:+[phone_raw]\">[phone] </a>to Schedule Your Appointment Today!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stem Cell Doctor','','inherit','closed','closed','','292-revision-v1','','','2021-04-26 20:08:34','2021-04-26 20:08:34','',292,'https://www.drfields.com/?p=4646',0,'revision','',0),(4647,9,'2021-04-26 20:11:16','2021-04-26 20:11:16','<h2><img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"218\" height=\"350\" /></h2>\r\n<h2>Stem Cell Doctor in the Los Angeles Area</h2>\r\nPeter A. Fields, MD DC, is a Stem Cell Doctor in Los Angeles and the founder of OrthoRegen<sup>®</sup>. Dr. Fields is a leading expert in using Stem Cell Treatments for joint and spine regeneration. With the different forms of Regenerative Orthopedics, Dr. Fields helps people avoid unnecessary orthopedic surgeries. That includes arthroscopic procedures and more extensive surgeries. Dr. Fields is passionate about helping his clients by eliminating their joint pain. Many patients enjoy the increased function and optimal long-term results with the use of Stem Cell Regenerative Treatments.\r\n<h3>What is a Stem Cell Doctor?</h3>\r\nA Stem Cell Doctor like Peter A. Fields, MD, DC, provides Regenerative Orthopedics solutions like Stem Cell Therapy, PRP, and Prolotherapy for painful joint conditions. And all of these techniques are non-surgical alternatives to joint and spine repair. When Stem Cell Therapy is recommended, Dr. Fields utilizes the Gold Standard in Stem Cell therapy.\r\n\r\nWhat makes it the Gold Standard? At OrthoRegen, we use 4 different regenerative techniques to provide the greatest outcomes to regenerate the injured soft tissue. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Click here to find out more about the Gold Standard in Stem Cell Therapy.</a>\r\n\r\n<strong>Regenerative medicine is growing in popularity in the medical world as an alternative to invasive orthopedic surgeries, including joint replacement.</strong> The remarkable thing about Stem Cells is that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, cartilage cells or meniscus cells.\r\n<h3>What Conditions Can a Stem Cell Therapy Help?</h3>\r\nDr. Fields treats weakened, torn, or damaged ligaments. So if you are suffering from tendon tears, ligament tears, worn-out cartilage, a torn meniscus, or injured labrum...Regenerative Orthopedics is the ideal non-surgical treatment for you. And excitingly, Stem Cell Therapy is also very effective at treating arthritic conditions...even severe arthritis.\r\n<h4><strong>Peter A. Fields, MD, DC has had great success in treating joint conditions with Stem Cell Therapy, including:</strong></h4>\r\n<ul>\r\n 	<li>\"Bone-on-Bone\" Arthritis</li>\r\n 	<li>Severe Arthritis</li>\r\n 	<li>Degenerated Joint</li>\r\n 	<li>Torn, Worn, or Missing Cartilage</li>\r\n</ul>\r\n<a href=\"http://Amniotic “Stem Cells”?\">Click here</a> to find out more about Stem Cell Treatments like <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-options-for-arthritis/\">Amniotic “Stem Cells” and One-Shot Magic Cures</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>What is Stem Cell Therapy?</h3>\r\nStem Cell Therapy is an injection treatment of stem cells into the joint or affected area to promote healing. This procedure is usually used in cases such as where a joint replacement has been recommended when patients have been told their joint is \"bone-on-bone,\" in advanced arthritis, and other aggressive injuries.\r\n\r\nAs stated earlier, Stem Cell Therapy is just one type of Regenerative Orthopedics. And at OrthoRegen, we use the Gold Standard in Stem Cell Therapy because it is extremely comprehensive to help you avoid invasive surgery.\r\n\r\nStem Cell Therapy at OrthoRegen is a non-surgical healing treatment to repair soft tissue. Stem Cell Therapy incorporates autologous (your own) culture-expanded bone marrow mesenchymal stem cells and adipose (fat) stem cells in a platelet-rich-fibrin glue. Then, Dextrose Prolotherapy is applied around the entire area. It really is the best way to achieve the greatest possible results without the need for surgery.\r\n<h3>Are Stem Cell Treatments Safe?</h3>\r\nStem Cell Treatments at OrthoRegen are an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects that vary depending on the area being treated. The Stem Cell Doctor will discuss these possibilities fully with patients during the pre-treatment consultation. All Regenerative Orthopedic therapies are only recommended after an extensive history and physical exam.\r\n<h3>Are You A Candidate for Stem Cell Therapy?</h3>\r\nHave you been told you need to have joint replacement surgery -- whether that\'s shoulder replacement surgery, hip replacement surgery, knee replacement surgery (or any other joint)? Or has your doctor said that your condition is bone-on-bone or severely arthritic? Then there is a great possibility that Stem Cell Therapy is for you! And you owe it to yourself to examine all surgical alternatives before going under the knife.\r\n\r\nSpine Surgery and joint replacement surgery are very invasive procedures. And each comes with its own long list of risks and reasons to avoid it at all costs. Surgery comes with hospital stays, long recovery times, potential (dangerous) complications, and the possible need to have the procedure redone at some point.\r\n<h3>Contact Us for An Evaluation for Stem Cell Therapy</h3>\r\nMake an appointment with our Stem Cell Doctor for an evaluation to see if you are a good candidate for the Gold Standard in Stem Cell Therapy for Spine and Joints. Call <a href=\"tel:+[phone_raw]\">[phone] </a>to Schedule Your Appointment Today!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stem Cell Doctor','','inherit','closed','closed','','292-revision-v1','','','2021-04-26 20:11:16','2021-04-26 20:11:16','',292,'https://www.drfields.com/?p=4647',0,'revision','',0),(4648,9,'2021-04-26 20:11:50','2021-04-26 20:11:50','<h2><img class=\"alignleft  wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"194\" height=\"308\" /></h2>\r\n<h2>Stem Cell Doctor in the Los Angeles Area</h2>\r\nPeter A. Fields, MD DC, is a Stem Cell Doctor in Los Angeles and the founder of OrthoRegen<sup>®</sup>. Dr. Fields is a leading expert in using Stem Cell Treatments for joint and spine regeneration. With the different forms of Regenerative Orthopedics, Dr. Fields helps people avoid unnecessary orthopedic surgeries. That includes arthroscopic procedures and more extensive surgeries. Dr. Fields is passionate about helping his clients by eliminating their joint pain. Many patients enjoy the increased function and optimal long-term results with the use of Stem Cell Regenerative Treatments.\r\n<h3>What is a Stem Cell Doctor?</h3>\r\nA Stem Cell Doctor like Peter A. Fields, MD, DC, provides Regenerative Orthopedics solutions like Stem Cell Therapy, PRP, and Prolotherapy for painful joint conditions. And all of these techniques are non-surgical alternatives to joint and spine repair. When Stem Cell Therapy is recommended, Dr. Fields utilizes the Gold Standard in Stem Cell therapy.\r\n\r\nWhat makes it the Gold Standard? At OrthoRegen, we use 4 different regenerative techniques to provide the greatest outcomes to regenerate the injured soft tissue. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Click here to find out more about the Gold Standard in Stem Cell Therapy.</a>\r\n\r\n<strong>Regenerative medicine is growing in popularity in the medical world as an alternative to invasive orthopedic surgeries, including joint replacement.</strong> The remarkable thing about Stem Cells is that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, cartilage cells or meniscus cells.\r\n<h3>What Conditions Can a Stem Cell Therapy Help?</h3>\r\nDr. Fields treats weakened, torn, or damaged ligaments. So if you are suffering from tendon tears, ligament tears, worn-out cartilage, a torn meniscus, or injured labrum...Regenerative Orthopedics is the ideal non-surgical treatment for you. And excitingly, Stem Cell Therapy is also very effective at treating arthritic conditions...even severe arthritis.\r\n<h4><strong>Peter A. Fields, MD, DC has had great success in treating joint conditions with Stem Cell Therapy, including:</strong></h4>\r\n<ul>\r\n 	<li>\"Bone-on-Bone\" Arthritis</li>\r\n 	<li>Severe Arthritis</li>\r\n 	<li>Degenerated Joint</li>\r\n 	<li>Torn, Worn, or Missing Cartilage</li>\r\n</ul>\r\n<a href=\"http://Amniotic “Stem Cells”?\">Click here</a> to find out more about Stem Cell Treatments like <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-options-for-arthritis/\">Amniotic “Stem Cells” and One-Shot Magic Cures</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>What is Stem Cell Therapy?</h3>\r\nStem Cell Therapy is an injection treatment of stem cells into the joint or affected area to promote healing. This procedure is usually used in cases such as where a joint replacement has been recommended when patients have been told their joint is \"bone-on-bone,\" in advanced arthritis, and other aggressive injuries.\r\n\r\nAs stated earlier, Stem Cell Therapy is just one type of Regenerative Orthopedics. And at OrthoRegen, we use the Gold Standard in Stem Cell Therapy because it is extremely comprehensive to help you avoid invasive surgery.\r\n\r\nStem Cell Therapy at OrthoRegen is a non-surgical healing treatment to repair soft tissue. Stem Cell Therapy incorporates autologous (your own) culture-expanded bone marrow mesenchymal stem cells and adipose (fat) stem cells in a platelet-rich-fibrin glue. Then, Dextrose Prolotherapy is applied around the entire area. It really is the best way to achieve the greatest possible results without the need for surgery.\r\n<h3>Are Stem Cell Treatments Safe?</h3>\r\nStem Cell Treatments at OrthoRegen are an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects that vary depending on the area being treated. The Stem Cell Doctor will discuss these possibilities fully with patients during the pre-treatment consultation. All Regenerative Orthopedic therapies are only recommended after an extensive history and physical exam.\r\n<h3>Are You A Candidate for Stem Cell Therapy?</h3>\r\nHave you been told you need to have joint replacement surgery -- whether that\'s shoulder replacement surgery, hip replacement surgery, knee replacement surgery (or any other joint)? Or has your doctor said that your condition is bone-on-bone or severely arthritic? Then there is a great possibility that Stem Cell Therapy is for you! And you owe it to yourself to examine all surgical alternatives before going under the knife.\r\n\r\nSpine Surgery and joint replacement surgery are very invasive procedures. And each comes with its own long list of risks and reasons to avoid it at all costs. Surgery comes with hospital stays, long recovery times, potential (dangerous) complications, and the possible need to have the procedure redone at some point.\r\n<h3>Contact Us for An Evaluation for Stem Cell Therapy</h3>\r\nMake an appointment with our Stem Cell Doctor for an evaluation to see if you are a good candidate for the Gold Standard in Stem Cell Therapy for Spine and Joints. Call <a href=\"tel:+[phone_raw]\">[phone] </a>to Schedule Your Appointment Today!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stem Cell Doctor','','inherit','closed','closed','','292-revision-v1','','','2021-04-26 20:11:50','2021-04-26 20:11:50','',292,'https://www.drfields.com/?p=4648',0,'revision','',0),(4649,9,'2021-04-26 20:12:16','2021-04-26 20:12:16','<h2><img class=\"wp-image-1685 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"194\" height=\"308\" /></h2>\r\n<h2>Stem Cell Doctor in the Los Angeles Area</h2>\r\nPeter A. Fields, MD DC, is a Stem Cell Doctor in Los Angeles and the founder of OrthoRegen<sup>®</sup>. Dr. Fields is a leading expert in using Stem Cell Treatments for joint and spine regeneration. With the different forms of Regenerative Orthopedics, Dr. Fields helps people avoid unnecessary orthopedic surgeries. That includes arthroscopic procedures and more extensive surgeries. Dr. Fields is passionate about helping his clients by eliminating their joint pain. Many patients enjoy the increased function and optimal long-term results with the use of Stem Cell Regenerative Treatments.\r\n<h3>What is a Stem Cell Doctor?</h3>\r\nA Stem Cell Doctor like Peter A. Fields, MD, DC, provides Regenerative Orthopedics solutions like Stem Cell Therapy, PRP, and Prolotherapy for painful joint conditions. And all of these techniques are non-surgical alternatives to joint and spine repair. When Stem Cell Therapy is recommended, Dr. Fields utilizes the Gold Standard in Stem Cell therapy.\r\n\r\nWhat makes it the Gold Standard? At OrthoRegen, we use 4 different regenerative techniques to provide the greatest outcomes to regenerate the injured soft tissue. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Click here to find out more about the Gold Standard in Stem Cell Therapy.</a>\r\n\r\n<strong>Regenerative medicine is growing in popularity in the medical world as an alternative to invasive orthopedic surgeries, including joint replacement.</strong> The remarkable thing about Stem Cells is that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, cartilage cells or meniscus cells.\r\n<h3>What Conditions Can a Stem Cell Therapy Help?</h3>\r\nDr. Fields treats weakened, torn, or damaged ligaments. So if you are suffering from tendon tears, ligament tears, worn-out cartilage, a torn meniscus, or injured labrum...Regenerative Orthopedics is the ideal non-surgical treatment for you. And excitingly, Stem Cell Therapy is also very effective at treating arthritic conditions...even severe arthritis.\r\n<h4><strong>Peter A. Fields, MD, DC has had great success in treating joint conditions with Stem Cell Therapy, including:</strong></h4>\r\n<ul>\r\n 	<li>\"Bone-on-Bone\" Arthritis</li>\r\n 	<li>Severe Arthritis</li>\r\n 	<li>Degenerated Joint</li>\r\n 	<li>Torn, Worn, or Missing Cartilage</li>\r\n</ul>\r\n<a href=\"http://Amniotic “Stem Cells”?\">Click here</a> to find out more about Stem Cell Treatments like <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-options-for-arthritis/\">Amniotic “Stem Cells” and One-Shot Magic Cures</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>What is Stem Cell Therapy?</h3>\r\nStem Cell Therapy is an injection treatment of stem cells into the joint or affected area to promote healing. This procedure is usually used in cases such as where a joint replacement has been recommended when patients have been told their joint is \"bone-on-bone,\" in advanced arthritis, and other aggressive injuries.\r\n\r\nAs stated earlier, Stem Cell Therapy is just one type of Regenerative Orthopedics. And at OrthoRegen, we use the Gold Standard in Stem Cell Therapy because it is extremely comprehensive to help you avoid invasive surgery.\r\n\r\nStem Cell Therapy at OrthoRegen is a non-surgical healing treatment to repair soft tissue. Stem Cell Therapy incorporates autologous (your own) culture-expanded bone marrow mesenchymal stem cells and adipose (fat) stem cells in a platelet-rich-fibrin glue. Then, Dextrose Prolotherapy is applied around the entire area. It really is the best way to achieve the greatest possible results without the need for surgery.\r\n<h3>Are Stem Cell Treatments Safe?</h3>\r\nStem Cell Treatments at OrthoRegen are an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects that vary depending on the area being treated. The Stem Cell Doctor will discuss these possibilities fully with patients during the pre-treatment consultation. All Regenerative Orthopedic therapies are only recommended after an extensive history and physical exam.\r\n<h3>Are You A Candidate for Stem Cell Therapy?</h3>\r\nHave you been told you need to have joint replacement surgery -- whether that\'s shoulder replacement surgery, hip replacement surgery, knee replacement surgery (or any other joint)? Or has your doctor said that your condition is bone-on-bone or severely arthritic? Then there is a great possibility that Stem Cell Therapy is for you! And you owe it to yourself to examine all surgical alternatives before going under the knife.\r\n\r\nSpine Surgery and joint replacement surgery are very invasive procedures. And each comes with its own long list of risks and reasons to avoid it at all costs. Surgery comes with hospital stays, long recovery times, potential (dangerous) complications, and the possible need to have the procedure redone at some point.\r\n<h3>Contact Us for An Evaluation for Stem Cell Therapy</h3>\r\nMake an appointment with our Stem Cell Doctor for an evaluation to see if you are a good candidate for the Gold Standard in Stem Cell Therapy for Spine and Joints. Call <a href=\"tel:+[phone_raw]\">[phone] </a>to Schedule Your Appointment Today!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stem Cell Doctor','','inherit','closed','closed','','292-revision-v1','','','2021-04-26 20:12:16','2021-04-26 20:12:16','',292,'https://www.drfields.com/?p=4649',0,'revision','',0),(4650,9,'2021-04-26 20:13:38','2021-04-26 20:13:38','<h2>Stem Cell Doctor in the Los Angeles Area</h2>\r\nPeter A. Fields, MD DC, is a Stem Cell Doctor in Los Angeles and the founder of OrthoRegen<sup>®</sup>. Dr. Fields is a leading expert in using Stem Cell Treatments for joint and spine regeneration. With the different forms of Regenerative Orthopedics, Dr. Fields helps people avoid unnecessary orthopedic surgeries. That includes arthroscopic procedures and more extensive surgeries. Dr. Fields is passionate about helping his clients by eliminating their joint pain. Many patients enjoy the increased function and optimal long-term results with the use of Stem Cell Regenerative Treatments.\r\n<h3>What is a Stem Cell Doctor?</h3>\r\n[caption id=\"attachment_2337\" align=\"alignright\" width=\"315\"]<img class=\"size-medium wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" /> Stem Cell Doctor Peter Fields Md Dc[/caption]\r\n\r\nA Stem Cell Doctor like Peter A. Fields, MD, DC, provides Regenerative Orthopedics solutions like Stem Cell Therapy, PRP, and Prolotherapy for painful joint conditions. And all of these techniques are non-surgical alternatives to joint and spine repair. When Stem Cell Therapy is recommended, Dr. Fields utilizes the Gold Standard in Stem Cell therapy.\r\n\r\nWhat makes it the Gold Standard? At OrthoRegen, we use 4 different regenerative techniques to provide the greatest outcomes to regenerate the injured soft tissue. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Click here to find out more about the Gold Standard in Stem Cell Therapy.</a>\r\n\r\n<strong>Regenerative medicine is growing in popularity in the medical world as an alternative to invasive orthopedic surgeries, including joint replacement.</strong> The remarkable thing about Stem Cells is that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, cartilage cells or meniscus cells.\r\n<h3>What Conditions Can a Stem Cell Therapy Help?</h3>\r\nDr. Fields treats weakened, torn, or damaged ligaments. So if you are suffering from tendon tears, ligament tears, worn-out cartilage, a torn meniscus, or injured labrum...Regenerative Orthopedics is the ideal non-surgical treatment for you. And excitingly, Stem Cell Therapy is also very effective at treating arthritic conditions...even severe arthritis.\r\n<h4><strong>Peter A. Fields, MD, DC has had great success in treating joint conditions with Stem Cell Therapy, including:</strong></h4>\r\n<ul>\r\n 	<li>\"Bone-on-Bone\" Arthritis</li>\r\n 	<li>Severe Arthritis</li>\r\n 	<li>Degenerated Joint</li>\r\n 	<li>Torn, Worn, or Missing Cartilage</li>\r\n</ul>\r\n<a href=\"http://Amniotic “Stem Cells”?\">Click here</a> to find out more about Stem Cell Treatments like <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-options-for-arthritis/\">Amniotic “Stem Cells” and One-Shot Magic Cures</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>What is Stem Cell Therapy?</h3>\r\nStem Cell Therapy is an injection treatment of stem cells into the joint or affected area to promote healing. This procedure is usually used in cases such as where a joint replacement has been recommended when patients have been told their joint is \"bone-on-bone,\" in advanced arthritis, and other aggressive injuries.\r\n\r\nAs stated earlier, Stem Cell Therapy is just one type of Regenerative Orthopedics. And at OrthoRegen, we use the Gold Standard in Stem Cell Therapy because it is extremely comprehensive to help you avoid invasive surgery.\r\n\r\nStem Cell Therapy at OrthoRegen is a non-surgical healing treatment to repair soft tissue. Stem Cell Therapy incorporates autologous (your own) culture-expanded bone marrow mesenchymal stem cells and adipose (fat) stem cells in a platelet-rich-fibrin glue. Then, Dextrose Prolotherapy is applied around the entire area. It really is the best way to achieve the greatest possible results without the need for surgery.\r\n<h3>Are Stem Cell Treatments Safe?</h3>\r\nStem Cell Treatments at OrthoRegen are an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects that vary depending on the area being treated. The Stem Cell Doctor will discuss these possibilities fully with patients during the pre-treatment consultation. All Regenerative Orthopedic therapies are only recommended after an extensive history and physical exam.\r\n<h3>Are You A Candidate for Stem Cell Therapy?</h3>\r\nHave you been told you need to have joint replacement surgery -- whether that\'s shoulder replacement surgery, hip replacement surgery, knee replacement surgery (or any other joint)? Or has your doctor said that your condition is bone-on-bone or severely arthritic? Then there is a great possibility that Stem Cell Therapy is for you! And you owe it to yourself to examine all surgical alternatives before going under the knife.\r\n\r\nSpine Surgery and joint replacement surgery are very invasive procedures. And each comes with its own long list of risks and reasons to avoid it at all costs. Surgery comes with hospital stays, long recovery times, potential (dangerous) complications, and the possible need to have the procedure redone at some point.\r\n<h3>Contact Us for An Evaluation for Stem Cell Therapy</h3>\r\nMake an appointment with our Stem Cell Doctor for an evaluation to see if you are a good candidate for the Gold Standard in Stem Cell Therapy for Spine and Joints. Call <a href=\"tel:+[phone_raw]\">[phone] </a>to Schedule Your Appointment Today!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stem Cell Doctor','','inherit','closed','closed','','292-revision-v1','','','2021-04-26 20:13:38','2021-04-26 20:13:38','',292,'https://www.drfields.com/?p=4650',0,'revision','',0),(4651,9,'2021-04-26 20:14:19','2021-04-26 20:14:19','<h2>Stem Cell Doctor in the Los Angeles Area</h2>\r\nPeter A. Fields, MD DC, is a Stem Cell Doctor in Los Angeles and the founder of OrthoRegen<sup>®</sup>. Dr. Fields is a leading expert in using Stem Cell Treatments for joint and spine regeneration. With the different forms of Regenerative Orthopedics, Dr. Fields helps people avoid unnecessary orthopedic surgeries. That includes arthroscopic procedures and more extensive surgeries. Dr. Fields is passionate about helping his clients by eliminating their joint pain. Many patients enjoy the increased function and optimal long-term results with the use of Stem Cell Regenerative Treatments.\r\n<h3>What is a Stem Cell Doctor?</h3>\r\n[caption id=\"attachment_2337\" align=\"alignright\" width=\"315\"]<img class=\"size-medium wp-image-2337\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" /> <strong>     Stem Cell Doctor Peter Fields, MD, DC</strong>[/caption]\r\n\r\nA Stem Cell Doctor like Peter A. Fields, MD, DC, provides Regenerative Orthopedics solutions like Stem Cell Therapy, PRP, and Prolotherapy for painful joint conditions. And all of these techniques are non-surgical alternatives to joint and spine repair. When Stem Cell Therapy is recommended, Dr. Fields utilizes the Gold Standard in Stem Cell therapy.\r\n\r\nWhat makes it the Gold Standard? At OrthoRegen, we use 4 different regenerative techniques to provide the greatest outcomes to regenerate the injured soft tissue. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Click here to find out more about the Gold Standard in Stem Cell Therapy.</a>\r\n\r\n<strong>Regenerative medicine is growing in popularity in the medical world as an alternative to invasive orthopedic surgeries, including joint replacement.</strong> The remarkable thing about Stem Cells is that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, cartilage cells or meniscus cells.\r\n<h3>What Conditions Can a Stem Cell Therapy Help?</h3>\r\nDr. Fields treats weakened, torn, or damaged ligaments. So if you are suffering from tendon tears, ligament tears, worn-out cartilage, a torn meniscus, or injured labrum...Regenerative Orthopedics is the ideal non-surgical treatment for you. And excitingly, Stem Cell Therapy is also very effective at treating arthritic conditions...even severe arthritis.\r\n<h4><strong>Peter A. Fields, MD, DC has had great success in treating joint conditions with Stem Cell Therapy, including: </strong></h4>\r\n<ul>\r\n 	<li>\"Bone-on-Bone\" Arthritis</li>\r\n 	<li>Severe Arthritis</li>\r\n 	<li>Degenerated Joint</li>\r\n 	<li>Torn, Worn, or Missing Cartilage</li>\r\n</ul>\r\n<a href=\"http://Amniotic “Stem Cells”?\">Click here</a> to find out more about Stem Cell Treatments like <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-options-for-arthritis/\">Amniotic “Stem Cells” and One-Shot Magic Cures</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>What is Stem Cell Therapy?</h3>\r\nStem Cell Therapy is an injection treatment of stem cells into the joint or affected area to promote healing. This procedure is usually used in cases such as where a joint replacement has been recommended when patients have been told their joint is \"bone-on-bone,\" in advanced arthritis, and other aggressive injuries.\r\n\r\nAs stated earlier, Stem Cell Therapy is just one type of Regenerative Orthopedics. And at OrthoRegen, we use the Gold Standard in Stem Cell Therapy because it is extremely comprehensive to help you avoid invasive surgery.\r\n\r\nStem Cell Therapy at OrthoRegen is a non-surgical healing treatment to repair soft tissue. Stem Cell Therapy incorporates autologous (your own) culture-expanded bone marrow mesenchymal stem cells and adipose (fat) stem cells in a platelet-rich-fibrin glue. Then, Dextrose Prolotherapy is applied around the entire area. It really is the best way to achieve the greatest possible results without the need for surgery.\r\n<h3>Are Stem Cell Treatments Safe?</h3>\r\nStem Cell Treatments at OrthoRegen are an extremely safe procedure. The risks are far less than those associated with surgery for your chronic joint pain or acute joint injuries. The risks are often also less than taking Ibuprofen (Motrin) for a lifetime to temporarily alleviate chronic pain. As with any procedure, there are risks and side effects that vary depending on the area being treated. The Stem Cell Doctor will discuss these possibilities fully with patients during the pre-treatment consultation. All Regenerative Orthopedic therapies are only recommended after an extensive history and physical exam.\r\n<h3>Are You A Candidate for Stem Cell Therapy?</h3>\r\nHave you been told you need to have joint replacement surgery -- whether that\'s shoulder replacement surgery, hip replacement surgery, knee replacement surgery (or any other joint)? Or has your doctor said that your condition is bone-on-bone or severely arthritic? Then there is a great possibility that Stem Cell Therapy is for you! And you owe it to yourself to examine all surgical alternatives before going under the knife.\r\n\r\nSpine Surgery and joint replacement surgery are very invasive procedures. And each comes with its own long list of risks and reasons to avoid it at all costs. Surgery comes with hospital stays, long recovery times, potential (dangerous) complications, and the possible need to have the procedure redone at some point.\r\n<h3>Contact Us for An Evaluation for Stem Cell Therapy</h3>\r\nMake an appointment with our Stem Cell Doctor for an evaluation to see if you are a good candidate for the Gold Standard in Stem Cell Therapy for Spine and Joints. Call <a href=\"tel:+[phone_raw]\">[phone] </a>to Schedule Your Appointment Today!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stem Cell Doctor','','inherit','closed','closed','','292-revision-v1','','','2021-04-26 20:14:19','2021-04-26 20:14:19','',292,'https://www.drfields.com/?p=4651',0,'revision','',0),(4652,9,'2021-04-28 00:14:13','2021-04-28 00:14:13','<h2>Low Back Pain Treatments and to Successfully Meet the Challenges of Finding Relief</h2>\n[caption id=\"attachment_4653\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4653 size-medium\" title=\"Low Back Pain Treatments\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-stop-the-cycle--500x500.png\" alt=\"Low Back Pain Treatments\" width=\"500\" height=\"500\" /> <em><strong>Low Back Pain? Stop The Cycle with Regenerative Orthopedics!</strong></em>[/caption]\n\nLow back pain is one of the most common musculoskeletal pain conditions in the United States. Interestingly, thousands upon thousands of people are disabled due to some low back condition that causes pain. And it wreaks havoc on their physical, social, emotional, and economic welfare. Many are looking for low back pain treatments to find relief.\n\nAt some point in almost everyone’s life, they will experience low back pain to some degree. And those who are fortunate enough not to suffer from low back pain themselves are certain to know someone else who has endured the pain.\n<h3>What Are the Low Back Pain Treatments Available?</h3>\nThere are a variety of treatments for low back pain. But despite many available remedies, relief for low back pain is frequently only temporary. And it can be challenging too!\n\nWe see many people in our office who have come to us after trying numerous treatments that left their back pain unresolved. It’s not uncommon for patients to tell us they have received weeks, months, and years of therapy, taken various over-the-counter medications, received corticosteroid injections, or maybe even tried surgery. But after all of that, the pain persists. And unfortunately, many low back surgeries do not relieve the pain or fix the problem. Plus, they might even result in a recommendation for another surgery!\n<h3>Many Common Low Back Pain Treatments Only Cover Up the Pain</h3>\nSo why do low back pain sufferers have a difficult time finding relief? Unrelieved back pain poses some challenges to the medical community. That\'s because, very often, many of the common treatments only attempt to cover up rather than actually repair the problem.\n\nThink about it! Do pain medications repair the problem? No! They might reduce the pain. But they don\'t actually repair anything. <strong>Pain medications aren’t taken because the person has an Advil or Aspirin deficiency, right?! </strong>\n\nAnd in the same way, NSAIDs (nonsteroidal anti-inflammatory drugs) might provide some short-term benefit. But in the long run, they do not result in repair of the underlying problem.\n\nChiropractors are very good at helping dysfunctional backs and can provide back pain relief. But when doctors must see patients multiple times a week for months on end, and adjustments simply do not hold, one must then think outside the box. The problem may be ligamentous. Or it may have to do with tendon instability. The cause needs to be found. And then, the physician should direct the treatment at fixing the root of the problem.\n\nImaging tools are helpful at times. But even though they are highly accessible, their usage has not caused the rates of back pain to go down. Ongoing back pain that will not resolve very often originates from injury to ligaments (and sometimes tendons). These soft tissue structures surround the spine, sacrum, and even the sacroiliac joint in the low back. And when injured, it will cause the spine to become unstable. This is called spinal instability.\n<h3>Low Back Pain and Spinal Instability</h3>\nMost low back pain is a chronic condition due to years and years of working, playing sports, hiking, and working out. And even daily normal daily activities with repeated walking and sitting can cause the ligaments and other supporting structures to weaken.\n\nOriginal injuries that can lead to low back pain due to spinal instability most often occur with sudden movements and poor body mechanics or trauma during a sports activity, fall, or motor vehicle accident. Of course, diseases such as infections, endometriosis, fibroids, and cancer can also cause low back pain and need to be ruled out.\n<h3>Poor Body Mechanics and Ligament Injury</h3>\nAn example of poor body mechanics that may injure spinal ligaments might include instances when an individual bends over and twists. The knees are also often locked during this time, stretching the ligaments too much and making them vulnerable to injury. When this occurs, sufferers can try therapies for relief of muscle pain in the low back. But if the pain persists for a prolonged period and the low back continues to “give out,” there is a good chance injured ligaments are the problem.\n\nMassage and physical therapy are beneficial but, unfortunately, cannot repair ligament damage. The muscles will continue to spasm because they are overcompensating due to the ligament injury that has left the spine unstable. Until the root cause is treated, the spinal instability will continue. That\'s because the ligaments are designed to keep the spine in the correct place and in proper alignment. But now they are too loose from injury. This is where Regenerative Orthopedics comes in! Ligament damage and injury are conditions this therapy very effectively resolves and repairs.\n<h3>A Bit More Explanation about the Connection between Ligaments and Low Back Pain</h3>\nLigaments are structures joining bone to bone. And in the low back or lumbar spine, they are the structures that connect adjacent vertebrae and facet joints. And the facets, two on each of five lumbar vertebrae, actually have a capsule surrounding them made of ligaments. Ligaments serve as some of the primary stabilizing structures of the spinal column. They allow for adequate motion while restricting excessive motion. So they protect the spinal column and the nerve roots as they exit the spine.\n\nWe need the low back or lumbar spine to maintain an upright posture, bend, turn and sit. These positions and activities place quite a bit of stress on the low back and the soft tissue structures like the ligaments. The function of the ligaments involves the transfer of all of the various loads that occur from bone to bone as they manage the forces placed on the spine. Normally, they do a great job.\n\nBut when loads and forces exceed what they can tolerate, the ligaments weaken and become lax or loose. Imagine a rubber band that has lost its elasticity. A stretched-out ligament is similar. When they are stretched out, the injured ligaments cannot provide adequate stability to the lumbar spine. Again, this is called spinal instability.\n\n<strong>Ligaments Are Highly Innervated.</strong>\n\n<strong>Ligaments are highly innervated.</strong> That means they have a lot of nerves. So when they are injured, pain is the result. Therefore, with bending, turning, and any other activity that engages the vertebrae of the lumbar spine, nerve fibers in the ligaments will start firing and sending out pain signals.\n<h3>Symptoms of Spinal Instability in the Low Back</h3>\nBesides pain, other symptoms of spinal instability in the low back include a feeling of the back giving out, cracking sensations with movement, catching or locking, a frequent need to crack the back, and recurrent muscle spasms. Unaddressed, this condition of spinal instability will result in low back pain that will not go away.\n\nIn addition, spinal instability allows for too much movement in the vertebral segments, which produces too much pressure on the discs due to the altered joint mechanics. And that fosters even more degeneration and disc herniation. The pathological process involved in spinal instability is at the core of many spinal conditions.\n<h3>Regenerative Orthopedics: A Low Back Pain Treatments that Repairs the Spinal Instability and Resolves Low Back Pain</h3>\nSo what can I do to fix my back pain and find actual relief? Fortunately, for sufferers of low back pain, Regenerative Orthopedics offers pain relief and healing and repair at the source of the pain. Treatment directed at the injured stretched out, and lax ligaments can strengthen them. That, in turn, stabilizes the vertebral segments, eliminating the excessive movement and resolving the pain.\n\nThe common denominator for many painful musculoskeletal conditions causing low back pain is spinal instability due to injury to ligaments. Still, Regenerative Orthopedics treatments such as Stem Cell Therapy, PRP, and Prolotherapy can get rid of the pain. Plus, these treatments repair the source of the problem. That means the pain is not just covered up. The source of the pain is actually repaired. So you can get pain relief and enjoy improved function too!\n<h3>Find Out More</h3>\nRead our other articles about <a href=\"https://www.drfields.com/conditions/chronic-pain/stop-back-pain/\">low back pain by clicking here.</a> Experiencing <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">sciatica pain</a>? Find out how Regenerative Orthopedics can help by <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">reading our article</a>.\n\n<a href=\"https://www.drfields.com/contact/\">Contact us to schedule an appointment.</a>','Low Back Pain Treatments and to Successfully Meet the Challenges of Finding Relief','','inherit','closed','closed','','1376-autosave-v1','','','2021-04-28 00:14:13','2021-04-28 00:14:13','',1376,'https://www.drfields.com/?p=4652',0,'revision','',0),(4653,9,'2021-04-27 23:02:20','2021-04-27 23:02:20','Back Stop The Cycle','Back Stop The Cycle','Back Stop The Cycle','inherit','open','closed','','back-stop-the-cycle','','','2021-04-27 23:02:20','2021-04-27 23:02:20','',1376,'https://www.drfields.com/wp-content/uploads/2019/06/back-stop-the-cycle-.png',0,'attachment','image/png',0),(4654,9,'2021-04-27 23:48:02','2021-04-27 23:48:02','<h2>Low Back Pain Treatment and the Challenges at Finding Relief</h2>\r\n[caption id=\"attachment_4653\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4653\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-stop-the-cycle--500x500.png\" alt=\"Back Stop The Cycle\" width=\"500\" height=\"500\" />          <em><strong>Low Back Pain? Stop The Cycle with Regenerative Orthopedics!</strong></em>[/caption]\r\n\r\nLow back pain is one of the most common musculoskeletal pain conditions in the United States. Interestingly, thousands upon thousands of people are disabled due to some type of low back condition that causes pain. And it wreaks havoc on their physical, social, emotional, and economic welfare.\r\n\r\nAt some point in almost everyone’s life, low back pain will be experienced to some degree. And those who are fortunate enough to not suffer from low back pain themselves, they are certain to know someone else who has endured the pain.\r\n<h3>What Are the Low Back Pain Treatments Available?</h3>\r\nThere are a variety of treatments for low back pain. But despite many available remedies, relief for low back pain is frequently only temporary. And it can be challenging too!\r\n\r\nWe see many people in our office who have come to us after having tried numerous treatments that left their back pain unresolved. It’s not uncommon for patients to tell us they have received weeks, months, and years of therapy, taken various over-the-counter medications, received corticosteroid injections, or maybe even tried surgery. But after all of that, the pain persists. And unfortunately, many low back surgeries do not relieve the pain or fix the problem. Plus, they might even result in a recommendation for another surgery!\r\n<h3>Many Common Low Back Pain Treatments Only Cover Up the Pain</h3>\r\nSo why do low back pain sufferers have a difficult time finding relief? Unrelieved back pain poses some challenges to the medical community. That\'s because very often many of the common treatments only attempt to cover up, rather than actually repair the problem.\r\n\r\nThink about it! Do pain medications repair the problem? No! They might reduce the pain. But they don\'t actually repair anything. <strong>Pain medications aren’t taken because the person has an Advil or Aspirin deficiency, right?! </strong>\r\n\r\nAnd in the same way, NSAIDs (nonsteroidal anti-inflammatory drugs) might provide some short-term benefit. But in the long run, they do not result in repair of the underlying problem.\r\n\r\nChiropractors are very good at helping dysfunctional backs and can provide back pain relief. But when patients must be seen multiple times a week for months on end and adjustments simply do not hold, one must think then outside the box. The problem may be ligamentous. Or it may have to do with tendon instability. The cause needs to be found. And then the treatment should be directed at fixing the root of the problem.\r\n\r\nImaging tools are helpful at times. But even though they are highly accessible, their usage has not caused the rates of back pain to go down. Ongoing back pain that will not resolve very often originates from injury to ligaments (and sometimes tendons). In the low back, these soft tissue structures surround the spine, sacrum, and even the sacroiliac joint. And when injured, it will cause the spine to become unstable. This is called spinal instability.\r\n<h3>Low Back Pain and Spinal Instability</h3>\r\nMost low back pain is a chronic condition, due to years and years of working, playing sports, hiking, and working out. And even daily normal daily activities with repeated walking and sitting, can cause the ligaments and other supporting structures to weaken.\r\n\r\nOriginal injuries that can lead to low back pain due to spinal instability most often occur with sudden movements and poor body mechanics or from trauma during a sports activity, fall, or motor vehicle accident. Of course, diseases such as infections, endometriosis, fibroids, and cancer can also cause low back pain and need to be ruled out.\r\n<h3>Poor Body Mechanics and Ligament Injury</h3>\r\nAn example of poor body mechanics that may injure spinal ligaments might include instances when an individual bends over and twists. The knees are also often locked during this time, stretching the ligaments too much, and making them vulnerable to injury. When this occurs, therapies can be tried for relief of muscle pain in the low back. But if the pain persists for a prolonged period, and the low back continues to “give out,” there is a good chance injured ligaments are the problem.\r\n\r\nMassage and physical therapy are beneficial, but unfortunately cannot repair ligament damage. The muscles will continue to spasm because they are overcompensating due to the ligament injury that has left the spine unstable. Until the root cause is treated, the spinal instability will continue. That\'s because the ligaments are designed to keep the spine in the correct place and in proper alignment. But now they are too loose from injury. This is where Regenerative Orthopedics comes in! Ligament damage and injury are conditions this therapy very effectively resolves and repairs.\r\n<h3>A Bit More Explanation about the Connection between Ligaments and Low Back Pain</h3>\r\nLigaments are structures joining bone to bone. And in the low back or lumbar spine, they are the structures that connect adjacent vertebrae and facet joints. And the facets, two on each of five lumbar vertebrae, actually have a capsule surrounding them that is made of ligaments. Ligaments serve as some of the primary stabilizing structures of the spinal column. They allow for adequate motion while restricting excessive motion. So they protect the spinal column and the nerve roots as they exit the spine.\r\n\r\nWe need the low back or lumbar spine to maintain an upright posture, bend, turn and sit. All of these positions and activities place quite a bit of stress on the low back and the soft tissue structures like the ligaments. The function of the ligaments involves the transfer of all of the various loads that occur from bone to bone as they manage the forces placed on the spine. Normally, they do a great job.\r\n\r\nBut when loads and forces exceed what they are able to tolerate, the ligaments weaken and become lax or loose. Imagaine a rubber band that has lost its elasticity. A stretched out ligament is similar. When they are stretched out, the injured ligaments are unable to provide adequate stability to the lumbar spine. Again, this is called spinal instability.\r\n\r\n<strong>Ligaments Are Highly Innervated.</strong>\r\n\r\n<strong>Ligaments are highly innervated.</strong> That means they have a lot of nerves. So when they are injured, pain is the result. Therefore, with bending, turning and any other activity that engages the vertebrae of the lumbar spine, nerve fibers in the ligaments will start firing and sending out pain signals.\r\n<h3>Symptoms of Spinal Instability in the Low Back</h3>\r\nBesides pain, other symptoms of spinal instability in the low back include a feeling of the back giving out, cracking sensations with movement, catching or locking, a frequent need to crack the back, and recurrent muscle spasms. Unaddressed, this condition of spinal instability will result in low back pain that will not go away. In addition, spinal instability allows for too much movement in the vertebral segments, which produces too much pressure on the discs due to the altered joint mechanics, which then fosters degeneration and disc herniation. The pathological process involved in spinal instability is at the core of a number of spinal conditions.\r\n<h6>Regenerative Orthopedics Repairs the Spinal Instability and Resolves Low Back Pain</h6>\r\nFortunately, for sufferers of low back pain, Regenerative Orthopedics offers not only pain relief, but healing and repair at the source of the pain. Treatment directed at the injured and lax ligaments, strengthens them, which in turn stabilizes the vertebral segments, eliminating the excessive movement and resolving the pain. The common denominator for many painful musculoskeletal conditions causing low back pain is spinal instability due to injury to ligaments, but Regenerative Orthopedics treatments such as Stem Cell Therapy, PRP, and Prolotherapy are treatments that can get rid of the pain plus repair the source of the problem.','Low Back Pain Treatment and the Challenges at Finding Relief','','inherit','closed','closed','','1376-revision-v1','','','2021-04-27 23:48:02','2021-04-27 23:48:02','',1376,'https://www.drfields.com/?p=4654',0,'revision','',0),(4655,9,'2021-04-28 00:02:59','2021-04-28 00:02:59','<h2>Low Back Pain Treatment and the Challenges at Finding Relief</h2>\r\n[caption id=\"attachment_4653\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4653\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-stop-the-cycle--500x500.png\" alt=\"Back Stop The Cycle\" width=\"500\" height=\"500\" /> <em><strong>Low Back Pain? Stop The Cycle with Regenerative Orthopedics!</strong></em>[/caption]\r\n\r\nLow back pain is one of the most common musculoskeletal pain conditions in the United States. Interestingly, thousands upon thousands of people are disabled due to some low back condition that causes pain. And it wreaks havoc on their physical, social, emotional, and economic welfare.\r\n\r\nAt some point in almost everyone’s life, they will experience low back pain to some degree. And those who are fortunate enough not to suffer from low back pain themselves are certain to know someone else who has endured the pain.\r\n<h3>What Are the Low Back Pain Treatments Available?</h3>\r\nThere are a variety of treatments for low back pain. But despite many available remedies, relief for low back pain is frequently only temporary. And it can be challenging too!\r\n\r\nWe see many people in our office who have come to us after trying numerous treatments that left their back pain unresolved. It’s not uncommon for patients to tell us they have received weeks, months, and years of therapy, taken various over-the-counter medications, received corticosteroid injections, or maybe even tried surgery. But after all of that, the pain persists. And unfortunately, many low back surgeries do not relieve the pain or fix the problem. Plus, they might even result in a recommendation for another surgery!\r\n<h3>Many Common Low Back Pain Treatments Only Cover Up the Pain</h3>\r\nSo why do low back pain sufferers have a difficult time finding relief? Unrelieved back pain poses some challenges to the medical community. That\'s because, very often, many of the common treatments only attempt to cover up rather than actually repair the problem.\r\n\r\nThink about it! Do pain medications repair the problem? No! They might reduce the pain. But they don\'t actually repair anything. <strong>Pain medications aren’t taken because the person has an Advil or Aspirin deficiency, right?! </strong>\r\n\r\nAnd in the same way, NSAIDs (nonsteroidal anti-inflammatory drugs) might provide some short-term benefit. But in the long run, they do not result in repair of the underlying problem.\r\n\r\nChiropractors are very good at helping dysfunctional backs and can provide back pain relief. But when doctors must see patients multiple times a week for months on end, and adjustments simply do not hold, one must then think outside the box. The problem may be ligamentous. Or it may have to do with tendon instability. The cause needs to be found. And then, the physician should direct the treatment at fixing the root of the problem.\r\n\r\nImaging tools are helpful at times. But even though they are highly accessible, their usage has not caused the rates of back pain to go down. Ongoing back pain that will not resolve very often originates from injury to ligaments (and sometimes tendons). These soft tissue structures surround the spine, sacrum, and even the sacroiliac joint in the low back. And when injured, it will cause the spine to become unstable. This is called spinal instability.\r\n<h3>Low Back Pain and Spinal Instability</h3>\r\nMost low back pain is a chronic condition due to years and years of working, playing sports, hiking, and working out. And even daily normal daily activities with repeated walking and sitting can cause the ligaments and other supporting structures to weaken.\r\n\r\nOriginal injuries that can lead to low back pain due to spinal instability most often occur with sudden movements and poor body mechanics or trauma during a sports activity, fall, or motor vehicle accident. Of course, diseases such as infections, endometriosis, fibroids, and cancer can also cause low back pain and need to be ruled out.\r\n<h3>Poor Body Mechanics and Ligament Injury</h3>\r\nAn example of poor body mechanics that may injure spinal ligaments might include instances when an individual bends over and twists. The knees are also often locked during this time, stretching the ligaments too much and making them vulnerable to injury. When this occurs, sufferers can try therapies for relief of muscle pain in the low back. But if the pain persists for a prolonged period and the low back continues to “give out,” there is a good chance injured ligaments are the problem.\r\n\r\nMassage and physical therapy are beneficial but, unfortunately, cannot repair ligament damage. The muscles will continue to spasm because they are overcompensating due to the ligament injury that has left the spine unstable. Until the root cause is treated, the spinal instability will continue. That\'s because the ligaments are designed to keep the spine in the correct place and in proper alignment. But now they are too loose from injury. This is where Regenerative Orthopedics comes in! Ligament damage and injury are conditions this therapy very effectively resolves and repairs.\r\n<h3>A Bit More Explanation about the Connection between Ligaments and Low Back Pain</h3>\r\nLigaments are structures joining bone to bone. And in the low back or lumbar spine, they are the structures that connect adjacent vertebrae and facet joints. And the facets, two on each of five lumbar vertebrae, actually have a capsule surrounding them made of ligaments. Ligaments serve as some of the primary stabilizing structures of the spinal column. They allow for adequate motion while restricting excessive motion. So they protect the spinal column and the nerve roots as they exit the spine.\r\n\r\nWe need the low back or lumbar spine to maintain an upright posture, bend, turn and sit. These positions and activities place quite a bit of stress on the low back and the soft tissue structures like the ligaments. The function of the ligaments involves the transfer of all of the various loads that occur from bone to bone as they manage the forces placed on the spine. Normally, they do a great job.\r\n\r\nBut when loads and forces exceed what they can tolerate, the ligaments weaken and become lax or loose. Imagine a rubber band that has lost its elasticity. A stretched-out ligament is similar. When they are stretched out, the injured ligaments cannot provide adequate stability to the lumbar spine. Again, this is called spinal instability.\r\n\r\n<strong>Ligaments Are Highly Innervated.</strong>\r\n\r\n<strong>Ligaments are highly innervated.</strong> That means they have a lot of nerves. So when they are injured, pain is the result. Therefore, with bending, turning, and any other activity that engages the vertebrae of the lumbar spine, nerve fibers in the ligaments will start firing and sending out pain signals.\r\n<h3>Symptoms of Spinal Instability in the Low Back</h3>\r\nBesides pain, other symptoms of spinal instability in the low back include a feeling of the back giving out, cracking sensations with movement, catching or locking, a frequent need to crack the back, and recurrent muscle spasms. Unaddressed, this condition of spinal instability will result in low back pain that will not go away.\r\n\r\nIn addition, spinal instability allows for too much movement in the vertebral segments, which produces too much pressure on the discs due to the altered joint mechanics. And that fosters even more degeneration and disc herniation. The pathological process involved in spinal instability is at the core of many spinal conditions.\r\n<h3>Regenerative Orthopedics: A Low Back Pain Treatment that Repairs the Spinal Instability and Resolves Low Back Pain</h3>\r\nSo what can I do to fix my back pain and find actual relief? Fortunately, for sufferers of low back pain, Regenerative Orthopedics offers pain relief and healing and repair at the source of the pain. Treatment directed at the injured stretched out, and lax ligaments can strengthen them. That, in turn, stabilizes the vertebral segments, eliminating the excessive movement and resolving the pain.\r\n\r\nThe common denominator for many painful musculoskeletal conditions causing low back pain is spinal instability due to injury to ligaments. Still, Regenerative Orthopedics treatments such as Stem Cell Therapy, PRP, and Prolotherapy can get rid of the pain. Plus, these treatments repair the source of the problem. That means the pain is not just covered up. The source of the pain is actually repaired. So you can get pain relief and enjoy improved function too!','Low Back Pain Treatment and the Challenges at Finding Relief','','inherit','closed','closed','','1376-revision-v1','','','2021-04-28 00:02:59','2021-04-28 00:02:59','',1376,'https://www.drfields.com/?p=4655',0,'revision','',0),(4656,9,'2021-04-28 00:06:15','2021-04-28 00:06:15','<h2>Low Back Pain Treatment and the Challenges at Finding Relief</h2>\r\n[caption id=\"attachment_4653\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4653\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-stop-the-cycle--500x500.png\" alt=\"Back Stop The Cycle\" width=\"500\" height=\"500\" /> <em><strong>Low Back Pain? Stop The Cycle with Regenerative Orthopedics!</strong></em>[/caption]\r\n\r\nLow back pain is one of the most common musculoskeletal pain conditions in the United States. Interestingly, thousands upon thousands of people are disabled due to some low back condition that causes pain. And it wreaks havoc on their physical, social, emotional, and economic welfare. Many are looking for low back pain treatments to find relief.\r\n\r\nAt some point in almost everyone’s life, they will experience low back pain to some degree. And those who are fortunate enough not to suffer from low back pain themselves are certain to know someone else who has endured the pain.\r\n<h3>What Are the Low Back Pain Treatments Available?</h3>\r\nThere are a variety of treatments for low back pain. But despite many available remedies, relief for low back pain is frequently only temporary. And it can be challenging too!\r\n\r\nWe see many people in our office who have come to us after trying numerous treatments that left their back pain unresolved. It’s not uncommon for patients to tell us they have received weeks, months, and years of therapy, taken various over-the-counter medications, received corticosteroid injections, or maybe even tried surgery. But after all of that, the pain persists. And unfortunately, many low back surgeries do not relieve the pain or fix the problem. Plus, they might even result in a recommendation for another surgery!\r\n<h3>Many Common Low Back Pain Treatments Only Cover Up the Pain</h3>\r\nSo why do low back pain sufferers have a difficult time finding relief? Unrelieved back pain poses some challenges to the medical community. That\'s because, very often, many of the common treatments only attempt to cover up rather than actually repair the problem.\r\n\r\nThink about it! Do pain medications repair the problem? No! They might reduce the pain. But they don\'t actually repair anything. <strong>Pain medications aren’t taken because the person has an Advil or Aspirin deficiency, right?! </strong>\r\n\r\nAnd in the same way, NSAIDs (nonsteroidal anti-inflammatory drugs) might provide some short-term benefit. But in the long run, they do not result in repair of the underlying problem.\r\n\r\nChiropractors are very good at helping dysfunctional backs and can provide back pain relief. But when doctors must see patients multiple times a week for months on end, and adjustments simply do not hold, one must then think outside the box. The problem may be ligamentous. Or it may have to do with tendon instability. The cause needs to be found. And then, the physician should direct the treatment at fixing the root of the problem.\r\n\r\nImaging tools are helpful at times. But even though they are highly accessible, their usage has not caused the rates of back pain to go down. Ongoing back pain that will not resolve very often originates from injury to ligaments (and sometimes tendons). These soft tissue structures surround the spine, sacrum, and even the sacroiliac joint in the low back. And when injured, it will cause the spine to become unstable. This is called spinal instability.\r\n<h3>Low Back Pain and Spinal Instability</h3>\r\nMost low back pain is a chronic condition due to years and years of working, playing sports, hiking, and working out. And even daily normal daily activities with repeated walking and sitting can cause the ligaments and other supporting structures to weaken.\r\n\r\nOriginal injuries that can lead to low back pain due to spinal instability most often occur with sudden movements and poor body mechanics or trauma during a sports activity, fall, or motor vehicle accident. Of course, diseases such as infections, endometriosis, fibroids, and cancer can also cause low back pain and need to be ruled out.\r\n<h3>Poor Body Mechanics and Ligament Injury</h3>\r\nAn example of poor body mechanics that may injure spinal ligaments might include instances when an individual bends over and twists. The knees are also often locked during this time, stretching the ligaments too much and making them vulnerable to injury. When this occurs, sufferers can try therapies for relief of muscle pain in the low back. But if the pain persists for a prolonged period and the low back continues to “give out,” there is a good chance injured ligaments are the problem.\r\n\r\nMassage and physical therapy are beneficial but, unfortunately, cannot repair ligament damage. The muscles will continue to spasm because they are overcompensating due to the ligament injury that has left the spine unstable. Until the root cause is treated, the spinal instability will continue. That\'s because the ligaments are designed to keep the spine in the correct place and in proper alignment. But now they are too loose from injury. This is where Regenerative Orthopedics comes in! Ligament damage and injury are conditions this therapy very effectively resolves and repairs.\r\n<h3>A Bit More Explanation about the Connection between Ligaments and Low Back Pain</h3>\r\nLigaments are structures joining bone to bone. And in the low back or lumbar spine, they are the structures that connect adjacent vertebrae and facet joints. And the facets, two on each of five lumbar vertebrae, actually have a capsule surrounding them made of ligaments. Ligaments serve as some of the primary stabilizing structures of the spinal column. They allow for adequate motion while restricting excessive motion. So they protect the spinal column and the nerve roots as they exit the spine.\r\n\r\nWe need the low back or lumbar spine to maintain an upright posture, bend, turn and sit. These positions and activities place quite a bit of stress on the low back and the soft tissue structures like the ligaments. The function of the ligaments involves the transfer of all of the various loads that occur from bone to bone as they manage the forces placed on the spine. Normally, they do a great job.\r\n\r\nBut when loads and forces exceed what they can tolerate, the ligaments weaken and become lax or loose. Imagine a rubber band that has lost its elasticity. A stretched-out ligament is similar. When they are stretched out, the injured ligaments cannot provide adequate stability to the lumbar spine. Again, this is called spinal instability.\r\n\r\n<strong>Ligaments Are Highly Innervated.</strong>\r\n\r\n<strong>Ligaments are highly innervated.</strong> That means they have a lot of nerves. So when they are injured, pain is the result. Therefore, with bending, turning, and any other activity that engages the vertebrae of the lumbar spine, nerve fibers in the ligaments will start firing and sending out pain signals.\r\n<h3>Symptoms of Spinal Instability in the Low Back</h3>\r\nBesides pain, other symptoms of spinal instability in the low back include a feeling of the back giving out, cracking sensations with movement, catching or locking, a frequent need to crack the back, and recurrent muscle spasms. Unaddressed, this condition of spinal instability will result in low back pain that will not go away.\r\n\r\nIn addition, spinal instability allows for too much movement in the vertebral segments, which produces too much pressure on the discs due to the altered joint mechanics. And that fosters even more degeneration and disc herniation. The pathological process involved in spinal instability is at the core of many spinal conditions.\r\n<h3>Regenerative Orthopedics: A Low Back Pain Treatments that Repairs the Spinal Instability and Resolves Low Back Pain</h3>\r\nSo what can I do to fix my back pain and find actual relief? Fortunately, for sufferers of low back pain, Regenerative Orthopedics offers pain relief and healing and repair at the source of the pain. Treatment directed at the injured stretched out, and lax ligaments can strengthen them. That, in turn, stabilizes the vertebral segments, eliminating the excessive movement and resolving the pain.\r\n\r\nThe common denominator for many painful musculoskeletal conditions causing low back pain is spinal instability due to injury to ligaments. Still, Regenerative Orthopedics treatments such as Stem Cell Therapy, PRP, and Prolotherapy can get rid of the pain. Plus, these treatments repair the source of the problem. That means the pain is not just covered up. The source of the pain is actually repaired. So you can get pain relief and enjoy improved function too!','Low Back Pain Treatment and the Challenges at Finding Relief','','inherit','closed','closed','','1376-revision-v1','','','2021-04-28 00:06:15','2021-04-28 00:06:15','',1376,'https://www.drfields.com/?p=4656',0,'revision','',0),(4657,9,'2021-04-28 00:12:40','2021-04-28 00:12:40','<h2>Low Back Pain Treatments and the Challenges at Finding Relief</h2>\r\n[caption id=\"attachment_4653\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4653 size-medium\" title=\"Low Back Pain Treatments\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-stop-the-cycle--500x500.png\" alt=\"Low Back Pain Treatments\" width=\"500\" height=\"500\" /> <em><strong>Low Back Pain? Stop The Cycle with Regenerative Orthopedics!</strong></em>[/caption]\r\n\r\nLow back pain is one of the most common musculoskeletal pain conditions in the United States. Interestingly, thousands upon thousands of people are disabled due to some low back condition that causes pain. And it wreaks havoc on their physical, social, emotional, and economic welfare. Many are looking for low back pain treatments to find relief.\r\n\r\nAt some point in almost everyone’s life, they will experience low back pain to some degree. And those who are fortunate enough not to suffer from low back pain themselves are certain to know someone else who has endured the pain.\r\n<h3>What Are the Low Back Pain Treatments Available?</h3>\r\nThere are a variety of treatments for low back pain. But despite many available remedies, relief for low back pain is frequently only temporary. And it can be challenging too!\r\n\r\nWe see many people in our office who have come to us after trying numerous treatments that left their back pain unresolved. It’s not uncommon for patients to tell us they have received weeks, months, and years of therapy, taken various over-the-counter medications, received corticosteroid injections, or maybe even tried surgery. But after all of that, the pain persists. And unfortunately, many low back surgeries do not relieve the pain or fix the problem. Plus, they might even result in a recommendation for another surgery!\r\n<h3>Many Common Low Back Pain Treatments Only Cover Up the Pain</h3>\r\nSo why do low back pain sufferers have a difficult time finding relief? Unrelieved back pain poses some challenges to the medical community. That\'s because, very often, many of the common treatments only attempt to cover up rather than actually repair the problem.\r\n\r\nThink about it! Do pain medications repair the problem? No! They might reduce the pain. But they don\'t actually repair anything. <strong>Pain medications aren’t taken because the person has an Advil or Aspirin deficiency, right?! </strong>\r\n\r\nAnd in the same way, NSAIDs (nonsteroidal anti-inflammatory drugs) might provide some short-term benefit. But in the long run, they do not result in repair of the underlying problem.\r\n\r\nChiropractors are very good at helping dysfunctional backs and can provide back pain relief. But when doctors must see patients multiple times a week for months on end, and adjustments simply do not hold, one must then think outside the box. The problem may be ligamentous. Or it may have to do with tendon instability. The cause needs to be found. And then, the physician should direct the treatment at fixing the root of the problem.\r\n\r\nImaging tools are helpful at times. But even though they are highly accessible, their usage has not caused the rates of back pain to go down. Ongoing back pain that will not resolve very often originates from injury to ligaments (and sometimes tendons). These soft tissue structures surround the spine, sacrum, and even the sacroiliac joint in the low back. And when injured, it will cause the spine to become unstable. This is called spinal instability.\r\n<h3>Low Back Pain and Spinal Instability</h3>\r\nMost low back pain is a chronic condition due to years and years of working, playing sports, hiking, and working out. And even daily normal daily activities with repeated walking and sitting can cause the ligaments and other supporting structures to weaken.\r\n\r\nOriginal injuries that can lead to low back pain due to spinal instability most often occur with sudden movements and poor body mechanics or trauma during a sports activity, fall, or motor vehicle accident. Of course, diseases such as infections, endometriosis, fibroids, and cancer can also cause low back pain and need to be ruled out.\r\n<h3>Poor Body Mechanics and Ligament Injury</h3>\r\nAn example of poor body mechanics that may injure spinal ligaments might include instances when an individual bends over and twists. The knees are also often locked during this time, stretching the ligaments too much and making them vulnerable to injury. When this occurs, sufferers can try therapies for relief of muscle pain in the low back. But if the pain persists for a prolonged period and the low back continues to “give out,” there is a good chance injured ligaments are the problem.\r\n\r\nMassage and physical therapy are beneficial but, unfortunately, cannot repair ligament damage. The muscles will continue to spasm because they are overcompensating due to the ligament injury that has left the spine unstable. Until the root cause is treated, the spinal instability will continue. That\'s because the ligaments are designed to keep the spine in the correct place and in proper alignment. But now they are too loose from injury. This is where Regenerative Orthopedics comes in! Ligament damage and injury are conditions this therapy very effectively resolves and repairs.\r\n<h3>A Bit More Explanation about the Connection between Ligaments and Low Back Pain</h3>\r\nLigaments are structures joining bone to bone. And in the low back or lumbar spine, they are the structures that connect adjacent vertebrae and facet joints. And the facets, two on each of five lumbar vertebrae, actually have a capsule surrounding them made of ligaments. Ligaments serve as some of the primary stabilizing structures of the spinal column. They allow for adequate motion while restricting excessive motion. So they protect the spinal column and the nerve roots as they exit the spine.\r\n\r\nWe need the low back or lumbar spine to maintain an upright posture, bend, turn and sit. These positions and activities place quite a bit of stress on the low back and the soft tissue structures like the ligaments. The function of the ligaments involves the transfer of all of the various loads that occur from bone to bone as they manage the forces placed on the spine. Normally, they do a great job.\r\n\r\nBut when loads and forces exceed what they can tolerate, the ligaments weaken and become lax or loose. Imagine a rubber band that has lost its elasticity. A stretched-out ligament is similar. When they are stretched out, the injured ligaments cannot provide adequate stability to the lumbar spine. Again, this is called spinal instability.\r\n\r\n<strong>Ligaments Are Highly Innervated.</strong>\r\n\r\n<strong>Ligaments are highly innervated.</strong> That means they have a lot of nerves. So when they are injured, pain is the result. Therefore, with bending, turning, and any other activity that engages the vertebrae of the lumbar spine, nerve fibers in the ligaments will start firing and sending out pain signals.\r\n<h3>Symptoms of Spinal Instability in the Low Back</h3>\r\nBesides pain, other symptoms of spinal instability in the low back include a feeling of the back giving out, cracking sensations with movement, catching or locking, a frequent need to crack the back, and recurrent muscle spasms. Unaddressed, this condition of spinal instability will result in low back pain that will not go away.\r\n\r\nIn addition, spinal instability allows for too much movement in the vertebral segments, which produces too much pressure on the discs due to the altered joint mechanics. And that fosters even more degeneration and disc herniation. The pathological process involved in spinal instability is at the core of many spinal conditions.\r\n<h3>Regenerative Orthopedics: A Low Back Pain Treatments that Repairs the Spinal Instability and Resolves Low Back Pain</h3>\r\nSo what can I do to fix my back pain and find actual relief? Fortunately, for sufferers of low back pain, Regenerative Orthopedics offers pain relief and healing and repair at the source of the pain. Treatment directed at the injured stretched out, and lax ligaments can strengthen them. That, in turn, stabilizes the vertebral segments, eliminating the excessive movement and resolving the pain.\r\n\r\nThe common denominator for many painful musculoskeletal conditions causing low back pain is spinal instability due to injury to ligaments. Still, Regenerative Orthopedics treatments such as Stem Cell Therapy, PRP, and Prolotherapy can get rid of the pain. Plus, these treatments repair the source of the problem. That means the pain is not just covered up. The source of the pain is actually repaired. So you can get pain relief and enjoy improved function too!\r\n<h3>Find Out More</h3>\r\nRead our other articles about <a href=\"https://www.drfields.com/conditions/chronic-pain/stop-back-pain/\">low back pain by clicking here.</a> Experiencing <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">sciatica pain</a>? Find out how Regenerative Orthopedics can help by <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">reading our article</a>.\r\n\r\n<a href=\"https://www.drfields.com/contact/\">Contact us to schedule an appointment.</a>','Low Back Pain Treatments and the Challenges at Finding Relief','','inherit','closed','closed','','1376-revision-v1','','','2021-04-28 00:12:40','2021-04-28 00:12:40','',1376,'https://www.drfields.com/?p=4657',0,'revision','',0),(4658,9,'2021-04-28 00:15:03','2021-04-28 00:15:03','<h2>Low Back Pain Treatments: How to Successfully Meet the Challenges of Finding Relief</h2>\r\n[caption id=\"attachment_4653\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4653 size-medium\" title=\"Low Back Pain Treatments\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-stop-the-cycle--500x500.png\" alt=\"Low Back Pain Treatments\" width=\"500\" height=\"500\" /> <em><strong>Low Back Pain? Stop The Cycle with Regenerative Orthopedics!</strong></em>[/caption]\r\n\r\nLow back pain is one of the most common musculoskeletal pain conditions in the United States. Interestingly, thousands upon thousands of people are disabled due to some low back condition that causes pain. And it wreaks havoc on their physical, social, emotional, and economic welfare. Many are looking for low back pain treatments to find relief.\r\n\r\nAt some point in almost everyone’s life, they will experience low back pain to some degree. And those who are fortunate enough not to suffer from low back pain themselves are certain to know someone else who has endured the pain.\r\n<h3>What Are the Low Back Pain Treatments Available?</h3>\r\nThere are a variety of treatments for low back pain. But despite many available remedies, relief for low back pain is frequently only temporary. And it can be challenging too!\r\n\r\nWe see many people in our office who have come to us after trying numerous treatments that left their back pain unresolved. It’s not uncommon for patients to tell us they have received weeks, months, and years of therapy, taken various over-the-counter medications, received corticosteroid injections, or maybe even tried surgery. But after all of that, the pain persists. And unfortunately, many low back surgeries do not relieve the pain or fix the problem. Plus, they might even result in a recommendation for another surgery!\r\n<h3>Many Common Low Back Pain Treatments Only Cover Up the Pain</h3>\r\nSo why do low back pain sufferers have a difficult time finding relief? Unrelieved back pain poses some challenges to the medical community. That\'s because, very often, many of the common treatments only attempt to cover up rather than actually repair the problem.\r\n\r\nThink about it! Do pain medications repair the problem? No! They might reduce the pain. But they don\'t actually repair anything. <strong>Pain medications aren’t taken because the person has an Advil or Aspirin deficiency, right?! </strong>\r\n\r\nAnd in the same way, NSAIDs (nonsteroidal anti-inflammatory drugs) might provide some short-term benefit. But in the long run, they do not result in repair of the underlying problem.\r\n\r\nChiropractors are very good at helping dysfunctional backs and can provide back pain relief. But when doctors must see patients multiple times a week for months on end, and adjustments simply do not hold, one must then think outside the box. The problem may be ligamentous. Or it may have to do with tendon instability. The cause needs to be found. And then, the physician should direct the treatment at fixing the root of the problem.\r\n\r\nImaging tools are helpful at times. But even though they are highly accessible, their usage has not caused the rates of back pain to go down. Ongoing back pain that will not resolve very often originates from injury to ligaments (and sometimes tendons). These soft tissue structures surround the spine, sacrum, and even the sacroiliac joint in the low back. And when injured, it will cause the spine to become unstable. This is called spinal instability.\r\n<h3>Low Back Pain and Spinal Instability</h3>\r\nMost low back pain is a chronic condition due to years and years of working, playing sports, hiking, and working out. And even daily normal daily activities with repeated walking and sitting can cause the ligaments and other supporting structures to weaken.\r\n\r\nOriginal injuries that can lead to low back pain due to spinal instability most often occur with sudden movements and poor body mechanics or trauma during a sports activity, fall, or motor vehicle accident. Of course, diseases such as infections, endometriosis, fibroids, and cancer can also cause low back pain and need to be ruled out.\r\n<h3>Poor Body Mechanics and Ligament Injury</h3>\r\nAn example of poor body mechanics that may injure spinal ligaments might include instances when an individual bends over and twists. The knees are also often locked during this time, stretching the ligaments too much and making them vulnerable to injury. When this occurs, sufferers can try therapies for relief of muscle pain in the low back. But if the pain persists for a prolonged period and the low back continues to “give out,” there is a good chance injured ligaments are the problem.\r\n\r\nMassage and physical therapy are beneficial but, unfortunately, cannot repair ligament damage. The muscles will continue to spasm because they are overcompensating due to the ligament injury that has left the spine unstable. Until the root cause is treated, the spinal instability will continue. That\'s because the ligaments are designed to keep the spine in the correct place and in proper alignment. But now they are too loose from injury. This is where Regenerative Orthopedics comes in! Ligament damage and injury are conditions this therapy very effectively resolves and repairs.\r\n<h3>A Bit More Explanation about the Connection between Ligaments and Low Back Pain</h3>\r\nLigaments are structures joining bone to bone. And in the low back or lumbar spine, they are the structures that connect adjacent vertebrae and facet joints. And the facets, two on each of five lumbar vertebrae, actually have a capsule surrounding them made of ligaments. Ligaments serve as some of the primary stabilizing structures of the spinal column. They allow for adequate motion while restricting excessive motion. So they protect the spinal column and the nerve roots as they exit the spine.\r\n\r\nWe need the low back or lumbar spine to maintain an upright posture, bend, turn and sit. These positions and activities place quite a bit of stress on the low back and the soft tissue structures like the ligaments. The function of the ligaments involves the transfer of all of the various loads that occur from bone to bone as they manage the forces placed on the spine. Normally, they do a great job.\r\n\r\nBut when loads and forces exceed what they can tolerate, the ligaments weaken and become lax or loose. Imagine a rubber band that has lost its elasticity. A stretched-out ligament is similar. When they are stretched out, the injured ligaments cannot provide adequate stability to the lumbar spine. Again, this is called spinal instability.\r\n\r\n<strong>Ligaments Are Highly Innervated.</strong>\r\n\r\n<strong>Ligaments are highly innervated.</strong> That means they have a lot of nerves. So when they are injured, pain is the result. Therefore, with bending, turning, and any other activity that engages the vertebrae of the lumbar spine, nerve fibers in the ligaments will start firing and sending out pain signals.\r\n<h3>Symptoms of Spinal Instability in the Low Back</h3>\r\nBesides pain, other symptoms of spinal instability in the low back include a feeling of the back giving out, cracking sensations with movement, catching or locking, a frequent need to crack the back, and recurrent muscle spasms. Unaddressed, this condition of spinal instability will result in low back pain that will not go away.\r\n\r\nIn addition, spinal instability allows for too much movement in the vertebral segments, which produces too much pressure on the discs due to the altered joint mechanics. And that fosters even more degeneration and disc herniation. The pathological process involved in spinal instability is at the core of many spinal conditions.\r\n<h3>Regenerative Orthopedics: A Low Back Pain Treatments that Repairs the Spinal Instability and Resolves Low Back Pain</h3>\r\nSo what can I do to fix my back pain and find actual relief? Fortunately, for sufferers of low back pain, Regenerative Orthopedics offers pain relief and healing and repair at the source of the pain. Treatment directed at the injured stretched out, and lax ligaments can strengthen them. That, in turn, stabilizes the vertebral segments, eliminating the excessive movement and resolving the pain.\r\n\r\nThe common denominator for many painful musculoskeletal conditions causing low back pain is spinal instability due to injury to ligaments. Still, Regenerative Orthopedics treatments such as Stem Cell Therapy, PRP, and Prolotherapy can get rid of the pain. Plus, these treatments repair the source of the problem. That means the pain is not just covered up. The source of the pain is actually repaired. So you can get pain relief and enjoy improved function too!\r\n<h3>Find Out More</h3>\r\nRead our other articles about <a href=\"https://www.drfields.com/conditions/chronic-pain/stop-back-pain/\">low back pain by clicking here.</a> Experiencing <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">sciatica pain</a>? Find out how Regenerative Orthopedics can help by <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">reading our article</a>.\r\n\r\n<a href=\"https://www.drfields.com/contact/\">Contact us to schedule an appointment.</a>','Low Back Pain Treatments: How to Successfully Meet the Challenges of Finding Relief','','inherit','closed','closed','','1376-revision-v1','','','2021-04-28 00:15:03','2021-04-28 00:15:03','',1376,'https://www.drfields.com/?p=4658',0,'revision','',0),(4659,9,'2021-04-28 00:17:05','2021-04-28 00:17:05','<h2>Low Back Pain Treatments: How to Successfully Meet the Challenges of Finding Relief</h2>\r\n[caption id=\"attachment_4653\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4653 size-medium\" title=\"Low Back Pain Treatments\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-stop-the-cycle--500x500.png\" alt=\"Low Back Pain Treatments\" width=\"500\" height=\"500\" /> <em><strong>Low Back Pain? Stop The Cycle with Regenerative Orthopedics!</strong></em>[/caption]\r\n\r\nLow back pain is one of the most common musculoskeletal pain conditions in the United States. Interestingly, thousands upon thousands of people are disabled due to some low back condition that causes pain. And it wreaks havoc on their physical, social, emotional, and economic welfare. Many are looking for low back pain treatments to find relief.\r\n\r\nAt some point in almost everyone’s life, they will experience low back pain to some degree. And those who are fortunate enough not to suffer from low back pain themselves are certain to know someone else who has endured the pain.\r\n<h3>The Challenge to Find Relief with Low Back Pain Treatments</h3>\r\nThere are a variety of treatments for low back pain. But despite many available remedies, relief for low back pain is frequently only temporary. And it can be challenging too!\r\n\r\nWe see many people in our office who have come to us after trying numerous treatments that left their back pain unresolved. It’s not uncommon for patients to tell us they have received weeks, months, and years of therapy, taken various over-the-counter medications, received corticosteroid injections, or maybe even tried surgery. But after all of that, the pain persists. And unfortunately, many low back surgeries do not relieve the pain or fix the problem. Plus, they might even result in a recommendation for another surgery!\r\n<h3>Many Common Low Back Pain Treatments Only Cover Up the Pain</h3>\r\nSo why do low back pain sufferers have a difficult time finding relief? Unrelieved back pain poses some challenges to the medical community. That\'s because, very often, many of the common treatments only attempt to cover up rather than actually repair the problem.\r\n\r\nThink about it! Do pain medications repair the problem? No! They might reduce the pain. But they don\'t actually repair anything. <strong>Pain medications aren’t taken because the person has an Advil or Aspirin deficiency, right?! </strong>\r\n\r\nAnd in the same way, NSAIDs (nonsteroidal anti-inflammatory drugs) might provide some short-term benefit. But in the long run, they do not result in repair of the underlying problem.\r\n\r\nChiropractors are very good at helping dysfunctional backs and can provide back pain relief. But when doctors must see patients multiple times a week for months on end, and adjustments simply do not hold, one must then think outside the box. The problem may be ligamentous. Or it may have to do with tendon instability. The cause needs to be found. And then, the physician should direct the treatment at fixing the root of the problem.\r\n\r\nImaging tools are helpful at times. But even though they are highly accessible, their usage has not caused the rates of back pain to go down. Ongoing back pain that will not resolve very often originates from injury to ligaments (and sometimes tendons). These soft tissue structures surround the spine, sacrum, and even the sacroiliac joint in the low back. And when injured, it will cause the spine to become unstable. This is called spinal instability.\r\n<h3>Low Back Pain and Spinal Instability</h3>\r\nMost low back pain is a chronic condition due to years and years of working, playing sports, hiking, and working out. And even daily normal daily activities with repeated walking and sitting can cause the ligaments and other supporting structures to weaken.\r\n\r\nOriginal injuries that can lead to low back pain due to spinal instability most often occur with sudden movements and poor body mechanics or trauma during a sports activity, fall, or motor vehicle accident. Of course, diseases such as infections, endometriosis, fibroids, and cancer can also cause low back pain and need to be ruled out.\r\n<h3>Poor Body Mechanics and Ligament Injury</h3>\r\nAn example of poor body mechanics that may injure spinal ligaments might include instances when an individual bends over and twists. The knees are also often locked during this time, stretching the ligaments too much and making them vulnerable to injury. When this occurs, sufferers can try therapies for relief of muscle pain in the low back. But if the pain persists for a prolonged period and the low back continues to “give out,” there is a good chance injured ligaments are the problem.\r\n\r\nMassage and physical therapy are beneficial but, unfortunately, cannot repair ligament damage. The muscles will continue to spasm because they are overcompensating due to the ligament injury that has left the spine unstable. Until the root cause is treated, the spinal instability will continue. That\'s because the ligaments are designed to keep the spine in the correct place and in proper alignment. But now they are too loose from injury. This is where Regenerative Orthopedics comes in! Ligament damage and injury are conditions this therapy very effectively resolves and repairs.\r\n<h3>A Bit More Explanation about the Connection between Ligaments and Low Back Pain</h3>\r\nLigaments are structures joining bone to bone. And in the low back or lumbar spine, they are the structures that connect adjacent vertebrae and facet joints. And the facets, two on each of five lumbar vertebrae, actually have a capsule surrounding them made of ligaments. Ligaments serve as some of the primary stabilizing structures of the spinal column. They allow for adequate motion while restricting excessive motion. So they protect the spinal column and the nerve roots as they exit the spine.\r\n\r\nWe need the low back or lumbar spine to maintain an upright posture, bend, turn and sit. These positions and activities place quite a bit of stress on the low back and the soft tissue structures like the ligaments. The function of the ligaments involves the transfer of all of the various loads that occur from bone to bone as they manage the forces placed on the spine. Normally, they do a great job.\r\n\r\nBut when loads and forces exceed what they can tolerate, the ligaments weaken and become lax or loose. Imagine a rubber band that has lost its elasticity. A stretched-out ligament is similar. When they are stretched out, the injured ligaments cannot provide adequate stability to the lumbar spine. Again, this is called spinal instability.\r\n\r\n<strong>Ligaments Are Highly Innervated.</strong>\r\n\r\n<strong>Ligaments are highly innervated.</strong> That means they have a lot of nerves. So when they are injured, pain is the result. Therefore, with bending, turning, and any other activity that engages the vertebrae of the lumbar spine, nerve fibers in the ligaments will start firing and sending out pain signals.\r\n<h3>Symptoms of Spinal Instability in the Low Back</h3>\r\nBesides pain, other symptoms of spinal instability in the low back include a feeling of the back giving out, cracking sensations with movement, catching or locking, a frequent need to crack the back, and recurrent muscle spasms. Unaddressed, this condition of spinal instability will result in low back pain that will not go away.\r\n\r\nIn addition, spinal instability allows for too much movement in the vertebral segments, which produces too much pressure on the discs due to the altered joint mechanics. And that fosters even more degeneration and disc herniation. The pathological process involved in spinal instability is at the core of many spinal conditions.\r\n<h3>Regenerative Orthopedics: A Low Back Pain Treatments that Repairs the Spinal Instability and Resolves Low Back Pain</h3>\r\nSo what can I do to fix my back pain and find actual relief? Fortunately, for sufferers of low back pain, Regenerative Orthopedics offers pain relief and healing and repair at the source of the pain. Treatment directed at the injured stretched out, and lax ligaments can strengthen them. That, in turn, stabilizes the vertebral segments, eliminating the excessive movement and resolving the pain.\r\n\r\nThe common denominator for many painful musculoskeletal conditions causing low back pain is spinal instability due to injury to ligaments. Still, Regenerative Orthopedics treatments such as Stem Cell Therapy, PRP, and Prolotherapy can get rid of the pain. Plus, these treatments repair the source of the problem. That means the pain is not just covered up. The source of the pain is actually repaired. So you can get pain relief and enjoy improved function too!\r\n<h3>Find Out More</h3>\r\nRead our other articles about <a href=\"https://www.drfields.com/conditions/chronic-pain/stop-back-pain/\">low back pain by clicking here.</a> Experiencing <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">sciatica pain</a>? Find out how Regenerative Orthopedics can help by <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">reading our article</a>.\r\n\r\n<a href=\"https://www.drfields.com/contact/\">Contact us to schedule an appointment.</a>','Low Back Pain Treatments: How to Successfully Meet the Challenges of Finding Relief','','inherit','closed','closed','','1376-revision-v1','','','2021-04-28 00:17:05','2021-04-28 00:17:05','',1376,'https://www.drfields.com/?p=4659',0,'revision','',0),(4660,9,'2021-04-28 00:19:00','2021-04-28 00:19:00','<h2>Low Back Pain Treatments: How to Successfully Meet the Challenges of Finding Relief</h2>\r\n[caption id=\"attachment_4653\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4653 size-medium\" title=\"Low Back Pain Treatments\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-stop-the-cycle--500x500.png\" alt=\"Low Back Pain Treatments\" width=\"500\" height=\"500\" /> <em><strong>Low Back Pain? Stop The Cycle with Regenerative Orthopedics!</strong></em>[/caption]\r\n\r\nLow back pain is one of the most common musculoskeletal pain conditions in the United States. Interestingly, thousands upon thousands of people are disabled due to some low back condition that causes pain. And it wreaks havoc on their physical, social, emotional, and economic welfare. Many are looking for low back pain treatments to find relief.\r\n\r\nAt some point in almost everyone’s life, they will experience low back pain to some degree. And those who are fortunate enough not to suffer from low back pain themselves are certain to know someone else who has endured the pain.\r\n<h3>The Challenge to Find Relief with Low Back Pain Treatments</h3>\r\nThere are a variety of treatments for low back pain. But despite many available remedies, relief for low back pain is frequently only temporary. And it can be challenging too!\r\n\r\nWe see many people in our office who have come to us after trying numerous treatments that left their back pain unresolved. It’s not uncommon for patients to tell us they have received weeks, months, and years of therapy, taken various over-the-counter medications, received corticosteroid injections, or maybe even tried surgery. But after all of that, the pain persists. And unfortunately, many low back surgeries do not relieve the pain or fix the problem. Plus, they might even result in a recommendation for another surgery!\r\n<h3>Many Common Low Back Pain Treatments Only Cover Up the Pain</h3>\r\nSo why do low back pain sufferers have a difficult time finding relief? Unrelieved back pain poses some challenges to the medical community. That\'s because, very often, many of the common treatments only attempt to cover up rather than actually repair the problem.\r\n\r\nThink about it! Do pain medications repair the problem? No! They might reduce the pain. But they don\'t actually repair anything. <strong>Pain medications aren’t taken because the person has an Advil or Aspirin deficiency, right?! </strong>\r\n\r\nAnd in the same way, NSAIDs (nonsteroidal anti-inflammatory drugs) might provide some short-term benefit. But in the long run, they do not result in repair of the underlying problem.\r\n\r\nChiropractors are very good at helping dysfunctional backs and can provide back pain relief. But when doctors must see patients multiple times a week for months on end, and adjustments simply do not hold, one must then think outside the box. The problem may be ligamentous. Or it may have to do with tendon instability. The cause needs to be found. And then, the physician should direct the treatment at fixing the root of the problem.\r\n\r\nImaging tools are helpful at times. But even though they are highly accessible, their usage has not caused the rates of back pain to go down. Ongoing back pain that will not resolve very often originates from injury to ligaments (and sometimes tendons). These soft tissue structures surround the spine, sacrum, and even the sacroiliac joint in the low back. And when injured, it will cause the spine to become unstable. This is called spinal instability.\r\n<h3>Low Back Pain and Spinal Instability</h3>\r\nMost low back pain is a chronic condition due to years and years of working, playing sports, hiking, and working out. And even daily normal daily activities with repeated walking and sitting can cause the ligaments and other supporting structures to weaken.\r\n\r\nOriginal injuries that can lead to low back pain due to spinal instability most often occur with sudden movements and poor body mechanics or trauma during a sports activity, fall, or motor vehicle accident. Of course, diseases such as infections, endometriosis, fibroids, and cancer can also cause low back pain and need to be ruled out.\r\n<h3>Poor Body Mechanics and Ligament Injury</h3>\r\nAn example of poor body mechanics that may injure spinal ligaments might include instances when an individual bends over and twists. The knees are also often locked during this time, stretching the ligaments too much and making them vulnerable to injury. When this occurs, sufferers can try therapies for relief of muscle pain in the low back. But if the pain persists for a prolonged period and the low back continues to “give out,” there is a good chance injured ligaments are the problem.\r\n\r\nMassage and physical therapy are beneficial but, unfortunately, cannot repair ligament damage. The muscles will continue to spasm because they are overcompensating due to the ligament injury that has left the spine unstable. Until the root cause is treated, the spinal instability will continue. That\'s because the ligaments are designed to keep the spine in the correct place and in proper alignment. But now they are too loose from injury. This is where Regenerative Orthopedics comes in! Ligament damage and injury are conditions this therapy very effectively resolves and repairs.\r\n<h3>A Bit More Explanation about the Connection between Ligaments and Low Back Pain</h3>\r\nLigaments are structures joining bone to bone. And in the low back or lumbar spine, they are the structures that connect adjacent vertebrae and facet joints. And the facets, two on each of five lumbar vertebrae, actually have a capsule surrounding them made of ligaments. Ligaments serve as some of the primary stabilizing structures of the spinal column. They allow for adequate motion while restricting excessive motion. So they protect the spinal column and the nerve roots as they exit the spine.\r\n\r\nWe need the low back or lumbar spine to maintain an upright posture, bend, turn and sit. These positions and activities place quite a bit of stress on the low back and the soft tissue structures like the ligaments. The function of the ligaments involves the transfer of all of the various loads that occur from bone to bone as they manage the forces placed on the spine. Normally, they do a great job.\r\n\r\nBut when loads and forces exceed what they can tolerate, the ligaments weaken and become lax or loose. Imagine a rubber band that has lost its elasticity. A stretched-out ligament is similar. When they are stretched out, the injured ligaments cannot provide adequate stability to the lumbar spine. Again, this is called spinal instability.\r\n<h3><strong>Ligaments Have A Lot of Nerves</strong></h3>\r\n<strong>Ligaments are highly innervated.</strong> That means they have a lot of nerves. So when they are injured, pain is the result. Therefore, with bending, turning, and any other activity that engages the vertebrae of the lumbar spine, nerve fibers in the ligaments will start firing and sending out pain signals.\r\n<h3>Symptoms of Spinal Instability in the Low Back</h3>\r\nBesides pain, other symptoms of spinal instability in the low back include a feeling of the back giving out, cracking sensations with movement, catching or locking, a frequent need to crack the back, and recurrent muscle spasms. Unaddressed, this condition of spinal instability will result in low back pain that will not go away.\r\n\r\nIn addition, spinal instability allows for too much movement in the vertebral segments, which produces too much pressure on the discs due to the altered joint mechanics. And that fosters even more degeneration and disc herniation. The pathological process involved in spinal instability is at the core of many spinal conditions.\r\n<h3>Regenerative Orthopedics: A Low Back Pain Treatments that Repairs the Spinal Instability and Resolves Low Back Pain</h3>\r\nSo what can I do to fix my back pain and find actual relief? Fortunately, for sufferers of low back pain, Regenerative Orthopedics offers pain relief and healing and repair at the source of the pain. Treatment directed at the injured stretched out, and lax ligaments can strengthen them. That, in turn, stabilizes the vertebral segments, eliminating the excessive movement and resolving the pain.\r\n\r\nThe common denominator for many painful musculoskeletal conditions causing low back pain is spinal instability due to injury to ligaments. Still, Regenerative Orthopedics treatments such as Stem Cell Therapy, PRP, and Prolotherapy can get rid of the pain. Plus, these treatments repair the source of the problem. That means the pain is not just covered up. The source of the pain is actually repaired. So you can get pain relief and enjoy improved function too!\r\n<h3>Find Out More</h3>\r\nRead our other articles about <a href=\"https://www.drfields.com/conditions/chronic-pain/stop-back-pain/\">low back pain by clicking here.</a> Experiencing <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">sciatica pain</a>? Find out how Regenerative Orthopedics can help by <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">reading our article</a>.\r\n\r\n<a href=\"https://www.drfields.com/contact/\">Contact us to schedule an appointment.</a>','Low Back Pain Treatments: How to Successfully Meet the Challenges of Finding Relief','','inherit','closed','closed','','1376-revision-v1','','','2021-04-28 00:19:00','2021-04-28 00:19:00','',1376,'https://www.drfields.com/?p=4660',0,'revision','',0),(4661,9,'2021-04-28 00:19:49','2021-04-28 00:19:49','<h2>Low Back Pain Treatments: How to Successfully Meet the Challenges of Finding Relief</h2>\r\n[caption id=\"attachment_4653\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4653 size-medium\" title=\"Low Back Pain Treatments\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/back-stop-the-cycle--500x500.png\" alt=\"Low Back Pain Treatments\" width=\"500\" height=\"500\" /> <em><strong>Low Back Pain? Stop The Cycle with Regenerative Orthopedics!</strong></em>[/caption]\r\n\r\nLow back pain is one of the most common musculoskeletal pain conditions in the United States. Interestingly, thousands upon thousands of people are disabled due to some low back condition that causes pain. And it wreaks havoc on their physical, social, emotional, and economic welfare. Many are looking for low back pain treatments to find relief.\r\n\r\nAt some point in almost everyone’s life, they will experience low back pain to some degree. And those who are fortunate enough not to suffer from low back pain themselves are certain to know someone else who has endured the pain.\r\n<h3>The Challenge to Find Relief with Low Back Pain Treatments</h3>\r\nThere are a variety of treatments for low back pain. But despite many available remedies, relief for low back pain is frequently only temporary. And it can be challenging too!\r\n\r\nWe see many people in our office who have come to us after trying numerous treatments that left their back pain unresolved. It’s not uncommon for patients to tell us they have received weeks, months, and years of therapy, taken various over-the-counter medications, received corticosteroid injections, or maybe even tried surgery. But after all of that, the pain persists. And unfortunately, many low back surgeries do not relieve the pain or fix the problem. Plus, they might even result in a recommendation for another surgery!\r\n<h3>Many Common Low Back Pain Treatments Only Cover Up the Pain</h3>\r\nSo why do low back pain sufferers have a difficult time finding relief? Unrelieved back pain poses some challenges to the medical community. That\'s because, very often, many of the common treatments only attempt to cover up rather than actually repair the problem.\r\n\r\nThink about it! Do pain medications repair the problem? No! They might reduce the pain. But they don\'t actually repair anything. <strong>Pain medications aren’t taken because the person has an Advil or Aspirin deficiency, right?! </strong>\r\n\r\nAnd in the same way, NSAIDs (nonsteroidal anti-inflammatory drugs) might provide some short-term benefit. But in the long run, they do not result in repair of the underlying problem.\r\n\r\nChiropractors are very good at helping dysfunctional backs and can provide back pain relief. But when doctors must see patients multiple times a week for months on end, and adjustments simply do not hold, one must then think outside the box. The problem may be ligamentous. Or it may have to do with tendon instability. The cause needs to be found. And then, the physician should direct the treatment at fixing the root of the problem.\r\n\r\nImaging tools are helpful at times. But even though they are highly accessible, their usage has not caused the rates of back pain to go down. Ongoing back pain that will not resolve very often originates from injury to ligaments (and sometimes tendons). These soft tissue structures surround the spine, sacrum, and even the sacroiliac joint in the low back. And when injured, it will cause the spine to become unstable. This is called spinal instability.\r\n<h3>Low Back Pain and Spinal Instability</h3>\r\nMost low back pain is a chronic condition due to years and years of working, playing sports, hiking, and working out. And even daily normal daily activities with repeated walking and sitting can cause the ligaments and other supporting structures to weaken.\r\n\r\nOriginal injuries that can lead to low back pain due to spinal instability most often occur with sudden movements and poor body mechanics or trauma during a sports activity, fall, or motor vehicle accident. Of course, diseases such as infections, endometriosis, fibroids, and cancer can also cause low back pain and need to be ruled out.\r\n<h3>Poor Body Mechanics and Ligament Injury</h3>\r\nAn example of poor body mechanics that may injure spinal ligaments might include instances when an individual bends over and twists. The knees are also often locked during this time, stretching the ligaments too much and making them vulnerable to injury. When this occurs, sufferers can try therapies for relief of muscle pain in the low back. But if the pain persists for a prolonged period and the low back continues to “give out,” there is a good chance injured ligaments are the problem.\r\n\r\nMassage and physical therapy are beneficial but, unfortunately, cannot repair ligament damage. The muscles will continue to spasm because they are overcompensating due to the ligament injury that has left the spine unstable. Until the root cause is treated, the spinal instability will continue. That\'s because the ligaments are designed to keep the spine in the correct place and in proper alignment. But now they are too loose from injury. This is where Regenerative Orthopedics comes in! Ligament damage and injury are conditions this therapy very effectively resolves and repairs.\r\n<h3>A Bit More Explanation about the Connection between Ligaments and Low Back Pain</h3>\r\nLigaments are structures joining bone to bone. And in the low back or lumbar spine, they are the structures that connect adjacent vertebrae and facet joints. And the facets, two on each of five lumbar vertebrae, actually have a capsule surrounding them made of ligaments. Ligaments serve as some of the primary stabilizing structures of the spinal column. They allow for adequate motion while restricting excessive motion. So they protect the spinal column and the nerve roots as they exit the spine.\r\n\r\nWe need the low back or lumbar spine to maintain an upright posture, bend, turn and sit. These positions and activities place quite a bit of stress on the low back and the soft tissue structures like the ligaments. The function of the ligaments involves the transfer of all of the various loads that occur from bone to bone as they manage the forces placed on the spine. Normally, they do a great job.\r\n\r\nBut when loads and forces exceed what they can tolerate, the ligaments weaken and become lax or loose. Imagine a rubber band that has lost its elasticity. A stretched-out ligament is similar. When they are stretched out, the injured ligaments cannot provide adequate stability to the lumbar spine. Again, this is called spinal instability.\r\n<h3><strong>Ligaments Have A Lot of Nerves</strong></h3>\r\n<strong>Ligaments are highly innervated.</strong> That means they have a lot of nerves. So when they are injured, pain is the result. Therefore, with bending, turning, and any other activity that engages the vertebrae of the lumbar spine, nerve fibers in the ligaments will start firing and sending out pain signals.\r\n<h3>Symptoms of Spinal Instability in the Low Back</h3>\r\nBesides pain, other symptoms of spinal instability in the low back include a feeling of the back giving out, cracking sensations with movement, catching or locking, a frequent need to crack the back, and recurrent muscle spasms. Unaddressed, this condition of spinal instability will result in low back pain that will not go away.\r\n\r\nIn addition, spinal instability allows for too much movement in the vertebral segments, which produces too much pressure on the discs due to the altered joint mechanics. And that fosters even more degeneration and disc herniation. The pathological process involved in spinal instability is at the core of many spinal conditions.\r\n<h3>Regenerative Orthopedics: Low Back Pain Treatments that Repair the Spinal Instability and Resolve Low Back Pain</h3>\r\nSo what can I do to fix my back pain and find actual relief? Fortunately, for sufferers of low back pain, Regenerative Orthopedics offers pain relief and healing and repair at the source of the pain. Treatment directed at the injured stretched out, and lax ligaments can strengthen them. That, in turn, stabilizes the vertebral segments, eliminating the excessive movement and resolving the pain.\r\n\r\nThe common denominator for many painful musculoskeletal conditions causing low back pain is spinal instability due to injury to ligaments. Still, Regenerative Orthopedics treatments such as Stem Cell Therapy, PRP, and Prolotherapy can get rid of the pain. Plus, these treatments repair the source of the problem. That means the pain is not just covered up. The source of the pain is actually repaired. So you can get pain relief and enjoy improved function too!\r\n<h3>Find Out More</h3>\r\nRead our other articles about <a href=\"https://www.drfields.com/conditions/chronic-pain/stop-back-pain/\">low back pain by clicking here.</a> Experiencing <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">sciatica pain</a>? Find out how Regenerative Orthopedics can help by <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">reading our article</a>.\r\n\r\n<a href=\"https://www.drfields.com/contact/\">Contact us to schedule an appointment.</a>','Low Back Pain Treatments: How to Successfully Meet the Challenges of Finding Relief','','inherit','closed','closed','','1376-revision-v1','','','2021-04-28 00:19:49','2021-04-28 00:19:49','',1376,'https://www.drfields.com/?p=4661',0,'revision','',0),(4664,8,'2021-05-05 20:08:28','2021-05-05 20:08:28','','iwp_log_6092fb3c76fc0','','publish','closed','closed','','iwp_log_6092fb3c76fc0','','','2021-05-05 20:08:28','2021-05-05 20:08:28','',0,'https://www.drfields.com/iwp_log/iwp_log_6092fb3c76fc0/',0,'iwp_log','',0),(4665,8,'2021-05-05 20:09:28','2021-05-05 20:09:28','','iwp_log_6092fb7810674','','publish','closed','closed','','iwp_log_6092fb7810674','','','2021-05-05 20:09:28','2021-05-05 20:09:28','',0,'https://www.drfields.com/iwp_log/iwp_log_6092fb7810674/',0,'iwp_log','',0),(4666,9,'2021-05-08 02:22:42','2021-05-08 02:22:42','[caption id=\"attachment_4089\" align=\"alignleft\" width=\"383\"]<img class=\"wp-image-4089 \" src=\"https://www.drfields.com/wp-content/uploads/2019/08/sciatical-400x500.png\" alt=\"Sciatica Symptoms\" width=\"383\" height=\"479\" /> <strong><em> Do Sciatica symptoms keeping you down?   Regenerative Orthopedics gets you back up!</em></strong>[/caption]\r\n<h2><strong>Relief from Sciatica Symptoms         </strong></h2>\r\nSciatica is a complaint that is tossed around quite frequently in the context of burning low back pain that shoots down a person’s buttocks, legs, and/or feet. And you’ve probably heard about sciatica or have mentioned it yourself! If you’ve had sciatica symptoms, there\'s a good chance a friend has recommended their favorite treatment or therapist to help you find some relief.\r\n\r\nBut did you know that sciatica is not actually a disease? Sure, it’s a real thing, but sciatica is a symptom, and not the disease or condition itself. The condition is called<strong> lumbar radiculopathy. </strong>Oftentimes, the terms sciatica and lumbar radiculopathy are used interchangeably. Lumbar refers to the lower back area and radiculopathy is a disease of the root of a nerve.\r\n\r\nFor those of you who have experienced the pain of lumbar radiculopathy or an actual pinched nerve, <strong>the pain is very excruciating</strong>. The sufferer commonly experiences burning pain shooting down the leg. And the pain is so bad it will stop you in your tracks.\r\n<h3>How Did You Get to this Point of Extreme Pain?</h3>\r\nThe common denominator for most back pain problems is spinal instability. Injury to the ligaments of the back occurred at some point. And typically from bending over and twisting with the knees in a locked position, which then stretched the ligaments, and made them vulnerable to injury. The result is weak and lax ligaments. And when ligaments of the lumbar spine are weak, the vertebrae can slip out of place and pinch the nerve.\r\n<h3><strong>What Are the Common Treatments for Sciatica Symptoms or Lumbar Radiculopathy?</strong></h3>\r\nChiropractors treat sciatica symptoms with much success and should be the first practitioners to see for this condition. You can also try treatments like massage and stretching for relief. But these therapies will only work on the surrounding muscles, and any relief will very likely be temporary.<span class=\"Apple-converted-space\"> </span>\r\n<h4><em>Regenerative Orthopedics Are One Treatment Option</em></h4>\r\nIf ligaments are weakened, the muscles will be going into spasm. That\'s because muscles spasm in an effort to stabilize the area that is currently unstable due to the ligament injury. Muscle-strengthening may be of benefit too. But remember that the underlying injury of the ligaments needs to be addressed. Regenerative Orthopedic treatments, such as Prolotherapy or PRP, are great options for addressing ligament injuries. And they are effective at both repairing and strengthening these types of soft tissue injuries.\r\n<h4><em>Non-Steroidal Anti-inflammatory Drugs (NSAIDs) and Cortisone Are Not Reparative Treatments</em></h4>\r\nNon-steroidal anti-inflammatory drugs (NSAIDs) are frequently used, but they are not reparative. So when you reach for an aspirin, Advil, or some other over-the-counter NSAID pain reliever, know that this is not a fix. Your physician may recommend prescription NSAID’s. But again, NSAID’s do not repair the injury. They may give you some relief, but they will not fix the underlying problem or heal the injury.\r\n\r\nIf sciatica symptoms do not resolve on their own and the pain continues, a cortisone injection may be recommended by your physician. Epidural cortisone injections may reduce the size of stressed nerve roots, but they do have side effects. Studies have shown that cortisone causes tissue like the ligaments to grow weaker. So, if weak tissue is the source of the problem, to begin with, then why use something that may make the problem worse? Instead, the spinal instability that is allowing the vertebral segments to move excessively needs to be addressed, so the pain can stop!\r\n<h4><strong><em>What About Painkillers and Anti-Depressants for Sciatica Symptoms?</em></strong></h4>\r\nHave you tried painkillers and found no lasting relief? Until the source of the problem is addressed, you may find yourself exhausted and frustrated at the failure of various therapies to provide long-lasting relief. Not to mention treatments that are ineffective at relieving lumbar radiculopathy and the sciatica symptoms.\r\n\r\nAre antidepressants and anticonvulsants being recommended? Although you may be depressed because of unending pain, good chance depression is not the source of your back pain. And what about the use of anticonvulsants to treat sciatica? In a 2018 article in the Journal of the American Medical Association (JAMA), the writers note that the commonly used anticonvulsant medication for sciatica called “pregabalin does not improve symptoms of sciatica but frequently has adverse effects.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nHave you exhausted conservative care options? And have you progressed to stronger medications like painkillers, antidepressants, and anticonvulsants, and are possibly facing the recommendations of surgery? Then it is time to look into a solution that actually repairs the injury. Regenerative Orthopedics can provide an effective option that results in relief and repair while utilizing a non-surgical solution for those with persistent sciatica symptoms and lumbar radiculopathy.\r\n<h4><em><strong>What if Surgery Has Been Recommended for Your Sciatica Symptoms?</strong></em></h4>\r\nIf you are facing surgery for relief from your symptoms, minimally invasive spine surgery may be the surgery you are considering. Surgery may give you relief. However, studies have shown that although there may be a rapid decrease in pain and disability after a few months, years down the road patients still experience mild to moderate pain post-surgery.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n<h3><strong>Regenerative Orthopedics to Strengthen Spinal Instability and Relieve Sciatica Symptoms</strong></h3>\r\nWhy choose surgery and treatments with side effects? Or those which also lack benefit when there is another option? Choose the path that actually repairs the injury and solves the problem. Regenerative Orthopedics is non-surgical, plus it is effective.\r\n\r\nAt OrthoRegen<sup>®</sup>, we treat all of the involved areas of the low back, including the injured ligaments and their attachments to stimulate the body’s own natural healing process. The treatment boosts the blood supply to the injured areas. And that brings reparative cells to the ligaments so they can heal. Remember that when the ligaments are weak, they allow for too much movement of the vertebrae. And with this extra movement a nerve can get pinched.\r\n\r\nRegenerative Orthopedic treatments to these areas strengthen and tighten the ligaments. That leads to stabilization of the lumbar spine, which stops the excessive movement, and repairs the underlying problem. The result is pain relief. Regenerative Orthopedics is effective at bringing pain relief and return to function for those suffering from sciatica symptoms and lumbar radiculopathy.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Morgan DJ, Dhruva SS, Coon ER, Wright SM, Korenstein D. 2018 Update on Medical Overuse. JAMA Internal Medicine. 2018 Dec 3.  [<a href=\"https://jamanetwork.com/journals/jamainternalmedicine/article-abstract/2717505\">JAMA</a>]\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Machado GC, Witzleb AJ, Fritsch C, Maher CG, Ferreira PH, Ferreira ML. Patients with sciatica still experience pain and disability 5 years after surgery: A systematic review with meta-analysis of cohort studies. Eur J Pain. 2016 May 12.[<a href=\"https://scholar.google.com/scholar?cluster=1973126208637694796&amp;hl=en&amp;as_sdt=0,31\">Google Scholar</a>]\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Relief from Sciatica Symptoms','','inherit','closed','closed','','2555-revision-v1','','','2021-05-08 02:22:42','2021-05-08 02:22:42','',2555,'https://www.drfields.com/?p=4666',0,'revision','',0),(4667,9,'2021-05-08 02:23:14','2021-05-08 02:23:14','[caption id=\"attachment_4089\" align=\"alignleft\" width=\"358\"]<img class=\"wp-image-4089 \" src=\"https://www.drfields.com/wp-content/uploads/2019/08/sciatical-400x500.png\" alt=\"Sciatica Symptoms\" width=\"358\" height=\"447\" /> <strong><em> Do Sciatica symptoms keeping you down?   Regenerative Orthopedics gets you back up!</em></strong>[/caption]\r\n<h2><strong>Relief from Sciatica Symptoms         </strong></h2>\r\nSciatica is a complaint that is tossed around quite frequently in the context of burning low back pain that shoots down a person’s buttocks, legs, and/or feet. And you’ve probably heard about sciatica or have mentioned it yourself! If you’ve had sciatica symptoms, there\'s a good chance a friend has recommended their favorite treatment or therapist to help you find some relief.\r\n\r\nBut did you know that sciatica is not actually a disease? Sure, it’s a real thing, but sciatica is a symptom, and not the disease or condition itself. The condition is called<strong> lumbar radiculopathy. </strong>Oftentimes, the terms sciatica and lumbar radiculopathy are used interchangeably. Lumbar refers to the lower back area and radiculopathy is a disease of the root of a nerve.\r\n\r\nFor those of you who have experienced the pain of lumbar radiculopathy or an actual pinched nerve, <strong>the pain is very excruciating</strong>. The sufferer commonly experiences burning pain shooting down the leg. And the pain is so bad it will stop you in your tracks.\r\n<h3>How Did You Get to this Point of Extreme Pain?</h3>\r\nThe common denominator for most back pain problems is spinal instability. Injury to the ligaments of the back occurred at some point. And typically from bending over and twisting with the knees in a locked position, which then stretched the ligaments, and made them vulnerable to injury. The result is weak and lax ligaments. And when ligaments of the lumbar spine are weak, the vertebrae can slip out of place and pinch the nerve.\r\n<h3><strong>What Are the Common Treatments for Sciatica Symptoms or Lumbar Radiculopathy?</strong></h3>\r\nChiropractors treat sciatica symptoms with much success and should be the first practitioners to see for this condition. You can also try treatments like massage and stretching for relief. But these therapies will only work on the surrounding muscles, and any relief will very likely be temporary.<span class=\"Apple-converted-space\"> </span>\r\n<h4><em>Regenerative Orthopedics Are One Treatment Option</em></h4>\r\nIf ligaments are weakened, the muscles will be going into spasm. That\'s because muscles spasm in an effort to stabilize the area that is currently unstable due to the ligament injury. Muscle-strengthening may be of benefit too. But remember that the underlying injury of the ligaments needs to be addressed. Regenerative Orthopedic treatments, such as Prolotherapy or PRP, are great options for addressing ligament injuries. And they are effective at both repairing and strengthening these types of soft tissue injuries.\r\n<h4><em>Non-Steroidal Anti-inflammatory Drugs (NSAIDs) and Cortisone Are Not Reparative Treatments</em></h4>\r\nNon-steroidal anti-inflammatory drugs (NSAIDs) are frequently used, but they are not reparative. So when you reach for an aspirin, Advil, or some other over-the-counter NSAID pain reliever, know that this is not a fix. Your physician may recommend prescription NSAID’s. But again, NSAID’s do not repair the injury. They may give you some relief, but they will not fix the underlying problem or heal the injury.\r\n\r\nIf sciatica symptoms do not resolve on their own and the pain continues, a cortisone injection may be recommended by your physician. Epidural cortisone injections may reduce the size of stressed nerve roots, but they do have side effects. Studies have shown that cortisone causes tissue like the ligaments to grow weaker. So, if weak tissue is the source of the problem, to begin with, then why use something that may make the problem worse? Instead, the spinal instability that is allowing the vertebral segments to move excessively needs to be addressed, so the pain can stop!\r\n<h4><strong><em>What About Painkillers and Anti-Depressants for Sciatica Symptoms?</em></strong></h4>\r\nHave you tried painkillers and found no lasting relief? Until the source of the problem is addressed, you may find yourself exhausted and frustrated at the failure of various therapies to provide long-lasting relief. Not to mention treatments that are ineffective at relieving lumbar radiculopathy and the sciatica symptoms.\r\n\r\nAre antidepressants and anticonvulsants being recommended? Although you may be depressed because of unending pain, good chance depression is not the source of your back pain. And what about the use of anticonvulsants to treat sciatica? In a 2018 article in the Journal of the American Medical Association (JAMA), the writers note that the commonly used anticonvulsant medication for sciatica called “pregabalin does not improve symptoms of sciatica but frequently has adverse effects.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nHave you exhausted conservative care options? And have you progressed to stronger medications like painkillers, antidepressants, and anticonvulsants, and are possibly facing the recommendations of surgery? Then it is time to look into a solution that actually repairs the injury. Regenerative Orthopedics can provide an effective option that results in relief and repair while utilizing a non-surgical solution for those with persistent sciatica symptoms and lumbar radiculopathy.\r\n<h4><em><strong>What if Surgery Has Been Recommended for Your Sciatica Symptoms?</strong></em></h4>\r\nIf you are facing surgery for relief from your symptoms, minimally invasive spine surgery may be the surgery you are considering. Surgery may give you relief. However, studies have shown that although there may be a rapid decrease in pain and disability after a few months, years down the road patients still experience mild to moderate pain post-surgery.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n<h3><strong>Regenerative Orthopedics to Strengthen Spinal Instability and Relieve Sciatica Symptoms</strong></h3>\r\nWhy choose surgery and treatments with side effects? Or those which also lack benefit when there is another option? Choose the path that actually repairs the injury and solves the problem. Regenerative Orthopedics is non-surgical, plus it is effective.\r\n\r\nAt OrthoRegen<sup>®</sup>, we treat all of the involved areas of the low back, including the injured ligaments and their attachments to stimulate the body’s own natural healing process. The treatment boosts the blood supply to the injured areas. And that brings reparative cells to the ligaments so they can heal. Remember that when the ligaments are weak, they allow for too much movement of the vertebrae. And with this extra movement a nerve can get pinched.\r\n\r\nRegenerative Orthopedic treatments to these areas strengthen and tighten the ligaments. That leads to stabilization of the lumbar spine, which stops the excessive movement, and repairs the underlying problem. The result is pain relief. Regenerative Orthopedics is effective at bringing pain relief and return to function for those suffering from sciatica symptoms and lumbar radiculopathy.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Morgan DJ, Dhruva SS, Coon ER, Wright SM, Korenstein D. 2018 Update on Medical Overuse. JAMA Internal Medicine. 2018 Dec 3.  [<a href=\"https://jamanetwork.com/journals/jamainternalmedicine/article-abstract/2717505\">JAMA</a>]\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Machado GC, Witzleb AJ, Fritsch C, Maher CG, Ferreira PH, Ferreira ML. Patients with sciatica still experience pain and disability 5 years after surgery: A systematic review with meta-analysis of cohort studies. Eur J Pain. 2016 May 12.[<a href=\"https://scholar.google.com/scholar?cluster=1973126208637694796&amp;hl=en&amp;as_sdt=0,31\">Google Scholar</a>]\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Relief from Sciatica Symptoms','','inherit','closed','closed','','2555-revision-v1','','','2021-05-08 02:23:14','2021-05-08 02:23:14','',2555,'https://www.drfields.com/?p=4667',0,'revision','',0),(4668,9,'2021-05-08 02:23:49','2021-05-08 02:23:49','[caption id=\"attachment_4089\" align=\"alignleft\" width=\"358\"]<img class=\"wp-image-4089 \" src=\"https://www.drfields.com/wp-content/uploads/2019/08/sciatical-400x500.png\" alt=\"Sciatica Symptoms\" width=\"358\" height=\"447\" /> <strong><em> Do Sciatica symptoms keep you down?   Regenerative Orthopedics gets you back up!</em></strong>[/caption]\r\n<h2><strong>Relief from Sciatica Symptoms         </strong></h2>\r\nSciatica is a complaint that is tossed around quite frequently in the context of burning low back pain that shoots down a person’s buttocks, legs, and/or feet. And you’ve probably heard about sciatica or have mentioned it yourself! If you’ve had sciatica symptoms, there\'s a good chance a friend has recommended their favorite treatment or therapist to help you find some relief.\r\n\r\nBut did you know that sciatica is not actually a disease? Sure, it’s a real thing, but sciatica is a symptom, and not the disease or condition itself. The condition is called<strong> lumbar radiculopathy. </strong>Oftentimes, the terms sciatica and lumbar radiculopathy are used interchangeably. Lumbar refers to the lower back area and radiculopathy is a disease of the root of a nerve.\r\n\r\nFor those of you who have experienced the pain of lumbar radiculopathy or an actual pinched nerve, <strong>the pain is very excruciating</strong>. The sufferer commonly experiences burning pain shooting down the leg. And the pain is so bad it will stop you in your tracks.\r\n<h3>How Did You Get to this Point of Extreme Pain?</h3>\r\nThe common denominator for most back pain problems is spinal instability. Injury to the ligaments of the back occurred at some point. And typically from bending over and twisting with the knees in a locked position, which then stretched the ligaments, and made them vulnerable to injury. The result is weak and lax ligaments. And when ligaments of the lumbar spine are weak, the vertebrae can slip out of place and pinch the nerve.\r\n<h3><strong>What Are the Common Treatments for Sciatica Symptoms or Lumbar Radiculopathy?</strong></h3>\r\nChiropractors treat sciatica symptoms with much success and should be the first practitioners to see for this condition. You can also try treatments like massage and stretching for relief. But these therapies will only work on the surrounding muscles, and any relief will very likely be temporary.<span class=\"Apple-converted-space\"> </span>\r\n<h4><em>Regenerative Orthopedics Are One Treatment Option</em></h4>\r\nIf ligaments are weakened, the muscles will be going into spasm. That\'s because muscles spasm in an effort to stabilize the area that is currently unstable due to the ligament injury. Muscle-strengthening may be of benefit too. But remember that the underlying injury of the ligaments needs to be addressed. Regenerative Orthopedic treatments, such as Prolotherapy or PRP, are great options for addressing ligament injuries. And they are effective at both repairing and strengthening these types of soft tissue injuries.\r\n<h4><em>Non-Steroidal Anti-inflammatory Drugs (NSAIDs) and Cortisone Are Not Reparative Treatments</em></h4>\r\nNon-steroidal anti-inflammatory drugs (NSAIDs) are frequently used, but they are not reparative. So when you reach for an aspirin, Advil, or some other over-the-counter NSAID pain reliever, know that this is not a fix. Your physician may recommend prescription NSAID’s. But again, NSAID’s do not repair the injury. They may give you some relief, but they will not fix the underlying problem or heal the injury.\r\n\r\nIf sciatica symptoms do not resolve on their own and the pain continues, a cortisone injection may be recommended by your physician. Epidural cortisone injections may reduce the size of stressed nerve roots, but they do have side effects. Studies have shown that cortisone causes tissue like the ligaments to grow weaker. So, if weak tissue is the source of the problem, to begin with, then why use something that may make the problem worse? Instead, the spinal instability that is allowing the vertebral segments to move excessively needs to be addressed, so the pain can stop!\r\n<h4><strong><em>What About Painkillers and Anti-Depressants for Sciatica Symptoms?</em></strong></h4>\r\nHave you tried painkillers and found no lasting relief? Until the source of the problem is addressed, you may find yourself exhausted and frustrated at the failure of various therapies to provide long-lasting relief. Not to mention treatments that are ineffective at relieving lumbar radiculopathy and the sciatica symptoms.\r\n\r\nAre antidepressants and anticonvulsants being recommended? Although you may be depressed because of unending pain, good chance depression is not the source of your back pain. And what about the use of anticonvulsants to treat sciatica? In a 2018 article in the Journal of the American Medical Association (JAMA), the writers note that the commonly used anticonvulsant medication for sciatica called “pregabalin does not improve symptoms of sciatica but frequently has adverse effects.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nHave you exhausted conservative care options? And have you progressed to stronger medications like painkillers, antidepressants, and anticonvulsants, and are possibly facing the recommendations of surgery? Then it is time to look into a solution that actually repairs the injury. Regenerative Orthopedics can provide an effective option that results in relief and repair while utilizing a non-surgical solution for those with persistent sciatica symptoms and lumbar radiculopathy.\r\n<h4><em><strong>What if Surgery Has Been Recommended for Your Sciatica Symptoms?</strong></em></h4>\r\nIf you are facing surgery for relief from your symptoms, minimally invasive spine surgery may be the surgery you are considering. Surgery may give you relief. However, studies have shown that although there may be a rapid decrease in pain and disability after a few months, years down the road patients still experience mild to moderate pain post-surgery.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n<h3><strong>Regenerative Orthopedics to Strengthen Spinal Instability and Relieve Sciatica Symptoms</strong></h3>\r\nWhy choose surgery and treatments with side effects? Or those which also lack benefit when there is another option? Choose the path that actually repairs the injury and solves the problem. Regenerative Orthopedics is non-surgical, plus it is effective.\r\n\r\nAt OrthoRegen<sup>®</sup>, we treat all of the involved areas of the low back, including the injured ligaments and their attachments to stimulate the body’s own natural healing process. The treatment boosts the blood supply to the injured areas. And that brings reparative cells to the ligaments so they can heal. Remember that when the ligaments are weak, they allow for too much movement of the vertebrae. And with this extra movement a nerve can get pinched.\r\n\r\nRegenerative Orthopedic treatments to these areas strengthen and tighten the ligaments. That leads to stabilization of the lumbar spine, which stops the excessive movement, and repairs the underlying problem. The result is pain relief. Regenerative Orthopedics is effective at bringing pain relief and return to function for those suffering from sciatica symptoms and lumbar radiculopathy.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Morgan DJ, Dhruva SS, Coon ER, Wright SM, Korenstein D. 2018 Update on Medical Overuse. JAMA Internal Medicine. 2018 Dec 3.  [<a href=\"https://jamanetwork.com/journals/jamainternalmedicine/article-abstract/2717505\">JAMA</a>]\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Machado GC, Witzleb AJ, Fritsch C, Maher CG, Ferreira PH, Ferreira ML. Patients with sciatica still experience pain and disability 5 years after surgery: A systematic review with meta-analysis of cohort studies. Eur J Pain. 2016 May 12.[<a href=\"https://scholar.google.com/scholar?cluster=1973126208637694796&amp;hl=en&amp;as_sdt=0,31\">Google Scholar</a>]\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Relief from Sciatica Symptoms','','inherit','closed','closed','','2555-revision-v1','','','2021-05-08 02:23:49','2021-05-08 02:23:49','',2555,'https://www.drfields.com/?p=4668',0,'revision','',0),(4669,9,'2021-05-08 02:24:14','2021-05-08 02:24:14','[caption id=\"attachment_4089\" align=\"alignleft\" width=\"358\"]<img class=\"wp-image-4089 \" src=\"https://www.drfields.com/wp-content/uploads/2019/08/sciatical-400x500.png\" alt=\"Sciatica Symptoms\" width=\"358\" height=\"447\" /> <strong><em> Do Sciatica Symptoms Keep You Down?   Regenerative Orthopedics gets you back up!</em></strong>[/caption]\r\n<h2><strong>Relief from Sciatica Symptoms         </strong></h2>\r\nSciatica is a complaint that is tossed around quite frequently in the context of burning low back pain that shoots down a person’s buttocks, legs, and/or feet. And you’ve probably heard about sciatica or have mentioned it yourself! If you’ve had sciatica symptoms, there\'s a good chance a friend has recommended their favorite treatment or therapist to help you find some relief.\r\n\r\nBut did you know that sciatica is not actually a disease? Sure, it’s a real thing, but sciatica is a symptom, and not the disease or condition itself. The condition is called<strong> lumbar radiculopathy. </strong>Oftentimes, the terms sciatica and lumbar radiculopathy are used interchangeably. Lumbar refers to the lower back area and radiculopathy is a disease of the root of a nerve.\r\n\r\nFor those of you who have experienced the pain of lumbar radiculopathy or an actual pinched nerve, <strong>the pain is very excruciating</strong>. The sufferer commonly experiences burning pain shooting down the leg. And the pain is so bad it will stop you in your tracks.\r\n<h3>How Did You Get to this Point of Extreme Pain?</h3>\r\nThe common denominator for most back pain problems is spinal instability. Injury to the ligaments of the back occurred at some point. And typically from bending over and twisting with the knees in a locked position, which then stretched the ligaments, and made them vulnerable to injury. The result is weak and lax ligaments. And when ligaments of the lumbar spine are weak, the vertebrae can slip out of place and pinch the nerve.\r\n<h3><strong>What Are the Common Treatments for Sciatica Symptoms or Lumbar Radiculopathy?</strong></h3>\r\nChiropractors treat sciatica symptoms with much success and should be the first practitioners to see for this condition. You can also try treatments like massage and stretching for relief. But these therapies will only work on the surrounding muscles, and any relief will very likely be temporary.<span class=\"Apple-converted-space\"> </span>\r\n<h4><em>Regenerative Orthopedics Are One Treatment Option</em></h4>\r\nIf ligaments are weakened, the muscles will be going into spasm. That\'s because muscles spasm in an effort to stabilize the area that is currently unstable due to the ligament injury. Muscle-strengthening may be of benefit too. But remember that the underlying injury of the ligaments needs to be addressed. Regenerative Orthopedic treatments, such as Prolotherapy or PRP, are great options for addressing ligament injuries. And they are effective at both repairing and strengthening these types of soft tissue injuries.\r\n<h4><em>Non-Steroidal Anti-inflammatory Drugs (NSAIDs) and Cortisone Are Not Reparative Treatments</em></h4>\r\nNon-steroidal anti-inflammatory drugs (NSAIDs) are frequently used, but they are not reparative. So when you reach for an aspirin, Advil, or some other over-the-counter NSAID pain reliever, know that this is not a fix. Your physician may recommend prescription NSAID’s. But again, NSAID’s do not repair the injury. They may give you some relief, but they will not fix the underlying problem or heal the injury.\r\n\r\nIf sciatica symptoms do not resolve on their own and the pain continues, a cortisone injection may be recommended by your physician. Epidural cortisone injections may reduce the size of stressed nerve roots, but they do have side effects. Studies have shown that cortisone causes tissue like the ligaments to grow weaker. So, if weak tissue is the source of the problem, to begin with, then why use something that may make the problem worse? Instead, the spinal instability that is allowing the vertebral segments to move excessively needs to be addressed, so the pain can stop!\r\n<h4><strong><em>What About Painkillers and Anti-Depressants for Sciatica Symptoms?</em></strong></h4>\r\nHave you tried painkillers and found no lasting relief? Until the source of the problem is addressed, you may find yourself exhausted and frustrated at the failure of various therapies to provide long-lasting relief. Not to mention treatments that are ineffective at relieving lumbar radiculopathy and the sciatica symptoms.\r\n\r\nAre antidepressants and anticonvulsants being recommended? Although you may be depressed because of unending pain, good chance depression is not the source of your back pain. And what about the use of anticonvulsants to treat sciatica? In a 2018 article in the Journal of the American Medical Association (JAMA), the writers note that the commonly used anticonvulsant medication for sciatica called “pregabalin does not improve symptoms of sciatica but frequently has adverse effects.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nHave you exhausted conservative care options? And have you progressed to stronger medications like painkillers, antidepressants, and anticonvulsants, and are possibly facing the recommendations of surgery? Then it is time to look into a solution that actually repairs the injury. Regenerative Orthopedics can provide an effective option that results in relief and repair while utilizing a non-surgical solution for those with persistent sciatica symptoms and lumbar radiculopathy.\r\n<h4><em><strong>What if Surgery Has Been Recommended for Your Sciatica Symptoms?</strong></em></h4>\r\nIf you are facing surgery for relief from your symptoms, minimally invasive spine surgery may be the surgery you are considering. Surgery may give you relief. However, studies have shown that although there may be a rapid decrease in pain and disability after a few months, years down the road patients still experience mild to moderate pain post-surgery.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n<h3><strong>Regenerative Orthopedics to Strengthen Spinal Instability and Relieve Sciatica Symptoms</strong></h3>\r\nWhy choose surgery and treatments with side effects? Or those which also lack benefit when there is another option? Choose the path that actually repairs the injury and solves the problem. Regenerative Orthopedics is non-surgical, plus it is effective.\r\n\r\nAt OrthoRegen<sup>®</sup>, we treat all of the involved areas of the low back, including the injured ligaments and their attachments to stimulate the body’s own natural healing process. The treatment boosts the blood supply to the injured areas. And that brings reparative cells to the ligaments so they can heal. Remember that when the ligaments are weak, they allow for too much movement of the vertebrae. And with this extra movement a nerve can get pinched.\r\n\r\nRegenerative Orthopedic treatments to these areas strengthen and tighten the ligaments. That leads to stabilization of the lumbar spine, which stops the excessive movement, and repairs the underlying problem. The result is pain relief. Regenerative Orthopedics is effective at bringing pain relief and return to function for those suffering from sciatica symptoms and lumbar radiculopathy.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Morgan DJ, Dhruva SS, Coon ER, Wright SM, Korenstein D. 2018 Update on Medical Overuse. JAMA Internal Medicine. 2018 Dec 3.  [<a href=\"https://jamanetwork.com/journals/jamainternalmedicine/article-abstract/2717505\">JAMA</a>]\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Machado GC, Witzleb AJ, Fritsch C, Maher CG, Ferreira PH, Ferreira ML. Patients with sciatica still experience pain and disability 5 years after surgery: A systematic review with meta-analysis of cohort studies. Eur J Pain. 2016 May 12.[<a href=\"https://scholar.google.com/scholar?cluster=1973126208637694796&amp;hl=en&amp;as_sdt=0,31\">Google Scholar</a>]\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Relief from Sciatica Symptoms','','inherit','closed','closed','','2555-revision-v1','','','2021-05-08 02:24:14','2021-05-08 02:24:14','',2555,'https://www.drfields.com/?p=4669',0,'revision','',0),(4670,9,'2021-05-08 02:25:08','2021-05-08 02:25:08','[caption id=\"attachment_4089\" align=\"alignleft\" width=\"358\"]<img class=\"wp-image-4089 \" src=\"https://www.drfields.com/wp-content/uploads/2019/08/sciatical-400x500.png\" alt=\"Sciatica Symptoms\" width=\"358\" height=\"447\" /> <strong><em> Do Sciatica Symptoms Keep You Down?   Regenerative Orthopedics gets you back up!</em></strong>[/caption]\r\n\r\n<strong>Relief from Sciatica Symptoms        </strong>\r\n\r\nSciatica is a complaint that is tossed around quite frequently in the context of burning low back pain that shoots down a person’s buttocks, legs, and/or feet. And you’ve probably heard about sciatica or have mentioned it yourself! If you’ve had sciatica symptoms, there\'s a good chance a friend has recommended their favorite treatment or therapist to help you find some relief.\r\n\r\nBut did you know that sciatica is not actually a disease? Sure, it’s a real thing, but sciatica is a symptom, and not the disease or condition itself. The condition is called<strong> lumbar radiculopathy. </strong>Oftentimes, the terms sciatica and lumbar radiculopathy are used interchangeably. Lumbar refers to the lower back area and radiculopathy is a disease of the root of a nerve.\r\n\r\nFor those of you who have experienced the pain of lumbar radiculopathy or an actual pinched nerve, <strong>the pain is very excruciating</strong>. The sufferer commonly experiences burning pain shooting down the leg. And the pain is so bad it will stop you in your tracks.\r\n<h3>How Did You Get to this Point of Extreme Pain?</h3>\r\nThe common denominator for most back pain problems is spinal instability. Injury to the ligaments of the back occurred at some point. And typically from bending over and twisting with the knees in a locked position, which then stretched the ligaments, and made them vulnerable to injury. The result is weak and lax ligaments. And when ligaments of the lumbar spine are weak, the vertebrae can slip out of place and pinch the nerve.\r\n<h3><strong>What Are the Common Treatments for Sciatica Symptoms or Lumbar Radiculopathy?</strong></h3>\r\nChiropractors treat sciatica symptoms with much success and should be the first practitioners to see for this condition. You can also try treatments like massage and stretching for relief. But these therapies will only work on the surrounding muscles, and any relief will very likely be temporary.<span class=\"Apple-converted-space\"> </span>\r\n<h4><em>Regenerative Orthopedics Are One Treatment Option</em></h4>\r\nIf ligaments are weakened, the muscles will be going into spasm. That\'s because muscles spasm in an effort to stabilize the area that is currently unstable due to the ligament injury. Muscle-strengthening may be of benefit too. But remember that the underlying injury of the ligaments needs to be addressed. Regenerative Orthopedic treatments, such as Prolotherapy or PRP, are great options for addressing ligament injuries. And they are effective at both repairing and strengthening these types of soft tissue injuries.\r\n<h4><em>Non-Steroidal Anti-inflammatory Drugs (NSAIDs) and Cortisone Are Not Reparative Treatments</em></h4>\r\nNon-steroidal anti-inflammatory drugs (NSAIDs) are frequently used, but they are not reparative. So when you reach for an aspirin, Advil, or some other over-the-counter NSAID pain reliever, know that this is not a fix. Your physician may recommend prescription NSAID’s. But again, NSAID’s do not repair the injury. They may give you some relief, but they will not fix the underlying problem or heal the injury.\r\n\r\nIf sciatica symptoms do not resolve on their own and the pain continues, a cortisone injection may be recommended by your physician. Epidural cortisone injections may reduce the size of stressed nerve roots, but they do have side effects. Studies have shown that cortisone causes tissue like the ligaments to grow weaker. So, if weak tissue is the source of the problem, to begin with, then why use something that may make the problem worse? Instead, the spinal instability that is allowing the vertebral segments to move excessively needs to be addressed, so the pain can stop!\r\n<h4><strong><em>What About Painkillers and Anti-Depressants for Sciatica Symptoms?</em></strong></h4>\r\nHave you tried painkillers and found no lasting relief? Until the source of the problem is addressed, you may find yourself exhausted and frustrated at the failure of various therapies to provide long-lasting relief. Not to mention treatments that are ineffective at relieving lumbar radiculopathy and the sciatica symptoms.\r\n\r\nAre antidepressants and anticonvulsants being recommended? Although you may be depressed because of unending pain, good chance depression is not the source of your back pain. And what about the use of anticonvulsants to treat sciatica? In a 2018 article in the Journal of the American Medical Association (JAMA), the writers note that the commonly used anticonvulsant medication for sciatica called “pregabalin does not improve symptoms of sciatica but frequently has adverse effects.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nHave you exhausted conservative care options? And have you progressed to stronger medications like painkillers, antidepressants, and anticonvulsants, and are possibly facing the recommendations of surgery? Then it is time to look into a solution that actually repairs the injury. Regenerative Orthopedics can provide an effective option that results in relief and repair while utilizing a non-surgical solution for those with persistent sciatica symptoms and lumbar radiculopathy.\r\n<h4><em><strong>What if Surgery Has Been Recommended for Your Sciatica Symptoms?</strong></em></h4>\r\nIf you are facing surgery for relief from your symptoms, minimally invasive spine surgery may be the surgery you are considering. Surgery may give you relief. However, studies have shown that although there may be a rapid decrease in pain and disability after a few months, years down the road patients still experience mild to moderate pain post-surgery.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n<h3><strong>Regenerative Orthopedics to Strengthen Spinal Instability and Relieve Sciatica Symptoms</strong></h3>\r\nWhy choose surgery and treatments with side effects? Or those which also lack benefit when there is another option? Choose the path that actually repairs the injury and solves the problem. Regenerative Orthopedics is non-surgical, plus it is effective.\r\n\r\nAt OrthoRegen<sup>®</sup>, we treat all of the involved areas of the low back, including the injured ligaments and their attachments to stimulate the body’s own natural healing process. The treatment boosts the blood supply to the injured areas. And that brings reparative cells to the ligaments so they can heal. Remember that when the ligaments are weak, they allow for too much movement of the vertebrae. And with this extra movement a nerve can get pinched.\r\n\r\nRegenerative Orthopedic treatments to these areas strengthen and tighten the ligaments. That leads to stabilization of the lumbar spine, which stops the excessive movement, and repairs the underlying problem. The result is pain relief. Regenerative Orthopedics is effective at bringing pain relief and return to function for those suffering from sciatica symptoms and lumbar radiculopathy.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Morgan DJ, Dhruva SS, Coon ER, Wright SM, Korenstein D. 2018 Update on Medical Overuse. JAMA Internal Medicine. 2018 Dec 3.  [<a href=\"https://jamanetwork.com/journals/jamainternalmedicine/article-abstract/2717505\">JAMA</a>]\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Machado GC, Witzleb AJ, Fritsch C, Maher CG, Ferreira PH, Ferreira ML. Patients with sciatica still experience pain and disability 5 years after surgery: A systematic review with meta-analysis of cohort studies. Eur J Pain. 2016 May 12.[<a href=\"https://scholar.google.com/scholar?cluster=1973126208637694796&amp;hl=en&amp;as_sdt=0,31\">Google Scholar</a>]\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Relief from Sciatica Symptoms','','inherit','closed','closed','','2555-revision-v1','','','2021-05-08 02:25:08','2021-05-08 02:25:08','',2555,'https://www.drfields.com/?p=4670',0,'revision','',0),(4671,9,'2021-05-08 02:25:37','2021-05-08 02:25:37','[caption id=\"attachment_4089\" align=\"alignright\" width=\"358\"]<img class=\"wp-image-4089 \" src=\"https://www.drfields.com/wp-content/uploads/2019/08/sciatical-400x500.png\" alt=\"Sciatica Symptoms\" width=\"358\" height=\"447\" /> <strong><em> Do Sciatica Symptoms Keep You Down?   Regenerative Orthopedics gets you back up!</em></strong>[/caption]\r\n<h2><strong>Relief from Sciatica Symptoms        </strong></h2>\r\nSciatica is a complaint that is tossed around quite frequently in the context of burning low back pain that shoots down a person’s buttocks, legs, and/or feet. And you’ve probably heard about sciatica or have mentioned it yourself! If you’ve had sciatica symptoms, there\'s a good chance a friend has recommended their favorite treatment or therapist to help you find some relief.\r\n\r\nBut did you know that sciatica is not actually a disease? Sure, it’s a real thing, but sciatica is a symptom, and not the disease or condition itself. The condition is called<strong> lumbar radiculopathy. </strong>Oftentimes, the terms sciatica and lumbar radiculopathy are used interchangeably. Lumbar refers to the lower back area and radiculopathy is a disease of the root of a nerve.\r\n\r\nFor those of you who have experienced the pain of lumbar radiculopathy or an actual pinched nerve, <strong>the pain is very excruciating</strong>. The sufferer commonly experiences burning pain shooting down the leg. And the pain is so bad it will stop you in your tracks.\r\n<h3>How Did You Get to this Point of Extreme Pain?</h3>\r\nThe common denominator for most back pain problems is spinal instability. Injury to the ligaments of the back occurred at some point. And typically from bending over and twisting with the knees in a locked position, which then stretched the ligaments, and made them vulnerable to injury. The result is weak and lax ligaments. And when ligaments of the lumbar spine are weak, the vertebrae can slip out of place and pinch the nerve.\r\n<h3><strong>What Are the Common Treatments for Sciatica Symptoms or Lumbar Radiculopathy?</strong></h3>\r\nChiropractors treat sciatica symptoms with much success and should be the first practitioners to see for this condition. You can also try treatments like massage and stretching for relief. But these therapies will only work on the surrounding muscles, and any relief will very likely be temporary.<span class=\"Apple-converted-space\"> </span>\r\n<h4><em>Regenerative Orthopedics Are One Treatment Option</em></h4>\r\nIf ligaments are weakened, the muscles will be going into spasm. That\'s because muscles spasm in an effort to stabilize the area that is currently unstable due to the ligament injury. Muscle-strengthening may be of benefit too. But remember that the underlying injury of the ligaments needs to be addressed. Regenerative Orthopedic treatments, such as Prolotherapy or PRP, are great options for addressing ligament injuries. And they are effective at both repairing and strengthening these types of soft tissue injuries.\r\n<h4><em>Non-Steroidal Anti-inflammatory Drugs (NSAIDs) and Cortisone Are Not Reparative Treatments</em></h4>\r\nNon-steroidal anti-inflammatory drugs (NSAIDs) are frequently used, but they are not reparative. So when you reach for an aspirin, Advil, or some other over-the-counter NSAID pain reliever, know that this is not a fix. Your physician may recommend prescription NSAID’s. But again, NSAID’s do not repair the injury. They may give you some relief, but they will not fix the underlying problem or heal the injury.\r\n\r\nIf sciatica symptoms do not resolve on their own and the pain continues, a cortisone injection may be recommended by your physician. Epidural cortisone injections may reduce the size of stressed nerve roots, but they do have side effects. Studies have shown that cortisone causes tissue like the ligaments to grow weaker. So, if weak tissue is the source of the problem, to begin with, then why use something that may make the problem worse? Instead, the spinal instability that is allowing the vertebral segments to move excessively needs to be addressed, so the pain can stop!\r\n<h4><strong><em>What About Painkillers and Anti-Depressants for Sciatica Symptoms?</em></strong></h4>\r\nHave you tried painkillers and found no lasting relief? Until the source of the problem is addressed, you may find yourself exhausted and frustrated at the failure of various therapies to provide long-lasting relief. Not to mention treatments that are ineffective at relieving lumbar radiculopathy and the sciatica symptoms.\r\n\r\nAre antidepressants and anticonvulsants being recommended? Although you may be depressed because of unending pain, good chance depression is not the source of your back pain. And what about the use of anticonvulsants to treat sciatica? In a 2018 article in the Journal of the American Medical Association (JAMA), the writers note that the commonly used anticonvulsant medication for sciatica called “pregabalin does not improve symptoms of sciatica but frequently has adverse effects.”<a href=\"#_edn1\" name=\"_ednref1\">[i]</a>\r\n\r\nHave you exhausted conservative care options? And have you progressed to stronger medications like painkillers, antidepressants, and anticonvulsants, and are possibly facing the recommendations of surgery? Then it is time to look into a solution that actually repairs the injury. Regenerative Orthopedics can provide an effective option that results in relief and repair while utilizing a non-surgical solution for those with persistent sciatica symptoms and lumbar radiculopathy.\r\n<h4><em><strong>What if Surgery Has Been Recommended for Your Sciatica Symptoms?</strong></em></h4>\r\nIf you are facing surgery for relief from your symptoms, minimally invasive spine surgery may be the surgery you are considering. Surgery may give you relief. However, studies have shown that although there may be a rapid decrease in pain and disability after a few months, years down the road patients still experience mild to moderate pain post-surgery.<a href=\"#_edn2\" name=\"_ednref2\">[ii]</a>\r\n<h3><strong>Regenerative Orthopedics to Strengthen Spinal Instability and Relieve Sciatica Symptoms</strong></h3>\r\nWhy choose surgery and treatments with side effects? Or those which also lack benefit when there is another option? Choose the path that actually repairs the injury and solves the problem. Regenerative Orthopedics is non-surgical, plus it is effective.\r\n\r\nAt OrthoRegen<sup>®</sup>, we treat all of the involved areas of the low back, including the injured ligaments and their attachments to stimulate the body’s own natural healing process. The treatment boosts the blood supply to the injured areas. And that brings reparative cells to the ligaments so they can heal. Remember that when the ligaments are weak, they allow for too much movement of the vertebrae. And with this extra movement a nerve can get pinched.\r\n\r\nRegenerative Orthopedic treatments to these areas strengthen and tighten the ligaments. That leads to stabilization of the lumbar spine, which stops the excessive movement, and repairs the underlying problem. The result is pain relief. Regenerative Orthopedics is effective at bringing pain relief and return to function for those suffering from sciatica symptoms and lumbar radiculopathy.\r\n\r\n<a href=\"#_ednref1\" name=\"_edn1\">[i]</a> Morgan DJ, Dhruva SS, Coon ER, Wright SM, Korenstein D. 2018 Update on Medical Overuse. JAMA Internal Medicine. 2018 Dec 3.  [<a href=\"https://jamanetwork.com/journals/jamainternalmedicine/article-abstract/2717505\">JAMA</a>]\r\n\r\n<a href=\"#_ednref2\" name=\"_edn2\">[ii]</a> Machado GC, Witzleb AJ, Fritsch C, Maher CG, Ferreira PH, Ferreira ML. Patients with sciatica still experience pain and disability 5 years after surgery: A systematic review with meta-analysis of cohort studies. Eur J Pain. 2016 May 12.[<a href=\"https://scholar.google.com/scholar?cluster=1973126208637694796&amp;hl=en&amp;as_sdt=0,31\">Google Scholar</a>]\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Relief from Sciatica Symptoms','','inherit','closed','closed','','2555-revision-v1','','','2021-05-08 02:25:37','2021-05-08 02:25:37','',2555,'https://www.drfields.com/?p=4671',0,'revision','',0),(4672,9,'2021-05-12 21:17:25','2021-05-12 21:17:25','Knee Arthritis','Knee Arthritis','Knee Arthritis','inherit','open','closed','','knee-arthritis','','','2021-05-12 21:17:25','2021-05-12 21:17:25','',1391,'https://www.drfields.com/wp-content/uploads/2019/06/knee-arthritis.jpg',0,'attachment','image/jpeg',0),(4673,9,'2021-05-12 21:42:37','2021-05-12 21:42:37','<h2>Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</h2>\n<img class=\"size-medium wp-image-4672 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-arthritis-500x500.jpg\" alt=\"Knee Arthritis\" width=\"500\" height=\"500\" />\n\nWe treat a lot of knees at our clinic. Part of the reason is that knee injuries are so prevalent. Another reason is that, quite often, the other treatments patients receive only provide temporary relief. Plus, unhealed knee injuries often lead to painful knee arthritis.\n\nWhen an injury is left untreated or when the treatment fails to repair an injury adequately, the knee becomes unstable. The instability sets the knee up for a cycle of abnormal joint motion. And that abnormal motion in the knee promotes degeneration and destroys the joint over time. All of that sets the knee up for the development of arthritis.\n\nIf you already have arthritis in your knee, we can help. If you have knee injuries such as a torn meniscus or ACL, we can help too! Regenerative Orthopedics are effective therapies capable of repairing the injury and stopping the cycle that leads to arthritis. Regenerative Orthopedics are ideal treatments for anyone looking to avoid knee replacement!\n<h3>The Healthy Knee versus An Injured Knee</h3>\nThe knee is the largest joint in the body and one of the more complex joints. To accomplish all of the tasks the knee needs to do, many forces and stressors are placed on it.\n\nA healthy knee moves smoothly during walking activities and also when running, jumping, and turning. One of the most important keys to a healthy knee is maintaining stability in response to the forces placed upon it. When any part of the knee joint is injured, such as the bony configuration, muscles, menisci, joint capsule, or ligaments, the whole stability of the knee is disrupted. And that can cause symptoms and pain.\n\nWhen knee injury does occur, Regenerative Orthopedics stops the disruption and stabilizes the knee again. The treatment does this by promoting the healing of unstable and weakened ligaments. And it repairs the other injured joint structures too. The result is the elimination of the pain associated with knee conditions caused by abnormal joint motion.\n<h3>Knee Arthritis and Pain</h3>\nKnee pain is one of the most common reasons people seek out medical help. And knee osteoarthritis is a primary player, impairing the mobility and activity level of those who suffer from it. The prevalence of knee pain increases with age. Plus, it is affected by lifestyle factors, such as obesity and lack of exercise. Arthritis patients deal with chronic pain, joint stiffness, structural damage, and the progressive loss of cartilage, which can be disabling.\n\n<strong>Did you know the pain of arthritis does not come from the cartilage?</strong> Even though cartilage loss plays a central role in arthritis, it is not the source of pain. That\'s because cartilage tissue does not contain nerve fibers. The tissue containing many nerve fibers includes the ligaments, tendons, meniscus, joint capsule, synovium, and periosteum. Arthritis pain is due to injury to these types of tissue.\n<h3>The Painful Process Leading to Knee Arthritis</h3>\nSoft-tissue structures are mainly responsible for the smooth movement of the knee joint. But when abnormal forces are placed on them, injury occurs that disrupts the balance between normal motion and instability. This is where the painful process begins. The nerve endings that cause pain are also present where the ligaments and tendons insert into the bone. And this area can become a source of ongoing knee pain. Regenerative Orthopedic treatments are often directed at these sites and as such are recognized as one of the most effective non-surgical therapies to treat knee pain.\n\nLigaments play a crucial role in the knee\'s stability because they guide the motion of the knee joints and restrain excessive motion to prevent dislocation. Ligament injuries are also the most common form of a knee injury. Ligament injury then upsets and disrupts the balance in the motion of the knee joint.\n\nInjuries that result in ligament damage also commonly result in injury to other knee structures, such as the meniscus, tendons, and cartilage. As mentioned, these injuries can eventually lead to arthritis, which can transpire within a few years with severe injuries or possibly over decades if the injury is less severe.\n<h3>Regenerative Orthopedic Treatments Heal the Soft Tissue Injuries</h3>\nAlthough many treatments may offer temporary pain relief, it is important to find a treatment that does more than chase the symptoms. <strong>It is important to repair the injured soft tissue to restore normal motion to the knee joint.</strong> Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy, are effective therapies that do just that.\n\nThese treatments stimulate the healing of ligaments, tendons, and menisci and restore normal functioning of the knee joint, thus preventing arthritic progression. In more advanced cases, the Gold Standard in Stem Cell Therapy can be used to promote the regeneration of articular cartilage.\n\nRegenerative Orthopedic treatments target and repair the structures generating the pain in knee arthritis, effectively resolving the pain. These therapies give hope to people living with arthritis because they provide pain relief and joint repair, resulting in improved function and a better quality of life.','Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain','','inherit','closed','closed','','1391-autosave-v1','','','2021-05-12 21:42:37','2021-05-12 21:42:37','',1391,'https://www.drfields.com/?p=4673',0,'revision','',0),(4674,9,'2021-05-12 21:29:38','2021-05-12 21:29:38','<h2>Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</h2>\r\n<img class=\"size-medium wp-image-4672\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-arthritis-500x500.jpg\" alt=\"Knee Arthritis\" width=\"500\" height=\"500\" />\r\n\r\nWe treat a lot of knees at our clinic. Part of the reason is that knee injuries are so prevalent. Another reason is because, quite often, the other treatments patients receive only provide temporary relief. Plus, unhealed knee injuries often lead to painful knee arthritis.\r\n\r\nWhen an injury is left untreated or when the treatment fails to adequately repair an injury, the knee becomes unstable. The instability sets the knee up for a cycle of abnormal joint motion. And that abnormal motion in the knee promotes degeneration and destroys the joint over time. All of that sets the knee up for the development of arthritis.\r\n\r\nIf you already have arthritis in your knee, we can help. If you have knee injuries such as a torn meniscus or ACL, we can help too! Regenerative Orthopedics are effective therapies capable of repairing the injury and stopping the cycle that leads to arthritis. Regenerative Orthopedics are ideal treatments for anyone looking to avoid knee replacement!\r\n<h3>The Healthy Knee versus An Injured Knee</h3>\r\nThe knee is the largest joint in the body and one of the more complex joints. In order to accomplish all of the tasks the knee needs to do, many forces and stressors are placed on it.\r\n\r\nA healthy knee moves smoothly during walking activities, and also when running, jumping, and turning. One of the most important keys to a healthy knee is maintaining stability in response to the forces placed upon it. When any part of the knee joint is injured, such as the bony configuration, muscles, menisci, joint capsule, or ligaments, the whole stability of the knee is disrupted. And that can cause symptoms and pain.\r\n\r\nWhen knee injury does occur, Regenerative Orthopedics stops the disruption and stabilizes the knee again. The treatment does this by promoting the healing of unstable and weakened ligaments. And it repairs the other injured joint structures too. The result is the elimination of the pain associated with knee conditions caused by abnormal joint motion.\r\n<h3>Knee Arthritis and Pain</h3>\r\nKnee pain is one of the most common reasons people seek out medical help, and knee osteoarthritis is a primary player, impairing the mobility and activity level of those who suffer from it. The prevalence of knee pain increases with age, and is affected by lifestyle factors, such as obesity and lack of exercise. Arthritis sufferers deal with chronic pain, joint stiffness, structural damage, and the progressive loss of cartilage, which can be disabling. Did you know the pain of arthritis does not come from the cartilage? Even though cartilage loss plays a central role in arthritis, it is not the source of pain, since cartilage tissue does not contain nerve fibers. The tissue that does contain a lot of nerve fibers includes the ligaments, tendons, meniscus, joint capsule, synovium and periosteum. Arthritis pain is due to injury to these types of tissue. Since soft tissue is mainly responsible for the smooth movement of the knee joint, when abnormal forces are placed on them, injury occurs that disrupts the balance between normal motion and instability. This is where the painful process begins. The nerve endings that cause pain are also present where the ligaments and tendons insert to the bone, and this area can become a source of ongoing knee pain. Regenerative Orthopedic treatments are often directed at these sites and as such are recognized as one of the most effective non-surgical therapies to treat knee pain.\r\n\r\nLigaments play a crucial role in the stability of the knee, because they guide the motion of the knee joints, and restrain excessive motion to prevent dislocation. Ligament injuries are also the most common form of knee injury. Ligament injury then upsets and disrupts the balance in the motion of the knee joint. Injuries that result in ligament damage also commonly result in the injury to other knee structures, such as the meniscus, tendons and cartilage. As mentioned, these injuries can eventually lead to arthritis, which can transpire within a few years with severe injuries or possibly over decades if the injury is less severe.\r\n<h6>Regenerative Orthopedic Treatments Heal the Soft Tissue Injuries</h6>\r\nAlthough many treatments may offer temporary pain relief, it is important to find a treatment that does more than chase the symptoms, and one that actually repairs the injured soft tissue in order to restore normal motion to the knee joint. Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma and Prolotherapy are effective therapies that do just that. These treatments stimulate healing of ligaments, tendons and menisci, and restore normal functioning of the knee joint, thus preventing the arthritic progression. In more advanced cases, the Gold Standard in Stem Cell Therapy can be used to promote the regeneration of articular cartilage.\r\n\r\nRegenerative Orthopedic treatments target and repair the structures generating the pain in knee arthritis, effectively resolving the pain. Regenerative Orthopedic treatments give hope to arthritis sufferers, because they provide not only pain relief, but also joint repair, resulting in improved function and a better quality of life.','Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain','','inherit','closed','closed','','1391-revision-v1','','','2021-05-12 21:29:38','2021-05-12 21:29:38','',1391,'https://www.drfields.com/?p=4674',0,'revision','',0),(4675,9,'2021-05-12 21:45:05','2021-05-12 21:45:05','<h2>Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain</h2>\r\n<img class=\"size-medium wp-image-4672 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-arthritis-500x500.jpg\" alt=\"Knee Arthritis\" width=\"500\" height=\"500\" />\r\n\r\nWe treat a lot of knees at our clinic. Part of the reason is that knee injuries are so prevalent. Another reason is that, quite often, the other treatments patients receive only provide temporary relief. Plus, unhealed knee injuries often lead to painful knee arthritis.\r\n\r\nWhen an injury is left untreated or when the treatment fails to repair an injury adequately, the knee becomes unstable. The instability sets the knee up for a cycle of abnormal joint motion. And that abnormal motion in the knee promotes degeneration and destroys the joint over time. All of that sets the knee up for the development of arthritis.\r\n\r\nIf you already have arthritis in your knee, we can help. If you have knee injuries such as a torn meniscus or ACL, we can help too! Regenerative Orthopedics are effective therapies capable of repairing the injury and stopping the cycle that leads to arthritis. Regenerative Orthopedics are ideal treatments for anyone looking to avoid knee replacement!\r\n<h3>The Healthy Knee versus An Injured Knee</h3>\r\nThe knee is the largest joint in the body and one of the more complex joints. To accomplish all of the tasks the knee needs to do, many forces and stressors are placed on it.\r\n\r\nA healthy knee moves smoothly during walking activities and also when running, jumping, and turning. One of the most important keys to a healthy knee is maintaining stability in response to the forces placed upon it. When any part of the knee joint is injured, such as the bony configuration, muscles, menisci, joint capsule, or ligaments, the whole stability of the knee is disrupted. And that can cause symptoms and pain.\r\n\r\nWhen knee injury does occur, Regenerative Orthopedics stops the disruption and stabilizes the knee again. The treatment does this by promoting the healing of unstable and weakened ligaments. And it repairs the other injured joint structures too. The result is the elimination of the pain associated with knee conditions caused by abnormal joint motion.\r\n<h3>Knee Arthritis and Pain</h3>\r\nKnee pain is one of the most common reasons people seek out medical help. And knee osteoarthritis is a primary player, impairing the mobility and activity level of those who suffer from it. The prevalence of knee pain increases with age. Plus, it is affected by lifestyle factors, such as obesity and lack of exercise. Arthritis patients deal with chronic pain, joint stiffness, structural damage, and the progressive loss of cartilage, which can be disabling.\r\n\r\n<strong>Did you know the pain of arthritis does not come from the cartilage?</strong> Even though cartilage loss plays a central role in arthritis, it is not the source of pain. That\'s because cartilage tissue does not contain nerve fibers. The tissue containing many nerve fibers includes the ligaments, tendons, meniscus, joint capsule, synovium, and periosteum. Arthritis pain is due to injury to these types of tissue.\r\n<h3>The Painful Process Leading to Knee Arthritis</h3>\r\nSoft-tissue structures are mainly responsible for the smooth movement of the knee joint. But when abnormal forces are placed on them, injury occurs that disrupts the balance between normal motion and instability. This is where the painful process begins. The nerve endings that cause pain are also present where the ligaments and tendons insert into the bone. And this area can become a source of ongoing knee pain. Regenerative Orthopedic treatments are often directed at these sites and as such are recognized as one of the most effective non-surgical therapies to treat knee pain.\r\n\r\nLigaments play a crucial role in the knee\'s stability because they guide the motion of the knee joints and restrain excessive motion to prevent dislocation. Ligament injuries are also the most common form of a knee injury. Ligament injury then upsets and disrupts the balance in the motion of the knee joint.\r\n\r\nInjuries that result in ligament damage also commonly result in injury to other knee structures, such as the meniscus, tendons, and cartilage. As mentioned, these injuries can eventually lead to arthritis, which can transpire within a few years with severe injuries or possibly over decades if the injury is less severe.\r\n<h3>Regenerative Orthopedic Treatments Heal the Soft Tissue Injuries</h3>\r\nAlthough many treatments may offer temporary pain relief, it is important to find a treatment that does more than chase the symptoms. <strong>It is important to repair the injured soft tissue to restore normal motion to the knee joint.</strong> Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy, are effective therapies that do just that.\r\n\r\nThese treatments stimulate the healing of ligaments, tendons, and menisci and restore normal functioning of the knee joint, thus preventing arthritic progression. In more advanced cases, the Gold Standard in Stem Cell Therapy can be used to promote the regeneration of articular cartilage.\r\n\r\nRegenerative Orthopedic treatments target and repair the structures generating the pain in knee arthritis, effectively resolving the pain. These therapies give hope to people living with arthritis because they provide pain relief and joint repair, resulting in improved function and a better quality of life.','Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain','','inherit','closed','closed','','1391-revision-v1','','','2021-05-12 21:45:05','2021-05-12 21:45:05','',1391,'https://www.drfields.com/?p=4675',0,'revision','',0),(4677,9,'2021-05-18 23:17:15','2021-05-18 23:17:15','<h2 style=\"text-align: center;\">My First Ironman</h2>\n<div class=\"col-md-8\">\n\n[caption id=\"attachment_43\" align=\"aligncenter\" width=\"220\"]<img class=\"wp-image-43 size-full\" title=\"My First Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\" width=\"220\" height=\"90\" /> November 27, 2011 2.4-mile swim, 112-mile bike, 26.2-mile run[/caption]\n\n<strong style=\"font-size: 16px;\">On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong>\n\n<span style=\"font-size: 16px;\">In Cozumel, Mexico at 9:04:07 pm, to be exact.</span> I began what was to be an epic day in my life. The race included a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused. Because if your mind got the better of you, the day would be over.\n\nMy day began at 4 am when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.\n\nIt was a beautiful day; air temp about 80 degrees, clear skies, and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.\n\n&nbsp;\n<h3><img class=\"alignleft size-full wp-image-53\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\" /><strong class=\"subhead\">THE SWIM</strong></h3>\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs, and bodies all around me. Sometimes even on top of you! It was a beautiful 2.4-mile swim in the 82 degrees, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus, you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly. And one hour and one minute later, I was climbing the stairs out of the water.\n\n&nbsp;\n\n&nbsp;\n<h3><img class=\"alignleft size-full wp-image-56\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\" /><strong class=\"subhead\">THE BIKE TRANSITION IN MY FIRST IRONMAN</strong></h3>\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112-mile ride. It was three times around the Island. And although there weren\'t any hills, the backside of the island gets wind. That meant that about 60 miles of the ride were into the wind.\n\nThe air temp was now about 85 -87 degrees, with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright.\n\nAs I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.\n\nHalfway through the bike ride, I received my special needs bag from the volunteers. With that bag, I reloaded with my own food (water I got from the aid stations).\n\nHere I was able to alleviate a potentially major problem. About half an hour earlier, I had developed severe pain in my left foot. When I got off the bike, I removed the left shoe support wedge (I have one in each shoe), making the pain bearable. Fortunately, I did not have any mechanical problems on the bike. And best of all, <strong>no flats</strong>!\n\nWhen I was on the last nine miles, the skies darkened and then opened up with torrential rain. It rained so hard; it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, I was into the change tent to put on running shoes and start the marathon.\n<h3><img class=\"alignleft size-full wp-image-60\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\" /><strong class=\"subhead\">THE RUN</strong></h3>\nWhen leaving the tent, you cannot think marathon. Since after over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run.\n\nThe foot pain that I had on the bike disappeared as soon as I started to run. There were puddles everywhere (it was still raining lightly), and my feet did get a bit wet. Then about three miles into the run, there was a street crossing with the water about knee-high.\n\nSo at that point, the puddles did not matter anymore and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue but did not let it bother me. At least until the race was over.\n\nI just kept telling myself to keep running. And I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - \"just keep running; do not walk.\" It was a three-lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds were going wild along a two-mile stretch (along with my cheering squad!).\n\nWith each lap, it became more of a mental game to stay \"in it.\" The third and final lap was the toughest mentally as well as physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.\n<h3><img class=\"alignleft size-full wp-image-59\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\" /><strong class=\"subhead\">THE FINISH</strong></h3>\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point, I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful—no pain or exhaustion - only euphoria.\n\nAs my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: <strong>\"Peter Fields, you are an Ironman!\"</strong>\n\nAfter a moment or two of realization of what I had just accomplished, it was time for food, water, and a post-race massage.\n<div class=\"clear\"></div>\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></p>\n\n</div>\n<div id=\"sidebar2\" class=\"col-md-4\"><img title=\"2011 Cozumel\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish-2.jpg\" alt=\"2011 Cozumel\" width=\"160\" height=\"215\" />\n<a href=\"https://photos.app.goo.gl/iYK2GiU2Wy4E6XNY2\" target=\"_blank\" rel=\"noopener noreferrer\">2011 Cozumel\nClick For More Photos</a>\n\nClick below for Pictures &amp; Stories from my other Ironman races:\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\n<a href=\"/About/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\n<a href=\"/About/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','My First Ironman: Race Report','','inherit','closed','closed','','92-autosave-v1','','','2021-05-18 23:17:15','2021-05-18 23:17:15','',92,'https://www.drfields.com/?p=4677',0,'revision','',0),(4678,9,'2021-05-18 23:17:16','2021-05-18 23:17:16','<h2 style=\"text-align: center;\">My First Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_43\" align=\"aligncenter\" width=\"220\"]<img class=\"wp-image-43 size-full\" title=\"My First Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\" width=\"220\" height=\"90\" /> November 27, 2011 2.4-mile swim, 112-mile bike, 26.2-mile run[/caption]\r\n\r\n<strong style=\"font-size: 16px;\">On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong>\r\n\r\n<span style=\"font-size: 16px;\">In Cozumel, Mexico at 9:04:07 pm, to be exact.</span> I began what was to be an epic day in my life. The race included a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused. Because if your mind got the better of you, the day would be over.\r\n\r\nMy day began at 4 am when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.\r\n\r\nIt was a beautiful day; air temp about 80 degrees, clear skies, and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.\r\n\r\n&nbsp;\r\n<h3><img class=\"alignleft size-full wp-image-53\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\" /><strong class=\"subhead\">THE SWIM</strong></h3>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs, and bodies all around me. Sometimes even on top of you! It was a beautiful 2.4-mile swim in the 82 degrees, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus, you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly. And one hour and one minute later, I was climbing the stairs out of the water.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><img class=\"alignleft size-full wp-image-56\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\" /><strong class=\"subhead\">THE BIKE TRANSITION IN MY FIRST IRONMAN</strong></h3>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112-mile ride. It was three times around the Island. And although there weren\'t any hills, the backside of the island gets wind. That meant that about 60 miles of the ride were into the wind.\r\n\r\nThe air temp was now about 85 -87 degrees, with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright.\r\n\r\nAs I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.\r\n\r\nHalfway through the bike ride, I received my special needs bag from the volunteers. With that bag, I reloaded with my own food (water I got from the aid stations).\r\n\r\nHere I was able to alleviate a potentially major problem. About half an hour earlier, I had developed severe pain in my left foot. When I got off the bike, I removed the left shoe support wedge (I have one in each shoe), making the pain bearable. Fortunately, I did not have any mechanical problems on the bike. And best of all, <strong>no flats</strong>!\r\n\r\nWhen I was on the last nine miles, the skies darkened and then opened up with torrential rain. It rained so hard; it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, I was into the change tent to put on running shoes and start the marathon.\r\n<h3><img class=\"alignleft size-full wp-image-60\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\" /><strong class=\"subhead\">THE RUN</strong></h3>\r\nWhen leaving the tent, you cannot think marathon. Since after over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run.\r\n\r\nThe foot pain that I had on the bike disappeared as soon as I started to run. There were puddles everywhere (it was still raining lightly), and my feet did get a bit wet. Then about three miles into the run, there was a street crossing with the water about knee-high.\r\n\r\nSo at that point, the puddles did not matter anymore, and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue but did not let it bother me at least until the race was over.\r\n\r\nI just kept telling myself to keep running. And I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - \"just keep running; do not walk.\" It was a three-lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds were going wild along a two-mile stretch (along with my cheering squad!).\r\n\r\nWith each lap, it became more of a mental game to stay \"in it.\" The third and final lap was the toughest mentally and physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.\r\n<h3><img class=\"alignleft size-full wp-image-59\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\" /><strong class=\"subhead\">THE FINISH</strong></h3>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point, I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful—no pain or exhaustion - only euphoria.\r\n\r\nAs my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nAfter a moment or two of realizing what I had just accomplished, it was time for food, water, and a post-race massage.\r\n<div class=\"clear\"></div>\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\"><img title=\"2011 Cozumel\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish-2.jpg\" alt=\"2011 Cozumel\" width=\"160\" height=\"215\" />\r\n<a href=\"https://photos.app.goo.gl/iYK2GiU2Wy4E6XNY2\" target=\"_blank\" rel=\"noopener noreferrer\">2011 Cozumel\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Stories from my other Ironman races:\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','My First Ironman: Race Report','','inherit','closed','closed','','92-revision-v1','','','2021-05-18 23:17:16','2021-05-18 23:17:16','',92,'https://www.drfields.com/?p=4678',0,'revision','',0),(4679,9,'2021-05-18 23:19:04','2021-05-18 23:19:04','<h2 style=\"text-align: center;\">My First Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_43\" align=\"aligncenter\" width=\"220\"]<img class=\"wp-image-43 size-full\" title=\"My First Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\" width=\"220\" height=\"90\" /> November 27, 2011 2.4-mile swim, 112-mile bike, 26.2-mile run[/caption]\r\n\r\n<strong style=\"font-size: 16px;\">On November 27, 2011, after 27 years of competing in triathlons, I became an Ironman.</strong>\r\n\r\n<span style=\"font-size: 16px;\">In Cozumel, Mexico at 9:04:07 pm, to be exact.</span> I began what was to be an epic day in my life. The race included a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. A physical and mental challenge like no other. And although I had trained countless hours to get my body physically prepared, the day was all about staying mentally focused. Because if your mind got the better of you, the day would be over.\r\n\r\nMy day began at 4 am when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 34 countries.\r\n\r\nIt was a beautiful day; air temp about 80 degrees, clear skies, and not a cloud in sight. Now, after all the months of training, my epic journey was about to begin.\r\n\r\n&nbsp;\r\n<h3><img class=\"alignleft size-full wp-image-53\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg\" alt=\"Cozumel 2011 Swim\" /><strong class=\"subhead\">THE SWIM</strong></h3>\r\nAfter the starting gun went off, it was one big mad dash to the first turn. Fortunately, I am a strong swimmer, so I was towards the front of the pack. Nonetheless, there were arms, legs, and bodies all around me. Sometimes even on top of you! It was a beautiful 2.4-mile swim in the 82 degrees, crystal clear ocean water of the Yucatan Peninsula. You could see the bottom, which was over 30 feet down. Plus, you could see lots of fish of all sizes and even the scuba divers (they were there \"just in case\"). Time went by quickly. And one hour and one minute later, I was climbing the stairs out of the water.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><img class=\"alignleft size-full wp-image-56\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg\" alt=\"Cozumel 2011 Bike\" /><strong class=\"subhead\">THE BIKE TRANSITION IN MY FIRST IRONMAN</strong></h3>\r\nThen off to the transition (change tent) to get into bike clothing and hop on my bike for a 112-mile ride. It was three times around the Island. And although there weren\'t any hills, the backside of the island gets wind. That meant that about 60 miles of the ride were into the wind.\r\n\r\nThe air temp was now about 85 -87 degrees, with no clouds in sight. You could see huge waves breaking (since we were right next to the beach), so we had a nice view. But the onshore winds never let up. At times we had to lean into the wind to keep upright.\r\n\r\nAs I passed through town, twice on the bike and again twice on the run, I had my cheering squad there. Their passion and enthusiasm kept me going the whole race - big time.\r\n\r\nHalfway through the bike ride, I received my special needs bag from the volunteers. With that bag, I reloaded with my own food (water I got from the aid stations).\r\n\r\nHere I was able to alleviate a potentially major problem. About half an hour earlier, I had developed severe pain in my left foot. When I got off the bike, I removed the left shoe support wedge (I have one in each shoe), making the pain bearable. Fortunately, I did not have any mechanical problems on the bike. And best of all, <strong>no flats</strong>!\r\n\r\nWhen I was on the last nine miles, the skies darkened and then opened up with torrential rain. It rained so hard; it was difficult to see the end of the bike (my bike shoes took two and a half days to dry out). After making it to the transition area and handing off my bike, I was into the change tent to put on running shoes and start the marathon.\r\n<h3><img class=\"alignleft size-full wp-image-60\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg\" alt=\"Cozumel 2011 Run\" /><strong class=\"subhead\">THE RUN</strong></h3>\r\nWhen leaving the tent, you cannot think marathon. Since after over eight hours of working out, that would be too much to comprehend. No, instead, you focus on just going for a run.\r\n\r\nThe foot pain that I had on the bike disappeared as soon as I started to run. There were puddles everywhere (it was still raining lightly), and my feet did get a bit wet. Then about three miles into the run, there was a street crossing with the water about knee-high.\r\n\r\nSo at that point, the puddles did not matter anymore, and my socks and shoes were just soaked. I did develop a blister on my left foot under the shoe tongue but did not let it bother me at least until the race was over.\r\n\r\nI just kept telling myself to keep running. And I only walked through the aid stations for a quick sip of water or coke, to bite an orange (the gels I carried with me), or to get some ice to put under my hat or down my shirt. My mantra - \"just keep running; do not walk.\" It was a three-lap run, so it was out and back 6 times. Tedious, but every time we would come back through town, the crowds were going wild along a two-mile stretch (along with my cheering squad!).\r\n\r\nWith each lap, it became more of a mental game to stay \"in it.\" The third and final lap was the toughest mentally and physically; not only because of over 12 + hrs of working out, but it was dark out and still at least 82-84 degrees. It was \"Just Do It!\" time. So I just kept focusing on the next mile. And once I hit the final turnaround (only 4.4 miles to go), I knew that I had it.\r\n<h3><img class=\"alignleft size-full wp-image-59\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" alt=\"Cozumel 2011 Finish2\" /><strong class=\"subhead\">THE FINISH</strong></h3>\r\nAs I entered the final 50 meters leading to the finish line, a big smile came across my face. At this point, I finally knew that I had accomplished what I had set out to do many months ago. I felt wonderful—no pain or exhaustion - only euphoria.\r\n\r\nAs my coach told me, race day is all about crisis control. So when I crossed the finish line, after 27 years in the sport, the announcer said what I had not heard before: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nAfter a moment or two of realizing what I had just accomplished, it was time for food, water, and a post-race massage.\r\n<div class=\"clear\"></div>\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\"><img title=\"2011 Cozumel\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish-2.jpg\" alt=\"2011 Cozumel\" width=\"160\" height=\"215\" />\r\n<a href=\"https://photos.app.goo.gl/iYK2GiU2Wy4E6XNY2\" target=\"_blank\" rel=\"noopener noreferrer\">2011 Cozumel\r\nClick For More Photos</a>Click below for Pictures &amp; Stories from my other Ironman races:\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','My First Ironman: Race Report','','inherit','closed','closed','','92-revision-v1','','','2021-05-18 23:19:04','2021-05-18 23:19:04','',92,'https://www.drfields.com/?p=4679',0,'revision','',0),(4680,9,'2021-05-19 00:08:05','2021-05-19 00:08:05','<div class=\"col-md-8\">\n<h2 style=\"text-align: center;\">My Second Ironman Competition Took Place in Cozumel, Mexico</h2>\n[caption id=\"attachment_43\" align=\"aligncenter\" width=\"592\"]<img class=\"wp-image-43\" title=\"My Second Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\" width=\"592\" height=\"242\" /> <strong>                November 25, 2012, 2.4-mile swim, 112-mile bike, 26.2-mile run</strong>[/caption]\n\nAfter finishing this Ironman race last year, I was back in Cozumel again to try and beat my time of 2011 time of 14 hrs. 4 mins and 7 sec. And with much pride, I am happy to announce that I did. My finishing times were 13hrs, 50 mins, and 27sec.\n\nIronman competitions are always very challenging, both physically and mentally. My day began at 4 am when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 42 countries.\n\nOnce again, it was a beautiful day in Cozumel.  The air temp about 74 degrees, with clear skies and not a cloud in sight. Now, after all the months of training, this journey was about to begin.\n<h3><img class=\"alignleft size-full wp-image-123\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg\" alt=\"Cozumel 2012 Swim\" width=\"160\" height=\"213\" /><strong class=\"subhead\">THE SWIM</strong></h3>\nThe water was a bit choppy, and there was a strong current too. This did not bother me as swimming is my best event.\n\nAfter one last gel, I lined up with the others and then jumped off the pier into the ocean. To get in the water, we all had to jump about 7-10 feet off the pier into the water. I positioned myself in a good spot up front and along the shore.\n\nThe current would be flowing against us for the first 800 meters.  So it was best to be close to the shore where the current is less. After treading water for 10 minutes or so, the horn went off. I go pretty fast at first to get away from the crowd.\n\nDue to the chop, I altered my stroke by bringing my arms closer to my body a bit to clear this.  It caused me to develop a bit of an underarm chafe, but this was soon forgotten. Once we turned around the first buoy, the current was with us. And then I could let the current work with me for the next mile or so.\n\nThe water here is so clear. Schools of fish are visible swimming around. And so are the scuba lifeguards that are positioned on the bottom about 30 feet down. When I got to the final turn, the current was against me again. I had to work a bit harder.\n\nNo balloon or marker was marking the pier. So I just followed the crowd and sighted off the lifeguard paddlers and boats. Overall I was about 8 minutes slower than last year (one hour and nine minutes this year). But I still felt pretty good.\n\nLater, I was to learn that most people were 15 to 30 minutes slower than last year. In Ironman races (avg. participants about 2300), there are usually about 10-15 who do not make the 2 hrs. and 20-minute swim cutoff time. This year there were over 240! Very disappointing for them as they take your timing chip away as you exit the water. Some chose to do the race anyway unofficially.\n\nAs I exited the water, I ran quickly into the change tent. I was determined to cut down my transition time this year – big time. I had opted to wear a Tri Suit under the speed suit I swim in (like in the Olympics). This meant I did not have to change into separate clothing for the bike and run since the Tri suit is a two-piece suit that one can ride and run in.\n\nOnce inside, I quickly stripped the speed suit off, put on my helmet and bike shoes, and was off to get my bike. There was no need to re-apply sunscreen as they had helpers in the change tent lathering shoulders and upper arms (the exposed areas) with sunscreen. This was a big help.\n<h3><img class=\"alignleft size-full wp-image-125\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-bike.jpg\" alt=\"Cozumel 2012 Bike\" width=\"160\" height=\"196\" /><strong class=\"subhead\">NOW FOR THE BIKE SECTION OF MY SECOND IRONMAN</strong></h3>\nThe first of three loops on the bike went well. Fortunately, there wasn\'t a lot of wind when we got to the back of the island. I also had changed my nutrition from last year and did not have the dreaded stomach problems that many triathletes have on the bike.\n\nDuring the second loop, the winds really picked up. It was a tough 15-18 mile section with 15-20 mile an hour wind hitting broadside. I did develop some left foot pain which sometimes happens when I ride over 70 miles. This had happened last year. So I removed my left orthotic. So I removed my orthotics which essentially eliminated the pain.\n\nAt mile 62, there is a special needs station to leave anything you want. Last year I rested there a bit. But this year, I just grabbed what I needed from my bag and kept going.\n\nThen in the third loop, the wind got even more brutal. We were all slugging it out on the backside of the island. As I turned to head back into town at the 100-mile marker, I went to slip the orthotics back in as it prevents me from having foot pain on the post-ride run. The left one had fallen out of my bike jersey pocket, but at least I had the right one. All in all, I rode 12 minutes faster than last year.\n<h3><img class=\"alignleft size-full wp-image-127\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-run.jpg\" alt=\"Cozumel 2012 Run\" width=\"160\" height=\"215\" /><strong class=\"subhead\">THE RUN</strong></h3>\nBack in town, I got off the bike to run to the transition area. I quickly changed and headed off to run the marathon. My legs were a bit heavy, but somehow I was running well. This was especially good since I had a hamstring problem earlier in the year. And even had been running a lot in deep water instead of the land for my training. The heaviness quickly went away within the first mile, and all was going well. I had only slight right hamstring discomfort and no real pain.\n\nWe do approximately 4. 4 miles out and back for an 8.8-mile loop. The run includes three times around the loop. On the way back to town on the first loop, the foot pain (left and right) started to appear. I did take a Celebrex at 4 am and another one on the third loop of the bike.\n\nWhen I got to town after 8.8 miles, I asked my good friend Angela (she was my aid throughout the race- and a great one at that) to find ibuprofen (it works on a different pathway than Celebrex). When I got to the second turn around to head back to town (13.1 miles), my hamstring kicked in - big time. It was painful to run, but I kept going. I changed my gait (made it an even shorter stride). There were plenty of people walking by then, but I just dealt with it.\n\nI knew there was a medic tent at about 15 miles. I pulled in and asked for ice. They ace wrapped my upper thigh with lots of ice. This seemed to reduce the pain. But I was still running slightly slower (the first 13.1 miles had me on a 5+ hr. marathon pace - much better than the 5:35 of last year).\n\nAs I entered the town, Angela was there and handed me the ibuprofen. I took it, and within minutes I was feeling quite good. Before this, I had calculated my time and distance and knew that I could break 14 hrs. And maybe even by 30 minutes.\n\nBut the hamstring pain started to return about 19 miles. I got the leg wrapped with more ice again on the way out to the 4.8 final turnaround. Before the last turnaround, I was forced to walk and run. This is something that I had never done before (walk, that is). But the pain was pretty high.\n\nAt the last three-mile marker, I got even more ice for my hamstring and decided to walk more than run. Soon thereafter, I could not continue a run/walk pace due to pain but figured if I walked fast (walking was painful but not severe), I would break 14 hrs. So at that point, I walked a 14-15 mile pace (off my Garmin wrist computer), which is still pretty fast. There were plenty of walkers, and I was passing them.\n\nI had to save whatever run I had left in me for the last few hundred meters up to the finish. <strong>No way was I going to walk that!</strong> This is right in the middle of the park, and all lit up with hundreds (if not more) of people yelling and screaming. So as I got close, I began to run. Pain is temporary; finishing is forever! I kept going and reached the last hundred meters to the finish line, where I heard the announcer say, once again, \"<strong class=\"subhead\"><span style=\"text-decoration: underline;\">Peter Fields, you are an Ironman!</span></strong>\"\n\nMy time was 13:50, not the 13:30 I might have had without the hamstring issue.\nBut I did end up breaking the 14 hr. barrier of last year\'s time of 14:04. Mission accomplished.\nAs I always say, age is mind over matter. <strong>If you don\'t mind- it does not matter!</strong>\n<h3><img class=\"alignleft size-full wp-image-128\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" alt=\"Cozumel 2012 Finish2\" width=\"150\" height=\"268\" data-wp-editing=\"1\" /><strong class=\"subhead\">THE FINISH</strong></h3>\nImmediately after crossing the finish line, I received a big hug from Angela. I then went into the medical tent to get a one-liter IV bag of fluid. Everyone is dehydrated to some point, and this was much needed.\n\nThen off to get a post-race massage and some food. Unfortunately, caffeine gels kept me going during the last part of the run, and my stomach did not really want any food. But it was nice just to sit down and cheer on the last finishers trying to make the 17 hr. cut-off at midnight.\n\nAfter collecting my gear and bike, I finally headed back to the hotel and got to bed at 2 am. Not much success with that after being very revved up all day. So the next day was to a big recovery and sleep a day.\n\nThank you for allowing me to share this with you and for taking the time to read it. I want to thank everyone that offered me support and wishes. I am very grateful to every one of you.\n\n&nbsp;\n<p class=\"text-center\"><strong class=\"subhead\">Peter A. Fields, MD DC</strong>\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></p>\n\n</div>\n<div id=\"sidebar2\" class=\"col-md-4\">\n\n<img style=\"padding-left: 5px;\" title=\"2012 Cozumel\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish.jpg\" alt=\"2012 Cozumel\" width=\"160\" height=\"215\" />\n<a href=\"https://photos.app.goo.gl/QCF7CgcEG8uOfLBs1\" target=\"_blank\" rel=\"noopener noreferrer\">2012 Cozumel\nClick For More Photos</a>\n\nClick below for Pictures &amp; Stories from my other Ironman competitions:\n\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\n<a href=\"/About/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\n<a href=\"/About/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\n\n</div>','My Second Ironman Competition Took Place in Cozumel, Mexico','','inherit','closed','closed','','120-autosave-v1','','','2021-05-19 00:08:05','2021-05-19 00:08:05','',120,'https://www.drfields.com/?p=4680',0,'revision','',0),(4681,9,'2021-05-19 00:04:20','2021-05-19 00:04:20','<div class=\"col-md-8\">\r\n<h2 style=\"text-align: center;\">My Second Ironman Competition Took Place in Cozumel, Mexico</h2>\r\n[caption id=\"attachment_43\" align=\"aligncenter\" width=\"592\"]<img class=\"wp-image-43\" title=\"My Second Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\" width=\"592\" height=\"242\" /> <strong>                November 25, 2012, 2.4-mile swim, 112-mile bike, 26.2-mile run</strong>[/caption]\r\n<p id=\"athletic-event\" class=\"text-center\"></p>\r\nAfter finishing this Ironman race last year, I was back in Cozumel again to try and beat my time of 2011 time of 14 hrs. 4 mins and 7 sec. And with much pride, I am happy to announce that I did. My finishing times were 13hrs, 50 mins, and 27sec.\r\n\r\nIronman competitions are always very challenging, both physically and mentally. My day began at 4 am when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 42 countries.\r\n\r\nOnce again, it was a beautiful day in Cozumel.  The air temp about 74 degrees, with clear skies and not a cloud in sight. Now, after all the months of training, this journey was about to begin.\r\n<h3><img class=\"alignleft size-full wp-image-123\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg\" alt=\"Cozumel 2012 Swim\" width=\"160\" height=\"213\" /><strong class=\"subhead\">THE SWIM</strong></h3>\r\nThe water was a bit choppy, and there was a strong current too. This did not bother me as swimming is my best event.\r\n\r\nAfter one last gel, I lined up with the others and then jumped off the pier into the ocean. To get in the water, we all had to jump about 7-10 feet off the pier into the water. I positioned myself in a good spot up front and along the shore.\r\n\r\nThe current would be flowing against us for the first 800 meters.  So it was best to be close to the shore where the current is less. After treading water for 10 minutes or so, the horn went off. I go pretty fast at first to get away from the crowd.\r\n\r\nDue to the chop, I altered my stroke by bringing my arms closer to my body a bit to clear this.  It caused me to develop a bit of an underarm chafe, but this was soon forgotten. Once we turned around the first buoy, the current was with us. And then I could let the current work with me for the next mile or so.\r\n\r\nThe water here is so clear. Schools of fish are visible swimming around. And so are the scuba lifeguards that are positioned on the bottom about 30 feet down. When I got to the final turn, the current was against me again. I had to work a bit harder.\r\n\r\nNo balloon or marker was marking the pier. So I just followed the crowd and sighted off the lifeguard paddlers and boats. Overall I was about 8 minutes slower than last year (one hour and nine minutes this year). But I still felt pretty good.\r\n\r\nLater, I was to learn that most people were 15 to 30 minutes slower than last year. In Ironman races (avg. participants about 2300), there are usually about 10-15 who do not make the 2 hrs. and 20-minute swim cutoff time. This year there were over 240! Very disappointing for them as they take your timing chip away as you exit the water. Some chose to do the race anyway unofficially.\r\n\r\nAs I exited the water, I ran quickly into the change tent. I was determined to cut down my transition time this year – big time. I had opted to wear a Tri Suit under the speed suit I swim in (like in the Olympics). This meant I did not have to change into separate clothing for the bike and run since the Tri suit is a two-piece suit that one can ride and run in.\r\n\r\nOnce inside, I quickly stripped the speed suit off, put on my helmet and bike shoes, and was off to get my bike. There was no need to re-apply sunscreen as they had helpers in the change tent lathering shoulders and upper arms (the exposed areas) with sunscreen. This was a big help.\r\n<h3><img class=\"alignleft size-full wp-image-125\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-bike.jpg\" alt=\"Cozumel 2012 Bike\" width=\"160\" height=\"196\" /><strong class=\"subhead\">NOW FOR THE BIKE SECTION OF MY SECOND IRONMAN</strong></h3>\r\nThe first of three loops on the bike went well. Fortunately, there wasn\'t a lot of wind when we got to the back of the island. I also had changed my nutrition from last year and did not have the dreaded stomach problems that many triathletes have on the bike.\r\n\r\nDuring the second loop, the winds really picked up. It was a tough 15-18 mile section with 15-20 mile an hour wind hitting broadside. I did develop some left foot pain which sometimes happens when I ride over 70 miles. This had happened last year. So I removed my left orthotic. So I removed my orthotics which essentially eliminated the pain.\r\n\r\nAt mile 62, there is a special needs station to leave anything you want. Last year I rested there a bit. But this year, I just grabbed what I needed from my bag and kept going.\r\n\r\nThen in the third loop, the wind got even more brutal. We were all slugging it out on the backside of the island. As I turned to head back into town at the 100-mile marker, I went to slip the orthotics back in as it prevents me from having foot pain on the post-ride run. The left one had fallen out of my bike jersey pocket, but at least I had the right one. All in all, I rode 12 minutes faster than last year.\r\n<h3><img class=\"alignleft size-full wp-image-127\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-run.jpg\" alt=\"Cozumel 2012 Run\" width=\"160\" height=\"215\" /><strong class=\"subhead\">THE RUN</strong></h3>\r\nBack in town, I got off the bike to run to the transition area. I quickly changed and headed off to run the marathon. My legs were a bit heavy, but somehow I was running well. This was especially good since I had a hamstring problem earlier in the year. And even had been running a lot in deep water instead of the land for my training. The heaviness quickly went away within the first mile, and all was going well. I had only slight right hamstring discomfort and no real pain.\r\n\r\nWe do approximately 4. 4 miles out and back for an 8.8-mile loop. The run includes three times around the loop. On the way back to town on the first loop, the foot pain (left and right) started to appear. I did take a Celebrex at 4 am and another one on the third loop of the bike.\r\n\r\nWhen I got to town after 8.8 miles, I asked my good friend Angela (she was my aid throughout the race- and a great one at that) to find ibuprofen (it works on a different pathway than Celebrex). When I got to the second turn around to head back to town (13.1 miles), my hamstring kicked in - big time. It was painful to run, but I kept going. I changed my gait (made it an even shorter stride). There were plenty of people walking by then, but I just dealt with it.\r\n\r\nI knew there was a medic tent at about 15 miles. I pulled in and asked for ice. They ace wrapped my upper thigh with lots of ice. This seemed to reduce the pain. But I was still running slightly slower (the first 13.1 miles had me on a 5+ hr. marathon pace - much better than the 5:35 of last year).\r\n\r\nAs I entered the town, Angela was there and handed me the ibuprofen. I took it, and within minutes I was feeling quite good. Before this, I had calculated my time and distance and knew that I could break 14 hrs. And maybe even by 30 minutes.\r\n\r\nBut the hamstring pain started to return about 19 miles. I got the leg wrapped with more ice again on the way out to the 4.8 final turnaround. Before the last turnaround, I was forced to walk and run. This is something that I had never done before (walk, that is). But the pain was pretty high.\r\n\r\nAt the last three-mile marker, I got even more ice for my hamstring and decided to walk more than run. Soon thereafter, I could not continue a run/walk pace due to pain but figured if I walked fast (walking was painful but not severe), I would break 14 hrs. So at that point, I walked a 14-15 mile pace (off my Garmin wrist computer), which is still pretty fast. There were plenty of walkers, and I was passing them.\r\n\r\nI had to save whatever run I had left in me for the last few hundred meters up to the finish. <strong>No way was I going to walk that!</strong> This is right in the middle of the park, and all lit up with hundreds (if not more) of people yelling and screaming. So as I got close, I began to run. Pain is temporary; finishing is forever! I kept going and reached the last hundred meters to the finish line, where I heard the announcer say, once again, \"<strong class=\"subhead\"><span style=\"text-decoration: underline;\">Peter Fields, you are an Ironman!</span></strong>\"\r\n\r\nMy time was 13:50, not the 13:30 I might have had without the hamstring issue.\r\nBut I did end up breaking the 14 hr. barrier of last year\'s time of 14:04. Mission accomplished.\r\nAs I always say, age is mind over matter. <strong>If you don\'t mind- it does not matter!</strong>\r\n<h3><img class=\"alignleft size-full wp-image-128\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" alt=\"Cozumel 2012 Finish2\" width=\"150\" height=\"268\" /><strong class=\"subhead\">THE FINISH</strong></h3>\r\nImmediately after crossing the finish line, I received a big hug from Angela. I then went into the medical tent to get a one-liter IV bag of fluid. Everyone is dehydrated to some point, and this was much needed.\r\n\r\nThen off to get a post-race massage and some food. Unfortunately, caffeine gels kept me going during the last part of the run, and my stomach did not really want any food. But it was nice just to sit down and cheer on the last finishers trying to make the 17 hr. cut-off at midnight.\r\n\r\nAfter collecting my gear and bike, I finally headed back to the hotel and got to bed at 2 am. Not much success with that after being very revved up all day. So the next day was to a big recovery and sleep a day.\r\n\r\nThank you for allowing me to share this with you and for taking the time to read it. I want to thank everyone that offered me support and wishes. I am very grateful to every one of you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p class=\"text-center\"><strong class=\"subhead\">Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img style=\"padding-left: 5px;\" title=\"2012 Cozumel\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish.jpg\" alt=\"2012 Cozumel\" width=\"160\" height=\"215\" />\r\n<a href=\"https://photos.app.goo.gl/QCF7CgcEG8uOfLBs1\" target=\"_blank\" rel=\"noopener noreferrer\">2012 Cozumel\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Stories from my other Ironman competitions:\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','My Second Ironman Competition Took Place in Cozumel, Mexico','','inherit','closed','closed','','120-revision-v1','','','2021-05-19 00:04:20','2021-05-19 00:04:20','',120,'https://www.drfields.com/?p=4681',0,'revision','',0),(4682,9,'2021-05-19 00:09:02','2021-05-19 00:09:02','<div class=\"col-md-8\">\r\n<h2 style=\"text-align: center;\">My Second Ironman Competition Took Place in Cozumel, Mexico</h2>\r\n[caption id=\"attachment_43\" align=\"aligncenter\" width=\"592\"]<img class=\"wp-image-43\" title=\"My Second Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\" width=\"592\" height=\"242\" /> <strong>                November 25, 2012, 2.4-mile swim, 112-mile bike, 26.2-mile run</strong>[/caption]\r\n\r\nAfter finishing this Ironman race last year, I was back in Cozumel again to try and beat my time of 2011 time of 14 hrs. 4 mins and 7 sec. And with much pride, I am happy to announce that I did. My finishing times were 13hrs, 50 mins, and 27sec.\r\n\r\nIronman competitions are always very challenging, both physically and mentally. My day began at 4 am when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 42 countries.\r\n\r\nOnce again, it was a beautiful day in Cozumel.  The air temp about 74 degrees, with clear skies and not a cloud in sight. Now, after all the months of training, this journey was about to begin.\r\n<h3><img class=\"alignleft size-full wp-image-123\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg\" alt=\"Cozumel 2012 Swim\" width=\"160\" height=\"213\" /><strong class=\"subhead\">THE SWIM IN IRONMAN COZUMEL</strong></h3>\r\nThe water was a bit choppy, and there was a strong current too. This did not bother me as swimming is my best event.\r\n\r\nAfter one last gel, I lined up with the others and then jumped off the pier into the ocean. To get in the water, we all had to jump about 7-10 feet off the pier into the water. I positioned myself in a good spot up front and along the shore.\r\n\r\nThe current would be flowing against us for the first 800 meters.  So it was best to be close to the shore where the current is less. After treading water for 10 minutes or so, the horn went off. I go pretty fast at first to get away from the crowd.\r\n\r\nDue to the chop, I altered my stroke by bringing my arms closer to my body a bit to clear this.  It caused me to develop a bit of an underarm chafe, but this was soon forgotten. Once we turned around the first buoy, the current was with us. And then I could let the current work with me for the next mile or so.\r\n\r\nThe water here is so clear. Schools of fish are visible swimming around. And so are the scuba lifeguards that are positioned on the bottom about 30 feet down. When I got to the final turn, the current was against me again. I had to work a bit harder.\r\n\r\nNo balloon or marker was marking the pier. So I just followed the crowd and sighted off the lifeguard paddlers and boats. Overall I was about 8 minutes slower than last year (one hour and nine minutes this year). But I still felt pretty good.\r\n\r\nLater, I was to learn that most people were 15 to 30 minutes slower than last year. In Ironman races (avg. participants about 2300), there are usually about 10-15 who do not make the 2 hrs. and 20-minute swim cutoff time. This year there were over 240! Very disappointing for them as they take your timing chip away as you exit the water. Some chose to do the race anyway unofficially.\r\n\r\nAs I exited the water, I ran quickly into the change tent. I was determined to cut down my transition time this year – big time. I had opted to wear a Tri Suit under the speed suit I swim in (like in the Olympics). This meant I did not have to change into separate clothing for the bike and run since the Tri suit is a two-piece suit that one can ride and run in.\r\n\r\nOnce inside, I quickly stripped the speed suit off, put on my helmet and bike shoes, and was off to get my bike. There was no need to re-apply sunscreen as they had helpers in the change tent lathering shoulders and upper arms (the exposed areas) with sunscreen. This was a big help.\r\n<h3><img class=\"alignleft size-full wp-image-125\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-bike.jpg\" alt=\"Cozumel 2012 Bike\" width=\"160\" height=\"196\" /><strong class=\"subhead\">NOW FOR THE BIKE SECTION OF MY SECOND IRONMAN</strong></h3>\r\nThe first of three loops on the bike went well. Fortunately, there wasn\'t a lot of wind when we got to the back of the island. I also had changed my nutrition from last year and did not have the dreaded stomach problems that many triathletes have on the bike.\r\n\r\nDuring the second loop, the winds really picked up. It was a tough 15-18 mile section with 15-20 mile an hour wind hitting broadside. I did develop some left foot pain which sometimes happens when I ride over 70 miles. This had happened last year. So I removed my left orthotic. So I removed my orthotics which essentially eliminated the pain.\r\n\r\nAt mile 62, there is a special needs station to leave anything you want. Last year I rested there a bit. But this year, I just grabbed what I needed from my bag and kept going.\r\n\r\nThen in the third loop, the wind got even more brutal. We were all slugging it out on the backside of the island. As I turned to head back into town at the 100-mile marker, I went to slip the orthotics back in as it prevents me from having foot pain on the post-ride run. The left one had fallen out of my bike jersey pocket, but at least I had the right one. All in all, I rode 12 minutes faster than last year.\r\n<h3><img class=\"alignleft size-full wp-image-127\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-run.jpg\" alt=\"Cozumel 2012 Run\" width=\"160\" height=\"215\" /><strong class=\"subhead\">THE RUN</strong></h3>\r\nBack in town, I got off the bike to run to the transition area. I quickly changed and headed off to run the marathon. My legs were a bit heavy, but somehow I was running well. This was especially good since I had a hamstring problem earlier in the year. And even had been running a lot in deep water instead of the land for my training. The heaviness quickly went away within the first mile, and all was going well. I had only slight right hamstring discomfort and no real pain.\r\n\r\nWe do approximately 4. 4 miles out and back for an 8.8-mile loop. The run includes three times around the loop. On the way back to town on the first loop, the foot pain (left and right) started to appear. I did take a Celebrex at 4 am and another one on the third loop of the bike.\r\n\r\nWhen I got to town after 8.8 miles, I asked my good friend Angela (she was my aid throughout the race- and a great one at that) to find ibuprofen (it works on a different pathway than Celebrex). When I got to the second turn around to head back to town (13.1 miles), my hamstring kicked in - big time. It was painful to run, but I kept going. I changed my gait (made it an even shorter stride). There were plenty of people walking by then, but I just dealt with it.\r\n\r\nI knew there was a medic tent at about 15 miles. I pulled in and asked for ice. They ace wrapped my upper thigh with lots of ice. This seemed to reduce the pain. But I was still running slightly slower (the first 13.1 miles had me on a 5+ hr. marathon pace - much better than the 5:35 of last year).\r\n\r\nAs I entered the town, Angela was there and handed me the ibuprofen. I took it, and within minutes I was feeling quite good. Before this, I had calculated my time and distance and knew that I could break 14 hrs. And maybe even by 30 minutes.\r\n\r\nBut the hamstring pain started to return about 19 miles. I got the leg wrapped with more ice again on the way out to the 4.8 final turnaround. Before the last turnaround, I was forced to walk and run. This is something that I had never done before (walk, that is). But the pain was pretty high.\r\n\r\nAt the last three-mile marker, I got even more ice for my hamstring and decided to walk more than run. Soon thereafter, I could not continue a run/walk pace due to pain but figured if I walked fast (walking was painful but not severe), I would break 14 hrs. So at that point, I walked a 14-15 mile pace (off my Garmin wrist computer), which is still pretty fast. There were plenty of walkers, and I was passing them.\r\n\r\nI had to save whatever run I had left in me for the last few hundred meters up to the finish. <strong>No way was I going to walk that!</strong> This is right in the middle of the park, and all lit up with hundreds (if not more) of people yelling and screaming. So as I got close, I began to run. Pain is temporary; finishing is forever! I kept going and reached the last hundred meters to the finish line, where I heard the announcer say, once again, \"<strong class=\"subhead\"><span style=\"text-decoration: underline;\">Peter Fields, you are an Ironman!</span></strong>\"\r\n\r\nMy time was 13:50, not the 13:30 I might have had without the hamstring issue.\r\nBut I did end up breaking the 14 hr. barrier of last year\'s time of 14:04. Mission accomplished.\r\nAs I always say, age is mind over matter. <strong>If you don\'t mind- it does not matter!</strong>\r\n\r\n[caption id=\"attachment_128\" align=\"alignleft\" width=\"150\"]<img class=\"wp-image-128 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" alt=\"Cozumel 2012 Finish2\" width=\"150\" height=\"268\" /> Second Ironman Finish[/caption]\r\n<h3><strong class=\"subhead\">THE FINISH</strong></h3>\r\nImmediately after crossing the finish line, I received a big hug from Angela. I then went into the medical tent to get a one-liter IV bag of fluid. Everyone is dehydrated to some point, and this was much needed.\r\n\r\nThen off to get a post-race massage and some food. Unfortunately, caffeine gels kept me going during the last part of the run, and my stomach did not really want any food. But it was nice just to sit down and cheer on the last finishers trying to make the 17 hr. cut-off at midnight.\r\n\r\nAfter collecting my gear and bike, I finally headed back to the hotel and got to bed at 2 am. Not much success with that after being very revved up all day. So the next day was to a big recovery and sleep a day.\r\n\r\nThank you for allowing me to share this with you and for taking the time to read it. I want to thank everyone that offered me support and wishes. I am very grateful to every one of you.\r\n\r\n&nbsp;\r\n<p class=\"text-center\"><strong class=\"subhead\">Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img style=\"padding-left: 5px;\" title=\"2012 Cozumel\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish.jpg\" alt=\"2012 Cozumel\" width=\"160\" height=\"215\" />\r\n<a href=\"https://photos.app.goo.gl/QCF7CgcEG8uOfLBs1\" target=\"_blank\" rel=\"noopener noreferrer\">2012 Cozumel\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Stories from my other Ironman competitions:\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','My Second Ironman Competition Took Place in Cozumel, Mexico','','inherit','closed','closed','','120-revision-v1','','','2021-05-19 00:09:02','2021-05-19 00:09:02','',120,'https://www.drfields.com/?p=4682',0,'revision','',0),(4683,9,'2021-05-19 00:12:57','2021-05-19 00:12:57','<div class=\"col-md-8\">\r\n<h2 style=\"text-align: center;\">My Second Ironman Competition Took Place in Cozumel, Mexico</h2>\r\n[caption id=\"attachment_43\" align=\"aligncenter\" width=\"592\"]<img class=\"wp-image-43\" title=\"My Second Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg\" alt=\"Ironman Cozumel Logo\" width=\"592\" height=\"242\" /> <strong>                November 25, 2012, 2.4-mile swim, 112-mile bike, 26.2-mile run</strong>[/caption]\r\n\r\nAfter finishing this Ironman race last year, I was back in Cozumel again to try and beat my time of 2011 time of 14 hrs. 4 mins and 7 sec. And with much pride, I am happy to announce that I did. My finishing times were 13hrs, 50 mins, and 27sec.\r\n\r\nIronman competitions are always very challenging, both physically and mentally. My day began at 4 am when I awoke to have breakfast. After getting to the transition area and re-checking my bike several times, I was ready to go. I then went down to the beach to begin the race with over 2300 swimmers (1700+ men and almost 600 women) from over 42 countries.\r\n\r\nOnce again, it was a beautiful day in Cozumel.  The air temp about 74 degrees, with clear skies and not a cloud in sight. Now, after all the months of training, this journey was about to begin.\r\n<h3><img class=\"alignleft size-full wp-image-123\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg\" alt=\"Cozumel 2012 Swim\" width=\"160\" height=\"213\" /><strong class=\"subhead\">THE SWIM IN IRONMAN COZUMEL</strong></h3>\r\nThe water was a bit choppy, and there was a strong current too. This did not bother me as swimming is my best event.\r\n\r\nAfter one last gel, I lined up with the others and then jumped off the pier into the ocean. To get in the water, we all had to jump about 7-10 feet off the pier into the water. I positioned myself in a good spot up front and along the shore.\r\n\r\nThe current would be flowing against us for the first 800 meters.  So it was best to be close to the shore where the current is less. After treading water for 10 minutes or so, the horn went off. I go pretty fast at first to get away from the crowd.\r\n\r\nDue to the chop, I altered my stroke by bringing my arms closer to my body a bit to clear this.  It caused me to develop a bit of an underarm chafe, but this was soon forgotten. Once we turned around the first buoy, the current was with us. And then I could let the current work with me for the next mile or so.\r\n\r\nThe water here is so clear. Schools of fish are visible swimming around. And so are the scuba lifeguards that are positioned on the bottom about 30 feet down. When I got to the final turn, the current was against me again. I had to work a bit harder.\r\n\r\nNo balloon or marker was marking the pier. So I just followed the crowd and sighted off the lifeguard paddlers and boats. Overall I was about 8 minutes slower than last year (one hour and nine minutes this year). But I still felt pretty good.\r\n\r\nLater, I was to learn that most people were 15 to 30 minutes slower than last year. In Ironman races (avg. participants about 2300), there are usually about 10-15 who do not make the 2 hrs. and 20-minute swim cutoff time. This year there were over 240! Very disappointing for them as they take your timing chip away as you exit the water. Some chose to do the race anyway unofficially.\r\n\r\nAs I exited the water, I ran quickly into the change tent. I was determined to cut down my transition time this year – big time. I had opted to wear a Tri Suit under the speed suit I swim in (like in the Olympics). This meant I did not have to change into separate clothing for the bike and run since the Tri suit is a two-piece suit that one can ride and run in.\r\n\r\nOnce inside, I quickly stripped the speed suit off, put on my helmet and bike shoes, and was off to get my bike. There was no need to re-apply sunscreen as they had helpers in the change tent lathering shoulders and upper arms (the exposed areas) with sunscreen. This was a big help.\r\n<h3><img class=\"alignleft size-full wp-image-125\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-bike.jpg\" alt=\"Cozumel 2012 Bike\" width=\"160\" height=\"196\" /><strong class=\"subhead\">NOW FOR THE BIKE SECTION OF MY SECOND IRONMAN</strong></h3>\r\nThe first of three loops on the bike went well. Fortunately, there wasn\'t a lot of wind when we got to the back of the island. I also had changed my nutrition from last year and did not have the dreaded stomach problems that many triathletes have on the bike.\r\n\r\nDuring the second loop, the winds really picked up. It was a tough 15-18 mile section with 15-20 mile an hour wind hitting broadside. I did develop some left foot pain which sometimes happens when I ride over 70 miles. This had happened last year. So I removed my left orthotic. So I removed my orthotics which essentially eliminated the pain.\r\n\r\nAt mile 62, there is a special needs station to leave anything you want. Last year I rested there a bit. But this year, I just grabbed what I needed from my bag and kept going.\r\n\r\nThen in the third loop, the wind got even more brutal. We were all slugging it out on the backside of the island. As I turned to head back into town at the 100-mile marker, I went to slip the orthotics back in as it prevents me from having foot pain on the post-ride run. The left one had fallen out of my bike jersey pocket, but at least I had the right one. All in all, I rode 12 minutes faster than last year.\r\n<h3><img class=\"alignleft size-full wp-image-127\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-run.jpg\" alt=\"Cozumel 2012 Run\" width=\"160\" height=\"215\" /><strong class=\"subhead\">THE RUN</strong></h3>\r\nBack in town, I got off the bike to run to the transition area. I quickly changed and headed off to run the marathon. My legs were a bit heavy, but somehow I was running well. This was especially good since I had a hamstring problem earlier in the year. And even had been running a lot in deep water instead of the land for my training. The heaviness quickly went away within the first mile, and all was going well. I had only slight right hamstring discomfort and no real pain.\r\n\r\nWe do approximately 4. 4 miles out and back for an 8.8-mile loop. The run includes three times around the loop. On the way back to town on the first loop, the foot pain (left and right) started to appear. I did take a Celebrex at 4 am and another one on the third loop of the bike.\r\n\r\nWhen I got to town after 8.8 miles, I asked my good friend Angela (she was my aid throughout the race- and a great one at that) to find ibuprofen (it works on a different pathway than Celebrex). When I got to the second turn around to head back to town (13.1 miles), my hamstring kicked in - big time. It was painful to run, but I kept going. I changed my gait (made it an even shorter stride). There were plenty of people walking by then, but I just dealt with it.\r\n\r\nI knew there was a medic tent at about 15 miles. I pulled in and asked for ice. They ace wrapped my upper thigh with lots of ice. This seemed to reduce the pain. But I was still running slightly slower (the first 13.1 miles had me on a 5+ hr. marathon pace - much better than the 5:35 of last year).\r\n\r\nAs I entered the town, Angela was there and handed me the ibuprofen. I took it, and within minutes I was feeling quite good. Before this, I had calculated my time and distance and knew that I could break 14 hrs. And maybe even by 30 minutes.\r\n\r\nBut the hamstring pain started to return about 19 miles. I got the leg wrapped with more ice again on the way out to the 4.8 final turnaround. Before the last turnaround, I was forced to walk and run. This is something that I had never done before (walk, that is). But the pain was pretty high.\r\n\r\nAt the last three-mile marker, I got even more ice for my hamstring and decided to walk more than run. Soon thereafter, I could not continue a run/walk pace due to pain but figured if I walked fast (walking was painful but not severe), I would break 14 hrs. So at that point, I walked a 14-15 mile pace (off my Garmin wrist computer), which is still pretty fast. There were plenty of walkers, and I was passing them.\r\n\r\nI had to save whatever run I had left in me for the last few hundred meters up to the finish. <strong>No way was I going to walk that!</strong> This is right in the middle of the park, and all lit up with hundreds (if not more) of people yelling and screaming. So as I got close, I began to run. Pain is temporary; finishing is forever! I kept going and reached the last hundred meters to the finish line, where I heard the announcer say, once again, \"<strong class=\"subhead\"><span style=\"text-decoration: underline;\">Peter Fields, you are an Ironman!</span></strong>\"\r\n\r\nMy time was 13:50, not the 13:30 I might have had without the hamstring issue.\r\nBut I did end up breaking the 14 hr. barrier of last year\'s time of 14:04. Mission accomplished.\r\nAs I always say, age is mind over matter. <strong>If you don\'t mind- it does not matter!</strong>\r\n\r\n[caption id=\"attachment_128\" align=\"alignleft\" width=\"150\"]<img class=\"wp-image-128 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" alt=\"Cozumel 2012 Finish2\" width=\"150\" height=\"268\" /> Second Ironman Finish[/caption]\r\n<h3><strong class=\"subhead\">THE FINISH</strong></h3>\r\nImmediately after crossing the finish line, I received a big hug from Angela. I then went into the medical tent to get a one-liter IV bag of fluid. Everyone is dehydrated to some point, and this was much needed.\r\n\r\nThen off to get a post-race massage and some food. Unfortunately, caffeine gels kept me going during the last part of the run, and my stomach did not really want any food. But it was nice just to sit down and cheer on the last finishers trying to make the 17 hr. cut-off at midnight.\r\n\r\nAfter collecting my gear and bike, I finally headed back to the hotel and got to bed at 2 am. Not much success with that after being very revved up all day. So the next day was spent recovering and sleeping\r\n\r\nThank you for allowing me to share this with you and for taking the time to read it. I want to thank everyone that offered me support and wishes. I am very grateful to every one of you.\r\n\r\n&nbsp;\r\n<p class=\"text-center\"><strong class=\"subhead\">Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img style=\"padding-left: 5px;\" title=\"2012 Cozumel\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish.jpg\" alt=\"2012 Cozumel\" width=\"160\" height=\"215\" />\r\n<a href=\"https://photos.app.goo.gl/QCF7CgcEG8uOfLBs1\" target=\"_blank\" rel=\"noopener noreferrer\">2012 Cozumel\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Stories from my other Ironman competitions:\r\n\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','My Second Ironman Competition Took Place in Cozumel, Mexico','','inherit','closed','closed','','120-revision-v1','','','2021-05-19 00:12:57','2021-05-19 00:12:57','',120,'https://www.drfields.com/?p=4683',0,'revision','',0),(4685,9,'2021-06-03 02:38:32','2021-06-03 02:38:32','<h2>Achieving Higher Goals at My Third Ironman</h2>\n<div class=\"col-md-8\">\n\n[caption id=\"attachment_134\" align=\"alignright\" width=\"581\"]<img class=\"wp-image-134 \" title=\"Third Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"581\" height=\"256\" /> <em>                  Sunday, August 25, 2013:     2.4-mile swim, 112-mile bike, 26.2-mile run</em>[/caption]\n<p class=\"text-center\"><em>Third Ironman Quote for the Day:<strong> One cannot achieve higher goals in life without some struggle.</strong></em></p>\n\n<h3><img class=\"alignleft size-full wp-image-138\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" /><strong class=\"subhead\">Before the Race</strong></h3>\nI woke up at 3:30 am so I could have breakfast by 4 am. That way I would have three hours before the start of the race so my food could be properly digested. I already had my gear ready to go plus the two special needs bags for the bike and the run. Then off to the village center to drop off the special needs bags and onto the buses that transported us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.\n\nWhen we got there it was still dark and about 45 degrees. It was cold! But at least the rain from the previous day had stopped and no more was predicted. Fortunately, I had planned well for the cold.\n\nThere is always a lot of tension floating around as over 2200 athletes check their gear. Everyone tries their best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\n\nThe only thing one brings in the morning is one\'s wetsuit, goggles, and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit, and then down to the waterfront.\n<h3><img class=\"alignleft wp-image-140\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"243\" height=\"324\" /><strong class=\"subhead\">The Swim in My Third Ironman</strong></h3>\nThe lake is surrounded by mountains and the water temperature was about 68 degrees. That temperature was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7 am, the gun went off. It would be a long day.\n\nAs always, I go out fast at the beginning of the swim, since swimming is my best part. I try and get away from the majority of the crowd, and then I try and settle back into a good pace. There were a few turns prior to turning back on the first loop of the two-loop course.\n\nIt got really jammed and crowded...more jammed than usual, which meant I couldn\'t really get into a good stroke pattern until the second lap. Plus, I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.\n\n&nbsp;\n<h3>Transition One</h3>\nI took a bit longer in the change tent as I put on knee warmers, a wind vest, a riding jacket, a skull cap for under my helmet, and longliner gloves over my riding gloves (I get cold easy!!).\n<h3><img class=\"alignleft wp-image-142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"251\" height=\"335\" /><strong class=\"subhead\">The Bike</strong></h3>\nThen I was off to the 112-mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views were really spectacular.\n\n<strong>Riding through the crowds was invigorating.</strong> They really cheered us on. I took off my gloves since it was now above 60. Then some uphills and lots of downhills for the next 20 miles.\n\nAfter that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use.\n\nI took off the leg warmers, vest, and skull cap, gave them to one of the volunteers along with the empty bottle I had gone thru. She was very surprised but happy.  my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. <strong>Wow, a business referral in an Ironman!</strong> Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.\n\nThen back to the hills. <strong>The last part from mile 85 to 112, was essentially all uphill.</strong> The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight downhill riding all the way back to town. It was tough on the legs.\n\nAs we approached the town, the cheering again kept me going. Needless to say, my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than previously in the <a href=\"https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico/\">Cozumel Ironman</a>. But with the hills here I was not disappointed.\n<h3>Transition Two</h3>\nAfter handing off my bike to a handler, it was off the change tent to put on my running shoes. No need to change clothing because what I wear under my wetsuit is what I ride and run in. Then a quick restock of a few gel packs. <strong>On the way out, volunteers with grass skirts put sunscreen on the runners.</strong> This would be helpful as it was hot, sunny, and getting warm.\n<h3><img class=\"alignleft wp-image-143\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"263\" height=\"350\" /><strong class=\"subhead\">The Run</strong></h3>\nThe run had over 1100 feet of climbing. Added to the very hilly ride, making this a hard run. There was constant up and down of hills. Tough on already tired legs. Some of the runs went thru the woods on dirt trails, which was good for the legs.\n\nWe ran around a lake, over a wooden bridge on a pond, and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.\n\nAt mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegaderm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse.\n\nThen, at mile five, I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort. The extra weight got transferred laterally to my third and fourth toes. So, I altered my gait and it became a lot easier to run.\n\nAt this point, it was actually easier to run (mid-foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually, I was able to keep running and push thru it. As my mom always said, \"C\'est al vie\", (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach.\n\nThe blister pain I just put in the back of my mind and it never got worse. All in all, <strong>I eventually figured out I would not break 14 hours as I had done last year.</strong> But with the big hills on the ride, the hills on the run, and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny, it was quite warm being at 2200 feet. So the ice at the aid stations was a help.\n\nI just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.\n<h3><img class=\"alignleft wp-image-144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"288\" height=\"482\" /><strong class=\"subhead\">The Finish</strong></h3>\nAs I got closer to the finish line, all the aches just started to fade away. The last mile or so I just let it all go and ran at a good pace. And as I entered the final turn, the last 150 meters were jammed with the crowds cheering loudly. At this point,<strong> I knew I had made it. All the months of training were worth it.</strong> And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. The final run time was 5:52 with an overall time of 14:18.\n<h3><strong class=\"subhead\">Final Thoughts on My Third Ironman:</strong></h3>\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus, it is as much a mental challenge, if not more than a physical one.\n\nI love the quote by Viktor Frankel, MD; Holocaust survivor and world-famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).\n\n<em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\".</strong></em>\n\n&nbsp;\n<h3><strong class=\"subhead\">Dedication:</strong></h3>\nAs many of you know, in each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.\n\nThanks to everyone for inquiring about me and cheering from near and far. I really appreciated all of it and words cannot say thank you enough.\n\nYour thoughts and well wishes helped me through my third Ironman.\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></p>\n\n</div>\n<div id=\"sidebar2\" class=\"col-md-4\">\n\n[caption id=\"\" align=\"alignleft\" width=\"274\"]<img style=\"padding-left: 5px;\" title=\"My Third Ironman in 2013 Canada\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Third Ironman \" width=\"274\" height=\"358\" /> My Third Ironman Completed[/caption]\n\n</div>\n<div></div>\n<div></div>\n<div class=\"col-md-4\"><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">01</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">7 Ironman Santa Rosa</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Achieving Higher Goals at My Third Ironman in Canada','','inherit','closed','closed','','131-autosave-v1','','','2021-06-03 02:38:32','2021-06-03 02:38:32','',131,'https://www.drfields.com/?p=4685',0,'revision','',0),(4686,9,'2021-06-03 02:23:55','2021-06-03 02:23:55','<h2>Achieving Higher Goals at My Third Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_134\" align=\"alignright\" width=\"220\"]<img class=\"wp-image-134 size-full\" title=\"Third Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"220\" height=\"97\" /> <em>Sunday, August 25, 2013 2.4-mile swim, 112-mile bike, 26.2-mile run</em>[/caption]\r\n<p class=\"text-center\"><em>Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></em></p>\r\n\r\n<h3><img class=\"alignleft size-full wp-image-138\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" /><strong class=\"subhead\">Before the Race</strong></h3>\r\nI woke up at 3:30 am so I could have breakfast by 4 am. That way I would have three hours before the start of the race so my food could be properly digested. I already had my gear ready to go plus the two special needs bags for the bike and the run. Then off to the village center to drop off the special needs bags and onto the buses that transported us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.\r\n\r\nWhen we got there it was still dark and about 45 degrees. It was cold! But at least the rain from the previous day had stopped and no more was predicted. Fortunately, I had planned well for the cold.\r\n\r\nThere is always a lot of tension floating around as over 2200 athletes check their gear. Everyone tries their best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\n\r\nThe only thing one brings in the morning is one\'s wetsuit, goggles, and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit, and then down to the waterfront.\r\n<h3><img class=\"alignleft  wp-image-140\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"243\" height=\"324\" /><strong class=\"subhead\">The Swim in My Third Ironman</strong></h3>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees. That temperature was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7 am, the gun went off. It would be a long day.\r\n\r\nAs always, I go out fast at the beginning of the swim, since swimming is my best part. I try and get away from the majority of the crowd, and then I try and settle back into a good pace. There were a few turns prior to turning back on the first loop of the two-loop course.\r\n\r\nIt got really jammed and crowded...more jammed than usual, which meant I couldn\'t really get into a good stroke pattern until the second lap. Plus, I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.\r\n\r\n&nbsp;\r\n<h3>Transition One</h3>\r\nI took a bit longer in the change tent as I put on knee warmers, a wind vest, a riding jacket, a skull cap for under my helmet, and longliner gloves over my riding gloves (I get cold easy!!).\r\n<h3><img class=\"alignleft  wp-image-142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"251\" height=\"335\" /><strong class=\"subhead\">The Bike</strong></h3>\r\nThen I was off to the 112-mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views were really spectacular.\r\n\r\n<strong>Riding through the crowds was invigorating.</strong> They really cheered us on. I took off my gloves since it was now above 60. Then some uphills and lots of downhills for the next 20 miles.\r\n\r\nAfter that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use.\r\n\r\nI took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. <strong>Wow, a business referral in an Ironman!</strong> Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.\r\n\r\nThen back to the hills. <strong>The last part from mile 85 to 112, was essentially all uphill.</strong> The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight downhill riding all the way back to town. It was tough on the legs.\r\n\r\nAs we approached the town, the cheering again kept me going. Needless to say, my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than previously in the Cozumel Ironman. But with the hills here I was not disappointed.\r\n<h3>Transition Two</h3>\r\nAfter handing off my bike to a handler, it was off the change tent to put on my running shoes. No need to change clothing because what I wear under my wetsuit is what I ride and run in. Then a quick restock of a few gel packs. <strong>On the way out, volunteers with grass skirts put sunscreen on the runners.</strong> This would be helpful as it was hot, sunny, and getting warm.\r\n<h3><img class=\"alignleft  wp-image-143\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"263\" height=\"350\" /><strong class=\"subhead\">The Run</strong></h3>\r\nThe run had over 1100 feet of climbing. Added to the very hilly ride, making this a hard run. There was constant up and down of hills. Tough on already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs.\r\n\r\nWe ran around a lake, over a wooden bridge on a pond, and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.\r\n\r\nAt mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegaderm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse.\r\n\r\nThen, at mile five, I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort. The extra weight got transferred laterally to my third and fourth toes. So, I altered my gait and it became a lot easier to run.\r\n\r\nAt this point, it was actually easier to run (mid-foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually, I was able to keep running and push thru it. As my mom always said, \"C\'est al vie\", (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach.\r\n\r\nThe blister pain I just put in the back of my mind as it never got worse. All in all <strong>I eventually figured out I would not break 14 hours as I had done last year.</strong> But with the big hills on the ride, the hills on the run, and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny, it was quite warm being at 2200 feet. So the ice at the aid stations was a help.\r\n\r\nI just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.\r\n<h3><img class=\"alignleft size-full wp-image-144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"160\" height=\"268\" /><strong class=\"subhead\">The Finish</strong></h3>\r\nAs I got closer to the finish line, all the aches just started to fade away. The last mile or so I just let it all go and ran at a good pace. And as I entered the final turn, the last 150 meters were jammed with the crowds cheering loudly. At this point,<strong> I knew I had made it. All the months of training were worth it.</strong> And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. The final run time was 5:52 with an overall time of 14:18.\r\n<h3><strong class=\"subhead\">Final Thoughts on My Third Ironman:</strong></h3>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus, it is as much a mental challenge, if not more than a physical one.\r\n\r\nI love the quote by Viktor Frankel, MD; Holocaust survivor and world-famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).\r\n\r\n<em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\". </strong></em>\r\n<h3><strong class=\"subhead\">Dedication:</strong></h3>\r\nAs many of you know, in each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.\r\n\r\nThanks to everyone for inquiring about me and cheering from near and far. I really appreciated all of it and words cannot say thank you enough.\r\n\r\nYour thoughts and well wishes helped me through my third Ironman.\r\n\r\nPlease feel free to see the pictures including the one with me smiling while showing off my mom\'s initials.\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\"><img style=\"padding-left: 5px;\" title=\"2013 Canada\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Canada\" width=\"160\" height=\"215\" /><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Achieving Higher Goals at My Third Ironman in Canada','','inherit','closed','closed','','131-revision-v1','','','2021-06-03 02:23:55','2021-06-03 02:23:55','',131,'https://www.drfields.com/?p=4686',0,'revision','',0),(4687,9,'2021-06-03 02:27:13','2021-06-03 02:27:13','<h2>Achieving Higher Goals at My Third Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_134\" align=\"alignright\" width=\"622\"]<img class=\"wp-image-134 \" title=\"Third Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"622\" height=\"273\" /> <em>                  Sunday, August 25, 2013:     2.4-mile swim, 112-mile bike, 26.2-mile run</em>[/caption]\r\n<p class=\"text-center\"><em>Quote for the day:<strong> One cannot achieve higher goals in life without some struggle.</strong></em></p>\r\n\r\n<h3><img class=\"alignleft size-full wp-image-138\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" /><strong class=\"subhead\">Before the Race</strong></h3>\r\nI woke up at 3:30 am so I could have breakfast by 4 am. That way I would have three hours before the start of the race so my food could be properly digested. I already had my gear ready to go plus the two special needs bags for the bike and the run. Then off to the village center to drop off the special needs bags and onto the buses that transported us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.\r\n\r\nWhen we got there it was still dark and about 45 degrees. It was cold! But at least the rain from the previous day had stopped and no more was predicted. Fortunately, I had planned well for the cold.\r\n\r\nThere is always a lot of tension floating around as over 2200 athletes check their gear. Everyone tries their best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\n\r\nThe only thing one brings in the morning is one\'s wetsuit, goggles, and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit, and then down to the waterfront.\r\n<h3><img class=\"alignleft wp-image-140\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"243\" height=\"324\" /><strong class=\"subhead\">The Swim in My Third Ironman</strong></h3>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees. That temperature was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7 am, the gun went off. It would be a long day.\r\n\r\nAs always, I go out fast at the beginning of the swim, since swimming is my best part. I try and get away from the majority of the crowd, and then I try and settle back into a good pace. There were a few turns prior to turning back on the first loop of the two-loop course.\r\n\r\nIt got really jammed and crowded...more jammed than usual, which meant I couldn\'t really get into a good stroke pattern until the second lap. Plus, I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.\r\n\r\n&nbsp;\r\n<h3>Transition One</h3>\r\nI took a bit longer in the change tent as I put on knee warmers, a wind vest, a riding jacket, a skull cap for under my helmet, and longliner gloves over my riding gloves (I get cold easy!!).\r\n<h3><img class=\"alignleft wp-image-142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"251\" height=\"335\" /><strong class=\"subhead\">The Bike</strong></h3>\r\nThen I was off to the 112-mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views were really spectacular.\r\n\r\n<strong>Riding through the crowds was invigorating.</strong> They really cheered us on. I took off my gloves since it was now above 60. Then some uphills and lots of downhills for the next 20 miles.\r\n\r\nAfter that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use.\r\n\r\nI took off the leg warmers, vest and skull cap, gave it to one of the volunteers along with the empty bottle I had gone thru. She was very surprised but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. <strong>Wow, a business referral in an Ironman!</strong> Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.\r\n\r\nThen back to the hills. <strong>The last part from mile 85 to 112, was essentially all uphill.</strong> The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight downhill riding all the way back to town. It was tough on the legs.\r\n\r\nAs we approached the town, the cheering again kept me going. Needless to say, my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than previously in the Cozumel Ironman. But with the hills here I was not disappointed.\r\n<h3>Transition Two</h3>\r\nAfter handing off my bike to a handler, it was off the change tent to put on my running shoes. No need to change clothing because what I wear under my wetsuit is what I ride and run in. Then a quick restock of a few gel packs. <strong>On the way out, volunteers with grass skirts put sunscreen on the runners.</strong> This would be helpful as it was hot, sunny, and getting warm.\r\n<h3><img class=\"alignleft wp-image-143\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"263\" height=\"350\" /><strong class=\"subhead\">The Run</strong></h3>\r\nThe run had over 1100 feet of climbing. Added to the very hilly ride, making this a hard run. There was constant up and down of hills. Tough on already tired legs. Some of the run went thru the woods on dirt trails, which was good for the legs.\r\n\r\nWe ran around a lake, over a wooden bridge on a pond, and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.\r\n\r\nAt mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegaderm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse.\r\n\r\nThen, at mile five, I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort. The extra weight got transferred laterally to my third and fourth toes. So, I altered my gait and it became a lot easier to run.\r\n\r\nAt this point, it was actually easier to run (mid-foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually, I was able to keep running and push thru it. As my mom always said, \"C\'est al vie\", (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach.\r\n\r\nThe blister pain I just put in the back of my mind as it never got worse. All in all <strong>I eventually figured out I would not break 14 hours as I had done last year.</strong> But with the big hills on the ride, the hills on the run, and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny, it was quite warm being at 2200 feet. So the ice at the aid stations was a help.\r\n\r\nI just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.\r\n<h3><img class=\"alignleft  wp-image-144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"288\" height=\"482\" /><strong class=\"subhead\">The Finish</strong></h3>\r\nAs I got closer to the finish line, all the aches just started to fade away. The last mile or so I just let it all go and ran at a good pace. And as I entered the final turn, the last 150 meters were jammed with the crowds cheering loudly. At this point,<strong> I knew I had made it. All the months of training were worth it.</strong> And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. The final run time was 5:52 with an overall time of 14:18.\r\n<h3><strong class=\"subhead\">Final Thoughts on My Third Ironman:</strong></h3>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus, it is as much a mental challenge, if not more than a physical one.\r\n\r\nI love the quote by Viktor Frankel, MD; Holocaust survivor and world-famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).\r\n\r\n<em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\".</strong></em>\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Dedication:</strong></h3>\r\nAs many of you know, in each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.\r\n\r\nThanks to everyone for inquiring about me and cheering from near and far. I really appreciated all of it and words cannot say thank you enough.\r\n\r\nYour thoughts and well wishes helped me through my third Ironman.\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\"><img class=\"\" style=\"padding-left: 5px;\" title=\"2013 Canada\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Canada\" width=\"274\" height=\"358\" /></div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"col-md-4\"><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">01</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">7 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Achieving Higher Goals at My Third Ironman in Canada','','inherit','closed','closed','','131-revision-v1','','','2021-06-03 02:27:13','2021-06-03 02:27:13','',131,'https://www.drfields.com/?p=4687',0,'revision','',0),(4688,9,'2021-06-03 02:34:55','2021-06-03 02:34:55','<h2>Achieving Higher Goals at My Third Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_134\" align=\"alignright\" width=\"581\"]<img class=\"wp-image-134 \" title=\"Third Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"581\" height=\"256\" /> <em>                  Sunday, August 25, 2013:     2.4-mile swim, 112-mile bike, 26.2-mile run</em>[/caption]\r\n<p class=\"text-center\"><em>Third Ironman Quote for the Day:<strong> One cannot achieve higher goals in life without some struggle.</strong></em></p>\r\n\r\n<h3><img class=\"alignleft size-full wp-image-138\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" /><strong class=\"subhead\">Before the Race</strong></h3>\r\nI woke up at 3:30 am so I could have breakfast by 4 am. That way I would have three hours before the start of the race so my food could be properly digested. I already had my gear ready to go plus the two special needs bags for the bike and the run. Then off to the village center to drop off the special needs bags and onto the buses that transported us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.\r\n\r\nWhen we got there it was still dark and about 45 degrees. It was cold! But at least the rain from the previous day had stopped and no more was predicted. Fortunately, I had planned well for the cold.\r\n\r\nThere is always a lot of tension floating around as over 2200 athletes check their gear. Everyone tries their best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\n\r\nThe only thing one brings in the morning is one\'s wetsuit, goggles, and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit, and then down to the waterfront.\r\n<h3><img class=\"alignleft wp-image-140\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"243\" height=\"324\" /><strong class=\"subhead\">The Swim in My Third Ironman</strong></h3>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees. That temperature was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7 am, the gun went off. It would be a long day.\r\n\r\nAs always, I go out fast at the beginning of the swim, since swimming is my best part. I try and get away from the majority of the crowd, and then I try and settle back into a good pace. There were a few turns prior to turning back on the first loop of the two-loop course.\r\n\r\nIt got really jammed and crowded...more jammed than usual, which meant I couldn\'t really get into a good stroke pattern until the second lap. Plus, I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.\r\n\r\n&nbsp;\r\n<h3>Transition One</h3>\r\nI took a bit longer in the change tent as I put on knee warmers, a wind vest, a riding jacket, a skull cap for under my helmet, and longliner gloves over my riding gloves (I get cold easy!!).\r\n<h3><img class=\"alignleft wp-image-142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"251\" height=\"335\" /><strong class=\"subhead\">The Bike</strong></h3>\r\nThen I was off to the 112-mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views were really spectacular.\r\n\r\n<strong>Riding through the crowds was invigorating.</strong> They really cheered us on. I took off my gloves since it was now above 60. Then some uphills and lots of downhills for the next 20 miles.\r\n\r\nAfter that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use.\r\n\r\nI took off the leg warmers, vest, and skull cap, gave them to one of the volunteers along with the empty bottle I had gone thru. She was very surprised but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. <strong>Wow, a business referral in an Ironman!</strong> Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.\r\n\r\nThen back to the hills. <strong>The last part from mile 85 to 112, was essentially all uphill.</strong> The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight downhill riding all the way back to town. It was tough on the legs.\r\n\r\nAs we approached the town, the cheering again kept me going. Needless to say, my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than previously in the <a href=\"https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico/\">Cozumel Ironman</a>. But with the hills here I was not disappointed.\r\n<h3>Transition Two</h3>\r\nAfter handing off my bike to a handler, it was off the change tent to put on my running shoes. No need to change clothing because what I wear under my wetsuit is what I ride and run in. Then a quick restock of a few gel packs. <strong>On the way out, volunteers with grass skirts put sunscreen on the runners.</strong> This would be helpful as it was hot, sunny, and getting warm.\r\n<h3><img class=\"alignleft wp-image-143\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"263\" height=\"350\" /><strong class=\"subhead\">The Run</strong></h3>\r\nThe run had over 1100 feet of climbing. Added to the very hilly ride, making this a hard run. There was constant up and down of hills. Tough on already tired legs. Some of the runs went thru the woods on dirt trails, which was good for the legs.\r\n\r\nWe ran around a lake, over a wooden bridge on a pond, and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.\r\n\r\nAt mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegaderm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse.\r\n\r\nThen, at mile five, I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort. The extra weight got transferred laterally to my third and fourth toes. So, I altered my gait and it became a lot easier to run.\r\n\r\nAt this point, it was actually easier to run (mid-foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually, I was able to keep running and push thru it. As my mom always said, \"C\'est al vie\", (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach.\r\n\r\nThe blister pain I just put in the back of my mind and it never got worse. All in all, <strong>I eventually figured out I would not break 14 hours as I had done last year.</strong> But with the big hills on the ride, the hills on the run, and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny, it was quite warm being at 2200 feet. So the ice at the aid stations was a help.\r\n\r\nI just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.\r\n<h3><img class=\"alignleft wp-image-144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"288\" height=\"482\" /><strong class=\"subhead\">The Finish</strong></h3>\r\nAs I got closer to the finish line, all the aches just started to fade away. The last mile or so I just let it all go and ran at a good pace. And as I entered the final turn, the last 150 meters were jammed with the crowds cheering loudly. At this point,<strong> I knew I had made it. All the months of training were worth it.</strong> And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. The final run time was 5:52 with an overall time of 14:18.\r\n<h3><strong class=\"subhead\">Final Thoughts on My Third Ironman:</strong></h3>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus, it is as much a mental challenge, if not more than a physical one.\r\n\r\nI love the quote by Viktor Frankel, MD; Holocaust survivor and world-famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).\r\n\r\n<em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\".</strong></em>\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Dedication:</strong></h3>\r\nAs many of you know, in each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.\r\n\r\nThanks to everyone for inquiring about me and cheering from near and far. I really appreciated all of it and words cannot say thank you enough.\r\n\r\nYour thoughts and well wishes helped me through my third Ironman.\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\"><img class=\"alignleft\" style=\"padding-left: 5px;\" title=\"2013 Canada\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Canada\" width=\"274\" height=\"358\" /></div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"col-md-4\"><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">01</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">7 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Achieving Higher Goals at My Third Ironman in Canada','','inherit','closed','closed','','131-revision-v1','','','2021-06-03 02:34:55','2021-06-03 02:34:55','',131,'https://www.drfields.com/?p=4688',0,'revision','',0),(4689,9,'2021-06-03 02:36:57','2021-06-03 02:36:57','<h2>Achieving Higher Goals at My Third Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_134\" align=\"alignright\" width=\"581\"]<img class=\"wp-image-134 \" title=\"Third Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"581\" height=\"256\" /> <em>                  Sunday, August 25, 2013:     2.4-mile swim, 112-mile bike, 26.2-mile run</em>[/caption]\r\n<p class=\"text-center\"><em>Third Ironman Quote for the Day:<strong> One cannot achieve higher goals in life without some struggle.</strong></em></p>\r\n\r\n<h3><img class=\"alignleft size-full wp-image-138\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" /><strong class=\"subhead\">Before the Race</strong></h3>\r\nI woke up at 3:30 am so I could have breakfast by 4 am. That way I would have three hours before the start of the race so my food could be properly digested. I already had my gear ready to go plus the two special needs bags for the bike and the run. Then off to the village center to drop off the special needs bags and onto the buses that transported us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.\r\n\r\nWhen we got there it was still dark and about 45 degrees. It was cold! But at least the rain from the previous day had stopped and no more was predicted. Fortunately, I had planned well for the cold.\r\n\r\nThere is always a lot of tension floating around as over 2200 athletes check their gear. Everyone tries their best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\n\r\nThe only thing one brings in the morning is one\'s wetsuit, goggles, and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit, and then down to the waterfront.\r\n<h3><img class=\"alignleft wp-image-140\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"243\" height=\"324\" /><strong class=\"subhead\">The Swim in My Third Ironman</strong></h3>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees. That temperature was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7 am, the gun went off. It would be a long day.\r\n\r\nAs always, I go out fast at the beginning of the swim, since swimming is my best part. I try and get away from the majority of the crowd, and then I try and settle back into a good pace. There were a few turns prior to turning back on the first loop of the two-loop course.\r\n\r\nIt got really jammed and crowded...more jammed than usual, which meant I couldn\'t really get into a good stroke pattern until the second lap. Plus, I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.\r\n\r\n&nbsp;\r\n<h3>Transition One</h3>\r\nI took a bit longer in the change tent as I put on knee warmers, a wind vest, a riding jacket, a skull cap for under my helmet, and longliner gloves over my riding gloves (I get cold easy!!).\r\n<h3><img class=\"alignleft wp-image-142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"251\" height=\"335\" /><strong class=\"subhead\">The Bike</strong></h3>\r\nThen I was off to the 112-mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views were really spectacular.\r\n\r\n<strong>Riding through the crowds was invigorating.</strong> They really cheered us on. I took off my gloves since it was now above 60. Then some uphills and lots of downhills for the next 20 miles.\r\n\r\nAfter that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use.\r\n\r\nI took off the leg warmers, vest, and skull cap, gave them to one of the volunteers along with the empty bottle I had gone thru. She was very surprised but happy. She saw my name on the bottle. She asked if that was me. When I said yes, she said that she had some knee problems and might call me. <strong>Wow, a business referral in an Ironman!</strong> Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.\r\n\r\nThen back to the hills. <strong>The last part from mile 85 to 112, was essentially all uphill.</strong> The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight downhill riding all the way back to town. It was tough on the legs.\r\n\r\nAs we approached the town, the cheering again kept me going. Needless to say, my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than previously in the <a href=\"https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico/\">Cozumel Ironman</a>. But with the hills here I was not disappointed.\r\n<h3>Transition Two</h3>\r\nAfter handing off my bike to a handler, it was off the change tent to put on my running shoes. No need to change clothing because what I wear under my wetsuit is what I ride and run in. Then a quick restock of a few gel packs. <strong>On the way out, volunteers with grass skirts put sunscreen on the runners.</strong> This would be helpful as it was hot, sunny, and getting warm.\r\n<h3><img class=\"alignleft wp-image-143\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"263\" height=\"350\" /><strong class=\"subhead\">The Run</strong></h3>\r\nThe run had over 1100 feet of climbing. Added to the very hilly ride, making this a hard run. There was constant up and down of hills. Tough on already tired legs. Some of the runs went thru the woods on dirt trails, which was good for the legs.\r\n\r\nWe ran around a lake, over a wooden bridge on a pond, and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.\r\n\r\nAt mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegaderm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse.\r\n\r\nThen, at mile five, I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort. The extra weight got transferred laterally to my third and fourth toes. So, I altered my gait and it became a lot easier to run.\r\n\r\nAt this point, it was actually easier to run (mid-foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually, I was able to keep running and push thru it. As my mom always said, \"C\'est al vie\", (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach.\r\n\r\nThe blister pain I just put in the back of my mind and it never got worse. All in all, <strong>I eventually figured out I would not break 14 hours as I had done last year.</strong> But with the big hills on the ride, the hills on the run, and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny, it was quite warm being at 2200 feet. So the ice at the aid stations was a help.\r\n\r\nI just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.\r\n<h3><img class=\"alignleft wp-image-144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"288\" height=\"482\" /><strong class=\"subhead\">The Finish</strong></h3>\r\nAs I got closer to the finish line, all the aches just started to fade away. The last mile or so I just let it all go and ran at a good pace. And as I entered the final turn, the last 150 meters were jammed with the crowds cheering loudly. At this point,<strong> I knew I had made it. All the months of training were worth it.</strong> And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. The final run time was 5:52 with an overall time of 14:18.\r\n<h3><strong class=\"subhead\">Final Thoughts on My Third Ironman:</strong></h3>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus, it is as much a mental challenge, if not more than a physical one.\r\n\r\nI love the quote by Viktor Frankel, MD; Holocaust survivor and world-famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).\r\n\r\n<em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\".</strong></em>\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Dedication:</strong></h3>\r\nAs many of you know, in each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.\r\n\r\nThanks to everyone for inquiring about me and cheering from near and far. I really appreciated all of it and words cannot say thank you enough.\r\n\r\nYour thoughts and well wishes helped me through my third Ironman.\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n[caption id=\"\" align=\"alignleft\" width=\"274\"]<img style=\"padding-left: 5px;\" title=\"My Third Ironman in 2013 Canada\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Third Ironman \" width=\"274\" height=\"358\" />           My Third Ironman Completed[/caption]\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"col-md-4\"><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">01</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">7 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Achieving Higher Goals at My Third Ironman in Canada','','inherit','closed','closed','','131-revision-v1','','','2021-06-03 02:36:57','2021-06-03 02:36:57','',131,'https://www.drfields.com/?p=4689',0,'revision','',0),(4690,9,'2021-06-03 02:38:44','2021-06-03 02:38:44','<h2>Achieving Higher Goals at My Third Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_134\" align=\"alignright\" width=\"581\"]<img class=\"wp-image-134 \" title=\"Third Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"581\" height=\"256\" /> <em>                  Sunday, August 25, 2013:     2.4-mile swim, 112-mile bike, 26.2-mile run</em>[/caption]\r\n<p class=\"text-center\"><em>Third Ironman Quote for the Day:<strong> One cannot achieve higher goals in life without some struggle.</strong></em></p>\r\n\r\n<h3><img class=\"alignleft size-full wp-image-138\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" /><strong class=\"subhead\">Before the Race</strong></h3>\r\nI woke up at 3:30 am so I could have breakfast by 4 am. That way I would have three hours before the start of the race so my food could be properly digested. I already had my gear ready to go plus the two special needs bags for the bike and the run. Then off to the village center to drop off the special needs bags and onto the buses that transported us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.\r\n\r\nWhen we got there it was still dark and about 45 degrees. It was cold! But at least the rain from the previous day had stopped and no more was predicted. Fortunately, I had planned well for the cold.\r\n\r\nThere is always a lot of tension floating around as over 2200 athletes check their gear. Everyone tries their best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\n\r\nThe only thing one brings in the morning is one\'s wetsuit, goggles, and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit, and then down to the waterfront.\r\n<h3><img class=\"alignleft wp-image-140\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"243\" height=\"324\" /><strong class=\"subhead\">The Swim in My Third Ironman</strong></h3>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees. That temperature was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7 am, the gun went off. It would be a long day.\r\n\r\nAs always, I go out fast at the beginning of the swim, since swimming is my best part. I try and get away from the majority of the crowd, and then I try and settle back into a good pace. There were a few turns prior to turning back on the first loop of the two-loop course.\r\n\r\nIt got really jammed and crowded...more jammed than usual, which meant I couldn\'t really get into a good stroke pattern until the second lap. Plus, I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.\r\n\r\n&nbsp;\r\n<h3>Transition One</h3>\r\nI took a bit longer in the change tent as I put on knee warmers, a wind vest, a riding jacket, a skull cap for under my helmet, and longliner gloves over my riding gloves (I get cold easy!!).\r\n<h3><img class=\"alignleft wp-image-142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"251\" height=\"335\" /><strong class=\"subhead\">The Bike</strong></h3>\r\nThen I was off to the 112-mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views were really spectacular.\r\n\r\n<strong>Riding through the crowds was invigorating.</strong> They really cheered us on. I took off my gloves since it was now above 60. Then some uphills and lots of downhills for the next 20 miles.\r\n\r\nAfter that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use.\r\n\r\nI took off the leg warmers, vest, and skull cap, gave them to one of the volunteers along with the empty bottle I had gone thru. She was very surprised but happy, seeing my name on the bottle, and asked if that was me. When I said yes, she said that she had some knee problems and might call me. <strong>Wow, a business referral in an Ironman!</strong> Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.\r\n\r\nThen back to the hills. <strong>The last part from mile 85 to 112, was essentially all uphill.</strong> The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight downhill riding all the way back to town. It was tough on the legs.\r\n\r\nAs we approached the town, the cheering again kept me going. Needless to say, my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than previously in the <a href=\"https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico/\">Cozumel Ironman</a>. But with the hills here I was not disappointed.\r\n<h3>Transition Two</h3>\r\nAfter handing off my bike to a handler, it was off the change tent to put on my running shoes. No need to change clothing because what I wear under my wetsuit is what I ride and run in. Then a quick restock of a few gel packs. <strong>On the way out, volunteers with grass skirts put sunscreen on the runners.</strong> This would be helpful as it was hot, sunny, and getting warm.\r\n<h3><img class=\"alignleft wp-image-143\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"263\" height=\"350\" /><strong class=\"subhead\">The Run</strong></h3>\r\nThe run had over 1100 feet of climbing. Added to the very hilly ride, making this a hard run. There was constant up and down of hills. Tough on already tired legs. Some of the runs went thru the woods on dirt trails, which was good for the legs.\r\n\r\nWe ran around a lake, over a wooden bridge on a pond, and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.\r\n\r\nAt mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegaderm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse.\r\n\r\nThen, at mile five, I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort. The extra weight got transferred laterally to my third and fourth toes. So, I altered my gait and it became a lot easier to run.\r\n\r\nAt this point, it was actually easier to run (mid-foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually, I was able to keep running and push thru it. As my mom always said, \"C\'est al vie\", (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach.\r\n\r\nThe blister pain I just put in the back of my mind and it never got worse. All in all, <strong>I eventually figured out I would not break 14 hours as I had done last year.</strong> But with the big hills on the ride, the hills on the run, and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny, it was quite warm being at 2200 feet. So the ice at the aid stations was a help.\r\n\r\nI just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.\r\n<h3><img class=\"alignleft wp-image-144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"288\" height=\"482\" /><strong class=\"subhead\">The Finish</strong></h3>\r\nAs I got closer to the finish line, all the aches just started to fade away. The last mile or so I just let it all go and ran at a good pace. And as I entered the final turn, the last 150 meters were jammed with the crowds cheering loudly. At this point,<strong> I knew I had made it. All the months of training were worth it.</strong> And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. The final run time was 5:52 with an overall time of 14:18.\r\n<h3><strong class=\"subhead\">Final Thoughts on My Third Ironman:</strong></h3>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus, it is as much a mental challenge, if not more than a physical one.\r\n\r\nI love the quote by Viktor Frankel, MD; Holocaust survivor and world-famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).\r\n\r\n<em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\".</strong></em>\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Dedication:</strong></h3>\r\nAs many of you know, in each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.\r\n\r\nThanks to everyone for inquiring about me and cheering from near and far. I really appreciated all of it and words cannot say thank you enough.\r\n\r\nYour thoughts and well wishes helped me through my third Ironman.\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n[caption id=\"\" align=\"alignleft\" width=\"274\"]<img style=\"padding-left: 5px;\" title=\"My Third Ironman in 2013 Canada\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Third Ironman \" width=\"274\" height=\"358\" /> My Third Ironman Completed[/caption]\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"col-md-4\"><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">01</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">7 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Achieving Higher Goals at My Third Ironman in Canada','','inherit','closed','closed','','131-revision-v1','','','2021-06-03 02:38:44','2021-06-03 02:38:44','',131,'https://www.drfields.com/?p=4690',0,'revision','',0),(4691,9,'2021-06-03 02:39:27','2021-06-03 02:39:27','<h2>Achieving Higher Goals at My Third Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_134\" align=\"alignright\" width=\"497\"]<img class=\"wp-image-134 \" title=\"Third Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"497\" height=\"219\" /> <em>      Sunday, August 25, 2013:     2.4-mile swim, 112-mile bike, 26.2-mile run</em>[/caption]\r\n<p class=\"text-center\"><em>Third Ironman Quote for the Day:<strong> One cannot achieve higher goals in life without some struggle.</strong></em></p>\r\n\r\n<h3><img class=\"alignleft size-full wp-image-138\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" /><strong class=\"subhead\">Before the Race</strong></h3>\r\nI woke up at 3:30 am so I could have breakfast by 4 am. That way I would have three hours before the start of the race so my food could be properly digested. I already had my gear ready to go plus the two special needs bags for the bike and the run. Then off to the village center to drop off the special needs bags and onto the buses that transported us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.\r\n\r\nWhen we got there it was still dark and about 45 degrees. It was cold! But at least the rain from the previous day had stopped and no more was predicted. Fortunately, I had planned well for the cold.\r\n\r\nThere is always a lot of tension floating around as over 2200 athletes check their gear. Everyone tries their best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\n\r\nThe only thing one brings in the morning is one\'s wetsuit, goggles, and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit, and then down to the waterfront.\r\n<h3><img class=\"alignleft wp-image-140\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"243\" height=\"324\" /><strong class=\"subhead\">The Swim in My Third Ironman</strong></h3>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees. That temperature was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7 am, the gun went off. It would be a long day.\r\n\r\nAs always, I go out fast at the beginning of the swim, since swimming is my best part. I try and get away from the majority of the crowd, and then I try and settle back into a good pace. There were a few turns prior to turning back on the first loop of the two-loop course.\r\n\r\nIt got really jammed and crowded...more jammed than usual, which meant I couldn\'t really get into a good stroke pattern until the second lap. Plus, I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.\r\n\r\n&nbsp;\r\n<h3>Transition One</h3>\r\nI took a bit longer in the change tent as I put on knee warmers, a wind vest, a riding jacket, a skull cap for under my helmet, and longliner gloves over my riding gloves (I get cold easy!!).\r\n<h3><img class=\"alignleft wp-image-142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"251\" height=\"335\" /><strong class=\"subhead\">The Bike</strong></h3>\r\nThen I was off to the 112-mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views were really spectacular.\r\n\r\n<strong>Riding through the crowds was invigorating.</strong> They really cheered us on. I took off my gloves since it was now above 60. Then some uphills and lots of downhills for the next 20 miles.\r\n\r\nAfter that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use.\r\n\r\nI took off the leg warmers, vest, and skull cap, gave them to one of the volunteers along with the empty bottle I had gone thru. She was very surprised but happy, seeing my name on the bottle, and asked if that was me. When I said yes, she said that she had some knee problems and might call me. <strong>Wow, a business referral in an Ironman!</strong> Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.\r\n\r\nThen back to the hills. <strong>The last part from mile 85 to 112, was essentially all uphill.</strong> The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight downhill riding all the way back to town. It was tough on the legs.\r\n\r\nAs we approached the town, the cheering again kept me going. Needless to say, my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than previously in the <a href=\"https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico/\">Cozumel Ironman</a>. But with the hills here I was not disappointed.\r\n<h3>Transition Two</h3>\r\nAfter handing off my bike to a handler, it was off the change tent to put on my running shoes. No need to change clothing because what I wear under my wetsuit is what I ride and run in. Then a quick restock of a few gel packs. <strong>On the way out, volunteers with grass skirts put sunscreen on the runners.</strong> This would be helpful as it was hot, sunny, and getting warm.\r\n<h3><img class=\"alignleft wp-image-143\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"263\" height=\"350\" /><strong class=\"subhead\">The Run</strong></h3>\r\nThe run had over 1100 feet of climbing. Added to the very hilly ride, making this a hard run. There was constant up and down of hills. Tough on already tired legs. Some of the runs went thru the woods on dirt trails, which was good for the legs.\r\n\r\nWe ran around a lake, over a wooden bridge on a pond, and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.\r\n\r\nAt mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegaderm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse.\r\n\r\nThen, at mile five, I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort. The extra weight got transferred laterally to my third and fourth toes. So, I altered my gait and it became a lot easier to run.\r\n\r\nAt this point, it was actually easier to run (mid-foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually, I was able to keep running and push thru it. As my mom always said, \"C\'est al vie\", (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach.\r\n\r\nThe blister pain I just put in the back of my mind and it never got worse. All in all, <strong>I eventually figured out I would not break 14 hours as I had done last year.</strong> But with the big hills on the ride, the hills on the run, and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny, it was quite warm being at 2200 feet. So the ice at the aid stations was a help.\r\n\r\nI just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.\r\n<h3><img class=\"alignleft wp-image-144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"288\" height=\"482\" /><strong class=\"subhead\">The Finish</strong></h3>\r\nAs I got closer to the finish line, all the aches just started to fade away. The last mile or so I just let it all go and ran at a good pace. And as I entered the final turn, the last 150 meters were jammed with the crowds cheering loudly. At this point,<strong> I knew I had made it. All the months of training were worth it.</strong> And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. The final run time was 5:52 with an overall time of 14:18.\r\n<h3><strong class=\"subhead\">Final Thoughts on My Third Ironman:</strong></h3>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus, it is as much a mental challenge, if not more than a physical one.\r\n\r\nI love the quote by Viktor Frankel, MD; Holocaust survivor and world-famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).\r\n\r\n<em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\".</strong></em>\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Dedication:</strong></h3>\r\nAs many of you know, in each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.\r\n\r\nThanks to everyone for inquiring about me and cheering from near and far. I really appreciated all of it and words cannot say thank you enough.\r\n\r\nYour thoughts and well wishes helped me through my third Ironman.\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n[caption id=\"\" align=\"alignleft\" width=\"274\"]<img style=\"padding-left: 5px;\" title=\"My Third Ironman in 2013 Canada\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Third Ironman \" width=\"274\" height=\"358\" /> My Third Ironman Completed[/caption]\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"col-md-4\"><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">01</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">7 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Achieving Higher Goals at My Third Ironman in Canada','','inherit','closed','closed','','131-revision-v1','','','2021-06-03 02:39:27','2021-06-03 02:39:27','',131,'https://www.drfields.com/?p=4691',0,'revision','',0),(4692,9,'2021-06-03 02:40:23','2021-06-03 02:40:23','<h2>Achieving Higher Goals at My Third Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_134\" align=\"alignright\" width=\"497\"]<img class=\"wp-image-134 \" title=\"Third Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"497\" height=\"219\" /> <em>      Sunday, August 25, 2013:     2.4-mile swim, 112-mile bike, 26.2-mile run</em>[/caption]\r\n\r\n</div>\r\n<p class=\"text-center\"></p>\r\n&nbsp;\r\n\r\n<em>Third Ironman Quote for the Day:<strong> One cannot achieve higher goals in life without some struggle.</strong></em>\r\n<div class=\"col-md-8\">\r\n<h3><img class=\"alignleft size-full wp-image-138\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" /><strong class=\"subhead\">Before the Race</strong></h3>\r\nI woke up at 3:30 am so I could have breakfast by 4 am. That way I would have three hours before the start of the race so my food could be properly digested. I already had my gear ready to go plus the two special needs bags for the bike and the run. Then off to the village center to drop off the special needs bags and onto the buses that transported us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.\r\n\r\nWhen we got there it was still dark and about 45 degrees. It was cold! But at least the rain from the previous day had stopped and no more was predicted. Fortunately, I had planned well for the cold.\r\n\r\nThere is always a lot of tension floating around as over 2200 athletes check their gear. Everyone tries their best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\n\r\nThe only thing one brings in the morning is one\'s wetsuit, goggles, and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit, and then down to the waterfront.\r\n<h3><img class=\"alignleft wp-image-140\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"243\" height=\"324\" /><strong class=\"subhead\">The Swim in My Third Ironman</strong></h3>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees. That temperature was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7 am, the gun went off. It would be a long day.\r\n\r\nAs always, I go out fast at the beginning of the swim, since swimming is my best part. I try and get away from the majority of the crowd, and then I try and settle back into a good pace. There were a few turns prior to turning back on the first loop of the two-loop course.\r\n\r\nIt got really jammed and crowded...more jammed than usual, which meant I couldn\'t really get into a good stroke pattern until the second lap. Plus, I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.\r\n\r\n&nbsp;\r\n<h3>Transition One</h3>\r\nI took a bit longer in the change tent as I put on knee warmers, a wind vest, a riding jacket, a skull cap for under my helmet, and longliner gloves over my riding gloves (I get cold easy!!).\r\n<h3><img class=\"alignleft wp-image-142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"251\" height=\"335\" /><strong class=\"subhead\">The Bike</strong></h3>\r\nThen I was off to the 112-mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views were really spectacular.\r\n\r\n<strong>Riding through the crowds was invigorating.</strong> They really cheered us on. I took off my gloves since it was now above 60. Then some uphills and lots of downhills for the next 20 miles.\r\n\r\nAfter that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use.\r\n\r\nI took off the leg warmers, vest, and skull cap, gave them to one of the volunteers along with the empty bottle I had gone thru. She was very surprised but happy, seeing my name on the bottle, and asked if that was me. When I said yes, she said that she had some knee problems and might call me. <strong>Wow, a business referral in an Ironman!</strong> Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.\r\n\r\nThen back to the hills. <strong>The last part from mile 85 to 112, was essentially all uphill.</strong> The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight downhill riding all the way back to town. It was tough on the legs.\r\n\r\nAs we approached the town, the cheering again kept me going. Needless to say, my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than previously in the <a href=\"https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico/\">Cozumel Ironman</a>. But with the hills here I was not disappointed.\r\n<h3>Transition Two</h3>\r\nAfter handing off my bike to a handler, it was off the change tent to put on my running shoes. No need to change clothing because what I wear under my wetsuit is what I ride and run in. Then a quick restock of a few gel packs. <strong>On the way out, volunteers with grass skirts put sunscreen on the runners.</strong> This would be helpful as it was hot, sunny, and getting warm.\r\n<h3><img class=\"alignleft wp-image-143\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"263\" height=\"350\" /><strong class=\"subhead\">The Run</strong></h3>\r\nThe run had over 1100 feet of climbing. Added to the very hilly ride, making this a hard run. There was constant up and down of hills. Tough on already tired legs. Some of the runs went thru the woods on dirt trails, which was good for the legs.\r\n\r\nWe ran around a lake, over a wooden bridge on a pond, and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.\r\n\r\nAt mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegaderm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse.\r\n\r\nThen, at mile five, I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort. The extra weight got transferred laterally to my third and fourth toes. So, I altered my gait and it became a lot easier to run.\r\n\r\nAt this point, it was actually easier to run (mid-foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually, I was able to keep running and push thru it. As my mom always said, \"C\'est al vie\", (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach.\r\n\r\nThe blister pain I just put in the back of my mind and it never got worse. All in all, <strong>I eventually figured out I would not break 14 hours as I had done last year.</strong> But with the big hills on the ride, the hills on the run, and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny, it was quite warm being at 2200 feet. So the ice at the aid stations was a help.\r\n\r\nI just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.\r\n<h3><img class=\"alignleft wp-image-144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"288\" height=\"482\" /><strong class=\"subhead\">The Finish</strong></h3>\r\nAs I got closer to the finish line, all the aches just started to fade away. The last mile or so I just let it all go and ran at a good pace. And as I entered the final turn, the last 150 meters were jammed with the crowds cheering loudly. At this point,<strong> I knew I had made it. All the months of training were worth it.</strong> And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. The final run time was 5:52 with an overall time of 14:18.\r\n<h3><strong class=\"subhead\">Final Thoughts on My Third Ironman:</strong></h3>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus, it is as much a mental challenge, if not more than a physical one.\r\n\r\nI love the quote by Viktor Frankel, MD; Holocaust survivor and world-famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).\r\n\r\n<em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\".</strong></em>\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Dedication:</strong></h3>\r\nAs many of you know, in each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.\r\n\r\nThanks to everyone for inquiring about me and cheering from near and far. I really appreciated all of it and words cannot say thank you enough.\r\n\r\nYour thoughts and well wishes helped me through my third Ironman.\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n[caption id=\"\" align=\"alignleft\" width=\"274\"]<img style=\"padding-left: 5px;\" title=\"My Third Ironman in 2013 Canada\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Third Ironman \" width=\"274\" height=\"358\" /> My Third Ironman Completed[/caption]\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"col-md-4\"><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">01</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">7 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Achieving Higher Goals at My Third Ironman in Canada','','inherit','closed','closed','','131-revision-v1','','','2021-06-03 02:40:23','2021-06-03 02:40:23','',131,'https://www.drfields.com/?p=4692',0,'revision','',0),(4693,9,'2021-06-03 02:41:07','2021-06-03 02:41:07','<h2>Achieving Higher Goals at My Third Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_134\" align=\"alignleft\" width=\"497\"]<img class=\"wp-image-134 \" title=\"Third Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"497\" height=\"219\" /> <em>      Sunday, August 25, 2013:     2.4-mile swim, 112-mile bike, 26.2-mile run</em>[/caption]\r\n\r\n</div>\r\n<em>Third Ironman Quote for the Day:<strong> One cannot achieve higher goals in life without some struggle.</strong></em>\r\n<div class=\"col-md-8\">\r\n<h3><img class=\"alignleft size-full wp-image-138\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" /><strong class=\"subhead\">Before the Race</strong></h3>\r\nI woke up at 3:30 am so I could have breakfast by 4 am. That way I would have three hours before the start of the race so my food could be properly digested. I already had my gear ready to go plus the two special needs bags for the bike and the run. Then off to the village center to drop off the special needs bags and onto the buses that transported us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.\r\n\r\nWhen we got there it was still dark and about 45 degrees. It was cold! But at least the rain from the previous day had stopped and no more was predicted. Fortunately, I had planned well for the cold.\r\n\r\nThere is always a lot of tension floating around as over 2200 athletes check their gear. Everyone tries their best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\n\r\nThe only thing one brings in the morning is one\'s wetsuit, goggles, and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit, and then down to the waterfront.\r\n<h3><img class=\"alignleft wp-image-140\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"243\" height=\"324\" /><strong class=\"subhead\">The Swim in My Third Ironman</strong></h3>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees. That temperature was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7 am, the gun went off. It would be a long day.\r\n\r\nAs always, I go out fast at the beginning of the swim, since swimming is my best part. I try and get away from the majority of the crowd, and then I try and settle back into a good pace. There were a few turns prior to turning back on the first loop of the two-loop course.\r\n\r\nIt got really jammed and crowded...more jammed than usual, which meant I couldn\'t really get into a good stroke pattern until the second lap. Plus, I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.\r\n\r\n&nbsp;\r\n<h3>Transition One</h3>\r\nI took a bit longer in the change tent as I put on knee warmers, a wind vest, a riding jacket, a skull cap for under my helmet, and longliner gloves over my riding gloves (I get cold easy!!).\r\n<h3><img class=\"alignleft wp-image-142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"251\" height=\"335\" /><strong class=\"subhead\">The Bike</strong></h3>\r\nThen I was off to the 112-mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views were really spectacular.\r\n\r\n<strong>Riding through the crowds was invigorating.</strong> They really cheered us on. I took off my gloves since it was now above 60. Then some uphills and lots of downhills for the next 20 miles.\r\n\r\nAfter that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use.\r\n\r\nI took off the leg warmers, vest, and skull cap, gave them to one of the volunteers along with the empty bottle I had gone thru. She was very surprised but happy, seeing my name on the bottle, and asked if that was me. When I said yes, she said that she had some knee problems and might call me. <strong>Wow, a business referral in an Ironman!</strong> Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.\r\n\r\nThen back to the hills. <strong>The last part from mile 85 to 112, was essentially all uphill.</strong> The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight downhill riding all the way back to town. It was tough on the legs.\r\n\r\nAs we approached the town, the cheering again kept me going. Needless to say, my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than previously in the <a href=\"https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico/\">Cozumel Ironman</a>. But with the hills here I was not disappointed.\r\n<h3>Transition Two</h3>\r\nAfter handing off my bike to a handler, it was off the change tent to put on my running shoes. No need to change clothing because what I wear under my wetsuit is what I ride and run in. Then a quick restock of a few gel packs. <strong>On the way out, volunteers with grass skirts put sunscreen on the runners.</strong> This would be helpful as it was hot, sunny, and getting warm.\r\n<h3><img class=\"alignleft wp-image-143\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"263\" height=\"350\" /><strong class=\"subhead\">The Run</strong></h3>\r\nThe run had over 1100 feet of climbing. Added to the very hilly ride, making this a hard run. There was constant up and down of hills. Tough on already tired legs. Some of the runs went thru the woods on dirt trails, which was good for the legs.\r\n\r\nWe ran around a lake, over a wooden bridge on a pond, and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.\r\n\r\nAt mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegaderm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse.\r\n\r\nThen, at mile five, I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort. The extra weight got transferred laterally to my third and fourth toes. So, I altered my gait and it became a lot easier to run.\r\n\r\nAt this point, it was actually easier to run (mid-foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually, I was able to keep running and push thru it. As my mom always said, \"C\'est al vie\", (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach.\r\n\r\nThe blister pain I just put in the back of my mind and it never got worse. All in all, <strong>I eventually figured out I would not break 14 hours as I had done last year.</strong> But with the big hills on the ride, the hills on the run, and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny, it was quite warm being at 2200 feet. So the ice at the aid stations was a help.\r\n\r\nI just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.\r\n<h3><img class=\"alignleft wp-image-144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"288\" height=\"482\" /><strong class=\"subhead\">The Finish</strong></h3>\r\nAs I got closer to the finish line, all the aches just started to fade away. The last mile or so I just let it all go and ran at a good pace. And as I entered the final turn, the last 150 meters were jammed with the crowds cheering loudly. At this point,<strong> I knew I had made it. All the months of training were worth it.</strong> And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. The final run time was 5:52 with an overall time of 14:18.\r\n<h3><strong class=\"subhead\">Final Thoughts on My Third Ironman:</strong></h3>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus, it is as much a mental challenge, if not more than a physical one.\r\n\r\nI love the quote by Viktor Frankel, MD; Holocaust survivor and world-famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).\r\n\r\n<em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\".</strong></em>\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Dedication:</strong></h3>\r\nAs many of you know, in each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.\r\n\r\nThanks to everyone for inquiring about me and cheering from near and far. I really appreciated all of it and words cannot say thank you enough.\r\n\r\nYour thoughts and well wishes helped me through my third Ironman.\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n[caption id=\"\" align=\"alignleft\" width=\"274\"]<img style=\"padding-left: 5px;\" title=\"My Third Ironman in 2013 Canada\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Third Ironman \" width=\"274\" height=\"358\" /> My Third Ironman Completed[/caption]\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"col-md-4\"><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">01</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">7 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Achieving Higher Goals at My Third Ironman in Canada','','inherit','closed','closed','','131-revision-v1','','','2021-06-03 02:41:07','2021-06-03 02:41:07','',131,'https://www.drfields.com/?p=4693',0,'revision','',0),(4694,9,'2021-06-03 02:42:08','2021-06-03 02:42:08','<h2>Achieving Higher Goals at My Third Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_134\" align=\"alignleft\" width=\"497\"]<img class=\"wp-image-134 \" title=\"Third Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"497\" height=\"219\" /> <em>  Sunday, August 25, 2013:     2.4-mile swim, 112-mile bike, 26.2-mile run</em>[/caption]\r\n\r\n</div>\r\n<h3><em>Third Ironman Quote for the Day:<strong> \"One cannot achieve higher goals in life without some struggle.\"</strong></em></h3>\r\n<div class=\"col-md-8\">\r\n<h3><img class=\"alignleft size-full wp-image-138\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" /><strong class=\"subhead\">Before the Race</strong></h3>\r\nI woke up at 3:30 am so I could have breakfast by 4 am. That way I would have three hours before the start of the race so my food could be properly digested. I already had my gear ready to go plus the two special needs bags for the bike and the run. Then off to the village center to drop off the special needs bags and onto the buses that transported us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.\r\n\r\nWhen we got there it was still dark and about 45 degrees. It was cold! But at least the rain from the previous day had stopped and no more was predicted. Fortunately, I had planned well for the cold.\r\n\r\nThere is always a lot of tension floating around as over 2200 athletes check their gear. Everyone tries their best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\n\r\nThe only thing one brings in the morning is one\'s wetsuit, goggles, and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit, and then down to the waterfront.\r\n<h3><img class=\"alignleft wp-image-140\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"243\" height=\"324\" /><strong class=\"subhead\">The Swim in My Third Ironman</strong></h3>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees. That temperature was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7 am, the gun went off. It would be a long day.\r\n\r\nAs always, I go out fast at the beginning of the swim, since swimming is my best part. I try and get away from the majority of the crowd, and then I try and settle back into a good pace. There were a few turns prior to turning back on the first loop of the two-loop course.\r\n\r\nIt got really jammed and crowded...more jammed than usual, which meant I couldn\'t really get into a good stroke pattern until the second lap. Plus, I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.\r\n\r\n&nbsp;\r\n<h3>Transition One</h3>\r\nI took a bit longer in the change tent as I put on knee warmers, a wind vest, a riding jacket, a skull cap for under my helmet, and longliner gloves over my riding gloves (I get cold easy!!).\r\n<h3><img class=\"alignleft wp-image-142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"251\" height=\"335\" /><strong class=\"subhead\">The Bike</strong></h3>\r\nThen I was off to the 112-mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views were really spectacular.\r\n\r\n<strong>Riding through the crowds was invigorating.</strong> They really cheered us on. I took off my gloves since it was now above 60. Then some uphills and lots of downhills for the next 20 miles.\r\n\r\nAfter that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use.\r\n\r\nI took off the leg warmers, vest, and skull cap, gave them to one of the volunteers along with the empty bottle I had gone thru. She was very surprised but happy, seeing my name on the bottle, and asked if that was me. When I said yes, she said that she had some knee problems and might call me. <strong>Wow, a business referral in an Ironman!</strong> Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.\r\n\r\nThen back to the hills. <strong>The last part from mile 85 to 112, was essentially all uphill.</strong> The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight downhill riding all the way back to town. It was tough on the legs.\r\n\r\nAs we approached the town, the cheering again kept me going. Needless to say, my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than previously in the <a href=\"https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico/\">Cozumel Ironman</a>. But with the hills here I was not disappointed.\r\n<h3>Transition Two</h3>\r\nAfter handing off my bike to a handler, it was off the change tent to put on my running shoes. No need to change clothing because what I wear under my wetsuit is what I ride and run in. Then a quick restock of a few gel packs. <strong>On the way out, volunteers with grass skirts put sunscreen on the runners.</strong> This would be helpful as it was hot, sunny, and getting warm.\r\n<h3><img class=\"alignleft wp-image-143\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"263\" height=\"350\" /><strong class=\"subhead\">The Run</strong></h3>\r\nThe run had over 1100 feet of climbing. Added to the very hilly ride, making this a hard run. There was constant up and down of hills. Tough on already tired legs. Some of the runs went thru the woods on dirt trails, which was good for the legs.\r\n\r\nWe ran around a lake, over a wooden bridge on a pond, and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.\r\n\r\nAt mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegaderm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse.\r\n\r\nThen, at mile five, I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort. The extra weight got transferred laterally to my third and fourth toes. So, I altered my gait and it became a lot easier to run.\r\n\r\nAt this point, it was actually easier to run (mid-foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually, I was able to keep running and push thru it. As my mom always said, \"C\'est al vie\", (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach.\r\n\r\nThe blister pain I just put in the back of my mind and it never got worse. All in all, <strong>I eventually figured out I would not break 14 hours as I had done last year.</strong> But with the big hills on the ride, the hills on the run, and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny, it was quite warm being at 2200 feet. So the ice at the aid stations was a help.\r\n\r\nI just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.\r\n<h3><img class=\"alignleft wp-image-144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"288\" height=\"482\" /><strong class=\"subhead\">The Finish</strong></h3>\r\nAs I got closer to the finish line, all the aches just started to fade away. The last mile or so I just let it all go and ran at a good pace. And as I entered the final turn, the last 150 meters were jammed with the crowds cheering loudly. At this point,<strong> I knew I had made it. All the months of training were worth it.</strong> And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. The final run time was 5:52 with an overall time of 14:18.\r\n<h3><strong class=\"subhead\">Final Thoughts on My Third Ironman:</strong></h3>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus, it is as much a mental challenge, if not more than a physical one.\r\n\r\nI love the quote by Viktor Frankel, MD; Holocaust survivor and world-famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).\r\n\r\n<em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\".</strong></em>\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Dedication:</strong></h3>\r\nAs many of you know, in each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.\r\n\r\nThanks to everyone for inquiring about me and cheering from near and far. I really appreciated all of it and words cannot say thank you enough.\r\n\r\nYour thoughts and well wishes helped me through my third Ironman.\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n[caption id=\"\" align=\"alignleft\" width=\"274\"]<img style=\"padding-left: 5px;\" title=\"My Third Ironman in 2013 Canada\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Third Ironman \" width=\"274\" height=\"358\" /> My Third Ironman Completed[/caption]\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"col-md-4\"><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">01</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">7 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Achieving Higher Goals at My Third Ironman in Canada','','inherit','closed','closed','','131-revision-v1','','','2021-06-03 02:42:08','2021-06-03 02:42:08','',131,'https://www.drfields.com/?p=4694',0,'revision','',0),(4695,9,'2021-06-03 02:43:42','2021-06-03 02:43:42','<h2>Achieving Higher Goals at My Third Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_134\" align=\"alignleft\" width=\"497\"]<img class=\"wp-image-134 \" title=\"Third Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"497\" height=\"219\" /> <em> Sunday, August 25, 2013:     2.4-mile swim, 112-mile bike, 26.2-mile run</em>[/caption]\r\n\r\n</div>\r\n<h3><em>Third Ironman Quote:<strong> \"One cannot achieve higher goals in life without some struggle.\"</strong></em></h3>\r\n<div class=\"col-md-8\">\r\n<h3><img class=\"alignleft size-full wp-image-138\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" /><strong class=\"subhead\">Before the Race</strong></h3>\r\nI woke up at 3:30 am so I could have breakfast by 4 am. That way I would have three hours before the start of the race so my food could be properly digested. I already had my gear ready to go plus the two special needs bags for the bike and the run. Then off to the village center to drop off the special needs bags and onto the buses that transported us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.\r\n\r\nWhen we got there it was still dark and about 45 degrees. It was cold! But at least the rain from the previous day had stopped and no more was predicted. Fortunately, I had planned well for the cold.\r\n\r\nThere is always a lot of tension floating around as over 2200 athletes check their gear. Everyone tries their best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\n\r\nThe only thing one brings in the morning is one\'s wetsuit, goggles, and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit, and then down to the waterfront.\r\n<h3><img class=\"alignleft wp-image-140\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"243\" height=\"324\" /><strong class=\"subhead\">The Swim in My Third Ironman</strong></h3>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees. That temperature was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7 am, the gun went off. It would be a long day.\r\n\r\nAs always, I go out fast at the beginning of the swim, since swimming is my best part. I try and get away from the majority of the crowd, and then I try and settle back into a good pace. There were a few turns prior to turning back on the first loop of the two-loop course.\r\n\r\nIt got really jammed and crowded...more jammed than usual, which meant I couldn\'t really get into a good stroke pattern until the second lap. Plus, I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.\r\n\r\n&nbsp;\r\n<h3>Transition One</h3>\r\nI took a bit longer in the change tent as I put on knee warmers, a wind vest, a riding jacket, a skull cap for under my helmet, and longliner gloves over my riding gloves (I get cold easy!!).\r\n<h3><img class=\"alignleft wp-image-142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"251\" height=\"335\" /><strong class=\"subhead\">The Bike</strong></h3>\r\nThen I was off to the 112-mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views were really spectacular.\r\n\r\n<strong>Riding through the crowds was invigorating.</strong> They really cheered us on. I took off my gloves since it was now above 60. Then some uphills and lots of downhills for the next 20 miles.\r\n\r\nAfter that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use.\r\n\r\nI took off the leg warmers, vest, and skull cap, gave them to one of the volunteers along with the empty bottle I had gone thru. She was very surprised but happy, seeing my name on the bottle, and asked if that was me. When I said yes, she said that she had some knee problems and might call me. <strong>Wow, a business referral in an Ironman!</strong> Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.\r\n\r\nThen back to the hills. <strong>The last part from mile 85 to 112, was essentially all uphill.</strong> The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight downhill riding all the way back to town. It was tough on the legs.\r\n\r\nAs we approached the town, the cheering again kept me going. Needless to say, my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than previously in the <a href=\"https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico/\">Cozumel Ironman</a>. But with the hills here I was not disappointed.\r\n<h3>Transition Two</h3>\r\nAfter handing off my bike to a handler, it was off the change tent to put on my running shoes. No need to change clothing because what I wear under my wetsuit is what I ride and run in. Then a quick restock of a few gel packs. <strong>On the way out, volunteers with grass skirts put sunscreen on the runners.</strong> This would be helpful as it was hot, sunny, and getting warm.\r\n<h3><img class=\"alignleft wp-image-143\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"263\" height=\"350\" /><strong class=\"subhead\">The Run</strong></h3>\r\nThe run had over 1100 feet of climbing. Added to the very hilly ride, making this a hard run. There was constant up and down of hills. Tough on already tired legs. Some of the runs went thru the woods on dirt trails, which was good for the legs.\r\n\r\nWe ran around a lake, over a wooden bridge on a pond, and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.\r\n\r\nAt mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegaderm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse.\r\n\r\nThen, at mile five, I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort. The extra weight got transferred laterally to my third and fourth toes. So, I altered my gait and it became a lot easier to run.\r\n\r\nAt this point, it was actually easier to run (mid-foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually, I was able to keep running and push thru it. As my mom always said, \"C\'est al vie\", (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach.\r\n\r\nThe blister pain I just put in the back of my mind and it never got worse. All in all, <strong>I eventually figured out I would not break 14 hours as I had done last year.</strong> But with the big hills on the ride, the hills on the run, and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny, it was quite warm being at 2200 feet. So the ice at the aid stations was a help.\r\n\r\nI just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.\r\n<h3><img class=\"alignleft wp-image-144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"288\" height=\"482\" /><strong class=\"subhead\">The Finish</strong></h3>\r\nAs I got closer to the finish line, all the aches just started to fade away. The last mile or so I just let it all go and ran at a good pace. And as I entered the final turn, the last 150 meters were jammed with the crowds cheering loudly. At this point,<strong> I knew I had made it. All the months of training were worth it.</strong> And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. The final run time was 5:52 with an overall time of 14:18.\r\n<h3><strong class=\"subhead\">Final Thoughts on My Third Ironman:</strong></h3>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus, it is as much a mental challenge, if not more than a physical one.\r\n\r\nI love the quote by Viktor Frankel, MD; Holocaust survivor and world-famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).\r\n\r\n<em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\".</strong></em>\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Dedication:</strong></h3>\r\nAs many of you know, in each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.\r\n\r\nThanks to everyone for inquiring about me and cheering from near and far. I really appreciated all of it and words cannot say thank you enough.\r\n\r\nYour thoughts and well wishes helped me through my third Ironman.\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n[caption id=\"\" align=\"alignleft\" width=\"274\"]<img style=\"padding-left: 5px;\" title=\"My Third Ironman in 2013 Canada\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Third Ironman \" width=\"274\" height=\"358\" /> My Third Ironman Completed[/caption]\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"col-md-4\"><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">01</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">7 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Achieving Higher Goals at My Third Ironman in Canada','','inherit','closed','closed','','131-revision-v1','','','2021-06-03 02:43:42','2021-06-03 02:43:42','',131,'https://www.drfields.com/?p=4695',0,'revision','',0),(4696,9,'2021-06-03 02:44:18','2021-06-03 02:44:18','<h2>Achieving Higher Goals at My Third Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_134\" align=\"alignleft\" width=\"528\"]<img class=\"wp-image-134 \" title=\"Third Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"528\" height=\"233\" /> <em> Sunday, August 25, 2013:     2.4-mile swim, 112-mile bike, 26.2-mile run</em>[/caption]\r\n\r\n</div>\r\n<h3><em>Third Ironman Quote:<strong> \"One cannot achieve higher goals in life without some struggle.\"</strong></em></h3>\r\n<div class=\"col-md-8\">\r\n<h3><img class=\"alignleft size-full wp-image-138\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" /><strong class=\"subhead\">Before the Race</strong></h3>\r\nI woke up at 3:30 am so I could have breakfast by 4 am. That way I would have three hours before the start of the race so my food could be properly digested. I already had my gear ready to go plus the two special needs bags for the bike and the run. Then off to the village center to drop off the special needs bags and onto the buses that transported us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.\r\n\r\nWhen we got there it was still dark and about 45 degrees. It was cold! But at least the rain from the previous day had stopped and no more was predicted. Fortunately, I had planned well for the cold.\r\n\r\nThere is always a lot of tension floating around as over 2200 athletes check their gear. Everyone tries their best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\n\r\nThe only thing one brings in the morning is one\'s wetsuit, goggles, and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit, and then down to the waterfront.\r\n<h3><img class=\"alignleft wp-image-140\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"243\" height=\"324\" /><strong class=\"subhead\">The Swim in My Third Ironman</strong></h3>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees. That temperature was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7 am, the gun went off. It would be a long day.\r\n\r\nAs always, I go out fast at the beginning of the swim, since swimming is my best part. I try and get away from the majority of the crowd, and then I try and settle back into a good pace. There were a few turns prior to turning back on the first loop of the two-loop course.\r\n\r\nIt got really jammed and crowded...more jammed than usual, which meant I couldn\'t really get into a good stroke pattern until the second lap. Plus, I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.\r\n\r\n&nbsp;\r\n<h3>Transition One</h3>\r\nI took a bit longer in the change tent as I put on knee warmers, a wind vest, a riding jacket, a skull cap for under my helmet, and longliner gloves over my riding gloves (I get cold easy!!).\r\n<h3><img class=\"alignleft wp-image-142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"251\" height=\"335\" /><strong class=\"subhead\">The Bike</strong></h3>\r\nThen I was off to the 112-mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views were really spectacular.\r\n\r\n<strong>Riding through the crowds was invigorating.</strong> They really cheered us on. I took off my gloves since it was now above 60. Then some uphills and lots of downhills for the next 20 miles.\r\n\r\nAfter that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use.\r\n\r\nI took off the leg warmers, vest, and skull cap, gave them to one of the volunteers along with the empty bottle I had gone thru. She was very surprised but happy, seeing my name on the bottle, and asked if that was me. When I said yes, she said that she had some knee problems and might call me. <strong>Wow, a business referral in an Ironman!</strong> Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.\r\n\r\nThen back to the hills. <strong>The last part from mile 85 to 112, was essentially all uphill.</strong> The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight downhill riding all the way back to town. It was tough on the legs.\r\n\r\nAs we approached the town, the cheering again kept me going. Needless to say, my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than previously in the <a href=\"https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico/\">Cozumel Ironman</a>. But with the hills here I was not disappointed.\r\n<h3>Transition Two</h3>\r\nAfter handing off my bike to a handler, it was off the change tent to put on my running shoes. No need to change clothing because what I wear under my wetsuit is what I ride and run in. Then a quick restock of a few gel packs. <strong>On the way out, volunteers with grass skirts put sunscreen on the runners.</strong> This would be helpful as it was hot, sunny, and getting warm.\r\n<h3><img class=\"alignleft wp-image-143\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"263\" height=\"350\" /><strong class=\"subhead\">The Run</strong></h3>\r\nThe run had over 1100 feet of climbing. Added to the very hilly ride, making this a hard run. There was constant up and down of hills. Tough on already tired legs. Some of the runs went thru the woods on dirt trails, which was good for the legs.\r\n\r\nWe ran around a lake, over a wooden bridge on a pond, and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.\r\n\r\nAt mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegaderm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse.\r\n\r\nThen, at mile five, I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort. The extra weight got transferred laterally to my third and fourth toes. So, I altered my gait and it became a lot easier to run.\r\n\r\nAt this point, it was actually easier to run (mid-foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually, I was able to keep running and push thru it. As my mom always said, \"C\'est al vie\", (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach.\r\n\r\nThe blister pain I just put in the back of my mind and it never got worse. All in all, <strong>I eventually figured out I would not break 14 hours as I had done last year.</strong> But with the big hills on the ride, the hills on the run, and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny, it was quite warm being at 2200 feet. So the ice at the aid stations was a help.\r\n\r\nI just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.\r\n<h3><img class=\"alignleft wp-image-144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"288\" height=\"482\" /><strong class=\"subhead\">The Finish</strong></h3>\r\nAs I got closer to the finish line, all the aches just started to fade away. The last mile or so I just let it all go and ran at a good pace. And as I entered the final turn, the last 150 meters were jammed with the crowds cheering loudly. At this point,<strong> I knew I had made it. All the months of training were worth it.</strong> And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. The final run time was 5:52 with an overall time of 14:18.\r\n<h3><strong class=\"subhead\">Final Thoughts on My Third Ironman:</strong></h3>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus, it is as much a mental challenge, if not more than a physical one.\r\n\r\nI love the quote by Viktor Frankel, MD; Holocaust survivor and world-famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).\r\n\r\n<em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\".</strong></em>\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Dedication:</strong></h3>\r\nAs many of you know, in each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.\r\n\r\nThanks to everyone for inquiring about me and cheering from near and far. I really appreciated all of it and words cannot say thank you enough.\r\n\r\nYour thoughts and well wishes helped me through my third Ironman.\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n[caption id=\"\" align=\"alignleft\" width=\"274\"]<img style=\"padding-left: 5px;\" title=\"My Third Ironman in 2013 Canada\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Third Ironman \" width=\"274\" height=\"358\" /> My Third Ironman Completed[/caption]\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"col-md-4\"><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">01</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">7 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Achieving Higher Goals at My Third Ironman in Canada','','inherit','closed','closed','','131-revision-v1','','','2021-06-03 02:44:18','2021-06-03 02:44:18','',131,'https://www.drfields.com/?p=4696',0,'revision','',0),(4697,9,'2021-06-03 02:45:53','2021-06-03 02:45:53','<h2>Achieving Higher Goals at My Third Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_134\" align=\"alignleft\" width=\"528\"]<img class=\"wp-image-134 \" title=\"Third Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"528\" height=\"233\" /> <em> Sunday, August 25, 2013:     2.4-mile swim, 112-mile bike, 26.2-mile run</em>[/caption]\r\n\r\n</div>\r\n<h3><em>Third Ironman Quote:<strong> \"One cannot achieve higher goals in life without some struggle.\"</strong></em></h3>\r\n<div class=\"col-md-8\">\r\n<h3><img class=\"alignleft size-full wp-image-138\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" /><strong class=\"subhead\">Before the Race</strong></h3>\r\nI woke up at 3:30 am so I could have breakfast by 4 am. That way I would have three hours before the start of the race so my food could be properly digested. I already had my gear ready to go plus the two special needs bags for the bike and the run. Then off to the village center to drop off the special needs bags and onto the buses that transported us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.\r\n\r\nWhen we got there it was still dark and about 45 degrees. It was cold! But at least the rain from the previous day had stopped and no more was predicted. Fortunately, I had planned well for the cold.\r\n\r\nThere is always a lot of tension floating around as over 2200 athletes check their gear. Everyone tries their best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\n\r\nThe only thing one brings in the morning is one\'s wetsuit, goggles, and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit, and then down to the waterfront.\r\n<h3><img class=\"alignleft wp-image-140\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"243\" height=\"324\" /><strong class=\"subhead\">The Swim in My Third Ironman</strong></h3>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees. That temperature was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7 am, the gun went off. It would be a long day.\r\n\r\nAs always, I go out fast at the beginning of the swim, since swimming is my best part. I try and get away from the majority of the crowd, and then I try and settle back into a good pace. There were a few turns prior to turning back on the first loop of the two-loop course.\r\n\r\nIt got really jammed and crowded...more jammed than usual, which meant I couldn\'t really get into a good stroke pattern until the second lap. Plus, I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.\r\n<h3>Transition One</h3>\r\nI took a bit longer in the change tent as I put on knee warmers, a wind vest, a riding jacket, a skull cap for under my helmet, and longliner gloves over my riding gloves (I get cold easy!!).\r\n<h3><img class=\"alignleft wp-image-142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"251\" height=\"335\" /><strong class=\"subhead\">The Bike</strong></h3>\r\nThen I was off to the 112-mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views were really spectacular.\r\n\r\n<strong>Riding through the crowds was invigorating.</strong> They really cheered us on. I took off my gloves since it was now above 60. Then some uphills and lots of downhills for the next 20 miles.\r\n\r\nAfter that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use.\r\n\r\nI took off the leg warmers, vest, and skull cap, gave them to one of the volunteers along with the empty bottle I had gone thru. She was very surprised but happy, seeing my name on the bottle, and asked if that was me. When I said yes, she said that she had some knee problems and might call me. <strong>Wow, a business referral in an Ironman!</strong> Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.\r\n\r\nThen back to the hills. <strong>The last part from mile 85 to 112, was essentially all uphill.</strong> The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight downhill riding all the way back to town. It was tough on the legs.\r\n\r\nAs we approached the town, the cheering again kept me going. Needless to say, my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than previously in the <a href=\"https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico/\">Cozumel Ironman</a>. But with the hills here I was not disappointed.\r\n<h3>Transition Two</h3>\r\nAfter handing off my bike to a handler, it was off the change tent to put on my running shoes. No need to change clothing because what I wear under my wetsuit is what I ride and run in. Then a quick restock of a few gel packs. <strong>On the way out, volunteers with grass skirts put sunscreen on the runners.</strong> This would be helpful as it was hot, sunny, and getting warm.\r\n<h3><img class=\"alignleft wp-image-143\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"263\" height=\"350\" /><strong class=\"subhead\">The Run</strong></h3>\r\nThe run had over 1100 feet of climbing. Added to the very hilly ride, making this a hard run. There was constant up and down of hills. Tough on already tired legs. Some of the runs went thru the woods on dirt trails, which was good for the legs.\r\n\r\nWe ran around a lake, over a wooden bridge on a pond, and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.\r\n\r\nAt mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegaderm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse.\r\n\r\nThen, at mile five, I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort. The extra weight got transferred laterally to my third and fourth toes. So, I altered my gait and it became a lot easier to run.\r\n\r\nAt this point, it was actually easier to run (mid-foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually, I was able to keep running and push thru it. As my mom always said, \"C\'est al vie\", (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach.\r\n\r\nThe blister pain I just put in the back of my mind and it never got worse. All in all, <strong>I eventually figured out I would not break 14 hours as I had done last year.</strong> But with the big hills on the ride, the hills on the run, and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny, it was quite warm being at 2200 feet. So the ice at the aid stations was a help.\r\n\r\nI just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.\r\n<h3><img class=\"alignleft wp-image-144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"288\" height=\"482\" /><strong class=\"subhead\">The Finish</strong></h3>\r\nAs I got closer to the finish line, all the aches just started to fade away. The last mile or so I just let it all go and ran at a good pace. And as I entered the final turn, the last 150 meters were jammed with the crowds cheering loudly. At this point,<strong> I knew I had made it. All the months of training were worth it.</strong> And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. The final run time was 5:52 with an overall time of 14:18.\r\n<h3><strong class=\"subhead\">Final Thoughts on My Third Ironman:</strong></h3>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus, it is as much a mental challenge, if not more than a physical one.\r\n\r\nI love the quote by Viktor Frankel, MD; Holocaust survivor and world-famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).\r\n\r\n<em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\".</strong></em>\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Dedication:</strong></h3>\r\nAs many of you know, in each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.\r\n\r\nThanks to everyone for inquiring about me and cheering from near and far. I really appreciated all of it and words cannot say thank you enough.\r\n\r\nYour thoughts and well wishes helped me through my third Ironman.\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n[caption id=\"\" align=\"alignleft\" width=\"274\"]<img style=\"padding-left: 5px;\" title=\"My Third Ironman in 2013 Canada\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Third Ironman \" width=\"274\" height=\"358\" /> My Third Ironman Completed[/caption]\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"col-md-4\"><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">01</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">7 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Achieving Higher Goals at My Third Ironman in Canada','','inherit','closed','closed','','131-revision-v1','','','2021-06-03 02:45:53','2021-06-03 02:45:53','',131,'https://www.drfields.com/?p=4697',0,'revision','',0),(4698,9,'2021-06-03 02:46:50','2021-06-03 02:46:50','<h2>Achieving Higher Goals at My Third Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_134\" align=\"alignleft\" width=\"528\"]<img class=\"wp-image-134 \" title=\"Third Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"528\" height=\"233\" /> <em> Sunday, August 25, 2013:     2.4-mile swim, 112-mile bike, 26.2-mile run</em>[/caption]\r\n\r\n</div>\r\n<h3><em>Third Ironman Quote:<strong> \"One cannot achieve higher goals in life without some struggle.\"</strong></em></h3>\r\n<div class=\"col-md-8\">\r\n<h3><img class=\"alignleft size-full wp-image-138\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" /><strong class=\"subhead\">Before the Race</strong></h3>\r\nI woke up at 3:30 am so I could have breakfast by 4 am. That way I would have three hours before the start of the race so my food could be properly digested. I already had my gear ready to go plus the two special needs bags for the bike and the run. Then off to the village center to drop off the special needs bags and onto the buses that transported us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.\r\n\r\nWhen we got there it was still dark and about 45 degrees. It was cold! But at least the rain from the previous day had stopped and no more was predicted. Fortunately, I had planned well for the cold.\r\n\r\nThere is always a lot of tension floating around as over 2200 athletes check their gear. Everyone tries their best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\n\r\nThe only thing one brings in the morning is one\'s wetsuit, goggles, and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit, and then down to the waterfront.\r\n<h3><img class=\"alignleft wp-image-140\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"243\" height=\"324\" /><strong class=\"subhead\">The Swim in My Third Ironman</strong></h3>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees. That temperature was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7 am, the gun went off. It would be a long day.\r\n\r\nAs always, I go out fast at the beginning of the swim, since swimming is my best part. I try and get away from the majority of the crowd, and then I try and settle back into a good pace. There were a few turns prior to turning back on the first loop of the two-loop course.\r\n\r\nIt got really jammed and crowded...more jammed than usual, which meant I couldn\'t really get into a good stroke pattern until the second lap. Plus, I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.\r\n<h3>Transition One</h3>\r\nI took a bit longer in the change tent as I put on knee warmers, a wind vest, a riding jacket, a skull cap for under my helmet, and longliner gloves over my riding gloves (I get cold easy!!).\r\n<h3><img class=\"alignleft wp-image-142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"251\" height=\"335\" /><strong class=\"subhead\">The Bike</strong></h3>\r\nThen I was off to the 112-mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views were really spectacular.\r\n\r\n<strong>Riding through the crowds was invigorating.</strong> They really cheered us on. I took off my gloves since it was now above 60. Then some uphills and lots of downhills for the next 20 miles.\r\n\r\nAfter that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use.\r\n\r\nI took off the leg warmers, vest, and skull cap, gave them to one of the volunteers along with the empty bottle I had gone thru. She was very surprised but happy, seeing my name on the bottle, and asked if that was me. When I said yes, she said that she had some knee problems and might call me. <strong>Wow, a business referral in an Ironman!</strong> Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.\r\n\r\nThen back to the hills. <strong>The last part from mile 85 to 112, was essentially all uphill.</strong> The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight downhill riding all the way back to town. It was tough on the legs.\r\n\r\nAs we approached the town, the cheering again kept me going. Needless to say, my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than previously in the <a href=\"https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico/\">Cozumel Ironman</a>. But with the hills here I was not disappointed.\r\n<h3>Transition Two</h3>\r\nAfter handing off my bike to a handler, it was off the change tent to put on my running shoes. No need to change clothing because what I wear under my wetsuit is what I ride and run in. Then a quick restock of a few gel packs. <strong>On the way out, volunteers with grass skirts put sunscreen on the runners.</strong> This would be helpful as it was hot, sunny, and getting warm.\r\n<h3><img class=\"alignleft wp-image-143\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"263\" height=\"350\" /><strong class=\"subhead\">The Run</strong></h3>\r\nThe run had over 1100 feet of climbing. Added to the very hilly ride, making this a hard run. There was constant up and down of hills. Tough on already tired legs. Some of the runs went thru the woods on dirt trails, which was good for the legs.\r\n\r\nWe ran around a lake, over a wooden bridge on a pond, and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.\r\n\r\nAt mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegaderm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse.\r\n\r\nThen, at mile five, I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort. The extra weight got transferred laterally to my third and fourth toes. So, I altered my gait and it became a lot easier to run.\r\n\r\nAt this point, it was actually easier to run (mid-foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually, I was able to keep running and push thru it. As my mom always said, \"C\'est al vie\", (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach.\r\n\r\nThe blister pain I just put in the back of my mind and it never got worse. All in all, <strong>I eventually figured out I would not break 14 hours as I had done last year.</strong> But with the big hills on the ride, the hills on the run, and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny, it was quite warm being at 2200 feet. So the ice at the aid stations was a help.\r\n\r\nI just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.\r\n<h3><img class=\"alignleft wp-image-144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"288\" height=\"482\" /><strong class=\"subhead\">The Finish</strong></h3>\r\nAs I got closer to the finish line, all the aches just started to fade away. The last mile or so I just let it all go and ran at a good pace. And as I entered the final turn, the last 150 meters were jammed with the crowds cheering loudly. At this point,<strong> I knew I had made it. All the months of training were worth it.</strong> And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. The final run time was 5:52 with an overall time of 14:18.\r\n<h3><strong class=\"subhead\">Final Thoughts on My Third Ironman:</strong></h3>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus, it is as much a mental challenge, if not more than a physical one.\r\n\r\nI love the quote by Viktor Frankel, MD; Holocaust survivor and world-famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).\r\n\r\n<em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\".</strong></em>\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Dedication:</strong></h3>\r\nAs many of you know, in each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.\r\n\r\nThanks to everyone for inquiring about me and cheering from near and far. I really appreciated all of it and words cannot say thank you enough.\r\n\r\nYour thoughts and well wishes helped me through my third Ironman.\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n[caption id=\"\" align=\"alignleft\" width=\"274\"]<img style=\"padding-left: 5px;\" title=\"My Third Ironman in 2013 Canada\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Third Ironman \" width=\"274\" height=\"358\" />         My Third Ironman Completed[/caption]\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"col-md-4\"><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">01</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">7 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Achieving Higher Goals at My Third Ironman in Canada','','inherit','closed','closed','','131-revision-v1','','','2021-06-03 02:46:50','2021-06-03 02:46:50','',131,'https://www.drfields.com/?p=4698',0,'revision','',0),(4699,9,'2021-06-03 02:47:55','2021-06-03 02:47:55','<h2>Achieving Higher Goals at My Third Ironman</h2>\r\n<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_134\" align=\"alignleft\" width=\"528\"]<img class=\"wp-image-134 \" title=\"Third Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg\" alt=\"Ironman Canada Logo\" width=\"528\" height=\"233\" /> <em> Sunday, August 25, 2013:     2.4-mile swim, 112-mile bike, 26.2-mile run</em>[/caption]\r\n\r\n</div>\r\n<h3><em>Third Ironman Quote:<strong> \"One cannot achieve higher goals in life without some struggle.\"</strong></em></h3>\r\n<div class=\"col-md-8\">\r\n<h3><img class=\"alignleft size-full wp-image-138\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg\" alt=\"Cozumel 2013 Pre Race\" width=\"160\" height=\"213\" /><strong class=\"subhead\">Before the Race</strong></h3>\r\nI woke up at 3:30 am so I could have breakfast by 4 am. That way I would have three hours before the start of the race so my food could be properly digested. I already had my gear ready to go plus the two special needs bags for the bike and the run. Then off to the village center to drop off the special needs bags and onto the buses that transported us to the swim start. Since the swim is held in a lake and there is limited road access, only Ironman official vehicles would have access to the lake.\r\n\r\nWhen we got there it was still dark and about 45 degrees. It was cold! But at least the rain from the previous day had stopped and no more was predicted. Fortunately, I had planned well for the cold.\r\n\r\nThere is always a lot of tension floating around as over 2200 athletes check their gear. Everyone tries their best to keep calm. We had left our bikes down there the day before as well as all our biking clothes and nutrition. The running gear and run nutrition was left at transition area 2 (T2) which is in town where the bike ride ends. This too was done the day before.\r\n\r\nThe only thing one brings in the morning is one\'s wetsuit, goggles, and cap along with whatever water/nutrition you take prior to the race. After pumping up my tires, it was on with the wetsuit, and then down to the waterfront.\r\n<h3><img class=\"alignleft wp-image-140\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg\" alt=\"Cozumel 2013 Swim\" width=\"243\" height=\"324\" /><strong class=\"subhead\">The Swim in My Third Ironman</strong></h3>\r\nThe lake is surrounded by mountains and the water temperature was about 68 degrees. That temperature was comfortable with a wetsuit on. All 2200 of us swam out about 50 yards and began treading water for about 10-15 minutes. At exactly 7 am, the gun went off. It would be a long day.\r\n\r\nAs always, I go out fast at the beginning of the swim, since swimming is my best part. I try and get away from the majority of the crowd, and then I try and settle back into a good pace. There were a few turns prior to turning back on the first loop of the two-loop course.\r\n\r\nIt got really jammed and crowded...more jammed than usual, which meant I couldn\'t really get into a good stroke pattern until the second lap. Plus, I had my goggles knocked off twice. This was a first for me but actually a common occurrence with all the swimmers around. My swim was therefore a bit slower at 1hr and 7 minutes, but still pretty good overall.\r\n<h3>Transition One</h3>\r\nI took a bit longer in the change tent as I put on knee warmers, a wind vest, a riding jacket, a skull cap for under my helmet, and longliner gloves over my riding gloves (I get cold easy!!).\r\n<h3><img class=\"alignleft wp-image-142\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg\" alt=\"Cozumel 2013 Bike\" width=\"251\" height=\"335\" /><strong class=\"subhead\">The Bike</strong></h3>\r\nThen I was off to the 112-mile ride with over 5600 feet of climbing. With the fact that there was a 30 mile or so stretch of flat riding, it was more like 5600 feet of climbing in 80 miles, which made it very hilly. The mountains around here are really very beautiful and the views were really spectacular.\r\n\r\n<strong>Riding through the crowds was invigorating.</strong> They really cheered us on. I took off my gloves since it was now above 60. Then some uphills and lots of downhills for the next 20 miles.\r\n\r\nAfter that, they had the special needs station. This is where one leaves out whatever you might want at a point halfway thru the ride (56 miles). I had nutrition supplies to restock what I had gone thru including a new bottle with liquid nutrition I use.\r\n\r\nI took off the leg warmers, vest, and skull cap, gave them to one of the volunteers along with the empty bottle I had gone thru. She was very surprised but happy, seeing my name on the bottle, and asked if that was me. When I said yes, she said that she had some knee problems and might call me. <strong>Wow, a business referral in an Ironman!</strong> Then a very flat section where for about 30 miles from mile 55-85 with a slight wind. The views of the mountains above were again spectacular.\r\n\r\nThen back to the hills. <strong>The last part from mile 85 to 112, was essentially all uphill.</strong> The first climb was the longest and the steepest, which wore a lot of people down. Then mostly uphill with some slight downhill riding all the way back to town. It was tough on the legs.\r\n\r\nAs we approached the town, the cheering again kept me going. Needless to say, my quadriceps muscles (front of the legs) where one gets most of one\'s cycling power were well worn. My time was 6:58, which was slower than previously in the <a href=\"https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico/\">Cozumel Ironman</a>. But with the hills here I was not disappointed.\r\n<h3>Transition Two</h3>\r\nAfter handing off my bike to a handler, it was off the change tent to put on my running shoes. No need to change clothing because what I wear under my wetsuit is what I ride and run in. Then a quick restock of a few gel packs. <strong>On the way out, volunteers with grass skirts put sunscreen on the runners.</strong> This would be helpful as it was hot, sunny, and getting warm.\r\n<h3><img class=\"alignleft wp-image-143\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg\" alt=\"Cozumel 2013 Run\" width=\"263\" height=\"350\" /><strong class=\"subhead\">The Run</strong></h3>\r\nThe run had over 1100 feet of climbing. Added to the very hilly ride, making this a hard run. There was constant up and down of hills. Tough on already tired legs. Some of the runs went thru the woods on dirt trails, which was good for the legs.\r\n\r\nWe ran around a lake, over a wooden bridge on a pond, and had some spectacular views of the mountains. Due to a buttock area (gluteus medius) injury, I had done most of my running in deep water. I only ran 3 or 4 times in the last five months outside and then only very short. This gave me the stamina I needed but did not toughen my feet.\r\n\r\nAt mile four I developed a blister on my left foot-right in the arch- ouch! I got a Tegaderm patch (a wound covering) from a paramedic at mile 8, which eventually stopped the blister from getting worse.\r\n\r\nThen, at mile five, I also had very sharp pain right where my 3rd and 4th toes meet my foot on the right. This was causing me more problems than the left foot blister. This probably happened because I wear a shoe orthotic to help shift some weight off the 2nd toe where I usually have discomfort. The extra weight got transferred laterally to my third and fourth toes. So, I altered my gait and it became a lot easier to run.\r\n\r\nAt this point, it was actually easier to run (mid-foot plant) than walk. But on the uphill portions (there were many short ones), I had to sometimes walk as I could not go on my toes. Eventually, I was able to keep running and push thru it. As my mom always said, \"C\'est al vie\", (that\'s life). This is what an Ironman is all about- crisis control which was good advice from my coach.\r\n\r\nThe blister pain I just put in the back of my mind and it never got worse. All in all, <strong>I eventually figured out I would not break 14 hours as I had done last year.</strong> But with the big hills on the ride, the hills on the run, and then the foot problems, I was OK with that. I ran most of the time and walked fast up the hills. And at 72 degrees (that was what it finally got to be) and sunny, it was quite warm being at 2200 feet. So the ice at the aid stations was a help.\r\n\r\nI just kept going using many months of physical and mental training to get me thru. At mile 18 or so, as we were running along an asphalt path near the woods, a baby bear came out of the woods and walked onto the path. We all just froze in place and stood there. One woman clapped her hands very loudly and the bear scurried off into the woods. As we started to run again, some said, \"That was the baby. I wonder where the mom is?!\" We all looked into the woods and had a good laugh.\r\n<h3><img class=\"alignleft wp-image-144\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg\" alt=\"Cozumel 2013 Finish2\" width=\"261\" height=\"437\" /><strong class=\"subhead\">The Finish</strong></h3>\r\nAs I got closer to the finish line, all the aches just started to fade away. The last mile or so I just let it all go and ran at a good pace. And as I entered the final turn, the last 150 meters were jammed with the crowds cheering loudly. At this point,<strong> I knew I had made it. All the months of training were worth it.</strong> And as I approached the archway and the finish line, I heard the announcer say, Peter Fields, \"You\'re an Ironman\"! It never gets old. The final run time was 5:52 with an overall time of 14:18.\r\n<h3><strong class=\"subhead\">Final Thoughts on My Third Ironman:</strong></h3>\r\nAll in all, I was very pleased as I did not have any of the dreaded Ironman stomach problems or any mechanical problems with my bike. I felt exhausted and drained but nonetheless very satisfied to have finished my third Ironman. Some may ask why I punish my body. I was not punishing it - just challenging it. When one is prepared, it is not a punishment. Plus, it is as much a mental challenge, if not more than a physical one.\r\n\r\nI love the quote by Viktor Frankel, MD; Holocaust survivor and world-famous author of the book \"Mans Search for Meaning\" (my dad\'s favorite book).\r\n\r\n<em><strong>\"Life can be pulled by goals just as surely as it can be pushed by drives\".</strong></em>\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Dedication:</strong></h3>\r\nAs many of you know, in each of my past two Ironman races, I have raced with dad\'s initials written on me. This year I chose not to do so, although he was with me all the way. Instead this year I chose to dedicate this race to someone else and have their initials on my arm. Without her unrelenting love and support for me over the years (and I do mean years), this race would have never been possible. And at 87 years young, she still continues to be an inspiration to me. These initials were YSF (Yvette Simon Fields) and they belong to my mom.\r\n\r\nThanks to everyone for inquiring about me and cheering from near and far. I really appreciated all of it and words cannot say thank you enough.\r\n\r\nYour thoughts and well wishes helped me through my third Ironman.\r\n<p class=\"text-center\"><strong>Peter A. Fields, MD DC</strong>\r\n<strong id=\"athleticdoc\">The Athletic Doc<sup style=\"font-size: 14px;\">®</sup> and 3X Ironman Finisher</strong></p>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n[caption id=\"\" align=\"alignleft\" width=\"274\"]<img style=\"padding-left: 5px;\" title=\"My Third Ironman in 2013 Canada\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg\" alt=\"2013 Third Ironman \" width=\"274\" height=\"358\" /> My Third Ironman Completed[/caption]\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"col-md-4\"><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">01</strong></a><a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">7 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Achieving Higher Goals at My Third Ironman in Canada','','inherit','closed','closed','','131-revision-v1','','','2021-06-03 02:47:55','2021-06-03 02:47:55','',131,'https://www.drfields.com/?p=4699',0,'revision','',0),(4700,9,'2021-06-04 01:34:07','2021-06-04 01:34:07','<h2>Ironman #4 and a New Personal Record</h2>\n<img class=\"wp-image-154 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"429\" height=\"160\" />\n<h3></h3>\n<h3><em><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></em></h3>\n<p class=\"col-md-8\"><em>    My Ironman #4 experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, </em></p>\n<p class=\"col-md-8\"><em>re-booked my </em></p>\n<em>ticket, and made my train with 5 minutes to spare!</em>\n<p class=\"col-md-8\"><em>Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</em></p>\n<p class=\"col-md-8\"><em>The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</em></p>\n<p class=\"col-md-8\"><em>Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</em></p>\n<p class=\"col-md-8\"><em>In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</em></p>\n<p class=\"col-md-8\"><em>As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</em></p>\n<p class=\"col-md-8\"><em>I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</em></p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\n\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\n\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\n\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\n\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\n\n&nbsp;\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\n\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\n\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\n\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\n\n&nbsp;\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\n\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\n\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\n\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\n\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\n\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\n\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\n\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\n\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\n\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\n\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\n\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\n\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\n\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\n\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\n\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\n\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\n\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\n\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\n\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\n\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\n\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\n\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\n\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\n\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\n\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\n\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\n\nThe feeling when you hear that never gets old.\n\nI was exhausted but very elated. The feeling I had is indescribable.\n\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\n\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\n\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\n\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\n\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\n\n<em>There a few individuals that need to be singled out individually:</em>\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\n\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\n\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\n\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\n\n<strong>Thank you all again for your well wishes and support.</strong>\n\n<strong>Peter A. Fields, MD DC\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\n<div id=\"sidebar2\" class=\"col-md-4\">\n\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\n\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\nClick For More Photos</a>\n\nClick below for Pictures &amp; Story\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\n\n</div>\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-autosave-v1','','','2021-06-04 01:34:07','2021-06-04 01:34:07','',153,'https://www.drfields.com/?p=4700',0,'revision','',0),(4701,9,'2021-06-03 22:16:08','2021-06-03 22:16:08','<div class=\"col-md-8\">\r\n\r\n[caption id=\"attachment_154\" align=\"alignleft\" width=\"478\"]<img class=\"wp-image-154\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"478\" height=\"178\" /> Sunday, June 29, 2014 2.4-mile swim, 112-mile bike, 26.2-mile run[/caption]\r\n<h2>Ironman #4 and a New PR</h2>\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Before the Race</strong></h3>\r\nIt started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly.\r\n\r\nI picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare! Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular.\r\n\r\nThe next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.\r\n\r\nThe rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.\r\n\r\nSaturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.\r\n\r\nIn German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.\r\n\r\nAs I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would.\r\nAll’s well that ends well. Plus a good omen for the race.\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When one leaves transition area two (T2) in an Ironman, you cannot think marathon. You just say are running from here to there and play this mental games with yourself the whole way. It was warm and sunny and about 75 degrees but not too hot. Plus there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So therefore I would pass the finish line 4 times. In this area were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the end the first turn around about 4.5 miles out. I had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake the beginning of each loop, so although brief, it was a nice view. After only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress of these two areas. At this point everything was good and I had no pain. As we passed through the finish line area (middle of the figure eight), we headed out again along a canal. Then we ran under a small foot bridge and onto a small (in width) cobblestone street lined with houses. We ran along this for about 3/4 of a mile then into the town square. People were sitting in cafes and cheering us on. Lots and lots of people. It was about 6 or 7 o\'clock at night and since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and run back to the starting area. I got back to starting point again and got my special needs bag - some extra nutrition. On the second loop my stomach started to feel little funny. This is something that is very common with Ironman triathletes. Mine only lasted about again 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration or other things. I felt fairly lucky. I would cheer these fellow athlete on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\nI just kept telling myself to keep going. One foot after another...just keep going... Part of the way it was shady so that helped a lot too. The sun stays up until 9 o’clock so it never went down while I was running. Mile 18, I got a second wind. Felt very upbeat and in a good place so I was able to pick up pace.\r\nAt that point I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that you normally he runs a lot faster but not today. He told me to try to stay with him and we could talk so the time with go faster. So for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains one has after racing for over 13 hours. There was a small archway as one entered into the city square. There was a small bell on a string that it was hanging from. If you rung the bell (by tapping it with your hand) they would donate money to charity, so I rang it every time I passed it. At the final turn around, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run. The guy I was running with and I just kept talking. He was from Prague where I was going after the race so we were going to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As one comes with closer to the finish line, the noise level is incredible with cheering, cowbells and more. I then heard the announcer say:\r\n<strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling one has when you hear that never gets old.\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\nAnd at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes\r\nMy friend I met on the run the finished right behind me. I then met his wife and three kids.\r\nAfter a few minutes of walking around it was off to the massage tent and get some food.\r\n\r\nPS I finished around 8:30 pm. At 9 pm the sky opened up and it rained hard for about an hour.\r\nI was very fortunate not to go through that.\r\n\r\nI want to make everybody who took the time and effort to watch the update that were on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.\r\nCollectively, I want to thank massage therapist, my acupuncturist and my chiropractor. You all helped get me through. And wonderful office staff who always took a great interest in what I was doing and put up with my long workouts that made me late sometimes.\r\n\r\nThere a few individuals that need to be singled out individually.\r\nI want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.\r\n\r\nAnd then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.\r\n\r\nI want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.\r\n\r\nAnd last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you mom!\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"204\" height=\"370\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Ironman #4 and a New PR','','inherit','closed','closed','','153-revision-v1','','','2021-06-03 22:16:08','2021-06-03 22:16:08','',153,'https://www.drfields.com/?p=4701',0,'revision','',0),(4702,9,'2021-06-04 01:06:31','2021-06-04 01:06:31','[caption id=\"attachment_154\" align=\"alignleft\" width=\"478\"]<img class=\"wp-image-154\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"478\" height=\"178\" /> Sunday, June 29, 2014 2.4-mile swim, 112-mile bike, 26.2-mile run[/caption]\r\n<h2>Ironman #4 and a New PR</h2>\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Before the Race</strong></h3>\r\n<p class=\"col-md-8\">    <em>It</em> started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly.I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare! Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular.The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no. I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would.All’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>And at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<p class=\"col-md-8\"><strong>THANK YOU</strong></p>\r\nI want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.\r\n\r\nCollectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.\r\n\r\nThere a few individuals that need to be singled out individually:\r\nI want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.\r\n\r\nAnd then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.\r\n\r\nI want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.\r\n\r\nAnd last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you mom!\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"204\" height=\"370\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Ironman #4 and a New PR','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:06:31','2021-06-04 01:06:31','',153,'https://www.drfields.com/?p=4702',0,'revision','',0),(4703,9,'2021-06-04 01:14:46','2021-06-04 01:14:46','[caption id=\"attachment_154\" align=\"alignleft\" width=\"478\"]<img class=\"wp-image-154\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"478\" height=\"178\" /> Sunday, June 29, 2014:  2.4-mile swim, 112-mile bike, 26.2-mile run[/caption]\r\n<h2>Ironman #4 and a New Personal Record</h2>\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Before Ironman #4</strong></h3>\r\n<p class=\"col-md-8\">    My <em>Ironman #4</em> experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare!</p>\r\n<p class=\"col-md-8\">Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular.The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</p>\r\n<p class=\"col-md-8\">The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n<p class=\"col-md-8\">Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</p>\r\n<p class=\"col-md-8\">In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</p>\r\n<p class=\"col-md-8\">As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</p>\r\n<p class=\"col-md-8\">I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>And at 13 hrs. 32 minutes and 36 seconds I had a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"204\" height=\"370\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:14:46','2021-06-04 01:14:46','',153,'https://www.drfields.com/?p=4703',0,'revision','',0),(4704,9,'2021-06-04 01:16:42','2021-06-04 01:16:42','[caption id=\"attachment_154\" align=\"alignleft\" width=\"478\"]<img class=\"wp-image-154\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"478\" height=\"178\" /> Sunday, June 29, 2014:  2.4-mile swim, 112-mile bike, 26.2-mile run[/caption]\r\n<h2>Ironman #4 and a New Personal Record</h2>\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Before Ironman #4</strong></h3>\r\n<p class=\"col-md-8\">    My <em>Ironman #4</em> experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare!</p>\r\n<p class=\"col-md-8\">Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular.The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</p>\r\n<p class=\"col-md-8\">The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n<p class=\"col-md-8\">Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</p>\r\n<p class=\"col-md-8\">In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</p>\r\n<p class=\"col-md-8\">As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</p>\r\n<p class=\"col-md-8\">I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. I suddenly felt a sharp sting in my left thigh this was under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"204\" height=\"370\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:16:42','2021-06-04 01:16:42','',153,'https://www.drfields.com/?p=4704',0,'revision','',0),(4705,9,'2021-06-04 01:20:05','2021-06-04 01:20:05','<h2>Ironman #4 and a New Personal Record</h2>\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Before Ironman #4</strong></h3>\r\n<p class=\"col-md-8\">    My <em>Ironman #4</em> experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare!</p>\r\n<p class=\"col-md-8\">Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</p>\r\n<p class=\"col-md-8\">The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n<p class=\"col-md-8\">Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</p>\r\n<p class=\"col-md-8\">In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</p>\r\n<p class=\"col-md-8\">As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</p>\r\n<p class=\"col-md-8\">I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. I also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:20:05','2021-06-04 01:20:05','',153,'https://www.drfields.com/?p=4705',0,'revision','',0),(4706,9,'2021-06-04 01:20:57','2021-06-04 01:20:57','<h2>Ironman #4 and a New Personal Record</h2>\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Before Ironman #4</strong></h3>\r\n<p class=\"col-md-8\">    My <em>Ironman #4</em> experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare!</p>\r\n<p class=\"col-md-8\">Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</p>\r\n<p class=\"col-md-8\">The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n<p class=\"col-md-8\">Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</p>\r\n<p class=\"col-md-8\">In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</p>\r\n<p class=\"col-md-8\">As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</p>\r\n<p class=\"col-md-8\">I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:20:57','2021-06-04 01:20:57','',153,'https://www.drfields.com/?p=4706',0,'revision','',0),(4707,9,'2021-06-04 01:23:37','2021-06-04 01:23:37','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\" wp-image-154\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"467\" height=\"174\" />\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></h3>\r\n<p class=\"col-md-8\">    My <em>Ironman #4</em> experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare!</p>\r\n<p class=\"col-md-8\">Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</p>\r\n<p class=\"col-md-8\">The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n<p class=\"col-md-8\">Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</p>\r\n<p class=\"col-md-8\">In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</p>\r\n<p class=\"col-md-8\">As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</p>\r\n<p class=\"col-md-8\">I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:23:37','2021-06-04 01:23:37','',153,'https://www.drfields.com/?p=4707',0,'revision','',0),(4708,9,'2021-06-04 01:23:55','2021-06-04 01:23:55','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"467\" height=\"174\" />\r\n<h3><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></h3>\r\n<p class=\"col-md-8\">    My <em>Ironman #4</em> experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare!</p>\r\n<p class=\"col-md-8\">Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</p>\r\n<p class=\"col-md-8\">The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n<p class=\"col-md-8\">Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</p>\r\n<p class=\"col-md-8\">In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</p>\r\n<p class=\"col-md-8\">As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</p>\r\n<p class=\"col-md-8\">I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:23:55','2021-06-04 01:23:55','',153,'https://www.drfields.com/?p=4708',0,'revision','',0),(4709,9,'2021-06-04 01:24:45','2021-06-04 01:24:45','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"467\" height=\"174\" />\r\n<h3><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></h3>\r\n<p class=\"col-md-8\">    My <em>Ironman #4</em> experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare!</p>\r\n<p class=\"col-md-8\">Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</p>\r\n<p class=\"col-md-8\">The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n<p class=\"col-md-8\">Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</p>\r\n<p class=\"col-md-8\">In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</p>\r\n<p class=\"col-md-8\">As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</p>\r\n<p class=\"col-md-8\">I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</p>\r\n&nbsp;\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:24:45','2021-06-04 01:24:45','',153,'https://www.drfields.com/?p=4709',0,'revision','',0),(4710,9,'2021-06-04 01:25:35','2021-06-04 01:25:35','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"467\" height=\"174\" />\r\n<h3><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></h3>\r\n<p class=\"col-md-8\">    My <em>Ironman #4</em> experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare!</p>\r\n<p class=\"col-md-8\">Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</p>\r\n<p class=\"col-md-8\">The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n<p class=\"col-md-8\">Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</p>\r\n<p class=\"col-md-8\">In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</p>\r\n<p class=\"col-md-8\">As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</p>\r\n<p class=\"col-md-8\">I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</p>\r\n&nbsp;\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:25:35','2021-06-04 01:25:35','',153,'https://www.drfields.com/?p=4710',0,'revision','',0),(4711,9,'2021-06-04 01:26:00','2021-06-04 01:26:00','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignnone\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"467\" height=\"174\" />\r\n<h3><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></h3>\r\n<p class=\"col-md-8\">    My <em>Ironman #4</em> experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare!</p>\r\n<p class=\"col-md-8\">Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</p>\r\n<p class=\"col-md-8\">The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n<p class=\"col-md-8\">Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</p>\r\n<p class=\"col-md-8\">In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</p>\r\n<p class=\"col-md-8\">As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</p>\r\n<p class=\"col-md-8\">I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</p>\r\n&nbsp;\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:26:00','2021-06-04 01:26:00','',153,'https://www.drfields.com/?p=4711',0,'revision','',0),(4712,9,'2021-06-04 01:26:44','2021-06-04 01:26:44','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignnone\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"467\" height=\"174\" />\r\n<h3><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></h3>\r\n<p class=\"col-md-8\">    My <em>Ironman #4</em> experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare!</p>\r\n<p class=\"col-md-8\">Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</p>\r\n<p class=\"col-md-8\">The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n<p class=\"col-md-8\">Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</p>\r\n<p class=\"col-md-8\">In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</p>\r\n<p class=\"col-md-8\">As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</p>\r\n<p class=\"col-md-8\">I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</p>\r\n&nbsp;\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:26:44','2021-06-04 01:26:44','',153,'https://www.drfields.com/?p=4712',0,'revision','',0),(4713,9,'2021-06-04 01:29:41','2021-06-04 01:29:41','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignnone\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"467\" height=\"174\" />\r\n<h3><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></h3>\r\n<p class=\"col-md-8\">    My <em>Ironman #4</em> experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare!</p>\r\n<p class=\"col-md-8\">Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</p>\r\n<p class=\"col-md-8\">The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n<p class=\"col-md-8\">Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</p>\r\n<p class=\"col-md-8\">In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</p>\r\n<p class=\"col-md-8\">As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</p>\r\n<p class=\"col-md-8\">I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:29:41','2021-06-04 01:29:41','',153,'https://www.drfields.com/?p=4713',0,'revision','',0),(4714,9,'2021-06-04 01:30:03','2021-06-04 01:30:03','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignnone\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"467\" height=\"174\" />\r\n<h3></h3>\r\n<h3><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></h3>\r\n<p class=\"col-md-8\">    My <em>Ironman #4</em> experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare!</p>\r\n<p class=\"col-md-8\">Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</p>\r\n<p class=\"col-md-8\">The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</p>\r\n<p class=\"col-md-8\">Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</p>\r\n<p class=\"col-md-8\">In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</p>\r\n<p class=\"col-md-8\">As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</p>\r\n<p class=\"col-md-8\">I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</p>\r\n\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:30:03','2021-06-04 01:30:03','',153,'https://www.drfields.com/?p=4714',0,'revision','',0),(4715,9,'2021-06-04 01:30:59','2021-06-04 01:30:59','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignnone\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"467\" height=\"174\" />\r\n<h3></h3>\r\n<h3><em><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></em></h3>\r\n<p class=\"col-md-8\"><em>    My Ironman #4 experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare!</em></p>\r\n<p class=\"col-md-8\"><em>Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</em></p>\r\n<p class=\"col-md-8\"><em>The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</em></p>\r\n<p class=\"col-md-8\"><em>Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</em></p>\r\n<p class=\"col-md-8\"><em>In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</em></p>\r\n<p class=\"col-md-8\"><em>As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</em></p>\r\n<p class=\"col-md-8\"><em>I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</em></p>\r\n\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:30:59','2021-06-04 01:30:59','',153,'https://www.drfields.com/?p=4715',0,'revision','',0),(4716,9,'2021-06-04 01:31:53','2021-06-04 01:31:53','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignnone\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"467\" height=\"174\" />\r\n<h3></h3>\r\n<h3><em><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></em></h3>\r\n<p class=\"col-md-8\"><em>    My Ironman #4 experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare!</em></p>\r\n<p class=\"col-md-8\"><em>Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</em></p>\r\n<p class=\"col-md-8\"><em>The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</em></p>\r\n<p class=\"col-md-8\"><em>Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</em></p>\r\n<p class=\"col-md-8\"><em>In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</em></p>\r\n<p class=\"col-md-8\"><em>As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</em></p>\r\n<p class=\"col-md-8\"><em>I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</em></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:31:53','2021-06-04 01:31:53','',153,'https://www.drfields.com/?p=4716',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (4717,9,'2021-06-04 01:32:18','2021-06-04 01:32:18','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignnone\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"467\" height=\"174\" />\r\n<h3></h3>\r\n<h3><em><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></em></h3>\r\n<p class=\"col-md-8\"><em>    My Ironman #4 experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare!</em></p>\r\n<p class=\"col-md-8\"><em>Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</em></p>\r\n<p class=\"col-md-8\"><em>The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</em></p>\r\n<p class=\"col-md-8\"><em>Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</em></p>\r\n<p class=\"col-md-8\"><em>In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</em></p>\r\n<p class=\"col-md-8\"><em>As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</em></p>\r\n<p class=\"col-md-8\"><em>I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</em></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:32:18','2021-06-04 01:32:18','',153,'https://www.drfields.com/?p=4717',0,'revision','',0),(4718,9,'2021-06-04 01:32:48','2021-06-04 01:32:48','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"467\" height=\"174\" />\r\n<h3></h3>\r\n<h3><em><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></em></h3>\r\n<p class=\"col-md-8\"><em>    My Ironman #4 experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, re-booked my ticket, and made my train with 5 minutes to spare!</em></p>\r\n<p class=\"col-md-8\"><em>Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</em></p>\r\n<p class=\"col-md-8\"><em>The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</em></p>\r\n<p class=\"col-md-8\"><em>Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</em></p>\r\n<p class=\"col-md-8\"><em>In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</em></p>\r\n<p class=\"col-md-8\"><em>As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</em></p>\r\n<p class=\"col-md-8\"><em>I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</em></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:32:48','2021-06-04 01:32:48','',153,'https://www.drfields.com/?p=4718',0,'revision','',0),(4719,9,'2021-06-04 01:34:30','2021-06-04 01:34:30','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"429\" height=\"160\" />\r\n<h3></h3>\r\n<h3><em><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></em></h3>\r\n<p class=\"col-md-8\"><em>    My Ironman #4 experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, </em><em>re-booked my </em><em>ticket, and made my train with 5 minutes to spare!</em></p>\r\n<p class=\"col-md-8\"><em>Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</em></p>\r\n<p class=\"col-md-8\"><em>The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</em></p>\r\n<p class=\"col-md-8\"><em>Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</em></p>\r\n<p class=\"col-md-8\"><em>In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</em></p>\r\n<p class=\"col-md-8\"><em>As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</em></p>\r\n<p class=\"col-md-8\"><em>I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</em></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:34:30','2021-06-04 01:34:30','',153,'https://www.drfields.com/?p=4719',0,'revision','',0),(4720,9,'2021-06-04 01:34:55','2021-06-04 01:34:55','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"429\" height=\"160\" />\r\n<h3></h3>\r\n<h3><em><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></em></h3>\r\n<p class=\"col-md-8\"><em>    My Ironman #4 experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, </em><em>re-booked my </em><em>ticket, and made my train with 5 minutes to spare!</em></p>\r\n<p class=\"col-md-8\"><em>Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</em></p>\r\n<p class=\"col-md-8\"><em>The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</em></p>\r\n<p class=\"col-md-8\"><em>Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</em></p>\r\n<p class=\"col-md-8\"><em>In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</em></p>\r\n<p class=\"col-md-8\"><em>As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</em></p>\r\n<p class=\"col-md-8\"><em>I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</em></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:34:55','2021-06-04 01:34:55','',153,'https://www.drfields.com/?p=4720',0,'revision','',0),(4721,9,'2021-06-04 01:35:24','2021-06-04 01:35:24','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"429\" height=\"160\" />\r\n<h3></h3>\r\n<h3><em><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></em></h3>\r\n<p class=\"col-md-8\"><em>    My Ironman #4 experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, </em><em>re-booked my </em><em>ticket, and made my train with 5 minutes to spare!</em></p>\r\n<p class=\"col-md-8\"><em>Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</em></p>\r\n<p class=\"col-md-8\"><em>The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</em></p>\r\n<p class=\"col-md-8\"><em>Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</em></p>\r\n<p class=\"col-md-8\"><em>In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</em></p>\r\n<p class=\"col-md-8\"><em>As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</em></p>\r\n<p class=\"col-md-8\"><em>I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</em></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:35:24','2021-06-04 01:35:24','',153,'https://www.drfields.com/?p=4721',0,'revision','',0),(4722,9,'2021-06-04 01:35:45','2021-06-04 01:35:45','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"429\" height=\"160\" />\r\n<h3></h3>\r\n<h3><em><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></em></h3>\r\n<p class=\"col-md-8\"><em>    My Ironman #4 experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, </em><em>re-booked my </em><em>ticket, and made my train with 5 minutes to spare!</em></p>\r\n<p class=\"col-md-8\"><em>Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</em></p>\r\n<p class=\"col-md-8\"><em>The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</em></p>\r\n<p class=\"col-md-8\"><em>Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</em></p>\r\n<p class=\"col-md-8\"><em>In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</em></p>\r\n<p class=\"col-md-8\"><em>As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</em></p>\r\n<p class=\"col-md-8\"><em>I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</em></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:35:45','2021-06-04 01:35:45','',153,'https://www.drfields.com/?p=4722',0,'revision','',0),(4723,9,'2021-06-04 01:36:08','2021-06-04 01:36:08','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"429\" height=\"160\" />\r\n<h3></h3>\r\n<h3><em><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></em></h3>\r\n<p class=\"col-md-8\"><em>    My Ironman #4 experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, </em><em>re-booked my </em><em>ticket, and made my train with 5 minutes to spare!</em></p>\r\n<p class=\"col-md-8\"><em>Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</em></p>\r\n<p class=\"col-md-8\"><em>The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</em></p>\r\n<p class=\"col-md-8\"><em>Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</em></p>\r\n<p class=\"col-md-8\"><em>In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</em></p>\r\n<p class=\"col-md-8\"><em>As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</em></p>\r\n<p class=\"col-md-8\"><em>I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</em></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:36:08','2021-06-04 01:36:08','',153,'https://www.drfields.com/?p=4723',0,'revision','',0),(4724,9,'2021-06-04 01:37:15','2021-06-04 01:37:15','<h2>Ironman #4 and a New Personal Record</h2>\r\n<img class=\"wp-image-154 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg\" alt=\"Ironman Austria Logo\" width=\"429\" height=\"160\" />\r\n<h3></h3>\r\n<h3><em><strong class=\"subhead\">Travel and Pre-Race for Ironman #4</strong></em></h3>\r\n<p class=\"col-md-8\"><em>    My Ironman #4 experience started with a 12-hour flight from Los Angeles to Frankfurt. The 3-hour delay in Dallas made it even longer. Then, I almost missed my train connection in Frankfurt. Fortunately, I got through customs very quickly. I picked up my bags, took a bus to the train station, </em><em>re-booked my </em><em>ticket, and made my train with 5 minutes to spare!</em></p>\r\n<p class=\"col-md-8\"><em>Of course, being able to speak German helped out a lot with getting directions, such as the train ride to Munich where I switched trains to Klagenfurt, Austria. The views from the train in southern Germany and Austria were spectacular. The next days were just getting settled in. Usually, I\'m a very good sleeper. But unfortunately, for about 4 days, I was unable to sleep a lot at night, so I tried to make up with naps during the day. Sunday would come all too quickly.</em></p>\r\n<p class=\"col-md-8\"><em>The rest of the pre-event days were spent meeting everybody, seeing the triathlon expo, and having a chance to swim in the lake. There was also a van ride around part of the biking course. When my shipped bike arrived, I rode it for about 20 miles and then had the mechanic adjust it slightly. The rest of the time was spent trying to stay calm and relaxed while not working out a lot.</em></p>\r\n<p class=\"col-md-8\"><em>Saturday we checked in at the race which included leaving the bike and gear. The race number paper for my bike did not fit properly and I was advised not to tamper with it and ask an official when I went to check in my bike. When I got out of the van at the check-in point, I realized that I had left the number back in the hotel.</em></p>\r\n<p class=\"col-md-8\"><em>In German, I asked one of the check-in officials what he could do about it. He said he could not do anything and that I would have to go to the registration area to have something done. But it was a mile away and I had all my gear with me in bags, so walking the bike would not be an easy thing. So I opted to go back to the van and have them take me back and get the number.</em></p>\r\n<p class=\"col-md-8\"><em>As I was walking away one of the spectators came up to me and said in German that someone wants to talk to you back from where I came. I looked back and saw someone standing there who had a race official badge around his neck. So I walked back (which wasn\'t easy either with several thousand people there) and asked him in German if he could do anything about this. He said no problem he could help me. I was surprised as the first guy had said no.</em></p>\r\n<p class=\"col-md-8\"><em>I asked again if he was sure about this since my van ride was about to leave. He turned over his badge which said <strong>Race Director</strong>. He said, \"I\'m the boss and I can do it for you\". And within minutes everything was taken care of. He told me he travels to the States sometimes. So I gave him my card and told him to look me up. He said he would. All’s well that ends well. Plus a good omen for the race.</em></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">RACE DAY FOR IRONMAN #4</strong></h3>\r\nI got up at my usual time of 3:30 am. It was about 58 degrees, very clear, and with no signs of rain. It had rained the last 2 days on and off so this was a good thing. So I prepped my bike at the transition area for the last time. This is always a very exciting time with 3000 athletes plus spectators trying to stay calm.\r\n\r\nSince it was about a 500-meter walk to the water, we all took our wetsuits and changed over by the lake, where we were greeted by a rainbow over the lake. It was very beautiful and again a good omen. In a short time, we were all ready to go. The pros and another group of 800 people started 15 minutes early. These early starting non-pros had signed up to start early.\r\n\r\nI missed this sign-up and at first, was disappointed as I am a very strong swimmer. But Ken Glah, the former pro triathlete whose company I travel with, found out. It ended up being a good thing as I would be the fastest in the next group of 2200 athletes and not all bunched up with the fast group.\r\n\r\nSo after many months of training, I was ready to start my Ironman #4. I was dedicating this race to two people. On my left arm, I had the initials JP written. This was in memory of my friend Jeff Patterson. Dr. Jeff started me off in the wonderful world of Prolotherapy which helped save my back from surgery. He was my mentor and dear friend. But he died much too early only a few months ago at the age of 67.\r\n\r\nOn my right arm, I had the initials FFF, for my father Fred F. Fields. Simply put, he was everything in the world to me. He would have been so proud of me, as he always was. It was with great honor and pride that I am able to call myself his son. He died almost 10 years ago and there is not one day that goes by that I do not think of him.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE SWIM</strong></h3>\r\nEven with 800 starting early, there still were 2200 starting in this pack. Since there were definitely going to be some really fast swimmers in this group, I decided to stay behind the first group of people and go off a bit slower. The strategy worked to my advantage as I was able to save a little energy at the beginning.\r\n\r\nOnce I got out about 400 or 500 meters I was able to get into my stride and swim well. It did get a little crowded but I was able to stay with the pack. This is good as when we turned back towards shore, we entered a canal that is about 1000 meters long. I had been warned that it can be extremely crowded in the canal and one can\'t really move at all. But due to the fact that I was with a group of only about 150 people, there was plenty of room.\r\n\r\nIn triathlons, one lifts their head every four or five strokes to sight the land and make sure you are going straight (unlike in a pool, there are no black lines on the bottom of the lake!!). <strong>When I picked up my head, I could see the sides of the canal where there were probably over 1000 people lining the canal yelling and cheering. This really was a unique experience as normally one can\'t see or hear anything!</strong>\r\n\r\nWhen I got about 100 meters towards the end, it got a little jammed up, and I was not really able to move ahead quickly or to the left or right. I just had to stay with the pack. Either way, I exited the water at a little over one hour and six minutes, which turned out to be first place in my age group (a first for me). And there were no wetsuit strippers (volunteers who strip your wetsuit off you when you lay down on your back). So we just pulled the wetsuit off our shoulders and ran about 500 meters to transition one (T1), where we had to pull the rest of our wetsuits off (not an easy thing) and get ready for biking.\r\n\r\n&nbsp;\r\n<h3><strong class=\"subhead\">THE BIKE</strong></h3>\r\n<img class=\"alignright size-full wp-image-170\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg\" alt=\"Bike Race2014\" width=\"382\" height=\"512\" />As we exited the T1 area, there were over a thousand people cheering us on. We rode down a street for about 300 meters and made a U-turn back. <strong>The street was heavily lined with spectators.</strong>\r\n\r\nIt was a beautiful day, sunny and probably about mid to upper sixty\'s with no clouds in sight. As usual, I did not eat anything after the swim for about 15 minutes to allow the blood to get into my legs. In the beginning, this route is mostly flat with lots of curves going around the lake.\r\n\r\nAs we left the lake we went into the small town where there was a traffic circle. And after that is where we started our first big hill climb. At the traffic circle, there was one of the race announcers announcing the race and cheering us on along with the spectators.\r\n\r\nIn all the small towns there were lots of people standing on the streets watching and cheering. As we started the steepest part of this climb, the street was lined with people, probably 5 or 6 deep on either side, cheering and screaming to encourage us to get up the hill. This part was a big loop so we did not come back the same way.\r\n\r\nGoing back was a long downhill ride, so we went fast except for the towns where we had to make small turns. All along here we had spectacular views of the mountains. At mile 45 or 46 miles, we started the biggest climb up the Ruperberg mountain. As we approached this mountain climb, we made a sharp left in town and started going up.\r\n\r\nThere were 100\'s of people lining the street and cheering us on. Plus there was a big loudspeaker with a DJ playing music. It was not too long but very steep. And again at the top were a lot of people and another DJ play playing music over really big loudspeakers.\r\n\r\nThen it was mostly downhill back to town to start a second loop. As I came down the hill, I saw a large bee coming right at me. This happens quite often on the bike. I felt it hit my right shoulder and bounce. And then suddenly, I felt a sharp sting in my left thigh under my bike shorts. I rolled back my bike shorts and there was a big red welt. It hurt but there was nothing I could do about it. I just blocked it out of my mind. The pain subsided after about 15 or 20 minutes and I just went on with the race.\r\n\r\nAs we came into town they had us make a 180-degree turn again (like at the beginning), so we had to really slow down. But this was a good thing as the street leading to this turn was lined with thousands of spectators cheering us on. Occasionally at this point and other ones, there was an announcer, and I would hear, \"and here is Peter from the United States\". Always nice to hear to keep one going. <strong>My usual time is about 3 hrs 25 mins for half of the ride but this time I did it in 3 hours 10 mins.</strong> I was feeling very good.\r\n\r\nAs we started back out on the second loop, I stopped at special needs and refueled myself. Special needs are where we can leave a bag of anything we need at that point. There is one at the halfway point of the bike and another one at the halfway point of the run. I tossed my fuel bottle out and took a new one from the bag I had left. And then also resupplied myself with my gels and other nutrition. I carry my own nutrition so as not to try anything new on race day.\r\n\r\nWhen I tossed the bottle away, it rolled to the feet of a small boy about 6 or 7 years old. His mom looked at him. He just looked at it. I told him, in German, here\'s a present for you. Take it home and clean it! It\'s yours. He just smiled at me as he reached for it.\r\n\r\nThen 8 miles into the second loop, the drizzle started that got a bit heavier with time. Now the streets were wet and there were puddles. This meant we all had to slow down. All in all, it went well on the second loop. The crowds were less due to the rain. But there were still crowds out there.\r\n\r\nAt about mile 80, my stomach had a little bit of trouble. Nothing big, just that I could not eat for about 20 or 30 minutes. But I got over it without any problems. My second loop time was a bit slower due to the rain. It was 3 hours in 25 minutes. All in all, I felt strong for the run. This was a good thing.\r\n\r\nIn the town near T2, the crowds were there cheering loudly. I got off my bike and ran thru the transition area to rack my bike. It was good to be off the bike after 112 miles. Then I put on my running shoes and started off to run a marathon.\r\n\r\nP.S. Several places on the bike course (and later on the run course) there were people from Endurance Sports Travel. This is the group I went with. They were cheering me on loudly. This was much appreciated.\r\n<h3><strong class=\"subhead\">THE RUN</strong></h3>\r\n<img class=\"alignleft size-full wp-image-174\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg\" alt=\"Running Smile\" width=\"335\" height=\"504\" />When leaving transition area two (T2) in an Ironman, you cannot think marathon. You just say to yourself, you are running from here to there and play these mental games the whole way.\r\n\r\nIt was warm and sunny and about 75 degrees. But not too hot. Plus, there was tree cover on at least 60% of the run course. The run was a double loop. It was actually a figure 8 that we had to do twice. So we would pass the finish line 4 times.\r\n\r\nAt the finish line area, there were thousands of people yelling and screaming. After a mile or two, I started to feel a bit tired in my legs. So I just told myself I would run to the first turnaround about 4.5 miles out.\r\n\r\nI had my Garmin (GPS) on so I was able to see my pace and keep it where I knew I could maintain it. We ran along the lake at the beginning of each loop. So although brief, it was a nice view.\r\n\r\nAfter only 2.5 miles, I came upon a woman that was having trouble running so I ran for a little bit with her to keep her going. At 4.5 miles we turned around and headed back to town. Now I felt strong again and my legs were loosening up. In training, I had problems with my foot and also slightly with my hamstring (the hamstring had been my Achilles heel in the last two races). I trained part of the time in the water for my run (deep water running). This was very helpful as it took the stress off these two areas.\r\n\r\nAt this point everything was good and I had no pain. As we passed through the finish line area, we headed out again along a canal. Then we ran under a small footbridge and onto a narrow cobblestone street lined with houses. We ran along this street for about 3/4 of a mile then into the town square.\r\n\r\n<strong> People were sitting in cafes and cheering us on. Lots and lots of people.</strong> It was about 6 or 7 o\'clock at night. And since the sun stays up until about 9 o\'clock the cafes are very, very crowded. We continued on into the town square where there was a large TV screen where people were watching football (soccer). Here we turned to begin the last part of the figure eight and ran back to the starting area.\r\n\r\nI got back to the starting point again and got my special needs bag - some extra nutrition. On the second loop, my stomach started to feel a little funny. This is something that is very common with Ironman triathletes. Mine only lasted about 15 or 20 minutes. Many runners were walking due to this or muscle cramps, dehydration, or other things. I felt fairly lucky. I would cheer these fellow athletes on when I went past them and told them to just keep going. Everyone appreciates that. I had been in their situation in the past and know what it feels like when someone gives you a shout of support.\r\n\r\n<strong>I just kept telling myself to keep going. One foot after another. And just kept going.</strong> Part of the way it was shady, so that helped a lot too. Since the sun stays up so late, it never went down while I was running.\r\n\r\nAt mile 18, I got a second wind. Feeling very upbeat and in a good place, I was able to pick up my pace. Plus, I started to run alongside someone a little bit faster than me. After only two miles, I could not keep up with him and told him so. He told me that he normally runs a lot faster, but not today. And he told me to try to stay with him and we could talk so the time with go faster.\r\n\r\nSo for the rest of the marathon (about 6 miles), we ran together. We ran back along the canal and into the city square again where there were still lots of people. His pace was definitely faster than I would have gone but he was pushing me thru all the aches and pains from racing for over 13 hours.\r\n\r\nThere was a small archway when entering into the city square. And a small bell on a string hanging from it. If you rang the bell (by tapping it with your hand) they would donate money to charity. So I rang it every time I passed it. At the final turnaround, it was very exciting knowing that I only had 3 miles left. I had never developed any pain from my foot or my hamstring. And I was very pleased with my run.\r\n\r\nWe continued to talk and run. He was from Prague where I was going after the race and we planned to exchange numbers after we finished. So as we got near the finish line area, the noise of the crowd got louder and louder. Since they take your picture as you cross the finish line, he said I should go ahead of him to be alone. I thanked him very much for helping me along.\r\n\r\nSo at about 100 meters away, I took off from him. The crowd was very loud; almost deafening. There was a cheerleading squad there along with photographers and a local TV crew. As I ran closer to the finish line, the noise level became incredible with cheering, cowbells, and more. I then heard the announcer say: <strong>\"Peter Fields, you are an Ironman!\"</strong>\r\n\r\nThe feeling when you hear that never gets old.\r\n\r\nI was exhausted but very elated. The feeling I had is indescribable.\r\n\r\n<strong>For Ironman #4, I finished at 13 hours, 32 minutes, and 36 seconds with a new personal best for me by 18 minutes.</strong>\r\n\r\nMy new friend I had met on the run finished right behind me. I was able to meet his wife and three kids.\r\n\r\nAfter a few minutes of walking around, I was off to the massage tent and to get some food.\r\n\r\nP.S. At 9 pm, thirty minutes after finishing, the sky opened up and it rained hard for about an hour. I was very fortunate not to go through that.\r\n<h3 class=\"col-md-8\"><em><strong>APPRECIATIONS:</strong></em></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<em>I want to thank everybody who took the time and effort to watch the update that was on the internet during the race. I appreciate every one of you. And for everyone else, your thoughts and cheers before and after the race were heard. There are lots and lots of people I need to thank but the list is too long. You know who you are and a big thank you goes out to all.</em>\r\n\r\n<em>Collectively, I want to thank my massage therapist, my acupuncturist, and my chiropractor. You all helped get me through. And my wonderful office staff who always took a great interest in what I was doing and put up with the long workouts that made me late sometimes.</em>\r\n\r\n<em>There a few individuals that need to be singled out individually:</em>\r\n<em>I want to thank my coach, Cherie Gruenfeld, as she pushed me hard and helped me a lot.</em>\r\n\r\n<em>And then there is the world’s best podiatrist, Dr Dan Altchuler. Without his help and caring, my foot would have never made it through the race.</em>\r\n\r\n<em>I want to thank my very special friend Angela Past. Several years ago she got me into this wonderful world of Ironman triathlons (she became an Ironman before I did). She actually got up in the middle of the night in California to follow me as the race began at 10 pm west coast time. Wow! Thank you so much for your emotional support when I needed it the most.</em>\r\n\r\n<em>And last but not least, I want to thank my mom and dad as they taught me not to give up even when the times get tough. And although my dad is no longer with us, his thoughts are with me in spirit every day. My mom is 88 years young and is active and vibrant. She\'s an inspiration to me every day. She has never lost faith in me and my abilities... Thank you, mom!</em>\r\n\r\n<strong>Thank you all again for your well wishes and support.</strong>\r\n\r\n<strong>Peter A. Fields, MD DC\r\nThe Athletic Doc<sup>®</sup> and 4X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\">\r\n\r\n<img class=\"alignleft\" style=\"text-align: center;\" title=\"Race Report 4th Ironman\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg\" alt=\"Race Report 4th Ironman\" width=\"389\" height=\"662\" />\r\n\r\n<a href=\"https://goo.gl/photos/BBwqL4H48qpXLAZw6\" target=\"_blank\" rel=\"noopener noreferrer\">2014 Austria\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>\r\n&nbsp;','Ironman #4 and a New Personal Record','','inherit','closed','closed','','153-revision-v1','','','2021-06-04 01:37:15','2021-06-04 01:37:15','',153,'https://www.drfields.com/?p=4724',0,'revision','',0),(4726,9,'2021-06-11 18:27:28','2021-06-11 18:27:28','<div>\n<h2>Elbow Injury Treatment</h2>\n</div>\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer- Elbow\"]\n<strong>Jennifer - Elbow</strong></div>\n<h4>Elbow Injury Treatment</h4>\nOrthoRegen<sup>®</sup> offers you the most effective elbow injury treatment. Plus, this natural treatment avoids the long-term side effects that may be associated with NSAIDs and cortisone injections. Our comprehensive Regenerative Orthopedic treatments such as Stem Cell Therapy, PRP, and <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> elbow treatments offer our patients a non-surgical solution for their elbow pain and injuries. From future Olympians to weekend warriors, we can help you return to your sport without surgery, without pain medications, and without extended periods of time away from your sport.\n<h4>Why Regenerative Orthopedics for Elbow Injury Treatments?</h4>\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an experienced marathoner, long-distance cyclist, and swimmer. He has participated in Triathlons as well as Ironman competitions. And since he is a triathlete himself, he understands the passion that athletes have to train and compete. He has also experienced injuries himself and utilized Regenerative Orthopedics to get back in the game.\n\nAnd being both a medical doctor and chiropractor gives him more insight as he cares for your particular need. In our experience, comprehensive Regenerative Orthopedics is an effective elbow injury treatment and the best therapy for long-term positive results.\n\n<a class=\"buttonlink\" href=\"http://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n\n<strong>Some of the most common elbow pain and injuries we treat with comprehensive Regenerative Orthopedics include:</strong>\n<ul>\n 	<li>Arthritis</li>\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Elbow pain</a></li>\n 	<li>Elbow sprain</li>\n 	<li>Golfers elbow</li>\n 	<li>Lateral epicondylitis</li>\n 	<li>Medial epicondylitis</li>\n 	<li>Post-surgical elbow pain</li>\n 	<li>Tendonitis</li>\n 	<li>Tendinosis</li>\n 	<li>Tennis elbow</li>\n</ul>\n<h4>Are You A Candidate for Regenerative Orthopedics?</h4>\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy elbow treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/ \">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our non-surgical treatments, or for a second opinion for a recommended surgery, contact us for a consultation at OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\nWant to hear stories from some of our patients? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials/\"> Testimonials page</a>.\n\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>','Elbow Injury Treatment','','inherit','closed','closed','','582-autosave-v1','','','2021-06-11 18:27:28','2021-06-11 18:27:28','',582,'https://www.drfields.com/?p=4726',0,'revision','',0),(4727,9,'2021-06-11 18:27:48','2021-06-11 18:27:48','<div>\r\n<h2>Elbow Injury Treatment</h2>\r\n</div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"RJCzx6yt0zY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg\" alt=\"Jennifer- Elbow\"]\r\n<strong>Jennifer - Elbow</strong></div>\r\n<h4>Elbow Injury Treatment</h4>\r\nOrthoRegen<sup>®</sup> offers you the most effective elbow injury treatment. Plus, this natural treatment avoids the long-term side effects that may be associated with NSAIDs and cortisone injections. Our comprehensive Regenerative Orthopedic treatments such as Stem Cell Therapy, PRP, and <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> elbow treatments offer our patients a non-surgical solution for their elbow pain and injuries. From future Olympians to weekend warriors, we can help you return to your sport without surgery, without pain medications, and without extended periods of time away from your sport.\r\n<h4>Why Regenerative Orthopedics for Elbow Injury Treatments?</h4>\r\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, is an experienced marathoner, long-distance cyclist, and swimmer. He has participated in Triathlons as well as Ironman competitions. And since he is a triathlete himself, he understands the passion that athletes have to train and compete. He has also experienced injuries himself and utilized Regenerative Orthopedics to get back in the game.\r\n\r\nAnd being both a medical doctor and chiropractor gives him more insight as he cares for your particular need. In our experience, comprehensive Regenerative Orthopedics is an effective elbow injury treatment and the best therapy for long-term positive results.\r\n\r\n<a class=\"buttonlink\" href=\"http://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common elbow pain and injuries we treat with comprehensive Regenerative Orthopedics include:</strong>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Elbow pain</a></li>\r\n 	<li>Elbow sprain</li>\r\n 	<li>Golfers elbow</li>\r\n 	<li>Lateral epicondylitis</li>\r\n 	<li>Medial epicondylitis</li>\r\n 	<li>Post-surgical elbow pain</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendinosis</li>\r\n 	<li>Tennis elbow</li>\r\n</ul>\r\n<h4>Are You A Candidate for Regenerative Orthopedics?</h4>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy elbow treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/ \">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our non-surgical treatments, or for a second opinion for a recommended surgery, contact us for a consultation at OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nWant to hear stories from some of our patients? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Elbow-Testimonials/\"> Testimonials page</a>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>','Elbow Injury Treatment','','inherit','closed','closed','','582-revision-v1','','','2021-06-11 18:27:48','2021-06-11 18:27:48','',582,'https://www.drfields.com/?p=4727',0,'revision','',0),(4728,9,'2021-06-16 23:35:24','2021-06-16 23:35:24','<h2>Knee Arthritis Treatment That Gets Rid of Pain at the Source</h2>\n[caption id=\"attachment_4729\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4729\" src=\"https://www.drfields.com/wp-content/uploads/2021/06/knee-arthritis-500x500.jpg\" alt=\"Knee Arthritis\" width=\"500\" height=\"500\" /> <strong>               Effective Non-Surgical Knee Arthritis Treatment</strong>[/caption]\n\nWe treat a lot of knees at our clinic. Part of the reason is that knee injuries are so prevalent. Another reason is that quite often, the other treatments patients receive only provide temporary relief.\n\nWhen an injury is left untreated or when the treatment fails to adequately repair an injury, the knee becomes unstable. The instability sets the knee up for a cycle of abnormal joint motion. And that promotes knee degeneration which destroys the joint over time. The result? The knee is set up for the development of arthritis.\n\nIf you already have arthritis in your knee, we can help. Even if surgery has been recommended due to the advanced nature of your arthritis, there is a good chance we can help. Studies have shown the effectiveness of this non-surgical Stem Cell Therapy to treat knee arthritis. 1,2\n\nIf you have injured your meniscus or ACL, Regenerative Orthopedics is also an effective therapy capable of repairing the injury and stopping the cycle that leads to arthritis.\n\n<strong>And...Regenerative Orthopedics is also an ideal treatment for anyone looking to avoid knee replacement!</strong>\n<h3>The Healthy Knee vs. An Injured Knee</h3>\nLet\'s talk a bit about our knees. The knee is the largest joint in the body and one of the more complex joints. To accomplish all of the tasks the knee needs to do, many forces and stressors are placed on it.\n\nA healthy knee moves smoothly during walking activities. And it also moves smoothly when running, jumping, and turning. One of the most important keys to a healthy knee is maintaining stability in response to the forces placed upon it. When any part of the knee joint is injured, such as the bony configuration, muscles, menisci, joint capsule, or ligaments, the whole stability of the knee is disrupted. And that causes symptoms and pain!\n\nWhen knee injury does occur, Regenerative Orthopedics can stop the disruption and stabilize the knee again. The treatment does this by promoting the healing of unstable and weakened ligaments and other injured joint structures. The result is the elimination of pain associated with knee conditions caused by abnormal joint motion.\n<h3>What About Knee Arthritis Treatment?</h3>\nKnee pain is one of the most common reasons people seek out medical help. And knee osteoarthritis is a primary player. Arthritis impairs the mobility and activity level of those who suffer from it. If you suffer from it, you sure know the effect it has on your life.\n\nThe prevalence of knee pain increases with age and is affected by lifestyle factors, such as obesity and lack of exercise. People living with Arthritis deal with chronic pain, joint stiffness, structural damage, and the progressive loss of cartilage. The condition can be disabling.\n\n<strong>But did you know the pain of arthritis does not come from the cartilage?</strong> Even though cartilage loss plays a central role in arthritis, it is not the source of pain. How can that be? It\'s because cartilage tissue does not contain nerve fibers.\n<h4><em>Nerve Fibers</em></h4>\nThe tissues containing many nerve fibers include the ligaments, tendons, meniscus, joint capsule, synovium, and periosteum. Arthritis pain is due to injury to these types of tissue. Since soft tissue is mainly responsible for the smooth movement of the knee joint, when abnormal forces are placed on them, injury occurs that disrupts the balance between normal motion and instability. This is where the painful process begins.\n\n<strong>The nerve endings that cause pain are also present where the ligaments and tendons insert into the bone, and this area can become a source of ongoing knee pain. Regenerative Orthopedic treatments are often directed at these sites. And as such, they are recognized as one of the most effective non-surgical therapies to treat knee pain.</strong>\n<h4><em>Ligaments</em></h4>\nLigaments play a crucial role in the stability of the knee because they guide the motion of the knee joints and restrain excessive motion to prevent dislocation. Ligament injuries are also the most common form of a knee injury. Ligament injury then upsets and disrupts the balance in the motion of the knee joint.\n\nInjuries that result in ligament damage also commonly result in injury to other knee structures, such as the meniscus, tendons, and cartilage. As mentioned, these injuries can eventually lead to arthritis, which can transpire within a few years with severe injuries or possibly over decades if the injury is less severe.\n<h3>Regenerative Orthopedic Treatments Heal the Soft Tissue Injuries</h3>\n[caption id=\"attachment_4734\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4734 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/06/Stem.Joint_.KW_-500x375.jpeg\" alt=\"Stem.joint.kw\" width=\"500\" height=\"375\" /> Effective Non-Surgical Knee Arthritis Treatment and Articular Defect Repair[/caption]\n\nAlthough many treatments may offer temporary pain relief, it is important to find a treatment that does more than chase the symptoms. And actual repair of the injured soft tissue is vital to restore normal motion to the knee joint.\n\nRegenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy, are effective therapies that do just that. These treatments stimulate healing of ligaments, tendons, and menisci and restore normal functioning of the knee joint, thus preventing the arthritic progression. In more advanced cases, the Gold Standard in Stem Cell Therapy can be used to promote the regeneration of articular cartilage.\n\nRegenerative Orthopedic treatments target and repair the structures generating the pain in knee arthritis, effectively resolving the pain. And Regenerative Orthopedic treatments give hope to arthritis sufferers because they provide not only pain relief but also joint repair, resulting in improved function and a better quality of life.\n\nStem Cell Therapy is an effective knee arthritis treatment as well as articular cartilage defects.3 If you are suffering from knee arthritis pain, a knee injury, or even an articular cartilage defect, call us today. We\'d love to help you get back to doing what you love.\n<h3>References</h3>\n<ol>\n 	<li>Hamoud Al Faqeh, Bin Mohamed Yahya N H, Hui Cheng C, Bin Saim A, BtHj I R (2012) The potential of intra-articular injection of chondrogenic- induced bone marrow stem cells to retard the progression of osteoarthritis in a sheep model, Experimental Gerontology 47: 458- 464.</li>\n 	<li>Eslaminejad M B, Poor E M (2014) Mesenchymal stem cells as a potent cell source for articular cartilage regeneration. World J Stem Cells 6: 344- 354.</li>\n 	<li>\n<div class=\"page\" title=\"Page 12\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\nHeba M Arakeep, et al. <a href=\"https://opastonline.com/wp-content/uploads/2019/01/repair-of-articular-cartilage-defects-using-bone-marrow-derived-mesenchymal-stem-cells-in-rabbits-scri-19.pdf\">Repair of Articular Cartilage Defects using Bone Marrow-Derived Mesenchymal Stem Cells in Rabbits</a>. Stem Cell Res Int (2019).  3: ( 1 ) 1 -12.\n\n</div>\n</div>\n</div>\n<div class=\"page\" title=\"Page 11\">\n<div class=\"layoutArea\">\n<div class=\"column\"></div>\n</div>\n</div></li>\n</ol>','Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain','','inherit','closed','closed','','2347-autosave-v1','','','2021-06-16 23:35:24','2021-06-16 23:35:24','',2347,'https://www.drfields.com/?p=4728',0,'revision','',0),(4729,9,'2021-06-16 22:37:49','2021-06-16 22:37:49','Knee Arthritis','Knee Arthritis','Effective Non-Surgical Knee Arthritis Treatment','inherit','open','closed','','knee-arthritis-2','','','2021-06-16 22:38:16','2021-06-16 22:38:16','',2347,'https://www.drfields.com/wp-content/uploads/2021/06/knee-arthritis.jpg',0,'attachment','image/jpeg',0),(4730,9,'2021-06-16 23:20:44','2021-06-16 23:20:44','<h2>Knee Arthritis Treatment To Get Rid of Pain at the Source</h2>\r\n[caption id=\"attachment_4729\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4729\" src=\"https://www.drfields.com/wp-content/uploads/2021/06/knee-arthritis-500x500.jpg\" alt=\"Knee Arthritis\" width=\"500\" height=\"500\" /> <strong>               Effective Non-Surgical Knee Arthritis Treatment</strong>[/caption]\r\n\r\nWe treat a lot of knees at our clinic. Part of the reason is because knee injuries are so prevalent. Another reason is that quite often the other treatments patients receive, only provide temporary relief.\r\n\r\nWhen an injury is left untreated or when the treatment fails to adequately repair an injury, the knee becomes unstable. The instability sets the knee up for a cycle of abnormal joint motion. And that promotes knee degeneration which destroys the joint over time. The result? The knee is set up for the development of arthritis.\r\n\r\nIf you already have arthritis in your knee, we can help. Even if surgery has been recommended due to the advanced nature of your arthritis, there is a good chance we can help. Studies have shown the effectivenesss of this non-surgical Stem Cell Therapy to treat knee arthritis. 1,2\r\n\r\nIf you have injured your meniscus or ACL, Regenerative Orthopedics is also an effective therapy capable of repairing the injury and stopping the cycle that leads to arthritis.\r\n\r\n<strong>And...Regenerative Orthopedics is also an ideal treatment for anyone looking to avoid knee replacement!</strong>\r\n<h3>The Healthy Knee vs An Injured Knee</h3>\r\nLet\'s talk a bit about our knees. The knee is the largest joint in the body and one of the more complex joints. In order to accomplish all of the tasks the knee needs to do, many forces and stressors are placed on it.\r\n\r\nA healthy knee moves smoothly during walking activities. And it also moves smoothly when running, jumping and turning. One of the most important keys to a healthy knee is maintaining stability in response to the forces placed upon it. When any part of the knee joint is injured, such as the bony configuration, muscles, menisci, joint capsule or the ligaments, the whole stability of the knee is disrupted. And that causes symptoms and pain!\r\n\r\nWhen knee injury does occur, Regenerative Orthopedics can stop the disruption and stabilize the knee again. The treatment does this by promoting the healing of unstable and weakened ligaments, and other injured joint structures. The result is the elimination of pain associated with knee conditions caused by abnormal joint motion.\r\n<h3>What About Knee Arthritis Treatment?</h3>\r\nKnee pain is one of the most common reasons people seek out medical help. And knee osteoarthritis is a primary player. Arthritis impairs the mobility and activity level of those who suffer from it. If you suffer from it, you sure know the affect it has on your life.\r\n\r\nThe prevalence of knee pain increases with age, and is affected by lifestyle factors, such as obesity and lack of exercise. Arthritis sufferers deal with chronic pain, joint stiffness, structural damage, and the progressive loss of cartilage. The condition can be disabling.\r\n\r\n<strong>But did you know the pain of arthritis does not come from the cartilage?</strong> Even though cartilage loss plays a central role in arthritis, it is not the source of pain. How can that be? It\'s because cartilage tissue does not contain nerve fibers.\r\n\r\nThe tissues that do contain a lot of nerve fibers includes the ligaments, tendons, meniscus, joint capsule, synovium and periosteum. Arthritis pain is due to injury to these types of tissue. Since soft tissue is mainly responsible for the smooth movement of the knee joint, when abnormal forces are placed on them, injury occurs that disrupts the balance between normal motion and instability. This is where the painful process begins.\r\n\r\n<strong>The nerve endings that cause pain are also present where the ligaments and tendons insert to the bone, and this area can become a source of ongoing knee pain. Regenerative Orthopedic treatments are often directed at these sites. And as such, are recognized as one of the most effective non-surgical therapies to treat knee pain.</strong>\r\n\r\nLigaments play a crucial role in the stability of the knee, because they guide the motion of the knee joints, and restrain excessive motion to prevent dislocation. Ligament injuries are also the most common form of knee injury. Ligament injury then upsets and disrupts the balance in the motion of the knee joint.\r\n\r\nInjuries that result in ligament damage also commonly result in the injury to other knee structures, such as the meniscus, tendons and cartilage. As mentioned, these injuries can eventually lead to arthritis, which can transpire within a few years with severe injuries or possibly over decades if the injury is less severe.\r\n<h3>Regenerative Orthopedic Treatments Heal the Soft Tissue Injuries</h3>\r\nAlthough many treatments may offer temporary pain relief, it is important to find a treatment that does more than chase the symptoms. And  actual repair of the injured soft tissue is vital in order to restore normal motion to the knee joint.\r\n\r\nRegenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy are effective therapies that do just that. These treatments stimulate healing of ligaments, tendons and menisci, and restore normal functioning of the knee joint, thus preventing the arthritic progression. In more advanced cases, the Gold Standard in Stem Cell Therapy can be used to promote the regeneration of articular cartilage.\r\n\r\nRegenerative Orthopedic treatments target and repair the structures generating the pain in knee arthritis, effectively resolving the pain. Regenerative Orthopedic treatments give hope to arthritis sufferers, because they provide not only pain relief, but also joint repair, resulting in improved function and a better quality of life.\r\n\r\nStem Cell Therapy is an effective knee arthritis treatement as well as articular cartilage defects.3 If you are suffering from knee arthritis pain, a knee injury, or even an articular cartilage defect, call us today. We\'d love to help you get back to doing what you love.\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Hamoud Al Faqeh, Bin Mohamed Yahya N H, Hui Cheng C, Bin Saim A, BtHj I R (2012) The potential of intra-articular injection of chondrogenic- induced bone marrow stem cells to retard the progression of osteoarthritis in a sheep model, Experimental Gerontology 47: 458- 464.</li>\r\n 	<li>Eslaminejad M B, Poor E M (2014) Mesenchymal stem cells as a potent cell source for articular cartilage regeneration. World J Stem Cells 6: 344- 354.</li>\r\n 	<li>\r\n<div class=\"page\" title=\"Page 12\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nHeba M Arakeep, et al. <a href=\"https://opastonline.com/wp-content/uploads/2019/01/repair-of-articular-cartilage-defects-using-bone-marrow-derived-mesenchymal-stem-cells-in-rabbits-scri-19.pdf\">Repair of Articular Cartilage Defects using Bone Marrow Derived Mesenchymal Stem Cells in Rabbits</a>. Stem Cell Res Int (2019).  3: ( 1 ) 1 -12.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 11\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\"></div>\r\n</div>\r\n</div></li>\r\n</ol>','Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain','','inherit','closed','closed','','2347-revision-v1','','','2021-06-16 23:20:44','2021-06-16 23:20:44','',2347,'https://www.drfields.com/?p=4730',0,'revision','',0),(4731,9,'2021-06-16 23:24:46','2021-06-16 23:24:46','<h2>Knee Arthritis Treatment That Gets Rid of Pain at the Source</h2>\r\n[caption id=\"attachment_4729\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4729\" src=\"https://www.drfields.com/wp-content/uploads/2021/06/knee-arthritis-500x500.jpg\" alt=\"Knee Arthritis\" width=\"500\" height=\"500\" /> <strong>               Effective Non-Surgical Knee Arthritis Treatment</strong>[/caption]\r\n\r\nWe treat a lot of knees at our clinic. Part of the reason is that knee injuries are so prevalent. Another reason is that quite often the other treatments patients receive, only provide temporary relief.\r\n\r\nWhen an injury is left untreated or when the treatment fails to adequately repair an injury, the knee becomes unstable. The instability sets the knee up for a cycle of abnormal joint motion. And that promotes knee degeneration which destroys the joint over time. The result? The knee is set up for the development of arthritis.\r\n\r\nIf you already have arthritis in your knee, we can help. Even if surgery has been recommended due to the advanced nature of your arthritis, there is a good chance we can help. Studies have shown the effectiveness of this non-surgical Stem Cell Therapy to treat knee arthritis. 1,2\r\n\r\nIf you have injured your meniscus or ACL, Regenerative Orthopedics is also an effective therapy capable of repairing the injury and stopping the cycle that leads to arthritis.\r\n\r\n<strong>And...Regenerative Orthopedics is also an ideal treatment for anyone looking to avoid knee replacement!</strong>\r\n<h3>The Healthy Knee vs An Injured Knee</h3>\r\nLet\'s talk a bit about our knees. The knee is the largest joint in the body and one of the more complex joints. In order to accomplish all of the tasks the knee needs to do, many forces and stressors are placed on it.\r\n\r\nA healthy knee moves smoothly during walking activities. And it also moves smoothly when running, jumping, and turning. One of the most important keys to a healthy knee is maintaining stability in response to the forces placed upon it. When any part of the knee joint is injured, such as the bony configuration, muscles, menisci, joint capsule or ligaments, the whole stability of the knee is disrupted. And that causes symptoms and pain!\r\n\r\nWhen knee injury does occur, Regenerative Orthopedics can stop the disruption and stabilize the knee again. The treatment does this by promoting the healing of unstable and weakened ligaments, and other injured joint structures. The result is the elimination of pain associated with knee conditions caused by abnormal joint motion.\r\n<h3>What About Knee Arthritis Treatment?</h3>\r\nKnee pain is one of the most common reasons people seek out medical help. And knee osteoarthritis is a primary player. Arthritis impairs the mobility and activity level of those who suffer from it. If you suffer from it, you sure know the effect it has on your life.\r\n\r\nThe prevalence of knee pain increases with age and is affected by lifestyle factors, such as obesity and lack of exercise. Arthritis sufferers deal with chronic pain, joint stiffness, structural damage, and the progressive loss of cartilage. The condition can be disabling.\r\n\r\n<strong>But did you know the pain of arthritis does not come from the cartilage?</strong> Even though cartilage loss plays a central role in arthritis, it is not the source of pain. How can that be? It\'s because cartilage tissue does not contain nerve fibers.\r\n\r\nThe tissues that do contain a lot of nerve fibers include the ligaments, tendons, meniscus, joint capsule, synovium, and periosteum. Arthritis pain is due to injury to these types of tissue. Since soft tissue is mainly responsible for the smooth movement of the knee joint, when abnormal forces are placed on them, injury occurs that disrupts the balance between normal motion and instability. This is where the painful process begins.\r\n\r\n<strong>The nerve endings that cause pain are also present where the ligaments and tendons insert into the bone, and this area can become a source of ongoing knee pain. Regenerative Orthopedic treatments are often directed at these sites. And as such, are recognized as one of the most effective non-surgical therapies to treat knee pain.</strong>\r\n\r\nLigaments play a crucial role in the stability of the knee, because they guide the motion of the knee joints, and restrain excessive motion to prevent dislocation. Ligament injuries are also the most common form of a knee injury. Ligament injury then upsets and disrupts the balance in the motion of the knee joint.\r\n\r\nInjuries that result in ligament damage also commonly result in injury to other knee structures, such as the meniscus, tendons, and cartilage. As mentioned, these injuries can eventually lead to arthritis, which can transpire within a few years with severe injuries or possibly over decades if the injury is less severe.\r\n<h3>Regenerative Orthopedic Treatments Heal the Soft Tissue Injuries</h3>\r\nAlthough many treatments may offer temporary pain relief, it is important to find a treatment that does more than chase the symptoms. And actual repair of the injured soft tissue is vital in order to restore normal motion to the knee joint.\r\n\r\nRegenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy are effective therapies that do just that. These treatments stimulate healing of ligaments, tendons, and menisci, and restore normal functioning of the knee joint, thus preventing the arthritic progression. In more advanced cases, the Gold Standard in Stem Cell Therapy can be used to promote the regeneration of articular cartilage.\r\n\r\nRegenerative Orthopedic treatments target and repair the structures generating the pain in knee arthritis, effectively resolving the pain. Regenerative Orthopedic treatments give hope to arthritis sufferers, because they provide not only pain relief, but also joint repair, resulting in improved function and a better quality of life.\r\n\r\nStem Cell Therapy is an effective knee arthritis treatment as well as articular cartilage defects.3 If you are suffering from knee arthritis pain, a knee injury, or even an articular cartilage defect, call us today. We\'d love to help you get back to doing what you love.\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Hamoud Al Faqeh, Bin Mohamed Yahya N H, Hui Cheng C, Bin Saim A, BtHj I R (2012) The potential of intra-articular injection of chondrogenic- induced bone marrow stem cells to retard the progression of osteoarthritis in a sheep model, Experimental Gerontology 47: 458- 464.</li>\r\n 	<li>Eslaminejad M B, Poor E M (2014) Mesenchymal stem cells as a potent cell source for articular cartilage regeneration. World J Stem Cells 6: 344- 354.</li>\r\n 	<li>\r\n<div class=\"page\" title=\"Page 12\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nHeba M Arakeep, et al. <a href=\"https://opastonline.com/wp-content/uploads/2019/01/repair-of-articular-cartilage-defects-using-bone-marrow-derived-mesenchymal-stem-cells-in-rabbits-scri-19.pdf\">Repair of Articular Cartilage Defects using Bone Marrow-Derived Mesenchymal Stem Cells in Rabbits</a>. Stem Cell Res Int (2019).  3: ( 1 ) 1 -12.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 11\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\"></div>\r\n</div>\r\n</div></li>\r\n</ol>','Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain','','inherit','closed','closed','','2347-revision-v1','','','2021-06-16 23:24:46','2021-06-16 23:24:46','',2347,'https://www.drfields.com/?p=4731',0,'revision','',0),(4732,9,'2021-06-16 23:31:21','2021-06-16 23:31:21','<h2>Knee Arthritis Treatment That Gets Rid of Pain at the Source</h2>\r\n[caption id=\"attachment_4729\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4729\" src=\"https://www.drfields.com/wp-content/uploads/2021/06/knee-arthritis-500x500.jpg\" alt=\"Knee Arthritis\" width=\"500\" height=\"500\" /> <strong>               Effective Non-Surgical Knee Arthritis Treatment</strong>[/caption]\r\n\r\nWe treat a lot of knees at our clinic. Part of the reason is that knee injuries are so prevalent. Another reason is that quite often, the other treatments patients receive only provide temporary relief.\r\n\r\nWhen an injury is left untreated or when the treatment fails to adequately repair an injury, the knee becomes unstable. The instability sets the knee up for a cycle of abnormal joint motion. And that promotes knee degeneration which destroys the joint over time. The result? The knee is set up for the development of arthritis.\r\n\r\nIf you already have arthritis in your knee, we can help. Even if surgery has been recommended due to the advanced nature of your arthritis, there is a good chance we can help. Studies have shown the effectiveness of this non-surgical Stem Cell Therapy to treat knee arthritis. 1,2\r\n\r\nIf you have injured your meniscus or ACL, Regenerative Orthopedics is also an effective therapy capable of repairing the injury and stopping the cycle that leads to arthritis.\r\n\r\n<strong>And...Regenerative Orthopedics is also an ideal treatment for anyone looking to avoid knee replacement!</strong>\r\n<h3>The Healthy Knee vs. An Injured Knee</h3>\r\nLet\'s talk a bit about our knees. The knee is the largest joint in the body and one of the more complex joints. To accomplish all of the tasks the knee needs to do, many forces and stressors are placed on it.\r\n\r\nA healthy knee moves smoothly during walking activities. And it also moves smoothly when running, jumping, and turning. One of the most important keys to a healthy knee is maintaining stability in response to the forces placed upon it. When any part of the knee joint is injured, such as the bony configuration, muscles, menisci, joint capsule, or ligaments, the whole stability of the knee is disrupted. And that causes symptoms and pain!\r\n\r\nWhen knee injury does occur, Regenerative Orthopedics can stop the disruption and stabilize the knee again. The treatment does this by promoting the healing of unstable and weakened ligaments and other injured joint structures. The result is the elimination of pain associated with knee conditions caused by abnormal joint motion.\r\n<h3>What About Knee Arthritis Treatment?</h3>\r\nKnee pain is one of the most common reasons people seek out medical help. And knee osteoarthritis is a primary player. Arthritis impairs the mobility and activity level of those who suffer from it. If you suffer from it, you sure know the effect it has on your life.\r\n\r\nThe prevalence of knee pain increases with age and is affected by lifestyle factors, such as obesity and lack of exercise. People living with Arthritis deal with chronic pain, joint stiffness, structural damage, and the progressive loss of cartilage. The condition can be disabling.\r\n\r\n<strong>But did you know the pain of arthritis does not come from the cartilage?</strong> Even though cartilage loss plays a central role in arthritis, it is not the source of pain. How can that be? It\'s because cartilage tissue does not contain nerve fibers.\r\n<h4><em>Nerve Fibers</em></h4>\r\nThe tissues containing many nerve fibers include the ligaments, tendons, meniscus, joint capsule, synovium, and periosteum. Arthritis pain is due to injury to these types of tissue. Since soft tissue is mainly responsible for the smooth movement of the knee joint, when abnormal forces are placed on them, injury occurs that disrupts the balance between normal motion and instability. This is where the painful process begins.\r\n\r\n<strong>The nerve endings that cause pain are also present where the ligaments and tendons insert into the bone, and this area can become a source of ongoing knee pain. Regenerative Orthopedic treatments are often directed at these sites. And as such, they are recognized as one of the most effective non-surgical therapies to treat knee pain.</strong>\r\n<h4><em>Ligaments</em></h4>\r\nLigaments play a crucial role in the stability of the knee because they guide the motion of the knee joints and restrain excessive motion to prevent dislocation. Ligament injuries are also the most common form of a knee injury. Ligament injury then upsets and disrupts the balance in the motion of the knee joint.\r\n\r\nInjuries that result in ligament damage also commonly result in injury to other knee structures, such as the meniscus, tendons, and cartilage. As mentioned, these injuries can eventually lead to arthritis, which can transpire within a few years with severe injuries or possibly over decades if the injury is less severe.\r\n<h3>Regenerative Orthopedic Treatments Heal the Soft Tissue Injuries</h3>\r\nAlthough many treatments may offer temporary pain relief, it is important to find a treatment that does more than chase the symptoms. And actual repair of the injured soft tissue is vital to restore normal motion to the knee joint.\r\n\r\nRegenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy, are effective therapies that do just that. These treatments stimulate healing of ligaments, tendons, and menisci and restore normal functioning of the knee joint, thus preventing the arthritic progression. In more advanced cases, the Gold Standard in Stem Cell Therapy can be used to promote the regeneration of articular cartilage.\r\n\r\nRegenerative Orthopedic treatments target and repair the structures generating the pain in knee arthritis, effectively resolving the pain. And Regenerative Orthopedic treatments give hope to arthritis sufferers because they provide not only pain relief but also joint repair, resulting in improved function and a better quality of life.\r\n\r\nStem Cell Therapy is an effective knee arthritis treatment as well as articular cartilage defects.3 If you are suffering from knee arthritis pain, a knee injury, or even an articular cartilage defect, call us today. We\'d love to help you get back to doing what you love.\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Hamoud Al Faqeh, Bin Mohamed Yahya N H, Hui Cheng C, Bin Saim A, BtHj I R (2012) The potential of intra-articular injection of chondrogenic- induced bone marrow stem cells to retard the progression of osteoarthritis in a sheep model, Experimental Gerontology 47: 458- 464.</li>\r\n 	<li>Eslaminejad M B, Poor E M (2014) Mesenchymal stem cells as a potent cell source for articular cartilage regeneration. World J Stem Cells 6: 344- 354.</li>\r\n 	<li>\r\n<div class=\"page\" title=\"Page 12\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nHeba M Arakeep, et al. <a href=\"https://opastonline.com/wp-content/uploads/2019/01/repair-of-articular-cartilage-defects-using-bone-marrow-derived-mesenchymal-stem-cells-in-rabbits-scri-19.pdf\">Repair of Articular Cartilage Defects using Bone Marrow-Derived Mesenchymal Stem Cells in Rabbits</a>. Stem Cell Res Int (2019).  3: ( 1 ) 1 -12.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 11\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\"></div>\r\n</div>\r\n</div></li>\r\n</ol>','Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain','','inherit','closed','closed','','2347-revision-v1','','','2021-06-16 23:31:21','2021-06-16 23:31:21','',2347,'https://www.drfields.com/?p=4732',0,'revision','',0),(4733,9,'2021-06-16 23:32:09','2021-06-16 23:32:09','Slide5','Slide5','Non-Surgical Knee Arthritis Treatment and Even Repair of Cartilage Defects','inherit','open','closed','','slide5','','','2021-06-16 23:33:02','2021-06-16 23:33:02','',2347,'https://www.drfields.com/wp-content/uploads/2021/06/Slide5.jpeg',0,'attachment','image/jpeg',0),(4734,9,'2021-06-16 23:34:02','2021-06-16 23:34:02','Stem.joint.kw','Stem.joint.kw','Effective Non-Surgical Knee Arthritis Treatment and Articular Defect Repair','inherit','open','closed','','stem-joint-kw','','','2021-06-16 23:34:58','2021-06-16 23:34:58','',2347,'https://www.drfields.com/wp-content/uploads/2021/06/Stem.Joint_.KW_.jpeg',0,'attachment','image/jpeg',0),(4735,9,'2021-06-16 23:35:56','2021-06-16 23:35:56','<h2>Knee Arthritis Treatment That Gets Rid of Pain at the Source</h2>\r\n[caption id=\"attachment_4729\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4729\" src=\"https://www.drfields.com/wp-content/uploads/2021/06/knee-arthritis-500x500.jpg\" alt=\"Knee Arthritis\" width=\"500\" height=\"500\" /> <strong>               Effective Non-Surgical Knee Arthritis Treatment</strong>[/caption]\r\n\r\nWe treat a lot of knees at our clinic. Part of the reason is that knee injuries are so prevalent. Another reason is that quite often, the other treatments patients receive only provide temporary relief.\r\n\r\nWhen an injury is left untreated or when the treatment fails to adequately repair an injury, the knee becomes unstable. The instability sets the knee up for a cycle of abnormal joint motion. And that promotes knee degeneration which destroys the joint over time. The result? The knee is set up for the development of arthritis.\r\n\r\nIf you already have arthritis in your knee, we can help. Even if surgery has been recommended due to the advanced nature of your arthritis, there is a good chance we can help. Studies have shown the effectiveness of this non-surgical Stem Cell Therapy to treat knee arthritis. 1,2\r\n\r\nIf you have injured your meniscus or ACL, Regenerative Orthopedics is also an effective therapy capable of repairing the injury and stopping the cycle that leads to arthritis.\r\n\r\n<strong>And...Regenerative Orthopedics is also an ideal treatment for anyone looking to avoid knee replacement!</strong>\r\n<h3>The Healthy Knee vs. An Injured Knee</h3>\r\nLet\'s talk a bit about our knees. The knee is the largest joint in the body and one of the more complex joints. To accomplish all of the tasks the knee needs to do, many forces and stressors are placed on it.\r\n\r\nA healthy knee moves smoothly during walking activities. And it also moves smoothly when running, jumping, and turning. One of the most important keys to a healthy knee is maintaining stability in response to the forces placed upon it. When any part of the knee joint is injured, such as the bony configuration, muscles, menisci, joint capsule, or ligaments, the whole stability of the knee is disrupted. And that causes symptoms and pain!\r\n\r\nWhen knee injury does occur, Regenerative Orthopedics can stop the disruption and stabilize the knee again. The treatment does this by promoting the healing of unstable and weakened ligaments and other injured joint structures. The result is the elimination of pain associated with knee conditions caused by abnormal joint motion.\r\n<h3>What About Knee Arthritis Treatment?</h3>\r\nKnee pain is one of the most common reasons people seek out medical help. And knee osteoarthritis is a primary player. Arthritis impairs the mobility and activity level of those who suffer from it. If you suffer from it, you sure know the effect it has on your life.\r\n\r\nThe prevalence of knee pain increases with age and is affected by lifestyle factors, such as obesity and lack of exercise. People living with Arthritis deal with chronic pain, joint stiffness, structural damage, and the progressive loss of cartilage. The condition can be disabling.\r\n\r\n<strong>But did you know the pain of arthritis does not come from the cartilage?</strong> Even though cartilage loss plays a central role in arthritis, it is not the source of pain. How can that be? It\'s because cartilage tissue does not contain nerve fibers.\r\n<h4><em>Nerve Fibers</em></h4>\r\nThe tissues containing many nerve fibers include the ligaments, tendons, meniscus, joint capsule, synovium, and periosteum. Arthritis pain is due to injury to these types of tissue. Since soft tissue is mainly responsible for the smooth movement of the knee joint, when abnormal forces are placed on them, injury occurs that disrupts the balance between normal motion and instability. This is where the painful process begins.\r\n\r\n<strong>The nerve endings that cause pain are also present where the ligaments and tendons insert into the bone, and this area can become a source of ongoing knee pain. Regenerative Orthopedic treatments are often directed at these sites. And as such, they are recognized as one of the most effective non-surgical therapies to treat knee pain.</strong>\r\n<h4><em>Ligaments</em></h4>\r\nLigaments play a crucial role in the stability of the knee because they guide the motion of the knee joints and restrain excessive motion to prevent dislocation. Ligament injuries are also the most common form of a knee injury. Ligament injury then upsets and disrupts the balance in the motion of the knee joint.\r\n\r\nInjuries that result in ligament damage also commonly result in injury to other knee structures, such as the meniscus, tendons, and cartilage. As mentioned, these injuries can eventually lead to arthritis, which can transpire within a few years with severe injuries or possibly over decades if the injury is less severe.\r\n<h3>Regenerative Orthopedic Treatments Heal the Soft Tissue Injuries</h3>\r\n[caption id=\"attachment_4734\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4734 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/06/Stem.Joint_.KW_-500x375.jpeg\" alt=\"Stem.joint.kw\" width=\"500\" height=\"375\" /> <strong>Non-Surgical Knee Arthritis Treatment &amp; Articular Defect Repair</strong>[/caption]\r\n\r\nAlthough many treatments may offer temporary pain relief, it is important to find a treatment that does more than chase the symptoms. And actual repair of the injured soft tissue is vital to restore normal motion to the knee joint.\r\n\r\nRegenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy, are effective therapies that do just that. These treatments stimulate healing of ligaments, tendons, and menisci and restore normal functioning of the knee joint, thus preventing the arthritic progression. In more advanced cases, the Gold Standard in Stem Cell Therapy can be used to promote the regeneration of articular cartilage.\r\n\r\nRegenerative Orthopedic treatments target and repair the structures generating the pain in knee arthritis, effectively resolving the pain. And Regenerative Orthopedic treatments give hope to arthritis sufferers because they provide not only pain relief but also joint repair, resulting in improved function and a better quality of life.\r\n\r\nStem Cell Therapy is an effective knee arthritis treatment as well as articular cartilage defects.3 If you are suffering from knee arthritis pain, a knee injury, or even an articular cartilage defect, call us today. We\'d love to help you get back to doing what you love.\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Hamoud Al Faqeh, Bin Mohamed Yahya N H, Hui Cheng C, Bin Saim A, BtHj I R (2012) The potential of intra-articular injection of chondrogenic- induced bone marrow stem cells to retard the progression of osteoarthritis in a sheep model, Experimental Gerontology 47: 458- 464.</li>\r\n 	<li>Eslaminejad M B, Poor E M (2014) Mesenchymal stem cells as a potent cell source for articular cartilage regeneration. World J Stem Cells 6: 344- 354.</li>\r\n 	<li>\r\n<div class=\"page\" title=\"Page 12\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nHeba M Arakeep, et al. <a href=\"https://opastonline.com/wp-content/uploads/2019/01/repair-of-articular-cartilage-defects-using-bone-marrow-derived-mesenchymal-stem-cells-in-rabbits-scri-19.pdf\">Repair of Articular Cartilage Defects using Bone Marrow-Derived Mesenchymal Stem Cells in Rabbits</a>. Stem Cell Res Int (2019).  3: ( 1 ) 1 -12.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 11\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\"></div>\r\n</div>\r\n</div></li>\r\n</ol>','Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain','','inherit','closed','closed','','2347-revision-v1','','','2021-06-16 23:35:56','2021-06-16 23:35:56','',2347,'https://www.drfields.com/?p=4735',0,'revision','',0),(4736,9,'2021-06-16 23:36:57','2021-06-16 23:36:57','<h2>Knee Arthritis Treatment That Gets Rid of Pain at the Source</h2>\r\n[caption id=\"attachment_4729\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4729\" src=\"https://www.drfields.com/wp-content/uploads/2021/06/knee-arthritis-500x500.jpg\" alt=\"Knee Arthritis\" width=\"500\" height=\"500\" /> <strong>               Effective Non-Surgical Knee Arthritis Treatment</strong>[/caption]\r\n\r\nWe treat a lot of knees at our clinic. Part of the reason is that knee injuries are so prevalent. Another reason is that quite often, the other treatments patients receive only provide temporary relief.\r\n\r\nWhen an injury is left untreated or when the treatment fails to adequately repair an injury, the knee becomes unstable. The instability sets the knee up for a cycle of abnormal joint motion. And that promotes knee degeneration which destroys the joint over time. The result? The knee is set up for the development of arthritis.\r\n\r\nIf you already have arthritis in your knee, we can help. Even if surgery has been recommended due to the advanced nature of your arthritis, there is a good chance we can help. Studies have shown the effectiveness of this non-surgical Stem Cell Therapy to treat knee arthritis. 1,2\r\n\r\nIf you have injured your meniscus or ACL, Regenerative Orthopedics is also an effective therapy capable of repairing the injury and stopping the cycle that leads to arthritis.\r\n\r\n<strong>And...Regenerative Orthopedics is also an ideal treatment for anyone looking to avoid knee replacement!</strong>\r\n<h3>The Healthy Knee vs. An Injured Knee</h3>\r\nLet\'s talk a bit about our knees. The knee is the largest joint in the body and one of the more complex joints. To accomplish all of the tasks the knee needs to do, many forces and stressors are placed on it.\r\n\r\nA healthy knee moves smoothly during walking activities. And it also moves smoothly when running, jumping, and turning. One of the most important keys to a healthy knee is maintaining stability in response to the forces placed upon it. When any part of the knee joint is injured, such as the bony configuration, muscles, menisci, joint capsule, or ligaments, the whole stability of the knee is disrupted. And that causes symptoms and pain!\r\n\r\nWhen knee injury does occur, Regenerative Orthopedics can stop the disruption and stabilize the knee again. The treatment does this by promoting the healing of unstable and weakened ligaments and other injured joint structures. The result is the elimination of pain associated with knee conditions caused by abnormal joint motion.\r\n<h3>What About Knee Arthritis Treatment?</h3>\r\nKnee pain is one of the most common reasons people seek out medical help. And knee osteoarthritis is a primary player. Arthritis impairs the mobility and activity level of those who suffer from it. If you suffer from it, you sure know the effect it has on your life.\r\n\r\nThe prevalence of knee pain increases with age and is affected by lifestyle factors, such as obesity and lack of exercise. People living with Arthritis deal with chronic pain, joint stiffness, structural damage, and the progressive loss of cartilage. The condition can be disabling.\r\n\r\n<strong>But did you know the pain of arthritis does not come from the cartilage?</strong> Even though cartilage loss plays a central role in arthritis, it is not the source of pain. How can that be? It\'s because cartilage tissue does not contain nerve fibers.\r\n<h4><em>Nerve Fibers</em></h4>\r\nThe tissues containing many nerve fibers include the ligaments, tendons, meniscus, joint capsule, synovium, and periosteum. Arthritis pain is due to injury to these types of tissue. Since soft tissue is mainly responsible for the smooth movement of the knee joint, when abnormal forces are placed on them, injury occurs that disrupts the balance between normal motion and instability. This is where the painful process begins.\r\n\r\n<strong>The nerve endings that cause pain are also present where the ligaments and tendons insert into the bone, and this area can become a source of ongoing knee pain. Regenerative Orthopedic treatments are often directed at these sites. And as such, they are recognized as one of the most effective non-surgical therapies to treat knee pain.</strong>\r\n<h4><em>Ligaments</em></h4>\r\nLigaments play a crucial role in the stability of the knee because they guide the motion of the knee joints and restrain excessive motion to prevent dislocation. Ligament injuries are also the most common form of a knee injury. Ligament injury then upsets and disrupts the balance in the motion of the knee joint.\r\n\r\nInjuries that result in ligament damage also commonly result in injury to other knee structures, such as the meniscus, tendons, and cartilage. As mentioned, these injuries can eventually lead to arthritis, which can transpire within a few years with severe injuries or possibly over decades if the injury is less severe.\r\n<h3>Regenerative Orthopedic Treatments Heal the Soft Tissue Injuries</h3>\r\n[caption id=\"attachment_4734\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4734 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/06/Stem.Joint_.KW_-500x375.jpeg\" alt=\"Stem.joint.kw\" width=\"500\" height=\"375\" /> <strong>Non-Surgical Knee Arthritis Treatment &amp; Articular Defect Repair</strong>[/caption]\r\n\r\nAlthough many treatments may offer temporary pain relief, it is important to find a treatment that does more than chase the symptoms. And actual repair of the injured soft tissue is vital to restore normal motion to the knee joint.\r\n\r\nRegenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy, are effective therapies that do just that. These treatments stimulate healing of ligaments, tendons, and menisci and restore normal functioning of the knee joint, thus preventing the arthritic progression. In more advanced cases, the Gold Standard in Stem Cell Therapy can be used to promote the regeneration of articular cartilage.\r\n\r\nRegenerative Orthopedic treatments target and repair the structures generating the pain in knee arthritis, effectively resolving the pain. And Regenerative Orthopedic treatments give hope to arthritis sufferers because they provide not only pain relief but also joint repair, resulting in improved function and a better quality of life.\r\n\r\nStem Cell Therapy is an effective knee arthritis treatment as well as articular cartilage defects.3 If you are suffering from knee arthritis pain, a knee injury, or even an articular cartilage defect, call us today. We\'d love to help you get back to doing what you love.\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Hamoud Al Faqeh, Bin Mohamed Yahya N H, Hui Cheng C, Bin Saim A, BtHj I R (2012) The potential of intra-articular injection of chondrogenic- induced bone marrow stem cells to retard the progression of osteoarthritis in a sheep model, Experimental Gerontology 47: 458- 464.</li>\r\n 	<li>Eslaminejad M B, Poor E M (2014) Mesenchymal stem cells as a potent cell source for articular cartilage regeneration. World J Stem Cells 6: 344- 354.</li>\r\n 	<li>\r\n<div class=\"page\" title=\"Page 12\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nHeba M Arakeep, et al. <a href=\"https://opastonline.com/wp-content/uploads/2019/01/repair-of-articular-cartilage-defects-using-bone-marrow-derived-mesenchymal-stem-cells-in-rabbits-scri-19.pdf\">Repair of Articular Cartilage Defects using Bone Marrow-Derived Mesenchymal Stem Cells in Rabbits</a>. Stem Cell Res Int (2019).  3: ( 1 ) 1 -12.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 11\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\"></div>\r\n</div>\r\n</div></li>\r\n</ol>','Knee Arthritis Treatment That Gets Rid of Pain at the Source','','inherit','closed','closed','','2347-revision-v1','','','2021-06-16 23:36:57','2021-06-16 23:36:57','',2347,'https://www.drfields.com/?p=4736',0,'revision','',0),(4737,9,'2021-06-16 23:38:39','2021-06-16 23:38:39','<h2>Knee Arthritis Treatment That Gets Rid of Pain at the Source</h2>\r\n[caption id=\"attachment_4729\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4729\" src=\"https://www.drfields.com/wp-content/uploads/2021/06/knee-arthritis-500x500.jpg\" alt=\"Knee Arthritis\" width=\"500\" height=\"500\" /> <strong>               Effective Non-Surgical Knee Arthritis Treatment</strong>[/caption]\r\n\r\nWe treat a lot of knees at our clinic. Part of the reason is that knee injuries are so prevalent. Another reason is that quite often, the other treatments patients receive only provide temporary relief.\r\n\r\nWhen an injury is left untreated or when the treatment fails to adequately repair an injury, the knee becomes unstable. The instability sets the knee up for a cycle of abnormal joint motion. And that promotes knee degeneration which destroys the joint over time. The result? The knee is set up for the development of arthritis.\r\n\r\nIf you already have arthritis in your knee, we can help. Even if surgery has been recommended due to the advanced nature of your arthritis, there is a good chance we can help. Studies have shown the effectiveness of this non-surgical Stem Cell Therapy to treat knee arthritis. 1,2\r\n\r\nIf you have injured your meniscus or ACL, Regenerative Orthopedics is also an effective therapy capable of repairing the injury and stopping the cycle that leads to arthritis.\r\n\r\n<strong>And...Regenerative Orthopedics is also an ideal treatment for anyone looking to avoid knee replacement!</strong>\r\n<h3>The Healthy Knee vs. An Injured Knee</h3>\r\nLet\'s talk a bit about our knees. The knee is the largest joint in the body and one of the more complex joints. To accomplish all of the tasks the knee needs to do, many forces and stressors are placed on it.\r\n\r\nA healthy knee moves smoothly during walking activities. And it also moves smoothly when running, jumping, and turning. One of the most important keys to a healthy knee is maintaining stability in response to the forces placed upon it. When any part of the knee joint is injured, such as the bony configuration, muscles, menisci, joint capsule, or ligaments, the whole stability of the knee is disrupted. And that causes symptoms and pain!\r\n\r\nWhen knee injury does occur, Regenerative Orthopedics can stop the disruption and stabilize the knee again. The treatment does this by promoting the healing of unstable and weakened ligaments and other injured joint structures. The result is the elimination of pain associated with knee conditions caused by abnormal joint motion.\r\n<h3>What About Knee Arthritis Treatment?</h3>\r\nKnee pain is one of the most common reasons people seek out medical help. And knee osteoarthritis is a primary player. Arthritis impairs the mobility and activity level of those who suffer from it. If you suffer from it, you sure know the effect it has on your life.\r\n\r\nThe prevalence of knee pain increases with age and is affected by lifestyle factors, such as obesity and lack of exercise. People living with Arthritis deal with chronic pain, joint stiffness, structural damage, and the progressive loss of cartilage. The condition can be disabling.\r\n\r\n<strong>But did you know the pain of arthritis does not come from the cartilage?</strong> Even though cartilage loss plays a central role in arthritis, it is not the source of pain. How can that be? It\'s because cartilage tissue does not contain nerve fibers.\r\n<h5><em>Nerve Fibers and Pain</em></h5>\r\nThe tissues containing many nerve fibers include the ligaments, tendons, meniscus, joint capsule, synovium, and periosteum. Arthritis pain is due to injury to these types of tissue. Since soft tissue is mainly responsible for the smooth movement of the knee joint, when abnormal forces are placed on them, injury occurs that disrupts the balance between normal motion and instability. This is where the painful process begins.\r\n\r\n<strong>The nerve endings that cause pain are also present where the ligaments and tendons insert into the bone, and this area can become a source of ongoing knee pain. Regenerative Orthopedic treatments are often directed at these sites. And as such, they are recognized as one of the most effective non-surgical therapies to treat knee pain.</strong>\r\n<h5><em>Ligaments And Pain</em></h5>\r\nLigaments play a crucial role in the stability of the knee because they guide the motion of the knee joints and restrain excessive motion to prevent dislocation. Ligament injuries are also the most common form of a knee injury. Ligament injury then upsets and disrupts the balance in the motion of the knee joint.\r\n\r\nInjuries that result in ligament damage also commonly result in injury to other knee structures, such as the meniscus, tendons, and cartilage. As mentioned, these injuries can eventually lead to arthritis, which can transpire within a few years with severe injuries or possibly over decades if the injury is less severe.\r\n<h3>Regenerative Orthopedic Treatments Heal the Soft Tissue Injuries</h3>\r\n[caption id=\"attachment_4734\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4734 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/06/Stem.Joint_.KW_-500x375.jpeg\" alt=\"Stem.joint.kw\" width=\"500\" height=\"375\" /> <strong>Non-Surgical Knee Arthritis Treatment &amp; Articular Defect Repair</strong>[/caption]\r\n\r\nAlthough many treatments may offer temporary pain relief, it is important to find a treatment that does more than chase the symptoms. And actual repair of the injured soft tissue is vital to restore normal motion to the knee joint.\r\n\r\nRegenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy, are effective therapies that do just that. These treatments stimulate healing of ligaments, tendons, and menisci and restore normal functioning of the knee joint, thus preventing the arthritic progression. In more advanced cases, the Gold Standard in Stem Cell Therapy can be used to promote the regeneration of articular cartilage.\r\n\r\nRegenerative Orthopedic treatments target and repair the structures generating the pain in knee arthritis, effectively resolving the pain. And Regenerative Orthopedic treatments give hope to arthritis sufferers because they provide not only pain relief but also joint repair, resulting in improved function and a better quality of life.\r\n\r\nStem Cell Therapy is an effective knee arthritis treatment as well as articular cartilage defects.3 If you are suffering from knee arthritis pain, a knee injury, or even an articular cartilage defect, call us today. We\'d love to help you get back to doing what you love.\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Hamoud Al Faqeh, Bin Mohamed Yahya N H, Hui Cheng C, Bin Saim A, BtHj I R (2012) The potential of intra-articular injection of chondrogenic- induced bone marrow stem cells to retard the progression of osteoarthritis in a sheep model, Experimental Gerontology 47: 458- 464.</li>\r\n 	<li>Eslaminejad M B, Poor E M (2014) Mesenchymal stem cells as a potent cell source for articular cartilage regeneration. World J Stem Cells 6: 344- 354.</li>\r\n 	<li>\r\n<div class=\"page\" title=\"Page 12\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nHeba M Arakeep, et al. <a href=\"https://opastonline.com/wp-content/uploads/2019/01/repair-of-articular-cartilage-defects-using-bone-marrow-derived-mesenchymal-stem-cells-in-rabbits-scri-19.pdf\">Repair of Articular Cartilage Defects using Bone Marrow-Derived Mesenchymal Stem Cells in Rabbits</a>. Stem Cell Res Int (2019).  3: ( 1 ) 1 -12.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 11\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\"></div>\r\n</div>\r\n</div></li>\r\n</ol>','Knee Arthritis Treatment That Gets Rid of Pain at the Source','','inherit','closed','closed','','2347-revision-v1','','','2021-06-16 23:38:39','2021-06-16 23:38:39','',2347,'https://www.drfields.com/?p=4737',0,'revision','',0),(4738,9,'2021-06-16 23:39:59','2021-06-16 23:39:59','<h2>Knee Arthritis Treatment That Gets Rid of Pain at the Source</h2>\r\n[caption id=\"attachment_4729\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4729\" src=\"https://www.drfields.com/wp-content/uploads/2021/06/knee-arthritis-500x500.jpg\" alt=\"Knee Arthritis\" width=\"500\" height=\"500\" /> <strong>               Effective Non-Surgical Knee Arthritis Treatment</strong>[/caption]\r\n\r\nWe treat a lot of knees at our clinic. Part of the reason is that knee injuries are so prevalent. Another reason is that quite often, the other treatments patients receive only provide temporary relief.\r\n\r\nWhen an injury is left untreated or when the treatment fails to adequately repair an injury, the knee becomes unstable. The instability sets the knee up for a cycle of abnormal joint motion. And that promotes knee degeneration which destroys the joint over time. The result? The knee is set up for the development of arthritis.\r\n\r\nIf you already have arthritis in your knee, we can help. Even if surgery has been recommended due to the advanced nature of your arthritis, there is a good chance we can help. Studies have shown the effectiveness of this non-surgical Stem Cell Therapy to treat knee arthritis. 1,2\r\n\r\nIf you have injured your meniscus or ACL, Regenerative Orthopedics is also an effective therapy capable of repairing the injury and stopping the cycle that leads to arthritis.\r\n\r\n<strong>And...Regenerative Orthopedics is also an ideal treatment for anyone looking to avoid knee replacement!</strong>\r\n<h3>The Healthy Knee vs. An Injured Knee</h3>\r\nLet\'s talk a bit about our knees. The knee is the largest joint in the body and one of the more complex joints. To accomplish all of the tasks the knee needs to do, many forces and stressors are placed on it.\r\n\r\nA healthy knee moves smoothly during walking activities. And it also moves smoothly when running, jumping, and turning. One of the most important keys to a healthy knee is maintaining stability in response to the forces placed upon it. When any part of the knee joint is injured, such as the bony configuration, muscles, menisci, joint capsule, or ligaments, the whole stability of the knee is disrupted. And that causes symptoms and pain!\r\n\r\nWhen knee injury does occur, Regenerative Orthopedics can stop the disruption and stabilize the knee again. The treatment does this by promoting the healing of unstable and weakened ligaments and other injured joint structures. The result is the elimination of pain associated with knee conditions caused by abnormal joint motion.\r\n<h3>What About Knee Arthritis Treatment?</h3>\r\nKnee pain is one of the most common reasons people seek out medical help. And knee osteoarthritis is a primary player. Arthritis impairs the mobility and activity level of those who suffer from it. If you suffer from it, you sure know the effect it has on your life.\r\n\r\nThe prevalence of knee pain increases with age and is affected by lifestyle factors, such as obesity and lack of exercise. People living with Arthritis deal with chronic pain, joint stiffness, structural damage, and the progressive loss of cartilage. The condition can be disabling.\r\n\r\n<strong>But did you know the pain of arthritis does not come from the cartilage?</strong> Even though cartilage loss plays a central role in arthritis, it is not the source of pain. How can that be? It\'s because cartilage tissue does not contain nerve fibers.\r\n<h5><em>Nerve Fibers and Pain</em></h5>\r\nThe tissues containing many nerve fibers include the ligaments, tendons, meniscus, joint capsule, synovium, and periosteum. Arthritis pain is due to injury to these types of tissue. Since soft tissue is mainly responsible for the smooth movement of the knee joint, when abnormal forces are placed on them, injury occurs that disrupts the balance between normal motion and instability. This is where the painful process begins.\r\n\r\n<strong>The nerve endings that cause pain are also present where the ligaments and tendons insert into the bone, and this area can become a source of ongoing knee pain. Regenerative Orthopedic treatments are often directed at these sites. And as such, they are recognized as one of the most effective non-surgical therapies to treat knee pain.</strong>\r\n<h5><em>Ligaments And Pain</em></h5>\r\nLigaments play a crucial role in the stability of the knee because they guide the motion of the knee joints and restrain excessive motion to prevent dislocation. Ligament injuries are also the most common form of a knee injury. Ligament injury then upsets and disrupts the balance in the motion of the knee joint.\r\n\r\nInjuries that result in ligament damage also commonly result in injury to other knee structures, such as the meniscus, tendons, and cartilage. As mentioned, these injuries can eventually lead to arthritis, which can transpire within a few years with severe injuries or possibly over decades if the injury is less severe.\r\n<h3>Regenerative Orthopedic Treatments Heal the Soft Tissue Injuries</h3>\r\n[caption id=\"attachment_4734\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4734 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/06/Stem.Joint_.KW_-500x375.jpeg\" alt=\"Stem.joint.kw\" width=\"500\" height=\"375\" /> <strong>Non-Surgical Knee Arthritis Treatment &amp; Articular Defect Repair</strong>[/caption]\r\n\r\nAlthough many treatments may offer temporary pain relief, it is important to find a treatment that does more than chase the symptoms. And actual repair of the injured soft tissue is vital to restore normal motion to the knee joint.\r\n\r\nRegenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy, are effective therapies that do just that. These treatments stimulate healing of ligaments, tendons, and menisci and restore normal functioning of the knee joint, thus preventing the arthritic progression. In more advanced cases, the Gold Standard in Stem Cell Therapy can be used to promote the regeneration of articular cartilage.\r\n\r\nRegenerative Orthopedic treatments target and repair the structures generating the pain in knee arthritis, effectively resolving the pain. And Regenerative Orthopedic treatments give hope to arthritis sufferers because they provide not only pain relief but also joint repair, resulting in improved function and a better quality of life.\r\n\r\nStem Cell Therapy is an effective knee arthritis treatment as well as an articular cartilage defect repair.3 If you are suffering from knee arthritis pain, a knee injury, or even an articular cartilage defect, call us today. We\'d love to help you get back to doing what you love.\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Hamoud Al Faqeh, Bin Mohamed Yahya N H, Hui Cheng C, Bin Saim A, BtHj I R (2012) The potential of intra-articular injection of chondrogenic- induced bone marrow stem cells to retard the progression of osteoarthritis in a sheep model, Experimental Gerontology 47: 458- 464.</li>\r\n 	<li>Eslaminejad M B, Poor E M (2014) Mesenchymal stem cells as a potent cell source for articular cartilage regeneration. World J Stem Cells 6: 344- 354.</li>\r\n 	<li>\r\n<div class=\"page\" title=\"Page 12\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nHeba M Arakeep, et al. <a href=\"https://opastonline.com/wp-content/uploads/2019/01/repair-of-articular-cartilage-defects-using-bone-marrow-derived-mesenchymal-stem-cells-in-rabbits-scri-19.pdf\">Repair of Articular Cartilage Defects using Bone Marrow-Derived Mesenchymal Stem Cells in Rabbits</a>. Stem Cell Res Int (2019).  3: ( 1 ) 1 -12.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"page\" title=\"Page 11\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\"></div>\r\n</div>\r\n</div></li>\r\n</ol>','Knee Arthritis Treatment That Gets Rid of Pain at the Source','','inherit','closed','closed','','2347-revision-v1','','','2021-06-16 23:39:59','2021-06-16 23:39:59','',2347,'https://www.drfields.com/?p=4738',0,'revision','',0),(4739,9,'2021-06-18 21:21:35','2021-06-18 21:21:35','Back Pain. Prolotherapy','Back Pain. Prolotherapy','Stop Back Pain with Prolotherapy','inherit','open','closed','','back-pain-prolotherapy','','','2021-06-18 21:40:10','2021-06-18 21:40:10','',2760,'https://www.drfields.com/wp-content/uploads/2019/09/Back-Pain.-Prolotherapy.jpeg',0,'attachment','image/jpeg',0),(4740,9,'2021-06-18 21:40:54','2021-06-18 21:40:54','<h4>Stop Back Pain and the Endless Cycle of Chasing Symptoms</h4>\r\n<span style=\"font-weight: 400;\">So many people suffer with back pain, stuck in a cycle of pain medications, hours of therapy appointments, more prescription medications, over the counter medications, supplements, and more therapy. Only to continue to suffer from continued back pain. The cycle is an attempt to manage the pain. </span><span style=\"font-weight: 400;\">You might think, “Of course, I want to manage the pain!” But what if there is a better way, and one that actually corrects the back pain problem. Regenerative Orthopedics can stop back pain and the cycle because it repairs the underlying source of pain. Since it treats at the source, it ends up resolving the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\"> Chasing symptoms keeps the sufferer in the pain cycle. Correcting the problems with Regenerative Orthopedics can stop back pain and the endless cycle!</span>\r\n\r\n[caption id=\"attachment_4739\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4739\" src=\"https://www.drfields.com/wp-content/uploads/2019/09/Back-Pain.-Prolotherapy-500x375.jpeg\" alt=\"Back Pain. Prolotherapy\" width=\"500\" height=\"375\" /> <strong>                     Stop Back Pain with Prolotherapy</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<b>What Is the Reason Behind Most Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Since back pain is so common and a leading cause of disability, it is important to look at the reason for it. The underlying cause of most back pain issues is </span><b><i>spinal instability</i></b><span style=\"font-weight: 400;\">. </span>\r\n\r\n<span style=\"font-weight: 400;\">What is spinal instability you might ask? When you bend and twist and tweak your back, you injure soft tissue, like muscle and ligaments. Muscles have a great blood supply, so they heal quickly. Ligaments have a poor blood supply, and take quite a while to heal. In fact, they heal quite poorly. </span>\r\n\r\n<span style=\"font-weight: 400;\">Unhealed ligaments are weak and lax, similar to stretched out rubber bands. Ligaments connect bone to bone. So if the ligaments are weak, then the bone connection will be weak and wobbly. That bone connection or joint is then unstable. </span>\r\n<h3>The Vertebral Spine</h3>\r\n<span style=\"font-weight: 400;\">The vertebral bones in the back make up the spine. So when the ligaments in the spine are weak or wobbly, that makes for spinal instability. When these ligaments remain unhealed, the problem gets worse and worse. The ligaments get more lax and the spine becomes more unstable. You can imagine that if the joints of the spine become wobbly, that the bony structures will have difficulty moving like they should. </span>\r\n\r\n<span style=\"font-weight: 400;\">When motion in the vertebral joint connections stops being smooth, the abnormal motion causes the joint structures to degenerate. Instability and abnormal joint motion is behind all types of painful back conditions. Painful problems like bulging discs, arthritis, sciatica, and degenerative joint disease can result from abnormal motion in the spine.</span>\r\n\r\n<span style=\"font-weight: 400;\"> The underlying problem is ligament weakness, which creates the abnormal joint motion that will eventually damage the joint structures and elicit pain. Pain pills aren’t able to fix the weakened ligaments. And cortisone makes soft tissue weaker. So even if these things provide some short-term relief, they will eventually worsen the problem in the long run. Massage can’t strengthen weakened ligaments either.</span>\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4><em>Regenerative Orthopedics Can Stop Back Pain</em></h4>\r\n<span style=\"font-weight: 400;\">What’s the solution? The degenerative condition needs a regenerative treatment. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are all regenerative treatments that strengthen ligaments, restore normal joint motion, and regenerate joint structures. Good quality <a href=\"https://lyfebotanicals.com/health/turmeric-back-pain/\">supplements</a>, like turmeric, which can aid in the healing process, are also of benefit.</span>\r\n\r\n<b>Ligaments Are Structures that Provide Stability to the Joint</b>\r\n\r\n<span style=\"font-weight: 400;\">As mentioned earlier, the most common cause of unresolved back pain is spinal instability, due to weakened and stretched out ligaments. Ligaments are very important for stability of the spine and for proper motion. In fact, they are some of the main stabilizing structure for the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Sure, those with back pain will definitely complain of muscle spasms and tightness, because muscles help with stability too. But muscles will spasm because they are overcompensating for the inability of the injured ligaments to keep the spine in place. Treatments that relieve muscle spasms will give temporary reprieve of the spasms. But they will not address the ligament weakness. Instability and pain will continue, because the ligaments are unable to hold the adjacent bones of the spine together properly.</span>\r\n\r\n<b>How Can You Stop Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Each year, thousands and thousands of people are disabled due to some type of painful back condition. Back pain is actually one of the main reasons people come to see us at OrthoRegen<sup>®</sup>. By the time they come to see us, they have usually tried numerous types of pills, treatments, and even surgery. </span>\r\n\r\n<span style=\"font-weight: 400;\">But they are in our office because the pain has not stopped!</span><span style=\"font-weight: 400;\"> That’s because these other treatments are only short-lived and because they only provide temporary relief. Even surgical treatments end up with poor rates of success. Surgery may emphasize treatment of the disc, for example, but it misses treating the ligament injury which is the originating source of the pain. So pain continues.</span>\r\n<h3>Ligaments Can Refer Pain Too</h3>\r\n<span style=\"font-weight: 400;\">The places where the ligaments attach to the bones are full of nerves, which elicit pain when stretched out or injured. Injured ligaments can send out referral pain down the back of the leg and even to the foot. They can also refer pain into the groin and pelvic floor. If weak ligaments exist, the physician knowledgeable in examination techniques can diagnose instability during the physical examination with varied maneuvers and positioning. Even palpating, or pressing with the thumb at the ligament attachments will elicit pain indicating ligament laxity.</span>\r\n\r\n<span style=\"font-weight: 400;\">Back pain is one of the easiest conditions to treat with Regenerative Orthopedics. Most often, the pain is located in the lower back, where the vertebrae of the lumbar spine meet the pelvis. Four structures adjoin there in a pretty small area, with all of it held together by ligaments, connecting the sacrum to the sides of the iliac crest and the ilium, while the lower part of the lumbar spine connects to the sacrum. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics to the ligaments in this area strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication. </span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Stop Back Pain with Regenerative Orthopedics','','inherit','closed','closed','','2760-revision-v1','','','2021-06-18 21:40:54','2021-06-18 21:40:54','',2760,'https://www.drfields.com/?p=4740',0,'revision','',0),(4741,9,'2021-06-18 21:41:18','2021-06-18 21:41:18','<h4>Stop Back Pain and the Endless Cycle of Chasing Symptoms</h4>\r\n<span style=\"font-weight: 400;\">So many people suffer from back pain, stuck in a cycle of pain medications, hours of therapy appointments, more prescription medications, over-the-counter medications, supplements, and more therapy. Only to continue to suffer from continued back pain. The cycle is an attempt to manage the pain. </span><span style=\"font-weight: 400;\">You might think, “Of course, I want to manage the pain!” But what if there is a better way, and one that actually corrects the back pain problem. Regenerative Orthopedics can stop back pain and the cycle because it repairs the underlying source of pain. Since it treats at the source, it ends up resolving the pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">There\'s no need to continue chasing symptoms with ineffective treatments that keep you in the pain cycle. Instead, correct the problems with Regenerative Orthopedics and stop back pain and the endless cycle!</span>\r\n\r\n<span style=\"font-weight: 400;\"> Chasing symptoms keeps the sufferer in the pain cycle. Correcting the problems with Regenerative Orthopedics can stop back pain and the endless cycle!</span>\r\n\r\n[caption id=\"attachment_4739\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4739\" src=\"https://www.drfields.com/wp-content/uploads/2019/09/Back-Pain.-Prolotherapy-500x375.jpeg\" alt=\"Back Pain. Prolotherapy\" width=\"500\" height=\"375\" /> <strong>                     Stop Back Pain with Prolotherapy</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<b>What Is the Reason Behind Most Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Since back pain is so common and a leading cause of disability, it is important to look at the reason for it. The underlying cause of most back pain issues is </span><b><i>spinal instability</i></b><span style=\"font-weight: 400;\">. </span>\r\n\r\n<span style=\"font-weight: 400;\">What is spinal instability you might ask? When you bend and twist and tweak your back, you injure soft tissue, like muscle and ligaments. Muscles have a great blood supply, so they heal quickly. Ligaments have a poor blood supply, and take quite a while to heal. In fact, they heal quite poorly. </span>\r\n\r\n<span style=\"font-weight: 400;\">Unhealed ligaments are weak and lax, similar to stretched out rubber bands. Ligaments connect bone to bone. So if the ligaments are weak, then the bone connection will be weak and wobbly. That bone connection or joint is then unstable. </span>\r\n<h3>The Vertebral Spine</h3>\r\n<span style=\"font-weight: 400;\">The vertebral bones in the back make up the spine. So when the ligaments in the spine are weak or wobbly, that makes for spinal instability. When these ligaments remain unhealed, the problem gets worse and worse. The ligaments get more lax and the spine becomes more unstable. You can imagine that if the joints of the spine become wobbly, that the bony structures will have difficulty moving like they should. </span>\r\n\r\n<span style=\"font-weight: 400;\">When motion in the vertebral joint connections stops being smooth, the abnormal motion causes the joint structures to degenerate. Instability and abnormal joint motion is behind all types of painful back conditions. Painful problems like bulging discs, arthritis, sciatica, and degenerative joint disease can result from abnormal motion in the spine.</span>\r\n\r\n<span style=\"font-weight: 400;\"> The underlying problem is ligament weakness, which creates the abnormal joint motion that will eventually damage the joint structures and elicit pain. Pain pills aren’t able to fix the weakened ligaments. And cortisone makes soft tissue weaker. So even if these things provide some short-term relief, they will eventually worsen the problem in the long run. Massage can’t strengthen weakened ligaments either.</span>\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4><em>Regenerative Orthopedics Can Stop Back Pain</em></h4>\r\n<span style=\"font-weight: 400;\">What’s the solution? The degenerative condition needs a regenerative treatment. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are all regenerative treatments that strengthen ligaments, restore normal joint motion, and regenerate joint structures. Good quality <a href=\"https://lyfebotanicals.com/health/turmeric-back-pain/\">supplements</a>, like turmeric, which can aid in the healing process, are also of benefit.</span>\r\n\r\n<b>Ligaments Are Structures that Provide Stability to the Joint</b>\r\n\r\n<span style=\"font-weight: 400;\">As mentioned earlier, the most common cause of unresolved back pain is spinal instability, due to weakened and stretched out ligaments. Ligaments are very important for stability of the spine and for proper motion. In fact, they are some of the main stabilizing structure for the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Sure, those with back pain will definitely complain of muscle spasms and tightness, because muscles help with stability too. But muscles will spasm because they are overcompensating for the inability of the injured ligaments to keep the spine in place. Treatments that relieve muscle spasms will give temporary reprieve of the spasms. But they will not address the ligament weakness. Instability and pain will continue, because the ligaments are unable to hold the adjacent bones of the spine together properly.</span>\r\n\r\n<b>How Can You Stop Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Each year, thousands and thousands of people are disabled due to some type of painful back condition. Back pain is actually one of the main reasons people come to see us at OrthoRegen<sup>®</sup>. By the time they come to see us, they have usually tried numerous types of pills, treatments, and even surgery. </span>\r\n\r\n<span style=\"font-weight: 400;\">But they are in our office because the pain has not stopped!</span><span style=\"font-weight: 400;\"> That’s because these other treatments are only short-lived and because they only provide temporary relief. Even surgical treatments end up with poor rates of success. Surgery may emphasize treatment of the disc, for example, but it misses treating the ligament injury which is the originating source of the pain. So pain continues.</span>\r\n<h3>Ligaments Can Refer Pain Too</h3>\r\n<span style=\"font-weight: 400;\">The places where the ligaments attach to the bones are full of nerves, which elicit pain when stretched out or injured. Injured ligaments can send out referral pain down the back of the leg and even to the foot. They can also refer pain into the groin and pelvic floor. If weak ligaments exist, the physician knowledgeable in examination techniques can diagnose instability during the physical examination with varied maneuvers and positioning. Even palpating, or pressing with the thumb at the ligament attachments will elicit pain indicating ligament laxity.</span>\r\n\r\n<span style=\"font-weight: 400;\">Back pain is one of the easiest conditions to treat with Regenerative Orthopedics. Most often, the pain is located in the lower back, where the vertebrae of the lumbar spine meet the pelvis. Four structures adjoin there in a pretty small area, with all of it held together by ligaments, connecting the sacrum to the sides of the iliac crest and the ilium, while the lower part of the lumbar spine connects to the sacrum. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics to the ligaments in this area strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication. </span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Stop Back Pain with Regenerative Orthopedics','','inherit','closed','closed','','2760-revision-v1','','','2021-06-18 21:41:18','2021-06-18 21:41:18','',2760,'https://www.drfields.com/?p=4741',0,'revision','',0),(4742,9,'2021-06-18 21:44:33','2021-06-18 21:44:33','<h4>Stop Back Pain and the Endless Cycle of Chasing Symptoms</h4>\r\n<span style=\"font-weight: 400;\">So many people suffer from back pain, stuck in a cycle of pain medications, hours of therapy appointments, more prescription medications, over-the-counter medications, supplements, and more therapy. Only to continue to suffer from continued back pain. The cycle is an attempt to manage the pain. </span><span style=\"font-weight: 400;\">You might think, “Of course, I want to manage the pain!” But what if there is a better way, and one that actually corrects the back pain problem. Regenerative Orthopedics can stop back pain and the cycle because it repairs the underlying source of pain. Since it treats at the source, it ends up resolving the pain.</span>\r\n\r\nStudies show the effectiveness of this non-surgical alternative. In one four-year study of 145 patients, 89% experienced more than 50% pain relief with Prolotherapy. Those are great results at improving quality of life and reducing pain!\r\n\r\n<span style=\"font-weight: 400;\">There\'s no need to continue chasing symptoms with ineffective treatments that keep you in the pain cycle. Instead, correct the problems with Regenerative Orthopedics and stop back pain and the endless cycle!</span>\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_4739\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4739\" src=\"https://www.drfields.com/wp-content/uploads/2019/09/Back-Pain.-Prolotherapy-500x375.jpeg\" alt=\"Back Pain. Prolotherapy\" width=\"500\" height=\"375\" /> <strong>                     Stop Back Pain with Prolotherapy</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<b>What Is the Reason Behind Most Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Since back pain is so common and a leading cause of disability, it is important to look at the reason for it. The underlying cause of most back pain issues is </span><b><i>spinal instability</i></b><span style=\"font-weight: 400;\">. </span>\r\n\r\n<span style=\"font-weight: 400;\">What is spinal instability you might ask? When you bend and twist and tweak your back, you injure soft tissue, like muscle and ligaments. Muscles have a great blood supply, so they heal quickly. Ligaments have a poor blood supply, and take quite a while to heal. In fact, they heal quite poorly. </span>\r\n\r\n<span style=\"font-weight: 400;\">Unhealed ligaments are weak and lax, similar to stretched out rubber bands. Ligaments connect bone to bone. So if the ligaments are weak, then the bone connection will be weak and wobbly. That bone connection or joint is then unstable. </span>\r\n<h3>The Vertebral Spine</h3>\r\n<span style=\"font-weight: 400;\">The vertebral bones in the back make up the spine. So when the ligaments in the spine are weak or wobbly, that makes for spinal instability. When these ligaments remain unhealed, the problem gets worse and worse. The ligaments get more lax and the spine becomes more unstable. You can imagine that if the joints of the spine become wobbly, that the bony structures will have difficulty moving like they should. </span>\r\n\r\n<span style=\"font-weight: 400;\">When motion in the vertebral joint connections stops being smooth, the abnormal motion causes the joint structures to degenerate. Instability and abnormal joint motion is behind all types of painful back conditions. Painful problems like bulging discs, arthritis, sciatica, and degenerative joint disease can result from abnormal motion in the spine.</span>\r\n\r\n<span style=\"font-weight: 400;\"> The underlying problem is ligament weakness, which creates the abnormal joint motion that will eventually damage the joint structures and elicit pain. Pain pills aren’t able to fix the weakened ligaments. And cortisone makes soft tissue weaker. So even if these things provide some short-term relief, they will eventually worsen the problem in the long run. Massage can’t strengthen weakened ligaments either.</span>\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4><em>Regenerative Orthopedics Can Stop Back Pain</em></h4>\r\n<span style=\"font-weight: 400;\">What’s the solution? The degenerative condition needs a regenerative treatment. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are all regenerative treatments that strengthen ligaments, restore normal joint motion, and regenerate joint structures. Good quality <a href=\"https://lyfebotanicals.com/health/turmeric-back-pain/\">supplements</a>, like turmeric, which can aid in the healing process, are also of benefit.</span>\r\n\r\n<b>Ligaments Are Structures that Provide Stability to the Joint</b>\r\n\r\n<span style=\"font-weight: 400;\">As mentioned earlier, the most common cause of unresolved back pain is spinal instability, due to weakened and stretched out ligaments. Ligaments are very important for stability of the spine and for proper motion. In fact, they are some of the main stabilizing structure for the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Sure, those with back pain will definitely complain of muscle spasms and tightness, because muscles help with stability too. But muscles will spasm because they are overcompensating for the inability of the injured ligaments to keep the spine in place. Treatments that relieve muscle spasms will give temporary reprieve of the spasms. But they will not address the ligament weakness. Instability and pain will continue, because the ligaments are unable to hold the adjacent bones of the spine together properly.</span>\r\n\r\n<b>How Can You Stop Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Each year, thousands and thousands of people are disabled due to some type of painful back condition. Back pain is actually one of the main reasons people come to see us at OrthoRegen<sup>®</sup>. By the time they come to see us, they have usually tried numerous types of pills, treatments, and even surgery. </span>\r\n\r\n<span style=\"font-weight: 400;\">But they are in our office because the pain has not stopped!</span><span style=\"font-weight: 400;\"> That’s because these other treatments are only short-lived and because they only provide temporary relief. Even surgical treatments end up with poor rates of success. Surgery may emphasize treatment of the disc, for example, but it misses treating the ligament injury which is the originating source of the pain. So pain continues.</span>\r\n<h3>Ligaments Can Refer Pain Too</h3>\r\n<span style=\"font-weight: 400;\">The places where the ligaments attach to the bones are full of nerves, which elicit pain when stretched out or injured. Injured ligaments can send out referral pain down the back of the leg and even to the foot. They can also refer pain into the groin and pelvic floor. If weak ligaments exist, the physician knowledgeable in examination techniques can diagnose instability during the physical examination with varied maneuvers and positioning. Even palpating, or pressing with the thumb at the ligament attachments will elicit pain indicating ligament laxity.</span>\r\n\r\n<span style=\"font-weight: 400;\">Back pain is one of the easiest conditions to treat with Regenerative Orthopedics. Most often, the pain is located in the lower back, where the vertebrae of the lumbar spine meet the pelvis. Four structures adjoin there in a pretty small area, with all of it held together by ligaments, connecting the sacrum to the sides of the iliac crest and the ilium, while the lower part of the lumbar spine connects to the sacrum. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics to the ligaments in this area strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication. </span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Stop Back Pain with Regenerative Orthopedics','','inherit','closed','closed','','2760-revision-v1','','','2021-06-18 21:44:33','2021-06-18 21:44:33','',2760,'https://www.drfields.com/?p=4742',0,'revision','',0),(4743,9,'2021-06-18 21:45:43','2021-06-18 21:45:43','<h4>Stop Back Pain and the Endless Cycle of Chasing Symptoms</h4>\r\n<span style=\"font-weight: 400;\">So many people suffer from back pain, stuck in a cycle of pain medications, hours of therapy appointments, more prescription medications, over-the-counter medications, supplements, and more therapy. Only to continue to suffer from continued back pain. The cycle is an attempt to manage the pain. </span><span style=\"font-weight: 400;\">You might think, “Of course, I want to manage the pain!” But what if there is a better way and one that actually corrects the back pain problem. Regenerative Orthopedics can stop back pain and the cycle because it repairs the underlying source of pain. Since it treats at the source, it ends up resolving the pain.</span>\r\n\r\nStudies show the effectiveness of this non-surgical alternative. In one four-year study of 145 patients, 89% experienced more than 50% pain relief with Prolotherapy. Those are great results at improving quality of life and reducing pain!\r\n\r\n<span style=\"font-weight: 400;\">There\'s no need to continue chasing symptoms with ineffective treatments that keep you in the pain cycle. Instead, correct the problems with Regenerative Orthopedics and stop back pain and the endless cycle!</span>\r\n\r\n[caption id=\"attachment_4739\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4739\" src=\"https://www.drfields.com/wp-content/uploads/2019/09/Back-Pain.-Prolotherapy-500x375.jpeg\" alt=\"Back Pain. Prolotherapy\" width=\"500\" height=\"375\" /> <strong>                     Stop Back Pain with Prolotherapy</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<b>What Is the Reason Behind Most Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Since back pain is so common and a leading cause of disability, it is important to look at the reason for it. The underlying cause of most back pain issues is </span><b><i>spinal instability</i></b><span style=\"font-weight: 400;\">. </span>\r\n\r\n<span style=\"font-weight: 400;\">What is spinal instability you might ask? When you bend and twist and tweak your back, you injure soft tissue, like muscle and ligaments. Muscles have a great blood supply, so they heal quickly. Ligaments have a poor blood supply and take quite a while to heal. In fact, they heal quite poorly. </span>\r\n\r\n<span style=\"font-weight: 400;\">Unhealed ligaments are weak and lax, similar to stretched-out rubber bands. Ligaments connect bone to bone. So if the ligaments are weak, then the bone connection will be weak and wobbly. That bone connection or joint is then unstable. </span>\r\n<h3>The Vertebral Spine</h3>\r\n<span style=\"font-weight: 400;\">The vertebral bones in the back make up the spine. So when the ligaments in the spine are weak or wobbly, that makes for spinal instability. When these ligaments remain unhealed, the problem gets worse and worse. The ligaments get more lax and the spine becomes more unstable. You can imagine that if the joints of the spine become wobbly, that the bony structures will have difficulty moving as they should. </span>\r\n\r\n<span style=\"font-weight: 400;\">When motion in the vertebral joint connections stops being smooth, the abnormal motion causes the joint structures to degenerate. Instability and abnormal joint motion are behind all types of painful back conditions. Painful problems like bulging discs, arthritis, sciatica and degenerative joint disease can result from abnormal motion in the spine.</span>\r\n\r\n<span style=\"font-weight: 400;\"> The underlying problem is ligament weakness, which creates abnormal joint motion that will eventually damage the joint structures and elicit pain. Pain pills aren’t able to fix the weakened ligaments. And cortisone makes soft tissue weaker. So even if these things provide some short-term relief, they will eventually worsen the problem in the long run. Massage can’t strengthen weakened ligaments either.</span>\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4><em>Regenerative Orthopedics Can Stop Back Pain</em></h4>\r\n<span style=\"font-weight: 400;\">What’s the solution? The degenerative condition needs regenerative treatment. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are all regenerative treatments that strengthen ligaments, restore normal joint motion, and regenerate joint structures. Good quality <a href=\"https://lyfebotanicals.com/health/turmeric-back-pain/\">supplements</a>, like turmeric, which can aid in the healing process, are also of benefit.</span>\r\n\r\n<b>Ligaments Are Structures that Provide Stability to the Joint</b>\r\n\r\n<span style=\"font-weight: 400;\">As mentioned earlier, the most common cause of unresolved back pain is spinal instability, due to weakened and stretched-out ligaments. Ligaments are very important for the stability of the spine and for proper motion. In fact, they are some of the main stabilizing structures for the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Sure, those with back pain will definitely complain of muscle spasms and tightness, because muscles help with stability too. But muscles will spasm because they are overcompensating for the inability of the injured ligaments to keep the spine in place. Treatments that relieve muscle spasms will give temporary reprieve of the spasms. But they will not address the ligament weakness. Instability and pain will continue because the ligaments are unable to hold the adjacent bones of the spine together properly.</span>\r\n\r\n<b>How Can You Stop Back Pain?</b>\r\n\r\n<span style=\"font-weight: 400;\">Each year, thousands and thousands of people are disabled due to some type of painful back condition. Back pain is actually one of the main reasons people come to see us at OrthoRegen<sup>®</sup>. By the time they come to see us, they have usually tried numerous types of pills, treatments, and even surgery. </span>\r\n\r\n<span style=\"font-weight: 400;\">But they are in our office because the pain has not stopped!</span><span style=\"font-weight: 400;\"> That’s because these other treatments are only short-lived and because they only provide temporary relief. Even surgical treatments end up with poor rates of success. Surgery may emphasize the treatment of the disc, for example, but it misses treating the ligament injury which is the originating source of the pain. So the pain continues.</span>\r\n<h3>Ligaments Can Refer Pain Too</h3>\r\n<span style=\"font-weight: 400;\">The places where the ligaments attach to the bones are full of nerves, which elicit pain when stretched out or injured. Injured ligaments can send out referral pain down the back of the leg and even to the foot. They can also refer pain to the groin and pelvic floor. If weak ligaments exist, the physician knowledgeable in examination techniques can diagnose instability during the physical examination with varied maneuvers and positioning. Even palpating, or pressing with the thumb at the ligament attachments will elicit pain indicating ligament laxity.</span>\r\n\r\n<span style=\"font-weight: 400;\">Back pain is one of the easiest conditions to treat with Regenerative Orthopedics. Most often, the pain is located in the lower back, where the vertebrae of the lumbar spine meet the pelvis. Four structures adjoin there in a pretty small area, with all of it held together by ligaments, connecting the sacrum to the sides of the iliac crest and the ilium, while the lower part of the lumbar spine connects to the sacrum. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics to the ligaments in this area strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication. </span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Stop Back Pain with Regenerative Orthopedics','','inherit','closed','closed','','2760-revision-v1','','','2021-06-18 21:45:43','2021-06-18 21:45:43','',2760,'https://www.drfields.com/?p=4743',0,'revision','',0),(4744,9,'2021-06-18 21:48:36','2021-06-18 21:48:36','<h4>Stop Back Pain and the Endless Cycle of Chasing Symptoms</h4>\r\n<span style=\"font-weight: 400;\">So many people suffer from back pain, stuck in a cycle of pain medications, hours of therapy appointments, more prescription medications, over-the-counter medications, supplements, and more therapy. Only to continue to suffer from continued back pain. The cycle is an attempt to manage the pain. </span><span style=\"font-weight: 400;\">You might think, “Of course, I want to manage the pain!” But what if there is a better way and one that actually corrects the back pain problem. Regenerative Orthopedics can stop back pain and the cycle because it repairs the underlying source of pain. Since it treats at the source, it ends up resolving the pain.</span>\r\n\r\nStudies show the effectiveness of this non-surgical alternative. In one four-year study of 145 patients, 89% experienced more than 50% pain relief with Prolotherapy. Those are great results at improving quality of life and reducing pain!\r\n\r\n<span style=\"font-weight: 400;\">There\'s no need to continue chasing symptoms with ineffective treatments that keep you in the pain cycle. Instead, correct the problems with Regenerative Orthopedics and stop back pain and the endless cycle!</span>\r\n\r\n[caption id=\"attachment_4739\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4739\" src=\"https://www.drfields.com/wp-content/uploads/2019/09/Back-Pain.-Prolotherapy-500x375.jpeg\" alt=\"Back Pain. Prolotherapy\" width=\"500\" height=\"375\" /> <strong>                            Stop Back Pain with Prolotherapy</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h3><b>What Is the Reason Behind Most Back Pain?</b></h3>\r\n<span style=\"font-weight: 400;\">Since back pain is so common and a leading cause of disability, it is important to look at the reason for it. The underlying cause of most back pain issues is </span><b><i>spinal instability</i></b><span style=\"font-weight: 400;\">. </span>\r\n\r\n<span style=\"font-weight: 400;\">What is spinal instability you might ask? When you bend and twist and tweak your back, you injure soft tissue, like muscle and ligaments. Muscles have a great blood supply, so they heal quickly. Ligaments have a poor blood supply and take quite a while to heal. In fact, they heal quite poorly. </span>\r\n\r\n<span style=\"font-weight: 400;\">Unhealed ligaments are weak and lax, similar to stretched-out rubber bands. Ligaments connect bone to bone. So if the ligaments are weak, then the bone connection will be weak and wobbly. That bone connection or joint is then unstable. </span>\r\n<h3>The Vertebral Spine</h3>\r\n<span style=\"font-weight: 400;\">The vertebral bones in the back make up the spine. So when the ligaments in the spine are weak or wobbly, that makes for spinal instability. When these ligaments remain unhealed, the problem gets worse and worse. The ligaments get more lax and the spine becomes more unstable. You can imagine that if the joints of the spine become wobbly, that the bony structures will have difficulty moving as they should. </span>\r\n\r\n<span style=\"font-weight: 400;\">When motion in the vertebral joint connections stops being smooth, the abnormal motion causes the joint structures to degenerate. Instability and abnormal joint motion are behind all types of painful back conditions. Painful problems like bulging discs, arthritis, sciatica and degenerative joint disease can result from abnormal motion in the spine.</span>\r\n\r\n<span style=\"font-weight: 400;\"> The underlying problem is ligament weakness, which creates abnormal joint motion that will eventually damage the joint structures and elicit pain. Pain pills aren’t able to fix the weakened ligaments. And cortisone makes soft tissue weaker. So even if these things provide some short-term relief, they will eventually worsen the problem in the long run. Massage can’t strengthen weakened ligaments either.</span>\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3><em>Regenerative Orthopedics Can Stop Back Pain</em></h3>\r\n<span style=\"font-weight: 400;\">What’s the solution? The degenerative condition needs regenerative treatment. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are all regenerative treatments that strengthen ligaments, restore normal joint motion, and regenerate joint structures. Good quality <a href=\"https://lyfebotanicals.com/health/turmeric-back-pain/\">supplements</a>, like turmeric, which can aid in the healing process, are also of benefit.</span>\r\n<h3><b>Ligaments Are Structures that Provide Stability to the Joint</b></h3>\r\n<span style=\"font-weight: 400;\">As mentioned earlier, the most common cause of unresolved back pain is spinal instability, due to weakened and stretched-out ligaments. Ligaments are very important for the stability of the spine and for proper motion. In fact, they are some of the main stabilizing structures for the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Sure, those with back pain will definitely complain of muscle spasms and tightness, because muscles help with stability too. But muscles will spasm because they are overcompensating for the inability of the injured ligaments to keep the spine in place. Treatments that relieve muscle spasms will give temporary reprieve of the spasms. But they will not address the ligament weakness. Instability and pain will continue because the ligaments are unable to hold the adjacent bones of the spine together properly.</span>\r\n<h3><b>How Can You Stop Back Pain?</b></h3>\r\n<span style=\"font-weight: 400;\">Each year, thousands and thousands of people are disabled due to some type of painful back condition. Back pain is actually one of the main reasons people come to see us at OrthoRegen<sup>®</sup>. By the time they come to see us, they have usually tried numerous types of pills, treatments, and even surgery. </span>\r\n\r\n<span style=\"font-weight: 400;\">But they are in our office because the pain has not stopped!</span><span style=\"font-weight: 400;\"> That’s because these other treatments are only short-lived and because they only provide temporary relief. Even surgical treatments end up with poor rates of success. Surgery may emphasize the treatment of the disc, for example, but it misses treating the ligament injury which is the originating source of the pain. So the pain continues.</span>\r\n<h3>Ligaments Can Refer Pain Too</h3>\r\n<span style=\"font-weight: 400;\">The places where the ligaments attach to the bones are full of nerves, which elicit pain when stretched out or injured. Injured ligaments can send out referral pain down the back of the leg and even to the foot. They can also refer pain to the groin and pelvic floor. If weak ligaments exist, the physician knowledgeable in examination techniques can diagnose instability during the physical examination with varied maneuvers and positioning. Even palpating, or pressing with the thumb at the ligament attachments will elicit pain indicating ligament laxity.</span>\r\n\r\n<span style=\"font-weight: 400;\">Back pain is one of the easiest conditions to treat with Regenerative Orthopedics. Most often, the pain is located in the lower back, where the vertebrae of the lumbar spine meet the pelvis. Four structures adjoin there in a pretty small area, with all of it held together by ligaments, connecting the sacrum to the sides of the iliac crest and the ilium, while the lower part of the lumbar spine connects to the sacrum. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics to the ligaments in this area strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication. </span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Stop Back Pain with Regenerative Orthopedics','','inherit','closed','closed','','2760-revision-v1','','','2021-06-18 21:48:36','2021-06-18 21:48:36','',2760,'https://www.drfields.com/?p=4744',0,'revision','',0),(4745,9,'2021-06-18 21:48:51','2021-06-18 21:48:51','<h2>Stop Back Pain and the Endless Cycle of Chasing Symptoms</h2>\r\n<span style=\"font-weight: 400;\">So many people suffer from back pain, stuck in a cycle of pain medications, hours of therapy appointments, more prescription medications, over-the-counter medications, supplements, and more therapy. Only to continue to suffer from continued back pain. The cycle is an attempt to manage the pain. </span><span style=\"font-weight: 400;\">You might think, “Of course, I want to manage the pain!” But what if there is a better way and one that actually corrects the back pain problem. Regenerative Orthopedics can stop back pain and the cycle because it repairs the underlying source of pain. Since it treats at the source, it ends up resolving the pain.</span>\r\n\r\nStudies show the effectiveness of this non-surgical alternative. In one four-year study of 145 patients, 89% experienced more than 50% pain relief with Prolotherapy. Those are great results at improving quality of life and reducing pain!\r\n\r\n<span style=\"font-weight: 400;\">There\'s no need to continue chasing symptoms with ineffective treatments that keep you in the pain cycle. Instead, correct the problems with Regenerative Orthopedics and stop back pain and the endless cycle!</span>\r\n\r\n[caption id=\"attachment_4739\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4739\" src=\"https://www.drfields.com/wp-content/uploads/2019/09/Back-Pain.-Prolotherapy-500x375.jpeg\" alt=\"Back Pain. Prolotherapy\" width=\"500\" height=\"375\" /> <strong>                            Stop Back Pain with Prolotherapy</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h3><b>What Is the Reason Behind Most Back Pain?</b></h3>\r\n<span style=\"font-weight: 400;\">Since back pain is so common and a leading cause of disability, it is important to look at the reason for it. The underlying cause of most back pain issues is </span><b><i>spinal instability</i></b><span style=\"font-weight: 400;\">. </span>\r\n\r\n<span style=\"font-weight: 400;\">What is spinal instability you might ask? When you bend and twist and tweak your back, you injure soft tissue, like muscle and ligaments. Muscles have a great blood supply, so they heal quickly. Ligaments have a poor blood supply and take quite a while to heal. In fact, they heal quite poorly. </span>\r\n\r\n<span style=\"font-weight: 400;\">Unhealed ligaments are weak and lax, similar to stretched-out rubber bands. Ligaments connect bone to bone. So if the ligaments are weak, then the bone connection will be weak and wobbly. That bone connection or joint is then unstable. </span>\r\n<h3>The Vertebral Spine</h3>\r\n<span style=\"font-weight: 400;\">The vertebral bones in the back make up the spine. So when the ligaments in the spine are weak or wobbly, that makes for spinal instability. When these ligaments remain unhealed, the problem gets worse and worse. The ligaments get more lax and the spine becomes more unstable. You can imagine that if the joints of the spine become wobbly, that the bony structures will have difficulty moving as they should. </span>\r\n\r\n<span style=\"font-weight: 400;\">When motion in the vertebral joint connections stops being smooth, the abnormal motion causes the joint structures to degenerate. Instability and abnormal joint motion are behind all types of painful back conditions. Painful problems like bulging discs, arthritis, sciatica and degenerative joint disease can result from abnormal motion in the spine.</span>\r\n\r\n<span style=\"font-weight: 400;\"> The underlying problem is ligament weakness, which creates abnormal joint motion that will eventually damage the joint structures and elicit pain. Pain pills aren’t able to fix the weakened ligaments. And cortisone makes soft tissue weaker. So even if these things provide some short-term relief, they will eventually worsen the problem in the long run. Massage can’t strengthen weakened ligaments either.</span>\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3><em>Regenerative Orthopedics Can Stop Back Pain</em></h3>\r\n<span style=\"font-weight: 400;\">What’s the solution? The degenerative condition needs regenerative treatment. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are all regenerative treatments that strengthen ligaments, restore normal joint motion, and regenerate joint structures. Good quality <a href=\"https://lyfebotanicals.com/health/turmeric-back-pain/\">supplements</a>, like turmeric, which can aid in the healing process, are also of benefit.</span>\r\n<h3><b>Ligaments Are Structures that Provide Stability to the Joint</b></h3>\r\n<span style=\"font-weight: 400;\">As mentioned earlier, the most common cause of unresolved back pain is spinal instability, due to weakened and stretched-out ligaments. Ligaments are very important for the stability of the spine and for proper motion. In fact, they are some of the main stabilizing structures for the joint. </span>\r\n\r\n<span style=\"font-weight: 400;\">Sure, those with back pain will definitely complain of muscle spasms and tightness, because muscles help with stability too. But muscles will spasm because they are overcompensating for the inability of the injured ligaments to keep the spine in place. Treatments that relieve muscle spasms will give temporary reprieve of the spasms. But they will not address the ligament weakness. Instability and pain will continue because the ligaments are unable to hold the adjacent bones of the spine together properly.</span>\r\n<h3><b>How Can You Stop Back Pain?</b></h3>\r\n<span style=\"font-weight: 400;\">Each year, thousands and thousands of people are disabled due to some type of painful back condition. Back pain is actually one of the main reasons people come to see us at OrthoRegen<sup>®</sup>. By the time they come to see us, they have usually tried numerous types of pills, treatments, and even surgery. </span>\r\n\r\n<span style=\"font-weight: 400;\">But they are in our office because the pain has not stopped!</span><span style=\"font-weight: 400;\"> That’s because these other treatments are only short-lived and because they only provide temporary relief. Even surgical treatments end up with poor rates of success. Surgery may emphasize the treatment of the disc, for example, but it misses treating the ligament injury which is the originating source of the pain. So the pain continues.</span>\r\n<h3>Ligaments Can Refer Pain Too</h3>\r\n<span style=\"font-weight: 400;\">The places where the ligaments attach to the bones are full of nerves, which elicit pain when stretched out or injured. Injured ligaments can send out referral pain down the back of the leg and even to the foot. They can also refer pain to the groin and pelvic floor. If weak ligaments exist, the physician knowledgeable in examination techniques can diagnose instability during the physical examination with varied maneuvers and positioning. Even palpating, or pressing with the thumb at the ligament attachments will elicit pain indicating ligament laxity.</span>\r\n\r\n<span style=\"font-weight: 400;\">Back pain is one of the easiest conditions to treat with Regenerative Orthopedics. Most often, the pain is located in the lower back, where the vertebrae of the lumbar spine meet the pelvis. Four structures adjoin there in a pretty small area, with all of it held together by ligaments, connecting the sacrum to the sides of the iliac crest and the ilium, while the lower part of the lumbar spine connects to the sacrum. </span>\r\n\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics to the ligaments in this area strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication. </span>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Stop Back Pain with Regenerative Orthopedics','','inherit','closed','closed','','2760-revision-v1','','','2021-06-18 21:48:51','2021-06-18 21:48:51','',2760,'https://www.drfields.com/?p=4745',0,'revision','',0),(4747,9,'2021-06-21 20:02:51','2021-06-21 20:02:51','<h2>Tommy John Surgery and All Surgeries Can Come with Risks</h2>\n[caption id=\"attachment_4748\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4748\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/tommy-john-500x500.jpg\" alt=\"Tommy John\" width=\"500\" height=\"500\" /> <strong>    Tommy John Surgery Alternative: Regenerative Orthopedics</strong>[/caption]\n\nMost of us have seen major league baseball players in the news because they have undergone the infamous “Tommy John Surgery.” And many of them have had success, but others have not.  It is important to realize that surgery is risky, even if that surgery is deemed a minor one. Just recently, the George Mason University baseball team lost a 20-year-old student-athlete. The freshman died unexpectedly from complications after a <a href=\"https://www.usatoday.com/story/sports/college/baseball/2021/06/19/george-mason-pitcher-sang-ho-baek-dies-after-tommy-john-surgery/7753020002/\">Tommy John elbow surgery.1 </a>\n\nTommy John surgery is a common procedure for baseball pitchers. The surgery is used to repair a torn ulnar collateral ligament (UCL) inside the elbow. And the procedure is becoming more common among young pitchers due to the stress pitching puts on the elbow.\n<h3><strong>Non-Surgical Alternatives to Tommy John Surgery </strong></h3>\nThe good news is that there is a non-surgical alternative to repair the UCL. At OrthoRegen<sup>®</sup>, we offer regenerative medicine techniques that include Prolotherapy, Platelet Rich Plasma Therapy, and Stem Cell Therapy. Our clinicians will recommend the best treatment for your individual case and situation.\n<h3>Regenerative Orthopedics for An Injured UCL</h3>\nProlotherapy is one type of regenerative therapy utilized at our clinic. It is the use of simple dextrose to heal a partially torn ligament. How does it work? If you are a pitcher with a UCL that is injured, you have most likely lost velocity in your fastball. Plus, the wear-and-tear transpiring in the elbow is probably causing pain on the inside of your arm.\n\nProlotherapy is not a new treatment. It has been used in clinical practice for more than 80 years to treat various chronic musculoskeletal conditions. And it is a safe and practical option to treat ligament damage. How does it repair an injured ligament? By \"<strong>stimulating the regenerative processes in the joint that will facilitate the restoration of joint stability by augmenting the tensile strength of joint stabilizing structures, such as ligaments.\"2</strong>\n<h3>PRP As a Tommy John Surgery Alternative For UCL Injury Repair</h3>\nPRP treatment utilizes your own concentrated blood platelets, which are then injected into the injured areas of your elbow. Blood platelets are helpful at repair because they contain growth and healing factors.  PRP can play a great role in injury healing and may be part of the recommendation for repairing the UCL injury.\n<h3><strong>Is Regenerative Orthopedics As A Tommy John Surgery Alternative Always An Option?</strong></h3>\nRegenerative Orthopedics are great solutions to avoid surgery for the majority of musculoskeletal injuries involving soft tissue, including UCL injuries. Many injuries involve degeneration of the ligament, or even partial tears, and the UCL can be repaired and regenerated with Regenerative Orthopedics. There are times, such as when the ligament is completely torn, that surgery may be the only option. An experienced regenerative medicine clinician will give you a recommendation for the best treatment options after an evaluation.\n<h3>OrthoRegen<sup>®</sup> and Peter A. Fields, MD, DC: Experienced Regenerative Orthopedics Clinic and Physician</h3>\nIf an ulnar collateral ligament injury has stopped you, get back in the game with Regenerative Orthopedics at OrthoRegen and Peter A. Fields, MD, DC. At OrthoRegen<sup>®</sup> , we offer innovative, non-surgical treatments for many sports injuries and chronic pain problems, including UCL injuries. Without unnecessary medication, prescriptions, cortisone shots, or surgery.  Regenerative Orthopedics can regenerate damaged or worn ligaments and strengthen weakened tendons.\n\nThe most beneficial aspect of our non-surgical sports injuries treatment is that you can continue to train while you receive the treatments. We treat athletes of all skill and age levels including high school and college athletes, and amateur or professional athletes.\n\nWe\'re here to help. Call today to schedule an evaluation to receive non-surgical treatment for your sports injuries or UCL injury with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h4>Are You Suffering from other Sports Injuries?</h4>\n<ul>\n 	<li><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">K</a><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">nee Pain</a></li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL Tear</a></li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-surgery-a-good-option-for-meniscus-tears/\">Torn Meniscus</a></li>\n 	<li><a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Neck-Pain\">Neck pain</a></li>\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/stop-back-pain/\">Back Pain</a></li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/iliotibial-band-syndrome/\">IT Band Injury</a></li>\n 	<li>Shin Splints</li>\n 	<li><a href=\"https://www.drfields.com/articles/prolotherapy-research/ankle-foot/\">Plantar Fasciitis</a></li>\n 	<li><a href=\"https://www.drfields.com/testimonials/hamstring-testimonials/\">Hamstring Strain</a></li>\n 	<li>Turf Toe</li>\n</ul>\n<strong><em> Prolotherapy Sports Injuries Treatment can help you get back in the game – and get back quickly!</em></strong>\n\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\n<h4><em>Prolotherapy Doctor Treats Sports Injuries Without Surgery</em></h4>\n<em>Receive treatment for your sports injuries by Ironman Triathlete Peter A. Fields, MD, DC. For over 25 years, Dr. Fields has been active in the sport of Triathlon and an 11 time Ironman finisher. And it is his experience as an athlete that allows him to understand the potential for injury and the demands of sports on the physical body. Plus, he also understands the passion athletes have to get back to training and competition, and their need to recover quickly from injury. He has been there! That\'s why Dr. Fields is known as The Athletic Doc<sup>®</sup>. Wouldn’t you want to be treated by a sports doctor who is also an athlete?</em>\n\nCheck out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Testimonials page</a>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h3>References</h3>\n1 Hertel, A.College baseball pitcher Sang Ho Baek dies from complications following Tommy John elbow surgery. USA Today. 2021 Jun 9. https://www.usatoday.com/story/sports/college/baseball/2021/06/19/george-mason-pitcher-sang-ho-baek-dies-after-tommy-john-surgery/7753020002/\n\n2 Hauser RA, Lackner JB, Steilen-Matias D, Harris DK. A systematic review of dextrose prolotherapy for chronic musculoskeletal pain. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2016 Jan;9:CMAMD-S39160. [<a href=\"https://scholar.google.com/scholar?cluster=6379361293355508471&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]','Tommy John Surgery and All Surgeries Can Come with Risks','','inherit','closed','closed','','632-autosave-v1','','','2021-06-21 20:02:51','2021-06-21 20:02:51','',632,'https://www.drfields.com/?p=4747',0,'revision','',0),(4748,9,'2021-06-21 18:41:46','2021-06-21 18:41:46','Tommy John','Tommy John','Tommy John','inherit','open','closed','','tommy-john','','','2021-06-21 18:41:46','2021-06-21 18:41:46','',632,'https://www.drfields.com/wp-content/uploads/2019/06/tommy-john.jpg',0,'attachment','image/jpeg',0),(4749,9,'2021-06-21 19:48:53','2021-06-21 19:48:53','<h2>Tommy John and All Surgeries Carry Risk</h2>\r\n[caption id=\"attachment_4748\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4748\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/tommy-john-500x500.jpg\" alt=\"Tommy John\" width=\"500\" height=\"500\" /> <strong>    Tommy John Suregery Alternative: Regenerative Orthopedics</strong>[/caption]\r\n\r\nMost of us have seen major league baseball players in the news because they have undergone the infamous “Tommy John Surgery”. And many of them have had good success, but others have not.  It is important to realize that surgery is risky, even if that surgery is deemed a minor one. Just recently, the George Mason University baseball team lost a 20 year old student-athlete. The freshman died unexpectedly from complications after a <a href=\"https://www.usatoday.com/story/sports/college/baseball/2021/06/19/george-mason-pitcher-sang-ho-baek-dies-after-tommy-john-surgery/7753020002/\">Tommy John elbow surgery.1 </a>\r\n\r\nTommy John sugery is a common procedure for baseball pitchers. The surgery is used to repair a torn ulnar collateral ligament (UCL) inside the elbow. And the procedure is becoming more common among young pitchers due to the stress pitching puts on the elbow.\r\n<h3><strong>Non-Surgical Alternatives to Tommy John Surgery </strong></h3>\r\nThe good news is that there is a non-surgical alternative to repair the UCL. At OrthoRegen<sup>®</sup>, we offer regenerative medicine techniques that include Prolotherapy, Platelet Rich Plasma Therapy, and Stem Cell Therapy. Our clinicians will recommend the best treatment for your individual case and situation.\r\n<h3>Regenerative Orthopedics for An Injured UCL</h3>\r\nProlotherapy, is one type of regenerative therapy utilized at our clinic. It is the use of a simple dextrose to heal a partially torn ligament. How does it work? If you are a pitcher with a UCL that is injured, you have most likley lost velocity in your fastball. Plus, the wear-and-tear that is transpiring in the elbow is probably causing pain on the inside of your arm.\r\n\r\nProlotherapy is not a new treatment. I has been used in clinical practice for more than 80 years to treat various chronic musculoskeletal conditions. And it is a safe and practical option to treat ligament damage. How does it repair an injured ligament? By \"<strong>stimulating the regenerative processes in the joint that will facilitate the restoration of joint stability by augmenting the tensile strength of joint stabilizing structures, such as ligaments.\"2</strong>\r\n<h3>PRP For UCL Injuries</h3>\r\nPRP treatment utilizes your own concentrated blood platelets, which are then injected into the injured areas of your elbow. Blood platelets are helpful at repair because they contain growth and healing factors.  PRP can play a great role in injury healing, and may be a recommendation in the repair of the UCL injury.\r\n<h3><strong>Is Regenerative Orthopedics As A Tommy John Surgery Alternative Always An Option?</strong></h3>\r\nRegenerative Orthopedics are great solutions to avoid surgery for the majority of musculoskeletal injuries involving soft tissue, including UCL injuries. Many injuries involve degeneration of the ligament, or even partial tears, and the UCL can be repaired and regenerated with Regenerative Orthopedics. There are times, such as when the ligament is completely torn, that surgery may be the only option. An experienced regenerative medicine clinician will give you a recommendation for the best treatment options after an evaluation.\r\n<h3>OrthoRegen<sup>®</sup> and Peter A. Fields, MD, DC: Experienced Regenerative Orthopedics Clinic and Physician</h3>\r\nIf an ulnar collateral ligament injury has stopped you, get back in the game with Regenerative Orthopedics at OrthoRegen and Peter A. Fields, MD, DC. At OrthoRegen<sup>®</sup> , we offer innovative, non-surgical treatments for many sports injuries and chronic pain problems, including UCL injuries. Without unnecessary medication, prescriptions, cortisone shots, or surgery.  Regenerative Orthopedics can regenerate damaged or worn ligaments and strengthen weakened tendons.\r\n\r\nThe most beneficial aspect of our non-surgical sports injuries treatment is that you can continue to train while you receive the treatments. We treat athletes of all skill and age levels including high school and college athletes, and amateur or professional athletes.\r\n\r\nWe\'re here to help. Call today to schedule an evaluation to receive non-surgical treatment for your sports injuries or UCL injury with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Are You Suffering from a Sports Injury?</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">K</a><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">nee Pain</a></li>\r\n 	<li> ACL Tear</li>\r\n 	<li>Torn Meniscus</li>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Neck-Pain\">Neck pain</a></li>\r\n 	<li>Back Pain</li>\r\n 	<li>Shin Splints</li>\r\n 	<li>Plantar Fasciitis</li>\r\n 	<li>Hamstring Strain</li>\r\n 	<li>IT Band Injury</li>\r\n 	<li>Turf Toe</li>\r\n</ul>\r\n<strong><em> Prolotherapy Sports Injuries Treatment can help you get back in the game – and get back quickly!</em></strong>\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4><em>Prolotherapy Doctor Treats Sports Injuries Without Surgery</em></h4>\r\n<em>Receive treatment for your sports injuries by Ironman Triathlete Peter A. Fields, MD, DC. For over 25 years, Dr. Fields has been active in the sport of Triathlon and an 11 time Ironman finisher. It is his experience as an athlete that allows him to understand the potential for injury and the demands of sports on the physical body. He also understands the passion athletes have to get back to training and competition, and their need to recover quickly from injury, because he has been there. Dr. Fields is known as The Athletic Doc<sup>®</sup>. Wouldn’t you want to be treated by a sports doctor who is also an athlete?</em>\r\n\r\nCheck out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Testimonials page</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>References</h3>\r\n1 Hertel, A.College baseball pitcher Sang Ho Baek dies from complications following Tommy John elbow surgery. USA Today. 2021 Jun 9. https://www.usatoday.com/story/sports/college/baseball/2021/06/19/george-mason-pitcher-sang-ho-baek-dies-after-tommy-john-surgery/7753020002/\r\n\r\n2 Hauser RA, Lackner JB, Steilen-Matias D, Harris DK. A systematic review of dextrose prolotherapy for chronic musculoskeletal pain. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2016 Jan;9:CMAMD-S39160. [<a href=\"https://scholar.google.com/scholar?cluster=6379361293355508471&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]','Tommy John and All Surgeries Carry Risk','','inherit','closed','closed','','632-revision-v1','','','2021-06-21 19:48:53','2021-06-21 19:48:53','',632,'https://www.drfields.com/?p=4749',0,'revision','',0),(4750,9,'2021-06-21 20:02:54','2021-06-21 20:02:54','<h2>Tommy John Surgery and All Surgeries Can Come with Risks</h2>\r\n[caption id=\"attachment_4748\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4748\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/tommy-john-500x500.jpg\" alt=\"Tommy John\" width=\"500\" height=\"500\" /> <strong>    Tommy John Surgery Alternative: Regenerative Orthopedics</strong>[/caption]\r\n\r\nMost of us have seen major league baseball players in the news because they have undergone the infamous “Tommy John Surgery.” And many of them have had success, but others have not.  It is important to realize that surgery is risky, even if that surgery is deemed a minor one. Just recently, the George Mason University baseball team lost a 20-year-old student-athlete. The freshman died unexpectedly from complications after a <a href=\"https://www.usatoday.com/story/sports/college/baseball/2021/06/19/george-mason-pitcher-sang-ho-baek-dies-after-tommy-john-surgery/7753020002/\">Tommy John elbow surgery.1 </a>\r\n\r\nTommy John surgery is a common procedure for baseball pitchers. The surgery is used to repair a torn ulnar collateral ligament (UCL) inside the elbow. And the procedure is becoming more common among young pitchers due to the stress pitching puts on the elbow.\r\n<h3><strong>Non-Surgical Alternatives to Tommy John Surgery </strong></h3>\r\nThe good news is that there is a non-surgical alternative to repair the UCL. At OrthoRegen<sup>®</sup>, we offer regenerative medicine techniques that include Prolotherapy, Platelet Rich Plasma Therapy, and Stem Cell Therapy. Our clinicians will recommend the best treatment for your individual case and situation.\r\n<h3>Regenerative Orthopedics for An Injured UCL</h3>\r\nProlotherapy is one type of regenerative therapy utilized at our clinic. It is the use of simple dextrose to heal a partially torn ligament. How does it work? If you are a pitcher with a UCL that is injured, you have most likely lost velocity in your fastball. Plus, the wear-and-tear transpiring in the elbow is probably causing pain on the inside of your arm.\r\n\r\nProlotherapy is not a new treatment. It has been used in clinical practice for more than 80 years to treat various chronic musculoskeletal conditions. And it is a safe and practical option to treat ligament damage. How does it repair an injured ligament? By \"<strong>stimulating the regenerative processes in the joint that will facilitate the restoration of joint stability by augmenting the tensile strength of joint stabilizing structures, such as ligaments.\"2</strong>\r\n<h3>PRP As a Tommy John Surgery Alternative For UCL Injury Repair</h3>\r\nPRP treatment utilizes your own concentrated blood platelets, which are then injected into the injured areas of your elbow. Blood platelets are helpful at repair because they contain growth and healing factors.  PRP can play a great role in injury healing and may be part of the recommendation for repairing the UCL injury.\r\n<h3><strong>Is Regenerative Orthopedics As A Tommy John Surgery Alternative Always An Option?</strong></h3>\r\nRegenerative Orthopedics are great solutions to avoid surgery for the majority of musculoskeletal injuries involving soft tissue, including UCL injuries. Many injuries involve degeneration of the ligament, or even partial tears, and the UCL can be repaired and regenerated with Regenerative Orthopedics. There are times, such as when the ligament is completely torn, that surgery may be the only option. An experienced regenerative medicine clinician will give you a recommendation for the best treatment options after an evaluation.\r\n<h3>OrthoRegen<sup>®</sup> and Peter A. Fields, MD, DC: Experienced Regenerative Orthopedics Clinic and Physician</h3>\r\nIf an ulnar collateral ligament injury has stopped you, get back in the game with Regenerative Orthopedics at OrthoRegen and Peter A. Fields, MD, DC. At OrthoRegen<sup>®</sup> , we offer innovative, non-surgical treatments for many sports injuries and chronic pain problems, including UCL injuries. Without unnecessary medication, prescriptions, cortisone shots, or surgery.  Regenerative Orthopedics can regenerate damaged or worn ligaments and strengthen weakened tendons.\r\n\r\nThe most beneficial aspect of our non-surgical sports injuries treatment is that you can continue to train while you receive the treatments. We treat athletes of all skill and age levels including high school and college athletes, and amateur or professional athletes.\r\n\r\nWe\'re here to help. Call today to schedule an evaluation to receive non-surgical treatment for your sports injuries or UCL injury with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Are You Suffering from other Sports Injuries?</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">K</a><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">nee Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL Tear</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-surgery-a-good-option-for-meniscus-tears/\">Torn Meniscus</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Neck-Pain\">Neck pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/stop-back-pain/\">Back Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/iliotibial-band-syndrome/\">IT Band Injury</a></li>\r\n 	<li>Shin Splints</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/prolotherapy-research/ankle-foot/\">Plantar Fasciitis</a></li>\r\n 	<li><a href=\"https://www.drfields.com/testimonials/hamstring-testimonials/\">Hamstring Strain</a></li>\r\n 	<li>Turf Toe</li>\r\n</ul>\r\n<strong><em> Prolotherapy Sports Injuries Treatment can help you get back in the game – and get back quickly!</em></strong>\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4><em>Prolotherapy Doctor Treats Sports Injuries Without Surgery</em></h4>\r\n<em>Receive treatment for your sports injuries by Ironman Triathlete Peter A. Fields, MD, DC. For over 25 years, Dr. Fields has been active in the sport of Triathlon and an 11 time Ironman finisher. And it is his experience as an athlete that allows him to understand the potential for injury and the demands of sports on the physical body. Plus, he also understands the passion athletes have to get back to training and competition, and their need to recover quickly from injury. He has been there! That\'s why Dr. Fields is known as The Athletic Doc<sup>®</sup>. Wouldn’t you want to be treated by a sports doctor who is also an athlete?</em>\r\n\r\nCheck out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Testimonials page</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>References</h3>\r\n1 Hertel, A.College baseball pitcher Sang Ho Baek dies from complications following Tommy John elbow surgery. USA Today. 2021 Jun 9. https://www.usatoday.com/story/sports/college/baseball/2021/06/19/george-mason-pitcher-sang-ho-baek-dies-after-tommy-john-surgery/7753020002/\r\n\r\n2 Hauser RA, Lackner JB, Steilen-Matias D, Harris DK. A systematic review of dextrose prolotherapy for chronic musculoskeletal pain. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2016 Jan;9:CMAMD-S39160. [<a href=\"https://scholar.google.com/scholar?cluster=6379361293355508471&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]','Tommy John Surgery and All Surgeries Can Come with Risks','','inherit','closed','closed','','632-revision-v1','','','2021-06-21 20:02:54','2021-06-21 20:02:54','',632,'https://www.drfields.com/?p=4750',0,'revision','',0),(4751,9,'2021-06-21 20:04:24','2021-06-21 20:04:24','<h2>Tommy John Surgery and All Surgeries Come with Risks</h2>\r\n[caption id=\"attachment_4748\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4748\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/tommy-john-500x500.jpg\" alt=\"Tommy John\" width=\"500\" height=\"500\" /> <strong>    Tommy John Surgery Alternative: Regenerative Orthopedics</strong>[/caption]\r\n\r\nMost of us have seen major league baseball players in the news because they have undergone the infamous “Tommy John Surgery.” And many of them have had success, but others have not.  It is important to realize that surgery is risky, even if that surgery is deemed a minor one. Just recently, the George Mason University baseball team lost a 20-year-old student-athlete. The freshman died unexpectedly from complications after a <a href=\"https://www.usatoday.com/story/sports/college/baseball/2021/06/19/george-mason-pitcher-sang-ho-baek-dies-after-tommy-john-surgery/7753020002/\">Tommy John elbow surgery.1 </a>\r\n\r\nTommy John surgery is a common procedure for baseball pitchers. The surgery is used to repair a torn ulnar collateral ligament (UCL) inside the elbow. And the procedure is becoming more common among young pitchers due to the stress pitching puts on the elbow.\r\n<h3><strong>Non-Surgical Alternatives to Tommy John Surgery </strong></h3>\r\nThe good news is that there is a non-surgical alternative to repair the UCL. At OrthoRegen<sup>®</sup>, we offer regenerative medicine techniques that include Prolotherapy, Platelet Rich Plasma Therapy, and Stem Cell Therapy. Our clinicians will recommend the best treatment for your individual case and situation.\r\n<h3>Regenerative Orthopedics for An Injured UCL</h3>\r\nProlotherapy is one type of regenerative therapy utilized at our clinic. It is the use of simple dextrose to heal a partially torn ligament. How does it work? If you are a pitcher with a UCL that is injured, you have most likely lost velocity in your fastball. Plus, the wear-and-tear transpiring in the elbow is probably causing pain on the inside of your arm.\r\n\r\nProlotherapy is not a new treatment. It has been used in clinical practice for more than 80 years to treat various chronic musculoskeletal conditions. And it is a safe and practical option to treat ligament damage. How does it repair an injured ligament? By \"<strong>stimulating the regenerative processes in the joint that will facilitate the restoration of joint stability by augmenting the tensile strength of joint stabilizing structures, such as ligaments.\"2</strong>\r\n<h3>PRP As a Tommy John Surgery Alternative For UCL Injury Repair</h3>\r\nPRP treatment utilizes your own concentrated blood platelets, which are then injected into the injured areas of your elbow. Blood platelets are helpful at repair because they contain growth and healing factors.  PRP can play a great role in injury healing and may be part of the recommendation for repairing the UCL injury.\r\n<h3><strong>Is Regenerative Orthopedics As A Tommy John Surgery Alternative Always An Option?</strong></h3>\r\nRegenerative Orthopedics are great solutions to avoid surgery for the majority of musculoskeletal injuries involving soft tissue, including UCL injuries. Many injuries involve degeneration of the ligament, or even partial tears, and the UCL can be repaired and regenerated with Regenerative Orthopedics. There are times, such as when the ligament is completely torn, that surgery may be the only option. An experienced regenerative medicine clinician will give you a recommendation for the best treatment options after an evaluation.\r\n<h3>OrthoRegen<sup>®</sup> and Peter A. Fields, MD, DC: Experienced Regenerative Orthopedics Clinic and Physician</h3>\r\nIf an ulnar collateral ligament injury has stopped you, get back in the game with Regenerative Orthopedics at OrthoRegen and Peter A. Fields, MD, DC. At OrthoRegen<sup>®</sup> , we offer innovative, non-surgical treatments for many sports injuries and chronic pain problems, including UCL injuries. Without unnecessary medication, prescriptions, cortisone shots, or surgery.  Regenerative Orthopedics can regenerate damaged or worn ligaments and strengthen weakened tendons.\r\n\r\nThe most beneficial aspect of our non-surgical sports injuries treatment is that you can continue to train while you receive the treatments. We treat athletes of all skill and age levels including high school and college athletes, and amateur or professional athletes.\r\n\r\nWe\'re here to help. Call today to schedule an evaluation to receive non-surgical treatment for your sports injuries or UCL injury with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Are You Suffering from other Sports Injuries?</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">K</a><a href=\"https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment\">nee Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL Tear</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-surgery-a-good-option-for-meniscus-tears/\">Torn Meniscus</a></li>\r\n 	<li><a href=\"https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Neck-Pain\">Neck pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/stop-back-pain/\">Back Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/iliotibial-band-syndrome/\">IT Band Injury</a></li>\r\n 	<li>Shin Splints</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/prolotherapy-research/ankle-foot/\">Plantar Fasciitis</a></li>\r\n 	<li><a href=\"https://www.drfields.com/testimonials/hamstring-testimonials/\">Hamstring Strain</a></li>\r\n 	<li>Turf Toe</li>\r\n</ul>\r\n<strong><em> Prolotherapy Sports Injuries Treatment can help you get back in the game – and get back quickly!</em></strong>\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4><em>Prolotherapy Doctor Treats Sports Injuries Without Surgery</em></h4>\r\n<em>Receive treatment for your sports injuries by Ironman Triathlete Peter A. Fields, MD, DC. For over 25 years, Dr. Fields has been active in the sport of Triathlon and an 11 time Ironman finisher. And it is his experience as an athlete that allows him to understand the potential for injury and the demands of sports on the physical body. Plus, he also understands the passion athletes have to get back to training and competition, and their need to recover quickly from injury. He has been there! That\'s why Dr. Fields is known as The Athletic Doc<sup>®</sup>. Wouldn’t you want to be treated by a sports doctor who is also an athlete?</em>\r\n\r\nCheck out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Testimonials page</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>References</h3>\r\n1 Hertel, A.College baseball pitcher Sang Ho Baek dies from complications following Tommy John elbow surgery. USA Today. 2021 Jun 9. https://www.usatoday.com/story/sports/college/baseball/2021/06/19/george-mason-pitcher-sang-ho-baek-dies-after-tommy-john-surgery/7753020002/\r\n\r\n2 Hauser RA, Lackner JB, Steilen-Matias D, Harris DK. A systematic review of dextrose prolotherapy for chronic musculoskeletal pain. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2016 Jan;9:CMAMD-S39160. [<a href=\"https://scholar.google.com/scholar?cluster=6379361293355508471&amp;hl=en&amp;as_sdt=0,31\" target=\"_blank\" rel=\"noopener noreferrer\">Google Scholar</a>]','Tommy John Surgery and All Surgeries Come with Risks','','inherit','closed','closed','','632-revision-v1','','','2021-06-21 20:04:24','2021-06-21 20:04:24','',632,'https://www.drfields.com/?p=4751',0,'revision','',0),(4752,9,'2021-06-28 21:42:02','2021-06-28 21:42:02','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" />           <em><strong> Non-Surgical Services at OrthoRegen for Joint Pain</strong></em>[/caption]\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\n\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\n\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\n\nWe will make every effort to instill the feeling that your time with us is worth it.\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\n\n<em>We accept credit cards, checks, or cash for payment of services.</em>\n<h4>What Should I Expect at the First Visit?</h4>\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\n[caption id=\"\" align=\"alignleft\" width=\"561\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"561\" height=\"415\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\nInitial Regenerative Orthopedic Consultation: $300\n<h4>Prolotherapy Charges:</h4>\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $400\nMedium Joint (Knee, hip, shoulder, ribs): $550\nLarge Joint (Groin, neck, mid-back, or low back): $700\n<h4><strong>Platelet Rich Plasma: </strong></h4>\n<h4>$550 Plus, the above joint charges</h4>\n<h4>Stem Cell Therapy:</h4>\nPlease call for pricing\n<h3></h3>\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\n\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\n\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\n\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\n<h3><u><strong>Are You a Medicare of Medi-cal Provider?</strong></u></h3>\n<u>No. And since we are not a Medicare or Medi-cal provider, <strong>we cannot bill Medicare or Medi-cal.</strong></u>\nPlease do not ask us to attempt this, as it is not possible.\n<h3><u><strong>Are Medical Records or MRI’s/X-rays Necessary?</strong></u></h3>\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\n\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\n\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-autosave-v1','','','2021-06-28 21:42:02','2021-06-28 21:42:02','',207,'https://www.drfields.com/?p=4752',0,'revision','',0),(4753,9,'2021-06-25 20:11:37','2021-06-25 20:11:37','<h2>Common Questions for Services at OrthoRegen</h2>\r\n<h3><img class=\"alignleft size-full wp-image-288\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" /></h3>\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\nWe accept credit cards, checks, or cash for payment of services.\r\n<h4>For your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time.\r\nThis takes approximately 30-40 minutes.</h4>\r\n<h4>Then the treatment options are explained (prices below)<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af alignright\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"350\" height=\"259\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a></h4>\r\n<h4>Fees According to Services\r\nInitial Regenerative Orthopedic Consultation: $300</h4>\r\n<h4>Prolotherapy Charges</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): $400\r\nMedium Joint (knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): $700\r\nPRP (in addition to the above joint charges): $550\r\n<h4>Stem Cell Therapy: Please call for pricing</h4>\r\n<h3>Insurance Policy</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\nWe accept credit cards, checks, or cash for payment of services. Since <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment or any other Regenerative Orthopedics treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-25 20:11:37','2021-06-25 20:11:37','',207,'https://www.drfields.com/?p=4753',0,'revision','',0),(4754,9,'2021-06-25 20:18:40','2021-06-25 20:18:40','<h2>Common Questions for Services at OrthoRegen</h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" />             Non-Surgical Services at OrthoRegen for Joint Pain[/caption]\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>For your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time.\r\nThis takes approximately 30-40 minutes.</h4>\r\n<h4>The treatment options are explained (prices below):</h4>\r\n[caption id=\"\" align=\"alignleft\" width=\"561\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"561\" height=\"415\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3>Fees According to Services:</h3>\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): $400\r\nMedium Joint (knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): $700\r\nPRP (in addition to the above joint charges): $550\r\n<h4>Stem Cell Therapy: Please call for pricing</h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3>Insurance Policy for Services</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\nWe accept credit cards, checks, or cash for payment of services. Since <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment or any other Regenerative Orthopedics treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-25 20:18:40','2021-06-25 20:18:40','',207,'https://www.drfields.com/?p=4754',0,'revision','',0),(4755,9,'2021-06-25 20:35:16','2021-06-25 20:35:16','<h2>Common Questions for Services at OrthoRegen</h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> Non-Surgical Services at OrthoRegen for Joint Pain[/caption]\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>For your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time.\r\nThis takes approximately 30-40 minutes.</h4>\r\n<h4>The treatment options are explained (prices below):</h4>\r\n[caption id=\"\" align=\"alignleft\" width=\"561\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"561\" height=\"415\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3>Fees According to Services:</h3>\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): $400\r\nMedium Joint (knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): $700\r\nPRP (in addition to the above joint charges): $550\r\n<h4>Stem Cell Therapy: Please call for pricing</h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3>Insurance Policy for Services</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\nWe accept credit cards, checks, or cash for payment of services. Since <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment or any other Regenerative Orthopedics treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-25 20:35:16','2021-06-25 20:35:16','',207,'https://www.drfields.com/?p=4755',0,'revision','',0),(4756,9,'2021-06-25 20:45:44','2021-06-25 20:45:44','<h2>Common Questions for Services at OrthoRegen</h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> Non-Surgical Services at OrthoRegen for Joint Pain[/caption]\r\n<h3><strong>What Is the Payment Policy for Services?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen a Fee for Service Office?</h3>\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>For your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time.\r\nThis takes approximately 30-40 minutes.</h4>\r\n<h4>The treatment options are explained (prices below):</h4>\r\n[caption id=\"\" align=\"alignleft\" width=\"561\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"561\" height=\"415\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3>Fees According to Services:</h3>\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): $400\r\nMedium Joint (knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): $700\r\nPRP (in addition to the above joint charges): $550\r\n<h4>Stem Cell Therapy: Please call for pricing</h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3>Insurance Policy for Services</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\nWe accept credit cards, checks, or cash for payment of services. Since <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment or any other Regenerative Orthopedics treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-25 20:45:44','2021-06-25 20:45:44','',207,'https://www.drfields.com/?p=4756',0,'revision','',0),(4757,9,'2021-06-25 20:46:50','2021-06-25 20:46:50','<h2>Common Questions for Services at OrthoRegen</h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> Non-Surgical Services at OrthoRegen for Joint Pain[/caption]\r\n<h3><strong>What Is the Payment Policy for Services?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>For your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time.\r\nThis takes approximately 30-40 minutes.</h4>\r\n<h4>The treatment options are explained (prices below):</h4>\r\n[caption id=\"\" align=\"alignleft\" width=\"561\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"561\" height=\"415\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3>Fees According to Services:</h3>\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ ): $400\r\nMedium Joint (knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, Neck, Mid Back or Low Back): $700\r\nPRP (in addition to the above joint charges): $550\r\n<h4>Stem Cell Therapy: Please call for pricing</h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3>Insurance Policy for Services</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\nWe accept credit cards, checks, or cash for payment of services. Since <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment or any other Regenerative Orthopedics treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-25 20:46:50','2021-06-25 20:46:50','',207,'https://www.drfields.com/?p=4757',0,'revision','',0),(4758,9,'2021-06-25 20:59:19','2021-06-25 20:59:19','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> Non-Surgical Services at OrthoRegen for Joint Pain[/caption]\r\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>What Should I Expect at the First Visit?</h4>\r\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\r\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\r\n[caption id=\"\" align=\"alignleft\" width=\"561\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"561\" height=\"415\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>     We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $400\r\nMedium Joint (Knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, neck, mid-back, or low back): $700\r\nPRP (in addition to the above joint charges): $5\r\n<h4>Stem Cell Therapy: Please call for pricing</h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\r\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-25 20:59:19','2021-06-25 20:59:19','',207,'https://www.drfields.com/?p=4758',0,'revision','',0),(4759,9,'2021-06-25 21:01:25','2021-06-25 21:01:25','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> Non-Surgical Services at OrthoRegen for Joint Pain[/caption]\r\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>What Should I Expect at the First Visit?</h4>\r\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\r\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\r\n[caption id=\"\" align=\"alignleft\" width=\"561\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"561\" height=\"415\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>     We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $400\r\nMedium Joint (Knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, neck, mid-back, or low back): $700\r\nPRP (in addition to the above joint charges): $5\r\n<h4>Stem Cell Therapy: Please call for pricing</h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>Are You a Medicare of Medi-cal Provider?</strong></u>\r\n\r\n<u>No. And since we are not a Medicare or Medi-cal provider, <strong>we cannot bill Medicare or Medi-cal.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\r\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-25 21:01:25','2021-06-25 21:01:25','',207,'https://www.drfields.com/?p=4759',0,'revision','',0),(4760,9,'2021-06-25 21:07:49','2021-06-25 21:07:49','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> Non-Surgical Services at OrthoRegen for Joint Pain[/caption]\r\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>What Should I Expect at the First Visit?</h4>\r\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\r\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\r\n[caption id=\"\" align=\"alignleft\" width=\"561\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"561\" height=\"415\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>     We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $400\r\nMedium Joint (Knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, neck, mid-back, or low back): $700\r\nPRP (in addition to the above joint charges): $5\r\n<h4>Stem Cell Therapy:</h4>\r\nPlease call for pricing\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>Are You a Medicare of Medi-cal Provider?</strong></u>\r\n\r\n<u>No. And since we are not a Medicare or Medi-cal provider, <strong>we cannot bill Medicare or Medi-cal.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\r\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-25 21:07:49','2021-06-25 21:07:49','',207,'https://www.drfields.com/?p=4760',0,'revision','',0),(4761,9,'2021-06-25 21:08:20','2021-06-25 21:08:20','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> Non-Surgical Services at OrthoRegen for Joint Pain[/caption]\r\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>What Should I Expect at the First Visit?</h4>\r\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\r\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\r\n[caption id=\"\" align=\"alignleft\" width=\"561\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"561\" height=\"415\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>   We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $400\r\nMedium Joint (Knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, neck, mid-back, or low back): $700\r\nPRP (in addition to the above joint charges): $5\r\n<h4>Stem Cell Therapy:</h4>\r\nPlease call for pricing\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>Are You a Medicare of Medi-cal Provider?</strong></u>\r\n\r\n<u>No. And since we are not a Medicare or Medi-cal provider, <strong>we cannot bill Medicare or Medi-cal.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\r\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-25 21:08:20','2021-06-25 21:08:20','',207,'https://www.drfields.com/?p=4761',0,'revision','',0),(4762,9,'2021-06-25 21:08:41','2021-06-25 21:08:41','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> Non-Surgical Services at OrthoRegen for Joint Pain[/caption]\r\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>What Should I Expect at the First Visit?</h4>\r\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\r\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\r\n[caption id=\"\" align=\"alignleft\" width=\"561\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"561\" height=\"415\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $400\r\nMedium Joint (Knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, neck, mid-back, or low back): $700\r\nPRP (in addition to the above joint charges): $5\r\n<h4>Stem Cell Therapy:</h4>\r\nPlease call for pricing\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>Are You a Medicare of Medi-cal Provider?</strong></u>\r\n\r\n<u>No. And since we are not a Medicare or Medi-cal provider, <strong>we cannot bill Medicare or Medi-cal.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\r\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-25 21:08:41','2021-06-25 21:08:41','',207,'https://www.drfields.com/?p=4762',0,'revision','',0),(4763,9,'2021-06-25 21:18:25','2021-06-25 21:18:25','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> Non-Surgical Services at OrthoRegen for Joint Pain[/caption]\r\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>What Should I Expect at the First Visit?</h4>\r\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\r\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\r\n[caption id=\"\" align=\"alignleft\" width=\"561\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"561\" height=\"415\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $400\r\nMedium Joint (Knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, neck, mid-back, or low back): $700\r\nPRP (in addition to the above joint charges): $5\r\n<h4>Stem Cell Therapy:</h4>\r\nPlease call for pricing\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n<h3><u><strong>Are You a Medicare of Medi-cal Provider?</strong></u></h3>\r\n<u>No. And since we are not a Medicare or Medi-cal provider, <strong>we cannot bill Medicare or Medi-cal.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n<h3><u><strong>Are Medical Records or MRI’s/X-rays Necessary?</strong></u></h3>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\r\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-25 21:18:25','2021-06-25 21:18:25','',207,'https://www.drfields.com/?p=4763',0,'revision','',0),(4764,9,'2021-06-28 21:40:14','2021-06-28 21:40:14','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> Non-Surgical Services at OrthoRegen for Joint Pain[/caption]\r\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>What Should I Expect at the First Visit?</h4>\r\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\r\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\r\n[caption id=\"\" align=\"alignleft\" width=\"561\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"561\" height=\"415\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $400\r\nMedium Joint (Knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, neck, mid-back, or low back): $700\r\n<h4><strong>Platelet Rich Plasma: $550</strong></h4>\r\nPlus, the above joint charges\r\n<h4>Stem Cell Therapy:</h4>\r\nPlease call for pricing\r\n<h3></h3>\r\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n<h3><u><strong>Are You a Medicare of Medi-cal Provider?</strong></u></h3>\r\n<u>No. And since we are not a Medicare or Medi-cal provider, <strong>we cannot bill Medicare or Medi-cal.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n<h3><u><strong>Are Medical Records or MRI’s/X-rays Necessary?</strong></u></h3>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\r\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-28 21:40:14','2021-06-28 21:40:14','',207,'https://www.drfields.com/?p=4764',0,'revision','',0),(4765,9,'2021-06-28 21:42:21','2021-06-28 21:42:21','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" />           <em><strong> Non-Surgical Services at OrthoRegen for Joint Pain</strong></em>[/caption]\r\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>What Should I Expect at the First Visit?</h4>\r\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\r\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\r\n[caption id=\"\" align=\"alignleft\" width=\"561\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"561\" height=\"415\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $400\r\nMedium Joint (Knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, neck, mid-back, or low back): $700\r\n<h4><strong>Platelet Rich Plasma: </strong>$550 Plus, the above joint charges</h4>\r\n<h4>Stem Cell Therapy: Please call for pricing</h4>\r\n<h3></h3>\r\n&nbsp;\r\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n<h3><u><strong>Are You a Medicare of Medi-cal Provider?</strong></u></h3>\r\n<u>No. And since we are not a Medicare or Medi-cal provider, <strong>we cannot bill Medicare or Medi-cal.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n<h3><u><strong>Are Medical Records or MRI’s/X-rays Necessary?</strong></u></h3>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\r\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-28 21:42:21','2021-06-28 21:42:21','',207,'https://www.drfields.com/?p=4765',0,'revision','',0),(4766,9,'2021-06-28 21:43:18','2021-06-28 21:43:18','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> <em><strong> Non-Surgical Services at OrthoRegen for Joint Pain</strong></em>[/caption]\r\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>What Should I Expect at the First Visit?</h4>\r\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\r\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\r\n[caption id=\"\" align=\"alignleft\" width=\"561\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"561\" height=\"415\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3></h3>\r\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $400\r\nMedium Joint (Knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, neck, mid-back, or low back): $70\r\n<h4><strong>Platelet Rich Plasma: </strong>$550 Plus, the above joint charges</h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4>Stem Cell Therapy: Please call for pricing</h4>\r\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n<h3><u><strong>Are You a Medicare of Medi-cal Provider?</strong></u></h3>\r\n<u>No. And since we are not a Medicare or Medi-cal provider, <strong>we cannot bill Medicare or Medi-cal.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n<h3><u><strong>Are Medical Records or MRI’s/X-rays Necessary?</strong></u></h3>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\r\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-28 21:43:18','2021-06-28 21:43:18','',207,'https://www.drfields.com/?p=4766',0,'revision','',0),(4767,9,'2021-06-28 21:44:25','2021-06-28 21:44:25','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> <em><strong> Non-Surgical Services at OrthoRegen for Joint Pain</strong></em>[/caption]\r\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>What Should I Expect at the First Visit?</h4>\r\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\r\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\r\n[caption id=\"\" align=\"alignleft\" width=\"561\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"561\" height=\"415\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3></h3>\r\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $400\r\nMedium Joint (Knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, neck, mid-back, or low back): $70\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><strong>Platelet Rich Plasma: </strong>$550 Plus, the above joint charges</h4>\r\n<h4>Stem Cell Therapy: Please call for pricing</h4>\r\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n<h3><u><strong>Are You a Medicare of Medi-cal Provider?</strong></u></h3>\r\n<u>No. And since we are not a Medicare or Medi-cal provider, <strong>we cannot bill Medicare or Medi-cal.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n<h3><u><strong>Are Medical Records or MRI’s/X-rays Necessary?</strong></u></h3>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\r\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-28 21:44:25','2021-06-28 21:44:25','',207,'https://www.drfields.com/?p=4767',0,'revision','',0),(4768,9,'2021-06-28 21:45:07','2021-06-28 21:45:07','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> <em><strong> Non-Surgical Services at OrthoRegen for Joint Pain</strong></em>[/caption]\r\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>What Should I Expect at the First Visit?</h4>\r\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\r\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\r\n[caption id=\"\" align=\"alignleft\" width=\"658\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"658\" height=\"488\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3></h3>\r\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\r\n&nbsp;\r\n\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $400\r\nMedium Joint (Knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, neck, mid-back, or low back): $70\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><strong>Platelet Rich Plasma: </strong>$550 Plus, the above joint charges</h4>\r\n<h4>Stem Cell Therapy: Please call for pricing</h4>\r\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n<h3><u><strong>Are You a Medicare of Medi-cal Provider?</strong></u></h3>\r\n<u>No. And since we are not a Medicare or Medi-cal provider, <strong>we cannot bill Medicare or Medi-cal.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n<h3><u><strong>Are Medical Records or MRI’s/X-rays Necessary?</strong></u></h3>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\r\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-28 21:45:07','2021-06-28 21:45:07','',207,'https://www.drfields.com/?p=4768',0,'revision','',0),(4769,9,'2021-06-28 21:46:05','2021-06-28 21:46:05','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> <em><strong> Non-Surgical Services at OrthoRegen for Joint Pain</strong></em>[/caption]\r\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>What Should I Expect at the First Visit?</h4>\r\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\r\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\r\n[caption id=\"\" align=\"alignright\" width=\"586\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"586\" height=\"434\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3></h3>\r\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\r\n&nbsp;\r\n\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $400\r\nMedium Joint (Knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, neck, mid-back, or low back): $70\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><strong>Platelet Rich Plasma: </strong>$550 Plus, the above joint charges</h4>\r\n<h4>Stem Cell Therapy: Please call for pricing</h4>\r\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n<h3><u><strong>Are You a Medicare of Medi-cal Provider?</strong></u></h3>\r\n<u>No. And since we are not a Medicare or Medi-cal provider, <strong>we cannot bill Medicare or Medi-cal.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n<h3><u><strong>Are Medical Records or MRI’s/X-rays Necessary?</strong></u></h3>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\r\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-28 21:46:05','2021-06-28 21:46:05','',207,'https://www.drfields.com/?p=4769',0,'revision','',0),(4770,9,'2021-06-28 21:46:52','2021-06-28 21:46:52','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> <em><strong> Non-Surgical Services at OrthoRegen for Joint Pain</strong></em>[/caption]\r\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>What Should I Expect at the First Visit?</h4>\r\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\r\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\r\n[caption id=\"\" align=\"alignright\" width=\"586\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"586\" height=\"434\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3></h3>\r\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $400\r\nMedium Joint (Knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, neck, mid-back, or low back): $70\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><strong>Platelet Rich Plasma: </strong>$550 Plus, the above joint charges</h4>\r\n<h4>Stem Cell Therapy: Please call for pricing</h4>\r\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n<h3><u><strong>Are You a Medicare of Medi-cal Provider?</strong></u></h3>\r\n<u>No. And since we are not a Medicare or Medi-cal provider, <strong>we cannot bill Medicare or Medi-cal.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n<h3><u><strong>Are Medical Records or MRI’s/X-rays Necessary?</strong></u></h3>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\r\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-28 21:46:52','2021-06-28 21:46:52','',207,'https://www.drfields.com/?p=4770',0,'revision','',0),(4771,9,'2021-06-28 21:47:52','2021-06-28 21:47:52','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> <em><strong> Non-Surgical Services at OrthoRegen for Joint Pain</strong></em>[/caption]\r\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>What Should I Expect at the First Visit?</h4>\r\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\r\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\r\n[caption id=\"\" align=\"alignright\" width=\"586\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"586\" height=\"434\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3></h3>\r\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\r\nInitial Regenerative Orthopedic Consultation: $300\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $400\r\nMedium Joint (Knee, hip, shoulder, ribs): $550\r\nLarge Joint (Groin, neck, mid-back, or low back): $70\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><strong>Platelet Rich Plasma:</strong></h4>\r\n<strong> </strong>$550 Plus, the above joint charges\r\n<h4>Stem Cell Therapy:</h4>\r\nPlease call for pricing\r\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n<h3><u><strong>Are You a Medicare of Medi-cal Provider?</strong></u></h3>\r\n<u>No. And since we are not a Medicare or Medi-cal provider, <strong>we cannot bill Medicare or Medi-cal.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n<h3><u><strong>Are Medical Records or MRI’s/X-rays Necessary?</strong></u></h3>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\r\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2021-06-28 21:47:52','2021-06-28 21:47:52','',207,'https://www.drfields.com/?p=4771',0,'revision','',0),(4773,9,'2021-07-07 19:28:04','2021-07-07 19:28:04','<h2>Get Rid of Back Pain with Regenerative Orthopedics</h2>\nOne of the main reasons patients come to OrthoRegen<sup>®</sup> is to get rid of back pain. They want to get back to doing the activities they love. And Regenerative Orthopedics is an effective repair and a great alternative to risky surgery! Also, since back injury is another common reason our patients say they have had to stop participation in sports, this non-surgical option is a clear solution to return them quickly to their sport.\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur – Low Back\"]\n<strong>Wilbur - Low Back</strong></div>\n<h3>What Is Behind Back Pain</h3>\nBack pain is one of the leading causes of disability. But what is the reason for back pain? Very often, the culprit behind back pain is spinal instability. Many of the traditional treatments for back pain are not able to repair this root cause behind the pain. For example, back pain sufferers often try NSAID medications (like Ibuprofen or Naproxen), or even nerve blocks to get rid of their pain. But they don\'t find lasting relief. That\'s because these medications only cover up the pain. They don\'t really repair anything.\n\nCortisone injections, prescribed pain pills, and muscle relaxers only cover up the pain. Meanwhile,  the degeneration continues, and patients end up getting stuck in a cycle of managing their pain. This is because they are only treating the symptoms versus correcting the underlying spinal instability. Comprehensive Regenerative Orthopedics can stop this cycle by regenerating the weakened and overstretched soft tissue structures along the spine. The result? The treatments alleviate the pain and instability once and for all.\n\nRegenerative Orthopedics treats back pain quickly and safely and gives a more desirable pain-relief outcome. Do you want to get off the back pain merry-go-round? Then give us a call and we\'ll schedule an appointment with our specialist.\n\nRemember, Regenerative Orthopedics is reparative. It helps your body to heal by repairing the injured soft tissue causing spinal instability. Join our growing patient list of people who have benefited from comprehensive treatment.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h3><strong>Get rid of back pain from these common conditions with Regenerative Orthopedics:</strong></h3>\n<ul>\n 	<li><a href=\"https://www.drfields.com/relieve-arthritis-pain/\">Arthritis</a></li>\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/stop-back-pain/\">Back pain</a></li>\n 	<li>Bulging discs</li>\n 	<li>Buttock pain</li>\n 	<li>Coccyx pain</li>\n 	<li>Degenerated discs</li>\n 	<li>Herniated discs</li>\n 	<li>Ischial tuberosity pain</li>\n 	<li>Failed back fusion pain</li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/failed-back-surgery-syndrome/\">Failed back surgery syndrome</a></li>\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/low-back-pain-treatments-and-the-challenges-at-finding-relief/\">Lower back pain</a></li>\n 	<li>Muscle spasms</li>\n 	<li>Pelvic floor dysfunction</li>\n 	<li>Pelvic pain</li>\n 	<li>Retrolisthesis</li>\n 	<li>Sacroiliac injury</li>\n 	<li>Stiffness</li>\n 	<li>Tailbone pain</li>\n 	<li>Thoracic spine pain</li>\n 	<li>SI instability</li>\n 	<li>Subluxation</li>\n 	<li>Yoga injury</li>\n</ul>\n<h4>Are You A Candidate for Regenerative Orthopedics?</h4>\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Dextrose Prolotherapy</a> back treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our regenerative treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>® </sup> at <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials/\">Prolotherapy Back Testimonials page</a>.\n\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>','Get Rid of Back Pain with Regenerative Orthopedics','','inherit','closed','closed','','567-autosave-v1','','','2021-07-07 19:28:04','2021-07-07 19:28:04','',567,'https://www.drfields.com/?p=4773',0,'revision','',0),(4774,9,'2021-07-07 19:23:33','2021-07-07 19:23:33','<h2>Get Rid of Back Pain with Regenerative Orthopedics</h2>\r\nOne of the main reasons patients come to OrthoRegen<sup>®</sup> is to get rid of back pain. They want to get back to doing the activities they love. And Regenerative Orthopedics is an effective repair and a great alternative to risky surgery! Also, since back injury is another common reason our patients say they have had to stop participation in sports, this non-surgical option is a clear solution to return them quickly to their sport.\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur – Low Back\"]\r\n<strong>Wilbur - Low Back</strong></div>\r\n<h3>What Is Behind Back Pain</h3>\r\nBack pain is one of the leading causes of disability. But what is the reason for back pain? Very often, the culprit behind back pain is spinal instability. Many of the traditional treatments for back pain are not able to repair this root cause behind the pain. For example, back pain sufferers often try NSAID medications (like Ibuprofen or Naproxen), or even nerve blocks to get rid of their pain. But they don\'t find lasting relief. That\'s because these medications only cover up the pain. They don\'t really repair anything.\r\n\r\nCortisone injections, prescribed pain pills, and muscle relaxers only cover up the pain. Meanwhile,  the degeneration continues, and patients end up getting stuck in a cycle of managing their pain. This is because they are only treating the symptoms versus correcting the underlying spinal instability. Comprehensive Regenerative Orthopedics can stop this cycle by regenerating the weakened and overstretched soft tissue structures along the spine. The result? The treatments alleviate the pain and instability once and for all.\r\n\r\nRegenerative Orthopedics treats back pain quickly and safely and gives a more desirable pain-relief outcome. Do you want to get off the back pain merry-go-round? Then give us a call and we\'ll schedule an appointment with our specialist.\r\n\r\nRemember, Regenerative Orthopedics is reparative. It helps your body to heal by repairing the injured soft tissue causing spinal instability. Join our growing patient list of people who have benefited from comprehensive treatment.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3><strong>Get rid of back pain from these common conditions with Regenerative Orthopedics:</strong></h3>\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Back pain</li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Buttock pain</li>\r\n 	<li>Coccyx pain</li>\r\n 	<li>Degenerated discs</li>\r\n 	<li>Herniated discs</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Failed back fusion pain</li>\r\n 	<li>Failed back surgery syndrome</li>\r\n 	<li>Lower back pain</li>\r\n 	<li>Muscle spasms</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Pelvic pain</li>\r\n 	<li>Retrolisthesis</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tailbone pain</li>\r\n 	<li>Thoracic spine pain</li>\r\n 	<li>SI instability</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Yoga injury</li>\r\n</ul>\r\n<h4>Are You A Candidate for Regenerative Orthopedics?</h4>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Dextrose Prolotherapy</a> back treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our regenerative treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>® </sup> at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials/\">Prolotherapy Back Testimonials page</a>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>','Get Rid of Back Pain with Regenerative Orthopedics','','inherit','closed','closed','','567-revision-v1','','','2021-07-07 19:23:33','2021-07-07 19:23:33','',567,'https://www.drfields.com/?p=4774',0,'revision','',0),(4775,9,'2021-07-07 19:29:00','2021-07-07 19:29:00','<h2>Get Rid of Back Pain with Regenerative Orthopedics</h2>\r\nOne of the main reasons patients come to OrthoRegen<sup>®</sup> is to get rid of back pain. They want to get back to doing the activities they love. And Regenerative Orthopedics is an effective repair and a great alternative to risky surgery! Also, since back injury is another common reason our patients say they have had to stop participation in sports, this non-surgical option is a clear solution to return them quickly to their sport.\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Hp4lUuSalOE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Wilbur – Low Back\"]\r\n<strong>Wilbur - Low Back</strong></div>\r\n<h3>What Is Behind Back Pain</h3>\r\nBack pain is one of the leading causes of disability. But what is the reason for back pain? Very often, the culprit behind back pain is spinal instability. Many of the traditional treatments for back pain are not able to repair this root cause behind the pain. For example, back pain sufferers often try NSAID medications (like Ibuprofen or Naproxen), or even nerve blocks to get rid of their pain. But they don\'t find lasting relief. That\'s because these medications only cover up the pain. They don\'t really repair anything.\r\n\r\nCortisone injections, prescribed pain pills, and muscle relaxers only cover up the pain. Meanwhile,  the degeneration continues, and patients end up getting stuck in a cycle of managing their pain. This is because they are only treating the symptoms versus correcting the underlying spinal instability. Comprehensive Regenerative Orthopedics can stop this cycle by regenerating the weakened and overstretched soft tissue structures along the spine. The result? The treatments alleviate the pain and instability once and for all.\r\n\r\nRegenerative Orthopedics treats back pain quickly and safely and gives a more desirable pain-relief outcome. Do you want to get off the back pain merry-go-round? Then give us a call and we\'ll schedule an appointment with our specialist.\r\n\r\nRemember, Regenerative Orthopedics is reparative. It helps your body to heal by repairing the injured soft tissue causing spinal instability. Join our growing patient list of people who have benefited from comprehensive treatment.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3><strong>Get rid of back pain from these common conditions with Regenerative Orthopedics:</strong></h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/relieve-arthritis-pain/\">Arthritis</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/stop-back-pain/\">Back pain</a></li>\r\n 	<li>Bulging discs</li>\r\n 	<li>Buttock pain</li>\r\n 	<li>Coccyx pain</li>\r\n 	<li>Degenerated discs</li>\r\n 	<li>Herniated discs</li>\r\n 	<li>Ischial tuberosity pain</li>\r\n 	<li>Failed back fusion pain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/failed-back-surgery-syndrome/\">Failed back surgery syndrome</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/low-back-pain-treatments-and-the-challenges-at-finding-relief/\">Lower back pain</a></li>\r\n 	<li>Muscle spasms</li>\r\n 	<li>Pelvic floor dysfunction</li>\r\n 	<li>Pelvic pain</li>\r\n 	<li>Retrolisthesis</li>\r\n 	<li>Sacroiliac injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tailbone pain</li>\r\n 	<li>Thoracic spine pain</li>\r\n 	<li>SI instability</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Yoga injury</li>\r\n</ul>\r\n<h4>Are You A Candidate for Regenerative Orthopedics?</h4>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Dextrose Prolotherapy</a> back treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our regenerative treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>® </sup> at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Low-Back-Testimonials/\">Prolotherapy Back Testimonials page</a>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>','Get Rid of Back Pain with Regenerative Orthopedics','','inherit','closed','closed','','567-revision-v1','','','2021-07-07 19:29:00','2021-07-07 19:29:00','',567,'https://www.drfields.com/?p=4775',0,'revision','',0),(4776,9,'2021-07-07 23:13:32','2021-07-07 23:13:32','<h2><span id=\"dnn_ctr420_dnnTITLE_titleLabel\" class=\"TitleH2\">Volunteering and Philanthropy</span></h2>\n<strong>Peter A. Fields, MD, DC enjoys volunteering as a medical physician in third world countries</strong>\n\nHow rewarding it is to give of our time and services to help those in need. Peter A. Fields, MD, DC has had the honor of volunteering with the <a href=\"http://www.hacketthemwall.org/WELCOME.html\" target=\"_blank\" rel=\"noopener noreferrer\">Hackett-Hemwall Foundation</a>, the world’s largest teaching and education organization for Prolotherapy.\n\nTogether with approximately 75 other physicians from the US, Mexico, Puerto Rico, Germany, Italy, South Africa, and other countries, Dr. Fields has traveled to an annual clinic in Honduras. He has been honored to be one of the 15 Faculty instructors with the foundation. Of the 75 physicians going to Honduras- the rest are students. They are there to learn or to improve their Prolotherapy skills all while helping those in need.\n\nDr. Fields says that providing to those in need has always been in his heart and when the opportunity arose to do so, he was excited.  And the patients were so grateful and appreciative. Many traveled many hours or even days and then waited all day for treatment. Most present with chronic knee, shoulder, low back, neck, ankle, foot, or other joint pain, often induced by working long hours in manual labor.\n<h3>Honduras</h3>\nHonduras is the third lowest-income country in the Western Hemisphere, only behind Haiti and Bolivia.  Access to health care is severely limited. This is why every year hundreds of local residents traveled by bicycle, foot, or bus to the free clinics sponsored by the Foundation in three small towns.\n\nHere the Foundation provides medical care and treatment for individuals who otherwise would not receive it. Based at the Red Cross Centers in each of the above cities, the clinicians treat hundreds of patients suffering from acute and chronic joint problems as well as and arthritis with Prolotherapy. Also known as regenerative or reconstructive therapy, Prolotherapy is a recognized non-surgical orthopedic procedure that stimulates the body\'s natural healing. It stimulates areas with targeted injections to strengthen joints weakened by overuse, arthritis, normal wear, and tear or trauma.\n\n&nbsp;\n\n[caption id=\"attachment_4779\" align=\"alignleft\" width=\"255\"]<img class=\"size-full wp-image-4779\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032-1.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" /> Honduras Clinic[/caption]\n\n[caption id=\"attachment_4780\" align=\"aligncenter\" width=\"255\"]<img class=\"size-medium wp-image-4780\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961-1.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" /> Friends and Physicians in Honduras [/caption]\n\n&nbsp;\n\n<img class=\"size-medium wp-image-4791\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-186x500.png\" alt=\"Honduras 2011\" width=\"186\" height=\"500\" />\n<h3>Mexico</h3>\nIn January of 2007, the Foundation opened its first clinic ever in Guadalajara, Mexico.\nAlthough not a rural as Honduras, the people there had never had the opportunity to experience Prolotherapy.  For this first clinic, only twelve instructor physicians were asked to go –  and Dr. Fields was one of those that were selected.  He found this experience just as rewarding.\n\n[caption id=\"attachment_4785\" align=\"alignnone\" width=\"500\"]<img class=\"size-medium wp-image-4785\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Guadalajara-Mexico-2006-500x393.png\" alt=\"Guadalajara Mexico 2006\" width=\"500\" height=\"393\" /> Guadalajara Mexico 2006[/caption]\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Peter A. Fields, MD, DC Volunteering and Philanthropy Overview','','inherit','closed','closed','','609-autosave-v1','','','2021-07-07 23:13:32','2021-07-07 23:13:32','',609,'https://www.drfields.com/?p=4776',0,'revision','',0),(4777,9,'2021-07-07 22:40:08','2021-07-07 22:40:08','<h2><span id=\"dnn_ctr420_dnnTITLE_titleLabel\" class=\"TitleH2\">Volunteering and Philanthropy</span></h2>\r\n<strong>Peter A. Fields, MD, DC as a volunteer and medical physician in third world countries</strong>\r\n\r\nPeter A. Fields, MD, DC volunteers his time and services to help those in need. He volunteers with the <a href=\"http://www.hacketthemwall.org/WELCOME.html\" target=\"_blank\" rel=\"noopener noreferrer\">Hackett-Hemwall Foundation</a>, the world’s largest teaching and education organization for Prolotherapy.\r\n\r\nTogether with approximately 75 other physicians from the US, Mexico, Puerto Rico, Germany, Italy, South Africa, and other countries, Dr. Fields has traveled to an annual clinic in Honduras. He has been honored to be one of the 15 Faculty instructors with the foundation. Of the 75 physicians going to Honduras- the rest are students. They are there to learn or to improve their Prolotherapy skills all while helping those in need.\r\n\r\nDr. Fields says that providing to those in need has always been in his heart and when the opportunity arose to do so, he was excited.  And the patients were so grateful and appreciative. Many traveled many hours or even days and then waited all day for treatment. Most present with chronic knee, shoulder, low back, neck, ankle, foot, or other joint pain, often induced by working long hours in manual labor.\r\n<h3>Honduras</h3>\r\nHonduras is the third lowest-income country in the Western Hemisphere, only behind Haiti and Bolivia.  Access to health care is severely limited. This is why every year hundreds of local residents traveled by bicycle, foot, or bus to the free clinics sponsored by the Foundation in three small towns.\r\n\r\nHere the Foundation provides medical care and treatment for individuals who otherwise would not receive it. Based at the Red Cross Centers in each of the above cities, the clinicians treat hundreds of patients suffering from acute and chronic joint problems as well as and arthritis with Prolotherapy. Also known as regenerative or reconstructive therapy, Prolotherapy is a recognized non-surgical orthopedic procedure that stimulates the body\'s natural healing. It stimulates areas with targeted injections to strengthen joints weakened by overuse, arthritis, normal wear, and tear or trauma.\r\n<h3>Mexico</h3>\r\nIn January of 2007, the Foundation opened its first clinic ever in Guadalajara, Mexico.\r\nAlthough not a rural as Honduras, the people there had never had the opportunity to experience Prolotherapy.  For this first clinic, only twelve instructor physicians were asked to go –  and Dr. Fields was one of those that were selected.  He found this experience just as rewarding.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Volunteering and Philanthropy Overview','','inherit','closed','closed','','609-revision-v1','','','2021-07-07 22:40:08','2021-07-07 22:40:08','',609,'https://www.drfields.com/?p=4777',0,'revision','',0),(4778,9,'2021-07-07 22:43:22','2021-07-07 22:43:22','<h2><span id=\"dnn_ctr420_dnnTITLE_titleLabel\" class=\"TitleH2\">Volunteering and Philanthropy</span></h2>\r\n<strong>Peter A. Fields, MD, DC enjoys volunteering as a medical physician in third world countries</strong>\r\n\r\nHow rewarding it is to give of our time and services to help those in need. Peter A. Fields, MD, DC has had the honor of volunteering with the <a href=\"http://www.hacketthemwall.org/WELCOME.html\" target=\"_blank\" rel=\"noopener noreferrer\">Hackett-Hemwall Foundation</a>, the world’s largest teaching and education organization for Prolotherapy.\r\n\r\nTogether with approximately 75 other physicians from the US, Mexico, Puerto Rico, Germany, Italy, South Africa, and other countries, Dr. Fields has traveled to an annual clinic in Honduras. He has been honored to be one of the 15 Faculty instructors with the foundation. Of the 75 physicians going to Honduras- the rest are students. They are there to learn or to improve their Prolotherapy skills all while helping those in need.\r\n\r\nDr. Fields says that providing to those in need has always been in his heart and when the opportunity arose to do so, he was excited.  And the patients were so grateful and appreciative. Many traveled many hours or even days and then waited all day for treatment. Most present with chronic knee, shoulder, low back, neck, ankle, foot, or other joint pain, often induced by working long hours in manual labor.\r\n<h3>Honduras</h3>\r\nHonduras is the third lowest-income country in the Western Hemisphere, only behind Haiti and Bolivia.  Access to health care is severely limited. This is why every year hundreds of local residents traveled by bicycle, foot, or bus to the free clinics sponsored by the Foundation in three small towns.\r\n\r\nHere the Foundation provides medical care and treatment for individuals who otherwise would not receive it. Based at the Red Cross Centers in each of the above cities, the clinicians treat hundreds of patients suffering from acute and chronic joint problems as well as and arthritis with Prolotherapy. Also known as regenerative or reconstructive therapy, Prolotherapy is a recognized non-surgical orthopedic procedure that stimulates the body\'s natural healing. It stimulates areas with targeted injections to strengthen joints weakened by overuse, arthritis, normal wear, and tear or trauma.\r\n<h3>Mexico</h3>\r\nIn January of 2007, the Foundation opened its first clinic ever in Guadalajara, Mexico.\r\nAlthough not a rural as Honduras, the people there had never had the opportunity to experience Prolotherapy.  For this first clinic, only twelve instructor physicians were asked to go –  and Dr. Fields was one of those that were selected.  He found this experience just as rewarding.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Volunteering and Philanthropy Overview','','inherit','closed','closed','','609-revision-v1','','','2021-07-07 22:43:22','2021-07-07 22:43:22','',609,'https://www.drfields.com/?p=4778',0,'revision','',0),(4779,9,'2021-07-07 22:46:14','2021-07-07 22:46:14','Dscn1032','Dscn1032','Honduras 2008','inherit','open','closed','','dscn1032-2','','','2021-07-07 22:46:55','2021-07-07 22:46:55','',609,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032-1.jpg',0,'attachment','image/jpeg',0),(4780,9,'2021-07-07 22:46:16','2021-07-07 22:46:16','Dscn0961','Dscn0961','Dscn0961','inherit','open','closed','','dscn0961-2','','','2021-07-07 22:46:16','2021-07-07 22:46:16','',609,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961-1.jpg',0,'attachment','image/jpeg',0),(4781,9,'2021-07-07 22:46:19','2021-07-07 22:46:19','Dscn1029','Dscn1029','Dscn1029','inherit','open','closed','','dscn1029-2','','','2021-07-07 22:46:19','2021-07-07 22:46:19','',609,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1029-1.jpg',0,'attachment','image/jpeg',0),(4782,9,'2021-07-07 22:46:21','2021-07-07 22:46:21','Dscn1134','Dscn1134','Dscn1134','inherit','open','closed','','dscn1134-2','','','2021-07-07 22:46:21','2021-07-07 22:46:21','',609,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1134-1.jpg',0,'attachment','image/jpeg',0),(4783,9,'2021-07-07 22:50:42','2021-07-07 22:50:42','<h2><span id=\"dnn_ctr420_dnnTITLE_titleLabel\" class=\"TitleH2\">Volunteering and Philanthropy</span></h2>\r\n<strong>Peter A. Fields, MD, DC enjoys volunteering as a medical physician in third world countries</strong>\r\n\r\nHow rewarding it is to give of our time and services to help those in need. Peter A. Fields, MD, DC has had the honor of volunteering with the <a href=\"http://www.hacketthemwall.org/WELCOME.html\" target=\"_blank\" rel=\"noopener noreferrer\">Hackett-Hemwall Foundation</a>, the world’s largest teaching and education organization for Prolotherapy.\r\n\r\nTogether with approximately 75 other physicians from the US, Mexico, Puerto Rico, Germany, Italy, South Africa, and other countries, Dr. Fields has traveled to an annual clinic in Honduras. He has been honored to be one of the 15 Faculty instructors with the foundation. Of the 75 physicians going to Honduras- the rest are students. They are there to learn or to improve their Prolotherapy skills all while helping those in need.\r\n\r\nDr. Fields says that providing to those in need has always been in his heart and when the opportunity arose to do so, he was excited.  And the patients were so grateful and appreciative. Many traveled many hours or even days and then waited all day for treatment. Most present with chronic knee, shoulder, low back, neck, ankle, foot, or other joint pain, often induced by working long hours in manual labor.\r\n<h3>Honduras</h3>\r\nHonduras is the third lowest-income country in the Western Hemisphere, only behind Haiti and Bolivia.  Access to health care is severely limited. This is why every year hundreds of local residents traveled by bicycle, foot, or bus to the free clinics sponsored by the Foundation in three small towns.\r\n\r\nHere the Foundation provides medical care and treatment for individuals who otherwise would not receive it. Based at the Red Cross Centers in each of the above cities, the clinicians treat hundreds of patients suffering from acute and chronic joint problems as well as and arthritis with Prolotherapy. Also known as regenerative or reconstructive therapy, Prolotherapy is a recognized non-surgical orthopedic procedure that stimulates the body\'s natural healing. It stimulates areas with targeted injections to strengthen joints weakened by overuse, arthritis, normal wear, and tear or trauma.\r\n\r\n[caption id=\"attachment_4779\" align=\"alignleft\" width=\"255\"]<img class=\"size-full wp-image-4779\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032-1.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" /> Honduras 2008[/caption]\r\n\r\n[caption id=\"attachment_4780\" align=\"alignright\" width=\"255\"]<img class=\"size-medium wp-image-4780\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961-1.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" /> Friends and Physicians Honduras 2008[/caption]\r\n\r\n[caption id=\"attachment_4782\" align=\"aligncenter\" width=\"255\"]<img class=\"size-medium wp-image-4782\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1134-1.jpg\" alt=\"Dscn1134\" width=\"255\" height=\"191\" /> Shoulder Prolotherapy Honduras 2008[/caption]\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>Mexico</h3>\r\nIn January of 2007, the Foundation opened its first clinic ever in Guadalajara, Mexico.\r\nAlthough not a rural as Honduras, the people there had never had the opportunity to experience Prolotherapy.  For this first clinic, only twelve instructor physicians were asked to go –  and Dr. Fields was one of those that were selected.  He found this experience just as rewarding.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Volunteering and Philanthropy Overview','','inherit','closed','closed','','609-revision-v1','','','2021-07-07 22:50:42','2021-07-07 22:50:42','',609,'https://www.drfields.com/?p=4783',0,'revision','',0),(4784,9,'2021-07-07 22:53:14','2021-07-07 22:53:14','<h2><span id=\"dnn_ctr420_dnnTITLE_titleLabel\" class=\"TitleH2\">Volunteering and Philanthropy</span></h2>\r\n<strong>Peter A. Fields, MD, DC enjoys volunteering as a medical physician in third world countries</strong>\r\n\r\nHow rewarding it is to give of our time and services to help those in need. Peter A. Fields, MD, DC has had the honor of volunteering with the <a href=\"http://www.hacketthemwall.org/WELCOME.html\" target=\"_blank\" rel=\"noopener noreferrer\">Hackett-Hemwall Foundation</a>, the world’s largest teaching and education organization for Prolotherapy.\r\n\r\nTogether with approximately 75 other physicians from the US, Mexico, Puerto Rico, Germany, Italy, South Africa, and other countries, Dr. Fields has traveled to an annual clinic in Honduras. He has been honored to be one of the 15 Faculty instructors with the foundation. Of the 75 physicians going to Honduras- the rest are students. They are there to learn or to improve their Prolotherapy skills all while helping those in need.\r\n\r\nDr. Fields says that providing to those in need has always been in his heart and when the opportunity arose to do so, he was excited.  And the patients were so grateful and appreciative. Many traveled many hours or even days and then waited all day for treatment. Most present with chronic knee, shoulder, low back, neck, ankle, foot, or other joint pain, often induced by working long hours in manual labor.\r\n<h3>Honduras</h3>\r\nHonduras is the third lowest-income country in the Western Hemisphere, only behind Haiti and Bolivia.  Access to health care is severely limited. This is why every year hundreds of local residents traveled by bicycle, foot, or bus to the free clinics sponsored by the Foundation in three small towns.\r\n\r\nHere the Foundation provides medical care and treatment for individuals who otherwise would not receive it. Based at the Red Cross Centers in each of the above cities, the clinicians treat hundreds of patients suffering from acute and chronic joint problems as well as and arthritis with Prolotherapy. Also known as regenerative or reconstructive therapy, Prolotherapy is a recognized non-surgical orthopedic procedure that stimulates the body\'s natural healing. It stimulates areas with targeted injections to strengthen joints weakened by overuse, arthritis, normal wear, and tear or trauma.\r\n\r\n[caption id=\"attachment_4779\" align=\"alignleft\" width=\"255\"]<img class=\"size-full wp-image-4779\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032-1.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" /> Honduras 2008[/caption]\r\n\r\n[caption id=\"attachment_4780\" align=\"alignright\" width=\"255\"]<img class=\"size-medium wp-image-4780\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961-1.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" /> Friends and Physicians Honduras 2008[/caption]\r\n\r\n[caption id=\"attachment_4782\" align=\"aligncenter\" width=\"255\"]<img class=\"size-medium wp-image-4782\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1134-1.jpg\" alt=\"Dscn1134\" width=\"255\" height=\"191\" /> Shoulder Prolotherapy Honduras 2008[/caption]\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>Mexico</h3>\r\nIn January of 2007, the Foundation opened its first clinic ever in Guadalajara, Mexico.\r\nAlthough not a rural as Honduras, the people there had never had the opportunity to experience Prolotherapy.  For this first clinic, only twelve instructor physicians were asked to go –  and Dr. Fields was one of those that were selected.  He found this experience just as rewarding.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Peter A. Fields, MD, DC Volunteering and Philanthropy Overview','','inherit','closed','closed','','609-revision-v1','','','2021-07-07 22:53:14','2021-07-07 22:53:14','',609,'https://www.drfields.com/?p=4784',0,'revision','',0),(4785,9,'2021-07-07 22:57:27','2021-07-07 22:57:27','Guadalajara Mexico 2006','Guadalajara Mexico 2006','Guadalajara Mexico 2006','inherit','open','closed','','guadalajara-mexico-2006','','','2021-07-07 22:57:27','2021-07-07 22:57:27','',609,'https://www.drfields.com/wp-content/uploads/2019/06/Guadalajara-Mexico-2006.png',0,'attachment','image/png',0),(4786,9,'2021-07-07 22:58:01','2021-07-07 22:58:01','<h2><span id=\"dnn_ctr420_dnnTITLE_titleLabel\" class=\"TitleH2\">Volunteering and Philanthropy</span></h2>\r\n<strong>Peter A. Fields, MD, DC enjoys volunteering as a medical physician in third world countries</strong>\r\n\r\nHow rewarding it is to give of our time and services to help those in need. Peter A. Fields, MD, DC has had the honor of volunteering with the <a href=\"http://www.hacketthemwall.org/WELCOME.html\" target=\"_blank\" rel=\"noopener noreferrer\">Hackett-Hemwall Foundation</a>, the world’s largest teaching and education organization for Prolotherapy.\r\n\r\nTogether with approximately 75 other physicians from the US, Mexico, Puerto Rico, Germany, Italy, South Africa, and other countries, Dr. Fields has traveled to an annual clinic in Honduras. He has been honored to be one of the 15 Faculty instructors with the foundation. Of the 75 physicians going to Honduras- the rest are students. They are there to learn or to improve their Prolotherapy skills all while helping those in need.\r\n\r\nDr. Fields says that providing to those in need has always been in his heart and when the opportunity arose to do so, he was excited.  And the patients were so grateful and appreciative. Many traveled many hours or even days and then waited all day for treatment. Most present with chronic knee, shoulder, low back, neck, ankle, foot, or other joint pain, often induced by working long hours in manual labor.\r\n<h3>Honduras</h3>\r\nHonduras is the third lowest-income country in the Western Hemisphere, only behind Haiti and Bolivia.  Access to health care is severely limited. This is why every year hundreds of local residents traveled by bicycle, foot, or bus to the free clinics sponsored by the Foundation in three small towns.\r\n\r\nHere the Foundation provides medical care and treatment for individuals who otherwise would not receive it. Based at the Red Cross Centers in each of the above cities, the clinicians treat hundreds of patients suffering from acute and chronic joint problems as well as and arthritis with Prolotherapy. Also known as regenerative or reconstructive therapy, Prolotherapy is a recognized non-surgical orthopedic procedure that stimulates the body\'s natural healing. It stimulates areas with targeted injections to strengthen joints weakened by overuse, arthritis, normal wear, and tear or trauma.\r\n\r\n[caption id=\"attachment_4779\" align=\"alignleft\" width=\"255\"]<img class=\"size-full wp-image-4779\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032-1.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" /> Honduras 2008[/caption]\r\n\r\n[caption id=\"attachment_4780\" align=\"alignright\" width=\"255\"]<img class=\"size-medium wp-image-4780\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961-1.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" /> Friends and Physicians Honduras 2008[/caption]\r\n\r\n[caption id=\"attachment_4782\" align=\"aligncenter\" width=\"255\"]<img class=\"size-medium wp-image-4782\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1134-1.jpg\" alt=\"Dscn1134\" width=\"255\" height=\"191\" /> Shoulder Prolotherapy Honduras 2008[/caption]\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>Mexico</h3>\r\nIn January of 2007, the Foundation opened its first clinic ever in Guadalajara, Mexico.\r\nAlthough not a rural as Honduras, the people there had never had the opportunity to experience Prolotherapy.  For this first clinic, only twelve instructor physicians were asked to go –  and Dr. Fields was one of those that were selected.  He found this experience just as rewarding.\r\n\r\n[caption id=\"attachment_4785\" align=\"alignnone\" width=\"500\"]<img class=\"size-medium wp-image-4785\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Guadalajara-Mexico-2006-500x393.png\" alt=\"Guadalajara Mexico 2006\" width=\"500\" height=\"393\" /> Guadalajara Mexico 2006[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Peter A. Fields, MD, DC Volunteering and Philanthropy Overview','','inherit','closed','closed','','609-revision-v1','','','2021-07-07 22:58:01','2021-07-07 22:58:01','',609,'https://www.drfields.com/?p=4786',0,'revision','',0),(4787,9,'2021-07-07 22:59:13','2021-07-07 22:59:13','<h2><span id=\"dnn_ctr420_dnnTITLE_titleLabel\" class=\"TitleH2\">Volunteering and Philanthropy</span></h2>\r\n<strong>Peter A. Fields, MD, DC enjoys volunteering as a medical physician in third world countries</strong>\r\n\r\nHow rewarding it is to give of our time and services to help those in need. Peter A. Fields, MD, DC has had the honor of volunteering with the <a href=\"http://www.hacketthemwall.org/WELCOME.html\" target=\"_blank\" rel=\"noopener noreferrer\">Hackett-Hemwall Foundation</a>, the world’s largest teaching and education organization for Prolotherapy.\r\n\r\nTogether with approximately 75 other physicians from the US, Mexico, Puerto Rico, Germany, Italy, South Africa, and other countries, Dr. Fields has traveled to an annual clinic in Honduras. He has been honored to be one of the 15 Faculty instructors with the foundation. Of the 75 physicians going to Honduras- the rest are students. They are there to learn or to improve their Prolotherapy skills all while helping those in need.\r\n\r\nDr. Fields says that providing to those in need has always been in his heart and when the opportunity arose to do so, he was excited.  And the patients were so grateful and appreciative. Many traveled many hours or even days and then waited all day for treatment. Most present with chronic knee, shoulder, low back, neck, ankle, foot, or other joint pain, often induced by working long hours in manual labor.\r\n<h3>Honduras</h3>\r\nHonduras is the third lowest-income country in the Western Hemisphere, only behind Haiti and Bolivia.  Access to health care is severely limited. This is why every year hundreds of local residents traveled by bicycle, foot, or bus to the free clinics sponsored by the Foundation in three small towns.\r\n\r\nHere the Foundation provides medical care and treatment for individuals who otherwise would not receive it. Based at the Red Cross Centers in each of the above cities, the clinicians treat hundreds of patients suffering from acute and chronic joint problems as well as and arthritis with Prolotherapy. Also known as regenerative or reconstructive therapy, Prolotherapy is a recognized non-surgical orthopedic procedure that stimulates the body\'s natural healing. It stimulates areas with targeted injections to strengthen joints weakened by overuse, arthritis, normal wear, and tear or trauma.\r\n\r\n[caption id=\"attachment_4779\" align=\"alignleft\" width=\"255\"]<img class=\"size-full wp-image-4779\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032-1.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" /> Honduras 2008[/caption]\r\n\r\n[caption id=\"attachment_4780\" align=\"alignright\" width=\"255\"]<img class=\"size-medium wp-image-4780\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961-1.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" /> Friends and Physicians Honduras 2008[/caption]\r\n\r\n[caption id=\"attachment_4782\" align=\"aligncenter\" width=\"255\"]<img class=\"size-medium wp-image-4782\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1134-1.jpg\" alt=\"Dscn1134\" width=\"255\" height=\"191\" /> Shoulder Prolotherapy Honduras 2008[/caption]\r\n<h3></h3>\r\n<h4>Honduras 2013</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\">The Final Party</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\">Olanchito – The Town</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\">Mid Weekend</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\">In The Clinic</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\">Before and After</a></li>\r\n</ul>\r\n<h4></h4>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>Mexico</h3>\r\nIn January of 2007, the Foundation opened its first clinic ever in Guadalajara, Mexico.\r\nAlthough not a rural as Honduras, the people there had never had the opportunity to experience Prolotherapy.  For this first clinic, only twelve instructor physicians were asked to go –  and Dr. Fields was one of those that were selected.  He found this experience just as rewarding.\r\n\r\n[caption id=\"attachment_4785\" align=\"alignnone\" width=\"500\"]<img class=\"size-medium wp-image-4785\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Guadalajara-Mexico-2006-500x393.png\" alt=\"Guadalajara Mexico 2006\" width=\"500\" height=\"393\" /> Guadalajara Mexico 2006[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Peter A. Fields, MD, DC Volunteering and Philanthropy Overview','','inherit','closed','closed','','609-revision-v1','','','2021-07-07 22:59:13','2021-07-07 22:59:13','',609,'https://www.drfields.com/?p=4787',0,'revision','',0),(4788,9,'2021-07-07 23:02:07','2021-07-07 23:02:07','<h4>Honduras 2013</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\">The Final Party</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\">Olanchito - The Town</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\">Mid Weekend</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\">In The Clinic</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\">Before and After</a></li>\r\n</ul>\r\n<h4>Olanchito The Town</h4>\r\n<h4></h4>','Olanchito The Town','','inherit','closed','closed','','585-revision-v1','','','2021-07-07 23:02:07','2021-07-07 23:02:07','',585,'https://www.drfields.com/?p=4788',0,'revision','',0),(4789,9,'2021-07-07 23:03:45','2021-07-07 23:03:45','<h2><span id=\"dnn_ctr420_dnnTITLE_titleLabel\" class=\"TitleH2\">Volunteering and Philanthropy</span></h2>\r\n<strong>Peter A. Fields, MD, DC enjoys volunteering as a medical physician in third world countries</strong>\r\n\r\nHow rewarding it is to give of our time and services to help those in need. Peter A. Fields, MD, DC has had the honor of volunteering with the <a href=\"http://www.hacketthemwall.org/WELCOME.html\" target=\"_blank\" rel=\"noopener noreferrer\">Hackett-Hemwall Foundation</a>, the world’s largest teaching and education organization for Prolotherapy.\r\n\r\nTogether with approximately 75 other physicians from the US, Mexico, Puerto Rico, Germany, Italy, South Africa, and other countries, Dr. Fields has traveled to an annual clinic in Honduras. He has been honored to be one of the 15 Faculty instructors with the foundation. Of the 75 physicians going to Honduras- the rest are students. They are there to learn or to improve their Prolotherapy skills all while helping those in need.\r\n\r\nDr. Fields says that providing to those in need has always been in his heart and when the opportunity arose to do so, he was excited.  And the patients were so grateful and appreciative. Many traveled many hours or even days and then waited all day for treatment. Most present with chronic knee, shoulder, low back, neck, ankle, foot, or other joint pain, often induced by working long hours in manual labor.\r\n<h3>Honduras</h3>\r\nHonduras is the third lowest-income country in the Western Hemisphere, only behind Haiti and Bolivia.  Access to health care is severely limited. This is why every year hundreds of local residents traveled by bicycle, foot, or bus to the free clinics sponsored by the Foundation in three small towns.\r\n\r\nHere the Foundation provides medical care and treatment for individuals who otherwise would not receive it. Based at the Red Cross Centers in each of the above cities, the clinicians treat hundreds of patients suffering from acute and chronic joint problems as well as and arthritis with Prolotherapy. Also known as regenerative or reconstructive therapy, Prolotherapy is a recognized non-surgical orthopedic procedure that stimulates the body\'s natural healing. It stimulates areas with targeted injections to strengthen joints weakened by overuse, arthritis, normal wear, and tear or trauma.\r\n\r\n[caption id=\"attachment_4779\" align=\"alignleft\" width=\"255\"]<img class=\"size-full wp-image-4779\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032-1.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" /> Honduras 2008[/caption]\r\n\r\n[caption id=\"attachment_4780\" align=\"alignright\" width=\"255\"]<img class=\"size-medium wp-image-4780\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961-1.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" /> Friends and Physicians Honduras 2008[/caption]\r\n\r\n<img class=\"size-medium wp-image-4782\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1134-1.jpg\" alt=\"Dscn1134\" width=\"255\" height=\"191\" />Shoulder Prolotherapy Honduras 2008\r\n<h5>Click links below for Honduras 2013 pictures</h5>\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/\" target=\"_parent\" rel=\"noopener noreferrer\">Honduras 2013 - The Final Party</a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Olanchito - The Town</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Mid Weekend</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - In The Clinic</span></a>\r\n\r\n<a class=\"gphoto-album-cover-link\" href=\"https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/\" target=\"_parent\" rel=\"noopener noreferrer\"><span class=\"gphoto-album-cover-link\">Honduras 2013 - Before and after</span></a>\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>Mexico</h3>\r\nIn January of 2007, the Foundation opened its first clinic ever in Guadalajara, Mexico.\r\nAlthough not a rural as Honduras, the people there had never had the opportunity to experience Prolotherapy.  For this first clinic, only twelve instructor physicians were asked to go –  and Dr. Fields was one of those that were selected.  He found this experience just as rewarding.\r\n\r\n[caption id=\"attachment_4785\" align=\"alignnone\" width=\"500\"]<img class=\"size-medium wp-image-4785\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Guadalajara-Mexico-2006-500x393.png\" alt=\"Guadalajara Mexico 2006\" width=\"500\" height=\"393\" /> Guadalajara Mexico 2006[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Peter A. Fields, MD, DC Volunteering and Philanthropy Overview','','inherit','closed','closed','','609-revision-v1','','','2021-07-07 23:03:45','2021-07-07 23:03:45','',609,'https://www.drfields.com/?p=4789',0,'revision','',0),(4790,9,'2021-07-07 23:06:37','2021-07-07 23:06:37','&nbsp;\n<h4>Honduras 2009</h4>\n<table class=\"resptable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr>\n<td>\n\n[caption id=\"attachment_488\" align=\"aligncenter\" width=\"595\"]<img class=\" wp-image-488\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-and-Matt.jpg\" alt=\"Dr\'s Peter And Matt\" width=\"595\" height=\"446\" /> Dr. Fields instructs Dr. Matt[/caption]</td>\n<td>\n\n[caption id=\"attachment_489\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-489\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F.-Lecturing-1.jpg\" alt=\"Dr F. Lecturing 1\" width=\"255\" height=\"191\" /> Dr. Fields lecturing[/caption]</td>\n</tr>\n<tr>\n<td>\n\n[caption id=\"attachment_490\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-490\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1562.jpg\" alt=\"Dscn1562\" width=\"255\" height=\"192\" /> Dr\'s Bill, Saul and Peter[/caption]</td>\n<td>\n\n[caption id=\"attachment_491\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-491\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1727.jpg\" alt=\"Dscn1727\" width=\"255\" height=\"191\" /> Dr. Fields and student Dr. Laurent[/caption]</td>\n</tr>\n<tr>\n<td>\n\n[caption id=\"attachment_492\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-492\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1739.jpg\" alt=\"Dscn1739\" width=\"255\" height=\"191\" /> Dr. Fields and the La Ceiba Red Cross Staff[/caption]</td>\n<td>\n\n[caption id=\"attachment_493\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-493\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1760.jpg\" alt=\"Dscn1760\" width=\"255\" height=\"191\" /> Dr\'s Saul, Matt, Laurent and Dr. Pedro Campos![/caption]</td>\n</tr>\n<tr>\n<td>\n\n[caption id=\"attachment_494\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-494\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1761.jpg\" alt=\"Dscn1761\" width=\"255\" height=\"191\" /> Dr\'s Sandra and Josette- our Honduran Docs[/caption]</td>\n<td>\n\n[caption id=\"attachment_495\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-495\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1790.jpg\" alt=\"Dscn1790\" width=\"255\" height=\"191\" /> Dr\'s Peter, Deb, Saul, Red Cross aid with a pt and her child[/caption]</td>\n</tr>\n<tr>\n<td>\n\n[caption id=\"attachment_496\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-496\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1796.jpg\" alt=\"Dscn1796\" width=\"255\" height=\"191\" /> The La Ceiba team[/caption]</td>\n<td>\n\n[caption id=\"attachment_497\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-497\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-adjusts-a-patient.jpg\" alt=\"Dr Fields Adjusts A Patient\" width=\"255\" height=\"191\" /> Dr. Fields adjusts a patient while other<br />doctors obserserve[/caption]</td>\n</tr>\n<tr>\n<td>\n\n[caption id=\"attachment_498\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-498\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-instructs.jpg\" alt=\"Dr Fields Instructs\" width=\"255\" height=\"191\" /> Dr. Fields Instructs[/caption]</td>\n<td>\n\n[caption id=\"attachment_499\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-499\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-Bill-Joe-and-patient.jpg\" alt=\"Dr\'s Peter, Bill, Joe And Patient\" width=\"255\" height=\"191\" /> Dr\'s Peter, Bill, Joe and patient[/caption]</td>\n</tr>\n<tr>\n<td>\n\n[caption id=\"attachment_500\" align=\"aligncenter\" width=\"217\"]<img class=\"size-full wp-image-500\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-giving-a-lecture.jpg\" alt=\"Dr Fields Giving A Lecture\" width=\"217\" height=\"255\" /> Dr. Fields giving a lecture[/caption]</td>\n<td>\n\n[caption id=\"attachment_501\" align=\"aligncenter\" width=\"200\"]<img class=\"size-full wp-image-501\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F-and-skeleton.jpg\" alt=\"Dr F And Skeleton\" width=\"200\" height=\"255\" /> Dr. Fields and Dr. Bones[/caption]</td>\n</tr>\n<tr>\n<td>\n\n[caption id=\"attachment_502\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-502\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dinner-at-the-hotel.jpg\" alt=\"Dinner At The Hotel\" width=\"255\" height=\"191\" /> Dinner at the hotel[/caption]</td>\n<td>\n\n[caption id=\"attachment_503\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-503\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/horse.jpg\" alt=\"Horse\" width=\"255\" height=\"202\" /> Local transport[/caption]</td>\n</tr>\n</tbody>\n</table>','Honduras 2009','','inherit','closed','closed','','504-autosave-v1','','','2021-07-07 23:06:37','2021-07-07 23:06:37','',504,'https://www.drfields.com/?p=4790',0,'revision','',0),(4791,9,'2021-07-07 23:11:45','2021-07-07 23:11:45','Honduras 2011','Honduras 2011','Honduras 2011','inherit','open','closed','','honduras-2011-2','','','2021-07-07 23:11:45','2021-07-07 23:11:45','',609,'https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011.png',0,'attachment','image/png',0),(4792,9,'2021-07-07 23:13:12','2021-07-07 23:13:12','Honduras 2011','Honduras 2011','Honduras 2011','inherit','open','closed','','honduras-2011-3','','','2021-07-07 23:13:12','2021-07-07 23:13:12','',609,'https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-1.png',0,'attachment','image/png',0),(4793,9,'2021-07-07 23:13:38','2021-07-07 23:13:38','<h2><span id=\"dnn_ctr420_dnnTITLE_titleLabel\" class=\"TitleH2\">Volunteering and Philanthropy</span></h2>\r\n<strong>Peter A. Fields, MD, DC enjoys volunteering as a medical physician in third world countries</strong>\r\n\r\nHow rewarding it is to give of our time and services to help those in need. Peter A. Fields, MD, DC has had the honor of volunteering with the <a href=\"http://www.hacketthemwall.org/WELCOME.html\" target=\"_blank\" rel=\"noopener noreferrer\">Hackett-Hemwall Foundation</a>, the world’s largest teaching and education organization for Prolotherapy.\r\n\r\nTogether with approximately 75 other physicians from the US, Mexico, Puerto Rico, Germany, Italy, South Africa, and other countries, Dr. Fields has traveled to an annual clinic in Honduras. He has been honored to be one of the 15 Faculty instructors with the foundation. Of the 75 physicians going to Honduras- the rest are students. They are there to learn or to improve their Prolotherapy skills all while helping those in need.\r\n\r\nDr. Fields says that providing to those in need has always been in his heart and when the opportunity arose to do so, he was excited.  And the patients were so grateful and appreciative. Many traveled many hours or even days and then waited all day for treatment. Most present with chronic knee, shoulder, low back, neck, ankle, foot, or other joint pain, often induced by working long hours in manual labor.\r\n<h3>Honduras</h3>\r\nHonduras is the third lowest-income country in the Western Hemisphere, only behind Haiti and Bolivia.  Access to health care is severely limited. This is why every year hundreds of local residents traveled by bicycle, foot, or bus to the free clinics sponsored by the Foundation in three small towns.\r\n\r\nHere the Foundation provides medical care and treatment for individuals who otherwise would not receive it. Based at the Red Cross Centers in each of the above cities, the clinicians treat hundreds of patients suffering from acute and chronic joint problems as well as and arthritis with Prolotherapy. Also known as regenerative or reconstructive therapy, Prolotherapy is a recognized non-surgical orthopedic procedure that stimulates the body\'s natural healing. It stimulates areas with targeted injections to strengthen joints weakened by overuse, arthritis, normal wear, and tear or trauma.\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_4779\" align=\"alignleft\" width=\"255\"]<img class=\"size-full wp-image-4779\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032-1.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" /> Honduras Clinic[/caption]\r\n\r\n[caption id=\"attachment_4780\" align=\"aligncenter\" width=\"255\"]<img class=\"size-medium wp-image-4780\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961-1.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" /> Friends and Physicians in Honduras [/caption]\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-4791\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-186x500.png\" alt=\"Honduras 2011\" width=\"186\" height=\"500\" />\r\n<h3>Mexico</h3>\r\nIn January of 2007, the Foundation opened its first clinic ever in Guadalajara, Mexico.\r\nAlthough not a rural as Honduras, the people there had never had the opportunity to experience Prolotherapy.  For this first clinic, only twelve instructor physicians were asked to go –  and Dr. Fields was one of those that were selected.  He found this experience just as rewarding.\r\n\r\n[caption id=\"attachment_4785\" align=\"alignnone\" width=\"500\"]<img class=\"size-medium wp-image-4785\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Guadalajara-Mexico-2006-500x393.png\" alt=\"Guadalajara Mexico 2006\" width=\"500\" height=\"393\" /> Guadalajara Mexico 2006[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Peter A. Fields, MD, DC Volunteering and Philanthropy Overview','','inherit','closed','closed','','609-revision-v1','','','2021-07-07 23:13:38','2021-07-07 23:13:38','',609,'https://www.drfields.com/?p=4793',0,'revision','',0),(4794,9,'2021-07-07 23:15:40','2021-07-07 23:15:40','<h2><span id=\"dnn_ctr420_dnnTITLE_titleLabel\" class=\"TitleH2\">Volunteering and Philanthropy</span></h2>\r\n<strong>Peter A. Fields, MD, DC enjoys volunteering as a medical physician in third world countries</strong>\r\n\r\nHow rewarding it is to give of our time and services to help those in need. Peter A. Fields, MD, DC has had the honor of volunteering with the <a href=\"http://www.hacketthemwall.org/WELCOME.html\" target=\"_blank\" rel=\"noopener noreferrer\">Hackett-Hemwall Foundation</a>, the world’s largest teaching and education organization for Prolotherapy.\r\n\r\nTogether with approximately 75 other physicians from the US, Mexico, Puerto Rico, Germany, Italy, South Africa, and other countries, Dr. Fields has traveled to an annual clinic in Honduras. He has been honored to be one of the 15 Faculty instructors with the foundation. Of the 75 physicians going to Honduras- the rest are students. They are there to learn or to improve their Prolotherapy skills all while helping those in need.\r\n\r\nDr. Fields says that providing to those in need has always been in his heart and when the opportunity arose to do so, he was excited.  And the patients were so grateful and appreciative. Many traveled many hours or even days and then waited all day for treatment. Most present with chronic knee, shoulder, low back, neck, ankle, foot, or other joint pain, often induced by working long hours in manual labor.\r\n<h3>Honduras</h3>\r\n[caption id=\"attachment_4779\" align=\"alignnone\" width=\"255\"]<img class=\"size-full wp-image-4779\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032-1.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" /> Honduras 2008[/caption]\r\n\r\nHonduras is the third lowest-income country in the Western Hemisphere, only behind Haiti and Bolivia.  Access to health care is severely limited. This is why every year hundreds of local residents traveled by bicycle, foot, or bus to the free clinics sponsored by the Foundation in three small towns.\r\n\r\nHere the Foundation provides medical care and treatment for individuals who otherwise would not receive it. Based at the Red Cross Centers in each of the above cities, the clinicians treat hundreds of patients suffering from acute and chronic joint problems as well as and arthritis with Prolotherapy. Also known as regenerative or reconstructive therapy, Prolotherapy is a recognized non-surgical orthopedic procedure that stimulates the body\'s natural healing. It stimulates areas with targeted injections to strengthen joints weakened by overuse, arthritis, normal wear, and tear or trauma.\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_4780\" align=\"alignright\" width=\"255\"]<img class=\"size-medium wp-image-4780\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961-1.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" /> Friends and Physicians in Honduras[/caption]\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-4791 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-186x500.png\" alt=\"Honduras 2011\" width=\"186\" height=\"500\" />\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>Mexico</h3>\r\nIn January of 2007, the Foundation opened its first clinic ever in Guadalajara, Mexico.\r\nAlthough not a rural as Honduras, the people there had never had the opportunity to experience Prolotherapy.  For this first clinic, only twelve instructor physicians were asked to go –  and Dr. Fields was one of those that were selected.  He found this experience just as rewarding.\r\n\r\n[caption id=\"attachment_4785\" align=\"alignnone\" width=\"500\"]<img class=\"size-medium wp-image-4785\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Guadalajara-Mexico-2006-500x393.png\" alt=\"Guadalajara Mexico 2006\" width=\"500\" height=\"393\" /> Guadalajara Mexico 2006[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Peter A. Fields, MD, DC Volunteering and Philanthropy Overview','','inherit','closed','closed','','609-revision-v1','','','2021-07-07 23:15:40','2021-07-07 23:15:40','',609,'https://www.drfields.com/?p=4794',0,'revision','',0),(4795,9,'2021-07-07 23:16:41','2021-07-07 23:16:41','<h2><span id=\"dnn_ctr420_dnnTITLE_titleLabel\" class=\"TitleH2\">Volunteering and Philanthropy</span></h2>\r\n<strong>Peter A. Fields, MD, DC enjoys volunteering as a medical physician in third world countries</strong>\r\n\r\nHow rewarding it is to give of our time and services to help those in need. Peter A. Fields, MD, DC has had the honor of volunteering with the <a href=\"http://www.hacketthemwall.org/WELCOME.html\" target=\"_blank\" rel=\"noopener noreferrer\">Hackett-Hemwall Foundation</a>, the world’s largest teaching and education organization for Prolotherapy.\r\n\r\nTogether with approximately 75 other physicians from the US, Mexico, Puerto Rico, Germany, Italy, South Africa, and other countries, Dr. Fields has traveled to an annual clinic in Honduras. He has been honored to be one of the 15 Faculty instructors with the foundation. Of the 75 physicians going to Honduras- the rest are students. They are there to learn or to improve their Prolotherapy skills all while helping those in need.\r\n\r\nDr. Fields says that providing to those in need has always been in his heart and when the opportunity arose to do so, he was excited.  And the patients were so grateful and appreciative. Many traveled many hours or even days and then waited all day for treatment. Most present with chronic knee, shoulder, low back, neck, ankle, foot, or other joint pain, often induced by working long hours in manual labor.\r\n<h3>Honduras</h3>\r\n[caption id=\"attachment_4779\" align=\"alignnone\" width=\"255\"]<img class=\"size-full wp-image-4779\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032-1.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" /> Honduras 2008[/caption]\r\n\r\nHonduras is the third lowest-income country in the Western Hemisphere, only behind Haiti and Bolivia.  Access to health care is severely limited. This is why every year hundreds of local residents traveled by bicycle, foot, or bus to the free clinics sponsored by the Foundation in three small towns.\r\n\r\n[caption id=\"attachment_4780\" align=\"alignnone\" width=\"255\"]<img class=\"size-full wp-image-4780\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961-1.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" /> Dscn0961[/caption]\r\n\r\nHere the Foundation provides medical care and treatment for individuals who otherwise would not receive it. Based at the Red Cross Centers in each of the above cities, the clinicians treat hundreds of patients suffering from acute and chronic joint problems as well as and arthritis with Prolotherapy. Also known as regenerative or reconstructive therapy, Prolotherapy is a recognized non-surgical orthopedic procedure that stimulates the body\'s natural healing. It stimulates areas with targeted injections to strengthen joints weakened by overuse, arthritis, normal wear, and tear or trauma.\r\n\r\n<img class=\"size-medium wp-image-4791 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-186x500.png\" alt=\"Honduras 2011\" width=\"186\" height=\"500\" />\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3>Mexico</h3>\r\nIn January of 2007, the Foundation opened its first clinic ever in Guadalajara, Mexico.\r\nAlthough not a rural as Honduras, the people there had never had the opportunity to experience Prolotherapy.  For this first clinic, only twelve instructor physicians were asked to go –  and Dr. Fields was one of those that were selected.  He found this experience just as rewarding.\r\n\r\n[caption id=\"attachment_4785\" align=\"alignnone\" width=\"500\"]<img class=\"size-medium wp-image-4785\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Guadalajara-Mexico-2006-500x393.png\" alt=\"Guadalajara Mexico 2006\" width=\"500\" height=\"393\" /> Guadalajara Mexico 2006[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Peter A. Fields, MD, DC Volunteering and Philanthropy Overview','','inherit','closed','closed','','609-revision-v1','','','2021-07-07 23:16:41','2021-07-07 23:16:41','',609,'https://www.drfields.com/?p=4795',0,'revision','',0),(4796,9,'2021-07-07 23:17:56','2021-07-07 23:17:56','<h2><span id=\"dnn_ctr420_dnnTITLE_titleLabel\" class=\"TitleH2\">Volunteering and Philanthropy</span></h2>\r\n<strong>Peter A. Fields, MD, DC enjoys volunteering as a medical physician in third world countries</strong>\r\n\r\nHow rewarding it is to give of our time and services to help those in need. Peter A. Fields, MD, DC has had the honor of volunteering with the <a href=\"http://www.hacketthemwall.org/WELCOME.html\" target=\"_blank\" rel=\"noopener noreferrer\">Hackett-Hemwall Foundation</a>, the world’s largest teaching and education organization for Prolotherapy.\r\n\r\nTogether with approximately 75 other physicians from the US, Mexico, Puerto Rico, Germany, Italy, South Africa, and other countries, Dr. Fields has traveled to an annual clinic in Honduras. He has been honored to be one of the 15 Faculty instructors with the foundation. Of the 75 physicians going to Honduras- the rest are students. They are there to learn or to improve their Prolotherapy skills all while helping those in need.\r\n\r\nDr. Fields says that providing to those in need has always been in his heart and when the opportunity arose to do so, he was excited.  And the patients were so grateful and appreciative. Many traveled many hours or even days and then waited all day for treatment. Most present with chronic knee, shoulder, low back, neck, ankle, foot, or other joint pain, often induced by working long hours in manual labor.\r\n<h3>Honduras</h3>\r\n[caption id=\"attachment_4779\" align=\"alignnone\" width=\"255\"]<img class=\"size-full wp-image-4779\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032-1.jpg\" alt=\"Dscn1032\" width=\"255\" height=\"191\" /> Honduras Clinic[/caption]\r\n\r\nHonduras is the third lowest-income country in the Western Hemisphere, only behind Haiti and Bolivia.  Access to health care is severely limited. This is why every year hundreds of local residents traveled by bicycle, foot, or bus to the free clinics sponsored by the Foundation in three small towns.\r\n\r\n[caption id=\"attachment_4780\" align=\"alignnone\" width=\"255\"]<img class=\"size-full wp-image-4780\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961-1.jpg\" alt=\"Dscn0961\" width=\"255\" height=\"191\" /> Friends and Physicians[/caption]\r\n\r\nHere the Foundation provides medical care and treatment for individuals who otherwise would not receive it. Based at the Red Cross Centers in each of the above cities, the clinicians treat hundreds of patients suffering from acute and chronic joint problems as well as and arthritis with Prolotherapy. Also known as regenerative or reconstructive therapy, Prolotherapy is a recognized non-surgical orthopedic procedure that stimulates the body\'s natural healing. It stimulates areas with targeted injections to strengthen joints weakened by overuse, arthritis, normal wear, and tear or trauma.\r\n\r\n<img class=\"size-medium wp-image-4791 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-186x500.png\" alt=\"Honduras 2011\" width=\"186\" height=\"500\" />\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Mexico</h3>\r\nIn January of 2007, the Foundation opened its first clinic ever in Guadalajara, Mexico.\r\nAlthough not a rural as Honduras, the people there had never had the opportunity to experience Prolotherapy.  For this first clinic, only twelve instructor physicians were asked to go –  and Dr. Fields was one of those that were selected.  He found this experience just as rewarding.\r\n\r\n[caption id=\"attachment_4785\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4785\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Guadalajara-Mexico-2006-500x393.png\" alt=\"Guadalajara Mexico 2006\" width=\"500\" height=\"393\" /> Guadalajara, Mexico [/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Peter A. Fields, MD, DC Volunteering and Philanthropy Overview','','inherit','closed','closed','','609-revision-v1','','','2021-07-07 23:17:56','2021-07-07 23:17:56','',609,'https://www.drfields.com/?p=4796',0,'revision','',0),(4797,9,'2022-07-25 01:31:09','2022-07-25 01:31:09','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\n<em>By Peter A. Fields, MD, DC</em>\n\nAfter waiting ten years with this on my bucket list, finally in 2019, I was going to climb Kilimanjaro.\n<h3>Getting to Mount Kilimanjaro</h3>\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\n\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\n&nbsp;\n\n&nbsp;\n<h2>Pre Hike</h2>\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\n\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\n&nbsp;\n\n&nbsp;\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\n\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\n\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\n\n<h3>Hiking to 11,400 ft</h3>\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\n\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\n\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\n<h3>Hiking to 13,400 ft</h3>\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\n\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\n<h3>Hiking to 15,500 ft</h3>\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\n\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\n\n&nbsp;\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\n\n<h3>Getting to camp at 16,500 ft</h3>\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\n\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\n\n&nbsp;\n<h3>Hiking to 18,500 ft</h3>\n&nbsp;\n\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\n\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\n\n&nbsp;\n\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\n\n&nbsp;\n\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\n\n&nbsp;\n\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\n\n&nbsp;\n\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\n\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\n\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\n\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\n\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\n\n&nbsp;\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\n\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\n&nbsp;\n\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\n\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\n\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\n\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\n\n<h3>The descent and saying goodbye</h3>\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\n\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\n\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\n\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\n\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\n\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\n\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\n\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\n\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\n\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\n\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\n\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\n\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\nAs I said above, they were with me the whole way and always will be.\n\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\n\n<strong>Peter A. Fields, MD, DC </strong>\n<strong>The Athletic Doc<sup>®</sup></strong>\n\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-autosave-v1','','','2022-07-25 01:31:09','2022-07-25 01:31:09','',2208,'https://www.drfields.com/?p=4797',0,'revision','',0),(4798,9,'2021-07-12 03:10:19','2021-07-12 03:10:19','[caption id=\"attachment_4099\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4099\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/headaches-1-500x500.jpg\" alt=\"Headaches\" width=\"500\" height=\"500\" /> <strong><em>                        Are Headaches Coming From Your Neck?</em></strong>[/caption]\r\n<h3><b>Suffering from Headaches? </b><em><b>The Problem May Come From Your Neck.</b></em></h3>\r\n<span style=\"font-weight: 400;\">Headaches are a recurrent malady suffered by millions of Americans, causing pain and discomfort in the head, forehead, scalp, or neck. At times they are a mild nuisance. But headaches can become severe, even disabling, with the pain leading to difficulty at work, concentration, and performance of daily activities. </span>\r\n<h3><b>What is the Source of Headaches?</b></h3>\r\n<h4><b><i>Hormones</i></b></h4>\r\n<span style=\"font-weight: 400;\">Headaches have different sources, and the causative factors require some investigation. Hormones might be the culprit. Women may experience headaches during the menstrual cycle due to shifts in hormone levels. And when this is the case, there may be a need to balance the hormones, because the woman could have too much estrogen and not enough progesterone.</span>\r\n<h4><em><strong>Diet </strong></em></h4>\r\n<span style=\"font-weight: 400;\">Headache pain can often be </span><span style=\"font-weight: 400;\">corrected with diet. Food allergies or sensitivities can trigger headaches. And eating too many carbohydrates or not enough protein, for example, can alter blood chemistry. And that can prompt a headache or foster problems with the hormonal system, which can again lead to headaches.</span>\r\n<h4><strong><i>TMJ Syndrome</i></strong></h4>\r\n<span style=\"font-weight: 400;\">Temporomandibular</span><span style=\"font-weight: 400;\"> joint (TMJ) problems may contribute to headaches</span><span style=\"font-weight: 400;\">. Sufferers with TMJ have clicking at this joint, experience facial pain, and may notice a stiff mouth upon awakening after a night’s sleep. And all of this can then lead to a headache. TMJ syndrome, which often includes headaches, requires stabilization of the TMJ joint and ligament. Also, bite problems may be present, necessitating bite equilibration.</span>\r\n<h3><b>The Neck as the Source of Headaches</b></h3>\r\n<span style=\"font-weight: 400;\">It is not uncommon for the source of headaches to originate in the neck. Do you have neck pain before or during a headache? If you have neck pain followed by tension or migraine headache, then the source of the headache may very well be coming from your neck. </span>\r\n\r\n<span style=\"font-weight: 400;\">The most common neck problem producing headaches is an injury to the ligaments in the neck. How do you know if you have a ligament injury in your neck? You will hear grinding, crunching, and popping sounds when you turn your neck. And there is also a high probability that you crack your neck often. Injured ligaments generate instability in the neck, which induces muscle spasms in the neck as the muscles attempt to stabilize it. And the result is referral pain in the form of a tension headache in the forehead, back of the neck, or occiput. </span>\r\n<h3><em>Platelet Rich Plasma for Headaches</em></h3>\r\nDextrose Prolotherapy is often effective to treat headaches and achieve the desired results. In more severe cases, Platelet Rich Plasma, one of the types of Regenerative Orthopedics, may be recommended. This non-surgical treatment has also been shown in studies to be effective for chronic migraines.1\r\n<h4><strong><i>Cervicocranial Syndrome or </i><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><i>Barré-Liéou</i></a><i> Syndrome</i></strong></h4>\r\n<span style=\"font-weight: 400;\">Cervicocranial Syndrome, previously known as </span><a href=\"http://jnnp.bmj.com/content/75/2/319.full\"><span style=\"font-weight: 400;\">Barré-Liéou</span></a><span style=\"font-weight: 400;\"> Syndrome is a condition that causes a bunch of s</span><span style=\"font-weight: 400;\">ymptoms. The symptoms may include headache, dizziness, facial pain, ear pain, vertigo, tinnitus, loss of voice,</span> <span style=\"font-weight: 400;\">hoarseness, neck pain, and severe fatigue. </span>\r\n\r\n<span style=\"font-weight: 400;\">Instability of the neck or cervical spine is usually the source of these symptoms.</span><span style=\"font-weight: 400;\"> Neck instability involves increased motion between adjacent vertebrae which causes excessive stress on the supporting ligament structures. And the nerve endings within those structures elicit pain and a variety of symptoms.</span> <span style=\"font-weight: 400;\">In other words</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">neck instability causes extra movement in the neck bones. And this extra motion can cause the bones to push on the nerves and cause irritation of the nervous system, leading to headaches and a bunch of other symptoms. </span>\r\n<h4><strong><i>Occipital Neuralgia</i></strong></h4>\r\n<span style=\"font-weight: 400;\">Occipital neuralgia is another headache-causing condition related to neck instability. Those with this condition often experience sharp, stabbing pain in the lower part of the neck, the back of the head, and behind their eyes. The pain is typically one-sided. </span>\r\n\r\n<span style=\"font-weight: 400;\">The occipital nerve, which runs at the back of the head, can cause severe pain when injured. Many folks get nerve blocks for this pain. But these are not always effective at resolving the pain. Any instability of C1, C2, the first two neck vertebrae, can pinch or irritate the occipital nerve. And the extra motion along the spine can kink, press, and tighten on the nerves at the base of the skull. Neck instability symptoms include tenderness, clicking, grinding, and popping in the back of the head. </span>\r\n<h4><strong><i>Whiplash</i></strong></h4>\r\n<span style=\"font-weight: 400;\">Headaches can occur after whiplash injuries. During a whiplash injury, the head flexes and extends, in a forward and backward whip that injures the neck ligaments. </span><span style=\"font-weight: 400;\">Whiplash injuries are a common source of neck instability.</span>\r\n\r\n<span style=\"font-weight: 400;\">The lack of stable neck vertebrae can lead to further injury of the soft tissue and joint structures, as well as the possibility of nerve injury and irritation of the nervous system. And that can result in headaches and other symptoms. Whiplash often results in long-term pain, which is due to a ligament injury and malalignment of the neck vertebrae.</span>\r\n<h3><b>Regenerative Orthopedics Repairs Neck Instability</b></h3>\r\n<span style=\"font-weight: 400;\">Regenerative Orthopedics involves the injection of natural substances into the damaged ligaments. The treatment results in tightening, repair, and regeneration of the ligaments involved in TMJ and neck instability. The area becomes stabilized, thus eliminating the instability, muscle spasms, and associated neck and jaw pain, and other related symptoms. </span>\r\n\r\n<span style=\"font-weight: 400;\">For those who are tired of the disability and pain of severe headaches, and other conditions related to neck instability, Regenerative Orthopedics is a safe, non-surgical option that stops headache pain, decreases symptoms, and increases functionality in otherwise life-altering conditions.</span>\r\n<h3>References</h3>\r\n1Algawwam, Hayder Ghali, and Abdullah Ahmed Mohammad. \"The Effectiveness of Injection of Trigger Points with Platelet Rich Plasma as A Pain Management Method in Chronic Tension Type Headache.\" (2021).\r\n\r\n<iframe src=\"https://www.youtube.com/embed/EKGWkEAaqTM\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Headache Sufferer? It Could Be Your Neck.','','inherit','closed','closed','','2501-revision-v1','','','2021-07-12 03:10:19','2021-07-12 03:10:19','',2501,'https://www.drfields.com/?p=4798',0,'revision','',0),(4799,9,'2021-07-13 21:11:10','2021-07-13 21:11:10','<h4>Report of My Kilimanjaro Climb (late by two years!)</h4>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting there</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nFirst an 11-hour flight to London where I had a 36-hour layover. Saw Tina, The Musical (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours seeing the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr) and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time.. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that were full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Postscript</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000 foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow and the wind chill factors. Nothing but grit and determination to keep you going. But thee views were spectacular and the feeling of being literally on top of the world, made it all wroth it.\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h2 style=\"text-align: center;\">Post Postscript</h2>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-07-13 21:11:10','2021-07-13 21:11:10','',2208,'https://www.drfields.com/?p=4799',0,'revision','',0),(4800,9,'2021-07-13 21:11:51','2021-07-13 21:11:51','<h4>Report of My Kilimanjaro Climb (late by two years!)</h4>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting there</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nFirst an 11-hour flight to London where I had a 36-hour layover. Saw Tina, The Musical (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr) and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time.. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that were full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Postscript</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000 foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow and the wind chill factors. Nothing but grit and determination to keep you going. But thee views were spectacular and the feeling of being literally on top of the world, made it all wroth it.\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h2 style=\"text-align: center;\">Post Postscript</h2>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-07-13 21:11:51','2021-07-13 21:11:51','',2208,'https://www.drfields.com/?p=4800',0,'revision','',0),(4801,9,'2021-07-13 21:19:52','2021-07-13 21:19:52','<h4>Report of My Kilimanjaro Climb (late by two years!)</h4>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting there</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nFirst an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr) and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time.. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that were full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Postscript</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000 foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow and the wind chill factors. Nothing but grit and determination to keep you going. But thee views were spectacular and the feeling of being literally on top of the world, made it all wroth it.\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h2 style=\"text-align: center;\">Post Postscript</h2>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-07-13 21:19:52','2021-07-13 21:19:52','',2208,'https://www.drfields.com/?p=4801',0,'revision','',0),(4805,9,'2021-07-23 22:40:21','2021-07-23 22:40:21','Knee Stems','Knee Stems','Stem Cell Therapy Effective for Osteoarthritis','inherit','open','closed','','knee-stems','','','2021-07-23 22:41:12','2021-07-23 22:41:12','',1416,'https://www.drfields.com/wp-content/uploads/2019/06/Knee-Stems.jpeg',0,'attachment','image/jpeg',0),(4806,9,'2021-07-23 22:46:09','2021-07-23 22:46:09','Stem Cell Therapy has become a popular treatment and one that can provide very satisfactory results. And Stem Cell Therapy for arthritis, including the repair of degenerated arthritic joints, offers many promising possibilities.1 Stem cells have been shown in research to speed up and enhance bone and cartilage repair in arthritic joints.2,3 Since surgery comes with many disadvantages, <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a> to repair defects of articular cartilage provides an exciting alternative.\r\n\r\nAnother fascinating research finding involves evidence of the reduction in the usual progressive destruction of articular cartilage in arthritic disease by mesenchymal/bone marrow stem cells. Bone marrow stem cells appear to suppress inflammation and release growth factors that combat arthritis and the degenerative process, enabling healing mechanisms to repair articular cartilage and relieve the chronic pain of arthritis.\r\n\r\n[caption id=\"attachment_4805\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4805\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Stems-500x375.jpeg\" alt=\"Stem Cells\" width=\"500\" height=\"375\" /> <strong>                  Stem Cell Therapy Effective for Osteoarthritis3</strong>[/caption]\r\n<h4>One-Shot Magic Cure?</h4>\r\nHave you looked into Stem Cell Therapy for arthritis relief? It’s important to do your homework when it comes to Stem Cell Therapy because not all treatments are alike. You may have seen treatments advertised that may involve just one injection of stem cells. One injection is most likely insufficient to provide an adequate repair of the joint and the pain relief you seek.\r\n\r\nJoint injuries, like those that eventually lead to arthritis, generally involve the entire joint. If one ligament is injured, there’s a huge likelihood that other ligaments or soft tissue are also injured. And these other areas need to be treated too. One injection simply cannot treat the entire joint.\r\n<h4>Underlying Joint Instability Leads to Arthritis</h4>\r\nWhen the supportive joint structures, such as ligaments and other soft tissue are healthy and strong, they prevent abnormal joint motion. But when they become injured, the joint will move in an abnormal pattern, injuring other joint structures, and eventually leading to joint destruction and arthritis.\r\n\r\nThe degeneration and breakdown of cartilage that is evident in arthritis is something that transpires over time. It doesn\'t just appear immediately. The beginning is often an initial injury that begins a process of instability in the joint with movement in the joint that is abnormal. This joint instability then becomes the source of further joint injury. And it causes pain too.\r\n\r\nJoint instability also involves loose, weakened, and unsupportive ligaments. In essence, the whole joint becomes affected. To achieve repair of the entire joint, the supportive structures surrounding the joint need to be treated, as well as the degenerated structures inside the joint. Intra-articular injections during Stem Cell Therapy for arthritis, combined with the growth factors in treatments like PRP and Prolotherapy can improve cartilage quality in arthritis, repair the injured soft tissue, and resolve joint pain.\r\n\r\n<img class=\" wp-image-3742\" src=\"https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png\" alt=\"Kelsey. Knee.stems Copy\" width=\"420\" height=\"420\" />\r\n<h4>The Gold Standard in Stem Cell Therapy</h4>\r\nA comprehensive treatment is necessary to strengthen, repair, and stabilize ligaments and structures of the joint to prevent destructive forces from continuing the breakdown of cartilage common in arthritis.\r\n\r\n<strong>A single injection is simply not comprehensive</strong> enough to reverse the damage affecting the entire joint. In our practice, we address these unnatural hypermobile forces with a multi-injection technique called <strong>Comprehensive Regenerative Orthopedics</strong>. It\'s a very effective Stem Cell Therapy for arthritis repair and pain relief.\r\n\r\n&nbsp;\r\n\r\nOur Stem Cell Therapy for arthritis treatment involves the use of four different regenerative therapies. Two sources of stem cells (bone and fat), as well as PRP Prolotherapy and Dextrose Prolotherapy. The supportive joint structures, the inside, and the outer structures of the joint are all treated. This is considered <strong>The Gold Standard</strong> for Stem Cell Regeneration.\r\n\r\nAt OrthoRegen, our Stem Cell Therapy for arthritis is different than at other clinics. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">What makes us different?</a> Many other clinics only use one or two of the above procedures, but not all four. All solutions are centrifuged and concentrated to obtain a solution with the most concentration of stem cells. In our experience, we have discovered that this technique is the best for regeneration. We inject both of these sources of stem cells and then combine the use of PRP Prolotherapy to accelerate their healing.\r\n\r\nIn addition, we apply Dextrose Prolotherapy <strong>to the outside supportive structures of the joint</strong> to help stabilize the ligaments and tendons that hold the joint in place. We utilize this style of treatment because it addresses the whole joint and not just the effect. That is why it is considered the <em>Gold Standard</em>.\r\n<h4>What About Amniotic “Stem Cells”?</h4>\r\nAmniotic Stem Cells are being advertised all over the place and people are fascinated with this very popular trend of using amniotic fluid for joint repair. But it needs to be clarified that Amniotic “Stem Cell” Therapy has NO actual stem cells, but rather growth factors found in the extracellular matrix of the amniotic tissue.\r\n\r\nCompanies purchase the afterbirth materials, process it to remove disease, and then freeze-dry it. Understandably, the process preserves the fluid, but it also kills the live cells. What’s left are healing growth factors. <strong>NO live stem cells are present.</strong> <em>Therefore, if claimed as such, it is simply not the truth.</em>\r\n\r\nIn their pre-donated state, amniotic fluid does have an abundance of stem cells, but they do not survive the processing. Many people leave stem cell seminars convinced that their own stem cells are no good and that donated amniotic “stem cells” will help them with their chronic joint pain from arthritis. It’s important to understand that cryopreserved, dehydrated amniotic products do not contain stem cells. It’s also important to understand that bone marrow, even in elderly individuals with arthritis, <strong>does have sufficient stem cells</strong>, and the cells are <strong>alive</strong>! Additionally, your own blood in the form of Platelet Rich Plasma (PRP) contains live growth factors. Yes, purchased, micronized amniotic fluid does contain growth factor material, but it is processed. Why not just use your own (autologous) live stem cells and PRP growth factors for your arthritis pain?\r\n<h4>The Bottom Line in Arthritis Treatment</h4>\r\nArthritis is a chronic, progressive disease of the articular joints, which to date, has had no cure or effective long-term treatment. However, Regenerative Injection Therapies like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy have already been proven to work well to effectively activate cells for regeneration and repair in degenerated arthritic joints. Regenerative Orthopedics is an effective option for treating arthritis with the potential for enhancing the quality of life of individuals with the disease.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n<h3>References</h3>\r\n<em>1. Chahal, J., Gómez-Aristizábal, A., Shestopaloff, K., Bhatt, S., Chaboureau, A., Fazio, A., Chisholm, J., Weston, A., Chiovitti, J., Keating, A., Kapoor, M., Ogilvie-Harris, D.J., Syed, K.A., Gandhi, R., Mahomed, N.N., Marshall, K.W., Sussman, M.S., Naraghi, A.M. and Viswanathan, S. (2019), Bone Marrow Mesenchymal Stromal Cell Treatment in Patients with Osteoarthritis Results in Overall Improvement in Pain and Symptoms and Reduces Synovial Inflammation. STEM CELLS Translational Medicine, 8: 746-757. <a href=\"https://doi.org/10.1002/sctm.18-0183\">https://doi.org/10.1002/sctm.18-0183</a></em>\r\n\r\n<em>2. Wakitani S, Goto T, Pineda SJ, Young RG, Mansour JM, Caplan AI, Goldberg VM. Mesenchymal cell-based repair of large, full-thickness defects of articular cartilage J. Bone Joint Surg. Am. 1994;76:579-92.</em>\r\n\r\n<em>3. Burke J, Hunter M, Kolhe R, </em>Isales<em> C, Hamrick M, Fulzele S. Therapeutic potential of mesenchymal stem </em>cell-based<em> therapy for osteoarthritis. Clinical and translational medicine. 2016 Aug 10;5(1):27.</em>','Stem Cell Therapy for Arthritis','','inherit','closed','closed','','1416-revision-v1','','','2021-07-23 22:46:09','2021-07-23 22:46:09','',1416,'https://www.drfields.com/?p=4806',0,'revision','',0),(4807,9,'2021-07-23 22:46:26','2021-07-23 22:46:26','Stem Cell Therapy has become a popular treatment and one that can provide very satisfactory results. And Stem Cell Therapy for arthritis, including the repair of degenerated arthritic joints, offers many promising possibilities.1 Stem cells have been shown in research to speed up and enhance bone and cartilage repair in arthritic joints.2,3 Since surgery comes with many disadvantages, <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a> to repair defects of articular cartilage provides an exciting alternative.\r\n\r\nAnother fascinating research finding involves evidence of the reduction in the usual progressive destruction of articular cartilage in arthritic disease by mesenchymal/bone marrow stem cells. Bone marrow stem cells appear to suppress inflammation and release growth factors that combat arthritis and the degenerative process, enabling healing mechanisms to repair articular cartilage and relieve the chronic pain of arthritis.\r\n\r\n[caption id=\"attachment_4805\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4805\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Stems-500x375.jpeg\" alt=\"Stem Cells\" width=\"500\" height=\"375\" /> <strong>                  Stem Cell Therapy Effective for Osteoarthritis3</strong>[/caption]\r\n<h4>One-Shot Magic Cure?</h4>\r\nHave you looked into Stem Cell Therapy for arthritis relief? It’s important to do your homework when it comes to Stem Cell Therapy because not all treatments are alike. You may have seen treatments advertised that may involve just one injection of stem cells. One injection is most likely insufficient to provide an adequate repair of the joint and the pain relief you seek.\r\n\r\nJoint injuries, like those that eventually lead to arthritis, generally involve the entire joint. If one ligament is injured, there’s a huge likelihood that other ligaments or soft tissue are also injured. And these other areas need to be treated too. One injection simply cannot treat the entire joint.\r\n<h4>Underlying Joint Instability Leads to Arthritis</h4>\r\nWhen the supportive joint structures, such as ligaments and other soft tissue are healthy and strong, they prevent abnormal joint motion. But when they become injured, the joint will move in an abnormal pattern, injuring other joint structures, and eventually leading to joint destruction and arthritis.\r\n\r\nThe degeneration and breakdown of cartilage that is evident in arthritis is something that transpires over time. It doesn\'t just appear immediately. The beginning is often an initial injury that begins a process of instability in the joint with movement in the joint that is abnormal. This joint instability then becomes the source of further joint injury. And it causes pain too.\r\n\r\nJoint instability also involves loose, weakened, and unsupportive ligaments. In essence, the whole joint becomes affected. To achieve repair of the entire joint, the supportive structures surrounding the joint need to be treated, as well as the degenerated structures inside the joint. Intra-articular injections during Stem Cell Therapy for arthritis, combined with the growth factors in treatments like PRP and Prolotherapy can improve cartilage quality in arthritis, repair the injured soft tissue, and resolve joint pain.\r\n\r\n<img class=\"wp-image-3742 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png\" alt=\"Kelsey. Knee.stems Copy\" width=\"420\" height=\"420\" />\r\n<h4>The Gold Standard in Stem Cell Therapy</h4>\r\nA comprehensive treatment is necessary to strengthen, repair, and stabilize ligaments and structures of the joint to prevent destructive forces from continuing the breakdown of cartilage common in arthritis.\r\n\r\n<strong>A single injection is simply not comprehensive</strong> enough to reverse the damage affecting the entire joint. In our practice, we address these unnatural hypermobile forces with a multi-injection technique called <strong>Comprehensive Regenerative Orthopedics</strong>. It\'s a very effective Stem Cell Therapy for arthritis repair and pain relief.\r\n\r\n&nbsp;\r\n\r\nOur Stem Cell Therapy for arthritis treatment involves the use of four different regenerative therapies. Two sources of stem cells (bone and fat), as well as PRP Prolotherapy and Dextrose Prolotherapy. The supportive joint structures, the inside, and the outer structures of the joint are all treated. This is considered <strong>The Gold Standard</strong> for Stem Cell Regeneration.\r\n\r\nAt OrthoRegen, our Stem Cell Therapy for arthritis is different than at other clinics. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">What makes us different?</a> Many other clinics only use one or two of the above procedures, but not all four. All solutions are centrifuged and concentrated to obtain a solution with the most concentration of stem cells. In our experience, we have discovered that this technique is the best for regeneration. We inject both of these sources of stem cells and then combine the use of PRP Prolotherapy to accelerate their healing.\r\n\r\nIn addition, we apply Dextrose Prolotherapy <strong>to the outside supportive structures of the joint</strong> to help stabilize the ligaments and tendons that hold the joint in place. We utilize this style of treatment because it addresses the whole joint and not just the effect. That is why it is considered the <em>Gold Standard</em>.\r\n<h4>What About Amniotic “Stem Cells”?</h4>\r\nAmniotic Stem Cells are being advertised all over the place and people are fascinated with this very popular trend of using amniotic fluid for joint repair. But it needs to be clarified that Amniotic “Stem Cell” Therapy has NO actual stem cells, but rather growth factors found in the extracellular matrix of the amniotic tissue.\r\n\r\nCompanies purchase the afterbirth materials, process it to remove disease, and then freeze-dry it. Understandably, the process preserves the fluid, but it also kills the live cells. What’s left are healing growth factors. <strong>NO live stem cells are present.</strong> <em>Therefore, if claimed as such, it is simply not the truth.</em>\r\n\r\nIn their pre-donated state, amniotic fluid does have an abundance of stem cells, but they do not survive the processing. Many people leave stem cell seminars convinced that their own stem cells are no good and that donated amniotic “stem cells” will help them with their chronic joint pain from arthritis. It’s important to understand that cryopreserved, dehydrated amniotic products do not contain stem cells. It’s also important to understand that bone marrow, even in elderly individuals with arthritis, <strong>does have sufficient stem cells</strong>, and the cells are <strong>alive</strong>! Additionally, your own blood in the form of Platelet Rich Plasma (PRP) contains live growth factors. Yes, purchased, micronized amniotic fluid does contain growth factor material, but it is processed. Why not just use your own (autologous) live stem cells and PRP growth factors for your arthritis pain?\r\n<h4>The Bottom Line in Arthritis Treatment</h4>\r\nArthritis is a chronic, progressive disease of the articular joints, which to date, has had no cure or effective long-term treatment. However, Regenerative Injection Therapies like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy have already been proven to work well to effectively activate cells for regeneration and repair in degenerated arthritic joints. Regenerative Orthopedics is an effective option for treating arthritis with the potential for enhancing the quality of life of individuals with the disease.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n<h3>References</h3>\r\n<em>1. Chahal, J., Gómez-Aristizábal, A., Shestopaloff, K., Bhatt, S., Chaboureau, A., Fazio, A., Chisholm, J., Weston, A., Chiovitti, J., Keating, A., Kapoor, M., Ogilvie-Harris, D.J., Syed, K.A., Gandhi, R., Mahomed, N.N., Marshall, K.W., Sussman, M.S., Naraghi, A.M. and Viswanathan, S. (2019), Bone Marrow Mesenchymal Stromal Cell Treatment in Patients with Osteoarthritis Results in Overall Improvement in Pain and Symptoms and Reduces Synovial Inflammation. STEM CELLS Translational Medicine, 8: 746-757. <a href=\"https://doi.org/10.1002/sctm.18-0183\">https://doi.org/10.1002/sctm.18-0183</a></em>\r\n\r\n<em>2. Wakitani S, Goto T, Pineda SJ, Young RG, Mansour JM, Caplan AI, Goldberg VM. Mesenchymal cell-based repair of large, full-thickness defects of articular cartilage J. Bone Joint Surg. Am. 1994;76:579-92.</em>\r\n\r\n<em>3. Burke J, Hunter M, Kolhe R, </em>Isales<em> C, Hamrick M, Fulzele S. Therapeutic potential of mesenchymal stem </em>cell-based<em> therapy for osteoarthritis. Clinical and translational medicine. 2016 Aug 10;5(1):27.</em>','Stem Cell Therapy for Arthritis','','inherit','closed','closed','','1416-revision-v1','','','2021-07-23 22:46:26','2021-07-23 22:46:26','',1416,'https://www.drfields.com/?p=4807',0,'revision','',0),(4808,9,'2021-07-23 22:48:24','2021-07-23 22:48:24','Stem Cell Therapy has become a popular treatment and one that can provide very satisfactory results. And Stem Cell Therapy for arthritis, including the repair of degenerated arthritic joints, offers many promising possibilities.1 Stem cells have been shown in research to speed up and enhance bone and cartilage repair in arthritic joints.2,3 Since surgery comes with many disadvantages, <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Therapy</a> to repair defects of articular cartilage provides an exciting alternative.\r\n\r\nAnother fascinating research finding involves evidence of the reduction in the usual progressive destruction of articular cartilage in arthritic disease by mesenchymal/bone marrow stem cells. Bone marrow stem cells appear to suppress inflammation and release growth factors that combat arthritis and the degenerative process, enabling healing mechanisms to repair articular cartilage and relieve the chronic pain of arthritis.\r\n\r\n[caption id=\"attachment_4805\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4805\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Stems-500x375.jpeg\" alt=\"Stem Cells\" width=\"500\" height=\"375\" /> <strong>                  Stem Cell Therapy Effective for Osteoarthritis</strong>[/caption]\r\n<h4>One-Shot Magic Cure?</h4>\r\nHave you looked into Stem Cell Therapy for arthritis relief? It’s important to do your homework when it comes to Stem Cell Therapy because not all treatments are alike. You may have seen treatments advertised that may involve just one injection of stem cells. One injection is most likely insufficient to provide an adequate repair of the joint and the pain relief you seek.\r\n\r\nJoint injuries, like those that eventually lead to arthritis, generally involve the entire joint. If one ligament is injured, there’s a huge likelihood that other ligaments or soft tissue are also injured. And these other areas need to be treated too. One injection simply cannot treat the entire joint.\r\n<h4>Underlying Joint Instability Leads to Arthritis</h4>\r\nWhen the supportive joint structures, such as ligaments and other soft tissue are healthy and strong, they prevent abnormal joint motion. But when they become injured, the joint will move in an abnormal pattern, injuring other joint structures, and eventually leading to joint destruction and arthritis.\r\n\r\nThe degeneration and breakdown of cartilage that is evident in arthritis is something that transpires over time. It doesn\'t just appear immediately. The beginning is often an initial injury that begins a process of instability in the joint with movement in the joint that is abnormal. This joint instability then becomes the source of further joint injury. And it causes pain too.\r\n\r\nJoint instability also involves loose, weakened, and unsupportive ligaments. In essence, the whole joint becomes affected. To achieve repair of the entire joint, the supportive structures surrounding the joint need to be treated, as well as the degenerated structures inside the joint. Intra-articular injections during Stem Cell Therapy for arthritis, combined with the growth factors in treatments like PRP and Prolotherapy can improve cartilage quality in arthritis, repair the injured soft tissue, and resolve joint pain.\r\n\r\n<img class=\"wp-image-3742 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png\" alt=\"Kelsey. Knee.stems Copy\" width=\"420\" height=\"420\" />\r\n<h4>The Gold Standard in Stem Cell Therapy</h4>\r\nA comprehensive treatment is necessary to strengthen, repair, and stabilize ligaments and structures of the joint to prevent destructive forces from continuing the breakdown of cartilage common in arthritis.\r\n\r\n<strong>A single injection is simply not comprehensive</strong> enough to reverse the damage affecting the entire joint. In our practice, we address these unnatural hypermobile forces with a multi-injection technique called <strong>Comprehensive Regenerative Orthopedics</strong>. It\'s a very effective Stem Cell Therapy for arthritis repair and pain relief.\r\n\r\n&nbsp;\r\n\r\nOur Stem Cell Therapy for arthritis treatment involves the use of four different regenerative therapies. Two sources of stem cells (bone and fat), as well as PRP Prolotherapy and Dextrose Prolotherapy. The supportive joint structures, the inside, and the outer structures of the joint are all treated. This is considered <strong>The Gold Standard</strong> for Stem Cell Regeneration.\r\n\r\nAt OrthoRegen, our Stem Cell Therapy for arthritis is different than at other clinics. <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">What makes us different?</a> Many other clinics only use one or two of the above procedures, but not all four. All solutions are centrifuged and concentrated to obtain a solution with the most concentration of stem cells. In our experience, we have discovered that this technique is the best for regeneration. We inject both of these sources of stem cells and then combine the use of PRP Prolotherapy to accelerate their healing.\r\n\r\nIn addition, we apply Dextrose Prolotherapy <strong>to the outside supportive structures of the joint</strong> to help stabilize the ligaments and tendons that hold the joint in place. We utilize this style of treatment because it addresses the whole joint and not just the effect. That is why it is considered the <em>Gold Standard</em>.\r\n<h4>What About Amniotic “Stem Cells”?</h4>\r\nAmniotic Stem Cells are being advertised all over the place and people are fascinated with this very popular trend of using amniotic fluid for joint repair. But it needs to be clarified that Amniotic “Stem Cell” Therapy has NO actual stem cells, but rather growth factors found in the extracellular matrix of the amniotic tissue.\r\n\r\nCompanies purchase the afterbirth materials, process it to remove disease, and then freeze-dry it. Understandably, the process preserves the fluid, but it also kills the live cells. What’s left are healing growth factors. <strong>NO live stem cells are present.</strong> <em>Therefore, if claimed as such, it is simply not the truth.</em>\r\n\r\nIn their pre-donated state, amniotic fluid does have an abundance of stem cells, but they do not survive the processing. Many people leave stem cell seminars convinced that their own stem cells are no good and that donated amniotic “stem cells” will help them with their chronic joint pain from arthritis. It’s important to understand that cryopreserved, dehydrated amniotic products do not contain stem cells. It’s also important to understand that bone marrow, even in elderly individuals with arthritis, <strong>does have sufficient stem cells</strong>, and the cells are <strong>alive</strong>! Additionally, your own blood in the form of Platelet Rich Plasma (PRP) contains live growth factors. Yes, purchased, micronized amniotic fluid does contain growth factor material, but it is processed. Why not just use your own (autologous) live stem cells and PRP growth factors for your arthritis pain?\r\n<h4>The Bottom Line in Arthritis Treatment</h4>\r\nArthritis is a chronic, progressive disease of the articular joints, which to date, has had no cure or effective long-term treatment. However, Regenerative Injection Therapies like Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy have already been proven to work well to effectively activate cells for regeneration and repair in degenerated arthritic joints. Regenerative Orthopedics is an effective option for treating arthritis with the potential for enhancing the quality of life of individuals with the disease.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n<h3>References</h3>\r\n<em>1. Chahal, J., Gómez-Aristizábal, A., Shestopaloff, K., Bhatt, S., Chaboureau, A., Fazio, A., Chisholm, J., Weston, A., Chiovitti, J., Keating, A., Kapoor, M., Ogilvie-Harris, D.J., Syed, K.A., Gandhi, R., Mahomed, N.N., Marshall, K.W., Sussman, M.S., Naraghi, A.M. and Viswanathan, S. (2019), Bone Marrow Mesenchymal Stromal Cell Treatment in Patients with Osteoarthritis Results in Overall Improvement in Pain and Symptoms and Reduces Synovial Inflammation. STEM CELLS Translational Medicine, 8: 746-757. <a href=\"https://doi.org/10.1002/sctm.18-0183\">https://doi.org/10.1002/sctm.18-0183</a></em>\r\n\r\n<em>2. Wakitani S, Goto T, Pineda SJ, Young RG, Mansour JM, Caplan AI, Goldberg VM. Mesenchymal cell-based repair of large, full-thickness defects of articular cartilage J. Bone Joint Surg. Am. 1994;76:579-92.</em>\r\n\r\n<em>3. Burke J, Hunter M, Kolhe R, </em>Isales<em> C, Hamrick M, Fulzele S. Therapeutic potential of mesenchymal stem </em>cell-based<em> therapy for osteoarthritis. Clinical and translational medicine. 2016 Aug 10;5(1):27.</em>','Stem Cell Therapy for Arthritis','','inherit','closed','closed','','1416-revision-v1','','','2021-07-23 22:48:24','2021-07-23 22:48:24','',1416,'https://www.drfields.com/?p=4808',0,'revision','',0),(4809,9,'2021-07-26 18:52:03','2021-07-26 18:52:03','Knee. Prolo','Knee. Prolo','Prolotherapy Effective for Knee Injuries and OA','inherit','open','closed','','knee-prolo','','','2021-07-26 18:52:42','2021-07-26 18:52:42','',486,'https://www.drfields.com/wp-content/uploads/2019/06/Knee.-Prolo.jpeg',0,'attachment','image/jpeg',0),(4810,9,'2021-07-26 18:54:27','2021-07-26 18:54:27','<h4>Regenerative Orthopedics for Annoying Knee Pain</h4>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"6wBQp0ZNfy0\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg\" alt=\"Roberto - Knee (In Spanish)\"]\r\n<strong>Sam - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"d-0hlfEKGYo\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg\" alt=\"Sam - Knee\"]\r\n<strong>Roberto - Knee (In Spanish)</strong></div>\r\nThe knee is one of the most crucial joints in the body. To be engaged in everyday activities -- standing, walking, running, and even lying down -- you need to have normal knee function. But if you have chronic pain in your knee, you are prevented from doing all of that and more. Moreover, many conventional treatments include surgery, arthroscopy, cortisone, and NSAIDS, but sometimes those treatments can hurt more than they help. That is why so many people turn to Regenerative Orthopedics to treat persistent joint pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>What Causes Knee Pain?</h4>\r\nThe knee begins at the lower end of the thigh bone (femur), which rotates on the shin\'s upper end (tibia). The knee cap (patellae) slides in a groove on the end of the femur. Large ligaments attach the femur to the tibia, providing stability to the leg.\r\n\r\nCommon causes of knee pain are arthritis. For example, if you are experiencing minor pain, clicking, giving way, or ‘trick knee,’ you may be feeling the first symptoms of arthritis. Plus, arthritis can begin in people as early as thirty years of age. And this may progress for years before symptoms appear. Acute knee pain, sudden and intense, is usually the result of an injury. Acute knee pain, accompanied by significant inflammation and swelling, can be caused by gout or even infection.\r\n\r\nThe most common cause of long-lasting or chronic knee pain is osteoarthritis. And other forms of arthritis, rheumatoid, traumatic, and gouty, can also cause chronic pain in the knee joint. Additionally, pseudogout, bursitis, tendonitis, <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, degenerative joint disease, and chondromalacia patellae can also cause knee pain. As we age, the smooth and resilient cartilage on our long bones\' ends wears down, but this cartilage is needed for normal joint function.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>How Does Regenerative Orthopedics Work for Chronic Knee Pain?</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Regenerative Orthopedics</a>. It just depends on the cause of your particular joint pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons, and possibly cartilage. Regenerative Orthopedics, including Stem Cell Therapy, PRP, and Prolotherapy, can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain. And studies show that the use of dextrose prolotherapy is supported for treatment of tendinopathies and knee osteoarthritis, as a result of ligament dysfunction.1\r\n\r\n[caption id=\"attachment_4809\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4809\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee.-Prolo-500x375.jpeg\" alt=\"Knee. Prolo\" width=\"500\" height=\"375\" /> <strong>        Prolotherapy Is Effective for Knee Injuries and OA</strong>[/caption]\r\n\r\nRegenerative Orthopedics works because it stimulates an inflammatory reaction in the body. In short, solutions are injected into the affected knee ligaments, tendons, or joints, which leads to local inflammation in that specific area. And then, the localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. Subsequently, the new collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Regenerative Orthopedics?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. And Regenerative Orthopedics is a very safe, affordable option that allows you to keep working, training, and living a normal life during the recovery process. Regenerative Orthopedics for chronic knee pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after Regenerative Orthopedics, like Stem Cell Therapy, PRP, and <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nAre you a candidate for Regenerative Orthopedics for your chronic knee pain? Would you like a <strong>second opinion before you have irreversible knee surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation or call Peter A. Fields, MD, DC, and OrthoRegen<sup>®</sup> at 310-453-1234.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h3>References</h3>\r\n1Hauser RA, Lackner JB, Steilen-Matias D, Harris DK. A Systematic Review of Dextrose Prolotherapy for Chronic Musculoskeletal Pain. Clin Med Insights Arthritis Musculoskelet Disord. 2016 Jul 7;9:139-59. doi: 10.4137/CMAMD.S39160. PMID: 27429562; PMCID: PMC4938120.','Knee Pain That Won\'t Go Away','','inherit','closed','closed','','486-revision-v1','','','2021-07-26 18:54:27','2021-07-26 18:54:27','',486,'https://www.drfields.com/?p=4810',0,'revision','',0),(4811,9,'2021-07-29 20:34:52','2021-07-29 20:34:52','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg\" alt=\"Dr.doug – Headaches &amp; Shoulder\"]\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong></div>\n<h4>Shoulder Injury Treatment</h4>\nAt OrthoRegen<sup>®</sup>, shoulder injury is one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedics</a>. A shoulder injury is common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive regenerative shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\n\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long-term results. Peter A. Fields, MD, DC,  <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/ \">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist, and swimmer, understands your desire to return to full participation in your training and competition.\n\n[caption id=\"attachment_4812\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4812\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Slide17-500x375.jpeg\" alt=\"Slide17\" width=\"500\" height=\"375\" /> <strong>               Stem Cell Therapy Effective for Rotator Cuff Injury</strong>[/caption]\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h3>Rotator Cuff Shoulder Injury Can Be Successfully Treated with Stem Cell Therapy</h3>\nEven if your shoulder injury involves the rotator cuff, Regenerative Orthopedics can help. Surgery is often the go-to treatment. But unfortunately, despite improved surgical techniques, the tendon-to-bone healing rate is unsatisfactory. However, treatments like Stem Cell Therapy have been shown in studies to be a promising reparative treatment.1   Stem cell therapy is thus a potentially effective therapy to enhance rotator cuff healing.\n<h3><strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen<sup>®</sup> are:</strong></h3>\n<ul>\n 	<li>Acromioclavicular joint arthrosis</li>\n 	<li>Arthritis</li>\n 	<li>Bursitis</li>\n 	<li>Dislocation</li>\n 	<li>Frozen shoulder</li>\n 	<li>Glenoid labrum tear</li>\n 	<li>Impingement syndrome</li>\n 	<li>Labral tear</li>\n 	<li>Multi-directional instability</li>\n 	<li>Rotator cuff tear</li>\n 	<li>Shoulder dislocation</li>\n 	<li>Shoulder instability</li>\n 	<li>Shoulder pain</li>\n 	<li>Shoulder separation</li>\n 	<li>SLAP lesion</li>\n 	<li>Subluxation</li>\n 	<li>Swimmers shoulder</li>\n 	<li>Tendonitis</li>\n 	<li>Tendonosis</li>\n 	<li>Torn labrum</li>\n</ul>\n<h4>Are You A Candidate for Prolotherapy?</h4>\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials/\">Shoulder Prolotherapy Testimonials page</a>.\n\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\n<h3>References</h3>\n1Mora, Maria Valencia, et al. \"Stem cell therapy in the management of shoulder rotator cuff disorders.\" <i>World Journal of Stem Cells</i> 7.4 (2015): 691.','Shoulder Injury Treatment','','inherit','closed','closed','','545-autosave-v1','','','2021-07-29 20:34:52','2021-07-29 20:34:52','',545,'https://www.drfields.com/?p=4811',0,'revision','',0),(4812,9,'2021-07-29 20:21:16','2021-07-29 20:21:16','Stem Cell Therapy Effective for Rotator Cuff Injury','Slide17','Stem Cell Therapy Effective for Rotator Cuff Injury','inherit','open','closed','','slide17','','','2021-07-29 20:21:49','2021-07-29 20:21:49','',545,'https://www.drfields.com/wp-content/uploads/2019/06/Slide17.jpeg',0,'attachment','image/jpeg',0),(4813,9,'2021-07-29 20:27:23','2021-07-29 20:27:23','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg\" alt=\"Dr.doug – Headaches &amp; Shoulder\"]\r\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong></div>\r\n<h4>Shoulder Injury Treatment</h4>\r\nAt OrthoRegen<sup>®</sup>, shoulder injury is one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedics</a>. Shoulder injuries are common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive prolotherapy shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\r\n\r\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/ \">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist and swimmer, understands your desire to return to full participation in your training and competition.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen<sup>®</sup> are:</strong>\r\n<ul>\r\n 	<li>Acromioclavicular joint arthrosis</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation</li>\r\n 	<li>Frozen shoulder</li>\r\n 	<li>Glenoid labrum tear</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Multi-directional instability</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Shoulder dislocation</li>\r\n 	<li>Shoulder instability</li>\r\n 	<li>Shoulder pain</li>\r\n 	<li>Shoulder separation</li>\r\n 	<li>SLAP lesion</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Swimmers shoulder</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendonosis</li>\r\n 	<li>Torn labrum</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials/\">Shoulder Prolotherapy Testimonials page</a>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3>References</h3>\r\n1Mora, Maria Valencia, et al. \"Stem cell therapy in the management of shoulder rotator cuff disorders.\" <i>World Journal of Stem Cells</i> 7.4 (2015): 691.','Shoulder Injury Treatment','','inherit','closed','closed','','545-revision-v1','','','2021-07-29 20:27:23','2021-07-29 20:27:23','',545,'https://www.drfields.com/?p=4813',0,'revision','',0),(4814,9,'2021-07-29 20:34:53','2021-07-29 20:34:53','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg\" alt=\"Dr.doug – Headaches &amp; Shoulder\"]\r\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong></div>\r\n<h4>Shoulder Injury Treatment</h4>\r\nAt OrthoRegen<sup>®</sup>, shoulder injury is one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedics</a>. A shoulder injury is common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive regenerative shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\r\n\r\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long-term results. Peter A. Fields, MD, DC,  <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/ \">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist, and swimmer, understands your desire to return to full participation in your training and competition.\r\n\r\n[caption id=\"attachment_4812\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4812\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Slide17-500x375.jpeg\" alt=\"Slide17\" width=\"500\" height=\"375\" /> <strong>               Stem Cell Therapy Effective for Rotator Cuff Injury</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>Rotator Cuff Shoulder Injury Can Be Successfully Treated with Stem Cell Therapy</h3>\r\nEven if your shoulder injury involves the rotator cuff, Regenerative Orthopedics can help. Surgery is often the go-to treatment. But unfortunately, despite improved surgical techniques, the tendon-to-bone healing rate is unsatisfactory. However, treatments like Stem Cell Therapy have been shown in studies to be promising reparative treatments.1   Stem cell therapy is thus a potentially effective therapy to enhance rotator cuff healing.\r\n<h3><strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen<sup>®</sup> are:</strong></h3>\r\n<ul>\r\n 	<li>Acromioclavicular joint arthrosis</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation</li>\r\n 	<li>Frozen shoulder</li>\r\n 	<li>Glenoid labrum tear</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Multi-directional instability</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Shoulder dislocation</li>\r\n 	<li>Shoulder instability</li>\r\n 	<li>Shoulder pain</li>\r\n 	<li>Shoulder separation</li>\r\n 	<li>SLAP lesion</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Swimmers shoulder</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendonosis</li>\r\n 	<li>Torn labrum</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials/\">Shoulder Prolotherapy Testimonials page</a>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3>References</h3>\r\n1Mora, Maria Valencia, et al. \"Stem cell therapy in the management of shoulder rotator cuff disorders.\" <i>World Journal of Stem Cells</i> 7.4 (2015): 691.','Shoulder Injury Treatment','','inherit','closed','closed','','545-revision-v1','','','2021-07-29 20:34:53','2021-07-29 20:34:53','',545,'https://www.drfields.com/?p=4814',0,'revision','',0),(4815,9,'2021-07-29 20:38:25','2021-07-29 20:38:25','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"EKGWkEAaqTM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg\" alt=\"Dr.doug – Headaches &amp; Shoulder\"]\r\n<strong>Dr.Doug - Headaches &amp; Shoulder</strong></div>\r\n<h4>Shoulder Injury Treatment</h4>\r\nAt OrthoRegen<sup>®</sup>, shoulder injury is one of the most common areas we treat with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedics</a>. A shoulder injury is common in nearly every sport from swimming to football to martial arts. In our experience, comprehensive regenerative shoulder treatment can correct the root cause of your shoulder injury without surgery, pain medications, or extended time from your sport. We have treated all types of painful shoulder injuries. Whether you are an Olympic hopeful or a weekend warrior, we can help you!\r\n\r\nOur experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long-term results. Peter A. Fields, MD, DC,  <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/ \">The Athletic Doc<sup>®</sup></a>, as a Triathlete, marathoner, long-distance cyclist, and swimmer, understands your desire to return to full participation in your training and competition.\r\n\r\n[caption id=\"attachment_4812\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4812\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Slide17-500x375.jpeg\" alt=\"Slide17\" width=\"500\" height=\"375\" /> <strong>               Stem Cell Therapy Effective for Rotator Cuff Injury</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>Rotator Cuff Shoulder Injury Can Be Successfully Treated with Stem Cell Therapy</h3>\r\nEven if your shoulder injury involves the rotator cuff, Regenerative Orthopedics can help. Surgery is often the go-to treatment. But unfortunately, despite improved surgical techniques, the tendon-to-bone healing rate is unsatisfactory. However, treatments like Stem Cell Therapy have been shown in studies to be promising reparative treatments.1   Stem cell therapy is thus a potentially effective therapy to enhance rotator cuff healing.\r\n<h3><strong>Some of the most common shoulder injuries and shoulder pain we treat with comprehensive Prolotherapy shoulder treatments at OrthoRegen<sup>®</sup> are:</strong></h3>\r\n<ul>\r\n 	<li>Acromioclavicular joint arthrosis</li>\r\n 	<li>Arthritis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation</li>\r\n 	<li>Frozen shoulder</li>\r\n 	<li>Glenoid labrum tear</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Labral tear</li>\r\n 	<li>Multi-directional instability</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Shoulder dislocation</li>\r\n 	<li>Shoulder instability</li>\r\n 	<li>Shoulder pain</li>\r\n 	<li>Shoulder separation</li>\r\n 	<li>SLAP lesion</li>\r\n 	<li>Subluxation</li>\r\n 	<li>Swimmers shoulder</li>\r\n 	<li>Tendonitis</li>\r\n 	<li>Tendonosis</li>\r\n 	<li>Torn labrum</li>\r\n</ul>\r\n<h4>Are You A Candidate for Regenerative Orthopedics?</h4>\r\nPeter A. Fields, MD, DC and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy shoulder treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Shoulder-Testimonials/\">Shoulder Prolotherapy Testimonials page</a>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3>References</h3>\r\n1Mora, Maria Valencia, et al. \"Stem cell therapy in the management of shoulder rotator cuff disorders.\" <i>World Journal of Stem Cells</i> 7.4 (2015): 691.','Shoulder Injury Treatment','','inherit','closed','closed','','545-revision-v1','','','2021-07-29 20:38:25','2021-07-29 20:38:25','',545,'https://www.drfields.com/?p=4815',0,'revision','',0),(4816,9,'2021-08-05 20:53:21','2021-08-05 20:53:21','<div id=\"specialistsInfo\">\n<h3>What To Ask When Looking for A Prolotherapist</h3>\n<div id=\"specialistsParagraph\">When looking for a Prolotherapist, you definitely want experience. OrthoRegen<sup>®</sup>, is grateful to have Peter A. Fields, MD, DC, an experienced physician dedicated to providing highly effective, individualized Regenerative Orthopedic treatment plans that relieve pain and help patients return to sports, work, and activities quickly and safely. If you are serious about receiving regenerative treatments from a physician who has many years of experience in repairing the joint injury, then OrthoRegen<sup>®</sup>, is for you!</div>\n</div>\n<h3>When Looking for a Prolotherapist, Find Out How Much of the Practice Is Dedicated to <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>?</h3>\nFind out if Prolotherapy is really what they are experts at or is it something they do once in a while. At least 50% of the doctor’s practice should be Prolotherapy. And it\'s better if it is more.\n<h3>When Looking for a Prolotherapist, Find Out Whether the Physician Does Prolotherapy on Every Joint?</h3>\nIt is important to find out whether the physician treats the back, knees, shoulder, neck, ankle, feet, wrist, hand, and every other joint? Why or why not? Do they lack the confidence to treat every area? Do they lack training or experience?\n\n<img class=\"size-medium wp-image-4818\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-2-186x500.png\" alt=\"Honduras 2011\" width=\"186\" height=\"500\" />\n<h3>Where Did the Physician Learn Their <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> Skills?</h3>\nHow did the Prolotherapist learn their skills? And do they take continuing education in it on a regular basis? It also helps to know whether the Prolotherapist instructs others on how to do it. Peter A. Fields, MD, DC continues to teach other doctors on an ongoing basis and gives seminars on Regenerative Orthopedics.\n<h3><strong>I\'m Looking for a Prolotherapist, Can You Give Me a Local Referral from a Physician Who does the Treatments You Do?</strong></h3>\nSome people may ask us for a referral to someone closer to them. Unfortunately, we do not have specific referrals for outside of our office, especially if we have not seen someone for an exam and to thoroughly review their case, imaging, and other factors important when doing a detailed exam. We understand that it is not feasible for all patients to come here.  Hopefully, the information we share in our articles can at least help people to learn more about the possible reason for their symptoms.\n\nWe do try to help educate people and provide information that would help build the understanding about Prolotherapy and the other forms of Regenerative Orthopedics, and how these treatments might be a consideration for various conditions. But keep in mind that every Prolotherapist is different, just like with any medical specialty. We simply do not know everyone who practices or what types of cases their office accepts.\n\nWe would love for you to choose Peter A. Fields, MD, DC and OrthoRegen.<sup>®      </sup>However, if you need to choose someone closer, we suggest that you speak in detail with the team and/or provider whom you are considering seeing. If the location of a medical provider is most important to you, Google may be a good place to start. And if you do find someone near you, contact them about their experience with your condition and determine if you feel they might be a good fit for your case.\n\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\n\n&nbsp;','What to Ask When Looking for a Prolotherapist','','inherit','closed','closed','','1450-autosave-v1','','','2021-08-05 20:53:21','2021-08-05 20:53:21','',1450,'https://www.drfields.com/?p=4816',0,'revision','',0),(4817,9,'2021-08-05 20:27:54','2021-08-05 20:27:54','<div id=\"specialistsInfo\">\r\n<h3>What To Ask When Looking for A Prolotherapist</h3>\r\n<div></div>\r\n<div id=\"specialistsParagraph\">When looking for a Prolotherapist, you definitely want experience. OrthoRegen<sup>®</sup>, is grateful to have Peter A. Fields, MD, DC, an experienced physician dedicated to providing highly effective, individualized Regenerative Orthopedic treatment plans that relieve pain and help patients return to sports, work, and activities quickly and safely. If you are serious about receiving regenerative treatments from a physician who has many years of experience in repairing the joint injury, then OrthoRegen<sup>®</sup>, is for you!</div>\r\n</div>\r\n<img class=\"size-full wp-image-712 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" />\r\n<h3>When Looking for a Prolotherapist, Find Out How much of the practice is dedicated to <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>?</h3>\r\nAt least 50% of the doctor’s practice should be Prolotherapy and better if it is more.\r\n<h3>When Looking for a Prolotherapist, Find Out Whether the physician Does Prolotherapy on Every Joint?</h3>\r\nIt is important to find out whether the physician treats the back, knees, shoulder, neck, ankle, feet, wrist, hand, and every other joint? Why or why not? Do they lack the confidence to treat every area? Do they lack training or experience?\r\n<h3>Where Did the Physician Learn Their <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> Skills?</h3>\r\nHow did the Prolotherapist learn their skills? And do they take continuing education in it on a regular basis? It also helps to know whether the Prolotherapist instructs others on how to do it. Peter A. Fields, MD, DC continues to teach other doctors on an ongoing basis and gives seminars on Regenerative Orthopedics.\r\n<h3><strong>I\'m Looking for a Prolotherapist, Can You Give Me a Local Referral from a Physician Who does the Treatments You Do?</strong></h3>\r\nWe do not have specific referrals for outside of our office, especially if we have not seen someone for an exam and to thoroughly review their case, imaging, etc.. In our videos and article content, we talk about published research on certain conditions, along with the treatments and testing that we do here, and what we are finding in our practice at our neck center in Fort Myers, Florida. We understand that it is not feasible for all patients to come here, nor can we accept all cases, but we hope that the information we share can at least help people learn more about the possible reason for their symptoms. We try to put out information about our techniques, research, experience, etc.. to help people understand more about Prolotherapy and how it might be a consideration for various conditions, but it does not go across the board for all Prolotherapists, just like with any medical specialty. We simply do not know everyone who practices or what types of cases their office accepts, etc. Our office tends to take on a lot of referred cases that other offices cannot handle, especially with regard to the upper cervical spine. However, there are a lot of Prolotherapists who can take on straightforward pain cases just great, and we are always happy and encouraged by hearing of people’s success wherever they were treated! All we can really suggest is to speak in detail with the team and/or provider whom you are considering seeing. If the location of a medical provider is most important to you, Google may be a good place to start. If you find someone near you, contact them about their experience with your condition and determine if you feel they might be a good fit for your case.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n\r\n<img class=\"size-full wp-image-712 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" />\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>Does the doctor do Prolotherapy on every joint (back, knee’s shoulder, neck, ankle, feet, wrist, hand, etc)? If not, then ask why.</li>\r\n 	<li>Does the doctor do the Prolotherapy himself? Only a skilled, trained MD or DO should be doing the injections; not an assistant or mid-level practitioner (PA, Nurse Practitioner, etc).</li>\r\n 	<li>Where did the doctor learn their <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> skills? And do they take continuing education in it on a regular basis. Better yet if the doctor instructs others how to do it.</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>','What to Ask When Looking for a Prolotherapist','','inherit','closed','closed','','1450-revision-v1','','','2021-08-05 20:27:54','2021-08-05 20:27:54','',1450,'https://www.drfields.com/?p=4817',0,'revision','',0),(4818,9,'2021-08-05 20:31:16','2021-08-05 20:31:16','Seek an Experienced Prolotherapist','Honduras 2011','Honduras 2011','inherit','open','closed','','honduras-2011-4','','','2021-08-05 20:31:46','2021-08-05 20:31:46','',1450,'https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-2.png',0,'attachment','image/png',0),(4819,9,'2021-08-05 20:32:29','2021-08-05 20:32:29','<div id=\"specialistsInfo\">\r\n<h3>What To Ask When Looking for A Prolotherapist</h3>\r\n<div></div>\r\n<div id=\"specialistsParagraph\">When looking for a Prolotherapist, you definitely want experience. OrthoRegen<sup>®</sup>, is grateful to have Peter A. Fields, MD, DC, an experienced physician dedicated to providing highly effective, individualized Regenerative Orthopedic treatment plans that relieve pain and help patients return to sports, work, and activities quickly and safely. If you are serious about receiving regenerative treatments from a physician who has many years of experience in repairing the joint injury, then OrthoRegen<sup>®</sup>, is for you!</div>\r\n</div>\r\n<h3>When Looking for a Prolotherapist, Find Out How much of the practice is dedicated to <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>?</h3>\r\nAt least 50% of the doctor’s practice should be Prolotherapy and better if it is more.\r\n<h3>When Looking for a Prolotherapist, Find Out Whether the physician Does Prolotherapy on Every Joint?</h3>\r\nIt is important to find out whether the physician treats the back, knees, shoulder, neck, ankle, feet, wrist, hand, and every other joint? Why or why not? Do they lack the confidence to treat every area? Do they lack training or experience?\r\n\r\n[caption id=\"attachment_4818\" align=\"alignleft\" width=\"186\"]<img class=\"size-medium wp-image-4818\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-2-186x500.png\" alt=\"Honduras 2011\" width=\"186\" height=\"500\" /> Honduras 2011[/caption]\r\n<h3>Where Did the Physician Learn Their <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> Skills?</h3>\r\nHow did the Prolotherapist learn their skills? And do they take continuing education in it on a regular basis? It also helps to know whether the Prolotherapist instructs others on how to do it. Peter A. Fields, MD, DC continues to teach other doctors on an ongoing basis and gives seminars on Regenerative Orthopedics.\r\n<h3><strong>I\'m Looking for a Prolotherapist, Can You Give Me a Local Referral from a Physician Who does the Treatments You Do?</strong></h3>\r\nWe do not have specific referrals for outside of our office, especially if we have not seen someone for an exam and to thoroughly review their case, imaging, etc.. In our videos and article content, we talk about published research on certain conditions, along with the treatments and testing that we do here, and what we are finding in our practice at our neck center in Fort Myers, Florida. We understand that it is not feasible for all patients to come here, nor can we accept all cases, but we hope that the information we share can at least help people learn more about the possible reason for their symptoms. We try to put out information about our techniques, research, experience, etc.. to help people understand more about Prolotherapy and how it might be a consideration for various conditions, but it does not go across the board for all Prolotherapists, just like with any medical specialty. We simply do not know everyone who practices or what types of cases their office accepts, etc. Our office tends to take on a lot of referred cases that other offices cannot handle, especially with regard to the upper cervical spine. However, there are a lot of Prolotherapists who can take on straightforward pain cases just great, and we are always happy and encouraged by hearing of people’s success wherever they were treated! All we can really suggest is to speak in detail with the team and/or provider whom you are considering seeing. If the location of a medical provider is most important to you, Google may be a good place to start. If you find someone near you, contact them about their experience with your condition and determine if you feel they might be a good fit for your case.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n\r\n<img class=\"size-full wp-image-712 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg\" alt=\"Fully Body Joints\" width=\"200\" height=\"376\" />\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>Does the doctor do Prolotherapy on every joint (back, knee’s shoulder, neck, ankle, feet, wrist, hand, etc)? If not, then ask why.</li>\r\n 	<li>Does the doctor do the Prolotherapy himself? Only a skilled, trained MD or DO should be doing the injections; not an assistant or mid-level practitioner (PA, Nurse Practitioner, etc).</li>\r\n 	<li>Where did the doctor learn their <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> skills? And do they take continuing education in it on a regular basis. Better yet if the doctor instructs others how to do it.</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>','What to Ask When Looking for a Prolotherapist','','inherit','closed','closed','','1450-revision-v1','','','2021-08-05 20:32:29','2021-08-05 20:32:29','',1450,'https://www.drfields.com/?p=4819',0,'revision','',0),(4820,9,'2021-08-05 20:54:18','2021-08-05 20:54:18','<div id=\"specialistsInfo\">\r\n<h3>What To Ask When Looking for A Prolotherapist</h3>\r\n<div id=\"specialistsParagraph\">When looking for a Prolotherapist, you definitely want the physician to be experienced. OrthoRegen<sup>®</sup>, is grateful to have Peter A. Fields, MD, DC, an experienced physician dedicated to providing highly effective, individualized Regenerative Orthopedic treatment plans that relieve pain and help patients return to sports, work, and activities quickly and safely. If you are serious about receiving regenerative treatments from a physician who has many years of experience in repairing the joint injury, then OrthoRegen<sup>®</sup>, is for you!</div>\r\n</div>\r\n<h3>When Looking for a Prolotherapist, Find Out How Much of the Practice Is Dedicated to <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>?</h3>\r\nFind out if Prolotherapy is really what they are experts at or is it something they do once in a while. At least 50% of the doctor’s practice should be Prolotherapy. And it\'s better if it is more.\r\n<h3>When Looking for a Prolotherapist, Find Out Whether the Physician Does Prolotherapy on Every Joint?</h3>\r\nIt is important to find out whether the physician treats the back, knees, shoulder, neck, ankle, feet, wrist, hand, and every other joint? Why or why not? Do they lack the confidence to treat every area? Do they lack training or experience?\r\n\r\n<img class=\"size-medium wp-image-4818\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-2-186x500.png\" alt=\"Honduras 2011\" width=\"186\" height=\"500\" />\r\n<h3>Where Did the Physician Learn Their <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> Skills?</h3>\r\nHow did the Prolotherapist learn their skills? And do they take continuing education in it on a regular basis? It also helps to know whether the Prolotherapist instructs others on how to do it. Peter A. Fields, MD, DC continues to teach other doctors on an ongoing basis and gives seminars on Regenerative Orthopedics.\r\n<h3><strong>I\'m Looking for a Prolotherapist, Can You Give Me a Local Referral from a Physician Who does the Treatments You Do?</strong></h3>\r\nSome people may ask us for a referral to someone closer to them. Unfortunately, we do not have specific referrals for outside of our office, especially if we have not seen someone for an exam and to thoroughly review their case, imaging, and other factors important when doing a detailed exam. We understand that it is not feasible for all patients to come here.  Hopefully, the information we share in our articles can at least help people to learn more about the possible reason for their symptoms.\r\n\r\nWe do try to help educate people and provide information that would help build the understanding about Prolotherapy and the other forms of Regenerative Orthopedics, and how these treatments might be a consideration for various conditions. But keep in mind that every Prolotherapist is different, just like with any medical specialty. We simply do not know everyone who practices or what types of cases their office accepts.\r\n\r\nWe would love for you to choose Peter A. Fields, MD, DC and OrthoRegen.<sup>®      </sup>However, if you need to choose someone closer, we suggest that you speak in detail with the team and/or provider whom you are considering seeing. If the location of a medical provider is most important to you, Google may be a good place to start. And if you do find someone near you, contact them about their experience with your condition and determine if you feel they might be a good fit for your case.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n\r\n&nbsp;','What to Ask When Looking for a Prolotherapist','','inherit','closed','closed','','1450-revision-v1','','','2021-08-05 20:54:18','2021-08-05 20:54:18','',1450,'https://www.drfields.com/?p=4820',0,'revision','',0),(4821,9,'2021-08-05 20:55:05','2021-08-05 20:55:05','<div id=\"specialistsInfo\">\r\n<h3>What To Ask When Looking for A Prolotherapist</h3>\r\n<div id=\"specialistsParagraph\">When looking for a Prolotherapist, you definitely want the physician to be experienced. OrthoRegen<sup>®</sup>, is grateful to have Peter A. Fields, MD, DC, an experienced physician dedicated to providing highly effective, individualized Regenerative Orthopedic treatment plans that relieve pain and help patients return to sports, work, and activities quickly and safely. If you are serious about receiving regenerative treatments from a physician who has many years of experience in repairing the joint injury, then OrthoRegen<sup>®</sup>, is for you!</div>\r\n</div>\r\n<h3>When Looking for a Prolotherapist, Find Out How Much of the Practice Is Dedicated to <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a>?</h3>\r\nFind out if Prolotherapy is really what they are experts at or is it something they do once in a while. At least 50% of the doctor’s practice should be Prolotherapy. And it\'s better if it is more.\r\n<h3>Find Out Whether the Physician Does Prolotherapy on Every Joint?</h3>\r\nIt is important to find out whether the physician treats the back, knees, shoulder, neck, ankle, feet, wrist, hand, and every other joint? Why or why not? Do they lack the confidence to treat every area? Do they lack training or experience?\r\n\r\n<img class=\"size-medium wp-image-4818 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-2-186x500.png\" alt=\"Honduras 2011\" width=\"186\" height=\"500\" />\r\n<h3>Where Did the Physician Learn Their <a title=\"Prolotherapy\" href=\"/Prolotherapy/Dextrose-Prolotherapy\">Prolotherapy</a> Skills?</h3>\r\nHow did the Prolotherapist learn their skills? And do they take continuing education in it on a regular basis? It also helps to know whether the Prolotherapist instructs others on how to do it. Peter A. Fields, MD, DC continues to teach other doctors on an ongoing basis and gives seminars on Regenerative Orthopedics.\r\n<h3><strong>I\'m Looking for a Prolotherapist, Can You Give Me a Local Referral from a Physician Who does the Treatments You Do?</strong></h3>\r\nSome people may ask us for a referral to someone closer to them. Unfortunately, we do not have specific referrals for outside of our office, especially if we have not seen someone for an exam and to thoroughly review their case, imaging, and other factors important when doing a detailed exam. We understand that it is not feasible for all patients to come here.  Hopefully, the information we share in our articles can at least help people to learn more about the possible reason for their symptoms.\r\n\r\nWe do try to help educate people and provide information that would help build the understanding about Prolotherapy and the other forms of Regenerative Orthopedics, and how these treatments might be a consideration for various conditions. But keep in mind that every Prolotherapist is different, just like with any medical specialty. We simply do not know everyone who practices or what types of cases their office accepts.\r\n\r\nWe would love for you to choose Peter A. Fields, MD, DC and OrthoRegen.<sup>®      </sup>However, if you need to choose someone closer, we suggest that you speak in detail with the team and/or provider whom you are considering seeing. If the location of a medical provider is most important to you, Google may be a good place to start. And if you do find someone near you, contact them about their experience with your condition and determine if you feel they might be a good fit for your case.\r\n\r\n<a class=\"buttonlink\" href=\"/Contact\">To Learn More Contact Us Today! It\'s Free</a>\r\n\r\n&nbsp;','What to Ask When Looking for a Prolotherapist','','inherit','closed','closed','','1450-revision-v1','','','2021-08-05 20:55:05','2021-08-05 20:55:05','',1450,'https://www.drfields.com/?p=4821',0,'revision','',0),(4822,9,'2021-08-06 21:43:21','2021-08-06 21:43:21','The Problem with Cortisone','Cortisone','Cortisone','inherit','open','closed','','cortisone-2','','','2021-08-06 21:43:35','2021-08-06 21:43:35','',3540,'https://www.drfields.com/wp-content/uploads/2020/02/Cortisone.jpeg',0,'attachment','image/jpeg',0),(4823,9,'2021-08-06 21:45:11','2021-08-06 21:45:11','Are you experiencing sciatica pain going down your leg? And did the pain begin years ago with aggravating pain in the gluts or the back of the thigh? Or are you noticing new symptoms of tingling down to the calf and toes? Sciatica pain and symptoms often occur with sitting, standing, and walking; and may be relieved with lying down. Does that sound like you?\r\n<h3>Seeing A Chiropractor for Sciatica Pain</h3>\r\nChiropractors should be the first physician to see about sciatica pain because this is an area they treat all of the time. But if the pain continues after giving chiropractic a chance (several or more treatments are usually needed), and then also trying other various treatment modalities, like acupuncture, massage, and physical therapy, the next step would be Regenerative Orthopedics as a solution for this persistent pain.\r\n\r\nDid you receive an MRI with a report revealing some type of encroachment on a nerve root in the lower back area, which is pinching the nerve, and possibly some displacement and/or degeneration in the vertebrae of the lower back? These are common on MRI reports when experiencing sciatica pain. The displacement mentioned in the report may include forward or backward movement of the vertebrae. And this movement pinches the nerve root due to <em>instability in the lumbar spine caused by ligament laxity</em>.\r\n<h2>Sciatica Pain May Be the Result of Lax Ligaments</h2>\r\nLigaments are a type of connective tissue that connects bone to bone. And ligaments help to stabilize the spine and other joints. Injured ligaments are often lax. When they become lax or loose, they have difficulty healing because they have a pretty poor blood supply.\r\n\r\nRegenerative Orthopedics stimulates the body to boost the blood supply and fibroblasts in the injured areas, resulting in repair of the injured ligaments. The fibroblasts are the cells through which collagen is made and by which tendons and ligaments repair.\r\n\r\nRegenerative Orthopedics helps strengthen and tighten the ligaments. This results in stabilization of the joints of the lumbar spine which then stops the pinching of the nerve.\r\n<h2>Cortisone vs Dextrose Caudal Epidural</h2>\r\nA lumbar epidural is an injection into the epidural space of the lumbar spine. When patients experience referred pain, either cortisone (steroid) or dextrose injections can be used. Steroids are strong anti-inflammatories. But they need to be limited to no more than 3-4 injections each year in order to prevent the thinning of the bone and connective tissue damage.\r\n\r\n[caption id=\"attachment_4822\" align=\"alignright\" width=\"544\"]<img class=\" wp-image-4822\" src=\"https://www.drfields.com/wp-content/uploads/2020/02/Cortisone-500x375.jpeg\" alt=\"Cortisone\" width=\"544\" height=\"408\" />  <strong>A Problem with Cortisone Is That It Is Just a Bandaid Over Degeneration</strong>[/caption]\r\n\r\nAt OrthoRegen<sup>®</sup>, we endeavor to build up the soft tissue and joint structures. Because of that, we do not use substances like cortisone, because it causes degeneration and inhibits healing. Instead, we use a dextrose solution to reduce the swelling of the nerve without the anti-inflammatory effect and the steroid side effects.\r\n\r\nRegenerative Orthopedics eliminate or reduce pain, numbness, and tingling, enabling the former sciatica pain sufferer to be able to sit, stand, and walk without any pain or annoying symptoms. The treatment effectively resolves the symptoms and results in pain-free living.\r\n\r\nHere at OrthoRegen<sup>®</sup>, we practice a comprehensive approach to Regenerative Orthopedics. And it\'s a great alternative to surgery and joint replacement. The treatment helps regenerate connective soft tissues and accelerates recovery.\r\n\r\nLumbar instability results in an array of symptoms. And they include sacroiliac pain, lower back pain, sciatic pain, and referred leg pain. All of these symptoms can be treated effectively with Regenerative Orthopedics.  So, if you are suffering from any of the symptoms listed above and would like to learn more, you can give us a call at (310)453-1234. We’d love to help you eliminate your sciatica symptoms.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Treat Sciatica Pain Non-Surgically','','inherit','closed','closed','','3540-revision-v1','','','2021-08-06 21:45:11','2021-08-06 21:45:11','',3540,'https://www.drfields.com/?p=4823',0,'revision','',0),(4824,9,'2021-08-06 21:45:47','2021-08-06 21:45:47','Are you experiencing sciatica pain going down your leg? And did the pain begin years ago with aggravating pain in the gluts or the back of the thigh? Or are you noticing new symptoms of tingling down to the calf and toes? Sciatica pain and symptoms often occur with sitting, standing, and walking; and may be relieved with lying down. Does that sound like you?\r\n<h3>Seeing A Chiropractor for Sciatica Pain</h3>\r\nChiropractors should be the first physician to see about sciatica pain because this is an area they treat all of the time. But if the pain continues after giving chiropractic a chance (several or more treatments are usually needed), and then also trying other various treatment modalities, like acupuncture, massage, and physical therapy, the next step would be Regenerative Orthopedics as a solution for this persistent pain.\r\n\r\nDid you receive an MRI with a report revealing some type of encroachment on a nerve root in the lower back area, which is pinching the nerve, and possibly some displacement and/or degeneration in the vertebrae of the lower back? These are common on MRI reports when experiencing sciatica pain. The displacement mentioned in the report may include forward or backward movement of the vertebrae. And this movement pinches the nerve root due to <em>instability in the lumbar spine caused by ligament laxity</em>.\r\n<h2>Sciatica Pain May Be the Result of Lax Ligaments</h2>\r\nLigaments are a type of connective tissue that connects bone to bone. And ligaments help to stabilize the spine and other joints. Injured ligaments are often lax. When they become lax or loose, they have difficulty healing because they have a pretty poor blood supply.\r\n\r\nRegenerative Orthopedics stimulates the body to boost the blood supply and fibroblasts in the injured areas, resulting in repair of the injured ligaments. The fibroblasts are the cells through which collagen is made and by which tendons and ligaments repair.\r\n\r\nRegenerative Orthopedics helps strengthen and tighten the ligaments. This results in stabilization of the joints of the lumbar spine which then stops the pinching of the nerve.\r\n<h2>Cortisone vs Dextrose Caudal Epidural</h2>\r\nA lumbar epidural is an injection into the epidural space of the lumbar spine. When patients experience referred pain, either cortisone (steroid) or dextrose injections can be used. Steroids are strong anti-inflammatories. But they need to be limited to no more than 3-4 injections each year in order to prevent the thinning of the bone and connective tissue damage.\r\n\r\n[caption id=\"attachment_4822\" align=\"alignright\" width=\"544\"]<img class=\" wp-image-4822\" src=\"https://www.drfields.com/wp-content/uploads/2020/02/Cortisone-500x375.jpeg\" alt=\"Cortisone\" width=\"544\" height=\"408\" /> <strong>A Problem with Cortisone Is That It Is Just a Bandaid Over Degeneration</strong>[/caption]\r\n\r\nAt OrthoRegen<sup>®</sup>, we endeavor to build up the soft tissue and joint structures. Because of that, we do not use substances like cortisone, because it causes degeneration and inhibits healing. Instead, we use a dextrose solution to reduce the swelling of the nerve without the anti-inflammatory effect and the steroid side effects.\r\n\r\nRegenerative Orthopedics eliminate or reduce pain, numbness, and tingling, enabling the former sciatica pain sufferer to be able to sit, stand, and walk without any pain or annoying symptoms. The treatment effectively resolves the symptoms and results in pain-free living.\r\n\r\nHere at OrthoRegen<sup>®</sup>, we practice a comprehensive approach to Regenerative Orthopedics. And it\'s a great alternative to surgery and joint replacement. The treatment helps regenerate connective soft tissues and accelerates recovery.\r\n\r\nLumbar instability results in an array of symptoms. And they include sacroiliac pain, lower back pain, sciatic pain, and referred leg pain. All of these symptoms can be treated effectively with Regenerative Orthopedics.  So, if you are suffering from any of the symptoms listed above and would like to learn more, you can give us a call at (310)453-1234. We’d love to help you eliminate your sciatica symptoms.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Treat Sciatica Pain Non-Surgically','','inherit','closed','closed','','3540-revision-v1','','','2021-08-06 21:45:47','2021-08-06 21:45:47','',3540,'https://www.drfields.com/?p=4824',0,'revision','',0),(4826,9,'2021-08-22 23:28:03','2021-08-22 23:28:03','<h2>Prolotherapy Treatment Facts</h2>\nIn this article, we will discuss the answers to some of the questions you may have about Prolotherapy treatments. Plus, we will elaborate on some Prolotherapy facts.\n\n<img class=\"size-medium wp-image-4832 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/prolojpg-500x498.png\" alt=\"Prolojpg\" width=\"500\" height=\"498\" />\n\n<strong> <a href=\"#1\">1) What does Prolotherapy treat?</a></strong>\n<strong><a href=\"#2\">2) How many Prolotherapy treatments will I need?</a></strong>\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\n<strong><a href=\"#4\">4) Is Prolotherapy the same thing as cortisone shots?</a></strong>\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\n<h3><strong><a id=\"1\" name=\"1\"></a>1) What Does Prolotherapy Treat?</strong></h3>\n<em><strong>Prolotherapy is one of the regenerative techniques we use at our clinic. It is a non-surgical regenerative injection technique that introduces small amounts of solution to the site of painful and degenerated ligaments, their insertions (entheses), tendons, joints, and other joint structures. It usually takes place over several treatment sessions to promote the growth of normal cells and tissues.</strong></em>\n\nThe treatment stimulates the body\'s own natural healing processes in cases of chronic musculoskeletal pain and instability. It boosts the regenerative processes in the joint that will facilitate the repair and regrowth of connective tissue, ligaments, and tendons. And it will result in increased strength, repaired cartilage, and the stabilization of other joint structures to bring about the healing of the entire joint.\n\nThe healed ligaments and tendons produced after Prolotherapy appear much the same as normal tissues, except that they are thicker, stronger, and contain fibers of varying thickness, testifying to the new and ongoing creation of tissue.\n\n<strong>Learning points</strong>\n<ul>\n 	<li>Prolotherapy is an in-office injection treatment that research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical and non-effective conservative care treatments.</li>\n 	<li>In our opinion, based on extensive research and clinical results, Prolotherapy can be superior to many other treatments in relieving the problems of chronic joint and spine pain and, most importantly, in getting people back to a happy and active lifestyle.</li>\n</ul>\n<h3><em>What Joints Can Prolotherapy Treat?</em></h3>\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td style=\"width: 125px;\">\n<ul>\n 	<li>knee</li>\n 	<li>ankle</li>\n 	<li>low back</li>\n 	<li>neck</li>\n 	<li>shoulder</li>\n 	<li>hip</li>\n</ul>\n</td>\n<td style=\"width: 125px;\" valign=\"top\">\n<ul>\n 	<li>foot</li>\n 	<li>wrist</li>\n 	<li>hand</li>\n 	<li>elbow</li>\n 	<li>sacroiliac</li>\n 	<li>ribs</li>\n</ul>\n</td>\n</tr>\n</tbody>\n</table>\n<h3><em>What Type of Pain or Injuries Can Prolotherapy Treatments Help?</em></h3>\n<ul>\n 	<li>Athletic injuries, new and old</li>\n 	<li>Arthritis pain</li>\n 	<li>Sciatica and Pinched Nerves</li>\n 	<li>Herniated and Degenerative Discs</li>\n 	<li>Whiplash injuries</li>\n 	<li>Tension and Migraine Headaches</li>\n 	<li>TMJ syndrome</li>\n 	<li>Weak, loose, and unstable joints</li>\n 	<li>Fibromyalgia and Myofascial pain</li>\n 	<li>Muscle tightness, strain, and spasm</li>\n</ul>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\n<h3><strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How Many Prolotherapy Treatments Will I Need?</strong></h3>\nThe average person requires 6 treatment sessions given at 2 to 4-week intervals. But the number of treatments varies with each patient. Difficult (post-surgical, long-standing, etc) or other complicated cases may require 8, 10, or 12 treatments. Many patients feel the relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\n<h3><strong><a id=\"3\" name=\"3\"></a>3) Will I Need to Continue Care after Treatment?</strong></h3>\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, additional treatment may be needed.\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\n<h3><strong><a id=\"4\" name=\"4\"></a>4) Is Prolotherapy the Same Thing as Cortisone Shots</strong><strong>?</strong></h3>\nLong-term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection. But Prolotherapy consists of multiple injections to an area so as to induce healing in the biggest area possible.\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\n<h3><strong><a id=\"5\" name=\"5\"></a>5) Are Prolotherapy Treatments Safe?</strong></h3>\nProlotherapy is an extremely safe procedure. As with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. The risks with Prolotherapy than surgery, and even less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\n\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\n<h3><strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong></h3>\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\n\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine, or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive treatments without painkillers and do just fine. </strong>\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\n<h3><strong><a id=\"7\" name=\"7\"></a>7) Will My Insurance Cover Prolotherapy? What Are the Fees?</strong></h3>\nFor information regarding insurance and fees <a href=\"https://www.drfields.com/about/common-questions/\">Click Here</a> to visit our common questions section.\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\n<h3><strong><a id=\"8\" name=\"8\"></a>8) Is It Advisable to Drive or Work after Prolotherapy?</strong></h3>\nYou can drive after you receive Prolotherapy. However, you may feel a little stiff but will be able to continue with your activities of daily living.  Keep in mind that getting your neck done is different than, say, receiving Prolotherapy to your hand. Your neck will be stiff after treatment, which means it will be difficult to turn to the left and to the right. Having a driver would be a good idea.\n\nThe same goes with being capable of working.  Most of us are able to go back to work after the treatment. There are no work restrictions. However, depending on your type of work, you may want to rest afterward. Overall, it would be advisable to have a driver for your first treatment to see how you personally feel afterward and make the appropriate decision.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Prolotherapy Treatment Facts','','inherit','closed','closed','','395-autosave-v1','','','2021-08-22 23:28:03','2021-08-22 23:28:03','',395,'https://www.drfields.com/?p=4826',0,'revision','',0),(4827,9,'2021-08-22 20:23:14','2021-08-22 20:23:14','&nbsp;\r\n\r\n<strong> <a href=\"#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n\r\n<strong><a id=\"1\" name=\"1\"></a>1) What does it treat</strong>\r\n\r\n<strong>Prolotherapy is one of the regenerative techniques we use at our clinic. It is a non-surgical regenerative injection technique that introduces small amounts of solution to the site of painful and degenerated tendon insertions (entheses), joints, ligaments, and other joint structures. It usually takes place over several treatment sessions to promote growth of normal cells and tissues.</strong>\r\n\r\nProlotherapy in chronic musculoskeletal pain and instability is the stimulation of body’s natural healing and regenerative processes in the joint that will facilitate the repair and regrowth of connective tissue, ligaments, tendons for tensile strength, and cartilage and other joint stabilizing structures such as labral tissue.\r\n\r\nProlotherapy works by the same process that the human body naturally uses to stimulate the body’s healing system, a process called inflammation. The technique involves the injection of a proliferant (a mild irritant solution) that causes an inflammatory response which “turns on” the healing process. The growth of new ligament and tendon tissue is then stimulated. The ligaments and tendons produced after Prolotherapy appear much the same as normal tissues, except that they are thicker, stronger, and contain fibers of varying thickness, testifying to the new and ongoing creation of tissue. This is documented in the research below.\r\n\r\n<strong>Learning points</strong>\r\n<ul>\r\n 	<li>Prolotherapy is an in-office injection treatment that research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical and non-effective conservative care treatments.</li>\r\n 	<li>In our opinion, based on extensive research and clinical results, Prolotherapy can be superior to many other treatments in relieving the problems of chronic joint and spine pain and, most importantly, in getting people back to a happy and active lifestyle.</li>\r\n</ul>\r\nJoint Pain and Injury:\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 125px;\">\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td style=\"width: 125px;\" valign=\"top\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacro-iliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nOther Areas Where Prolotherapy Can Help:\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How many treatments will I need?</strong>\r\n\r\nThe average person requires 6 treatment sessions given at 2 to 4 week intervals, but the number of treatments varies with each patient. Difficult (post surgical, long standing, etc) or other complicated cases may require 8, 10 or 12 treatments. Many patients feel relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"3\" name=\"3\"></a>3) Will I need to continue care after treatment?</strong>\r\n\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, an additional treatment maybe needed\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"4\" name=\"4\"></a>4) Is this the same thing as cortisone shots</strong><strong>?</strong>\r\n\r\nLong term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection; Prolotherapy is multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"5\" name=\"5\"></a>5) Is Prolotherapy safe?</strong>\r\n\r\nAs with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. On the other hand, Prolotherapy is an extremely safe procedure. The risks are far less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong>\r\n\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive the treatments without pain killers and do just fine. </strong>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"7\" name=\"7\"></a>7) Will my insurance cover this and what are the fees?</strong>\r\n\r\nFor information regarding insurence and fees <a href=\"https://www.drfields.com/about/common-questions/\">Click Here</a> to visit out common questions section.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"8\" name=\"8\"></a>8) Is it advisable to drive or work after Prolotherapy?</strong>\r\n\r\nYou can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Prolotherapy FAQ','','inherit','closed','closed','','395-revision-v1','','','2021-08-22 20:23:14','2021-08-22 20:23:14','',395,'https://www.drfields.com/?p=4827',0,'revision','',0),(4828,9,'2021-08-22 23:05:43','2021-08-22 23:05:43','<h2>Prolotherapy Treatment Facts</h2>\r\nIn this article, we will discuss the answers to some of the questions you may have about Prolotherapy treatments. Plus, we will elaborate on some Prolotherapy facts.\r\n\r\n<strong> <a href=\"#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n<h3><strong><a id=\"1\" name=\"1\"></a>1) What Does Prolotherapy Treat</strong></h3>\r\n<strong>Prolotherapy is one of the regenerative techniques we use at our clinic. It is a non-surgical regenerative injection technique that introduces small amounts of solution to the site of painful and degenerated ligaments, their insertions (entheses), tendons, joints, and other joint structures. It usually takes place over several treatment sessions to promote growth of normal cells and tissues.</strong>\r\n\r\nThe treatment stimulates the body\'s own natural healing processes in cases of chronic musculoskeletal pain and instability. It boosts the regenerative processes in the joint that will facilitate the repair and regrowth of connective tissue, ligaments, and tendons. And it will result in increased strength, repaired cartilage, and the stabilization of other joint structures to bring about the healing of the entire joint.\r\n\r\nThe healed ligaments and tendons produced after Prolotherapy appear much the same as normal tissues, except that they are thicker, stronger, and contain fibers of varying thickness, testifying to the new and ongoing creation of tissue.\r\n\r\n<strong>Learning points</strong>\r\n<ul>\r\n 	<li>Prolotherapy is an in-office injection treatment that research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical and non-effective conservative care treatments.</li>\r\n 	<li>In our opinion, based on extensive research and clinical results, Prolotherapy can be superior to many other treatments in relieving the problems of chronic joint and spine pain and, most importantly, in getting people back to a happy and active lifestyle.</li>\r\n</ul>\r\n<h3><em>What Joints Can Prolotherapy Treat?</em></h3>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 125px;\">\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td style=\"width: 125px;\" valign=\"top\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacroiliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><em>What Type of Pain or Injuries Can Prolotherapy Treatments Help?</em></h3>\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How Many Prolotherapy Treatments Will I Need?</strong></h3>\r\nThe average person requires 6 treatment sessions given at 2 to 4 week intervals. But the number of treatments varies with each patient. Difficult (post surgical, long standing, etc) or other complicated cases may require 8, 10 or 12 treatments. Many patients feel relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"3\" name=\"3\"></a>3) Will I Need to Continue Care after Treatment?</strong></h3>\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, an additional treatment maybe needed.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"4\" name=\"4\"></a>4) Is Prolotherapy the Same Thing as Cortisone Shots</strong><strong>?</strong></h3>\r\nLong term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection. But Prolotherapy consists of multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"5\" name=\"5\"></a>5) Is Prolotherapy Safe?</strong>\r\n\r\nAs with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. On the other hand, Prolotherapy is an extremely safe procedure. The risks are far less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong>\r\n\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive the treatments without pain killers and do just fine. </strong>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"7\" name=\"7\"></a>7) Will my insurance cover this and what are the fees?</strong>\r\n\r\nFor information regarding insurence and fees <a href=\"https://www.drfields.com/about/common-questions/\">Click Here</a> to visit out common questions section.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"8\" name=\"8\"></a>8) Is it advisable to drive or work after Prolotherapy?</strong>\r\n\r\nYou can drive after you receive Prolotherapy. You may feel a little stiff but will be able to continue with your activities of daily living. We do suggest walking for about five minutes before driving. You will also be capable of working. There are no work restrictions. You may choose not to work if your job involves a lot of standing or lifting.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Prolotherapy Treatment Facts','','inherit','closed','closed','','395-revision-v1','','','2021-08-22 23:05:43','2021-08-22 23:05:43','',395,'https://www.drfields.com/?p=4828',0,'revision','',0),(4829,9,'2021-08-22 23:16:26','2021-08-22 23:16:26','<h2>Prolotherapy Treatment Facts</h2>\r\nIn this article, we will discuss the answers to some of the questions you may have about Prolotherapy treatments. Plus, we will elaborate on some Prolotherapy facts.\r\n\r\n<strong> <a href=\"#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n<h3><strong><a id=\"1\" name=\"1\"></a>1) What Does Prolotherapy Treat</strong></h3>\r\n<strong>Prolotherapy is one of the regenerative techniques we use at our clinic. It is a non-surgical regenerative injection technique that introduces small amounts of solution to the site of painful and degenerated ligaments, their insertions (entheses), tendons, joints, and other joint structures. It usually takes place over several treatment sessions to promote growth of normal cells and tissues.</strong>\r\n\r\nThe treatment stimulates the body\'s own natural healing processes in cases of chronic musculoskeletal pain and instability. It boosts the regenerative processes in the joint that will facilitate the repair and regrowth of connective tissue, ligaments, and tendons. And it will result in increased strength, repaired cartilage, and the stabilization of other joint structures to bring about the healing of the entire joint.\r\n\r\nThe healed ligaments and tendons produced after Prolotherapy appear much the same as normal tissues, except that they are thicker, stronger, and contain fibers of varying thickness, testifying to the new and ongoing creation of tissue.\r\n\r\n<strong>Learning points</strong>\r\n<ul>\r\n 	<li>Prolotherapy is an in-office injection treatment that research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical and non-effective conservative care treatments.</li>\r\n 	<li>In our opinion, based on extensive research and clinical results, Prolotherapy can be superior to many other treatments in relieving the problems of chronic joint and spine pain and, most importantly, in getting people back to a happy and active lifestyle.</li>\r\n</ul>\r\n<h3><em>What Joints Can Prolotherapy Treat?</em></h3>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 125px;\">\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td style=\"width: 125px;\" valign=\"top\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacroiliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><em>What Type of Pain or Injuries Can Prolotherapy Treatments Help?</em></h3>\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How Many Prolotherapy Treatments Will I Need?</strong></h3>\r\nThe average person requires 6 treatment sessions given at 2 to 4 week intervals. But the number of treatments varies with each patient. Difficult (post surgical, long standing, etc) or other complicated cases may require 8, 10 or 12 treatments. Many patients feel relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"3\" name=\"3\"></a>3) Will I Need to Continue Care after Treatment?</strong></h3>\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, an additional treatment may be needed.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"4\" name=\"4\"></a>4) Is Prolotherapy the Same Thing as Cortisone Shots</strong><strong>?</strong></h3>\r\nLong-term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection. But Prolotherapy consists of multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"5\" name=\"5\"></a>5) Is Prolotherapy Safe?</strong>\r\n\r\nProlotherapy is an extremely safe procedure. As with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. The risks with Prolotherapy than surgery, and even less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong>\r\n\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine, or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive treatments without painkillers and do just fine. </strong>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"7\" name=\"7\"></a>7) Will My Insurance Cover Prolotherapy? What Are the Fees?</strong>\r\n\r\nFor information regarding insurance and fees <a href=\"https://www.drfields.com/about/common-questions/\">Click Here</a> to visit our common questions section.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<strong><a id=\"8\" name=\"8\"></a>8) Is It Advisable to Drive or Work after Prolotherapy?</strong>\r\n\r\nYou can drive after you receive Prolotherapy. However, you may feel a little stiff but will be able to continue with your activities of daily living.  Keep in mind that getting your neck done is different than, say, receiving Prolotherapy to your hand. Your neck will be stiff after treatment, which means it will be difficult to turn to the left and to the right. Having a driver would be a good idea.\r\n\r\nThe same goes with being capable of working.  Most of us are able to go back to work after the treatment. There are no work restrictions. However, depending on your type of work, you may want to rest afterward. Overall, it would be advisable to have a driver for your first treatment to see how you personally feel afterward and make the appropriate decision.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Prolotherapy Treatment Facts','','inherit','closed','closed','','395-revision-v1','','','2021-08-22 23:16:26','2021-08-22 23:16:26','',395,'https://www.drfields.com/?p=4829',0,'revision','',0),(4830,9,'2021-08-22 23:20:25','2021-08-22 23:20:25','<h2>Prolotherapy Treatment Facts</h2>\r\nIn this article, we will discuss the answers to some of the questions you may have about Prolotherapy treatments. Plus, we will elaborate on some Prolotherapy facts.\r\n\r\n<strong> <a href=\"#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n<h3><strong><a id=\"1\" name=\"1\"></a>1) What Does Prolotherapy Treat</strong></h3>\r\n<strong>Prolotherapy is one of the regenerative techniques we use at our clinic. It is a non-surgical regenerative injection technique that introduces small amounts of solution to the site of painful and degenerated ligaments, their insertions (entheses), tendons, joints, and other joint structures. It usually takes place over several treatment sessions to promote growth of normal cells and tissues.</strong>\r\n\r\nThe treatment stimulates the body\'s own natural healing processes in cases of chronic musculoskeletal pain and instability. It boosts the regenerative processes in the joint that will facilitate the repair and regrowth of connective tissue, ligaments, and tendons. And it will result in increased strength, repaired cartilage, and the stabilization of other joint structures to bring about the healing of the entire joint.\r\n\r\nThe healed ligaments and tendons produced after Prolotherapy appear much the same as normal tissues, except that they are thicker, stronger, and contain fibers of varying thickness, testifying to the new and ongoing creation of tissue.\r\n\r\n<strong>Learning points</strong>\r\n<ul>\r\n 	<li>Prolotherapy is an in-office injection treatment that research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical and non-effective conservative care treatments.</li>\r\n 	<li>In our opinion, based on extensive research and clinical results, Prolotherapy can be superior to many other treatments in relieving the problems of chronic joint and spine pain and, most importantly, in getting people back to a happy and active lifestyle.</li>\r\n</ul>\r\n<h3><em>What Joints Can Prolotherapy Treat?</em></h3>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 125px;\">\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td style=\"width: 125px;\" valign=\"top\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacroiliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><em>What Type of Pain or Injuries Can Prolotherapy Treatments Help?</em></h3>\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How Many Prolotherapy Treatments Will I Need?</strong></h3>\r\nThe average person requires 6 treatment sessions given at 2 to 4 week intervals. But the number of treatments varies with each patient. Difficult (post surgical, long standing, etc) or other complicated cases may require 8, 10 or 12 treatments. Many patients feel relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"3\" name=\"3\"></a>3) Will I Need to Continue Care after Treatment?</strong></h3>\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, additional treatment may be needed.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"4\" name=\"4\"></a>4) Is Prolotherapy the Same Thing as Cortisone Shots</strong><strong>?</strong></h3>\r\nLong-term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection. But Prolotherapy consists of multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"5\" name=\"5\"></a>5) Is Prolotherapy Safe?</strong></h3>\r\nProlotherapy is an extremely safe procedure. As with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. The risks with Prolotherapy than surgery, and even less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong></h3>\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine, or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive treatments without painkillers and do just fine. </strong>\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"7\" name=\"7\"></a>7) Will My Insurance Cover Prolotherapy? What Are the Fees?</strong></h3>\r\nFor information regarding insurance and fees <a href=\"https://www.drfields.com/about/common-questions/\">Click Here</a> to visit our common questions section.\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"8\" name=\"8\"></a>8) Is It Advisable to Drive or Work after Prolotherapy?</strong></h3>\r\nYou can drive after you receive Prolotherapy. However, you may feel a little stiff but will be able to continue with your activities of daily living.  Keep in mind that getting your neck done is different than, say, receiving Prolotherapy to your hand. Your neck will be stiff after treatment, which means it will be difficult to turn to the left and to the right. Having a driver would be a good idea.\r\n\r\nThe same goes with being capable of working.  Most of us are able to go back to work after the treatment. There are no work restrictions. However, depending on your type of work, you may want to rest afterward. Overall, it would be advisable to have a driver for your first treatment to see how you personally feel afterward and make the appropriate decision.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Prolotherapy Treatment Facts','','inherit','closed','closed','','395-revision-v1','','','2021-08-22 23:20:25','2021-08-22 23:20:25','',395,'https://www.drfields.com/?p=4830',0,'revision','',0),(4831,9,'2021-08-22 23:22:16','2021-08-22 23:22:16','<h2>Prolotherapy Treatment Facts</h2>\r\nIn this article, we will discuss the answers to some of the questions you may have about Prolotherapy treatments. Plus, we will elaborate on some Prolotherapy facts.\r\n\r\n<strong> <a href=\"#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n<h3><strong><a id=\"1\" name=\"1\"></a>1) What Does Prolotherapy Treat?</strong></h3>\r\n<strong>Prolotherapy is one of the regenerative techniques we use at our clinic. It is a non-surgical regenerative injection technique that introduces small amounts of solution to the site of painful and degenerated ligaments, their insertions (entheses), tendons, joints, and other joint structures. It usually takes place over several treatment sessions to promote growth of normal cells and tissues.</strong>\r\n\r\nThe treatment stimulates the body\'s own natural healing processes in cases of chronic musculoskeletal pain and instability. It boosts the regenerative processes in the joint that will facilitate the repair and regrowth of connective tissue, ligaments, and tendons. And it will result in increased strength, repaired cartilage, and the stabilization of other joint structures to bring about the healing of the entire joint.\r\n\r\nThe healed ligaments and tendons produced after Prolotherapy appear much the same as normal tissues, except that they are thicker, stronger, and contain fibers of varying thickness, testifying to the new and ongoing creation of tissue.\r\n\r\n<strong>Learning points</strong>\r\n<ul>\r\n 	<li>Prolotherapy is an in-office injection treatment that research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical and non-effective conservative care treatments.</li>\r\n 	<li>In our opinion, based on extensive research and clinical results, Prolotherapy can be superior to many other treatments in relieving the problems of chronic joint and spine pain and, most importantly, in getting people back to a happy and active lifestyle.</li>\r\n</ul>\r\n<h3><em>What Joints Can Prolotherapy Treat?</em></h3>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 125px;\">\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td style=\"width: 125px;\" valign=\"top\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacroiliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><em>What Type of Pain or Injuries Can Prolotherapy Treatments Help?</em></h3>\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose, and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain, and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How Many Prolotherapy Treatments Will I Need?</strong></h3>\r\nThe average person requires 6 treatment sessions given at 2 to 4-week intervals. But the number of treatments varies with each patient. Difficult (post-surgical, long-standing, etc) or other complicated cases may require 8, 10, or 12 treatments. Many patients feel the relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"3\" name=\"3\"></a>3) Will I Need to Continue Care after Treatment?</strong></h3>\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, additional treatment may be needed.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"4\" name=\"4\"></a>4) Is Prolotherapy the Same Thing as Cortisone Shots</strong><strong>?</strong></h3>\r\nLong-term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection. But Prolotherapy consists of multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"5\" name=\"5\"></a>5) Arw Prolotherapy Treatments Safe?</strong></h3>\r\nProlotherapy is an extremely safe procedure. As with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. The risks with Prolotherapy than surgery, and even less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong></h3>\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine, or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive treatments without painkillers and do just fine. </strong>\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"7\" name=\"7\"></a>7) Will My Insurance Cover Prolotherapy? What Are the Fees?</strong></h3>\r\nFor information regarding insurance and fees <a href=\"https://www.drfields.com/about/common-questions/\">Click Here</a> to visit our common questions section.\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"8\" name=\"8\"></a>8) Is It Advisable to Drive or Work after Prolotherapy?</strong></h3>\r\nYou can drive after you receive Prolotherapy. However, you may feel a little stiff but will be able to continue with your activities of daily living.  Keep in mind that getting your neck done is different than, say, receiving Prolotherapy to your hand. Your neck will be stiff after treatment, which means it will be difficult to turn to the left and to the right. Having a driver would be a good idea.\r\n\r\nThe same goes with being capable of working.  Most of us are able to go back to work after the treatment. There are no work restrictions. However, depending on your type of work, you may want to rest afterward. Overall, it would be advisable to have a driver for your first treatment to see how you personally feel afterward and make the appropriate decision.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Prolotherapy Treatment Facts','','inherit','closed','closed','','395-revision-v1','','','2021-08-22 23:22:16','2021-08-22 23:22:16','',395,'https://www.drfields.com/?p=4831',0,'revision','',0),(4832,9,'2021-08-22 23:23:46','2021-08-22 23:23:46','Prolotherapy Treatments','Prolojpg','Prolotherapy','inherit','open','closed','','prolojpg','','','2021-08-22 23:24:16','2021-08-22 23:24:16','',395,'https://www.drfields.com/wp-content/uploads/2019/06/prolojpg.png',0,'attachment','image/png',0),(4833,9,'2021-08-22 23:25:05','2021-08-22 23:25:05','<h2>Prolotherapy Treatment Facts</h2>\r\nIn this article, we will discuss the answers to some of the questions you may have about Prolotherapy treatments. Plus, we will elaborate on some Prolotherapy facts.\r\n\r\n<img class=\"size-medium wp-image-4832\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/prolojpg-500x498.png\" alt=\"Prolojpg\" width=\"500\" height=\"498\" />\r\n\r\n<strong> <a href=\"#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n<h3><strong><a id=\"1\" name=\"1\"></a>1) What Does Prolotherapy Treat?</strong></h3>\r\n<em><strong>Prolotherapy is one of the regenerative techniques we use at our clinic. It is a non-surgical regenerative injection technique that introduces small amounts of solution to the site of painful and degenerated ligaments, their insertions (entheses), tendons, joints, and other joint structures. It usually takes place over several treatment sessions to promote the growth of normal cells and tissues.</strong></em>\r\n\r\nThe treatment stimulates the body\'s own natural healing processes in cases of chronic musculoskeletal pain and instability. It boosts the regenerative processes in the joint that will facilitate the repair and regrowth of connective tissue, ligaments, and tendons. And it will result in increased strength, repaired cartilage, and the stabilization of other joint structures to bring about the healing of the entire joint.\r\n\r\nThe healed ligaments and tendons produced after Prolotherapy appear much the same as normal tissues, except that they are thicker, stronger, and contain fibers of varying thickness, testifying to the new and ongoing creation of tissue.\r\n\r\n<strong>Learning points</strong>\r\n<ul>\r\n 	<li>Prolotherapy is an in-office injection treatment that research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical and non-effective conservative care treatments.</li>\r\n 	<li>In our opinion, based on extensive research and clinical results, Prolotherapy can be superior to many other treatments in relieving the problems of chronic joint and spine pain and, most importantly, in getting people back to a happy and active lifestyle.</li>\r\n</ul>\r\n<h3><em>What Joints Can Prolotherapy Treat?</em></h3>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 125px;\">\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td style=\"width: 125px;\" valign=\"top\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacroiliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><em>What Type of Pain or Injuries Can Prolotherapy Treatments Help?</em></h3>\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose, and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain, and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How Many Prolotherapy Treatments Will I Need?</strong></h3>\r\nThe average person requires 6 treatment sessions given at 2 to 4-week intervals. But the number of treatments varies with each patient. Difficult (post-surgical, long-standing, etc) or other complicated cases may require 8, 10, or 12 treatments. Many patients feel the relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"3\" name=\"3\"></a>3) Will I Need to Continue Care after Treatment?</strong></h3>\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, additional treatment may be needed.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"4\" name=\"4\"></a>4) Is Prolotherapy the Same Thing as Cortisone Shots</strong><strong>?</strong></h3>\r\nLong-term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection. But Prolotherapy consists of multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"5\" name=\"5\"></a>5) Arw Prolotherapy Treatments Safe?</strong></h3>\r\nProlotherapy is an extremely safe procedure. As with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. The risks with Prolotherapy than surgery, and even less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong></h3>\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine, or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive treatments without painkillers and do just fine. </strong>\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"7\" name=\"7\"></a>7) Will My Insurance Cover Prolotherapy? What Are the Fees?</strong></h3>\r\nFor information regarding insurance and fees <a href=\"https://www.drfields.com/about/common-questions/\">Click Here</a> to visit our common questions section.\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"8\" name=\"8\"></a>8) Is It Advisable to Drive or Work after Prolotherapy?</strong></h3>\r\nYou can drive after you receive Prolotherapy. However, you may feel a little stiff but will be able to continue with your activities of daily living.  Keep in mind that getting your neck done is different than, say, receiving Prolotherapy to your hand. Your neck will be stiff after treatment, which means it will be difficult to turn to the left and to the right. Having a driver would be a good idea.\r\n\r\nThe same goes with being capable of working.  Most of us are able to go back to work after the treatment. There are no work restrictions. However, depending on your type of work, you may want to rest afterward. Overall, it would be advisable to have a driver for your first treatment to see how you personally feel afterward and make the appropriate decision.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Prolotherapy Treatment Facts','','inherit','closed','closed','','395-revision-v1','','','2021-08-22 23:25:05','2021-08-22 23:25:05','',395,'https://www.drfields.com/?p=4833',0,'revision','',0),(4834,9,'2021-08-22 23:26:01','2021-08-22 23:26:01','<h2>Prolotherapy Treatment Facts</h2>\r\nIn this article, we will discuss the answers to some of the questions you may have about Prolotherapy treatments. Plus, we will elaborate on some Prolotherapy facts.\r\n\r\n<img class=\"size-medium wp-image-4832 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/prolojpg-500x498.png\" alt=\"Prolojpg\" width=\"500\" height=\"498\" />\r\n\r\n<strong> <a href=\"#1\">1) What does it treat</a></strong>\r\n<strong><a href=\"#2\">2) How many treatments will I need?</a></strong>\r\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"#4\">4) Is this the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"#5\">5) Is Prolotherapy safe?</a></strong>\r\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"#7\">7) Will my insurance cover this and what are the fees?</a></strong>\r\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n<h3><strong><a id=\"1\" name=\"1\"></a>1) What Does Prolotherapy Treat?</strong></h3>\r\n<em><strong>Prolotherapy is one of the regenerative techniques we use at our clinic. It is a non-surgical regenerative injection technique that introduces small amounts of solution to the site of painful and degenerated ligaments, their insertions (entheses), tendons, joints, and other joint structures. It usually takes place over several treatment sessions to promote the growth of normal cells and tissues.</strong></em>\r\n\r\nThe treatment stimulates the body\'s own natural healing processes in cases of chronic musculoskeletal pain and instability. It boosts the regenerative processes in the joint that will facilitate the repair and regrowth of connective tissue, ligaments, and tendons. And it will result in increased strength, repaired cartilage, and the stabilization of other joint structures to bring about the healing of the entire joint.\r\n\r\nThe healed ligaments and tendons produced after Prolotherapy appear much the same as normal tissues, except that they are thicker, stronger, and contain fibers of varying thickness, testifying to the new and ongoing creation of tissue.\r\n\r\n<strong>Learning points</strong>\r\n<ul>\r\n 	<li>Prolotherapy is an in-office injection treatment that research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical and non-effective conservative care treatments.</li>\r\n 	<li>In our opinion, based on extensive research and clinical results, Prolotherapy can be superior to many other treatments in relieving the problems of chronic joint and spine pain and, most importantly, in getting people back to a happy and active lifestyle.</li>\r\n</ul>\r\n<h3><em>What Joints Can Prolotherapy Treat?</em></h3>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 125px;\">\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td style=\"width: 125px;\" valign=\"top\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacroiliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><em>What Type of Pain or Injuries Can Prolotherapy Treatments Help?</em></h3>\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose, and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain, and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How Many Prolotherapy Treatments Will I Need?</strong></h3>\r\nThe average person requires 6 treatment sessions given at 2 to 4-week intervals. But the number of treatments varies with each patient. Difficult (post-surgical, long-standing, etc) or other complicated cases may require 8, 10, or 12 treatments. Many patients feel the relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"3\" name=\"3\"></a>3) Will I Need to Continue Care after Treatment?</strong></h3>\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, additional treatment may be needed.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"4\" name=\"4\"></a>4) Is Prolotherapy the Same Thing as Cortisone Shots</strong><strong>?</strong></h3>\r\nLong-term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection. But Prolotherapy consists of multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"5\" name=\"5\"></a>5) Arw Prolotherapy Treatments Safe?</strong></h3>\r\nProlotherapy is an extremely safe procedure. As with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. The risks with Prolotherapy than surgery, and even less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong></h3>\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine, or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive treatments without painkillers and do just fine. </strong>\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"7\" name=\"7\"></a>7) Will My Insurance Cover Prolotherapy? What Are the Fees?</strong></h3>\r\nFor information regarding insurance and fees <a href=\"https://www.drfields.com/about/common-questions/\">Click Here</a> to visit our common questions section.\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"8\" name=\"8\"></a>8) Is It Advisable to Drive or Work after Prolotherapy?</strong></h3>\r\nYou can drive after you receive Prolotherapy. However, you may feel a little stiff but will be able to continue with your activities of daily living.  Keep in mind that getting your neck done is different than, say, receiving Prolotherapy to your hand. Your neck will be stiff after treatment, which means it will be difficult to turn to the left and to the right. Having a driver would be a good idea.\r\n\r\nThe same goes with being capable of working.  Most of us are able to go back to work after the treatment. There are no work restrictions. However, depending on your type of work, you may want to rest afterward. Overall, it would be advisable to have a driver for your first treatment to see how you personally feel afterward and make the appropriate decision.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Prolotherapy Treatment Facts','','inherit','closed','closed','','395-revision-v1','','','2021-08-22 23:26:01','2021-08-22 23:26:01','',395,'https://www.drfields.com/?p=4834',0,'revision','',0),(4835,9,'2021-08-22 23:29:03','2021-08-22 23:29:03','<h2>Prolotherapy Treatment Facts</h2>\r\nIn this article, we will discuss the answers to some of the questions you may have about Prolotherapy treatments. Plus, we will elaborate on some Prolotherapy facts.\r\n\r\n<img class=\"size-medium wp-image-4832 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/prolojpg-500x498.png\" alt=\"Prolojpg\" width=\"500\" height=\"498\" />\r\n\r\n<strong> <a href=\"#1\">1) What does Prolotherapy treat?</a></strong>\r\n<strong><a href=\"#2\">2) How many Prolotherapy treatments will I need?</a></strong>\r\n<strong><a href=\"#3\">3) Will I need to continue care after treatment?</a></strong>\r\n<strong><a href=\"#4\">4) Is Prolotherapy the same thing as cortisone shots?</a></strong>\r\n<strong><a href=\"#5\">5) Are Prolotherapy treatments safe?</a></strong>\r\n<strong><a href=\"#6\">6) Do the Treatments Hurt?</a></strong>\r\n<strong><a href=\"#7\">7) Will my insurance cover Prolotherapy treatments? What are the fees?</a></strong>\r\n<strong><a href=\"#8\">8) Is it advisable to drive or work after Prolotherapy?</a></strong>\r\n<h3><strong><a id=\"1\" name=\"1\"></a>1) What Does Prolotherapy Treat?</strong></h3>\r\n<em><strong>Prolotherapy is one of the regenerative techniques we use at our clinic. It is a non-surgical regenerative injection technique that introduces small amounts of solution to the site of painful and degenerated ligaments, their insertions (entheses), tendons, joints, and other joint structures. It usually takes place over several treatment sessions to promote the growth of normal cells and tissues.</strong></em>\r\n\r\nThe treatment stimulates the body\'s own natural healing processes in cases of chronic musculoskeletal pain and instability. It boosts the regenerative processes in the joint that will facilitate the repair and regrowth of connective tissue, ligaments, and tendons. And it will result in increased strength, repaired cartilage, and the stabilization of other joint structures to bring about the healing of the entire joint.\r\n\r\nThe healed ligaments and tendons produced after Prolotherapy appear much the same as normal tissues, except that they are thicker, stronger, and contain fibers of varying thickness, testifying to the new and ongoing creation of tissue.\r\n\r\n<strong>Learning points</strong>\r\n<ul>\r\n 	<li>Prolotherapy is an in-office injection treatment that research and medical studies have shown to be an effective, trustworthy, reliable alternative to surgical and non-effective conservative care treatments.</li>\r\n 	<li>In our opinion, based on extensive research and clinical results, Prolotherapy can be superior to many other treatments in relieving the problems of chronic joint and spine pain and, most importantly, in getting people back to a happy and active lifestyle.</li>\r\n</ul>\r\n<h3><em>What Joints Can Prolotherapy Treat?</em></h3>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 125px;\">\r\n<ul>\r\n 	<li>knee</li>\r\n 	<li>ankle</li>\r\n 	<li>low back</li>\r\n 	<li>neck</li>\r\n 	<li>shoulder</li>\r\n 	<li>hip</li>\r\n</ul>\r\n</td>\r\n<td style=\"width: 125px;\" valign=\"top\">\r\n<ul>\r\n 	<li>foot</li>\r\n 	<li>wrist</li>\r\n 	<li>hand</li>\r\n 	<li>elbow</li>\r\n 	<li>sacroiliac</li>\r\n 	<li>ribs</li>\r\n</ul>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><em>What Type of Pain or Injuries Can Prolotherapy Treatments Help?</em></h3>\r\n<ul>\r\n 	<li>Athletic injuries, new and old</li>\r\n 	<li>Arthritis pain</li>\r\n 	<li>Sciatica and Pinched Nerves</li>\r\n 	<li>Herniated and Degenerative Discs</li>\r\n 	<li>Whiplash injuries</li>\r\n 	<li>Tension and Migraine Headaches</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Weak, loose, and unstable joints</li>\r\n 	<li>Fibromyalgia and Myofascial pain</li>\r\n 	<li>Muscle tightness, strain, and spasm</li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"2\" name=\"2\"></a>2)</strong> <strong>How Many Prolotherapy Treatments Will I Need?</strong></h3>\r\nThe average person requires 6 treatment sessions given at 2 to 4-week intervals. But the number of treatments varies with each patient. Difficult (post-surgical, long-standing, etc) or other complicated cases may require 8, 10, or 12 treatments. Many patients feel the relief of pain after the 3rd or 4th treatment. Occasionally some of our patients have reported some relief of pain after only two sessions.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"3\" name=\"3\"></a>3) Will I Need to Continue Care after Treatment?</strong></h3>\r\nOnce treated, the problem should be fixed. Healing will continue to take place for at least one year following treatment. Of course, if there is an injury or insult to the area treated, additional treatment may be needed.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"4\" name=\"4\"></a>4) Is Prolotherapy the Same Thing as Cortisone Shots</strong><strong>?</strong></h3>\r\nLong-term studies have shown that cortisone injections actually weaken tissue. On the other hand, Prolotherapy uses proliferants, which cause the ligaments and tendons to be strengthened. Cortisone is one injection. But Prolotherapy consists of multiple injections to an area so as to induce healing in the biggest area possible.\r\n<div style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></div>\r\n<h3><strong><a id=\"5\" name=\"5\"></a>5) Are Prolotherapy Treatments Safe?</strong></h3>\r\nProlotherapy is an extremely safe procedure. As with any procedure, there are risks and side effects which will vary depending on the area being treated. The doctor will discuss these possibilities fully with patients during the pre-treatment consultation. The risks with Prolotherapy than surgery, and even less than taking aspirin or Motrin for a lifetime to temporarily alleviate chronic pain.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"6\" name=\"6\"></a>6) Do the Treatments Hurt?</strong></h3>\r\nAs many of my patients have said, \"the pain from the injections was nothing compared to the pain that I was experiencing prior to Prolotherapy\". Most say after the Prolotherapy treatment, \"It wasn\'t that bad.\" There are a few people, however, who may need help in receiving Prolotherapy.\r\n\r\nFor those patients that find Prolotherapy uncomfortable, Dr. Fields can also apply a cold spray (ethyl Chloride) or a gel of Lidocaine to numb the skin prior to the treatment. If additional help is needed, a prescription can be given for Ultram, Tylenol with codeine, or Vicodin. This can be taken one hour prior to your Prolotherapy treatment. Additionally, we have calming music to listen to, stress balls, and hot packs to help ease one\'s mind during the treatment. <strong>Ninety-nine percent of our patients receive treatments without painkillers and do just fine. </strong>\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"7\" name=\"7\"></a>7) Will My Insurance Cover Prolotherapy? What Are the Fees?</strong></h3>\r\nFor information regarding insurance and fees <a href=\"https://www.drfields.com/about/common-questions/\">Click Here</a> to visit our common questions section.\r\n<h3 style=\"text-align: right;\"><a href=\"#\"><strong>Top</strong></a></h3>\r\n<h3><strong><a id=\"8\" name=\"8\"></a>8) Is It Advisable to Drive or Work after Prolotherapy?</strong></h3>\r\nYou can drive after you receive Prolotherapy. However, you may feel a little stiff but will be able to continue with your activities of daily living.  Keep in mind that getting your neck done is different than, say, receiving Prolotherapy to your hand. Your neck will be stiff after treatment, which means it will be difficult to turn to the left and to the right. Having a driver would be a good idea.\r\n\r\nThe same goes with being capable of working.  Most of us are able to go back to work after the treatment. There are no work restrictions. However, depending on your type of work, you may want to rest afterward. Overall, it would be advisable to have a driver for your first treatment to see how you personally feel afterward and make the appropriate decision.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Prolotherapy Treatment Facts','','inherit','closed','closed','','395-revision-v1','','','2021-08-22 23:29:03','2021-08-22 23:29:03','',395,'https://www.drfields.com/?p=4835',0,'revision','',0),(4836,9,'2021-08-22 23:55:33','2021-08-22 23:55:33','[caption id=\"attachment_4078\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4078\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Amniotic-400x500.jpg\" alt=\"Amniotic Stem Cells\" width=\"400\" height=\"500\" /> <em>     There are no Stem Cells in Amniotic \"Stem Cell\" Therapy</em>[/caption]\r\n\r\nSeminars about amniotic “stem cell” therapy are popping up everywhere. But it is important to know what advertisers are really talking about. At OrthoRegen<sup>®</sup>, we do not use amniotic “stem cell” therapy in our stem cell treatments.\r\n\r\nWe want you to be educated about amniotic therapy. Especially since there is a lot of misinformation surrounding amniotic “stem cell” therapy and umbilical cord blood “stem cell” therapy. <strong>We want to inform you on what these treatments are and also what they are not.</strong>\r\n<h4>Why Do We Put the Words \"Stem Cells\" in Quotations?</h4>\r\nThere is a reason we keep putting “stem cells” in quotations when we talking about amniotic “stem cells.” <em>That’s because there are <strong>NO</strong> actual stem cells in amniotic “stem cell” therapy.</em> That’s right! Both amniotic “stem cell” therapy and umbilical cord blood “stem cell” therapy have NO stem cells in the product.\r\n\r\nIn a very recent study of five commercial umbilical cord allograft products claiming to contain viable, undescribed \"stem cells,\" a group of researchers concluded, \"stem cells were not found within any of the commercial UC allograft products analyzed, and clinicians should remain wary of marketing claims stating otherwise.\"1 And patients seeking these products should be wary as well!\r\n\r\nThink about this scenario for a moment. There isn’t someone waiting for the mother to give birth, and someone who is collecting the afterbirth, and someone else delivering it to your doctor’s office, to then be injected into your degenerated or injured hip or knee by the clinician you have chosen, right?! No, that isn’t the way it happens.\r\n<h4>Amniotic Product Processing</h4>\r\nSure, the mother does donate the placental tissue. But the afterbirth materials are purchased by companies, and the companies process the materials in an effort to make sure they are disease-free. They are also freeze-dried. And all of these preservation processes kill all of the live cells. That leaves <strong>NO live stem cells in the product</strong>.\r\n\r\nAmniotic stem cells are being advertised all over the place. And people are fascinated with this very popular trend of using amniotic fluid for joint repair. But it needs to be clarified that amniotic “stem cell” therapy has NO actual stem cells, but rather growth factors and natural hyaluronic acid remnants found in the extracellular matrix of the amniotic tissue. If companies advertise in this way about the actual product you will receive, it is simply not true. Keep in mind that in their pre-donated state, the amniotic fluid does have an abundance of stem cells, but they do not survive the processing.\r\n<h4><strong>They Say My Stem Cells Are Too Old, Weak, or Too Few</strong></h4>\r\nSome seminars try to convince folks that their own stem cells are no good and that the donated cells are better for treating joint pain. That’s not true! This is another important point to understand… <strong><em>your own bone marrow, even if you are older, contains sufficient stem cells.</em></strong> Yours stem cells are just fine. And they are live stem cells.\r\n<h4><strong><em>How Can the Processed, “Dead” Cells They Promote Be Better?</em></strong></h4>\r\nThe push to say that your own cells are too weak, or too few and that their amniotic product is better does not make any sense when their product doesn’t contain any! Remember, cryopreserved, dehydrated amniotic products do not contain stem cells. Yes, amniotic fluid does contain growth factors. And these growth factors very well may work at helping joint pain. But there is a better way!\r\n<h4>Use Your Own Live Stem Cells</h4>\r\nGuess what?  You have growth factors in your own blood! Your own blood in the form of Platelet Rich Plasma (PRP) contains live growth factors too. And when we use PRP, if recommended in your particular case, we won’t be preserving it or freeze-drying it. It will be used right away. Again, the purchased, micronized amniotic product does contain growth factor material, but it is processed. Why not just use your own (autologous) live stem cells and PRP growth factors for your joint pain and injuries?\r\n\r\nUsing your own stem cells and blood is also safer as far as the transfer of disease or contaminants. True, the amniotic product is processed and freeze-dried, but problems of contamination have occurred. The CDC has reported instances of contamination of both amniotic products and cord blood with fecal matter and bacteria.2\r\n\r\nTo recap: the original amniotic fluid from the fetus does contain an abundance of stem cells in its pre-donated state. However, the procedure used in amniotic material processing alters the original relevant characteristics of the product thereby decreasing its ability and usefulness at regeneration and repair of injured or degenerated tissue. Once again, the amniotic “stem cell” therapy does <strong>not</strong> contain actual stem cells, but rather growth factors that may possibly activate your own stem cells.\r\n<h4><strong>They Say I Just Need One Injection</strong></h4>\r\nOne injection simply is not enough to heal your whole joint. Even if just one injection is advertised, it is not sufficient for complete healing. The most likely scenario is that your joint injury or pain progressed over time, and involves more than one joint structure. In order to provide an adequate repair of the joint and the pain relief you seek, a more comprehensive treatment would be necessary.\r\n\r\nIn most joint injuries, when one ligament is injured, additional ligaments and other soft tissue are generally injured as well. Unhealed joint injuries often lead to arthritis. And in this case, the entire joint is involved. One injection simply cannot treat all of those joint structures. A comprehensive treatment is necessary to strengthen, repair, and stabilize all of the involved structures. This also helps to prevent the continued breakdown of cartilage common in arthritis.\r\n\r\n<strong>A single injection is simply not comprehensive</strong> enough to reverse the damage affecting the entire joint. At OrthoRegen<sup>®</sup>, we address the entire joint with a multi-injection technique called <strong>Comprehensive Regenerative Orthopedics, in order to effectively treat the joint and return you to the pain-free life you desire</strong>.\r\n<h4><strong>Why Don’t We Use Amniotic “Stem Cell” Therapy?</strong></h4>\r\nAt OrthoRegen<sup>®</sup>, we use the Gold Standard in Stem Cell Therapy, which combines four different regenerative treatments that are extremely effective. <strong>And they utilize your own stem cells and growth factors.</strong>\r\n\r\nWe use adipose (fat) stem cells, which contain both live growth factors and live stem cells. Plus, we use bone marrow stem cells, which contain live growth factors and live stem cells. We also use Platelet Rich Plasma, which contains live growth factors. And then we use Dextrose Prolotherapy to strengthen any injured ligaments or tendons so the whole joint is treated and repaired. In comparison to amniotic “stem cell” therapy that only has processed growth factor material and no stem cells, it makes sense to choose the Gold Standard in Stem Cell Therapy that has been shown to be very effective.\r\n\r\nAnother great thing about Regenerative Orthopedics and the Gold Standard in Stem Cell Therapy is that it is non-surgical and requires basically no downtime. No extended time off of work is needed, and you can remain active.\r\n<h4>Research Shows the Effectiveness of Regenerative Orthopedics</h4>\r\nVarious trials and studies have shown the effectiveness of Dextrose Prolo­therapy alone in treating arthritis, as well as ligament and tendon injuries.3,4,5 When indicated, in advanced cases of degeneration, we recommend the Gold Standard of Stem Cell Therapy. In many cases of degeneration and injury, Prolotherapy alone is sufficient to bring the pain relief and repair needed, and the Gold Standard in Stem Cell Therapy is not required.\r\n\r\nIn cases that are more advanced, many other clinics use only one or two of these procedures. But we have discovered that this Gold Standard combination acts as an amazing regenerative solution to reverse the damage of arthritis on the joint. We comprehensively treat the entire joint with multiple injections of the Platelet Rich Plasma portion of the blood, adipose stem cells, and bone marrow stem cells. These regenerative treatments, along with Dextrose Prolotherapy in and around the involved joint offer benefits in terms of pain relief, regenerative properties, and cartilage repair for people with arthritis and all types of joint pain and injuries.\r\n\r\nIn our experience, we have discovered that this combination approach of live stem cells, growth factors, and regenerative therapies offers the best therapeutic regenerative approach for more advanced degenerative cases and particular injuries. The treatment addresses the whole joint and effectively heals the joint injuries, resolves pain, and restores function to return you quickly to the active life you desire.\r\n<h4>References</h4>\r\n1Berger DR, Centeno CJ, Kisiday JD, McIlwraith CW, Steinmetz NJ. Colony Forming Potential and Protein Composition of Commercial Umbilical Cord Allograft Products in Comparison With Autologous Orthobiologics. Am J Sports Med. 2021 Aug 16:3635465211031275. doi: 10.1177/03635465211031275. Epub ahead of print. PMID: 34398643.\r\n\r\n<em>2Notes from the Field:</em> Infections after Receipt of Bacterially Contaminated Umbilical Cord Blood-Derived Stem Cell Products for Other than Hematopoietic or Immunologic Reconstitution — United States, 2018. <em>Weekly</em> / December 21, 2018 /67(50);1397–1399.\r\n\r\n3Reeves KD, Hassanein K. Randomized prospective double-blind placebo-controlled study of dextrose prolotherapy\r\n\r\nor knee osteoarthritis with or without ACL laxity.  <em>Alt Ther Health Med</em>. 2000; 6(2):68–80.\r\n\r\n4Dagenais S, Yelland MJ, Del Mar C, Schoene ML. Prolotherapy injections for chronic low-back pain. <em>Cochrane Database Syst Rev</em>. Apr 18, 2007; (2): CD004059.\r\n\r\n5Rabago D, Zgierska A, Fortney L, et al. Hypertonic dextrose injections (prolotherapy) for knee osteoarthritis: results of a single-arm uncontrolled study with 1-year follow-up. <em>J Altern Complement Med</em>. 2012;18(4): 408–14.\r\n\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Amniotic “Stem Cell” Therapy','','inherit','closed','closed','','2611-revision-v1','','','2021-08-22 23:55:33','2021-08-22 23:55:33','',2611,'https://www.drfields.com/?p=4836',0,'revision','',0),(4837,9,'2021-08-26 22:11:37','2021-08-26 22:11:37','Rotator Cuff','Rotator Cuff','Prolotherapy is effective for chronic rotator cuff pain','inherit','open','closed','','rotator-cuff','','','2021-08-26 22:12:38','2021-08-26 22:12:38','',1457,'https://www.drfields.com/wp-content/uploads/2019/06/Rotator-Cuff.jpeg',0,'attachment','image/jpeg',0),(4838,9,'2021-08-26 22:13:52','2021-08-26 22:13:52','&nbsp;\r\n\r\n[caption id=\"attachment_4837\" align=\"alignleft\" width=\"500\"]<img class=\"wp-image-4837 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Rotator-Cuff-500x375.jpeg\" alt=\"Rotator Cuff\" width=\"500\" height=\"375\" /> <strong>      Prolotherapy is effective for chronic rotator cuff pain</strong>[/caption]\r\n<h2><strong>Rotator Cuff Injuries: Tears, Impingement, and Tendonitis </strong></h2>\r\nRotator cuff injuries are prevalent. Most of us have heard about rotator cuff tears and even impingement syndromes. We have probably seen and heard about rotator cuff injuries in the news. We often hear about professional athletes taken out of the game and possibly facing surgery. But rotator cuff injuries affect the general public too!\r\n\r\nRotator cuff injuries are so common that they affect about a quarter of the population over 50 years of age.1 Many people are opting for surgery to fix their rotator cuff injury. The numbers of surgical repairs are going up and up! In some locations, surgeries are doubling in number, and particular surgeries, like arthroscopic rotator cuff repairs, have increased by 353%. 2,3 But are all of these surgeries really necessary? Especially considering the economic costs, the time needed for rehabilitation, and other personal risks!\r\n<h3>Non-Surgical Options for Rotator Cuff Injuries</h3>\r\nIn so many rotator cuff injury cases, Regenerative Orthopedic techniques, like Stem Cell Therapy, PRP, and Prolotherapy, can be used to repair the shoulder. Plus, these treatments effectively repair the injury without the need for surgery. Regenerative Orthopedics has many advantages over surgery. First and foremost, it gets to the root cause of the problem. What do we mean by that? Rotator cuff injuries affect the tendon and ligaments of the shoulder. And treatments like Prolotherapy are especially effective at healing soft tissue like tendons and ligaments.\r\n\r\nBesides, Regenerative Orthopedic options require much less rehabilitation time. They also help you avoid the risks associated with rotator cuff surgery, such as frozen shoulder, deep infection, and dislocation. And many patients who develop these complications also end up needing a second surgical procedure.\r\n\r\n[caption id=\"attachment_4483\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4483\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/rotator-cuff-problem-400x500.png\" alt=\"Rotator Cuff Injuries\" width=\"400\" height=\"500\" /> <em><strong>       Rotator Cuff Injuries Affect Your Sleep Too!</strong></em>[/caption]\r\n<h3>Who Is At Risk for Rotator Cuff Injuries?</h3>\r\nAs mentioned previously, many people are at risk for rotator cuff injuries. Among athletes, rotator cuff injuries are more common with pitchers, tennis players, swimmers, and any sport that involves a throwing motion or repeated over the head movements. Non-athletes who repeatedly use overhead movements are also at increased risk for rotator cuff injuries. For example, rotator cuff tendinitis occurs when the rotator cuff\'s small muscles become strained, causing weakness of these structures and subsequent tendonitis. Left untreated, a chronic condition of tendinosis can develop.\r\n<h4><em>Impingement Syndrome</em></h4>\r\nAnother shoulder condition involving the rotator cuff is impingement syndrome. This condition occurs when the <a href=\"/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> tendon becomes pinched between the head of the humerus and the acromion process during the arm\'s motion raised above the head. This happens because the space gets narrowed, as occurs when the rotator cuff muscles weaken, and the humeral head rides high in the socket.\r\n\r\nImpingement can also ensue when bone spurs and calcium deposits narrow the space. Impingement also occurs when the contents of the subacromial space increase in size. This is most often due to a swollen rotator cuff tendon or bursa, which is painfully squeezed between the humeral head and the acromion process.\r\n<h3>Common Treatments for Rotator Cuff Injuries</h3>\r\nTreatment for rotator cuff injuries usually includes rest, non-steroidal anti-inflammatory drugs (NSAIDs), physical therapy, and cortisone injections. Cortisone has a substantial anti-inflammatory property, reducing the tendon and bursa\'s swelling and relieving the symptoms. Unfortunately, cortisone has also been found to lead to degeneration of the soft tissue eventually. It\'s so much better to regenerate the joint. And you can get regenerative results with Regenerative Orthopedics.\r\n\r\nMany common treatments only provide temporary help. That\'s because the underlying cause is not addressed, and the problem usually returns. Degenerative fraying and tearing of the tendon may occur when the tendon is allowed to be in a constant state of irritation over time. Non-Surgical Regenerative Orthopedics is a great way to address the underlying tendon and ligament injuries and repair all of the involved soft tissue. The result is a re-strengthening of the rotator cuff, an improved shoulder joint, and an excellent chance for a full recovery and performance.\r\n<h3><a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! It\'s free</a></h3>\r\n<h3>References:</h3>\r\n1Blitzer Charles, M. \"Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery.\" <i>The Journal of Arthroscopic and Related Surgery</i> 9.4 (1993): 414-416.\r\n\r\n2Iyengar, Jaicharan J., et al. \"Current trends in rotator cuff repair: surgical technique, setting, and cost.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 30.3 (2014): 284-288.\r\n\r\n3Traven, Sophia A., et al. \"The 5-factor modified frailty index predicts complications, hospital admission, and mortality following arthroscopic rotator cuff repair.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 36.2 (2020): 383-388.\r\n\r\nWant more information about treating Rotator Cuff injuries? Click <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stop-shoulder-pain-from-rotator-cuff-and-other-shoulder-injuries/\">here</a> to read our article called, <a href=\"http://Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries\">\"Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries.\"</a>\r\n<h1></h1>\r\n&nbsp;','Rotator Cuff Injuries: Tears, Impingement, and Tendonitis','','inherit','closed','closed','','1457-revision-v1','','','2021-08-26 22:13:52','2021-08-26 22:13:52','',1457,'https://www.drfields.com/?p=4838',0,'revision','',0),(4839,9,'2021-08-26 22:15:24','2021-08-26 22:15:24','&nbsp;\r\n\r\n[caption id=\"attachment_4837\" align=\"alignleft\" width=\"500\"]<img class=\"wp-image-4837 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Rotator-Cuff-500x375.jpeg\" alt=\"Rotator Cuff\" width=\"500\" height=\"375\" /> <strong>      Prolotherapy is effective for chronic rotator cuff pain</strong>[/caption]\r\n<h1><strong>Rotator Cuff Injuries: Tears, Impingement, and Tendonitis </strong></h1>\r\nRotator cuff injuries are prevalent. Most of us have heard about rotator cuff tears and even impingement syndromes. We have probably seen and heard about them in the news. We often hear about professional athletes taken out of the game and possibly facing surgery. But rotator cuff injuries affect the general public too!\r\n\r\nRotator cuff injuries are so common that they affect about a quarter of the population over 50 years of age.1 Many people are opting for surgery to fix their rotator cuff injury. The numbers of surgical repairs are going up and up! In some locations, surgeries are doubling in number, and particular surgeries, like arthroscopic rotator cuff repairs, have increased by 353%. 2,3 But are all of these surgeries really necessary? Especially considering the economic costs, the time needed for rehabilitation, and other personal risks!\r\n<h3>Non-Surgical Options for Rotator Cuff Injuries</h3>\r\nIn so many rotator cuff injury cases, Regenerative Orthopedic techniques, like Stem Cell Therapy, PRP, and Prolotherapy, can be used to repair the shoulder. Plus, these treatments effectively repair the injury without the need for surgery. Regenerative Orthopedics has many advantages over surgery. First and foremost, it gets to the root cause of the problem. What do we mean by that? Rotator cuff injuries affect the tendon and ligaments of the shoulder. And treatments like Prolotherapy are especially effective at healing soft tissue like tendons and ligaments.\r\n\r\nBesides, Regenerative Orthopedic options require much less rehabilitation time. They also help you avoid the risks associated with rotator cuff surgery, such as frozen shoulder, deep infection, and dislocation. And many patients who develop these complications also end up needing a second surgical procedure.\r\n\r\n[caption id=\"attachment_4483\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4483\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/rotator-cuff-problem-400x500.png\" alt=\"Rotator Cuff Injuries\" width=\"400\" height=\"500\" /> <em><strong>       Rotator Cuff Injuries Affect Your Sleep Too!</strong></em>[/caption]\r\n<h3>Who Is At Risk for Rotator Cuff Injuries?</h3>\r\nAs mentioned previously, many people are at risk for rotator cuff injuries. Among athletes, rotator cuff injuries are more common with pitchers, tennis players, swimmers, and any sport that involves a throwing motion or repeated over the head movements. Non-athletes who repeatedly use overhead movements are also at increased risk for rotator cuff injuries. For example, rotator cuff tendinitis occurs when the rotator cuff\'s small muscles become strained, causing weakness of these structures and subsequent tendonitis. Left untreated, a chronic condition of tendinosis can develop.\r\n<h4><em>Impingement Syndrome</em></h4>\r\nAnother shoulder condition involving the rotator cuff is impingement syndrome. This condition occurs when the <a href=\"/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> tendon becomes pinched between the head of the humerus and the acromion process during the arm\'s motion raised above the head. This happens because the space gets narrowed, as occurs when the rotator cuff muscles weaken, and the humeral head rides high in the socket.\r\n\r\nImpingement can also ensue when bone spurs and calcium deposits narrow the space. Impingement also occurs when the contents of the subacromial space increase in size. This is most often due to a swollen rotator cuff tendon or bursa, which is painfully squeezed between the humeral head and the acromion process.\r\n<h3>Common Treatments for Rotator Cuff Injuries</h3>\r\nTreatment for rotator cuff injuries usually includes rest, non-steroidal anti-inflammatory drugs (NSAIDs), physical therapy, and cortisone injections. Cortisone has a substantial anti-inflammatory property, reducing the tendon and bursa\'s swelling and relieving the symptoms. Unfortunately, cortisone has also been found to lead to degeneration of the soft tissue eventually. It\'s so much better to regenerate the joint. And you can get regenerative results with Regenerative Orthopedics.\r\n\r\nMany common treatments only provide temporary help. That\'s because the underlying cause is not addressed, and the problem usually returns. Degenerative fraying and tearing of the tendon may occur when the tendon is allowed to be in a constant state of irritation over time. Non-Surgical Regenerative Orthopedics is a great way to address the underlying tendon and ligament injuries and repair all of the involved soft tissue. The result is a re-strengthening of the rotator cuff, an improved shoulder joint, and an excellent chance for a full recovery and performance.\r\n<h3><a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! It\'s free</a></h3>\r\n<h3>References:</h3>\r\n1Blitzer Charles, M. \"Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery.\" <i>The Journal of Arthroscopic and Related Surgery</i> 9.4 (1993): 414-416.\r\n\r\n2Iyengar, Jaicharan J., et al. \"Current trends in rotator cuff repair: surgical technique, setting, and cost.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 30.3 (2014): 284-288.\r\n\r\n3Traven, Sophia A., et al. \"The 5-factor modified frailty index predicts complications, hospital admission, and mortality following arthroscopic rotator cuff repair.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 36.2 (2020): 383-388.\r\n\r\nWant more information about treating Rotator Cuff injuries? Click <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stop-shoulder-pain-from-rotator-cuff-and-other-shoulder-injuries/\">here</a> to read our article called, <a href=\"http://Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries\">\"Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries.\"</a>\r\n<h1></h1>\r\n&nbsp;','Rotator Cuff Injuries: Tears, Impingement, and Tendonitis','','inherit','closed','closed','','1457-revision-v1','','','2021-08-26 22:15:24','2021-08-26 22:15:24','',1457,'https://www.drfields.com/?p=4839',0,'revision','',0),(4840,9,'2021-08-26 22:17:00','2021-08-26 22:17:00','&nbsp;\r\n\r\n[caption id=\"attachment_4837\" align=\"alignleft\" width=\"500\"]<img class=\"wp-image-4837 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Rotator-Cuff-500x375.jpeg\" alt=\"Rotator Cuff\" width=\"500\" height=\"375\" /> <strong>      Prolotherapy is effective for chronic rotator cuff pain</strong>[/caption]\r\n<h1><strong>Rotator Cuff Injuries: Tears, Impingement, and Tendonitis </strong></h1>\r\nRotator cuff injuries are prevalent. Most of us have heard about rotator cuff tears and even impingement syndromes. We have probably seen and heard about them in the news. We often hear about professional athletes taken out of the game and possibly facing surgery. But these injuries affect the general public too!\r\n\r\nRotator cuff injuries are so common that they affect about a quarter of the population over 50 years of age.1 Many people are opting for surgery to fix their rotator cuff injury. The numbers of surgical repairs are going up and up! In some locations, surgeries are doubling in number, and particular surgeries, like arthroscopic rotator cuff repairs, have increased by 353%. 2,3 But are all of these surgeries really necessary? Especially considering the economic costs, the time needed for rehabilitation, and other personal risks!\r\n<h3>Non-Surgical Options for Rotator Cuff Injuries</h3>\r\nIn so many rotator cuff injury cases, Regenerative Orthopedic techniques, like Stem Cell Therapy, PRP, and Prolotherapy, can be used to repair the shoulder. Plus, these treatments effectively repair the injury without the need for surgery. Regenerative Orthopedics has many advantages over surgery. First and foremost, it gets to the root cause of the problem. What do we mean by that? Rotator cuff injuries affect the tendon and ligaments of the shoulder. And treatments like Prolotherapy are especially effective at healing soft tissue like tendons and ligaments.\r\n\r\nBesides, Regenerative Orthopedic options require much less rehabilitation time. They also help you avoid the risks associated with rotator cuff surgery, such as frozen shoulder, deep infection, and dislocation. And many patients who develop these complications also end up needing a second surgical procedure.\r\n\r\n[caption id=\"attachment_4483\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4483\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/rotator-cuff-problem-400x500.png\" alt=\"Rotator Cuff Injuries\" width=\"400\" height=\"500\" /> <em><strong>       Rotator Cuff Injuries Affect Your Sleep Too!</strong></em>[/caption]\r\n<h3>Who Is At Risk for Rotator Cuff Injuries?</h3>\r\nAs mentioned previously, many people are at risk for rotator cuff injuries. Among athletes, rotator cuff injuries are more common with pitchers, tennis players, swimmers, and any sport that involves a throwing motion or repeated over the head movements. Non-athletes who repeatedly use overhead movements are also at increased risk for rotator cuff injuries. For example, rotator cuff tendinitis occurs when the rotator cuff\'s small muscles become strained, causing weakness of these structures and subsequent tendonitis. Left untreated, a chronic condition of tendinosis can develop.\r\n<h4><em>Impingement Syndrome</em></h4>\r\nAnother shoulder condition involving the rotator cuff is impingement syndrome. This condition occurs when the <a href=\"/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> tendon becomes pinched between the head of the humerus and the acromion process during the arm\'s motion raised above the head. This happens because the space gets narrowed, as occurs when the rotator cuff muscles weaken, and the humeral head rides high in the socket.\r\n\r\nImpingement can also ensue when bone spurs and calcium deposits narrow the space. Impingement also occurs when the contents of the subacromial space increase in size. This is most often due to a swollen rotator cuff tendon or bursa, which is painfully squeezed between the humeral head and the acromion process.\r\n<h3>Common Treatments for Rotator Cuff Injuries</h3>\r\nTreatment for rotator cuff injuries usually includes rest, non-steroidal anti-inflammatory drugs (NSAIDs), physical therapy, and cortisone injections. Cortisone has a substantial anti-inflammatory property, reducing the tendon and bursa\'s swelling and relieving the symptoms. Unfortunately, cortisone has also been found to lead to degeneration of the soft tissue eventually. It\'s so much better to regenerate the joint. And you can get regenerative results with Regenerative Orthopedics.\r\n\r\nMany common treatments only provide temporary help. That\'s because the underlying cause is not addressed, and the problem usually returns. Degenerative fraying and tearing of the tendon may occur when the tendon is allowed to be in a constant state of irritation over time. Non-Surgical Regenerative Orthopedics is a great way to address the underlying tendon and ligament injuries and repair all of the involved soft tissue. The result is a re-strengthening of the rotator cuff, an improved shoulder joint, and an excellent chance for a full recovery and performance.\r\n<h3><a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! It\'s free</a></h3>\r\n<h3>References:</h3>\r\n1Blitzer Charles, M. \"Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery.\" <i>The Journal of Arthroscopic and Related Surgery</i> 9.4 (1993): 414-416.\r\n\r\n2Iyengar, Jaicharan J., et al. \"Current trends in rotator cuff repair: surgical technique, setting, and cost.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 30.3 (2014): 284-288.\r\n\r\n3Traven, Sophia A., et al. \"The 5-factor modified frailty index predicts complications, hospital admission, and mortality following arthroscopic rotator cuff repair.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 36.2 (2020): 383-388.\r\n\r\nWant more information about treating Rotator Cuff injuries? Click <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stop-shoulder-pain-from-rotator-cuff-and-other-shoulder-injuries/\">here</a> to read our article called, <a href=\"http://Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries\">\"Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries.\"</a>\r\n<h1></h1>\r\n&nbsp;','Rotator Cuff Injuries: Tears, Impingement, and Tendonitis','','inherit','closed','closed','','1457-revision-v1','','','2021-08-26 22:17:00','2021-08-26 22:17:00','',1457,'https://www.drfields.com/?p=4840',0,'revision','',0),(4841,9,'2021-08-26 22:17:40','2021-08-26 22:17:40','&nbsp;\r\n\r\n[caption id=\"attachment_4837\" align=\"alignleft\" width=\"500\"]<img class=\"wp-image-4837 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Rotator-Cuff-500x375.jpeg\" alt=\"Rotator Cuff\" width=\"500\" height=\"375\" /> <strong>      Prolotherapy is effective for chronic rotator cuff pain</strong>[/caption]\r\n<h1><strong>Rotator Cuff Injuries: Tears, Impingement, and Tendonitis </strong></h1>\r\nRotator cuff injuries are prevalent. Most of us have heard about rotator cuff tears and even impingement syndromes. We have probably seen and heard about them in the news. We often hear about professional athletes taken out of the game and possibly facing surgery. But these injuries affect the general public too!\r\n\r\nRotator cuff injuries are so common that they affect about a quarter of the population over 50 years of age.1 Many people are opting for surgery to fix their injury. The numbers of surgical repairs are going up and up! In some locations, surgeries are doubling in number, and particular surgeries, like arthroscopic rotator cuff repairs, have increased by 353%. 2,3 But are all of these surgeries really necessary? Especially considering the economic costs, the time needed for rehabilitation, and other personal risks!\r\n<h3>Non-Surgical Options for Rotator Cuff Injuries</h3>\r\nIn so many rotator cuff injury cases, Regenerative Orthopedic techniques, like Stem Cell Therapy, PRP, and Prolotherapy, can be used to repair the shoulder. Plus, these treatments effectively repair the injury without the need for surgery. Regenerative Orthopedics has many advantages over surgery. First and foremost, it gets to the root cause of the problem. What do we mean by that? Rotator cuff injuries affect the tendon and ligaments of the shoulder. And treatments like Prolotherapy are especially effective at healing soft tissue like tendons and ligaments.\r\n\r\nBesides, Regenerative Orthopedic options require much less rehabilitation time. They also help you avoid the risks associated with rotator cuff surgery, such as frozen shoulder, deep infection, and dislocation. And many patients who develop these complications also end up needing a second surgical procedure.\r\n\r\n[caption id=\"attachment_4483\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4483\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/rotator-cuff-problem-400x500.png\" alt=\"Rotator Cuff Injuries\" width=\"400\" height=\"500\" /> <em><strong>       Rotator Cuff Injuries Affect Your Sleep Too!</strong></em>[/caption]\r\n<h3>Who Is At Risk for Rotator Cuff Injuries?</h3>\r\nAs mentioned previously, many people are at risk for rotator cuff injuries. Among athletes, rotator cuff injuries are more common with pitchers, tennis players, swimmers, and any sport that involves a throwing motion or repeated over the head movements. Non-athletes who repeatedly use overhead movements are also at increased risk for rotator cuff injuries. For example, rotator cuff tendinitis occurs when the rotator cuff\'s small muscles become strained, causing weakness of these structures and subsequent tendonitis. Left untreated, a chronic condition of tendinosis can develop.\r\n<h4><em>Impingement Syndrome</em></h4>\r\nAnother shoulder condition involving the rotator cuff is impingement syndrome. This condition occurs when the <a href=\"/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> tendon becomes pinched between the head of the humerus and the acromion process during the arm\'s motion raised above the head. This happens because the space gets narrowed, as occurs when the rotator cuff muscles weaken, and the humeral head rides high in the socket.\r\n\r\nImpingement can also ensue when bone spurs and calcium deposits narrow the space. Impingement also occurs when the contents of the subacromial space increase in size. This is most often due to a swollen rotator cuff tendon or bursa, which is painfully squeezed between the humeral head and the acromion process.\r\n<h3>Common Treatments for Rotator Cuff Injuries</h3>\r\nTreatment for rotator cuff injuries usually includes rest, non-steroidal anti-inflammatory drugs (NSAIDs), physical therapy, and cortisone injections. Cortisone has a substantial anti-inflammatory property, reducing the tendon and bursa\'s swelling and relieving the symptoms. Unfortunately, cortisone has also been found to lead to degeneration of the soft tissue eventually. It\'s so much better to regenerate the joint. And you can get regenerative results with Regenerative Orthopedics.\r\n\r\nMany common treatments only provide temporary help. That\'s because the underlying cause is not addressed, and the problem usually returns. Degenerative fraying and tearing of the tendon may occur when the tendon is allowed to be in a constant state of irritation over time. Non-Surgical Regenerative Orthopedics is a great way to address the underlying tendon and ligament injuries and repair all of the involved soft tissue. The result is a re-strengthening of the rotator cuff, an improved shoulder joint, and an excellent chance for a full recovery and performance.\r\n<h3><a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! It\'s free</a></h3>\r\n<h3>References:</h3>\r\n1Blitzer Charles, M. \"Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery.\" <i>The Journal of Arthroscopic and Related Surgery</i> 9.4 (1993): 414-416.\r\n\r\n2Iyengar, Jaicharan J., et al. \"Current trends in rotator cuff repair: surgical technique, setting, and cost.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 30.3 (2014): 284-288.\r\n\r\n3Traven, Sophia A., et al. \"The 5-factor modified frailty index predicts complications, hospital admission, and mortality following arthroscopic rotator cuff repair.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 36.2 (2020): 383-388.\r\n\r\nWant more information about treating Rotator Cuff injuries? Click <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stop-shoulder-pain-from-rotator-cuff-and-other-shoulder-injuries/\">here</a> to read our article called, <a href=\"http://Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries\">\"Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries.\"</a>\r\n<h1></h1>\r\n&nbsp;','Rotator Cuff Injuries: Tears, Impingement, and Tendonitis','','inherit','closed','closed','','1457-revision-v1','','','2021-08-26 22:17:40','2021-08-26 22:17:40','',1457,'https://www.drfields.com/?p=4841',0,'revision','',0),(4842,9,'2021-08-26 22:19:18','2021-08-26 22:19:18','&nbsp;\r\n\r\n[caption id=\"attachment_4837\" align=\"alignleft\" width=\"500\"]<img class=\"wp-image-4837 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Rotator-Cuff-500x375.jpeg\" alt=\"Rotator Cuff\" width=\"500\" height=\"375\" /> <strong>      Prolotherapy is effective for chronic rotator cuff pain</strong>[/caption]\r\n<h1><strong>Rotator Cuff Injuries: Tears, Impingement, and Tendonitis </strong></h1>\r\nRotator cuff injuries are prevalent. Most of us have heard about rotator cuff tears and even impingement syndromes. We have probably seen and heard about them in the news. We often hear about professional athletes taken out of the game and possibly facing surgery. But these injuries affect the general public too!\r\n\r\nRotator cuff injuries are so common that they affect about a quarter of the population over 50 years of age.1 Many people are opting for surgery to fix their injury. The numbers of surgical repairs are going up and up! In some locations, surgeries are doubling in number, and particular surgeries, like arthroscopic rotator cuff repairs, have increased by 353%. 2,3 But are all of these surgeries really necessary? Especially considering the economic costs, the time needed for rehabilitation, and other personal risks!\r\n<h3>Non-Surgical Options for Rotator Cuff Injuries</h3>\r\nIn so many rotator cuff injury cases, Regenerative Orthopedic techniques, like Stem Cell Therapy, PRP, and Prolotherapy, can be used to repair the shoulder. Plus, these treatments effectively repair the injury without the need for surgery. Regenerative Orthopedics has many advantages over surgery. First and foremost, it gets to the root cause of the problem. What do we mean by that? Rotator cuff injuries affect the tendon and ligaments of the shoulder. And treatments like Prolotherapy are especially effective at healing soft tissue like tendons and ligaments.\r\n\r\nBesides, Regenerative Orthopedic options require much less rehabilitation time. They also help you avoid the risks associated with rotator cuff surgery, such as frozen shoulder, deep infection, and dislocation. And many patients who develop these complications also end up needing a second surgical procedure.\r\n\r\n[caption id=\"attachment_4483\" align=\"alignright\" width=\"400\"]<img class=\"size-medium wp-image-4483\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/rotator-cuff-problem-400x500.png\" alt=\"Rotator Cuff Injuries\" width=\"400\" height=\"500\" /> <em><strong>       Rotator Cuff Injuries Affect Your Sleep Too!</strong></em>[/caption]\r\n<h3>Who Is At Risk for Rotator Cuff Injuries?</h3>\r\nAs mentioned previously, many people are at risk for rotator cuff injuries. Among athletes, these injuries are more common with pitchers, tennis players, swimmers, and any sport that involves a throwing motion or repeated over-the-head movements. Non-athletes who repeatedly use overhead movements are also at increased risk for rotator cuff injuries. For example, rotator cuff tendinitis occurs when the rotator cuff\'s small muscles become strained, causing weakness of these structures and subsequent tendonitis. Left untreated, a chronic condition of tendinosis can develop.\r\n<h4><em>Impingement Syndrome</em></h4>\r\nAnother shoulder condition involving the rotator cuff is impingement syndrome. This condition occurs when the <a href=\"/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> tendon becomes pinched between the head of the humerus and the acromion process during the arm\'s motion raised above the head. This happens because the space gets narrowed, as occurs when the rotator cuff muscles weaken, and the humeral head rides high in the socket.\r\n\r\nImpingement can also ensue when bone spurs and calcium deposits narrow the space. Impingement also occurs when the contents of the subacromial space increase in size. This is most often due to a swollen rotator cuff tendon or bursa, which is painfully squeezed between the humeral head and the acromion process.\r\n<h3>Common Treatments for Rotator Cuff Injuries</h3>\r\nTreatment for rotator cuff injuries usually includes rest, non-steroidal anti-inflammatory drugs (NSAIDs), physical therapy, and cortisone injections. Cortisone has a substantial anti-inflammatory property, reducing the tendon and bursa\'s swelling and relieving the symptoms. Unfortunately, cortisone has also been found to lead to degeneration of the soft tissue eventually. It\'s so much better to regenerate the joint. And you can get regenerative results with Regenerative Orthopedics.\r\n\r\nMany common treatments only provide temporary help. That\'s because the underlying cause is not addressed, and the problem usually returns. Degenerative fraying and tearing of the tendon may occur when the tendon is allowed to be in a constant state of irritation over time. Non-Surgical Regenerative Orthopedics is a great way to address the underlying tendon and ligament injuries and repair all of the involved soft tissue. The result is a re-strengthening of the rotator cuff, an improved shoulder joint, and an excellent chance for a full recovery and performance.\r\n<h3><a class=\"buttonlink\" href=\"/Contact\">To Learn More, Contact Us Today! It\'s free</a></h3>\r\n<h3>References:</h3>\r\n1Blitzer Charles, M. \"Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery.\" <i>The Journal of Arthroscopic and Related Surgery</i> 9.4 (1993): 414-416.\r\n\r\n2Iyengar, Jaicharan J., et al. \"Current trends in rotator cuff repair: surgical technique, setting, and cost.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 30.3 (2014): 284-288.\r\n\r\n3Traven, Sophia A., et al. \"The 5-factor modified frailty index predicts complications, hospital admission, and mortality following arthroscopic rotator cuff repair.\" <i>Arthroscopy: The Journal of Arthroscopic &amp; Related Surgery</i> 36.2 (2020): 383-388.\r\n\r\nWant more information about treating Rotator Cuff injuries? Click <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stop-shoulder-pain-from-rotator-cuff-and-other-shoulder-injuries/\">here</a> to read our article called, <a href=\"http://Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries\">\"Stop Shoulder Pain from Rotator Cuff and Other Shoulder Injuries.\"</a>\r\n<h1></h1>\r\n&nbsp;','Rotator Cuff Injuries: Tears, Impingement, and Tendonitis','','inherit','closed','closed','','1457-revision-v1','','','2021-08-26 22:19:18','2021-08-26 22:19:18','',1457,'https://www.drfields.com/?p=4842',0,'revision','',0),(4843,9,'2021-08-27 18:23:55','2021-08-27 18:23:55','','DANCING v3','','inherit','open','closed','','dancing-v3','','','2021-08-27 18:23:55','2021-08-27 18:23:55','',2208,'https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4',0,'attachment','video/mp4',0),(4844,9,'2021-08-27 18:31:09','2021-08-27 18:31:09','Dancing','Dancing','Dancing','inherit','open','closed','','dancing','','','2021-08-27 18:31:09','2021-08-27 18:31:09','',0,'https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png',0,'attachment','image/png',0),(4845,9,'2021-08-27 18:32:34','2021-08-27 18:32:34','<h4>Report of My Kilimanjaro Climb (late by two years!)</h4>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting there</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nFirst an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr) and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time.. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that were full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Postscript</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000 foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow and the wind chill factors. Nothing but grit and determination to keep you going. But thee views were spectacular and the feeling of being literally on top of the world, made it all wroth it.\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n[video width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\"][/video]\r\n<h2 style=\"text-align: center;\">Post Postscript</h2>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-27 18:32:34','2021-08-27 18:32:34','',2208,'https://www.drfields.com/?p=4845',0,'revision','',0),(4846,9,'2021-08-27 18:48:21','2021-08-27 18:48:21','<h4>Report of My Kilimanjaro Climb (late by two years!)</h4>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting there</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nFirst an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr) and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time.. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that were full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Postscript</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000 foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow and the wind chill factors. Nothing but grit and determination to keep you going. But thee views were spectacular and the feeling of being literally on top of the world, made it all wroth it.\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h2 style=\"text-align: center;\">Post Postscript</h2>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-27 18:48:21','2021-08-27 18:48:21','',2208,'https://www.drfields.com/?p=4846',0,'revision','',0),(4847,9,'2021-08-27 18:53:00','2021-08-27 18:53:00','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nFirst an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr) and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time.. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that were full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Postscript of My Kilimanjaro Climb</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h2 style=\"text-align: center;\">Post Postscript</h2>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-27 18:53:00','2021-08-27 18:53:00','',2208,'https://www.drfields.com/?p=4847',0,'revision','',0),(4848,9,'2021-08-27 18:54:35','2021-08-27 18:54:35','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nFirst an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr) and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time.. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that were full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Postscript of My Kilimanjaro Climb</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-27 18:54:35','2021-08-27 18:54:35','',2208,'https://www.drfields.com/?p=4848',0,'revision','',0),(4849,9,'2021-08-27 18:55:07','2021-08-27 18:55:07','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nFirst an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr) and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time.. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that were full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Postscript of My Kilimanjaro Climb</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-27 18:55:07','2021-08-27 18:55:07','',2208,'https://www.drfields.com/?p=4849',0,'revision','',0),(4850,9,'2021-08-27 18:57:16','2021-08-27 18:57:16','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nFirst an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr) and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time.. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that were full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-27 18:57:16','2021-08-27 18:57:16','',2208,'https://www.drfields.com/?p=4850',0,'revision','',0),(4851,9,'2021-08-27 19:00:28','2021-08-27 19:00:28','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-27 19:00:28','2021-08-27 19:00:28','',2208,'https://www.drfields.com/?p=4851',0,'revision','',0),(4852,9,'2021-08-27 19:03:27','2021-08-27 19:03:27','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-27 19:03:27','2021-08-27 19:03:27','',2208,'https://www.drfields.com/?p=4852',0,'revision','',0),(4853,9,'2021-08-27 20:02:22','2021-08-27 20:02:22','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-27 20:02:22','2021-08-27 20:02:22','',2208,'https://www.drfields.com/?p=4853',0,'revision','',0),(4854,9,'2021-08-27 20:08:38','2021-08-27 20:08:38','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n<h3>&lt;iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/iUtJs2SlGC8\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen&gt;&lt;/iframe&gt;</h3>\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-27 20:08:38','2021-08-27 20:08:38','',2208,'https://www.drfields.com/?p=4854',0,'revision','',0),(4855,9,'2021-08-27 20:09:50','2021-08-27 20:09:50','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n<h3></h3>\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-27 20:09:50','2021-08-27 20:09:50','',2208,'https://www.drfields.com/?p=4855',0,'revision','',0),(4856,9,'2021-08-27 20:14:33','2021-08-27 20:14:33','Thumbnail','Thumbnail','Celebratory Dance After the Kilimanjaro Climb','inherit','open','closed','','thumbnail','','','2021-08-27 20:15:06','2021-08-27 20:15:06','',2208,'https://www.drfields.com/wp-content/uploads/2021/08/thumbnail.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (4857,9,'2021-08-27 20:15:57','2021-08-27 20:15:57','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/thumbnail.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n<h3></h3>\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-27 20:15:57','2021-08-27 20:15:57','',2208,'https://www.drfields.com/?p=4857',0,'revision','',0),(4858,9,'2021-08-27 20:17:35','2021-08-27 20:17:35','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<img class=\"aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n<h3></h3>\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-27 20:17:35','2021-08-27 20:17:35','',2208,'https://www.drfields.com/?p=4858',0,'revision','',0),(4859,9,'2021-08-27 20:21:26','2021-08-27 20:21:26','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3></h3>\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-27 20:21:26','2021-08-27 20:21:26','',2208,'https://www.drfields.com/?p=4859',0,'revision','',0),(4860,9,'2021-08-27 20:21:49','2021-08-27 20:21:49','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before. We were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-27 20:21:49','2021-08-27 20:21:49','',2208,'https://www.drfields.com/?p=4860',0,'revision','',0),(4861,9,'2021-08-30 19:22:27','2021-08-30 19:22:27','','camp 16000ft','','inherit','open','closed','','camp-16000ft','','','2021-08-30 19:22:27','2021-08-30 19:22:27','',2208,'https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4',0,'attachment','video/mp4',0),(4862,9,'2021-08-30 19:24:00','2021-08-30 19:24:00','Camp','Camp','Camp','inherit','open','closed','','camp','','','2021-08-30 19:24:00','2021-08-30 19:24:00','',2208,'https://www.drfields.com/wp-content/uploads/2021/08/camp.png',0,'attachment','image/png',0),(4863,9,'2021-08-30 19:25:17','2021-08-30 19:25:17','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7 and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take you to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-12.jpg\" /><img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-13.jpg\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. We climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air. When we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath. Finally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-30 19:25:17','2021-08-30 19:25:17','',2208,'https://www.drfields.com/?p=4863',0,'revision','',0),(4864,9,'2021-08-30 19:28:17','2021-08-30 19:28:17','16500 18400 13','16500 18400 13','16500 18400 13','inherit','open','closed','','16500-18400-13-2','','','2021-08-30 19:28:17','2021-08-30 19:28:17','',2208,'https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg',0,'attachment','image/jpeg',0),(4865,9,'2021-08-30 19:30:07','2021-08-30 19:30:07','16500 18400 12','16500 18400 12','16500 18400 12','inherit','open','closed','','16500-18400-12-2','','','2021-08-30 19:30:07','2021-08-30 19:30:07','',2208,'https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg',0,'attachment','image/jpeg',0),(4866,9,'2021-08-30 19:31:42','2021-08-30 19:31:42','','16000ft','','inherit','open','closed','','16000ft','','','2021-08-30 19:31:42','2021-08-30 19:31:42','',2208,'https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4',0,'attachment','video/mp4',0),(4867,9,'2021-08-30 19:33:13','2021-08-30 19:33:13','Dance 18000','Dance 18000','Dance 18000','inherit','open','closed','','dance-18000','','','2021-08-30 19:33:13','2021-08-30 19:33:13','',2208,'https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png',0,'attachment','image/png',0),(4868,9,'2021-08-30 19:34:25','2021-08-30 19:34:25','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n<img class=\"size-full wp-image-4865\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"156\" height=\"277\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-30 19:34:25','2021-08-30 19:34:25','',2208,'https://www.drfields.com/?p=4868',0,'revision','',0),(4869,9,'2021-08-30 19:35:39','2021-08-30 19:35:39','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n<img class=\"size-full wp-image-4865\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"156\" height=\"277\" />\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-30 19:35:39','2021-08-30 19:35:39','',2208,'https://www.drfields.com/?p=4869',0,'revision','',0),(4870,9,'2021-08-30 19:35:59','2021-08-30 19:35:59','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n<img class=\"size-full wp-image-4865 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"156\" height=\"277\" />\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-30 19:35:59','2021-08-30 19:35:59','',2208,'https://www.drfields.com/?p=4870',0,'revision','',0),(4871,9,'2021-08-30 19:37:49','2021-08-30 19:37:49','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4865 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"156\" height=\"277\" />\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-30 19:37:49','2021-08-30 19:37:49','',2208,'https://www.drfields.com/?p=4871',0,'revision','',0),(4872,9,'2021-08-30 19:38:57','2021-08-30 19:38:57','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4865 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"156\" height=\"277\" />\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-30 19:38:57','2021-08-30 19:38:57','',2208,'https://www.drfields.com/?p=4872',0,'revision','',0),(4873,9,'2021-08-30 19:42:09','2021-08-30 19:42:09','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"156\" height=\"277\" />\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet. After that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-30 19:42:09','2021-08-30 19:42:09','',2208,'https://www.drfields.com/?p=4873',0,'revision','',0),(4874,9,'2021-08-30 19:43:16','2021-08-30 19:43:16','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Truner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-08-30 19:43:16','2021-08-30 19:43:16','',2208,'https://www.drfields.com/?p=4874',0,'revision','',0),(4876,9,'2021-09-02 01:52:00','2021-09-02 01:52:00','<h1>Neck Injury Treatment</h1>\n<div></div>\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter Neck\"]\n<strong>Peter - Neck</strong></div>\n<h4>Regenerative Orthopedic Neck Treatments for Pain and Headaches</h4>\nOur Regenerative Orthopedic neck treatments, such as Prolotherapy, can help people like you, with head and neck pain, get your life back. Is neck pain keeping you from enjoying life as you would like? Whether you are an athlete with an injury, or simply an individual suffering from neck pain, we would love to help!\n\nIn cases of trauma, a hit to the head or neck can stretch and injure the ligaments in the neck.  Ligaments are what connect bone to bone. They help to stabilize the vertebrae. When injured, they become somewhat \"loose,\" similar to a stretched-out rubber band, and this can lead to neck instability. The instability can lead to a myriad of different symptoms, some of which can include dizziness and headaches.\n\nWe have written an article that discusses the symptoms of neck instability in more depth. If you are interested in finding out more about these symptoms of neck instability (cervical instability), please <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cervical-instability/\">clicking here</a>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h3>Common Neck Injury Treatments</h3>\nMost patients try to self-treat with NSAID medications such as Ibuprofen and Naproxen. If these medications do bring relief, the relief is often temporary. And once the drugs become ineffective, the patient often seeks even stronger prescription medications, such as nerve blocks. After that, an MRI is frequently taken, and then surgery is often recommended.\n\nFortunately, there is an alternative to surgical cervical fusion for chronic neck pain and pain from neck injuries by using comprehensive Regenerative Orthopedic neck treatments at OrthoRegen<sup>®</sup>.\n\n[caption id=\"attachment_4878\" align=\"alignleft\" width=\"385\"]<img class=\" wp-image-4878\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Non-Surgical-500x500.png\" alt=\"Non Surgical\" width=\"385\" height=\"385\" /> <strong>Choose a Non-Surgical Alternative for Neck Pain</strong>[/caption]\n<h3>Regenerative Orthopedic Neck Injury Treatments by Peter A Fields, MD, DC</h3>\nPeter A. Fields, MD, DC is also known as <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>  He has treated many athletes from all levels of sport, as well as the weekend warrior. Neck injuries can also be the result of overuse. Those of us who spend hour after hour in front of the computer can also suffer from ligament injury of the neck.\n\nRegenerative Orthopedic treatments can resolve the neck pain and headaches that result from these injuries too. Get back to doing what you love without surgery, without medications, and without extended time away from the activities you love in your life.\n\nIn our experience, a comprehensive Regenerative Orthopedic neck treatment along with a Natural Medicine program is the preferred way to treat neck pain for optimal long-term results.\n<h3><a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img class=\"alignnone\" style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a></h3>\n<h3><strong>Some of the most common neck and head injuries we treat with comprehensive Regenerative Orthopedic neck injury treatments are:</strong></h3>\n<ul>\n 	<li>Atypical facial pain</li>\n 	<li>Barre-Lieou Syndrome</li>\n 	<li>Cervical instability</li>\n 	<li>Jaw pain</li>\n 	<li>Migraine headaches</li>\n 	<li>Muscle contraction headache</li>\n 	<li>Neck arthritis</li>\n 	<li>Neck pain</li>\n 	<li>Post cervical fusion pain</li>\n 	<li>Post-surgical neck pain</li>\n 	<li>TMJ syndrome</li>\n 	<li>Whiplash</li>\n</ul>\n<h3>Are You A Candidate for Regenerative Orthopedics?</h3>\nPeter A. Fields, MD, DC and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy neck treatment, <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy,</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Regenerative Orthopedic treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Neck Injury Treatment','','inherit','closed','closed','','536-autosave-v1','','','2021-09-02 01:52:00','2021-09-02 01:52:00','',536,'https://www.drfields.com/?p=4876',0,'revision','',0),(4877,9,'2021-09-02 01:22:41','2021-09-02 01:22:41','<h1>Neck Injury Treatment</h1>\r\n<div></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong></div>\r\n<h4>Prolotherapy Neck Treatment for Pain and Headaches</h4>\r\nOur Prolotherapy neck treatment can help people like you with head and neck pain that can completely keep an athlete from participating in sports. If you are a cyclist, the riding position can be too painful to maintain for long distances. In cases of contact sport trauma, a hit to the head or neck can loosen the ligaments in the neck which hold the vertebrae together. This can lead to neck instability and chronic headaches.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nMost patients try to self-treat with NSAID medications (Ibuprofen, Naproxen). Those drugs eventually become ineffective and often a patient seeks even stronger prescription medications, nerve blocks or an MRI is taken and surgery is recommended. There is an alternative to cervical fusion for chronic neck pain and headaches by using comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> neck treatment at OrthoRegen<sup>®</sup>.\r\n<h4>Prolotherapy Neck Treatment by Peter A Fields, MD DC</h4>\r\nDr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, has treated athletes at all levels of sport, Olympic hopefuls to weekend warriors, Ironman competitors to student athletes. They all have confidence in a physician who is also an athlete. Dr. Fields has competed in Ironman Triathlons, marathons, long-distance cycling events and swimming. You can get back to your training and competitions without surgery, without medications, and without extended time away from your sport.\r\n\r\nIn our experience, a comprehensive Prolotherapy next treatment and Natural Medicine program is the preferred way to treat neck pain and headaches for optimal long term results.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<strong>Some of the most common neck and head injuries we treat with comprehensive Prolotherapy neck treatment are:</strong>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy neck treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Neck Injury Treatment','','inherit','closed','closed','','536-revision-v1','','','2021-09-02 01:22:41','2021-09-02 01:22:41','',536,'https://www.drfields.com/?p=4877',0,'revision','',0),(4878,9,'2021-09-02 01:49:56','2021-09-02 01:49:56','Non Surgical','Non Surgical','Non Surgical','inherit','open','closed','','non-surgical','','','2021-09-02 01:49:56','2021-09-02 01:49:56','',536,'https://www.drfields.com/wp-content/uploads/2019/06/Non-Surgical.png',0,'attachment','image/png',0),(4879,9,'2021-09-02 01:52:08','2021-09-02 01:52:08','<h1>Neck Injury Treatment</h1>\r\n<div></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong></div>\r\n<h4>Regenerative Orthopedic Neck Treatments for Pain and Headaches</h4>\r\nOur Regenerative Orthopedic neck treatments, such as Prolotherapy, can help people like you, with head and neck pain, get your life back. Is neck pain keeping you from enjoying life as you would like? Whether you are an athlete with an injury, or simply an individual suffering from neck pain, we would love to help!\r\n\r\nIn cases of trauma, a hit to the head or neck can stretch and injure the ligaments in the neck.  Ligaments are what connect bone to bone. They help to stabilize the vertebrae. When injured, they become somewhat \"loose,\" similar to a stretched-out rubber band, and this can lead to neck instability. The instability can lead to a myriad of different symptoms, some of which can include dizziness and headaches.\r\n\r\nWe have written an article that discusses the symptoms of neck instability in more depth. If you are interested in finding out more about these symptoms of neck instability (cervical instability), please <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cervical-instability/\">clicking here</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>Common Neck Injury Treatments</h3>\r\nMost patients try to self-treat with NSAID medications such as Ibuprofen and Naproxen. If these medications do bring relief, the relief is often temporary. And once the drugs become ineffective, the patient often seeks even stronger prescription medications, such as nerve blocks. After that, an MRI is frequently taken, and then surgery is often recommended.\r\n\r\nFortunately, there is an alternative to surgical cervical fusion for chronic neck pain and pain from neck injuries by using comprehensive Regenerative Orthopedic neck treatments at OrthoRegen<sup>®</sup>.\r\n\r\n[caption id=\"attachment_4878\" align=\"alignleft\" width=\"385\"]<img class=\" wp-image-4878\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Non-Surgical-500x500.png\" alt=\"Non Surgical\" width=\"385\" height=\"385\" /> <strong>Choose a Non-Surgical Alternative for Neck Pain</strong>[/caption]\r\n<h3>Regenerative Orthopedic Neck Injury Treatments by Peter A Fields, MD, DC</h3>\r\nPeter A. Fields, MD, DC is also known as <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>  He has treated many athletes from all levels of sport, as well as the weekend warrior. Neck injuries can also be the result of overuse. Those of us who spend hour after hour in front of the computer can also suffer from ligament injury of the neck.\r\n\r\nRegenerative Orthopedic treatments can resolve the neck pain and headaches that result from these injuries too. Get back to doing what you love without surgery, without medications, and without extended time away from the activities you love in your life.\r\n\r\nIn our experience, a comprehensive Regenerative Orthopedic neck treatment along with a Natural Medicine program is the preferred way to treat neck pain for optimal long-term results.\r\n<h3><a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img class=\"alignnone\" style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a></h3>\r\n<h3><strong>Some of the most common neck and head injuries we treat with comprehensive Regenerative Orthopedic neck injury treatments are:</strong></h3>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h3>Are You A Candidate for Regenerative Orthopedics?</h3>\r\nPeter A. Fields, MD, DC and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy neck treatment, <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy,</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Regenerative Orthopedic treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Neck Injury Treatment','','inherit','closed','closed','','536-revision-v1','','','2021-09-02 01:52:08','2021-09-02 01:52:08','',536,'https://www.drfields.com/?p=4879',0,'revision','',0),(4880,9,'2021-09-02 01:52:56','2021-09-02 01:52:56','<h1>Neck Injury Treatments</h1>\r\n<div></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong></div>\r\n<h4>Regenerative Orthopedic Neck Treatments for Pain and Headaches</h4>\r\nOur Regenerative Orthopedic neck treatments, such as Prolotherapy, can help people like you, with head and neck pain, get your life back. Is neck pain keeping you from enjoying life as you would like? Whether you are an athlete with an injury, or simply an individual suffering from neck pain, we would love to help!\r\n\r\nIn cases of trauma, a hit to the head or neck can stretch and injure the ligaments in the neck.  Ligaments are what connect bone to bone. They help to stabilize the vertebrae. When injured, they become somewhat \"loose,\" similar to a stretched-out rubber band, and this can lead to neck instability. The instability can lead to a myriad of different symptoms, some of which can include dizziness and headaches.\r\n\r\nWe have written an article that discusses the symptoms of neck instability in more depth. If you are interested in finding out more about these symptoms of neck instability (cervical instability), please <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cervical-instability/\">clicking here</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>Common Neck Injury Treatments</h3>\r\nMost patients try to self-treat with NSAID medications such as Ibuprofen and Naproxen. If these medications do bring relief, the relief is often temporary. And once the drugs become ineffective, the patient often seeks even stronger prescription medications, such as nerve blocks. After that, an MRI is frequently taken, and then surgery is often recommended.\r\n\r\nFortunately, there is an alternative to surgical cervical fusion for chronic neck pain and pain from neck injuries by using comprehensive Regenerative Orthopedic neck treatments at OrthoRegen<sup>®</sup>.\r\n\r\n[caption id=\"attachment_4878\" align=\"alignleft\" width=\"385\"]<img class=\" wp-image-4878\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Non-Surgical-500x500.png\" alt=\"Non Surgical\" width=\"385\" height=\"385\" /> <strong>Choose a Non-Surgical Alternative for Neck Pain</strong>[/caption]\r\n<h3>Regenerative Orthopedic Neck Injury Treatments by Peter A Fields, MD, DC</h3>\r\nPeter A. Fields, MD, DC is also known as <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>  He has treated many athletes from all levels of sport, as well as the weekend warrior. Neck injuries can also be the result of overuse. Those of us who spend hour after hour in front of the computer can also suffer from ligament injury of the neck.\r\n\r\nRegenerative Orthopedic treatments can resolve the neck pain and headaches that result from these injuries too. Get back to doing what you love without surgery, without medications, and without extended time away from the activities you love in your life.\r\n\r\nIn our experience, a comprehensive Regenerative Orthopedic neck treatment along with a Natural Medicine program is the preferred way to treat neck pain for optimal long-term results.\r\n<h3><a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img class=\"alignnone\" style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a></h3>\r\n<h3></h3>\r\n<h3><strong>Some of the most common neck and head injuries we treat with comprehensive Regenerative Orthopedic neck injury treatments are:</strong></h3>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h3>Are You A Candidate for Regenerative Orthopedics?</h3>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy neck treatment, <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy,</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Regenerative Orthopedic treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Neck Injury Treatments','','inherit','closed','closed','','536-revision-v1','','','2021-09-02 01:52:56','2021-09-02 01:52:56','',536,'https://www.drfields.com/?p=4880',0,'revision','',0),(4881,9,'2021-09-02 01:56:08','2021-09-02 01:56:08','<h1>Neck Injury Treatments</h1>\r\n<div></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong></div>\r\n<h4>Regenerative Orthopedic Neck Treatments for Pain and Headaches</h4>\r\nOur Regenerative Orthopedic neck treatments, such as Prolotherapy, can help people like you, with head and neck pain, get your life back. Is neck pain keeping you from enjoying life as you would like? Whether you are an athlete with an injury, or simply an individual suffering from neck pain, we would love to help!\r\n\r\nIn cases of trauma, a hit to the head or neck can stretch and injure the ligaments in the neck.  Ligaments are what connect bone to bone. They help to stabilize the vertebrae. When injured, they become somewhat \"loose,\" similar to a stretched-out rubber band, and this can lead to neck instability. The instability can lead to a myriad of different symptoms, some of which can include dizziness and headaches.\r\n\r\nWe have written an article that discusses the symptoms of neck instability in more depth. If you are interested in finding out more about these symptoms of neck instability (cervical instability), please <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cervical-instability/\">clicking here</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>Common Neck Injury Treatments</h3>\r\nMost patients try to self-treat with NSAID medications such as Ibuprofen and Naproxen. If these medications do bring relief, the relief is often temporary. And once the drugs become ineffective, the patient often seeks even stronger prescription medications, such as nerve blocks. After that, an MRI is frequently taken, and then surgery is often recommended.\r\n\r\nFortunately, there is an alternative to surgical cervical fusion for chronic neck pain and pain from neck injuries by using comprehensive Regenerative Orthopedic neck treatments at OrthoRegen<sup>®</sup>.\r\n\r\n[caption id=\"attachment_4878\" align=\"alignleft\" width=\"385\"]<img class=\" wp-image-4878\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Non-Surgical-500x500.png\" alt=\"Non Surgical\" width=\"385\" height=\"385\" /> <strong>Choose a Non-Surgical Alternative for Neck Pain</strong>[/caption]\r\n<h3>Regenerative Orthopedic Neck Injury Treatments by Peter A Fields, MD, DC</h3>\r\nPeter A. Fields, MD, DC is also known as <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>  He has treated many athletes from all levels of sport, as well as the weekend warrior. Neck injuries can also be the result of overuse. Those of us who spend hour after hour in front of the computer can also suffer from ligament injury of the neck.\r\n\r\nRegenerative Orthopedic treatments can resolve the neck pain and headaches that result from these injuries too. Get back to doing what you love without surgery, without medications, and without extended time away from the activities you love in your life.\r\n\r\nIn our experience, a comprehensive Regenerative Orthopedic neck treatment along with a Natural Medicine program is the preferred way to treat neck pain for optimal long-term results.\r\n<h3></h3>\r\n<h3><a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img class=\"alignnone\" style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a></h3>\r\n<h3></h3>\r\n<h3><strong>Some of the most common neck and head injuries we treat with comprehensive Regenerative Orthopedic neck injury treatments are:</strong></h3>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h3>Are You A Candidate for Regenerative Orthopedics?</h3>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy neck treatment, <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy,</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Regenerative Orthopedic treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Neck Injury Treatments','','inherit','closed','closed','','536-revision-v1','','','2021-09-02 01:56:08','2021-09-02 01:56:08','',536,'https://www.drfields.com/?p=4881',0,'revision','',0),(4882,9,'2021-09-02 01:56:54','2021-09-02 01:56:54','<h1>Neck Injury Treatments</h1>\r\n<div></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"-SyCX5PtrL4\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg\" alt=\"Peter Neck\"]\r\n<strong>Peter - Neck</strong></div>\r\n<h4>Regenerative Orthopedic Neck Treatments for Pain and Headaches</h4>\r\nOur Regenerative Orthopedic neck treatments, such as Prolotherapy, can help people like you, with head and neck pain, get your life back. Is neck pain keeping you from enjoying life as you would like? Whether you are an athlete with an injury, or simply an individual suffering from neck pain, we would love to help!\r\n\r\nIn cases of trauma, a hit to the head or neck can stretch and injure the ligaments in the neck.  Ligaments are what connect bone to bone. They help to stabilize the vertebrae. When injured, they become somewhat \"loose,\" similar to a stretched-out rubber band, and this can lead to neck instability. The instability can lead to a myriad of different symptoms, some of which can include dizziness and headaches.\r\n\r\nWe have written an article that discusses the symptoms of neck instability in more depth. If you are interested in finding out more about these symptoms of neck instability (cervical instability), please <a href=\"https://www.drfields.com/articles/regenerative-orthopedics/cervical-instability/\">clicking here</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3>Common Neck Injury Treatments</h3>\r\nMost patients try to self-treat with NSAID medications such as Ibuprofen and Naproxen. If these medications do bring relief, the relief is often temporary. And once the drugs become ineffective, the patient often seeks even stronger prescription medications, such as nerve blocks. After that, an MRI is frequently taken, and then surgery is often recommended.\r\n\r\nFortunately, there is an alternative to surgical cervical fusion for chronic neck pain and pain from neck injuries by using comprehensive Regenerative Orthopedic neck treatments at OrthoRegen<sup>®</sup>.\r\n\r\n[caption id=\"attachment_4878\" align=\"alignleft\" width=\"428\"]<img class=\" wp-image-4878\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Non-Surgical-500x500.png\" alt=\"Non Surgical\" width=\"428\" height=\"428\" /> <strong>Choose a Non-Surgical Alternative for Neck Pain</strong>[/caption]\r\n<h3>Regenerative Orthopedic Neck Injury Treatments by Peter A. Fields, MD, DC</h3>\r\nPeter A. Fields, MD, DC is also known as <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>  He has treated many athletes from all levels of sport, as well as the weekend warrior. Neck injuries can also be the result of overuse. Those of us who spend hour after hour in front of the computer can also suffer from ligament injury of the neck.\r\n\r\nRegenerative Orthopedic treatments can resolve the neck pain and headaches that result from these injuries too. Get back to doing what you love without surgery, without medications, and without extended time away from the activities you love in your life.\r\n\r\nIn our experience, a comprehensive Regenerative Orthopedic neck treatment along with a Natural Medicine program is the preferred way to treat neck pain for optimal long-term results.\r\n<h3></h3>\r\n<h3><a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img class=\"alignnone\" style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a></h3>\r\n<h3></h3>\r\n<h3><strong>Some of the most common neck and head injuries we treat with comprehensive Regenerative Orthopedic neck injury treatments are:</strong></h3>\r\n<ul>\r\n 	<li>Atypical facial pain</li>\r\n 	<li>Barre-Lieou Syndrome</li>\r\n 	<li>Cervical instability</li>\r\n 	<li>Jaw pain</li>\r\n 	<li>Migraine headaches</li>\r\n 	<li>Muscle contraction headache</li>\r\n 	<li>Neck arthritis</li>\r\n 	<li>Neck pain</li>\r\n 	<li>Post cervical fusion pain</li>\r\n 	<li>Post-surgical neck pain</li>\r\n 	<li>TMJ syndrome</li>\r\n 	<li>Whiplash</li>\r\n</ul>\r\n<h3>Are You A Candidate for Regenerative Orthopedics?</h3>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy neck treatment, <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy,</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Regenerative Orthopedic treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Neck-Testimonials/\">Neck testimonials</a> and <a href=\"https://www.drfields.com/Testimonials/Headache-Testimonials/\">Head Testimonials</a> pages.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Neck Injury Treatments','','inherit','closed','closed','','536-revision-v1','','','2021-09-02 01:56:54','2021-09-02 01:56:54','',536,'https://www.drfields.com/?p=4882',0,'revision','',0),(4884,9,'2021-09-22 19:06:34','2021-09-22 19:06:34','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner, and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Eight Hike</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing!</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-09-22 19:06:34','2021-09-22 19:06:34','',2208,'https://www.drfields.com/?p=4884',0,'revision','',0),(4885,9,'2021-09-25 22:45:33','2021-09-25 22:45:33','<h2>Knee And Hip Replacements Increase Heart Attack Risk</h2>\n[caption id=\"attachment_4894\" align=\"alignnone\" width=\"359\"]<img class=\"wp-image-4894 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/heart-attack-1-359x500.png\" alt=\"Heart Attack (1)\" width=\"359\" height=\"500\" /> Heart Attack (1)[/caption]\n\nOver 27 million Americans suffer from osteoarthritis (OA),  a chronic degenerative disease of the joints. And when the pain gets unbearable, many people opt to have joint replacement surgery. Surgery is a common go-to, especially considering how often it is recommended.  But remember, all surgery has risks! And knee and hip replacements increase heart attack risk.\n\nIn this article, we\'ll take a look at a few studies and the conclusions the researchers came to. Interestingly, in one of the studies, the researchers were trying to prove that knee and hip replacement surgery decrease heart attack risk. However, the results showed that overall risks were substantially increased in both the total knee and total hip groups.\n<h3>What Is the Reason for the Elevated Risk?</h3>\n\'The reason for the elevated risks is unclear at this point\", said senior author Yuqing Zhang of Boston University School of Medicine. Regardless, he said, the findings suggest that the risk of a heart attack in the weeks after total <a href=\"/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">joint replacement surgery</a> “may have been previously underappreciated,” and ways to prevent this serious complication may need to be considered.\n\nZhang and colleagues studied roughly 40,000 patients age 50 or older, all with osteoarthritis. They compared 13,849 patients who underwent total knee replacement to 13,849 closely matched people who did not have surgery. They also compared about 6,000 patients who had hip replacement surgery to 6,000 who did not.\n\nWithin a month after the operations, there were 35 heart attacks among knee replacement patients, compared to four in the control group. In that same period, there were 13 heart attacks in the hip replacement group vs three in the control group.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n\nHeart attack risk was highest in that first month following surgery and declined again over time, the authors reported in Arthritis &amp; Rheumatology. By three years after the operations, heart attack rates had evened out for the surgery groups and the control groups.\n<h3>Blood Clot Risk with Joint Replacement</h3>\nAs for a type of blood clot known as venous thromboembolism, the knee replacement patients had 190 in the first month, compared to three in the control group. The hip surgery patients had 78; the control group had just one. So that is a significant rate of blood clots.\n\n<img class=\"alignright size-full wp-image-1125\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-illustration-200.jpg\" alt=\"Knee Illustration 200\" width=\"200\" height=\"266\" />Five years later, the odds of having venous thromboembolism were still significantly higher in the surgery groups\n\nIndeed, Zhang said, the health risks and benefits of joint replacement surgery remain complicated. And this study’s findings cannot quantify them for an individual patient.\n<h3>Increased Risk of Atrial Fibrillation (AF)</h3>\nA 2021 study in the medical journal Gerontology showed an increased risk of atrial fibrillation, a common heart arrhythmia, after knee and hip replacement surgery. They studied 280 patients compared to a group of 280 control patients with no AF. New-onset AF was defined as AF demonstrated postoperatively in patients with no previous clinical history of atrial fibrillation. One-year mortality in elderly patients undergoing total knee or total hip replacement is significantly increased in the patients that develop new postoperative atrial fibrillation.2\n\nClinical consequences of AF include decreased cardiac output and risk of thromboembolism, and the presence of AF is associated with increased mortality. AF has also been associated with an increased 30-day mortality rate (6.4%) after noncardiac surgery.\n<ol>\n 	<li>SOURCE: <a href=\"http://bit.ly/1NIXl8o\" target=\"_blank\" rel=\"noopener noreferrer\">http://bit.ly/1NIXl8o</a> Arthritis &amp; Rheumatology, online August 31, 2015.</li>\n</ol>\n2. Varon, Ben, et al. \"New-Onset Perioperative Atrial Fibrillation Is Associated with Increased All-Cause Mortality in Elderly Patients Undergoing Total Knee   and Hip Replacements.\" <i>Gerontology</i> (2021): 1-6.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee And Hip Replacements Increase Heart Attack Risk','','inherit','closed','closed','','1480-autosave-v1','','','2021-09-25 22:45:33','2021-09-25 22:45:33','',1480,'https://www.drfields.com/?p=4885',0,'revision','',0),(4886,9,'2021-09-22 20:21:59','2021-09-22 20:21:59','<h2>Knee And Hip Replacements Increase Heart Attack Risk</h2>\r\n<img class=\"alignleft size-full wp-image-1123\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/man-heart-attack-200.jpg\" alt=\"Man Heart Attack 200\" width=\"200\" height=\"300\" />Over 27 million Americans suffer from osteoarthritis (OA),  a chronic degenerative disease of the joints. And when the pain gets unbearable, many people opt to have joint replacement surgery. Surgery is a common go to, especially considering how often it is recommended.  But remember, all surgery has risks! And knee and hip replacements increase heart attack risk.\r\n\r\nIn this article, we\'ll take a look at a of couple studies and the conclusions the researchers came to. Interestingly, in one of the studies, the researchers were trying to prove that knee and hip replacement surgery decrease heart attack risk. However, the results showed that overall risks were substantially increased in both the total knee and total hip groups.\r\n<h3>What Is the Reason for the Elevated Risk?</h3>\r\n\'The reason for the elevated risks is unclear at this point\", said senior author Yuqing Zhang of Boston University School of Medicine. Regardless, he said, the findings suggest that the risk of a heart attack in the weeks after total <a href=\"/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">joint replacement surgery</a> “may have been previously underappreciated,” and ways to prevent this serious complication may need to be considered.\r\n\r\nZhang and colleagues studied roughly 40,000 patients age 50 or older, all with osteoarthritis. They compared 13,849 patients who underwent total knee replacement to 13,849 closely matched people who did not have surgery. They also compared about 6,000 patients who had hip replacement surgery to 6,000 who did not.\r\n\r\nWithin a month after the operations, there were 35 heart attacks among knee replacement patients, compared to four in the control group. In that same period, there were 13 heart attacks in the hip replacement group vs three in the control group.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nHeart attack risk was highest in that first month following surgery and declined again over time, the authors reported in Arthritis &amp; Rheumatology. By three years after the operations, heart attack rates had evened out for the surgery groups and the control groups.\r\n<h3>Blood Clot Risk with Joint Replacement</h3>\r\nAs for a type of blood clot known as venous thromboembolism, the knee replacement patients had 190 in the first month, compared to three in the control group. The hip surgery patients had 78; the control group had just one. So that is a significant rate of blood clots.\r\n\r\n<img class=\"alignright size-full wp-image-1125\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-illustration-200.jpg\" alt=\"Knee Illustration 200\" width=\"200\" height=\"266\" />Five years later, the odds of having venous thromboembolism were still significantly higher in the surgery groups\r\n\r\nIndeed, Zhang said, the health risks and benefits of joint replacement surgery remain complicated and this study’s findings cannot quantify them for an individual patient.\r\n<h3>Increased Risk of Atrial Fibrilation (AF)</h3>\r\nA 2021 study in the medical journal Gerontology showed an increased risk of atrial fibrilation, a common heart arrhythia, after knee and hip replacment surgery. They studied 280 patients compared to a group of 280 control patients with no AF. New-onset AF was defined as AF demonstrated postoperatively in patients with no previous clinical history of atrial fibrilation. One-year mortality in elderly patients undergoing total knee or total hip replacement is significantly increased in the patients that develop new postoperative atrial fibrilation.2\r\n\r\nClinical consequences of AF include decreased cardiac output and risk of thromboembolism, and the presence of AF is associated with increased mortality. AF has also been associated with an increased 30-day mortality rate (6.4%) after noncardiac surgery.\r\n<ol>\r\n 	<li>SOURCE: <a href=\"http://bit.ly/1NIXl8o\" target=\"_blank\" rel=\"noopener noreferrer\">http://bit.ly/1NIXl8o</a> Arthritis &amp; Rheumatology, online August 31, 2015.</li>\r\n</ol>\r\n2. Varon, Ben, et al. \"New-Onset Perioperative Atrial Fibrillation Is Associated with Increased All-Cause Mortality in Elderly Patients Undergoing Total Knee and Hip Replacements.\" <i>Gerontology</i> (2021): 1-6.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee And Hip Replacements Increase Heart Attack Risk Briefly','','inherit','closed','closed','','1480-revision-v1','','','2021-09-22 20:21:59','2021-09-22 20:21:59','',1480,'https://www.drfields.com/?p=4886',0,'revision','',0),(4888,9,'2021-09-25 22:28:47','2021-09-25 22:28:47','<h2>Knee And Hip Replacements Increase Heart Attack Risk</h2>\r\n<img class=\"alignleft size-full wp-image-1123\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/man-heart-attack-200.jpg\" alt=\"Man Heart Attack 200\" width=\"200\" height=\"300\" />Over 27 million Americans suffer from osteoarthritis (OA),  a chronic degenerative disease of the joints. And when the pain gets unbearable, many people opt to have joint replacement surgery. Surgery is a common go to, especially considering how often it is recommended.  But remember, all surgery has risks! And knee and hip replacements increase heart attack risk.\r\n\r\nIn this article, we\'ll take a look at a of couple studies and the conclusions the researchers came to. Interestingly, in one of the studies, the researchers were trying to prove that knee and hip replacement surgery decrease heart attack risk. However, the results showed that overall risks were substantially increased in both the total knee and total hip groups.\r\n<h3>What Is the Reason for the Elevated Risk?</h3>\r\n\'The reason for the elevated risks is unclear at this point\", said senior author Yuqing Zhang of Boston University School of Medicine. Regardless, he said, the findings suggest that the risk of a heart attack in the weeks after total <a href=\"/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">joint replacement surgery</a> “may have been previously underappreciated,” and ways to prevent this serious complication may need to be considered.\r\n\r\nZhang and colleagues studied roughly 40,000 patients age 50 or older, all with osteoarthritis. They compared 13,849 patients who underwent total knee replacement to 13,849 closely matched people who did not have surgery. They also compared about 6,000 patients who had hip replacement surgery to 6,000 who did not.\r\n\r\nWithin a month after the operations, there were 35 heart attacks among knee replacement patients, compared to four in the control group. In that same period, there were 13 heart attacks in the hip replacement group vs three in the control group.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nHeart attack risk was highest in that first month following surgery and declined again over time, the authors reported in Arthritis &amp; Rheumatology. By three years after the operations, heart attack rates had evened out for the surgery groups and the control groups.\r\n<h3>Blood Clot Risk with Joint Replacement</h3>\r\nAs for a type of blood clot known as venous thromboembolism, the knee replacement patients had 190 in the first month, compared to three in the control group. The hip surgery patients had 78; the control group had just one. So that is a significant rate of blood clots.\r\n\r\n<img class=\"alignright size-full wp-image-1125\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-illustration-200.jpg\" alt=\"Knee Illustration 200\" width=\"200\" height=\"266\" />Five years later, the odds of having venous thromboembolism were still significantly higher in the surgery groups\r\n\r\nIndeed, Zhang said, the health risks and benefits of joint replacement surgery remain complicated and this study’s findings cannot quantify them for an individual patient.\r\n<h3>Increased Risk of Atrial Fibrilation (AF)</h3>\r\nA 2021 study in the medical journal Gerontology showed an increased risk of atrial fibrilation, a common heart arrhythia, after knee and hip replacment surgery. They studied 280 patients compared to a group of 280 control patients with no AF. New-onset AF was defined as AF demonstrated postoperatively in patients with no previous clinical history of atrial fibrilation. One-year mortality in elderly patients undergoing total knee or total hip replacement is significantly increased in the patients that develop new postoperative atrial fibrilation.2\r\n\r\nClinical consequences of AF include decreased cardiac output and risk of thromboembolism, and the presence of AF is associated with increased mortality. AF has also been associated with an increased 30-day mortality rate (6.4%) after noncardiac surgery.\r\n<ol>\r\n 	<li>SOURCE: <a href=\"http://bit.ly/1NIXl8o\" target=\"_blank\" rel=\"noopener noreferrer\">http://bit.ly/1NIXl8o</a> Arthritis &amp; Rheumatology, online August 31, 2015.</li>\r\n</ol>\r\n2. Varon, Ben, et al. \"New-Onset Perioperative Atrial Fibrillation Is Associated with Increased All-Cause Mortality in Elderly Patients Undergoing Total Knee and Hip Replacements.\" <i>Gerontology</i> (2021): 1-6.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee And Hip Replacements Increase Heart Attack Risk','','inherit','closed','closed','','1480-revision-v1','','','2021-09-25 22:28:47','2021-09-25 22:28:47','',1480,'https://www.drfields.com/?p=4888',0,'revision','',0),(4889,9,'2021-09-25 22:29:37','2021-09-25 22:29:37','<h2>Knee And Hip Replacements Increase Heart Attack Risk</h2>\r\n<img class=\"alignleft size-full wp-image-1123\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/man-heart-attack-200.jpg\" alt=\"Man Heart Attack 200\" width=\"200\" height=\"300\" />Over 27 million Americans suffer from osteoarthritis (OA),  a chronic degenerative disease of the joints. And when the pain gets unbearable, many people opt to have joint replacement surgery. Surgery is a common go to, especially considering how often it is recommended.  But remember, all surgery has risks! And knee and hip replacements increase heart attack risk.\r\n\r\nIn this article, we\'ll take a look at a of couple studies and the conclusions the researchers came to. Interestingly, in one of the studies, the researchers were trying to prove that knee and hip replacement surgery decrease heart attack risk. However, the results showed that overall risks were substantially increased in both the total knee and total hip groups.\r\n<h3>What Is the Reason for the Elevated Risk?</h3>\r\n\'The reason for the elevated risks is unclear at this point\", said senior author Yuqing Zhang of Boston University School of Medicine. Regardless, he said, the findings suggest that the risk of a heart attack in the weeks after total <a href=\"/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">joint replacement surgery</a> “may have been previously underappreciated,” and ways to prevent this serious complication may need to be considered.\r\n\r\nZhang and colleagues studied roughly 40,000 patients age 50 or older, all with osteoarthritis. They compared 13,849 patients who underwent total knee replacement to 13,849 closely matched people who did not have surgery. They also compared about 6,000 patients who had hip replacement surgery to 6,000 who did not.\r\n\r\nWithin a month after the operations, there were 35 heart attacks among knee replacement patients, compared to four in the control group. In that same period, there were 13 heart attacks in the hip replacement group vs three in the control group.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nHeart attack risk was highest in that first month following surgery and declined again over time, the authors reported in Arthritis &amp; Rheumatology. By three years after the operations, heart attack rates had evened out for the surgery groups and the control groups.\r\n<h3>Blood Clot Risk with Joint Replacement</h3>\r\nAs for a type of blood clot known as venous thromboembolism, the knee replacement patients had 190 in the first month, compared to three in the control group. The hip surgery patients had 78; the control group had just one. So that is a significant rate of blood clots.\r\n\r\n<img class=\"alignright size-full wp-image-1125\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-illustration-200.jpg\" alt=\"Knee Illustration 200\" width=\"200\" height=\"266\" />Five years later, the odds of having venous thromboembolism were still significantly higher in the surgery groups\r\n\r\nIndeed, Zhang said, the health risks and benefits of joint replacement surgery remain complicated. And this study’s findings cannot quantify them for an individual patient.\r\n<h3>Increased Risk of Atrial Fibrilation (AF)</h3>\r\nA 2021 study in the medical journal Gerontology showed an increased risk of atrial fibrilation, a common heart arrhythia, after knee and hip replacment surgery. They studied 280 patients compared to a group of 280 control patients with no AF. New-onset AF was defined as AF demonstrated postoperatively in patients with no previous clinical history of atrial fibrilation. One-year mortality in elderly patients undergoing total knee or total hip replacement is significantly increased in the patients that develop new postoperative atrial fibrilation.2\r\n\r\nClinical consequences of AF include decreased cardiac output and risk of thromboembolism, and the presence of AF is associated with increased mortality. AF has also been associated with an increased 30-day mortality rate (6.4%) after noncardiac surgery.\r\n<ol>\r\n 	<li>SOURCE: <a href=\"http://bit.ly/1NIXl8o\" target=\"_blank\" rel=\"noopener noreferrer\">http://bit.ly/1NIXl8o</a> Arthritis &amp; Rheumatology, online August 31, 2015.</li>\r\n</ol>\r\n2. Varon, Ben, et al. \"New-Onset Perioperative Atrial Fibrillation Is Associated with Increased All-Cause Mortality in Elderly Patients Undergoing Total Knee and Hip Replacements.\" <i>Gerontology</i> (2021): 1-6.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee And Hip Replacements Increase Heart Attack Risk','','inherit','closed','closed','','1480-revision-v1','','','2021-09-25 22:29:37','2021-09-25 22:29:37','',1480,'https://www.drfields.com/?p=4889',0,'revision','',0),(4890,9,'2021-09-25 22:30:06','2021-09-25 22:30:06','<h2>Knee And Hip Replacements Increase Heart Attack Risk</h2>\r\n<img class=\"alignleft size-full wp-image-1123\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/man-heart-attack-200.jpg\" alt=\"Man Heart Attack 200\" width=\"200\" height=\"300\" />Over 27 million Americans suffer from osteoarthritis (OA),  a chronic degenerative disease of the joints. And when the pain gets unbearable, many people opt to have joint replacement surgery. Surgery is a common go to, especially considering how often it is recommended.  But remember, all surgery has risks! And knee and hip replacements increase heart attack risk.\r\n\r\nIn this article, we\'ll take a look at a of couple studies and the conclusions the researchers came to. Interestingly, in one of the studies, the researchers were trying to prove that knee and hip replacement surgery decrease heart attack risk. However, the results showed that overall risks were substantially increased in both the total knee and total hip groups.\r\n<h3>What Is the Reason for the Elevated Risk?</h3>\r\n\'The reason for the elevated risks is unclear at this point\", said senior author Yuqing Zhang of Boston University School of Medicine. Regardless, he said, the findings suggest that the risk of a heart attack in the weeks after total <a href=\"/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">joint replacement surgery</a> “may have been previously underappreciated,” and ways to prevent this serious complication may need to be considered.\r\n\r\nZhang and colleagues studied roughly 40,000 patients age 50 or older, all with osteoarthritis. They compared 13,849 patients who underwent total knee replacement to 13,849 closely matched people who did not have surgery. They also compared about 6,000 patients who had hip replacement surgery to 6,000 who did not.\r\n\r\nWithin a month after the operations, there were 35 heart attacks among knee replacement patients, compared to four in the control group. In that same period, there were 13 heart attacks in the hip replacement group vs three in the control group.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nHeart attack risk was highest in that first month following surgery and declined again over time, the authors reported in Arthritis &amp; Rheumatology. By three years after the operations, heart attack rates had evened out for the surgery groups and the control groups.\r\n<h3>Blood Clot Risk with Joint Replacement</h3>\r\nAs for a type of blood clot known as venous thromboembolism, the knee replacement patients had 190 in the first month, compared to three in the control group. The hip surgery patients had 78; the control group had just one. So that is a significant rate of blood clots.\r\n\r\n<img class=\"alignright size-full wp-image-1125\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-illustration-200.jpg\" alt=\"Knee Illustration 200\" width=\"200\" height=\"266\" />Five years later, the odds of having venous thromboembolism were still significantly higher in the surgery groups\r\n\r\nIndeed, Zhang said, the health risks and benefits of joint replacement surgery remain complicated. And this study’s findings cannot quantify them for an individual patient.\r\n<h3>Increased Risk of Atrial Fibrilation (AF)</h3>\r\nA 2021 study in the medical journal Gerontology showed an increased risk of atrial fibrilation, a common heart arrhythia, after knee and hip replacment surgery. They studied 280 patients compared to a group of 280 control patients with no AF. New-onset AF was defined as AF demonstrated postoperatively in patients with no previous clinical history of atrial fibrilation. One-year mortality in elderly patients undergoing total knee or total hip replacement is significantly increased in the patients that develop new postoperative atrial fibrilation.2\r\n\r\nClinical consequences of AF include decreased cardiac output and risk of thromboembolism, and the presence of AF is associated with increased mortality. AF has also been associated with an increased 30-day mortality rate (6.4%) after noncardiac surgery.\r\n<ol>\r\n 	<li>SOURCE: <a href=\"http://bit.ly/1NIXl8o\" target=\"_blank\" rel=\"noopener noreferrer\">http://bit.ly/1NIXl8o</a> Arthritis &amp; Rheumatology, online August 31, 2015.</li>\r\n</ol>\r\n2. Varon, Ben, et al. \"New-Onset Perioperative Atrial Fibrillation Is Associated with Increased All-Cause Mortality in Elderly Patients Undergoing Total Knee   and Hip Replacements.\" <i>Gerontology</i> (2021): 1-6.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee And Hip Replacements Increase Heart Attack Risk','','inherit','closed','closed','','1480-revision-v1','','','2021-09-25 22:30:06','2021-09-25 22:30:06','',1480,'https://www.drfields.com/?p=4890',0,'revision','',0),(4891,9,'2021-09-25 22:31:11','2021-09-25 22:31:11','<h2>Knee And Hip Replacements Increase Heart Attack Risk</h2>\r\n<img class=\"alignleft size-full wp-image-1123\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/man-heart-attack-200.jpg\" alt=\"Man Heart Attack 200\" width=\"200\" height=\"300\" />Over 27 million Americans suffer from osteoarthritis (OA),  a chronic degenerative disease of the joints. And when the pain gets unbearable, many people opt to have joint replacement surgery. Surgery is a common go-to, especially considering how often it is recommended.  But remember, all surgery has risks! And knee and hip replacements increase heart attack risk.\r\n\r\nIn this article, we\'ll take a look at a of couple studies and the conclusions the researchers came to. Interestingly, in one of the studies, the researchers were trying to prove that knee and hip replacement surgery decrease heart attack risk. However, the results showed that overall risks were substantially increased in both the total knee and total hip groups.\r\n<h3>What Is the Reason for the Elevated Risk?</h3>\r\n\'The reason for the elevated risks is unclear at this point\", said senior author Yuqing Zhang of Boston University School of Medicine. Regardless, he said, the findings suggest that the risk of a heart attack in the weeks after total <a href=\"/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">joint replacement surgery</a> “may have been previously underappreciated,” and ways to prevent this serious complication may need to be considered.\r\n\r\nZhang and colleagues studied roughly 40,000 patients age 50 or older, all with osteoarthritis. They compared 13,849 patients who underwent total knee replacement to 13,849 closely matched people who did not have surgery. They also compared about 6,000 patients who had hip replacement surgery to 6,000 who did not.\r\n\r\nWithin a month after the operations, there were 35 heart attacks among knee replacement patients, compared to four in the control group. In that same period, there were 13 heart attacks in the hip replacement group vs three in the control group.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nHeart attack risk was highest in that first month following surgery and declined again over time, the authors reported in Arthritis &amp; Rheumatology. By three years after the operations, heart attack rates had evened out for the surgery groups and the control groups.\r\n<h3>Blood Clot Risk with Joint Replacement</h3>\r\nAs for a type of blood clot known as venous thromboembolism, the knee replacement patients had 190 in the first month, compared to three in the control group. The hip surgery patients had 78; the control group had just one. So that is a significant rate of blood clots.\r\n\r\n<img class=\"alignright size-full wp-image-1125\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-illustration-200.jpg\" alt=\"Knee Illustration 200\" width=\"200\" height=\"266\" />Five years later, the odds of having venous thromboembolism were still significantly higher in the surgery groups\r\n\r\nIndeed, Zhang said, the health risks and benefits of joint replacement surgery remain complicated. And this study’s findings cannot quantify them for an individual patient.\r\n<h3>Increased Risk of Atrial Fibrillation (AF)</h3>\r\nA 2021 study in the medical journal Gerontology showed an increased risk of atrial fibrillation, a common heart arrhythmia, after knee and hip replacement surgery. They studied 280 patients compared to a group of 280 control patients with no AF. New-onset AF was defined as AF demonstrated postoperatively in patients with no previous clinical history of atrial fibrillation. One-year mortality in elderly patients undergoing total knee or total hip replacement is significantly increased in the patients that develop new postoperative atrial fibrillation.2\r\n\r\nClinical consequences of AF include decreased cardiac output and risk of thromboembolism, and the presence of AF is associated with increased mortality. AF has also been associated with an increased 30-day mortality rate (6.4%) after noncardiac surgery.\r\n<ol>\r\n 	<li>SOURCE: <a href=\"http://bit.ly/1NIXl8o\" target=\"_blank\" rel=\"noopener noreferrer\">http://bit.ly/1NIXl8o</a> Arthritis &amp; Rheumatology, online August 31, 2015.</li>\r\n</ol>\r\n2. Varon, Ben, et al. \"New-Onset Perioperative Atrial Fibrillation Is Associated with Increased All-Cause Mortality in Elderly Patients Undergoing Total Knee   and Hip Replacements.\" <i>Gerontology</i> (2021): 1-6.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee And Hip Replacements Increase Heart Attack Risk','','inherit','closed','closed','','1480-revision-v1','','','2021-09-25 22:31:11','2021-09-25 22:31:11','',1480,'https://www.drfields.com/?p=4891',0,'revision','',0),(4892,9,'2021-09-25 22:31:33','2021-09-25 22:31:33','<h2>Knee And Hip Replacements Increase Heart Attack Risk</h2>\r\n<img class=\"alignleft size-full wp-image-1123\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/man-heart-attack-200.jpg\" alt=\"Man Heart Attack 200\" width=\"200\" height=\"300\" />Over 27 million Americans suffer from osteoarthritis (OA),  a chronic degenerative disease of the joints. And when the pain gets unbearable, many people opt to have joint replacement surgery. Surgery is a common go-to, especially considering how often it is recommended.  But remember, all surgery has risks! And knee and hip replacements increase heart attack risk.\r\n\r\nIn this article, we\'ll take a look at a few studies and the conclusions the researchers came to. Interestingly, in one of the studies, the researchers were trying to prove that knee and hip replacement surgery decrease heart attack risk. However, the results showed that overall risks were substantially increased in both the total knee and total hip groups.\r\n<h3>What Is the Reason for the Elevated Risk?</h3>\r\n\'The reason for the elevated risks is unclear at this point\", said senior author Yuqing Zhang of Boston University School of Medicine. Regardless, he said, the findings suggest that the risk of a heart attack in the weeks after total <a href=\"/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">joint replacement surgery</a> “may have been previously underappreciated,” and ways to prevent this serious complication may need to be considered.\r\n\r\nZhang and colleagues studied roughly 40,000 patients age 50 or older, all with osteoarthritis. They compared 13,849 patients who underwent total knee replacement to 13,849 closely matched people who did not have surgery. They also compared about 6,000 patients who had hip replacement surgery to 6,000 who did not.\r\n\r\nWithin a month after the operations, there were 35 heart attacks among knee replacement patients, compared to four in the control group. In that same period, there were 13 heart attacks in the hip replacement group vs three in the control group.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nHeart attack risk was highest in that first month following surgery and declined again over time, the authors reported in Arthritis &amp; Rheumatology. By three years after the operations, heart attack rates had evened out for the surgery groups and the control groups.\r\n<h3>Blood Clot Risk with Joint Replacement</h3>\r\nAs for a type of blood clot known as venous thromboembolism, the knee replacement patients had 190 in the first month, compared to three in the control group. The hip surgery patients had 78; the control group had just one. So that is a significant rate of blood clots.\r\n\r\n<img class=\"alignright size-full wp-image-1125\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-illustration-200.jpg\" alt=\"Knee Illustration 200\" width=\"200\" height=\"266\" />Five years later, the odds of having venous thromboembolism were still significantly higher in the surgery groups\r\n\r\nIndeed, Zhang said, the health risks and benefits of joint replacement surgery remain complicated. And this study’s findings cannot quantify them for an individual patient.\r\n<h3>Increased Risk of Atrial Fibrillation (AF)</h3>\r\nA 2021 study in the medical journal Gerontology showed an increased risk of atrial fibrillation, a common heart arrhythmia, after knee and hip replacement surgery. They studied 280 patients compared to a group of 280 control patients with no AF. New-onset AF was defined as AF demonstrated postoperatively in patients with no previous clinical history of atrial fibrillation. One-year mortality in elderly patients undergoing total knee or total hip replacement is significantly increased in the patients that develop new postoperative atrial fibrillation.2\r\n\r\nClinical consequences of AF include decreased cardiac output and risk of thromboembolism, and the presence of AF is associated with increased mortality. AF has also been associated with an increased 30-day mortality rate (6.4%) after noncardiac surgery.\r\n<ol>\r\n 	<li>SOURCE: <a href=\"http://bit.ly/1NIXl8o\" target=\"_blank\" rel=\"noopener noreferrer\">http://bit.ly/1NIXl8o</a> Arthritis &amp; Rheumatology, online August 31, 2015.</li>\r\n</ol>\r\n2. Varon, Ben, et al. \"New-Onset Perioperative Atrial Fibrillation Is Associated with Increased All-Cause Mortality in Elderly Patients Undergoing Total Knee   and Hip Replacements.\" <i>Gerontology</i> (2021): 1-6.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee And Hip Replacements Increase Heart Attack Risk','','inherit','closed','closed','','1480-revision-v1','','','2021-09-25 22:31:33','2021-09-25 22:31:33','',1480,'https://www.drfields.com/?p=4892',0,'revision','',0),(4893,9,'2021-09-25 22:32:13','2021-09-25 22:32:13','<h2>Knee And Hip Replacements Increase Heart Attack Risk</h2>\r\n<img class=\" wp-image-1123 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/man-heart-attack-200.jpg\" alt=\"Man Heart Attack 200\" width=\"252\" height=\"378\" />Over 27 million Americans suffer from osteoarthritis (OA),  a chronic degenerative disease of the joints. And when the pain gets unbearable, many people opt to have joint replacement surgery. Surgery is a common go-to, especially considering how often it is recommended.  But remember, all surgery has risks! And knee and hip replacements increase heart attack risk.\r\n\r\nIn this article, we\'ll take a look at a few studies and the conclusions the researchers came to. Interestingly, in one of the studies, the researchers were trying to prove that knee and hip replacement surgery decrease heart attack risk. However, the results showed that overall risks were substantially increased in both the total knee and total hip groups.\r\n<h3>What Is the Reason for the Elevated Risk?</h3>\r\n\'The reason for the elevated risks is unclear at this point\", said senior author Yuqing Zhang of Boston University School of Medicine. Regardless, he said, the findings suggest that the risk of a heart attack in the weeks after total <a href=\"/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">joint replacement surgery</a> “may have been previously underappreciated,” and ways to prevent this serious complication may need to be considered.\r\n\r\nZhang and colleagues studied roughly 40,000 patients age 50 or older, all with osteoarthritis. They compared 13,849 patients who underwent total knee replacement to 13,849 closely matched people who did not have surgery. They also compared about 6,000 patients who had hip replacement surgery to 6,000 who did not.\r\n\r\nWithin a month after the operations, there were 35 heart attacks among knee replacement patients, compared to four in the control group. In that same period, there were 13 heart attacks in the hip replacement group vs three in the control group.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nHeart attack risk was highest in that first month following surgery and declined again over time, the authors reported in Arthritis &amp; Rheumatology. By three years after the operations, heart attack rates had evened out for the surgery groups and the control groups.\r\n<h3>Blood Clot Risk with Joint Replacement</h3>\r\nAs for a type of blood clot known as venous thromboembolism, the knee replacement patients had 190 in the first month, compared to three in the control group. The hip surgery patients had 78; the control group had just one. So that is a significant rate of blood clots.\r\n\r\n<img class=\"alignright size-full wp-image-1125\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-illustration-200.jpg\" alt=\"Knee Illustration 200\" width=\"200\" height=\"266\" />Five years later, the odds of having venous thromboembolism were still significantly higher in the surgery groups\r\n\r\nIndeed, Zhang said, the health risks and benefits of joint replacement surgery remain complicated. And this study’s findings cannot quantify them for an individual patient.\r\n<h3>Increased Risk of Atrial Fibrillation (AF)</h3>\r\nA 2021 study in the medical journal Gerontology showed an increased risk of atrial fibrillation, a common heart arrhythmia, after knee and hip replacement surgery. They studied 280 patients compared to a group of 280 control patients with no AF. New-onset AF was defined as AF demonstrated postoperatively in patients with no previous clinical history of atrial fibrillation. One-year mortality in elderly patients undergoing total knee or total hip replacement is significantly increased in the patients that develop new postoperative atrial fibrillation.2\r\n\r\nClinical consequences of AF include decreased cardiac output and risk of thromboembolism, and the presence of AF is associated with increased mortality. AF has also been associated with an increased 30-day mortality rate (6.4%) after noncardiac surgery.\r\n<ol>\r\n 	<li>SOURCE: <a href=\"http://bit.ly/1NIXl8o\" target=\"_blank\" rel=\"noopener noreferrer\">http://bit.ly/1NIXl8o</a> Arthritis &amp; Rheumatology, online August 31, 2015.</li>\r\n</ol>\r\n2. Varon, Ben, et al. \"New-Onset Perioperative Atrial Fibrillation Is Associated with Increased All-Cause Mortality in Elderly Patients Undergoing Total Knee   and Hip Replacements.\" <i>Gerontology</i> (2021): 1-6.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee And Hip Replacements Increase Heart Attack Risk','','inherit','closed','closed','','1480-revision-v1','','','2021-09-25 22:32:13','2021-09-25 22:32:13','',1480,'https://www.drfields.com/?p=4893',0,'revision','',0),(4894,9,'2021-09-25 22:45:01','2021-09-25 22:45:01','Heart Attack (1)','Heart Attack (1)','Heart Attack (1)','inherit','open','closed','','heart-attack-1','','','2021-09-25 22:45:01','2021-09-25 22:45:01','',1480,'https://www.drfields.com/wp-content/uploads/2019/06/heart-attack-1.png',0,'attachment','image/png',0),(4895,9,'2021-09-25 22:45:52','2021-09-25 22:45:52','<h2>Knee And Hip Replacements Increase Heart Attack Risk</h2>\r\n<img class=\"wp-image-4894 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/heart-attack-1-359x500.png\" alt=\"Heart Attack (1)\" width=\"359\" height=\"500\" />\r\n\r\nOver 27 million Americans suffer from osteoarthritis (OA),  a chronic degenerative disease of the joints. And when the pain gets unbearable, many people opt to have joint replacement surgery. Surgery is a common go-to, especially considering how often it is recommended.  But remember, all surgery has risks! And knee and hip replacements increase heart attack risk.\r\n\r\nIn this article, we\'ll take a look at a few studies and the conclusions the researchers came to. Interestingly, in one of the studies, the researchers were trying to prove that knee and hip replacement surgery decrease heart attack risk. However, the results showed that overall risks were substantially increased in both the total knee and total hip groups.\r\n<h3>What Is the Reason for the Elevated Risk?</h3>\r\n\'The reason for the elevated risks is unclear at this point\", said senior author Yuqing Zhang of Boston University School of Medicine. Regardless, he said, the findings suggest that the risk of a heart attack in the weeks after total <a href=\"/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">joint replacement surgery</a> “may have been previously underappreciated,” and ways to prevent this serious complication may need to be considered.\r\n\r\nZhang and colleagues studied roughly 40,000 patients age 50 or older, all with osteoarthritis. They compared 13,849 patients who underwent total knee replacement to 13,849 closely matched people who did not have surgery. They also compared about 6,000 patients who had hip replacement surgery to 6,000 who did not.\r\n\r\nWithin a month after the operations, there were 35 heart attacks among knee replacement patients, compared to four in the control group. In that same period, there were 13 heart attacks in the hip replacement group vs three in the control group.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nHeart attack risk was highest in that first month following surgery and declined again over time, the authors reported in Arthritis &amp; Rheumatology. By three years after the operations, heart attack rates had evened out for the surgery groups and the control groups.\r\n<h3>Blood Clot Risk with Joint Replacement</h3>\r\nAs for a type of blood clot known as venous thromboembolism, the knee replacement patients had 190 in the first month, compared to three in the control group. The hip surgery patients had 78; the control group had just one. So that is a significant rate of blood clots.\r\n\r\n<img class=\"alignright size-full wp-image-1125\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-illustration-200.jpg\" alt=\"Knee Illustration 200\" width=\"200\" height=\"266\" />Five years later, the odds of having venous thromboembolism were still significantly higher in the surgery groups\r\n\r\nIndeed, Zhang said, the health risks and benefits of joint replacement surgery remain complicated. And this study’s findings cannot quantify them for an individual patient.\r\n<h3>Increased Risk of Atrial Fibrillation (AF)</h3>\r\nA 2021 study in the medical journal Gerontology showed an increased risk of atrial fibrillation, a common heart arrhythmia, after knee and hip replacement surgery. They studied 280 patients compared to a group of 280 control patients with no AF. New-onset AF was defined as AF demonstrated postoperatively in patients with no previous clinical history of atrial fibrillation. One-year mortality in elderly patients undergoing total knee or total hip replacement is significantly increased in the patients that develop new postoperative atrial fibrillation.2\r\n\r\nClinical consequences of AF include decreased cardiac output and risk of thromboembolism, and the presence of AF is associated with increased mortality. AF has also been associated with an increased 30-day mortality rate (6.4%) after noncardiac surgery.\r\n<ol>\r\n 	<li>SOURCE: <a href=\"http://bit.ly/1NIXl8o\" target=\"_blank\" rel=\"noopener noreferrer\">http://bit.ly/1NIXl8o</a> Arthritis &amp; Rheumatology, online August 31, 2015.</li>\r\n</ol>\r\n2. Varon, Ben, et al. \"New-Onset Perioperative Atrial Fibrillation Is Associated with Increased All-Cause Mortality in Elderly Patients Undergoing Total Knee   and Hip Replacements.\" <i>Gerontology</i> (2021): 1-6.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee And Hip Replacements Increase Heart Attack Risk','','inherit','closed','closed','','1480-revision-v1','','','2021-09-25 22:45:52','2021-09-25 22:45:52','',1480,'https://www.drfields.com/?p=4895',0,'revision','',0),(4896,9,'2021-09-25 22:46:04','2021-09-25 22:46:04','<h2>Knee And Hip Replacements Increase Heart Attack Risk</h2>\r\n<img class=\"wp-image-4894 size-medium alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/heart-attack-1-359x500.png\" alt=\"Heart Attack (1)\" width=\"359\" height=\"500\" />\r\n\r\nOver 27 million Americans suffer from osteoarthritis (OA),  a chronic degenerative disease of the joints. And when the pain gets unbearable, many people opt to have joint replacement surgery. Surgery is a common go-to, especially considering how often it is recommended.  But remember, all surgery has risks! And knee and hip replacements increase heart attack risk.\r\n\r\nIn this article, we\'ll take a look at a few studies and the conclusions the researchers came to. Interestingly, in one of the studies, the researchers were trying to prove that knee and hip replacement surgery decrease heart attack risk. However, the results showed that overall risks were substantially increased in both the total knee and total hip groups.\r\n<h3>What Is the Reason for the Elevated Risk?</h3>\r\n\'The reason for the elevated risks is unclear at this point\", said senior author Yuqing Zhang of Boston University School of Medicine. Regardless, he said, the findings suggest that the risk of a heart attack in the weeks after total <a href=\"/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy\">joint replacement surgery</a> “may have been previously underappreciated,” and ways to prevent this serious complication may need to be considered.\r\n\r\nZhang and colleagues studied roughly 40,000 patients age 50 or older, all with osteoarthritis. They compared 13,849 patients who underwent total knee replacement to 13,849 closely matched people who did not have surgery. They also compared about 6,000 patients who had hip replacement surgery to 6,000 who did not.\r\n\r\nWithin a month after the operations, there were 35 heart attacks among knee replacement patients, compared to four in the control group. In that same period, there were 13 heart attacks in the hip replacement group vs three in the control group.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nHeart attack risk was highest in that first month following surgery and declined again over time, the authors reported in Arthritis &amp; Rheumatology. By three years after the operations, heart attack rates had evened out for the surgery groups and the control groups.\r\n<h3>Blood Clot Risk with Joint Replacement</h3>\r\nAs for a type of blood clot known as venous thromboembolism, the knee replacement patients had 190 in the first month, compared to three in the control group. The hip surgery patients had 78; the control group had just one. So that is a significant rate of blood clots.\r\n\r\n<img class=\"alignright size-full wp-image-1125\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-illustration-200.jpg\" alt=\"Knee Illustration 200\" width=\"200\" height=\"266\" />Five years later, the odds of having venous thromboembolism were still significantly higher in the surgery groups\r\n\r\nIndeed, Zhang said, the health risks and benefits of joint replacement surgery remain complicated. And this study’s findings cannot quantify them for an individual patient.\r\n<h3>Increased Risk of Atrial Fibrillation (AF)</h3>\r\nA 2021 study in the medical journal Gerontology showed an increased risk of atrial fibrillation, a common heart arrhythmia, after knee and hip replacement surgery. They studied 280 patients compared to a group of 280 control patients with no AF. New-onset AF was defined as AF demonstrated postoperatively in patients with no previous clinical history of atrial fibrillation. One-year mortality in elderly patients undergoing total knee or total hip replacement is significantly increased in the patients that develop new postoperative atrial fibrillation.2\r\n\r\nClinical consequences of AF include decreased cardiac output and risk of thromboembolism, and the presence of AF is associated with increased mortality. AF has also been associated with an increased 30-day mortality rate (6.4%) after noncardiac surgery.\r\n<ol>\r\n 	<li>SOURCE: <a href=\"http://bit.ly/1NIXl8o\" target=\"_blank\" rel=\"noopener noreferrer\">http://bit.ly/1NIXl8o</a> Arthritis &amp; Rheumatology, online August 31, 2015.</li>\r\n</ol>\r\n2. Varon, Ben, et al. \"New-Onset Perioperative Atrial Fibrillation Is Associated with Increased All-Cause Mortality in Elderly Patients Undergoing Total Knee   and Hip Replacements.\" <i>Gerontology</i> (2021): 1-6.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee And Hip Replacements Increase Heart Attack Risk','','inherit','closed','closed','','1480-revision-v1','','','2021-09-25 22:46:04','2021-09-25 22:46:04','',1480,'https://www.drfields.com/?p=4896',0,'revision','',0),(4897,9,'2023-03-15 19:24:49','2023-03-15 19:24:49','<h2>Hand Injury Treatment</h2>\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Hand Injury Treatment Suzie Wrist\"]\n<strong>Suzie - Wrist</strong></div>\n<h4>Prolotherapy Hand and Wrist Injuries and Treatment</h4>\nWhether you suffer from a sprained finger from football or baseball or wrist pain from tennis or golf, OrthoRegen<sup>®</sup> treats numerous finger, hand, and wrist injuries with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/ \">Prolotherapy</a> hand treatments. We can treat your pain or injury without surgery, without pain medications, or without extended time away from training and competition.\n\nIn our experience, comprehensive Prolotherapy can successfully treat pain in your fingers, hands and wrists, with optimal long-term results. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, can consult with you to determine if you are a candidate for <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Because of his participation in Triathlons and Ironman competitions, he understands your desire to return quickly to the sports in which you participate.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h4>Common Hand and Wrist Injuries are Treatable by Prolotherapy</h4>\nThe most common finger, wrist, and hand pain and injuries we treat with comprehensive Prolotherapy are:\n<ul>\n 	<li>Arthritis</li>\n 	<li>Baseball injuries</li>\n 	<li>Carpal tunnel</li>\n 	<li>Finger pain</li>\n 	<li>Football injuries</li>\n 	<li>Golf injuries</li>\n 	<li>Hand pain</li>\n 	<li>Overuse injury</li>\n 	<li>Sprain injury</li>\n 	<li>Stiffness</li>\n 	<li>Tennis injuries</li>\n 	<li>Thumb pain</li>\n 	<li>Wrist pain</li>\n</ul>\n<h4>Are You A Candidate for Prolotherapy?</h4>\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy hand injury treatments, <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy,</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Prolotherapy Hand and Wrist Testimonials page</a>.\n\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>','Hand Injury Treatment','','inherit','closed','closed','','615-autosave-v1','','','2023-03-15 19:24:49','2023-03-15 19:24:49','',615,'https://www.drfields.com/?p=4897',0,'revision','',0),(4898,9,'2021-10-01 00:55:34','2021-10-01 00:55:34','<h2>Hand Injury Treatment</h2>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Hand Injury Treatment Suzie Wrist\"]\r\n<strong>Suzie - Wrist</strong></div>\r\n<h3>Prolotherapy Hand and Wrist Injuries and Treatment</h3>\r\nWhether you are suffering from a sprained finger from football or baseball, or wrist pain from tennis or golf, OrthoRegen<sup>®</sup> treats numerous finger, hand and wrist injuries with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/ \">Prolotherapy</a> hand treatments. We can treat your pain or injury without surgery, without pain medications or without extended time away from training and competition.\r\n\r\nIn our experience, comprehensive Prolotherapy can successfully treat pain in your fingers, hands and wrists, with optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, can consult with you to determine if you are a candidate for <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Because of his participation in Triathlons and Ironman competitions, he understands your desire to return quickly to the sports in which you participate.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Common Hand and Wrist Injuries Treatable by Prolotheraphy</h4>\r\nThe most common finger, wrist and hand pain and injuries we treat with comprehensive Prolotherapy are:\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Baseball injuries</li>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Finger pain</li>\r\n 	<li>Football injuries</li>\r\n 	<li>Golf injuries</li>\r\n 	<li>Hand pain</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Sprain injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tennis injuries</li>\r\n 	<li>Thumb pain</li>\r\n 	<li>Wrist pain</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy hand and wrist treatments, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Prolotherapy Hand and Wrist Testimonials page</a>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>','Hand Injury Treatment','','inherit','closed','closed','','615-revision-v1','','','2021-10-01 00:55:34','2021-10-01 00:55:34','',615,'https://www.drfields.com/?p=4898',0,'revision','',0),(4899,9,'2021-10-01 00:56:27','2021-10-01 00:56:27','<div class=\"youtube-click-div video_left\">\r\n[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Hand Injury Treatment Suzie Wrist\"]\r\n<strong>Suzie - Wrist</strong>\r\n</div>\r\n<h4>Prolotherapy Hand and Wrist Injuries and Treatment</h4>\r\nWhether you are suffering from a sprained finger from football or baseball, or wrist pain from tennis or golf, OrthoRegen<sup>®</sup> treats numerous finger, hand and wrist injuries with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\r\n\">Prolotherapy</a> hand treatments. We can treat your pain or injury without surgery, without pain medications or without extended time away from training and competition.\r\n\r\nIn our experience, comprehensive Prolotherapy can successfully treat pain in your fingers, hands and wrists, with optimal long term results. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, can consult with you to determine if you are a candidate for <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Because of his participation in Triathlons and Ironman competitions, he understands your desire to return quickly to the sports in which you participate.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\n<h4>Common Hand and Wrist Injuries Treatable by Prolotheraphy</h4>\r\nThe most common finger, wrist and hand pain and injuries we treat with comprehensive Prolotherapy are:\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Baseball injuries</li>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Finger pain</li>\r\n 	<li>Football injuries</li>\r\n 	<li>Golf injuries</li>\r\n 	<li>Hand pain</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Sprain injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tennis injuries</li>\r\n 	<li>Thumb pain</li>\r\n 	<li>Wrist pain</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy hand and wrist treatments, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Prolotherapy Hand and Wrist Testimonials page</a>.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&promocode=CLT/\" style=\"display: block; margin: 0 auto; max-width: 275px;\"><img width=\"275\" style=\"max-width:100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\"/></a>','Hand Injury Treatment','','inherit','closed','closed','','615-revision-v1','','','2021-10-01 00:56:27','2021-10-01 00:56:27','',615,'https://www.drfields.com/?p=4899',0,'revision','',0),(4900,9,'2021-10-01 01:14:27','2021-10-01 01:14:27','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Day Seven Hike</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Climbing to the top and beginning the descent</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-10-01 01:14:27','2021-10-01 01:14:27','',2208,'https://www.drfields.com/?p=4900',0,'revision','',0),(4901,9,'2021-10-01 01:48:25','2021-10-01 01:48:25','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Pre-Climb Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>First Day Hike Towards Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Second Day Hike</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descnet and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-10-01 01:48:25','2021-10-01 01:48:25','',2208,'https://www.drfields.com/?p=4901',0,'revision','',0),(4902,9,'2021-10-01 01:59:58','2021-10-01 01:59:58','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Hiking to 11,400 ft</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Day Three Hike</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Day Four Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Day Five Hike</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Day Six Hike</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descnet and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-10-01 01:59:58','2021-10-01 01:59:58','',2208,'https://www.drfields.com/?p=4902',0,'revision','',0),(4903,9,'2021-10-01 02:04:53','2021-10-01 02:04:53','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Hiking to 11,400 ft</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descnet and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-10-01 02:04:53','2021-10-01 02:04:53','',2208,'https://www.drfields.com/?p=4903',0,'revision','',0),(4904,9,'2021-10-04 01:47:09','2021-10-04 01:47:09','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Hiking to 11,400 ft</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the road by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only one thousand feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff ( only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night, we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was only about 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. But it was worse for me while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas and guides. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to cross. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2021-10-04 01:47:09','2021-10-04 01:47:09','',2208,'https://www.drfields.com/?p=4904',0,'revision','',0),(4907,9,'2022-02-25 23:07:30','2022-02-25 23:07:30','<div></div>\n<h2 style=\"text-align: center;\">Ironman Maryland Race Report</h2>\n<div></div>\n<div class=\"col-md-8\">\n\n<img class=\"aligncenter size-full wp-image-362\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" />\n<h6 class=\"text-center\" style=\"text-align: center;\"><em>Saturday, September 29, 2018</em>\n<em>2.4-mile swim, 112-mile bike, 26.2-mile run</em></h6>\n<p class=\"text-center\"><em>\"Never lose sight of your goals\"</em>-Yvette and Fred Fields</p>\n\n<h3><strong>Here’s the story of my 10th Ironman:</strong></h3>\nI originally scheduled this to take place at Ironman Hamburg, Germany, on June 30, 2018.\nHamburg is special for me as I lived there for 9 months many years ago. And both my parents were born in Germany.\nUnfortunately, it was not meant to be.\n\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake.\n\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was <strong>Ironman Maryland</strong> at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate workouts.\n<h3><strong class=\"subhead\">Getting There:</strong></h3>\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross-country flight to Philadelphia and a short flight to a small airport near Cambridge. After checking in at the hotel,  I looked over the course and got ready for race day. The swim took place in a river that fed from the ocean. The day of the race the weather was very good.\n<h3><strong class=\"subhead\">Ironman Maryland-The Swim 2.4 miles:</strong></h3>\n<img class=\"alignleft  wp-image-363\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"242\" height=\"410\" />Ironman Maryland is notorious for rainy weather but race day was clear and without clouds. My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer, it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\n\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\n<h3><strong class=\"subhead\">The Bike 112 miles:</strong></h3>\n<img class=\"alignright  wp-image-364\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"411\" height=\"341\" />There was some wind on the bike which picked up after 40 miles. But somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours. My normal time for 56 miles is 3:10 or more.\n\nI kept pushing ahead without exerting myself too much to save myself for the run.\nAnd I did not have any stomach problems!\n\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\n<h3><strong class=\"subhead\">The Run 26.2 miles:</strong></h3>\n<img class=\"alignleft size-full wp-image-365\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"160\" height=\"301\" />As I exited the transition area to start my marathon run, I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\n\n<strong>Foot problems turned out to be my Achilles heel for this race.</strong>\n\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\n\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way, after what had happened in Hamburg, I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much.\n\nOne of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely. This helped a lot and kept me going without getting cold.\n\n<img class=\"alignright size-full wp-image-366\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"300\" height=\"338\" />So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. <strong>There is a saying that in an Ironman the run is 90% mental and the rest is in your head! Hahaha.</strong>\n\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\n\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\n</em>\n\nAll my aches and pains just faded away.\n<h3><strong class=\"subhead\">Ironman Maryland Postscript:</strong></h3>\nAs with every race, my parents’ spirit was with me the whole way. What they went through to survive fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\n\nA very dear friend of mine is going through a severe illness right now. I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\n\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\nfinishing my 10th Ironman.\n\nAnd of course, everyone who took the time to read this.\n\n<strong>Peter A. Fields, MD, DC</strong>\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\n\n</div>\n<div id=\"sidebar2\" class=\"col-md-4\"><a class=\"youtube\" href=\"https://www.youtube.com/watch?v=qTJCmEnrqYg\"><img style=\"width: 250px; height: 276px;\" title=\"Ironman Maryland 2018 Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/post-finish-400b.jpg\" alt=\"Ironman Maryland 2018 Finisher\" /></a>\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong>\nThe Athletic Doc<sup>®</sup>,\n</strong></span>Post race pic\n<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em><a href=\"https://photos.google.com/share/AF1QipN-HsVLxHi_BQ_2nP6zLXP6J8ZTFSNJ6IOp8OWMOlpDKkKhr2mo1qrbf6IRAb3iPg?key=cnNlNUFmU0VxUEZuR0lhTmVOOXp3dDB2czNkMTNB\" target=\"_blank\" rel=\"noopener noreferrer\">2018 Maryland\nClick For More Photos</a>Click below for Pictures &amp; Story\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\n<a href=\"/About/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\n<a href=\"/About/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\n\n</div>','Race Report 10th Ironman','','inherit','closed','closed','','361-autosave-v1','','','2022-02-25 23:07:30','2022-02-25 23:07:30','',361,'https://www.drfields.com/?p=4907',0,'revision','',0),(4908,9,'2021-11-29 23:43:57','2021-11-29 23:43:57','<div></div>\r\n<h2 style=\"text-align: center;\">Ironman Maryland Race Report</h2>\r\n<div></div>\r\n<div class=\"col-md-8\"><img class=\"aligncenter size-full wp-image-362\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" />\r\n<h6 class=\"text-center\" style=\"text-align: center;\"><em>Saturday, September 29, 2018</em>\r\n<em>2.4 mile swim, 112 mile bike, 26.2 mile run</em></h6>\r\n<p class=\"text-center\"><em>\"Never lose sight of your goals\"</em>-Yvette and Fred Fields</p>\r\n\r\n<h3><strong>Here’s the story of my 10th Ironman:</strong></h3>\r\nI originally scheduled this to take place at Ironman Hamburg, Germany, June 30, 2018.\r\nHamburg is special for me as I lived there for 9 months many years ago. And both my parents were born in Germany.\r\nUnfortunately, it was not meant to be.\r\n\r\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake.\r\n\r\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was <strong>Ironman Maryland</strong> at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate work outs.\r\n<h3><strong class=\"subhead\">Getting There:</strong></h3>\r\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross country flight to Philadelphia and a short flight to a small airport near Cambridge. After checking in at the hotel,  I looked over the course and got ready for race day. The swim took place in a river that fed from the ocean. The day of the race the weather was very good.\r\n<h3><strong class=\"subhead\">Ironman Maryland-The Swim 2.4 miles:</strong></h3>\r\n<img class=\"alignleft size-full wp-image-363\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"160\" height=\"301\" />Ironman Maryland is notorious for rainy weather but race day was clear and without clouds. My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer, it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\r\n\r\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\r\n<h3><strong class=\"subhead\">The Bike 112 miles:</strong></h3>\r\n<img class=\"alignright size-full wp-image-364\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"300\" height=\"250\" />There was some wind on the bike which picked up after 40 miles. But somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours. My normal time for 56 miles is 3:10 or more.\r\n\r\nI kept pushing ahead without exerting myself too much to save myself for the run.\r\nAnd I did not have any stomach problems!\r\n\r\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\r\n<h3><strong class=\"subhead\">The Run 26.2 miles:</strong></h3>\r\n<img class=\"alignleft size-full wp-image-365\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"160\" height=\"301\" />As I exited the transition area to start my marathon run, I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\r\n\r\n<strong>Foot problems turned out to be my Achilles heel for this race.</strong>\r\n\r\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\r\n\r\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way, after what had happened in Hamburg, I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much.\r\n\r\nOne of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely. This helped a lot and kept me going without getting cold.\r\n\r\n<img class=\"alignright size-full wp-image-366\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"300\" height=\"338\" />So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. <strong>There is a saying that in an Ironman the run is 90% mental and the rest is in your head! Hahaha.</strong>\r\n\r\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\r\n\r\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\r\n</em>\r\n\r\nAll my aches and pains just faded away.\r\n<h3><strong class=\"subhead\">Ironman Maryland Postscript:</strong></h3>\r\nAs with every race, my parents’ spirit was with me the whole way. What they went through to survive fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\r\n\r\nA very dear friend of mine is going through a severe illness right now. I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\r\n\r\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\r\nfinishing my 10th Ironman.\r\n\r\nAnd of course, everyone who took the time to read this.\r\n\r\n<strong>Peter A. Fields, MD, DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\"><a class=\"youtube\" href=\"https://www.youtube.com/watch?v=qTJCmEnrqYg\"><img style=\"width: 250px; height: 276px;\" title=\"Ironman Maryland 2018 Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/post-finish-400b.jpg\" alt=\"Ironman Maryland 2018 Finisher\" /></a>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong>\r\nThe Athletic Doc<sup>®</sup>,\r\n</strong></span>Post race pic\r\n<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em><a href=\"https://photos.google.com/share/AF1QipN-HsVLxHi_BQ_2nP6zLXP6J8ZTFSNJ6IOp8OWMOlpDKkKhr2mo1qrbf6IRAb3iPg?key=cnNlNUFmU0VxUEZuR0lhTmVOOXp3dDB2czNkMTNB\" target=\"_blank\" rel=\"noopener noreferrer\">2018 Maryland\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 10th Ironman','','inherit','closed','closed','','361-revision-v1','','','2021-11-29 23:43:57','2021-11-29 23:43:57','',361,'https://www.drfields.com/?p=4908',0,'revision','',0),(4910,9,'2021-12-15 02:36:59','2021-12-15 02:36:59','<h2>Bio-Identical Hormones for A Happier and Healthier Life</h2>\nA balanced program of exercise and the consumption of whole foods takes you far down the road of maintaining a healthy lifestyle. But when necessary, the inclusion of bio-identical hormone replacement therapy as recommended by your physician might be the boost you need for a happier and healthier life.\n<h3><img class=\"alignright size-full wp-image-1129\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/health-insurance.jpg\" alt=\"Health Insurance\" width=\"200\" height=\"300\" />How to Achieve Optimal Aging</h3>\nAs people age, they may encounter symptoms that make them feel less than optimal. Even those that follow healthy eating programs. It is possible to stop much of the undesirable aspects and symptoms  associated with aging. Bio-Identical Hormone Replacement Therapy (BHRT) is a science which has shown to improve the quality of your life.\n<h4><em>Your Physician Will Take A Detailed History and Perform Lab Testing</em></h4>\nPhysicians who prescribe these hormones will take a detailed history of the symptoms you experience. Following this, a laboratory evaluation of your hormone levels will be done. With these results, a personalized hormone supplementation program can be prescribed for you.\n\nAfter initiating the therapy, you will be monitored and the hormone replacements will be balanced for optimal benefits. Many patients experience how natural hormone supplementation can help with healthy aging.\n<h3>Bio-Identical Hormones Are Not the Same As Synthetic Hormones</h3>\nBio-identical hormones are prescribed, but they are natural substances that function as messengers to stimulate cells to heal, reproduce, and rejuvenate. Disease and symptoms of aging occur when hormone levels decline.\n\nNatural, bio-identical hormones are preferred over synthetic hormones, so you can achieve all of the benefits of hormone replacement without the risks and side effects associated with synthetic hormones.\n<h3>Common Bio-Identical Hormones To Boost A Happier and Healthier Lifestyle</h3>\n<strong>DHEA</strong>\nBy age 40, DHEA has declined markedly. Replacement results in immune enhancement, therefore making DHEA extremely important in cancer and infection prevention. DHEA is a precursor to the sex hormones and is therefore an important building block in the production of these hormones. DHEA helps the breakdown of fats and cholesterol, while reducing the formation of atherosclerotic plaques.\n\n<strong>ESTROGEN</strong>\nReplacement with natural estrogen protects against heart disease, stroke, Alzheimer\'s disease, and osteoporosis in women. Estrogen prevents symptoms of menopause such as hot flashes, temperature deregulation, mood swings, urogenital atrophy, decreased libido, and depression. Estrogen lowers LDL cholesterol and raises HDL (the good cholesterol).\n\n<strong>PROGESTERONE</strong>\nReplacement with natural progesterone protects against uterine and breast cancer , and also osteoporosis. Progesterone reduces symptoms of menopause. Progesterone occurs naturally with estrogen and should be prescribed concurrently to balance estrogen.\n\n<strong>MELATONIN</strong>\nThis hormone is produced by the pineal gland and declines significantly by age 40. Melatonin controls circadium rhythm and sleep cycles. It induces sleep, improves quality of sleep, and increases REM sleep and deep stage IV sleep. During this deep stage of sleep, the immune system is stimulated. It has anti-cancer effects and modulates immune function by activating the cytokine system (lymphocytic function).\n\n<strong>TESTOSTERONE</strong>\nThis hormone is necessary in both men and women and declines steadily after age 30. Testosterone is responsible for sustaining libido, muscle mass, and immunity. It protects against disease in men plus the degeneration of muscle, bone, tendon and joints. It is a great mood enhancer and imparts a sense of well being in aging men and women.\n\n<strong>THYROID</strong>\nThis metabolic hormone decreases steadily with age. Lack of thyroid hormone results in cold intolerance, fatigue, lassitude, weight gain, increased cholesterol, thin and dry skin, hair loss, thin and brittle nails. Replenishment results in reversal of these symptoms plus increased energy and metabolism.\n\n<strong>PREGNENOLONE</strong>\nDecline of this hormone occurs after age 30. This hormone aids in cellular repair of the central nervous system and is the most potent memory enhancer of all the hormones.\n\nIf you are not feeling optimal even though you are exercising and eating right, ask your doctor about bio-identical hormone replacement.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Your best health insurance','','inherit','closed','closed','','1486-autosave-v1','','','2021-12-15 02:36:59','2021-12-15 02:36:59','',1486,'https://www.drfields.com/?p=4910',0,'revision','',0),(4911,9,'2021-12-15 02:28:59','2021-12-15 02:28:59','<h2>Bio-Identical Hormones for A Happier and Healthier Life</h2>\r\nA balanced program of exercise and the consumption of whole foods takes you far down the road of maintaining a healthy lifestyle. But when necessary, the inclusion of vitamin supplementation or hormone replacement therapy as recommended by your physician might be the boost you need for a happier and healthier life.\r\n<h3><img class=\"alignright size-full wp-image-1129\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/health-insurance.jpg\" alt=\"Health Insurance\" width=\"200\" height=\"300\" />Bio-Identical Hormones As We Age</h3>\r\nAs people age, they may encounter symptoms that make them feel less than optimal. Even those that follow healthy eating programs. It is possible to stop much of the undesirable aspects and symptoms  associated with aging. Bio-Identical Hormone Replacement Therapy (BHRT) is a science which has shown to improve the quality of your life.\r\n\r\nPhysicians who prescribe these hormones will take a detailed history of the symptoms you experience. Following this, a laboratory evaluation of your hormone levels will be done. With these results, a personalized hormone supplementation program can be prescribed for you. After initiating the therapy, you will be monitored and the hormone replacements will be balanced for optimal benefits. Many patients experience how natural hormone supplementation can help with healthy aging.\r\n\r\nBio-identical hormones are prescribed, but they are natural substances that function as messengers to stimulate cells to heal, reproduce, and rejuvenate. Disease and symptoms of aging occur when hormone levels decline. Natural, bio-identical hormones are preferred over synthetic hormones, so you can achieve all of the benefits of hormone replacement without the risks and side effects associated with synthetic hormones.\r\n<h3>Common Bio-Identical Hormones To Boost A Happier and Healthier Lifestyle</h3>\r\n<strong>DHEA</strong>\r\nBy age 40, DHEA has declined markedly. Replacement results in immune enhancement, therefore making DHEA extremely important in cancer and infection prevention. DHEA is a precursor to the sex hormones and is therefore an important building block in the production of these hormones. DHEA helps the breakdown of fats and cholesterol, while reducing the formation of atherosclerotic plaques.\r\n\r\n<strong>ESTROGEN</strong>\r\nReplacement with natural estrogen protects against heart disease, stroke, Alzheimer\'s disease, and osteoporosis in women. Estrogen prevents symptoms of menopause such as hot flashes, temperature deregulation, mood swings, urogenital atrophy, decreased libido, and depression. Estrogen lowers LDL cholesterol and raises HDL (the good cholesterol).\r\n\r\n<strong>PROGESTERONE</strong>\r\nReplacement with natural progesterone protects against uterine and breast cancer , and also osteoporosis. Progesterone reduces symptoms of menopause. Progesterone occurs naturally with estrogen and should be prescribed concurrently to balance estrogen.\r\n\r\n<strong>MELATONIN</strong>\r\nThis hormone is produced by the pineal gland and declines significantly by age 40. Melatonin controls circadium rhythm and sleep cycles. It induces sleep, improves quality of sleep, and increases REM sleep and deep stage IV sleep. During this deep stage of sleep, the immune system is stimulated. It has anti-cancer effects and modulates immune function by activating the cytokine system (lymphocytic function).\r\n\r\n<strong>TESTOSTERONE</strong>\r\nThis hormone is necessary in both men and women and declines steadily after age 30. Testosterone is responsible for sustaining libido, muscle mass, and immunity. It protects against disease in men plus the degeneration of muscle, bone, tendon and joints. It is a great mood enhancer and imparts a sense of well being in aging men and women.\r\n\r\n<strong>THYROID</strong>\r\nThis metabolic hormone decreases steadily with age. Lack of thyroid hormone results in cold intolerance, fatigue, lassitude, weight gain, increased cholesterol, thin and dry skin, hair loss, thin and brittle nails. Replenishment results in reversal of these symptoms plus increased energy and metabolism.\r\n\r\n<strong>PREGNENOLONE</strong>\r\nDecline of this hormone occurs after age 30. This hormone aids in cellular repair of the central nervous system and is the most potent memory enhancer of all the hormones.\r\n\r\nIf you are not feeling optimal even though you are exercising and eating right, ask your doctor about bio-identical hormone replacement.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Your best health insurance','','inherit','closed','closed','','1486-revision-v1','','','2021-12-15 02:28:59','2021-12-15 02:28:59','',1486,'https://www.drfields.com/?p=4911',0,'revision','',0),(4912,9,'2021-12-15 02:29:40','2021-12-15 02:29:40','<h2>Bio-Identical Hormones for A Happier and Healthier Life</h2>\r\nA balanced program of exercise and the consumption of whole foods takes you far down the road of maintaining a healthy lifestyle. But when necessary, the inclusion of bio-identical hormone replacement therapy as recommended by your physician might be the boost you need for a happier and healthier life.\r\n<h3><img class=\"alignright size-full wp-image-1129\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/health-insurance.jpg\" alt=\"Health Insurance\" width=\"200\" height=\"300\" />Bio-Identical Hormones As We Age</h3>\r\nAs people age, they may encounter symptoms that make them feel less than optimal. Even those that follow healthy eating programs. It is possible to stop much of the undesirable aspects and symptoms  associated with aging. Bio-Identical Hormone Replacement Therapy (BHRT) is a science which has shown to improve the quality of your life.\r\n\r\nPhysicians who prescribe these hormones will take a detailed history of the symptoms you experience. Following this, a laboratory evaluation of your hormone levels will be done. With these results, a personalized hormone supplementation program can be prescribed for you. After initiating the therapy, you will be monitored and the hormone replacements will be balanced for optimal benefits. Many patients experience how natural hormone supplementation can help with healthy aging.\r\n\r\nBio-identical hormones are prescribed, but they are natural substances that function as messengers to stimulate cells to heal, reproduce, and rejuvenate. Disease and symptoms of aging occur when hormone levels decline. Natural, bio-identical hormones are preferred over synthetic hormones, so you can achieve all of the benefits of hormone replacement without the risks and side effects associated with synthetic hormones.\r\n<h3>Common Bio-Identical Hormones To Boost A Happier and Healthier Lifestyle</h3>\r\n<strong>DHEA</strong>\r\nBy age 40, DHEA has declined markedly. Replacement results in immune enhancement, therefore making DHEA extremely important in cancer and infection prevention. DHEA is a precursor to the sex hormones and is therefore an important building block in the production of these hormones. DHEA helps the breakdown of fats and cholesterol, while reducing the formation of atherosclerotic plaques.\r\n\r\n<strong>ESTROGEN</strong>\r\nReplacement with natural estrogen protects against heart disease, stroke, Alzheimer\'s disease, and osteoporosis in women. Estrogen prevents symptoms of menopause such as hot flashes, temperature deregulation, mood swings, urogenital atrophy, decreased libido, and depression. Estrogen lowers LDL cholesterol and raises HDL (the good cholesterol).\r\n\r\n<strong>PROGESTERONE</strong>\r\nReplacement with natural progesterone protects against uterine and breast cancer , and also osteoporosis. Progesterone reduces symptoms of menopause. Progesterone occurs naturally with estrogen and should be prescribed concurrently to balance estrogen.\r\n\r\n<strong>MELATONIN</strong>\r\nThis hormone is produced by the pineal gland and declines significantly by age 40. Melatonin controls circadium rhythm and sleep cycles. It induces sleep, improves quality of sleep, and increases REM sleep and deep stage IV sleep. During this deep stage of sleep, the immune system is stimulated. It has anti-cancer effects and modulates immune function by activating the cytokine system (lymphocytic function).\r\n\r\n<strong>TESTOSTERONE</strong>\r\nThis hormone is necessary in both men and women and declines steadily after age 30. Testosterone is responsible for sustaining libido, muscle mass, and immunity. It protects against disease in men plus the degeneration of muscle, bone, tendon and joints. It is a great mood enhancer and imparts a sense of well being in aging men and women.\r\n\r\n<strong>THYROID</strong>\r\nThis metabolic hormone decreases steadily with age. Lack of thyroid hormone results in cold intolerance, fatigue, lassitude, weight gain, increased cholesterol, thin and dry skin, hair loss, thin and brittle nails. Replenishment results in reversal of these symptoms plus increased energy and metabolism.\r\n\r\n<strong>PREGNENOLONE</strong>\r\nDecline of this hormone occurs after age 30. This hormone aids in cellular repair of the central nervous system and is the most potent memory enhancer of all the hormones.\r\n\r\nIf you are not feeling optimal even though you are exercising and eating right, ask your doctor about bio-identical hormone replacement.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Your best health insurance','','inherit','closed','closed','','1486-revision-v1','','','2021-12-15 02:29:40','2021-12-15 02:29:40','',1486,'https://www.drfields.com/?p=4912',0,'revision','',0),(4913,9,'2021-12-15 02:32:18','2021-12-15 02:32:18','<h2>Bio-Identical Hormones for A Happier and Healthier Life</h2>\r\nA balanced program of exercise and the consumption of whole foods takes you far down the road of maintaining a healthy lifestyle. But when necessary, the inclusion of bio-identical hormone replacement therapy as recommended by your physician might be the boost you need for a happier and healthier life.\r\n<h3><img class=\"alignright size-full wp-image-1129\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/health-insurance.jpg\" alt=\"Health Insurance\" width=\"200\" height=\"300\" />How to Achieve Optimal Aging</h3>\r\nAs people age, they may encounter symptoms that make them feel less than optimal. Even those that follow healthy eating programs. It is possible to stop much of the undesirable aspects and symptoms  associated with aging. Bio-Identical Hormone Replacement Therapy (BHRT) is a science which has shown to improve the quality of your life.\r\n\r\nPhysicians who prescribe these hormones will take a detailed history of the symptoms you experience. Following this, a laboratory evaluation of your hormone levels will be done. With these results, a personalized hormone supplementation program can be prescribed for you. After initiating the therapy, you will be monitored and the hormone replacements will be balanced for optimal benefits. Many patients experience how natural hormone supplementation can help with healthy aging.\r\n\r\nBio-identical hormones are prescribed, but they are natural substances that function as messengers to stimulate cells to heal, reproduce, and rejuvenate. Disease and symptoms of aging occur when hormone levels decline. Natural, bio-identical hormones are preferred over synthetic hormones, so you can achieve all of the benefits of hormone replacement without the risks and side effects associated with synthetic hormones.\r\n<h3>Common Bio-Identical Hormones To Boost A Happier and Healthier Lifestyle</h3>\r\n<strong>DHEA</strong>\r\nBy age 40, DHEA has declined markedly. Replacement results in immune enhancement, therefore making DHEA extremely important in cancer and infection prevention. DHEA is a precursor to the sex hormones and is therefore an important building block in the production of these hormones. DHEA helps the breakdown of fats and cholesterol, while reducing the formation of atherosclerotic plaques.\r\n\r\n<strong>ESTROGEN</strong>\r\nReplacement with natural estrogen protects against heart disease, stroke, Alzheimer\'s disease, and osteoporosis in women. Estrogen prevents symptoms of menopause such as hot flashes, temperature deregulation, mood swings, urogenital atrophy, decreased libido, and depression. Estrogen lowers LDL cholesterol and raises HDL (the good cholesterol).\r\n\r\n<strong>PROGESTERONE</strong>\r\nReplacement with natural progesterone protects against uterine and breast cancer , and also osteoporosis. Progesterone reduces symptoms of menopause. Progesterone occurs naturally with estrogen and should be prescribed concurrently to balance estrogen.\r\n\r\n<strong>MELATONIN</strong>\r\nThis hormone is produced by the pineal gland and declines significantly by age 40. Melatonin controls circadium rhythm and sleep cycles. It induces sleep, improves quality of sleep, and increases REM sleep and deep stage IV sleep. During this deep stage of sleep, the immune system is stimulated. It has anti-cancer effects and modulates immune function by activating the cytokine system (lymphocytic function).\r\n\r\n<strong>TESTOSTERONE</strong>\r\nThis hormone is necessary in both men and women and declines steadily after age 30. Testosterone is responsible for sustaining libido, muscle mass, and immunity. It protects against disease in men plus the degeneration of muscle, bone, tendon and joints. It is a great mood enhancer and imparts a sense of well being in aging men and women.\r\n\r\n<strong>THYROID</strong>\r\nThis metabolic hormone decreases steadily with age. Lack of thyroid hormone results in cold intolerance, fatigue, lassitude, weight gain, increased cholesterol, thin and dry skin, hair loss, thin and brittle nails. Replenishment results in reversal of these symptoms plus increased energy and metabolism.\r\n\r\n<strong>PREGNENOLONE</strong>\r\nDecline of this hormone occurs after age 30. This hormone aids in cellular repair of the central nervous system and is the most potent memory enhancer of all the hormones.\r\n\r\nIf you are not feeling optimal even though you are exercising and eating right, ask your doctor about bio-identical hormone replacement.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Your best health insurance','','inherit','closed','closed','','1486-revision-v1','','','2021-12-15 02:32:18','2021-12-15 02:32:18','',1486,'https://www.drfields.com/?p=4913',0,'revision','',0),(4914,9,'2021-12-15 02:34:33','2021-12-15 02:34:33','<h2>Bio-Identical Hormones for A Happier and Healthier Life</h2>\r\nA balanced program of exercise and the consumption of whole foods takes you far down the road of maintaining a healthy lifestyle. But when necessary, the inclusion of bio-identical hormone replacement therapy as recommended by your physician might be the boost you need for a happier and healthier life.\r\n<h3><img class=\"alignright size-full wp-image-1129\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/health-insurance.jpg\" alt=\"Health Insurance\" width=\"200\" height=\"300\" />How to Achieve Optimal Aging</h3>\r\nAs people age, they may encounter symptoms that make them feel less than optimal. Even those that follow healthy eating programs. It is possible to stop much of the undesirable aspects and symptoms  associated with aging. Bio-Identical Hormone Replacement Therapy (BHRT) is a science which has shown to improve the quality of your life.\r\n\r\nPhysicians who prescribe these hormones will take a detailed history of the symptoms you experience. Following this, a laboratory evaluation of your hormone levels will be done. With these results, a personalized hormone supplementation program can be prescribed for you. After initiating the therapy, you will be monitored and the hormone replacements will be balanced for optimal benefits. Many patients experience how natural hormone supplementation can help with healthy aging.\r\n<h3>Bio-Identical Hormones Are Not the Same As Synthetic Hormones</h3>\r\nBio-identical hormones are prescribed, but they are natural substances that function as messengers to stimulate cells to heal, reproduce, and rejuvenate. Disease and symptoms of aging occur when hormone levels decline. Natural, bio-identical hormones are preferred over synthetic hormones, so you can achieve all of the benefits of hormone replacement without the risks and side effects associated with synthetic hormones.\r\n<h3>Common Bio-Identical Hormones To Boost A Happier and Healthier Lifestyle</h3>\r\n<strong>DHEA</strong>\r\nBy age 40, DHEA has declined markedly. Replacement results in immune enhancement, therefore making DHEA extremely important in cancer and infection prevention. DHEA is a precursor to the sex hormones and is therefore an important building block in the production of these hormones. DHEA helps the breakdown of fats and cholesterol, while reducing the formation of atherosclerotic plaques.\r\n\r\n<strong>ESTROGEN</strong>\r\nReplacement with natural estrogen protects against heart disease, stroke, Alzheimer\'s disease, and osteoporosis in women. Estrogen prevents symptoms of menopause such as hot flashes, temperature deregulation, mood swings, urogenital atrophy, decreased libido, and depression. Estrogen lowers LDL cholesterol and raises HDL (the good cholesterol).\r\n\r\n<strong>PROGESTERONE</strong>\r\nReplacement with natural progesterone protects against uterine and breast cancer , and also osteoporosis. Progesterone reduces symptoms of menopause. Progesterone occurs naturally with estrogen and should be prescribed concurrently to balance estrogen.\r\n\r\n<strong>MELATONIN</strong>\r\nThis hormone is produced by the pineal gland and declines significantly by age 40. Melatonin controls circadium rhythm and sleep cycles. It induces sleep, improves quality of sleep, and increases REM sleep and deep stage IV sleep. During this deep stage of sleep, the immune system is stimulated. It has anti-cancer effects and modulates immune function by activating the cytokine system (lymphocytic function).\r\n\r\n<strong>TESTOSTERONE</strong>\r\nThis hormone is necessary in both men and women and declines steadily after age 30. Testosterone is responsible for sustaining libido, muscle mass, and immunity. It protects against disease in men plus the degeneration of muscle, bone, tendon and joints. It is a great mood enhancer and imparts a sense of well being in aging men and women.\r\n\r\n<strong>THYROID</strong>\r\nThis metabolic hormone decreases steadily with age. Lack of thyroid hormone results in cold intolerance, fatigue, lassitude, weight gain, increased cholesterol, thin and dry skin, hair loss, thin and brittle nails. Replenishment results in reversal of these symptoms plus increased energy and metabolism.\r\n\r\n<strong>PREGNENOLONE</strong>\r\nDecline of this hormone occurs after age 30. This hormone aids in cellular repair of the central nervous system and is the most potent memory enhancer of all the hormones.\r\n\r\nIf you are not feeling optimal even though you are exercising and eating right, ask your doctor about bio-identical hormone replacement.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Your best health insurance','','inherit','closed','closed','','1486-revision-v1','','','2021-12-15 02:34:33','2021-12-15 02:34:33','',1486,'https://www.drfields.com/?p=4914',0,'revision','',0),(4915,9,'2021-12-15 02:35:57','2021-12-15 02:35:57','<h2>Bio-Identical Hormones for A Happier and Healthier Life</h2>\r\nA balanced program of exercise and the consumption of whole foods takes you far down the road of maintaining a healthy lifestyle. But when necessary, the inclusion of bio-identical hormone replacement therapy as recommended by your physician might be the boost you need for a happier and healthier life.\r\n<h3><img class=\"alignright size-full wp-image-1129\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/health-insurance.jpg\" alt=\"Health Insurance\" width=\"200\" height=\"300\" />How to Achieve Optimal Aging</h3>\r\nAs people age, they may encounter symptoms that make them feel less than optimal. Even those that follow healthy eating programs. It is possible to stop much of the undesirable aspects and symptoms  associated with aging. Bio-Identical Hormone Replacement Therapy (BHRT) is a science which has shown to improve the quality of your life.\r\n<h3><em>Your Physician Will Take A Detailed History and Perform Lab Testing</em></h3>\r\nPhysicians who prescribe these hormones will take a detailed history of the symptoms you experience. Following this, a laboratory evaluation of your hormone levels will be done. With these results, a personalized hormone supplementation program can be prescribed for you. After initiating the therapy, you will be monitored and the hormone replacements will be balanced for optimal benefits. Many patients experience how natural hormone supplementation can help with healthy aging.\r\n<h3>Bio-Identical Hormones Are Not the Same As Synthetic Hormones</h3>\r\nBio-identical hormones are prescribed, but they are natural substances that function as messengers to stimulate cells to heal, reproduce, and rejuvenate. Disease and symptoms of aging occur when hormone levels decline. Natural, bio-identical hormones are preferred over synthetic hormones, so you can achieve all of the benefits of hormone replacement without the risks and side effects associated with synthetic hormones.\r\n<h3>Common Bio-Identical Hormones To Boost A Happier and Healthier Lifestyle</h3>\r\n<strong>DHEA</strong>\r\nBy age 40, DHEA has declined markedly. Replacement results in immune enhancement, therefore making DHEA extremely important in cancer and infection prevention. DHEA is a precursor to the sex hormones and is therefore an important building block in the production of these hormones. DHEA helps the breakdown of fats and cholesterol, while reducing the formation of atherosclerotic plaques.\r\n\r\n<strong>ESTROGEN</strong>\r\nReplacement with natural estrogen protects against heart disease, stroke, Alzheimer\'s disease, and osteoporosis in women. Estrogen prevents symptoms of menopause such as hot flashes, temperature deregulation, mood swings, urogenital atrophy, decreased libido, and depression. Estrogen lowers LDL cholesterol and raises HDL (the good cholesterol).\r\n\r\n<strong>PROGESTERONE</strong>\r\nReplacement with natural progesterone protects against uterine and breast cancer , and also osteoporosis. Progesterone reduces symptoms of menopause. Progesterone occurs naturally with estrogen and should be prescribed concurrently to balance estrogen.\r\n\r\n<strong>MELATONIN</strong>\r\nThis hormone is produced by the pineal gland and declines significantly by age 40. Melatonin controls circadium rhythm and sleep cycles. It induces sleep, improves quality of sleep, and increases REM sleep and deep stage IV sleep. During this deep stage of sleep, the immune system is stimulated. It has anti-cancer effects and modulates immune function by activating the cytokine system (lymphocytic function).\r\n\r\n<strong>TESTOSTERONE</strong>\r\nThis hormone is necessary in both men and women and declines steadily after age 30. Testosterone is responsible for sustaining libido, muscle mass, and immunity. It protects against disease in men plus the degeneration of muscle, bone, tendon and joints. It is a great mood enhancer and imparts a sense of well being in aging men and women.\r\n\r\n<strong>THYROID</strong>\r\nThis metabolic hormone decreases steadily with age. Lack of thyroid hormone results in cold intolerance, fatigue, lassitude, weight gain, increased cholesterol, thin and dry skin, hair loss, thin and brittle nails. Replenishment results in reversal of these symptoms plus increased energy and metabolism.\r\n\r\n<strong>PREGNENOLONE</strong>\r\nDecline of this hormone occurs after age 30. This hormone aids in cellular repair of the central nervous system and is the most potent memory enhancer of all the hormones.\r\n\r\nIf you are not feeling optimal even though you are exercising and eating right, ask your doctor about bio-identical hormone replacement.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Your best health insurance','','inherit','closed','closed','','1486-revision-v1','','','2021-12-15 02:35:57','2021-12-15 02:35:57','',1486,'https://www.drfields.com/?p=4915',0,'revision','',0),(4916,9,'2021-12-15 02:37:00','2021-12-15 02:37:00','<h2>Bio-Identical Hormones for A Happier and Healthier Life</h2>\r\nA balanced program of exercise and the consumption of whole foods takes you far down the road of maintaining a healthy lifestyle. But when necessary, the inclusion of bio-identical hormone replacement therapy as recommended by your physician might be the boost you need for a happier and healthier life.\r\n<h3><img class=\"alignright size-full wp-image-1129\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/health-insurance.jpg\" alt=\"Health Insurance\" width=\"200\" height=\"300\" />How to Achieve Optimal Aging</h3>\r\nAs people age, they may encounter symptoms that make them feel less than optimal. Even those that follow healthy eating programs. It is possible to stop much of the undesirable aspects and symptoms  associated with aging. Bio-Identical Hormone Replacement Therapy (BHRT) is a science which has shown to improve the quality of your life.\r\n<h4><em>Your Physician Will Take A Detailed History and Perform Lab Testing</em></h4>\r\nPhysicians who prescribe these hormones will take a detailed history of the symptoms you experience. Following this, a laboratory evaluation of your hormone levels will be done. With these results, a personalized hormone supplementation program can be prescribed for you.\r\n\r\nAfter initiating the therapy, you will be monitored and the hormone replacements will be balanced for optimal benefits. Many patients experience how natural hormone supplementation can help with healthy aging.\r\n<h3>Bio-Identical Hormones Are Not the Same As Synthetic Hormones</h3>\r\nBio-identical hormones are prescribed, but they are natural substances that function as messengers to stimulate cells to heal, reproduce, and rejuvenate. Disease and symptoms of aging occur when hormone levels decline.\r\n\r\nNatural, bio-identical hormones are preferred over synthetic hormones, so you can achieve all of the benefits of hormone replacement without the risks and side effects associated with synthetic hormones.\r\n<h3>Common Bio-Identical Hormones To Boost A Happier and Healthier Lifestyle</h3>\r\n<strong>DHEA</strong>\r\nBy age 40, DHEA has declined markedly. Replacement results in immune enhancement, therefore making DHEA extremely important in cancer and infection prevention. DHEA is a precursor to the sex hormones and is therefore an important building block in the production of these hormones. DHEA helps the breakdown of fats and cholesterol, while reducing the formation of atherosclerotic plaques.\r\n\r\n<strong>ESTROGEN</strong>\r\nReplacement with natural estrogen protects against heart disease, stroke, Alzheimer\'s disease, and osteoporosis in women. Estrogen prevents symptoms of menopause such as hot flashes, temperature deregulation, mood swings, urogenital atrophy, decreased libido, and depression. Estrogen lowers LDL cholesterol and raises HDL (the good cholesterol).\r\n\r\n<strong>PROGESTERONE</strong>\r\nReplacement with natural progesterone protects against uterine and breast cancer , and also osteoporosis. Progesterone reduces symptoms of menopause. Progesterone occurs naturally with estrogen and should be prescribed concurrently to balance estrogen.\r\n\r\n<strong>MELATONIN</strong>\r\nThis hormone is produced by the pineal gland and declines significantly by age 40. Melatonin controls circadium rhythm and sleep cycles. It induces sleep, improves quality of sleep, and increases REM sleep and deep stage IV sleep. During this deep stage of sleep, the immune system is stimulated. It has anti-cancer effects and modulates immune function by activating the cytokine system (lymphocytic function).\r\n\r\n<strong>TESTOSTERONE</strong>\r\nThis hormone is necessary in both men and women and declines steadily after age 30. Testosterone is responsible for sustaining libido, muscle mass, and immunity. It protects against disease in men plus the degeneration of muscle, bone, tendon and joints. It is a great mood enhancer and imparts a sense of well being in aging men and women.\r\n\r\n<strong>THYROID</strong>\r\nThis metabolic hormone decreases steadily with age. Lack of thyroid hormone results in cold intolerance, fatigue, lassitude, weight gain, increased cholesterol, thin and dry skin, hair loss, thin and brittle nails. Replenishment results in reversal of these symptoms plus increased energy and metabolism.\r\n\r\n<strong>PREGNENOLONE</strong>\r\nDecline of this hormone occurs after age 30. This hormone aids in cellular repair of the central nervous system and is the most potent memory enhancer of all the hormones.\r\n\r\nIf you are not feeling optimal even though you are exercising and eating right, ask your doctor about bio-identical hormone replacement.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Your best health insurance','','inherit','closed','closed','','1486-revision-v1','','','2021-12-15 02:37:00','2021-12-15 02:37:00','',1486,'https://www.drfields.com/?p=4916',0,'revision','',0),(4917,9,'2021-12-15 02:37:47','2021-12-15 02:37:47','<h2>Bio-Identical Hormones for A Happier &amp; Healthier Life</h2>\r\nA balanced program of exercise and the consumption of whole foods takes you far down the road of maintaining a healthy lifestyle. But when necessary, the inclusion of bio-identical hormone replacement therapy as recommended by your physician might be the boost you need for a happier and healthier life.\r\n<h3><img class=\"alignright size-full wp-image-1129\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/health-insurance.jpg\" alt=\"Health Insurance\" width=\"200\" height=\"300\" />How to Achieve Optimal Aging</h3>\r\nAs people age, they may encounter symptoms that make them feel less than optimal. Even those that follow healthy eating programs. It is possible to stop much of the undesirable aspects and symptoms  associated with aging. Bio-Identical Hormone Replacement Therapy (BHRT) is a science which has shown to improve the quality of your life.\r\n<h4><em>Your Physician Will Take A Detailed History and Perform Lab Testing</em></h4>\r\nPhysicians who prescribe these hormones will take a detailed history of the symptoms you experience. Following this, a laboratory evaluation of your hormone levels will be done. With these results, a personalized hormone supplementation program can be prescribed for you.\r\n\r\nAfter initiating the therapy, you will be monitored and the hormone replacements will be balanced for optimal benefits. Many patients experience how natural hormone supplementation can help with healthy aging.\r\n<h3>Bio-Identical Hormones Are Not the Same As Synthetic Hormones</h3>\r\nBio-identical hormones are prescribed, but they are natural substances that function as messengers to stimulate cells to heal, reproduce, and rejuvenate. Disease and symptoms of aging occur when hormone levels decline.\r\n\r\nNatural, bio-identical hormones are preferred over synthetic hormones, so you can achieve all of the benefits of hormone replacement without the risks and side effects associated with synthetic hormones.\r\n<h3>Common Bio-Identical Hormones To Boost A Happier and Healthier Lifestyle</h3>\r\n<strong>DHEA</strong>\r\nBy age 40, DHEA has declined markedly. Replacement results in immune enhancement, therefore making DHEA extremely important in cancer and infection prevention. DHEA is a precursor to the sex hormones and is therefore an important building block in the production of these hormones. DHEA helps the breakdown of fats and cholesterol, while reducing the formation of atherosclerotic plaques.\r\n\r\n<strong>ESTROGEN</strong>\r\nReplacement with natural estrogen protects against heart disease, stroke, Alzheimer\'s disease, and osteoporosis in women. Estrogen prevents symptoms of menopause such as hot flashes, temperature deregulation, mood swings, urogenital atrophy, decreased libido, and depression. Estrogen lowers LDL cholesterol and raises HDL (the good cholesterol).\r\n\r\n<strong>PROGESTERONE</strong>\r\nReplacement with natural progesterone protects against uterine and breast cancer , and also osteoporosis. Progesterone reduces symptoms of menopause. Progesterone occurs naturally with estrogen and should be prescribed concurrently to balance estrogen.\r\n\r\n<strong>MELATONIN</strong>\r\nThis hormone is produced by the pineal gland and declines significantly by age 40. Melatonin controls circadium rhythm and sleep cycles. It induces sleep, improves quality of sleep, and increases REM sleep and deep stage IV sleep. During this deep stage of sleep, the immune system is stimulated. It has anti-cancer effects and modulates immune function by activating the cytokine system (lymphocytic function).\r\n\r\n<strong>TESTOSTERONE</strong>\r\nThis hormone is necessary in both men and women and declines steadily after age 30. Testosterone is responsible for sustaining libido, muscle mass, and immunity. It protects against disease in men plus the degeneration of muscle, bone, tendon and joints. It is a great mood enhancer and imparts a sense of well being in aging men and women.\r\n\r\n<strong>THYROID</strong>\r\nThis metabolic hormone decreases steadily with age. Lack of thyroid hormone results in cold intolerance, fatigue, lassitude, weight gain, increased cholesterol, thin and dry skin, hair loss, thin and brittle nails. Replenishment results in reversal of these symptoms plus increased energy and metabolism.\r\n\r\n<strong>PREGNENOLONE</strong>\r\nDecline of this hormone occurs after age 30. This hormone aids in cellular repair of the central nervous system and is the most potent memory enhancer of all the hormones.\r\n\r\nIf you are not feeling optimal even though you are exercising and eating right, ask your doctor about bio-identical hormone replacement.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Your best health insurance','','inherit','closed','closed','','1486-revision-v1','','','2021-12-15 02:37:47','2021-12-15 02:37:47','',1486,'https://www.drfields.com/?p=4917',0,'revision','',0),(4918,9,'2021-12-15 02:38:44','2021-12-15 02:38:44','<h2>Bio-Identical Hormones for A Happier &amp; Healthier Life</h2>\r\nA balanced program of exercise and the consumption of whole foods takes you far down the road of maintaining a healthy lifestyle. But when necessary, the inclusion of bio-identical hormone replacement therapy as recommended by your physician might be the boost you need for a happier and healthier life.\r\n<h3><img class=\"alignright size-full wp-image-1129\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/health-insurance.jpg\" alt=\"Health Insurance\" width=\"200\" height=\"300\" />How to Achieve Optimal Aging</h3>\r\nAs people age, they may encounter symptoms that make them feel less than optimal. Even those that follow healthy eating programs. It is possible to stop much of the undesirable aspects and symptoms  associated with aging. Bio-Identical Hormone Replacement Therapy (BHRT) is a science which has shown to improve the quality of your life.\r\n<h4><em>Your Physician Will Take A Detailed History and Perform Lab Testing</em></h4>\r\nPhysicians who prescribe these hormones will take a detailed history of the symptoms you experience. Following this, a laboratory evaluation of your hormone levels will be done. With these results, a personalized hormone supplementation program can be prescribed for you.\r\n\r\nAfter initiating the therapy, you will be monitored and the hormone replacements will be balanced for optimal benefits. Many patients experience how natural hormone supplementation can help with healthy aging.\r\n<h3>Bio-Identical Hormones Are Not the Same As Synthetic Hormones</h3>\r\nBio-identical hormones are prescribed, but they are natural substances that function as messengers to stimulate cells to heal, reproduce, and rejuvenate. Disease and symptoms of aging occur when hormone levels decline.\r\n\r\nNatural, bio-identical hormones are preferred over synthetic hormones, so you can achieve all of the benefits of hormone replacement without the risks and side effects associated with synthetic hormones.\r\n<h3>Common Bio-Identical Hormones To Boost A Happier and Healthier Lifestyle</h3>\r\n<strong>DHEA</strong>\r\nBy age 40, DHEA has declined markedly. Replacement results in immune enhancement, therefore making DHEA extremely important in cancer and infection prevention. DHEA is a precursor to the sex hormones and is therefore an important building block in the production of these hormones. DHEA helps the breakdown of fats and cholesterol, while reducing the formation of atherosclerotic plaques.\r\n\r\n<strong>ESTROGEN</strong>\r\nReplacement with natural estrogen protects against heart disease, stroke, Alzheimer\'s disease, and osteoporosis in women. Estrogen prevents symptoms of menopause such as hot flashes, temperature deregulation, mood swings, urogenital atrophy, decreased libido, and depression. Estrogen lowers LDL cholesterol and raises HDL (the good cholesterol).\r\n\r\n<strong>PROGESTERONE</strong>\r\nReplacement with natural progesterone protects against uterine and breast cancer , and also osteoporosis. Progesterone reduces symptoms of menopause. Progesterone occurs naturally with estrogen and should be prescribed concurrently to balance estrogen.\r\n\r\n<strong>MELATONIN</strong>\r\nThis hormone is produced by the pineal gland and declines significantly by age 40. Melatonin controls circadium rhythm and sleep cycles. It induces sleep, improves quality of sleep, and increases REM sleep and deep stage IV sleep. During this deep stage of sleep, the immune system is stimulated. It has anti-cancer effects and modulates immune function by activating the cytokine system (lymphocytic function).\r\n\r\n<strong>TESTOSTERONE</strong>\r\nThis hormone is necessary in both men and women and declines steadily after age 30. Testosterone is responsible for sustaining libido, muscle mass, and immunity. It protects against disease in men plus the degeneration of muscle, bone, tendon and joints. It is a great mood enhancer and imparts a sense of well being in aging men and women.\r\n\r\n<strong>THYROID</strong>\r\nThis metabolic hormone decreases steadily with age. Lack of thyroid hormone results in cold intolerance, fatigue, lassitude, weight gain, increased cholesterol, thin and dry skin, hair loss, thin and brittle nails. Replenishment results in reversal of these symptoms plus increased energy and metabolism.\r\n\r\n<strong>PREGNENOLONE</strong>\r\nDecline of this hormone occurs after age 30. This hormone aids in cellular repair of the central nervous system and is the most potent memory enhancer of all the hormones.\r\n\r\nIf you are not feeling optimal even though you are exercising and eating right, ask your doctor about bio-identical hormone replacement.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Bio-Identical Hormones and Aging','','inherit','closed','closed','','1486-revision-v1','','','2021-12-15 02:38:44','2021-12-15 02:38:44','',1486,'https://www.drfields.com/?p=4918',0,'revision','',0),(4919,9,'2021-12-15 02:58:22','2021-12-15 02:58:22','<h2>Bio-Identical Hormones</h2>\r\nA balanced program of exercise and the consumption of whole foods takes you far down the road of maintaining a healthy lifestyle. But when necessary, the inclusion of bio-identical hormone replacement therapy as recommended by your physician might be the boost you need for a happier and healthier life.\r\n<h3><img class=\"alignright size-full wp-image-1129\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/health-insurance.jpg\" alt=\"Health Insurance\" width=\"200\" height=\"300\" />How to Achieve Optimal Aging</h3>\r\nAs people age, they may encounter symptoms that make them feel less than optimal. Even those that follow healthy eating programs. It is possible to stop much of the undesirable aspects and symptoms  associated with aging. Bio-Identical Hormone Replacement Therapy (BHRT) is a science which has shown to improve the quality of your life.\r\n<h4><em>Your Physician Will Take A Detailed History and Perform Lab Testing</em></h4>\r\nPhysicians who prescribe these hormones will take a detailed history of the symptoms you experience. Following this, a laboratory evaluation of your hormone levels will be done. With these results, a personalized hormone supplementation program can be prescribed for you.\r\n\r\nAfter initiating the therapy, you will be monitored and the hormone replacements will be balanced for optimal benefits. Many patients experience how natural hormone supplementation can help with healthy aging.\r\n<h3>Bio-Identical Hormones Are Not the Same As Synthetic Hormones</h3>\r\nBio-identical hormones are prescribed, but they are natural substances that function as messengers to stimulate cells to heal, reproduce, and rejuvenate. Disease and symptoms of aging occur when hormone levels decline.\r\n\r\nNatural, bio-identical hormones are preferred over synthetic hormones, so you can achieve all of the benefits of hormone replacement without the risks and side effects associated with synthetic hormones.\r\n<h3>Common Bio-Identical Hormones To Boost A Happier and Healthier Lifestyle</h3>\r\n<strong>DHEA</strong>\r\nBy age 40, DHEA has declined markedly. Replacement results in immune enhancement, therefore making DHEA extremely important in cancer and infection prevention. DHEA is a precursor to the sex hormones and is therefore an important building block in the production of these hormones. DHEA helps the breakdown of fats and cholesterol, while reducing the formation of atherosclerotic plaques.\r\n\r\n<strong>ESTROGEN</strong>\r\nReplacement with natural estrogen protects against heart disease, stroke, Alzheimer\'s disease, and osteoporosis in women. Estrogen prevents symptoms of menopause such as hot flashes, temperature deregulation, mood swings, urogenital atrophy, decreased libido, and depression. Estrogen lowers LDL cholesterol and raises HDL (the good cholesterol).\r\n\r\n<strong>PROGESTERONE</strong>\r\nReplacement with natural progesterone protects against uterine and breast cancer , and also osteoporosis. Progesterone reduces symptoms of menopause. Progesterone occurs naturally with estrogen and should be prescribed concurrently to balance estrogen.\r\n\r\n<strong>MELATONIN</strong>\r\nThis hormone is produced by the pineal gland and declines significantly by age 40. Melatonin controls circadium rhythm and sleep cycles. It induces sleep, improves quality of sleep, and increases REM sleep and deep stage IV sleep. During this deep stage of sleep, the immune system is stimulated. It has anti-cancer effects and modulates immune function by activating the cytokine system (lymphocytic function).\r\n\r\n<strong>TESTOSTERONE</strong>\r\nThis hormone is necessary in both men and women and declines steadily after age 30. Testosterone is responsible for sustaining libido, muscle mass, and immunity. It protects against disease in men plus the degeneration of muscle, bone, tendon and joints. It is a great mood enhancer and imparts a sense of well being in aging men and women.\r\n\r\n<strong>THYROID</strong>\r\nThis metabolic hormone decreases steadily with age. Lack of thyroid hormone results in cold intolerance, fatigue, lassitude, weight gain, increased cholesterol, thin and dry skin, hair loss, thin and brittle nails. Replenishment results in reversal of these symptoms plus increased energy and metabolism.\r\n\r\n<strong>PREGNENOLONE</strong>\r\nDecline of this hormone occurs after age 30. This hormone aids in cellular repair of the central nervous system and is the most potent memory enhancer of all the hormones.\r\n\r\nIf you are not feeling optimal even though you are exercising and eating right, ask your doctor about bio-identical hormone replacement.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Bio-Identical Hormones and Aging','','inherit','closed','closed','','1486-revision-v1','','','2021-12-15 02:58:22','2021-12-15 02:58:22','',1486,'https://www.drfields.com/?p=4919',0,'revision','',0),(4921,9,'2022-01-06 00:54:41','2022-01-06 00:54:41','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/cal-chiro-sports-symposium/\">Join Peter A. Fields, MD, DC at the 2021 Cal Chiro Sports Symposium</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-01-06 00:54:41','2022-01-06 00:54:41','',2109,'https://www.drfields.com/?p=4921',0,'revision','',0),(4922,9,'2022-01-06 00:56:43','2022-01-06 00:56:43','<img class=\"alignleft wp-image-1685 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"315\" height=\"500\" />\r\n<h4>Peter A. Fields, MD, DC, The Athletic Doc<sup>®</sup></h4>\r\nPeter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.\r\n<h4>Director of OrthoRegen<sup>®</sup></h4>\r\nDr. Fields is the Director of <a href=\"https://orthoregen.com/\" target=\"_blank\" rel=\"noopener noreferrer\">OrthoRegen<sup>®</sup></a> in Santa Monica, CA. which is one of the largest practices in the world dedicated solely to Regenerative Orthopedics. Athletes and non-athletes alike come from around the US and the world to receive treatment, because Dr. Fields helps them to avoid unnecessary joint surgeries. He is a leading expert in using <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\" rel=\"noopener noreferrer\">Stem Cell Therapy</a> to help people avoid joint replacement.\r\n<h4>Regenerative Medicine Expert</h4>\r\nDr. Fields has appeared on national TV as a Regenerative Medicine Expert as well as several TV and radio stations in the Los Angeles area. Plus, he writes a column on Orthopedic/Sports Medicine for a <a href=\"https://www.drfields.com/category/articles/magazine-column/\" rel=\"noopener noreferrer\">national magazine</a> as well as lecturing at various conferences around the world on these techniques.\r\n<h4>Hackett-Hemwall Foundation Instructor</h4>\r\nIn addition, Dr. Fields is a Clinical Instructor with the <a href=\"https://hhpfoundation.org/\">Hackett-Hemwall Foundation</a>, the largest teaching organization for Prolotherapy. And Dr. Fields has volunteered his time for two weeks nine different times on their medical trips to Honduras. There they not only treat the indigenous people for joint and spine problems but also teach 75 physicians from all over the world Prolotherapy. Also, Dr. Fields was the director of one of only three clinics in Honduras.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Regenerative Orthopedics Doctor</h4>\r\nDr. Fields is a leading expert in the field of Regenerative Orthopedics, which includes Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy. All of these treatments are natural non-surgical methods of assisting the body to heal weakened or injured joints, tendons and ligaments. With Regenerative Orthopedics, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, the motion is restored and the pain is alleviated.\r\n<h4>The Athletic Doc<sup>®</sup></h4>\r\nDr. Fields is a very active and competitive triathlete, having completed eleven full <a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\" rel=\"noopener noreferrer\">Ironman Triathlons</a> as well as numerous (half) Ironman Triathlons and many other triathlons. The Athletic Doc<sup>®</sup> has had his back and shoulder treated by these techniques and avoided surgery. In other words, this doc walks his talk!\r\n<div id=\"centrevideo\" class=\"text-center\">[video_lightbox_youtube video_id=\"JyzbZT3aZ9o\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg\" alt=\"Interview with Dr. Fields about Prolotherapy and PRP\"]\r\n<strong>Interview with Dr. Fields about Prolotherapy and PRP</strong></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Bio: Dr. Fields','','inherit','closed','closed','','216-revision-v1','','','2022-01-06 00:56:43','2022-01-06 00:56:43','',216,'https://www.drfields.com/?p=4922',0,'revision','',0),(4923,9,'2022-01-06 01:08:54','2022-01-06 01:08:54','<span style=\"font-weight: 400;\">At OrthoRegen, we treat many joint</span> <span style=\"font-weight: 400;\">injuries with <a href=\"https://www.drfields.com/articles/prolo-news/repairing-sports-injuries-with-regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Regenerative Orthopedics</strong></a>. These therapies, include </span><b>Prolotherapy, PRP, and Stem Cell Therapy, and are effective for pretty </b><span style=\"font-weight: 400;\">much any joint of your body where there is a musculoskeletal injury. When you contact us, we’ll be happy to give a recommendation as to whether you are a good candidate for this non-surgical option. From there, we’ll figure out the right kind of Regenerative Orthopedic treatment option for your exact problem, to effectively repair your joint, and get you back quickly to the activities you love: </span><b>Pain-free</b><span style=\"font-weight: 400;\">.</span>\n<h2><b>Better than Surgery</b></h2>\n<span style=\"font-weight: 400;\">Many of our patients come to us when they’ve been told by someone else that it’s time to get surgery to fix their problem. Maybe they have lasting shoulder pain, or there’s a pain in one or both of their knees that just won’t go away. However, that doesn’t mean that surgery has to be the answer. In fact, <strong>Regenerative Orthopedics</strong> is almost invariably a better option. Not only can these treatments be more beneficial, but they also have much less down-time and recovery time.</span>\n\n<img class=\"aligncenter wp-image-2567 size-full\" title=\"Regenerative Orthopedic\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedic..jpg\" alt=\"Regenerative Orthopedic.\" width=\"800\" height=\"648\" />\n\n<span style=\"font-weight: 400;\">When you need surgery, you’re probably already in pain. After the surgery, you’re likely to be in plenty of pain, and then you’ll have to recover, possibly go through physical therapy, and so much more. The prolonged recovery time can cause you to be less effective at your job, or possibly even make you take time off. With <strong>Regenerative Orthopedics</strong>, you won’t need to take all that time off for recovery. Over the course of just a few Regenerative Orthopedic treatments, most people note improvement, and before you know it, you’ll be returning to the things in life you enjoy.</span>\n<h3><b>PRP </b></h3>\n<span style=\"font-weight: 400;\">The “PRP” stands for “<a href=\"https://en.wikipedia.org/wiki/Platelet-rich_plasma\" target=\"_blank\" rel=\"noopener noreferrer\">platelet-rich plasma</a>,” and is one form of <strong>Regenerative Orthopedics</strong>. Like so many of our other treatments, this really just uses what’s already in your body to treat you. In the case of PRP, we utilize your own blood to help your body recover. See, these platelets in your blood contain “growth factors,” which means that they can help get soft tissue repairing as it should. For many of our patients, that’s exactly what they need to repair the damaged soft tissue areas of their bodies.</span>\n\n<span style=\"font-weight: 400;\">The blood is centrifuged in a special way to cause the plasma to be rich in platelets or have a high concentration of platelets. So, the PRP we inject into the injured area is practically overflowing with growth factors. Then, this injured area of your body that’s been starving for tissue growth gets a giant helping of it. The more platelets in the damaged area, the faster and more completely your tissues will heal.</span>\n\n<span style=\"font-weight: 400;\">This is a treatment that’s been proven to be effective in joints all over the body. Many of our patients with hip labrum problems or knee meniscus injuries have responded wonderfully to this form of treatment, once again able to do the activities and sports they love. When joints are injured, it’s amazing how difficult simple motions are. You will be relieved to be able to walk, sit, or just use your knees and hips again without pain. </span>\n<h3><b>Dextrose Prolotherapy</b></h3>\n<span style=\"font-weight: 400;\">For many, this is known as the “original prolotherapy.” When Prolotherapy began in the ’30s, this was the form it took.  Think of your body as a machine. In order for the body to heal the parts of the body that need healing, it sometimes needs a boost. Especially, difficult to heal areas like ligaments and tendons that naturally just do not have a great flow of blood. Prolotherapy is a <strong>Regenerative Orthopedic</strong> therapy that can cause the body to kick into high gear and boost the healing cascade in order to stimulate blood flow and repair the soft tissue parts of your body that have been injured.</span>\n\n<span style=\"font-weight: 400;\">With this form of Prolotherapy, we inject the soft tissue parts of the joint that have been injured. Then, the blood and healing factors rush to heal the areas that have been damaged. We cause a very temporary and low-grade inflammation which makes your body spring into action. It’s important to note that this is a normal part of the healing process. Utilizing a local anesthetic, we make sure that you’re always comfortable during the treatment process.</span>\n<h3><b>Stem Cell Therapy</b></h3>\n<span style=\"font-weight: 400;\">In cases of severe degeneration or in certain joint injuries, we may recommend Stem Cell Therapy. We have great success with Stem Cell Therapy because we use the Gold Standard in Stem Cell Therapy utilizing Dextrose Prolotherapy, PRP, and stem cells from both fat and bone marrow. Just because someone has told you that you need surgery, remember that there are other options available. </span>\n\n<span style=\"font-weight: 400;\">These various <strong>Regenerative Orthopedic</strong> options are very effective at returning you to a vibrant and pain-free life again. Contact us today for a consultation at [phone], and we’ll be happy to let you know which of our treatments are right for your body.</span>','Regenerative Orthopedic Treatment Options: Getting Back on the Right Foot','','inherit','closed','closed','','2565-autosave-v1','','','2022-01-06 01:08:54','2022-01-06 01:08:54','',2565,'https://www.drfields.com/?p=4923',0,'revision','',0),(4924,9,'2022-01-06 01:09:12','2022-01-06 01:09:12','<span style=\"font-weight: 400;\">At OrthoRegen, we treat many joint</span> <span style=\"font-weight: 400;\">injuries with <a href=\"https://www.drfields.com/articles/prolo-news/repairing-sports-injuries-with-regenerative-orthopedics/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Regenerative Orthopedics</strong></a>. These therapies, include </span><b>Prolotherapy, PRP, and Stem Cell Therapy, and are effective for pretty </b><span style=\"font-weight: 400;\">much any joint of your body where there is a musculoskeletal injury. When you contact us, we’ll be happy to give a recommendation as to whether you are a good candidate for this non-surgical option. From there, we’ll figure out the right kind of Regenerative Orthopedic treatment option for your exact problem, to effectively repair your joint, and get you back quickly to the activities you love: </span><b>Pain-free</b><span style=\"font-weight: 400;\">.</span>\r\n<h2><b>Better than Surgery</b></h2>\r\n<span style=\"font-weight: 400;\">Many of our patients come to us when they’ve been told by someone else that it’s time to get surgery to fix their problem. Maybe they have lasting shoulder pain, or there’s a pain in one or both of their knees that just won’t go away. However, that doesn’t mean that surgery has to be the answer. In fact, <strong>Regenerative Orthopedics</strong> is almost invariably a better option. Not only can these treatments be more beneficial, but they also have much less down-time and recovery time.</span>\r\n\r\n<img class=\"aligncenter wp-image-2567 size-full\" title=\"Regenerative Orthopedic\" src=\"https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedic..jpg\" alt=\"Regenerative Orthopedic.\" width=\"800\" height=\"648\" />\r\n\r\n<span style=\"font-weight: 400;\">When you need surgery, you’re probably already in pain. After the surgery, you’re likely to be in plenty of pain, and then you’ll have to recover, possibly go through physical therapy, and so much more. The prolonged recovery time can cause you to be less effective at your job, or possibly even make you take time off. With <strong>Regenerative Orthopedics</strong>, you won’t need to take all that time off for recovery. Over the course of just a few Regenerative Orthopedic treatments, most people note improvement, and before you know it, you’ll be returning to the things in life you enjoy.</span>\r\n<h3><b>PRP </b></h3>\r\n<span style=\"font-weight: 400;\">The “PRP” stands for “<a href=\"https://en.wikipedia.org/wiki/Platelet-rich_plasma\" target=\"_blank\" rel=\"noopener noreferrer\">platelet-rich plasma</a>,” and is one form of <strong>Regenerative Orthopedics</strong>. Like so many of our other treatments, this really just uses what’s already in your body to treat you. In the case of PRP, we utilize your own blood to help your body recover. See, these platelets in your blood contain “growth factors,” which means that they can help get soft tissue repairing as it should. For many of our patients, that’s exactly what they need to repair the damaged soft tissue areas of their bodies.</span>\r\n\r\n<span style=\"font-weight: 400;\">The blood is centrifuged in a special way to cause the plasma to be rich in platelets or have a high concentration of platelets. So, the PRP we inject into the injured area is practically overflowing with growth factors. Then, this injured area of your body that’s been starving for tissue growth gets a giant helping of it. The more platelets in the damaged area, the faster and more completely your tissues will heal.</span>\r\n\r\n<span style=\"font-weight: 400;\">This is a treatment that’s been proven to be effective in joints all over the body. Many of our patients with hip labrum problems or knee meniscus injuries have responded wonderfully to this form of treatment, once again able to do the activities and sports they love. When joints are injured, it’s amazing how difficult simple motions are. You will be relieved to be able to walk, sit, or just use your knees and hips again without pain. </span>\r\n<h3><b>Dextrose Prolotherapy</b></h3>\r\n<span style=\"font-weight: 400;\">For many, this is known as the “original prolotherapy.” When Prolotherapy began in the ’30s, this was the form it took.  Think of your body as a machine. In order for the body to heal the parts of the body that need healing, it sometimes needs a boost. Especially, difficult to heal areas like ligaments and tendons that naturally just do not have a great flow of blood. Prolotherapy is a <strong>Regenerative Orthopedic</strong> therapy that can cause the body to kick into high gear and boost the healing cascade in order to stimulate blood flow and repair the soft tissue parts of your body that have been injured.</span>\r\n\r\n<span style=\"font-weight: 400;\">With this form of Prolotherapy, we inject the soft tissue parts of the joint that have been injured. Then, the blood and healing factors rush to heal the areas that have been damaged. We cause a very temporary and low-grade inflammation which makes your body spring into action. It’s important to note that this is a normal part of the healing process. Utilizing a local anesthetic, we make sure that you’re always comfortable during the treatment process.</span>\r\n<h3><b>Stem Cell Therapy</b></h3>\r\n<span style=\"font-weight: 400;\">In cases of severe degeneration or in certain joint injuries, we may recommend Stem Cell Therapy. We have great success with Stem Cell Therapy because we use the Gold Standard in Stem Cell Therapy utilizing Dextrose Prolotherapy, PRP, and stem cells from both fat and bone marrow. Just because someone has told you that you need surgery, remember that there are other options available. </span>\r\n\r\n<span style=\"font-weight: 400;\">These various <strong>Regenerative Orthopedic</strong> options are very effective at returning you to a vibrant and pain-free life again. Contact us today for a consultation at [phone], and we’ll be happy to let you know which of our treatments are right for your body.</span>','Regenerative Orthopedic Treatment Options: Getting Back on the Right Foot','','inherit','closed','closed','','2565-revision-v1','','','2022-01-06 01:09:12','2022-01-06 01:09:12','',2565,'https://www.drfields.com/?p=4924',0,'revision','',0),(4925,9,'2022-01-06 01:13:49','2022-01-06 01:13:49','Knee Stem Cells','Stem Cells are An Effective Knee Injury Treatments','Knee Stem Cells','inherit','open','closed','','knee-stem-cells','','','2022-01-06 01:14:29','2022-01-06 01:14:29','',533,'https://www.drfields.com/wp-content/uploads/2019/06/knee-stem-cells.jpeg',0,'attachment','image/jpeg',0),(4926,9,'2022-01-06 01:24:34','2022-01-06 01:24:34','<div>\r\n<h2>Regenerative Orthopedic Knee Injury Treatments</h2>\r\n</div>\r\n<div>Knee injuries are one of the most common problems we treat at OrthoRegen.<sup>®  </sup></div>\r\n<div>And we successfully treat knee injuries with Regenerative Orthopedics, which include Stem Cell Therapy, Platelet Rich Plasma (PRP), and Prolotherapy. Which type of Regenerative Orthopedic treatment is best for the knee? That would depend on your particular injury. Below are a few videos where our patients tell you a bit about their injury and how they did after treatment:</div>\r\n<div></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong></div>\r\n<h4>Regenerative Orthopedic Knee Injury Treatments</h4>\r\n[caption id=\"attachment_4925\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4925\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-stem-cells-500x375.jpeg\" alt=\"Knee Stem Cells\" width=\"500\" height=\"375\" /> <strong>                                 Knee Injury Treatments</strong>[/caption]\r\n\r\nKnee injuries are one of the most common problems we treat at OrthoRegen.<sup>®   </sup>\r\n\r\nThat\'s important because the knee joint is one of the most crucial joints in the body. Plus, knee function is vital to carry out everyday activities.\r\n<h3>More About the Knee</h3>\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones. The femur and tibia are connected by the four main ligaments at the knee, the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the Medial (MCL) and Lateral (LCL) Collateral Ligaments (on either side of the joint).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nThere are also two forms of cartilage in the knee, including articular cartilage, which protects the ends of both bones and the back of the patella allowing for smooth movement. The meniscus is another type of cartilage, which consists of two semicircular discs providing cushioning and support for the bones. Our knees are extremely vulnerable to injury in one or a combination of these elements. In the case of a knee injury, we recommend our <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair damaged tissue, ligaments, and tendons, to get you back quickly to the activities you love.\r\n<h4>How Regenerative Orthopedics Works to Treat the Knee</h4>\r\nRegenerative Orthopedics are innovative therapies that treat the knee by stimulating the immune system to repair damaged tissue. Prolotherapy is one type of regenerative treatment that is effective for knee injuries. \"Prolo\" comes from the word proliferate, and Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the ligaments and tendons. The proliferation of the fibroblasts encourages new, strong, tissue to be formed. Why is this important? Because this new tissue is exactly what is needed to repair ligament, tendon, and meniscus injuries.\r\n\r\nIn some cases of knee injury, Platelet Rich Plasma (PRP) may be recommended. The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Certain injuries will require more potent means for healing and regeneration. Concentrated platelets contain large reservoirs of growth factors that have the potential to greatly accelerate the normal healing process, naturally.\r\n\r\nThe use of concentrated growth factors is considered by many to be an exciting and new cutting edge therapy that can stimulate tissue repair, and regenerate weakened torn or damaged ligaments, tendons, and the menisci of the knee joint.\r\n\r\nReceive treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nPeter A. Fields, MD, DC and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Regenerative Orthopedic treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, Dc is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>. For over 25 years, Dr. Fields has been active in the sport of Triathlon. In 2019, he completed his 11th Ironman Triathlon, in Cozumel, Mexico. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nContact us to see if you are a candidate for Regenerative Orthopedics or need a second opinion for a recommended surgery. Our goal is to help you improve your health, recover quickly and get back to doing what you love to do!\r\n\r\n<strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Prolotherapy are:</strong>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Knee pain after surgery</li>\r\n 	<li>Knee popping</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Knee replacement pain</a></li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\r\n 	<li>Ligament sprain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-revision-v1','','','2022-01-06 01:24:34','2022-01-06 01:24:34','',533,'https://www.drfields.com/?p=4926',0,'revision','',0),(4927,9,'2022-01-06 01:57:14','2022-01-06 01:57:14','<div>\r\n<h2>Regenerative Orthopedic Knee Injury Treatments</h2>\r\n</div>\r\n<div>Knee injuries are one of the most common problems we treat at OrthoRegen.<sup>®  </sup></div>\r\n<div>And we successfully treat knee injuries with Regenerative Orthopedics, which include Stem Cell Therapy, Platelet Rich Plasma (PRP), and Prolotherapy. Which type of Regenerative Orthopedic treatment is best for the knee? That would depend on your particular injury. Below are a few videos where our patients tell you a bit about their injury and how they did after treatment:</div>\r\n<div></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong></div>\r\n<h4>The Knee</h4>\r\n[caption id=\"attachment_4925\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4925\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-stem-cells-500x375.jpeg\" alt=\"Knee Stem Cells\" width=\"500\" height=\"375\" /> <strong>                                 Knee Injury Treatments</strong>[/caption]\r\n\r\nThe knee joint is one of the most crucial joints in the body, and knee function is vital to carrying out everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones.\r\n<h4><em>Knee Ligaments</em></h4>\r\nThe femur and tibia are connected by the four main ligaments at the knee: the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the medial (MCL) and lateral (LCL) collateral ligaments (on either side of the joint).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><em>Cartilage and Other Joint Structures</em></h4>\r\nThere are other important structures in the knee, including articular cartilage. The cartilage protects the ends of both bones and the back of the patella, allowing for smooth movement.\r\n\r\nThe meniscus is another knee structure.  It consists of two semicircular discs providing cushioning and support for the bones.\r\n\r\nOur knees are extremely vulnerable to injury. Any one of these structures, or a combination of them, can be involved when the knee is injured. And when knee injuries do occur, we recommend <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair the damaged tissue, ligaments, and tendons, and other structures, and get you back quickly to the activities you love.\r\n<h3>How Regenerative Orthopedics Works to Treat the Knee</h3>\r\nRegenerative Orthopedics are innovative therapies that treat the knee by stimulating the body\'s own healing cascade to repair damaged tissue.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> is one type of regenerative treatment that is effective for knee injuries. \"Prolo\" comes from the word proliferate. Therefore, Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the soft tissue, such as the ligaments and tendons. The proliferation of the fibroblasts encourages new, strong, tissue to be formed. Why is this important? Because this process is exactly what is needed to repair ligament, tendon, and meniscus injuries.\r\n\r\nIn some knee injury cases, Platelet Rich Plasma (PRP) may be recommended. The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Certain injuries will require more potent means for healing and regeneration. And when necessary, these concentrated platelets work great because they contain large reservoirs of growth factors. How do growth factors help? They have the potential to greatly accelerate the normal healing process, naturally.\r\n<h3>Stem Cell Therapy</h3>\r\nStem Cell Treatments for joints are a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in Stem Cell Treatments. The treatment is an effective non-surgical alternative, and one that has a great chance of helping you to <em>Avoid Joint Replacement Surgery</em>.\r\n\r\nAll of these Regenerative Orthopedic treatments are exciting and new cutting-edge therapies that can stimulate knee repair by regenerating weakened, torn or damaged ligaments, tendons, and the menisci of the knee joint.\r\n\r\nDon\'t wait! Contact us soon, so you can avoid surgery too, by receiving non-surgical treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Are You A Candidate for Regenerative Orthopedics for Your Knee Injuries?</h4>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Regenerative Orthopedic treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out more testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, DC is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>. For over 25 years, Dr. Fields has been active as a triathlete and has completed numerous Ironman competitions. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury, and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nOur goal at OrthoRegen<sup>®</sup> is to help you improve your health, recover quickly, and get back to doing what you love to do!\r\n<h3><strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Regenerative Orthopedics include:</strong></h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Knee pain after surgery</li>\r\n 	<li>Knee popping</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Knee replacement pain</a></li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\r\n 	<li>Ligament sprain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Knee Injury Treatment','','inherit','closed','closed','','533-revision-v1','','','2022-01-06 01:57:14','2022-01-06 01:57:14','',533,'https://www.drfields.com/?p=4927',0,'revision','',0),(4928,9,'2022-01-06 02:01:11','2022-01-06 02:01:11','<div>\r\n<h2>Regenerative Orthopedic Treatments for Knee Injuries</h2>\r\n</div>\r\n<div>Knee injuries are one of the most common problems we treat at OrthoRegen.<sup>®  </sup></div>\r\n<div>And we successfully treat knee injuries with Regenerative Orthopedics, which include Stem Cell Therapy, Platelet Rich Plasma (PRP), and Prolotherapy. Which type of Regenerative Orthopedic treatment is best for the knee? That would depend on your particular injury. Below are a few videos where our patients tell you a bit about their injury and how they did after treatment:</div>\r\n<div></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong></div>\r\n<h3>The Knee</h3>\r\n[caption id=\"attachment_4925\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4925\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-stem-cells-500x375.jpeg\" alt=\"Knee Stem Cells\" width=\"500\" height=\"375\" /> <strong>                                 Knee Injury Treatments</strong>[/caption]\r\n\r\nThe knee joint is one of the most crucial joints in the body, and knee function is vital to carrying out everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone). The patella or kneecap sits to the front of these bones.\r\n<h4><em>Knee Ligaments</em></h4>\r\nThe femur and tibia are connected by the four main ligaments at the knee: the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the medial (MCL) and lateral (LCL) collateral ligaments (on either side of the joint).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><em>Cartilage and Other Joint Structures</em></h4>\r\nThere are other important structures in the knee, including articular cartilage. The cartilage protects the ends of both bones and the back of the patella, allowing for smooth movement.\r\n\r\nThe meniscus is another knee structure.  It consists of two semicircular discs providing cushioning and support for the bones.\r\n\r\nOur knees are extremely vulnerable to injury. Any one of these structures, or a combination of them, can be involved when the knee is injured. And when knee injuries do occur, we recommend <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair the damaged tissue, ligaments, and tendons, and other structures, and get you back quickly to the activities you love.\r\n<h3>How Regenerative Orthopedics Works to Treat the Knee</h3>\r\nRegenerative Orthopedics are innovative therapies that treat the knee by stimulating the body\'s own healing cascade to repair damaged tissue.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> is one type of regenerative treatment that is effective for knee injuries. \"Prolo\" comes from the word proliferate. Therefore, Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the soft tissue, such as the ligaments and tendons. The proliferation of the fibroblasts encourages new, strong, tissue to be formed. Why is this important? Because this process is exactly what is needed to repair ligament, tendon, and meniscus injuries.\r\n\r\nIn some knee injury cases, <a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\">Platelet Rich Plasma (PRP)</a> may be recommended. The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Certain injuries will require more potent means for healing and regeneration. And when necessary, these concentrated platelets work great because they contain large reservoirs of growth factors. How do growth factors help? They have the potential to greatly accelerate the normal healing process, naturally.\r\n<h3>Stem Cell Therapy</h3>\r\nStem Cell Treatments for joints are a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Treatments</a>. The treatment is an effective non-surgical alternative and one that has a great chance of helping you to <em>Avoid Joint Replacement Surgery</em>.\r\n\r\nAll of these Regenerative Orthopedic treatments are exciting and new cutting-edge therapies that can stimulate knee repair by regenerating weakened, torn, or damaged ligaments, tendons, and the menisci of the knee joint.\r\n\r\nDon\'t wait! Contact us soon, so you can avoid surgery too, by receiving non-surgical treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Are You A Candidate for Regenerative Orthopedics for Your Knee Injuries?</h4>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Regenerative Orthopedic treatments, or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out more testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, DC is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>. For over 25 years, Dr. Fields has been active as a triathlete and has completed numerous Ironman competitions. It is his experience as an athlete that allows him to understand the demands on the physical body, the potential for injury, and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nOur goal at OrthoRegen<sup>®</sup> is to help you improve your health, recover quickly, and get back to doing what you love to do!\r\n<h3><strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Regenerative Orthopedics include:</strong></h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Knee popping</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Pain after Knee Replacement</a></li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\r\n 	<li>Ligament sprain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Regenerative Orthopedics for Knee Injuries','','inherit','closed','closed','','533-revision-v1','','','2022-01-06 02:01:11','2022-01-06 02:01:11','',533,'https://www.drfields.com/?p=4928',0,'revision','',0),(4929,9,'2022-01-06 02:08:37','2022-01-06 02:08:37','<div>\r\n<h2>Regenerative Orthopedic Treatments for Knee Injuries</h2>\r\n</div>\r\n<div>Knee injuries are one of the most common problems we treat at OrthoRegen.<sup>®.  </sup></div>\r\n<div>And we successfully treat knee injuries with Regenerative Orthopedics, which include Stem Cell Therapy, Platelet Rich Plasma (PRP), and Prolotherapy.  Which type of Regenerative Orthopedic treatment is best for the knee?  That would depend on your particular injury.  Below are a few videos where our patients tell you a bit about their injury and how they did after treatment:</div>\r\n<div></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong></div>\r\n<h3>The Knee</h3>\r\n[caption id=\"attachment_4925\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4925\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-stem-cells-500x375.jpeg\" alt=\"Knee Stem Cells\" width=\"500\" height=\"375\" /> <strong>                                 Knee Injury Treatments</strong>[/caption]\r\n\r\nThe knee joint is one of the most crucial joints in the body, and knee function is vital to carrying out everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone).  The patella or kneecap sits to the front of these bones.\r\n<h4><em>Knee Ligaments</em></h4>\r\nThe four main ligaments connect the femur and tibia at the knee: the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the medial (MCL) and lateral (LCL) collateral ligaments (on either side of the joint).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><em>Cartilage and Other Joint Structures</em></h4>\r\nThere are other essential structures in the knee, including articular cartilage.  The cartilage protects the ends of both bones and the back of the patella, allowing for smooth movement.\r\n\r\nThe meniscus is another knee structure.  It consists of two semicircular discs providing cushioning and support for the bones.\r\n\r\nOur knees are incredibly vulnerable to injury.  Any of these structures, or a combination of them, can be involved when the knee is injured.  And when knee injuries do occur, we recommend <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair the damaged tissue, ligaments, tendons, and other structures and get you back quickly to the activities you love.\r\n<h3>How Regenerative Orthopedics Works to Treat the Knee</h3>\r\nRegenerative Orthopedics are innovative therapies that treat the knee by stimulating the body\'s healing cascade to repair damaged tissue.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> is one type of regenerative treatment that is effective for knee injuries.  \"Prolo\" comes from the word proliferate.  Therefore, Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the soft tissue, such as the ligaments and tendons.  The proliferation of the fibroblasts encourages the formation of new, robust tissue.  Why is this important?  Because this process is precisely what is needed to repair ligament, tendon, and meniscus injuries.\r\n\r\nThe clinician may recommend platelet Rich Plasma (PRP) in some knee injury cases.  The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site.  Specific injuries will require more potent means for healing and regeneration.  And when necessary, these concentrated platelets work great because they contain large reservoirs of growth factors.  How do growth factors help?  They have the potential to significantly accelerate the normal healing process, naturally.\r\n<h3>Stem Cell Therapy</h3>\r\nStem Cell Treatments for joints are an excellent alternative for people who have been told they need joint replacement surgery.  At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Treatments</a>.  The treatment is an effective non-surgical alternative that has a great chance of helping you to <em>Avoid Joint Replacement Surgery</em>.\r\n\r\nThese Regenerative Orthopedic treatments are exciting and new cutting-edge therapies that can stimulate knee repair by regenerating weakened, torn, or damaged ligaments, tendons, and the menisci of the knee joint.\r\n\r\nDon\'t wait!  Contact us soon, so you can avoid surgery too, by receiving non-surgical treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Are You A Candidate for Regenerative Orthopedics for Your Knee Injuries?</h4>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>.  To see if you are a candidate for one of our Regenerative Orthopedic treatments or a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced?  Check out more testimonials on this page and our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, DC is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>.  For over 25 years, Dr. Fields has been active as a triathlete and has completed numerous Ironman competitions.  His experience as an athlete allows him to understand the demands on the physical body, the potential for injury, and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nOur goal at OrthoRegen<sup>®</sup> is to help you improve your health, recover quickly, and get back to doing what you love to do!\r\n<h3><strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Regenerative Orthopedics include:</strong></h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Knee popping</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Pain after Knee Replacement</a></li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\r\n 	<li>Ligament sprain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Regenerative Orthopedics for Knee Injuries','','inherit','closed','closed','','533-revision-v1','','','2022-01-06 02:08:37','2022-01-06 02:08:37','',533,'https://www.drfields.com/?p=4929',0,'revision','',0),(4930,9,'2022-01-06 02:09:56','2022-01-06 02:09:56','<div>\r\n<h2>Regenerative Orthopedics for Knee Injuries</h2>\r\n</div>\r\n<div>Knee injuries are one of the most common problems we treat at OrthoRegen.<sup>®.  </sup></div>\r\n<div>And we successfully treat knee injuries with Regenerative Orthopedics, which include Stem Cell Therapy, Platelet Rich Plasma (PRP), and Prolotherapy.  Which type of Regenerative Orthopedic treatment is best for the knee?  That would depend on your particular injury.  Below are a few videos where our patients tell you a bit about their injury and how they did after treatment:</div>\r\n<div></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong></div>\r\n<h3>The Knee</h3>\r\n[caption id=\"attachment_4925\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4925\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-stem-cells-500x375.jpeg\" alt=\"Knee Stem Cells\" width=\"500\" height=\"375\" /> <strong>                                 Knee Injury Treatments</strong>[/caption]\r\n\r\nThe knee joint is one of the most crucial joints in the body, and knee function is vital to carrying out everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone).  The patella or kneecap sits to the front of these bones.\r\n<h4><em>Knee Ligaments</em></h4>\r\nThe four main ligaments connect the femur and tibia at the knee: the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the medial (MCL) and lateral (LCL) collateral ligaments (on either side of the joint).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><em>Cartilage and Other Joint Structures</em></h4>\r\nThere are other essential structures in the knee, including articular cartilage.  The cartilage protects the ends of both bones and the back of the patella, allowing for smooth movement.\r\n\r\nThe meniscus is another knee structure.  It consists of two semicircular discs providing cushioning and support for the bones.\r\n\r\nOur knees are incredibly vulnerable to injury.  Any of these structures, or a combination of them, can be involved when the knee is injured.  And when knee injuries do occur, we recommend <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair the damaged tissue, ligaments, tendons, and other structures and get you back quickly to the activities you love.\r\n<h3>How Regenerative Orthopedics Works to Treat the Knee</h3>\r\nRegenerative Orthopedics are innovative therapies that treat the knee by stimulating the body\'s healing cascade to repair damaged tissue.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> is one type of regenerative treatment that is effective for knee injuries.  \"Prolo\" comes from the word proliferate.  Therefore, Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the soft tissue, such as the ligaments and tendons.  The proliferation of the fibroblasts encourages the formation of new, robust tissue.  Why is this important?  Because this process is precisely what is needed to repair ligament, tendon, and meniscus injuries.\r\n\r\nThe clinician may recommend platelet Rich Plasma (PRP) in some knee injury cases.  The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site.  Specific injuries will require more potent means for healing and regeneration.  And when necessary, these concentrated platelets work great because they contain large reservoirs of growth factors.  How do growth factors help?  They have the potential to significantly accelerate the normal healing process, naturally.\r\n<h3>Stem Cell Therapy</h3>\r\nStem Cell Treatments for joints are an excellent alternative for people who have been told they need joint replacement surgery.  At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Treatments</a>.  The treatment is an effective non-surgical alternative that has a great chance of helping you to <em>Avoid Joint Replacement Surgery</em>.\r\n\r\nThese Regenerative Orthopedic treatments are exciting and new cutting-edge therapies that can stimulate knee repair by regenerating weakened, torn, or damaged ligaments, tendons, and the menisci of the knee joint.\r\n\r\nDon\'t wait!  Contact us soon, so you can avoid surgery too, by receiving non-surgical treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Are You A Candidate for Regenerative Orthopedics for Your Knee Injuries?</h4>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>.  To see if you are a candidate for one of our Regenerative Orthopedic treatments or a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced?  Check out more testimonials on this page and our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, DC is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>.  For over 25 years, Dr. Fields has been active as a triathlete and has completed numerous Ironman competitions.  His experience as an athlete allows him to understand the demands on the physical body, the potential for injury, and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nOur goal at OrthoRegen<sup>®</sup> is to help you improve your health, recover quickly, and get back to doing what you love to do!\r\n<h3><strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Regenerative Orthopedics include:</strong></h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Knee popping</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Pain after Knee Replacement</a></li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\r\n 	<li>Ligament sprain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Regenerative Orthopedics for Knee Injuries','','inherit','closed','closed','','533-revision-v1','','','2022-01-06 02:09:56','2022-01-06 02:09:56','',533,'https://www.drfields.com/?p=4930',0,'revision','',0),(4931,9,'2022-01-06 02:11:03','2022-01-06 02:11:03','<div>\r\n<h2>Regenerative Orthopedics for Knee Injuries</h2>\r\n</div>\r\n<div>Knee injuries are one of the most common problems we treat at OrthoRegen.<sup>®.  </sup></div>\r\n<div>And we successfully treat knee injuries with Regenerative Orthopedics, which include Stem Cell Therapy, Platelet Rich Plasma (PRP), and Prolotherapy.  Which type of Regenerative Orthopedic treatment is best for the knee?  That would depend on your particular injury.  Below are a few videos where our patients tell you a bit about their injury and how they did after treatment:</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong></div>\r\n<h3>The Knee</h3>\r\n[caption id=\"attachment_4925\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4925\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-stem-cells-500x375.jpeg\" alt=\"Knee Stem Cells\" width=\"500\" height=\"375\" /> <strong>                                 Knee Injury Treatments</strong>[/caption]\r\n\r\nThe knee joint is one of the most crucial joints in the body, and knee function is vital to carrying out everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone).  The patella or kneecap sits to the front of these bones.\r\n<h4><em>Knee Ligaments</em></h4>\r\nThe four main ligaments connect the femur and tibia at the knee: the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the medial (MCL) and lateral (LCL) collateral ligaments (on either side of the joint).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><em>Cartilage and Other Joint Structures</em></h4>\r\nThere are other essential structures in the knee, including articular cartilage.  The cartilage protects the ends of both bones and the back of the patella, allowing for smooth movement.\r\n\r\nThe meniscus is another knee structure.  It consists of two semicircular discs providing cushioning and support for the bones.\r\n\r\nOur knees are incredibly vulnerable to injury.  Any of these structures, or a combination of them, can be involved when the knee is injured.  And when knee injuries do occur, we recommend <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair the damaged tissue, ligaments, tendons, and other structures and get you back quickly to the activities you love.\r\n<h3>How Regenerative Orthopedics Works to Treat the Knee</h3>\r\nRegenerative Orthopedics are innovative therapies that treat the knee by stimulating the body\'s healing cascade to repair damaged tissue.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> is one type of regenerative treatment that is effective for knee injuries.  \"Prolo\" comes from the word proliferate.  Therefore, Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the soft tissue, such as the ligaments and tendons.  The proliferation of the fibroblasts encourages the formation of new, robust tissue.  Why is this important?  Because this process is precisely what is needed to repair ligament, tendon, and meniscus injuries.\r\n\r\nThe clinician may recommend platelet Rich Plasma (PRP) in some knee injury cases.  The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site.  Specific injuries will require more potent means for healing and regeneration.  And when necessary, these concentrated platelets work great because they contain large reservoirs of growth factors.  How do growth factors help?  They have the potential to significantly accelerate the normal healing process, naturally.\r\n<h3>Stem Cell Therapy</h3>\r\nStem Cell Treatments for joints are an excellent alternative for people who have been told they need joint replacement surgery.  At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Treatments</a>.  The treatment is an effective non-surgical alternative that has a great chance of helping you to <em>Avoid Joint Replacement Surgery</em>.\r\n\r\nThese Regenerative Orthopedic treatments are exciting and new cutting-edge therapies that can stimulate knee repair by regenerating weakened, torn, or damaged ligaments, tendons, and the menisci of the knee joint.\r\n\r\nDon\'t wait!  Contact us soon, so you can avoid surgery too, by receiving non-surgical treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Are You A Candidate for Regenerative Orthopedics for Your Knee Injuries?</h4>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>.  To see if you are a candidate for one of our Regenerative Orthopedic treatments or a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced?  Check out more testimonials on this page and our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, DC is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>.  For over 25 years, Dr. Fields has been active as a triathlete and has completed numerous Ironman competitions.  His experience as an athlete allows him to understand the demands on the physical body, the potential for injury, and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nOur goal at OrthoRegen<sup>®</sup> is to help you improve your health, recover quickly, and get back to doing what you love to do!\r\n<h3><strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Regenerative Orthopedics include:</strong></h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Knee popping</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Pain after Knee Replacement</a></li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\r\n 	<li>Ligament sprain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Regenerative Orthopedics for Knee Injuries','','inherit','closed','closed','','533-revision-v1','','','2022-01-06 02:11:03','2022-01-06 02:11:03','',533,'https://www.drfields.com/?p=4931',0,'revision','',0),(4932,9,'2022-01-06 02:12:42','2022-01-06 02:12:42','<div>\r\n<h2>Regenerative Orthopedics for Knee Injuries</h2>\r\n</div>\r\n<div>Knee injuries are one of the most common problems we treat at OrthoRegen.<sup>®.  </sup></div>\r\n<div>And we successfully treat knee injuries with Regenerative Orthopedics, which include Stem Cell Therapy, Platelet Rich Plasma (PRP), and Prolotherapy.  Which type of Regenerative Orthopedic treatment is best for the knee?  That would depend on your particular injury.  Below are a few videos where our patients tell you a bit about their injury and how they did after treatment:</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong></div>\r\n<h3>The Knee</h3>\r\nThe knee joint is one of the most crucial joints in the body, and knee function is vital to carrying out everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone).  The patella or kneecap sits to the front of these bones.\r\n<h4><em>Knee Ligaments</em></h4>\r\nThe four main ligaments connect the femur and tibia at the knee: the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the medial (MCL) and lateral (LCL) collateral ligaments (on either side of the joint).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><em>Cartilage and Other Joint Structures</em></h4>\r\nThere are other essential structures in the knee, including articular cartilage.  The cartilage protects the ends of both bones and the back of the patella, allowing for smooth movement.\r\n\r\nThe meniscus is another knee structure.  It consists of two semicircular discs providing cushioning and support for the bones.\r\n\r\nOur knees are incredibly vulnerable to injury.  Any of these structures, or a combination of them, can be involved when the knee is injured.  And when knee injuries do occur, we recommend <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair the damaged tissue, ligaments, tendons, and other structures and get you back quickly to the activities you love.\r\n<h3>How Regenerative Orthopedics Works to Treat the Knee</h3>\r\n[caption id=\"attachment_4925\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4925\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-stem-cells-500x375.jpeg\" alt=\"Knee Stem Cells\" width=\"500\" height=\"375\" /> Knee Stem Cells[/caption]\r\n\r\nRegenerative Orthopedics are innovative therapies that treat the knee by stimulating the body\'s healing cascade to repair damaged tissue.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> is one type of regenerative treatment that is effective for knee injuries.  \"Prolo\" comes from the word proliferate.  Therefore, Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the soft tissue, such as the ligaments and tendons.  The proliferation of the fibroblasts encourages the formation of new, robust tissue.  Why is this important?  Because this process is precisely what is needed to repair ligament, tendon, and meniscus injuries.\r\n\r\nThe clinician may recommend platelet Rich Plasma (PRP) in some knee injury cases.  The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site.  Specific injuries will require more potent means for healing and regeneration.  And when necessary, these concentrated platelets work great because they contain large reservoirs of growth factors.  How do growth factors help?  They have the potential to significantly accelerate the normal healing process, naturally.\r\n<h3>Stem Cell Therapy</h3>\r\nStem Cell Treatments for joints are an excellent alternative for people who have been told they need joint replacement surgery.  At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Treatments</a>.  The treatment is an effective non-surgical alternative that has a great chance of helping you to <em>Avoid Joint Replacement Surgery</em>.\r\n\r\nThese Regenerative Orthopedic treatments are exciting and new cutting-edge therapies that can stimulate knee repair by regenerating weakened, torn, or damaged ligaments, tendons, and the menisci of the knee joint.\r\n\r\nDon\'t wait!  Contact us soon, so you can avoid surgery too, by receiving non-surgical treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Are You A Candidate for Regenerative Orthopedics for Your Knee Injuries?</h4>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>.  To see if you are a candidate for one of our Regenerative Orthopedic treatments or a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced?  Check out more testimonials on this page and our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, DC is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>.  For over 25 years, Dr. Fields has been active as a triathlete and has completed numerous Ironman competitions.  His experience as an athlete allows him to understand the demands on the physical body, the potential for injury, and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nOur goal at OrthoRegen<sup>®</sup> is to help you improve your health, recover quickly, and get back to doing what you love to do!\r\n<h3><strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Regenerative Orthopedics include:</strong></h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Knee popping</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Pain after Knee Replacement</a></li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\r\n 	<li>Ligament sprain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Regenerative Orthopedics for Knee Injuries','','inherit','closed','closed','','533-revision-v1','','','2022-01-06 02:12:42','2022-01-06 02:12:42','',533,'https://www.drfields.com/?p=4932',0,'revision','',0),(4933,9,'2022-01-06 02:13:49','2022-01-06 02:13:49','<div>\r\n<h2>Regenerative Orthopedics for Knee Injuries</h2>\r\n</div>\r\n<div>Knee injuries are one of the most common problems we treat at OrthoRegen.<sup>®.  </sup></div>\r\n<div>And we successfully treat knee injuries with Regenerative Orthopedics, which include Stem Cell Therapy, Platelet Rich Plasma (PRP), and Prolotherapy.  Which type of Regenerative Orthopedic treatment is best for the knee?  That would depend on your particular injury.  Below are a few videos where our patients tell you a bit about their injury and how they did after treatment:</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong></div>\r\n<h3>The Knee</h3>\r\nThe knee joint is one of the most crucial joints in the body, and knee function is vital to carrying out everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone).  The patella or kneecap sits to the front of these bones.\r\n<h4><em>Knee Ligaments</em></h4>\r\nThe four main ligaments connect the femur and tibia at the knee: the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the medial (MCL) and lateral (LCL) collateral ligaments (on either side of the joint).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><em>Cartilage and Other Joint Structures</em></h4>\r\nThere are other essential structures in the knee, including articular cartilage.  The cartilage protects the ends of both bones and the back of the patella, allowing for smooth movement.\r\n\r\nThe meniscus is another knee structure.  It consists of two semicircular discs providing cushioning and support for the bones.\r\n\r\nOur knees are incredibly vulnerable to injury.  Any of these structures, or a combination of them, can be involved when the knee is injured.  And when knee injuries do occur, we recommend <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair the damaged tissue, ligaments, tendons, and other structures and get you back quickly to the activities you love.\r\n<h3>How Regenerative Orthopedics Works to Treat the Knee</h3>\r\n[caption id=\"attachment_4925\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4925\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-stem-cells-500x375.jpeg\" alt=\"Knee Stem Cells\" width=\"500\" height=\"375\" /> <strong>               <em>Regenerative Orthopedics for Knee Injuries</em></strong>[/caption]\r\n\r\nRegenerative Orthopedics are innovative therapies that treat the knee by stimulating the body\'s healing cascade to repair damaged tissue.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> is one type of regenerative treatment that is effective for knee injuries.  \"Prolo\" comes from the word proliferate.  Therefore, Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the soft tissue, such as the ligaments and tendons.  The proliferation of the fibroblasts encourages the formation of new, robust tissue.  Why is this important?  Because this process is precisely what is needed to repair ligament, tendon, and meniscus injuries.\r\n\r\nThe clinician may recommend platelet Rich Plasma (PRP) in some knee injury cases.  The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site.  Specific injuries will require more potent means for healing and regeneration.  And when necessary, these concentrated platelets work great because they contain large reservoirs of growth factors.  How do growth factors help?  They have the potential to significantly accelerate the normal healing process, naturally.\r\n<h3>Stem Cell Therapy</h3>\r\nStem Cell Treatments for joints are an excellent alternative for people who have been told they need joint replacement surgery.  At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Treatments</a>.  The treatment is an effective non-surgical alternative that has a great chance of helping you to <em>Avoid Joint Replacement Surgery</em>.\r\n\r\nThese Regenerative Orthopedic treatments are exciting and new cutting-edge therapies that can stimulate knee repair by regenerating weakened, torn, or damaged ligaments, tendons, and the menisci of the knee joint.\r\n\r\nDon\'t wait!  Contact us soon, so you can avoid surgery too, by receiving non-surgical treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Are You A Candidate for Regenerative Orthopedics for Your Knee Injuries?</h4>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>.  To see if you are a candidate for one of our Regenerative Orthopedic treatments or a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced?  Check out more testimonials on this page and our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, DC is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>.  For over 25 years, Dr. Fields has been active as a triathlete and has completed numerous Ironman competitions.  His experience as an athlete allows him to understand the demands on the physical body, the potential for injury, and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nOur goal at OrthoRegen<sup>®</sup> is to help you improve your health, recover quickly, and get back to doing what you love to do!\r\n<h3><strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Regenerative Orthopedics include:</strong></h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Knee popping</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Pain after Knee Replacement</a></li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\r\n 	<li>Ligament sprain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Regenerative Orthopedics for Knee Injuries','','inherit','closed','closed','','533-revision-v1','','','2022-01-06 02:13:49','2022-01-06 02:13:49','',533,'https://www.drfields.com/?p=4933',0,'revision','',0),(4934,9,'2022-01-06 02:21:26','2022-01-06 02:21:26','<div>\r\n<h2>Regenerative Orthopedics for Knee Injuries</h2>\r\n</div>\r\n<div>Knee injuries are one of the most common problems we treat at OrthoRegen.<sup>®.  </sup></div>\r\n<div>And we successfully treat knee injuries with Regenerative Orthopedics, which include Stem Cell Therapy, Platelet Rich Plasma (PRP), and Prolotherapy.  Which type of Regenerative Orthopedic treatment is best for the knee?  That would depend on your particular injury.  Below are a few videos where our patients tell you a bit about their injury and how they did after treatment:</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"Mc4Xo9RTwjw\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg\" alt=\"Christa Knee\"]\r\n<strong>Christa - Knee</strong></div>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"usKynXnU45A\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg\" alt=\"Adam Knee\"]\r\n<strong>Adam - Knee </strong></div>\r\n<h3>The Knee</h3>\r\nThe knee joint is one of the most crucial joints in the body, and knee function is vital to carrying out everyday activities.\r\n\r\nThe knee joint is in the middle of the leg and connects upwards to the femur (thigh bone) and downwards to the tibia (shin bone).  The patella or kneecap sits to the front of these bones.\r\n<h4><em>Knee Ligaments</em></h4>\r\nThe four main ligaments connect the femur and tibia at the knee: the anterior and posterior cruciate ligaments (ACL and PCL, found deep within the knee joint) and the medial (MCL) and lateral (LCL) collateral ligaments (on either side of the joint).\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4><em>Cartilage and Other Joint Structures</em></h4>\r\nThere are other essential structures in the knee, including articular cartilage.  The cartilage protects the ends of both bones and the back of the patella, allowing for smooth movement.\r\n\r\nThe meniscus is another knee structure.  It consists of two semicircular discs providing cushioning and support for the bones.\r\n\r\nOur knees are incredibly vulnerable to injury.  Any of these structures, or a combination of them, can be involved when the knee is injured.  And when knee injuries do occur, we recommend <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Regenerative Orthopedic</a> knee treatments to strengthen and repair the damaged tissue, ligaments, tendons, and other structures and get you back quickly to the activities you love.\r\n<h3>How Regenerative Orthopedics Works to Treat the Knee</h3>\r\n[caption id=\"attachment_4925\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4925\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/knee-stem-cells-500x375.jpeg\" alt=\"Knee Stem Cells\" width=\"500\" height=\"375\" /> <strong>               <em>Regenerative Orthopedics for Knee Injuries</em></strong>[/caption]\r\n\r\nRegenerative Orthopedics are innovative therapies that treat the knee by stimulating the body\'s healing cascade to repair damaged tissue.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> is one type of regenerative treatment that is effective for knee injuries.  \"Prolo\" comes from the word proliferate.  Therefore, Prolotherapy then describes the therapy which boosts the proliferation of fibroblastic cells that stimulate the growth of the soft tissue, such as the ligaments and tendons.  The proliferation of the fibroblasts encourages the formation of new, robust tissue.  Why is this important?  Because this process is precisely what is needed to repair ligament, tendon, and meniscus injuries.\r\n\r\nThe clinician may recommend platelet Rich Plasma (PRP) in some knee injury cases.  The blood platelets in Platelet Rich Plasma contain potent growth factors necessary to begin tissue repair and regeneration at the injury site. Specific injuries will require more potent means for healing and regeneration.  And when necessary, these concentrated platelets provide that means because they contain large reservoirs of growth factors.  Plus, they have the potential to significantly accelerate the normal healing process, naturally.\r\n<h3>Stem Cell Therapy</h3>\r\nStem Cell Treatments for joints are an excellent alternative for people who have been told they need joint replacement surgery.  At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Treatments</a>.  The treatment is an effective non-surgical alternative that has a great chance of helping you to <em>Avoid Joint Replacement Surgery</em>.\r\n\r\nThese Regenerative Orthopedic treatments are exciting and new cutting-edge therapies that can stimulate knee repair by regenerating weakened, torn, or damaged ligaments, tendons, and the menisci of the knee joint.\r\n\r\nDon\'t wait!  Contact us soon, so you can avoid surgery too, by receiving non-surgical treatment for your knee injuries with comprehensive Regenerative Orthopedics at OrthoRegen<sup>®</sup>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Are You A Candidate for Regenerative Orthopedics for Your Knee Injuries?</h4>\r\nPeter A. Fields, MD, DC, and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy knee treatment, as well as <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> and <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>.  To see if you are a candidate for one of our Regenerative Orthopedic treatments or a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced?  Check out more testimonials on this page and our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials\">Testimonials page</a>.\r\n\r\n<img class=\"alignright size-full wp-image-1307\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg\" alt=\"Knee Small\" width=\"150\" height=\"200\" />Peter A. Fields, MD, DC is <a href=\"/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>.  For over 25 years, Dr. Fields has been active as a triathlete and has completed numerous Ironman competitions.  His experience as an athlete allows him to understand the demands on the physical body, the potential for injury, and the passion of the athlete to get back to participating in the sport they love.\r\n\r\nOur goal at OrthoRegen<sup>®</sup> is to help you improve your health, recover quickly, and get back to doing what you love to do!\r\n<h3><strong>Some of the most common knee pain conditions and injuries we treat with comprehensive Regenerative Orthopedics include:</strong></h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/\">ACL tear Anterior Cruciate Ligament injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/\">Arthritis of the knee</a></li>\r\n 	<li>Breaststrokers knee</li>\r\n 	<li>Bucket handle tear of the meniscus</li>\r\n 	<li>Cartilage lesion</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/\">Chondromalacia patellae</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Complex meniscus tear</a></li>\r\n 	<li>Flap tear</li>\r\n 	<li>Horizontal tear</li>\r\n 	<li>Jumpers knee</li>\r\n 	<li>Knee instability</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Knee popping</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/\">Pain after Knee Replacement</a></li>\r\n 	<li>Knee stiffness</li>\r\n 	<li>Lateral Collateral Ligament (LCL) injury</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/\">Ligament laxity and ligament weakness</a></li>\r\n 	<li>Ligament sprain</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/\">Medial Collateral Ligament (MCL) injury</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/\">Meniscus tear</a></li>\r\n 	<li>Oblique meniscus tear</li>\r\n 	<li>Overuse injuries</li>\r\n 	<li>Parrot beak tear</li>\r\n 	<li>Patellar tracking</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Patellofemoral syndrome</a></li>\r\n 	<li>Posterior Cruciate Ligament (PCL) injury</li>\r\n 	<li>Post-surgical knee pain</li>\r\n 	<li>Radial meniscus tear</li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/\">Runners\'s knee</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Tendonitis and Tendinosis</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Regenerative Orthopedics for Knee Injuries','','inherit','closed','closed','','533-revision-v1','','','2022-01-06 02:21:26','2022-01-06 02:21:26','',533,'https://www.drfields.com/?p=4934',0,'revision','',0),(4936,9,'2022-02-25 21:36:17','2022-02-25 21:36:17','3eb0e706 Aa8b 48ca Af63 Fbff5efc5017','Active Life','The Athletic Doc Scuba Diving','inherit','open','closed','','3eb0e706-aa8b-48ca-af63-fbff5efc5017','','','2022-02-25 21:47:37','2022-02-25 21:47:37','',373,'https://www.drfields.com/wp-content/uploads/2019/06/3eb0e706-aa8b-48ca-af63-fbff5efc5017.jpg',0,'attachment','image/jpeg',0),(4937,9,'2022-02-25 21:47:07','2022-02-25 21:47:07','1d450099 Af27 4acb A887 88c7c66cc238','1d450099 Af27 4acb A887 88c7c66cc238','1d450099 Af27 4acb A887 88c7c66cc238','inherit','open','closed','','1d450099-af27-4acb-a887-88c7c66cc238','','','2022-02-25 21:47:07','2022-02-25 21:47:07','',373,'https://www.drfields.com/wp-content/uploads/2019/06/1d450099-af27-4acb-a887-88c7c66cc238.jpg',0,'attachment','image/jpeg',0),(4938,9,'2022-02-25 21:47:37','2022-02-25 21:47:37','The Athletic Doc Scuba Diving','The Athletic Doc Scuba Diving','The Athletic Doc Scuba Diving','inherit','open','closed','','3c2609ba-657a-4097-a191-6a009c32f46e','','','2022-02-25 21:49:19','2022-02-25 21:49:19','',373,'https://www.drfields.com/wp-content/uploads/2019/06/3c2609ba-657a-4097-a191-6a009c32f46e.jpg',0,'attachment','image/jpeg',0),(4939,9,'2022-02-25 21:49:01','2022-02-25 21:49:01','72d6778e F955 4f11 B690 3a01db6dc538 2','72d6778e F955 4f11 B690 3a01db6dc538 2','72d6778e F955 4f11 B690 3a01db6dc538 2','inherit','open','closed','','72d6778e-f955-4f11-b690-3a01db6dc538-2','','','2022-02-25 21:49:01','2022-02-25 21:49:01','',373,'https://www.drfields.com/wp-content/uploads/2019/06/72d6778e-f955-4f11-b690-3a01db6dc538-2.jpg',0,'attachment','image/jpeg',0),(4940,9,'2022-02-25 21:59:19','2022-02-25 21:59:19','<h2>The Athletic Doc<sup>®</sup></h2>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img class=\"size-full wp-image-374\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" /> <strong> Pete Jacobs 2012 Ironman<br />World Champion<br />&amp; Dr. Peter A Fields</strong>[/caption]\r\n\r\nPeter A. Fields, MD, DC is also known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h3>How Doctor Fields Became <strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong></h3>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has led to him becoming known as <strong>The Athletic Doc<sup>®</sup></strong>. To date, he has completed eleven Ironman Triathlons. An Ironman Triathlon is a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking, or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n\r\n[caption id=\"attachment_4938\" align=\"alignleft\" width=\"307\"]<img class=\" wp-image-4938\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/3c2609ba-657a-4097-a191-6a009c32f46e-366x500.jpg\" alt=\"The Athletic Doc Scuba Diving\" width=\"307\" height=\"419\" /> The Athletic Doc Scuba Diving[/caption]\r\n<h3><strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong> Keeps Active and Fit to Maintain Optimal Health</h3>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods, and white flour or white sugar products. <em>The Athletic Doc<sup>®</sup></em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic, and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water, and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h2>About <strong>The Athletic Doc<sup>®</sup></strong></h2>\r\nDr. Fields is the Director of OrthoRegen<sup>®</sup> in Santa Monica, California, one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr. Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic.\r\n\r\nDr. Fields is a leading expert in Regenerative Orthopedic treatments such as Stem Cell, PRP, and Prolotherapy, to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc<sup>®</sup> motto is \"not only train hard but smart – as if your body depended on it\"</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar\">\r\n<div id=\"aboutdocgallery\" class=\"col-md-12\">\r\n<h4>Ironman Photos &amp; Stories</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" />2017 Ironman Santa Rose</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" />2016 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" />2016 Ironman Switzerland</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\" />2015 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\" />2015 Ironman Brazil</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\" />2014 Ironman Austria</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" />2013 Ironman Canada</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" />2012 Ironman Cozumel</a></li>\r\n</ul>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2022-02-25 21:59:19','2022-02-25 21:59:19','',373,'https://www.drfields.com/?p=4940',0,'revision','',0),(4941,9,'2022-02-25 22:46:26','2022-02-25 22:46:26','<h2>The Athletic Doc<sup>®</sup></h2>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img class=\"size-full wp-image-374\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" /> <strong> Pete Jacobs 2012 Ironman<br />World Champion<br />&amp; Dr. Peter A Fields</strong>[/caption]\r\n\r\nPeter A. Fields, MD, DC has become known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h3>How Doctor Fields Became <strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong></h3>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has led to him becoming known as <strong>The Athletic Doc<sup>®</sup></strong>. To date, he has completed eleven Ironman Triathlons. An Ironman Triathlon is a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking, or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n\r\n[caption id=\"attachment_4938\" align=\"alignleft\" width=\"307\"]<img class=\" wp-image-4938\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/3c2609ba-657a-4097-a191-6a009c32f46e-366x500.jpg\" alt=\"The Athletic Doc Scuba Diving\" width=\"307\" height=\"419\" /> The Athletic Doc Scuba Diving[/caption]\r\n<h3><strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong> Keeps Active and Fit to Maintain Optimal Health</h3>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods, and white flour or white sugar products. <em>The Athletic Doc<sup>®</sup></em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic, and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water, and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h2>About <strong>The Athletic Doc<sup>®</sup></strong></h2>\r\nDr. Fields is the Director of OrthoRegen<sup>®</sup> in Santa Monica, California, one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr. Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic.\r\n\r\nDr. Fields is a leading expert in Regenerative Orthopedic treatments such as Stem Cell, PRP, and Prolotherapy, to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc<sup>®</sup> motto is \"not only train hard but smart – as if your body depended on it\"</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar\">\r\n<div id=\"aboutdocgallery\" class=\"col-md-12\">\r\n<h4>Ironman Photos &amp; Stories</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" />2017 Ironman Santa Rose</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" />2016 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" />2016 Ironman Switzerland</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\" />2015 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\" />2015 Ironman Brazil</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\" />2014 Ironman Austria</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" />2013 Ironman Canada</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" />2012 Ironman Cozumel</a></li>\r\n</ul>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2022-02-25 22:46:26','2022-02-25 22:46:26','',373,'https://www.drfields.com/?p=4941',0,'revision','',0),(4942,9,'2022-02-25 22:48:28','2022-02-25 22:48:28','<h2>The Athletic Doc<sup>®</sup></h2>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"250\"]<img class=\"size-full wp-image-374\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"250\" height=\"185\" /> <strong> Pete Jacobs 2012 Ironman<br />World Champion<br />&amp; Dr. Peter A Fields</strong>[/caption]\r\n\r\nPeter A. Fields, MD, DC has become known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h3>How Doctor Fields Became <strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong></h3>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has led to him becoming known as <strong>The Athletic Doc<sup>®</sup></strong>. To date, he has completed eleven Ironman Triathlons. An Ironman Triathlon is a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking, or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n\r\n[caption id=\"attachment_4938\" align=\"alignleft\" width=\"307\"]<img class=\" wp-image-4938\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/3c2609ba-657a-4097-a191-6a009c32f46e-366x500.jpg\" alt=\"The Athletic Doc Scuba Diving\" width=\"307\" height=\"419\" /> The Athletic Doc Scuba Diving[/caption]\r\n<h3><strong class=\"subhead\">Peter A. Fields, MD, DC</strong> Keeps Active and Fit to Maintain Optimal Health</h3>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods, and white flour or white sugar products. <em>The Athletic Doc<sup>®</sup></em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic, and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water, and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h2>About Peter A. Fields, MD, DC</h2>\r\nDr. Fields is the Director of OrthoRegen<sup>®</sup> in Santa Monica, California, one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr. Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic.\r\n\r\nDr. Fields is a leading expert in Regenerative Orthopedic treatments such as Stem Cell, PRP, and Prolotherapy, to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc<sup>®</sup> motto is \"not only train hard but smart – as if your body depended on it\"</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar\">\r\n<div id=\"aboutdocgallery\" class=\"col-md-12\">\r\n<h4>Ironman Photos &amp; Stories</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" />2017 Ironman Santa Rose</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" />2016 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" />2016 Ironman Switzerland</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\" />2015 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\" />2015 Ironman Brazil</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\" />2014 Ironman Austria</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" />2013 Ironman Canada</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" />2012 Ironman Cozumel</a></li>\r\n</ul>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2022-02-25 22:48:28','2022-02-25 22:48:28','',373,'https://www.drfields.com/?p=4942',0,'revision','',0),(4943,9,'2022-02-25 22:52:48','2022-02-25 22:52:48','<h2 style=\"text-align: left;\">The Athletic Doc<sup>®</sup></h2>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"312\"]<img class=\" wp-image-374\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"312\" height=\"231\" /> <em><strong> Pete Jacobs 2012 Ironman<br />World Champion<br />&amp; Dr. Peter A Fields</strong></em>[/caption]\r\n\r\nPeter A. Fields, MD, DC has become known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h3>How Doctor Fields Became <strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong></h3>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has led to him becoming known as <strong>The Athletic Doc<sup>®</sup></strong>. To date, he has completed eleven Ironman Triathlons. An Ironman Triathlon is a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking, or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n\r\n[caption id=\"attachment_4938\" align=\"alignleft\" width=\"307\"]<img class=\" wp-image-4938\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/3c2609ba-657a-4097-a191-6a009c32f46e-366x500.jpg\" alt=\"The Athletic Doc Scuba Diving\" width=\"307\" height=\"419\" /> <strong>      <em>The Athletic Doc Scuba Diving</em></strong>[/caption]\r\n<h3><strong class=\"subhead\">Peter A. Fields, MD, DC</strong> Keeps Active and Fit to Maintain Optimal Health</h3>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods, and white flour or white sugar products. <em>The Athletic Doc<sup>®</sup></em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic, and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water, and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h2>About Peter A. Fields, MD, DC</h2>\r\nDr. Fields is the Director of OrthoRegen<sup>®</sup> in Santa Monica, California, one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr. Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic.\r\n\r\nDr. Fields is a leading expert in Regenerative Orthopedic treatments such as Stem Cell, PRP, and Prolotherapy, to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc<sup>®</sup> motto is \"not only train hard but smart – as if your body depended on it\"</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar\">\r\n<div id=\"aboutdocgallery\" class=\"col-md-12\">\r\n<h4>Ironman Photos &amp; Stories</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" />2017 Ironman Santa Rose</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" />2016 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" />2016 Ironman Switzerland</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\" />2015 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\" />2015 Ironman Brazil</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\" />2014 Ironman Austria</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" />2013 Ironman Canada</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" />2012 Ironman Cozumel</a></li>\r\n</ul>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2022-02-25 22:52:48','2022-02-25 22:52:48','',373,'https://www.drfields.com/?p=4943',0,'revision','',0),(4944,9,'2022-02-25 22:54:39','2022-02-25 22:54:39','<h2 style=\"text-align: left;\">The Athletic Doc<sup>®</sup></h2>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"312\"]<img class=\" wp-image-374\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"312\" height=\"231\" /> <em><strong> Pete Jacobs 2012 Ironman<br />World Champion<br />&amp; Peter A. Fields, MD, DC (The Atletic Doc<sup>®)</sup></strong></em>[/caption]\r\n\r\nPeter A. Fields, MD, DC has become known as <strong> The Athletic Doc<sup>®</sup>.</strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h3>How Doctor Fields Became <strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong></h3>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has led to him becoming known as <strong>The Athletic Doc<sup>®</sup></strong>. To date, he has completed eleven Ironman Triathlons. An Ironman Triathlon is a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking, or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n\r\n[caption id=\"attachment_4938\" align=\"alignleft\" width=\"307\"]<img class=\" wp-image-4938\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/3c2609ba-657a-4097-a191-6a009c32f46e-366x500.jpg\" alt=\"The Athletic Doc Scuba Diving\" width=\"307\" height=\"419\" /> <strong>      <em>The Athletic Doc Scuba Diving</em></strong>[/caption]\r\n<h3><strong class=\"subhead\">Peter A. Fields, MD, DC</strong> Keeps Active and Fit to Maintain Optimal Health</h3>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods, and white flour or white sugar products. <em>The Athletic Doc<sup>®</sup></em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic, and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water, and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h2>About Peter A. Fields, MD, DC</h2>\r\nDr. Fields is the Director of OrthoRegen<sup>®</sup> in Santa Monica, California, one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr. Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic.\r\n\r\nDr. Fields is a leading expert in Regenerative Orthopedic treatments such as Stem Cell, PRP, and Prolotherapy, to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc<sup>®</sup> motto is \"not only train hard but smart – as if your body depended on it\"</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar\">\r\n<div id=\"aboutdocgallery\" class=\"col-md-12\">\r\n<h4>Ironman Photos &amp; Stories</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" />2017 Ironman Santa Rose</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" />2016 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" />2016 Ironman Switzerland</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\" />2015 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\" />2015 Ironman Brazil</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\" />2014 Ironman Austria</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" />2013 Ironman Canada</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" />2012 Ironman Cozumel</a></li>\r\n</ul>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2022-02-25 22:54:39','2022-02-25 22:54:39','',373,'https://www.drfields.com/?p=4944',0,'revision','',0),(4945,9,'2022-02-25 22:55:22','2022-02-25 22:55:22','<h2 style=\"text-align: left;\">The Athletic Doc<sup>®</sup></h2>\r\n[caption id=\"attachment_374\" align=\"alignleft\" width=\"312\"]<img class=\" wp-image-374\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"312\" height=\"231\" /> <em><strong> Pete Jacobs 2012 Ironman<br />World Champion<br />&amp; Peter A. Fields, MD, DC (The Atletic Doc<sup>®)</sup></strong></em>[/caption]\r\n\r\nPeter A. Fields, MD, DC has become known as <strong>The Athletic Doc<sup>®.</sup></strong>\r\nHe not only treats athletes in his practice but is an athlete himself.\r\n<h3>How Doctor Fields Became <strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong></h3>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has led to him becoming known as <strong>The Athletic Doc<sup>®</sup></strong>. To date, he has completed eleven Ironman Triathlons. An Ironman Triathlon is a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking, or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n\r\n[caption id=\"attachment_4938\" align=\"alignleft\" width=\"307\"]<img class=\" wp-image-4938\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/3c2609ba-657a-4097-a191-6a009c32f46e-366x500.jpg\" alt=\"The Athletic Doc Scuba Diving\" width=\"307\" height=\"419\" /> <strong>      <em>The Athletic Doc Scuba Diving</em></strong>[/caption]\r\n<h3><strong class=\"subhead\">Peter A. Fields, MD, DC</strong> Keeps Active and Fit to Maintain Optimal Health</h3>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods, and white flour or white sugar products. <em>The Athletic Doc<sup>®</sup></em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic, and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water, and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h2>About Peter A. Fields, MD, DC</h2>\r\nDr. Fields is the Director of OrthoRegen<sup>®</sup> in Santa Monica, California, one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr. Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic.\r\n\r\nDr. Fields is a leading expert in Regenerative Orthopedic treatments such as Stem Cell, PRP, and Prolotherapy, to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc<sup>®</sup> motto is \"not only train hard but smart – as if your body depended on it\"</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar\">\r\n<div id=\"aboutdocgallery\" class=\"col-md-12\">\r\n<h4>Ironman Photos &amp; Stories</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" />2017 Ironman Santa Rose</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" />2016 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" />2016 Ironman Switzerland</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\" />2015 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\" />2015 Ironman Brazil</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\" />2014 Ironman Austria</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" />2013 Ironman Canada</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" />2012 Ironman Cozumel</a></li>\r\n</ul>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2022-02-25 22:55:22','2022-02-25 22:55:22','',373,'https://www.drfields.com/?p=4945',0,'revision','',0),(4946,9,'2022-02-25 23:01:55','2022-02-25 23:01:55','<h2 style=\"text-align: left;\">The Athletic Doc<sup>®</sup></h2>\r\nPeter A. Fields, MD, DC has become known as <strong>The Athletic Doc<sup>®.  </sup></strong>\r\n\r\nHe not only treats athletes but is an athlete himself, so he understands the desire to keep active. So if you suffer an injury, he gets what it means to you to get back into the game or to return quickly to your sport.\r\n\r\n[caption id=\"attachment_374\" align=\"alignright\" width=\"498\"]<img class=\" wp-image-374\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"498\" height=\"369\" /> <em><strong> Pete Jacobs 2012 Ironman World Champion and Dr. Fields           (The Atletic Doc<sup>®)</sup></strong></em><span style=\"font-size: 16px;\">He not only treats athletes in his practice but is an athlete himself.</span>[/caption]\r\n<h3>How Doctor Fields Became <strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong></h3>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has led to him becoming known as <strong>The Athletic Doc<sup>®</sup></strong>. To date, he has completed eleven Ironman Triathlons. An Ironman Triathlon is a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking, or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just afew.\r\n\r\n[caption id=\"attachment_4938\" align=\"alignleft\" width=\"359\"]<img class=\" wp-image-4938\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/3c2609ba-657a-4097-a191-6a009c32f46e-366x500.jpg\" alt=\"The Athletic Doc Scuba Diving\" width=\"359\" height=\"490\" /> <strong>      <em>The Athletic Doc Scuba Diving</em></strong>[/caption]\r\n<h3><strong class=\"subhead\">Peter A. Fields, MD, DC</strong> Keeps Active and Fit to Maintain Optimal Health</h3>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods, and white flour or white sugar products. <em>The Athletic Doc<sup>®</sup></em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic, and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water, and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h2>About Peter A. Fields, MD, DC</h2>\r\nDr. Fields is the Director of OrthoRegen<sup>®</sup> in Santa Monica, California, one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr. Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic.\r\n\r\nDr. Fields is a leading expert in Regenerative Orthopedic treatments such as Stem Cells, PRP, and Prolotherapy, to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc<sup>®</sup> motto is \"not only train hard but smart – as if your body depended on it\"</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar\">\r\n<div id=\"aboutdocgallery\" class=\"col-md-12\">\r\n<h4>Ironman Photos &amp; Stories</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" />2017 Ironman Santa Rose</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" />2016 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" />2016 Ironman Switzerland</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\" />2015 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\" />2015 Ironman Brazil</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\" />2014 Ironman Austria</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" />2013 Ironman Canada</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" />2012 Ironman Cozumel</a></li>\r\n</ul>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2022-02-25 23:01:55','2022-02-25 23:01:55','',373,'https://www.drfields.com/?p=4946',0,'revision','',0),(4947,9,'2022-02-25 23:04:38','2022-02-25 23:04:38','<img class=\"aligncenter size-full wp-image-1759\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/event-logo-im-hamburg.jpg\" alt=\"Event Logo Im Hamburg\" width=\"370\" height=\"158\" />\r\n<h4 id=\"athleticdoc\" class=\"text-center\">Peter A. Fields, MD DC</h4>\r\n<h5 class=\"text-center\">The Athletic Doc®</h5>\r\n<h5 class=\"text-center\">will be competing in his\r\n10th Ironman\r\nin Hamburg Germany\r\nSunday July 29, 2018</h5>\r\n<p class=\"text-center\">Start time is 6:40am Hamburg time\r\nwhich is 10:40pm Saturday night in LA\r\n(there is a nine-hour time difference).</p>\r\n<p class=\"text-center\">His estimated time is\r\nbetween 13.5-14 hours.</p>\r\n\r\n<h5 class=\"text-center\"><u>How To follow Dr Fields</u></h5>\r\n<p class=\"text-center\">1. Download the Ironman Tracker app from your app store\r\nLook or search for Ironman Hamburg\r\nSearch for Peter Fields name\r\n\r\n2. Or on your desktop or laptop go to\r\n<a href=\"http://www.Ironmanlive.com\"><span style=\"font-size: 32px;\">Ironmanlive.com</span></a>\r\nand look for Ironman Hamburg.\r\nThen click on the Athlete Tracker link</p>\r\n<p class=\"text-center\">In case he does not come up by name, his race number is 2361.</p>\r\n\r\n<h4 id=\"athleticdoc\" class=\"text-center\">Go The Athletic Doc®!!</h4>','Ironman','','inherit','closed','closed','','1758-revision-v1','','','2022-02-25 23:04:38','2022-02-25 23:04:38','',1758,'https://www.drfields.com/?p=4947',0,'revision','',0),(4948,9,'2022-02-25 23:05:33','2022-02-25 23:05:33','<img class=\"size-full wp-image-2369 aligncenter\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/image1-1.png\" alt=\"Image1 (1)\" width=\"320\" height=\"240\" />\r\n<h2 style=\"text-align: center;\"><b>The Athletic Doc® will be competing in his</b></h2>\r\n<h1 style=\"text-align: center; color: #4bacc6;\"><b>   </b><b>11</b><b>th</b><b> Ironman!!</b></h1>\r\n<h1 style=\"text-align: center;\"><b>  July 14, 2019 in Spain</b></h1>\r\n<img class=\"aligncenter size-full wp-image-2373\" src=\"https://www.drfields.com/wp-content/uploads/2019/07/11th-ironman.png\" alt=\"11th Ironman\" width=\"437\" height=\"175\" />\r\n<h1 style=\"text-align: center;\"><b>     Follow Dr. Fields live</b></h1>\r\n<p style=\"text-align: center; color: #ff0000;\"><b>Go to Ironman.com</b></p>\r\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Search Vitoria-Gasteiz (click athlete tracker)</span><span style=\"font-weight: 400;\">\r\n</span><b>or</b></p>\r\n\r\n<h2 style=\"text-align: center; color: #ff0000;\"><b>Download the Ironman Tracker App</b></h2>\r\n<h2 style=\"text-align: center;\"><b>      Go The Athletic Doc!</b></h2>\r\n<p style=\"text-align: center;\"><b>NOTE: Race starts at 8:30am Sunday the 14</b><b>th </b><b>local time</b></p>\r\n<p style=\"text-align: center;\"><b>(11:30 pm Sat Night July 13</b><b>th</b><b> LA time) </b><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">There is a 9hour time difference.</span></p>\r\n<p style=\"text-align: center;\"><b>Dr Fields est. time is 13.5-14.5 hrs. Race number is 1919</b></p>','11th Ironman','','inherit','closed','closed','','2366-revision-v1','','','2022-02-25 23:05:33','2022-02-25 23:05:33','',2366,'https://www.drfields.com/?p=4948',0,'revision','',0),(4949,9,'2022-02-25 23:08:17','2022-02-25 23:08:17','<div></div>\r\n<h2 style=\"text-align: center;\">Ironman Maryland Race Report</h2>\r\n<div></div>\r\n<div class=\"col-md-8\">\r\n\r\n<img class=\"aligncenter size-full wp-image-362\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg\" alt=\"Ironman Maryland\" />\r\n<h6 class=\"text-center\" style=\"text-align: center;\"><em>Saturday, September 29, 2018</em>\r\n<em>2.4-mile swim, 112-mile bike, 26.2-mile run</em></h6>\r\n<p class=\"text-center\"><em>\"Never lose sight of your goals\"</em>-Yvette and Fred Fields</p>\r\n\r\n<h3><strong>Here’s the story of my 10th Ironman:</strong></h3>\r\nI originally scheduled this to take place at Ironman Hamburg, Germany, on June 30, 2018.\r\nHamburg is special for me as I lived there for 9 months many years ago. And both my parents were born in Germany.\r\nUnfortunately, it was not meant to be.\r\n\r\nDue to the extreme heat in Europe this summer, they canceled the swim three days before the event due to the high algae count in the lake.\r\n\r\nUpon returning to the states I had to reevaluate. If one does 12 Ironman races and at least one in each year, you can get a special lottery entry into the world championships in Kona, Hawaii. My count now still stood at 9. If I didn’t do one this year my total would go back to zero. I looked at my options and the best one was <strong>Ironman Maryland</strong> at the end of September. Since it was less than two months away, I just had to maintain my fitness level with moderate workouts.\r\n<h3><strong class=\"subhead\">Getting There:</strong></h3>\r\nThe flight to Maryland was a lot easier than it was to Hamburg. It was in Cambridge, Maryland, which is the outer banks of Maryland. Cross-country flight to Philadelphia and a short flight to a small airport near Cambridge. After checking in at the hotel,  I looked over the course and got ready for race day. The swim took place in a river that fed from the ocean. The day of the race the weather was very good.\r\n<h3><strong class=\"subhead\">Ironman Maryland-The Swim 2.4 miles:</strong></h3>\r\n<img class=\"alignleft  wp-image-363\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg\" alt=\"Swim 400\" width=\"242\" height=\"410\" />Ironman Maryland is notorious for rainy weather but race day was clear and without clouds. My swim went well. The water was wetsuit legal which meant the water was below 76.2 degrees. At 74 degrees, it was warm but I left my wetsuit on as did most of the other athletes. Because I’m a strong swimmer, it’s easy for me to overheat in a wetsuit. I had learned in practice, just two days before, to pull the zipper down on the back of my wetsuit to let a little bit of water in to cool me down.\r\n\r\nPlus, twice during the race I lifted the front of my wetsuit off my chest and let water in. This was enough to cool me down. All in all, I felt very good in the swim. As I exited the water after 2.4 miles, I was aware of the problems I had on the bike so was very cautious and prepared with my nutrition intake.\r\n<h3><strong class=\"subhead\">The Bike 112 miles:</strong></h3>\r\n<img class=\"alignright  wp-image-364\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg\" alt=\"Bike2 600\" width=\"411\" height=\"341\" />There was some wind on the bike which picked up after 40 miles. But somehow, I felt strong. I was biking faster than I had ever biked before. Halfway through I was under 3 hours. My normal time for 56 miles is 3:10 or more.\r\n\r\nI kept pushing ahead without exerting myself too much to save myself for the run.\r\nAnd I did not have any stomach problems!\r\n\r\nI got off the bike at 6 hours and 6 minutes which was 24 minutes faster than I had ever done a bike ride in an Ironman. I was exceptionally pleased. I even commented to the people in the transition why were there so many transition bags in the area and they all said those people haven’t finished. This surprised even me as I am usually a lot slower and there are usually less bags there.  Everything was going as planned.\r\n<h3><strong class=\"subhead\">The Run 26.2 miles:</strong></h3>\r\n<img class=\"alignleft  wp-image-365\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg\" alt=\"Run1 400\" width=\"236\" height=\"425\" />As I exited the transition area to start my marathon run, I felt very good and strong. The first 5 or 6 miles went well. Unfortunately, then I started to have some foot problems. Ironman races are all about crisis control. So, I knew not to lose my cool and just keep going.\r\n\r\n<strong>Foot problems turned out to be my Achilles heel for this race.</strong>\r\n\r\nSo, I ran and walked for a while. Around mile 13 I had some stomach problems which made me sit down for a bit, but I battled through that.\r\n\r\nUnfortunately, foot problems persisted, which slowed me down and even made me fast walk at least 8 of the last 12 miles. But either way, after what had happened in Hamburg, I was determined not to let anything stop me from completing the race. I just stayed focused even as the sun went down and I started to get cold since I was not running as much.\r\n\r\nOne of the houses I passed by had a few people outside cheering, so I asked if they had an extra t-shirt. One guy there went inside and brought back his volunteer shirt (he had volunteered earlier in the race) and just told me to turn it inside out, so people did not think I was a volunteer. I thanked him profusely. This helped a lot and kept me going without getting cold.\r\n\r\n<img class=\"alignright size-full wp-image-366\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg\" alt=\"Finish Line C 400\" width=\"300\" height=\"338\" />So, as I turned the last corner and headed to last 500 yards I knew I had made it. Even with my foot problems and some stomach problems I was able to keep my head in the game and not lose concentration. <strong>There is a saying that in an Ironman the run is 90% mental and the rest is in your head! Hahaha.</strong>\r\n\r\nAnd as I entered the finish chute and crossed the finish line, for the tenth time I heard the announcer say:\r\n\r\n<em><strong>Peter Fields, “You are an Ironman!”</strong>\r\n</em>\r\n\r\nAll my aches and pains just faded away.\r\n<h3><strong class=\"subhead\">Ironman Maryland Postscript:</strong></h3>\r\nAs with every race, my parents’ spirit was with me the whole way. What they went through to survive the fascism of World War II in their countries and resettle in this country was nothing compared to what I had to do for this one day. The fortitude and determination that they gave me kept me going the whole way. I am eternally grateful to have had them as my parents.\r\n\r\nA very dear friend of mine is going through a severe illness right now. I do not wish to put his name out in a mass email to allow him some privacy. I wrote his initials on my forearms so that I could think of him when racing. It’s a tough time he’s going through. Never letting anything stand in his way. Smiling every day and keeping a positive attitude no matter how he is feeling.  He is the true Ironman. When things got bad during my run I looked at my forearms and thought of him with his will and perseverance no matter how bad things get. This helped me get through my day. I dedicated this race in his honor.\r\n\r\nI want to again thank everybody who thought of me during the race or who offered me congratulations on\r\nfinishing my 10th Ironman.\r\n\r\nAnd of course, everyone who took the time to read this.\r\n\r\n<strong>Peter A. Fields, MD, DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 10X Ironman Triathlete</strong>\r\n\r\n</div>\r\n<div id=\"sidebar2\" class=\"col-md-4\"><a class=\"youtube\" href=\"https://www.youtube.com/watch?v=qTJCmEnrqYg\"><img style=\"width: 250px; height: 276px;\" title=\"Ironman Maryland 2018 Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/post-finish-400b.jpg\" alt=\"Ironman Maryland 2018 Finisher\" /></a>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong>\r\nThe Athletic Doc<sup>®</sup>,\r\n</strong></span>Post race pic\r\n<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em><a href=\"https://photos.google.com/share/AF1QipN-HsVLxHi_BQ_2nP6zLXP6J8ZTFSNJ6IOp8OWMOlpDKkKhr2mo1qrbf6IRAb3iPg?key=cnNlNUFmU0VxUEZuR0lhTmVOOXp3dDB2czNkMTNB\" target=\"_blank\" rel=\"noopener noreferrer\">2018 Maryland\r\nClick For More Photos</a>Click below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/About/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 10th Ironman','','inherit','closed','closed','','361-revision-v1','','','2022-02-25 23:08:17','2022-02-25 23:08:17','',361,'https://www.drfields.com/?p=4949',0,'revision','',0),(4950,9,'2022-02-25 23:49:08','2022-02-25 23:49:08','<h2>Ironman 9 in Santa Rosa, California</h2>\n<p class=\"col-md-8\">My parents, Yvette and Fred Fields said, \"Always keep moving forward in life.\" And in Ironman 9, and during all of my ironman competitions, that saying is always in my mind.</p>\n\n\n[caption id=\"attachment_355\" align=\"alignleft\" width=\"275\"]<img class=\"size-full wp-image-355\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg\" alt=\"Ironman Santa Rosa Snoopy\" width=\"275\" height=\"240\" /> <strong>Dr. Fields and Snoopy</strong>[/caption]\n<h3 class=\"col-md-8\"><strong class=\"subhead\">GETTING READY FOR IRONMAN 9</strong></h3>\n<p class=\"col-md-8\">This one was a lot easier to get to than the others as it was my first Ironman in the US and in northern California- only a one-hour and 20-minute flight up to Santa Rosa.  At the airport, I was greeted by Snoopy and Charlie Brown, as Santa Rosa is the home of Charles Schulz, the creator of Peanuts.  They both offered me encouragement!</p>\n\n<h3><strong class=\"subhead\">RACE DAY MORNING</strong></h3>\nThis race was a bit different than others. The lake where we swam in, Lake Sonoma, is 40 miles from downtown. This is very unusual when it is usually right at the start or within a few miles of the transition area.  So we had to report for buses leaving at 4 a.m. from the downtown area. Then I had to drive down to the downtown area, park the car and walk over to where the buses were.\n\nFortunately, my bike and other gear were already at the lake.  After a one-hour bus ride to the lake, I settled in by checking my bike, pumping the tires, filling the water bottles, and loading the nutrition on the bike.  Then it was time to head down to the lakefront. The day before, the water had been very warm, but the morning of the race they determined that it was still wetsuit legal (below 76 degrees). Since everyone else was wearing it, I decided to wear one even though I get very warm in it.\n<h3><strong class=\"subhead\">THE SWIM: 2.4 Miles</strong></h3>\n[caption id=\"attachment_354\" align=\"alignleft\" width=\"264\"]<img class=\" wp-image-354\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg\" alt=\"Ironman Santa Rosa Swim\" width=\"264\" height=\"396\" /> <strong>Swim Finish with his parents\' initials on my forearms</strong>[/caption]\n\nAs we lined up to start to get in the water there were a few people without wetsuits. At that point, I thought maybe I should not have worn my wetsuit. Swimming is my best sport and the wetsuit does get restrictive in my arm swing, but I decided to keep it on anyway. As I entered the water I realized that the water was very warm. Since it was crowded, I stayed towards the outside of the swimmers because the fast swimmer group I was in can get very aggressive.\n\nHalfway through the first loop, I realized I was getting too warm. After the first lap, I had the opportunity to run out onto the landing, take it off, and get back into the water. I lost a little time doing this but it was well worth it. The second lap went a lot better as I was not overheating.\n\nAfter the swim there is a quarter-mile very steep hill to get to your bicycle. They told people to not leave shoes or other footgear down at the bottom. So most of us did not. But some people left shoes halfway up the hill. This was a violation of the rules but no one said anything. They did have some artificial grass-type material down so that the road up was not too tough. But the hill is quite steep and many people, including myself, walked or fast-walked most of the way so as not to exhaust ourselves for the bike ride. Quickly into the transition area, I grabbed my gear, changed, and got onto my bike.\n<h3><strong class=\"subhead\">THE BIKE: 112 Miles</strong></h3>\n[caption id=\"attachment_353\" align=\"alignright\" width=\"299\"]<img class=\" wp-image-353\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg\" alt=\"Ironman Santa Rosa Bike 3\" width=\"299\" height=\"538\" /> <strong>Dr. Fields during the 112-mile bike ride</strong>[/caption]\n\nThe bike had 4,000 feet of climbing. I prepared for this so overall it was not too bad. Lots of wineries; at least 30 or more. It was not as scenic as other Ironman races I have done because we did ride along a highway several times but pleasant when going by wineries.\n\nUnfortunately, the roads were not in great shape. There are a lot of uneven areas as well as small little potholes. This was even more difficult as it was extremely sunny. When you would go through an area that was shaded you could not see the road since you were wearing dark sunglasses. This made for an uncomfortable ride.\n\nRight before we got to town, at about the 65-mile mark, I got a flat. I did not notice it at first but as my speed dropped and I was pushing even harder, I had to get off the bike and check. Sure enough, the tire was flat. And it was the back tire, which takes more to change. But to my surprise, as I dismounted, one of the repair vehicles that circles the bike course (there were three or four of them) pulled up right behind me. What luck! The mechanic grabbed his pump and had my tire changed, pumped up, and ready to go in less than two minutes. Faster than I could have ever have done it. And without greasy hands too!\n\nSo back on the bike, I finally got to the town where we then had to ride two 17-mile loops. This was invigorating as the crowd was there. Unfortunately, on these loops, the road got even worse. There were areas that were so bumpy one of the following riders said he thought he lost a crown. We all laughed. Although they predicted it to be in the 90s, it only went to about 86 or 87 degrees. But it was very sunny with no wind and with minimal shade, so it did get warm. All in all, I had a good bike ride.\n\nSo, as we entered the town on the last loop, the crowds were cheering. Then it was into T2 tent and change into running shoes, visor, down some nutrition and out for the 26.2-mile marathon run.\n<h3><strong class=\"subhead\">THE RUN: 26.2 Miles</strong></h3>\n[caption id=\"attachment_352\" align=\"alignleft\" width=\"255\"]<img class=\" wp-image-352\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg\" alt=\"Ironman Santa Rosa Run 2\" width=\"255\" height=\"459\" /> <strong> Dr. Fields during the 26.2-mile run</strong>[/caption]\n\nAs we left the change tent, there were lots of people yelling and screaming encouragement. This was a good thing. It was now very sunny and very warm outside. Most of the run was done along a dry riverbed. Then the crowds dwindled. There was some shade but not everywhere, so the sun took its toll, and I had some difficulties with my foot. Fortunately, I could adjust my running gait and keep going.\n\nThe first 8.8 miles (the first loop) was pretty good. On the second, the foot pain got stronger and I had to walk/run quite a bit. But, as always, I just kept moving forward. There were a lot of runners out there for support. And of course, I was supporting the others that were not doing well. Being with the other athletes gave me tremendous moral support and the will to not give up. The second loop was tough as it took place during the 11th and 13th hours of racing, so keeping one\'s mind occupied is imperative. Dealing with my foot pain plus the physical and mental exhaustion that one experiences in an Ironman are always a challenge. As I began the third loop, I knew that if I made it to the turnaround at 4.4 miles, I was home free. As I made the final turn to head back towards town I knew that no matter how tough things got I was going to make it.\n<h3>Crossing the Finish Line</h3>\n[caption id=\"attachment_351\" align=\"alignright\" width=\"289\"]<img class=\" wp-image-351\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" width=\"289\" height=\"520\" /> <strong> Dr. Fields crossing the finish line</strong>[/caption]\n\nI encouraged those that I passed as well as the ones that were only on their second loop. As I exited the riverbed area up onto the streets, I thought I only had less than a quarter-mile to go, when in fact it was really over half a mile.\n\nJust then a guy ran up to me and said, “Hey Peter you\'re doing great”. I did not recognize him but I had my name on my running bib and thought he just saw that. He ran alongside me and told me that his girlfriend was not far behind. He told me her name and that did not ring a bell either.\n\nIt really didn’t matter as he was encouraging me, which was needed at that time. He finally turned around to go back to meet her. As I ran off, the energy that he had given me would carry me the rest of the way. As I came down the final stretch I knew I was going to finish my 9th Ironman Triathlon. It was tough but Ironman is never easy. The exhilaration and enthusiasm of the crowd, and hearing the announcer say, <strong>\"<em>Peter Fields, you are an Ironman!”</em>,</strong> never gets old. Never.\n\nAs I came through the shoot and they took my pictures, I looked over and there was the young guy who I had seen as I exited the riverbed.  As I approached him, I recognized him as the son of one of my best friends.  We both laughed and embraced and I told him how appreciative I was for his encouragement.\n\n<strong class=\"subhead\">POSTSCRIPT</strong>\n\nThese races are not only a physical challenge but also a mental challenge. With the difficulties with the wetsuit, the warm water, the uneven roads, the heat, the flat tire, and my foot problems on the run, this was not an easy race. But again, I persevered.\n\nI always keep a remembrance of my parents with me at all times in my race jersey pocket. When things would get bad, I would reach back and touch it and say. \"thanks mom and dad for being with me.\" This kept me going through any difficulties I was having. With all their struggles in their lives (fleeing near-certain death in fascist Germany, emigrating with almost nothing, meeting each other in the US and building a new life and more), they just kept moving forward and never looked back.\n\nThey taught me over and over again, that no matter how tough things get in life, just keep putting one foot in front of the other and keep going. They supported me no matter what I did as long as I had my heart and mind in it. On this day, and every day of my life, I knew they were with me all the way.\n\nAs I said after they passed, “You are not dead, dead or only those that one forgets”. I will never forget them as they never forgot me. This, and all of my races, are dedicated in their honor. And I always start each race with their initials marked on my forearms.\n\nI want to thank you for taking the time to read this and for supporting me, whether online, thinking about me, or by reading this.\n\n<strong>Peter A. Fields, MD DC</strong>\n<strong>The Athletic Doc<sup>®</sup> and 9X Ironman Triathlete</strong>\n<div id=\"sidebar2\" class=\"col-md-4\"><a class=\"youtube\" href=\"https://www.youtube.com/watch?v=ds0_hCW9WA4\"><img title=\"Ironman Santa Rosa Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finisher-2.jpg\" alt=\"Ironman Santa Rosa Finisher\" /></a>\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong>\nThe Athletic Doc<sup>®</sup>,\n</strong></span>Post-race pic\n\n<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em><a href=\"https://photos.google.com/share/AF1QipOZKCkaR9a0fl-OfBkXj-Z46M__ixhQOKqFQiAB_sf0rQDWmGsv_NdpwYlUbChPfw?key=MWNqUHJtR0hwSmdyVVFxQ2t1WmY3ZkVTYlNFZ2FB\" target=\"_blank\" rel=\"noopener noreferrer\">2017 Santa Rosa\nClick For More Photos</a>\n\nClick below for Pictures &amp; Story\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\n\n</div>','Race Report 9th Ironman','','inherit','closed','closed','','348-autosave-v1','','','2022-02-25 23:49:08','2022-02-25 23:49:08','',348,'https://www.drfields.com/?p=4950',0,'revision','',0),(4951,9,'2022-02-25 23:49:38','2022-02-25 23:49:38','<h2>Ironman 9 in Santa Rosa, California</h2>\r\n<p class=\"col-md-8\">My parents, Yvette and Fred Fields said, \"Always keep moving forward in life.\" And in Ironman 9, and during all of my ironman competitions, that saying is always in my mind.</p>\r\n\r\n\r\n[caption id=\"attachment_355\" align=\"alignleft\" width=\"275\"]<img class=\"size-full wp-image-355\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg\" alt=\"Ironman Santa Rosa Snoopy\" width=\"275\" height=\"240\" /> <strong>Dr. Fields and Snoopy</strong>[/caption]\r\n<h3 class=\"col-md-8\"><strong class=\"subhead\">GETTING READY FOR IRONMAN 9</strong></h3>\r\n<p class=\"col-md-8\">This one was a lot easier to get to than the others as it was my first Ironman in the US and in northern California- only a one-hour and 20-minute flight up to Santa Rosa.  At the airport, I was greeted by Snoopy and Charlie Brown, as Santa Rosa is the home of Charles Schulz, the creator of Peanuts.  They both offered me encouragement!</p>\r\n\r\n<h3><strong class=\"subhead\">RACE DAY MORNING</strong></h3>\r\nThis race was a bit different than others. The lake where we swam in, Lake Sonoma, is 40 miles from downtown. This is very unusual when it is usually right at the start or within a few miles of the transition area.  So we had to report for buses leaving at 4 a.m. from the downtown area. Then I had to drive down to the downtown area, park the car and walk over to where the buses were.\r\n\r\nFortunately, my bike and other gear were already at the lake.  After a one-hour bus ride to the lake, I settled in by checking my bike, pumping the tires, filling the water bottles, and loading the nutrition on the bike.  Then it was time to head down to the lakefront. The day before, the water had been very warm, but the morning of the race they determined that it was still wetsuit legal (below 76 degrees). Since everyone else was wearing it, I decided to wear one even though I get very warm in it.\r\n<h3><strong class=\"subhead\">THE SWIM: 2.4 Miles</strong></h3>\r\n[caption id=\"attachment_354\" align=\"alignleft\" width=\"264\"]<img class=\" wp-image-354\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg\" alt=\"Ironman Santa Rosa Swim\" width=\"264\" height=\"396\" /> <strong>Swim Finish with his parents\' initials on my forearms</strong>[/caption]\r\n\r\nAs we lined up to start to get in the water there were a few people without wetsuits. At that point, I thought maybe I should not have worn my wetsuit. Swimming is my best sport and the wetsuit does get restrictive in my arm swing, but I decided to keep it on anyway. As I entered the water I realized that the water was very warm. Since it was crowded, I stayed towards the outside of the swimmers because the fast swimmer group I was in can get very aggressive.\r\n\r\nHalfway through the first loop, I realized I was getting too warm. After the first lap, I had the opportunity to run out onto the landing, take it off, and get back into the water. I lost a little time doing this but it was well worth it. The second lap went a lot better as I was not overheating.\r\n\r\nAfter the swim there is a quarter-mile very steep hill to get to your bicycle. They told people to not leave shoes or other footgear down at the bottom. So most of us did not. But some people left shoes halfway up the hill. This was a violation of the rules but no one said anything. They did have some artificial grass-type material down so that the road up was not too tough. But the hill is quite steep and many people, including myself, walked or fast-walked most of the way so as not to exhaust ourselves for the bike ride. Quickly into the transition area, I grabbed my gear, changed, and got onto my bike.\r\n<h3><strong class=\"subhead\">THE BIKE: 112 Miles</strong></h3>\r\n[caption id=\"attachment_353\" align=\"alignright\" width=\"299\"]<img class=\" wp-image-353\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg\" alt=\"Ironman Santa Rosa Bike 3\" width=\"299\" height=\"538\" /> <strong>Dr. Fields during the 112-mile bike ride</strong>[/caption]\r\n\r\nThe bike had 4,000 feet of climbing. I prepared for this so overall it was not too bad. Lots of wineries; at least 30 or more. It was not as scenic as other Ironman races I have done because we did ride along a highway several times but pleasant when going by wineries.\r\n\r\nUnfortunately, the roads were not in great shape. There are a lot of uneven areas as well as small little potholes. This was even more difficult as it was extremely sunny. When you would go through an area that was shaded you could not see the road since you were wearing dark sunglasses. This made for an uncomfortable ride.\r\n\r\nRight before we got to town, at about the 65-mile mark, I got a flat. I did not notice it at first but as my speed dropped and I was pushing even harder, I had to get off the bike and check. Sure enough, the tire was flat. And it was the back tire, which takes more to change. But to my surprise, as I dismounted, one of the repair vehicles that circles the bike course (there were three or four of them) pulled up right behind me. What luck! The mechanic grabbed his pump and had my tire changed, pumped up, and ready to go in less than two minutes. Faster than I could have ever have done it. And without greasy hands too!\r\n\r\nSo back on the bike, I finally got to the town where we then had to ride two 17-mile loops. This was invigorating as the crowd was there. Unfortunately, on these loops, the road got even worse. There were areas that were so bumpy one of the following riders said he thought he lost a crown. We all laughed. Although they predicted it to be in the 90s, it only went to about 86 or 87 degrees. But it was very sunny with no wind and with minimal shade, so it did get warm. All in all, I had a good bike ride.\r\n\r\nSo, as we entered the town on the last loop, the crowds were cheering. Then it was into T2 tent and change into running shoes, visor, down some nutrition and out for the 26.2-mile marathon run.\r\n<h3><strong class=\"subhead\">THE RUN: 26.2 Miles</strong></h3>\r\n[caption id=\"attachment_352\" align=\"alignleft\" width=\"255\"]<img class=\" wp-image-352\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg\" alt=\"Ironman Santa Rosa Run 2\" width=\"255\" height=\"459\" /> <strong> Dr. Fields during the 26.2-mile run</strong>[/caption]\r\n\r\nAs we left the change tent, there were lots of people yelling and screaming encouragement. This was a good thing. It was now very sunny and very warm outside. Most of the run was done along a dry riverbed. Then the crowds dwindled. There was some shade but not everywhere, so the sun took its toll, and I had some difficulties with my foot. Fortunately, I could adjust my running gait and keep going.\r\n\r\nThe first 8.8 miles (the first loop) was pretty good. On the second, the foot pain got stronger and I had to walk/run quite a bit. But, as always, I just kept moving forward. There were a lot of runners out there for support. And of course, I was supporting the others that were not doing well. Being with the other athletes gave me tremendous moral support and the will to not give up.\r\n\r\nThe second loop was tough as it took place during the 11th and 13th hours of racing, so keeping one\'s mind occupied is imperative. Dealing with my foot pain plus the physical and mental exhaustion that one experiences in an Ironman are always a challenge. As I began the third loop, I knew that if I made it to the turnaround at 4.4 miles, I was home free. As I made the final turn to head back towards town I knew that no matter how tough things got I was going to make it.\r\n<h3>Crossing the Finish Line</h3>\r\n[caption id=\"attachment_351\" align=\"alignright\" width=\"289\"]<img class=\" wp-image-351\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" width=\"289\" height=\"520\" /> <strong> Dr. Fields crossing the finish line</strong>[/caption]\r\n\r\nI encouraged those that I passed as well as the ones that were only on their second loop. As I exited the riverbed area up onto the streets, I thought I only had less than a quarter-mile to go, when in fact it was really over half a mile.\r\n\r\nJust then a guy ran up to me and said, “Hey Peter you\'re doing great”. I did not recognize him but I had my name on my running bib and thought he just saw that. He ran alongside me and told me that his girlfriend was not far behind. He told me her name and that did not ring a bell either.\r\n\r\nIt really didn’t matter as he was encouraging me, which was needed at that time. He finally turned around to go back to meet her. As I ran off, the energy that he had given me would carry me the rest of the way. As I came down the final stretch I knew I was going to finish my 9th Ironman Triathlon. It was tough but Ironman is never easy. The exhilaration and enthusiasm of the crowd, and hearing the announcer say, <strong>\"<em>Peter Fields, you are an Ironman!”</em>,</strong> never gets old. Never.\r\n\r\nAs I came through the shoot and they took my pictures, I looked over and there was the young guy who I had seen as I exited the riverbed.  As I approached him, I recognized him as the son of one of my best friends.  We both laughed and embraced and I told him how appreciative I was for his encouragement.\r\n\r\n<strong class=\"subhead\">POSTSCRIPT</strong>\r\n\r\nThese races are not only a physical challenge but also a mental challenge. With the difficulties with the wetsuit, the warm water, the uneven roads, the heat, the flat tire, and my foot problems on the run, this was not an easy race. But again, I persevered.\r\n\r\nI always keep a remembrance of my parents with me at all times in my race jersey pocket. When things would get bad, I would reach back and touch it and say. \"thanks mom and dad for being with me.\" This kept me going through any difficulties I was having. With all their struggles in their lives (fleeing near-certain death in fascist Germany, emigrating with almost nothing, meeting each other in the US and building a new life and more), they just kept moving forward and never looked back.\r\n\r\nThey taught me over and over again, that no matter how tough things get in life, just keep putting one foot in front of the other and keep going. They supported me no matter what I did as long as I had my heart and mind in it. On this day, and every day of my life, I knew they were with me all the way.\r\n\r\nAs I said after they passed, “You are not dead, dead or only those that one forgets”. I will never forget them as they never forgot me. This, and all of my races, are dedicated in their honor. And I always start each race with their initials marked on my forearms.\r\n\r\nI want to thank you for taking the time to read this and for supporting me, whether online, thinking about me, or by reading this.\r\n\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 9X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\"><a class=\"youtube\" href=\"https://www.youtube.com/watch?v=ds0_hCW9WA4\"><img title=\"Ironman Santa Rosa Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finisher-2.jpg\" alt=\"Ironman Santa Rosa Finisher\" /></a>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong>\r\nThe Athletic Doc<sup>®</sup>,\r\n</strong></span>Post-race pic\r\n\r\n<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em><a href=\"https://photos.google.com/share/AF1QipOZKCkaR9a0fl-OfBkXj-Z46M__ixhQOKqFQiAB_sf0rQDWmGsv_NdpwYlUbChPfw?key=MWNqUHJtR0hwSmdyVVFxQ2t1WmY3ZkVTYlNFZ2FB\" target=\"_blank\" rel=\"noopener noreferrer\">2017 Santa Rosa\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Race Report 9th Ironman','','inherit','closed','closed','','348-revision-v1','','','2022-02-25 23:49:38','2022-02-25 23:49:38','',348,'https://www.drfields.com/?p=4951',0,'revision','',0),(4952,9,'2022-02-25 23:50:12','2022-02-25 23:50:12','<h2>Ironman 9 in Santa Rosa, California</h2>\r\n<p class=\"col-md-8\">My parents, Yvette and Fred Fields said, \"Always keep moving forward in life.\" And in Ironman 9, and during all of my ironman competitions, that saying is always in my mind.</p>\r\n\r\n\r\n[caption id=\"attachment_355\" align=\"alignleft\" width=\"275\"]<img class=\"size-full wp-image-355\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg\" alt=\"Ironman Santa Rosa Snoopy\" width=\"275\" height=\"240\" /> <strong>Dr. Fields and Snoopy</strong>[/caption]\r\n<h3 class=\"col-md-8\"><strong class=\"subhead\">GETTING READY FOR IRONMAN 9</strong></h3>\r\n<p class=\"col-md-8\">This one was a lot easier to get to than the others as it was my first Ironman in the US and in northern California- only a one-hour and 20-minute flight up to Santa Rosa.  At the airport, I was greeted by Snoopy and Charlie Brown, as Santa Rosa is the home of Charles Schulz, the creator of Peanuts.  They both offered me encouragement!</p>\r\n\r\n<h3><strong class=\"subhead\">RACE DAY MORNING</strong></h3>\r\nThis race was a bit different than others. The lake where we swam in, Lake Sonoma, is 40 miles from downtown. This is very unusual when it is usually right at the start or within a few miles of the transition area.  So we had to report for buses leaving at 4 a.m. from the downtown area. Then I had to drive down to the downtown area, park the car and walk over to where the buses were.\r\n\r\nFortunately, my bike and other gear were already at the lake.  After a one-hour bus ride to the lake, I settled in by checking my bike, pumping the tires, filling the water bottles, and loading the nutrition on the bike.  Then it was time to head down to the lakefront. The day before, the water had been very warm, but the morning of the race they determined that it was still wetsuit legal (below 76 degrees). Since everyone else was wearing it, I decided to wear one even though I get very warm in it.\r\n<h3><strong class=\"subhead\">THE SWIM: 2.4 Miles</strong></h3>\r\n[caption id=\"attachment_354\" align=\"alignleft\" width=\"264\"]<img class=\" wp-image-354\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg\" alt=\"Ironman Santa Rosa Swim\" width=\"264\" height=\"396\" /> <strong>Swim Finish with his parents\' initials on my forearms</strong>[/caption]\r\n\r\nAs we lined up to start to get in the water there were a few people without wetsuits. At that point, I thought maybe I should not have worn my wetsuit. Swimming is my best sport and the wetsuit does get restrictive in my arm swing, but I decided to keep it on anyway. As I entered the water I realized that the water was very warm. Since it was crowded, I stayed towards the outside of the swimmers because the fast swimmer group I was in can get very aggressive.\r\n\r\nHalfway through the first loop, I realized I was getting too warm. After the first lap, I had the opportunity to run out onto the landing, take it off, and get back into the water. I lost a little time doing this but it was well worth it. The second lap went a lot better as I was not overheating.\r\n\r\nAfter the swim there is a quarter-mile very steep hill to get to your bicycle. They told people to not leave shoes or other footgear down at the bottom. So most of us did not. But some people left shoes halfway up the hill. This was a violation of the rules but no one said anything. They did have some artificial grass-type material down so that the road up was not too tough. But the hill is quite steep and many people, including myself, walked or fast-walked most of the way so as not to exhaust ourselves for the bike ride. Quickly into the transition area, I grabbed my gear, changed, and got onto my bike.\r\n<h3><strong class=\"subhead\">THE BIKE: 112 Miles</strong></h3>\r\n[caption id=\"attachment_353\" align=\"alignright\" width=\"299\"]<img class=\" wp-image-353\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg\" alt=\"Ironman Santa Rosa Bike 3\" width=\"299\" height=\"538\" /> <strong>Dr. Fields during the 112-mile bike ride</strong>[/caption]\r\n\r\nThe bike had 4,000 feet of climbing. I prepared for this so overall it was not too bad. Lots of wineries; at least 30 or more. It was not as scenic as other Ironman races I have done because we did ride along a highway several times but pleasant when going by wineries.\r\n\r\nUnfortunately, the roads were not in great shape. There are a lot of uneven areas as well as small little potholes. This was even more difficult as it was extremely sunny. When you would go through an area that was shaded you could not see the road since you were wearing dark sunglasses. This made for an uncomfortable ride.\r\n\r\nRight before we got to town, at about the 65-mile mark, I got a flat. I did not notice it at first but as my speed dropped and I was pushing even harder, I had to get off the bike and check. Sure enough, the tire was flat. And it was the back tire, which takes more to change. But to my surprise, as I dismounted, one of the repair vehicles that circles the bike course (there were three or four of them) pulled up right behind me. What luck! The mechanic grabbed his pump and had my tire changed, pumped up, and ready to go in less than two minutes. Faster than I could have ever have done it. And without greasy hands too!\r\n\r\nSo back on the bike, I finally got to the town where we then had to ride two 17-mile loops. This was invigorating as the crowd was there. Unfortunately, on these loops, the road got even worse. There were areas that were so bumpy one of the following riders said he thought he lost a crown. We all laughed. Although they predicted it to be in the 90s, it only went to about 86 or 87 degrees. But it was very sunny with no wind and with minimal shade, so it did get warm. All in all, I had a good bike ride.\r\n\r\nSo, as we entered the town on the last loop, the crowds were cheering. Then it was into T2 tent and change into running shoes, visor, down some nutrition and out for the 26.2-mile marathon run.\r\n<h3><strong class=\"subhead\">THE RUN: 26.2 Miles</strong></h3>\r\n[caption id=\"attachment_352\" align=\"alignleft\" width=\"255\"]<img class=\" wp-image-352\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg\" alt=\"Ironman Santa Rosa Run 2\" width=\"255\" height=\"459\" /> <strong> Dr. Fields during the 26.2-mile run</strong>[/caption]\r\n\r\nAs we left the change tent, there were lots of people yelling and screaming encouragement. This was a good thing. It was now very sunny and very warm outside. Most of the run was done along a dry riverbed. Then the crowds dwindled. There was some shade but not everywhere, so the sun took its toll, and I had some difficulties with my foot. Fortunately, I could adjust my running gait and keep going.\r\n\r\nThe first 8.8 miles (the first loop) was pretty good. On the second, the foot pain got stronger and I had to walk/run quite a bit. But, as always, I just kept moving forward. There were a lot of runners out there for support. And of course, I was supporting the others that were not doing well. Being with the other athletes gave me tremendous moral support and the will to not give up.\r\n\r\nThe second loop was tough as it took place during the 11th and 13th hours of racing, so keeping one\'s mind occupied is imperative. Dealing with my foot pain plus the physical and mental exhaustion that one experiences in an Ironman are always a challenge. As I began the third loop, I knew that if I made it to the turnaround at 4.4 miles, I was home free. As I made the final turn to head back towards town I knew that no matter how tough things got I was going to make it.\r\n<h3>Crossing the Finish Line</h3>\r\n[caption id=\"attachment_351\" align=\"alignright\" width=\"289\"]<img class=\" wp-image-351\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" width=\"289\" height=\"520\" /> <strong> Dr. Fields crossing the finish line</strong>[/caption]\r\n\r\nI encouraged those that I passed as well as the ones that were only on their second loop. As I exited the riverbed area up onto the streets, I thought I only had less than a quarter-mile to go, when in fact it was really over half a mile.\r\n\r\nJust then a guy ran up to me and said, “Hey Peter you\'re doing great”. I did not recognize him but I had my name on my running bib and thought he just saw that. He ran alongside me and told me that his girlfriend was not far behind. He told me her name and that did not ring a bell either.\r\n\r\nIt really didn’t matter as he was encouraging me, which was needed at that time. He finally turned around to go back to meet her. As I ran off, the energy that he had given me would carry me the rest of the way. As I came down the final stretch I knew I was going to finish my 9th Ironman Triathlon. It was tough but Ironman is never easy. The exhilaration and enthusiasm of the crowd, and hearing the announcer say, <strong>\"<em>Peter Fields, you are an Ironman!”</em>,</strong> never gets old. Never.\r\n\r\nAs I came through the shoot and they took my pictures, I looked over and there was the young guy who I had seen as I exited the riverbed.  As I approached him, I recognized him as the son of one of my best friends.  We both laughed and embraced and I told him how appreciative I was for his encouragement.\r\n\r\n<strong class=\"subhead\">POSTSCRIPT</strong>\r\n\r\nThese races are not only a physical challenge but also a mental challenge. With the difficulties with the wetsuit, the warm water, the uneven roads, the heat, the flat tire, and my foot problems on the run, this was not an easy race. But again, I persevered.\r\n\r\nI always keep a remembrance of my parents with me at all times in my race jersey pocket. When things would get bad, I would reach back and touch it and say. \"thanks mom and dad for being with me.\" This kept me going through any difficulties I was having. With all their struggles in their lives (fleeing near-certain death in fascist Germany, emigrating with almost nothing, meeting each other in the US and building a new life and more), they just kept moving forward and never looked back.\r\n\r\nThey taught me over and over again, that no matter how tough things get in life, just keep putting one foot in front of the other and keep going. They supported me no matter what I did as long as I had my heart and mind in it. On this day, and every day of my life, I knew they were with me all the way.\r\n\r\nAs I said after they passed, “You are not dead, dead or only those that one forgets”. I will never forget them as they never forgot me. This, and all of my races, are dedicated in their honor. And I always start each race with their initials marked on my forearms.\r\n\r\nI want to thank you for taking the time to read this and for supporting me, whether online, thinking about me, or by reading this.\r\n\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 9X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\"><a class=\"youtube\" href=\"https://www.youtube.com/watch?v=ds0_hCW9WA4\"><img title=\"Ironman Santa Rosa Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finisher-2.jpg\" alt=\"Ironman Santa Rosa Finisher\" /></a>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong>\r\nThe Athletic Doc<sup>®</sup>,\r\n</strong></span>Post-race pic<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em><a href=\"https://photos.google.com/share/AF1QipOZKCkaR9a0fl-OfBkXj-Z46M__ixhQOKqFQiAB_sf0rQDWmGsv_NdpwYlUbChPfw?key=MWNqUHJtR0hwSmdyVVFxQ2t1WmY3ZkVTYlNFZ2FB\" target=\"_blank\" rel=\"noopener noreferrer\">2017 Santa Rosa\r\nClick For More Photos</a>\r\n\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','My 9th Ironman- Santa Rosa California','','inherit','closed','closed','','348-revision-v1','','','2022-02-25 23:50:12','2022-02-25 23:50:12','',348,'https://www.drfields.com/?p=4952',0,'revision','',0),(4953,9,'2022-02-25 23:50:42','2022-02-25 23:50:42','<h2>Ironman 9 in Santa Rosa, California</h2>\r\n<p class=\"col-md-8\">My parents, Yvette and Fred Fields said, \"Always keep moving forward in life.\" And in Ironman 9, and during all of my ironman competitions, that saying is always in my mind.</p>\r\n\r\n\r\n[caption id=\"attachment_355\" align=\"alignleft\" width=\"275\"]<img class=\"size-full wp-image-355\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg\" alt=\"Ironman Santa Rosa Snoopy\" width=\"275\" height=\"240\" /> <strong>Dr. Fields and Snoopy</strong>[/caption]\r\n<h3 class=\"col-md-8\"><strong class=\"subhead\">GETTING READY FOR IRONMAN 9</strong></h3>\r\n<p class=\"col-md-8\">This one was a lot easier to get to than the others as it was my first Ironman in the US and in northern California- only a one-hour and 20-minute flight up to Santa Rosa.  At the airport, I was greeted by Snoopy and Charlie Brown, as Santa Rosa is the home of Charles Schulz, the creator of Peanuts.  They both offered me encouragement!</p>\r\n\r\n<h3><strong class=\"subhead\">RACE DAY MORNING</strong></h3>\r\nThis race was a bit different than others. The lake where we swam in, Lake Sonoma, is 40 miles from downtown. This is very unusual when it is usually right at the start or within a few miles of the transition area.  So we had to report for buses leaving at 4 a.m. from the downtown area. Then I had to drive down to the downtown area, park the car and walk over to where the buses were.\r\n\r\nFortunately, my bike and other gear were already at the lake.  After a one-hour bus ride to the lake, I settled in by checking my bike, pumping the tires, filling the water bottles, and loading the nutrition on the bike.  Then it was time to head down to the lakefront. The day before, the water had been very warm, but the morning of the race they determined that it was still wetsuit legal (below 76 degrees). Since everyone else was wearing it, I decided to wear one even though I get very warm in it.\r\n<h3><strong class=\"subhead\">THE SWIM: 2.4 Miles</strong></h3>\r\n[caption id=\"attachment_354\" align=\"alignleft\" width=\"264\"]<img class=\" wp-image-354\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg\" alt=\"Ironman Santa Rosa Swim\" width=\"264\" height=\"396\" /> <strong>Swim Finish with his parents\' initials on my forearms</strong>[/caption]\r\n\r\nAs we lined up to start to get in the water there were a few people without wetsuits. At that point, I thought maybe I should not have worn my wetsuit. Swimming is my best sport and the wetsuit does get restrictive in my arm swing, but I decided to keep it on anyway. As I entered the water I realized that the water was very warm. Since it was crowded, I stayed towards the outside of the swimmers because the fast swimmer group I was in can get very aggressive.\r\n\r\nHalfway through the first loop, I realized I was getting too warm. After the first lap, I had the opportunity to run out onto the landing, take it off, and get back into the water. I lost a little time doing this but it was well worth it. The second lap went a lot better as I was not overheating.\r\n\r\nAfter the swim there is a quarter-mile very steep hill to get to your bicycle. They told people to not leave shoes or other footgear down at the bottom. So most of us did not. But some people left shoes halfway up the hill. This was a violation of the rules but no one said anything. They did have some artificial grass-type material down so that the road up was not too tough. But the hill is quite steep and many people, including myself, walked or fast-walked most of the way so as not to exhaust ourselves for the bike ride. Quickly into the transition area, I grabbed my gear, changed, and got onto my bike.\r\n<h3><strong class=\"subhead\">THE BIKE: 112 Miles</strong></h3>\r\n[caption id=\"attachment_353\" align=\"alignright\" width=\"299\"]<img class=\" wp-image-353\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg\" alt=\"Ironman Santa Rosa Bike 3\" width=\"299\" height=\"538\" /> <strong>Dr. Fields during the 112-mile bike ride</strong>[/caption]\r\n\r\nThe bike had 4,000 feet of climbing. I prepared for this so overall it was not too bad. Lots of wineries; at least 30 or more. It was not as scenic as other Ironman races I have done because we did ride along a highway several times but pleasant when going by wineries.\r\n\r\nUnfortunately, the roads were not in great shape. There are a lot of uneven areas as well as small little potholes. This was even more difficult as it was extremely sunny. When you would go through an area that was shaded you could not see the road since you were wearing dark sunglasses. This made for an uncomfortable ride.\r\n\r\nRight before we got to town, at about the 65-mile mark, I got a flat. I did not notice it at first but as my speed dropped and I was pushing even harder, I had to get off the bike and check. Sure enough, the tire was flat. And it was the back tire, which takes more to change. But to my surprise, as I dismounted, one of the repair vehicles that circles the bike course (there were three or four of them) pulled up right behind me. What luck! The mechanic grabbed his pump and had my tire changed, pumped up, and ready to go in less than two minutes. Faster than I could have ever have done it. And without greasy hands too!\r\n\r\nSo back on the bike, I finally got to the town where we then had to ride two 17-mile loops. This was invigorating as the crowd was there. Unfortunately, on these loops, the road got even worse. There were areas that were so bumpy one of the following riders said he thought he lost a crown. We all laughed. Although they predicted it to be in the 90s, it only went to about 86 or 87 degrees. But it was very sunny with no wind and with minimal shade, so it did get warm. All in all, I had a good bike ride.\r\n\r\nSo, as we entered the town on the last loop, the crowds were cheering. Then it was into T2 tent and change into running shoes, visor, down some nutrition and out for the 26.2-mile marathon run.\r\n<h3><strong class=\"subhead\">THE RUN: 26.2 Miles</strong></h3>\r\n[caption id=\"attachment_352\" align=\"alignleft\" width=\"255\"]<img class=\" wp-image-352\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg\" alt=\"Ironman Santa Rosa Run 2\" width=\"255\" height=\"459\" /> <strong> Dr. Fields during the 26.2-mile run</strong>[/caption]\r\n\r\nAs we left the change tent, there were lots of people yelling and screaming encouragement. This was a good thing. It was now very sunny and very warm outside. Most of the run was done along a dry riverbed. Then the crowds dwindled. There was some shade but not everywhere, so the sun took its toll, and I had some difficulties with my foot. Fortunately, I could adjust my running gait and keep going.\r\n\r\nThe first 8.8 miles (the first loop) was pretty good. On the second, the foot pain got stronger and I had to walk/run quite a bit. But, as always, I just kept moving forward. There were a lot of runners out there for support. And of course, I was supporting the others that were not doing well. Being with the other athletes gave me tremendous moral support and the will to not give up.\r\n\r\nThe second loop was tough as it took place during the 11th and 13th hours of racing, so keeping one\'s mind occupied is imperative. Dealing with my foot pain plus the physical and mental exhaustion that one experiences in an Ironman are always a challenge. As I began the third loop, I knew that if I made it to the turnaround at 4.4 miles, I was home free. As I made the final turn to head back towards town I knew that no matter how tough things got I was going to make it.\r\n<h3>Crossing the Finish Line</h3>\r\n[caption id=\"attachment_351\" align=\"alignright\" width=\"289\"]<img class=\" wp-image-351\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" alt=\"Ironman Santa Rosa Finishline 3\" width=\"289\" height=\"520\" /> <strong> Dr. Fields crossing the finish line</strong>[/caption]\r\n\r\nI encouraged those that I passed as well as the ones that were only on their second loop. As I exited the riverbed area up onto the streets, I thought I only had less than a quarter-mile to go, when in fact it was really over half a mile.\r\n\r\nJust then a guy ran up to me and said, “Hey Peter you\'re doing great”. I did not recognize him but I had my name on my running bib and thought he just saw that. He ran alongside me and told me that his girlfriend was not far behind. He told me her name and that did not ring a bell either.\r\n\r\nIt really didn’t matter as he was encouraging me, which was needed at that time. He finally turned around to go back to meet her. As I ran off, the energy that he had given me would carry me the rest of the way. As I came down the final stretch I knew I was going to finish my 9th Ironman Triathlon. It was tough but Ironman is never easy. The exhilaration and enthusiasm of the crowd, and hearing the announcer say, <strong>\"<em>Peter Fields, you are an Ironman!”</em>,</strong> never gets old. Never.\r\n\r\nAs I came through the shoot and they took my pictures, I looked over and there was the young guy who I had seen as I exited the riverbed.  As I approached him, I recognized him as the son of one of my best friends.  We both laughed and embraced and I told him how appreciative I was for his encouragement.\r\n\r\n<strong class=\"subhead\">POSTSCRIPT</strong>\r\n\r\nThese races are not only a physical challenge but also a mental challenge. With the difficulties with the wetsuit, the warm water, the uneven roads, the heat, the flat tire, and my foot problems on the run, this was not an easy race. But again, I persevered.\r\n\r\nI always keep a remembrance of my parents with me at all times in my race jersey pocket. When things would get bad, I would reach back and touch it and say. \"thanks mom and dad for being with me.\" This kept me going through any difficulties I was having. With all their struggles in their lives (fleeing near-certain death in fascist Germany, emigrating with almost nothing, meeting each other in the US and building a new life and more), they just kept moving forward and never looked back.\r\n\r\nThey taught me over and over again, that no matter how tough things get in life, just keep putting one foot in front of the other and keep going. They supported me no matter what I did as long as I had my heart and mind in it. On this day, and every day of my life, I knew they were with me all the way.\r\n\r\nAs I said after they passed, “You are not dead, dead or only those that one forgets”. I will never forget them as they never forgot me. This, and all of my races, are dedicated in their honor. And I always start each race with their initials marked on my forearms.\r\n\r\nI want to thank you for taking the time to read this and for supporting me, whether online, thinking about me, or by reading this.\r\n\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 9X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\"><a class=\"youtube\" href=\"https://www.youtube.com/watch?v=ds0_hCW9WA4\"><img title=\"Ironman Santa Rosa Finisher\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finisher-2.jpg\" alt=\"Ironman Santa Rosa Finisher\" /></a>\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong>\r\nThe Athletic Doc<sup>®</sup>,\r\n</strong></span>Post-race pic<em><strong style=\"color: #cc0000;\"><span style=\"font-size: 18px;\">Click image above to view video</span></strong></em><a href=\"https://photos.google.com/share/AF1QipOZKCkaR9a0fl-OfBkXj-Z46M__ixhQOKqFQiAB_sf0rQDWmGsv_NdpwYlUbChPfw?key=MWNqUHJtR0hwSmdyVVFxQ2t1WmY3ZkVTYlNFZ2FB\" target=\"_blank\" rel=\"noopener noreferrer\">2017 Santa Rosa\r\nClick For More Photos</a>Click below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a>\r\n\r\n</div>','Ironman 9 Took Place in Santa Rosa, California','','inherit','closed','closed','','348-revision-v1','','','2022-02-25 23:50:42','2022-02-25 23:50:42','',348,'https://www.drfields.com/?p=4953',0,'revision','',0),(4954,9,'2022-02-26 19:45:38','2022-02-26 19:45:38','<h2 class=\"col-md-8\">Ironman 8 in Cozumel, Mexico</h2>\n[caption id=\"attachment_4955\" align=\"alignright\" width=\"334\"]<img class=\" wp-image-4955\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo-1.jpg\" alt=\"Cozumel Logo\" width=\"334\" height=\"204\" /> <em><strong>      Ironman 8 in Cozumel, Mexico 2016</strong></em>[/caption]\n\n\"Never give up on your goals no matter how tough things get.\"\n~Fred and Yvette Fields\n\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my Ironman 8 in Cozumel, Mexico on November 27, 2016.\n<h3><strong>GETTING THERE</strong></h3>\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hours to Cozumel. I arrived five days before the race. Then the usual registering, getting ready, and just sitting back and relaxing the last few days.\n<h3><strong class=\"subhead\">RACE DAY MORNING</strong></h3>\nI awoke at 3:30 a.m., breakfast at 4 a.m, and then to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have your bike, so first, you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\n\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\n\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\n\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"244\"]<img class=\" wp-image-327\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"244\" height=\"435\" /> <strong>Swim Start with his parents\' initials on his forearms</strong>[/caption]\n<h3 class=\"col-md-8\"><strong class=\"subhead\">THE SWIM: 2.4 Miles</strong></h3>\nThe swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded.\n\nThe water is very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens.\n\nWhile swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually, you swim with the current but occasionally it can change. I just moved on and kept motoring through. In the end, I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time.\n\nThen out of the water, run over to the transition tent to dry off, get my helmet, bike shoes, and sunglasses, and then on to the bike for 112 mile bike ride.\n<h3><strong class=\"subhead\">THE BIKE: 112 Miles</strong></h3>\n[caption id=\"attachment_328\" align=\"alignright\" width=\"316\"]<img class=\" wp-image-328\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"316\" height=\"413\" /> <strong>Dr. Fields during the 112-mile bike ride</strong>[/caption]\n<p class=\"col-md-8\">Having done this race three times before, I knew that bike course well. The backside of the island has a 12-mile stretch where you are hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before.</p>\n<p class=\"col-md-8\">In the second loop, I kept my pace going but the winds got tougher on the backside of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike.</p>\n<p class=\"col-md-8\">In the third loop, I did well on the leeward side of the island but once I hit the windward side of the island, I slowed because the winds were blowing over 30 miles an hour. At this point, you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.</p>\n\n<h3><strong class=\"subhead\">THE RUN: 26.2 Miles</strong></h3>\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"278\"]<img class=\" wp-image-329\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"278\" height=\"500\" /> <strong>Dr. Fields during the 26.2-mile run</strong>[/caption]\n\nAt a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. In my first loop, which is about 8.8 miles, I felt very good.\n\nDuring my second loop, I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before.\n\nAt 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine-tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going.\n\nI also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop, I walked a lot; at least more than I ran.\n<h3>The Finish Line</h3>\n[caption id=\"attachment_332\" align=\"alignright\" width=\"275\"]<img class=\" wp-image-332\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"275\" height=\"507\" /> <strong> Dr. Fields crossing the finish line</strong>[/caption]\n\nI was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4-mile run. And with three and a half miles to go I just grinned and bore it and said I\'m almost done so let me just run through it.\n\nSo, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring.\n\nAlthough my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50-meter stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman.\n\nAnd as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\n<div class=\"clear\"></div>\n<strong>POST SCRIPT</strong>\n\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\n\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\n\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\n<div class=\"clear\"></div>\n<strong>Peter A. Fields, MD DC</strong>\n<strong>The Athletic Doc<sup>®</sup> and 8X Ironman Triathlete</strong>\n<div id=\"sidebar2\" class=\"col-md-4\"><img title=\"post race pic\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finisher-275.jpg\" alt=\"post race pic\" />\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong>\nThe Athletic Doc<sup>®</sup>, </strong></span>post race pic\n<a href=\"https://goo.gl/photos/WqU8aVsvXa5SgLLo6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Cozumel\nClick For More Photos</a>\nClick below for Pictures &amp; Story\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Race Report 8th Ironman','','inherit','closed','closed','','306-autosave-v1','','','2022-02-26 19:45:38','2022-02-26 19:45:38','',306,'https://www.drfields.com/?p=4954',0,'revision','',0),(4955,9,'2022-02-25 23:53:55','2022-02-25 23:53:55','Cozumel Logo','Cozumel Logo','Ironman 8 in Cozumel, Mexico','inherit','open','closed','','cozumel-logo-2','','','2022-02-25 23:54:29','2022-02-25 23:54:29','',306,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo-1.jpg',0,'attachment','image/jpeg',0),(4956,9,'2022-02-26 00:06:20','2022-02-26 00:06:20','<h2 class=\"col-md-8\">Ironman 8 in Cozumel, Mexico</h2>\r\n[caption id=\"attachment_4955\" align=\"alignright\" width=\"334\"]<img class=\" wp-image-4955\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo-1.jpg\" alt=\"Cozumel Logo\" width=\"334\" height=\"204\" /> <em><strong>      Ironman 8 in Cozumel, Mexico 2016</strong></em>[/caption]\r\n\r\n\"Never give up on your goals no matter how tough things get.\"\r\n~Fred and Yvette Fields\r\n\r\nAs many of you have enjoyed reading my stories about my Ironman races, I will now give you a brief synopsis of my Ironman 8 in Cozumel, Mexico on November 27, 2016.\r\n<h3><strong>GETTING THERE</strong></h3>\r\nThis was not as complicated as it was for my races in South America or in Europe. A 3 hr. flight to Dallas and then 2 1/2 hours to Cozumel. I arrived five days before the race. Then the usual registering, getting ready, and just sitting back and relaxing the last few days.\r\n<h3><strong class=\"subhead\">RACE DAY MORNING</strong></h3>\r\nI awoke at 3:30 a.m., breakfast at 4 a.m, and then to the race start. In Cozumel, you start 2.2 miles away for the T1 (transition one) area where you have your bike, so first, you go to the transition area and make sure everything is OK as you leave your bike and bike clothes the day before. You fill your bottles with water, pump your tires, place some nutrition on the bike and then take a bus over to the race start.\r\n\r\nThere was nothing unusual at the race start this morning except for the fact that I forgot my speed suit.  A wetsuit is not allowed in the race when the water temp is above 76.5 degrees (actually it was 79 degrees today). Like many athletes, I usually wear a speed suit over my Triathlon suit. This is a suit that is very similar to what Olympic swimmers wear to streamline the body. But it really was no big deal as swimming is my best sport and at best it can take seconds and not minutes off my swim.\r\n\r\nOne of my highlights of standing in the corral waiting for the swim start was that I was actually standing next to, and met, The Iron Cowboy. This is a 41-year-old guy who just the year before had done what is really considered impossible. That is, he did 50 Ironman races in 50 days in 50 states. Yes, you heard me correctly. It was a monumental effort and he did it to raise awareness for several different organizations. I told him what an honor it was to have met him.\r\n\r\n[caption id=\"attachment_327\" align=\"alignleft\" width=\"244\"]<img class=\" wp-image-327\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg\" alt=\"Cozumel 2016 Swim 2 160\" width=\"244\" height=\"435\" /> <strong>Swim Start with his parents\' initials on his forearms</strong>[/caption]\r\n<h3 class=\"col-md-8\"><strong class=\"subhead\">THE SWIM: 2.4 Miles</strong></h3>\r\nThe swim for me is never a major challenge as it is my best event. The start in Cozumel is very organized and controlled. They let about five to ten people off the end of the pier about every 15 seconds, so it never gets very crowded.\r\n\r\nThe water is very nice and it makes for an enjoyable swim. You can see down 30 - 50 feet and see schools of fish along the way. You can also see the scuba diver lifeguards who are strategically placed along the way in case anything happens.\r\n\r\nWhile swimming, about halfway thru the race, I did detect a current as it picked up and was coming towards us. This is not the norm as usually, you swim with the current but occasionally it can change. I just moved on and kept motoring through. In the end, I found out my time was just a minute or two slower than usual but most were 10-20 minutes slower than their usual time.\r\n\r\nThen out of the water, run over to the transition tent to dry off, get my helmet, bike shoes, and sunglasses, and then on to the bike for 112 mile bike ride.\r\n<h3><strong class=\"subhead\">THE BIKE: 112 Miles</strong></h3>\r\n[caption id=\"attachment_328\" align=\"alignright\" width=\"316\"]<img class=\" wp-image-328\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg\" alt=\"Cozumel 2016 Bike 160\" width=\"316\" height=\"413\" /> <strong>Dr. Fields during the 112-mile bike ride</strong>[/caption]\r\n<p class=\"col-md-8\">Having done this race three times before, I knew that bike course well. The backside of the island has a 12-mile stretch where you are hit hard by the wind. But I felt really good and rode the first loop faster than I had ever done before.</p>\r\n<p class=\"col-md-8\">In the second loop, I kept my pace going but the winds got tougher on the backside of the island. They were hitting at about 20 to 25 miles an hour so you had to stay low on the bike.</p>\r\n<p class=\"col-md-8\">In the third loop, I did well on the leeward side of the island but once I hit the windward side of the island, I slowed because the winds were blowing over 30 miles an hour. At this point, you just tough it out and wait for the final stretch, with the wind at your back, into town. All-in-all I felt very good and I ended up having my best cycle time in Cozumel.</p>\r\n\r\n<h3><strong class=\"subhead\">THE RUN: 26.2 Miles</strong></h3>\r\n[caption id=\"attachment_329\" align=\"alignleft\" width=\"278\"]<img class=\" wp-image-329\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg\" alt=\"Cozumel 2016 Run 160\" width=\"278\" height=\"500\" /> <strong>Dr. Fields during the 26.2 mile run</strong>[/caption]\r\n\r\nAt a transition, I felt very strong. The sun was out and it didn\'t rain but it was not too hot. In my first loop, which is about 8.8 miles, I felt very good.\r\n\r\nDuring my second loop, I developed some foot pain but was able to adjust my stride so it really didn\'t bother me. Unfortunately, halfway through this second loop I developed some hamstring pain. This is something I hadn\'t had before. At 13.1 miles, there is the special needs station. This is where one leaves out things they would like halfway to the race. I took some extra gels and a Motrin I had in there. Unfortunately, that was not enough. So, I tried running nine tenths of a mile and walking a tenth of a mile. The pain stayed with me so then I ran/walked for a while. Ironman races are all about staying in the game, so I just put the pain out of my head and kept going. I also found some ice at an aid station and wrapped that around my leg. Overall this hindered my run. On the 3rd loop I walked a lot; at least more than I ran.\r\n\r\n[caption id=\"attachment_332\" align=\"alignright\" width=\"160\"]<img class=\"size-full wp-image-332\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" alt=\"Cozumel 2016 Finish 160\" width=\"160\" height=\"295\" /> <strong> Dr. Fields crossing the finish line</strong>[/caption]\r\n\r\nDr. Fields crossing the finish line I was hurting but there was nothing I could do. That was for the first four to five miles of the 8.4 mile run. And with three and a half for miles to go I just grinned and beared it and said I\'m almost done so let me just run through it. So, as I came back into town and the lights of the town became brighter and brighter, I felt very strong. I started seeing the big crowds at about a mile-and-a-half out which inspired me even more. I was now running very well, even passing other competitors who I cheered on. As I came to the last 500 meters the crowds and people cheering were very loud and inspiring. Although my leg was giving me a lot of pain at that time, in Ironman it\'s all about crisis control. You never say never. So I just kept a smile on my face and kept moving forward. As I came down the last 50 meters stretch the feeling is indescribable. I finally knew I had done it. I\'d finished my 8th Ironman. And as I came up to the Finish Line, I was exhausted but feeling unbelievably good. The feeling never gets old when the announcer says: \"Peter Fields, you are an Ironman!\"\r\n<div class=\"clear\"></div>\r\n<strong>POST SCRIPT</strong>\r\n\r\nAs I\'ve described in other race reports, my parents instilled in me the ability to work thru things no matter how hard it gets. Life is not always easy, just like an Ironman. There are some easy stretches and some hard times. But you just keep your head down and keep moving forward. The spirit of my parents never left me during the entire race. Their attention, caring and never ending love for me was always in my thoughts. As with every race, as I get towards the end, I imagine my parents there embracing me like they had for so many years. Their eternal love and kindness carries me through more than just my Ironman races.\r\n\r\n<strong>PS</strong> Once again I was first out of the water in my age group in the swim. After the bike, I was in the top third of my age group. This was a first for me. Unfortunately after the run, due to the above-mentioned issues, I fell back and finished towards the top of the lower third for my age group. But all in all, it was a good race.\r\n\r\n<strong>PPS</strong> I want to thank everybody who not only read this but also who thought of or followed me during the race. Thank you all very much.\r\n<div class=\"clear\"></div>\r\n<strong>Peter A. Fields, MD DC</strong>\r\n<strong>The Athletic Doc<sup>®</sup> and 8X Ironman Triathlete</strong>\r\n<div id=\"sidebar2\" class=\"col-md-4\"><img title=\"post race pic\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finisher-275.jpg\" alt=\"post race pic\" />\r\nPeter A. Fields, MD, DC,<span style=\"color: #000000;\"><strong>\r\nThe Athletic Doc<sup>®</sup>, </strong></span>post race pic\r\n<a href=\"https://goo.gl/photos/WqU8aVsvXa5SgLLo6\" target=\"_blank\" rel=\"noopener noreferrer\">2016 Cozumel\r\nClick For More Photos</a>\r\nClick below for Pictures &amp; Story\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-9th-Ironman\"><strong style=\"color: #cc0000;\">2017 Ironman Santa Rosa</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-8th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-7th-Ironman\"><strong style=\"color: #cc0000;\">2016 Ironman Switzerland</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-6th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Cozumel</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-5th-Ironman\"><strong style=\"color: #cc0000;\">2015 Ironman Brazil</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-4th-Ironman\"><strong style=\"color: #cc0000;\">2014 Ironman Austria</strong></a>\r\n<a href=\"/About/The-Athletic-Doc/Race-Report-3rd-Ironman\"><strong style=\"color: #cc0000;\">2013 Ironman Canada</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-2nd-ironman/\"><strong style=\"color: #cc0000;\">2012 Ironman Cozumel</strong></a>\r\n<a href=\"/about/the-athletic-doc/race-report-1st-ironman/\"><strong style=\"color: #cc0000;\">2011 Ironman Cozumel</strong></a></div>','Race Report 8th Ironman','','inherit','closed','closed','','306-revision-v1','','','2022-02-26 00:06:20','2022-02-26 00:06:20','',306,'https://www.drfields.com/?p=4956',0,'revision','',0),(4957,9,'2022-03-04 19:37:05','2022-03-04 19:37:05','Runner\'s Knee.prp.stems 4','Runner\'s Knee.prp.stems 4','PRP and Stem Cells Are Effective for Runner\'s Knee','inherit','open','closed','','runners-knee-prp-stems-4','','','2022-03-04 19:37:39','2022-03-04 19:37:39','',2894,'https://www.drfields.com/wp-content/uploads/2019/10/Runners-Knee.PRP_.Stems-4.png',0,'attachment','image/png',0),(4958,9,'2022-03-04 19:41:12','2022-03-04 19:41:12','[caption id=\"attachment_4027\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4027\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/Runners-Knee-500x500.jpg\" alt=\"Runners Knee\" width=\"500\" height=\"500\" /> Runners Knee[/caption]\r\n\r\nRunner’s Knee is a painful knee condition that is, like the name says, common in runners. Another name for Runner’s Knee is Patellofemoral Pain Syndrome (PFPS). And it is characterized by anterior knee pain.\r\n\r\nSufferers of this condition commonly experience pain behind and around the kneecap or patella. Runner’s Knee can affect one or both knees and is a knee complaint among athletes and non-athletes alike. It particularly affects adolescents and young adults. And it is quite common in younger recreational runners, with females suffering more frequently than males.\r\n\r\nSeveral forces act on the patella to provide stability and keep it tracking properly, as it articulates with the patellofemoral groove in the femur.\r\n\r\nThe patella not only moves up and down but also tilts and rotates. That allows for various points of contact between the patella and femur. Repetitive contact at these locations combined with the abnormal articulation of the patella is thought to be the cause of the pain behind and around the patella in patellofemoral pain syndrome.\r\n\r\n&nbsp;\r\n\r\nPatellofemoral Pain Syndrome should be distinguished from chondromalacia. Chondromalacia is actual fraying and damage to the underlying patellar cartilage. Chondromalacia patella can be a cause of patellofemoral pain syndrome.\r\n<h2>What’s Behind Runner’s Knee?</h2>\r\nThere are many theories to explain the pathophysiology of Runner’s Knee. They include muscular, overuse, and biomechanical theories. The cause of pain and dysfunction may result from abnormal forces such as tight or weak quadriceps, subluxation, or dislocation of the patellofemoral joint can also present.\r\n\r\nRunner’s Knee may be due to prolonged repetitive activities such as running or jumping, which put excessive sheering forces on the patellofemoral joint. And anatomic factors that predispose toward patellofemoral pain or instability include excessive rotation of the hip or shin bone, knock knees, hyperextended knees, and/or poor foot alignment. Also, ligamentous, meniscal, and soft tissue damage can cause patellofemoral pain syndrome. Other causes of patellofemoral pain are fractures, arthritis of the knee, and bony tumors in or around the knee.\r\n\r\nAlthough the exact etiology of Runner’s Knee is unclear, the abnormal articulation along with abnormal muscular and other biomechanical factors change the forces placed upon the patellofemoral joint. The abnormal movement leads to instability and improper tracking as the patella articulates with the patellofemoral groove in the femur.\r\n\r\nFor example, when the knee is flexed, the patella glides through the groove in the femur. If the bones in the lower leg are not aligned correctly, this gliding becomes abnormal. An overload on the patellofemoral joint occurs with flexion of the knee (bending) as this movement increases the pressure between the patella and the various contact points with the femur. With repeated episodes, the joint becomes unstable. Especially if the joint remains out of alignment. This abnormal tracking can lead to increased wear between the bone surfaces, and eventually the articular cartilage.\r\n<h2>What Are the Symptoms?</h2>\r\nBesides the tenderness behind, around, and at the center of the patella, there may also be pain toward the back of the knee. Crepitation or cracking sounds may be heard, as well as a feeling of instability in the knee joint. The pain typically occurs with activity. And it often worsens with activities that include steps, hills, and uneven surfaces.\r\n\r\nGoing downhill or downstairs aggravates the condition. Prolonged sitting can trigger pain due to the extra pressure between the patella and femur during knee flexion. Straightening of the legs may decrease the discomfort. Squatting and kneeling also exacerbate the pain, which can be dull, sharp, or burning.\r\n<h2>How is Runner’s Knee Treated?</h2>\r\nThe common treatment approach for Runner’s Knee usually involves activity modification, anti-inflammatory medications, the RICE protocol, ultrasound, and orthotics. And physical therapy is often recommended. PT may include quadriceps-based exercises together with hamstrings, quadriceps, gastrocnemius, anterior hip muscles, and iliotibial band stretching exercises.\r\n\r\n[caption id=\"attachment_4957\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4957\" src=\"https://www.drfields.com/wp-content/uploads/2019/10/Runners-Knee.PRP_.Stems-4-500x419.png\" alt=\"Runner\'s Knee.prp.stems 4\" width=\"500\" height=\"419\" /> <strong>         PRP and Stem Cells Are Effective for Runner\'s Knee</strong>[/caption]\r\n\r\nThis approach may help temporarily. But it does not fix the problem of instability in the knee joint which is causing the misalignment. With Runner’s Knee, instead of tracking in the groove of the femur, the patella oftentimes tracks laterally. A sunrise view X-Ray and a functional assessment of the knee by the physician will reveal how the patella is tracking. Strengthening of the vastus medialis may be helpful. And exercises such as cycling are recommended, but often that alone will not resolve the Runner’s Knee.\r\n\r\nRegenerative Orthopedics, including PRP and/or Prolotherapy injections to the medial side of the patella, will strengthen the attachment of the vastus medialis to the patella. The resultant strengthening pulls the patella into the groove, which allows for a realignment of the patella.\r\nRegenerative Orthopedics along with vastus medialis strengthening will relieve the pain and speed up the process of normalizing the patellar tracking in Runner’s Knee. The combination allows for a quick return to activities.\r\n<div class=\"vk-ContentBody sc-NQaSp cRMilg\">\r\n<p class=\"sc-hSBNlM iAaHRI\">A 2021 article in \"The American Journal of Sports Medicine\" says PRP, in combination with rehabilitation, is effective in reducing pain and improving activity levels for those with knee injuries like Runner\'s Knee.1</p>\r\n\r\n</div>\r\n<h3>References</h3>\r\nRodas, Gil, et al. \"Effect of autologous expanded bone marrow mesenchymal stem cells or leukocyte-poor platelet-rich plasma in chronic patellar tendinopathy (with gap&gt; 3 mm): preliminary outcomes after 6 months of a double-blind, randomized, prospective study.\" <i>The American Journal of Sports Medicine</i> 49.6 (2021): 1492-1504.\r\n<div class=\"sc-fvjPtz dgNjOL\"></div>\r\n<a class=\"buttonlink\" href=\"/articles/regenerative-orthopedics/\"> Click here for more articles</a>','Runner’s Knee Pain','','inherit','closed','closed','','2894-revision-v1','','','2022-03-04 19:41:12','2022-03-04 19:41:12','',2894,'https://www.drfields.com/?p=4958',0,'revision','',0),(4960,9,'2022-03-26 16:08:17','2022-03-26 16:08:17','Back Pain.hauser','Back Pain.hauser','Prolotherapy and PRP Are Beneficial for Back Pain','inherit','open','closed','','back-pain-hauser','','','2022-03-26 16:09:03','2022-03-26 16:09:03','',1410,'https://www.drfields.com/wp-content/uploads/2019/06/Back-Pain.Hauser.png',0,'attachment','image/png',0),(4961,9,'2022-03-26 16:10:50','2022-03-26 16:10:50','[caption id=\"attachment_4490\" align=\"alignright\" width=\"445\"]<img class=\" wp-image-4490\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/BACK-pain-500x500.jpg\" alt=\"Back Pain\" width=\"445\" height=\"445\" /> <em><strong>          Unrelenting Back Pain Resolved with Prolotherapy</strong></em>[/caption]\r\n<h3>Unrelenting Back Pain Repaired with Regenerative Orthopedics</h3>\r\nIs your unrelenting back pain becoming progressively worse? And is prolonged sitting or standing for extended periods of time getting more and more difficult? Do you frequently pop or crack your own back to get some relief or are your adjustments not holding? Have you tried all different types of treatments to find some relief?\r\n<h3>Common Treatment Options for Unrelenting Back Pain</h3>\r\nDoes this sound like you? It\'s true that many commonly used treatments for back pain can ease some of the pain. For example, sOTC pain medication, NSAIDs, and massage can provide a bit of relief.\r\n\r\nWhen the pain persists, some folks with back pain turn to narcotics, steroids,, and even anti-depressants. But these treatment options come with their own set of problems. Oftentimes, back pain becomes chronic, and can last three to six months or more, with the pain returning again and again.\r\n<h3>Pain Will Continue Until the Underlying Cause Is Addressed</h3>\r\nSo why don’t these treatments make the pain go away for good? The pain stays because the underlying causative factor has not been repaired. Pain medications, NSAIDs, steroids, and anti-depressants are not reparative. And they do not fix the ligamentous source of the musculoskeletal pain. They may relieve some of the symptoms for a period of time, but they do not correct the problem. Injured ligaments are frequently the root cause of back pain. Therefore, when they remain unrepaired, the back pain sufferer is left with ongoing pain and will continue to experience difficulties in function and quality of life.\r\n\r\nChiropractors can provide relief for back pain, with care that is often excellent in many cases. However, there are times when back pain becomes more and more frequent, and the adjustments do not hold. In these instances, the patient experiences pain again only a few days after getting treatment. Ligament and/or tendon injuries are very likely at the root of this back pain problem.\r\n\r\nImaging tools, like X-rays and MRI’s, may be helpful in certain situations. But although highly accessible, their usage has not caused the rates of back pain to go down.\r\n<h3>What Causes Back Pain?</h3>\r\nBack pain is often the result of an injury, possibly due to sudden movements and poor body mechanics. It may also be due to trauma that transpires during a sports activity, fall,, or motor vehicle accident. Acute injuries, such as minor muscle strains, frequently heal quickly due to the great blood supply and healing capacity of the muscles.\r\n\r\nHowever, many back pain sufferers deal with chronic pain, or pain that lasts more than three to six months. And all too often, the underlying cause is not identified. The common denominator for many painful musculoskeletal conditions causing back pain is spinal instability due to injury to the ligaments. <em><strong>Regenerative Orthopedics is a non-surgical treatment that can provide the solution to heal those injured ligaments and get rid of your back pain.</strong></em>\r\n<h4>Let’s Explain What Happens In Disc Degeneration and Herniated Discs:</h4>\r\nA herniated disc actually herniates <em><strong>through</strong></em> ligaments. Disc degeneration occurs when ligaments around the spine are injured. That’s why treatment needs to be directed at healing these injured ligaments. Interestingly, when scientists want to induce a disc herniation or degeneration in an animal, they damage the ligaments. After the ligaments are intentionally injured, within a short period of time, the discs will become degenerated or herniated.\r\n\r\nLigaments are supportive structures joining bone to bone. In the back or spine, they connect adjacent vertebrae. The ligaments of the back serve as one of the primary stabilizing structures of the spinal column. They help to provide adequate motion and also restrict excessive movement, which protects the spinal column and nerve roots as they exit the spine.\r\n\r\nInstability is part of the pathophysiology of the degenerated and herniated disc. When the ligaments around the spine are injured, excessive joint mobility occurs, and the bones (vertebrae) move too much. The extra movement creates unstable vertebrae, which will result in back pain.\r\n\r\nWhy does movement lead to pain? The exaggerated motion from instability causes abnormal forces and pressure on the discs between the vertebrae.  And that will eventually produce degeneration of the discs. Disc degeneration eventually leads to arthritis. When the ligaments become stretched out or injured, the muscles tighten and generate pain. You feel this in the form of muscle spasms.\r\n\r\nIf the ligaments and/or muscles are unable to stabilize the vertebrae, the body overgrows bone. This overgrowth of bone produces the loss of motion noted in arthritis as the body tries to stabilize the spine.\r\n<h4>Does Fusion Surgery Help the Instability?</h4>\r\nFusion surgery can prevent the motion of these segments that are moving excessively. However, the fusion does not resolve the underlying ligament injury. Back pain may continue even after surgery due to damage in other vertebral regions, like the segments above or below the fusions, or the unaddressed ligament injury.\r\n\r\nRegenerative Orthopedic treatments to the area above and below the disc degeneration strengthen the ligaments, resolve the subluxation and instability, and relieve the back pain. The therapy stabilizes the joint by treating the disc degeneration\'s underlying cause and relieving back pain.\r\n<h4>Regeneration, Not Surgery</h4>\r\n[caption id=\"attachment_4960\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4960\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Back-Pain.Hauser-500x419.png\" alt=\"Back Pain.hauser\" width=\"500\" height=\"419\" /> <strong>             Prolotherapy and PRP Are Beneficial for Back Pain</strong>[/caption]\r\n\r\nRegenerative Orthopedic physicians utilize regenerative injection therapies to stimulate the body to repair the ligaments. Our bodies have exceptional regenerative capabilities. The regenerative medicine approach triggers the body to strengthen the tissue on its own. Regenerative Orthopedics, such as Prolotherapy, Platelet Rich Plasma and Stem Cell Therapy, stimulate the body to heal itself. In the case of unrelenting back pain, regenerative techniques specifically stimulate the repair of the ligaments through which the disc herniates and the ligaments connecting the vertebrae.\r\n\r\nOne of the wonderful things about Regenerative Orthopedics for back pain is that the individual can maintain activity and get back to sports or other activities they enjoy without extensive downtime. Treatments are individually tailored to promote healing and return people to their active lives. It’s really an amazing transformation to see people regain their mobility and independence!\r\n\r\nWe strongly recommend looking into Regenerative Orthopedics for those with back pain because it is helpful for many back pain related conditions, including herniated discs, bulging discs, and degenerative disc disease. Why continue to suffer when you can eliminate back pain with Regenerative Orthopedics.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n\r\nHauser, Ross A., et al. \"Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review.\" <i>Journal of Back and Musculoskeletal Rehabilitation</i> Preprint (2021): 1-12.','Unrelenting Back Pain Repaired with Regenerative Orthopedics','','inherit','closed','closed','','1410-revision-v1','','','2022-03-26 16:10:50','2022-03-26 16:10:50','',1410,'https://www.drfields.com/?p=4961',0,'revision','',0),(4962,9,'2022-03-26 16:11:29','2022-03-26 16:11:29','[caption id=\"attachment_4490\" align=\"alignright\" width=\"445\"]<img class=\" wp-image-4490\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/BACK-pain-500x500.jpg\" alt=\"Back Pain\" width=\"445\" height=\"445\" /> <em><strong>          Unrelenting Back Pain Resolved with Prolotherapy</strong></em>[/caption]\r\n<h3>Unrelenting Back Pain Repaired with Regenerative Orthopedics</h3>\r\nIs your unrelenting back pain becoming progressively worse? And is prolonged sitting or standing for extended periods of time getting more and more difficult? Do you frequently pop or crack your own back to get some relief or are your adjustments not holding? Have you tried all different types of treatments to find some relief?\r\n<h3>Common Treatment Options for Unrelenting Back Pain</h3>\r\nDoes this sound like you? It\'s true that many commonly used treatments for back pain can ease some of the pain. For example, sOTC pain medication, NSAIDs, and massage can provide a bit of relief.\r\n\r\nWhen the pain persists, some folks with back pain turn to narcotics, steroids,, and even anti-depressants. But these treatment options come with their own set of problems. Oftentimes, back pain becomes chronic, and can last three to six months or more, with the pain returning again and again.\r\n<h3>Pain Will Continue Until the Underlying Cause Is Addressed</h3>\r\nSo why don’t these treatments make the pain go away for good? The pain stays because the underlying causative factor has not been repaired. Pain medications, NSAIDs, steroids, and anti-depressants are not reparative. And they do not fix the ligamentous source of the musculoskeletal pain. They may relieve some of the symptoms for a period of time, but they do not correct the problem. Injured ligaments are frequently the root cause of back pain. Therefore, when they remain unrepaired, the back pain sufferer is left with ongoing pain and will continue to experience difficulties in function and quality of life.\r\n\r\nChiropractors can provide relief for back pain, with care that is often excellent in many cases. However, there are times when back pain becomes more and more frequent, and the adjustments do not hold. In these instances, the patient experiences pain again only a few days after getting treatment. Ligament and/or tendon injuries are very likely at the root of this back pain problem.\r\n\r\nImaging tools, like X-rays and MRI’s, may be helpful in certain situations. But although highly accessible, their usage has not caused the rates of back pain to go down.\r\n<h3>What Causes Back Pain?</h3>\r\nBack pain is often the result of an injury, possibly due to sudden movements and poor body mechanics. It may also be due to trauma that transpires during a sports activity, fall,, or motor vehicle accident. Acute injuries, such as minor muscle strains, frequently heal quickly due to the great blood supply and healing capacity of the muscles.\r\n\r\nHowever, many back pain sufferers deal with chronic pain, or pain that lasts more than three to six months. And all too often, the underlying cause is not identified. The common denominator for many painful musculoskeletal conditions causing back pain is spinal instability due to injury to the ligaments. <em><strong>Regenerative Orthopedics is a non-surgical treatment that can provide the solution to heal those injured ligaments and get rid of your back pain.</strong></em>\r\n<h4>Let’s Explain What Happens In Disc Degeneration and Herniated Discs:</h4>\r\nA herniated disc actually herniates <em><strong>through</strong></em> ligaments. Disc degeneration occurs when ligaments around the spine are injured. That’s why treatment needs to be directed at healing these injured ligaments. Interestingly, when scientists want to induce a disc herniation or degeneration in an animal, they damage the ligaments. After the ligaments are intentionally injured, within a short period of time, the discs will become degenerated or herniated.\r\n\r\nLigaments are supportive structures joining bone to bone. In the back or spine, they connect adjacent vertebrae. The ligaments of the back serve as one of the primary stabilizing structures of the spinal column. They help to provide adequate motion and also restrict excessive movement, which protects the spinal column and nerve roots as they exit the spine.\r\n\r\nInstability is part of the pathophysiology of the degenerated and herniated disc. When the ligaments around the spine are injured, excessive joint mobility occurs, and the bones (vertebrae) move too much. The extra movement creates unstable vertebrae, which will result in back pain.\r\n\r\nWhy does movement lead to pain? The exaggerated motion from instability causes abnormal forces and pressure on the discs between the vertebrae.  And that will eventually produce degeneration of the discs. Disc degeneration eventually leads to arthritis. When the ligaments become stretched out or injured, the muscles tighten and generate pain. You feel this in the form of muscle spasms.\r\n\r\nIf the ligaments and/or muscles are unable to stabilize the vertebrae, the body overgrows bone. This overgrowth of bone produces the loss of motion noted in arthritis as the body tries to stabilize the spine.\r\n<h4>Does Fusion Surgery Help the Instability?</h4>\r\nFusion surgery can prevent the motion of these segments that are moving excessively. However, the fusion does not resolve the underlying ligament injury. Back pain may continue even after surgery due to damage in other vertebral regions, like the segments above or below the fusions, or the unaddressed ligament injury.\r\n\r\nRegenerative Orthopedic treatments to the area above and below the disc degeneration strengthen the ligaments, resolve the subluxation and instability, and relieve the back pain. The therapy stabilizes the joint by treating the disc degeneration\'s underlying cause and relieving back pain.\r\n<h4>Regeneration, Not Surgery</h4>\r\n[caption id=\"attachment_4960\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4960\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Back-Pain.Hauser-500x419.png\" alt=\"Back Pain.hauser\" width=\"500\" height=\"419\" /> <strong>             Prolotherapy and PRP Are Beneficial for Back Pain</strong>[/caption]\r\n\r\nRegenerative Orthopedic physicians utilize regenerative injection therapies to stimulate the body to repair the ligaments. Our bodies have exceptional regenerative capabilities. The regenerative medicine approach triggers the body to strengthen the tissue on its own. Regenerative Orthopedics, such as Prolotherapy, Platelet Rich Plasma and Stem Cell Therapy, stimulate the body to heal itself. In the case of unrelenting back pain, regenerative techniques specifically stimulate the repair of the ligaments through which the disc herniates and the ligaments connecting the vertebrae.\r\n\r\nOne of the wonderful things about Regenerative Orthopedics for back pain is that the individual can maintain activity and get back to sports or other activities they enjoy without extensive downtime. Treatments are individually tailored to promote healing and return people to their active lives. It’s really an amazing transformation to see people regain their mobility and independence!\r\n\r\nWe strongly recommend looking into Regenerative Orthopedics for those with back pain because it is helpful for many back pain related conditions, including herniated discs, bulging discs, and degenerative disc disease. Why continue to suffer when you can eliminate back pain with Regenerative Orthopedics.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news\"><strong>Click here for more articles by Dr. Fields</strong></a>\r\n<h3>References</h3>\r\nHauser, Ross A., et al. \"Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review.\" <i>Journal of Back and Musculoskeletal Rehabilitation</i> Preprint (2021): 1-12.','Unrelenting Back Pain Repaired with Regenerative Orthopedics','','inherit','closed','closed','','1410-revision-v1','','','2022-03-26 16:11:29','2022-03-26 16:11:29','',1410,'https://www.drfields.com/?p=4962',0,'revision','',0),(4964,9,'2022-04-05 00:08:30','2022-04-05 00:08:30','Shoulder. Journal Of Clinical Imaging','Shoulder. Journal Of Clinical Imaging','PRP is effective at reducing shoulder pain. ','inherit','open','closed','','shoulder-journal-of-clinical-imaging','','','2022-04-05 00:09:05','2022-04-05 00:09:05','',1408,'https://www.drfields.com/wp-content/uploads/2019/06/Shoulder.-Journal-of-Clinical-Imaging.png',0,'attachment','image/png',0),(4965,9,'2022-04-05 00:12:25','2022-04-05 00:12:25','[caption id=\"attachment_4530\" align=\"alignright\" width=\"500\"]<img class=\"size-medium wp-image-4530\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/shoulder-copy-2-500x500.jpg\" alt=\"Stop Pain from Rotator Cuff Injuries\" width=\"500\" height=\"500\" /> <em><strong> Stop Pain from Rotator Cuff Injuries and Other Shoulder Problems</strong></em>[/caption]\r\n<h2>Stop Shoulder Pain from Rotator Cuff Injuries</h2>\r\nMany of us really enjoy participating in indoor and outdoor activities. Our favorite sport or activity might include swimming, golfing, bicycling, playing tennis, volleyball, or another favorite sport. But injuries to the shoulder are common. How do you stop pain from rotator cuff injuries and other shoulder problems?\r\n<h3>The Unique Shoulder Joint and How That Uniqueness Predisposes Us to Shoulder Injury</h3>\r\nThe shoulder is a unique joint in that it is incredibly flexible. The shoulder joint is one of the body’s ball and socket joints, equipped with a huge range of motion. That’s a great feature! Why? Because so many of the activities the shoulder is called upon to perform require mobility and flexibility.\r\n\r\n<em>But there is a balance between flexibility and the maintenance of joint stability.</em> The downside of all that flexibility and motion is injury and instability. And that unfortunately results in pain and impaired function! Athletes such as pitchers, quarterbacks, tennis players, and swimmers, are prone to shoulder injuries. These sports all require repetitive overhead movements. Even golfers suffer regularly from shoulder injuries due to the positioning in the backswing, which commonly affects the non-dominant shoulder. Jobs requiring repeated overhead motion, like painting, can aggravate the shoulder as well and lead to shoulder injury and pain.\r\n<h3>What\'s Behind Rotator Cuff and Other Shoulder Injuries?</h3>\r\nAggressive, repetitive use can cause ligaments to stretch out and elongate. Does your shoulder click and clunk? That\'s not normal. But it is a result of stretched-out soft tissue and abnormal motion in the shoulder joint. Unfortunately, the ligaments do not have much of a blood supply. And when injured, the lower blood supply means ligament healing can be insufficient. If complete healing does not occur, then the abnormal joint motion from unstable ligaments continues.\r\n\r\nDamaged ligaments need time to remodel and repair. For instance, a tennis player with shoulder pain may need to reduce training hours and allow for proper rest time between workouts. The same is true for the golfer, swimmer, pitcher, and painter! With inadequate healing, the shoulder becomes unstable and will start making a clunking or clicking noise. When this occurs with every stroke or swing motion, it can indicate a more severe, multidirectional shoulder instability. The shoulder joint at this point is moving abnormally in a variety of directions, generating more shoulder injury and provoking shoulder pain.\r\n<h3>Shoulder Pain from Rotator Cuff Injury</h3>\r\nHave you or someone you know suffered from a rotator cuff injury? It’s quite a common shoulder injury. A rotator cuff is a group of four muscles and tendons surrounding the glenohumeral joint. The function of the rotator cuff is to provide motion for activities above the waist and shoulders. Because of this, injuries to this group of muscles and tendons often transpire with overhead activities.\r\n\r\nOngoing instability causes strain and weakness in the rotator cuff muscles, which persists at fatiguing the muscles. This will alter the way they function and move, and can lead to injury to other shoulder structures. You can picture how continuing to use poor form, or persisting to work out with an injured shoulder, can set the sufferer on an ongoing course of abnormal joint motion and shoulder injury. Continued overuse results in increased instability, a weaker rotator cuff, and an eventual tear and shoulder degeneration.\r\n<h4>Glenoid Labral Tears of the Shoulder</h4>\r\nAnother affliction common to the shoulder is a glenoid labrum injury. The glenoid labrum is a very important structure because it stabilizes the shoulder. The glenoid is the shoulder socket and the labrum is basically the soft tissue surrounding the socket. A tear to this soft tissue labrum is prevalent in workers who do a lot of manual labor and is also a common injury in athletes.\r\n\r\nThis shoulder injury can occur in a traumatic event, through repetitive motion, or with recurrent dislocations. When the labrum is torn, other ligaments and tendons surrounding the shoulder are often injured too. So if the forces involved in the injury were significant enough to tear the labrum, they were most likely also sufficient to injure the ligaments or tendons.\r\n\r\nKeep this in mind when seeking repair, because all of the injured shoulder structures need to be treated to have a completely healed shoulder joint. Otherwise, the healing will be incomplete, and a cycle of shoulder injury, shoulder re-injury, and shoulder pain is set in motion.\r\n<h4>Should Surgery Be Sought in Shoulder Injuries?</h4>\r\nSurgery is commonly sought to stop pain from rotator cuff injuries and labral tears, but the correction is often ineffective. Why is that? The reason is that surgery, including arthroscopic treatment, involves the removal or debridement of the shoulder structures. When these structures are removed, the shoulder joint is left more unstable, and prone to re-injury!\r\n\r\nGuess what happens when the instability is not repaired? The ongoing <em><strong>abnormal movement</strong></em> will eventually result in the development of arthritis. That\'s because the body will try to stop the movement or stabilize the shoulder by growing more bone! More instability results in more problems and more shoulder pain.\r\n<h4><em>What About Other Conservative Treatment Options to Stop Shoulder Pain from Rotator Cuff Injuries?</em></h4>\r\nConservative treatments such as non-steroidal anti-inflammatories (NSAIDs) and corticosteroids are often recommended too. And although they may give some short-term pain relief, these treatments do not resolve the underlying soft tissue tears and shoulder injury. Sadly, these treatments inhibit healing and further the problem they are given for in the first place. The shoulder pain sufferer is then left with unhealed soft tissue in the shoulder, abnormal motion, and continued pain.\r\n\r\n[caption id=\"attachment_4964\" align=\"alignleft\" width=\"500\"]<img class=\"size-medium wp-image-4964\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Shoulder.-Journal-of-Clinical-Imaging-500x419.png\" alt=\"Shoulder. Journal Of Clinical Imaging\" width=\"500\" height=\"419\" /> <strong>             PRP is effective at reducing shoulder pain</strong>[/caption]\r\n<h4><strong>Regenerative Treatments That Heal the Shoulder</strong></h4>\r\nWhen shoulder injuries do occur or when injuries do not heal properly despite trials of multiple treatment modalities, an effective option is available. Non-Surgical Regenerative Orthopedics, such as Stem Cell Therapy, Prolotherapy, and PRP are treatments that can be utilized to treat and repair shoulder injuries such as glenoid labral tears and rotator cuff injuries. These treatments work because they correct the underlying problem and naturally alleviate shoulder pain.\r\n\r\nProlotherapy, Stem Cell Therapy, and PRP require almost no downtime. They are ideal for athletes who need to continue training, the weekend golfer who doesn’t want to stop their beloved sport, and the painter who cannot afford much downtime. Shoulder injuries often need a treatment that restarts or reboots the ability to repair, and these regenerative therapies do just that. Shoulder instability, rotator cuff injuries, glenoid labral tears (as long as the tear is not complete), and pain can be successfully addressed with these regenerative medicine techniques.\r\n\r\nProlotherapy, Stem Cell Therapy, and PRP are designed to help repair the painful shoulder without cutting, suturing, sewing, or stapling. This is a natural injection therapy that strengthens loose and unstable shoulder joints and the involved ligaments and tendons, creating a more stable, strong, and pain-free shoulder. And this results in the active person being able to continue working or engaging in the sports and activities they love!\r\n<h3>References</h3>\r\n1Sengodan, Vetrivel Chezian, Sajith Kurian, and Raghupathy Ramasamy. \"Treatment of partial rotator cuff tear with ultrasound-guided platelet-rich plasma.\" <em>Journal of clinical imaging science</em> 7 (2017).\r\n2Mora, Maria Valencia, et al. “Stem cell therapy in the management of shoulder rotator cuff disorders.” <em>World Journal of Stem Cells</em>.4 (2015): 691.\r\n\r\n<a href=\"https://www.drfields.com/articles/prolo-news/\"><strong>Click here for more articles by Dr. Fields</strong></a>','Stop Shoulder Pain from Rotator Cuff Injuries','','inherit','closed','closed','','1408-revision-v1','','','2022-04-05 00:12:25','2022-04-05 00:12:25','',1408,'https://www.drfields.com/?p=4965',0,'revision','',0),(4967,9,'2022-05-28 03:26:59','2022-05-28 03:26:59','Dr. Fields\' Zoom Lecture ','Dr. Fields\' Zoom Lecture Poster','Dr. Fields\' Zoom Lecture ','inherit','open','closed','','dr-fields-zoom-lecture-poster','','','2022-05-28 03:27:17','2022-05-28 03:27:17','',1434,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-poster.png',0,'attachment','image/png',0),(4968,9,'2022-05-28 03:28:21','2022-05-28 03:28:21','Dr. Fields\' Zoom Lecture ','Dr. Fields\' Zoom Lecture (facebook Post).2','Dr. Fields\' Zoom Lecture ','inherit','open','closed','','dr-fields-zoom-lecture-facebook-post-2','','','2022-05-28 03:28:31','2022-05-28 03:28:31','',1434,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2.png',0,'attachment','image/png',0),(4969,9,'2022-05-28 03:34:10','2022-05-28 03:34:10','<h3>Regenerative Orthopedics Lecture with Peter A. Fields, MD, DC on Zoom</h3>\r\n<h4><strong>You are invited!! </strong><strong>Join us </strong>Sunday, June 5th for this informative lecture on\r\n<strong>Regenerative Orthopedics </strong>with leading regenerative medicine expert Peter A. Fields, MD, DC at 9AM Los Angeles time.</h4>\r\n<img class=\"size-medium wp-image-4968\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\" alt=\"Dr. Fields\' Zoom Lecture (facebook Post).2\" width=\"500\" height=\"419\" />\r\n\r\n<a class=\"session-link\" href=\"https://whova.com/embedded/speaker_session_detail/calch_202105/1576545/\"><b class=\"session-name\">Regenerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy+</b></a>\r\n<div class=\"session-desc\">\r\n\r\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\r\n\r\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients.  This lecture could change your patients’ lives and maybe even yours.</em>\r\n\r\n</div>\r\nWe hope to see you there for this informative conference!\r\n\r\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>','Cal Chiro Sports Symposium','','inherit','closed','closed','','1434-revision-v1','','','2022-05-28 03:34:10','2022-05-28 03:34:10','',1434,'https://www.drfields.com/?p=4969',0,'revision','',0),(4970,9,'2022-05-28 03:34:38','2022-05-28 03:34:38','<h3>Regenerative Orthopedics Lecture with Peter A. Fields, MD, DC on Zoom</h3>\r\n<h4><strong>You are invited!! </strong><strong>Join us </strong>Sunday, June 5th for this informative lecture on\r\n<strong>Regenerative Orthopedics </strong>with leading regenerative medicine expert Peter A. Fields, MD, DC at 9AM Los Angeles time.</h4>\r\n<img class=\"size-medium wp-image-4968\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\" alt=\"Dr. Fields\' Zoom Lecture (facebook Post).2\" width=\"500\" height=\"419\" />\r\n\r\n<a class=\"session-link\" href=\"https://whova.com/embedded/speaker_session_detail/calch_202105/1576545/\"><b class=\"session-name\">Regenerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy+</b></a>\r\n<div class=\"session-desc\">\r\n\r\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\r\n\r\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients.  This lecture could change your patients’ lives and maybe even yours.</em>\r\n\r\n</div>\r\nWe hope to see you there for this informative conference!\r\n\r\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>','Regenerative Orthopedics Lecture on Zoom','','inherit','closed','closed','','1434-revision-v1','','','2022-05-28 03:34:38','2022-05-28 03:34:38','',1434,'https://www.drfields.com/?p=4970',0,'revision','',0),(4971,9,'2022-05-28 03:35:35','2022-05-28 03:35:35','<h3>Regenerative Orthopedics Lecture with Peter A. Fields, MD, DC on Zoom</h3>\r\n<h4><strong>You are invited!! </strong><strong>Join us </strong>Sunday, June 5th for this informative lecture on\r\n<strong>Regenerative Orthopedics </strong>with leading regenerative medicine expert Peter A. Fields, MD, DC at 9AM Los Angeles time.</h4>\r\n<img class=\"size-medium wp-image-4968 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\" alt=\"Dr. Fields\' Zoom Lecture (facebook Post).2\" width=\"500\" height=\"419\" />\r\n\r\n<a class=\"session-link\" href=\"https://whova.com/embedded/speaker_session_detail/calch_202105/1576545/\"><b class=\"session-name\">Regenerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy+</b></a>\r\n<div class=\"session-desc\">\r\n\r\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\r\n\r\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients.  This lecture could change your patients’ lives and maybe even yours.</em>\r\n\r\n</div>\r\nWe hope to see you there for this informative conference!\r\n\r\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>','Regenerative Orthopedics Lecture on Zoom','','inherit','closed','closed','','1434-revision-v1','','','2022-05-28 03:35:35','2022-05-28 03:35:35','',1434,'https://www.drfields.com/?p=4971',0,'revision','',0),(4972,9,'2022-05-28 03:38:04','2022-05-28 03:38:04','<h3>Regenerative Orthopedics Lecture with Peter A. Fields, MD, DC on Zoom</h3>\r\n<h4><strong>You are invited!! </strong><strong>Join us </strong>Sunday, June 5th for this informative <strong>Regenerative Orthopedics Lecture </strong>with leading regenerative medicine expert Peter A. Fields, MD, DC at 9AM Los Angeles time.</h4>\r\n<img class=\"size-medium wp-image-4968 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\" alt=\"Dr. Fields\' Zoom Lecture (facebook Post).2\" width=\"500\" height=\"419\" />\r\n\r\n<a class=\"session-link\" href=\"https://whova.com/embedded/speaker_session_detail/calch_202105/1576545/\"><b class=\"session-name\">Regenerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy+</b></a>\r\n<div class=\"session-desc\">\r\n\r\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\r\n\r\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients.  This lecture could change your patients’ lives and maybe even yours.</em>\r\n\r\n</div>\r\nWe hope to see you there for this informative conference!\r\n\r\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>','Regenerative Orthopedics Lecture on Zoom','','inherit','closed','closed','','1434-revision-v1','','','2022-05-28 03:38:04','2022-05-28 03:38:04','',1434,'https://www.drfields.com/?p=4972',0,'revision','',0),(4973,9,'2022-05-28 03:43:20','2022-05-28 03:43:20','<h3>Regenerative Orthopedics Lecture with Peter A. Fields, MD, DC on Zoom</h3>\r\n<h4><strong>You are invited!! </strong><strong>Join us </strong>Sunday, June 5th for this informative <strong>Regenerative Orthopedics Lecture </strong>with leading regenerative medicine expert Peter A. Fields, MD, DC at 9AM Los Angeles time.</h4>\r\n<img class=\"size-medium wp-image-4968 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\" alt=\"Dr. Fields\' Zoom Lecture (facebook Post).2\" width=\"500\" height=\"419\" />\r\n\r\n<a class=\"session-link\" href=\"https://whova.com/embedded/speaker_session_detail/calch_202105/1576545/\"><b class=\"session-name\">Regenerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy+</b></a>\r\n<div class=\"session-desc\">\r\n\r\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\r\n\r\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients.  This lecture could change your patients’ lives and maybe even yours.</em>\r\n\r\n</div>\r\nWe hope to see you there for this informative conference!\r\n\r\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>\r\n\r\n&nbsp;\r\n<h3>Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics includes Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy. All of these treatments are natural non-surgical methods of assisting the body to heal weakened or injured joints, tendons and ligaments. With Regenerative Orthopedics, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, joint function is improved, and the pain is alleviated.\r\n\r\n<em>Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.</em>','Regenerative Orthopedics Lecture on Zoom','','inherit','closed','closed','','1434-revision-v1','','','2022-05-28 03:43:20','2022-05-28 03:43:20','',1434,'https://www.drfields.com/?p=4973',0,'revision','',0),(4974,9,'2022-05-28 03:47:10','2022-05-28 03:47:10','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/cal-chiro-sports-symposium/\">Join Peter A. Fields, MD, DC June 5th at 9am for a Regenerative Orthopedics Lecture on Zoom</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-05-28 03:47:10','2022-05-28 03:47:10','',2109,'https://www.drfields.com/?p=4974',0,'revision','',0),(4975,9,'2022-05-28 03:47:33','2022-05-28 03:47:33','<h4>Regenerative Orthopedics Lecture with Peter A. Fields, MD, DC on Zoom</h4>\r\n<h4><strong>You are invited!! </strong><strong>Join us </strong>Sunday, June 5th for this informative <strong>Regenerative Orthopedics Lecture </strong>with leading regenerative medicine expert Peter A. Fields, MD, DC at 9AM Los Angeles time.</h4>\r\n<img class=\"size-medium wp-image-4968 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\" alt=\"Dr. Fields\' Zoom Lecture (facebook Post).2\" width=\"500\" height=\"419\" />\r\n\r\n<a class=\"session-link\" href=\"https://whova.com/embedded/speaker_session_detail/calch_202105/1576545/\"><b class=\"session-name\">Regenerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy+</b></a>\r\n<div class=\"session-desc\">\r\n\r\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\r\n\r\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients.  This lecture could change your patients’ lives and maybe even yours.</em>\r\n\r\n</div>\r\nWe hope to see you there for this informative conference!\r\n\r\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>\r\n\r\n&nbsp;\r\n<h3>Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics includes Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy. All of these treatments are natural non-surgical methods of assisting the body to heal weakened or injured joints, tendons and ligaments. With Regenerative Orthopedics, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, joint function is improved, and the pain is alleviated.\r\n\r\n<em>Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.</em>','Regenerative Orthopedics Lecture on Zoom','','inherit','closed','closed','','1434-revision-v1','','','2022-05-28 03:47:33','2022-05-28 03:47:33','',1434,'https://www.drfields.com/?p=4975',0,'revision','',0),(4976,9,'2022-05-28 03:48:30','2022-05-28 03:48:30','<h3>Regenerative Orthopedics Lecture with Peter A. Fields, MD, DC on Zoom</h3>\r\n<h4><strong>You are invited!! </strong><strong>Join us </strong>Sunday, June 5th for this informative <strong>Regenerative Orthopedics Lecture </strong>with leading regenerative medicine expert Peter A. Fields, MD, DC at 9AM Los Angeles time.</h4>\r\n<img class=\"size-medium wp-image-4968 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\" alt=\"Dr. Fields\' Zoom Lecture (facebook Post).2\" width=\"500\" height=\"419\" />\r\n\r\n<a class=\"session-link\" href=\"https://whova.com/embedded/speaker_session_detail/calch_202105/1576545/\"><b class=\"session-name\">Regenerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy+</b></a>\r\n<div class=\"session-desc\">\r\n\r\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\r\n\r\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients.  This lecture could change your patients’ lives and maybe even yours.</em>\r\n\r\n</div>\r\nWe hope to see you there for this informative conference!\r\n\r\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>\r\n\r\n&nbsp;\r\n<h3>Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics includes Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy. All of these treatments are natural non-surgical methods of assisting the body to heal weakened or injured joints, tendons and ligaments. With Regenerative Orthopedics, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, joint function is improved, and the pain is alleviated.\r\n\r\n<em>Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.</em>','Regenerative Orthopedics Lecture on Zoom','','inherit','closed','closed','','1434-revision-v1','','','2022-05-28 03:48:30','2022-05-28 03:48:30','',1434,'https://www.drfields.com/?p=4976',0,'revision','',0),(4977,9,'2022-05-28 03:49:15','2022-05-28 03:49:15','<h3>Regenerative Orthopedics Lecture</h3>\r\n<h4>with Peter A. Fields, MD, DC on Zoom</h4>\r\n<h4><strong>You are invited!! </strong><strong>Join us </strong>Sunday, June 5th for this informative <strong>Regenerative Orthopedics Lecture </strong>with leading regenerative medicine expert Peter A. Fields, MD, DC at 9AM Los Angeles time.</h4>\r\n<img class=\"size-medium wp-image-4968 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\" alt=\"Dr. Fields\' Zoom Lecture (facebook Post).2\" width=\"500\" height=\"419\" />\r\n\r\n<a class=\"session-link\" href=\"https://whova.com/embedded/speaker_session_detail/calch_202105/1576545/\"><b class=\"session-name\">Regenerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy+</b></a>\r\n<div class=\"session-desc\">\r\n\r\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\r\n\r\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients.  This lecture could change your patients’ lives and maybe even yours.</em>\r\n\r\n</div>\r\nWe hope to see you there for this informative conference!\r\n\r\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>\r\n\r\n&nbsp;\r\n<h3>Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics includes Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy. All of these treatments are natural non-surgical methods of assisting the body to heal weakened or injured joints, tendons and ligaments. With Regenerative Orthopedics, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, joint function is improved, and the pain is alleviated.\r\n\r\n<em>Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.</em>','Regenerative Orthopedics Lecture on Zoom','','inherit','closed','closed','','1434-revision-v1','','','2022-05-28 03:49:15','2022-05-28 03:49:15','',1434,'https://www.drfields.com/?p=4977',0,'revision','',0),(4978,9,'2022-05-28 03:49:56','2022-05-28 03:49:56','<h3>Zoom Regenerative Orthopedics Lecture with Peter A. Fields, MD, DC</h3>\r\n<h4><strong>You are invited!! </strong><strong>Join us </strong>Sunday, June 5th for this informative <strong>Regenerative Orthopedics Lecture </strong>with leading regenerative medicine expert Peter A. Fields, MD, DC at 9AM Los Angeles time.</h4>\r\n<img class=\"size-medium wp-image-4968 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\" alt=\"Dr. Fields\' Zoom Lecture (facebook Post).2\" width=\"500\" height=\"419\" />\r\n\r\n<a class=\"session-link\" href=\"https://whova.com/embedded/speaker_session_detail/calch_202105/1576545/\"><b class=\"session-name\">Regenerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy+</b></a>\r\n<div class=\"session-desc\">\r\n\r\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\r\n\r\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients.  This lecture could change your patients’ lives and maybe even yours.</em>\r\n\r\n</div>\r\nWe hope to see you there for this informative conference!\r\n\r\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>\r\n\r\n&nbsp;\r\n<h3>Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics includes Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy. All of these treatments are natural non-surgical methods of assisting the body to heal weakened or injured joints, tendons and ligaments. With Regenerative Orthopedics, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, joint function is improved, and the pain is alleviated.\r\n\r\n<em>Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.</em>','Regenerative Orthopedics Lecture on Zoom','','inherit','closed','closed','','1434-revision-v1','','','2022-05-28 03:49:56','2022-05-28 03:49:56','',1434,'https://www.drfields.com/?p=4978',0,'revision','',0),(4979,9,'2022-05-28 03:50:27','2022-05-28 03:50:27','<h3>Zoom Regenerative Orthopedics Lecture with Peter A. Fields, MD, DC</h3>\r\n&nbsp;\r\n<h4><strong>You are invited!! </strong><strong>Join us </strong>Sunday, June 5th for this informative <strong>Regenerative Orthopedics Lecture </strong>with leading regenerative medicine expert Peter A. Fields, MD, DC at 9AM Los Angeles time.</h4>\r\n<img class=\"size-medium wp-image-4968 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\" alt=\"Dr. Fields\' Zoom Lecture (facebook Post).2\" width=\"500\" height=\"419\" />\r\n\r\n<a class=\"session-link\" href=\"https://whova.com/embedded/speaker_session_detail/calch_202105/1576545/\"><b class=\"session-name\">Regenerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy+</b></a>\r\n<div class=\"session-desc\">\r\n\r\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\r\n\r\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients.  This lecture could change your patients’ lives and maybe even yours.</em>\r\n\r\n</div>\r\nWe hope to see you there for this informative conference!\r\n\r\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>\r\n\r\n&nbsp;\r\n<h3>Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics includes Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy. All of these treatments are natural non-surgical methods of assisting the body to heal weakened or injured joints, tendons and ligaments. With Regenerative Orthopedics, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, joint function is improved, and the pain is alleviated.\r\n\r\n<em>Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.</em>','Regenerative Orthopedics Lecture on Zoom','','inherit','closed','closed','','1434-revision-v1','','','2022-05-28 03:50:27','2022-05-28 03:50:27','',1434,'https://www.drfields.com/?p=4979',0,'revision','',0),(4980,9,'2022-05-28 03:50:55','2022-05-28 03:50:55','<h3>Zoom Regenerative Orthopedics Lecture</h3>\r\n<h3>Peter A. Fields, MD, DC</h3>\r\n&nbsp;\r\n<h4><strong>You are invited!! </strong><strong>Join us </strong>Sunday, June 5th for this informative <strong>Regenerative Orthopedics Lecture </strong>with leading regenerative medicine expert Peter A. Fields, MD, DC at 9AM Los Angeles time.</h4>\r\n<img class=\"size-medium wp-image-4968 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\" alt=\"Dr. Fields\' Zoom Lecture (facebook Post).2\" width=\"500\" height=\"419\" />\r\n\r\n<a class=\"session-link\" href=\"https://whova.com/embedded/speaker_session_detail/calch_202105/1576545/\"><b class=\"session-name\">Regenerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy+</b></a>\r\n<div class=\"session-desc\">\r\n\r\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\r\n\r\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients.  This lecture could change your patients’ lives and maybe even yours.</em>\r\n\r\n</div>\r\nWe hope to see you there for this informative conference!\r\n\r\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>\r\n\r\n&nbsp;\r\n<h3>Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics includes Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy. All of these treatments are natural non-surgical methods of assisting the body to heal weakened or injured joints, tendons and ligaments. With Regenerative Orthopedics, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, joint function is improved, and the pain is alleviated.\r\n\r\n<em>Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.</em>','Regenerative Orthopedics Lecture on Zoom','','inherit','closed','closed','','1434-revision-v1','','','2022-05-28 03:50:55','2022-05-28 03:50:55','',1434,'https://www.drfields.com/?p=4980',0,'revision','',0),(4981,9,'2022-05-28 03:51:18','2022-05-28 03:51:18','<h3>Zoom Regenerative Orthopedics Lecture</h3>\r\n<h4>Peter A. Fields, MD, DC</h4>\r\n&nbsp;\r\n<h4><strong>You are invited!! </strong><strong>Join us </strong>Sunday, June 5th for this informative <strong>Regenerative Orthopedics Lecture </strong>with leading regenerative medicine expert Peter A. Fields, MD, DC at 9AM Los Angeles time.</h4>\r\n<img class=\"size-medium wp-image-4968 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\" alt=\"Dr. Fields\' Zoom Lecture (facebook Post).2\" width=\"500\" height=\"419\" />\r\n\r\n<a class=\"session-link\" href=\"https://whova.com/embedded/speaker_session_detail/calch_202105/1576545/\"><b class=\"session-name\">Regenerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy+</b></a>\r\n<div class=\"session-desc\">\r\n\r\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\r\n\r\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients.  This lecture could change your patients’ lives and maybe even yours.</em>\r\n\r\n</div>\r\nWe hope to see you there for this informative conference!\r\n\r\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>\r\n\r\n&nbsp;\r\n<h3>Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics includes Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy. All of these treatments are natural non-surgical methods of assisting the body to heal weakened or injured joints, tendons and ligaments. With Regenerative Orthopedics, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, joint function is improved, and the pain is alleviated.\r\n\r\n<em>Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.</em>','Regenerative Orthopedics Lecture on Zoom','','inherit','closed','closed','','1434-revision-v1','','','2022-05-28 03:51:18','2022-05-28 03:51:18','',1434,'https://www.drfields.com/?p=4981',0,'revision','',0),(4982,9,'2022-05-28 03:51:39','2022-05-28 03:51:39','<h3>Zoom Regenerative Orthopedics Lecture</h3>\r\n<h5>Peter A. Fields, MD, DC</h5>\r\n&nbsp;\r\n<h4><strong>You are invited!! </strong><strong>Join us </strong>Sunday, June 5th for this informative <strong>Regenerative Orthopedics Lecture </strong>with leading regenerative medicine expert Peter A. Fields, MD, DC at 9AM Los Angeles time.</h4>\r\n<img class=\"size-medium wp-image-4968 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\" alt=\"Dr. Fields\' Zoom Lecture (facebook Post).2\" width=\"500\" height=\"419\" />\r\n\r\n<a class=\"session-link\" href=\"https://whova.com/embedded/speaker_session_detail/calch_202105/1576545/\"><b class=\"session-name\">Regenerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy+</b></a>\r\n<div class=\"session-desc\">\r\n\r\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\r\n\r\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients.  This lecture could change your patients’ lives and maybe even yours.</em>\r\n\r\n</div>\r\nWe hope to see you there for this informative conference!\r\n\r\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>\r\n\r\n&nbsp;\r\n<h3>Regenerative Orthopedics</h3>\r\nRegenerative Orthopedics includes Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy. All of these treatments are natural non-surgical methods of assisting the body to heal weakened or injured joints, tendons and ligaments. With Regenerative Orthopedics, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, joint function is improved, and the pain is alleviated.\r\n\r\n<em>Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.</em>','Regenerative Orthopedics Lecture on Zoom','','inherit','closed','closed','','1434-revision-v1','','','2022-05-28 03:51:39','2022-05-28 03:51:39','',1434,'https://www.drfields.com/?p=4982',0,'revision','',0),(4983,9,'2022-05-28 03:55:11','2022-05-28 03:55:11','<h3>Zoom Regenerative Orthopedics Lecture</h3>\r\n<h5>Peter A. Fields, MD, DC</h5>\r\n&nbsp;\r\n<h4><strong>You are invited!! </strong><strong>Join us </strong>Sunday, June 5th for this informative <strong>Regenerative Orthopedics Lecture </strong>with leading regenerative medicine expert Peter A. Fields, MD, DC at 9AM Los Angeles time.</h4>\r\n<img class=\"size-medium wp-image-4968 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png\" alt=\"Dr. Fields\' Zoom Lecture (facebook Post).2\" width=\"500\" height=\"419\" />\r\n\r\n<b class=\"session-name\">Rege</b><b class=\"session-name\">nerative Orthopedics: Non-Surgical Repair With Stem Cells /PRP /Prolotherapy</b>\r\n<div class=\"session-desc\">\r\n\r\n<em>\"What do you do when a patient presents with a torn meniscus? Torn labrum? Torn ligament or tendon? Or they are told to have their joint replaced?  What options do your patients have?</em>\r\n\r\n<em> As both a medical physician and chiropractor, I understand their dilemma and might have a solution that helps your patients avoid unnecessary orthopedic surgeries and all the pitfalls that come with it. As a leader in the field of Regenerative Orthopedics, I can show you not only what can be done, but how it benefits you and your patients.  This lecture could change your patients’ lives and maybe even yours.</em>\r\n\r\n</div>\r\nWe hope to see you there for this informative conference!\r\n\r\nIf you have questions, please feel free to <a href=\"https://www.drfields.com/contact/\">contact us at OrthoRegen.</a>\r\n\r\n&nbsp;\r\n<h3>Non-Surgical Stem Cell, Platelet Rich Plasma, and Prolotherapy Treatments</h3>\r\nRegenerative Orthopedics includes Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy. All of these treatments are natural non-surgical methods of assisting the body to heal weakened or injured joints, tendons and ligaments. With Regenerative Orthopedics, the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the ligaments and tendons grow stronger and vibrant, joint function is improved, and the pain is alleviated.\r\n\r\n<em>Peter A. Fields, MD, DC, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\" target=\"_blank\" rel=\"noopener noreferrer\">The Athletic Doc<sup>®</sup></a>, is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). <strong>He is one of a handful of physicians in the nation that is both a Medical Physician and a Chiropractor.</strong> This combination of degrees gives Dr. Fields a broad area of knowledge and expertise that benefits his patients.</em>','Regenerative Orthopedics Lecture on Zoom','','inherit','closed','closed','','1434-revision-v1','','','2022-05-28 03:55:11','2022-05-28 03:55:11','',1434,'https://www.drfields.com/?p=4983',0,'revision','',0),(4984,9,'2022-05-28 03:56:56','2022-05-28 03:56:56','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2023 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/cal-chiro-sports-symposium/\">Join Peter A. Fields, MD, DC June 5th at 9am for a Regenerative Orthopedics Lecture on Zoom</a></li>\r\n</ul>\r\n<a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-05-28 03:56:56','2022-05-28 03:56:56','',2109,'https://www.drfields.com/?p=4984',0,'revision','',0),(4985,9,'2022-05-28 04:00:35','2022-05-28 04:00:35','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/cal-chiro-sports-symposium/\">Join Peter A. Fields, MD, DC June 5th at 9am for a Regenerative Orthopedics Lecture on Zoom</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2023 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields</a><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-05-28 04:00:35','2022-05-28 04:00:35','',2109,'https://www.drfields.com/?p=4985',0,'revision','',0),(4986,9,'2022-05-28 04:01:05','2022-05-28 04:01:05','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/cal-chiro-sports-symposium/\">Join Peter A. Fields, MD, DC June 5th at 9am for a Regenerative Orthopedics Lecture on Zoom</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2023 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields </a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-05-28 04:01:05','2022-05-28 04:01:05','',2109,'https://www.drfields.com/?p=4986',0,'revision','',0),(4987,9,'2022-05-28 04:02:33','2022-05-28 04:02:33','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/cal-chiro-sports-symposium/\">Join Peter A. Fields, MD, DC June 5th at 9am on Zoom for a Regenerative Orthopedics Lecture</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2023 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields </a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-05-28 04:02:33','2022-05-28 04:02:33','',2109,'https://www.drfields.com/?p=4987',0,'revision','',0),(4988,9,'2022-06-05 00:57:42','2022-06-05 00:57:42','<div class=\"col-md-8\">\n<h2>Non-Surgical Repair of Ligaments and Tendons</h2>\nAre you looking for a non-surgical treatment option for your joint injury?\n\nJoint repair using PRP is an exciting and cutting edge therapy for the stimulation of tissue repair and the regeneration of weakened, torn, or damaged ligaments and tendons.\n\n<strong>PRP (Platelet Rich Plasma) treatments are effective non-surgical options for joint injury repair.</strong> This non-surgical treatment is a great way for patients to avoid the pain, complications, and recovery time associated with joint surgery.\n\n<img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" />If you’ve been told by an orthopedic surgeon that <strong>you need surgery</strong> to repair your damaged joint, you may be facing a hospital visit, general anesthesia, risks of complications, weeks or months of limited ability on crutches or in a cast, and <strong>up to a year of recovery and physical therapy</strong> before the surgeon says things might be “normal” again.\n\nBefore you commit to a surgery that you may regret from the very first day, you should know <strong>that there IS an alternative to joint surgery</strong> that has none of those disadvantages.\n<h3>Non-Surgical Repair by Peter A. Fields, MD, DC</h3>\n<strong>My name is Dr. Peter A. Fields</strong>, and I am a leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, you do NOT need to have surgery to repair a severely damaged ligament, tendon, labrum, or meniscus and the pain that goes with it.\n\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\n\nI am a specialist in a natural, non-surgical method of assisting the body to heal injured tendons and ligaments called <strong>Regenerative Orthopedics</strong>. These treatments help your body to regenerate and repair the damage in your joint.\n<h3>What is Regenerative Orthopedics?</h3>\n<strong>Regenerative Orthopedics</strong> is a treatment that causes an increase in nutrient-rich blood cells in the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. Your own body does the work to grow healthy, strong and vibrant tissue. It’s incredibly effective.\n\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\n\nThat means you fix your joint problem and eliminate your pain with…\n<ul>\n 	<li><strong> NO hospital stay </strong></li>\n 	<li><strong> NO general anesthesia </strong></li>\n 	<li><strong> NO surgery </strong></li>\n 	<li><strong> NO surgical complications </strong></li>\n 	<li><strong> NO long recovery </strong></li>\n</ul>\n<h3>Platelet Rich Plasma for Joint Repair</h3>\n[caption id=\"attachment_4992\" align=\"alignnone\" width=\"500\"]<img class=\"size-medium wp-image-4992\" src=\"https://www.drfields.com/wp-content/uploads/2022/06/PRP.-500x375.jpeg\" alt=\"Prp.\" width=\"500\" height=\"375\" /> Prp.[/caption]\n\n<strong>In certain joint injuries, we recommend PRP.</strong> PRP means “Platelet Rich Plasma”, and the therapy isolates the platelets from your own blood in a centrifuge, and then re-injects this “platelet rich plasma” -- with 7 to 10 times more concentrated growth factors -- where it’s needed. PRP is more effective in these severe situations and typically results in 80% to 85% reduction in joint pain and a similar increase in range of motion. And the results are permanent.\n\nIn addition to severe tendon and ligament tears, torn meniscus and torn labrum, PRP is also effective with torn achilles tendon, plantar fasciitis, tennis elbow, and a long list of severe sports injuries in any joint.\n<h3>Are You A Candidate for PRP?</h3>\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-PRP-Repairs-Ligaments-and-Tendons-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for PRP Prolotherapy.\n<div class=\"col-md-6\">\n\n<iframe src=\"https://www.youtube.com/embed/vQGBBEARjMk?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\n<div class=\"text-wrap\">\n<p class=\"video-text\">May - Knee - <span style=\"color: #ff0000;\">NEW!</span></p>\nAfter a half marathon, May couldn’t even walk back to her car! She avoided surgery by having Prolotherapy and PRP from Dr. Fields, and now she’s back to running half and FULL marathons. “Dr Peter Fields is Awesome.”\n\n</div>\n</div>\n<div class=\"col-md-6\">\n\n<iframe src=\"https://www.youtube.com/embed/hA1FVmxWixE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\n<div class=\"text-wrap\">\n<p class=\"video-text\">Dr. Leonard - Torn meniscus</p>\nDr. Leonard is a 61 Year Old Ironman competitor who avoided surgery in both knees with Dr. Fields’ PRP, and he is now back to racing!\n\n</div>\n</div>\n<div class=\"clear\"></div>\n<div class=\"col-md-6\">\n\n<iframe src=\"https://www.youtube.com/embed/hmq3WQRNSlk?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\n<div class=\"text-wrap\">\n<p class=\"video-text\">Christopher - Knee</p>\nChristopher, a Pro basketball player, came from China to avoid torn meniscus surgery to receive PRP from Dr. Fields. He is now playing ball again after just 3 treatments.\n\n</div>\n</div>\n<div class=\"col-md-6\">\n\n<iframe src=\"https://www.youtube.com/embed/rCf1JO5aNNA?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\n<div class=\"text-wrap\">\n<p class=\"video-text\">Tony - Shoulder &amp; Ankle</p>\nTony had two shoulder tears years ago that were treated by Dr. Fields, leading to a full recovery. Later, multiple ankle tears caused by ballet and obstacle course racing. Dr. Fields’ PRP got him competing again!\n\n</div>\n</div>\n</div>\n<div class=\"col-md-4\">\n<h5>Will PRP Work For You?</h5>\nFind out if you\'re a candidate for PRP and repairing your ligaments and tendons without surgery. Schedule your consultation by calling our office now at [phone] or fill out this form.\n\n[form]\n\n</div>','Non-Surgical Repair of Ligaments and Tendons','','inherit','closed','closed','','2335-autosave-v1','','','2022-06-05 00:57:42','2022-06-05 00:57:42','',2335,'https://www.drfields.com/?p=4988',0,'revision','',0),(4989,9,'2022-06-05 00:49:43','2022-06-05 00:49:43','<div class=\"col-md-8\">\r\n<h4>How PRP Repairs Severely Torn Ligaments and Tendons Without Surgery</h4>\r\nAre you looking for a non-surgical treatment option for your joint injury?\r\n\r\nJoint repair using PRP is an exciting and cutting edge therapy for the stimulation of tissue repair and the regeneration of weakened, torn, or damaged ligaments and tendons.\r\n\r\n<strong>PRP (Platelet Rich Plasma) treatments are effective non-surgical options for joint injury repair.</strong> This non-surgical treatment is a great way for patients to avoid the pain, complications, and recovery time associated with joint surgery.\r\n\r\n<img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" />If you’ve been told by an orthopedic surgeon that <strong>you need surgery</strong> to repair your damaged joint, you may be facing a hospital visit, general anesthesia, risks of complications, weeks or months of limited ability on crutches or in a cast, and <strong>up to a year of recovery and physical therapy</strong> before the surgeon says things might be “normal” again.\r\n\r\nBefore you commit to a surgery that you may regret from the very first day, you should know <strong>that there IS an alternative to joint surgery</strong> that has none of those disadvantages.\r\n\r\n<strong>My name is Dr. Peter Fields</strong>, and I am a leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, you do NOT need to have surgery to repair a severely damaged ligament, tendon, labrum, or meniscus and the pain that goes with it.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, non-surgical method of assisting the body to heal injured tendons and ligaments called <strong>Regenerative Orthopedics</strong>. These treatments help your body to regenerate and repair the damage in your joint.\r\n<h4>What is Regenerative Orthopedics?</h4>\r\n<strong>Regenerative Orthopedics</strong> is a treatment that causes an increase in nutrient-rich blood cells in the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. Your own body does the work to grow healthy, strong and vibrant tissue. It’s incredibly effective.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you fix your joint problem and eliminate your pain with…\r\n<ul>\r\n 	<li><strong> NO hospital stay </strong></li>\r\n 	<li><strong> NO general anesthesia </strong></li>\r\n 	<li><strong> NO surgery </strong></li>\r\n 	<li><strong> NO surgical complications </strong></li>\r\n 	<li><strong> NO long recovery </strong></li>\r\n</ul>\r\n<h4>Platelet Rich Plasma for Joint Repair</h4>\r\n<strong>In certain joint injuries, we recommend PRP.</strong> PRP means “Platelet Rich Plasma”, and the therapy isolates the platelets from your own blood in a centrifuge, and then re-injects this “platelet rich plasma” -- with 7 to 10 times more concentrated growth factors -- where it’s needed. PRP is more effective in these severe situations and typically results in 80% to 85% reduction in joint pain and a similar increase in range of motion. And the results are permanent.\r\n\r\nIn addition to severe tendon and ligament tears, torn meniscus and torn labrum, PRP is also effective with torn achilles tendon, plantar fasciitis, tennis elbow, and a long list of severe sports injuries in any joint.\r\n<h4>Are You A Candidate for PRP Prolotherapy?</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-PRP-Repairs-Ligaments-and-Tendons-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for PRP Prolotherapy.\r\n<div class=\"col-md-6\"><iframe src=\"https://www.youtube.com/embed/vQGBBEARjMk?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">May - Knee - <span style=\"color: #ff0000;\">NEW!</span></p>\r\nAfter a half marathon, May couldn’t even walk back to her car! She avoided surgery by having Prolotherapy and PRP from Dr. Fields, and now she’s back to running half and FULL marathons. “Dr Peter Fields is Awesome.”\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\"><iframe src=\"https://www.youtube.com/embed/hA1FVmxWixE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Leonard - Torn meniscus</p>\r\nDr. Leonard is a 61 Year Old Ironman competitor who avoided surgery in both knees with Dr. Fields’ PRP, and he is now back to racing!\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\"><iframe src=\"https://www.youtube.com/embed/hmq3WQRNSlk?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christopher - Knee</p>\r\nChristopher, a Pro basketball player, came from China to avoid torn meniscus surgery to receive PRP from Dr. Fields. He is now playing ball again after just 3 treatments.\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\"><iframe src=\"https://www.youtube.com/embed/rCf1JO5aNNA?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Tony - Shoulder &amp; Ankle</p>\r\nTony had two shoulder tears years ago that were treated by Dr. Fields, leading to a full recovery. Later, multiple ankle tears caused by ballet and obstacle course racing. Dr. Fields’ PRP got him competing again!\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h5>Will PRP Work For You?</h5>\r\nFind out if you\'re a candidate for PRP and repairing your ligaments and tendons without surgery. Schedule your consultation by calling our office now at [phone] or fill out this form.\r\n\r\n[form]\r\n\r\n</div>','How PRP Repairs Ligaments and Tendons Without Surgery','','inherit','closed','closed','','2335-revision-v1','','','2022-06-05 00:49:43','2022-06-05 00:49:43','',2335,'https://www.drfields.com/?p=4989',0,'revision','',0),(4990,9,'2022-06-05 00:51:36','2022-06-05 00:51:36','<div class=\"col-md-8\">\r\n<h3>Non-Surgical Repair of Ligaments and Tendons</h3>\r\nAre you looking for a non-surgical treatment option for your joint injury?\r\n\r\nJoint repair using PRP is an exciting and cutting edge therapy for the stimulation of tissue repair and the regeneration of weakened, torn, or damaged ligaments and tendons.\r\n\r\n<strong>PRP (Platelet Rich Plasma) treatments are effective non-surgical options for joint injury repair.</strong> This non-surgical treatment is a great way for patients to avoid the pain, complications, and recovery time associated with joint surgery.\r\n\r\n<img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" />If you’ve been told by an orthopedic surgeon that <strong>you need surgery</strong> to repair your damaged joint, you may be facing a hospital visit, general anesthesia, risks of complications, weeks or months of limited ability on crutches or in a cast, and <strong>up to a year of recovery and physical therapy</strong> before the surgeon says things might be “normal” again.\r\n\r\nBefore you commit to a surgery that you may regret from the very first day, you should know <strong>that there IS an alternative to joint surgery</strong> that has none of those disadvantages.\r\n<h3>Non-Surgical Repair by Peter A. Fields, MD, DC</h3>\r\n<strong>My name is Dr. Peter A. Fields</strong>, and I am a leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, you do NOT need to have surgery to repair a severely damaged ligament, tendon, labrum, or meniscus and the pain that goes with it.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, non-surgical method of assisting the body to heal injured tendons and ligaments called <strong>Regenerative Orthopedics</strong>. These treatments help your body to regenerate and repair the damage in your joint.\r\n<h4>What is Regenerative Orthopedics?</h4>\r\n<strong>Regenerative Orthopedics</strong> is a treatment that causes an increase in nutrient-rich blood cells in the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. Your own body does the work to grow healthy, strong and vibrant tissue. It’s incredibly effective.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you fix your joint problem and eliminate your pain with…\r\n<ul>\r\n 	<li><strong> NO hospital stay </strong></li>\r\n 	<li><strong> NO general anesthesia </strong></li>\r\n 	<li><strong> NO surgery </strong></li>\r\n 	<li><strong> NO surgical complications </strong></li>\r\n 	<li><strong> NO long recovery </strong></li>\r\n</ul>\r\n<h4>Platelet Rich Plasma for Joint Repair</h4>\r\n<strong>In certain joint injuries, we recommend PRP.</strong> PRP means “Platelet Rich Plasma”, and the therapy isolates the platelets from your own blood in a centrifuge, and then re-injects this “platelet rich plasma” -- with 7 to 10 times more concentrated growth factors -- where it’s needed. PRP is more effective in these severe situations and typically results in 80% to 85% reduction in joint pain and a similar increase in range of motion. And the results are permanent.\r\n\r\nIn addition to severe tendon and ligament tears, torn meniscus and torn labrum, PRP is also effective with torn achilles tendon, plantar fasciitis, tennis elbow, and a long list of severe sports injuries in any joint.\r\n<h4>Are You A Candidate for PRP Prolotherapy?</h4>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-PRP-Repairs-Ligaments-and-Tendons-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for PRP Prolotherapy.\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/vQGBBEARjMk?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">May - Knee - <span style=\"color: #ff0000;\">NEW!</span></p>\r\nAfter a half marathon, May couldn’t even walk back to her car! She avoided surgery by having Prolotherapy and PRP from Dr. Fields, and now she’s back to running half and FULL marathons. “Dr Peter Fields is Awesome.”\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/hA1FVmxWixE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Leonard - Torn meniscus</p>\r\nDr. Leonard is a 61 Year Old Ironman competitor who avoided surgery in both knees with Dr. Fields’ PRP, and he is now back to racing!\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/hmq3WQRNSlk?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christopher - Knee</p>\r\nChristopher, a Pro basketball player, came from China to avoid torn meniscus surgery to receive PRP from Dr. Fields. He is now playing ball again after just 3 treatments.\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/rCf1JO5aNNA?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Tony - Shoulder &amp; Ankle</p>\r\nTony had two shoulder tears years ago that were treated by Dr. Fields, leading to a full recovery. Later, multiple ankle tears caused by ballet and obstacle course racing. Dr. Fields’ PRP got him competing again!\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h5>Will PRP Work For You?</h5>\r\nFind out if you\'re a candidate for PRP and repairing your ligaments and tendons without surgery. Schedule your consultation by calling our office now at [phone] or fill out this form.\r\n\r\n[form]\r\n\r\n</div>','Non-Surgical Repair of Ligaments and Tendons','','inherit','closed','closed','','2335-revision-v1','','','2022-06-05 00:51:36','2022-06-05 00:51:36','',2335,'https://www.drfields.com/?p=4990',0,'revision','',0),(4991,9,'2022-06-05 00:54:53','2022-06-05 00:54:53','<div class=\"col-md-8\">\r\n<h2>Non-Surgical Repair of Ligaments and Tendons</h2>\r\nAre you looking for a non-surgical treatment option for your joint injury?\r\n\r\nJoint repair using PRP is an exciting and cutting edge therapy for the stimulation of tissue repair and the regeneration of weakened, torn, or damaged ligaments and tendons.\r\n\r\n<strong>PRP (Platelet Rich Plasma) treatments are effective non-surgical options for joint injury repair.</strong> This non-surgical treatment is a great way for patients to avoid the pain, complications, and recovery time associated with joint surgery.\r\n\r\n<img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" />If you’ve been told by an orthopedic surgeon that <strong>you need surgery</strong> to repair your damaged joint, you may be facing a hospital visit, general anesthesia, risks of complications, weeks or months of limited ability on crutches or in a cast, and <strong>up to a year of recovery and physical therapy</strong> before the surgeon says things might be “normal” again.\r\n\r\nBefore you commit to a surgery that you may regret from the very first day, you should know <strong>that there IS an alternative to joint surgery</strong> that has none of those disadvantages.\r\n<h3>Non-Surgical Repair by Peter A. Fields, MD, DC</h3>\r\n<strong>My name is Dr. Peter A. Fields</strong>, and I am a leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, you do NOT need to have surgery to repair a severely damaged ligament, tendon, labrum, or meniscus and the pain that goes with it.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, non-surgical method of assisting the body to heal injured tendons and ligaments called <strong>Regenerative Orthopedics</strong>. These treatments help your body to regenerate and repair the damage in your joint.\r\n<h3>What is Regenerative Orthopedics?</h3>\r\n<strong>Regenerative Orthopedics</strong> is a treatment that causes an increase in nutrient-rich blood cells in the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. Your own body does the work to grow healthy, strong and vibrant tissue. It’s incredibly effective.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you fix your joint problem and eliminate your pain with…\r\n<ul>\r\n 	<li><strong> NO hospital stay </strong></li>\r\n 	<li><strong> NO general anesthesia </strong></li>\r\n 	<li><strong> NO surgery </strong></li>\r\n 	<li><strong> NO surgical complications </strong></li>\r\n 	<li><strong> NO long recovery </strong></li>\r\n</ul>\r\n<h3>Platelet Rich Plasma for Joint Repair</h3>\r\n<strong>In certain joint injuries, we recommend PRP.</strong> PRP means “Platelet Rich Plasma”, and the therapy isolates the platelets from your own blood in a centrifuge, and then re-injects this “platelet rich plasma” -- with 7 to 10 times more concentrated growth factors -- where it’s needed. PRP is more effective in these severe situations and typically results in 80% to 85% reduction in joint pain and a similar increase in range of motion. And the results are permanent.\r\n\r\nIn addition to severe tendon and ligament tears, torn meniscus and torn labrum, PRP is also effective with torn achilles tendon, plantar fasciitis, tennis elbow, and a long list of severe sports injuries in any joint.\r\n<h3>Are You A Candidate for PRP?</h3>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-PRP-Repairs-Ligaments-and-Tendons-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for PRP Prolotherapy.\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/vQGBBEARjMk?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">May - Knee - <span style=\"color: #ff0000;\">NEW!</span></p>\r\nAfter a half marathon, May couldn’t even walk back to her car! She avoided surgery by having Prolotherapy and PRP from Dr. Fields, and now she’s back to running half and FULL marathons. “Dr Peter Fields is Awesome.”\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/hA1FVmxWixE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Leonard - Torn meniscus</p>\r\nDr. Leonard is a 61 Year Old Ironman competitor who avoided surgery in both knees with Dr. Fields’ PRP, and he is now back to racing!\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/hmq3WQRNSlk?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christopher - Knee</p>\r\nChristopher, a Pro basketball player, came from China to avoid torn meniscus surgery to receive PRP from Dr. Fields. He is now playing ball again after just 3 treatments.\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/rCf1JO5aNNA?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Tony - Shoulder &amp; Ankle</p>\r\nTony had two shoulder tears years ago that were treated by Dr. Fields, leading to a full recovery. Later, multiple ankle tears caused by ballet and obstacle course racing. Dr. Fields’ PRP got him competing again!\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h5>Will PRP Work For You?</h5>\r\nFind out if you\'re a candidate for PRP and repairing your ligaments and tendons without surgery. Schedule your consultation by calling our office now at [phone] or fill out this form.\r\n\r\n[form]\r\n\r\n</div>','Non-Surgical Repair of Ligaments and Tendons','','inherit','closed','closed','','2335-revision-v1','','','2022-06-05 00:54:53','2022-06-05 00:54:53','',2335,'https://www.drfields.com/?p=4991',0,'revision','',0),(4992,9,'2022-06-05 00:57:27','2022-06-05 00:57:27','Prp.','Prp.','Prp.','inherit','open','closed','','prp','','','2022-06-05 00:57:27','2022-06-05 00:57:27','',2335,'https://www.drfields.com/wp-content/uploads/2022/06/PRP..jpeg',0,'attachment','image/jpeg',0),(4993,9,'2022-06-05 00:59:04','2022-06-05 00:59:04','<div class=\"col-md-8\">\r\n<h2>Non-Surgical Repair of Ligaments and Tendons</h2>\r\nAre you looking for a non-surgical treatment option for your joint injury?\r\n\r\nJoint repair using PRP is an exciting and cutting edge therapy for the stimulation of tissue repair and the regeneration of weakened, torn, or damaged ligaments and tendons.\r\n\r\n<strong>PRP (Platelet Rich Plasma) treatments are effective non-surgical options for joint injury repair.</strong> This non-surgical treatment is a great way for patients to avoid the pain, complications, and recovery time associated with joint surgery.\r\n\r\n<img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" />If you’ve been told by an orthopedic surgeon that <strong>you need surgery</strong> to repair your damaged joint, you may be facing a hospital visit, general anesthesia, risks of complications, weeks or months of limited ability on crutches or in a cast, and <strong>up to a year of recovery and physical therapy</strong> before the surgeon says things might be “normal” again.\r\n\r\nBefore you commit to a surgery that you may regret from the very first day, you should know <strong>that there IS an alternative to joint surgery</strong> that has none of those disadvantages.\r\n<h3>Non-Surgical Repair by Peter A. Fields, MD, DC</h3>\r\n<strong>My name is Dr. Peter A. Fields</strong>, and I am a leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, you do NOT need to have surgery to repair a severely damaged ligament, tendon, labrum, or meniscus and the pain that goes with it.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, non-surgical method of assisting the body to heal injured tendons and ligaments called <strong>Regenerative Orthopedics</strong>. These treatments help your body to regenerate and repair the damage in your joint.\r\n<h3>What is Regenerative Orthopedics?</h3>\r\n<strong>Regenerative Orthopedics</strong> is a treatment that causes an increase in nutrient-rich blood cells in the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. Your own body does the work to grow healthy, strong and vibrant tissue. It’s incredibly effective.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you fix your joint problem and eliminate your pain with…\r\n<ul>\r\n 	<li><strong> NO hospital stay </strong></li>\r\n 	<li><strong> NO general anesthesia </strong></li>\r\n 	<li><strong> NO surgery </strong></li>\r\n 	<li><strong> NO surgical complications </strong></li>\r\n 	<li><strong> NO long recovery </strong></li>\r\n</ul>\r\n<h3>Platelet Rich Plasma for Joint Repair</h3>\r\n<img class=\"size-medium wp-image-4992\" src=\"https://www.drfields.com/wp-content/uploads/2022/06/PRP.-500x375.jpeg\" alt=\"Prp.\" width=\"500\" height=\"375\" />\r\n\r\n<strong>In certain joint injuries, we recommend PRP.</strong> PRP means “Platelet Rich Plasma”, and the therapy isolates the platelets from your own blood in a centrifuge, and then re-injects this “platelet rich plasma” -- with 7 to 10 times more concentrated growth factors -- where it’s needed. PRP is more effective in these severe situations and typically results in 80% to 85% reduction in joint pain and a similar increase in range of motion. And the results are permanent.\r\n\r\nIn addition to severe tendon and ligament tears, torn meniscus and torn labrum, PRP is also effective with torn achilles tendon, plantar fasciitis, tennis elbow, and a long list of severe sports injuries in any joint.\r\n<h3>Are You A Candidate for PRP?</h3>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-PRP-Repairs-Ligaments-and-Tendons-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for PRP Prolotherapy.\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/vQGBBEARjMk?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">May - Knee - <span style=\"color: #ff0000;\">NEW!</span></p>\r\nAfter a half marathon, May couldn’t even walk back to her car! She avoided surgery by having Prolotherapy and PRP from Dr. Fields, and now she’s back to running half and FULL marathons. “Dr Peter Fields is Awesome.”\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/hA1FVmxWixE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Leonard - Torn meniscus</p>\r\nDr. Leonard is a 61 Year Old Ironman competitor who avoided surgery in both knees with Dr. Fields’ PRP, and he is now back to racing!\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/hmq3WQRNSlk?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christopher - Knee</p>\r\nChristopher, a Pro basketball player, came from China to avoid torn meniscus surgery to receive PRP from Dr. Fields. He is now playing ball again after just 3 treatments.\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/rCf1JO5aNNA?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Tony - Shoulder &amp; Ankle</p>\r\nTony had two shoulder tears years ago that were treated by Dr. Fields, leading to a full recovery. Later, multiple ankle tears caused by ballet and obstacle course racing. Dr. Fields’ PRP got him competing again!\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h5>Will PRP Work For You?</h5>\r\nFind out if you\'re a candidate for PRP and repairing your ligaments and tendons without surgery. Schedule your consultation by calling our office now at [phone] or fill out this form.\r\n\r\n[form]\r\n\r\n</div>','Non-Surgical Repair of Ligaments and Tendons','','inherit','closed','closed','','2335-revision-v1','','','2022-06-05 00:59:04','2022-06-05 00:59:04','',2335,'https://www.drfields.com/?p=4993',0,'revision','',0),(4994,9,'2022-06-05 00:59:16','2022-06-05 00:59:16','<div class=\"col-md-8\">\r\n<h2>Non-Surgical Repair of Ligaments and Tendons</h2>\r\nAre you looking for a non-surgical treatment option for your joint injury?\r\n\r\nJoint repair using PRP is an exciting and cutting edge therapy for the stimulation of tissue repair and the regeneration of weakened, torn, or damaged ligaments and tendons.\r\n\r\n<strong>PRP (Platelet Rich Plasma) treatments are effective non-surgical options for joint injury repair.</strong> This non-surgical treatment is a great way for patients to avoid the pain, complications, and recovery time associated with joint surgery.\r\n\r\n<img class=\"alignleft size-full wp-image-1685\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg\" alt=\"Stem Cell Doctor Peter Fields Md Dc\" width=\"176\" height=\"280\" />If you’ve been told by an orthopedic surgeon that <strong>you need surgery</strong> to repair your damaged joint, you may be facing a hospital visit, general anesthesia, risks of complications, weeks or months of limited ability on crutches or in a cast, and <strong>up to a year of recovery and physical therapy</strong> before the surgeon says things might be “normal” again.\r\n\r\nBefore you commit to a surgery that you may regret from the very first day, you should know <strong>that there IS an alternative to joint surgery</strong> that has none of those disadvantages.\r\n<h3>Non-Surgical Repair by Peter A. Fields, MD, DC</h3>\r\n<strong>My name is Dr. Peter A. Fields</strong>, and I am a leading expert in Regenerative Orthopedics and uniquely degreed as both an MD and a Doctor of Chiropractic. I’m here to tell you that in many cases, you do NOT need to have surgery to repair a severely damaged ligament, tendon, labrum, or meniscus and the pain that goes with it.\r\n\r\nMy treatments have helped thousands of people resume their normal lives without joint surgery, and there’s a very good chance that I can do the same for you.\r\n\r\nI am a specialist in a natural, non-surgical method of assisting the body to heal injured tendons and ligaments called <strong>Regenerative Orthopedics</strong>. These treatments help your body to regenerate and repair the damage in your joint.\r\n<h3>What is Regenerative Orthopedics?</h3>\r\n<strong>Regenerative Orthopedics</strong> is a treatment that causes an increase in nutrient-rich blood cells in the affected area, causing your body to heal and strengthen injured or weakened ligaments, tendons or joints. Your own body does the work to grow healthy, strong and vibrant tissue. It’s incredibly effective.\r\n\r\nAs the tissue grows and strengthens, your joint begins to operate properly, and your pain (and the causes of your pain) dissipate. Many of my patients enjoy a <strong>permanent recovery</strong> from their symptoms and go back to living a normal life without joint pain.\r\n\r\nThat means you fix your joint problem and eliminate your pain with…\r\n<ul>\r\n 	<li><strong> NO hospital stay </strong></li>\r\n 	<li><strong> NO general anesthesia </strong></li>\r\n 	<li><strong> NO surgery </strong></li>\r\n 	<li><strong> NO surgical complications </strong></li>\r\n 	<li><strong> NO long recovery </strong></li>\r\n</ul>\r\n<h3>Platelet Rich Plasma for Joint Repair</h3>\r\n<img class=\"size-medium wp-image-4992 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2022/06/PRP.-500x375.jpeg\" alt=\"Prp.\" width=\"500\" height=\"375\" />\r\n\r\n<strong>In certain joint injuries, we recommend PRP.</strong> PRP means “Platelet Rich Plasma”, and the therapy isolates the platelets from your own blood in a centrifuge, and then re-injects this “platelet rich plasma” -- with 7 to 10 times more concentrated growth factors -- where it’s needed. PRP is more effective in these severe situations and typically results in 80% to 85% reduction in joint pain and a similar increase in range of motion. And the results are permanent.\r\n\r\nIn addition to severe tendon and ligament tears, torn meniscus and torn labrum, PRP is also effective with torn achilles tendon, plantar fasciitis, tennis elbow, and a long list of severe sports injuries in any joint.\r\n<h3>Are You A Candidate for PRP?</h3>\r\nLet’s get you on the path to recovery without joint surgery. <a href=\"https://www.drfields.com/How-PRP-Repairs-Ligaments-and-Tendons-Without-Surgery#contact\">Contact my office today</a> or call me at <a href=\"tel:+[phone_raw]\">[phone]</a> and set up a consultation to find out if you are a candidate for PRP Prolotherapy.\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/vQGBBEARjMk?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">May - Knee - <span style=\"color: #ff0000;\">NEW!</span></p>\r\nAfter a half marathon, May couldn’t even walk back to her car! She avoided surgery by having Prolotherapy and PRP from Dr. Fields, and now she’s back to running half and FULL marathons. “Dr Peter Fields is Awesome.”\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/hA1FVmxWixE?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Dr. Leonard - Torn meniscus</p>\r\nDr. Leonard is a 61 Year Old Ironman competitor who avoided surgery in both knees with Dr. Fields’ PRP, and he is now back to racing!\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/hmq3WQRNSlk?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Christopher - Knee</p>\r\nChristopher, a Pro basketball player, came from China to avoid torn meniscus surgery to receive PRP from Dr. Fields. He is now playing ball again after just 3 treatments.\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-6\">\r\n\r\n<iframe src=\"https://www.youtube.com/embed/rCf1JO5aNNA?rel=0&amp;wmode=opaque\" width=\"100%\" height=\"250\" frameborder=\"0\"></iframe>\r\n<div class=\"text-wrap\">\r\n<p class=\"video-text\">Tony - Shoulder &amp; Ankle</p>\r\nTony had two shoulder tears years ago that were treated by Dr. Fields, leading to a full recovery. Later, multiple ankle tears caused by ballet and obstacle course racing. Dr. Fields’ PRP got him competing again!\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4\">\r\n<h5>Will PRP Work For You?</h5>\r\nFind out if you\'re a candidate for PRP and repairing your ligaments and tendons without surgery. Schedule your consultation by calling our office now at [phone] or fill out this form.\r\n\r\n[form]\r\n\r\n</div>','Non-Surgical Repair of Ligaments and Tendons','','inherit','closed','closed','','2335-revision-v1','','','2022-06-05 00:59:16','2022-06-05 00:59:16','',2335,'https://www.drfields.com/?p=4994',0,'revision','',0),(4999,8,'2022-06-29 22:45:02','2022-06-29 22:45:02','','iwp_log_62bcd5ee6d17a','','publish','closed','closed','','iwp_log_62bcd5ee6d17a','','','2022-06-29 22:45:02','2022-06-29 22:45:02','',0,'https://www.drfields.com/iwp_log/iwp_log_62bcd5ee6d17a/',0,'iwp_log','',0),(5000,8,'2022-06-29 22:45:04','2022-06-29 22:45:04','','iwp_log_62bcd5f0781c6','','publish','closed','closed','','iwp_log_62bcd5f0781c6','','','2022-06-29 22:45:04','2022-06-29 22:45:04','',0,'https://www.drfields.com/iwp_log/iwp_log_62bcd5f0781c6/',0,'iwp_log','',0),(5001,8,'2022-06-29 22:45:11','2022-06-29 22:45:11','','iwp_log_62bcd5f7092f9','','publish','closed','closed','','iwp_log_62bcd5f7092f9','','','2022-06-29 22:45:11','2022-06-29 22:45:11','',0,'https://www.drfields.com/iwp_log/iwp_log_62bcd5f7092f9/',0,'iwp_log','',0),(5002,8,'2022-06-29 22:52:16','2022-06-29 22:52:16','','iwp_log_62bcd7a044664','','publish','closed','closed','','iwp_log_62bcd7a044664','','','2022-06-29 22:52:16','2022-06-29 22:52:16','',0,'https://www.drfields.com/iwp_log/iwp_log_62bcd7a044664/',0,'iwp_log','',0),(5003,8,'2022-06-29 22:53:29','2022-06-29 22:53:29','','iwp_log_62bcd7e984d4d','','publish','closed','closed','','iwp_log_62bcd7e984d4d','','','2022-06-29 22:53:29','2022-06-29 22:53:29','',0,'https://www.drfields.com/iwp_log/iwp_log_62bcd7e984d4d/',0,'iwp_log','',0),(5004,8,'2022-06-29 22:53:34','2022-06-29 22:53:34','','iwp_log_62bcd7eef1636','','publish','closed','closed','','iwp_log_62bcd7eef1636','','','2022-06-29 22:53:34','2022-06-29 22:53:34','',0,'https://www.drfields.com/iwp_log/iwp_log_62bcd7eef1636/',0,'iwp_log','',0),(5005,8,'2022-06-29 22:53:54','2022-06-29 22:53:54','','iwp_log_62bcd8023007a','','publish','closed','closed','','iwp_log_62bcd8023007a','','','2022-06-29 22:53:54','2022-06-29 22:53:54','',0,'https://www.drfields.com/iwp_log/iwp_log_62bcd8023007a/',0,'iwp_log','',0),(5006,8,'2022-06-29 22:55:21','2022-06-29 22:55:21','','iwp_log_62bcd859a2957','','publish','closed','closed','','iwp_log_62bcd859a2957','','','2022-06-29 22:55:21','2022-06-29 22:55:21','',0,'https://www.drfields.com/iwp_log/iwp_log_62bcd859a2957/',0,'iwp_log','',0),(5139,8,'2022-07-02 05:04:04','2022-07-02 05:04:04','Slider V02072022','Slider V02072022','Slider V02072022','inherit','closed','closed','','slider-v02072022','','','2022-07-02 05:04:04','2022-07-02 05:04:04','',0,'https://www.drfields.com/wp-content/uploads/2022/07/Slider-v02072022.png',0,'attachment','image/png',0),(5140,8,'2022-07-02 05:06:36','2022-07-02 05:06:36','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-v02072022.png\');\">\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/cal-chiro-sports-symposium/\">Join Peter A. Fields, MD, DC June 5th at 9am on Zoom for a Regenerative Orthopedics Lecture</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2023 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields </a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-07-02 05:06:36','2022-07-02 05:06:36','',2109,'https://www.drfields.com/?p=5140',0,'revision','',0),(5141,8,'2022-07-02 05:36:53','2022-07-02 05:36:53','Slider 2v02072022','Slider 2v02072022','Slider 2v02072022','inherit','closed','closed','','slider-2v02072022','','','2022-07-02 05:36:53','2022-07-02 05:36:53','',0,'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v02072022.png',0,'attachment','image/png',0),(5142,8,'2022-07-02 05:37:10','2022-07-02 05:37:10','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v02072022.png\');\">\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/cal-chiro-sports-symposium/\">Join Peter A. Fields, MD, DC June 5th at 9am on Zoom for a Regenerative Orthopedics Lecture</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2023 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields </a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-07-02 05:37:10','2022-07-02 05:37:10','',2109,'https://www.drfields.com/?p=5142',0,'revision','',0),(5143,9,'2022-07-02 18:14:02','2022-07-02 18:14:02','<h4>Dr. Fields will Lecture in Mexico City on July 9th about Stem Cells/PRP/Prolotherapy</h4>\n<img class=\"wp-image-5147 size-medium alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Copy-of-Mexico-City-Lecture-2-500x419.png\" alt=\"Copy Of Mexico City Lecture 2\" width=\"500\" height=\"419\" />\n\nPeter A. Fields, MD, DC will lecture at the 14th World Congress on Anti-Aging and Longevity Medicine in Mexico City, Mexico on July 9th.\n\nLecture time: <strong>11:00 AM</strong>\n\nEmail pcc@drfields.com for more information.\n<h4>Regenerative Medicine Teaching in Mexico</h4>\nWe\'re excited to teach more professionals about this effective treatment to fix joints and the spine without surgery. <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cells</a>, PRP, and Prolotherapy are all effective regenerative medicine treatments that help people with joint and spine pain to achieve both relief and repair.\n\nTo access the information for the conference you can <a href=\"http://www.medicina-antienvejecimiento.net/\">click</a> on the following link. <a href=\"https://urldefense.proofpoint.com/v2/url?u=http-3A__www.medicina-2Dantienvejecimiento.net_&amp;d=DwMCaQ&amp;c=WO-RGvefibhHBZq3fL85hQ&amp;r=1mlZdwzxLMndjoil0MO5evkLwBowWYcXVyCp4Vbxfds&amp;m=-Zcix8_Tm618JjCVm5ExeqsI0cYP75-OIrRKIfbDyJL_F3-gD7ZpIucCH6k9b3dQ&amp;s=HPDad0dRWasD0G4qNd1wGul0XoVhEbEukb3zY8ki5Go&amp;e=\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">www.medicina-antienvejecimiento.net/</a>\n\n[caption id=\"attachment_5146\" align=\"alignnone\" width=\"500\"]<img class=\"wp-image-5146 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/14th-World-Congress-on-Anti-Aging-and-Longevity-Medicine-500x239.png\" alt=\"14th World Congress On Anti Aging And Longevity Medicine\" width=\"500\" height=\"239\" /> <strong>     14th World Congress On Anti-Aging And Longevity Medicine</strong>[/caption]\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Dr. Fields to Lecture in Mexico City on July 9th','','inherit','closed','closed','','1471-autosave-v1','','','2022-07-02 18:14:02','2022-07-02 18:14:02','',1471,'https://www.drfields.com/?p=5143',0,'revision','',0),(5144,9,'2022-07-02 17:46:36','2022-07-02 17:46:36','Dr. Fields','Dr. Fields','Dr. Fields','inherit','closed','closed','','dr-fields-3','','','2022-07-02 17:46:36','2022-07-02 17:46:36','',1471,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields.jpg',0,'attachment','image/jpeg',0),(5145,9,'2022-07-02 17:46:53','2022-07-02 17:46:53','Fields In Mask','Fields In Mask','Fields In Mask','inherit','closed','closed','','fields-in-mask','','','2022-07-02 17:46:53','2022-07-02 17:46:53','',1471,'https://www.drfields.com/wp-content/uploads/2019/06/Fields-in-Mask.jpeg',0,'attachment','image/jpeg',0),(5146,9,'2022-07-02 17:48:43','2022-07-02 17:48:43','14th World Congress On Anti Aging And Longevity Medicine','14th World Congress On Anti Aging And Longevity Medicine','14th World Congress On Anti Aging And Longevity Medicine','inherit','closed','closed','','14th-world-congress-on-anti-aging-and-longevity-medicine','','','2022-07-02 17:48:43','2022-07-02 17:48:43','',1471,'https://www.drfields.com/wp-content/uploads/2019/06/14th-World-Congress-on-Anti-Aging-and-Longevity-Medicine.png',0,'attachment','image/png',0),(5147,9,'2022-07-02 17:49:10','2022-07-02 17:49:10','Copy Of Mexico City Lecture 2','Copy Of Mexico City Lecture 2','Copy Of Mexico City Lecture 2','inherit','closed','closed','','copy-of-mexico-city-lecture-2','','','2022-07-02 17:49:10','2022-07-02 17:49:10','',1471,'https://www.drfields.com/wp-content/uploads/2019/06/Copy-of-Mexico-City-Lecture-2.png',0,'attachment','image/png',0),(5148,9,'2022-07-02 17:58:13','2022-07-02 17:58:13','<h4>Dr. Fields will Lecture in Mexico City on July 9th about Stem Cells/PRP/Prolotherapy</h4>\r\n<img class=\"wp-image-5147 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Copy-of-Mexico-City-Lecture-2-500x419.png\" alt=\"Copy Of Mexico City Lecture 2\" width=\"500\" height=\"419\" />\r\n\r\nPeter A. Fields, MD, DC will be lecturing at the 14th World Congress on Anti-Aging and Longevity Medicine in Mexico City, Mexico on July 9th.\r\n\r\nWe\'re excited to teach more professionals about this effective treatment to fix joints and the spine without surgery.\r\n\r\nLecture time: <strong>11:00 AM</strong>\r\n\r\nEmail pcc@drfields.com for more information.\r\n<h4>Lecture in Mexico City, Mexico on July 9th</h4>\r\nWe\'re excited to teach more professionals about this effective treatment to fix joints and the spine without surgery. <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cells</a>, PRP, and Prolotherapy are all effective regenerative medicine treatments that help people with joint and spine pain to achieve both relief and repair.\r\n\r\n[caption id=\"attachment_5146\" align=\"alignnone\" width=\"500\"]<img class=\"wp-image-5146 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/14th-World-Congress-on-Anti-Aging-and-Longevity-Medicine-500x239.png\" alt=\"14th World Congress On Anti Aging And Longevity Medicine\" width=\"500\" height=\"239\" /> <strong>     14th World Congress On Anti-Aging And Longevity Medicine</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Dr. Fields to Lecture in Mexico City on July 9th','','inherit','closed','closed','','1471-revision-v1','','','2022-07-02 17:58:13','2022-07-02 17:58:13','',1471,'https://www.drfields.com/?p=5148',0,'revision','',0),(5149,9,'2022-07-02 18:04:57','2022-07-02 18:04:57','<h4>Dr. Fields will Lecture in Mexico City on July 9th about Stem Cells/PRP/Prolotherapy</h4>\r\n<img class=\"wp-image-5147 size-medium alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Copy-of-Mexico-City-Lecture-2-500x419.png\" alt=\"Copy Of Mexico City Lecture 2\" width=\"500\" height=\"419\" />\r\n\r\nPeter A. Fields, MD, DC will lecture at the 14th World Congress on Anti-Aging and Longevity Medicine in Mexico City, Mexico on July 9th.\r\n\r\nLecture time: <strong>11:00 AM</strong>\r\n\r\nEmail pcc@drfields.com for more information.\r\n<h4>Lecture in Mexico City, Mexico on July 9th</h4>\r\nWe\'re excited to teach more professionals about this effective treatment to fix joints and the spine without surgery. <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cells</a>, PRP, and Prolotherapy are all effective regenerative medicine treatments that help people with joint and spine pain to achieve both relief and repair.\r\n\r\n[caption id=\"attachment_5146\" align=\"alignnone\" width=\"500\"]<img class=\"wp-image-5146 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/14th-World-Congress-on-Anti-Aging-and-Longevity-Medicine-500x239.png\" alt=\"14th World Congress On Anti Aging And Longevity Medicine\" width=\"500\" height=\"239\" /> <strong>     14th World Congress On Anti-Aging And Longevity Medicine</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Dr. Fields to Lecture in Mexico City on July 9th','','inherit','closed','closed','','1471-revision-v1','','','2022-07-02 18:04:57','2022-07-02 18:04:57','',1471,'https://www.drfields.com/?p=5149',0,'revision','',0),(5150,9,'2022-07-02 18:06:19','2022-07-02 18:06:19','<h4>Dr. Fields will Lecture in Mexico City on July 9th about Stem Cells/PRP/Prolotherapy</h4>\r\n<img class=\"wp-image-5147 size-medium alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Copy-of-Mexico-City-Lecture-2-500x419.png\" alt=\"Copy Of Mexico City Lecture 2\" width=\"500\" height=\"419\" />\r\n\r\nPeter A. Fields, MD, DC will lecture at the 14th World Congress on Anti-Aging and Longevity Medicine in Mexico City, Mexico on July 9th.\r\n\r\nLecture time: <strong>11:00 AM</strong>\r\n\r\nEmail pcc@drfields.com for more information.\r\n<h4>Lecture in Mexico City, Mexico on July 9th</h4>\r\nWe\'re excited to teach more professionals about this effective treatment to fix joints and the spine without surgery. <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cells</a>, PRP, and Prolotherapy are all effective regenerative medicine treatments that help people with joint and spine pain to achieve both relief and repair.\r\n\r\nTo access the information for the conference you can click on the following link. <a href=\"https://urldefense.proofpoint.com/v2/url?u=http-3A__www.medicina-2Dantienvejecimiento.net_&amp;d=DwMCaQ&amp;c=WO-RGvefibhHBZq3fL85hQ&amp;r=1mlZdwzxLMndjoil0MO5evkLwBowWYcXVyCp4Vbxfds&amp;m=-Zcix8_Tm618JjCVm5ExeqsI0cYP75-OIrRKIfbDyJL_F3-gD7ZpIucCH6k9b3dQ&amp;s=HPDad0dRWasD0G4qNd1wGul0XoVhEbEukb3zY8ki5Go&amp;e=\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">www.medicina-antienvejecimiento.net/</a>\r\n\r\n[caption id=\"attachment_5146\" align=\"alignnone\" width=\"500\"]<img class=\"wp-image-5146 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/14th-World-Congress-on-Anti-Aging-and-Longevity-Medicine-500x239.png\" alt=\"14th World Congress On Anti Aging And Longevity Medicine\" width=\"500\" height=\"239\" /> <strong>     14th World Congress On Anti-Aging And Longevity Medicine</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Dr. Fields to Lecture in Mexico City on July 9th','','inherit','closed','closed','','1471-revision-v1','','','2022-07-02 18:06:19','2022-07-02 18:06:19','',1471,'https://www.drfields.com/?p=5150',0,'revision','',0),(5151,9,'2022-07-02 18:08:38','2022-07-02 18:08:38','<h4>Dr. Fields will Lecture in Mexico City on July 9th about Stem Cells/PRP/Prolotherapy</h4>\r\n<img class=\"wp-image-5147 size-medium alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Copy-of-Mexico-City-Lecture-2-500x419.png\" alt=\"Copy Of Mexico City Lecture 2\" width=\"500\" height=\"419\" />\r\n\r\nPeter A. Fields, MD, DC will lecture at the 14th World Congress on Anti-Aging and Longevity Medicine in Mexico City, Mexico on July 9th.\r\n\r\nLecture time: <strong>11:00 AM</strong>\r\n\r\nEmail pcc@drfields.com for more information.\r\n<h4>Regenerative Medicine Teaching in Mexico</h4>\r\nWe\'re excited to teach more professionals about this effective treatment to fix joints and the spine without surgery. <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cells</a>, PRP, and Prolotherapy are all effective regenerative medicine treatments that help people with joint and spine pain to achieve both relief and repair.\r\n\r\nTo access the information for the conference you can click on the following link. <a href=\"https://urldefense.proofpoint.com/v2/url?u=http-3A__www.medicina-2Dantienvejecimiento.net_&amp;d=DwMCaQ&amp;c=WO-RGvefibhHBZq3fL85hQ&amp;r=1mlZdwzxLMndjoil0MO5evkLwBowWYcXVyCp4Vbxfds&amp;m=-Zcix8_Tm618JjCVm5ExeqsI0cYP75-OIrRKIfbDyJL_F3-gD7ZpIucCH6k9b3dQ&amp;s=HPDad0dRWasD0G4qNd1wGul0XoVhEbEukb3zY8ki5Go&amp;e=\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">www.medicina-antienvejecimiento.net/</a>\r\n\r\n[caption id=\"attachment_5146\" align=\"alignnone\" width=\"500\"]<img class=\"wp-image-5146 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/14th-World-Congress-on-Anti-Aging-and-Longevity-Medicine-500x239.png\" alt=\"14th World Congress On Anti Aging And Longevity Medicine\" width=\"500\" height=\"239\" /> <strong>     14th World Congress On Anti-Aging And Longevity Medicine</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Dr. Fields to Lecture in Mexico City on July 9th','','inherit','closed','closed','','1471-revision-v1','','','2022-07-02 18:08:38','2022-07-02 18:08:38','',1471,'https://www.drfields.com/?p=5151',0,'revision','',0),(5152,9,'2022-07-02 18:14:32','2022-07-02 18:14:32','<h4>Dr. Fields will Lecture in Mexico City on July 9th about Stem Cells/PRP/Prolotherapy</h4>\r\n<img class=\"wp-image-5147 size-medium alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Copy-of-Mexico-City-Lecture-2-500x419.png\" alt=\"Copy Of Mexico City Lecture 2\" width=\"500\" height=\"419\" />\r\n\r\nPeter A. Fields, MD, DC will lecture at the 14th World Congress on Anti-Aging and Longevity Medicine in Mexico City, Mexico on July 9th.\r\n\r\nLecture time: <strong>11:00 AM</strong>\r\n\r\nEmail pcc@drfields.com for more information.\r\n<h4>Regenerative Medicine Teaching in Mexico</h4>\r\nWe\'re excited to teach more professionals about this effective treatment to fix joints and the spine without surgery. <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cells</a>, PRP, and Prolotherapy are all effective regenerative medicine treatments that help people with joint and spine pain to achieve both relief and repair.\r\n\r\nTo access the information for the conference you can <a href=\"http://www.medicina-antienvejecimiento.net/\">click</a> on the following link. <a href=\"https://urldefense.proofpoint.com/v2/url?u=http-3A__www.medicina-2Dantienvejecimiento.net_&amp;d=DwMCaQ&amp;c=WO-RGvefibhHBZq3fL85hQ&amp;r=1mlZdwzxLMndjoil0MO5evkLwBowWYcXVyCp4Vbxfds&amp;m=-Zcix8_Tm618JjCVm5ExeqsI0cYP75-OIrRKIfbDyJL_F3-gD7ZpIucCH6k9b3dQ&amp;s=HPDad0dRWasD0G4qNd1wGul0XoVhEbEukb3zY8ki5Go&amp;e=\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">www.medicina-antienvejecimiento.net/</a>\r\n\r\n[caption id=\"attachment_5146\" align=\"alignnone\" width=\"500\"]<img class=\"wp-image-5146 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/14th-World-Congress-on-Anti-Aging-and-Longevity-Medicine-500x239.png\" alt=\"14th World Congress On Anti Aging And Longevity Medicine\" width=\"500\" height=\"239\" /> <strong>     14th World Congress On Anti-Aging And Longevity Medicine</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Dr. Fields to Lecture in Mexico City on July 9th','','inherit','closed','closed','','1471-revision-v1','','','2022-07-02 18:14:32','2022-07-02 18:14:32','',1471,'https://www.drfields.com/?p=5152',0,'revision','',0),(5153,9,'2022-07-02 18:22:42','2022-07-02 18:22:42','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v02072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet classs and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2023 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields </a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-07-02 18:22:42','2022-07-02 18:22:42','',2109,'https://www.drfields.com/?p=5153',0,'revision','',0),(5154,9,'2022-07-02 18:23:08','2022-07-02 18:23:08','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v02072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2023 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields </a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-07-02 18:23:08','2022-07-02 18:23:08','',2109,'https://www.drfields.com/?p=5154',0,'revision','',0),(5155,8,'2022-07-05 03:44:10','2022-07-05 03:44:10','Slider 2v05072022','Slider 2v05072022','Slider 2v05072022','inherit','closed','closed','','slider-2v05072022','','','2022-07-05 03:44:10','2022-07-05 03:44:10','',0,'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png',0,'attachment','image/png',0);
INSERT INTO `wp_posts` VALUES (5156,8,'2022-07-05 03:45:08','2022-07-05 03:45:08','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n 	<li class=\"last\"><a title=\"Knee Tendonitis Treatment\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/\">Knee Tendonitis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2023 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields </a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-07-05 03:45:08','2022-07-05 03:45:08','',2109,'https://www.drfields.com/?p=5156',0,'revision','',0),(5157,8,'2022-07-07 06:00:48','2022-07-07 06:00:48','<h3><img class=\"wp-image-5158 alignright\" title=\"v\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/Meniscectomy.-Cureus.FB-Facebook-Post.png\" alt=\" Treating Knee Pain and Injuries with Regenerative Orthopedics\" width=\"300\" height=\"251\" />Treating Knee Pain and Injuries with Regenerative Orthopedics</h3>\r\nTreating knee pain is the most common condition we see at OrthoRegen®. When a knee injury occurs, many people seek an alternative to surgery. Regenerative Orthopedics is an effective non-surgical option for both symptom relief and repair. At OrthoRegen®, we’re leaders in the field of Regenerative Orthopedics and have seen thousands of patients overcome knee pain and injury.\r\n<h2>Do You Have Knee Problems?</h2>\r\nAre you suffering from knee pain due to a meniscus or ACL injury? Have you struggled with arthritis pain for way too long? Regenerative Orthopedics, including Stem Cells, PRP, and Prolotherapy, is the ideal treatment solution for all of these conditions.\r\n\r\nWhether your knee pain is the result of an acute injury, a fall, an accident, or pain that developed over time, Regenerative Orthopedics can help.\r\n<h2>The Knee Is Central to Everyday Life</h2>\r\nWe understand how crucial the knee is to everyday life. Of course it is, we need our knees just to walk. Knee function is at the center of life, and we all need and want our knees to function well! When they don’t, we are prevented from doing many of the activities we want and need to do!\r\n<h2>What About Treating Knee Pain Conventionally?</h2>\r\nMany conventional treatments, like pain medications and cortisone injections, only chase the symptoms. These treatments do not actually repair the problem. And some of them can do more harm than good. That’s why many people seek an alternative option.\r\n<h2>Is Surgery Necessary for Knee Pain?</h2>\r\nSurgery is oftentimes not necessary for those with knee pain. And it is important to keep in mind, that research has shown poor outcomes of some knee surgeries, especially for meniscus injuries. The medical journal Cureus says, “outcomes after an arthroscopic partial meniscectomy are no better than the outcomes after a sham/placebo surgery.” They also note that “regenerative medicine appears to be the way forward.”1\r\n\r\nWhy cut, trim, and remove a part of your knee joint, when it can be treated and repaired without surgery? Always seek out an alternative to surgery. Regenerative Orthopedics is often the solution.\r\n<h2>What Causes Knee Pain?</h2>\r\nFirst, we need to take a look at the anatomy of the knee. The knee begins at the lower end of the thigh bone (femur), which rotates on the shin’s upper end (tibia). The knee cap, or patella, slides in a groove on the end of the femur. In order to maintain the stability of the knee, there are large ligaments that attach the femur to the tibia. These ligaments are primary stabilizers.\r\n<h2>The Development of Knee Arthritis</h2>\r\nWhen those ligaments needed for stability become injured, the knee begins to move abnormally. With that abnormal movement, wear and tear begin to occur to the rest of the knee structures. If this abnormal joint motion goes unresolved, arthritis will develop.\r\n\r\nFor example, if you are experiencing minor pain, clicking, giving way, or ‘trick knee,’ you may be feeling the first symptoms of arthritis. You may recall the initial injury that started this cycle, especially if the injury happened weeks or months ago. Or maybe you have an old sports injury that you know started the process. But there may have even been an injury you don’t recall. Either way, the wear and tear from the abnormal joint motion is catching up to you and causing pain or symptoms. Arthritis can begin in people as early as thirty years of age. And this can progress for years before symptoms appear.\r\n<h2>Knee Pain Conditions</h2>\r\nArthritis is the most common cause of chronic knee pain. Additionally, there are many other conditions that cause knee pain. Various sports injuries, bursitis, tendonitis, degenerative joint disease, Runner’s Knee, and chondromalacia patellae are some of the reasons people seek help for knee pain. And as we said earlier, as years go by, and with wear and tear, the smooth and resilient cartilage on our long bones’ ends wears down, and we become faced with arthritic symptoms.\r\n\r\nRegenerative Orthopedics is a successful non-surgical solution for all of these knee pain conditions. Don’t wait. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love with improved knee function.\r\n\r\n1Bhan K. Meniscal Tears: Current Understanding, Diagnosis, and Management. Cureus. 2020;12(6):e8590.','Treating Knee Pain and Injuries with Regenerative Orthopedics','','publish','closed','open','','treating-knee-pain-and-injuries-with-regenerative-orthopedics','','','2022-07-11 01:25:09','2022-07-11 01:25:09','',0,'https://www.drfields.com/?p=5157',0,'post','',0),(5158,8,'2022-07-08 04:11:20','2022-07-08 04:11:20','Meniscectomy. Cureus.fb (facebook Post)','Meniscectomy. Cureus.fb (facebook Post)','Meniscectomy. Cureus.fb (facebook Post)','inherit','closed','closed','','meniscectomy-cureus-fb-facebook-post','','','2022-07-08 04:11:20','2022-07-08 04:11:20','',5157,'https://www.drfields.com/wp-content/uploads/2022/07/Meniscectomy.-Cureus.FB-Facebook-Post.png',0,'attachment','image/png',0),(5159,8,'2022-07-08 04:13:42','2022-07-08 04:13:42','<img class=\"wp-image-5158 alignright\" title=\"v\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/Meniscectomy.-Cureus.FB-Facebook-Post.png\" alt=\" Treating Knee Pain and Injuries with Regenerative Orthopedics\" width=\"300\" height=\"251\" />In our experience, the knee is the most commonly treated area with Regenerative Orthopedics. When a knee injury occurs, many people seek an alternative to surgery. Regenerative Orthopedics is an effective non-surgical option for both symptom relief and repair. At OrthoRegen®, we’re leaders in the field of Regenerative Orthopedics, and have seen thousands of patients overcome knee pain and injury.\r\n<h2>Do You Have Knee Pain?</h2>\r\nAre you suffering from knee pain due to a meniscus or ACL injury. Have you struggled with arthritis pain for way too long? Regenerative Orthopedics, including Stem Cells, PRP, and Prolotherapy, is the ideal treatment solution for all of these conditions.\r\n\r\nWhether your knee pain is the result of an acute injury, a fall, an accident, or pain that developed over time, Regenerative Orthopedics can help.\r\n<h2>The Knee Is Central to Everyday Life</h2>\r\nWe understand how crucial the knee is to every day life. Of course it is, we need our knees just to walk. Knee function is at the center of life, and we all need and want our knees to function well! When they don’t, we are prevented from doing many of the activities we want and need to do!\r\n<h2>What About Conventional Treatments for Knee Pain?</h2>\r\nMany conventional treatments, like pain medications and cortisone injections, only chase the symptoms. These treatments do not actually repair the problem. And some of them can do more harm than good. That’s why many people seek an alternative option.\r\n<h2>Is Surgery Necessary for Knee Pain?</h2>\r\nSurgery is oftentimes not necessary for those with knee pain. And it is important to keep in mind, that research has shown poor outcomes of some knee surgeries, especially for meniscus injuries. The medical journal Cureus says, “outomes after an arthroscopic partial meniscectomy are no better than the outcomes after a sham/placebo surgery.” They also note that “regenerative medicine appears to be the way forward.”1\r\n\r\nWhy cut, trim, and remove a part of your knee joint, when it can be treated and repaired without surgery? Always seek out an alternative to surgery. Regenerative Orthopedics is often the solution.\r\n<h2>What Causes Knee Pain?</h2>\r\nFirst, we need to take a look at the anatomy of the knee. The knee begins at the lower end of the thigh bone (femur), which rotates on the shin’s upper end (tibia). The knee cap, or patella, slides in a groove on the end of the femur. In order to maintain stability of the knee, there are large ligaments that attach the femur to the tibia. These ligaments are primary stabilizers.\r\n<h2>The Development of Knee Arthritis</h2>\r\nWhen those ligaments needed for stability become injured, the knee begins to move abnormally. With that abnormal movement, wear and tear begins to occur to the rest of the knee structures. If this abnormal joint motion goes unresolved, arthritis will develop.\r\n\r\nFor example, if you are experiencing minor pain, clicking, giving way, or ‘trick knee,’ you may be feeling the first symptoms of arthritis. You may recall the initial injury that started this cycle, especially if the injury happened weeks or months ago. Or maybe you have an old sports injury that you know started the process. But there may have even been an injury you don’t recall. Either way, the wear and tear from the abnormal joint motion is catching up to you and causing pain or symptoms. Arthritis can begin in people as early as thirty years of age. And this can progress for years before symptoms appear.\r\n<h2>Knee Pain Conditions</h2>\r\nArthritis is the most common cause of chronic knee pain. Additionally, there are many other conditions that cause knee pain. Various sports injuries, bursitis, tendonitis, degenerative joint disease, Runner’s Knee, and chondromalacia patellae are some of the reasons people seek help for knee pain. And as we said earlier, as years go by, and with wear and tear, the smooth and resilient cartilage on our long bones’ ends wears down, and we become faced with arthritic symptoms.\r\n\r\nRegenerative Orthopedics is a successful non-surgical solution for all of these knee pain conditions. Don’t wait. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love with improved knee function.\r\n\r\n1Bhan K. Meniscal Tears: Current Understanding, Diagnosis, and Management. Cureus. 2020;12(6):e8590.','Treating Knee Pain and Injuries with Regenerative Orthopedics','','inherit','closed','closed','','5157-revision-v1','','','2022-07-08 04:13:42','2022-07-08 04:13:42','',5157,'https://www.drfields.com/?p=5159',0,'revision','',0),(5161,8,'2022-07-08 04:44:27','2022-07-08 04:44:27','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li class=\"last\"><a title=\"Treating Knee Pain and Injuries with Regenerative Orthopedics\" href=\"/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics/\">Treating Knee Pain and Injuries with Regenerative Orthopedics</a></li>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	<li class=\"last\"><a title=\"How Arthritis Affects the Older Athlete\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-the-older-athlete/\">How Arthritis Affects the Older Athlete</a></li>\r\n </ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2023 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields </a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-07-08 04:44:27','2022-07-08 04:44:27','',2109,'https://www.drfields.com/?p=5161',0,'revision','',0),(5163,9,'2022-07-11 01:23:47','2022-07-11 01:23:47','<h3><img class=\"wp-image-5158 alignright\" title=\"v\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/Meniscectomy.-Cureus.FB-Facebook-Post.png\" alt=\" Treating Knee Pain and Injuries with Regenerative Orthopedics\" width=\"300\" height=\"251\" />Treating Knee Pain and Injuries with Regenerative Orthopedics</h3>\nTreating knee pain, in our experience, the knee is the most commonly treated area with Regenerative Orthopedics. When a knee injury occurs, many people seek an alternative to surgery. Regenerative Orthopedics is an effective non-surgical option for both symptom relief and repair. At OrthoRegen®, we’re leaders in the field of Regenerative Orthopedics and have seen thousands of patients overcome knee pain and injury.\n<h2>Do You Have Knee Problems?</h2>\nAre you suffering from knee pain due to a meniscus or ACL injury? Have you struggled with arthritis pain for way too long? Regenerative Orthopedics, including Stem Cells, PRP, and Prolotherapy, is the ideal treatment solution for all of these conditions.\n\nWhether your knee pain is the result of an acute injury, a fall, an accident, or pain that developed over time, Regenerative Orthopedics can help.\n<h2>The Knee Is Central to Everyday Life</h2>\nWe understand how crucial the knee is to everyday life. Of course it is, we need our knees just to walk. Knee function is at the center of life, and we all need and want our knees to function well! When they don’t, we are prevented from doing many of the activities we want and need to do!\n<h2>What About Treating Knee Pain Conventionally?</h2>\nMany conventional treatments, like pain medications and cortisone injections, only chase the symptoms. These treatments do not actually repair the problem. And some of them can do more harm than good. That’s why many people seek an alternative option.\n<h2>Is Surgery Necessary for Knee Pain?</h2>\nSurgery is oftentimes not necessary for those with knee pain. And it is important to keep in mind, that research has shown poor outcomes of some knee surgeries, especially for meniscus injuries. The medical journal Cureus says, “outcomes after an arthroscopic partial meniscectomy are no better than the outcomes after a sham/placebo surgery.” They also note that “regenerative medicine appears to be the way forward.”1\n\nWhy cut, trim, and remove a part of your knee joint, when it can be treated and repaired without surgery? Always seek out an alternative to surgery. Regenerative Orthopedics is often the solution.\n<h2>What Causes Knee Pain?</h2>\nFirst, we need to take a look at the anatomy of the knee. The knee begins at the lower end of the thigh bone (femur), which rotates on the shin’s upper end (tibia). The knee cap, or patella, slides in a groove on the end of the femur. In order to maintain the stability of the knee, there are large ligaments that attach the femur to the tibia. These ligaments are primary stabilizers.\n<h2>The Development of Knee Arthritis</h2>\nWhen those ligaments needed for stability become injured, the knee begins to move abnormally. With that abnormal movement, wear and tear begin to occur to the rest of the knee structures. If this abnormal joint motion goes unresolved, arthritis will develop.\n\nFor example, if you are experiencing minor pain, clicking, giving way, or ‘trick knee,’ you may be feeling the first symptoms of arthritis. You may recall the initial injury that started this cycle, especially if the injury happened weeks or months ago. Or maybe you have an old sports injury that you know started the process. But there may have even been an injury you don’t recall. Either way, the wear and tear from the abnormal joint motion is catching up to you and causing pain or symptoms. Arthritis can begin in people as early as thirty years of age. And this can progress for years before symptoms appear.\n<h2>Knee Pain Conditions</h2>\nArthritis is the most common cause of chronic knee pain. Additionally, there are many other conditions that cause knee pain. Various sports injuries, bursitis, tendonitis, degenerative joint disease, Runner’s Knee, and chondromalacia patellae are some of the reasons people seek help for knee pain. And as we said earlier, as years go by, and with wear and tear, the smooth and resilient cartilage on our long bones’ ends wears down, and we become faced with arthritic symptoms.\n\nRegenerative Orthopedics is a successful non-surgical solution for all of these knee pain conditions. Don’t wait. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love with improved knee function.\n\n1Bhan K. Meniscal Tears: Current Understanding, Diagnosis, and Management. Cureus. 2020;12(6):e8590.','Treating Knee Pain and Injuries with Regenerative Orthopedics','','inherit','closed','closed','','5157-autosave-v1','','','2022-07-11 01:23:47','2022-07-11 01:23:47','',5157,'https://www.drfields.com/?p=5163',0,'revision','',0),(5164,9,'2022-07-11 01:20:18','2022-07-11 01:20:18','<h3><img class=\"wp-image-5158 alignright\" title=\"v\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/Meniscectomy.-Cureus.FB-Facebook-Post.png\" alt=\" Treating Knee Pain and Injuries with Regenerative Orthopedics\" width=\"300\" height=\"251\" />Treating Knee Pain and Injuries with Regenerative Orthopedics</h3>\r\nIn our experience, the knee is the most commonly treated area with Regenerative Orthopedics. When a knee injury occurs, many people seek an alternative to surgery. Regenerative Orthopedics is an effective non-surgical option for both symptom relief and repair. At OrthoRegen®, we’re leaders in the field of Regenerative Orthopedics and have seen thousands of patients overcome knee pain and injury.\r\n<h2>Do You Have Knee Symptoms?</h2>\r\nAre you suffering from knee pain due to a meniscus or ACL injury? Have you struggled with arthritis pain for way too long? Regenerative Orthopedics, including Stem Cells, PRP, and Prolotherapy, is the ideal treatment solution for all of these conditions.\r\n\r\nWhether your knee pain is the result of an acute injury, a fall, an accident, or pain that developed over time, Regenerative Orthopedics can help.\r\n<h2>The Knee Is Central to Everyday Life</h2>\r\nWe understand how crucial the knee is to everyday life. Of course it is, we need our knees just to walk. Knee function is at the center of life, and we all need and want our knees to function well! When they don’t, we are prevented from doing many of the activities we want and need to do!\r\n<h2>What About Conventional Treatments for Knee Pain?</h2>\r\nMany conventional treatments, like pain medications and cortisone injections, only chase the symptoms. These treatments do not actually repair the problem. And some of them can do more harm than good. That’s why many people seek an alternative option.\r\n<h2>Is Surgery Necessary for Knee Pain?</h2>\r\nSurgery is oftentimes not necessary for those with knee pain. And it is important to keep in mind, that research has shown poor outcomes of some knee surgeries, especially for meniscus injuries. The medical journal Cureus says, “outcomes after an arthroscopic partial meniscectomy are no better than the outcomes after a sham/placebo surgery.” They also note that “regenerative medicine appears to be the way forward.”1\r\n\r\nWhy cut, trim, and remove a part of your knee joint, when it can be treated and repaired without surgery? Always seek out an alternative to surgery. Regenerative Orthopedics is often the solution.\r\n<h2>What Causes Knee Pain?</h2>\r\nFirst, we need to take a look at the anatomy of the knee. The knee begins at the lower end of the thigh bone (femur), which rotates on the shin’s upper end (tibia). The knee cap, or patella, slides in a groove on the end of the femur. In order to maintain the stability of the knee, there are large ligaments that attach the femur to the tibia. These ligaments are primary stabilizers.\r\n<h2>The Development of Knee Arthritis</h2>\r\nWhen those ligaments needed for stability become injured, the knee begins to move abnormally. With that abnormal movement, wear and tear begin to occur to the rest of the knee structures. If this abnormal joint motion goes unresolved, arthritis will develop.\r\n\r\nFor example, if you are experiencing minor pain, clicking, giving way, or ‘trick knee,’ you may be feeling the first symptoms of arthritis. You may recall the initial injury that started this cycle, especially if the injury happened weeks or months ago. Or maybe you have an old sports injury that you know started the process. But there may have even been an injury you don’t recall. Either way, the wear and tear from the abnormal joint motion is catching up to you and causing pain or symptoms. Arthritis can begin in people as early as thirty years of age. And this can progress for years before symptoms appear.\r\n<h2>Knee Pain Conditions</h2>\r\nArthritis is the most common cause of chronic knee pain. Additionally, there are many other conditions that cause knee pain. Various sports injuries, bursitis, tendonitis, degenerative joint disease, Runner’s Knee, and chondromalacia patellae are some of the reasons people seek help for knee pain. And as we said earlier, as years go by, and with wear and tear, the smooth and resilient cartilage on our long bones’ ends wears down, and we become faced with arthritic symptoms.\r\n\r\nRegenerative Orthopedics is a successful non-surgical solution for all of these knee pain conditions. Don’t wait. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love with improved knee function.\r\n\r\n1Bhan K. Meniscal Tears: Current Understanding, Diagnosis, and Management. Cureus. 2020;12(6):e8590.','Treating Knee Pain and Injuries with Regenerative Orthopedics','','inherit','closed','closed','','5157-revision-v1','','','2022-07-11 01:20:18','2022-07-11 01:20:18','',5157,'https://www.drfields.com/?p=5164',0,'revision','',0),(5165,9,'2022-07-11 01:20:32','2022-07-11 01:20:32','<h3><img class=\"wp-image-5158 alignright\" title=\"v\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/Meniscectomy.-Cureus.FB-Facebook-Post.png\" alt=\" Treating Knee Pain and Injuries with Regenerative Orthopedics\" width=\"300\" height=\"251\" />Treating Knee Pain and Injuries with Regenerative Orthopedics</h3>\r\nIn our experience, the knee is the most commonly treated area with Regenerative Orthopedics. When a knee injury occurs, many people seek an alternative to surgery. Regenerative Orthopedics is an effective non-surgical option for both symptom relief and repair. At OrthoRegen®, we’re leaders in the field of Regenerative Orthopedics and have seen thousands of patients overcome knee pain and injury.\r\n<h2>Do You Have Knee Problems?</h2>\r\nAre you suffering from knee pain due to a meniscus or ACL injury? Have you struggled with arthritis pain for way too long? Regenerative Orthopedics, including Stem Cells, PRP, and Prolotherapy, is the ideal treatment solution for all of these conditions.\r\n\r\nWhether your knee pain is the result of an acute injury, a fall, an accident, or pain that developed over time, Regenerative Orthopedics can help.\r\n<h2>The Knee Is Central to Everyday Life</h2>\r\nWe understand how crucial the knee is to everyday life. Of course it is, we need our knees just to walk. Knee function is at the center of life, and we all need and want our knees to function well! When they don’t, we are prevented from doing many of the activities we want and need to do!\r\n<h2>What About Conventional Treatments for Knee Pain?</h2>\r\nMany conventional treatments, like pain medications and cortisone injections, only chase the symptoms. These treatments do not actually repair the problem. And some of them can do more harm than good. That’s why many people seek an alternative option.\r\n<h2>Is Surgery Necessary for Knee Pain?</h2>\r\nSurgery is oftentimes not necessary for those with knee pain. And it is important to keep in mind, that research has shown poor outcomes of some knee surgeries, especially for meniscus injuries. The medical journal Cureus says, “outcomes after an arthroscopic partial meniscectomy are no better than the outcomes after a sham/placebo surgery.” They also note that “regenerative medicine appears to be the way forward.”1\r\n\r\nWhy cut, trim, and remove a part of your knee joint, when it can be treated and repaired without surgery? Always seek out an alternative to surgery. Regenerative Orthopedics is often the solution.\r\n<h2>What Causes Knee Pain?</h2>\r\nFirst, we need to take a look at the anatomy of the knee. The knee begins at the lower end of the thigh bone (femur), which rotates on the shin’s upper end (tibia). The knee cap, or patella, slides in a groove on the end of the femur. In order to maintain the stability of the knee, there are large ligaments that attach the femur to the tibia. These ligaments are primary stabilizers.\r\n<h2>The Development of Knee Arthritis</h2>\r\nWhen those ligaments needed for stability become injured, the knee begins to move abnormally. With that abnormal movement, wear and tear begin to occur to the rest of the knee structures. If this abnormal joint motion goes unresolved, arthritis will develop.\r\n\r\nFor example, if you are experiencing minor pain, clicking, giving way, or ‘trick knee,’ you may be feeling the first symptoms of arthritis. You may recall the initial injury that started this cycle, especially if the injury happened weeks or months ago. Or maybe you have an old sports injury that you know started the process. But there may have even been an injury you don’t recall. Either way, the wear and tear from the abnormal joint motion is catching up to you and causing pain or symptoms. Arthritis can begin in people as early as thirty years of age. And this can progress for years before symptoms appear.\r\n<h2>Knee Pain Conditions</h2>\r\nArthritis is the most common cause of chronic knee pain. Additionally, there are many other conditions that cause knee pain. Various sports injuries, bursitis, tendonitis, degenerative joint disease, Runner’s Knee, and chondromalacia patellae are some of the reasons people seek help for knee pain. And as we said earlier, as years go by, and with wear and tear, the smooth and resilient cartilage on our long bones’ ends wears down, and we become faced with arthritic symptoms.\r\n\r\nRegenerative Orthopedics is a successful non-surgical solution for all of these knee pain conditions. Don’t wait. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love with improved knee function.\r\n\r\n1Bhan K. Meniscal Tears: Current Understanding, Diagnosis, and Management. Cureus. 2020;12(6):e8590.','Treating Knee Pain and Injuries with Regenerative Orthopedics','','inherit','closed','closed','','5157-revision-v1','','','2022-07-11 01:20:32','2022-07-11 01:20:32','',5157,'https://www.drfields.com/?p=5165',0,'revision','',0),(5166,9,'2022-07-11 01:22:43','2022-07-11 01:22:43','<h3><img class=\"wp-image-5158 alignright\" title=\"v\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/Meniscectomy.-Cureus.FB-Facebook-Post.png\" alt=\" Treating Knee Pain and Injuries with Regenerative Orthopedics\" width=\"300\" height=\"251\" />Treating Knee Pain and Injuries with Regenerative Orthopedics</h3>\r\nIn our experience, the knee is the most commonly treated area with Regenerative Orthopedics. When a knee injury occurs, many people seek an alternative to surgery. Regenerative Orthopedics is an effective non-surgical option for both symptom relief and repair. At OrthoRegen®, we’re leaders in the field of Regenerative Orthopedics and have seen thousands of patients overcome knee pain and injury.\r\n<h2>Do You Have Knee Problems?</h2>\r\nAre you suffering from knee pain due to a meniscus or ACL injury? Have you struggled with arthritis pain for way too long? Regenerative Orthopedics, including Stem Cells, PRP, and Prolotherapy, is the ideal treatment solution for all of these conditions.\r\n\r\nWhether your knee pain is the result of an acute injury, a fall, an accident, or pain that developed over time, Regenerative Orthopedics can help.\r\n<h2>The Knee Is Central to Everyday Life</h2>\r\nWe understand how crucial the knee is to everyday life. Of course it is, we need our knees just to walk. Knee function is at the center of life, and we all need and want our knees to function well! When they don’t, we are prevented from doing many of the activities we want and need to do!\r\n<h2>What About Treating Knee Pain Conventionally?</h2>\r\nMany conventional treatments, like pain medications and cortisone injections, only chase the symptoms. These treatments do not actually repair the problem. And some of them can do more harm than good. That’s why many people seek an alternative option.\r\n<h2>Is Surgery Necessary for Knee Pain?</h2>\r\nSurgery is oftentimes not necessary for those with knee pain. And it is important to keep in mind, that research has shown poor outcomes of some knee surgeries, especially for meniscus injuries. The medical journal Cureus says, “outcomes after an arthroscopic partial meniscectomy are no better than the outcomes after a sham/placebo surgery.” They also note that “regenerative medicine appears to be the way forward.”1\r\n\r\nWhy cut, trim, and remove a part of your knee joint, when it can be treated and repaired without surgery? Always seek out an alternative to surgery. Regenerative Orthopedics is often the solution.\r\n<h2>What Causes Knee Pain?</h2>\r\nFirst, we need to take a look at the anatomy of the knee. The knee begins at the lower end of the thigh bone (femur), which rotates on the shin’s upper end (tibia). The knee cap, or patella, slides in a groove on the end of the femur. In order to maintain the stability of the knee, there are large ligaments that attach the femur to the tibia. These ligaments are primary stabilizers.\r\n<h2>The Development of Knee Arthritis</h2>\r\nWhen those ligaments needed for stability become injured, the knee begins to move abnormally. With that abnormal movement, wear and tear begin to occur to the rest of the knee structures. If this abnormal joint motion goes unresolved, arthritis will develop.\r\n\r\nFor example, if you are experiencing minor pain, clicking, giving way, or ‘trick knee,’ you may be feeling the first symptoms of arthritis. You may recall the initial injury that started this cycle, especially if the injury happened weeks or months ago. Or maybe you have an old sports injury that you know started the process. But there may have even been an injury you don’t recall. Either way, the wear and tear from the abnormal joint motion is catching up to you and causing pain or symptoms. Arthritis can begin in people as early as thirty years of age. And this can progress for years before symptoms appear.\r\n<h2>Knee Pain Conditions</h2>\r\nArthritis is the most common cause of chronic knee pain. Additionally, there are many other conditions that cause knee pain. Various sports injuries, bursitis, tendonitis, degenerative joint disease, Runner’s Knee, and chondromalacia patellae are some of the reasons people seek help for knee pain. And as we said earlier, as years go by, and with wear and tear, the smooth and resilient cartilage on our long bones’ ends wears down, and we become faced with arthritic symptoms.\r\n\r\nRegenerative Orthopedics is a successful non-surgical solution for all of these knee pain conditions. Don’t wait. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love with improved knee function.\r\n\r\n1Bhan K. Meniscal Tears: Current Understanding, Diagnosis, and Management. Cureus. 2020;12(6):e8590.','Treating Knee Pain and Injuries with Regenerative Orthopedics','','inherit','closed','closed','','5157-revision-v1','','','2022-07-11 01:22:43','2022-07-11 01:22:43','',5157,'https://www.drfields.com/?p=5166',0,'revision','',0),(5167,9,'2022-07-11 01:24:37','2022-07-11 01:24:37','<h3><img class=\"wp-image-5158 alignright\" title=\"v\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/Meniscectomy.-Cureus.FB-Facebook-Post.png\" alt=\" Treating Knee Pain and Injuries with Regenerative Orthopedics\" width=\"300\" height=\"251\" />Treating Knee Pain and Injuries with Regenerative Orthopedics</h3>\r\nTreating knee pain, in our experience, is the most common condition we see at OrthoRegen®. When a knee injury occurs, many people seek an alternative to surgery. Regenerative Orthopedics is an effective non-surgical option for both symptom relief and repair. At OrthoRegen®, we’re leaders in the field of Regenerative Orthopedics and have seen thousands of patients overcome knee pain and injury.\r\n<h2>Do You Have Knee Problems?</h2>\r\nAre you suffering from knee pain due to a meniscus or ACL injury? Have you struggled with arthritis pain for way too long? Regenerative Orthopedics, including Stem Cells, PRP, and Prolotherapy, is the ideal treatment solution for all of these conditions.\r\n\r\nWhether your knee pain is the result of an acute injury, a fall, an accident, or pain that developed over time, Regenerative Orthopedics can help.\r\n<h2>The Knee Is Central to Everyday Life</h2>\r\nWe understand how crucial the knee is to everyday life. Of course it is, we need our knees just to walk. Knee function is at the center of life, and we all need and want our knees to function well! When they don’t, we are prevented from doing many of the activities we want and need to do!\r\n<h2>What About Treating Knee Pain Conventionally?</h2>\r\nMany conventional treatments, like pain medications and cortisone injections, only chase the symptoms. These treatments do not actually repair the problem. And some of them can do more harm than good. That’s why many people seek an alternative option.\r\n<h2>Is Surgery Necessary for Knee Pain?</h2>\r\nSurgery is oftentimes not necessary for those with knee pain. And it is important to keep in mind, that research has shown poor outcomes of some knee surgeries, especially for meniscus injuries. The medical journal Cureus says, “outcomes after an arthroscopic partial meniscectomy are no better than the outcomes after a sham/placebo surgery.” They also note that “regenerative medicine appears to be the way forward.”1\r\n\r\nWhy cut, trim, and remove a part of your knee joint, when it can be treated and repaired without surgery? Always seek out an alternative to surgery. Regenerative Orthopedics is often the solution.\r\n<h2>What Causes Knee Pain?</h2>\r\nFirst, we need to take a look at the anatomy of the knee. The knee begins at the lower end of the thigh bone (femur), which rotates on the shin’s upper end (tibia). The knee cap, or patella, slides in a groove on the end of the femur. In order to maintain the stability of the knee, there are large ligaments that attach the femur to the tibia. These ligaments are primary stabilizers.\r\n<h2>The Development of Knee Arthritis</h2>\r\nWhen those ligaments needed for stability become injured, the knee begins to move abnormally. With that abnormal movement, wear and tear begin to occur to the rest of the knee structures. If this abnormal joint motion goes unresolved, arthritis will develop.\r\n\r\nFor example, if you are experiencing minor pain, clicking, giving way, or ‘trick knee,’ you may be feeling the first symptoms of arthritis. You may recall the initial injury that started this cycle, especially if the injury happened weeks or months ago. Or maybe you have an old sports injury that you know started the process. But there may have even been an injury you don’t recall. Either way, the wear and tear from the abnormal joint motion is catching up to you and causing pain or symptoms. Arthritis can begin in people as early as thirty years of age. And this can progress for years before symptoms appear.\r\n<h2>Knee Pain Conditions</h2>\r\nArthritis is the most common cause of chronic knee pain. Additionally, there are many other conditions that cause knee pain. Various sports injuries, bursitis, tendonitis, degenerative joint disease, Runner’s Knee, and chondromalacia patellae are some of the reasons people seek help for knee pain. And as we said earlier, as years go by, and with wear and tear, the smooth and resilient cartilage on our long bones’ ends wears down, and we become faced with arthritic symptoms.\r\n\r\nRegenerative Orthopedics is a successful non-surgical solution for all of these knee pain conditions. Don’t wait. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love with improved knee function.\r\n\r\n1Bhan K. Meniscal Tears: Current Understanding, Diagnosis, and Management. Cureus. 2020;12(6):e8590.','Treating Knee Pain and Injuries with Regenerative Orthopedics','','inherit','closed','closed','','5157-revision-v1','','','2022-07-11 01:24:37','2022-07-11 01:24:37','',5157,'https://www.drfields.com/?p=5167',0,'revision','',0),(5168,9,'2022-07-11 01:25:09','2022-07-11 01:25:09','<h3><img class=\"wp-image-5158 alignright\" title=\"v\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/Meniscectomy.-Cureus.FB-Facebook-Post.png\" alt=\" Treating Knee Pain and Injuries with Regenerative Orthopedics\" width=\"300\" height=\"251\" />Treating Knee Pain and Injuries with Regenerative Orthopedics</h3>\r\nTreating knee pain is the most common condition we see at OrthoRegen®. When a knee injury occurs, many people seek an alternative to surgery. Regenerative Orthopedics is an effective non-surgical option for both symptom relief and repair. At OrthoRegen®, we’re leaders in the field of Regenerative Orthopedics and have seen thousands of patients overcome knee pain and injury.\r\n<h2>Do You Have Knee Problems?</h2>\r\nAre you suffering from knee pain due to a meniscus or ACL injury? Have you struggled with arthritis pain for way too long? Regenerative Orthopedics, including Stem Cells, PRP, and Prolotherapy, is the ideal treatment solution for all of these conditions.\r\n\r\nWhether your knee pain is the result of an acute injury, a fall, an accident, or pain that developed over time, Regenerative Orthopedics can help.\r\n<h2>The Knee Is Central to Everyday Life</h2>\r\nWe understand how crucial the knee is to everyday life. Of course it is, we need our knees just to walk. Knee function is at the center of life, and we all need and want our knees to function well! When they don’t, we are prevented from doing many of the activities we want and need to do!\r\n<h2>What About Treating Knee Pain Conventionally?</h2>\r\nMany conventional treatments, like pain medications and cortisone injections, only chase the symptoms. These treatments do not actually repair the problem. And some of them can do more harm than good. That’s why many people seek an alternative option.\r\n<h2>Is Surgery Necessary for Knee Pain?</h2>\r\nSurgery is oftentimes not necessary for those with knee pain. And it is important to keep in mind, that research has shown poor outcomes of some knee surgeries, especially for meniscus injuries. The medical journal Cureus says, “outcomes after an arthroscopic partial meniscectomy are no better than the outcomes after a sham/placebo surgery.” They also note that “regenerative medicine appears to be the way forward.”1\r\n\r\nWhy cut, trim, and remove a part of your knee joint, when it can be treated and repaired without surgery? Always seek out an alternative to surgery. Regenerative Orthopedics is often the solution.\r\n<h2>What Causes Knee Pain?</h2>\r\nFirst, we need to take a look at the anatomy of the knee. The knee begins at the lower end of the thigh bone (femur), which rotates on the shin’s upper end (tibia). The knee cap, or patella, slides in a groove on the end of the femur. In order to maintain the stability of the knee, there are large ligaments that attach the femur to the tibia. These ligaments are primary stabilizers.\r\n<h2>The Development of Knee Arthritis</h2>\r\nWhen those ligaments needed for stability become injured, the knee begins to move abnormally. With that abnormal movement, wear and tear begin to occur to the rest of the knee structures. If this abnormal joint motion goes unresolved, arthritis will develop.\r\n\r\nFor example, if you are experiencing minor pain, clicking, giving way, or ‘trick knee,’ you may be feeling the first symptoms of arthritis. You may recall the initial injury that started this cycle, especially if the injury happened weeks or months ago. Or maybe you have an old sports injury that you know started the process. But there may have even been an injury you don’t recall. Either way, the wear and tear from the abnormal joint motion is catching up to you and causing pain or symptoms. Arthritis can begin in people as early as thirty years of age. And this can progress for years before symptoms appear.\r\n<h2>Knee Pain Conditions</h2>\r\nArthritis is the most common cause of chronic knee pain. Additionally, there are many other conditions that cause knee pain. Various sports injuries, bursitis, tendonitis, degenerative joint disease, Runner’s Knee, and chondromalacia patellae are some of the reasons people seek help for knee pain. And as we said earlier, as years go by, and with wear and tear, the smooth and resilient cartilage on our long bones’ ends wears down, and we become faced with arthritic symptoms.\r\n\r\nRegenerative Orthopedics is a successful non-surgical solution for all of these knee pain conditions. Don’t wait. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love with improved knee function.\r\n\r\n1Bhan K. Meniscal Tears: Current Understanding, Diagnosis, and Management. Cureus. 2020;12(6):e8590.','Treating Knee Pain and Injuries with Regenerative Orthopedics','','inherit','closed','closed','','5157-revision-v1','','','2022-07-11 01:25:09','2022-07-11 01:25:09','',5157,'https://www.drfields.com/?p=5168',0,'revision','',0),(5169,8,'2022-07-16 03:42:02','2022-07-16 03:42:02','<h2><img class=\"alignright wp-image-5171\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/Back-Pain.Hauser.FB_-500x419.png\" alt=\"Nagging Back Pain\" width=\"300\" height=\"251\" />Nagging Back Pain</h2>\r\nCan’t get a break from nagging back pain? We understand! Many people with back pain are desperate to find relief. Unfortunately, that desperation leads some to get caught in a cycle of chasing symptoms with medication and steroid injections.\r\n\r\nBut these common treatments often do not solve the problem. Why is that? Well, they aren’t able to actually repair the problem. They are, in many cases, just a bandaid.\r\n<h2>Back Pain Is Quite Prevalent</h2>\r\nBack pain is among the top causes of disability in the US. That means lots of people live life suffering from this condition. Does this sound like you? Does your back hurt after sitting or standing too long or after certain activities? Of course, you want relief!  Fortunately, there is an answer.  Plus, it does not require surgery! Regenerative Orthopedics is an effective non-surgical option to resolve back pain. And yes, we did say non-surgical!\r\n<h2>But why don’t the common treatments make the nagging back pain disappear?</h2>\r\nYou very likely have tried various treatments in an effort to get relief. But the pain doesn’t stop no matter what you try. Often, the pain remains because the underlying causative factor has not been resolved.\r\n\r\nYou’ve tried pain medications, but the pain comes back since the problem is really just covered up. And although cortisone or steroid injections may offer short-term relief, they don’t promote repair either. The root problem needs to be addressed in order for the repair to occur. Otherwise, back pain will continue to interfere with life.\r\n<h2>What is the problem then, and how do you fix it?</h2>\r\nVery often, the underlying problem is one of instability. What does that mean? To begin with, bony structures in the body are held together by soft tissue. That soft tissue includes structures such as ligaments. Ligaments connect bone to bone and are a very important stabilizing structure in joints.\r\n\r\nThe vertebra of the spine also has ligaments that provide stability. Therefore, back pain can occur when these structures become weakened and unstable, either through injury or wear and tear.\r\n\r\nChiropractors can provide excellent relief in the majority of nagging back pain cases. However, when back pain becomes more and more frequent and the adjustments do not hold, then ligament and/or tendon injuries may be at the root of this back pain problem.\r\n\r\nHow is this instability fixed? The weakened and overstretched ligaments can be strengthened and tightened! What’s the best treatment to do that? Regenerative Orthopedics treatments are the best for this condition.  Regenerative Orthopedics includes Stem Cells, PRP, and Prolotherapy. And they are great at repairing soft tissue. These treatments have been shown for many years to be the therapy of choice to strengthen soft tissue structures.\r\n<h2>Does the Research Back that Up?</h2>\r\nA 2021 article in the \"Journal of Back and Musculoskeletal Rehabilitation\" reviewed several studies that demonstrated Prolotherapy and PRP\'s beneficial results in improving, repairing, and resolving back pain, even in cases of failed back surgery. Rather than the opinion of just one study, this study reviewed multiple studies in order to reach the conclusion that “regenerative treatment to injured ligaments has the potential and ability to strengthen the ligament and relieve back pain.”\r\n<h2>Regenerative Orthopedics for Nagging Back Pain</h2>\r\nRegenerative Orthopedics strengthens the ligaments and their connecting attachments, making the whole area stronger and more stable while alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication.<strong> </strong>\r\n\r\nIf you are looking for relief or to avoid back surgery, Regenerative Orthopedics is a treatment you should seek out. At OrthoRegen, we have helped those with back conditions such as degenerative disc disease, bulging discs, sciatica, and many more.\r\n\r\nAre you in a pain-chasing cycle and looking to finally find relief and repair. Please give us a call at (310)453-1234. We’d love to help you eliminate your back pain and symptoms.\r\n\r\n<strong>Reference</strong>\r\n\r\nHauser RA, Matias D, Woznica D, Rawlings B, Woldin BA. Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review. Journal of Back and Musculoskeletal Rehabilitation. 2021(Preprint):1-2.','Nagging Back Pain','','publish','closed','open','','nagging-back-pain','','','2022-07-21 00:57:41','2022-07-21 00:57:41','',0,'https://www.drfields.com/?p=5169',0,'post','',0),(5170,8,'2022-07-16 03:42:02','2022-07-16 03:42:02','Can’t get a break from nagging back pain? We understand! Many people with back pain are desperate to find relief. Unfortunately, that desperation leads some to get caught in a cycle of chasing symptoms with medication and steroid injections. But these common treatments often do not solve the problem. Why is that? Well, they aren’t able to actually repair the problem. They are, in many cases, just a bandaid.\r\n<h2>Back Pain Is Quite Prevalent</h2>\r\nBack pain is among the top causes of disability in the US. That means lots of people live life suffering with this condition. Does this sound like you? Does your back hurt after sitting or standing too long, or after certain activities. Of course you want relief!  Fortunately, there is an answer.  Plus, it does not require surgery! Regenerative Orthopedics is an effective non-surgical option to resolve back pain. And yes, we did say non-surgical!\r\n<h2>But why aren’t the common treatments making the nagging back pain go away?</h2>\r\nYou very likely have tried various treatments in an effort to get relief. But the pain doesn’t stop no matter what you try. Oftentimes, the reason the pain remains is because the underlying causative factor has not been resolved.\r\n\r\nYou’ve tried pain medications, but the pain comes back, since the problem is really just covered up. And although cortisone or steroid injections may offer short-term relief, they don’t promote repair either. The root problem needs to be addressed in order for repair to occur. Otherwise, back pain will continue to interfere with life.\r\n<h2>What is the problem then, and how do you fix it?</h2>\r\nVery often, the underlying problem is one of instability. What does that mean? To begin with, bony structures in the body are held together by soft tissue. That soft tissue includes structures such as ligaments. Ligaments connect bone to bone and are a very important stabilizing structure in joints.\r\n\r\nThe vertebra of the spine also have ligaments that provide stability. Therefore, when these structures become weakened and unstable, either through injury or wear and tear, back pain can occur.\r\n\r\nChiropractors can provide excellent relief in the majority of nagging back pain cases. However, when back pain becomes more and more frequent and the adjustments do not hold, then ligament and/or tendon injuries may be at the root of this back pain problem.\r\n\r\nHow is this instability fixed? The weakened and overstretched ligaments can be strengthened and tightened! What’s the best treatment to do that? Regenerative Orthopedics treatments are the best for this condition.  Regenerative Orthopedics includes Stem Cells, PRP, and Prolotherapy. And they are great at repairing soft tissue. These treatments have been shown for many years to be the therapy of choice to strengthen soft tissue structures.\r\n<h2><em>Does the Research Back that Up?</em></h2>\r\nA 2021 article in the \"<em>Journal of Back and Musculoskeletal Rehabilitation\" reviewed a number of studies that demonstrated the beneficial results of Prolotherapy and PRP in improving, repairing, and resolving back pain, even in cases of failed back surgery. Rather than the opinion of just one study, this study reviewed multiple studies in order to reach the conclusion that “regenerative treatment to injured ligaments has the potential and ability to strengthen </em>\r\n\r\n<em>the ligament and relieve back pain.”1</em><em> </em>\r\n<h2>Regenerative Orthopedics for Nagging Back Pain</h2>\r\nRegenerative Orthopedics strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication.<strong> </strong>\r\n\r\nIf you are looking for relief or to avoid back surgery, Regenerative Orthopedics is a treatment you should seek out. At OrthoRegen, we have helped those with back conditions such as degenerative disc disease, bulging discs, sciatica and many more.\r\n\r\nAre you in a pain chasing cycle and looking to finally find relief and repair. Please give us a call at (310)453-1234. We’d love to help you eliminate your back pain and symptoms.\r\n\r\n<strong>Reference</strong>\r\n\r\n1Hauser RA, Matias D, Woznica D, Rawlings B, Woldin BA. Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review. Journal of Back and Musculoskeletal Rehabilitation. 2021(Preprint):1-2.','Nagging Back Pain','','inherit','closed','closed','','5169-revision-v1','','','2022-07-16 03:42:02','2022-07-16 03:42:02','',5169,'https://www.drfields.com/?p=5170',0,'revision','',0),(5171,8,'2022-07-16 03:45:23','2022-07-16 03:45:23','','Nagging Back Pain','','inherit','closed','closed','','back-pain-hauser-fb','','','2022-07-16 03:45:35','2022-07-16 03:45:35','',5169,'https://www.drfields.com/wp-content/uploads/2022/07/Back-Pain.Hauser.FB_.png',0,'attachment','image/png',0),(5172,8,'2022-07-16 03:45:53','2022-07-16 03:45:53','<img class=\"alignright size-medium wp-image-5171\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/Back-Pain.Hauser.FB_-500x419.png\" alt=\"Nagging Back Pain\" width=\"500\" height=\"419\" data-wp-editing=\"1\" />Can’t get a break from nagging back pain? We understand! Many people with back pain are desperate to find relief. Unfortunately, that desperation leads some to get caught in a cycle of chasing symptoms with medication and steroid injections. But these common treatments often do not solve the problem. Why is that? Well, they aren’t able to actually repair the problem. They are, in many cases, just a bandaid.\n<h2>Back Pain Is Quite Prevalent</h2>\nBack pain is among the top causes of disability in the US. That means lots of people live life suffering with this condition. Does this sound like you? Does your back hurt after sitting or standing too long, or after certain activities. Of course you want relief!  Fortunately, there is an answer.  Plus, it does not require surgery! Regenerative Orthopedics is an effective non-surgical option to resolve back pain. And yes, we did say non-surgical!\n<h2>But why aren’t the common treatments making the nagging back pain go away?</h2>\nYou very likely have tried various treatments in an effort to get relief. But the pain doesn’t stop no matter what you try. Oftentimes, the reason the pain remains is because the underlying causative factor has not been resolved.\n\nYou’ve tried pain medications, but the pain comes back, since the problem is really just covered up. And although cortisone or steroid injections may offer short-term relief, they don’t promote repair either. The root problem needs to be addressed in order for repair to occur. Otherwise, back pain will continue to interfere with life.\n<h2>What is the problem then, and how do you fix it?</h2>\nVery often, the underlying problem is one of instability. What does that mean? To begin with, bony structures in the body are held together by soft tissue. That soft tissue includes structures such as ligaments. Ligaments connect bone to bone and are a very important stabilizing structure in joints.\n\nThe vertebra of the spine also have ligaments that provide stability. Therefore, when these structures become weakened and unstable, either through injury or wear and tear, back pain can occur.\n\nChiropractors can provide excellent relief in the majority of nagging back pain cases. However, when back pain becomes more and more frequent and the adjustments do not hold, then ligament and/or tendon injuries may be at the root of this back pain problem.\n\nHow is this instability fixed? The weakened and overstretched ligaments can be strengthened and tightened! What’s the best treatment to do that? Regenerative Orthopedics treatments are the best for this condition.  Regenerative Orthopedics includes Stem Cells, PRP, and Prolotherapy. And they are great at repairing soft tissue. These treatments have been shown for many years to be the therapy of choice to strengthen soft tissue structures.\n<h2><em>Does the Research Back that Up?</em></h2>\nA 2021 article in the \"<em>Journal of Back and Musculoskeletal Rehabilitation\" reviewed a number of studies that demonstrated the beneficial results of Prolotherapy and PRP in improving, repairing, and resolving back pain, even in cases of failed back surgery. Rather than the opinion of just one study, this study reviewed multiple studies in order to reach the conclusion that “regenerative treatment to injured ligaments has the potential and ability to strengthen </em>\n\n<em>the ligament and relieve back pain.”1</em><em> </em>\n<h2>Regenerative Orthopedics for Nagging Back Pain</h2>\nRegenerative Orthopedics strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication.<strong> </strong>\n\nIf you are looking for relief or to avoid back surgery, Regenerative Orthopedics is a treatment you should seek out. At OrthoRegen, we have helped those with back conditions such as degenerative disc disease, bulging discs, sciatica and many more.\n\nAre you in a pain chasing cycle and looking to finally find relief and repair. Please give us a call at (310)453-1234. We’d love to help you eliminate your back pain and symptoms.\n\n<strong>Reference</strong>\n\n1Hauser RA, Matias D, Woznica D, Rawlings B, Woldin BA. Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review. Journal of Back and Musculoskeletal Rehabilitation. 2021(Preprint):1-2.','Nagging Back Pain','','inherit','closed','closed','','5169-autosave-v1','','','2022-07-16 03:45:53','2022-07-16 03:45:53','',5169,'https://www.drfields.com/?p=5172',0,'revision','',0),(5173,8,'2022-07-16 03:46:03','2022-07-16 03:46:03','<img class=\"alignright wp-image-5171\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/Back-Pain.Hauser.FB_-500x419.png\" alt=\"Nagging Back Pain\" width=\"300\" height=\"251\" />Can’t get a break from nagging back pain? We understand! Many people with back pain are desperate to find relief. Unfortunately, that desperation leads some to get caught in a cycle of chasing symptoms with medication and steroid injections. But these common treatments often do not solve the problem. Why is that? Well, they aren’t able to actually repair the problem. They are, in many cases, just a bandaid.\r\n<h2>Back Pain Is Quite Prevalent</h2>\r\nBack pain is among the top causes of disability in the US. That means lots of people live life suffering with this condition. Does this sound like you? Does your back hurt after sitting or standing too long, or after certain activities. Of course you want relief!  Fortunately, there is an answer.  Plus, it does not require surgery! Regenerative Orthopedics is an effective non-surgical option to resolve back pain. And yes, we did say non-surgical!\r\n<h2>But why aren’t the common treatments making the nagging back pain go away?</h2>\r\nYou very likely have tried various treatments in an effort to get relief. But the pain doesn’t stop no matter what you try. Oftentimes, the reason the pain remains is because the underlying causative factor has not been resolved.\r\n\r\nYou’ve tried pain medications, but the pain comes back, since the problem is really just covered up. And although cortisone or steroid injections may offer short-term relief, they don’t promote repair either. The root problem needs to be addressed in order for repair to occur. Otherwise, back pain will continue to interfere with life.\r\n<h2>What is the problem then, and how do you fix it?</h2>\r\nVery often, the underlying problem is one of instability. What does that mean? To begin with, bony structures in the body are held together by soft tissue. That soft tissue includes structures such as ligaments. Ligaments connect bone to bone and are a very important stabilizing structure in joints.\r\n\r\nThe vertebra of the spine also have ligaments that provide stability. Therefore, when these structures become weakened and unstable, either through injury or wear and tear, back pain can occur.\r\n\r\nChiropractors can provide excellent relief in the majority of nagging back pain cases. However, when back pain becomes more and more frequent and the adjustments do not hold, then ligament and/or tendon injuries may be at the root of this back pain problem.\r\n\r\nHow is this instability fixed? The weakened and overstretched ligaments can be strengthened and tightened! What’s the best treatment to do that? Regenerative Orthopedics treatments are the best for this condition.  Regenerative Orthopedics includes Stem Cells, PRP, and Prolotherapy. And they are great at repairing soft tissue. These treatments have been shown for many years to be the therapy of choice to strengthen soft tissue structures.\r\n<h2><em>Does the Research Back that Up?</em></h2>\r\nA 2021 article in the \"<em>Journal of Back and Musculoskeletal Rehabilitation\" reviewed a number of studies that demonstrated the beneficial results of Prolotherapy and PRP in improving, repairing, and resolving back pain, even in cases of failed back surgery. Rather than the opinion of just one study, this study reviewed multiple studies in order to reach the conclusion that “regenerative treatment to injured ligaments has the potential and ability to strengthen </em>\r\n\r\n<em>the ligament and relieve back pain.”1</em><em> </em>\r\n<h2>Regenerative Orthopedics for Nagging Back Pain</h2>\r\nRegenerative Orthopedics strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication.<strong> </strong>\r\n\r\nIf you are looking for relief or to avoid back surgery, Regenerative Orthopedics is a treatment you should seek out. At OrthoRegen, we have helped those with back conditions such as degenerative disc disease, bulging discs, sciatica and many more.\r\n\r\nAre you in a pain chasing cycle and looking to finally find relief and repair. Please give us a call at (310)453-1234. We’d love to help you eliminate your back pain and symptoms.\r\n\r\n<strong>Reference</strong>\r\n\r\n1Hauser RA, Matias D, Woznica D, Rawlings B, Woldin BA. Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review. Journal of Back and Musculoskeletal Rehabilitation. 2021(Preprint):1-2.','Nagging Back Pain','','inherit','closed','closed','','5169-revision-v1','','','2022-07-16 03:46:03','2022-07-16 03:46:03','',5169,'https://www.drfields.com/?p=5173',0,'revision','',0),(5174,8,'2022-07-16 03:48:16','2022-07-16 03:48:16','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Treating Knee Pain and Injuries with Regenerative Orthopedics\" href=\"/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics/\">Treating Knee Pain and Injuries with Regenerative Orthopedics</a></li>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2023 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields </a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-07-16 03:48:16','2022-07-16 03:48:16','',2109,'https://www.drfields.com/?p=5174',0,'revision','',0),(5176,8,'2022-07-18 05:45:12','2022-07-18 05:45:12','<img class=\"alignright wp-image-5171\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/Back-Pain.Hauser.FB_-500x419.png\" alt=\"Nagging Back Pain\" width=\"300\" height=\"251\" />Can’t get a break from nagging back pain? We understand! Many people with back pain are desperate to find relief. Unfortunately, that desperation leads some to get caught in a cycle of chasing symptoms with medication and steroid injections. But these common treatments often do not solve the problem. Why is that? Well, they aren’t able to actually repair the problem. They are, in many cases, just a bandaid.\r\n<h2>Back Pain Is Quite Prevalent</h2>\r\nBack pain is among the top causes of disability in the US. That means lots of people live life suffering with this condition. Does this sound like you? Does your back hurt after sitting or standing too long, or after certain activities. Of course you want relief!  Fortunately, there is an answer.  Plus, it does not require surgery! Regenerative Orthopedics is an effective non-surgical option to resolve back pain. And yes, we did say non-surgical!\r\n<h2>But why aren’t the common treatments making the nagging back pain go away?</h2>\r\nYou very likely have tried various treatments in an effort to get relief. But the pain doesn’t stop no matter what you try. Oftentimes, the reason the pain remains is because the underlying causative factor has not been resolved.\r\n\r\nYou’ve tried pain medications, but the pain comes back, since the problem is really just covered up. And although cortisone or steroid injections may offer short-term relief, they don’t promote repair either. The root problem needs to be addressed in order for repair to occur. Otherwise, back pain will continue to interfere with life.\r\n<h2>What is the problem then, and how do you fix it?</h2>\r\nVery often, the underlying problem is one of instability. What does that mean? To begin with, bony structures in the body are held together by soft tissue. That soft tissue includes structures such as ligaments. Ligaments connect bone to bone and are a very important stabilizing structure in joints.\r\n\r\nThe vertebra of the spine also have ligaments that provide stability. Therefore, when these structures become weakened and unstable, either through injury or wear and tear, back pain can occur.\r\n\r\nChiropractors can provide excellent relief in the majority of nagging back pain cases. However, when back pain becomes more and more frequent and the adjustments do not hold, then ligament and/or tendon injuries may be at the root of this back pain problem.\r\n\r\nHow is this instability fixed? The weakened and overstretched ligaments can be strengthened and tightened! What’s the best treatment to do that? Regenerative Orthopedics treatments are the best for this condition.  Regenerative Orthopedics includes Stem Cells, PRP, and Prolotherapy. And they are great at repairing soft tissue. These treatments have been shown for many years to be the therapy of choice to strengthen soft tissue structures.\r\n<h2>Does the Research Back that Up?</h2>\r\nA 2021 article in the \"Journal of Back and Musculoskeletal Rehabilitation\" reviewed a number of studies that demonstrated the beneficial results of Prolotherapy and PRP in improving, repairing, and resolving back pain, even in cases of failed back surgery. Rather than the opinion of just one study, this study reviewed multiple studies in order to reach the conclusion that “regenerative treatment to injured ligaments has the potential and ability to strengthen the ligament and relieve back pain.”\r\n<h2>Regenerative Orthopedics for Nagging Back Pain</h2>\r\nRegenerative Orthopedics strengthens the ligaments and their connecting attachments, making the whole area stronger, more stable, and alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication.<strong> </strong>\r\n\r\nIf you are looking for relief or to avoid back surgery, Regenerative Orthopedics is a treatment you should seek out. At OrthoRegen, we have helped those with back conditions such as degenerative disc disease, bulging discs, sciatica and many more.\r\n\r\nAre you in a pain chasing cycle and looking to finally find relief and repair. Please give us a call at (310)453-1234. We’d love to help you eliminate your back pain and symptoms.\r\n\r\n<strong>Reference</strong>\r\n\r\nHauser RA, Matias D, Woznica D, Rawlings B, Woldin BA. Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review. Journal of Back and Musculoskeletal Rehabilitation. 2021(Preprint):1-2.','Nagging Back Pain','','inherit','closed','closed','','5169-revision-v1','','','2022-07-18 05:45:12','2022-07-18 05:45:12','',5169,'https://www.drfields.com/?p=5176',0,'revision','',0),(5178,9,'2022-07-21 00:53:49','2022-07-21 00:53:49','<h2><img class=\"alignright wp-image-5171\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/Back-Pain.Hauser.FB_-500x419.png\" alt=\"Nagging Back Pain\" width=\"300\" height=\"251\" />Nagging Back Pain</h2>\nCan’t get a break from nagging back pain? We understand! Many people with back pain are desperate to find relief. Unfortunately, that desperation leads some to get caught in a cycle of chasing symptoms with medication and steroid injections.\n\nBut these common treatments often do not solve the problem. Why is that? Well, they aren’t able to actually repair the problem. They are, in many cases, just a bandaid.\n<h2>Back Pain Is Quite Prevalent</h2>\nBack pain is among the top causes of disability in the US. That means lots of people live life suffering from this condition. Does this sound like you? Does your back hurt after sitting or standing too long or after certain activities? Of course, you want relief!  Fortunately, there is an answer.  Plus, it does not require surgery! Regenerative Orthopedics is an effective non-surgical option to resolve back pain. And yes, we did say non-surgical!\n<h2>But why don’t the common treatments make the nagging back pain disappear?</h2>\nYou very likely have tried various treatments in an effort to get relief. But the pain doesn’t stop no matter what you try. Often, the pain remains because the underlying causative factor has not been resolved.\n\nYou’ve tried pain medications, but the pain comes back since the problem is really just covered up. And although cortisone or steroid injections may offer short-term relief, they don’t promote repair either. The root problem needs to be addressed in order for the repair to occur. Otherwise, back pain will continue to interfere with life.\n<h2>What is the problem then, and how do you fix it?</h2>\nVery often, the underlying problem is one of instability. What does that mean? To begin with, bony structures in the body are held together by soft tissue. That soft tissue includes structures such as ligaments. Ligaments connect bone to bone and are a very important stabilizing structure in joints.\n\nThe vertebra of the spine also has ligaments that provide stability. Therefore, back pain can occur when these structures become weakened and unstable, either through injury or wear and tear.\n\nChiropractors can provide excellent relief in the majority of nagging back pain cases. However, when back pain becomes more and more frequent and the adjustments do not hold, then ligament and/or tendon injuries may be at the root of this back pain problem.\n\nHow is this instability fixed? The weakened and overstretched ligaments can be strengthened and tightened! What’s the best treatment to do that? Regenerative Orthopedics treatments are the best for this condition.  Regenerative Orthopedics includes Stem Cells, PRP, and Prolotherapy. And they are great at repairing soft tissue. These treatments have been shown for many years to be the therapy of choice to strengthen soft tissue structures.\n<h2>Does the Research Back that Up?</h2>\nA 2021 article in the \"Journal of Back and Musculoskeletal Rehabilitation\" reviewed several studies that demonstrated Prolotherapy and PRP\'s beneficial results in improving, repairing, and resolving back pain, even in cases of failed back surgery. Rather than the opinion of just one study, this study reviewed multiple studies in order to reach the conclusion that “regenerative treatment to injured ligaments has the potential and ability to strengthen the ligament and relieve back pain.”\n<h2>Regenerative Orthopedics for Nagging Back Pain</h2>\nRegenerative Orthopedics strengthens the ligaments and their connecting attachments, making the whole area stronger and more stable while alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication.<strong> </strong>\n\nIf you are looking for relief or to avoid back surgery, Regenerative Orthopedics is a treatment you should seek out. At OrthoRegen, we have helped those with back conditions such as degenerative disc disease, bulging discs, sciatica, and many more.\n\nAre you in a pain-chasing cycle and looking to finally find relief and repair. Please give us a call at (310)453-1234. We’d love to help you eliminate your back pain and symptoms.\n\n<strong>Reference</strong>\n\nHauser RA, Matias D, Woznica D, Rawlings B, Woldin BA. Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review. Journal of Back and Musculoskeletal Rehabilitation. 2021(Preprint):1-2.','Nagging Back Pain','','inherit','closed','closed','','5169-autosave-v1','','','2022-07-21 00:53:49','2022-07-21 00:53:49','',5169,'https://www.drfields.com/?p=5178',0,'revision','',0),(5179,9,'2022-07-21 00:56:07','2022-07-21 00:56:07','<h2><img class=\"alignright wp-image-5171\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/Back-Pain.Hauser.FB_-500x419.png\" alt=\"Nagging Back Pain\" width=\"300\" height=\"251\" />Nagging Back Pain</h2>\r\nCan’t get a break from nagging back pain? We understand! Many people with back pain are desperate to find relief. Unfortunately, that desperation leads some to get caught in a cycle of chasing symptoms with medication and steroid injections.\r\n\r\nBut these common treatments often do not solve the problem. Why is that? Well, they aren’t able to actually repair the problem. They are, in many cases, just a bandaid.\r\n<h2>Back Pain Is Quite Prevalent</h2>\r\nBack pain is among the top causes of disability in the US. That means lots of people live life suffering from this condition. Does this sound like you? Does your back hurt after sitting or standing too long or after certain activities? Of course, you want relief!  Fortunately, there is an answer.  Plus, it does not require surgery! Regenerative Orthopedics is an effective non-surgical option to resolve back pain. And yes, we did say non-surgical!\r\n<h2>But why don’t the common treatments make the nagging back pain disappear?</h2>\r\nYou very likely have tried various treatments in an effort to get relief. But the pain doesn’t stop no matter what you try. Often, the pain remains because the underlying causative factor has not been resolved.\r\n\r\nYou’ve tried pain medications, but the pain comes back since the problem is really just covered up. And although cortisone or steroid injections may offer short-term relief, they don’t promote repair either. The root problem needs to be addressed in order for the repair to occur. Otherwise, back pain will continue to interfere with life.\r\n<h2>What is the problem then, and how do you fix it?</h2>\r\nVery often, the underlying problem is one of instability. What does that mean? To begin with, bony structures in the body are held together by soft tissue. That soft tissue includes structures such as ligaments. Ligaments connect bone to bone and are a very important stabilizing structure in joints.\r\n\r\nThe vertebra of the spine also has ligaments that provide stability. Therefore, back pain can occur when these structures become weakened and unstable, either through injury or wear and tear.\r\n\r\nChiropractors can provide excellent relief in the majority of nagging back pain cases. However, when back pain becomes more and more frequent and the adjustments do not hold, then ligament and/or tendon injuries may be at the root of this back pain problem.\r\n\r\nHow is this instability fixed? The weakened and overstretched ligaments can be strengthened and tightened! What’s the best treatment to do that? Regenerative Orthopedics treatments are the best for this condition.  Regenerative Orthopedics includes Stem Cells, PRP, and Prolotherapy. And they are great at repairing soft tissue. These treatments have been shown for many years to be the therapy of choice to strengthen soft tissue structures.\r\n<h2>Does the Research Back that Up?</h2>\r\nA 2021 article in the \"Journal of Back and Musculoskeletal Rehabilitation\" reviewed several studies that demonstrated Prolotherapy and PRP\'s beneficial results in improving, repairing, and resolving back pain, even in cases of failed back surgery. Rather than the opinion of just one study, this study reviewed multiple studies in order to reach the conclusion that “regenerative treatment to injured ligaments has the potential and ability to strengthen the ligament and relieve back pain.”\r\n<h2>Regenerative Orthopedics for Nagging Back Pain</h2>\r\nRegenerative Orthopedics strengthens the ligaments and their connecting attachments, making the whole area stronger and more stable while alleviating the pain. Treatment to the back results in a high rate of improvement, with increased functional abilities, a return to desired activities and exercise, and a reduction and usually the elimination of the need for pain medication.<strong> </strong>\r\n\r\nIf you are looking for relief or to avoid back surgery, Regenerative Orthopedics is a treatment you should seek out. At OrthoRegen, we have helped those with back conditions such as degenerative disc disease, bulging discs, sciatica, and many more.\r\n\r\nAre you in a pain-chasing cycle and looking to finally find relief and repair. Please give us a call at (310)453-1234. We’d love to help you eliminate your back pain and symptoms.\r\n\r\n<strong>Reference</strong>\r\n\r\nHauser RA, Matias D, Woznica D, Rawlings B, Woldin BA. Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review. Journal of Back and Musculoskeletal Rehabilitation. 2021(Preprint):1-2.','Nagging Back Pain','','inherit','closed','closed','','5169-revision-v1','','','2022-07-21 00:56:07','2022-07-21 00:56:07','',5169,'https://www.drfields.com/?p=5179',0,'revision','',0),(5180,8,'2022-07-26 06:00:06','2022-07-26 06:00:06','<h3><img class=\"alignright wp-image-5181\" title=\"Try Regenerative Treatments for Your Hip Pain or Injury\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/regen.tissue-healing-500x375.jpeg\" alt=\"Regen.tissue HealingTry Regenerative Treatments for Your Hip Pain or Injury\" width=\"300\" height=\"225\" />Hip Pain or Injury?</h3>\r\nRegenerative treatments offer an effective non-surgical answer for those with hip pain or injury. If you are dealing with hip pain from arthritis, labral tears, bursitis, IT band syndrome, or another hip condition, Regenerative Orthopedics is a treatment alternative you should look into. Many common hip pain treatments provide only temporary relief because they do not treat the root cause. At OrthoRegen®, the non-surgical options we offer address the root cause.\r\n<h2>What Is the Root Cause of Many Cases of Hip Pain?</h2>\r\nOftentimes, the underlying cause of hip pain is instability due to ligament and/or tendon laxity. The instability occurs after some type of injury to these soft tissue structures of the joint. You may recall the actual injury, such as a sports injury, a fall, or an accident. It may also come from wear and tear over the years. And if the injury was strong enough to cause a tear to the hip labrum, then it is quite possible that there are also co-injuries to the ligaments and/or tendons of the hip.\r\n<h2>How Does Instability Affect the Hip Joint?</h2>\r\nMany painful hip conditions, including arthritis, begin with damage to the surrounding soft tissue, such as the ligaments. And until the instability is addressed, the joint degeneration will continue. That is because the instability generates abnormal joint motion.\r\n\r\nBut how do the instability and the “abnormal joint motion” affect the joint? You see, ligaments join bone to bone. They provide a good portion of the stability in the hip joint. Tendons also supply stability. When these soft tissue structures are injured, they become overstretched, and the joint moves around more. Stress is then placed on other structures of the joint, which causes damage to those other structures, and eventually wears them out.\r\n\r\nIf you try to picture a loose hinge in a cabinet door and consider how the loose door begins to move abnormally and then will hit at different spots on the door, you can get a better idea of what occurs during hip instability.\r\n<h2>Can the Instability Be Fixed?</h2>\r\nJoint instability due to ligament injury can be repaired with Regenerative Orthopedics, which includes Prolotherapy, PRP, and Stem Cells.\r\n\r\nSure, there are other treatments for hip pain, such as cortisone injections, but these injections only cover up the problem. They are not reparative. Not only that, but cortisone also boosts degeneration. That means the problem is only worsened with cortisone. Treatment is needed that will repair and regenerate the joint. That’s where Regenerative Orthopedics comes in.\r\n\r\nRegenerative Orthopedics target the weakened ligaments and tendons that cause instability in the hip joint. But will the pain be addressed? Weakened ligaments actually send referral pain down the legs and buttocks. Therefore, this referral pain can also be addressed once the ligaments are strengthened with regenerative treatment.\r\n<h2>Regenerative Orthopedics for Hip Pain and Injuries</h2>\r\nRegenerative Orthopedics can comprehensively target the treatment of weakened ligaments and other soft tissue and safely eliminate hip pain and offer a vital alternative to hip surgery. These regenerative treatments stimulate the natural repair of the supportive ligaments and tendons of the hip joint and promote labrum and cartilage regeneration.\r\n\r\nStudies show that Regenerative Orthopedics is an excellent option for pain relief and repair of many hip conditions. Plus, if you are looking to avoid hip surgery, these treatments are effective alternatives to surgery. In advanced cases of degeneration, PRP or Stem Cells may be recommended.\r\n\r\nIf you are experiencing hip pain, or if hip surgery has been recommended, seek a non-surgical alternative such as Regenerative Orthopedics. Our team at OrthoRegen® would be happy to serve you.','Try Regenerative Treatments for Your Hip Pain or Injury','','publish','closed','open','','try-regenerative-treatments-for-your-hip-pain-or-injury','','','2022-07-29 17:10:48','2022-07-29 17:10:48','',0,'https://www.drfields.com/?p=5180',0,'post','',0),(5181,8,'2022-07-21 03:51:03','2022-07-21 03:51:03','Regen.tissue Healing','Regen.tissue Healing','Regen.tissue Healing','inherit','closed','closed','','regen-tissue-healing','','','2022-07-21 03:51:03','2022-07-21 03:51:03','',5180,'https://www.drfields.com/wp-content/uploads/2022/07/regen.tissue-healing.jpeg',0,'attachment','image/jpeg',0),(5182,8,'2022-07-21 03:54:44','2022-07-21 03:54:44','<img class=\"alignright wp-image-5181\" title=\"Try Regenerative Treatments for Your Hip Pain or Injury\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/regen.tissue-healing-500x375.jpeg\" alt=\"Regen.tissue HealingTry Regenerative Treatments for Your Hip Pain or Injury\" width=\"300\" height=\"225\" />Regenerative treatments offer an effective non-surgical answer for those with hip pain. If you are dealing with hip pain from arthritis, labral tears, bursitis, IT band syndrome, or another hip condition, Regenerative Orthopedics is a treatment alternative you should look in to. Many of the common treatments for hip pain provide only temporary relief because they do not treat the root cause. At OrthoRegen®, the non-surgical options we offer do address the root cause.\r\n<h2>What Is the Root Cause of Many Cases of Hip Pain?</h2>\r\nOftentimes, the underlying cause of hip pain is instability due to ligament and/or tendon laxity. The instability occurs after some type of injury to these soft tissue structures of the joint. You may recall the actual injury, such as a sports injury, a fall, or an accident. It may also come from wear and tear over the years. And if the injury was strong enough to cause a tear to the hip labrum, then it is quite possible that there are also co-injuries to the ligaments and/or tendons of the hip.\r\n<h2>How Does Instability Affect the Hip Joint?</h2>\r\nMany painful hip conditions, including arthritis, begin with damage to the surrounding soft tissue, such as the ligaments. And until the instability is addressed, the joint degeneration will continue. That is because the instability generates abnormal joint motion.\r\n\r\nBut how does the instability and the “abnormal joint motion” affect the joint? You see, ligaments join bone to bone. They provide a good portion of the stability in the hip joint. Tendons also supply stability. When these soft tissue structures are injured, they become overstretched, and the joint moves around more. Stress is then placed on other structures of the joint, which causes damage to those other structures, and eventually wears them out.\r\n\r\nIf you try to picture a loose hinge in a cabinet door, and consider how the loose door begins to move abnormally and then will hit at different spots on the door, you can get a better idea of what occurs during hip instability.\r\n<h2>Can the Instability Be Fixed?</h2>\r\nJoint instability due to ligament injury can be repaired with Regenerative Orthopedics, which includes Prolotherapy, PRP, and Stem Cells.\r\n\r\nSure, there are other treatments for hip pain such as cortisone injections, but these injections only cover up the problem. They are not reparative. Not only that, but cortisone also boosts degeneration. That means, the problem is only worsened with cortisone. Treatment is needed that will repair and regenerate the joint. That’s where Regenerative Orthopedics comes in.\r\n\r\nRegenerative Orthopedics target the weakened ligaments and tendons that cause the instability in the hip joint. But will the pain be addressed? Weakened ligaments actually send referral pain down the legs and buttocks. Therefore, once the ligaments are strengthened with regenerative treatment, this referral pain can also be addressed.\r\n<h2>Regenerative Orthopedics for Hip Pain and Injuries</h2>\r\nRegenerative Orthopedics can comprehensively target treatment of weakened ligaments and other soft tissue and safely eliminate hip pain and offer a vital alternative to hip surgery. These regenerative treatments stimulate natural repair of the supportive ligaments and tendons of the hip joint, and promote labrum and cartilage regeneration.\r\n\r\nStudies show that Regenerative Orthopedics is an excellent option for pain relief and repair of many hip conditions. Plus, if you are looking to avoid hip surgery, these treatments are effective alternatives to surgery. In advanced cases of degeneration, PRP or Stem Cells may be recommended.\r\n\r\nIf you are experiencing hip pain, or if hip surgery has been recommended, seek a non-surgical alternative such as Regenerative Orthopedics. Our team at OrthoRegen® would be happy to serve you.','Try Regenerative Treatments for Your Hip Pain or Injury','','inherit','closed','closed','','5180-revision-v1','','','2022-07-21 03:54:44','2022-07-21 03:54:44','',5180,'https://www.drfields.com/?p=5182',0,'revision','',0),(5183,8,'2022-07-21 04:00:18','2022-07-21 04:00:18','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/\">Try Regenerative Treatments for Your Hip Pain or Injury</a></li>\r\n 	<li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Treating Knee Pain and Injuries with Regenerative Orthopedics\" href=\"/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics/\">Treating Knee Pain and Injuries with Regenerative Orthopedics</a></li>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a style=\"font-family: inherit; font-size: inherit; font-weight: inherit;\" title=\"2020 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields\" href=\"https://www.acarehabcouncil.org/chiropractic-rehab-symposium#!event-register/2020/3/13/2020-annual-symposium\" target=\"_blank\" rel=\"noopener noreferrer\">2023 REHAB SYMPOSIUM - Regenerative Orthopedics with Dr. Peter Fields </a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-07-21 04:00:18','2022-07-21 04:00:18','',2109,'https://www.drfields.com/?p=5183',0,'revision','',0),(5184,9,'2022-07-25 01:21:38','2022-07-25 01:21:38','<h1>Report of My Kilimanjaro Climb (late by two years!)</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Hiking to 11,400 ft</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-25 01:21:38','2022-07-25 01:21:38','',2208,'https://www.drfields.com/?p=5184',0,'revision','',0),(5185,8,'2022-07-25 03:35:25','2022-07-25 03:35:25','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/03/2020-REHAB-SYMPOSIUM-Slider-11.MAR_-1.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields MD, DC</span>\r\n<span class=\"header_text_second\">Guest speaker at the American Chiropractic Association Rehab Council meeting</span>\r\n<span class=\"header_text_third\">March 15, 2020 in Phoenix, AZ</span>\r\n<a class=\"btn-more\" title=\"Learn More\" href=\"https://www.acarehabcouncil.org/peter-fields\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/\">Try Regenerative Treatments for Your Hip Pain or Injury</a></li>\r\n 	<li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Treating Knee Pain and Injuries with Regenerative Orthopedics\" href=\"/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics/\">Treating Knee Pain and Injuries with Regenerative Orthopedics</a></li>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-07-25 03:35:25','2022-07-25 03:35:25','',2109,'https://www.drfields.com/?p=5185',0,'revision','',0),(5186,8,'2022-07-25 03:44:49','2022-07-25 03:44:49','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/\">Try Regenerative Treatments for Your Hip Pain or Injury</a></li>\r\n 	<li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Treating Knee Pain and Injuries with Regenerative Orthopedics\" href=\"/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics/\">Treating Knee Pain and Injuries with Regenerative Orthopedics</a></li>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-07-25 03:44:49','2022-07-25 03:44:49','',2109,'https://www.drfields.com/?p=5186',0,'revision','',0),(5187,8,'2022-07-25 03:48:43','2022-07-25 03:48:43','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a>\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/\">Try Regenerative Treatments for Your Hip Pain or Injury</a></li>\r\n 	<li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Treating Knee Pain and Injuries with Regenerative Orthopedics\" href=\"/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics/\">Treating Knee Pain and Injuries with Regenerative Orthopedics</a></li>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-07-25 03:48:43','2022-07-25 03:48:43','',2109,'https://www.drfields.com/?p=5187',0,'revision','',0),(5188,8,'2022-07-25 03:56:15','2022-07-25 03:56:15','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a>\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/\">Try Regenerative Treatments for Your Hip Pain or Injury</a></li>\r\n 	<li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Treating Knee Pain and Injuries with Regenerative Orthopedics\" href=\"/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics/\">Treating Knee Pain and Injuries with Regenerative Orthopedics</a></li>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	<li class=\"last\"><a style=\"color: #0a2745; font-weight: bold;\" title=\"Magazine Article on Stem Cell\" href=\"https://www.drfields.com/articles/magazine-column/june-2019-townsend-article/\">Magazine Article on Stem Cell</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-07-25 03:56:15','2022-07-25 03:56:15','',2109,'https://www.drfields.com/?p=5188',0,'revision','',0),(5189,8,'2022-07-26 04:22:04','2022-07-26 04:22:04','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Hiking to 11,400 ft</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 04:22:04','2022-07-26 04:22:04','',2208,'https://www.drfields.com/?p=5189',0,'revision','',0),(5190,8,'2022-07-26 04:23:27','2022-07-26 04:23:27','<h2 class=\"heading-style\">Kilimanjaro Arrival - 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_014135.mp4\"][/video]</div>\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_013855.mp4\"][/video]</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_235333.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"480\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190212_023336.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190213_015500.mp4\"][/video]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_194444.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Getting To Camp At 16,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_235706.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234-1.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5331,5324,5326,5327,5328,5329,5330,5332\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Final Goodbyes And Certificates</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2303,2302,2304,2301,2296,2299,2300,2297,2306\"]\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]','Kilimanjaro Climb Gallery','','publish','closed','closed','','kilimanjaro-climb-gallery','','','2022-07-28 04:37:08','2022-07-28 04:37:08','',0,'https://www.drfields.com/?page_id=5190',0,'page','',0),(5191,8,'2022-07-26 04:23:27','2022-07-26 04:23:27','','Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-26 04:23:27','2022-07-26 04:23:27','',5190,'https://www.drfields.com/?p=5191',0,'revision','',0),(5192,8,'2022-07-26 05:41:35','2022-07-26 05:41:35','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5199,5200,5201,5202,5203,5204,5205,5206\"]\n<div id=\"kiliminaroimg\" class=\"inner\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-1.jpg\" alt=\"Drfieldday1kilimanaro (1)\" />\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-2.jpg\" alt=\"Drfieldday1kilimanaro (2)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-3.jpg\" alt=\"Drfieldday1kilimanaro (3)\" />\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-4.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-5.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-6.jpg\" />\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-7.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-8.jpg\" /></div>','Day 1-Kiliminaro and base camp arrival','','inherit','closed','closed','','2219-autosave-v1','','','2022-07-26 05:41:35','2022-07-26 05:41:35','',2219,'https://www.drfields.com/?p=5192',0,'revision','',0),(5193,8,'2022-07-26 04:58:09','2022-07-26 04:58:09','[gallery ids=\"2227,2226,2225,2224,2223,2222,2221,2220\"]\r\n<div class=\"inner\" id=\"kiliminaroimg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-1.jpg\" alt=\"Drfieldday1kilimanaro (1)\"   />\r\n<img  src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-2.jpg\" alt=\"Drfieldday1kilimanaro (2)\"/><img  src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-3.jpg\" alt=\"Drfieldday1kilimanaro (3)\"/>\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-4.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-5.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-6.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-7.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-8.jpg\">\r\n\r\n</div>','Day 1-Kiliminaro and base camp arrival','','inherit','closed','closed','','2219-revision-v1','','','2022-07-26 04:58:09','2022-07-26 04:58:09','',2219,'https://www.drfields.com/?p=5193',0,'revision','',0),(5194,8,'2022-07-26 04:58:50','2022-07-26 04:58:50','[gallery columns=\"4\" size=\"medium\" ids=\"2227,2226,2225,2224,2223,2222,2221,2220\"]\r\n<div id=\"kiliminaroimg\" class=\"inner\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-1.jpg\" alt=\"Drfieldday1kilimanaro (1)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-2.jpg\" alt=\"Drfieldday1kilimanaro (2)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-3.jpg\" alt=\"Drfieldday1kilimanaro (3)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-4.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-5.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-6.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-7.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-8.jpg\" /></div>','Day 1-Kiliminaro and base camp arrival','','inherit','closed','closed','','2219-revision-v1','','','2022-07-26 04:58:50','2022-07-26 04:58:50','',2219,'https://www.drfields.com/?p=5194',0,'revision','',0),(5195,8,'2022-07-26 05:21:38','2022-07-26 05:21:38','[gallery columns=\"4\" size=\"wcsquare\" ids=\"2227,2226,2225,2224,2223,2222,2221,2220\"]\r\n<div id=\"kiliminaroimg\" class=\"inner\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-1.jpg\" alt=\"Drfieldday1kilimanaro (1)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-2.jpg\" alt=\"Drfieldday1kilimanaro (2)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-3.jpg\" alt=\"Drfieldday1kilimanaro (3)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-4.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-5.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-6.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-7.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-8.jpg\" /></div>','Day 1-Kiliminaro and base camp arrival','','inherit','closed','closed','','2219-revision-v1','','','2022-07-26 05:21:38','2022-07-26 05:21:38','',2219,'https://www.drfields.com/?p=5195',0,'revision','',0),(5196,8,'2022-07-26 05:21:58','2022-07-26 05:21:58','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" ids=\"2227,2226,2225,2224,2223,2222,2221,2220\"]\r\n<div id=\"kiliminaroimg\" class=\"inner\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-1.jpg\" alt=\"Drfieldday1kilimanaro (1)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-2.jpg\" alt=\"Drfieldday1kilimanaro (2)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-3.jpg\" alt=\"Drfieldday1kilimanaro (3)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-4.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-5.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-6.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-7.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-8.jpg\" /></div>','Day 1-Kiliminaro and base camp arrival','','inherit','closed','closed','','2219-revision-v1','','','2022-07-26 05:21:58','2022-07-26 05:21:58','',2219,'https://www.drfields.com/?p=5196',0,'revision','',0),(5197,8,'2022-07-26 05:22:25','2022-07-26 05:22:25','[gallery columns=\"4\" size=\"wcsquare\" display=\"owlcolumns\" ids=\"2227,2226,2225,2224,2223,2222,2221,2220\"]\r\n<div id=\"kiliminaroimg\" class=\"inner\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-1.jpg\" alt=\"Drfieldday1kilimanaro (1)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-2.jpg\" alt=\"Drfieldday1kilimanaro (2)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-3.jpg\" alt=\"Drfieldday1kilimanaro (3)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-4.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-5.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-6.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-7.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-8.jpg\" /></div>','Day 1-Kiliminaro and base camp arrival','','inherit','closed','closed','','2219-revision-v1','','','2022-07-26 05:22:25','2022-07-26 05:22:25','',2219,'https://www.drfields.com/?p=5197',0,'revision','',0),(5198,8,'2022-07-26 05:23:05','2022-07-26 05:23:05','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"2227,2226,2225,2224,2223,2222,2221,2220\"]\r\n<div id=\"kiliminaroimg\" class=\"inner\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-1.jpg\" alt=\"Drfieldday1kilimanaro (1)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-2.jpg\" alt=\"Drfieldday1kilimanaro (2)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-3.jpg\" alt=\"Drfieldday1kilimanaro (3)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-4.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-5.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-6.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-7.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-8.jpg\" /></div>','Day 1-Kiliminaro and base camp arrival','','inherit','closed','closed','','2219-revision-v1','','','2022-07-26 05:23:05','2022-07-26 05:23:05','',2219,'https://www.drfields.com/?p=5198',0,'revision','',0),(5199,8,'2022-07-26 05:40:17','2022-07-26 05:40:17','20190210 061752','20190210 061752','','inherit','closed','closed','','20190210_061752','','','2022-07-26 05:40:53','2022-07-26 05:40:53','',2219,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg',0,'attachment','image/jpeg',0),(5200,8,'2022-07-26 05:40:24','2022-07-26 05:40:24','20190210 100719','20190210 100719','','inherit','closed','closed','','20190210_100719','','','2022-07-26 05:40:54','2022-07-26 05:40:54','',2219,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_100719.jpg',0,'attachment','image/jpeg',0),(5201,8,'2022-07-26 05:40:29','2022-07-26 05:40:29','20190210 123305','20190210 123305','','inherit','closed','closed','','20190210_123305','','','2022-07-26 05:40:56','2022-07-26 05:40:56','',2219,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123305.jpg',0,'attachment','image/jpeg',0),(5202,8,'2022-07-26 05:40:40','2022-07-26 05:40:40','20190210 123348','20190210 123348','','inherit','closed','closed','','20190210_123348','','','2022-07-26 05:40:57','2022-07-26 05:40:57','',2219,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123348.jpg',0,'attachment','image/jpeg',0),(5203,8,'2022-07-26 05:40:43','2022-07-26 05:40:43','20190210 123358','20190210 123358','','inherit','closed','closed','','20190210_123358','','','2022-07-26 05:41:04','2022-07-26 05:41:04','',2219,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123358.jpg',0,'attachment','image/jpeg',0),(5204,8,'2022-07-26 05:40:53','2022-07-26 05:40:53','20190210 123533','20190210 123533','','inherit','closed','closed','','20190210_123533','','','2022-07-26 05:41:13','2022-07-26 05:41:13','',2219,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123533.jpg',0,'attachment','image/jpeg',0),(5205,8,'2022-07-26 05:41:03','2022-07-26 05:41:03','20190210 123559','20190210 123559','20190210 123559','inherit','closed','closed','','20190210_123559','','','2022-07-26 05:41:03','2022-07-26 05:41:03','',2219,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123559.jpg',0,'attachment','image/jpeg',0),(5206,8,'2022-07-26 05:41:15','2022-07-26 05:41:15','20190210 123613','20190210 123613','','inherit','closed','closed','','20190210_123613','','','2022-07-26 05:41:25','2022-07-26 05:41:25','',2219,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123613.jpg',0,'attachment','image/jpeg',0),(5207,8,'2022-07-26 05:41:37','2022-07-26 05:41:37','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5199,5200,5201,5202,5203,5204,5205,5206\"]\r\n<div id=\"kiliminaroimg\" class=\"inner\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-1.jpg\" alt=\"Drfieldday1kilimanaro (1)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-2.jpg\" alt=\"Drfieldday1kilimanaro (2)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-3.jpg\" alt=\"Drfieldday1kilimanaro (3)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-4.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-5.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-6.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-7.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-8.jpg\" /></div>','Day 1-Kiliminaro and base camp arrival','','inherit','closed','closed','','2219-revision-v1','','','2022-07-26 05:41:37','2022-07-26 05:41:37','',2219,'https://www.drfields.com/?p=5207',0,'revision','',0),(5208,8,'2022-07-26 05:42:22','2022-07-26 05:42:22','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n<div id=\"kiliminaroimg\" class=\"inner\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-1.jpg\" alt=\"Drfieldday1kilimanaro (1)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-2.jpg\" alt=\"Drfieldday1kilimanaro (2)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-3.jpg\" alt=\"Drfieldday1kilimanaro (3)\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-4.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-5.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-6.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-7.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/DrfieldDay1Kilimanaro-8.jpg\" /></div>','Day 1-Kiliminaro and base camp arrival','','inherit','closed','closed','','2219-revision-v1','','','2022-07-26 05:42:22','2022-07-26 05:42:22','',2219,'https://www.drfields.com/?p=5208',0,'revision','',0),(5209,8,'2022-07-26 05:42:46','2022-07-26 05:42:46','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]','Day 1-Kiliminaro and base camp arrival','','inherit','closed','closed','','2219-revision-v1','','','2022-07-26 05:42:46','2022-07-26 05:42:46','',2219,'https://www.drfields.com/?p=5209',0,'revision','',0),(5210,8,'2022-07-26 05:43:17','2022-07-26 05:43:17','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]','Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-26 05:43:17','2022-07-26 05:43:17','',5190,'https://www.drfields.com/?p=5210',0,'revision','',0),(5211,8,'2022-07-26 05:44:01','2022-07-26 05:44:01','<h2>Kilimanjaro Arrival; 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]','Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-26 05:44:01','2022-07-26 05:44:01','',5190,'https://www.drfields.com/?p=5211',0,'revision','',0),(5212,8,'2022-07-26 05:45:18','2022-07-26 05:45:18','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-8.jpg\" alt=\"\" />\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n<p style=\"text-align: center;\"><a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Hiking to 11,400 ft</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 05:45:18','2022-07-26 05:45:18','',2208,'https://www.drfields.com/?p=5212',0,'revision','',0),(5213,8,'2022-07-26 06:22:50','2022-07-26 06:22:50','<div class=\"inner\">\r\n<div class=\"img-section\"><img class=\"aligncenter size-full wp-image-1791\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-2.jpg\" alt=\"Finalhiking (2)\" width=\"157\" height=\"279\" /><img class=\"aligncenter size-full wp-image-1791\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-3.jpg\" alt=\"Finalhiking (3)\" width=\"157\" height=\"279\" /><img class=\"aligncenter size-full wp-image-1791\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-4.jpg\" alt=\"Finalhiking (4)\" width=\"157\" height=\"279\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-5.jpg\" alt=\"Finalhiking (5)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-6.jpg\" alt=\"Finalhiking (6)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-7.jpg\" alt=\"Finalhiking (7)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-8.jpg\" alt=\"Finalhiking (8)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-9.jpg\" alt=\"Finalhiking (9)\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-10.jpg\" alt=\"Finalhiking (10)\" /><img class=\"aligncenter size-full wp-image-1791\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/finalhiking-1.jpg\" alt=\"Finalhiking (1)\" width=\"157\" height=\"279\" /></div>\r\n</div>','Kilimanjaro Pre-Hike','','inherit','closed','closed','','1789-revision-v1','','','2022-07-26 06:22:50','2022-07-26 06:22:50','',1789,'https://www.drfields.com/?p=5213',0,'revision','',0),(5214,8,'2022-07-26 06:34:31','2022-07-26 06:34:31','','20190211_013855','','inherit','','closed','','20190211_013855','','','2022-07-26 06:34:31','2022-07-26 06:34:31','',1789,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_013855.mp4',0,'attachment','video/mp4',0),(5215,8,'2022-07-26 06:34:37','2022-07-26 06:34:37','','20190211_014135','','inherit','','closed','','20190211_014135','','','2022-07-26 06:34:37','2022-07-26 06:34:37','',1789,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_014135.mp4',0,'attachment','video/mp4',0),(5216,8,'2022-07-26 06:34:39','2022-07-26 06:34:39','20190211 054908','20190211 054908','20190211 054908','inherit','closed','closed','','20190211_054908','','','2022-07-26 06:34:39','2022-07-26 06:34:39','',1789,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg',0,'attachment','image/jpeg',0),(5217,8,'2022-07-26 06:34:44','2022-07-26 06:34:44','20190211 064549','20190211 064549','20190211 064549','inherit','closed','closed','','20190211_064549','','','2022-07-26 06:34:44','2022-07-26 06:34:44','',1789,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_064549.jpg',0,'attachment','image/jpeg',0),(5218,8,'2022-07-26 06:34:49','2022-07-26 06:34:49','20190211 064815','20190211 064815','20190211 064815','inherit','closed','closed','','20190211_064815','','','2022-07-26 06:34:49','2022-07-26 06:34:49','',1789,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_064815.jpg',0,'attachment','image/jpeg',0),(5219,8,'2022-07-26 06:34:54','2022-07-26 06:34:54','20190211 083321','20190211 083321','20190211 083321','inherit','closed','closed','','20190211_083321','','','2022-07-26 06:34:54','2022-07-26 06:34:54','',1789,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_083321.jpg',0,'attachment','image/jpeg',0),(5220,8,'2022-07-26 06:35:07','2022-07-26 06:35:07','20190211 083429','20190211 083429','20190211 083429','inherit','closed','closed','','20190211_083429','','','2022-07-26 06:35:07','2022-07-26 06:35:07','',1789,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_083429.jpg',0,'attachment','image/jpeg',0),(5221,8,'2022-07-26 06:36:05','2022-07-26 06:36:05','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5214,5215,5216,5217,5218,5219,5220\"]','Kilimanjaro Pre-Hike','','inherit','closed','closed','','1789-revision-v1','','','2022-07-26 06:36:05','2022-07-26 06:36:05','',1789,'https://www.drfields.com/?p=5221',0,'revision','',0),(5222,8,'2022-07-26 06:38:11','2022-07-26 06:38:11','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n\r\n[video width=\"480\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_014135.mp4\"][/video]\r\n[video width=\"480\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_013855.mp4\"][/video]','Kilimanjaro Pre-Hike','','inherit','closed','closed','','1789-revision-v1','','','2022-07-26 06:38:11','2022-07-26 06:38:11','',1789,'https://www.drfields.com/?p=5222',0,'revision','',0),(5223,8,'2022-07-26 06:39:35','2022-07-26 06:39:35','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"480\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_014135.mp4\"][/video]</div>\r\n<div class=\"video-box\">[video width=\"480\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_013855.mp4\"][/video]</div>\r\n</div>\r\n\r\n','Kilimanjaro Pre-Hike','','inherit','closed','closed','','1789-revision-v1','','','2022-07-26 06:39:35','2022-07-26 06:39:35','',1789,'https://www.drfields.com/?p=5223',0,'revision','',0),(5224,8,'2022-07-26 06:49:01','2022-07-26 06:49:01','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"50%\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_014135.mp4\"][/video]</div>\r\n<div class=\"video-box\">[video width=\"50%\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_013855.mp4\"][/video]</div>\r\n</div>\r\n\r\n','Kilimanjaro Pre-Hike','','inherit','closed','closed','','1789-revision-v1','','','2022-07-26 06:49:01','2022-07-26 06:49:01','',1789,'https://www.drfields.com/?p=5224',0,'revision','',0),(5225,8,'2022-07-26 06:49:29','2022-07-26 06:49:29','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_014135.mp4\"][/video]</div>\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_013855.mp4\"][/video]</div>\r\n</div>\r\n\r\n','Kilimanjaro Pre-Hike','','inherit','closed','closed','','1789-revision-v1','','','2022-07-26 06:49:29','2022-07-26 06:49:29','',1789,'https://www.drfields.com/?p=5225',0,'revision','',0),(5226,8,'2022-07-28 04:35:56','2022-07-28 04:35:56','<h2 class=\"heading-style\">Kilimanjaro Arrival - 1st day pre hike camp</h2>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\n\n&nbsp;\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\n<div class=\"video-flex-wrap\">\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_014135.mp4\"][/video]</div>\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_013855.mp4\"][/video]</div>\n</div>\n\n&nbsp;\n<h2 class=\"heading-style\">Kilimanjaro - Getting to the trailhead</h2>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\n<div class=\"video-flex-wrap\">\n<div class=\"video-box\">\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_235333.mp4\"][/video]\n</div>\n<div class=\"video-box\">\n[video width=\"480\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190212_023336.mp4\"][/video]\n</div>\n</div>\n\n&nbsp;\n<h2 class=\"heading-style\">Kilimanjaro - First Day hike</h2>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\n\n&nbsp;\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 11,400 ft</h2>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190213_015500.mp4\"][/video]\n\n&nbsp;\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 13,400 feet</h2>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\n<div class=\"video-flex-wrap\">\n<div class=\"video-box\">\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\n</div>\n<div class=\"video-box\">\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\n</div>\n</div>\n<div class=\"video-flex-wrap\">\n<div class=\"video-box\">\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]\n</div>\n</div>\n\n&nbsp;\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 15,500 feet</h2>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\n<div class=\"video-flex-wrap\">\n<div class=\"video-box\">\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_194444.mp4\"][/video]\n</div>\n</div>\n\n&nbsp;\n<h2 class=\"heading-style\">Getting To Camp At 16,500 Feet</h2>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\n\n&nbsp;\n<h2 class=\"heading-style\">Kilimanjaro- Final Camp At 18,500 Feet</h2>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\n\n&nbsp;\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters Beginning The Descent</h2>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5331,5324,5326,5327,5328,5329,5330,5332\"]\n\n&nbsp;\n<h2 class=\"heading-style\">Sunrise Up Top And Heading Down</h2>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\n\n&nbsp;\n<h2 class=\"heading-style\">Final Goodbyes And Certificates</h2>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2303,2302,2304,2301,2296,2299,2300,2297,2306\"]\n\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-autosave-v1','','','2022-07-28 04:35:56','2022-07-28 04:35:56','',5190,'https://www.drfields.com/?p=5226',0,'revision','',0),(5227,8,'2022-07-26 06:50:42','2022-07-26 06:50:42','<h2>Kilimanjaro Arrival; 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]','Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-26 06:50:42','2022-07-26 06:50:42','',5190,'https://www.drfields.com/?p=5227',0,'revision','',0),(5228,8,'2022-07-26 06:51:26','2022-07-26 06:51:26','<h2>Kilimanjaro Arrival; 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n<br/>\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]','Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-26 06:51:26','2022-07-26 06:51:26','',5190,'https://www.drfields.com/?p=5228',0,'revision','',0),(5229,8,'2022-07-26 07:29:45','2022-07-26 07:29:45','<h2>Kili- Getting to the trailhead</h2>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\n\n\n<h2>Kili- First Day hike</h2>\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]','Kili Getting to the trailhead','','inherit','closed','closed','','2232-autosave-v1','','','2022-07-26 07:29:45','2022-07-26 07:29:45','',2232,'https://www.drfields.com/?p=5229',0,'revision','',0),(5230,8,'2022-07-26 07:12:37','2022-07-26 07:12:37','20190211 215121','20190211 215121','20190211 215121','inherit','closed','closed','','20190211_215121','','','2022-07-26 07:12:37','2022-07-26 07:12:37','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_215121.jpg',0,'attachment','image/jpeg',0),(5231,8,'2022-07-26 07:12:49','2022-07-26 07:12:49','20190211 221519','20190211 221519','20190211 221519','inherit','closed','closed','','20190211_221519','','','2022-07-26 07:12:49','2022-07-26 07:12:49','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_221519.jpg',0,'attachment','image/jpeg',0),(5232,8,'2022-07-26 07:13:01','2022-07-26 07:13:01','','20190211_235333','','inherit','','closed','','20190211_235333','','','2022-07-26 07:13:01','2022-07-26 07:13:01','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235333.mp4',0,'attachment','video/mp4',0),(5233,8,'2022-07-26 07:13:04','2022-07-26 07:13:04','20190211 235514','20190211 235514','20190211 235514','inherit','closed','closed','','20190211_235514','','','2022-07-26 07:13:05','2022-07-26 07:13:05','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235514.jpg',0,'attachment','image/jpeg',0),(5234,8,'2022-07-26 07:13:16','2022-07-26 07:13:16','20190211 235530','20190211 235530','20190211 235530','inherit','closed','closed','','20190211_235530','','','2022-07-26 07:13:16','2022-07-26 07:13:16','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530.jpg',0,'attachment','image/jpeg',0),(5235,8,'2022-07-26 07:22:57','2022-07-26 07:22:57','20190211 235530','20190211 235530','20190211 235530','inherit','closed','closed','','20190211_235530-2','','','2022-07-26 07:22:57','2022-07-26 07:22:57','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-1.jpg',0,'attachment','image/jpeg',0),(5236,8,'2022-07-26 07:23:09','2022-07-26 07:23:09','20190212 013444','20190212 013444','20190212 013444','inherit','closed','closed','','20190212_013444','','','2022-07-26 07:23:09','2022-07-26 07:23:09','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_013444.jpg',0,'attachment','image/jpeg',0),(5237,8,'2022-07-26 07:23:21','2022-07-26 07:23:21','20190212 013459','20190212 013459','20190212 013459','inherit','closed','closed','','20190212_013459','','','2022-07-26 07:23:21','2022-07-26 07:23:21','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_013459.jpg',0,'attachment','image/jpeg',0),(5238,8,'2022-07-26 07:23:32','2022-07-26 07:23:32','20190212 014025','20190212 014025','20190212 014025','inherit','closed','closed','','20190212_014025','','','2022-07-26 07:23:32','2022-07-26 07:23:32','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_014025.jpg',0,'attachment','image/jpeg',0),(5239,8,'2022-07-26 07:23:42','2022-07-26 07:23:42','20190212 014035','20190212 014035','20190212 014035','inherit','closed','closed','','20190212_014035','','','2022-07-26 07:23:42','2022-07-26 07:23:42','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_014035.jpg',0,'attachment','image/jpeg',0),(5240,8,'2022-07-26 07:23:58','2022-07-26 07:23:58','','20190212_023336','','inherit','','closed','','20190212_023336','','','2022-07-26 07:23:58','2022-07-26 07:23:58','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_023336.mp4',0,'attachment','video/mp4',0),(5241,8,'2022-07-26 07:24:01','2022-07-26 07:24:01','20190212 054153','20190212 054153','20190212 054153','inherit','closed','closed','','20190212_054153','','','2022-07-26 07:24:01','2022-07-26 07:24:01','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054153.jpg',0,'attachment','image/jpeg',0),(5242,8,'2022-07-26 07:24:11','2022-07-26 07:24:11','20190212 054153','20190212 054153','20190212 054153','inherit','closed','closed','','20190212_054153-2','','','2022-07-26 07:24:11','2022-07-26 07:24:11','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054153-1.jpg',0,'attachment','image/jpeg',0),(5243,8,'2022-07-26 07:24:23','2022-07-26 07:24:23','20190212 054205','20190212 054205','20190212 054205','inherit','closed','closed','','20190212_054205','','','2022-07-26 07:24:23','2022-07-26 07:24:23','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054205.jpg',0,'attachment','image/jpeg',0),(5244,8,'2022-07-26 07:24:32','2022-07-26 07:24:32','20190212 054306','20190212 054306','20190212 054306','inherit','closed','closed','','20190212_054306','','','2022-07-26 07:24:32','2022-07-26 07:24:32','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054306.jpg',0,'attachment','image/jpeg',0),(5245,8,'2022-07-26 07:24:49','2022-07-26 07:24:49','20190212 054706','20190212 054706','20190212 054706','inherit','closed','closed','','20190212_054706','','','2022-07-26 07:24:49','2022-07-26 07:24:49','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054706.jpg',0,'attachment','image/jpeg',0),(5246,8,'2022-07-26 07:24:57','2022-07-26 07:24:57','20190212 054843','20190212 054843','20190212 054843','inherit','closed','closed','','20190212_054843','','','2022-07-26 07:24:57','2022-07-26 07:24:57','',2232,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054843.jpg',0,'attachment','image/jpeg',0),(5247,8,'2022-07-26 07:26:24','2022-07-26 07:26:24','<h2>Kili- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<h2>Kili- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]','Kili Getting to the trailhead','','inherit','closed','closed','','2232-revision-v1','','','2022-07-26 07:26:24','2022-07-26 07:26:24','',2232,'https://www.drfields.com/?p=5247',0,'revision','',0),(5248,8,'2022-07-26 07:30:04','2022-07-26 07:30:04','<h2>Kili- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n[playlist type=\"video\" ids=\"5240\"]\r\n\r\n<h2>Kili- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]','Kili Getting to the trailhead','','inherit','closed','closed','','2232-revision-v1','','','2022-07-26 07:30:04','2022-07-26 07:30:04','',2232,'https://www.drfields.com/?p=5248',0,'revision','',0),(5249,8,'2022-07-26 07:31:12','2022-07-26 07:31:12','<h2>Kili- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_235333.mp4\"][/video]\r\n\r\n<h2>Kili- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]','Kili Getting to the trailhead','','inherit','closed','closed','','2232-revision-v1','','','2022-07-26 07:31:12','2022-07-26 07:31:12','',2232,'https://www.drfields.com/?p=5249',0,'revision','',0),(5250,8,'2022-07-26 07:31:31','2022-07-26 07:31:31','<h2>Kili- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_235333.mp4\"][/video]\r\n<br/>\r\n<h2>Kili- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n[video width=\"480\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190212_023336.mp4\"][/video]','Kili Getting to the trailhead','','inherit','closed','closed','','2232-revision-v1','','','2022-07-26 07:31:31','2022-07-26 07:31:31','',2232,'https://www.drfields.com/?p=5250',0,'revision','',0),(5251,8,'2022-07-26 07:32:15','2022-07-26 07:32:15','<h2>Kilimanjaro Arrival; 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n<br/>\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<br/>\r\n<h2>Kili- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<br/>\r\n<h2>Kili- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n<br/>','Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-26 07:32:15','2022-07-26 07:32:15','',5190,'https://www.drfields.com/?p=5251',0,'revision','',0),(5252,8,'2022-07-26 07:55:43','2022-07-26 07:55:43','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190213_015500.mp4\"][/video]','Kili Hiking to 11,400 ft','','publish','closed','closed','','kili-hiking-to-11400-ft','','','2022-07-26 07:55:43','2022-07-26 07:55:43','',0,'https://www.drfields.com/?page_id=5252',0,'page','',0),(5253,8,'2022-07-26 07:53:31','2022-07-26 07:53:31','20190212 205057','20190212 205057','20190212 205057','inherit','closed','closed','','20190212_205057','','','2022-07-26 07:53:31','2022-07-26 07:53:31','',5252,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_205057.jpg',0,'attachment','image/jpeg',0),(5254,8,'2022-07-26 07:53:51','2022-07-26 07:53:51','20190212 205203','20190212 205203','20190212 205203','inherit','closed','closed','','20190212_205203','','','2022-07-26 07:53:51','2022-07-26 07:53:51','',5252,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_205203.jpg',0,'attachment','image/jpeg',0),(5255,8,'2022-07-26 07:54:02','2022-07-26 07:54:02','20190212 225420','20190212 225420','20190212 225420','inherit','closed','closed','','20190212_225420','','','2022-07-26 07:54:02','2022-07-26 07:54:02','',5252,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_225420.jpg',0,'attachment','image/jpeg',0),(5256,8,'2022-07-26 07:54:13','2022-07-26 07:54:13','20190213 003717','20190213 003717','20190213 003717','inherit','closed','closed','','20190213_003717','','','2022-07-26 07:54:13','2022-07-26 07:54:13','',5252,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_003717.jpg',0,'attachment','image/jpeg',0),(5257,8,'2022-07-26 07:54:25','2022-07-26 07:54:25','20190213 012240','20190213 012240','20190213 012240','inherit','closed','closed','','20190213_012240','','','2022-07-26 07:54:25','2022-07-26 07:54:25','',5252,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_012240.jpg',0,'attachment','image/jpeg',0),(5258,8,'2022-07-26 07:54:35','2022-07-26 07:54:35','','20190213_015500','','inherit','','closed','','20190213_015500','','','2022-07-26 07:54:35','2022-07-26 07:54:35','',5252,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_015500.mp4',0,'attachment','video/mp4',0),(5259,8,'2022-07-26 07:54:36','2022-07-26 07:54:36','20190213 024020','20190213 024020','20190213 024020','inherit','closed','closed','','20190213_024020','','','2022-07-26 07:54:36','2022-07-26 07:54:36','',5252,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_024020.jpg',0,'attachment','image/jpeg',0),(5260,8,'2022-07-26 07:54:47','2022-07-26 07:54:47','20190213 050504','20190213 050504','20190213 050504','inherit','closed','closed','','20190213_050504','','','2022-07-26 07:54:47','2022-07-26 07:54:47','',5252,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_050504.jpg',0,'attachment','image/jpeg',0),(5261,8,'2022-07-26 07:54:58','2022-07-26 07:54:58','20190213 051720','20190213 051720','20190213 051720','inherit','closed','closed','','20190213_051720','','','2022-07-26 07:54:58','2022-07-26 07:54:58','',5252,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_051720.jpg',0,'attachment','image/jpeg',0),(5262,8,'2022-07-26 07:55:43','2022-07-26 07:55:43','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190213_015500.mp4\"][/video]','Kili Hiking to 11,400 ft','','inherit','closed','closed','','5252-revision-v1','','','2022-07-26 07:55:43','2022-07-26 07:55:43','',5252,'https://www.drfields.com/?p=5262',0,'revision','',0),(5263,8,'2022-07-26 07:56:26','2022-07-26 07:56:26','<h2>Kilimanjaro Arrival; 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n<br/>\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<br/>\r\n<h2>Kili- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<br/>\r\n<h2>Kili- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n<br/>\r\n<h2>Kili Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]','Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-26 07:56:26','2022-07-26 07:56:26','',5190,'https://www.drfields.com/?p=5263',0,'revision','',0),(5264,8,'2022-07-26 08:10:45','2022-07-26 08:10:45','<div id=\"kiliminaroimg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-1.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-2.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-3.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-5.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-6.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-7.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-8.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-9.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-10.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-11.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-12.jpg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-13.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-14.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-15.jpg\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-16.jpg\">\r\n</div>','Kili Hiking to 15,500 feet','','inherit','closed','closed','','2239-revision-v1','','','2022-07-26 08:10:45','2022-07-26 08:10:45','',2239,'https://www.drfields.com/?p=5264',0,'revision','',0),(5265,8,'2022-07-27 22:20:20','2022-07-27 22:20:20','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\n<div class=\"video-flex-wrap\">\n<div class=\"video-box\">\n\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_194444.mp4\"][/video]\n\n</div>\n<div class=\"video-box\">\n\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]\n\n</div>\n</div>','Kilimanjaro Hiking to 15,500 Feet','','inherit','closed','closed','','2239-autosave-v1','','','2022-07-27 22:20:20','2022-07-27 22:20:20','',2239,'https://www.drfields.com/?p=5265',0,'revision','',0),(5266,8,'2022-07-26 08:15:24','2022-07-26 08:15:24','','20190214_193726','','inherit','','closed','','20190214_193726','','','2022-07-26 08:15:24','2022-07-26 08:15:24','',2239,'https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4',0,'attachment','video/mp4',0),(5267,8,'2022-07-26 08:15:26','2022-07-26 08:15:26','20190215 053648','20190215 053648','20190215 053648','inherit','closed','closed','','20190215_053648','','','2022-07-26 08:15:26','2022-07-26 08:15:26','',2239,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_053648.jpg',0,'attachment','image/jpeg',0),(5268,8,'2022-07-26 08:15:31','2022-07-26 08:15:31','20190215 194441','20190215 194441','20190215 194441','inherit','closed','closed','','20190215_194441','','','2022-07-26 08:15:31','2022-07-26 08:15:31','',2239,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_194441.jpg',0,'attachment','image/jpeg',0),(5269,8,'2022-07-26 08:15:41','2022-07-26 08:15:41','20190215 195143','20190215 195143','20190215 195143','inherit','closed','closed','','20190215_195143','','','2022-07-26 08:15:41','2022-07-26 08:15:41','',2239,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_195143.jpg',0,'attachment','image/jpeg',0),(5270,8,'2022-07-26 08:15:47','2022-07-26 08:15:47','20190215 232436','20190215 232436','20190215 232436','inherit','closed','closed','','20190215_232436','','','2022-07-26 08:15:47','2022-07-26 08:15:47','',2239,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_232436.jpg',0,'attachment','image/jpeg',0),(5271,8,'2022-07-26 08:15:59','2022-07-26 08:15:59','20190215 234842','20190215 234842','20190215 234842','inherit','closed','closed','','20190215_234842','','','2022-07-26 08:15:59','2022-07-26 08:15:59','',2239,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_234842.jpg',0,'attachment','image/jpeg',0),(5272,8,'2022-07-26 08:16:06','2022-07-26 08:16:06','20190215 234955','20190215 234955','20190215 234955','inherit','closed','closed','','20190215_234955','','','2022-07-26 08:16:06','2022-07-26 08:16:06','',2239,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_234955.jpg',0,'attachment','image/jpeg',0),(5273,8,'2022-07-26 08:16:11','2022-07-26 08:16:11','20190216 001419','20190216 001419','20190216 001419','inherit','closed','closed','','20190216_001419','','','2022-07-26 08:16:12','2022-07-26 08:16:12','',2239,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_001419.jpg',0,'attachment','image/jpeg',0),(5274,8,'2022-07-26 08:16:18','2022-07-26 08:16:18','20190216 013949','20190216 013949','20190216 013949','inherit','closed','closed','','20190216_013949','','','2022-07-26 08:16:18','2022-07-26 08:16:18','',2239,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_013949.jpg',0,'attachment','image/jpeg',0),(5275,8,'2022-07-26 08:16:26','2022-07-26 08:16:26','20190216 014458','20190216 014458','20190216 014458','inherit','closed','closed','','20190216_014458','','','2022-07-26 08:16:26','2022-07-26 08:16:26','',2239,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_014458.jpg',0,'attachment','image/jpeg',0),(5276,8,'2022-07-26 08:16:30','2022-07-26 08:16:30','20190216 015352','20190216 015352','20190216 015352','inherit','closed','closed','','20190216_015352','','','2022-07-26 08:16:30','2022-07-26 08:16:30','',2239,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_015352.jpg',0,'attachment','image/jpeg',0),(5277,8,'2022-07-26 08:16:35','2022-07-26 08:16:35','20190216 015509','20190216 015509','20190216 015509','inherit','closed','closed','','20190216_015509','','','2022-07-26 08:16:35','2022-07-26 08:16:35','',2239,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_015509.jpg',0,'attachment','image/jpeg',0),(5278,8,'2022-07-26 08:17:03','2022-07-26 08:17:03','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]','Kili Hiking to 15,500 feet','','inherit','closed','closed','','2239-revision-v1','','','2022-07-26 08:17:03','2022-07-26 08:17:03','',2239,'https://www.drfields.com/?p=5278',0,'revision','',0),(5279,8,'2022-07-26 08:18:20','2022-07-26 08:18:20','<h2>Kilimanjaro Arrival; 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n<br/>\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<br/>\r\n<h2>Kili- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<br/>\r\n<h2>Kili- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n<br/>\r\n<h2>Kili Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n<br/>\r\n<h2>Kili Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]','Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-26 08:18:20','2022-07-26 08:18:20','',5190,'https://www.drfields.com/?p=5279',0,'revision','',0),(5280,8,'2022-07-27 22:20:44','2022-07-27 22:20:44','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\n\n&nbsp;\n<div class=\"video-flex-wrap\">\n<div class=\"video-box\">\n\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_194444.mp4\"][/video]\n\n</div>\n<div class=\"video-box\">\n\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_235706.mp4\"][/video]\n\n</div>\n</div>\n<div class=\"video-flex-wrap\">\n<div class=\"video-box\">\n\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500.mp4\"][/video]\n\n</div>\n<div class=\"video-box\">\n\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900.mp4\"][/video]\n\n</div>\n</div>\n<div class=\"video-flex-wrap\">\n<div class=\"video-box\">\n\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405.mp4\"][/video]\n\n</div>\n<div class=\"video-box\"></div>\n</div>','Getting To Camp At 16,500 Feet','','inherit','closed','closed','','2257-autosave-v1','','','2022-07-27 22:20:44','2022-07-27 22:20:44','',2257,'https://www.drfields.com/?p=5280',0,'revision','',0),(5281,8,'2022-07-26 08:36:46','2022-07-26 08:36:46','20190216 180726','20190216 180726','20190216 180726','inherit','closed','closed','','20190216_180726','','','2022-07-26 08:36:46','2022-07-26 08:36:46','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_180726.jpg',0,'attachment','image/jpeg',0),(5282,8,'2022-07-26 08:36:57','2022-07-26 08:36:57','20190216 193521','20190216 193521','20190216 193521','inherit','closed','closed','','20190216_193521','','','2022-07-26 08:36:57','2022-07-26 08:36:57','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_193521.jpg',0,'attachment','image/jpeg',0),(5283,8,'2022-07-26 08:37:01','2022-07-26 08:37:01','20190216 193531','20190216 193531','20190216 193531','inherit','closed','closed','','20190216_193531','','','2022-07-26 08:37:01','2022-07-26 08:37:01','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_193531.jpg',0,'attachment','image/jpeg',0),(5284,8,'2022-07-26 08:37:15','2022-07-26 08:37:15','20190216 193544','20190216 193544','20190216 193544','inherit','closed','closed','','20190216_193544','','','2022-07-26 08:37:15','2022-07-26 08:37:15','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_193544.jpg',0,'attachment','image/jpeg',0),(5285,8,'2022-07-26 08:37:29','2022-07-26 08:37:29','20190216 221739','20190216 221739','20190216 221739','inherit','closed','closed','','20190216_221739','','','2022-07-26 08:37:29','2022-07-26 08:37:29','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_221739.jpg',0,'attachment','image/jpeg',0),(5286,8,'2022-07-26 08:37:40','2022-07-26 08:37:40','20190216 222618','20190216 222618','20190216 222618','inherit','closed','closed','','20190216_222618','','','2022-07-26 08:37:40','2022-07-26 08:37:40','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_222618.jpg',0,'attachment','image/jpeg',0),(5287,8,'2022-07-26 08:37:52','2022-07-26 08:37:52','20190217 001438','20190217 001438','20190217 001438','inherit','closed','closed','','20190217_001438','','','2022-07-26 08:37:52','2022-07-26 08:37:52','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_001438.jpg',0,'attachment','image/jpeg',0),(5288,8,'2022-07-26 08:38:02','2022-07-26 08:38:02','20190217 001448','20190217 001448','20190217 001448','inherit','closed','closed','','20190217_001448','','','2022-07-26 08:38:02','2022-07-26 08:38:02','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_001448.jpg',0,'attachment','image/jpeg',0),(5289,8,'2022-07-26 08:38:16','2022-07-26 08:38:16','20190217 001526','20190217 001526','20190217 001526','inherit','closed','closed','','20190217_001526','','','2022-07-26 08:38:16','2022-07-26 08:38:16','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_001526.jpg',0,'attachment','image/jpeg',0),(5290,8,'2022-07-26 08:38:28','2022-07-26 08:38:28','20190217 005511','20190217 005511','20190217 005511','inherit','closed','closed','','20190217_005511','','','2022-07-26 08:38:28','2022-07-26 08:38:28','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_005511.jpg',0,'attachment','image/jpeg',0),(5291,8,'2022-07-26 08:38:41','2022-07-26 08:38:41','20190217 012500','20190217 012500','20190217 012500','inherit','closed','closed','','20190217_012500','','','2022-07-26 08:38:41','2022-07-26 08:38:41','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_012500.jpg',0,'attachment','image/jpeg',0),(5292,8,'2022-07-26 08:38:51','2022-07-26 08:38:51','20190217 012521','20190217 012521','20190217 012521','inherit','closed','closed','','20190217_012521','','','2022-07-26 08:38:51','2022-07-26 08:38:51','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_012521.jpg',0,'attachment','image/jpeg',0),(5293,8,'2022-07-26 08:38:54','2022-07-26 08:38:54','20190217 013139','20190217 013139','20190217 013139','inherit','closed','closed','','20190217_013139','','','2022-07-26 08:38:54','2022-07-26 08:38:54','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_013139.jpg',0,'attachment','image/jpeg',0),(5294,8,'2022-07-26 08:39:07','2022-07-26 08:39:07','20190217 022831(0)','20190217 022831(0)','20190217 022831(0)','inherit','closed','closed','','20190217_0228310','','','2022-07-26 08:39:07','2022-07-26 08:39:07','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_0228310.jpg',0,'attachment','image/jpeg',0),(5295,8,'2022-07-26 08:39:17','2022-07-26 08:39:17','20190217 072131','20190217 072131','20190217 072131','inherit','closed','closed','','20190217_072131','','','2022-07-26 08:39:17','2022-07-26 08:39:17','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072131.jpg',0,'attachment','image/jpeg',0),(5296,8,'2022-07-26 08:39:28','2022-07-26 08:39:28','20190217 072223','20190217 072223','20190217 072223','inherit','closed','closed','','20190217_072223','','','2022-07-26 08:39:28','2022-07-26 08:39:28','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072223.jpg',0,'attachment','image/jpeg',0),(5297,8,'2022-07-26 08:39:39','2022-07-26 08:39:39','20190222 194502','20190222 194502','20190222 194502','inherit','closed','closed','','20190222_194502','','','2022-07-26 08:39:39','2022-07-26 08:39:39','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190222_194502.jpg',0,'attachment','image/jpeg',0),(5298,8,'2022-07-26 08:40:54','2022-07-26 08:40:54','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]','16500 feet to 18400','','inherit','closed','closed','','2257-revision-v1','','','2022-07-26 08:40:54','2022-07-26 08:40:54','',2257,'https://www.drfields.com/?p=5298',0,'revision','',0),(5299,8,'2022-07-26 08:43:13','2022-07-26 08:43:13','','20190215_194444','','inherit','','closed','','20190215_194444','','','2022-07-26 08:43:13','2022-07-26 08:43:13','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_194444.mp4',0,'attachment','video/mp4',0),(5300,8,'2022-07-26 08:43:21','2022-07-26 08:43:21','','20190215_235706','','inherit','','closed','','20190215_235706','','','2022-07-26 08:43:21','2022-07-26 08:43:21','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_235706.mp4',0,'attachment','video/mp4',0),(5301,8,'2022-07-26 08:43:23','2022-07-26 08:43:23','','20190216_195500','','inherit','','closed','','20190216_195500','','','2022-07-26 08:43:23','2022-07-26 08:43:23','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500.mp4',0,'attachment','video/mp4',0),(5302,8,'2022-07-26 08:43:26','2022-07-26 08:43:26','','20190216_195900','','inherit','','closed','','20190216_195900','','','2022-07-26 08:43:26','2022-07-26 08:43:26','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900.mp4',0,'attachment','video/mp4',0),(5303,8,'2022-07-26 08:43:28','2022-07-26 08:43:28','','20190216_235405','','inherit','','closed','','20190216_235405','','','2022-07-26 08:43:28','2022-07-26 08:43:28','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405.mp4',0,'attachment','video/mp4',0),(5304,8,'2022-07-26 08:43:31','2022-07-26 08:43:31','','20190217_072234','','inherit','','closed','','20190217_072234','','','2022-07-26 08:43:31','2022-07-26 08:43:31','',2257,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234.mp4',0,'attachment','video/mp4',0),(5305,8,'2022-07-26 08:45:01','2022-07-26 08:45:01','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_194444.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_235706.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_235706.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n</div>\r\n</div>\r\n','16500 feet to 18400','','inherit','closed','closed','','2257-revision-v1','','','2022-07-26 08:45:01','2022-07-26 08:45:01','',2257,'https://www.drfields.com/?p=5305',0,'revision','',0),(5306,8,'2022-07-26 08:46:53','2022-07-26 08:46:53','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_194444.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_235706.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_235706.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n</div>\r\n</div>\r\n','16500 feet to 18400','','inherit','closed','closed','','2257-revision-v1','','','2022-07-26 08:46:53','2022-07-26 08:46:53','',2257,'https://www.drfields.com/?p=5306',0,'revision','',0),(5307,8,'2022-07-26 08:50:37','2022-07-26 08:50:37','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_194444.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_235706.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234.mp4\"][/video]\r\n</div>\r\n</div>\r\n','16500 feet to 18400','','inherit','closed','closed','','2257-revision-v1','','','2022-07-26 08:50:37','2022-07-26 08:50:37','',2257,'https://www.drfields.com/?p=5307',0,'revision','',0),(5308,8,'2022-07-26 08:51:24','2022-07-26 08:51:24','<h2>Kilimanjaro Arrival; 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n<br/>\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<br/>\r\n<h2>Kili- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<br/>\r\n<h2>Kili- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n<br/>\r\n<h2>Kili Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n<br/>\r\n<h2>Kili Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<br/>\r\n<h2>16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]','Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-26 08:51:24','2022-07-26 08:51:24','',5190,'https://www.drfields.com/?p=5308',0,'revision','',0),(5309,8,'2022-07-27 22:11:47','2022-07-27 22:11:47','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\n<div class=\"video-flex-wrap\">\n<div class=\"video-box\">\n\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500-1.mp4\"][/video]\n\n</div>\n<div class=\"video-box\">\n\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\n\n</div>\n</div>\n<div class=\"video-flex-wrap\">\n<div class=\"video-box\">\n\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\n\n</div>\n<div class=\"video-box\">\n\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234-1.mp4\"][/video]\n\n</div>\n</div>','Kilimanjaro- final camp at 18,500 feet','','inherit','closed','closed','','2274-autosave-v1','','','2022-07-27 22:11:47','2022-07-27 22:11:47','',2274,'https://www.drfields.com/?p=5309',0,'revision','',0),(5310,8,'2022-07-26 08:56:43','2022-07-26 08:56:43','20190217 072131','20190217 072131','20190217 072131','inherit','closed','closed','','20190217_072131-2','','','2022-07-26 08:56:43','2022-07-26 08:56:43','',2274,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072131-1.jpg',0,'attachment','image/jpeg',0),(5311,8,'2022-07-26 08:56:56','2022-07-26 08:56:56','20190217 072223','20190217 072223','20190217 072223','inherit','closed','closed','','20190217_072223-2','','','2022-07-26 08:56:56','2022-07-26 08:56:56','',2274,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072223-1.jpg',0,'attachment','image/jpeg',0),(5312,8,'2022-07-26 08:57:48','2022-07-26 08:57:48','','20190216_195500 (1)','','inherit','','closed','','20190216_195500-1','','','2022-07-26 08:57:48','2022-07-26 08:57:48','',2274,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500-1.mp4',0,'attachment','video/mp4',0),(5313,8,'2022-07-26 08:57:54','2022-07-26 08:57:54','','20190216_195900','','inherit','','closed','','20190216_195900-2','','','2022-07-26 08:57:54','2022-07-26 08:57:54','',2274,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4',0,'attachment','video/mp4',0),(5314,8,'2022-07-26 08:57:57','2022-07-26 08:57:57','','20190216_235405','','inherit','','closed','','20190216_235405-2','','','2022-07-26 08:57:57','2022-07-26 08:57:57','',2274,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4',0,'attachment','video/mp4',0),(5315,8,'2022-07-26 08:58:00','2022-07-26 08:58:00','','20190217_072234','','inherit','','closed','','20190217_072234-2','','','2022-07-26 08:58:00','2022-07-26 08:58:00','',2274,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234-1.mp4',0,'attachment','video/mp4',0),(5316,8,'2022-07-26 09:03:33','2022-07-26 09:03:33','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500-1.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234-1.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n\r\n\r\n\r\n\r\n\r\n','Kilimanjaro- final camp at 18,500 feet','','inherit','closed','closed','','2274-revision-v1','','','2022-07-26 09:03:33','2022-07-26 09:03:33','',2274,'https://www.drfields.com/?p=5316',0,'revision','',0),(5317,8,'2022-07-26 09:04:06','2022-07-26 09:04:06','[gallery columns=\"2\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500-1.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234-1.mp4\"][/video]\r\n\r\n</div>\r\n</div>','Kilimanjaro- final camp at 18,500 feet','','inherit','closed','closed','','2274-revision-v1','','','2022-07-26 09:04:06','2022-07-26 09:04:06','',2274,'https://www.drfields.com/?p=5317',0,'revision','',0),(5318,8,'2022-07-26 09:04:48','2022-07-26 09:04:48','[gallery columns=\"2\" size=\"large\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500-1.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234-1.mp4\"][/video]\r\n\r\n</div>\r\n</div>','Kilimanjaro- final camp at 18,500 feet','','inherit','closed','closed','','2274-revision-v1','','','2022-07-26 09:04:48','2022-07-26 09:04:48','',2274,'https://www.drfields.com/?p=5318',0,'revision','',0),(5319,8,'2022-07-26 09:05:14','2022-07-26 09:05:14','[gallery columns=\"2\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500-1.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234-1.mp4\"][/video]\r\n\r\n</div>\r\n</div>','Kilimanjaro- final camp at 18,500 feet','','inherit','closed','closed','','2274-revision-v1','','','2022-07-26 09:05:14','2022-07-26 09:05:14','',2274,'https://www.drfields.com/?p=5319',0,'revision','',0),(5320,8,'2022-07-26 09:05:34','2022-07-26 09:05:34','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500-1.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234-1.mp4\"][/video]\r\n\r\n</div>\r\n</div>','Kilimanjaro- final camp at 18,500 feet','','inherit','closed','closed','','2274-revision-v1','','','2022-07-26 09:05:34','2022-07-26 09:05:34','',2274,'https://www.drfields.com/?p=5320',0,'revision','',0),(5321,8,'2022-07-26 09:22:54','2022-07-26 09:22:54','<h2>Kilimanjaro Arrival; 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n<br/>\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<br/>\r\n<h2>Kili- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<br/>\r\n<h2>Kili- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n<br/>\r\n<h2>Kili Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n<br/>\r\n<h2>Kili Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<br/>\r\n<h2>16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n<br/>\r\n<h2>Kilimanjaro- final camp at 18,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n','Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-26 09:22:54','2022-07-26 09:22:54','',5190,'https://www.drfields.com/?p=5321',0,'revision','',0),(5322,8,'2022-07-26 09:34:52','2022-07-26 09:34:52','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5331,5324,5326,5327,5328,5329,5330,5332\"]','Hiking to the Summit 19341 Feet','','publish','closed','closed','','hiking-to-the-summit-19-341-feet','','','2022-07-28 04:26:30','2022-07-28 04:26:30','',0,'https://www.drfields.com/?page_id=5322',0,'page','',0),(5323,8,'2022-07-26 09:34:52','2022-07-26 09:34:52','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]','Hiking to the Summit 19341 Feet','','inherit','closed','closed','','5322-revision-v1','','','2022-07-26 09:34:52','2022-07-26 09:34:52','',5322,'https://www.drfields.com/?p=5323',0,'revision','',0),(5324,8,'2022-07-26 09:35:14','2022-07-26 09:35:14','20190217 191648','20190217 191648','20190217 191648','inherit','closed','closed','','20190217_191648','','','2022-07-26 09:35:14','2022-07-26 09:35:14','',5322,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_191648.jpg',0,'attachment','image/jpeg',0),(5325,8,'2022-07-26 09:35:22','2022-07-26 09:35:22','20190217 192258','20190217 192258','20190217 192258','inherit','closed','closed','','20190217_192258','','','2022-07-26 09:35:22','2022-07-26 09:35:22','',5322,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_192258.jpg',0,'attachment','image/jpeg',0),(5326,8,'2022-07-26 09:35:34','2022-07-26 09:35:34','20190217 194052','20190217 194052','20190217 194052','inherit','closed','closed','','20190217_194052','','','2022-07-26 09:35:34','2022-07-26 09:35:34','',5322,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_194052.jpg',0,'attachment','image/jpeg',0),(5327,8,'2022-07-26 09:35:44','2022-07-26 09:35:44','20190217 201950','20190217 201950','20190217 201950','inherit','closed','closed','','20190217_201950','','','2022-07-26 09:35:44','2022-07-26 09:35:44','',5322,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_201950.jpg',0,'attachment','image/jpeg',0),(5328,8,'2022-07-26 09:35:59','2022-07-26 09:35:59','20190217 202018','20190217 202018','20190217 202018','inherit','closed','closed','','20190217_202018','','','2022-07-26 09:35:59','2022-07-26 09:35:59','',5322,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_202018.jpg',0,'attachment','image/jpeg',0),(5329,8,'2022-07-26 09:36:10','2022-07-26 09:36:10','20190217 224853','20190217 224853','20190217 224853','inherit','closed','closed','','20190217_224853','','','2022-07-26 09:36:10','2022-07-26 09:36:10','',5322,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_224853.jpg',0,'attachment','image/jpeg',0),(5330,8,'2022-07-26 09:36:20','2022-07-26 09:36:20','20190217 230834','20190217 230834','20190217 230834','inherit','closed','closed','','20190217_230834','','','2022-07-26 09:36:20','2022-07-26 09:36:20','',5322,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_230834.jpg',0,'attachment','image/jpeg',0),(5331,8,'2022-07-26 09:36:31','2022-07-26 09:36:31','20190218 033826','20190218 033826','20190218 033826','inherit','closed','closed','','20190218_033826','','','2022-07-26 09:36:31','2022-07-26 09:36:31','',5322,'https://www.drfields.com/wp-content/uploads/2022/07/20190218_033826.jpg',0,'attachment','image/jpeg',0),(5332,8,'2022-07-26 09:36:41','2022-07-26 09:36:41','20190306 053640','20190306 053640','20190306 053640','inherit','closed','closed','','20190306_053640','','','2022-07-26 09:36:41','2022-07-26 09:36:41','',5322,'https://www.drfields.com/wp-content/uploads/2022/07/20190306_053640.jpg',0,'attachment','image/jpeg',0),(5333,8,'2022-07-26 09:37:11','2022-07-26 09:37:11','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5324,5325,5326,5327,5328,5329,5330,5331,5332\"]','Hiking to the Summit 19341 Feet','','inherit','closed','closed','','5322-autosave-v1','','','2022-07-26 09:37:11','2022-07-26 09:37:11','',5322,'https://www.drfields.com/?p=5333',0,'revision','',0),(5334,8,'2022-07-26 09:37:13','2022-07-26 09:37:13','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5324,5325,5326,5327,5328,5329,5330,5331,5332\"]','Hiking to the Summit 19341 Feet','','inherit','closed','closed','','5322-revision-v1','','','2022-07-26 09:37:13','2022-07-26 09:37:13','',5322,'https://www.drfields.com/?p=5334',0,'revision','',0),(5335,8,'2022-07-26 09:37:21','2022-07-26 09:37:21','<h2>Kilimanjaro Arrival; 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n<br/>\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<br/>\r\n<h2>Kili- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<br/>\r\n<h2>Kili- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n<br/>\r\n<h2>Kili Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n<br/>\r\n<h2>Kili Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<br/>\r\n<h2>16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n<br/>\r\n<h2>Kilimanjaro- final camp at 18,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n<br/>\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5324,5325,5326,5327,5328,5329,5330,5331,5332\"]','Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-26 09:37:21','2022-07-26 09:37:21','',5190,'https://www.drfields.com/?p=5335',0,'revision','',0),(5336,8,'2022-07-26 09:43:50','2022-07-26 09:43:50','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n  <div class=\"reports-desc\">The trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a></p>\r\n<p style=\"text-align: center;\"><a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></p></div>\r\n</div>\r\n\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Hiking to 11,400 ft</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 09:43:50','2022-07-26 09:43:50','',2208,'https://www.drfields.com/?p=5336',0,'revision','',0),(5337,8,'2022-07-26 09:49:16','2022-07-26 09:49:16','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n  <div class=\"reports-desc\">The trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\">\r\n<a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-9.jpg\" alt=\"\" />\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Finally-hiking\"><strong>See Photos</strong></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Hiking to 11,400 ft</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 09:49:16','2022-07-26 09:49:16','',2208,'https://www.drfields.com/?p=5337',0,'revision','',0),(5338,8,'2022-07-26 09:57:25','2022-07-26 09:57:25','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n  <div class=\"reports-desc\">The trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\">\r\n<a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\"></div>\r\n  <div class=\"reports-desc\">After a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-4.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-3.jpg\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/killi-trailhead-2.jpg\" />\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person\'s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Getting-to-the-trailhead\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Hiking to 11,400 ft</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 09:57:25','2022-07-26 09:57:25','',2208,'https://www.drfields.com/?p=5338',0,'revision','',0),(5339,8,'2022-07-26 10:00:22','2022-07-26 10:00:22','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n  <div class=\"reports-desc\">The trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\">\r\n<a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\"></div>\r\n  <div class=\"reports-desc\">After a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_221519-scaled.jpg\">\r\n    <img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-scaled.jpg\"></div>\r\n  <div class=\"reports-desc\">After a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n<h3>Hiking to 11,400 ft</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 10:00:22','2022-07-26 10:00:22','',2208,'https://www.drfields.com/?p=5339',0,'revision','',0),(5340,8,'2022-07-26 10:02:57','2022-07-26 10:02:57','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n  <div class=\"reports-desc\">The trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\">\r\n<a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\"></div>\r\n  <div class=\"reports-desc\">After a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_221519-scaled.jpg\">    <img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-scaled.jpg\"></div>\r\n  <div class=\"reports-desc\">After a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n<h3>Hiking to 11,400 ft</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 10:02:57','2022-07-26 10:02:57','',2208,'https://www.drfields.com/?p=5340',0,'revision','',0),(5341,8,'2022-07-26 10:40:14','2022-07-26 10:40:14','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n  <div class=\"reports-desc\">The trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\">\r\n<a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\"></div>\r\n  <div class=\"reports-desc\">After a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n<div class=\"reports-img-desc\">\r\n[gallery display=\"grid\" link=\"none\" ids=\"5235,5231\"]\r\n  <div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_221519-scaled.jpg\">    <img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-scaled.jpg\"></div>\r\n  <div class=\"reports-desc\">After a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n<h3>Hiking to 11,400 ft</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 10:40:14','2022-07-26 10:40:14','',2208,'https://www.drfields.com/?p=5341',0,'revision','',0),(5342,8,'2022-07-26 10:40:43','2022-07-26 10:40:43','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n  <div class=\"reports-desc\">The trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\">\r\n<a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\"></div>\r\n  <div class=\"reports-desc\">After a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_221519-scaled.jpg\">    <img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-scaled.jpg\"></div>\r\n  <div class=\"reports-desc\">After a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n<h3>Hiking to 11,400 ft</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 10:40:43','2022-07-26 10:40:43','',2208,'https://www.drfields.com/?p=5342',0,'revision','',0),(5343,8,'2022-07-26 10:41:23','2022-07-26 10:41:23','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_221519-scaled.jpg\" /> <img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-scaled.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n<h3>Hiking to 11,400 ft</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 10:41:23','2022-07-26 10:41:23','',2208,'https://www.drfields.com/?p=5343',0,'revision','',0),(5344,8,'2022-07-26 10:42:02','2022-07-26 10:42:02','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n<h3>Hiking to 11,400 ft</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 10:42:02','2022-07-26 10:42:02','',2208,'https://www.drfields.com/?p=5344',0,'revision','',0),(5345,8,'2022-07-26 10:42:43','2022-07-26 10:42:43','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n<h3>Hiking to 11,400 ft</h3>\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 10:42:43','2022-07-26 10:42:43','',2208,'https://www.drfields.com/?p=5345',0,'revision','',0),(5347,8,'2022-07-26 10:47:07','2022-07-26 10:47:07','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 10:47:07','2022-07-26 10:47:07','',2208,'https://www.drfields.com/?p=5347',0,'revision','',0),(5348,8,'2022-07-26 10:48:06','2022-07-26 10:48:06','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 10:48:06','2022-07-26 10:48:06','',2208,'https://www.drfields.com/?p=5348',0,'revision','',0),(5349,8,'2022-07-26 10:48:39','2022-07-26 10:48:39','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n&nbsp;\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 10:48:39','2022-07-26 10:48:39','',2208,'https://www.drfields.com/?p=5349',0,'revision','',0),(5350,8,'2022-07-26 10:57:00','2022-07-26 10:57:00','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"onpopup\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n\r\n</div>\r\n</div>\r\n\r\n\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n</div>\r\n</div>\r\n\r\n','Kili- Hiking to 13,400 feet','','publish','closed','closed','','kili-hiking-to-13400-feet','','','2022-07-27 22:08:33','2022-07-27 22:08:33','',0,'https://www.drfields.com/?page_id=5350',0,'page','',0),(5351,8,'2022-07-26 10:54:14','2022-07-26 10:54:14','20190213 203442','20190213 203442','Dr. Fields and the Head Cook','inherit','closed','closed','','20190213_203442','','','2022-07-27 22:05:53','2022-07-27 22:05:53','',5350,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_203442.jpg',0,'attachment','image/jpeg',0),(5352,8,'2022-07-26 10:54:21','2022-07-26 10:54:21','20190213 205238','20190213 205238','Head Cook & Assistant Cook','inherit','closed','closed','','20190213_205238','','','2022-07-27 22:05:59','2022-07-27 22:05:59','',5350,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_205238.jpg',0,'attachment','image/jpeg',0),(5353,8,'2022-07-26 10:54:27','2022-07-26 10:54:27','20190214 010718','20190214 010718','','inherit','closed','closed','','20190214_010718','','','2022-07-27 22:06:32','2022-07-27 22:06:32','',5350,'https://www.drfields.com/wp-content/uploads/2022/07/20190214_010718.jpg',0,'attachment','image/jpeg',0),(5354,8,'2022-07-26 10:54:29','2022-07-26 10:54:29','20190214 073441','20190214 073441','','inherit','closed','closed','','20190214_073441','','','2022-07-27 22:06:32','2022-07-27 22:06:32','',5350,'https://www.drfields.com/wp-content/uploads/2022/07/20190214_073441.jpg',0,'attachment','image/jpeg',0),(5355,8,'2022-07-26 10:54:37','2022-07-26 10:54:37','20190214 193905','20190214 193905','','inherit','closed','closed','','20190214_193905','','','2022-07-27 22:06:33','2022-07-27 22:06:33','',5350,'https://www.drfields.com/wp-content/uploads/2022/07/20190214_193905.jpg',0,'attachment','image/jpeg',0),(5356,8,'2022-07-26 10:54:46','2022-07-26 10:54:46','20190214 215727','20190214 215727','','inherit','closed','closed','','20190214_215727','','','2022-07-27 22:06:35','2022-07-27 22:06:35','',5350,'https://www.drfields.com/wp-content/uploads/2022/07/20190214_215727.jpg',0,'attachment','image/jpeg',0),(5357,8,'2022-07-26 10:54:55','2022-07-26 10:54:55','20190214 231958','20190214 231958','Dr. Fields and the Sherpa','inherit','closed','closed','','20190214_231958','','','2022-07-27 22:06:06','2022-07-27 22:06:06','',5350,'https://www.drfields.com/wp-content/uploads/2022/07/20190214_231958.jpg',0,'attachment','image/jpeg',0),(5358,8,'2022-07-26 10:55:01','2022-07-26 10:55:01','20190215 001209','20190215 001209','Dr. Fields and a Fellow Hiker','inherit','closed','closed','','20190215_001209','','','2022-07-27 22:06:12','2022-07-27 22:06:12','',5350,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_001209.jpg',0,'attachment','image/jpeg',0),(5359,8,'2022-07-26 10:55:08','2022-07-26 10:55:08','20190215 064154','20190215 064154','','inherit','closed','closed','','20190215_064154','','','2022-07-27 22:06:37','2022-07-27 22:06:37','',5350,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_064154.jpg',0,'attachment','image/jpeg',0),(5360,8,'2022-07-26 10:55:17','2022-07-26 10:55:17','20190215 081438','20190215 081438','','inherit','closed','closed','','20190215_081438','','','2022-07-27 22:06:36','2022-07-27 22:06:36','',5350,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_081438.jpg',0,'attachment','image/jpeg',0),(5361,8,'2022-07-26 10:55:26','2022-07-26 10:55:26','20190215 082043','20190215 082043','','inherit','closed','closed','','20190215_082043','','','2022-07-27 22:06:35','2022-07-27 22:06:35','',5350,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_082043.jpg',0,'attachment','image/jpeg',0),(5362,8,'2022-07-26 10:55:34','2022-07-26 10:55:34','20190215 082536','20190215 082536','','inherit','closed','closed','','20190215_082536','','','2022-07-27 22:06:35','2022-07-27 22:06:35','',5350,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_082536.jpg',0,'attachment','image/jpeg',0),(5363,8,'2022-07-26 10:57:00','2022-07-26 10:57:00','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500-1.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234-1.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n</div>\r\n</div>','Kili- Hiking to 13,500 feet','','inherit','closed','closed','','5350-revision-v1','','','2022-07-26 10:57:00','2022-07-26 10:57:00','',5350,'https://www.drfields.com/?p=5363',0,'revision','',0),(5364,8,'2022-07-27 22:04:52','2022-07-27 22:04:52','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\n<div class=\"video-flex-wrap\">\n<div class=\"video-box\">\n\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500-1.mp4\"][/video]\n\n</div>\n<div class=\"video-box\"></div>\n</div>\n<div class=\"video-flex-wrap\">\n<div class=\"video-box\">\n\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\n\n</div>\n<div class=\"video-box\">\n\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\n\n</div>\n</div>','Kili- Hiking to 13,400 feet','','inherit','closed','closed','','5350-autosave-v1','','','2022-07-27 22:04:52','2022-07-27 22:04:52','',5350,'https://www.drfields.com/?p=5364',0,'revision','',0),(5365,8,'2022-07-26 10:58:11','2022-07-26 10:58:11','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500-1.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234-1.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n</div>\r\n</div>','Kili- Hiking to 13,400 feet','','inherit','closed','closed','','5350-revision-v1','','','2022-07-26 10:58:11','2022-07-26 10:58:11','',5350,'https://www.drfields.com/?p=5365',0,'revision','',0),(5366,8,'2022-07-26 11:00:09','2022-07-26 11:00:09','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 15,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-2.jpg\" alt=\"\" width=\"170\" height=\"226\" /><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Kilihiking15000-4.jpg\" width=\"423\" height=\"238\" />\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Kili-Hiking-to-15000-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 11:00:09','2022-07-26 11:00:09','',2208,'https://www.drfields.com/?p=5366',0,'revision','',0),(5367,8,'2022-07-26 11:01:16','2022-07-26 11:01:16','<h2>Kilimanjaro Arrival; 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n<br/>\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<br/>\r\n<h2>Kili- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<br/>\r\n<h2>Kili- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n<br/>\r\n<h2>Kili Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n<br/>\r\n<h2>Kili- Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<br/>\r\n<h2>Kili Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<br/>\r\n<h2>16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n<br/>\r\n<h2>Kilimanjaro- final camp at 18,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n<br/>\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5324,5325,5326,5327,5328,5329,5330,5331,5332\"]','Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-26 11:01:16','2022-07-26 11:01:16','',5190,'https://www.drfields.com/?p=5367',0,'revision','',0),(5368,8,'2022-07-26 11:06:59','2022-07-26 11:06:59','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-3.jpg\" alt=\"\" width=\"128\" height=\"170\" />\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today\'s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around\r\n10:30 - 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 11:06:59','2022-07-26 11:06:59','',2208,'https://www.drfields.com/?p=5368',0,'revision','',0),(5369,8,'2022-07-26 11:10:09','2022-07-26 11:10:09','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Hiking to 18,500 ft</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-4864 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-13.jpg\" alt=\"16500 18400 13\" width=\"492\" height=\"277\" />\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\n&nbsp;\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-4865 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2021/08/16500-18400-12.jpg\" alt=\"16500 18400 12\" width=\"240\" height=\"425\" />\r\n\r\n&nbsp;\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to <em>climb to the top of Kilimanjaro!</em>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/16-500-feet-to-18-400\"><strong>See Photos</strong></a></p>\r\n\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 11:10:09','2022-07-26 11:10:09','',2208,'https://www.drfields.com/?p=5369',0,'revision','',0),(5370,8,'2022-07-26 11:27:22','2022-07-26 11:27:22','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro- final camp at 18,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 11:27:22','2022-07-26 11:27:22','',2208,'https://www.drfields.com/?p=5370',0,'revision','',0),(5371,8,'2022-07-26 11:28:26','2022-07-26 11:28:26','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro- final camp at 18,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n&nbsp;\r\n\r\n[caption id=\"attachment_2282\" align=\"alignleft\" width=\"397\"]<img class=\"size-full wp-image-2282\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/summit-19341-7.jpg\" alt=\"Summit 19,341 (7)\" width=\"397\" height=\"310\" /> Summit 19,341[/caption]\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Hiking-to-the-summit-19-341-feet\"><strong>See Photos</strong></a></p>\r\n\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 11:28:26','2022-07-26 11:28:26','',2208,'https://www.drfields.com/?p=5371',0,'revision','',0),(5372,8,'2022-07-26 11:35:39','2022-07-26 11:35:39','Img','Img','Img','inherit','closed','closed','','img','','','2022-07-26 11:35:39','2022-07-26 11:35:39','',0,'https://www.drfields.com/wp-content/uploads/2022/07/img.png',0,'attachment','image/png',0),(5373,8,'2022-07-26 11:36:48','2022-07-26 11:36:48','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro- final camp at 18,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">The night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n    \r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>The descent and saying goodbye</h3>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n\r\nWe woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<a href=\"https://www.drfields.com/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 11:36:48','2022-07-26 11:36:48','',2208,'https://www.drfields.com/?p=5373',0,'revision','',0),(5374,8,'2022-07-26 11:39:18','2022-07-26 11:39:18','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro- final camp at 18,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">The night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n    \r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\"></div>\r\n  <div class=\"reports-desc\">We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 11:39:18','2022-07-26 11:39:18','',2208,'https://www.drfields.com/?p=5374',0,'revision','',0),(5375,8,'2022-07-26 11:43:35','2022-07-26 11:43:35','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro- final camp at 18,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">The night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n    \r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" class=\"alignleft\">We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 11:43:35','2022-07-26 11:43:35','',2208,'https://www.drfields.com/?p=5375',0,'revision','',0),(5376,8,'2022-07-26 11:44:35','2022-07-26 11:44:35','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro- final camp at 18,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">The night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n    \r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" class=\"alignleft\" width=\"400\">We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 11:44:35','2022-07-26 11:44:35','',2208,'https://www.drfields.com/?p=5376',0,'revision','',0),(5377,8,'2022-07-26 11:56:18','2022-07-26 11:56:18','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro- final camp at 18,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">The night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n    \r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" class=\"alignleft\" width=\"400\">We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<img class=\"size-full wp-image-2213 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/klimanjaro-5.jpg\" alt=\"Klimanjaro (5)\" width=\"128\" height=\"128\" />\r\n\r\nEven though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I\'ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I\'ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can\'t imagine what it\'s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI\'ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It\'s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n<div style=\"clear:both\"></div>\r\n<img class=\"alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" />\r\n<p style=\"text-align: center;\"><a href=\"https://www.drfields.com/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a></p>\r\n\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 11:56:18','2022-07-26 11:56:18','',2208,'https://www.drfields.com/?p=5377',0,'revision','',0),(5378,8,'2022-07-26 12:02:27','2022-07-26 12:02:27','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro- final camp at 18,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">The night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n    \r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" class=\"alignleft\" width=\"400\">We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"2299,2306\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Even though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I’ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I’ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can’t imagine what it’s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI’ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It’s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n&nbsp;\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 12:02:27','2022-07-26 12:02:27','',2208,'https://www.drfields.com/?p=5378',0,'revision','',0),(5379,8,'2022-07-26 12:03:22','2022-07-26 12:03:22','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro- final camp at 18,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">The night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n    \r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" class=\"alignleft\" width=\"400\">We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n[gallery columns=\"2\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"2299,2306\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Even though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I’ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I’ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can’t imagine what it’s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI’ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It’s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n&nbsp;\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 12:03:22','2022-07-26 12:03:22','',2208,'https://www.drfields.com/?p=5379',0,'revision','',0),(5380,8,'2022-07-26 12:04:47','2022-07-26 12:04:47','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro- final camp at 18,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">The night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n    \r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" class=\"alignleft\" width=\"400\">We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg\" /></div>\r\n  <div class=\"reports-desc\">Even though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I’ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I’ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can’t imagine what it’s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI’ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It’s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n&nbsp;\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 12:04:47','2022-07-26 12:04:47','',2208,'https://www.drfields.com/?p=5380',0,'revision','',0),(5381,8,'2022-07-26 12:05:38','2022-07-26 12:05:38','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro- final camp at 18,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">The night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n    \r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" class=\"alignleft\" width=\"400\">We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg\" class=\"alignleft\" width=\"400\"/>Even though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I’ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I’ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can’t imagine what it’s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI’ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It’s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n&nbsp;\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 12:05:38','2022-07-26 12:05:38','',2208,'https://www.drfields.com/?p=5381',0,'revision','',0),(5382,8,'2022-07-26 12:06:44','2022-07-26 12:06:44','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro- final camp at 18,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">The night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n    \r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" class=\"alignleft\" width=\"400\">We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg\" class=\"alignleft\" width=\"400\"/>Even though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I’ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I’ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can’t imagine what it’s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI’ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It’s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\">\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 12:06:44','2022-07-26 12:06:44','',2208,'https://www.drfields.com/?p=5382',0,'revision','',0),(5383,8,'2022-07-26 12:07:07','2022-07-26 12:07:07','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Pre Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro- final camp at 18,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">The night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n    \r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" class=\"alignleft\" width=\"400\">We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg\" class=\"alignleft\" width=\"400\"/>Even though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I’ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I’ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can’t imagine what it’s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI’ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It’s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\">\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 12:07:07','2022-07-26 12:07:07','',2208,'https://www.drfields.com/?p=5383',0,'revision','',0),(5384,8,'2022-07-26 12:10:55','2022-07-26 12:10:55','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro- final camp at 18,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/camp-16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/camp.png\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/16000ft.mp4\" poster=\"https://www.drfields.com/wp-content/uploads/2021/08/dance-18000.png\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">The night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n    \r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" class=\"alignleft\" width=\"400\">We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg\" class=\"alignleft\" width=\"400\"/>Even though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I’ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I’ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can’t imagine what it’s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI’ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It’s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\">\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-26 12:10:55','2022-07-26 12:10:55','',2208,'https://www.drfields.com/?p=5384',0,'revision','',0),(5385,8,'2022-07-27 04:18:02','2022-07-27 04:18:02','<div id=\"kiliminaroimg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-1.jpg\" />\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-2.jpg\" />\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-4.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-5.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-6.jpg\" />\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-7.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-8.jpg\" />\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-9.jpg\" /></div>','Sunrise up top and heading down','','inherit','closed','closed','','2283-autosave-v1','','','2022-07-27 04:18:02','2022-07-27 04:18:02','',2283,'https://www.drfields.com/?p=5385',0,'revision','',0),(5386,8,'2022-07-26 12:13:45','2022-07-26 12:13:45','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2288,2289,2290,2291,2292,2293\"]\r\n<div id=\"kiliminaroimg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-1.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-2.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-4.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-5.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-6.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-7.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-8.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-9.jpg\" /></div>','Sunrise up top and heading down','','inherit','closed','closed','','2283-revision-v1','','','2022-07-26 12:13:45','2022-07-26 12:13:45','',2283,'https://www.drfields.com/?p=5386',0,'revision','',0),(5387,8,'2022-07-26 12:14:29','2022-07-26 12:14:29','<div id=\"kiliminaroimg\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-1.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-2.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-4.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-5.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-6.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-7.jpg\" /><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-8.jpg\" />\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-9.jpg\" /></div>','Sunrise up top and heading down','','inherit','closed','closed','','2283-revision-v1','','','2022-07-26 12:14:29','2022-07-26 12:14:29','',2283,'https://www.drfields.com/?p=5387',0,'revision','',0),(5388,8,'2022-07-27 03:30:32','2022-07-27 03:30:32','<h2>Kilimanjaro Arrival; 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n<br/>\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<br/>\r\n<h2>Kili- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<br/>\r\n<h2>Kili- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n<br/>\r\n<h2>Kili Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n<br/>\r\n<h2>Kili- Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<br/>\r\n<h2>Kili Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<br/>\r\n<h2>16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n<br/>\r\n<h2>Kilimanjaro- final camp at 18,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n<br/>\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5324,5325,5326,5327,5328,5329,5330,5331,5332\"]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-27 03:30:32','2022-07-27 03:30:32','',5190,'https://www.drfields.com/?p=5388',0,'revision','',0),(5389,8,'2022-07-27 03:31:09','2022-07-27 03:31:09','<h2>Kilimanjaro Arrival 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n<br/>\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<br/>\r\n<h2>Kili- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<br/>\r\n<h2>Kili- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n<br/>\r\n<h2>Kili Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n<br/>\r\n<h2>Kili- Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<br/>\r\n<h2>Kili Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<br/>\r\n<h2>16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n<br/>\r\n<h2>Kilimanjaro- final camp at 18,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n<br/>\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5324,5325,5326,5327,5328,5329,5330,5331,5332\"]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-27 03:31:09','2022-07-27 03:31:09','',5190,'https://www.drfields.com/?p=5389',0,'revision','',0),(5390,8,'2022-07-27 03:31:50','2022-07-27 03:31:50','<h2>Kilimanjaro Arrival- 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n<br/>\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<br/>\r\n<h2>Kili- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<br/>\r\n<h2>Kili- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n<br/>\r\n<h2>Kili Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n<br/>\r\n<h2>Kili- Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<br/>\r\n<h2>Kili Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<br/>\r\n<h2>16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n<br/>\r\n<h2>Kilimanjaro- final camp at 18,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n<br/>\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5324,5325,5326,5327,5328,5329,5330,5331,5332\"]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-27 03:31:50','2022-07-27 03:31:50','',5190,'https://www.drfields.com/?p=5390',0,'revision','',0),(5391,8,'2022-07-27 03:32:05','2022-07-27 03:32:05','<h2>Kilimanjaro Arrival - 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n<br/>\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<br/>\r\n<h2>Kili- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<br/>\r\n<h2>Kili- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n<br/>\r\n<h2>Kili Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n<br/>\r\n<h2>Kili- Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<br/>\r\n<h2>Kili Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<br/>\r\n<h2>16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n<br/>\r\n<h2>Kilimanjaro- final camp at 18,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n<br/>\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5324,5325,5326,5327,5328,5329,5330,5331,5332\"]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-27 03:32:05','2022-07-27 03:32:05','',5190,'https://www.drfields.com/?p=5391',0,'revision','',0),(5392,8,'2022-07-27 03:35:41','2022-07-27 03:35:41','<h2>Kilimanjaro Arrival- 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n<br/>\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<br/>\r\n<h2>Kilimanjaro- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<br/>\r\n<h2>Kilimanjaro- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n<br/>\r\n<h2>Kilimanjaro Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n<br/>\r\n<h2>Kilimanjaro- Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<br/>\r\n<h2>Kilimanjaro Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<br/>\r\n<h2>Kilimanjaro Hiking 16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n<br/>\r\n<h2>Kilimanjaro Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n<br/>\r\n<h2>Climbing To The Top 19,341 Ft/5895 Meters And Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5324,5325,5326,5327,5328,5329,5330,5331,5332\"]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-27 03:35:41','2022-07-27 03:35:41','',5190,'https://www.drfields.com/?p=5392',0,'revision','',0),(5393,8,'2022-07-27 03:39:39','2022-07-27 03:39:39','<h2>Kilimanjaro Arrival- 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n<br/>\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<br/>\r\n<h2>Kilimanjaro- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<br/>\r\n<h2>Kilimanjaro- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n<br/>\r\n<h2>Kilimanjaro Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n<br/>\r\n<h2>Kilimanjaro- Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<br/>\r\n<h2>Kilimanjaro Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<br/>\r\n<h2>Kilimanjaro Hiking 16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n<br/>\r\n<h2>Kilimanjaro Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n<br/>\r\n<h2>Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters And Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5324,5325,5326,5327,5328,5329,5330,5331,5332\"]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-27 03:39:39','2022-07-27 03:39:39','',5190,'https://www.drfields.com/?p=5393',0,'revision','',0),(5394,8,'2022-07-27 03:43:05','2022-07-27 03:43:05','<h2>Kilimanjaro Arrival- 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro- Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Hiking 16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n&nbsp;\r\n<h2>Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters And Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5324,5325,5326,5327,5328,5329,5330,5331,5332\"]\r\n\r\n&nbsp;\r\n<h2>Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290,2288\"]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-27 03:43:05','2022-07-27 03:43:05','',5190,'https://www.drfields.com/?p=5394',0,'revision','',0),(5395,8,'2022-07-27 03:43:49','2022-07-27 03:43:49','<h2>Kilimanjaro Arrival- 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro- Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Hiking 16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n&nbsp;\r\n<h2>Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters And Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5324,5325,5326,5327,5328,5329,5330,5331,5332\"]\r\n\r\n&nbsp;\r\n<h2>Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-27 03:43:49','2022-07-27 03:43:49','',5190,'https://www.drfields.com/?p=5395',0,'revision','',0),(5396,8,'2022-07-27 03:46:09','2022-07-27 03:46:09','<h2>Kilimanjaro Arrival- 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro- Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Hiking 16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n&nbsp;\r\n<h2>Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters And Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5324,5325,5326,5327,5328,5329,5330,5331,5332\"]\r\n\r\n&nbsp;\r\n<h2>Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\r\n\r\n&nbsp;\r\n<h2>Final Goodbyes And Certificates</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2306,2299,2297,2296,2304,2303,2302,2301,2300\"]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-27 03:46:09','2022-07-27 03:46:09','',5190,'https://www.drfields.com/?p=5396',0,'revision','',0),(5397,8,'2022-07-27 03:47:00','2022-07-27 03:47:00','<h2>Kilimanjaro Arrival- 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro- Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Hiking 16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<h2>Kilimanjaro Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n&nbsp;\r\n<h2>Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters And Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5324,5325,5326,5327,5328,5329,5330,5331,5332\"]\r\n\r\n&nbsp;\r\n<h2>Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\r\n\r\n&nbsp;\r\n<h2>Final Goodbyes And Certificates</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2306,2302,2297,2303,2296,2304,2301,2300,2299\"]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-27 03:47:00','2022-07-27 03:47:00','',5190,'https://www.drfields.com/?p=5397',0,'revision','',0),(5398,8,'2022-07-27 04:07:09','2022-07-27 04:07:09','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro Final Camp At 18,500 Feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing to the top 19,341 ft/5895 meters and beginning the descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">The night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n    \r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" class=\"alignleft\" width=\"400\">We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg\" class=\"alignleft\" width=\"400\"/>Even though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I’ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I’ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can’t imagine what it’s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI’ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It’s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\">\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-27 04:07:09','2022-07-27 04:07:09','',2208,'https://www.drfields.com/?p=5398',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (5399,8,'2022-07-27 04:09:02','2022-07-27 04:09:02','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro Final Camp At 18,500 Feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters And Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">The night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n    \r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" class=\"alignleft\" width=\"400\">We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg\" class=\"alignleft\" width=\"400\"/>Even though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I’ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I’ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can’t imagine what it’s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI’ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It’s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\">\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-27 04:09:02','2022-07-27 04:09:02','',2208,'https://www.drfields.com/?p=5399',0,'revision','',0),(5400,8,'2022-07-27 04:18:56','2022-07-27 04:18:56','[gallery columns=\"4\" size=\"wcsquare\" link=\"file\" ids=\"2293,2287,2286,2285,2292,2291,2290,2289\"]','Sunrise up top and heading down','','inherit','closed','closed','','2283-revision-v1','','','2022-07-27 04:18:56','2022-07-27 04:18:56','',2283,'https://www.drfields.com/?p=5400',0,'revision','',0),(5401,8,'2022-07-27 04:19:24','2022-07-27 04:19:24','[gallery columns=\"4\" size=\"wcstandard\" link=\"file\" ids=\"2293,2287,2286,2285,2292,2291,2290,2289\"]','Sunrise up top and heading down','','inherit','closed','closed','','2283-revision-v1','','','2022-07-27 04:19:24','2022-07-27 04:19:24','',2283,'https://www.drfields.com/?p=5401',0,'revision','',0),(5402,8,'2022-07-27 04:19:57','2022-07-27 04:19:57','[gallery columns=\"4\" size=\"wcstandard\" link=\"file\" captions=\"hide\" ids=\"2293,2287,2286,2285,2292,2291,2290,2289\"]','Sunrise up top and heading down','','inherit','closed','closed','','2283-revision-v1','','','2022-07-27 04:19:57','2022-07-27 04:19:57','',2283,'https://www.drfields.com/?p=5402',0,'revision','',0),(5403,8,'2022-07-27 04:21:15','2022-07-27 04:21:15','[gallery columns=\"4\" size=\"wcstandard\" link=\"file\" ids=\"2306,2304,2303,2302,2301,2300,2296,2297,2299\"]','Final goodbyes and certificates','','inherit','closed','closed','','2294-revision-v1','','','2022-07-27 04:21:15','2022-07-27 04:21:15','',2294,'https://www.drfields.com/?p=5403',0,'revision','',0),(5404,8,'2022-07-27 04:21:44','2022-07-27 04:21:44','[gallery columns=\"4\" size=\"wcstandard\" link=\"file\" display=\"grid\" ids=\"2306,2296,2304,2303,2302,2301,2300,2297,2299\"]','Final goodbyes and certificates','','inherit','closed','closed','','2294-revision-v1','','','2022-07-27 04:21:44','2022-07-27 04:21:44','',2294,'https://www.drfields.com/?p=5404',0,'revision','',0),(5405,8,'2022-07-27 04:22:15','2022-07-27 04:22:15','[gallery columns=\"4\" size=\"wcstandard\" link=\"file\" display=\"grid\" ids=\"2306,2297,2304,2303,2302,2301,2300,2296,2299\"]','Final goodbyes and certificates','','inherit','closed','closed','','2294-revision-v1','','','2022-07-27 04:22:15','2022-07-27 04:22:15','',2294,'https://www.drfields.com/?p=5405',0,'revision','',0),(5406,8,'2022-07-27 04:22:39','2022-07-27 04:22:39','[gallery columns=\"4\" size=\"wcstandard\" link=\"file\" display=\"grid\" captions=\"hide\" ids=\"2306,2297,2304,2303,2302,2301,2300,2296,2299\"]','Final goodbyes and certificates','','inherit','closed','closed','','2294-revision-v1','','','2022-07-27 04:22:39','2022-07-27 04:22:39','',2294,'https://www.drfields.com/?p=5406',0,'revision','',0),(5407,8,'2022-07-27 04:22:50','2022-07-27 04:22:50','[gallery columns=\"5\" size=\"wcstandard\" link=\"file\" display=\"grid\" captions=\"hide\" ids=\"2306,2297,2304,2303,2302,2301,2300,2296,2299\"]','Final goodbyes and certificates','','inherit','closed','closed','','2294-revision-v1','','','2022-07-27 04:22:50','2022-07-27 04:22:50','',2294,'https://www.drfields.com/?p=5407',0,'revision','',0),(5408,8,'2022-07-27 04:26:51','2022-07-27 04:26:51','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">At 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">We had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Kilimanjaro Final Camp At 18,500 Feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">Wake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow. \r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters And Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\">The night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n    \r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div></div>\r\n</div>\r\n&nbsp;\r\n<h3>The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" class=\"alignleft\" width=\"400\">We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<div class=\"reports-img-desc\">\r\n  <div class=\"imgbox\"></div>\r\n  <div class=\"reports-desc\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg\" class=\"alignleft\" width=\"400\"/>Even though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I’ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I’ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can’t imagine what it’s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI’ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It’s a tremendous accomplishment, but something I would not want to repeat.\r\n\r\n<div class=\"btn-wrap\">\r\n<a href=\"/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a>\r\n</div></div>\r\n</div>\r\n&nbsp;\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n<img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\">\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n<div class=\"btn-wrap\">\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a>\r\n</div>\r\n\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-27 04:26:51','2022-07-27 04:26:51','',2208,'https://www.drfields.com/?p=5408',0,'revision','',0),(5409,8,'2022-07-27 04:28:32','2022-07-27 04:28:32','<h1>Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3>Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Pre-Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<div class=\"btn-wrap\"><a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\"><a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\"><a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\"><a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>Kilimanjaro Final Camp At 18,500 Feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters And Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<div class=\"btn-wrap\"><a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3>The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" width=\"400\" />We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n<div class=\"btn-wrap\"><a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2>Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg\" width=\"400\" />Even though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I’ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I’ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can’t imagine what it’s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI’ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It’s a tremendous accomplishment, but something I would not want to repeat.\r\n<div class=\"btn-wrap\"><a href=\"/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" /></div>\r\n</div>\r\n&nbsp;\r\n<h3 style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n&nbsp;\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-27 04:28:32','2022-07-27 04:28:32','',2208,'https://www.drfields.com/?p=5409',0,'revision','',0),(5410,8,'2022-07-27 04:42:06','2022-07-27 04:42:06','<h1 class=\"heading-style\">Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3 class=\"heading-style\">Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2 class=\"heading-style\">Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<div class=\"btn-wrap\"><a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\"><a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\"><a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\"><a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Kilimanjaro Final Camp At 18,500 Feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters And Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<div class=\"btn-wrap\"><a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" width=\"400\" />We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n<div class=\"btn-wrap\"><a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg\" width=\"400\" />Even though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I’ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I’ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can’t imagine what it’s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI’ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It’s a tremendous accomplishment, but something I would not want to repeat.\r\n<div class=\"btn-wrap\"><a href=\"/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" /></div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\" style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n&nbsp;\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-27 04:42:06','2022-07-27 04:42:06','',2208,'https://www.drfields.com/?p=5410',0,'revision','',0),(5411,8,'2022-07-27 04:43:35','2022-07-27 04:43:35','<h2 class=\"heading-style\">Kilimanjaro Arrival- 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Hiking 16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters And Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5324,5325,5326,5327,5328,5329,5330,5331,5332\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Final Goodbyes And Certificates</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2306,2302,2297,2303,2296,2304,2301,2300,2299\"]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-27 04:43:35','2022-07-27 04:43:35','',5190,'https://www.drfields.com/?p=5411',0,'revision','',0),(5412,8,'2022-07-27 04:47:20','2022-07-27 04:47:20','<h2 class=\"heading-style\">Kilimanjaro Arrival- 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Hiking 16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters And Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5324,5325,5326,5327,5328,5329,5330,5331,5332\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Final Goodbyes And Certificates</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2306,2302,2297,2303,2296,2304,2301,2300,2299\"]\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-27 04:47:20','2022-07-27 04:47:20','',5190,'https://www.drfields.com/?p=5412',0,'revision','',0),(5413,8,'2022-07-27 04:47:37','2022-07-27 04:47:37','<h1 class=\"heading-style\">Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3 class=\"heading-style\">Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2 class=\"heading-style\">Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<div class=\"btn-wrap\"><a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\"><a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Kili Hiking to 15,500 feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\"><a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Getting to camp at 16,500 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\"><a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Kilimanjaro Final Camp At 18,500 Feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters And Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<div class=\"btn-wrap\"><a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" width=\"400\" />We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n<div class=\"btn-wrap\"><a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg\" width=\"400\" />Even though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I’ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I’ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can’t imagine what it’s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI’ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It’s a tremendous accomplishment, but something I would not want to repeat.\r\n<div class=\"btn-wrap\"><a href=\"/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" /></div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\" style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n&nbsp;\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-27 04:47:37','2022-07-27 04:47:37','',2208,'https://www.drfields.com/?p=5413',0,'revision','',0),(5414,8,'2022-07-27 21:42:12','2022-07-27 21:42:12','','iwp_log_62e1b1345588b','','publish','closed','closed','','iwp_log_62e1b1345588b','','','2022-07-27 21:42:12','2022-07-27 21:42:12','',0,'https://www.drfields.com/iwp_log/iwp_log_62e1b1345588b/',0,'iwp_log','',0),(5415,8,'2022-07-27 21:42:23','2022-07-27 21:42:23','','iwp_log_62e1b13fcd107','','publish','closed','closed','','iwp_log_62e1b13fcd107','','','2022-07-27 21:42:23','2022-07-27 21:42:23','',0,'https://www.drfields.com/iwp_log/iwp_log_62e1b13fcd107/',0,'iwp_log','',0),(5416,8,'2022-07-27 21:42:32','2022-07-27 21:42:32','','iwp_log_62e1b148ddefb','','publish','closed','closed','','iwp_log_62e1b148ddefb','','','2022-07-27 21:42:32','2022-07-27 21:42:32','',0,'https://www.drfields.com/iwp_log/iwp_log_62e1b148ddefb/',0,'iwp_log','',0),(5417,8,'2022-07-27 21:43:51','2022-07-27 21:43:51','','iwp_log_62e1b19739e8d','','publish','closed','closed','','iwp_log_62e1b19739e8d','','','2022-07-27 21:43:51','2022-07-27 21:43:51','',0,'https://www.drfields.com/iwp_log/iwp_log_62e1b19739e8d/',0,'iwp_log','',0),(5418,8,'2022-07-27 21:44:00','2022-07-27 21:44:00','','iwp_log_62e1b1a0f2d7b','','publish','closed','closed','','iwp_log_62e1b1a0f2d7b','','','2022-07-27 21:44:00','2022-07-27 21:44:00','',0,'https://www.drfields.com/iwp_log/iwp_log_62e1b1a0f2d7b/',0,'iwp_log','',0),(5419,8,'2022-07-27 21:44:30','2022-07-27 21:44:30','','iwp_log_62e1b1be449b2','','publish','closed','closed','','iwp_log_62e1b1be449b2','','','2022-07-27 21:44:30','2022-07-27 21:44:30','',0,'https://www.drfields.com/iwp_log/iwp_log_62e1b1be449b2/',0,'iwp_log','',0),(5420,8,'2022-07-27 22:05:19','2022-07-27 22:05:19','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n\r\n</div>\r\n</div>','Kili- Hiking to 13,400 feet','','inherit','closed','closed','','5350-revision-v1','','','2022-07-27 22:05:19','2022-07-27 22:05:19','',5350,'https://www.drfields.com/?p=5420',0,'revision','',0),(5421,8,'2022-07-27 22:06:46','2022-07-27 22:06:46','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"onpopup\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n\r\n</div>\r\n</div>','Kili- Hiking to 13,400 feet','','inherit','closed','closed','','5350-revision-v1','','','2022-07-27 22:06:46','2022-07-27 22:06:46','',5350,'https://www.drfields.com/?p=5421',0,'revision','',0),(5422,8,'2022-07-27 22:07:37','2022-07-27 22:07:37','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]','Kilimanjaro Hiking to 15,500 Feet','','inherit','closed','closed','','2239-revision-v1','','','2022-07-27 22:07:37','2022-07-27 22:07:37','',2239,'https://www.drfields.com/?p=5422',0,'revision','',0),(5423,8,'2022-07-27 22:08:10','2022-07-27 22:08:10','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"onpopup\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n\r\n</div>\r\n</div>\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]','Kili- Hiking to 13,400 feet','','inherit','closed','closed','','5350-revision-v1','','','2022-07-27 22:08:10','2022-07-27 22:08:10','',5350,'https://www.drfields.com/?p=5423',0,'revision','',0),(5424,8,'2022-07-27 22:08:33','2022-07-27 22:08:33','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"onpopup\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n\r\n</div>\r\n</div>\r\n\r\n\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n\r\n</div>\r\n</div>\r\n\r\n','Kili- Hiking to 13,400 feet','','inherit','closed','closed','','5350-revision-v1','','','2022-07-27 22:08:33','2022-07-27 22:08:33','',5350,'https://www.drfields.com/?p=5424',0,'revision','',0),(5425,8,'2022-07-27 22:12:37','2022-07-27 22:12:37','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234-1.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n</div>\r\n</div>','Kilimanjaro- final camp at 18,500 feet','','inherit','closed','closed','','2274-revision-v1','','','2022-07-27 22:12:37','2022-07-27 22:12:37','',2274,'https://www.drfields.com/?p=5425',0,'revision','',0),(5426,8,'2022-07-27 22:14:34','2022-07-27 22:14:34','<h2 class=\"heading-style\">Kilimanjaro Arrival- 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Hiking 16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5331,5324,5326,5327,5328,5329,5330,5332\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Final Goodbyes And Certificates</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2306,2302,2297,2303,2296,2304,2301,2300,2299\"]\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-27 22:14:34','2022-07-27 22:14:34','',5190,'https://www.drfields.com/?p=5426',0,'revision','',0),(5427,8,'2022-07-27 22:16:17','2022-07-27 22:16:17','[gallery columns=\"5\" size=\"wcstandard\" link=\"file\" display=\"grid\" captions=\"hide\" ids=\"2303,2302,2304,2301,2296,2299,2300,2297,2306\"]','Final goodbyes and certificates','','inherit','closed','closed','','2294-revision-v1','','','2022-07-27 22:16:17','2022-07-27 22:16:17','',2294,'https://www.drfields.com/?p=5427',0,'revision','',0),(5428,8,'2022-07-27 22:16:20','2022-07-27 22:16:20','<h2 class=\"heading-style\">Kilimanjaro Arrival- 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Hiking 16500 feet to 18400</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5331,5324,5326,5327,5328,5329,5330,5332\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Final Goodbyes And Certificates</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2303,2302,2304,2301,2296,2299,2300,2297,2306\"]\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-27 22:16:20','2022-07-27 22:16:20','',5190,'https://www.drfields.com/?p=5428',0,'revision','',0),(5429,8,'2022-07-27 22:17:57','2022-07-27 22:17:57','<h2 class=\"heading-style\">Kilimanjaro Arrival - 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking 16,500 feet to 18,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5331,5324,5326,5327,5328,5329,5330,5332\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Final Goodbyes And Certificates</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2303,2302,2304,2301,2296,2299,2300,2297,2306\"]\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-27 22:17:57','2022-07-27 22:17:57','',5190,'https://www.drfields.com/?p=5429',0,'revision','',0),(5430,8,'2022-07-27 22:20:32','2022-07-27 22:20:32','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_194444.mp4\"][/video]\r\n\r\n\r\n</div>\r\n</div>','Kilimanjaro Hiking to 15,500 Feet','','inherit','closed','closed','','2239-revision-v1','','','2022-07-27 22:20:32','2022-07-27 22:20:32','',2239,'https://www.drfields.com/?p=5430',0,'revision','',0),(5431,8,'2022-07-27 22:21:17','2022-07-27 22:21:17','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_235706.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500.mp4\"][/video]\r\n\r\n\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900.mp4\"][/video]\r\n\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405.mp4\"][/video]\r\n\r\n\r\n</div>\r\n</div>\r\n','Getting To Camp At 16,500 Feet','','inherit','closed','closed','','2257-revision-v1','','','2022-07-27 22:21:17','2022-07-27 22:21:17','',2257,'https://www.drfields.com/?p=5431',0,'revision','',0),(5432,8,'2022-07-27 22:25:26','2022-07-27 22:25:26','<h1 class=\"heading-style\">Report of My Kilimanjaro Climb</h1>\r\n<em>By Peter A. Fields, MD, DC</em>\r\n\r\nAfter waiting ten years with this on my bucket list, I finally was going to climb Kilimanjaro.\r\n<h3 class=\"heading-style\">Getting to Mount Kilimanjaro</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg\" alt=\"\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe trip to Kilimanjaro began with an 11-hour flight to London where I had a 36-hour layover. Saw \"Tina, The Musical\" (life and times of Tina Turner). Great show.  Then 9 ½ hour flight to Nairobi, where I spent 24 hours so I was able to see the city. Then a one-hour flight to Kilimanjaro, Tanzania. My arrival at Kilimanjaro airport was on Sunday night. This was followed by a two-and-a-half-hour ride, with half of it on a very bumpy dirt road, before reaching the destination at the base camp. Since it was almost midnight, I went straight to my tent, which was quite luxurious for camping, and included a sink, a bathroom, and even a shower. I took advantage of a quick shower and went straight to bed.\r\n<div class=\"btn-wrap\"><a href=\"https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"><img src=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg\" /></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a nice breakfast, where I met the other climbers and our trek leaders, we went for a short two-hour hike just to see the local terrain. It was beautiful, with waterfalls and lots of lush plants and greenery. The guide leader went through our entire pack to make sure that we would be taking everything we needed and that everything was in good shape. The rest of the day was just spent relaxing, except for a short sunset hike of 10 minutes, where at the top of the small hill they had wine waiting for us. A pleasant surprise.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-pre-hike/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2 class=\"heading-style\">Getting to the Trailhead and First Day Hike Towards Kilimanjaro</h2>\r\n[gallery display=\"grid\" link=\"none\" columns=\"4\" size=\"wcsquare\" ids=\"5235,5231\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAfter a two-hour ride, we arrived at the check-in point. The weather was hot enough to wear shorts and t-shirts since we were only 3 degrees off the equator. There we saw the more than 45 plus Sherpa’s that would accompany us. There were six Sherpa’s( there were six hikers) to carry each person’s clothing (colder weather gear, nighttime clothes, toiletries, etc.). Then six to carry our bedding, and tents ( double roofed for better rain protection), six would carry our food for 7 days ( three full meals a day), eight of them made up the kitchen team, another team of two would carry the oxygen and medicine, four to carry the toilets and tents over them, plus about 10 other Sherpa’s would carry all the tents, tables and chairs. There were also 10 more to carry all of the sherpa’s food and equipment.\r\n\r\nWe had to register and show our passports, and after that, we took a short 20-minute drive to the trailhead. Arriving at noon, a very nice, well-prepared lunch was ready for us. We started the hike at 7700 feet and climbed to 9300 feet. The area was mostly jungle-like, with a lot of fantastic plants, birds, and other exotic wildlife, including Colobus monkeys and other animals. When we arrived at the camp at 9300 feet, the tents were already set up, and we unpacked our gear in each individual tent, had dinner and went to sleep.\r\n<div class=\"btn-wrap\"><a href=\"/Kili-Getting-to-the-trailhead/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Hiking to 11,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5256,5261\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nAt 6:30 AM we were woken up with a hot bowl of water to wash up and get ready for the day. A very full breakfast was prepared for us and then we started off to hike again. For hiking, it’s important to eat three square meals a day as well as drink a minimum of three liters of water a day. Without this exhaustion, dehydration, and more can happen. The guides made sure that we would eat a lot and consume lots of water.\r\n\r\nWe headed off on our hike up to 11,400 feet, crossing from the Montane Forest into the Hagenia Zone, where we saw many different plants and beautiful trees throughout the canyon.\r\n\r\nI felt pretty good, as I had taken Diamox, a medicine to help prevent altitude sickness. I had a Camelback-style drinking system so I was drinking copious amounts of water. At night it was cold but with the proper gear (well worth the expense!), I felt warm.\r\n<div class=\"btn-wrap\"><a href=\"/kili-hiking-to-11400-ft/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Hiking to 13,400 ft</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5351,5352\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWe had another early wake-up call today and another substantial breakfast (scrambled eggs, toast, pancakes, fruit, toast, jelly, peanut butter, tea/coffee, and more. We hiked across a large plateau and gained about 2,100 feet in altitude. It was very interesting as we passed into the upper heath zone, where there were no more trees here, just a lot of different plants. And lots of volcanic rock (the last active volcano here took place over 10,000 years ago).\r\n\r\nThe hiking was very slow and consistent, as they say in Swahili, “Poli, Poli.” Again I felt very good when arriving at Moir camp at 13,500 feet. We had beautiful views of the mountain as the clouds moved away. It was really spectacular!\r\n<div class=\"btn-wrap\"><a href=\"/kili-hiking-to-13400-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Kilimanjaro Hiking to 15,500 Feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5271,5270\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWe woke up again at 6:30 AM, had breakfast at 7, and were hiking by 7:30. Today was a shorter hike of only 3.1 miles, but we did climb 2000 feet. It was slow in some parts and the steep sections were even slower. Finally, we arrived at camp after hiking for only 2 hours and 20 minutes. We were now at 15,500 feet. The air is very thin, so with every step you take, you have to think about it. But when we arrived at camp, everything seemed to settle down. During the afternoon there was a hale storm that turned into snow, so everybody went into their tents. I probably took a 3-hour well-needed nap. After a good dinner, we all went to bed, but not until we viewed the beautiful skies at 15,500 feet in the southern hemisphere.\r\n<div class=\"btn-wrap\"><a href=\"/kili-hiking-to-15500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Getting To Camp At 16,500 Feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5291,5283\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWe had the usual wake-up call at 6:30 AM and were on the trail by 7:30. It snowed during the night, but only half an inch or so, making everything white and beautiful. The good news is this meant it was right around 32 degrees. The sun came out, so it was warm when we hiked but a little bit cooler when clouds were overhead. Plus with the altitude (lots of breathing) and hiking effort, one was rarely cold. Today’s hike was only 1,000 feet of climbing and a short hike to the base camp. The big hike tomorrow will only be about an hour and 20 minutes, but it will be over a lot of rocks and boulders and will be steep in some places. We arrived at the base camp around 10:30 – 11 in the morning. We were supposed to go for a short hike from there without our packs but it started snowing for over an hour, so that was canceled. Tomorrow morning, we will have a 4 AM wake-up call in anticipation of a 2,300-foot elevation climb up to 18,650 feet.\r\n<div class=\"btn-wrap\"><a href=\"/16-500-feet-to-18-400/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">Kilimanjaro Final Camp At 18,500 Feet</h3>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5292,5293\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nWake-up call at 4 AM and breakfast at 4:30. The slow group left at 5. We (my hiking partner, myself, and our guide) left about 5:30. At this altitude of over 16,000 feet, everyone moves very slowly. The first little part was steep and slightly snow-covered, but then it got extremely steep and no longer covered in snow.\r\n\r\nWe climbed 2,400 feet over 2.6 miles. The first hour was in the dark, but we all had headlamps. It was very rocky and we had to use our hands sometimes to climb. We ran into a few other tours on the trail and all of us had to cut across a mountainside since the snow had obliterated the trail the night before.\r\n\r\nWe were now over 17, 000 feet. One of the guides from another tour (all the guides know each other) had a pickaxe and so he chopped thru the snow to make it easier on our footing. Even so, it was very slippery. There were times we had to use all four extremities to climb, even kneeling on the next step up because the step was too high to reach with our foot. Breathing was becoming more and more labored and it was difficult to catch our breath in the thinning air.\r\n\r\nWhen we stopped at 18,000 feet for a snack and water, we thought the worst was over, but that wasn’t the case. The next 500 feet were very rocky and slippery, and that along with the very thin air meant we had to take three or four steps before needing to stop for a break. Like having a bag over your head and pulling for each breath.\r\n\r\nFinally, we reached the craters ridge and were very happy. These are remnants of glaciers that once covered this entire valley. The whole valley was snow-covered and looked like we were walking in a desert. When we arrived, we were not allowed to lie down in our tents for about a good hour because we needed to let our bodies acclimate to the thin air at 18,600 feet.\r\n\r\nAfter that, we enjoyed a well-deserved nap before an early dinner because we would be getting up again at 4 AM to climb to the top of Kilimanjaro!\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-final-camp-at-18500-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5331,5372\"]\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\nThe night was extremely cold, with ground temperatures probably down to zero degrees Fahrenheit. We did everything to keep ourselves warm! I laid my down jacket on top of my sleeping bag (which was rated to zero degrees), plus I had a liner inside the sleeping bag which gave me an additional 25 degrees of warmth. I am definitely not a cold weather person but with the right gear, it was not too bad.\r\n\r\nWe were woken up at 4 AM. After eating and packing our stuff (only our personal things; the Sherpa took care of the sleeping bag and tent each morning and night), we were off for a 75-minute climb, basically straight up and extremely cold. Fortunately, I had bought the best mittens ever and my hands were not cold. Nonetheless, my legs and face took the brunt of it, and we moved very, very slowly. 10 feet could take several minutes. After a very hard, straight-up climbing, we had to cross a flat plane to the actual top of the mountain. The wind was blowing like crazy. The air temp was around minus 10 Fahrenheit with the wind chill probably down to negative 45 or 50 Fahrenheit. But all 6 of us had made it. It was a special feeling…an unbelievable feeling!\r\n\r\nI always carry some ashes of my parents no matter where I travel in this world. And since this was a very special place, I quietly said a prayer, took off my mittens (brrr), and sprinkled some of their ashes at the top. They had made it the whole way with me!\r\n\r\nWe took our pictures and then had to get going due to the intense winds and brutal cold. Fortunately, we summited very early and there were only one or two other groups at the top. Later on, there would be at least 50-100 people. We saw a gorgeous sunrise since it was shortly before 7 in the morning. We were almost on the equator, and sunrise and sunsets are always at around 6:30 to 7 am without much variation from season to season.\r\n\r\nImmediately, once we started to go down, we could feel the release of pressure in our lungs and chest. The descent and decreasing pressure made it a lot easier on our lungs, plus it was now all downhill. After an hour or two, our quads really felt it, and we would be walking downhill for the next 5 to 6 hours!\r\n\r\nWe did stop for a small break for some lunch, but our appetite was low due to the altitude. Several of the hikers experienced altitude sickness on the way up, with nausea, diarrhea, headaches loss of appetite, and weakness. I felt worse while descending, but fortunately, I had only lost my appetite with slight nausea and it lasted only for a short period of time. Anyway, we finally made it to camp at 10,500 feet. The weather was really nice and a bit warmer, between about 45 to 50 degrees or more. What a difference from the night before! We all had a good meal and rested, as we had been hiking downhill for over 8 hours, and all of our legs were extremely tired.\r\n<div class=\"btn-wrap\"><a href=\"/Hiking-to-the-summit-19-341-feet/\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\">The descent and saying goodbye</h3>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg\" width=\"400\" />We woke up at 6:30 AM, which was a big difference from 4 AM. Today would be our last night, and we would be saying goodbye to all the Sherpas as they would leave the trail. Only the guides would continue with us. I volunteered to be the spokesperson of the group, which meant I would be collecting the tip money and giving a short speech.\r\n\r\nAfter breakfast, the 40 or so sherpas gathered around singing and dancing. I actually joined them in the dancing, which I have a video of. I was very tired, but it was still worth it. I gave a 3-minute speech thanking every one of them for all of their hard work and dedication, and telling them that their help, whether by carrying a table, carrying sleeping bags, setting up tents, preparing food and everything else they did for us, was all very special and helped us so much.\r\n\r\nWe then set off for our last 6 to 7-hour hike downhill. Although it was not very steep, it was a dried-up river bed that was full of rocks and stones, making footing uneasy, and causing our quads to be even more on fire. I and several others had foldable walking sticks and this helped a lot. But we knew the end was coming, so we just kept going. We stopped for lunch and continued on. After about 7 hours, we saw the base camp. Nothing could be sweeter! I signed out at the Ranger station and basically collapsed into the waiting truck. There were a lot of campers and hikers ending in this same area, so they drove us about 20 minutes away.\r\n\r\nWe had some lunch and then drove the rest of the way back to the lodge, which was a beautiful hotel about half an hour outside of Arusha on an old coffee plantation. Everybody had their own cabin. For the first time in 9 days, I took a shower. It was wonderful! Then we all gathered with the two guides and I said a few more words to represent the group. We had a nice dinner, and then two people left for the airport by 7 PM. That night, was my first night of sleep in a bed, after 9 days. It was fantastic! The mission was accomplished!\r\n<div class=\"btn-wrap\"><a href=\"/Sunrise-up-top-and-heading-down\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Was Amazing! Final Goodbyes and certificate</h2>\r\n<div class=\"reports-img-desc\">\r\n<div class=\"imgbox\"></div>\r\n<div class=\"reports-desc\">\r\n\r\n<img class=\"alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg\" width=\"400\" />Even though the trip was not exactly as described in the pamphlet, it was something I had had on my bucket list for over 10 years. It was extremely difficult at times. Some of our hikers had difficulty even moving and needed assistance. But we all persevered. I’ve done 10 Ironman races so far (now 11!), which require monumental training. But the long hike up to the crater from 16,800 feet to 18,400, with the subsequent day of summiting, followed by the 9,000-foot descent, were some of the hardest things that I’ve ever done. And that includes all my Ironman competitions.\r\n\r\nYou just can’t imagine what it’s like trying to move at that altitude. As I said before, it is similar to having a paper bag over your head and trying to grasp for air. There were times I took two or three steps and then had to pause for 15 or 20 seconds just to get my heart rate and breathing back down, repeating that again and again and again. Never looking ahead, only down, because sometimes ten feet took 45-60 seconds to hike. All this while enduring the sub-freezing temperature, the blowing snow, and the wind chill factors. Nothing but grit and determination to keep you going. But the views were spectacular and the feeling of being literally on top of the world made it all worth it.\r\n\r\nI’ll continue to enjoy my Ironman triathlons and continue to do them as long as I can. But as far as hiking up a mountain to 19,341 feet, this will be my one and only time! It’s a tremendous accomplishment, but something I would not want to repeat.\r\n<div class=\"btn-wrap\"><a href=\"/Final-goodbyes-and-certificates\"><strong>See Photos</strong></a>\r\n<a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg\" /></div>\r\n</div>\r\n&nbsp;\r\n<h3 class=\"heading-style\" style=\"text-align: center;\">Thank You to Everyone Who Made Kilimanjaro A Possibility!</h3>\r\nThank you to everyone that sent me well wishes before, during, and after my climb. It meant so much!\r\n\r\nI also thank my parents who gave me the will and determination to achieve all the goals in my life, no matter how hard they are.\r\nThey always ingrained this determination in me and encouraged me to just put my head down and keep going to achieve my goals.\r\nAs I said above, they were with me the whole way and always will be.\r\n\r\nThank you for taking the time to read this. I hope this will inspire you that if a goal is desired, to just put your head down and keep going no matter how difficult it may seem.\r\n<div class=\"btn-wrap\"><a href=\"/kilimanjaro-climb-gallery/\"><strong>View Trip Gallery</strong></a></div>\r\n&nbsp;\r\n<strong>Peter A. Fields, MD, DC </strong>\r\n<strong>The Athletic Doc<sup>®</sup></strong>\r\n\r\n<a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Click here</a> to find out more about <strong>The Athletic Doc<sup>® </sup></strong>','Report of My Kilimanjaro Climb','','inherit','closed','closed','','2208-revision-v1','','','2022-07-27 22:25:26','2022-07-27 22:25:26','',2208,'https://www.drfields.com/?p=5432',0,'revision','',0),(5433,8,'2022-07-28 04:22:51','2022-07-28 04:22:51','<h2 class=\"heading-style\">Kilimanjaro Arrival - 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking 16,500 feet to 18,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5331,5324,5326,5327,5328,5329,5330,5332\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Final Goodbyes And Certificates</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2303,2302,2304,2301,2296,2299,2300,2297,2306\"]\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-28 04:22:51','2022-07-28 04:22:51','',5190,'https://www.drfields.com/?p=5433',0,'revision','',0),(5434,8,'2022-07-28 04:22:59','2022-07-28 04:22:59','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_194444.mp4\"][/video]\r\n\r\n</div>\r\n</div>','Kilimanjaro Hiking to 15,500 Feet','','inherit','closed','closed','','2239-revision-v1','','','2022-07-28 04:22:59','2022-07-28 04:22:59','',2239,'https://www.drfields.com/?p=5434',0,'revision','',0),(5435,8,'2022-07-28 04:26:30','2022-07-28 04:26:30','[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5331,5324,5326,5327,5328,5329,5330,5332\"]','Hiking to the Summit 19341 Feet','','inherit','closed','closed','','5322-revision-v1','','','2022-07-28 04:26:30','2022-07-28 04:26:30','',5322,'https://www.drfields.com/?p=5435',0,'revision','',0),(5436,8,'2022-07-28 04:29:38','2022-07-28 04:29:38','<h2 class=\"heading-style\">Kilimanjaro Arrival - 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_014135.mp4\"][/video]</div>\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_013855.mp4\"][/video]</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking 16,500 feet to 18,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5331,5324,5326,5327,5328,5329,5330,5332\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Final Goodbyes And Certificates</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2303,2302,2304,2301,2296,2299,2300,2297,2306\"]\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-28 04:29:38','2022-07-28 04:29:38','',5190,'https://www.drfields.com/?p=5436',0,'revision','',0),(5437,8,'2022-07-28 04:30:59','2022-07-28 04:30:59','<h2 class=\"heading-style\">Kilimanjaro Arrival - 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_014135.mp4\"][/video]</div>\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_013855.mp4\"][/video]</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_235333.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"480\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190212_023336.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking 16,500 feet to 18,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5331,5324,5326,5327,5328,5329,5330,5332\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Final Goodbyes And Certificates</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2303,2302,2304,2301,2296,2299,2300,2297,2306\"]\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-28 04:30:59','2022-07-28 04:30:59','',5190,'https://www.drfields.com/?p=5437',0,'revision','',0),(5438,8,'2022-07-28 04:31:46','2022-07-28 04:31:46','<h2 class=\"heading-style\">Kilimanjaro Arrival - 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_014135.mp4\"][/video]</div>\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_013855.mp4\"][/video]</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_235333.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"480\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190212_023336.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190213_015500.mp4\"][/video]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking 16,500 feet to 18,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5331,5324,5326,5327,5328,5329,5330,5332\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Final Goodbyes And Certificates</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2303,2302,2304,2301,2296,2299,2300,2297,2306\"]\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-28 04:31:46','2022-07-28 04:31:46','',5190,'https://www.drfields.com/?p=5438',0,'revision','',0),(5439,8,'2022-07-28 04:33:23','2022-07-28 04:33:23','<h2 class=\"heading-style\">Kilimanjaro Arrival - 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_014135.mp4\"][/video]</div>\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_013855.mp4\"][/video]</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_235333.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"480\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190212_023336.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190213_015500.mp4\"][/video]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking 16,500 feet to 18,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5331,5324,5326,5327,5328,5329,5330,5332\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Final Goodbyes And Certificates</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2303,2302,2304,2301,2296,2299,2300,2297,2306\"]\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-28 04:33:23','2022-07-28 04:33:23','',5190,'https://www.drfields.com/?p=5439',0,'revision','',0),(5440,8,'2022-07-28 04:34:31','2022-07-28 04:34:31','<h2 class=\"heading-style\">Kilimanjaro Arrival - 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_014135.mp4\"][/video]</div>\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_013855.mp4\"][/video]</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_235333.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"480\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190212_023336.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190213_015500.mp4\"][/video]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_194444.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking 16,500 feet to 18,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5331,5324,5326,5327,5328,5329,5330,5332\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Final Goodbyes And Certificates</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2303,2302,2304,2301,2296,2299,2300,2297,2306\"]\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-28 04:34:31','2022-07-28 04:34:31','',5190,'https://www.drfields.com/?p=5440',0,'revision','',0),(5441,8,'2022-07-28 04:36:21','2022-07-28 04:36:21','<h2 class=\"heading-style\">Kilimanjaro Arrival - 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_014135.mp4\"][/video]</div>\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_013855.mp4\"][/video]</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_235333.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"480\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190212_023336.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190213_015500.mp4\"][/video]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_194444.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Getting To Camp At 16,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_235706.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5331,5324,5326,5327,5328,5329,5330,5332\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Final Goodbyes And Certificates</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2303,2302,2304,2301,2296,2299,2300,2297,2306\"]\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-28 04:36:21','2022-07-28 04:36:21','',5190,'https://www.drfields.com/?p=5441',0,'revision','',0),(5442,8,'2022-07-28 04:37:08','2022-07-28 04:37:08','<h2 class=\"heading-style\">Kilimanjaro Arrival - 1st day pre hike camp</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5200,5199,5201,5202,5203,5204,5205,5206\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro Pre-Hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5216,5217,5218,5219,5220\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_014135.mp4\"][/video]</div>\r\n<div class=\"video-box\">[video width=\"500\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_013855.mp4\"][/video]</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Getting to the trailhead</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5230,5231,5233,5234\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190211_235333.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"480\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190212_023336.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - First Day hike</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5235,5236,5237,5238,5239,5242,5243,5244,5245,5246\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 11,400 ft</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5253,5254,5255,5256,5257,5259,5260,5261\"]\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190213_015500.mp4\"][/video]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 13,400 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405-1.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900-1.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190214_193726.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro - Hiking to 15,500 feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" ids=\"5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_194444.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Getting To Camp At 16,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2261,2262,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190215_235706.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195500.mp4\"][/video]\r\n</div>\r\n</div>\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_195900.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190216_235405.mp4\"][/video]\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Kilimanjaro- Final Camp At 18,500 Feet</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5310,5311\"]\r\n<div class=\"video-flex-wrap\">\r\n<div class=\"video-box\">\r\n[video width=\"640\" height=\"480\" mp4=\"https://www.drfields.com/wp-content/uploads/2022/07/20190217_072234-1.mp4\"][/video]\r\n</div>\r\n<div class=\"video-box\">\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Climbing To The Top Of Kilimanjaro 19,341 Ft/5895 Meters Beginning The Descent</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"5331,5324,5326,5327,5328,5329,5330,5332\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Sunrise Up Top And Heading Down</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2285,2286,2287,2293,2292,2291,2289,2290\"]\r\n\r\n&nbsp;\r\n<h2 class=\"heading-style\">Final Goodbyes And Certificates</h2>\r\n[gallery columns=\"4\" size=\"wcsquare\" display=\"grid\" link=\"file\" captions=\"hide\" ids=\"2303,2302,2304,2301,2296,2299,2300,2297,2306\"]\r\n\r\n[video poster=\"https://www.drfields.com/wp-content/uploads/2021/08/Dancing.png\" width=\"352\" height=\"640\" mp4=\"https://www.drfields.com/wp-content/uploads/2021/08/DANCING-v3.mp4\"][/video]','Kilimanjaro Climb Gallery','','inherit','closed','closed','','5190-revision-v1','','','2022-07-28 04:37:08','2022-07-28 04:37:08','',5190,'https://www.drfields.com/?p=5442',0,'revision','',0),(5444,9,'2022-07-29 17:09:04','2022-07-29 17:09:04','<h3><img class=\"alignright wp-image-5181\" title=\"Try Regenerative Treatments for Your Hip Pain or Injury\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/regen.tissue-healing-500x375.jpeg\" alt=\"Regen.tissue HealingTry Regenerative Treatments for Your Hip Pain or Injury\" width=\"300\" height=\"225\" />Hip Pain or Injury?</h3>\nRegenerative treatments offer an effective non-surgical answer for those with hip pain or injury. If you are dealing with hip pain from arthritis, labral tears, bursitis, IT band syndrome, or another hip condition, Regenerative Orthopedics is a treatment alternative you should look into. Many common hip pain treatments provide only temporary relief because they do not treat the root cause. At OrthoRegen®, the non-surgical options we offer address the root cause.\n<h2>What Is the Root Cause of Many Cases of Hip Pain?</h2>\nOftentimes, the underlying cause of hip pain is instability due to ligament and/or tendon laxity. The instability occurs after some type of injury to these soft tissue structures of the joint. You may recall the actual injury, such as a sports injury, a fall, or an accident. It may also come from wear and tear over the years. And if the injury was strong enough to cause a tear to the hip labrum, then it is quite possible that there are also co-injuries to the ligaments and/or tendons of the hip.\n<h2>How Does Instability Affect the Hip Joint?</h2>\nMany painful hip conditions, including arthritis, begin with damage to the surrounding soft tissue, such as the ligaments. And until the instability is addressed, the joint degeneration will continue. That is because the instability generates abnormal joint motion.\n\nBut how do the instability and the “abnormal joint motion” affect the joint? You see, ligaments join bone to bone. They provide a good portion of the stability in the hip joint. Tendons also supply stability. When these soft tissue structures are injured, they become overstretched, and the joint moves around more. Stress is then placed on other structures of the joint, which causes damage to those other structures, and eventually wears them out.\n\nIf you try to picture a loose hinge in a cabinet door and consider how the loose door begins to move abnormally and then will hit at different spots on the door, you can get a better idea of what occurs during hip instability.\n<h2>Can the Instability Be Fixed?</h2>\nJoint instability due to ligament injury can be repaired with Regenerative Orthopedics, which includes Prolotherapy, PRP, and Stem Cells.\n\nSure, there are other treatments for hip pain, such as cortisone injections, but these injections only cover up the problem. They are not reparative. Not only that, but cortisone also boosts degeneration. That means the problem is only worsened with cortisone. Treatment is needed that will repair and regenerate the joint. That’s where Regenerative Orthopedics comes in.\n\nRegenerative Orthopedics target the weakened ligaments and tendons that cause instability in the hip joint. But will the pain be addressed? Weakened ligaments actually send referral pain down the legs and buttocks. Therefore, this referral pain can also be addressed once the ligaments are strengthened with regenerative treatment.\n<h2>Regenerative Orthopedics for Hip Pain and Injuries</h2>\nRegenerative Orthopedics can comprehensively target the treatment of weakened ligaments and other soft tissue and safely eliminate hip pain and offer a vital alternative to hip surgery. These regenerative treatments stimulate the natural repair of the supportive ligaments and tendons of the hip joint and promote labrum and cartilage regeneration.\n\nStudies show that Regenerative Orthopedics is an excellent option for pain relief and repair of many hip conditions. Plus, if you are looking to avoid hip surgery, these treatments are effective alternatives to surgery. In advanced cases of degeneration, PRP or Stem Cells may be recommended.\n\nIf you are experiencing hip pain, or if hip surgery has been recommended, seek a non-surgical alternative such as Regenerative Orthopedics. Our team at OrthoRegen® would be happy to serve you.','Try Regenerative Treatments for Your Hip Pain or Injury','','inherit','closed','closed','','5180-autosave-v1','','','2022-07-29 17:09:04','2022-07-29 17:09:04','',5180,'https://www.drfields.com/?p=5444',0,'revision','',0),(5445,9,'2022-07-29 17:10:48','2022-07-29 17:10:48','<h3><img class=\"alignright wp-image-5181\" title=\"Try Regenerative Treatments for Your Hip Pain or Injury\" src=\"https://www.drfields.com/wp-content/uploads/2022/07/regen.tissue-healing-500x375.jpeg\" alt=\"Regen.tissue HealingTry Regenerative Treatments for Your Hip Pain or Injury\" width=\"300\" height=\"225\" />Hip Pain or Injury?</h3>\r\nRegenerative treatments offer an effective non-surgical answer for those with hip pain or injury. If you are dealing with hip pain from arthritis, labral tears, bursitis, IT band syndrome, or another hip condition, Regenerative Orthopedics is a treatment alternative you should look into. Many common hip pain treatments provide only temporary relief because they do not treat the root cause. At OrthoRegen®, the non-surgical options we offer address the root cause.\r\n<h2>What Is the Root Cause of Many Cases of Hip Pain?</h2>\r\nOftentimes, the underlying cause of hip pain is instability due to ligament and/or tendon laxity. The instability occurs after some type of injury to these soft tissue structures of the joint. You may recall the actual injury, such as a sports injury, a fall, or an accident. It may also come from wear and tear over the years. And if the injury was strong enough to cause a tear to the hip labrum, then it is quite possible that there are also co-injuries to the ligaments and/or tendons of the hip.\r\n<h2>How Does Instability Affect the Hip Joint?</h2>\r\nMany painful hip conditions, including arthritis, begin with damage to the surrounding soft tissue, such as the ligaments. And until the instability is addressed, the joint degeneration will continue. That is because the instability generates abnormal joint motion.\r\n\r\nBut how do the instability and the “abnormal joint motion” affect the joint? You see, ligaments join bone to bone. They provide a good portion of the stability in the hip joint. Tendons also supply stability. When these soft tissue structures are injured, they become overstretched, and the joint moves around more. Stress is then placed on other structures of the joint, which causes damage to those other structures, and eventually wears them out.\r\n\r\nIf you try to picture a loose hinge in a cabinet door and consider how the loose door begins to move abnormally and then will hit at different spots on the door, you can get a better idea of what occurs during hip instability.\r\n<h2>Can the Instability Be Fixed?</h2>\r\nJoint instability due to ligament injury can be repaired with Regenerative Orthopedics, which includes Prolotherapy, PRP, and Stem Cells.\r\n\r\nSure, there are other treatments for hip pain, such as cortisone injections, but these injections only cover up the problem. They are not reparative. Not only that, but cortisone also boosts degeneration. That means the problem is only worsened with cortisone. Treatment is needed that will repair and regenerate the joint. That’s where Regenerative Orthopedics comes in.\r\n\r\nRegenerative Orthopedics target the weakened ligaments and tendons that cause instability in the hip joint. But will the pain be addressed? Weakened ligaments actually send referral pain down the legs and buttocks. Therefore, this referral pain can also be addressed once the ligaments are strengthened with regenerative treatment.\r\n<h2>Regenerative Orthopedics for Hip Pain and Injuries</h2>\r\nRegenerative Orthopedics can comprehensively target the treatment of weakened ligaments and other soft tissue and safely eliminate hip pain and offer a vital alternative to hip surgery. These regenerative treatments stimulate the natural repair of the supportive ligaments and tendons of the hip joint and promote labrum and cartilage regeneration.\r\n\r\nStudies show that Regenerative Orthopedics is an excellent option for pain relief and repair of many hip conditions. Plus, if you are looking to avoid hip surgery, these treatments are effective alternatives to surgery. In advanced cases of degeneration, PRP or Stem Cells may be recommended.\r\n\r\nIf you are experiencing hip pain, or if hip surgery has been recommended, seek a non-surgical alternative such as Regenerative Orthopedics. Our team at OrthoRegen® would be happy to serve you.','Try Regenerative Treatments for Your Hip Pain or Injury','','inherit','closed','closed','','5180-revision-v1','','','2022-07-29 17:10:48','2022-07-29 17:10:48','',5180,'https://www.drfields.com/?p=5445',0,'revision','',0),(5446,8,'2022-08-01 03:41:11','2022-08-01 03:41:11','<img class=\"wp-image-5455  alignright\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Cortisone.-Jama-1-500x419.png\" alt=\"Cortisone. Jama\" width=\"419\" height=\"351\" />\r\n<h2>Are Cortisone Shots a Good Option?</h2>\r\nCortisone shots are a common treatment option for joint pain relief. But are these injections a good course of action? Many times they are not! Even though cortisone injections are frequently recommended, they have an adverse effect on the bone and soft tissue healing.\r\n<h2>Cortisone Injections Are Harmful?</h2>\r\nCortisone shots, or corticosteroid injections, inactivate vitamin D. That means they limit calcium absorption by the gastrointestinal tract, which decreases calcium uptake for the bone. This process will ultimately lead to weakness in the bone.\r\n\r\nAdditionally, corticosteroids inhibit the release of growth hormones. What does that mean? The decrease in growth hormone will interfere with soft tissue and bone repair. The result is an overall decrease in the strength of the bones, ligaments, and tendons.\r\n\r\nFurthermore, corticosteroids inhibit chondrocyte production. Chondrocytes are the cells responsible for cartilage formation. Therefore, corticosteroids interfere with the formation of cartilage, collagen, and even blood vessel formation.\r\n<h2>Will Just One Shot of Cortisone Be a Problem?</h2>\r\nThe medical journal <em>Radiology </em>lists the side effects of cortisone injections in an article called “Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought?”.1 The article states that the side effects of cortisone injections include:\r\n<ul>\r\n 	<li><strong>Accelerated osteoarthritis progression</strong></li>\r\n 	<li><strong>Subchondral insufficiency fracture</strong></li>\r\n 	<li><strong>Complications of osteonecrosis</strong></li>\r\n 	<li><strong>Rapid joint destruction with bone loss</strong></li>\r\n</ul>\r\nThe study\'s lead researcher found that “corticosteroid injections may be associated with complications that potentially accelerate the destruction of the joint and may hasten the need for total hip and knee replacements.” He also says, “We’ve been telling patients that even if these injections don’t relieve your pain, they’re not going to hurt you.” But that is not really true. He says, “But now we suspect this is not necessarily the case.”1\r\n\r\nThe researcher continues, “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”\r\n\r\nWith this information, it would seem then that even one injection should be avoided if possible.\r\n<h2>But Does Cortisone Help with Pain?</h2>\r\nSome people do get relief from cortisone. But not all people do! And corticosteroid injections have been used for a very long time. Their anti-inflammatory and pain relief properties made their use a common practice within the medical community.\r\n\r\nHowever, the same properties that make them effective in decreasing inflammation and pain are the same properties that lead to the destruction of cartilage.\r\n<h2>The Effects of Cortisone Injections on Cartilage</h2>\r\nIn 2017, an article in the Journal of the American Medical Association (JAMA) asks the question, “What are the effects of intra-articular injection of 40 mg of triamcinolone acetonide every three months on the progression of cartilage loss and knee pain in patients with osteoarthritis?”2\r\n\r\nThe answer: “Among patients with symptomatic knee osteoarthritis, two years of intra-articular triamcinolone, compared with intra-articular saline, resulted in significantly greater cartilage volume loss and no significant difference in knee pain. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.”2\r\n<h2>Regenerative Orthopedics: An Alternative to Cortisone Injections</h2>\r\nSo what is the alternative to cortisone, considering pain relief is still necessary? That’s where Regenerative Orthopedics comes in!  Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to actually repair the arthritic joint. They don’t just cover up the pain as many other treatments do. These treatments provide pain relief. They actually heal the joints, strengthen the structures of the joints, and even boost the growth of cartilage.\r\n\r\nRegenerative Orthopedics regenerates the joint rather than causing degeneration like what occurs with cortisone injections. There is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire while returning function to your painful joint and helping you to once again participate in the activities you enjoy.\r\n\r\n1Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? <em>Radiology</em>, 2019; 190341\r\n\r\n2McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. <em>JAMA.</em> 2017;317(19):1967-1975.','Are Cortisone Shots a Good Option?','','publish','closed','open','','are-cortisone-shots-a-good-option','','','2022-08-03 21:26:01','2022-08-03 21:26:01','',0,'https://www.drfields.com/?p=5446',0,'post','',0),(5447,8,'2022-08-01 03:41:11','2022-08-01 03:41:11','Cortisone injections are a common treatment option for joint pain relief. But are these injections a good course of action? Many times they are not! Even though cortisone injections are frequently recommended, they unfortunately have an adverse effect on the bone and on soft tissue healing.\r\n<h2>Cortisone Injections Are Harmful?</h2>\r\nCortisone shots, or corticosteroid injections, inactivate vitamin D. That means they limit calcium absorption by the gastrointestinal tract, which results in a decrease in calcium uptake for the bone. This process will ultimately lead to weakness in the bone.\r\n\r\nAdditionally, corticosteroids inhibit the release of growth hormone. What does that mean? The decrease in growth hormone will interfere with the repair of soft tissue and bone. The result is an overall decrease in the strength of the bones, ligaments, and tendons.\r\n\r\nFurthermore, corticosteroids inhibit chondrocyte production. Chondrocytes are the cells responsible for cartilage formation. Therefore, corticosteroids interfere with the formation of cartilage, collagen, and even blood vessel formation.\r\n<h2>Will Just One Shot of Cortisone Be a Problem?</h2>\r\nThe medical journal <em>Radiology </em>lists side-effects of cortisone injections in an article called “Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought?”.1 The article states that the side effects of cortisone injections include:\r\n<ul>\r\n 	<li><strong>Accelerated osteoarthritis progression</strong></li>\r\n 	<li><strong>Subchondral insufficiency fracture</strong></li>\r\n 	<li><strong>Complications of osteonecrosis</strong></li>\r\n 	<li><strong>Rapid joint destruction with bone loss</strong></li>\r\n</ul>\r\nThe lead researcher of the study, found that <strong>“corticosteroid injections may be associated with complications that potentially accelerate the destruction of the joint and may hasten the need for total hip and knee replacements.”</strong> He also says,<strong> “</strong><strong>We</strong><strong>’ve been telling patients that even if these injections don’t relieve your pain, they’re not going to hurt you.” But that is not really true. He goes on to say, “But now we suspect that this is not necessarily the case.”1</strong><strong> </strong>\r\n\r\nThe researcher continues,<strong> “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”</strong><strong> </strong>\r\n\r\nWith this information, it would seem then, that even one injections should be avoided if possible.\r\n<h2>But Does Cortisone Help with Pain?</h2>\r\nSome people do get relief from cortisone. But not all people do! And corticosteroid injections have been used for a very long time. Their anti-inflammatory and pain relief properties made its use a common practice within the medical community.\r\n\r\nHowever, the same properties that make them effective in decreasing the inflammation and pain, are the same properties lead to the destruction of cartilage.\r\n<h2>The Effects of Cortisone Injections on Cartilage</h2>\r\nIn 2017, an article in the Journal of the American Medical Association (JAMA) asks the question, “What are the effects of intra-articular injection of 40 mg of triamcinolone acetonide every 3 months on the progression of cartilage loss and knee pain in patients with osteoarthritis?”2\r\n\r\nThe answer: “Among patients with symptomatic knee osteoarthritis, 2 years of intra-articular triamcinolone, compared with intra-articular saline, resulted in <strong>significantly greater cartilage volume loss and no significant difference in knee pain</strong>. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.”2\r\n<h2>Regenerative Orthopedics: An Alternative to Cortisone Injections</h2>\r\nSo what is the alternative to cortisone, considering pain relief is still necessary? That’s where Regenerative Orthopedics comes in!  Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to<strong> actually repair the arthritic joint.</strong> They don’t just cover up the pain like many other treatments do. These treatments provide pain relief. <strong>They actually heal the joint, strengthen the structures of the joints, and even boost growth of cartilage</strong>.\r\n\r\nRegenerative Orthopedics regenerates the joint rather than causing degeneration like what occurs with cortisone injections. There is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise, and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire, while returning function to your painful joint, and helping you to once again participate in the activities you enjoy.\r\n\r\n1Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? <em>Radiology</em>, 2019; 190341\r\n\r\n2McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. <em>JAMA.</em> 2017;317(19):1967-1975.','Are Cortisone Shots a Good Option?','','inherit','closed','closed','','5446-revision-v1','','','2022-08-01 03:41:11','2022-08-01 03:41:11','',5446,'https://www.drfields.com/?p=5447',0,'revision','',0),(5448,8,'2022-08-01 03:41:29','2022-08-01 03:41:29','','Are Cortisone Shots a Good Option?','','inherit','closed','closed','','cortisone-jama','','','2022-08-01 03:41:45','2022-08-01 03:41:45','',5446,'https://www.drfields.com/wp-content/uploads/2022/08/Cortisone.-Jama.png',0,'attachment','image/png',0),(5449,8,'2022-08-01 03:42:12','2022-08-01 03:42:12','<img class=\"alignright wp-image-5448\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Cortisone.-Jama-500x419.png\" alt=\"Are Cortisone Shots a Good Option?\" width=\"300\" height=\"251\" />Cortisone injections are a common treatment option for joint pain relief. But are these injections a good course of action? Many times they are not! Even though cortisone injections are frequently recommended, they unfortunately have an adverse effect on the bone and on soft tissue healing.\r\n<h2>Cortisone Injections Are Harmful?</h2>\r\nCortisone shots, or corticosteroid injections, inactivate vitamin D. That means they limit calcium absorption by the gastrointestinal tract, which results in a decrease in calcium uptake for the bone. This process will ultimately lead to weakness in the bone.\r\n\r\nAdditionally, corticosteroids inhibit the release of growth hormone. What does that mean? The decrease in growth hormone will interfere with the repair of soft tissue and bone. The result is an overall decrease in the strength of the bones, ligaments, and tendons.\r\n\r\nFurthermore, corticosteroids inhibit chondrocyte production. Chondrocytes are the cells responsible for cartilage formation. Therefore, corticosteroids interfere with the formation of cartilage, collagen, and even blood vessel formation.\r\n<h2>Will Just One Shot of Cortisone Be a Problem?</h2>\r\nThe medical journal <em>Radiology </em>lists side-effects of cortisone injections in an article called “Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought?”.1 The article states that the side effects of cortisone injections include:\r\n<ul>\r\n 	<li><strong>Accelerated osteoarthritis progression</strong></li>\r\n 	<li><strong>Subchondral insufficiency fracture</strong></li>\r\n 	<li><strong>Complications of osteonecrosis</strong></li>\r\n 	<li><strong>Rapid joint destruction with bone loss</strong></li>\r\n</ul>\r\nThe lead researcher of the study, found that <strong>“corticosteroid injections may be associated with complications that potentially accelerate the destruction of the joint and may hasten the need for total hip and knee replacements.”</strong> He also says,<strong> “</strong><strong>We</strong><strong>’ve been telling patients that even if these injections don’t relieve your pain, they’re not going to hurt you.” But that is not really true. He goes on to say, “But now we suspect that this is not necessarily the case.”1</strong><strong> </strong>\r\n\r\nThe researcher continues,<strong> “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”</strong><strong> </strong>\r\n\r\nWith this information, it would seem then, that even one injections should be avoided if possible.\r\n<h2>But Does Cortisone Help with Pain?</h2>\r\nSome people do get relief from cortisone. But not all people do! And corticosteroid injections have been used for a very long time. Their anti-inflammatory and pain relief properties made its use a common practice within the medical community.\r\n\r\nHowever, the same properties that make them effective in decreasing the inflammation and pain, are the same properties lead to the destruction of cartilage.\r\n<h2>The Effects of Cortisone Injections on Cartilage</h2>\r\nIn 2017, an article in the Journal of the American Medical Association (JAMA) asks the question, “What are the effects of intra-articular injection of 40 mg of triamcinolone acetonide every 3 months on the progression of cartilage loss and knee pain in patients with osteoarthritis?”2\r\n\r\nThe answer: “Among patients with symptomatic knee osteoarthritis, 2 years of intra-articular triamcinolone, compared with intra-articular saline, resulted in <strong>significantly greater cartilage volume loss and no significant difference in knee pain</strong>. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.”2\r\n<h2>Regenerative Orthopedics: An Alternative to Cortisone Injections</h2>\r\nSo what is the alternative to cortisone, considering pain relief is still necessary? That’s where Regenerative Orthopedics comes in!  Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to<strong> actually repair the arthritic joint.</strong> They don’t just cover up the pain like many other treatments do. These treatments provide pain relief. <strong>They actually heal the joint, strengthen the structures of the joints, and even boost growth of cartilage</strong>.\r\n\r\nRegenerative Orthopedics regenerates the joint rather than causing degeneration like what occurs with cortisone injections. There is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise, and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire, while returning function to your painful joint, and helping you to once again participate in the activities you enjoy.\r\n\r\n1Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? <em>Radiology</em>, 2019; 190341\r\n\r\n2McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. <em>JAMA.</em> 2017;317(19):1967-1975.','Are Cortisone Shots a Good Option?','','inherit','closed','closed','','5446-revision-v1','','','2022-08-01 03:42:12','2022-08-01 03:42:12','',5446,'https://www.drfields.com/?p=5449',0,'revision','',0),(5450,8,'2022-08-01 03:43:26','2022-08-01 03:43:26','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a>\r\n</div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li><a href=\"/articles/regenerative-orthopedics/are-cortisone-shots-a-good-option/\">Are Cortisone Shots a Good Option?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/\">Try Regenerative Treatments for Your Hip Pain or Injury</a></li>\r\n 	<li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Treating Knee Pain and Injuries with Regenerative Orthopedics\" href=\"/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics/\">Treating Knee Pain and Injuries with Regenerative Orthopedics</a></li>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-08-01 03:43:26','2022-08-01 03:43:26','',2109,'https://www.drfields.com/?p=5450',0,'revision','',0),(5451,8,'2022-08-01 04:20:07','2022-08-01 04:20:07','<img class=\"alignright wp-image-5448\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Cortisone.-Jama-500x419.png\" alt=\"Are Cortisone Shots a Good Option?\" width=\"300\" height=\"251\" />Cortisone injections are a common treatment option for joint pain relief. But are these injections a good course of action? Many times they are not! Even though cortisone injections are frequently recommended, they unfortunately have an adverse effect on the bone and on soft tissue healing.\r\n<h2>Cortisone Injections Are Harmful?</h2>\r\nCortisone shots, or corticosteroid injections, inactivate vitamin D. That means they limit calcium absorption by the gastrointestinal tract, which results in a decrease in calcium uptake for the bone. This process will ultimately lead to weakness in the bone.\r\n\r\nAdditionally, corticosteroids inhibit the release of growth hormone. What does that mean? The decrease in growth hormone will interfere with the repair of soft tissue and bone. The result is an overall decrease in the strength of the bones, ligaments, and tendons.\r\n\r\nFurthermore, corticosteroids inhibit chondrocyte production. Chondrocytes are the cells responsible for cartilage formation. Therefore, corticosteroids interfere with the formation of cartilage, collagen, and even blood vessel formation.\r\n<h2>Will Just One Shot of Cortisone Be a Problem?</h2>\r\nThe medical journal <em>Radiology </em>lists side-effects of cortisone injections in an article called “Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought?”.1 The article states that the side effects of cortisone injections include:\r\n<ul>\r\n 	<li><strong>Accelerated osteoarthritis progression</strong></li>\r\n 	<li><strong>Subchondral insufficiency fracture</strong></li>\r\n 	<li><strong>Complications of osteonecrosis</strong></li>\r\n 	<li><strong>Rapid joint destruction with bone loss</strong></li>\r\n</ul>\r\nThe lead researcher of the study, found that “corticosteroid injections may be associated with complications that potentially accelerate the destruction of the joint and may hasten the need for total hip and knee replacements.” He also says, “We’ve been telling patients that even if these injections don’t relieve your pain, they’re not going to hurt you.” But that is not really true. He goes on to say, “But now we suspect that this is not necessarily the case.”1\r\n\r\nThe researcher continues, “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”\r\n\r\nWith this information, it would seem then, that even one injections should be avoided if possible.\r\n<h2>But Does Cortisone Help with Pain?</h2>\r\nSome people do get relief from cortisone. But not all people do! And corticosteroid injections have been used for a very long time. Their anti-inflammatory and pain relief properties made its use a common practice within the medical community.\r\n\r\nHowever, the same properties that make them effective in decreasing the inflammation and pain, are the same properties lead to the destruction of cartilage.\r\n<h2>The Effects of Cortisone Injections on Cartilage</h2>\r\nIn 2017, an article in the Journal of the American Medical Association (JAMA) asks the question, “What are the effects of intra-articular injection of 40 mg of triamcinolone acetonide every 3 months on the progression of cartilage loss and knee pain in patients with osteoarthritis?”2\r\n\r\nThe answer: “Among patients with symptomatic knee osteoarthritis, 2 years of intra-articular triamcinolone, compared with intra-articular saline, resulted in significantly greater cartilage volume loss and no significant difference in knee pain. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.”2\r\n<h2>Regenerative Orthopedics: An Alternative to Cortisone Injections</h2>\r\nSo what is the alternative to cortisone, considering pain relief is still necessary? That’s where Regenerative Orthopedics comes in!  Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to actually repair the arthritic joint. They don’t just cover up the pain like many other treatments do. These treatments provide pain relief. They actually heal the joint, strengthen the structures of the joints, and even boost growth of cartilage.\r\n\r\nRegenerative Orthopedics regenerates the joint rather than causing degeneration like what occurs with cortisone injections. There is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise, and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire, while returning function to your painful joint, and helping you to once again participate in the activities you enjoy.\r\n\r\n1Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? <em>Radiology</em>, 2019; 190341\r\n\r\n2McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. <em>JAMA.</em> 2017;317(19):1967-1975.','Are Cortisone Shots a Good Option?','','inherit','closed','closed','','5446-revision-v1','','','2022-08-01 04:20:07','2022-08-01 04:20:07','',5446,'https://www.drfields.com/?p=5451',0,'revision','',0),(5452,9,'2022-08-03 21:25:30','2022-08-03 21:25:30','[caption id=\"attachment_5455\" align=\"alignnone\" width=\"500\"]<img class=\"wp-image-5455 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Cortisone.-Jama-1-500x419.png\" alt=\"Cortisone. Jama\" width=\"500\" height=\"419\" /> Cortisone. Jama[/caption]\n<h2>Are Cortisone Shots a Good Option?</h2>\nCortisone shots are a common treatment option for joint pain relief. But are these injections a good course of action? Many times they are not! Even though cortisone injections are frequently recommended, they have an adverse effect on the bone and soft tissue healing.\n<h2>Cortisone Injections Are Harmful?</h2>\nCortisone shots, or corticosteroid injections, inactivate vitamin D. That means they limit calcium absorption by the gastrointestinal tract, which decreases calcium uptake for the bone. This process will ultimately lead to weakness in the bone.\n\nAdditionally, corticosteroids inhibit the release of growth hormones. What does that mean? The decrease in growth hormone will interfere with soft tissue and bone repair. The result is an overall decrease in the strength of the bones, ligaments, and tendons.\n\nFurthermore, corticosteroids inhibit chondrocyte production. Chondrocytes are the cells responsible for cartilage formation. Therefore, corticosteroids interfere with the formation of cartilage, collagen, and even blood vessel formation.\n<h2>Will Just One Shot of Cortisone Be a Problem?</h2>\nThe medical journal <em>Radiology </em>lists the side effects of cortisone injections in an article called “Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought?”.1 The article states that the side effects of cortisone injections include:\n<ul>\n 	<li><strong>Accelerated osteoarthritis progression</strong></li>\n 	<li><strong>Subchondral insufficiency fracture</strong></li>\n 	<li><strong>Complications of osteonecrosis</strong></li>\n 	<li><strong>Rapid joint destruction with bone loss</strong></li>\n</ul>\nThe study\'s lead researcher found that “corticosteroid injections may be associated with complications that potentially accelerate the destruction of the joint and may hasten the need for total hip and knee replacements.” He also says, “We’ve been telling patients that even if these injections don’t relieve your pain, they’re not going to hurt you.” But that is not really true. He says, “But now we suspect this is not necessarily the case.”1\n\nThe researcher continues, “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”\n\nWith this information, it would seem then that even one injection should be avoided if possible.\n<h2>But Does Cortisone Help with Pain?</h2>\nSome people do get relief from cortisone. But not all people do! And corticosteroid injections have been used for a very long time. Their anti-inflammatory and pain relief properties made their use a common practice within the medical community.\n\nHowever, the same properties that make them effective in decreasing inflammation and pain are the same properties that lead to the destruction of cartilage.\n<h2>The Effects of Cortisone Injections on Cartilage</h2>\nIn 2017, an article in the Journal of the American Medical Association (JAMA) asks the question, “What are the effects of intra-articular injection of 40 mg of triamcinolone acetonide every three months on the progression of cartilage loss and knee pain in patients with osteoarthritis?”2\n\nThe answer: “Among patients with symptomatic knee osteoarthritis, two years of intra-articular triamcinolone, compared with intra-articular saline, resulted in significantly greater cartilage volume loss and no significant difference in knee pain. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.”2\n<h2>Regenerative Orthopedics: An Alternative to Cortisone Injections</h2>\nSo what is the alternative to cortisone, considering pain relief is still necessary? That’s where Regenerative Orthopedics comes in!  Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to actually repair the arthritic joint. They don’t just cover up the pain as many other treatments do. These treatments provide pain relief. They actually heal the joints, strengthen the structures of the joints, and even boost the growth of cartilage.\n\nRegenerative Orthopedics regenerates the joint rather than causing degeneration like what occurs with cortisone injections. There is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\n\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire while returning function to your painful joint and helping you to once again participate in the activities you enjoy.\n\n1Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? <em>Radiology</em>, 2019; 190341\n\n2McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. <em>JAMA.</em> 2017;317(19):1967-1975.','Are Cortisone Shots a Good Option?','','inherit','closed','closed','','5446-autosave-v1','','','2022-08-03 21:25:30','2022-08-03 21:25:30','',5446,'https://www.drfields.com/?p=5452',0,'revision','',0),(5453,9,'2022-08-03 20:29:50','2022-08-03 20:29:50','<h2><img class=\"alignright wp-image-5448\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Cortisone.-Jama-500x419.png\" alt=\"Are Cortisone Shots a Good Option?\" width=\"300\" height=\"251\" />Are Cortisone Shots a Good Option?</h2>\r\nCortisone injections are a common treatment option for joint pain relief. But are these injections a good course of action? Many times they are not! Even though cortisone injections are frequently recommended, they unfortunately have an adverse effect on the bone and on soft tissue healing.\r\n<h2>Cortisone Injections Are Harmful?</h2>\r\nCortisone shots, or corticosteroid injections, inactivate vitamin D. That means they limit calcium absorption by the gastrointestinal tract, which results in a decrease in calcium uptake for the bone. This process will ultimately lead to weakness in the bone.\r\n\r\nAdditionally, corticosteroids inhibit the release of growth hormone. What does that mean? The decrease in growth hormone will interfere with the repair of soft tissue and bone. The result is an overall decrease in the strength of the bones, ligaments, and tendons.\r\n\r\nFurthermore, corticosteroids inhibit chondrocyte production. Chondrocytes are the cells responsible for cartilage formation. Therefore, corticosteroids interfere with the formation of cartilage, collagen, and even blood vessel formation.\r\n<h2>Will Just One Shot of Cortisone Be a Problem?</h2>\r\nThe medical journal <em>Radiology </em>lists side-effects of cortisone injections in an article called “Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought?”.1 The article states that the side effects of cortisone injections include:\r\n<ul>\r\n 	<li><strong>Accelerated osteoarthritis progression</strong></li>\r\n 	<li><strong>Subchondral insufficiency fracture</strong></li>\r\n 	<li><strong>Complications of osteonecrosis</strong></li>\r\n 	<li><strong>Rapid joint destruction with bone loss</strong></li>\r\n</ul>\r\nThe lead researcher of the study, found that “corticosteroid injections may be associated with complications that potentially accelerate the destruction of the joint and may hasten the need for total hip and knee replacements.” He also says, “We’ve been telling patients that even if these injections don’t relieve your pain, they’re not going to hurt you.” But that is not really true. He goes on to say, “But now we suspect that this is not necessarily the case.”1\r\n\r\nThe researcher continues, “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”\r\n\r\nWith this information, it would seem then, that even one injections should be avoided if possible.\r\n<h2>But Does Cortisone Help with Pain?</h2>\r\nSome people do get relief from cortisone. But not all people do! And corticosteroid injections have been used for a very long time. Their anti-inflammatory and pain relief properties made its use a common practice within the medical community.\r\n\r\nHowever, the same properties that make them effective in decreasing the inflammation and pain, are the same properties lead to the destruction of cartilage.\r\n<h2>The Effects of Cortisone Injections on Cartilage</h2>\r\nIn 2017, an article in the Journal of the American Medical Association (JAMA) asks the question, “What are the effects of intra-articular injection of 40 mg of triamcinolone acetonide every 3 months on the progression of cartilage loss and knee pain in patients with osteoarthritis?”2\r\n\r\nThe answer: “Among patients with symptomatic knee osteoarthritis, 2 years of intra-articular triamcinolone, compared with intra-articular saline, resulted in significantly greater cartilage volume loss and no significant difference in knee pain. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.”2\r\n<h2>Regenerative Orthopedics: An Alternative to Cortisone Injections</h2>\r\nSo what is the alternative to cortisone, considering pain relief is still necessary? That’s where Regenerative Orthopedics comes in!  Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to actually repair the arthritic joint. They don’t just cover up the pain like many other treatments do. These treatments provide pain relief. They actually heal the joint, strengthen the structures of the joints, and even boost growth of cartilage.\r\n\r\nRegenerative Orthopedics regenerates the joint rather than causing degeneration like what occurs with cortisone injections. There is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise, and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire, while returning function to your painful joint, and helping you to once again participate in the activities you enjoy.\r\n\r\n1Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? <em>Radiology</em>, 2019; 190341\r\n\r\n2McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. <em>JAMA.</em> 2017;317(19):1967-1975.','Are Cortisone Shots a Good Option?','','inherit','closed','closed','','5446-revision-v1','','','2022-08-03 20:29:50','2022-08-03 20:29:50','',5446,'https://www.drfields.com/?p=5453',0,'revision','',0),(5454,9,'2022-08-03 21:21:35','2022-08-03 21:21:35','<h2><img class=\"alignright wp-image-5448\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Cortisone.-Jama-500x419.png\" alt=\"Are Cortisone Shots a Good Option?\" width=\"300\" height=\"251\" />Are Cortisone Shots a Good Option?</h2>\r\nCortisone shots are a common treatment option for joint pain relief. But are these injections a good course of action? Many times they are not! Even though cortisone injections are frequently recommended, they, unfortunately, have an adverse effect on the bone and on soft tissue healing.\r\n<h2>Cortisone Injections Are Harmful?</h2>\r\nCortisone shots, or corticosteroid injections, inactivate vitamin D. That means they limit calcium absorption by the gastrointestinal tract, which results in a decrease in calcium uptake for the bone. This process will ultimately lead to weakness in the bone.\r\n\r\nAdditionally, corticosteroids inhibit the release of growth hormone. What does that mean? The decrease in growth hormone will interfere with the repair of soft tissue and bone. The result is an overall decrease in the strength of the bones, ligaments, and tendons.\r\n\r\nFurthermore, corticosteroids inhibit chondrocyte production. Chondrocytes are the cells responsible for cartilage formation. Therefore, corticosteroids interfere with the formation of cartilage, collagen, and even blood vessel formation.\r\n<h2>Will Just One Shot of Cortisone Be a Problem?</h2>\r\nThe medical journal <em>Radiology </em>lists side-effects of cortisone injections in an article called “Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought?”.1 The article states that the side effects of cortisone injections include:\r\n<ul>\r\n 	<li><strong>Accelerated osteoarthritis progression</strong></li>\r\n 	<li><strong>Subchondral insufficiency fracture</strong></li>\r\n 	<li><strong>Complications of osteonecrosis</strong></li>\r\n 	<li><strong>Rapid joint destruction with bone loss</strong></li>\r\n</ul>\r\nThe lead researcher of the study, found that “corticosteroid injections may be associated with complications that potentially accelerate the destruction of the joint and may hasten the need for total hip and knee replacements.” He also says, “We’ve been telling patients that even if these injections don’t relieve your pain, they’re not going to hurt you.” But that is not really true. He goes on to say, “But now we suspect that this is not necessarily the case.”1\r\n\r\nThe researcher continues, “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”\r\n\r\nWith this information, it would seem then, that even one injections should be avoided if possible.\r\n<h2>But Does Cortisone Help with Pain?</h2>\r\nSome people do get relief from cortisone. But not all people do! And corticosteroid injections have been used for a very long time. Their anti-inflammatory and pain relief properties made its use a common practice within the medical community.\r\n\r\nHowever, the same properties that make them effective in decreasing the inflammation and pain, are the same properties lead to the destruction of cartilage.\r\n<h2>The Effects of Cortisone Injections on Cartilage</h2>\r\nIn 2017, an article in the Journal of the American Medical Association (JAMA) asks the question, “What are the effects of intra-articular injection of 40 mg of triamcinolone acetonide every 3 months on the progression of cartilage loss and knee pain in patients with osteoarthritis?”2\r\n\r\nThe answer: “Among patients with symptomatic knee osteoarthritis, 2 years of intra-articular triamcinolone, compared with intra-articular saline, resulted in significantly greater cartilage volume loss and no significant difference in knee pain. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.”2\r\n<h2>Regenerative Orthopedics: An Alternative to Cortisone Injections</h2>\r\nSo what is the alternative to cortisone, considering pain relief is still necessary? That’s where Regenerative Orthopedics comes in!  Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to actually repair the arthritic joint. They don’t just cover up the pain like many other treatments do. These treatments provide pain relief. They actually heal the joint, strengthen the structures of the joints, and even boost growth of cartilage.\r\n\r\nRegenerative Orthopedics regenerates the joint rather than causing degeneration like what occurs with cortisone injections. There is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise, and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire, while returning function to your painful joint, and helping you to once again participate in the activities you enjoy.\r\n\r\n1Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? <em>Radiology</em>, 2019; 190341\r\n\r\n2McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. <em>JAMA.</em> 2017;317(19):1967-1975.','Are Cortisone Shots a Good Option?','','inherit','closed','closed','','5446-revision-v1','','','2022-08-03 21:21:35','2022-08-03 21:21:35','',5446,'https://www.drfields.com/?p=5454',0,'revision','',0),(5455,9,'2022-08-03 21:24:39','2022-08-03 21:24:39','Cortisone. Jama','Cortisone. Jama','Cortisone. Jama','inherit','closed','closed','','cortisone-jama-2','','','2022-08-03 21:24:39','2022-08-03 21:24:39','',5446,'https://www.drfields.com/wp-content/uploads/2022/08/Cortisone.-Jama-1.png',0,'attachment','image/png',0),(5456,9,'2022-08-03 21:25:52','2022-08-03 21:25:52','<img class=\"wp-image-5455 \" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Cortisone.-Jama-1-500x419.png\" alt=\"Cortisone. Jama\" width=\"419\" height=\"351\" />\r\n<h2>Are Cortisone Shots a Good Option?</h2>\r\nCortisone shots are a common treatment option for joint pain relief. But are these injections a good course of action? Many times they are not! Even though cortisone injections are frequently recommended, they have an adverse effect on the bone and soft tissue healing.\r\n<h2>Cortisone Injections Are Harmful?</h2>\r\nCortisone shots, or corticosteroid injections, inactivate vitamin D. That means they limit calcium absorption by the gastrointestinal tract, which decreases calcium uptake for the bone. This process will ultimately lead to weakness in the bone.\r\n\r\nAdditionally, corticosteroids inhibit the release of growth hormones. What does that mean? The decrease in growth hormone will interfere with soft tissue and bone repair. The result is an overall decrease in the strength of the bones, ligaments, and tendons.\r\n\r\nFurthermore, corticosteroids inhibit chondrocyte production. Chondrocytes are the cells responsible for cartilage formation. Therefore, corticosteroids interfere with the formation of cartilage, collagen, and even blood vessel formation.\r\n<h2>Will Just One Shot of Cortisone Be a Problem?</h2>\r\nThe medical journal <em>Radiology </em>lists the side effects of cortisone injections in an article called “Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought?”.1 The article states that the side effects of cortisone injections include:\r\n<ul>\r\n 	<li><strong>Accelerated osteoarthritis progression</strong></li>\r\n 	<li><strong>Subchondral insufficiency fracture</strong></li>\r\n 	<li><strong>Complications of osteonecrosis</strong></li>\r\n 	<li><strong>Rapid joint destruction with bone loss</strong></li>\r\n</ul>\r\nThe study\'s lead researcher found that “corticosteroid injections may be associated with complications that potentially accelerate the destruction of the joint and may hasten the need for total hip and knee replacements.” He also says, “We’ve been telling patients that even if these injections don’t relieve your pain, they’re not going to hurt you.” But that is not really true. He says, “But now we suspect this is not necessarily the case.”1\r\n\r\nThe researcher continues, “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”\r\n\r\nWith this information, it would seem then that even one injection should be avoided if possible.\r\n<h2>But Does Cortisone Help with Pain?</h2>\r\nSome people do get relief from cortisone. But not all people do! And corticosteroid injections have been used for a very long time. Their anti-inflammatory and pain relief properties made their use a common practice within the medical community.\r\n\r\nHowever, the same properties that make them effective in decreasing inflammation and pain are the same properties that lead to the destruction of cartilage.\r\n<h2>The Effects of Cortisone Injections on Cartilage</h2>\r\nIn 2017, an article in the Journal of the American Medical Association (JAMA) asks the question, “What are the effects of intra-articular injection of 40 mg of triamcinolone acetonide every three months on the progression of cartilage loss and knee pain in patients with osteoarthritis?”2\r\n\r\nThe answer: “Among patients with symptomatic knee osteoarthritis, two years of intra-articular triamcinolone, compared with intra-articular saline, resulted in significantly greater cartilage volume loss and no significant difference in knee pain. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.”2\r\n<h2>Regenerative Orthopedics: An Alternative to Cortisone Injections</h2>\r\nSo what is the alternative to cortisone, considering pain relief is still necessary? That’s where Regenerative Orthopedics comes in!  Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to actually repair the arthritic joint. They don’t just cover up the pain as many other treatments do. These treatments provide pain relief. They actually heal the joints, strengthen the structures of the joints, and even boost the growth of cartilage.\r\n\r\nRegenerative Orthopedics regenerates the joint rather than causing degeneration like what occurs with cortisone injections. There is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire while returning function to your painful joint and helping you to once again participate in the activities you enjoy.\r\n\r\n1Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? <em>Radiology</em>, 2019; 190341\r\n\r\n2McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. <em>JAMA.</em> 2017;317(19):1967-1975.','Are Cortisone Shots a Good Option?','','inherit','closed','closed','','5446-revision-v1','','','2022-08-03 21:25:52','2022-08-03 21:25:52','',5446,'https://www.drfields.com/?p=5456',0,'revision','',0),(5457,9,'2022-08-03 21:26:01','2022-08-03 21:26:01','<img class=\"wp-image-5455  alignright\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Cortisone.-Jama-1-500x419.png\" alt=\"Cortisone. Jama\" width=\"419\" height=\"351\" />\r\n<h2>Are Cortisone Shots a Good Option?</h2>\r\nCortisone shots are a common treatment option for joint pain relief. But are these injections a good course of action? Many times they are not! Even though cortisone injections are frequently recommended, they have an adverse effect on the bone and soft tissue healing.\r\n<h2>Cortisone Injections Are Harmful?</h2>\r\nCortisone shots, or corticosteroid injections, inactivate vitamin D. That means they limit calcium absorption by the gastrointestinal tract, which decreases calcium uptake for the bone. This process will ultimately lead to weakness in the bone.\r\n\r\nAdditionally, corticosteroids inhibit the release of growth hormones. What does that mean? The decrease in growth hormone will interfere with soft tissue and bone repair. The result is an overall decrease in the strength of the bones, ligaments, and tendons.\r\n\r\nFurthermore, corticosteroids inhibit chondrocyte production. Chondrocytes are the cells responsible for cartilage formation. Therefore, corticosteroids interfere with the formation of cartilage, collagen, and even blood vessel formation.\r\n<h2>Will Just One Shot of Cortisone Be a Problem?</h2>\r\nThe medical journal <em>Radiology </em>lists the side effects of cortisone injections in an article called “Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought?”.1 The article states that the side effects of cortisone injections include:\r\n<ul>\r\n 	<li><strong>Accelerated osteoarthritis progression</strong></li>\r\n 	<li><strong>Subchondral insufficiency fracture</strong></li>\r\n 	<li><strong>Complications of osteonecrosis</strong></li>\r\n 	<li><strong>Rapid joint destruction with bone loss</strong></li>\r\n</ul>\r\nThe study\'s lead researcher found that “corticosteroid injections may be associated with complications that potentially accelerate the destruction of the joint and may hasten the need for total hip and knee replacements.” He also says, “We’ve been telling patients that even if these injections don’t relieve your pain, they’re not going to hurt you.” But that is not really true. He says, “But now we suspect this is not necessarily the case.”1\r\n\r\nThe researcher continues, “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”\r\n\r\nWith this information, it would seem then that even one injection should be avoided if possible.\r\n<h2>But Does Cortisone Help with Pain?</h2>\r\nSome people do get relief from cortisone. But not all people do! And corticosteroid injections have been used for a very long time. Their anti-inflammatory and pain relief properties made their use a common practice within the medical community.\r\n\r\nHowever, the same properties that make them effective in decreasing inflammation and pain are the same properties that lead to the destruction of cartilage.\r\n<h2>The Effects of Cortisone Injections on Cartilage</h2>\r\nIn 2017, an article in the Journal of the American Medical Association (JAMA) asks the question, “What are the effects of intra-articular injection of 40 mg of triamcinolone acetonide every three months on the progression of cartilage loss and knee pain in patients with osteoarthritis?”2\r\n\r\nThe answer: “Among patients with symptomatic knee osteoarthritis, two years of intra-articular triamcinolone, compared with intra-articular saline, resulted in significantly greater cartilage volume loss and no significant difference in knee pain. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.”2\r\n<h2>Regenerative Orthopedics: An Alternative to Cortisone Injections</h2>\r\nSo what is the alternative to cortisone, considering pain relief is still necessary? That’s where Regenerative Orthopedics comes in!  Treatments like Stem Cell Therapy, PRP, and Prolotherapy work to actually repair the arthritic joint. They don’t just cover up the pain as many other treatments do. These treatments provide pain relief. They actually heal the joints, strengthen the structures of the joints, and even boost the growth of cartilage.\r\n\r\nRegenerative Orthopedics regenerates the joint rather than causing degeneration like what occurs with cortisone injections. There is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nRegenerative Orthopedics is the treatment of choice to achieve the pain relief you desire while returning function to your painful joint and helping you to once again participate in the activities you enjoy.\r\n\r\n1Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? <em>Radiology</em>, 2019; 190341\r\n\r\n2McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. <em>JAMA.</em> 2017;317(19):1967-1975.','Are Cortisone Shots a Good Option?','','inherit','closed','closed','','5446-revision-v1','','','2022-08-03 21:26:01','2022-08-03 21:26:01','',5446,'https://www.drfields.com/?p=5457',0,'revision','',0),(5459,8,'2022-08-10 06:00:58','2022-08-10 06:00:58','<img class=\"wp-image-5460 alignright\" title=\"Non-Surgical Partial Rotator Cuff Tear Repair\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Rotator-Cuff.-J-Ortho-Surg-Research-500x425.jpeg\" alt=\"Non-Surgical Partial Rotator Cuff Tear Repair\" width=\"300\" height=\"255\" />\r\n<h2>Partial Rotator Cuff Tear Repair</h2>\r\nHave you been told you have a partial rotator cuff tear? Surgery may have also been recommended, but you would like to avoid that. So what else can you do? At OrthoRegen®, you have a non-surgical option.\r\n\r\nWe often see patients in our office trying to avoid surgery after diagnosing a partial rotator cuff tear. And we would like to help them accomplish their pain relief and restoration of function goals! Once we do a physical examination and take a medical history, we can assess which regenerative treatment will most effectively repair your shoulder from the damage sustained to the rotator cuff.\r\n<h2>The Rotator Cuff</h2>\r\nThere are four muscles inside of the shoulder that allow us to rotate our arms. These four muscles form a cuff of tendons around the top of the arm or the humeral head. With a rotator cuff tear, one or more of the tendons of those four rotator cuff muscles of the shoulder are involved.\r\n\r\nThe rotator cuff is designed to move the shoulder joint. When there is a tear, the tendons are weakened and will degenerate, increasing their susceptibility to even more tears. Rotator cuff tears will create a cycle of instability in the shoulder and set it up for more damage if not treated.\r\n<h2>What Is Done for Shoulder Instability from Rotator Cuff Tears?</h2>\r\nTreatment for shoulder instability from tears often involves rotator cuff strengthening exercises of the four muscles of the shoulder, which include the supraspinatus, infraspinatus, subscapularis, and teres minor. They help stabilize the shoulder and assist with movement.\r\n\r\nUnfortunately, even though strengthening exercises help strengthen the shoulder muscles, they often do not resolve the underlying problem of shoulder instability. To fix shoulder joint instability, the shoulder tendons, ligaments, and shoulder capsular structures must all be strengthened. And that’s where Regenerative Orthopedics comes in!\r\n<h2>Regenerative Orthopedics Effectively Repairs Partial Rotator Cuff Tears</h2>\r\nRegenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells, are excellent options for rotator cuff injuries because the treatments involve repairing and regenerating soft tissue. Plus, these non-surgical therapies offer repair with a short recovery time.\r\n\r\nRegenerative Orthopedics addresses the root cause of the problem by repairing the tear and the instability as a first-line alternative to costly and invasive surgery. And that leads to a better recovery.\r\n<h2>What If Surgery Has Been Recommended?</h2>\r\nA February 2022 paper in the journal Orthopedic Research and Reviews(1) discussed the challenges of treating a partial rotator cuff tear.\r\n\r\nThey said: “Partial thickness tears of the rotator cuff are a common cause of shoulder pain and disability. Surgery is confined to those experiencing severe symptoms despite non-operative measures and for tears involving greater than 50% thickness. A number of surgical strategies have been described, but there is insufficient evidence to advocate one repair technique over another. . . ”\r\n\r\nSure, it’s possible to have successful shoulder surgery. But why choose surgery when there is an alternative that has a much shorter recovery period? We see many patients who are exploring alternatives to rotator cuff surgery because they would like to get back to work or a sport more quickly and would prefer to avoid the long post-surgical recovery time.\r\n<h2>Is Partial Rotator Cuff Surgery Even Effective?</h2>\r\n<ul>\r\n 	<li><strong>The American Journal of Sports Medicine</strong> reports that rotator cuff repair often results in significant pain postoperatively. They studied patients who underwent arthroscopic rotator cuff repair. Even a smaller tear area was associated with more frequent and severe pain after repair. Plus, even younger patients who had partial-thickness tears and had occupational injuries experienced more pain postoperatively.(2)</li>\r\n 	<li><strong>The Orthopaedic Journal of Sports Medicine</strong> found that “After rotator cuff repair, some patients have ongoing problems significant enough to warrant presentation to a clinic for reassessment.” About 1 in 6 patients had problems after the surgical procedure. (3)</li>\r\n</ul>\r\n<h2>The Regenerative Orthopedics Alternative</h2>\r\nRegenerative Orthopedics is the non-surgical alternative that can offer repair without the prolonged recovery time of surgery.\r\n\r\nPRP or Stem Cells may be recommended depending on the injury or degeneration involved. PRP and Stem Cells accelerate healing by using your own blood platelets and/or stem cells. These are always used in conjunction with Dextrose Prolotherapy to provide the most comprehensive treatment and repair.\r\n<h2>Are Stem Cells and PRP Effective for Rotator Cuff Tears?</h2>\r\nThe Orthopedic Research and Reviews journal reports, “Stem cell treatment for rotator cuff tears is a promising development because they have been shown to result in an anti-inflammatory response, improved tendon regeneration, optimized collagen fiber arrangement, higher load-to-failure, and higher tensile strength. . . In a non-randomized controlled trial comparing the effects of an exercise regime to PRP combined with bone marrow aspirate (BMAC-PRP complex) on partial rotator cuff tears, the experimental group demonstrated a significantly greater improvement in (pain, function and disability) scores compared to controls at three months. Tear size decreased after BMAC-PRP injection although this did not significantly differ from controls.”(1)\r\n\r\nThe Journal of Orthopaedic Surgery and Research found a positive benefit of a combined bone marrow aspirate concentrate (stem cell) and platelet-rich plasma (PRP) BMAC-PRP injection in patients with a partial tear of the rotator cuff tendon. (4)\r\n\r\nThe combination of repair with these regenerative treatments promises an excellent chance for full recovery and full performance. In the event that surgery is truly necessary, Regenerative Orthopedics is also an excellent post-operative treatment to improve tissue strength, stability, and overall recovery. This may be a possibility when a rotator cuff tear has become large enough to produce profound weakness in the shoulder.\r\n\r\nPlease <a href=\"https://www.drfields.com/contact/\">contact us</a> at OrthoRegen®, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.\r\n<h3><strong>References</strong></h3>\r\n1Thangarajah T, Lo IK. Optimal Management of Partial Thickness Rotator Cuff Tears: Clinical Considerations and Practical Management. Orthopedic Research and Reviews. 2022;14:59.\r\n\r\n2Yeo, Daniel YT, et al. \"The relationship between intraoperative tear dimensions and postoperative pain in 1624 consecutive arthroscopic rotator cuff repairs.\" The American Journal of Sports Medicine 45.4 (2017): 788-793.\r\n\r\n3Rizvi SM, Lam P, Murrell GA. Repair Integrity in Patients Returning for an Unscheduled Visit After Arthroscopic Rotator Cuff Repair: Retorn or Not? Orthopaedic journal of sports medicine. 2018 May 29;6(6):2325967118775061.\r\n\r\n4Kim SJ, Kim EK, Kim SJ. Effects of bone marrow aspirate concentrate and platelet-rich plasma on patients with partial tear of the rotator cuff tendon. Journal of orthopaedic surgery and research. 2018 Dec;13(1):1.','Non-Surgical Partial Rotator Cuff Tear Repair','','publish','closed','open','','non-surgical-partial-rotator-cuff-tear-repair','','','2022-08-22 20:03:16','2022-08-22 20:03:16','',0,'https://www.drfields.com/?p=5459',0,'post','',0),(5460,8,'2022-08-10 03:56:52','2022-08-10 03:56:52','Rotator Cuff. J Ortho Surg Research','Rotator Cuff. J Ortho Surg Research','Rotator Cuff. J Ortho Surg Research','inherit','closed','closed','','rotator-cuff-j-ortho-surg-research','','','2022-08-10 03:56:52','2022-08-10 03:56:52','',5459,'https://www.drfields.com/wp-content/uploads/2022/08/Rotator-Cuff.-J-Ortho-Surg-Research.jpeg',0,'attachment','image/jpeg',0),(5461,8,'2022-08-10 03:57:32','2022-08-10 03:57:32','<img class=\"wp-image-5460\" title=\"Non-Surgical Partial Rotator Cuff Tear Repair\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Rotator-Cuff.-J-Ortho-Surg-Research-500x425.jpeg\" alt=\"Non-Surgical Partial Rotator Cuff Tear Repair\" width=\"300\" height=\"255\" />\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Have you been told you have a partial rotator cuff tear? Surgery may have also been recommended but you would like to avoid that. So what else can you do? At OrthoRegen</span>®<span lang=\"en-US\">, you have a non-surgical option.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">We often see patients in our office who are trying to avoid surgery after a diagnosis of a partial rotator cuff tear. And we would like to help them accomplish their pain relief and restoration of function goals! Once we do a physical examination and take a medical history, we can assess which regenerative treatment will be the most effective at repairing your shoulder from the damage sustained to the rotator cuff.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">The Rotator Cuff</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">There are four muscles inside of the shoulder that allow us to rotate our arm.</span> <span lang=\"en-US\">These four muscles form a cuff of tendons around the top of the arm or the humeral head. With a the rotator cuff tear, one or more of the tendons of those four rotator cuff muscles of the shoulder are involved</span>.</p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The rotator cuff is designed to move the shoulder joint. When there is a tear, the tendons are weakened and will degenerate, increasing their susceptibility to even more tearing. Rotator cuff tears will create a cycle of instability in the shoulder and set it up for more damage if not treated.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">What Is Done for Shoulder Instability from Rotator Cuff Tears? </span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Treatment for shoulder instability from tears often involves rotator cuff strengthening exercises, of the four muscles of the shoulder which include the supraspinatus, infraspinatus, subscapularis, and teres minor. They help stabilize the shoulder and assist with movement. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Unfortunately, even though strengthening exercises help strengthen the shoulder muscles,</span> <span lang=\"en-US\">they often do not resolve the underlying problem of shoulder instability. To fix shoulder joint instability, the shoulder tendons, ligaments and shoulder capsular structures must all be strengthened. And that’s where Regenerative Orthopedics comes in!</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics Effectively Repairs Partial Rotator Cuff Tears</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells,</span> <span lang=\"en-US\">are excellent options for rotator cuff injuries because the treatments involve the repair and the regeneration of soft tissue. Plus, these non-surgical therapies offer repair with a short recovery time.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">As a first-line alternative to costly and invasive surgery, Regenerative Orthopedics addresses the root cause of the problem by repairing the tear and the instability. And that leads to a better recovery. </span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">What If Surgery Has Been Recommended?</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">A February 2022 paper in the journal </span><span lang=\"en-US\">Orthopedic Research and Reviews</span><span lang=\"en-US\"> discussed the challenges of treating a partial rotator cuff tear. They said: </span>“<span lang=\"en-US\">Partial thickness tears of the rotator cuff are a common cause of shoulder pain and disability. Surgery is confined to those experiencing severe symptoms despite non-operative measures, and for tears involving greater than 50% thickness. A number of surgical strategies have been described, but there is insufficient evidence to advocate one repair technique over another. . . </span>” <span lang=\"en-US\">1</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Sure, it’s possible to have a successful shoulder surgery</span>. <span lang=\"en-US\">But why choose surgery when there is an alternative that has a much shorter recovery period? We see many patients who are exploring alternatives to rotator cuff surgery because they would like to get back to work or a sport more quickly, and would prefer to avoid the long post-surgical recovery time. </span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Is Partial Rotator Cuff Surgery Even Effective?</span></h2>\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">The </span><span lang=\"en-US\">American Journal of Sports Medicine </span></strong><span lang=\"en-US\">reports that rotator cuff repair often results in significant pain postoperatively. They studied patients who underwent arthroscopic rotator cuff repair. Even a smaller tear area was associated with more frequent and severe pain after repair. </span>P<span lang=\"en-US\">lus, even younger patients who had partial-thickness tears and had occupational injuries experienced more pain postoperatively.2</span></p>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">The </span><span lang=\"en-US\">Orthopaedic Journal of Sports Medicine </span></strong><span lang=\"en-US\">found that </span>“<span lang=\"en-US\">After rotator cuff repair, some patients have ongoing problems significant enough to warrant presentation to a clinic for reassessment.</span>” <span lang=\"en-US\">About 1 in 6 patients had problems after the surgical procedure</span>.<span lang=\"en-US\">3</span></p>\r\n</li>\r\n</ul>\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">The Regenerative Orthopedics Alternative</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics is the non-surgical alternative that can offer repair without the prolonged recovery time of surgery.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Depending on the injury or degeneration involved, PRP or Stem Cells may be recommended. PRP and Stem Cells accelerate healing by using your own blood platelets and/or stem cells. These are always utilized in conjunction with Dextrose Prolotherapy in order to provide the most comprehensive treatment and repair.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Are Stem Cells and PRP Effective for Rotator Cuff Tears?</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The </span><span lang=\"en-US\">Orthopedic Research and Reviews</span> <span lang=\"en-US\">journal reports, </span>“<span lang=\"en-US\">Stem cell treatment for rotator cuff tears is a promising development because they have been shown to result in an anti-inflammatory response, improved tendon regeneration, optimized collagen fiber arrangement, higher load-to-failure, and higher tensile strength. . . In a non-randomized controlled trial comparing the effects of an exercise regime to PRP combined with bone marrow aspirate (BMAC-PRP complex) on partial rotator cuff tears, the experimental group demonstrated a significantly greater improvement in (pain, function and disability) scores compared to controls at three months. Tear size decreased after BMAC-PRP injection although this did not significantly differ from controls.</span>”<span lang=\"en-US\">1</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The </span><span lang=\"en-US\">Journal of Orthopaedic Surgery and Research</span><span lang=\"en-US\"> found a positive benefit of a combined </span><a href=\"https://www.caringmedical.com/prolotherapy-news/bone-marrow-aspirate-concentrate-prolotherapy/\"><span lang=\"en-US\">bone marrow aspirate concentrate</span></a><span lang=\"en-US\"> (stem cell) and </span><a href=\"https://www.caringmedical.com/what-is-prolotherapy-with-platelet-rich-plasma/\">platelet-rich plasma</a><span lang=\"en-US\"> (PRP)</span> <span lang=\"en-US\">BMAC-PRP injection in patients with a partial tear of the rotator cuff tendon.4</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The combination of repair with these regenerative treatments promises an excellent chance for a full recovery and full performance. In the event that surgery is truly necessary, Regenerative Orthopedics is also an excellent post-operative treatment to improve tissue strength, stability, and overall recovery. This may be a possibility when a rotator cuff tear has become large enough to produce profound weakness in the shoulder.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Please </span><a href=\"https://www.drfields.com/contact/\"><span lang=\"en-US\">contact us</span></a><span lang=\"en-US\"> at OrthoRegen</span>®<span lang=\"en-US\">, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.</span></p>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">References</span></strong></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">1Thangarajah T, Lo IK. Optimal Management of Partial Thickness Rotator Cuff Tears: Clinical Considerations and Practical Management. Orthopedic Research and Reviews. 2022;14:59.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">2Yeo, Daniel YT, et al. \"The relationship between intraoperative tear dimensions and postoperative pain in 1624 consecutive arthroscopic rotator cuff repairs.\" </span><span lang=\"en-US\">The American Journal of Sports Medicine</span> 45.4 (2017): 788-793.</p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">3Rizvi SM, Lam P, Murrell GA. Repair Integrity in Patients Returning for an Unscheduled Visit After Arthroscopic Rotator Cuff Repair: Retorn or Not?. Orthopaedic journal of sports medicine. 2018 May 29;6(6):2325967118775061.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">4Kim SJ, Kim EK, Kim SJ. Effects of bone marrow aspirate concentrate and platelet-rich plasma on patients with partial tear of the rotator cuff tendon. Journal of orthopaedic surgery and research. 2018 Dec;13(1):1.</span></p>','Non-Surgical Partial Rotator Cuff Tear Repair','','inherit','closed','closed','','5459-revision-v1','','','2022-08-10 03:57:32','2022-08-10 03:57:32','',5459,'https://www.drfields.com/?p=5461',0,'revision','',0),(5462,8,'2022-08-10 03:58:26','2022-08-10 03:58:26','<img class=\"wp-image-5460 alignright\" title=\"Non-Surgical Partial Rotator Cuff Tear Repair\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Rotator-Cuff.-J-Ortho-Surg-Research-500x425.jpeg\" alt=\"Non-Surgical Partial Rotator Cuff Tear Repair\" width=\"300\" height=\"255\" />\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Have you been told you have a partial rotator cuff tear? Surgery may have also been recommended but you would like to avoid that. So what else can you do? At OrthoRegen</span>®<span lang=\"en-US\">, you have a non-surgical option.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">We often see patients in our office who are trying to avoid surgery after a diagnosis of a partial rotator cuff tear. And we would like to help them accomplish their pain relief and restoration of function goals! Once we do a physical examination and take a medical history, we can assess which regenerative treatment will be the most effective at repairing your shoulder from the damage sustained to the rotator cuff.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">The Rotator Cuff</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">There are four muscles inside of the shoulder that allow us to rotate our arm.</span> <span lang=\"en-US\">These four muscles form a cuff of tendons around the top of the arm or the humeral head. With a the rotator cuff tear, one or more of the tendons of those four rotator cuff muscles of the shoulder are involved</span>.</p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The rotator cuff is designed to move the shoulder joint. When there is a tear, the tendons are weakened and will degenerate, increasing their susceptibility to even more tearing. Rotator cuff tears will create a cycle of instability in the shoulder and set it up for more damage if not treated.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">What Is Done for Shoulder Instability from Rotator Cuff Tears? </span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Treatment for shoulder instability from tears often involves rotator cuff strengthening exercises, of the four muscles of the shoulder which include the supraspinatus, infraspinatus, subscapularis, and teres minor. They help stabilize the shoulder and assist with movement. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Unfortunately, even though strengthening exercises help strengthen the shoulder muscles,</span> <span lang=\"en-US\">they often do not resolve the underlying problem of shoulder instability. To fix shoulder joint instability, the shoulder tendons, ligaments and shoulder capsular structures must all be strengthened. And that’s where Regenerative Orthopedics comes in!</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics Effectively Repairs Partial Rotator Cuff Tears</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells,</span> <span lang=\"en-US\">are excellent options for rotator cuff injuries because the treatments involve the repair and the regeneration of soft tissue. Plus, these non-surgical therapies offer repair with a short recovery time.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">As a first-line alternative to costly and invasive surgery, Regenerative Orthopedics addresses the root cause of the problem by repairing the tear and the instability. And that leads to a better recovery. </span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">What If Surgery Has Been Recommended?</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">A February 2022 paper in the journal </span><span lang=\"en-US\">Orthopedic Research and Reviews</span><span lang=\"en-US\"> discussed the challenges of treating a partial rotator cuff tear. They said: </span>“<span lang=\"en-US\">Partial thickness tears of the rotator cuff are a common cause of shoulder pain and disability. Surgery is confined to those experiencing severe symptoms despite non-operative measures, and for tears involving greater than 50% thickness. A number of surgical strategies have been described, but there is insufficient evidence to advocate one repair technique over another. . . </span>” <span lang=\"en-US\">1</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Sure, it’s possible to have a successful shoulder surgery</span>. <span lang=\"en-US\">But why choose surgery when there is an alternative that has a much shorter recovery period? We see many patients who are exploring alternatives to rotator cuff surgery because they would like to get back to work or a sport more quickly, and would prefer to avoid the long post-surgical recovery time. </span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Is Partial Rotator Cuff Surgery Even Effective?</span></h2>\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">The </span><span lang=\"en-US\">American Journal of Sports Medicine </span></strong><span lang=\"en-US\">reports that rotator cuff repair often results in significant pain postoperatively. They studied patients who underwent arthroscopic rotator cuff repair. Even a smaller tear area was associated with more frequent and severe pain after repair. </span>P<span lang=\"en-US\">lus, even younger patients who had partial-thickness tears and had occupational injuries experienced more pain postoperatively.2</span></p>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">The </span><span lang=\"en-US\">Orthopaedic Journal of Sports Medicine </span></strong><span lang=\"en-US\">found that </span>“<span lang=\"en-US\">After rotator cuff repair, some patients have ongoing problems significant enough to warrant presentation to a clinic for reassessment.</span>” <span lang=\"en-US\">About 1 in 6 patients had problems after the surgical procedure</span>.<span lang=\"en-US\">3</span></p>\r\n</li>\r\n</ul>\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">The Regenerative Orthopedics Alternative</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics is the non-surgical alternative that can offer repair without the prolonged recovery time of surgery.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Depending on the injury or degeneration involved, PRP or Stem Cells may be recommended. PRP and Stem Cells accelerate healing by using your own blood platelets and/or stem cells. These are always utilized in conjunction with Dextrose Prolotherapy in order to provide the most comprehensive treatment and repair.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Are Stem Cells and PRP Effective for Rotator Cuff Tears?</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The </span><span lang=\"en-US\">Orthopedic Research and Reviews</span> <span lang=\"en-US\">journal reports, </span>“<span lang=\"en-US\">Stem cell treatment for rotator cuff tears is a promising development because they have been shown to result in an anti-inflammatory response, improved tendon regeneration, optimized collagen fiber arrangement, higher load-to-failure, and higher tensile strength. . . In a non-randomized controlled trial comparing the effects of an exercise regime to PRP combined with bone marrow aspirate (BMAC-PRP complex) on partial rotator cuff tears, the experimental group demonstrated a significantly greater improvement in (pain, function and disability) scores compared to controls at three months. Tear size decreased after BMAC-PRP injection although this did not significantly differ from controls.</span>”<span lang=\"en-US\">1</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The </span><span lang=\"en-US\">Journal of Orthopaedic Surgery and Research</span><span lang=\"en-US\"> found a positive benefit of a combined </span><a href=\"https://www.caringmedical.com/prolotherapy-news/bone-marrow-aspirate-concentrate-prolotherapy/\"><span lang=\"en-US\">bone marrow aspirate concentrate</span></a><span lang=\"en-US\"> (stem cell) and </span><a href=\"https://www.caringmedical.com/what-is-prolotherapy-with-platelet-rich-plasma/\">platelet-rich plasma</a><span lang=\"en-US\"> (PRP)</span> <span lang=\"en-US\">BMAC-PRP injection in patients with a partial tear of the rotator cuff tendon.4</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The combination of repair with these regenerative treatments promises an excellent chance for a full recovery and full performance. In the event that surgery is truly necessary, Regenerative Orthopedics is also an excellent post-operative treatment to improve tissue strength, stability, and overall recovery. This may be a possibility when a rotator cuff tear has become large enough to produce profound weakness in the shoulder.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Please </span><a title=\"Contact us\" href=\"https://www.drfields.com/contact/\"><span lang=\"en-US\">contact us</span></a><span lang=\"en-US\"> at OrthoRegen</span>®<span lang=\"en-US\">, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.</span></p>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">References</span></strong></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">1Thangarajah T, Lo IK. Optimal Management of Partial Thickness Rotator Cuff Tears: Clinical Considerations and Practical Management. Orthopedic Research and Reviews. 2022;14:59.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">2Yeo, Daniel YT, et al. \"The relationship between intraoperative tear dimensions and postoperative pain in 1624 consecutive arthroscopic rotator cuff repairs.\" </span><span lang=\"en-US\">The American Journal of Sports Medicine</span> 45.4 (2017): 788-793.</p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">3Rizvi SM, Lam P, Murrell GA. Repair Integrity in Patients Returning for an Unscheduled Visit After Arthroscopic Rotator Cuff Repair: Retorn or Not?. Orthopaedic journal of sports medicine. 2018 May 29;6(6):2325967118775061.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">4Kim SJ, Kim EK, Kim SJ. Effects of bone marrow aspirate concentrate and platelet-rich plasma on patients with partial tear of the rotator cuff tendon. Journal of orthopaedic surgery and research. 2018 Dec;13(1):1.</span></p>','Non-Surgical Partial Rotator Cuff Tear Repair','','inherit','closed','closed','','5459-revision-v1','','','2022-08-10 03:58:26','2022-08-10 03:58:26','',5459,'https://www.drfields.com/?p=5462',0,'revision','',0),(5463,8,'2022-08-10 04:01:40','2022-08-10 04:01:40','<img class=\"wp-image-5460 alignright\" title=\"Non-Surgical Partial Rotator Cuff Tear Repair\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Rotator-Cuff.-J-Ortho-Surg-Research-500x425.jpeg\" alt=\"Non-Surgical Partial Rotator Cuff Tear Repair\" width=\"300\" height=\"255\" />\n\nHave you been told you have a partial rotator cuff tear? Surgery may have also been recommended but you would like to avoid that. So what else can you do? At OrthoRegen®, you have a non-surgical option.\n\nWe often see patients in our office who are trying to avoid surgery after a diagnosis of a partial rotator cuff tear. And we would like to help them accomplish their pain relief and restoration of function goals! Once we do a physical examination and take a medical history, we can assess which regenerative treatment will be the most effective at repairing your shoulder from the damage sustained to the rotator cuff.\n<h2>The Rotator Cuff</h2>\nThere are four muscles inside of the shoulder that allow us to rotate our arm. These four muscles form a cuff of tendons around the top of the arm or the humeral head. With a the rotator cuff tear, one or more of the tendons of those four rotator cuff muscles of the shoulder are involved.\n\nThe rotator cuff is designed to move the shoulder joint. When there is a tear, the tendons are weakened and will degenerate, increasing their susceptibility to even more tearing. Rotator cuff tears will create a cycle of instability in the shoulder and set it up for more damage if not treated.\n<h2>What Is Done for Shoulder Instability from Rotator Cuff Tears?</h2>\nTreatment for shoulder instability from tears often involves rotator cuff strengthening exercises, of the four muscles of the shoulder which include the supraspinatus, infraspinatus, subscapularis, and teres minor. They help stabilize the shoulder and assist with movement.\n\nUnfortunately, even though strengthening exercises help strengthen the shoulder muscles, they often do not resolve the underlying problem of shoulder instability. To fix shoulder joint instability, the shoulder tendons, ligaments and shoulder capsular structures must all be strengthened. And that’s where Regenerative Orthopedics comes in!\n<h2>Regenerative Orthopedics Effectively Repairs Partial Rotator Cuff Tears</h2>\nRegenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells, are excellent options for rotator cuff injuries because the treatments involve the repair and the regeneration of soft tissue. Plus, these non-surgical therapies offer repair with a short recovery time.\n\nAs a first-line alternative to costly and invasive surgery, Regenerative Orthopedics addresses the root cause of the problem by repairing the tear and the instability. And that leads to a better recovery.\n<h2>What If Surgery Has Been Recommended?</h2>\nA February 2022 paper in the journal Orthopedic Research and Reviews discussed the challenges of treating a partial rotator cuff tear. They said: “Partial thickness tears of the rotator cuff are a common cause of shoulder pain and disability. Surgery is confined to those experiencing severe symptoms despite non-operative measures, and for tears involving greater than 50% thickness. A number of surgical strategies have been described, but there is insufficient evidence to advocate one repair technique over another. . . ”\n\nSure, it’s possible to have a successful shoulder surgery. But why choose surgery when there is an alternative that has a much shorter recovery period? We see many patients who are exploring alternatives to rotator cuff surgery because they would like to get back to work or a sport more quickly, and would prefer to avoid the long post-surgical recovery time.\n<h2>Is Partial Rotator Cuff Surgery Even Effective?</h2>\n<ul>\n 	<li><strong>The American Journal of Sports Medicine</strong> reports that rotator cuff repair often results in significant pain postoperatively. They studied patients who underwent arthroscopic rotator cuff repair. Even a smaller tear area was associated with more frequent and severe pain after repair. Plus, even younger patients who had partial-thickness tears and had occupational injuries experienced more pain postoperatively.2</li>\n 	<li><strong>The Orthopaedic Journal of Sports Medicine</strong> found that “After rotator cuff repair, some patients have ongoing problems significant enough to warrant presentation to a clinic for reassessment.” About 1 in 6 patients had problems after the surgical procedure.</li>\n</ul>\n<h2>The Regenerative Orthopedics Alternative</h2>\nRegenerative Orthopedics is the non-surgical alternative that can offer repair without the prolonged recovery time of surgery.\n\nDepending on the injury or degeneration involved, PRP or Stem Cells may be recommended. PRP and Stem Cells accelerate healing by using your own blood platelets and/or stem cells. These are always utilized in conjunction with Dextrose Prolotherapy in order to provide the most comprehensive treatment and repair.\n<h2>Are Stem Cells and PRP Effective for Rotator Cuff Tears?</h2>\nThe Orthopedic Research and Reviews journal reports, “Stem cell treatment for rotator cuff tears is a promising development because they have been shown to result in an anti-inflammatory response, improved tendon regeneration, optimized collagen fiber arrangement, higher load-to-failure, and higher tensile strength. . . In a non-randomized controlled trial comparing the effects of an exercise regime to PRP combined with bone marrow aspirate (BMAC-PRP complex) on partial rotator cuff tears, the experimental group demonstrated a significantly greater improvement in (pain, function and disability) scores compared to controls at three months. Tear size decreased after BMAC-PRP injection although this did not significantly differ from controls.”1\n\nThe Journal of Orthopaedic Surgery and Research found a positive benefit of a combined bone marrow aspirate concentrate (stem cell) and platelet-rich plasma (PRP) BMAC-PRP injection in patients with a partial tear of the rotator cuff tendon.4\n\nThe combination of repair with these regenerative treatments promises an excellent chance for a full recovery and full performance. In the event that surgery is truly necessary, Regenerative Orthopedics is also an excellent post-operative treatment to improve tissue strength, stability, and overall recovery. This may be a possibility when a rotator cuff tear has become large enough to produce profound weakness in the shoulder.\n\nPlease contact us at OrthoRegen®, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.\n\n<strong>References</strong>\n\n1Thangarajah T, Lo IK. Optimal Management of Partial Thickness Rotator Cuff Tears: Clinical Considerations and Practical Management. Orthopedic Research and Reviews. 2022;14:59.\n\n2Yeo, Daniel YT, et al. \"The relationship between intraoperative tear dimensions and postoperative pain in 1624 consecutive arthroscopic rotator cuff repairs.\" The American Journal of Sports Medicine 45.4 (2017): 788-793.\n\n3Rizvi SM, Lam P, Murrell GA. Repair Integrity in Patients Returning for an Unscheduled Visit After Arthroscopic Rotator Cuff Repair: Retorn or Not?. Orthopaedic journal of sports medicine. 2018 May 29;6(6):2325967118775061.\n\n4Kim SJ, Kim EK, Kim SJ. Effects of bone marrow aspirate concentrate and platelet-rich plasma on patients with partial tear of the rotator cuff tendon. Journal of orthopaedic surgery and research. 2018 Dec;13(1):1.','Non-Surgical Partial Rotator Cuff Tear Repair','','inherit','closed','closed','','5459-autosave-v1','','','2022-08-10 04:01:40','2022-08-10 04:01:40','',5459,'https://www.drfields.com/?p=5463',0,'revision','',0),(5464,8,'2022-08-10 04:02:35','2022-08-10 04:02:35','<img class=\"wp-image-5460 alignright\" title=\"Non-Surgical Partial Rotator Cuff Tear Repair\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Rotator-Cuff.-J-Ortho-Surg-Research-500x425.jpeg\" alt=\"Non-Surgical Partial Rotator Cuff Tear Repair\" width=\"300\" height=\"255\" />\r\n\r\nHave you been told you have a partial rotator cuff tear? Surgery may have also been recommended but you would like to avoid that. So what else can you do? At OrthoRegen®, you have a non-surgical option.\r\n\r\nWe often see patients in our office who are trying to avoid surgery after a diagnosis of a partial rotator cuff tear. And we would like to help them accomplish their pain relief and restoration of function goals! Once we do a physical examination and take a medical history, we can assess which regenerative treatment will be the most effective at repairing your shoulder from the damage sustained to the rotator cuff.\r\n<h2>The Rotator Cuff</h2>\r\nThere are four muscles inside of the shoulder that allow us to rotate our arm. These four muscles form a cuff of tendons around the top of the arm or the humeral head. With a the rotator cuff tear, one or more of the tendons of those four rotator cuff muscles of the shoulder are involved.\r\n\r\nThe rotator cuff is designed to move the shoulder joint. When there is a tear, the tendons are weakened and will degenerate, increasing their susceptibility to even more tearing. Rotator cuff tears will create a cycle of instability in the shoulder and set it up for more damage if not treated.\r\n<h2>What Is Done for Shoulder Instability from Rotator Cuff Tears?</h2>\r\nTreatment for shoulder instability from tears often involves rotator cuff strengthening exercises, of the four muscles of the shoulder which include the supraspinatus, infraspinatus, subscapularis, and teres minor. They help stabilize the shoulder and assist with movement.\r\n\r\nUnfortunately, even though strengthening exercises help strengthen the shoulder muscles, they often do not resolve the underlying problem of shoulder instability. To fix shoulder joint instability, the shoulder tendons, ligaments and shoulder capsular structures must all be strengthened. And that’s where Regenerative Orthopedics comes in!\r\n<h2>Regenerative Orthopedics Effectively Repairs Partial Rotator Cuff Tears</h2>\r\nRegenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells, are excellent options for rotator cuff injuries because the treatments involve the repair and the regeneration of soft tissue. Plus, these non-surgical therapies offer repair with a short recovery time.\r\n\r\nAs a first-line alternative to costly and invasive surgery, Regenerative Orthopedics addresses the root cause of the problem by repairing the tear and the instability. And that leads to a better recovery.\r\n<h2>What If Surgery Has Been Recommended?</h2>\r\nA February 2022 paper in the journal Orthopedic Research and Reviews discussed the challenges of treating a partial rotator cuff tear. They said: “Partial thickness tears of the rotator cuff are a common cause of shoulder pain and disability. Surgery is confined to those experiencing severe symptoms despite non-operative measures, and for tears involving greater than 50% thickness. A number of surgical strategies have been described, but there is insufficient evidence to advocate one repair technique over another. . . ”\r\n\r\nSure, it’s possible to have a successful shoulder surgery. But why choose surgery when there is an alternative that has a much shorter recovery period? We see many patients who are exploring alternatives to rotator cuff surgery because they would like to get back to work or a sport more quickly, and would prefer to avoid the long post-surgical recovery time.\r\n<h2>Is Partial Rotator Cuff Surgery Even Effective?</h2>\r\n<ul>\r\n 	<li><strong>The American Journal of Sports Medicine</strong> reports that rotator cuff repair often results in significant pain postoperatively. They studied patients who underwent arthroscopic rotator cuff repair. Even a smaller tear area was associated with more frequent and severe pain after repair. Plus, even younger patients who had partial-thickness tears and had occupational injuries experienced more pain postoperatively.2</li>\r\n 	<li><strong>The Orthopaedic Journal of Sports Medicine</strong> found that “After rotator cuff repair, some patients have ongoing problems significant enough to warrant presentation to a clinic for reassessment.” About 1 in 6 patients had problems after the surgical procedure.</li>\r\n</ul>\r\n<h2>The Regenerative Orthopedics Alternative</h2>\r\nRegenerative Orthopedics is the non-surgical alternative that can offer repair without the prolonged recovery time of surgery.\r\n\r\nDepending on the injury or degeneration involved, PRP or Stem Cells may be recommended. PRP and Stem Cells accelerate healing by using your own blood platelets and/or stem cells. These are always utilized in conjunction with Dextrose Prolotherapy in order to provide the most comprehensive treatment and repair.\r\n<h2>Are Stem Cells and PRP Effective for Rotator Cuff Tears?</h2>\r\nThe Orthopedic Research and Reviews journal reports, “Stem cell treatment for rotator cuff tears is a promising development because they have been shown to result in an anti-inflammatory response, improved tendon regeneration, optimized collagen fiber arrangement, higher load-to-failure, and higher tensile strength. . . In a non-randomized controlled trial comparing the effects of an exercise regime to PRP combined with bone marrow aspirate (BMAC-PRP complex) on partial rotator cuff tears, the experimental group demonstrated a significantly greater improvement in (pain, function and disability) scores compared to controls at three months. Tear size decreased after BMAC-PRP injection although this did not significantly differ from controls.”1\r\n\r\nThe Journal of Orthopaedic Surgery and Research found a positive benefit of a combined <a title=\"Bone marrow aspirate concentrate\" href=\"https://www.caringmedical.com/prolotherapy-news/stem-cell-prolotherapy-cartilage-regeneration/\">bone marrow aspirate concentrate</a> (stem cell) and <a title=\"Platelet-rich plasma\" href=\"https://www.caringmedical.com/what-is-prolotherapy-with-platelet-rich-plasma/\">platelet-rich plasma</a> (PRP) BMAC-PRP injection in patients with a partial tear of the rotator cuff tendon.4\r\n\r\nThe combination of repair with these regenerative treatments promises an excellent chance for a full recovery and full performance. In the event that surgery is truly necessary, Regenerative Orthopedics is also an excellent post-operative treatment to improve tissue strength, stability, and overall recovery. This may be a possibility when a rotator cuff tear has become large enough to produce profound weakness in the shoulder.\r\n\r\nPlease <a href=\"https://www.drfields.com/contact/\">contact us</a> at OrthoRegen®, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.\r\n\r\n<strong>References</strong>\r\n\r\n1Thangarajah T, Lo IK. Optimal Management of Partial Thickness Rotator Cuff Tears: Clinical Considerations and Practical Management. Orthopedic Research and Reviews. 2022;14:59.\r\n\r\n2Yeo, Daniel YT, et al. \"The relationship between intraoperative tear dimensions and postoperative pain in 1624 consecutive arthroscopic rotator cuff repairs.\" The American Journal of Sports Medicine 45.4 (2017): 788-793.\r\n\r\n3Rizvi SM, Lam P, Murrell GA. Repair Integrity in Patients Returning for an Unscheduled Visit After Arthroscopic Rotator Cuff Repair: Retorn or Not?. Orthopaedic journal of sports medicine. 2018 May 29;6(6):2325967118775061.\r\n\r\n4Kim SJ, Kim EK, Kim SJ. Effects of bone marrow aspirate concentrate and platelet-rich plasma on patients with partial tear of the rotator cuff tendon. Journal of orthopaedic surgery and research. 2018 Dec;13(1):1.','Non-Surgical Partial Rotator Cuff Tear Repair','','inherit','closed','closed','','5459-revision-v1','','','2022-08-10 04:02:35','2022-08-10 04:02:35','',5459,'https://www.drfields.com/?p=5464',0,'revision','',0),(5465,8,'2022-08-10 04:03:18','2022-08-10 04:03:18','<img class=\"wp-image-5460 alignright\" title=\"Non-Surgical Partial Rotator Cuff Tear Repair\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Rotator-Cuff.-J-Ortho-Surg-Research-500x425.jpeg\" alt=\"Non-Surgical Partial Rotator Cuff Tear Repair\" width=\"300\" height=\"255\" />\r\n\r\nHave you been told you have a partial rotator cuff tear? Surgery may have also been recommended but you would like to avoid that. So what else can you do? At OrthoRegen®, you have a non-surgical option.\r\n\r\nWe often see patients in our office who are trying to avoid surgery after a diagnosis of a partial rotator cuff tear. And we would like to help them accomplish their pain relief and restoration of function goals! Once we do a physical examination and take a medical history, we can assess which regenerative treatment will be the most effective at repairing your shoulder from the damage sustained to the rotator cuff.\r\n<h2>The Rotator Cuff</h2>\r\nThere are four muscles inside of the shoulder that allow us to rotate our arm. These four muscles form a cuff of tendons around the top of the arm or the humeral head. With a the rotator cuff tear, one or more of the tendons of those four rotator cuff muscles of the shoulder are involved.\r\n\r\nThe rotator cuff is designed to move the shoulder joint. When there is a tear, the tendons are weakened and will degenerate, increasing their susceptibility to even more tearing. Rotator cuff tears will create a cycle of instability in the shoulder and set it up for more damage if not treated.\r\n<h2>What Is Done for Shoulder Instability from Rotator Cuff Tears?</h2>\r\nTreatment for shoulder instability from tears often involves rotator cuff strengthening exercises, of the four muscles of the shoulder which include the supraspinatus, infraspinatus, subscapularis, and teres minor. They help stabilize the shoulder and assist with movement.\r\n\r\nUnfortunately, even though strengthening exercises help strengthen the shoulder muscles, they often do not resolve the underlying problem of shoulder instability. To fix shoulder joint instability, the shoulder tendons, ligaments and shoulder capsular structures must all be strengthened. And that’s where Regenerative Orthopedics comes in!\r\n<h2>Regenerative Orthopedics Effectively Repairs Partial Rotator Cuff Tears</h2>\r\nRegenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells, are excellent options for rotator cuff injuries because the treatments involve the repair and the regeneration of soft tissue. Plus, these non-surgical therapies offer repair with a short recovery time.\r\n\r\nAs a first-line alternative to costly and invasive surgery, Regenerative Orthopedics addresses the root cause of the problem by repairing the tear and the instability. And that leads to a better recovery.\r\n<h2>What If Surgery Has Been Recommended?</h2>\r\nA February 2022 paper in the journal Orthopedic Research and Reviews discussed the challenges of treating a partial rotator cuff tear. They said: “Partial thickness tears of the rotator cuff are a common cause of shoulder pain and disability. Surgery is confined to those experiencing severe symptoms despite non-operative measures, and for tears involving greater than 50% thickness. A number of surgical strategies have been described, but there is insufficient evidence to advocate one repair technique over another. . . ”\r\n\r\nSure, it’s possible to have a successful shoulder surgery. But why choose surgery when there is an alternative that has a much shorter recovery period? We see many patients who are exploring alternatives to rotator cuff surgery because they would like to get back to work or a sport more quickly, and would prefer to avoid the long post-surgical recovery time.\r\n<h2>Is Partial Rotator Cuff Surgery Even Effective?</h2>\r\n<ul>\r\n 	<li><strong>The American Journal of Sports Medicine</strong> reports that rotator cuff repair often results in significant pain postoperatively. They studied patients who underwent arthroscopic rotator cuff repair. Even a smaller tear area was associated with more frequent and severe pain after repair. Plus, even younger patients who had partial-thickness tears and had occupational injuries experienced more pain postoperatively.2</li>\r\n 	<li><strong>The Orthopaedic Journal of Sports Medicine</strong> found that “After rotator cuff repair, some patients have ongoing problems significant enough to warrant presentation to a clinic for reassessment.” About 1 in 6 patients had problems after the surgical procedure.</li>\r\n</ul>\r\n<h2>The Regenerative Orthopedics Alternative</h2>\r\nRegenerative Orthopedics is the non-surgical alternative that can offer repair without the prolonged recovery time of surgery.\r\n\r\nDepending on the injury or degeneration involved, PRP or Stem Cells may be recommended. PRP and Stem Cells accelerate healing by using your own blood platelets and/or stem cells. These are always utilized in conjunction with Dextrose Prolotherapy in order to provide the most comprehensive treatment and repair.\r\n<h2>Are Stem Cells and PRP Effective for Rotator Cuff Tears?</h2>\r\nThe Orthopedic Research and Reviews journal reports, “Stem cell treatment for rotator cuff tears is a promising development because they have been shown to result in an anti-inflammatory response, improved tendon regeneration, optimized collagen fiber arrangement, higher load-to-failure, and higher tensile strength. . . In a non-randomized controlled trial comparing the effects of an exercise regime to PRP combined with bone marrow aspirate (BMAC-PRP complex) on partial rotator cuff tears, the experimental group demonstrated a significantly greater improvement in (pain, function and disability) scores compared to controls at three months. Tear size decreased after BMAC-PRP injection although this did not significantly differ from controls.”1\r\n\r\nThe Journal of Orthopaedic Surgery and Research found a positive benefit of a combined <a title=\"Bone marrow aspirate concentrate\" href=\"https://www.caringmedical.com/prolotherapy-news/stem-cell-prolotherapy-cartilage-regeneration/\" target=\"_blank\" rel=\"noopener\">bone marrow aspirate concentrate</a> (stem cell) and <a title=\"Platelet-rich plasma\" href=\"https://www.caringmedical.com/what-is-prolotherapy-with-platelet-rich-plasma/\" target=\"_blank\" rel=\"noopener\">platelet-rich plasma</a> (PRP) BMAC-PRP injection in patients with a partial tear of the rotator cuff tendon.4\r\n\r\nThe combination of repair with these regenerative treatments promises an excellent chance for a full recovery and full performance. In the event that surgery is truly necessary, Regenerative Orthopedics is also an excellent post-operative treatment to improve tissue strength, stability, and overall recovery. This may be a possibility when a rotator cuff tear has become large enough to produce profound weakness in the shoulder.\r\n\r\nPlease <a href=\"https://www.drfields.com/contact/\">contact us</a> at OrthoRegen®, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.\r\n\r\n<strong>References</strong>\r\n\r\n1Thangarajah T, Lo IK. Optimal Management of Partial Thickness Rotator Cuff Tears: Clinical Considerations and Practical Management. Orthopedic Research and Reviews. 2022;14:59.\r\n\r\n2Yeo, Daniel YT, et al. \"The relationship between intraoperative tear dimensions and postoperative pain in 1624 consecutive arthroscopic rotator cuff repairs.\" The American Journal of Sports Medicine 45.4 (2017): 788-793.\r\n\r\n3Rizvi SM, Lam P, Murrell GA. Repair Integrity in Patients Returning for an Unscheduled Visit After Arthroscopic Rotator Cuff Repair: Retorn or Not?. Orthopaedic journal of sports medicine. 2018 May 29;6(6):2325967118775061.\r\n\r\n4Kim SJ, Kim EK, Kim SJ. Effects of bone marrow aspirate concentrate and platelet-rich plasma on patients with partial tear of the rotator cuff tendon. Journal of orthopaedic surgery and research. 2018 Dec;13(1):1.','Non-Surgical Partial Rotator Cuff Tear Repair','','inherit','closed','closed','','5459-revision-v1','','','2022-08-10 04:03:18','2022-08-10 04:03:18','',5459,'https://www.drfields.com/?p=5465',0,'revision','',0),(5467,9,'2022-08-22 20:03:01','2022-08-22 20:03:01','<img class=\"wp-image-5460 alignright\" title=\"Non-Surgical Partial Rotator Cuff Tear Repair\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Rotator-Cuff.-J-Ortho-Surg-Research-500x425.jpeg\" alt=\"Non-Surgical Partial Rotator Cuff Tear Repair\" width=\"300\" height=\"255\" />\n<h2>Partial Rotator Cuff Tear Repair</h2>\nHave you been told you have a partial rotator cuff tear? Surgery may have also been recommended, but you would like to avoid that. So what else can you do? At OrthoRegen®, you have a non-surgical option.\n\nWe often see patients in our office trying to avoid surgery after diagnosing a partial rotator cuff tear. And we would like to help them accomplish their pain relief and restoration of function goals! Once we do a physical examination and take a medical history, we can assess which regenerative treatment will most effectively repair your shoulder from the damage sustained to the rotator cuff.\n<h2>The Rotator Cuff</h2>\nThere are four muscles inside of the shoulder that allow us to rotate our arms. These four muscles form a cuff of tendons around the top of the arm or the humeral head. With a rotator cuff tear, one or more of the tendons of those four rotator cuff muscles of the shoulder are involved.\n\nThe rotator cuff is designed to move the shoulder joint. When there is a tear, the tendons are weakened and will degenerate, increasing their susceptibility to even more tears. Rotator cuff tears will create a cycle of instability in the shoulder and set it up for more damage if not treated.\n<h2>What Is Done for Shoulder Instability from Rotator Cuff Tears?</h2>\nTreatment for shoulder instability from tears often involves rotator cuff strengthening exercises of the four muscles of the shoulder, which include the supraspinatus, infraspinatus, subscapularis, and teres minor. They help stabilize the shoulder and assist with movement.\n\nUnfortunately, even though strengthening exercises help strengthen the shoulder muscles, they often do not resolve the underlying problem of shoulder instability. To fix shoulder joint instability, the shoulder tendons, ligaments, and shoulder capsular structures must all be strengthened. And that’s where Regenerative Orthopedics comes in!\n<h2>Regenerative Orthopedics Effectively Repairs Partial Rotator Cuff Tears</h2>\nRegenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells, are excellent options for rotator cuff injuries because the treatments involve repairing and regenerating soft tissue. Plus, these non-surgical therapies offer repair with a short recovery time.\n\nRegenerative Orthopedics addresses the root cause of the problem by repairing the tear and the instability as a first-line alternative to costly and invasive surgery. And that leads to a better recovery.\n<h2>What If Surgery Has Been Recommended?</h2>\nA February 2022 paper in the journal Orthopedic Research and Reviews(1) discussed the challenges of treating a partial rotator cuff tear.\n\nThey said: “Partial thickness tears of the rotator cuff are a common cause of shoulder pain and disability. Surgery is confined to those experiencing severe symptoms despite non-operative measures and for tears involving greater than 50% thickness. A number of surgical strategies have been described, but there is insufficient evidence to advocate one repair technique over another. . . ”\n\nSure, it’s possible to have successful shoulder surgery. But why choose surgery when there is an alternative that has a much shorter recovery period? We see many patients who are exploring alternatives to rotator cuff surgery because they would like to get back to work or a sport more quickly and would prefer to avoid the long post-surgical recovery time.\n<h2>Is Partial Rotator Cuff Surgery Even Effective?</h2>\n<ul>\n 	<li><strong>The American Journal of Sports Medicine</strong> reports that rotator cuff repair often results in significant pain postoperatively. They studied patients who underwent arthroscopic rotator cuff repair. Even a smaller tear area was associated with more frequent and severe pain after repair. Plus, even younger patients who had partial-thickness tears and had occupational injuries experienced more pain postoperatively.(2)</li>\n 	<li><strong>The Orthopaedic Journal of Sports Medicine</strong> found that “After rotator cuff repair, some patients have ongoing problems significant enough to warrant presentation to a clinic for reassessment.” About 1 in 6 patients had problems after the surgical procedure. (3)</li>\n</ul>\n<h2>The Regenerative Orthopedics Alternative</h2>\nRegenerative Orthopedics is the non-surgical alternative that can offer repair without the prolonged recovery time of surgery.\n\nPRP or Stem Cells may be recommended depending on the injury or degeneration involved. PRP and Stem Cells accelerate healing by using your own blood platelets and/or stem cells. These are always used in conjunction with Dextrose Prolotherapy to provide the most comprehensive treatment and repair.\n<h2>Are Stem Cells and PRP Effective for Rotator Cuff Tears?</h2>\nThe Orthopedic Research and Reviews journal reports, “Stem cell treatment for rotator cuff tears is a promising development because they have been shown to result in an anti-inflammatory response, improved tendon regeneration, optimized collagen fiber arrangement, higher load-to-failure, and higher tensile strength. . . In a non-randomized controlled trial comparing the effects of an exercise regime to PRP combined with bone marrow aspirate (BMAC-PRP complex) on partial rotator cuff tears, the experimental group demonstrated a significantly greater improvement in (pain, function and disability) scores compared to controls at three months. Tear size decreased after BMAC-PRP injection although this did not significantly differ from controls.”(1)\n\nThe Journal of Orthopaedic Surgery and Research found a positive benefit of a combined bone marrow aspirate concentrate (stem cell) and platelet-rich plasma (PRP) BMAC-PRP injection in patients with a partial tear of the rotator cuff tendon. (4)\n\nThe combination of repair with these regenerative treatments promises an excellent chance for full recovery and full performance. In the event that surgery is truly necessary, Regenerative Orthopedics is also an excellent post-operative treatment to improve tissue strength, stability, and overall recovery. This may be a possibility when a rotator cuff tear has become large enough to produce profound weakness in the shoulder.\n\nPlease <a href=\"https://www.drfields.com/contact/\">contact us</a> at OrthoRegen®, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.\n<h3><strong>References</strong></h3>\n1Thangarajah T, Lo IK. Optimal Management of Partial Thickness Rotator Cuff Tears: Clinical Considerations and Practical Management. Orthopedic Research and Reviews. 2022;14:59.\n\n2Yeo, Daniel YT, et al. \"The relationship between intraoperative tear dimensions and postoperative pain in 1624 consecutive arthroscopic rotator cuff repairs.\" The American Journal of Sports Medicine 45.4 (2017): 788-793.\n\n3Rizvi SM, Lam P, Murrell GA. Repair Integrity in Patients Returning for an Unscheduled Visit After Arthroscopic Rotator Cuff Repair: Retorn or Not? Orthopaedic journal of sports medicine. 2018 May 29;6(6):2325967118775061.\n\n4Kim SJ, Kim EK, Kim SJ. Effects of bone marrow aspirate concentrate and platelet-rich plasma on patients with partial tear of the rotator cuff tendon. Journal of orthopaedic surgery and research. 2018 Dec;13(1):1.','Non-Surgical Partial Rotator Cuff Tear Repair','','inherit','closed','closed','','5459-autosave-v1','','','2022-08-22 20:03:01','2022-08-22 20:03:01','',5459,'https://www.drfields.com/?p=5467',0,'revision','',0),(5468,9,'2022-08-22 20:03:16','2022-08-22 20:03:16','<img class=\"wp-image-5460 alignright\" title=\"Non-Surgical Partial Rotator Cuff Tear Repair\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Rotator-Cuff.-J-Ortho-Surg-Research-500x425.jpeg\" alt=\"Non-Surgical Partial Rotator Cuff Tear Repair\" width=\"300\" height=\"255\" />\r\n<h2>Partial Rotator Cuff Tear Repair</h2>\r\nHave you been told you have a partial rotator cuff tear? Surgery may have also been recommended, but you would like to avoid that. So what else can you do? At OrthoRegen®, you have a non-surgical option.\r\n\r\nWe often see patients in our office trying to avoid surgery after diagnosing a partial rotator cuff tear. And we would like to help them accomplish their pain relief and restoration of function goals! Once we do a physical examination and take a medical history, we can assess which regenerative treatment will most effectively repair your shoulder from the damage sustained to the rotator cuff.\r\n<h2>The Rotator Cuff</h2>\r\nThere are four muscles inside of the shoulder that allow us to rotate our arms. These four muscles form a cuff of tendons around the top of the arm or the humeral head. With a rotator cuff tear, one or more of the tendons of those four rotator cuff muscles of the shoulder are involved.\r\n\r\nThe rotator cuff is designed to move the shoulder joint. When there is a tear, the tendons are weakened and will degenerate, increasing their susceptibility to even more tears. Rotator cuff tears will create a cycle of instability in the shoulder and set it up for more damage if not treated.\r\n<h2>What Is Done for Shoulder Instability from Rotator Cuff Tears?</h2>\r\nTreatment for shoulder instability from tears often involves rotator cuff strengthening exercises of the four muscles of the shoulder, which include the supraspinatus, infraspinatus, subscapularis, and teres minor. They help stabilize the shoulder and assist with movement.\r\n\r\nUnfortunately, even though strengthening exercises help strengthen the shoulder muscles, they often do not resolve the underlying problem of shoulder instability. To fix shoulder joint instability, the shoulder tendons, ligaments, and shoulder capsular structures must all be strengthened. And that’s where Regenerative Orthopedics comes in!\r\n<h2>Regenerative Orthopedics Effectively Repairs Partial Rotator Cuff Tears</h2>\r\nRegenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells, are excellent options for rotator cuff injuries because the treatments involve repairing and regenerating soft tissue. Plus, these non-surgical therapies offer repair with a short recovery time.\r\n\r\nRegenerative Orthopedics addresses the root cause of the problem by repairing the tear and the instability as a first-line alternative to costly and invasive surgery. And that leads to a better recovery.\r\n<h2>What If Surgery Has Been Recommended?</h2>\r\nA February 2022 paper in the journal Orthopedic Research and Reviews(1) discussed the challenges of treating a partial rotator cuff tear.\r\n\r\nThey said: “Partial thickness tears of the rotator cuff are a common cause of shoulder pain and disability. Surgery is confined to those experiencing severe symptoms despite non-operative measures and for tears involving greater than 50% thickness. A number of surgical strategies have been described, but there is insufficient evidence to advocate one repair technique over another. . . ”\r\n\r\nSure, it’s possible to have successful shoulder surgery. But why choose surgery when there is an alternative that has a much shorter recovery period? We see many patients who are exploring alternatives to rotator cuff surgery because they would like to get back to work or a sport more quickly and would prefer to avoid the long post-surgical recovery time.\r\n<h2>Is Partial Rotator Cuff Surgery Even Effective?</h2>\r\n<ul>\r\n 	<li><strong>The American Journal of Sports Medicine</strong> reports that rotator cuff repair often results in significant pain postoperatively. They studied patients who underwent arthroscopic rotator cuff repair. Even a smaller tear area was associated with more frequent and severe pain after repair. Plus, even younger patients who had partial-thickness tears and had occupational injuries experienced more pain postoperatively.(2)</li>\r\n 	<li><strong>The Orthopaedic Journal of Sports Medicine</strong> found that “After rotator cuff repair, some patients have ongoing problems significant enough to warrant presentation to a clinic for reassessment.” About 1 in 6 patients had problems after the surgical procedure. (3)</li>\r\n</ul>\r\n<h2>The Regenerative Orthopedics Alternative</h2>\r\nRegenerative Orthopedics is the non-surgical alternative that can offer repair without the prolonged recovery time of surgery.\r\n\r\nPRP or Stem Cells may be recommended depending on the injury or degeneration involved. PRP and Stem Cells accelerate healing by using your own blood platelets and/or stem cells. These are always used in conjunction with Dextrose Prolotherapy to provide the most comprehensive treatment and repair.\r\n<h2>Are Stem Cells and PRP Effective for Rotator Cuff Tears?</h2>\r\nThe Orthopedic Research and Reviews journal reports, “Stem cell treatment for rotator cuff tears is a promising development because they have been shown to result in an anti-inflammatory response, improved tendon regeneration, optimized collagen fiber arrangement, higher load-to-failure, and higher tensile strength. . . In a non-randomized controlled trial comparing the effects of an exercise regime to PRP combined with bone marrow aspirate (BMAC-PRP complex) on partial rotator cuff tears, the experimental group demonstrated a significantly greater improvement in (pain, function and disability) scores compared to controls at three months. Tear size decreased after BMAC-PRP injection although this did not significantly differ from controls.”(1)\r\n\r\nThe Journal of Orthopaedic Surgery and Research found a positive benefit of a combined bone marrow aspirate concentrate (stem cell) and platelet-rich plasma (PRP) BMAC-PRP injection in patients with a partial tear of the rotator cuff tendon. (4)\r\n\r\nThe combination of repair with these regenerative treatments promises an excellent chance for full recovery and full performance. In the event that surgery is truly necessary, Regenerative Orthopedics is also an excellent post-operative treatment to improve tissue strength, stability, and overall recovery. This may be a possibility when a rotator cuff tear has become large enough to produce profound weakness in the shoulder.\r\n\r\nPlease <a href=\"https://www.drfields.com/contact/\">contact us</a> at OrthoRegen®, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.\r\n<h3><strong>References</strong></h3>\r\n1Thangarajah T, Lo IK. Optimal Management of Partial Thickness Rotator Cuff Tears: Clinical Considerations and Practical Management. Orthopedic Research and Reviews. 2022;14:59.\r\n\r\n2Yeo, Daniel YT, et al. \"The relationship between intraoperative tear dimensions and postoperative pain in 1624 consecutive arthroscopic rotator cuff repairs.\" The American Journal of Sports Medicine 45.4 (2017): 788-793.\r\n\r\n3Rizvi SM, Lam P, Murrell GA. Repair Integrity in Patients Returning for an Unscheduled Visit After Arthroscopic Rotator Cuff Repair: Retorn or Not? Orthopaedic journal of sports medicine. 2018 May 29;6(6):2325967118775061.\r\n\r\n4Kim SJ, Kim EK, Kim SJ. Effects of bone marrow aspirate concentrate and platelet-rich plasma on patients with partial tear of the rotator cuff tendon. Journal of orthopaedic surgery and research. 2018 Dec;13(1):1.','Non-Surgical Partial Rotator Cuff Tear Repair','','inherit','closed','closed','','5459-revision-v1','','','2022-08-22 20:03:16','2022-08-22 20:03:16','',5459,'https://www.drfields.com/?p=5468',0,'revision','',0),(5469,9,'2022-08-22 20:05:56','2022-08-22 20:05:56','&nbsp;\r\n<h4>Honduras 2007</h4>\r\n&nbsp;\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_444\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-444\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg\" alt=\"Attending A Noon Lecture\" width=\"225\" height=\"150\" /> Attending A Noon Lecture[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_449\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-449\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg\" alt=\"Dr. Timmerman Instructs A New Physician\" width=\"225\" height=\"150\" /> Dr. Timmerman Instructs A New Physician[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_446\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-446\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg\" alt=\"Dr. Fields, A Colleague And Two Translators1\" width=\"225\" height=\"150\" /> Dr. Fields, A Colleague And Two Translators1[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_447\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-447\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg\" alt=\"Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School\" width=\"225\" height=\"150\" /> Dr. Fields, Two Young Translators And The Owner Of The Local Bi Lingual School[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_448\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-448\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg\" alt=\"Dr. Patterson Giving A Noon Time Lecture\" width=\"225\" height=\"150\" /> Dr. Patterson Giving A Noon Time Lecture[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_445\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-445\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg\" alt=\"Dr.. Fields And The Owner Of A Local Restaurant\" width=\"225\" height=\"150\" /> Dr.. Fields And The Owner Of A Local Restaurant[/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_450\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-450\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Local-transport.jpg\" alt=\"Local Transport!\" width=\"225\" height=\"150\" /> Local Transport![/caption]\r\n\r\n</div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_451\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-451\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/One-of-the-treatment-rooms.jpg\" alt=\"One Of The Treatment Rooms\" width=\"225\" height=\"150\" /> One Of The Treatment Rooms[/caption]\r\n\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"col-md-5\">\r\n\r\n[caption id=\"attachment_452\" align=\"aligncenter\" width=\"225\"]<img class=\"size-full wp-image-452\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Our-make-shift-treatment-area.jpg\" alt=\"Our Make Shift Treatment Area\" width=\"225\" height=\"150\" /> Our Make Shift Treatment Area[/caption]\r\n\r\n</div>','Honduras 2007','','inherit','closed','closed','','453-revision-v1','','','2022-08-22 20:05:56','2022-08-22 20:05:56','',453,'https://www.drfields.com/?p=5469',0,'revision','',0),(5470,9,'2022-08-22 20:07:24','2022-08-22 20:07:24','&nbsp;\r\n<h4>Honduras 2009</h4>\r\n<table class=\"resptable\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_488\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-488\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-and-Matt.jpg\" alt=\"Dr\'s Peter And Matt\" width=\"255\" height=\"191\" /> Dr. Fields instructs Dr. Matt[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_489\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-489\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F.-Lecturing-1.jpg\" alt=\"Dr F. Lecturing 1\" width=\"255\" height=\"191\" /> Dr. Fields lecturing[/caption]</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_490\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-490\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1562.jpg\" alt=\"Dscn1562\" width=\"255\" height=\"192\" /> Dr\'s Bill, Saul and Peter[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_491\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-491\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1727.jpg\" alt=\"Dscn1727\" width=\"255\" height=\"191\" /> Dr. Fields and student Dr. Laurent[/caption]</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_492\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-492\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1739.jpg\" alt=\"Dscn1739\" width=\"255\" height=\"191\" /> Dr. Fields and the La Ceiba Red Cross Staff[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_493\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-493\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1760.jpg\" alt=\"Dscn1760\" width=\"255\" height=\"191\" /> Dr\'s Saul, Matt, Laurent and Dr. Pedro Campos![/caption]</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_494\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-494\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1761.jpg\" alt=\"Dscn1761\" width=\"255\" height=\"191\" /> Dr\'s Sandra and Josette- our Honduran Docs[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_495\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-495\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1790.jpg\" alt=\"Dscn1790\" width=\"255\" height=\"191\" /> Dr\'s Peter, Deb, Saul, Red Cross aid with a pt and her child[/caption]</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_496\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-496\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/DSCN1796.jpg\" alt=\"Dscn1796\" width=\"255\" height=\"191\" /> The La Ceiba team[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_497\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-497\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-adjusts-a-patient.jpg\" alt=\"Dr Fields Adjusts A Patient\" width=\"255\" height=\"191\" /> Dr. Fields adjusts a patient while other<br />doctors obserserve[/caption]</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_498\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-498\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-instructs.jpg\" alt=\"Dr Fields Instructs\" width=\"255\" height=\"191\" /> Dr. Fields Instructs[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_499\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-499\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-Bill-Joe-and-patient.jpg\" alt=\"Dr\'s Peter, Bill, Joe And Patient\" width=\"255\" height=\"191\" /> Dr\'s Peter, Bill, Joe and patient[/caption]</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_500\" align=\"aligncenter\" width=\"217\"]<img class=\"size-full wp-image-500\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-giving-a-lecture.jpg\" alt=\"Dr Fields Giving A Lecture\" width=\"217\" height=\"255\" /> Dr. Fields giving a lecture[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_501\" align=\"aligncenter\" width=\"200\"]<img class=\"size-full wp-image-501\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr-F-and-skeleton.jpg\" alt=\"Dr F And Skeleton\" width=\"200\" height=\"255\" /> Dr. Fields and Dr. Bones[/caption]</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n\r\n[caption id=\"attachment_502\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-502\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Dinner-at-the-hotel.jpg\" alt=\"Dinner At The Hotel\" width=\"255\" height=\"191\" /> Dinner at the hotel[/caption]</td>\r\n<td>\r\n\r\n[caption id=\"attachment_503\" align=\"aligncenter\" width=\"255\"]<img class=\"size-full wp-image-503\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/horse.jpg\" alt=\"Horse\" width=\"255\" height=\"202\" /> Local transport[/caption]</td>\r\n</tr>\r\n</tbody>\r\n</table>','Honduras 2009','','inherit','closed','closed','','504-revision-v1','','','2022-08-22 20:07:24','2022-08-22 20:07:24','',504,'https://www.drfields.com/?p=5470',0,'revision','',0),(5471,9,'2022-08-22 20:09:45','2022-08-22 20:09:45','<h4>Lecture in Mexico City on July 9th about Stem Cells/PRP/Prolotherapy</h4>\r\n<img class=\"wp-image-5147 size-medium alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Copy-of-Mexico-City-Lecture-2-500x419.png\" alt=\"Copy Of Mexico City Lecture 2\" width=\"500\" height=\"419\" />\r\n\r\nPeter A. Fields, MD, DC will lecture at the 14th World Congress on Anti-Aging and Longevity Medicine in Mexico City, Mexico on July 9th.\r\n\r\nLecture time: <strong>11:00 AM</strong>\r\n\r\nEmail pcc@drfields.com for more information.\r\n<h4>Regenerative Medicine Teaching in Mexico</h4>\r\nWe\'re excited to teach more professionals about this effective treatment to fix joints and the spine without surgery. <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cells</a>, PRP, and Prolotherapy are all effective regenerative medicine treatments that help people with joint and spine pain to achieve both relief and repair.\r\n\r\nTo access the information for the conference you can <a href=\"http://www.medicina-antienvejecimiento.net/\">click</a> on the following link. <a href=\"https://urldefense.proofpoint.com/v2/url?u=http-3A__www.medicina-2Dantienvejecimiento.net_&amp;d=DwMCaQ&amp;c=WO-RGvefibhHBZq3fL85hQ&amp;r=1mlZdwzxLMndjoil0MO5evkLwBowWYcXVyCp4Vbxfds&amp;m=-Zcix8_Tm618JjCVm5ExeqsI0cYP75-OIrRKIfbDyJL_F3-gD7ZpIucCH6k9b3dQ&amp;s=HPDad0dRWasD0G4qNd1wGul0XoVhEbEukb3zY8ki5Go&amp;e=\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">www.medicina-antienvejecimiento.net/</a>\r\n\r\n[caption id=\"attachment_5146\" align=\"alignnone\" width=\"500\"]<img class=\"wp-image-5146 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/14th-World-Congress-on-Anti-Aging-and-Longevity-Medicine-500x239.png\" alt=\"14th World Congress On Anti Aging And Longevity Medicine\" width=\"500\" height=\"239\" /> <strong>     14th World Congress On Anti-Aging And Longevity Medicine</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Dr. Fields to Lecture in Mexico City on July 9th','','inherit','closed','closed','','1471-revision-v1','','','2022-08-22 20:09:45','2022-08-22 20:09:45','',1471,'https://www.drfields.com/?p=5471',0,'revision','',0),(5472,9,'2022-08-22 20:10:39','2022-08-22 20:10:39','<h4>Lecture in Mexico City on July 9th about Stem Cells/PRP/Prolotherapy</h4>\r\n<img class=\"wp-image-5147 size-medium alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Copy-of-Mexico-City-Lecture-2-500x419.png\" alt=\"Copy Of Mexico City Lecture 2\" width=\"500\" height=\"419\" />\r\n\r\nPeter A. Fields, MD, DC, will lecture in Mexico City at the 14th World Congress on Anti-Aging and Longevity Medicine on July 9th.\r\n\r\nLecture time: <strong>11:00 AM</strong>\r\n\r\nEmail pcc@drfields.com for more information.\r\n<h4>Regenerative Medicine Teaching in Mexico</h4>\r\nWe\'re excited to teach more professionals about this effective treatment to fix joints and the spine without surgery. <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cells</a>, PRP, and Prolotherapy are all effective regenerative medicine treatments that help people with joint and spine pain to achieve both relief and repair.\r\n\r\nTo access the information for the conference you can <a href=\"http://www.medicina-antienvejecimiento.net/\">click</a> on the following link. <a href=\"https://urldefense.proofpoint.com/v2/url?u=http-3A__www.medicina-2Dantienvejecimiento.net_&amp;d=DwMCaQ&amp;c=WO-RGvefibhHBZq3fL85hQ&amp;r=1mlZdwzxLMndjoil0MO5evkLwBowWYcXVyCp4Vbxfds&amp;m=-Zcix8_Tm618JjCVm5ExeqsI0cYP75-OIrRKIfbDyJL_F3-gD7ZpIucCH6k9b3dQ&amp;s=HPDad0dRWasD0G4qNd1wGul0XoVhEbEukb3zY8ki5Go&amp;e=\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">www.medicina-antienvejecimiento.net/</a>\r\n\r\n[caption id=\"attachment_5146\" align=\"alignnone\" width=\"500\"]<img class=\"wp-image-5146 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/14th-World-Congress-on-Anti-Aging-and-Longevity-Medicine-500x239.png\" alt=\"14th World Congress On Anti Aging And Longevity Medicine\" width=\"500\" height=\"239\" /> <strong>     14th World Congress On Anti-Aging And Longevity Medicine</strong>[/caption]\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Dr. Fields to Lecture in Mexico City on July 9th','','inherit','closed','closed','','1471-revision-v1','','','2022-08-22 20:10:39','2022-08-22 20:10:39','',1471,'https://www.drfields.com/?p=5472',0,'revision','',0),(5474,8,'2022-08-23 06:00:06','2022-08-23 06:00:06','<img class=\"wp-image-5475 alignright\" title=\"Sprained Ankle?\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Sprained-Ankle-500x419.png\" alt=\"Sprained Ankle?\" width=\"300\" height=\"251\" />\r\n<h2>Sprained Ankles?</h2>\r\nDo you experience recurrent sprained ankles? Is your ankle constantly giving out or overturning? These are common problems for those with instability in their ankle! Frequent swelling, pain, and a decrease in range of motion or possibly an excess of movement are also symptoms of those who experience recurring ankle sprains.\r\n<h2>What Causes Frequent Sprained Ankles?</h2>\r\nAnything that stretches the ankle further than it is used to can cause an injury to the ankle ligaments. For example, overturning the ankle inwards or outwards can injure the ligaments. Ankle sprains consist of some type of ligament injury. These injuries may be mild, moderate, or severe, but all involve ligament injury and/or tears of the ankle\'s ligaments.\r\n\r\nIf this ligament injury does not fully heal, a cycle of instability begins because the ligament(s) are weakened, allowing for abnormal ankle joint movement. As time progresses, other structures of the unstable ankle joint will also begin to degenerate, resulting in eventual arthritis.\r\n<h2>Why Haven’t Common Treatments Worked to Stabilize Weak or Sprained Ankles?</h2>\r\nIf you look up common treatments for ankle sprains, you will find rest, ice, compression, elevation, anti-inflammatory medications, and bracing or casting. Those with repeat ankle sprains have most likely tried all of these treatments.\r\n\r\nSure, they may provide some relief, but the ankle remains unstable. That is because none of these treatments repair the injured ligaments.\r\n<ul>\r\n 	<li>Ice does not repair ligaments.</li>\r\n 	<li>Braces, taping, and casts do not repair ligaments</li>\r\n 	<li>Elevation does not repair ligaments</li>\r\n 	<li>Anti-inflammatories do not repair ligaments</li>\r\n 	<li>Pain medications do not repair ligaments</li>\r\n</ul>\r\nAnd since 86% of ankle injuries are ligament sprains1, a treatment directed at ligament repair is what is necessary. Yes, treatments like physical therapy to strengthen musculature are helpful, but since muscles also depend on strong tendons and ligaments for proper function and stability, repair of these soft tissue structures will need to be addressed.\r\n<h2>Regenerative Treatment Is An Effective Way to Repair Weakened Ligaments</h2>\r\nAt OrthoRegen®, our treatment of choice is Regenerative Orthopedics. The great news is that these non-surgical treatments actually work to repair the ligaments. The treatment is not just a bandaid or a cover-up for the pain. Regenerative therapies, like Prolotherapy, PRP, and Stem Cells, have been shown to repair and regenerate the injured soft tissue structures.\r\n\r\nThe joint is strengthened by repairing the ligaments and other soft tissue structures, and the instability is resolved. Regenerative Orthopedics is a comprehensive treatment directed at all of the involved structures for the best possible outcome. The result is decreased pain and stiffness and increased function, improving quality of life.2\r\n\r\nIn cases with more deterioration, PRP or Stem Cells may be recommended in addition to Prolotherapy. Research has shown that these treatments also repair the ankle\'s soft tissue and boost function. Even in high ankle sprains, PRP has been shown to return athletes to full activity.\r\n\r\nAt OrthoRegen®, we have many years of experience in Regenerative therapies and would be happy to help you resolve your recurrent ankle sprains and improve your ankle function. Call us today at (310)453-1234.\r\n\r\n1Mulcahey MK, Bernhardson AS, Murphy CP, Chang A, Zajac T, Sanchez G, Sanchez A, Whalen JM, Price MD, Clanton TO, Provencher MT. The Epidemiology of Ankle Injuries Identified at the National Football League Combine, 2009-2015. Orthopaedic journal of sports medicine. 2018 Jul 17;6(7):2325967118786227.\r\n\r\n2Hauser RA, Hauser, MA, Cukla J. Dextrose Prolotherapy Injections for Chronic Ankle Pain Practical PAIN MANAGEMENT, January/February 2010 p 70-76.\r\n\r\n3Laver L, Carmont MR, McConkey MO, Palmanovich E, Yaacobi E, Mann G, Nyska M, Kots E, Mei-Dan O. Plasma rich in growth factors (PRGF) as a treatment for high ankle sprain in elite athletes: a randomized control trial. Knee Surg Sports Traumatol Arthrosc. 2015 Nov;23(11):3383-92.','Sprained or Overturned Ankle?','','publish','closed','open','','sprained-ankles','','','2022-08-26 22:03:16','2022-08-26 22:03:16','',0,'https://www.drfields.com/?p=5474',0,'post','',0),(5475,8,'2022-08-23 05:20:22','2022-08-23 05:20:22','Sprained Ankle','Sprained Ankle','Sprained Ankle','inherit','closed','closed','','sprained-ankle','','','2022-08-23 05:20:22','2022-08-23 05:20:22','',5474,'https://www.drfields.com/wp-content/uploads/2022/08/Sprained-Ankle.png',0,'attachment','image/png',0),(5476,8,'2022-08-23 05:23:20','2022-08-23 05:23:20','<img class=\"wp-image-5475 alignright\" title=\"Sprained Ankle?\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Sprained-Ankle-500x419.png\" alt=\"Sprained Ankle?\" width=\"300\" height=\"251\" />\r\n\r\nIs your ankle constantly giving out? That’s a common problem for those with instability in their ankle! Frequent swelling, pain, and a decrease in range of motion or possibly an excess of movement are also symptoms of those who experience recurring ankle sprains.\r\n<h2>What Causes Frequent Ankle Sprains?</h2>\r\nAnything that stretches the ankle further than it is used to can cause an injury to the ankle ligaments. For example, overturning the ankle inwards or outwards can injure the ligaments. Ankle sprains consist of some type of ligament injury. These injuries may be mild, moderate, or severe, but all involve ligament injury and/or tears of the ligaments of the ankle.\r\n\r\nIf this ligament injury does not fully heal, a cycle of instability begins because the ligament or ligaments are weakened, allowing for abnormal movement of the ankle joint. As time progresses, other structures of the unstable ankle joint will also begin to degenerate resulting in eventual arthritis.\r\n<h2>Why Haven’t Common Treatments Worked to Stabilize the Ankle?</h2>\r\nIf you look up common treatments for ankle sprains, you will find rest, ice, compression, elevation, anti-inflammatory medications, and bracing or casting. Those with repeat ankle sprains have most likely tried all of these treatments.\r\n\r\nSure, they may provide some relief, but the ankle remains unstable. That is because none of these treatments repair the injured ligaments.\r\n<ul>\r\n 	<li>Ice does not repair ligaments</li>\r\n 	<li>Braces, taping, and casts do not repair ligaments</li>\r\n 	<li>Elevation does not repair ligaments</li>\r\n 	<li>Anti-inflammatories do not repair ligaments</li>\r\n 	<li>Pain medications do not repair ligaments</li>\r\n</ul>\r\nAnd since 86% of ankle injuries are ligament sprains1, a treatment directed at ligament repair is what is necessary. Yes, treatments like physical therapy to strengthen musculature are helpful, but since muscles also depend on strong tendons and ligaments for proper function and stability, repair of these soft tissue structures will need to be addressed.\r\n<h2>Regenerative Treatment Is An Effective Way to Repair Ligaments</h2>\r\nAt OrthoRegen®, our treatment of choice is Regenerative Orthopedics. The great news is that these non-surgical treatment actually work to repair the ligaments. The treatment is not just a bandaid or a cover-up for the pain. Regenerative therapies, like Prolotherapy, PRP, and Stem Cells, have been shown to repair and regenerate the injured soft tissue structures.\r\n\r\nBy repairing the ligaments and any other involved soft tissue structures, the joint is strengthened and the instability is resolved. Regenerative Orthopedics is a comprehensive treatment directed at all of involved structures for the best possible outcome. The result is decreased pain and stiffness and an increase in function, which together improve quality of life.2\r\n\r\nIn cases that involve more deterioration, PRP or Stem Cells may be recommended in addition to Prolotherapy. Research has shown that these treatments are also effective at repairing the soft tissue of the ankle and boost function. Even in high ankle sprains, PRP has been shown to return athletes to full activity.\r\n\r\nAt OrthoRegen®, we have many years of experience in Regenerative therapies and would be happy to help you resolve your recurrent ankle sprains and improve your ankle function. Call us today at (310)453-1234.\r\n\r\n1Mulcahey MK, Bernhardson AS, Murphy CP, Chang A, Zajac T, Sanchez G, Sanchez A, Whalen JM, Price MD, Clanton TO, Provencher MT. The Epidemiology of Ankle Injuries Identified at the National Football League Combine, 2009-2015. Orthopaedic journal of sports medicine. 2018 Jul 17;6(7):2325967118786227.\r\n\r\n2Hauser RA, Hauser, MA, Cukla J. Dextrose Prolotherapy Injections for Chronic Ankle Pain Practical PAIN MANAGEMENT, January/February 2010 p 70-76.\r\n\r\n3Laver L, Carmont MR, McConkey MO, Palmanovich E, Yaacobi E, Mann G, Nyska M, Kots E, Mei-Dan O. Plasma rich in growth factors (PRGF) as a treatment for high ankle sprain in elite athletes: a randomized control trial. Knee Surg Sports Traumatol Arthrosc. 2015 Nov;23(11):3383-92.','Sprained Ankle?','','inherit','closed','closed','','5474-revision-v1','','','2022-08-23 05:23:20','2022-08-23 05:23:20','',5474,'https://www.drfields.com/?p=5476',0,'revision','',0),(5477,8,'2022-08-23 05:28:07','2022-08-23 05:28:07','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankle/\">Sprained Ankle?</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/are-cortisone-shots-a-good-option/\">Are Cortisone Shots a Good Option?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/\">Try Regenerative Treatments for Your Hip Pain or Injury</a></li>\r\n 	<li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Treating Knee Pain and Injuries with Regenerative Orthopedics\" href=\"/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics/\">Treating Knee Pain and Injuries with Regenerative Orthopedics</a></li>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-08-23 05:28:07','2022-08-23 05:28:07','',2109,'https://www.drfields.com/?p=5477',0,'revision','',0),(5478,9,'2022-08-25 01:26:59','2022-08-25 01:26:59','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\n<strong>Mark - Neck</strong></div>\n<h2>Regenerative Orthopedics for Chronic Neck Pain</h2>\nSince the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and rotate, but if you are unable to move your neck normally, your life can be severely disrupted, and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be Regenerative Orthopedics for chronic neck pain.\n<h3>What Causes Neck Pain?</h3>\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\n\n<em>Symptoms involved with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:</em>\n<ul>\n 	<li>Headaches</li>\n 	<li>Pain in the shoulder, arm, or hand</li>\n 	<li>Reduced range of motion in the neck</li>\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands, and feet.</li>\n</ul>\nIf you are experiencing ongoing neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty, and symptoms may begin to appear years after the disease begins.\n\n<em>Other Causes of Neck Pain?</em>\n\nA strain or spasm of the muscles in the neck or inflammation of the neck may be a cause of the neck pain you feel. Pain in the neck can also be caused by injuries such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, disc herniation, a pinched nerve, meningitis, influenza, a heart attack, or torticollis can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture and sleeping on a pillow that is too high, can be causes of localized neck pain.\n\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\n<h3>How Regenerative Orthopedics Are Used To Treat Chronic Neck Pain</h3>\nMany patients are tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. Unfortunately, in many cases, these methods do not take care of the cause of the pain.\n\nMusculoskeletal pain is primarily due to weakness in the ligaments, tendons, and possibly cartilage. The good news is that Regenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy,  can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\n<h3><em>What Does Research Say?</em></h3>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"section\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\n<em><strong>The Journal of Spine Research conducted a clinical study to evaluate the safety and effectiveness of PRP for the treatment of neck and low back pain. The specific cause of the pain in the study participants was spinal disc herniation (HNP). The patients had already tried different conservative treatments that did not work. However, the PRP treatments resulted in over 80% improvement. Plus, the improvement lasted. These patients were followed for eight years.1</strong></em>\n\n</div>\n</div>\n</div>\n</div>\nRegenerative Orthopedics work because they stimulate the healing cascade in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, leading to local inflammation in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the injected ligament, making it stronger.\n<h3>Are you a Candidate For Regenerative Orthopedics for Chronic Neck Pain?</h3>\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a safe, affordable option that allows you to keep working and remain active during recovery. These chronic neck pain treatments are among the few that encourage movement post-treatment. Movement is essential since it aids the healing process. By contrast, surgery requires you to reduce activity after treatment.\n\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\n<h3><strong>Reference</strong></h3>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"section\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n\n1Cameron JA, Thielen KM (2017) Autologous Platelet Rich Plasma for Neck and Lower Back Pain Secondary to Spinal Disc Herniation: Midterm Results. Spine Res. Vol. 3 No. 2:10.\n\n</div>\n</div>\n</div>\n</div>\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stubborn, Persistent Neck Pain','','inherit','closed','closed','','509-autosave-v1','','','2022-08-25 01:26:59','2022-08-25 01:26:59','',509,'https://www.drfields.com/?p=5478',0,'revision','',0),(5479,9,'2022-08-25 00:51:43','2022-08-25 00:51:43','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong></div>\r\n<h2>Prolotherapy for Chronic Neck Pain</h2>\r\nBecause the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and to rotate, but if you can\'t move your neck normally, your life can be severely disrupted and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be prolotherapy for chronic neck pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<h4>What Causes Neck Pain?</h4>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\nSymptoms of <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm, or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands, and feet.</li>\r\n</ul>\r\nIf you are experiencing minor neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty, and symptoms may begin to appear years after the disease begins.\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck can be the causes of the neck pain you feel. Pain in the neck can also be caused by injuries such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, a pinched nerve, meningitis, influenza, a heart attack, or torticollis can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>How Prolotherapy Is Used To Treat Chronic Neck Pain</h4>\r\nMany patients are tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMusculoskeletal pain is mostly due to weakness in the ligaments, tendons, and possibly cartilage. The good news is that Prolotherapy can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, leading to local inflammation in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the injected ligament, making it stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Neck Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a safe, affordable option that allows you to keep working, training, and living a normal life during recovery. Prolotherapy for chronic neck pain is one of the few treatments that encourages movement post-treatment. Movement actually aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stubborn Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2022-08-25 00:51:43','2022-08-25 00:51:43','',509,'https://www.drfields.com/?p=5479',0,'revision','',0),(5480,9,'2022-08-25 01:09:19','2022-08-25 01:09:19','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong></div>\r\n<h2>Regenerative Orthopedics for Chronic Neck Pain</h2>\r\nSince the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and rotate, but if you can\'t move your neck normally, your life can be severely disrupted, and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be Regenerative Orthopedics for chronic neck pain.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<h4>What Causes Neck Pain?</h4>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\n<em>Symptoms involved with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:</em>\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm, or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands, and feet.</li>\r\n</ul>\r\nIf you are experiencing ongoing neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty, and symptoms may begin to appear years after the disease begins.\r\n\r\n<em>Other Causes of Neck Pain?</em>\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck may be a cause of the neck pain you feel. Pain in the neck can also be caused by injuries such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, a pinched nerve, meningitis, influenza, a heart attack, or torticollis can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>How Regenerative Orthopedics Are Used To Treat Chronic Neck Pain</h4>\r\nMany patients are tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nPatients with pain in almost any joint in the body can now <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat their chronic pain with Prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMusculoskeletal pain is mostly due to weakness in the ligaments, tendons, and possibly cartilage. The good news is that Regenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy,  can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\r\n\r\nRegenerative Orthopedics work because they stimulate the healing cascade in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, leading to local inflammation in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the injected ligament, making it stronger.\r\n<h4>Are you a Candidate For Regenerative Orthopedics for Chronic Neck Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a safe, affordable option that allows you to keep working, training, and living a normal life during recovery. These chronic neck pain treatments are among the few that encourage movement post-treatment. Movement actually aids the healing process. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stubborn, Persistent Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2022-08-25 01:09:19','2022-08-25 01:09:19','',509,'https://www.drfields.com/?p=5480',0,'revision','',0),(5481,9,'2022-08-25 01:18:07','2022-08-25 01:18:07','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong></div>\r\n<h2>Regenerative Orthopedics for Chronic Neck Pain</h2>\r\nSince the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and rotate, but if you can\'t move your neck normally, your life can be severely disrupted, and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be Regenerative Orthopedics for chronic neck pain.\r\n<h4>What Causes Neck Pain?</h4>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\n<em>Symptoms involved with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:</em>\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm, or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands, and feet.</li>\r\n</ul>\r\nIf you are experiencing ongoing neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty, and symptoms may begin to appear years after the disease begins.\r\n\r\n<em>Other Causes of Neck Pain?</em>\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck may be a cause of the neck pain you feel. Pain in the neck can also be caused by injuries such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, disc herniation, a pinched nerve, meningitis, influenza, a heart attack, or torticollis can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>How Regenerative Orthopedics Are Used To Treat Chronic Neck Pain</h4>\r\nMany patients are tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not take care of the cause of the pain.\r\n\r\nMusculoskeletal pain is mostly due to weakness in the ligaments, tendons, and possibly cartilage. The good news is that Regenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy,  can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nThe <em>Journal of Spine Research</em> conducted a clinical study to evaluate the safety and effectiveness of PRP for the treatment of neck as well as low back pain. The specific cause of the pain in the study participants was spinal disc herniation (HNP). The patients had already tried different conservative treatments that didn\'t work. The PRP treatments resulted in over 80% improvement, and these patients were followed for 8 years.1\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nRegenerative Orthopedics work because they stimulate the healing cascade in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, leading to local inflammation in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the injected ligament, making it stronger.\r\n<h4>Are you a Candidate For Regenerative Orthopedics for Chronic Neck Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a safe, affordable option that allows you to keep working, training, and living a normal life during recovery. These chronic neck pain treatments are among the few that encourage movement post-treatment. Movement actually aids the healing process. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<strong>Reference</strong>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n1Cameron JA, Thielen KM (2017) Autologous Platelet Rich Plasma for Neck and Lower Back Pain Secondary to Spinal Disc Herniation: Midterm Results. Spine Res. Vol. 3 No. 2:10.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stubborn, Persistent Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2022-08-25 01:18:07','2022-08-25 01:18:07','',509,'https://www.drfields.com/?p=5481',0,'revision','',0),(5482,9,'2022-08-25 01:24:07','2022-08-25 01:24:07','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong></div>\r\n<h2>Regenerative Orthopedics for Chronic Neck Pain</h2>\r\nSince the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and rotate, but if you are unable to move your neck normally, your life can be severely disrupted, and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be Regenerative Orthopedics for chronic neck pain.\r\n<h4>What Causes Neck Pain?</h4>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\n<em>Symptoms involved with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:</em>\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm, or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands, and feet.</li>\r\n</ul>\r\nIf you are experiencing ongoing neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty, and symptoms may begin to appear years after the disease begins.\r\n\r\n<em>Other Causes of Neck Pain?</em>\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck may be a cause of the neck pain you feel. Pain in the neck can also be caused by injuries such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, disc herniation, a pinched nerve, meningitis, influenza, a heart attack, or torticollis can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>How Regenerative Orthopedics Are Used To Treat Chronic Neck Pain</h4>\r\nMany patients are tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. Unfortunately, in many cases, these methods do not take care of the cause of the pain.\r\n\r\nMusculoskeletal pain is primarily due to weakness in the ligaments, tendons, and possibly cartilage. The good news is that Regenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy,  can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nThe <em>Journal of Spine Research</em> conducted a clinical study to evaluate the safety and effectiveness of PRP for the treatment of neck and low back pain. The specific cause of the pain in the study participants was spinal disc herniation (HNP). The patients had already tried different conservative treatments that did not work. However, the PRP treatments resulted in over 80% improvement. Plus, the improvement lasted. These patients were followed for eight years.1\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nRegenerative Orthopedics work because they stimulate the healing cascade in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, leading to local inflammation in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the injected ligament, making it stronger.\r\n<h4>Are you a Candidate For Regenerative Orthopedics for Chronic Neck Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a safe, affordable option that allows you to keep working and remain active during recovery. These chronic neck pain treatments are among the few that encourage movement post-treatment. Movement is essential since it aids the healing process. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<strong>Reference</strong>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n1Cameron JA, Thielen KM (2017) Autologous Platelet Rich Plasma for Neck and Lower Back Pain Secondary to Spinal Disc Herniation: Midterm Results. Spine Res. Vol. 3 No. 2:10.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stubborn, Persistent Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2022-08-25 01:24:07','2022-08-25 01:24:07','',509,'https://www.drfields.com/?p=5482',0,'revision','',0),(5483,9,'2022-08-25 01:25:52','2022-08-25 01:25:52','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong></div>\r\n<h2>Regenerative Orthopedics for Chronic Neck Pain</h2>\r\nSince the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and rotate, but if you are unable to move your neck normally, your life can be severely disrupted, and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be Regenerative Orthopedics for chronic neck pain.\r\n<h3>What Causes Neck Pain?</h3>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\n<em>Symptoms involved with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:</em>\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm, or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands, and feet.</li>\r\n</ul>\r\nIf you are experiencing ongoing neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty, and symptoms may begin to appear years after the disease begins.\r\n\r\n<em>Other Causes of Neck Pain?</em>\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck may be a cause of the neck pain you feel. Pain in the neck can also be caused by injuries such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, disc herniation, a pinched nerve, meningitis, influenza, a heart attack, or torticollis can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3>How Regenerative Orthopedics Are Used To Treat Chronic Neck Pain</h3>\r\nMany patients are tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. Unfortunately, in many cases, these methods do not take care of the cause of the pain.\r\n\r\nMusculoskeletal pain is primarily due to weakness in the ligaments, tendons, and possibly cartilage. The good news is that Regenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy,  can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\r\n<h3><em>What Does Research Say?</em></h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\nThe <em>Journal of Spine Research</em> conducted a clinical study to evaluate the safety and effectiveness of PRP for the treatment of neck and low back pain. The specific cause of the pain in the study participants was spinal disc herniation (HNP). The patients had already tried different conservative treatments that did not work. However, the PRP treatments resulted in over 80% improvement. Plus, the improvement lasted. These patients were followed for eight years.1\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nRegenerative Orthopedics work because they stimulate the healing cascade in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, leading to local inflammation in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the injected ligament, making it stronger.\r\n<h3>Are you a Candidate For Regenerative Orthopedics for Chronic Neck Pain?</h3>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a safe, affordable option that allows you to keep working and remain active during recovery. These chronic neck pain treatments are among the few that encourage movement post-treatment. Movement is essential since it aids the healing process. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n<h3><strong>Reference</strong></h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n1Cameron JA, Thielen KM (2017) Autologous Platelet Rich Plasma for Neck and Lower Back Pain Secondary to Spinal Disc Herniation: Midterm Results. Spine Res. Vol. 3 No. 2:10.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stubborn, Persistent Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2022-08-25 01:25:52','2022-08-25 01:25:52','',509,'https://www.drfields.com/?p=5483',0,'revision','',0),(5484,9,'2022-08-25 01:27:27','2022-08-25 01:27:27','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong></div>\r\n<h2>Regenerative Orthopedics for Chronic Neck Pain</h2>\r\nSince the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and rotate, but if you are unable to move your neck normally, your life can be severely disrupted, and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be Regenerative Orthopedics for chronic neck pain.\r\n<h3>What Causes Neck Pain?</h3>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\n<em>Symptoms involved with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:</em>\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm, or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands, and feet.</li>\r\n</ul>\r\nIf you are experiencing ongoing neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty, and symptoms may begin to appear years after the disease begins.\r\n\r\n<em>Other Causes of Neck Pain?</em>\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck may be a cause of the neck pain you feel. Pain in the neck can also be caused by injuries such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, disc herniation, a pinched nerve, meningitis, influenza, a heart attack, or torticollis can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3>How Regenerative Orthopedics Are Used To Treat Chronic Neck Pain</h3>\r\nMany patients are tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. Unfortunately, in many cases, these methods do not take care of the cause of the pain.\r\n\r\nMusculoskeletal pain is primarily due to weakness in the ligaments, tendons, and possibly cartilage. The good news is that Regenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy,  can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\r\n<h3><em>What Does Research Say?</em></h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n<em>The Journal of Spine Research conducted a clinical study to evaluate the safety and effectiveness of PRP for the treatment of neck and low back pain. The specific cause of the pain in the study participants was spinal disc herniation (HNP). The patients had already tried different conservative treatments that did not work. <strong>However, the PRP treatments resulted in over 80% improvement.</strong> Plus, the improvement lasted. These patients were followed for eight years.1</em>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nRegenerative Orthopedics work because they stimulate the healing cascade in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, leading to local inflammation in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the injected ligament, making it stronger.\r\n<h3>Are you a Candidate For Regenerative Orthopedics for Chronic Neck Pain?</h3>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a safe, affordable option that allows you to keep working and remain active during recovery. These chronic neck pain treatments are among the few that encourage movement post-treatment. Movement is essential since it aids the healing process. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n<h3><strong>Reference</strong></h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n1Cameron JA, Thielen KM (2017) Autologous Platelet Rich Plasma for Neck and Lower Back Pain Secondary to Spinal Disc Herniation: Midterm Results. Spine Res. Vol. 3 No. 2:10.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stubborn, Persistent Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2022-08-25 01:27:27','2022-08-25 01:27:27','',509,'https://www.drfields.com/?p=5484',0,'revision','',0),(5485,9,'2022-08-25 01:31:35','2022-08-25 01:31:35','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong></div>\r\n<h2>Stubborn, Chronic Neck Pain</h2>\r\nSince the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and rotate, but if you are unable to move your neck normally, your life can be severely disrupted, and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be Regenerative Orthopedics for chronic neck pain.\r\n<h3>What Causes Neck Pain?</h3>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\n<em>Symptoms involved with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:</em>\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm, or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands, and feet.</li>\r\n</ul>\r\nIf you are experiencing ongoing neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty, and symptoms may begin to appear years after the disease begins.\r\n\r\n<em>Other Causes of Neck Pain?</em>\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck may be a cause of the neck pain you feel. Pain in the neck can also be caused by injuries such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, disc herniation, a pinched nerve, meningitis, influenza, a heart attack, or torticollis can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3>Regenerative Orthopedics and Chronic Neck Pain</h3>\r\nMany patients are tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. Unfortunately, in many cases, these methods do not take care of the cause of the pain.\r\n\r\nMusculoskeletal pain is primarily due to weakness in the ligaments, tendons, and possibly cartilage. The good news is that Regenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy,  can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.\r\n<h3><em>What Does Research Say?</em></h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n<em>The Journal of Spine Research conducted a clinical study to evaluate the safety and effectiveness of PRP for the treatment of neck and low back pain. The specific cause of the pain in the study participants was spinal disc herniation (HNP). The patients had already tried different conservative treatments that did not work. <strong>However, the PRP treatments resulted in over 80% improvement.</strong> Plus, the improvement lasted. These patients were followed for eight years.1</em>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nRegenerative Orthopedics work because they stimulate the healing cascade in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, leading to local inflammation in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the injected ligament, making it stronger.\r\n<h3>Are you a Candidate For Regenerative Orthopedics for Chronic Neck Pain?</h3>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a safe, affordable option that allows you to keep working and remain active during recovery. These chronic neck pain treatments are among the few that encourage movement post-treatment. Movement is essential since it aids the healing process. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n<h3><strong>Reference</strong></h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n1Cameron JA, Thielen KM (2017) Autologous Platelet Rich Plasma for Neck and Lower Back Pain Secondary to Spinal Disc Herniation: Midterm Results. Spine Res. Vol. 3 No. 2:10.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stubborn, Persistent Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2022-08-25 01:31:35','2022-08-25 01:31:35','',509,'https://www.drfields.com/?p=5485',0,'revision','',0),(5486,9,'2022-08-25 01:33:04','2022-08-25 01:33:04','<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong></div>\r\n<h2>Stubborn, Chronic Neck Pain</h2>\r\nSince the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and rotate, but if you are unable to move your neck normally, your life can be severely disrupted, and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be Regenerative Orthopedics for chronic neck pain.\r\n<h3>What Causes Neck Pain?</h3>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\n<em>Symptoms involved with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:</em>\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm, or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands, and feet.</li>\r\n</ul>\r\nIf you are experiencing ongoing neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty, and symptoms may begin to appear years after the disease begins.\r\n\r\n<em>Other Causes of Neck Pain?</em>\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck may be a cause of the neck pain you feel. Pain in the neck can also be caused by injuries such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, disc herniation, a pinched nerve, meningitis, influenza, a heart attack, or torticollis can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3>Regenerative Orthopedics and Chronic Neck Pain</h3>\r\nMany patients are tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. Unfortunately, in many cases, these methods do not take care of the cause of the pain.\r\n\r\nMusculoskeletal pain is primarily due to weakness in the ligaments, tendons, and possibly cartilage. <strong>The good news is that Regenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy,  can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.</strong>\r\n<h3><em>What Does Research Say?</em></h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n<em>The Journal of Spine Research conducted a clinical study to evaluate the safety and effectiveness of PRP for the treatment of neck and low back pain. The specific cause of the pain in the study participants was spinal disc herniation (HNP). The patients had already tried different conservative treatments that did not work. <strong>However, the PRP treatments resulted in over 80% improvement.</strong> Plus, the improvement lasted. These patients were followed for eight years.1</em>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nRegenerative Orthopedics work because they stimulate the healing cascade in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, leading to local inflammation in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the injected ligament, making it stronger.\r\n<h3>Are you a Candidate For Regenerative Orthopedics for Chronic Neck Pain?</h3>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a safe, affordable option that allows you to keep working and remain active during recovery. These chronic neck pain treatments are among the few that encourage movement post-treatment. Movement is essential since it aids the healing process. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n<h3><strong>Reference</strong></h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n1Cameron JA, Thielen KM (2017) Autologous Platelet Rich Plasma for Neck and Lower Back Pain Secondary to Spinal Disc Herniation: Midterm Results. Spine Res. Vol. 3 No. 2:10.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stubborn, Persistent Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2022-08-25 01:33:04','2022-08-25 01:33:04','',509,'https://www.drfields.com/?p=5486',0,'revision','',0),(5487,8,'2022-08-26 03:43:07','2022-08-26 03:43:07','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankle/\">Sprained Ankle?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-partial-rotator-cuff-tear-repair/\">Non-surgical Partial Rotator Cuff Tear Repair</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/are-cortisone-shots-a-good-option/\">Are Cortisone Shots a Good Option?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/\">Try Regenerative Treatments for Your Hip Pain or Injury</a></li>\r\n 	<li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Treating Knee Pain and Injuries with Regenerative Orthopedics\" href=\"/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics/\">Treating Knee Pain and Injuries with Regenerative Orthopedics</a></li>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-08-26 03:43:07','2022-08-26 03:43:07','',2109,'https://www.drfields.com/?p=5487',0,'revision','',0),(5488,8,'2022-08-26 04:49:18','2022-08-26 04:49:18','Prp. Neck. Lower Back','Prp. Neck. Lower Back','Prp. Neck. Lower Back','inherit','closed','closed','','prp-neck-lower-back','','','2022-08-26 04:49:19','2022-08-26 04:49:19','',509,'https://www.drfields.com/wp-content/uploads/2019/06/PRP.-Neck.-Lower-back.jpeg',0,'attachment','image/jpeg',0),(5489,8,'2022-08-26 04:50:26','2022-08-26 04:50:26','<img class=\"wp-image-5488 size-wcsquare\" title=\"Stubborn, Persistent Neck Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/PRP.-Neck.-Lower-back-300x300.jpeg\" alt=\"Stubborn, Persistent Neck Pain\" width=\"300\" height=\"300\" />\r\n<h2>Stubborn, Chronic Neck Pain</h2>\r\nSince the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and rotate, but if you are unable to move your neck normally, your life can be severely disrupted, and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be Regenerative Orthopedics for chronic neck pain.\r\n<h2>What Causes Neck Pain?</h2>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\n<em>Symptoms involved with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:</em>\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm, or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands, and feet.</li>\r\n</ul>\r\nIf you are experiencing ongoing neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty, and symptoms may begin to appear years after the disease begins.\r\n\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong>\r\n\r\n<em>Other Causes of Neck Pain?</em>\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck may be a cause of the neck pain you feel. Pain in the neck can also be caused by injuries such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, disc herniation, a pinched nerve, meningitis, influenza, a heart attack, or torticollis can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3>Regenerative Orthopedics and Chronic Neck Pain</h3>\r\nMany patients are tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. Unfortunately, in many cases, these methods do not take care of the cause of the pain.\r\n\r\nMusculoskeletal pain is primarily due to weakness in the ligaments, tendons, and possibly cartilage. <strong>The good news is that Regenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy,  can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.</strong>\r\n<h3><em>What Does Research Say?</em></h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n<em>The Journal of Spine Research conducted a clinical study to evaluate the safety and effectiveness of PRP for the treatment of neck and low back pain. The specific cause of the pain in the study participants was spinal disc herniation (HNP). The patients had already tried different conservative treatments that did not work. <strong>However, the PRP treatments resulted in over 80% improvement.</strong> Plus, the improvement lasted. These patients were followed for eight years.1</em>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nRegenerative Orthopedics work because they stimulate the healing cascade in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, leading to local inflammation in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the injected ligament, making it stronger.\r\n<h3>Are you a Candidate For Regenerative Orthopedics for Chronic Neck Pain?</h3>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a safe, affordable option that allows you to keep working and remain active during recovery. These chronic neck pain treatments are among the few that encourage movement post-treatment. Movement is essential since it aids the healing process. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n<h3><strong>Reference</strong></h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n1Cameron JA, Thielen KM (2017) Autologous Platelet Rich Plasma for Neck and Lower Back Pain Secondary to Spinal Disc Herniation: Midterm Results. Spine Res. Vol. 3 No. 2:10.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stubborn, Persistent Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2022-08-26 04:50:26','2022-08-26 04:50:26','',509,'https://www.drfields.com/?p=5489',0,'revision','',0),(5490,8,'2022-08-26 04:51:35','2022-08-26 04:51:35','<img class=\"wp-image-5488 size-wcsquare alignright\" title=\"Stubborn, Persistent Neck Pain\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/PRP.-Neck.-Lower-back-300x300.jpeg\" alt=\"Stubborn, Persistent Neck Pain\" width=\"300\" height=\"300\" />\r\n<h2>Stubborn, Chronic Neck Pain</h2>\r\nSince the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and rotate, but if you are unable to move your neck normally, your life can be severely disrupted, and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be Regenerative Orthopedics for chronic neck pain.\r\n<h2>What Causes Neck Pain?</h2>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\n<em>Symptoms involved with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:</em>\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm, or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands, and feet.</li>\r\n</ul>\r\nIf you are experiencing ongoing neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty, and symptoms may begin to appear years after the disease begins.\r\n\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong>\r\n\r\n<em>Other Causes of Neck Pain?</em>\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck may be a cause of the neck pain you feel. Pain in the neck can also be caused by injuries such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, disc herniation, a pinched nerve, meningitis, influenza, a heart attack, or torticollis can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3>Regenerative Orthopedics and Chronic Neck Pain</h3>\r\nMany patients are tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. Unfortunately, in many cases, these methods do not take care of the cause of the pain.\r\n\r\nMusculoskeletal pain is primarily due to weakness in the ligaments, tendons, and possibly cartilage. <strong>The good news is that Regenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy,  can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.</strong>\r\n<h3><em>What Does Research Say?</em></h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n<em>The Journal of Spine Research conducted a clinical study to evaluate the safety and effectiveness of PRP for the treatment of neck and low back pain. The specific cause of the pain in the study participants was spinal disc herniation (HNP). The patients had already tried different conservative treatments that did not work. <strong>However, the PRP treatments resulted in over 80% improvement.</strong> Plus, the improvement lasted. These patients were followed for eight years.1</em>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nRegenerative Orthopedics work because they stimulate the healing cascade in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, leading to local inflammation in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the injected ligament, making it stronger.\r\n<h3>Are you a Candidate For Regenerative Orthopedics for Chronic Neck Pain?</h3>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a safe, affordable option that allows you to keep working and remain active during recovery. These chronic neck pain treatments are among the few that encourage movement post-treatment. Movement is essential since it aids the healing process. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n<h3><strong>Reference</strong></h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n1Cameron JA, Thielen KM (2017) Autologous Platelet Rich Plasma for Neck and Lower Back Pain Secondary to Spinal Disc Herniation: Midterm Results. Spine Res. Vol. 3 No. 2:10.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stubborn, Persistent Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2022-08-26 04:51:35','2022-08-26 04:51:35','',509,'https://www.drfields.com/?p=5490',0,'revision','',0),(5491,8,'2022-08-26 04:56:22','2022-08-26 04:56:22','Prp. Neck. Lower Back','Prp. Neck. Lower Back','Prp. Neck. Lower Back','inherit','closed','closed','','prp-neck-lower-back-2','','','2022-08-26 04:56:22','2022-08-26 04:56:22','',509,'https://www.drfields.com/wp-content/uploads/2019/06/PRP.-Neck.-Lower-back-1.jpeg',0,'attachment','image/jpeg',0),(5492,8,'2022-08-26 04:56:45','2022-08-26 04:56:45','<img class=\"alignright wp-image-5491\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/PRP.-Neck.-Lower-back-1-500x375.jpeg\" alt=\"Prp. Neck. Lower Back\" width=\"300\" height=\"225\" />\r\n<h2>Stubborn, Chronic Neck Pain</h2>\r\nSince the neck is less protected than the rest of the spine, it is far more vulnerable to injuries and disorders that can cause pain and even restrict your motion. The neck enables the head to move and rotate, but if you are unable to move your neck normally, your life can be severely disrupted, and your activities can be limited. Depending on the cause and type of your neck injury or condition, your best choice may be Regenerative Orthopedics for chronic neck pain.\r\n<h2>What Causes Neck Pain?</h2>\r\nYour neck is composed of seven cervical vertebrae. These vertebrae support your head, serve as an attachment point for the muscles that move your head, and protect the spinal cord between the brain and thoracic vertebrae.\r\n\r\n<em>Symptoms involved with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/\">neck pain</a> can include:</em>\r\n<ul>\r\n 	<li>Headaches</li>\r\n 	<li>Pain in the shoulder, arm, or hand</li>\r\n 	<li>Reduced range of motion in the neck</li>\r\n 	<li>Numbness, weakness, and slower reflexes in the arms, legs, hands, and feet.</li>\r\n</ul>\r\nIf you are experiencing ongoing neck pain, you may be experiencing early symptoms of arthritis. Osteoarthritis can begin as young as thirty, and symptoms may begin to appear years after the disease begins.\r\n\r\n[video_lightbox_youtube video_id=\"bC6PwyGefiY\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Mark - Neck</strong>\r\n\r\n<em>Other Causes of Neck Pain?</em>\r\n\r\nA strain or spasm of the muscles in the neck or inflammation of the neck may be a cause of the neck pain you feel. Pain in the neck can also be caused by injuries such as whiplash or a blow to the head or neck while playing sports. Cervical disk degeneration, disc herniation, a pinched nerve, meningitis, influenza, a heart attack, or torticollis can also be causes of neck pain. Anything that causes stress on the muscles in the upper body and arms, including poor posture and sleeping on a pillow that is too high, can be causes of localized neck pain.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h3>Regenerative Orthopedics and Chronic Neck Pain</h3>\r\nMany patients are tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. Unfortunately, in many cases, these methods do not take care of the cause of the pain.\r\n\r\nMusculoskeletal pain is primarily due to weakness in the ligaments, tendons, and possibly cartilage. <strong>The good news is that Regenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy,  can regenerate these damaged tissues and ultimately alleviate the problem causing the pain.</strong>\r\n<h3><em>What Does Research Say?</em></h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n<em>The Journal of Spine Research conducted a clinical study to evaluate the safety and effectiveness of PRP for the treatment of neck and low back pain. The specific cause of the pain in the study participants was spinal disc herniation (HNP). The patients had already tried different conservative treatments that did not work. <strong>However, the PRP treatments resulted in over 80% improvement.</strong> Plus, the improvement lasted. These patients were followed for eight years.1</em>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\nRegenerative Orthopedics work because they stimulate the healing cascade in the body. Solutions are injected into the affected neck ligaments, tendons, or joints, leading to local inflammation in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the injected ligament, making it stronger.\r\n<h3>Are you a Candidate For Regenerative Orthopedics for Chronic Neck Pain?</h3>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Regenerative Orthopedics is a safe, affordable option that allows you to keep working and remain active during recovery. These chronic neck pain treatments are among the few that encourage movement post-treatment. Movement is essential since it aids the healing process. By contrast, surgery requires you to reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have neck surgery or begin other treatments</strong>? Would you like to know if you are a candidate for Prolotherapy for your chronic neck pain? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us Today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n<h3><strong>Reference</strong></h3>\r\n<div class=\"page\" title=\"Page 1\">\r\n<div class=\"section\">\r\n<div class=\"layoutArea\">\r\n<div class=\"column\">\r\n\r\n1Cameron JA, Thielen KM (2017) Autologous Platelet Rich Plasma for Neck and Lower Back Pain Secondary to Spinal Disc Herniation: Midterm Results. Spine Res. Vol. 3 No. 2:10.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Stubborn, Persistent Neck Pain','','inherit','closed','closed','','509-revision-v1','','','2022-08-26 04:56:45','2022-08-26 04:56:45','',509,'https://www.drfields.com/?p=5492',0,'revision','',0),(5493,8,'2022-08-26 04:59:00','2022-08-26 04:59:00','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankle/\">Sprained Ankle?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Stubborn, Persistent Neck Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-partial-rotator-cuff-tear-repair/\">Non-surgical Partial Rotator Cuff Tear Repair</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/are-cortisone-shots-a-good-option/\">Are Cortisone Shots a Good Option?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/\">Try Regenerative Treatments for Your Hip Pain or Injury</a></li>\r\n 	<li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Treating Knee Pain and Injuries with Regenerative Orthopedics\" href=\"/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics/\">Treating Knee Pain and Injuries with Regenerative Orthopedics</a></li>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-08-26 04:59:00','2022-08-26 04:59:00','',2109,'https://www.drfields.com/?p=5493',0,'revision','',0),(5494,9,'2022-08-26 22:00:50','2022-08-26 22:00:50','<img class=\"wp-image-5475 alignright\" title=\"Sprained Ankle?\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Sprained-Ankle-500x419.png\" alt=\"Sprained Ankle?\" width=\"300\" height=\"251\" />\n<h2>Sprained Ankles?</h2>\nDo you experience recurrent ankle sprains? Is your ankle constantly giving out or overturning? These are common problems for those with instability in their ankle! Frequent swelling, pain, and a decrease in range of motion or possibly an excess of movement are also symptoms of those who experience recurring ankle sprains.\n<h2>What Causes Frequent Sprained Ankles?</h2>\nAnything that stretches the ankle further than it is used to can cause an injury to the ankle ligaments. For example, overturning the ankle inwards or outwards can injure the ligaments. Ankle sprains consist of some type of ligament injury. These injuries may be mild, moderate, or severe, but all involve ligament injury and/or tears of the ankle\'s ligaments.\n\nIf this ligament injury does not fully heal, a cycle of instability begins because the ligament(s) are weakened, allowing for abnormal ankle joint movement. As time progresses, other structures of the unstable ankle joint will also begin to degenerate, resulting in eventual arthritis.\n<h2>Why Haven’t Common Treatments Worked to Stabilize Weak or Sprained Ankles?</h2>\nIf you look up common treatments for ankle sprains, you will find rest, ice, compression, elevation, anti-inflammatory medications, and bracing or casting. Those with repeat ankle sprains have most likely tried all of these treatments.\n\nSure, they may provide some relief, but the ankle remains unstable. That is because none of these treatments repair the injured ligaments.\n<ul>\n 	<li>Ice does not repair ligaments.</li>\n 	<li>Braces, taping, and casts do not repair ligaments</li>\n 	<li>Elevation does not repair ligaments</li>\n 	<li>Anti-inflammatories do not repair ligaments</li>\n 	<li>Pain medications do not repair ligaments</li>\n</ul>\nAnd since 86% of ankle injuries are ligament sprains1, a treatment directed at ligament repair is what is necessary. Yes, treatments like physical therapy to strengthen musculature are helpful, but since muscles also depend on strong tendons and ligaments for proper function and stability, repair of these soft tissue structures will need to be addressed.\n<h2>Regenerative Treatment Is An Effective Way to Repair Weakened Ligaments</h2>\nAt OrthoRegen®, our treatment of choice is Regenerative Orthopedics. The great news is that these non-surgical treatments actually work to repair the ligaments. The treatment is not just a bandaid or a cover-up for the pain. Regenerative therapies, like Prolotherapy, PRP, and Stem Cells, have been shown to repair and regenerate the injured soft tissue structures.\n\nThe joint is strengthened by repairing the ligaments and any other involved soft tissue structures, and the instability is resolved. Regenerative Orthopedics is a comprehensive treatment directed at all of the involved structures for the best possible outcome. The result is decreased pain and stiffness and increased function, improving quality of life.2\n\nIn cases with more deterioration, PRP or Stem Cells may be recommended in addition to Prolotherapy. Research has shown that these treatments also repair the ankle\'s soft tissue and boost function. Even in high ankle sprains, PRP has been shown to return athletes to full activity.\n\nAt OrthoRegen®, we have many years of experience in Regenerative therapies and would be happy to help you resolve your recurrent ankle sprains and improve your ankle function. Call us today at (310)453-1234.\n\n1Mulcahey MK, Bernhardson AS, Murphy CP, Chang A, Zajac T, Sanchez G, Sanchez A, Whalen JM, Price MD, Clanton TO, Provencher MT. The Epidemiology of Ankle Injuries Identified at the National Football League Combine, 2009-2015. Orthopaedic journal of sports medicine. 2018 Jul 17;6(7):2325967118786227.\n\n2Hauser RA, Hauser, MA, Cukla J. Dextrose Prolotherapy Injections for Chronic Ankle Pain Practical PAIN MANAGEMENT, January/February 2010 p 70-76.\n\n3Laver L, Carmont MR, McConkey MO, Palmanovich E, Yaacobi E, Mann G, Nyska M, Kots E, Mei-Dan O. Plasma rich in growth factors (PRGF) as a treatment for high ankle sprain in elite athletes: a randomized control trial. Knee Surg Sports Traumatol Arthrosc. 2015 Nov;23(11):3383-92.','Sprained or Overturned Ankle?','','inherit','closed','closed','','5474-autosave-v1','','','2022-08-26 22:00:50','2022-08-26 22:00:50','',5474,'https://www.drfields.com/?p=5494',0,'revision','',0),(5495,9,'2022-08-26 21:59:44','2022-08-26 21:59:44','<img class=\"wp-image-5475 alignright\" title=\"Sprained Ankle?\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Sprained-Ankle-500x419.png\" alt=\"Sprained Ankle?\" width=\"300\" height=\"251\" />\r\n<h2>Sprained Ankle?</h2>\r\nDo you experience recurrent ankle sprains? Is your ankle constantly giving out or overturning? These are common problems for those with instability in their ankle! Frequent swelling, pain, and a decrease in range of motion or possibly an excess of movement are also symptoms of those who experience recurring ankle sprains.\r\n<h2>What Causes Frequent Sprained Ankles?</h2>\r\nAnything that stretches the ankle further than it is used to can cause an injury to the ankle ligaments. For example, overturning the ankle inwards or outwards can injure the ligaments. Ankle sprains consist of some type of ligament injury. These injuries may be mild, moderate, or severe, but all involve ligament injury and/or tears of the ankle\'s ligaments.\r\n\r\nIf this ligament injury does not fully heal, a cycle of instability begins because the ligament(s) are weakened, allowing for abnormal ankle joint movement. As time progresses, other structures of the unstable ankle joint will also begin to degenerate, resulting in eventual arthritis.\r\n<h2>Why Haven’t Common Treatments Worked to Stabilize Weak or Sprained Ankles?</h2>\r\nIf you look up common treatments for ankle sprains, you will find rest, ice, compression, elevation, anti-inflammatory medications, and bracing or casting. Those with repeat ankle sprains have most likely tried all of these treatments.\r\n\r\nSure, they may provide some relief, but the ankle remains unstable. That is because none of these treatments repair the injured ligaments.\r\n<ul>\r\n 	<li>Ice does not repair ligaments.</li>\r\n 	<li>Braces, taping, and casts do not repair ligaments</li>\r\n 	<li>Elevation does not repair ligaments</li>\r\n 	<li>Anti-inflammatories do not repair ligaments</li>\r\n 	<li>Pain medications do not repair ligaments</li>\r\n</ul>\r\nAnd since 86% of ankle injuries are ligament sprains1, a treatment directed at ligament repair is what is necessary. Yes, treatments like physical therapy to strengthen musculature are helpful, but since muscles also depend on strong tendons and ligaments for proper function and stability, repair of these soft tissue structures will need to be addressed.\r\n<h2>Regenerative Treatment Is An Effective Way to Repair Weakened Ligaments</h2>\r\nAt OrthoRegen®, our treatment of choice is Regenerative Orthopedics. The great news is that these non-surgical treatments actually work to repair the ligaments. The treatment is not just a bandaid or a cover-up for the pain. Regenerative therapies, like Prolotherapy, PRP, and Stem Cells, have been shown to repair and regenerate the injured soft tissue structures.\r\n\r\nThe joint is strengthened by repairing the ligaments and any other involved soft tissue structures, and the instability is resolved. Regenerative Orthopedics is a comprehensive treatment directed at all of the involved structures for the best possible outcome. The result is decreased pain and stiffness and increased function, improving quality of life.2\r\n\r\nIn cases with more deterioration, PRP or Stem Cells may be recommended in addition to Prolotherapy. Research has shown that these treatments also repair the ankle\'s soft tissue and boost function. Even in high ankle sprains, PRP has been shown to return athletes to full activity.\r\n\r\nAt OrthoRegen®, we have many years of experience in Regenerative therapies and would be happy to help you resolve your recurrent ankle sprains and improve your ankle function. Call us today at (310)453-1234.\r\n\r\n1Mulcahey MK, Bernhardson AS, Murphy CP, Chang A, Zajac T, Sanchez G, Sanchez A, Whalen JM, Price MD, Clanton TO, Provencher MT. The Epidemiology of Ankle Injuries Identified at the National Football League Combine, 2009-2015. Orthopaedic journal of sports medicine. 2018 Jul 17;6(7):2325967118786227.\r\n\r\n2Hauser RA, Hauser, MA, Cukla J. Dextrose Prolotherapy Injections for Chronic Ankle Pain Practical PAIN MANAGEMENT, January/February 2010 p 70-76.\r\n\r\n3Laver L, Carmont MR, McConkey MO, Palmanovich E, Yaacobi E, Mann G, Nyska M, Kots E, Mei-Dan O. Plasma rich in growth factors (PRGF) as a treatment for high ankle sprain in elite athletes: a randomized control trial. Knee Surg Sports Traumatol Arthrosc. 2015 Nov;23(11):3383-92.','Sprained or Overturned Ankle?','','inherit','closed','closed','','5474-revision-v1','','','2022-08-26 21:59:44','2022-08-26 21:59:44','',5474,'https://www.drfields.com/?p=5495',0,'revision','',0),(5496,9,'2022-08-26 22:01:27','2022-08-26 22:01:27','<img class=\"wp-image-5475 alignright\" title=\"Sprained Ankle?\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Sprained-Ankle-500x419.png\" alt=\"Sprained Ankle?\" width=\"300\" height=\"251\" />\r\n<h2>Sprained Ankles?</h2>\r\nDo you experience recurrent sprained ankles? Is your ankle constantly giving out or overturning? These are common problems for those with instability in their ankle! Frequent swelling, pain, and a decrease in range of motion or possibly an excess of movement are also symptoms of those who experience recurring ankle sprains.\r\n<h2>What Causes Frequent Sprained Ankles?</h2>\r\nAnything that stretches the ankle further than it is used to can cause an injury to the ankle ligaments. For example, overturning the ankle inwards or outwards can injure the ligaments. Ankle sprains consist of some type of ligament injury. These injuries may be mild, moderate, or severe, but all involve ligament injury and/or tears of the ankle\'s ligaments.\r\n\r\nIf this ligament injury does not fully heal, a cycle of instability begins because the ligament(s) are weakened, allowing for abnormal ankle joint movement. As time progresses, other structures of the unstable ankle joint will also begin to degenerate, resulting in eventual arthritis.\r\n<h2>Why Haven’t Common Treatments Worked to Stabilize Weak or Sprained Ankles?</h2>\r\nIf you look up common treatments for ankle sprains, you will find rest, ice, compression, elevation, anti-inflammatory medications, and bracing or casting. Those with repeat ankle sprains have most likely tried all of these treatments.\r\n\r\nSure, they may provide some relief, but the ankle remains unstable. That is because none of these treatments repair the injured ligaments.\r\n<ul>\r\n 	<li>Ice does not repair ligaments.</li>\r\n 	<li>Braces, taping, and casts do not repair ligaments</li>\r\n 	<li>Elevation does not repair ligaments</li>\r\n 	<li>Anti-inflammatories do not repair ligaments</li>\r\n 	<li>Pain medications do not repair ligaments</li>\r\n</ul>\r\nAnd since 86% of ankle injuries are ligament sprains1, a treatment directed at ligament repair is what is necessary. Yes, treatments like physical therapy to strengthen musculature are helpful, but since muscles also depend on strong tendons and ligaments for proper function and stability, repair of these soft tissue structures will need to be addressed.\r\n<h2>Regenerative Treatment Is An Effective Way to Repair Weakened Ligaments</h2>\r\nAt OrthoRegen®, our treatment of choice is Regenerative Orthopedics. The great news is that these non-surgical treatments actually work to repair the ligaments. The treatment is not just a bandaid or a cover-up for the pain. Regenerative therapies, like Prolotherapy, PRP, and Stem Cells, have been shown to repair and regenerate the injured soft tissue structures.\r\n\r\nThe joint is strengthened by repairing the ligaments and any other involved soft tissue structures, and the instability is resolved. Regenerative Orthopedics is a comprehensive treatment directed at all of the involved structures for the best possible outcome. The result is decreased pain and stiffness and increased function, improving quality of life.2\r\n\r\nIn cases with more deterioration, PRP or Stem Cells may be recommended in addition to Prolotherapy. Research has shown that these treatments also repair the ankle\'s soft tissue and boost function. Even in high ankle sprains, PRP has been shown to return athletes to full activity.\r\n\r\nAt OrthoRegen®, we have many years of experience in Regenerative therapies and would be happy to help you resolve your recurrent ankle sprains and improve your ankle function. Call us today at (310)453-1234.\r\n\r\n1Mulcahey MK, Bernhardson AS, Murphy CP, Chang A, Zajac T, Sanchez G, Sanchez A, Whalen JM, Price MD, Clanton TO, Provencher MT. The Epidemiology of Ankle Injuries Identified at the National Football League Combine, 2009-2015. Orthopaedic journal of sports medicine. 2018 Jul 17;6(7):2325967118786227.\r\n\r\n2Hauser RA, Hauser, MA, Cukla J. Dextrose Prolotherapy Injections for Chronic Ankle Pain Practical PAIN MANAGEMENT, January/February 2010 p 70-76.\r\n\r\n3Laver L, Carmont MR, McConkey MO, Palmanovich E, Yaacobi E, Mann G, Nyska M, Kots E, Mei-Dan O. Plasma rich in growth factors (PRGF) as a treatment for high ankle sprain in elite athletes: a randomized control trial. Knee Surg Sports Traumatol Arthrosc. 2015 Nov;23(11):3383-92.','Sprained or Overturned Ankle?','','inherit','closed','closed','','5474-revision-v1','','','2022-08-26 22:01:27','2022-08-26 22:01:27','',5474,'https://www.drfields.com/?p=5496',0,'revision','',0),(5497,9,'2022-08-26 22:03:16','2022-08-26 22:03:16','<img class=\"wp-image-5475 alignright\" title=\"Sprained Ankle?\" src=\"https://www.drfields.com/wp-content/uploads/2022/08/Sprained-Ankle-500x419.png\" alt=\"Sprained Ankle?\" width=\"300\" height=\"251\" />\r\n<h2>Sprained Ankles?</h2>\r\nDo you experience recurrent sprained ankles? Is your ankle constantly giving out or overturning? These are common problems for those with instability in their ankle! Frequent swelling, pain, and a decrease in range of motion or possibly an excess of movement are also symptoms of those who experience recurring ankle sprains.\r\n<h2>What Causes Frequent Sprained Ankles?</h2>\r\nAnything that stretches the ankle further than it is used to can cause an injury to the ankle ligaments. For example, overturning the ankle inwards or outwards can injure the ligaments. Ankle sprains consist of some type of ligament injury. These injuries may be mild, moderate, or severe, but all involve ligament injury and/or tears of the ankle\'s ligaments.\r\n\r\nIf this ligament injury does not fully heal, a cycle of instability begins because the ligament(s) are weakened, allowing for abnormal ankle joint movement. As time progresses, other structures of the unstable ankle joint will also begin to degenerate, resulting in eventual arthritis.\r\n<h2>Why Haven’t Common Treatments Worked to Stabilize Weak or Sprained Ankles?</h2>\r\nIf you look up common treatments for ankle sprains, you will find rest, ice, compression, elevation, anti-inflammatory medications, and bracing or casting. Those with repeat ankle sprains have most likely tried all of these treatments.\r\n\r\nSure, they may provide some relief, but the ankle remains unstable. That is because none of these treatments repair the injured ligaments.\r\n<ul>\r\n 	<li>Ice does not repair ligaments.</li>\r\n 	<li>Braces, taping, and casts do not repair ligaments</li>\r\n 	<li>Elevation does not repair ligaments</li>\r\n 	<li>Anti-inflammatories do not repair ligaments</li>\r\n 	<li>Pain medications do not repair ligaments</li>\r\n</ul>\r\nAnd since 86% of ankle injuries are ligament sprains1, a treatment directed at ligament repair is what is necessary. Yes, treatments like physical therapy to strengthen musculature are helpful, but since muscles also depend on strong tendons and ligaments for proper function and stability, repair of these soft tissue structures will need to be addressed.\r\n<h2>Regenerative Treatment Is An Effective Way to Repair Weakened Ligaments</h2>\r\nAt OrthoRegen®, our treatment of choice is Regenerative Orthopedics. The great news is that these non-surgical treatments actually work to repair the ligaments. The treatment is not just a bandaid or a cover-up for the pain. Regenerative therapies, like Prolotherapy, PRP, and Stem Cells, have been shown to repair and regenerate the injured soft tissue structures.\r\n\r\nThe joint is strengthened by repairing the ligaments and other soft tissue structures, and the instability is resolved. Regenerative Orthopedics is a comprehensive treatment directed at all of the involved structures for the best possible outcome. The result is decreased pain and stiffness and increased function, improving quality of life.2\r\n\r\nIn cases with more deterioration, PRP or Stem Cells may be recommended in addition to Prolotherapy. Research has shown that these treatments also repair the ankle\'s soft tissue and boost function. Even in high ankle sprains, PRP has been shown to return athletes to full activity.\r\n\r\nAt OrthoRegen®, we have many years of experience in Regenerative therapies and would be happy to help you resolve your recurrent ankle sprains and improve your ankle function. Call us today at (310)453-1234.\r\n\r\n1Mulcahey MK, Bernhardson AS, Murphy CP, Chang A, Zajac T, Sanchez G, Sanchez A, Whalen JM, Price MD, Clanton TO, Provencher MT. The Epidemiology of Ankle Injuries Identified at the National Football League Combine, 2009-2015. Orthopaedic journal of sports medicine. 2018 Jul 17;6(7):2325967118786227.\r\n\r\n2Hauser RA, Hauser, MA, Cukla J. Dextrose Prolotherapy Injections for Chronic Ankle Pain Practical PAIN MANAGEMENT, January/February 2010 p 70-76.\r\n\r\n3Laver L, Carmont MR, McConkey MO, Palmanovich E, Yaacobi E, Mann G, Nyska M, Kots E, Mei-Dan O. Plasma rich in growth factors (PRGF) as a treatment for high ankle sprain in elite athletes: a randomized control trial. Knee Surg Sports Traumatol Arthrosc. 2015 Nov;23(11):3383-92.','Sprained or Overturned Ankle?','','inherit','closed','closed','','5474-revision-v1','','','2022-08-26 22:03:16','2022-08-26 22:03:16','',5474,'https://www.drfields.com/?p=5497',0,'revision','',0),(5500,8,'2022-09-06 06:00:27','2022-09-06 06:00:27','<h2><img class=\"alignright wp-image-5506 size-wcsquare\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-300x300.png\" alt=\"Patellar Tendinopathy. Prp. Amer J Of Sports Med.2ndpng\" width=\"300\" height=\"300\" />Patellar Tendinopathy</h2>\r\nHave you been diagnosed with patellar tendinopathy? If so, your condition relates to the tendon that passes from the large muscle at the front of the thigh and over the kneecap (patella) to connect to the shinbone.\r\n\r\nWhen someone has knee pain from a tendon problem or other causes, conservative self-management is usually the next step, or a doctor may recommend a brace, wrap, and/or anti-inflammatory medication. These treatments may keep down swelling down and possibly relieve some pain. However, any actual injury is not repaired with these conventional measures.\r\n\r\nAfter a few weeks of rest, once you are active again, you may still experience problems with pain and instability. Repair is needed. Fortunately, Regenerative Orthopedics is an available solution that can repair the tendons and any involved ligaments. Plus, it is non-surgical.\r\n<h2>Tendinitis vs Tendinosis</h2>\r\nBefore we go on, let’s talk about the difference between tendinitis and tendinosis:\r\n<ul>\r\n 	<li>With tendinitis, there is inflammation, pain, and swelling. The body is still trying to heal the knee</li>\r\n 	<li>When tendinosis is diagnosed, there is pain and weakness without the inflammation. At this point, the soft tissue is degenerated and the body has pretty much stopped trying to heal the tendon. And even though inflammation can be painful, inflammation is the body’s way of healing.</li>\r\n</ul>\r\n<h2>Patellar Tendinopathy Explained</h2>\r\nThe Journal of the American Academy of Orthopaedic Surgeons explains patellar tendinopathy like this: “The main problem in patellar tendinopathy is tendinosis, which is a degenerative disorder rather than an inflammatory disorder; therefore, the other popular term for this disease, tendinitis, is not appropriate.”\r\n\r\nRegenerative treatments are needed to repair and regenerate the degenerated soft tissue.\r\n<h2>Do Cortisone Injections Help?</h2>\r\nCortisone injections may help to calm down the inflammation and pain, but cortisone can make the tendon weaker. A recent study on the effect of dexamethasone (a type of cortisone injection) on the patellar tendon showed that dexamethasone had a “paradoxical” effect or changed the tendon stem cells into non-tendon tissue which weakened the tendon. Keep in mind then, that if cortisone is recommended, that while it may calm down inflammation, the injection could weaken rather than strengthen the tendon. (2)\r\n\r\nUnfortunately, with a tendon injury, the structure is already weakened. Plus, once it is weakened or damaged through injury or degenerative wear and tear, the knee becomes unstable. Stability needs to be regained, and Regenerative Orthopedics can stabilize and repair the soft tissue structures.\r\n<h2>Can Taping Help?</h2>\r\nIn the Annals of Translational Medicine (3), taping for the purpose of stabilizing the patella was discussed. “Patellar taping is commonly used in conjunction with manual and exercise therapies in the management of patellofemoral pain syndrome. Taping is predominately used to help decrease pain. Other studies show it can also help with patellar alignment and muscle activation. As patellar hypermobility has been shown as a predisposing factor for developing patellofemoral pain syndrome, taping can be indicated to promote patellar positioning and decrease pain. . . Overall, the effects of taping, are conflicting,…short-term it can be helpful with acute management of symptoms with functional activity.”\r\n\r\nThe goal of taping is to get the patella back into place, and to stabilize it temporarily. It is not reparative. Regenerative Orthopedics can stabilize the patellar, get it back in alignment, and resolve the pain. Regenerative Orthopedics is reparative.\r\n<h2>What About Surgery?</h2>\r\nSurgery may help the condition, but the downtime is very long. Researchers in the medical journal Orthopedics found that open surgery and arthroscopic techniques achieved similar satisfactory results but the average time to return to play was 5.6 months and 5 months, respectively (4). But keep in mind, there is also the possibility that surgery may not work.\r\n\r\nWhy not choose a non-surgical option that results in repair? Plus, effective Regenerative Orthopedics does not require the downtime of surgery. Movement is encouraged!\r\n<h2>Research about Regenerative Therapies?</h2>\r\nThe Journal of Experimental Orthopaedics examined the use of Prolotherapy in ten different studies for tendinopathies and found: “Among all ten studies, no serious adverse events were reported. Based on this limited set of studies, there seems to be some evidence that…Prolotherapy may be an effective treatment option to treat pain and to improve function in patients with Chronic Patellar Tendinopathy.” (5)\r\n\r\nPRP, another form of Regenerative Orthopedics, may also be warranted depending on the severity of the knee condition and for patellar tendinopathy. Do researchers recommend it? Doctors looking for a non-surgical options to treat patellar tendinopathy concluded in the American Journal of Sports Medicine: “Eccentric exercises may seem the strategy of choice in the short-term, but multiple PRP injections may offer more satisfactory results at long-term follow-up and can be therefore considered a suitable option for the treatment of patellar tendinopathy.”(6)\r\n\r\nRegenerative Orthopedics is a successful non-surgical solution for many knee pain conditions, including patellar tendinopathy. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love quickly and with improved knee function.\r\n<h3><strong>References</strong></h3>\r\n1 Figueroa D, Figueroa F, Calvo R. Patellar Tendinopathy: Diagnosis and Treatment. J Am Acad Orthop Surg. 2016 Dec;24(12):e184-e192.\r\n\r\n2 Zhang J, Keenan C, Wang JH. The Effects of Dexamethasone on Human Patellar Tendon Stem Cells: Implications for Dexamethasone Treatment of Tendon Injury. Journal of orthopaedic research: official publication of the Orthopaedic Research Society. 2013 Jan;31(1):105.\r\n\r\n3 Mellinger S, Neurohr GA. Evidence-based treatment options for common knee injuries in runners. Annals of translational medicine. 2019 Oct;7(Suppl 7).\r\n\r\n4 Stuhlman CR, Stowers K, Stowers L, Smith J. Current Concepts and the Role of Surgery in the Treatment of Jumper’s Knee. Orthopedics. Nov 1 2016;39(6):e1028-e1035. doi: 10.3928/01477447-20160714-06.\r\n\r\n5 Morath O, Beck M, Taeymans J, Hirschmüller A. Sclerotherapy and prolotherapy for chronic patellar tendinopathies – a promising therapy with limited available evidence, a systematic review. J Exp Orthop. 2020 Nov 9;7(1):89. doi: 10.1186/s40634-020-00303-0. PMID: 33165667.\r\n\r\n6 Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.','Patellar Tendinopathy','','publish','closed','open','','patellar-tendinopathy','','','2023-03-10 17:38:54','2023-03-10 17:38:54','',0,'https://www.drfields.com/?p=5500',0,'post','',0),(5501,8,'2022-09-07 06:06:04','2022-09-07 06:06:04','Patellar Tendinopathy. Prp. Amer J Of Sports Med','Patellar Tendinopathy. Prp. Amer J Of Sports Med','Patellar Tendinopathy. Prp. Amer J Of Sports Med','inherit','closed','closed','','patellar-tendinopathy-prp-amer-j-of-sports-med','','','2022-09-07 06:06:04','2022-09-07 06:06:04','',5500,'https://www.drfields.com/wp-content/uploads/2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.png',0,'attachment','image/png',0),(5502,8,'2022-09-07 06:08:21','2022-09-07 06:08:21','<img class=\"wp-image-5501 size-wcsquare\" title=\"Patellar Tendinopathy\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-300x300.png\" alt=\"Patellar Tendinopathy\" width=\"300\" height=\"300\" />\r\n\r\nHave you been diagnosed with patellar tendinopathy? If so, your condition relates to the tendon that passes from the large muscle at the front of the thigh and over the kneecap (patella) to connect to the shinbone.\r\n\r\nWhen someone has knee pain from a tendon problem or other causes, conservative self-management is usually the next step, or a doctor may recommend a brace, wrap, and/or anti-inflammatory medication. These treatments may keep down swelling down and possibly relieve some pain. However, any actual injury is not repaired with these conventional measures.\r\n\r\nAfter a few weeks of rest, once you are active again, you may still experience problems with pain and instability. Repair is needed. Fortunately, Regenerative Orthopedics is an available solution that can repair the tendons and any involved ligaments. Plus, it is non-surgical.\r\n<h2>Tendinitis vs Tendinosis</h2>\r\nBefore we go on, let’s talk about the difference between tendinitis and tendinosis:\r\n<ul>\r\n 	<li>With tendinitis, there is inflammation, pain, and swelling. The body is still trying to heal the knee</li>\r\n 	<li>When tendinosis is diagnosed, there is pain and weakness without the inflammation. At this point, the soft tissue is degenerated and the body has pretty much stopped trying to heal the tendon. And even though inflammation can be painful, inflammation is the body’s way of healing.</li>\r\n</ul>\r\n<h2>Patellar Tendinopathy Explained</h2>\r\nThe Journal of the American Academy of Orthopaedic Surgeons explains patellar tendinopathy like this: “The main problem in patellar tendinopathy is tendinosis, which is a degenerative disorder rather than an inflammatory disorder; therefore, the other popular term for this disease, tendinitis, is not appropriate.”\r\n\r\nRegenerative treatments are needed to repair and regenerate the degenerated soft tissue.\r\n<h2>Do Cortisone Injections Help?</h2>\r\nCortisone injections may help to calm down the inflammation and pain, but cortisone can make the tendon weaker. A recent study on the effect of dexamethasone (a type of cortisone injection) on the patellar tendon showed that dexamethasone had a “paradoxical” effect or changed the tendon stem cells into non-tendon tissue which weakened the tendon. Keep in mind then, that if cortisone is recommended, that while it may calm down inflammation, the injection could weaken rather than strengthen the tendon. (2)\r\n\r\nUnfortunately, with a tendon injury, the structure is already weakened. Plus, once it is weakened or damaged through injury or degenerative wear and tear, the knee becomes unstable. Stability needs to be regained, and Regenerative Orthopedics can stabilize and repair the soft tissue structures.\r\n<h2>Can Taping Help?</h2>\r\nIn the Annals of Translational Medicine (3), taping for the purpose of stabilizing the patella was discussed. “Patellar taping is commonly used in conjunction with manual and exercise therapies in the management of patellofemoral pain syndrome. Taping is predominately used to help decrease pain. Other studies show it can also help with patellar alignment and muscle activation. As patellar hypermobility has been shown as a predisposing factor for developing patellofemoral pain syndrome, taping can be indicated to promote patellar positioning and decrease pain. . . Overall, the effects of taping, are conflicting,…short-term it can be helpful with acute management of symptoms with functional activity.”\r\n\r\nThe goal of taping is to get the patella back into place, and to stabilize it temporarily. It is not reparative. Regenerative Orthopedics can stabilize the patellar, get it back in alignment, and resolve the pain. Regenerative Orthopedics is reparative.\r\n<h2>What About Surgery?</h2>\r\nSurgery may help the condition, but the downtime is very long. Researchers in the medical journal Orthopedics found that open surgery and arthroscopic techniques achieved similar satisfactory results but the average time to return to play was 5.6 months and 5 months, respectively (4). But keep in mind, there is also the possibility that surgery may not work.\r\n\r\nWhy not choose a non-surgical option that results in repair? Plus, effective Regenerative Orthopedics does not require the downtime of surgery. Movement is encouraged!\r\n<h2>Research about Regenerative Therapies?</h2>\r\nThe Journal of Experimental Orthopaedics examined the use of Prolotherapy in ten different studies for tendinopathies and found: “Among all ten studies, no serious adverse events were reported. Based on this limited set of studies, there seems to be some evidence that…Prolotherapy may be an effective treatment option to treat pain and to improve function in patients with Chronic Patellar Tendinopathy.” (5)\r\n\r\nPRP, another form of Regenerative Orthopedics, may also be warranted depending on the severity of the knee condition and for patellar tendinopathy. Do researchers recommend it? Doctors looking for a non-surgical options to treat patellar tendinopathy concluded in the American Journal of Sports Medicine: “Eccentric exercises may seem the strategy of choice in the short-term, but multiple PRP injections may offer more satisfactory results at long-term follow-up and can be therefore considered a suitable option for the treatment of patellar tendinopathy.”(6)\r\n\r\nRegenerative Orthopedics is a successful non-surgical solution for many knee pain conditions, including patellar tendinopathy. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love quickly and with improved knee function.\r\n\r\n<strong>References</strong>\r\n\r\n1 Figueroa D, Figueroa F, Calvo R. Patellar Tendinopathy: Diagnosis and Treatment. J Am Acad Orthop Surg. 2016 Dec;24(12):e184-e192.\r\n\r\n2 Zhang J, Keenan C, Wang JH. The Effects of Dexamethasone on Human Patellar Tendon Stem Cells: Implications for Dexamethasone Treatment of Tendon Injury. Journal of orthopaedic research: official publication of the Orthopaedic Research Society. 2013 Jan;31(1):105.\r\n\r\n3 Mellinger S, Neurohr GA. Evidence-based treatment options for common knee injuries in runners. Annals of translational medicine. 2019 Oct;7(Suppl 7).\r\n\r\n4 Stuhlman CR, Stowers K, Stowers L, Smith J. Current Concepts and the Role of Surgery in the Treatment of Jumper’s Knee. Orthopedics. Nov 1 2016;39(6):e1028-e1035. doi: 10.3928/01477447-20160714-06.\r\n\r\n5 Morath O, Beck M, Taeymans J, Hirschmüller A. Sclerotherapy and prolotherapy for chronic patellar tendinopathies – a promising therapy with limited available evidence, a systematic review. J Exp Orthop. 2020 Nov 9;7(1):89. doi: 10.1186/s40634-020-00303-0. PMID: 33165667.\r\n\r\n6 Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.','Patellar Tendinopathy','','inherit','closed','closed','','5500-revision-v1','','','2022-09-07 06:08:21','2022-09-07 06:08:21','',5500,'https://www.drfields.com/?p=5502',0,'revision','',0),(5503,8,'2022-09-07 06:09:31','2022-09-07 06:09:31','<img class=\"wp-image-5501 size-wcsquare alignright\" title=\"Patellar Tendinopathy\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-300x300.png\" alt=\"Patellar Tendinopathy\" width=\"300\" height=\"300\" />\n\nHave you been diagnosed with patellar tendinopathy? If so, your condition relates to the tendon that passes from the large muscle at the front of the thigh and over the kneecap (patella) to connect to the shinbone.\n\nWhen someone has knee pain from a tendon problem or other causes, conservative self-management is usually the next step, or a doctor may recommend a brace, wrap, and/or anti-inflammatory medication. These treatments may keep down swelling down and possibly relieve some pain. However, any actual injury is not repaired with these conventional measures.\n\nAfter a few weeks of rest, once you are active again, you may still experience problems with pain and instability. Repair is needed. Fortunately, Regenerative Orthopedics is an available solution that can repair the tendons and any involved ligaments. Plus, it is non-surgical.\n<h2>Tendinitis vs Tendinosis</h2>\nBefore we go on, let’s talk about the difference between tendinitis and tendinosis:\n<ul>\n 	<li>With tendinitis, there is inflammation, pain, and swelling. The body is still trying to heal the knee</li>\n 	<li>When tendinosis is diagnosed, there is pain and weakness without the inflammation. At this point, the soft tissue is degenerated and the body has pretty much stopped trying to heal the tendon. And even though inflammation can be painful, inflammation is the body’s way of healing.</li>\n</ul>\n<h2>Patellar Tendinopathy Explained</h2>\nThe Journal of the American Academy of Orthopaedic Surgeons explains patellar tendinopathy like this: “The main problem in patellar tendinopathy is tendinosis, which is a degenerative disorder rather than an inflammatory disorder; therefore, the other popular term for this disease, tendinitis, is not appropriate.”\n\nRegenerative treatments are needed to repair and regenerate the degenerated soft tissue.\n<h2>Do Cortisone Injections Help?</h2>\nCortisone injections may help to calm down the inflammation and pain, but cortisone can make the tendon weaker. A recent study on the effect of dexamethasone (a type of cortisone injection) on the patellar tendon showed that dexamethasone had a “paradoxical” effect or changed the tendon stem cells into non-tendon tissue which weakened the tendon. Keep in mind then, that if cortisone is recommended, that while it may calm down inflammation, the injection could weaken rather than strengthen the tendon. (2)\n\nUnfortunately, with a tendon injury, the structure is already weakened. Plus, once it is weakened or damaged through injury or degenerative wear and tear, the knee becomes unstable. Stability needs to be regained, and Regenerative Orthopedics can stabilize and repair the soft tissue structures.\n<h2>Can Taping Help?</h2>\nIn the Annals of Translational Medicine (3), taping for the purpose of stabilizing the patella was discussed. “Patellar taping is commonly used in conjunction with manual and exercise therapies in the management of patellofemoral pain syndrome. Taping is predominately used to help decrease pain. Other studies show it can also help with patellar alignment and muscle activation. As patellar hypermobility has been shown as a predisposing factor for developing patellofemoral pain syndrome, taping can be indicated to promote patellar positioning and decrease pain. . . Overall, the effects of taping, are conflicting,…short-term it can be helpful with acute management of symptoms with functional activity.”\n\nThe goal of taping is to get the patella back into place, and to stabilize it temporarily. It is not reparative. Regenerative Orthopedics can stabilize the patellar, get it back in alignment, and resolve the pain. Regenerative Orthopedics is reparative.\n<h2>What About Surgery?</h2>\nSurgery may help the condition, but the downtime is very long. Researchers in the medical journal Orthopedics found that open surgery and arthroscopic techniques achieved similar satisfactory results but the average time to return to play was 5.6 months and 5 months, respectively (4). But keep in mind, there is also the possibility that surgery may not work.\n\nWhy not choose a non-surgical option that results in repair? Plus, effective Regenerative Orthopedics does not require the downtime of surgery. Movement is encouraged!\n<h2>Research about Regenerative Therapies?</h2>\nThe Journal of Experimental Orthopaedics examined the use of Prolotherapy in ten different studies for tendinopathies and found: “Among all ten studies, no serious adverse events were reported. Based on this limited set of studies, there seems to be some evidence that…Prolotherapy may be an effective treatment option to treat pain and to improve function in patients with Chronic Patellar Tendinopathy.” (5)\n\nPRP, another form of Regenerative Orthopedics, may also be warranted depending on the severity of the knee condition and for patellar tendinopathy. Do researchers recommend it? Doctors looking for a non-surgical options to treat patellar tendinopathy concluded in the American Journal of Sports Medicine: “Eccentric exercises may seem the strategy of choice in the short-term, but multiple PRP injections may offer more satisfactory results at long-term follow-up and can be therefore considered a suitable option for the treatment of patellar tendinopathy.”(6)\n\nRegenerative Orthopedics is a successful non-surgical solution for many knee pain conditions, including patellar tendinopathy. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love quickly and with improved knee function.\n\n<strong>References</strong>\n\n1 Figueroa D, Figueroa F, Calvo R. Patellar Tendinopathy: Diagnosis and Treatment. J Am Acad Orthop Surg. 2016 Dec;24(12):e184-e192.\n\n2 Zhang J, Keenan C, Wang JH. The Effects of Dexamethasone on Human Patellar Tendon Stem Cells: Implications for Dexamethasone Treatment of Tendon Injury. Journal of orthopaedic research: official publication of the Orthopaedic Research Society. 2013 Jan;31(1):105.\n\n3 Mellinger S, Neurohr GA. Evidence-based treatment options for common knee injuries in runners. Annals of translational medicine. 2019 Oct;7(Suppl 7).\n\n4 Stuhlman CR, Stowers K, Stowers L, Smith J. Current Concepts and the Role of Surgery in the Treatment of Jumper’s Knee. Orthopedics. Nov 1 2016;39(6):e1028-e1035. doi: 10.3928/01477447-20160714-06.\n\n5 Morath O, Beck M, Taeymans J, Hirschmüller A. Sclerotherapy and prolotherapy for chronic patellar tendinopathies – a promising therapy with limited available evidence, a systematic review. J Exp Orthop. 2020 Nov 9;7(1):89. doi: 10.1186/s40634-020-00303-0. PMID: 33165667.\n\n6 Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.','Patellar Tendinopathy','','inherit','closed','closed','','5500-autosave-v1','','','2022-09-07 06:09:31','2022-09-07 06:09:31','',5500,'https://www.drfields.com/?p=5503',0,'revision','',0),(5504,8,'2022-09-07 06:09:43','2022-09-07 06:09:43','<img class=\"wp-image-5501 size-wcsquare alignright\" title=\"Patellar Tendinopathy\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med-300x300.png\" alt=\"Patellar Tendinopathy\" width=\"300\" height=\"300\" />\r\n\r\nHave you been diagnosed with patellar tendinopathy? If so, your condition relates to the tendon that passes from the large muscle at the front of the thigh and over the kneecap (patella) to connect to the shinbone.\r\n\r\nWhen someone has knee pain from a tendon problem or other causes, conservative self-management is usually the next step, or a doctor may recommend a brace, wrap, and/or anti-inflammatory medication. These treatments may keep down swelling down and possibly relieve some pain. However, any actual injury is not repaired with these conventional measures.\r\n\r\nAfter a few weeks of rest, once you are active again, you may still experience problems with pain and instability. Repair is needed. Fortunately, Regenerative Orthopedics is an available solution that can repair the tendons and any involved ligaments. Plus, it is non-surgical.\r\n<h2>Tendinitis vs Tendinosis</h2>\r\nBefore we go on, let’s talk about the difference between tendinitis and tendinosis:\r\n<ul>\r\n 	<li>With tendinitis, there is inflammation, pain, and swelling. The body is still trying to heal the knee</li>\r\n 	<li>When tendinosis is diagnosed, there is pain and weakness without the inflammation. At this point, the soft tissue is degenerated and the body has pretty much stopped trying to heal the tendon. And even though inflammation can be painful, inflammation is the body’s way of healing.</li>\r\n</ul>\r\n<h2>Patellar Tendinopathy Explained</h2>\r\nThe Journal of the American Academy of Orthopaedic Surgeons explains patellar tendinopathy like this: “The main problem in patellar tendinopathy is tendinosis, which is a degenerative disorder rather than an inflammatory disorder; therefore, the other popular term for this disease, tendinitis, is not appropriate.”\r\n\r\nRegenerative treatments are needed to repair and regenerate the degenerated soft tissue.\r\n<h2>Do Cortisone Injections Help?</h2>\r\nCortisone injections may help to calm down the inflammation and pain, but cortisone can make the tendon weaker. A recent study on the effect of dexamethasone (a type of cortisone injection) on the patellar tendon showed that dexamethasone had a “paradoxical” effect or changed the tendon stem cells into non-tendon tissue which weakened the tendon. Keep in mind then, that if cortisone is recommended, that while it may calm down inflammation, the injection could weaken rather than strengthen the tendon. (2)\r\n\r\nUnfortunately, with a tendon injury, the structure is already weakened. Plus, once it is weakened or damaged through injury or degenerative wear and tear, the knee becomes unstable. Stability needs to be regained, and Regenerative Orthopedics can stabilize and repair the soft tissue structures.\r\n<h2>Can Taping Help?</h2>\r\nIn the Annals of Translational Medicine (3), taping for the purpose of stabilizing the patella was discussed. “Patellar taping is commonly used in conjunction with manual and exercise therapies in the management of patellofemoral pain syndrome. Taping is predominately used to help decrease pain. Other studies show it can also help with patellar alignment and muscle activation. As patellar hypermobility has been shown as a predisposing factor for developing patellofemoral pain syndrome, taping can be indicated to promote patellar positioning and decrease pain. . . Overall, the effects of taping, are conflicting,…short-term it can be helpful with acute management of symptoms with functional activity.”\r\n\r\nThe goal of taping is to get the patella back into place, and to stabilize it temporarily. It is not reparative. Regenerative Orthopedics can stabilize the patellar, get it back in alignment, and resolve the pain. Regenerative Orthopedics is reparative.\r\n<h2>What About Surgery?</h2>\r\nSurgery may help the condition, but the downtime is very long. Researchers in the medical journal Orthopedics found that open surgery and arthroscopic techniques achieved similar satisfactory results but the average time to return to play was 5.6 months and 5 months, respectively (4). But keep in mind, there is also the possibility that surgery may not work.\r\n\r\nWhy not choose a non-surgical option that results in repair? Plus, effective Regenerative Orthopedics does not require the downtime of surgery. Movement is encouraged!\r\n<h2>Research about Regenerative Therapies?</h2>\r\nThe Journal of Experimental Orthopaedics examined the use of Prolotherapy in ten different studies for tendinopathies and found: “Among all ten studies, no serious adverse events were reported. Based on this limited set of studies, there seems to be some evidence that…Prolotherapy may be an effective treatment option to treat pain and to improve function in patients with Chronic Patellar Tendinopathy.” (5)\r\n\r\nPRP, another form of Regenerative Orthopedics, may also be warranted depending on the severity of the knee condition and for patellar tendinopathy. Do researchers recommend it? Doctors looking for a non-surgical options to treat patellar tendinopathy concluded in the American Journal of Sports Medicine: “Eccentric exercises may seem the strategy of choice in the short-term, but multiple PRP injections may offer more satisfactory results at long-term follow-up and can be therefore considered a suitable option for the treatment of patellar tendinopathy.”(6)\r\n\r\nRegenerative Orthopedics is a successful non-surgical solution for many knee pain conditions, including patellar tendinopathy. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love quickly and with improved knee function.\r\n\r\n<strong>References</strong>\r\n\r\n1 Figueroa D, Figueroa F, Calvo R. Patellar Tendinopathy: Diagnosis and Treatment. J Am Acad Orthop Surg. 2016 Dec;24(12):e184-e192.\r\n\r\n2 Zhang J, Keenan C, Wang JH. The Effects of Dexamethasone on Human Patellar Tendon Stem Cells: Implications for Dexamethasone Treatment of Tendon Injury. Journal of orthopaedic research: official publication of the Orthopaedic Research Society. 2013 Jan;31(1):105.\r\n\r\n3 Mellinger S, Neurohr GA. Evidence-based treatment options for common knee injuries in runners. Annals of translational medicine. 2019 Oct;7(Suppl 7).\r\n\r\n4 Stuhlman CR, Stowers K, Stowers L, Smith J. Current Concepts and the Role of Surgery in the Treatment of Jumper’s Knee. Orthopedics. Nov 1 2016;39(6):e1028-e1035. doi: 10.3928/01477447-20160714-06.\r\n\r\n5 Morath O, Beck M, Taeymans J, Hirschmüller A. Sclerotherapy and prolotherapy for chronic patellar tendinopathies – a promising therapy with limited available evidence, a systematic review. J Exp Orthop. 2020 Nov 9;7(1):89. doi: 10.1186/s40634-020-00303-0. PMID: 33165667.\r\n\r\n6 Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.','Patellar Tendinopathy','','inherit','closed','closed','','5500-revision-v1','','','2022-09-07 06:09:43','2022-09-07 06:09:43','',5500,'https://www.drfields.com/?p=5504',0,'revision','',0),(5505,8,'2022-09-07 06:13:04','2022-09-07 06:13:04','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankle/\">Sprained Ankle?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Stubborn, Persistent Neck Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-partial-rotator-cuff-tear-repair/\">Non-surgical Partial Rotator Cuff Tear Repair</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/are-cortisone-shots-a-good-option/\">Are Cortisone Shots a Good Option?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/\">Try Regenerative Treatments for Your Hip Pain or Injury</a></li>\r\n 	<li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Treating Knee Pain and Injuries with Regenerative Orthopedics\" href=\"/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics/\">Treating Knee Pain and Injuries with Regenerative Orthopedics</a></li>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-09-07 06:13:04','2022-09-07 06:13:04','',2109,'https://www.drfields.com/?p=5505',0,'revision','',0),(5506,8,'2022-09-09 14:53:19','2022-09-09 14:53:19','Patellar Tendinopathy. Prp. Amer J Of Sports Med.2ndpng','Patellar Tendinopathy. Prp. Amer J Of Sports Med.2ndpng','Patellar Tendinopathy. Prp. Amer J Of Sports Med.2ndpng','inherit','closed','closed','','patellar-tendinopathy-prp-amer-j-of-sports-med-2ndpng','','','2022-09-09 14:53:19','2022-09-09 14:53:19','',5500,'https://www.drfields.com/wp-content/uploads/2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng.png',0,'attachment','image/png',0),(5507,8,'2022-09-09 14:53:48','2022-09-09 14:53:48','[caption id=\"attachment_5506\" align=\"alignright\" width=\"500\"]<a href=\"https://www.drfields.com/wp-content/uploads/2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng.png\"><img class=\"size-medium wp-image-5506\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-500x419.png\" alt=\"Patellar Tendinopathy. Prp. Amer J Of Sports Med.2ndpng\" width=\"500\" height=\"419\" /></a> Patellar Tendinopathy. Prp. Amer J Of Sports Med.2ndpng[/caption]\r\n\r\nHave you been diagnosed with patellar tendinopathy? If so, your condition relates to the tendon that passes from the large muscle at the front of the thigh and over the kneecap (patella) to connect to the shinbone.\r\n\r\nWhen someone has knee pain from a tendon problem or other causes, conservative self-management is usually the next step, or a doctor may recommend a brace, wrap, and/or anti-inflammatory medication. These treatments may keep down swelling down and possibly relieve some pain. However, any actual injury is not repaired with these conventional measures.\r\n\r\nAfter a few weeks of rest, once you are active again, you may still experience problems with pain and instability. Repair is needed. Fortunately, Regenerative Orthopedics is an available solution that can repair the tendons and any involved ligaments. Plus, it is non-surgical.\r\n<h2>Tendinitis vs Tendinosis</h2>\r\nBefore we go on, let’s talk about the difference between tendinitis and tendinosis:\r\n<ul>\r\n 	<li>With tendinitis, there is inflammation, pain, and swelling. The body is still trying to heal the knee</li>\r\n 	<li>When tendinosis is diagnosed, there is pain and weakness without the inflammation. At this point, the soft tissue is degenerated and the body has pretty much stopped trying to heal the tendon. And even though inflammation can be painful, inflammation is the body’s way of healing.</li>\r\n</ul>\r\n<h2>Patellar Tendinopathy Explained</h2>\r\nThe Journal of the American Academy of Orthopaedic Surgeons explains patellar tendinopathy like this: “The main problem in patellar tendinopathy is tendinosis, which is a degenerative disorder rather than an inflammatory disorder; therefore, the other popular term for this disease, tendinitis, is not appropriate.”\r\n\r\nRegenerative treatments are needed to repair and regenerate the degenerated soft tissue.\r\n<h2>Do Cortisone Injections Help?</h2>\r\nCortisone injections may help to calm down the inflammation and pain, but cortisone can make the tendon weaker. A recent study on the effect of dexamethasone (a type of cortisone injection) on the patellar tendon showed that dexamethasone had a “paradoxical” effect or changed the tendon stem cells into non-tendon tissue which weakened the tendon. Keep in mind then, that if cortisone is recommended, that while it may calm down inflammation, the injection could weaken rather than strengthen the tendon. (2)\r\n\r\nUnfortunately, with a tendon injury, the structure is already weakened. Plus, once it is weakened or damaged through injury or degenerative wear and tear, the knee becomes unstable. Stability needs to be regained, and Regenerative Orthopedics can stabilize and repair the soft tissue structures.\r\n<h2>Can Taping Help?</h2>\r\nIn the Annals of Translational Medicine (3), taping for the purpose of stabilizing the patella was discussed. “Patellar taping is commonly used in conjunction with manual and exercise therapies in the management of patellofemoral pain syndrome. Taping is predominately used to help decrease pain. Other studies show it can also help with patellar alignment and muscle activation. As patellar hypermobility has been shown as a predisposing factor for developing patellofemoral pain syndrome, taping can be indicated to promote patellar positioning and decrease pain. . . Overall, the effects of taping, are conflicting,…short-term it can be helpful with acute management of symptoms with functional activity.”\r\n\r\nThe goal of taping is to get the patella back into place, and to stabilize it temporarily. It is not reparative. Regenerative Orthopedics can stabilize the patellar, get it back in alignment, and resolve the pain. Regenerative Orthopedics is reparative.\r\n<h2>What About Surgery?</h2>\r\nSurgery may help the condition, but the downtime is very long. Researchers in the medical journal Orthopedics found that open surgery and arthroscopic techniques achieved similar satisfactory results but the average time to return to play was 5.6 months and 5 months, respectively (4). But keep in mind, there is also the possibility that surgery may not work.\r\n\r\nWhy not choose a non-surgical option that results in repair? Plus, effective Regenerative Orthopedics does not require the downtime of surgery. Movement is encouraged!\r\n<h2>Research about Regenerative Therapies?</h2>\r\nThe Journal of Experimental Orthopaedics examined the use of Prolotherapy in ten different studies for tendinopathies and found: “Among all ten studies, no serious adverse events were reported. Based on this limited set of studies, there seems to be some evidence that…Prolotherapy may be an effective treatment option to treat pain and to improve function in patients with Chronic Patellar Tendinopathy.” (5)\r\n\r\nPRP, another form of Regenerative Orthopedics, may also be warranted depending on the severity of the knee condition and for patellar tendinopathy. Do researchers recommend it? Doctors looking for a non-surgical options to treat patellar tendinopathy concluded in the American Journal of Sports Medicine: “Eccentric exercises may seem the strategy of choice in the short-term, but multiple PRP injections may offer more satisfactory results at long-term follow-up and can be therefore considered a suitable option for the treatment of patellar tendinopathy.”(6)\r\n\r\nRegenerative Orthopedics is a successful non-surgical solution for many knee pain conditions, including patellar tendinopathy. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love quickly and with improved knee function.\r\n\r\n<strong>References</strong>\r\n\r\n1 Figueroa D, Figueroa F, Calvo R. Patellar Tendinopathy: Diagnosis and Treatment. J Am Acad Orthop Surg. 2016 Dec;24(12):e184-e192.\r\n\r\n2 Zhang J, Keenan C, Wang JH. The Effects of Dexamethasone on Human Patellar Tendon Stem Cells: Implications for Dexamethasone Treatment of Tendon Injury. Journal of orthopaedic research: official publication of the Orthopaedic Research Society. 2013 Jan;31(1):105.\r\n\r\n3 Mellinger S, Neurohr GA. Evidence-based treatment options for common knee injuries in runners. Annals of translational medicine. 2019 Oct;7(Suppl 7).\r\n\r\n4 Stuhlman CR, Stowers K, Stowers L, Smith J. Current Concepts and the Role of Surgery in the Treatment of Jumper’s Knee. Orthopedics. Nov 1 2016;39(6):e1028-e1035. doi: 10.3928/01477447-20160714-06.\r\n\r\n5 Morath O, Beck M, Taeymans J, Hirschmüller A. Sclerotherapy and prolotherapy for chronic patellar tendinopathies – a promising therapy with limited available evidence, a systematic review. J Exp Orthop. 2020 Nov 9;7(1):89. doi: 10.1186/s40634-020-00303-0. PMID: 33165667.\r\n\r\n6 Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.','Patellar Tendinopathy','','inherit','closed','closed','','5500-revision-v1','','','2022-09-09 14:53:48','2022-09-09 14:53:48','',5500,'https://www.drfields.com/?p=5507',0,'revision','',0),(5508,8,'2022-09-09 14:54:07','2022-09-09 14:54:07','[caption id=\"attachment_5506\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-5506 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-500x419.png\" alt=\"Patellar Tendinopathy. Prp. Amer J Of Sports Med.2ndpng\" width=\"500\" height=\"419\" /> Patellar Tendinopathy. Prp. Amer J Of Sports Med.2ndpng[/caption]\r\n\r\nHave you been diagnosed with patellar tendinopathy? If so, your condition relates to the tendon that passes from the large muscle at the front of the thigh and over the kneecap (patella) to connect to the shinbone.\r\n\r\nWhen someone has knee pain from a tendon problem or other causes, conservative self-management is usually the next step, or a doctor may recommend a brace, wrap, and/or anti-inflammatory medication. These treatments may keep down swelling down and possibly relieve some pain. However, any actual injury is not repaired with these conventional measures.\r\n\r\nAfter a few weeks of rest, once you are active again, you may still experience problems with pain and instability. Repair is needed. Fortunately, Regenerative Orthopedics is an available solution that can repair the tendons and any involved ligaments. Plus, it is non-surgical.\r\n<h2>Tendinitis vs Tendinosis</h2>\r\nBefore we go on, let’s talk about the difference between tendinitis and tendinosis:\r\n<ul>\r\n 	<li>With tendinitis, there is inflammation, pain, and swelling. The body is still trying to heal the knee</li>\r\n 	<li>When tendinosis is diagnosed, there is pain and weakness without the inflammation. At this point, the soft tissue is degenerated and the body has pretty much stopped trying to heal the tendon. And even though inflammation can be painful, inflammation is the body’s way of healing.</li>\r\n</ul>\r\n<h2>Patellar Tendinopathy Explained</h2>\r\nThe Journal of the American Academy of Orthopaedic Surgeons explains patellar tendinopathy like this: “The main problem in patellar tendinopathy is tendinosis, which is a degenerative disorder rather than an inflammatory disorder; therefore, the other popular term for this disease, tendinitis, is not appropriate.”\r\n\r\nRegenerative treatments are needed to repair and regenerate the degenerated soft tissue.\r\n<h2>Do Cortisone Injections Help?</h2>\r\nCortisone injections may help to calm down the inflammation and pain, but cortisone can make the tendon weaker. A recent study on the effect of dexamethasone (a type of cortisone injection) on the patellar tendon showed that dexamethasone had a “paradoxical” effect or changed the tendon stem cells into non-tendon tissue which weakened the tendon. Keep in mind then, that if cortisone is recommended, that while it may calm down inflammation, the injection could weaken rather than strengthen the tendon. (2)\r\n\r\nUnfortunately, with a tendon injury, the structure is already weakened. Plus, once it is weakened or damaged through injury or degenerative wear and tear, the knee becomes unstable. Stability needs to be regained, and Regenerative Orthopedics can stabilize and repair the soft tissue structures.\r\n<h2>Can Taping Help?</h2>\r\nIn the Annals of Translational Medicine (3), taping for the purpose of stabilizing the patella was discussed. “Patellar taping is commonly used in conjunction with manual and exercise therapies in the management of patellofemoral pain syndrome. Taping is predominately used to help decrease pain. Other studies show it can also help with patellar alignment and muscle activation. As patellar hypermobility has been shown as a predisposing factor for developing patellofemoral pain syndrome, taping can be indicated to promote patellar positioning and decrease pain. . . Overall, the effects of taping, are conflicting,…short-term it can be helpful with acute management of symptoms with functional activity.”\r\n\r\nThe goal of taping is to get the patella back into place, and to stabilize it temporarily. It is not reparative. Regenerative Orthopedics can stabilize the patellar, get it back in alignment, and resolve the pain. Regenerative Orthopedics is reparative.\r\n<h2>What About Surgery?</h2>\r\nSurgery may help the condition, but the downtime is very long. Researchers in the medical journal Orthopedics found that open surgery and arthroscopic techniques achieved similar satisfactory results but the average time to return to play was 5.6 months and 5 months, respectively (4). But keep in mind, there is also the possibility that surgery may not work.\r\n\r\nWhy not choose a non-surgical option that results in repair? Plus, effective Regenerative Orthopedics does not require the downtime of surgery. Movement is encouraged!\r\n<h2>Research about Regenerative Therapies?</h2>\r\nThe Journal of Experimental Orthopaedics examined the use of Prolotherapy in ten different studies for tendinopathies and found: “Among all ten studies, no serious adverse events were reported. Based on this limited set of studies, there seems to be some evidence that…Prolotherapy may be an effective treatment option to treat pain and to improve function in patients with Chronic Patellar Tendinopathy.” (5)\r\n\r\nPRP, another form of Regenerative Orthopedics, may also be warranted depending on the severity of the knee condition and for patellar tendinopathy. Do researchers recommend it? Doctors looking for a non-surgical options to treat patellar tendinopathy concluded in the American Journal of Sports Medicine: “Eccentric exercises may seem the strategy of choice in the short-term, but multiple PRP injections may offer more satisfactory results at long-term follow-up and can be therefore considered a suitable option for the treatment of patellar tendinopathy.”(6)\r\n\r\nRegenerative Orthopedics is a successful non-surgical solution for many knee pain conditions, including patellar tendinopathy. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love quickly and with improved knee function.\r\n\r\n<strong>References</strong>\r\n\r\n1 Figueroa D, Figueroa F, Calvo R. Patellar Tendinopathy: Diagnosis and Treatment. J Am Acad Orthop Surg. 2016 Dec;24(12):e184-e192.\r\n\r\n2 Zhang J, Keenan C, Wang JH. The Effects of Dexamethasone on Human Patellar Tendon Stem Cells: Implications for Dexamethasone Treatment of Tendon Injury. Journal of orthopaedic research: official publication of the Orthopaedic Research Society. 2013 Jan;31(1):105.\r\n\r\n3 Mellinger S, Neurohr GA. Evidence-based treatment options for common knee injuries in runners. Annals of translational medicine. 2019 Oct;7(Suppl 7).\r\n\r\n4 Stuhlman CR, Stowers K, Stowers L, Smith J. Current Concepts and the Role of Surgery in the Treatment of Jumper’s Knee. Orthopedics. Nov 1 2016;39(6):e1028-e1035. doi: 10.3928/01477447-20160714-06.\r\n\r\n5 Morath O, Beck M, Taeymans J, Hirschmüller A. Sclerotherapy and prolotherapy for chronic patellar tendinopathies – a promising therapy with limited available evidence, a systematic review. J Exp Orthop. 2020 Nov 9;7(1):89. doi: 10.1186/s40634-020-00303-0. PMID: 33165667.\r\n\r\n6 Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.','Patellar Tendinopathy','','inherit','closed','closed','','5500-revision-v1','','','2022-09-09 14:54:07','2022-09-09 14:54:07','',5500,'https://www.drfields.com/?p=5508',0,'revision','',0),(5509,8,'2022-09-14 06:45:54','2022-09-14 06:45:54','[caption id=\"attachment_5506\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-5506 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-500x419.png\" alt=\"Patellar Tendinopathy. Prp. Amer J Of Sports Med.2ndpng\" width=\"500\" height=\"419\" />  [/caption]\r\n\r\nHave you been diagnosed with patellar tendinopathy? If so, your condition relates to the tendon that passes from the large muscle at the front of the thigh and over the kneecap (patella) to connect to the shinbone.\r\n\r\nWhen someone has knee pain from a tendon problem or other causes, conservative self-management is usually the next step, or a doctor may recommend a brace, wrap, and/or anti-inflammatory medication. These treatments may keep down swelling down and possibly relieve some pain. However, any actual injury is not repaired with these conventional measures.\r\n\r\nAfter a few weeks of rest, once you are active again, you may still experience problems with pain and instability. Repair is needed. Fortunately, Regenerative Orthopedics is an available solution that can repair the tendons and any involved ligaments. Plus, it is non-surgical.\r\n<h2>Tendinitis vs Tendinosis</h2>\r\nBefore we go on, let’s talk about the difference between tendinitis and tendinosis:\r\n<ul>\r\n 	<li>With tendinitis, there is inflammation, pain, and swelling. The body is still trying to heal the knee</li>\r\n 	<li>When tendinosis is diagnosed, there is pain and weakness without the inflammation. At this point, the soft tissue is degenerated and the body has pretty much stopped trying to heal the tendon. And even though inflammation can be painful, inflammation is the body’s way of healing.</li>\r\n</ul>\r\n<h2>Patellar Tendinopathy Explained</h2>\r\nThe Journal of the American Academy of Orthopaedic Surgeons explains patellar tendinopathy like this: “The main problem in patellar tendinopathy is tendinosis, which is a degenerative disorder rather than an inflammatory disorder; therefore, the other popular term for this disease, tendinitis, is not appropriate.”\r\n\r\nRegenerative treatments are needed to repair and regenerate the degenerated soft tissue.\r\n<h2>Do Cortisone Injections Help?</h2>\r\nCortisone injections may help to calm down the inflammation and pain, but cortisone can make the tendon weaker. A recent study on the effect of dexamethasone (a type of cortisone injection) on the patellar tendon showed that dexamethasone had a “paradoxical” effect or changed the tendon stem cells into non-tendon tissue which weakened the tendon. Keep in mind then, that if cortisone is recommended, that while it may calm down inflammation, the injection could weaken rather than strengthen the tendon. (2)\r\n\r\nUnfortunately, with a tendon injury, the structure is already weakened. Plus, once it is weakened or damaged through injury or degenerative wear and tear, the knee becomes unstable. Stability needs to be regained, and Regenerative Orthopedics can stabilize and repair the soft tissue structures.\r\n<h2>Can Taping Help?</h2>\r\nIn the Annals of Translational Medicine (3), taping for the purpose of stabilizing the patella was discussed. “Patellar taping is commonly used in conjunction with manual and exercise therapies in the management of patellofemoral pain syndrome. Taping is predominately used to help decrease pain. Other studies show it can also help with patellar alignment and muscle activation. As patellar hypermobility has been shown as a predisposing factor for developing patellofemoral pain syndrome, taping can be indicated to promote patellar positioning and decrease pain. . . Overall, the effects of taping, are conflicting,…short-term it can be helpful with acute management of symptoms with functional activity.”\r\n\r\nThe goal of taping is to get the patella back into place, and to stabilize it temporarily. It is not reparative. Regenerative Orthopedics can stabilize the patellar, get it back in alignment, and resolve the pain. Regenerative Orthopedics is reparative.\r\n<h2>What About Surgery?</h2>\r\nSurgery may help the condition, but the downtime is very long. Researchers in the medical journal Orthopedics found that open surgery and arthroscopic techniques achieved similar satisfactory results but the average time to return to play was 5.6 months and 5 months, respectively (4). But keep in mind, there is also the possibility that surgery may not work.\r\n\r\nWhy not choose a non-surgical option that results in repair? Plus, effective Regenerative Orthopedics does not require the downtime of surgery. Movement is encouraged!\r\n<h2>Research about Regenerative Therapies?</h2>\r\nThe Journal of Experimental Orthopaedics examined the use of Prolotherapy in ten different studies for tendinopathies and found: “Among all ten studies, no serious adverse events were reported. Based on this limited set of studies, there seems to be some evidence that…Prolotherapy may be an effective treatment option to treat pain and to improve function in patients with Chronic Patellar Tendinopathy.” (5)\r\n\r\nPRP, another form of Regenerative Orthopedics, may also be warranted depending on the severity of the knee condition and for patellar tendinopathy. Do researchers recommend it? Doctors looking for a non-surgical options to treat patellar tendinopathy concluded in the American Journal of Sports Medicine: “Eccentric exercises may seem the strategy of choice in the short-term, but multiple PRP injections may offer more satisfactory results at long-term follow-up and can be therefore considered a suitable option for the treatment of patellar tendinopathy.”(6)\r\n\r\nRegenerative Orthopedics is a successful non-surgical solution for many knee pain conditions, including patellar tendinopathy. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love quickly and with improved knee function.\r\n\r\n<strong>References</strong>\r\n\r\n1 Figueroa D, Figueroa F, Calvo R. Patellar Tendinopathy: Diagnosis and Treatment. J Am Acad Orthop Surg. 2016 Dec;24(12):e184-e192.\r\n\r\n2 Zhang J, Keenan C, Wang JH. The Effects of Dexamethasone on Human Patellar Tendon Stem Cells: Implications for Dexamethasone Treatment of Tendon Injury. Journal of orthopaedic research: official publication of the Orthopaedic Research Society. 2013 Jan;31(1):105.\r\n\r\n3 Mellinger S, Neurohr GA. Evidence-based treatment options for common knee injuries in runners. Annals of translational medicine. 2019 Oct;7(Suppl 7).\r\n\r\n4 Stuhlman CR, Stowers K, Stowers L, Smith J. Current Concepts and the Role of Surgery in the Treatment of Jumper’s Knee. Orthopedics. Nov 1 2016;39(6):e1028-e1035. doi: 10.3928/01477447-20160714-06.\r\n\r\n5 Morath O, Beck M, Taeymans J, Hirschmüller A. Sclerotherapy and prolotherapy for chronic patellar tendinopathies – a promising therapy with limited available evidence, a systematic review. J Exp Orthop. 2020 Nov 9;7(1):89. doi: 10.1186/s40634-020-00303-0. PMID: 33165667.\r\n\r\n6 Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.','Patellar Tendinopathy','','inherit','closed','closed','','5500-revision-v1','','','2022-09-14 06:45:54','2022-09-14 06:45:54','',5500,'https://www.drfields.com/?p=5509',0,'revision','',0),(5510,8,'2022-09-14 06:46:12','2022-09-14 06:46:12','<img class=\"alignright wp-image-5506 size-wcsquare\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-300x300.png\" alt=\"Patellar Tendinopathy. Prp. Amer J Of Sports Med.2ndpng\" width=\"300\" height=\"300\" />\r\n\r\nHave you been diagnosed with patellar tendinopathy? If so, your condition relates to the tendon that passes from the large muscle at the front of the thigh and over the kneecap (patella) to connect to the shinbone.\r\n\r\nWhen someone has knee pain from a tendon problem or other causes, conservative self-management is usually the next step, or a doctor may recommend a brace, wrap, and/or anti-inflammatory medication. These treatments may keep down swelling down and possibly relieve some pain. However, any actual injury is not repaired with these conventional measures.\r\n\r\nAfter a few weeks of rest, once you are active again, you may still experience problems with pain and instability. Repair is needed. Fortunately, Regenerative Orthopedics is an available solution that can repair the tendons and any involved ligaments. Plus, it is non-surgical.\r\n<h2>Tendinitis vs Tendinosis</h2>\r\nBefore we go on, let’s talk about the difference between tendinitis and tendinosis:\r\n<ul>\r\n 	<li>With tendinitis, there is inflammation, pain, and swelling. The body is still trying to heal the knee</li>\r\n 	<li>When tendinosis is diagnosed, there is pain and weakness without the inflammation. At this point, the soft tissue is degenerated and the body has pretty much stopped trying to heal the tendon. And even though inflammation can be painful, inflammation is the body’s way of healing.</li>\r\n</ul>\r\n<h2>Patellar Tendinopathy Explained</h2>\r\nThe Journal of the American Academy of Orthopaedic Surgeons explains patellar tendinopathy like this: “The main problem in patellar tendinopathy is tendinosis, which is a degenerative disorder rather than an inflammatory disorder; therefore, the other popular term for this disease, tendinitis, is not appropriate.”\r\n\r\nRegenerative treatments are needed to repair and regenerate the degenerated soft tissue.\r\n<h2>Do Cortisone Injections Help?</h2>\r\nCortisone injections may help to calm down the inflammation and pain, but cortisone can make the tendon weaker. A recent study on the effect of dexamethasone (a type of cortisone injection) on the patellar tendon showed that dexamethasone had a “paradoxical” effect or changed the tendon stem cells into non-tendon tissue which weakened the tendon. Keep in mind then, that if cortisone is recommended, that while it may calm down inflammation, the injection could weaken rather than strengthen the tendon. (2)\r\n\r\nUnfortunately, with a tendon injury, the structure is already weakened. Plus, once it is weakened or damaged through injury or degenerative wear and tear, the knee becomes unstable. Stability needs to be regained, and Regenerative Orthopedics can stabilize and repair the soft tissue structures.\r\n<h2>Can Taping Help?</h2>\r\nIn the Annals of Translational Medicine (3), taping for the purpose of stabilizing the patella was discussed. “Patellar taping is commonly used in conjunction with manual and exercise therapies in the management of patellofemoral pain syndrome. Taping is predominately used to help decrease pain. Other studies show it can also help with patellar alignment and muscle activation. As patellar hypermobility has been shown as a predisposing factor for developing patellofemoral pain syndrome, taping can be indicated to promote patellar positioning and decrease pain. . . Overall, the effects of taping, are conflicting,…short-term it can be helpful with acute management of symptoms with functional activity.”\r\n\r\nThe goal of taping is to get the patella back into place, and to stabilize it temporarily. It is not reparative. Regenerative Orthopedics can stabilize the patellar, get it back in alignment, and resolve the pain. Regenerative Orthopedics is reparative.\r\n<h2>What About Surgery?</h2>\r\nSurgery may help the condition, but the downtime is very long. Researchers in the medical journal Orthopedics found that open surgery and arthroscopic techniques achieved similar satisfactory results but the average time to return to play was 5.6 months and 5 months, respectively (4). But keep in mind, there is also the possibility that surgery may not work.\r\n\r\nWhy not choose a non-surgical option that results in repair? Plus, effective Regenerative Orthopedics does not require the downtime of surgery. Movement is encouraged!\r\n<h2>Research about Regenerative Therapies?</h2>\r\nThe Journal of Experimental Orthopaedics examined the use of Prolotherapy in ten different studies for tendinopathies and found: “Among all ten studies, no serious adverse events were reported. Based on this limited set of studies, there seems to be some evidence that…Prolotherapy may be an effective treatment option to treat pain and to improve function in patients with Chronic Patellar Tendinopathy.” (5)\r\n\r\nPRP, another form of Regenerative Orthopedics, may also be warranted depending on the severity of the knee condition and for patellar tendinopathy. Do researchers recommend it? Doctors looking for a non-surgical options to treat patellar tendinopathy concluded in the American Journal of Sports Medicine: “Eccentric exercises may seem the strategy of choice in the short-term, but multiple PRP injections may offer more satisfactory results at long-term follow-up and can be therefore considered a suitable option for the treatment of patellar tendinopathy.”(6)\r\n\r\nRegenerative Orthopedics is a successful non-surgical solution for many knee pain conditions, including patellar tendinopathy. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love quickly and with improved knee function.\r\n\r\n<strong>References</strong>\r\n\r\n1 Figueroa D, Figueroa F, Calvo R. Patellar Tendinopathy: Diagnosis and Treatment. J Am Acad Orthop Surg. 2016 Dec;24(12):e184-e192.\r\n\r\n2 Zhang J, Keenan C, Wang JH. The Effects of Dexamethasone on Human Patellar Tendon Stem Cells: Implications for Dexamethasone Treatment of Tendon Injury. Journal of orthopaedic research: official publication of the Orthopaedic Research Society. 2013 Jan;31(1):105.\r\n\r\n3 Mellinger S, Neurohr GA. Evidence-based treatment options for common knee injuries in runners. Annals of translational medicine. 2019 Oct;7(Suppl 7).\r\n\r\n4 Stuhlman CR, Stowers K, Stowers L, Smith J. Current Concepts and the Role of Surgery in the Treatment of Jumper’s Knee. Orthopedics. Nov 1 2016;39(6):e1028-e1035. doi: 10.3928/01477447-20160714-06.\r\n\r\n5 Morath O, Beck M, Taeymans J, Hirschmüller A. Sclerotherapy and prolotherapy for chronic patellar tendinopathies – a promising therapy with limited available evidence, a systematic review. J Exp Orthop. 2020 Nov 9;7(1):89. doi: 10.1186/s40634-020-00303-0. PMID: 33165667.\r\n\r\n6 Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.','Patellar Tendinopathy','','inherit','closed','closed','','5500-revision-v1','','','2022-09-14 06:46:12','2022-09-14 06:46:12','',5500,'https://www.drfields.com/?p=5510',0,'revision','',0),(5511,8,'2022-09-15 03:55:38','2022-09-15 03:55:38','<img class=\"alignright size-full wp-image-642\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/running.jpg\" alt=\"Running\" width=\"200\" height=\"265\" />\r\n<h4>What Are Prolotherapy Treatments?</h4>\r\nProlotherapy treatments are a natural non-surgical method of assisting the body to heal injured or weakened joints, ligaments and tendons. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored.\r\n\r\nWhether a joint, ligament or tendon is causing you pain or limited movement, Prolotherapy might be the right choice for you. Prolotherapy can help with arthritis, <a href=\"https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/\">knee injuries</a>, tendinitis (tennis elbow), hip dysfunction, bulging discs, lumbar or cervical spine instability, bursitis, ACL Tears, <a href=\"#\">rotator cuff injuries</a> and more.\r\n<h4>How Prolotherapy Treatment Repairs Joints and Relieves Pain</h4>\r\nProlotherapy\'s modern model was founded in the 1950s by Drs. George Hackett and Gustav Hemwall. But the notion of irritating an injured area to stimulate the body to heal itself goes back to ancient Greece. Prolotherapy helps your body make new cells. And it strengthens lax or torn tendons and ligaments. Ligaments are the tough tissues which connect bones to bones and tendons are the same kind of tissue which connect muscles to bones.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\nYou might wonder why you still have pain in an injured area or why that area remains weak, even after a healing period of weeks, months or years. The answer lies in the fact that both ligaments and tendons have very poor circulation and it is this lack of blood supply which deprives them of the nutrients they need to heal properly. These weakened areas may have <strong>little or no blood flow</strong>, but they have lots of nerves. That’s why you may feel a significant amount of pain.\r\n\r\nRelaxed and weak ligaments lead to increased cartilage degeneration and finally bone-on-bone friction, which may result in arthritis type pain. Additionally, nerves around the soft tissues become stretched and irritated, also producing pain.\r\n\r\n<img class=\"alignleft size-full wp-image-644\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg\" alt=\"Couple1\" width=\"200\" height=\"298\" />\r\n<h4>What is Prolotherapy Treatment Like?</h4>\r\nThe Prolotherapy technique involves the injection of a proliferant that causes an inflammatory response which stimulates the healing process. A local anesthetic is used so there is <strong>minimal discomfort</strong> with the injections. This results in a stronger or larger tendon or ligament that can hold body structures in place more effectively. The weakened area heals, and the <strong>patient\'s pain is reduced or eliminated</strong>.\r\n\r\nProlotherapy is an excellent alternative to <a href=\"https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You\">cortisone injections</a>, which long-term studies have shown can actually weaken tissue.\r\n\r\nMost patients require about 4 to 6 Prolotherapy treatments to restore function and relieve pain, but many find improvement after only one session. The treatments are usually given at two to four week intervals.\r\n\r\nProlotherapy has been shown to be effective at eliminating the pain of such conditions as <a href=\"https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/\">sports injuries</a>, tendonitis, arthritis, sciatica, some headaches, degenerated joints, fibromyalgia, and more. And it is effective at treating many causes of chronic (and in some cases acute) back and <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">neck pain</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">shoulder</a>, <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">knee</a> and other joint pain, tendonitis, and bursitis.\r\n\r\nProlotherapy is a non-surgical treatment heartily endorsed by former U.S. Surgeon General C. Everett Koop, who himself was a prolotherapist. The late diet guru Robert Atkins, M.D., also used \"prolo\" at his New York clinic and called it a miraculous treatment.\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4 class=\"text-center\">Video: What is Prolotherapy Treatment?</h4>\r\n<div style=\"display: table; margin: 0 auto;\">[video_lightbox_youtube video_id=\"scdadG1A2Vk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg\" alt=\"Dextrose Prolotherapy Overview\"]</div>\r\n<a class=\"buttonlink\" href=\"/regenerative-techniques/prolotherapy-videos/\">View More Videos on Prolotherapy</a>\r\n<h4>Are You A Candidate for Prolotherapy Treatment?</h4>\r\nCall <a href=\"tel:+[phone_raw]\">[phone]</a> today for a phone consultation to see if Prolotherapy treatment can get you pain free and ‘back in the game’ or help you resume your normal lifestyle. You can also <a href=\"/contact/\">contact Dr. Fields\' office</a>  to set up an in-person consultation.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>','Prolotherapy Treatment Overview','','inherit','closed','closed','','382-revision-v1','','','2022-09-15 03:55:38','2022-09-15 03:55:38','',382,'https://www.drfields.com/?p=5511',0,'revision','',0),(5513,8,'2022-09-25 06:00:50','2022-09-25 06:00:50','<a href=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab.png\"><img class=\"wp-image-5514 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-500x419.png\" alt=\"Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes\" width=\"300\" height=\"251\" /></a>\r\n<h2 align=\"JUSTIFY\">Tennis Elbow</h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Tennis elbow (</span><span lang=\"it-IT\">lateral epicondylitis)</span><span lang=\"en-US\"> is a painful condition</span> <span lang=\"en-US\">involving the tendon that attaches at the outside bony prominence of the elbow or</span><span lang=\"it-IT\"> lateral epicondyle.</span><span lang=\"en-US\"> Tennis elbow is a type of overuse injury that results from repetitive motion of the wrist and arm often from overuse due to particular jobs and activities.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">An Overuse Injury</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Because of the name, you might think that tennis elbow is strictly an injury that athletes develop. But that isn’t so. Tennis elbow can occur in people whose jobs require repeat motions, such as painters, secretaries, accountants, carpenters, and guitarists. This condition is often described as an overuse injury. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Overuse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the tendons, ligaments, and other soft tissue structures of the elbow. Using poor or improper technique</span> <span lang=\"en-US\">while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Tennis Elbow Symptoms</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The pain involved in tennis elbow is usually noted where a tendon of the forearm attaches to the bony bump at the outside of the elbow. The pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult such as turning a doorknob or picking up, holding, and gripping objects.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Instability May Be Behind Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Chronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for</span><span lang=\"it-IT\"> alleviat</span><span lang=\"en-US\">ion of the pain.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When elbow ligaments are involved, they may be </span>fray<span lang=\"en-US\">ed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint.</span>  <span lang=\"en-US\">When a tendon is injured, there is often ligament involvement as well.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability,</span> <span lang=\"en-US\">t</span><span lang=\"it-IT\">he tendons</span><span lang=\"en-US\"> will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of</span> <span lang=\"en-US\">injury to the tendon.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Conventional Treatments for Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Those with tennis elbow often try to manage the pain with over-the-counter medications and/or conservative therapy to stabilize the elbow such as with a brace. Resting the elbow is another way sufferers attempt to find relief in order to continue to work or participate in activities. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Recommended conventional treatments for tennis elbow often include NSAIDs, physical therapy, bracing, and taping. Unfortunately, these treatments may only provide temporary relief but they are not reparative in nature.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">Symptoms may be suppressed with pain medications or calmed down with bracing. However, a sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. If the pain continues, and becomes chronic, the individual requires a treatments that will repair the involved tendon and ligaments.</span></p>\r\n\r\n<h2 align=\"LEFT\"><span lang=\"en-US\">What Does the Research Say Regarding Bracing and Surgery?</span></h2>\r\n<h4 align=\"JUSTIFY\"><em><strong><span lang=\"en-US\">Bracing</span></strong></em></h4>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">T</span><span lang=\"fr-FR\">he journal</span> <em><span lang=\"en-US\">Prosthetics and Orthotics International</span></em> (<span lang=\"en-US\">1) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.</span></p>\r\n\r\n<h4 align=\"JUSTIFY\"><em><strong><span lang=\"en-US\">Surgery</span></strong></em></h4>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The </span><em><span lang=\"en-US\">US National Institutes of Health Clinical Trial</span></em><span lang=\"nl-NL\"> website</span><span lang=\"en-US\"> says: </span><em>“<span lang=\"en-US\">Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </span>(<span lang=\"en-US\">2</span>)</em></p>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">There’s Another Way and It Does Not Require Surgery!</span></strong></p>\r\n\r\n<h3 align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics, Including Prolotherapy Are Effective for Tennis Elbow</span></h3>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is an injection technique that works to regenerate the degenerated tendon. The injection of simple dextrose mimics the natural healing response and </span>stimulate<span lang=\"en-US\">s healing growth factors to repair the</span><span lang=\"fr-FR\"> tissue.</span></p>\r\n\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Researchers published a study in the </span><em><span lang=\"en-US\">American Journal of Physical Medicine &amp; Rehabilitation </span></em><span lang=\"en-US\">that </span>evaluat<span lang=\"en-US\">ed Prolotherapy for tennis elbow. They concluded: </span><em>“<span lang=\"en-US\">Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group. This pilot study suggests the need for a definitive trial.”</span></em><span lang=\"en-US\">(3)</span></p>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (4)</span></p>\r\n</li>\r\n</ul>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. And, it works because it addresses the problem by repairing the injures soft tissue. Plus, it works because it reduces or eliminates the symptoms. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Fortunately, Prolotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons.</span> <span lang=\"en-US\">These therapies </span><span lang=\"pt-PT\">stabilize</span><span lang=\"en-US\"> the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow</span>.<span lang=\"en-US\"> Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">If tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.</span></p>\r\n\r\n<h3 align=\"JUSTIFY\"><span lang=\"en-US\">References</span></h3>\r\n<ol>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Kroslak M, Murrell GAC. <span lang=\"en-US\">Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. <span lang=\"en-US\">Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow.</span> J Korean Acad Rehabil Med. 2002;26:764–8.</p>\r\n</li>\r\n</ol>','Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes','','publish','closed','open','','tennis-elbow-its-not-strictly-an-injury-afflicting-athletes','','','2022-10-05 21:16:17','2022-10-05 21:16:17','',0,'https://www.drfields.com/?p=5513',0,'post','',0),(5514,8,'2022-09-26 12:07:06','2022-09-26 12:07:06','Tennis Elbow. Prp. Amer J Of Phys Med & Rehab','Tennis Elbow. Prp. Amer J Of Phys Med & Rehab','Tennis Elbow. Prp. Amer J Of Phys Med & Rehab','inherit','closed','closed','','tennis-elbow-prp-amer-j-of-phys-med-rehab','','','2022-09-26 12:07:06','2022-09-26 12:07:06','',5513,'https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab.png',0,'attachment','image/png',0),(5515,8,'2022-09-26 12:09:50','2022-09-26 12:09:50','[caption id=\"attachment_5514\" align=\"alignright\" width=\"500\"]<a href=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab.png\"><img class=\"size-medium wp-image-5514\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-500x419.png\" alt=\"Tennis Elbow. Prp. Amer J Of Phys Med &amp; Rehab\" width=\"500\" height=\"419\" /></a> Tennis Elbow. Prp. Amer J Of Phys Med &amp; Rehab[/caption]\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Tennis elbow (</span><span lang=\"it-IT\">lateral epicondylitis)</span><span lang=\"en-US\"> is a painful condition</span> <span lang=\"en-US\">involving the tendon that attaches at the outside bony prominence of the elbow or</span><span lang=\"it-IT\"> lateral epicondyle.</span><span lang=\"en-US\"> Tennis elbow is a type of overuse injury that results from repetitive motion of the wrist and arm often from overuse due to particular jobs and activities.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Tennis Elbow Is Often Described As An Overuse Injury</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Because of the name, you might think that tennis elbow is strictly an injury that athletes develop. But that isn’t so. Tennis elbow can occur in people whose jobs require repeat motions, such as painters, secretaries, accountants, carpenters, and guitarists. This condition is often described as an overuse injury. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Overuse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the tendons, ligaments, and other soft tissue structures of the elbow. Using poor or improper technique</span> <span lang=\"en-US\">while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Tennis Elbow Symptoms</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The pain involved in tennis elbow is usually noted where a tendon of the forearm attaches to the bony bump at the outside of the elbow. The pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult such as turning a doorknob or picking up, holding, and gripping objects.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Instability May Be Behind Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Chronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for</span><span lang=\"it-IT\"> alleviat</span><span lang=\"en-US\">ion of the pain.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When elbow ligaments are involved, they may be </span>fray<span lang=\"en-US\">ed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint.</span>  <span lang=\"en-US\">When a tendon is injured, there is often ligament involvement as well.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability,</span> <span lang=\"en-US\">t</span><span lang=\"it-IT\">he tendons</span><span lang=\"en-US\"> will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of</span> <span lang=\"en-US\">injury to the tendon.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Conventional Treatments for Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Those with tennis elbow often try to manage the pain with over-the-counter medications and/or conservative therapy to stabilize the elbow such as with a brace. Resting the elbow is another way sufferers attempt to find relief in order to continue to work or participate in activities. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Recommended conventional treatments for tennis elbow often include NSAIDs, physical therapy, bracing, and taping. These treatments may provide temporary relief but they are not reparative in nature.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">Symptoms may be suppressed with pain medications or calmed down with bracing. However, a sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. If the pain continues, and becomes chronic, the individual requires a treatments that will repair the involved tendon and ligaments.</span></p>\r\n\r\n<h2 align=\"LEFT\"><span lang=\"en-US\">What Does the Research Say Regarding Bracing and Surgery?</span></h2>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">Bracing</span></strong></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">T</span><span lang=\"fr-FR\">he journal</span> <span lang=\"en-US\">Prosthetics and Orthotics International</span> (<span lang=\"en-US\">1) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.</span></p>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">Surgery</span></strong></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The </span><span lang=\"en-US\">US National Institutes of Health Clinical Trial</span><span lang=\"nl-NL\"> website</span><span lang=\"en-US\"> says: </span>“<span lang=\"en-US\">Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </span>(<span lang=\"en-US\">2</span>)</p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">There’s Another Way and It Does Not Require Surgery!</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics, Including Prolotherapy Are Effective for Tennis Elbow</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is an injection technique that works to regenerate the degenerated tendon. The injection of simple dextrose mimics the natural healing response and </span>stimulate<span lang=\"en-US\">s healing growth factors to repair the</span><span lang=\"fr-FR\"> tissue.</span></p>\r\n\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Researchers published a study in the </span><span lang=\"en-US\">American Journal of Physical Medicine &amp; Rehabilitation </span><span lang=\"en-US\">that </span>evaluat<span lang=\"en-US\">ed Prolotherapy for tennis elbow. They concluded: </span>“<span lang=\"en-US\">Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group. This pilot study suggests the need for a definitive trial.”</span><span lang=\"en-US\">(3)</span></p>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (4)</span></p>\r\n</li>\r\n</ul>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. It works because it addresses the problem by repairing the injures soft tissue. And it works because it reduces or eliminates the symptoms. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons.</span> <span lang=\"en-US\">These therapies </span><span lang=\"pt-PT\">stabilize</span><span lang=\"en-US\"> the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow</span>.<span lang=\"en-US\"> Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">If tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">References</span></p>\r\n\r\n<ol>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Kroslak M, Murrell GAC. <span lang=\"en-US\">Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. <span lang=\"en-US\">Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow.</span> J Korean Acad Rehabil Med. 2002;26:764–8.</p>\r\n</li>\r\n</ol>','Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes','','inherit','closed','closed','','5513-revision-v1','','','2022-09-26 12:09:50','2022-09-26 12:09:50','',5513,'https://www.drfields.com/?p=5515',0,'revision','',0),(5516,8,'2022-09-26 12:14:52','2022-09-26 12:14:52','<a href=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab.png\"><img class=\"wp-image-5514\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-500x419.png\" alt=\"Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes\" width=\"300\" height=\"251\" /></a>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Tennis elbow (</span><span lang=\"it-IT\">lateral epicondylitis)</span><span lang=\"en-US\"> is a painful condition</span> <span lang=\"en-US\">involving the tendon that attaches at the outside bony prominence of the elbow or</span><span lang=\"it-IT\"> lateral epicondyle.</span><span lang=\"en-US\"> Tennis elbow is a type of overuse injury that results from repetitive motion of the wrist and arm often from overuse due to particular jobs and activities.</span></p>\n\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Tennis Elbow Is Often Described As An Overuse Injury</span></h2>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Because of the name, you might think that tennis elbow is strictly an injury that athletes develop. But that isn’t so. Tennis elbow can occur in people whose jobs require repeat motions, such as painters, secretaries, accountants, carpenters, and guitarists. This condition is often described as an overuse injury. </span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Overuse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the tendons, ligaments, and other soft tissue structures of the elbow. Using poor or improper technique</span> <span lang=\"en-US\">while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.</span></p>\n\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Tennis Elbow Symptoms</span></h2>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The pain involved in tennis elbow is usually noted where a tendon of the forearm attaches to the bony bump at the outside of the elbow. The pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult such as turning a doorknob or picking up, holding, and gripping objects.</span></p>\n\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Instability May Be Behind Tennis Elbow</span></h2>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Chronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for</span><span lang=\"it-IT\"> alleviat</span><span lang=\"en-US\">ion of the pain.</span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When elbow ligaments are involved, they may be </span>fray<span lang=\"en-US\">ed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint.</span>  <span lang=\"en-US\">When a tendon is injured, there is often ligament involvement as well.</span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability,</span> <span lang=\"en-US\">t</span><span lang=\"it-IT\">he tendons</span><span lang=\"en-US\"> will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of</span> <span lang=\"en-US\">injury to the tendon.</span></p>\n\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Conventional Treatments for Tennis Elbow</span></h2>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Those with tennis elbow often try to manage the pain with over-the-counter medications and/or conservative therapy to stabilize the elbow such as with a brace. Resting the elbow is another way sufferers attempt to find relief in order to continue to work or participate in activities. </span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Recommended conventional treatments for tennis elbow often include NSAIDs, physical therapy, bracing, and taping. These treatments may provide temporary relief but they are not reparative in nature.</span></p>\n<p align=\"LEFT\"><span lang=\"en-US\">Symptoms may be suppressed with pain medications or calmed down with bracing. However, a sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. If the pain continues, and becomes chronic, the individual requires a treatments that will repair the involved tendon and ligaments.</span></p>\n\n<h2 align=\"LEFT\"><span lang=\"en-US\">What Does the Research Say Regarding Bracing and Surgery?</span></h2>\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">Bracing</span></strong></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">T</span><span lang=\"fr-FR\">he journal</span> <span lang=\"en-US\">Prosthetics and Orthotics International</span> (<span lang=\"en-US\">1) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.</span></p>\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">Surgery</span></strong></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The </span><span lang=\"en-US\">US National Institutes of Health Clinical Trial</span><span lang=\"nl-NL\"> website</span><span lang=\"en-US\"> says: </span>“<span lang=\"en-US\">Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </span>(<span lang=\"en-US\">2</span>)</p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">There’s Another Way and It Does Not Require Surgery!</span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics, Including Prolotherapy Are Effective for Tennis Elbow</span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow. </span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is an injection technique that works to regenerate the degenerated tendon. The injection of simple dextrose mimics the natural healing response and </span>stimulate<span lang=\"en-US\">s healing growth factors to repair the</span><span lang=\"fr-FR\"> tissue.</span></p>\n\n<ul>\n 	<li>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Researchers published a study in the </span><span lang=\"en-US\">American Journal of Physical Medicine &amp; Rehabilitation </span><span lang=\"en-US\">that </span>evaluat<span lang=\"en-US\">ed Prolotherapy for tennis elbow. They concluded: </span>“<span lang=\"en-US\">Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group. This pilot study suggests the need for a definitive trial.”</span><span lang=\"en-US\">(3)</span></p>\n</li>\n</ul>\n<ul>\n 	<li>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (4)</span></p>\n</li>\n</ul>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. It works because it addresses the problem by repairing the injures soft tissue. And it works because it reduces or eliminates the symptoms. </span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons.</span> <span lang=\"en-US\">These therapies </span><span lang=\"pt-PT\">stabilize</span><span lang=\"en-US\"> the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow</span>.<span lang=\"en-US\"> Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.</span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">If tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.</span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">References</span></p>\n\n<ol>\n 	<li>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.</span></p>\n</li>\n 	<li>\n<p align=\"JUSTIFY\">Kroslak M, Murrell GAC. <span lang=\"en-US\">Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.</span></p>\n</li>\n 	<li>\n<p align=\"JUSTIFY\">Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. <span lang=\"en-US\">Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.</span></p>\n</li>\n 	<li>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow.</span> J Korean Acad Rehabil Med. 2002;26:764–8.</p>\n</li>\n</ol>','Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes','','inherit','closed','closed','','5513-autosave-v1','','','2022-09-26 12:14:52','2022-09-26 12:14:52','',5513,'https://www.drfields.com/?p=5516',0,'revision','',0),(5517,8,'2022-09-26 12:15:13','2022-09-26 12:15:13','<a href=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab.png\"><img class=\"wp-image-5514\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-500x419.png\" alt=\"Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes\" width=\"300\" height=\"251\" /></a>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Tennis elbow (</span><span lang=\"it-IT\">lateral epicondylitis)</span><span lang=\"en-US\"> is a painful condition</span> <span lang=\"en-US\">involving the tendon that attaches at the outside bony prominence of the elbow or</span><span lang=\"it-IT\"> lateral epicondyle.</span><span lang=\"en-US\"> Tennis elbow is a type of overuse injury that results from repetitive motion of the wrist and arm often from overuse due to particular jobs and activities.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Tennis Elbow Is Often Described As An Overuse Injury</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Because of the name, you might think that tennis elbow is strictly an injury that athletes develop. But that isn’t so. Tennis elbow can occur in people whose jobs require repeat motions, such as painters, secretaries, accountants, carpenters, and guitarists. This condition is often described as an overuse injury. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Overuse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the tendons, ligaments, and other soft tissue structures of the elbow. Using poor or improper technique</span> <span lang=\"en-US\">while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Tennis Elbow Symptoms</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The pain involved in tennis elbow is usually noted where a tendon of the forearm attaches to the bony bump at the outside of the elbow. The pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult such as turning a doorknob or picking up, holding, and gripping objects.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Instability May Be Behind Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Chronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for</span><span lang=\"it-IT\"> alleviat</span><span lang=\"en-US\">ion of the pain.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When elbow ligaments are involved, they may be </span>fray<span lang=\"en-US\">ed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint.</span>  <span lang=\"en-US\">When a tendon is injured, there is often ligament involvement as well.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability,</span> <span lang=\"en-US\">t</span><span lang=\"it-IT\">he tendons</span><span lang=\"en-US\"> will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of</span> <span lang=\"en-US\">injury to the tendon.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Conventional Treatments for Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Those with tennis elbow often try to manage the pain with over-the-counter medications and/or conservative therapy to stabilize the elbow such as with a brace. Resting the elbow is another way sufferers attempt to find relief in order to continue to work or participate in activities. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Recommended conventional treatments for tennis elbow often include NSAIDs, physical therapy, bracing, and taping. These treatments may provide temporary relief but they are not reparative in nature.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">Symptoms may be suppressed with pain medications or calmed down with bracing. However, a sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. If the pain continues, and becomes chronic, the individual requires a treatments that will repair the involved tendon and ligaments.</span></p>\r\n\r\n<h2 align=\"LEFT\"><span lang=\"en-US\">What Does the Research Say Regarding Bracing and Surgery?</span></h2>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">Bracing</span></strong></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">T</span><span lang=\"fr-FR\">he journal</span> <span lang=\"en-US\">Prosthetics and Orthotics International</span> (<span lang=\"en-US\">1) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.</span></p>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">Surgery</span></strong></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The </span><span lang=\"en-US\">US National Institutes of Health Clinical Trial</span><span lang=\"nl-NL\"> website</span><span lang=\"en-US\"> says: </span>“<span lang=\"en-US\">Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </span>(<span lang=\"en-US\">2</span>)</p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">There’s Another Way and It Does Not Require Surgery!</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics, Including Prolotherapy Are Effective for Tennis Elbow</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is an injection technique that works to regenerate the degenerated tendon. The injection of simple dextrose mimics the natural healing response and </span>stimulate<span lang=\"en-US\">s healing growth factors to repair the</span><span lang=\"fr-FR\"> tissue.</span></p>\r\n\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Researchers published a study in the </span><span lang=\"en-US\">American Journal of Physical Medicine &amp; Rehabilitation </span><span lang=\"en-US\">that </span>evaluat<span lang=\"en-US\">ed Prolotherapy for tennis elbow. They concluded: </span>“<span lang=\"en-US\">Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group. This pilot study suggests the need for a definitive trial.”</span><span lang=\"en-US\">(3)</span></p>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (4)</span></p>\r\n</li>\r\n</ul>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. It works because it addresses the problem by repairing the injures soft tissue. And it works because it reduces or eliminates the symptoms. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons.</span> <span lang=\"en-US\">These therapies </span><span lang=\"pt-PT\">stabilize</span><span lang=\"en-US\"> the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow</span>.<span lang=\"en-US\"> Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">If tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">References</span></p>\r\n\r\n<ol>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Kroslak M, Murrell GAC. <span lang=\"en-US\">Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. <span lang=\"en-US\">Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow.</span> J Korean Acad Rehabil Med. 2002;26:764–8.</p>\r\n</li>\r\n</ol>','Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes','','inherit','closed','closed','','5513-revision-v1','','','2022-09-26 12:15:13','2022-09-26 12:15:13','',5513,'https://www.drfields.com/?p=5517',0,'revision','',0),(5518,8,'2022-09-26 12:15:41','2022-09-26 12:15:41','<a href=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab.png\"><img class=\"wp-image-5514 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-500x419.png\" alt=\"Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes\" width=\"300\" height=\"251\" /></a>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Tennis elbow (</span><span lang=\"it-IT\">lateral epicondylitis)</span><span lang=\"en-US\"> is a painful condition</span> <span lang=\"en-US\">involving the tendon that attaches at the outside bony prominence of the elbow or</span><span lang=\"it-IT\"> lateral epicondyle.</span><span lang=\"en-US\"> Tennis elbow is a type of overuse injury that results from repetitive motion of the wrist and arm often from overuse due to particular jobs and activities.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Tennis Elbow Is Often Described As An Overuse Injury</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Because of the name, you might think that tennis elbow is strictly an injury that athletes develop. But that isn’t so. Tennis elbow can occur in people whose jobs require repeat motions, such as painters, secretaries, accountants, carpenters, and guitarists. This condition is often described as an overuse injury. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Overuse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the tendons, ligaments, and other soft tissue structures of the elbow. Using poor or improper technique</span> <span lang=\"en-US\">while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Tennis Elbow Symptoms</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The pain involved in tennis elbow is usually noted where a tendon of the forearm attaches to the bony bump at the outside of the elbow. The pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult such as turning a doorknob or picking up, holding, and gripping objects.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Instability May Be Behind Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Chronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for</span><span lang=\"it-IT\"> alleviat</span><span lang=\"en-US\">ion of the pain.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When elbow ligaments are involved, they may be </span>fray<span lang=\"en-US\">ed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint.</span>  <span lang=\"en-US\">When a tendon is injured, there is often ligament involvement as well.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability,</span> <span lang=\"en-US\">t</span><span lang=\"it-IT\">he tendons</span><span lang=\"en-US\"> will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of</span> <span lang=\"en-US\">injury to the tendon.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Conventional Treatments for Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Those with tennis elbow often try to manage the pain with over-the-counter medications and/or conservative therapy to stabilize the elbow such as with a brace. Resting the elbow is another way sufferers attempt to find relief in order to continue to work or participate in activities. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Recommended conventional treatments for tennis elbow often include NSAIDs, physical therapy, bracing, and taping. These treatments may provide temporary relief but they are not reparative in nature.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">Symptoms may be suppressed with pain medications or calmed down with bracing. However, a sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. If the pain continues, and becomes chronic, the individual requires a treatments that will repair the involved tendon and ligaments.</span></p>\r\n\r\n<h2 align=\"LEFT\"><span lang=\"en-US\">What Does the Research Say Regarding Bracing and Surgery?</span></h2>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">Bracing</span></strong></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">T</span><span lang=\"fr-FR\">he journal</span> <span lang=\"en-US\">Prosthetics and Orthotics International</span> (<span lang=\"en-US\">1) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.</span></p>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">Surgery</span></strong></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The </span><span lang=\"en-US\">US National Institutes of Health Clinical Trial</span><span lang=\"nl-NL\"> website</span><span lang=\"en-US\"> says: </span>“<span lang=\"en-US\">Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </span>(<span lang=\"en-US\">2</span>)</p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">There’s Another Way and It Does Not Require Surgery!</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics, Including Prolotherapy Are Effective for Tennis Elbow</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is an injection technique that works to regenerate the degenerated tendon. The injection of simple dextrose mimics the natural healing response and </span>stimulate<span lang=\"en-US\">s healing growth factors to repair the</span><span lang=\"fr-FR\"> tissue.</span></p>\r\n\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Researchers published a study in the </span><span lang=\"en-US\">American Journal of Physical Medicine &amp; Rehabilitation </span><span lang=\"en-US\">that </span>evaluat<span lang=\"en-US\">ed Prolotherapy for tennis elbow. They concluded: </span>“<span lang=\"en-US\">Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group. This pilot study suggests the need for a definitive trial.”</span><span lang=\"en-US\">(3)</span></p>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (4)</span></p>\r\n</li>\r\n</ul>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. It works because it addresses the problem by repairing the injures soft tissue. And it works because it reduces or eliminates the symptoms. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons.</span> <span lang=\"en-US\">These therapies </span><span lang=\"pt-PT\">stabilize</span><span lang=\"en-US\"> the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow</span>.<span lang=\"en-US\"> Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">If tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">References</span></p>\r\n\r\n<ol>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Kroslak M, Murrell GAC. <span lang=\"en-US\">Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. <span lang=\"en-US\">Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow.</span> J Korean Acad Rehabil Med. 2002;26:764–8.</p>\r\n</li>\r\n</ol>','Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes','','inherit','closed','closed','','5513-revision-v1','','','2022-09-26 12:15:41','2022-09-26 12:15:41','',5513,'https://www.drfields.com/?p=5518',0,'revision','',0),(5519,8,'2022-09-26 12:18:06','2022-09-26 12:18:06','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankle/\">Sprained Ankle?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Stubborn, Persistent Neck Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-partial-rotator-cuff-tear-repair/\">Non-surgical Partial Rotator Cuff Tear Repair</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/are-cortisone-shots-a-good-option/\">Are Cortisone Shots a Good Option?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/\">Try Regenerative Treatments for Your Hip Pain or Injury</a></li>\r\n 	<li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Treating Knee Pain and Injuries with Regenerative Orthopedics\" href=\"/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics/\">Treating Knee Pain and Injuries with Regenerative Orthopedics</a></li>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-09-26 12:18:06','2022-09-26 12:18:06','',2109,'https://www.drfields.com/?p=5519',0,'revision','',0),(5520,8,'2022-09-28 06:08:26','2022-09-28 06:08:26','<img class=\"alignleft size-full wp-image-288\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h6>Fees</h6>\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time.\r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img class=\"alignright\" style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" width=\"275\" /></a>\r\nInitial Regenerative Orthopedic Consultation: <strong>$550</strong>\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (fingers, toes, TMJ): <strong>$500</strong>\r\nMedium Joint (knee, hip, shoulder): <strong>$600</strong>\r\nLarge Joint (Neck, Mid Back, or Low Back): <strong>$900</strong>\r\nPRP (in addition to the above joint charges): <strong>$550</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n<h6>PRP Charges</h6>\r\nPRP Small joint: <strong>$1100</strong>\r\nPRP Medium joint: <strong>$1300</strong>\r\nPRP Large joint: <strong>$1600</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Questions + Costs','','inherit','closed','closed','','2536-revision-v1','','','2022-09-28 06:08:26','2022-09-28 06:08:26','',2536,'https://www.drfields.com/?p=5520',0,'revision','',0),(5521,8,'2022-09-28 06:09:37','2022-09-28 06:09:37','<img class=\"alignleft size-full wp-image-288\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h6>Fees</h6>\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time.\r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img class=\"alignright\" style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" width=\"275\" /></a>\r\nInitial Regenerative Orthopedic Consultation: <strong>$550</strong>\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (fingers, toes, TMJ): <strong>$500</strong>\r\nMedium Joint (knee, hip, shoulder): <strong>$600</strong>\r\nLarge Joint (Neck, Mid Back, or Low Back): <strong>$900</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n\r\n<h6>PRP Charges</h6>\r\nPRP Small joint: <strong>$1100</strong>\r\nPRP Medium joint: <strong>$1300</strong>\r\nPRP Large joint: <strong>$1600</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Questions + Costs','','inherit','closed','closed','','2536-revision-v1','','','2022-09-28 06:09:37','2022-09-28 06:09:37','',2536,'https://www.drfields.com/?p=5521',0,'revision','',0),(5522,8,'2022-10-01 06:00:06','2022-10-01 06:00:06','<h2>Stem Cells Are Gaining in Popularity</h2>\r\n[caption id=\"attachment_5533\" align=\"alignright\" width=\"455\"]<img class=\"wp-image-5533\" src=\"https://www.drfields.com/wp-content/uploads/2022/10/Arthritis.-Jnl-Clinical-OrthoTrauma-500x419.png\" alt=\"Arthritis. Jnl Clinical Ortho&amp;trauma\" width=\"455\" height=\"381\" /> <strong>                             Stem Cells Are Gaining in Popularity</strong>[/caption]\r\n\r\nThe limitations of traditional treatments for arthritis are causing many to seek alternatives for relieving their arthritis pain and symptoms. Even current surgical procedures for arthritis come up short since they cannot reverse the damage arthritis causes to articular cartilage. As a result, stem cell treatments and other regenerative therapies are gaining popularity because they result in the repair and regeneration of the joints.\r\n<h2>What Do You Mean Conventional Treatments Have Limitations?</h2>\r\nConventional treatments for arthritis only manage the problem. These treatments “chase the symptoms.” For example, NSAIDs and opioids may be given for the pain of arthritis. And sure, they are helpful to get relief from the pain, but these medications do not repair the joint. As time goes on, the pain and symptoms will continue because the joint is still not repaired, and surgery will likely be recommended. But surgery comes with complications and long recovery times! In an effort to avoid this scenario, people living with arthritis are seeking stem cell treatments as an alternative to surgery.\r\n<h2>Stem Cells Are Gaining Popularity Because They Regenerate Cartilage</h2>\r\nStem cell treatments have great potential due to their ability to regenerate damaged cartilage (1). Stem cell-based therapy is gaining popularity as an alternative to joint replacement, especially since it has reparative effects. However, due to the ethical concerns in using embryonic cells, the current trend is more focused on adult stem cells for cartilage regeneration.\r\n<h2>Types of Adult Stem Cells</h2>\r\nThere are various types of stem cells being utilized which include mesenchymal stem cells (MSCs), bone marrow-derived stem cells (BMSCs), and adipose-derived stem cells (ADSCs) for the regeneration of cartilage. Again, these types of adult stem cells may be chosen for cartilage regeneration.\r\n<h2>Mesenchymal Stem Cells (MSCs) from Bone Marrow</h2>\r\nMSCs derived from bone marrow (BMSCs) can repair tissues such as tendons, bony defects, and cartilage (2). Plus, when placed in the injured and degenerated areas, such as in knee and hip arthritis cases, these cells can assist in cartilage regeneration of the joint and alleviate the pain experienced by arthritis patients (3).\r\n\r\n<em>“The versatility of mesenchymal stem cells (MSCs) as a treatment modality has landed it another repair target: osteoarthritis, a crippling cartilage disease that frequently afflicts the aged population. Through many studies, this newly discovered method has been shown to significantly alleviate the pain experienced by osteoarthritic patients.”(3)</em>\r\n\r\nOnce aspirated (drawn out), mesenchymal stem cells (MSCs) are centrifuged to have a more concentrated number of stem cells to boost recovery and effectiveness (3). In addition, since these stem cells are taken directly from the person who will receive them (autologous), the chance of cross-contamination is reduced, which increases the efficacy of the therapy.\r\n\r\nStudies have shown that mesenchymal stem cells (MSCs) from bone marrow (BMSCs) can successfully regenerate injured cartilage, repair chondral defects, and improve arthritis symptoms in humans.\r\n\r\n<em>“The capability of the mesenchymal stem cells to repair and regenerate cartilage has been widely investigated. . .Several studies have demonstrated promising results in the clinical application for repair of chondral defects as an adjuvant (during surgery in some cases) or independent procedure. Intra-articular (mesenchymal stem cells (MSCs)  provide improvements in pain and function in knee osteoarthritis at short-term follow-up in many studies.”(4)</em>\r\n<h2>Adipose-Derived Stem Cells (ADSCs)</h2>\r\nAdipose-derived stem cells (ADSCs) are a promising source of stem cells because this fat tissue is abundant. Plus, it is relatively easy to harvest and has minimal side effects. Studies also back the use of ADSCs for cartilage regeneration in treating arthritis.\r\n\r\n<em>“Among the different kinds of MSCs available, adipose-derived mesenchymal stem cells (ADSCs) are emerging due to their abundancy and easiness to harvest.”(5)</em>\r\n\r\n<em>“Adipose stem cells are an attractive and abundant stem cell source with therapeutic applicability in diverse fields for the repair and regeneration of acute and chronically damaged tissues.” (5)</em>\r\n<h2>Platelet-Rich Plasma (PRP) Used Along with Stem Cells</h2>\r\nPRP, or platelet-rich plasma, taken from your blood, is a regenerative therapy that helps to boost cartilage regeneration due to its many growth factors. These growth factors promote the growth and differentiation of the stem cells and encourage their adherence to cartilage lesions.\r\n<h2>Stem Cells Are Gaining Popularity and Are Available at OrthoRegen®</h2>\r\nAt OrthoRegen®, we have been using stem cells to successfully treat arthritic joints for many years. The treatment is well-established at our clinic. This non-surgical injection procedure is an excellent alternative to conventional therapies and surgeries. In addition, the self-renewing, reparative, and regenerative abilities of stem cell treatments have rendered them an attractive option for the treatment of arthritis.\r\n\r\nAdditionally, at OrthoRegen®, we use the Gold Standard in Stem Cell Therapy. That means we use four different types of regenerative therapies. Many other clinics only use 1 or 2. We will use MSCs derived from bone marrow (BMSCs), adipose-derived stem cells (ADSCs) taken from fat, PRP, or platelet-rich plasma drawn from your blood, and then Dextrose Prolotherapy. All of these together give you the best chance at repair and regeneration to help you return to all the activities you enjoy.\r\n\r\nStem cell treatments are gaining popularity because they work! Call us at 310-453-1234 and find out if you are a candidate for this treatment.\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Shapiro SA, Kazmerchak SE, Heckman MG, Zubair AC, O’Connor MI. A Prospective, Single-Blind, Placebo-Controlled Trial of Bone Marrow Aspirate Concentrate for Knee Osteoarthritis. Am J Sports Med. 2017 Jan;45(1):82-90.</li>\r\n 	<li>Gianakos AL, Sun L, Patel JN, Adams DM, Liporace FA. Clinical application of concentrated bone marrow aspirate in orthopaedics: A systematic review. World journal of orthopedics. 2017 Jun 18;8(6):491.</li>\r\n 	<li>Afizah H, Hui JH. Mesenchymal stem cell therapy for osteoarthritis. Journal of clinical orthopaedics and trauma. 2016 Sep 30;7(3):177-82</li>\r\n 	<li>Debnath UK. Mesenchymal Stem Cell Therapy in Chondral Defects of Knee: Current Concept Review. Indian Journal of Orthopaedics. 2020 Jul 27:1-9.</li>\r\n 	<li>Lindroos B, Suuronen R, Miettinen S. The potential of adipose stem cells in regenerative medicine. Stem Cell Rev Rep. 2011 Jun;7(2):269-91. doi: 10.1007/s12015-010-9193-7. PMID: 20853072.</li>\r\n</ol>','Stem Cells Are Gaining in Popularity','','publish','closed','open','','stem-cells-are-gaining-in-popularity','','','2022-10-05 21:48:27','2022-10-05 21:48:27','',0,'https://www.drfields.com/?p=5522',0,'post','',0),(5523,8,'2022-10-01 04:11:39','2022-10-01 04:11:39','The limitations of traditional treatments for arthritis are causing many to seek alternatives for relief of their arthritis pain and symptoms. Even current surgical procedures for arthritis come up short since they are unable to reverse the damage arthritis causes on articular cartilage. Stem cell treatments, as well as other regenerative therapies, are gaining popularity because they result in repair and regeneration of the joints.\r\n<h2>What Do You Mean Conventional Treatments Have Limitations?</h2>\r\nConventional treatments for arthritis really only manage the problem. These treatments “chase the symptoms.” For example, NSAIDs and opioids may be given for the pain of arthritis. And sure, it’s helpful to get relief from the pain, but these medications do not repair the joint. As time goes on, the pain and symptoms will continue because the joint is still not repaired, and surgery will likely be recommended. But surgery comes with complications and long recovery times! In an effort to avoid this scenario, arthritis sufferers are seeking stem cell treatments as an alternative to surgery.\r\n<h2>Stem Cell Treatments Regenerate Cartilage</h2>\r\nStem cell treatments have great potential due to their ability to regenerate damaged cartilage (1). Stem cell based therapy is gaining popularity as an alternative to joint replacement, especially since it has reparative effects. Due to the ethical concerns in the utilization of embryonic cells the current trend is more focused on adult stem cells for cartilage regeneration.\r\n<h2>Types of Adult Stem Cells</h2>\r\nThere are various types of stem cells being utilized which include, mesenchymal stem cells (MSCs), bone marrow-derived stem cells (BMSCs), and adipose-derived stem cells (ADSCs) for the regeneration of cartilage. Again, these are all types of adult stem cells that may be chosen for cartilage regeneration.\r\n<h2>Mesenchymal Stem Cells (MSCs) from Bone Marrow</h2>\r\nMSCs derived from bone marrow (BMSCs) are able to repair tissues such as tendons, bony defects, and cartilage (2). Plus, when placed at the injured and/or degenerated areas, such as in cases of knee and hip arthritis, these cells are able to assist in cartilage regeneration of the joint and alleviate the pain experienced by arthritis patients (3).\r\n\r\n“The versatility of mesenchymal stem cells (MSCs) as a treatment modality has landed it another repair target: osteoarthritis, a crippling cartilage disease that frequently afflicts the aged population. Through many studies, this newly discovered method has been shown to significantly alleviate the pain experienced by osteoarthritic patients.”(3)\r\n\r\nOnce aspirated (drawn out), mesenchymal stem cells (MSCs) are centrifuged in order to have a more concentrated number of stem cells to boost recovery and effectiveness (3). Since these stem cells are taken directly from the person who will receive them (autologous), the chance of cross-contamination is reduced which increases the efficacy of the therapy.\r\n\r\nStudies have shown that mesenchymal stem cells (MSCs) from bone marrow (BMSCs) can successfully regenerate injured cartilage, repair chondral defects, and improve arthritis symptoms in humans.\r\n\r\n“The capability of the mesenchymal stem cells to repair and regenerate cartilage has been widely investigated. . .Several studies have demonstrated promising results in the clinical application for repair of chondral defects as an adjuvant (during surgery in some cases) or independent procedure. Intra-articular (mesenchymal stem cells (MSCs)  provide improvements in pain and function in knee osteoarthritis at short-term follow-up in many studies.”(4)\r\n<h2>Adipose-Derived Stem Cells (ADSCs)</h2>\r\nAdipose-derived stem cells (ADSCs) are a promising source of stem cells because there is an abundance of this fat tissue. Plus, it is relatively easy to harvest and has minimal side effects. Studies also back the use of ADSCs for cartilage regeneration in the treatment of arthritis.\r\n\r\n“Among the different kinds of MSCs available, adipose-derived mesenchymal stem cells (ADSCs) are emerging due to their abundancy and easiness to harvest.”(5)\r\n\r\n“Adipose stem cells are an attractive and abundant stem cell source with therapeutic applicability in diverse fields for the repair and regeneration of acute and chronically damaged tissues.” (5)\r\n<h2>Platelet Rich Plasma (PRP) Used Along with Stem Cells</h2>\r\nPRP or platelet-rich plasma, which is taken from your own blood, is a regenerative therapy that helps to boost cartilage regeneration due to its many growth factors. These growth factors promote the growth and differentiation of the stem cells as well as boost their adherence to the cartilage lesions.\r\n<h2>Stem Cell Treatments at OrthoRegen®</h2>\r\nAt OrthoRegen®, we have been successfully using stem cells to treat arthritic joints for many years. The treatment is well-established at our clinic. This non-surgical injection procedure is an excellent alternative to conventional treatments and surgeries. The self-renewing, reparative, and regenerative abilities of stem cell treatments have rendered them an attractive option for the treatment of arthritis.\r\n\r\nAdditionally, at OrthoRegen®, we use the Gold Standard in Stem Cell Therapy. That means we use 4 different types of regenerative therapies. Many other clinics only use 1 or 2. We will use MSCs derived from bone marrow (BMSCs), adipose-derived stem cells (ADSCs) taken from fat, PRP or platelet-rich plasma drawn from your own blood, and then Dextrose Prolotherapy. All of these together give you the best chance at repair and regeneration in order to help you return to all of the activities you want to be involved in.\r\n\r\nStem cell treatments are gaining popularity because they work! Call us at 310-453-1234 and find out if you are a candidate for this treatment.\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Shapiro SA, Kazmerchak SE, Heckman MG, Zubair AC, O’Connor MI. A Prospective, Single-Blind, Placebo-Controlled Trial of Bone Marrow Aspirate Concentrate for Knee Osteoarthritis. Am J Sports Med. 2017 Jan;45(1):82-90.</li>\r\n 	<li>Gianakos AL, Sun L, Patel JN, Adams DM, Liporace FA. Clinical application of concentrated bone marrow aspirate in orthopaedics: A systematic review. World journal of orthopedics. 2017 Jun 18;8(6):491.</li>\r\n 	<li>Afizah H, Hui JH. Mesenchymal stem cell therapy for osteoarthritis. Journal of clinical orthopaedics and trauma. 2016 Sep 30;7(3):177-82</li>\r\n 	<li>Debnath UK. Mesenchymal Stem Cell Therapy in Chondral Defects of Knee: Current Concept Review. Indian Journal of Orthopaedics. 2020 Jul 27:1-9.</li>\r\n 	<li>Lindroos B, Suuronen R, Miettinen S. The potential of adipose stem cells in regenerative medicine. Stem Cell Rev Rep. 2011 Jun;7(2):269-91. doi: 10.1007/s12015-010-9193-7. PMID: 20853072.</li>\r\n</ol>','Stem Cells Are Gaining in Popularity','','inherit','closed','closed','','5522-revision-v1','','','2022-10-01 04:11:39','2022-10-01 04:11:39','',5522,'https://www.drfields.com/?p=5523',0,'revision','',0),(5524,8,'2022-10-01 04:13:44','2022-10-01 04:13:44','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankle/\">Sprained Ankle?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Stubborn, Persistent Neck Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-partial-rotator-cuff-tear-repair/\">Non-surgical Partial Rotator Cuff Tear Repair</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/are-cortisone-shots-a-good-option/\">Are Cortisone Shots a Good Option?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/\">Try Regenerative Treatments for Your Hip Pain or Injury</a></li>\r\n 	<li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Treating Knee Pain and Injuries with Regenerative Orthopedics\" href=\"/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics/\">Treating Knee Pain and Injuries with Regenerative Orthopedics</a></li>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-10-01 04:13:44','2022-10-01 04:13:44','',2109,'https://www.drfields.com/?p=5524',0,'revision','',0),(5526,9,'2022-10-05 21:16:09','2022-10-05 21:16:09','<a href=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab.png\"><img class=\"wp-image-5514 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-500x419.png\" alt=\"Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes\" width=\"300\" height=\"251\" /></a>\n<h2 align=\"JUSTIFY\">Tennis Elbow</h2>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Tennis elbow (</span><span lang=\"it-IT\">lateral epicondylitis)</span><span lang=\"en-US\"> is a painful condition</span> <span lang=\"en-US\">involving the tendon that attaches at the outside bony prominence of the elbow or</span><span lang=\"it-IT\"> lateral epicondyle.</span><span lang=\"en-US\"> Tennis elbow is a type of overuse injury that results from repetitive motion of the wrist and arm often from overuse due to particular jobs and activities.</span></p>\n\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">An Overuse Injury</span></h2>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Because of the name, you might think that tennis elbow is strictly an injury that athletes develop. But that isn’t so. Tennis elbow can occur in people whose jobs require repeat motions, such as painters, secretaries, accountants, carpenters, and guitarists. This condition is often described as an overuse injury. </span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Overuse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the tendons, ligaments, and other soft tissue structures of the elbow. Using poor or improper technique</span> <span lang=\"en-US\">while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.</span></p>\n\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Tennis Elbow Symptoms</span></h2>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The pain involved in tennis elbow is usually noted where a tendon of the forearm attaches to the bony bump at the outside of the elbow. The pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult such as turning a doorknob or picking up, holding, and gripping objects.</span></p>\n\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Instability May Be Behind Tennis Elbow</span></h2>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Chronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for</span><span lang=\"it-IT\"> alleviat</span><span lang=\"en-US\">ion of the pain.</span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When elbow ligaments are involved, they may be </span>fray<span lang=\"en-US\">ed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint.</span>  <span lang=\"en-US\">When a tendon is injured, there is often ligament involvement as well.</span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability,</span> <span lang=\"en-US\">t</span><span lang=\"it-IT\">he tendons</span><span lang=\"en-US\"> will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of</span> <span lang=\"en-US\">injury to the tendon.</span></p>\n\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Conventional Treatments for Tennis Elbow</span></h2>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Those with tennis elbow often try to manage the pain with over-the-counter medications and/or conservative therapy to stabilize the elbow such as with a brace. Resting the elbow is another way sufferers attempt to find relief in order to continue to work or participate in activities. </span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Recommended conventional treatments for tennis elbow often include NSAIDs, physical therapy, bracing, and taping. Unfortunately, these treatments may provide temporary relief but they are not reparative in nature.</span></p>\n<p align=\"LEFT\"><span lang=\"en-US\">Symptoms may be suppressed with pain medications or calmed down with bracing. However, a sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. If the pain continues, and becomes chronic, the individual requires a treatments that will repair the involved tendon and ligaments.</span></p>\n\n<h2 align=\"LEFT\"><span lang=\"en-US\">What Does the Research Say Regarding Bracing and Surgery?</span></h2>\n<h4 align=\"JUSTIFY\"><em><strong><span lang=\"en-US\">Bracing</span></strong></em></h4>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">T</span><span lang=\"fr-FR\">he journal</span> <em><span lang=\"en-US\">Prosthetics and Orthotics International</span></em> (<span lang=\"en-US\">1) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.</span></p>\n\n<h4 align=\"JUSTIFY\"><em><strong><span lang=\"en-US\">Surgery</span></strong></em></h4>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The </span><em><span lang=\"en-US\">US National Institutes of Health Clinical Trial</span></em><span lang=\"nl-NL\"> website</span><span lang=\"en-US\"> says: </span><em>“<span lang=\"en-US\">Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </span>(<span lang=\"en-US\">2</span>)</em></p>\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">There’s Another Way and It Does Not Require Surgery!</span></strong></p>\n\n<h3 align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics, Including Prolotherapy Are Effective for Tennis Elbow</span></h3>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow. </span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is an injection technique that works to regenerate the degenerated tendon. The injection of simple dextrose mimics the natural healing response and </span>stimulate<span lang=\"en-US\">s healing growth factors to repair the</span><span lang=\"fr-FR\"> tissue.</span></p>\n\n<ul>\n 	<li>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Researchers published a study in the </span><em><span lang=\"en-US\">American Journal of Physical Medicine &amp; Rehabilitation </span></em><span lang=\"en-US\">that </span>evaluat<span lang=\"en-US\">ed Prolotherapy for tennis elbow. They concluded: </span><em>“<span lang=\"en-US\">Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group. This pilot study suggests the need for a definitive trial.”</span></em><span lang=\"en-US\">(3)</span></p>\n</li>\n</ul>\n<ul>\n 	<li>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (4)</span></p>\n</li>\n</ul>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. And, it works because it addresses the problem by repairing the injures soft tissue. Plus, it works because it reduces or eliminates the symptoms. </span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Fortunately, Prolotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons.</span> <span lang=\"en-US\">These therapies </span><span lang=\"pt-PT\">stabilize</span><span lang=\"en-US\"> the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow</span>.<span lang=\"en-US\"> Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.</span></p>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">If tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.</span></p>\n\n<h3 align=\"JUSTIFY\"><span lang=\"en-US\">References</span></h3>\n<ol>\n 	<li>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.</span></p>\n</li>\n 	<li>\n<p align=\"JUSTIFY\">Kroslak M, Murrell GAC. <span lang=\"en-US\">Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.</span></p>\n</li>\n 	<li>\n<p align=\"JUSTIFY\">Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. <span lang=\"en-US\">Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.</span></p>\n</li>\n 	<li>\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow.</span> J Korean Acad Rehabil Med. 2002;26:764–8.</p>\n</li>\n</ol>','Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes','','inherit','closed','closed','','5513-autosave-v1','','','2022-10-05 21:16:09','2022-10-05 21:16:09','',5513,'https://www.drfields.com/?p=5526',0,'revision','',0),(5527,9,'2022-10-05 21:11:41','2022-10-05 21:11:41','<a href=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab.png\"><img class=\"wp-image-5514 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-500x419.png\" alt=\"Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes\" width=\"300\" height=\"251\" /></a>\r\n<h2 align=\"JUSTIFY\">Tennis Elbow</h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Tennis elbow (</span><span lang=\"it-IT\">lateral epicondylitis)</span><span lang=\"en-US\"> is a painful condition</span> <span lang=\"en-US\">involving the tendon that attaches at the outside bony prominence of the elbow or</span><span lang=\"it-IT\"> lateral epicondyle.</span><span lang=\"en-US\"> Tennis elbow is a type of overuse injury that results from repetitive motion of the wrist and arm often from overuse due to particular jobs and activities.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Tennis Elbow Is Often Described As An Overuse Injury</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Because of the name, you might think that tennis elbow is strictly an injury that athletes develop. But that isn’t so. Tennis elbow can occur in people whose jobs require repeat motions, such as painters, secretaries, accountants, carpenters, and guitarists. This condition is often described as an overuse injury. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Overuse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the tendons, ligaments, and other soft tissue structures of the elbow. Using poor or improper technique</span> <span lang=\"en-US\">while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Tennis Elbow Symptoms</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The pain involved in tennis elbow is usually noted where a tendon of the forearm attaches to the bony bump at the outside of the elbow. The pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult such as turning a doorknob or picking up, holding, and gripping objects.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Instability May Be Behind Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Chronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for</span><span lang=\"it-IT\"> alleviat</span><span lang=\"en-US\">ion of the pain.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When elbow ligaments are involved, they may be </span>fray<span lang=\"en-US\">ed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint.</span>  <span lang=\"en-US\">When a tendon is injured, there is often ligament involvement as well.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability,</span> <span lang=\"en-US\">t</span><span lang=\"it-IT\">he tendons</span><span lang=\"en-US\"> will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of</span> <span lang=\"en-US\">injury to the tendon.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Conventional Treatments for Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Those with tennis elbow often try to manage the pain with over-the-counter medications and/or conservative therapy to stabilize the elbow such as with a brace. Resting the elbow is another way sufferers attempt to find relief in order to continue to work or participate in activities. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Recommended conventional treatments for tennis elbow often include NSAIDs, physical therapy, bracing, and taping. These treatments may provide temporary relief but they are not reparative in nature.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">Symptoms may be suppressed with pain medications or calmed down with bracing. However, a sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. If the pain continues, and becomes chronic, the individual requires a treatments that will repair the involved tendon and ligaments.</span></p>\r\n\r\n<h2 align=\"LEFT\"><span lang=\"en-US\">What Does the Research Say Regarding Bracing and Surgery?</span></h2>\r\n<h4 align=\"JUSTIFY\"><em><strong><span lang=\"en-US\">Bracing</span></strong></em></h4>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">T</span><span lang=\"fr-FR\">he journal</span> <em><span lang=\"en-US\">Prosthetics and Orthotics International</span></em> (<span lang=\"en-US\">1) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.</span></p>\r\n\r\n<h4 align=\"JUSTIFY\"><em><strong><span lang=\"en-US\">Surgery</span></strong></em></h4>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The </span><em><span lang=\"en-US\">US National Institutes of Health Clinical Trial</span></em><span lang=\"nl-NL\"> website</span><span lang=\"en-US\"> says: </span><em>“<span lang=\"en-US\">Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </span>(<span lang=\"en-US\">2</span>)</em></p>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">There’s Another Way and It Does Not Require Surgery!</span></strong></p>\r\n\r\n<h3 align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics, Including Prolotherapy Are Effective for Tennis Elbow</span></h3>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is an injection technique that works to regenerate the degenerated tendon. The injection of simple dextrose mimics the natural healing response and </span>stimulate<span lang=\"en-US\">s healing growth factors to repair the</span><span lang=\"fr-FR\"> tissue.</span></p>\r\n\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Researchers published a study in the </span><em><span lang=\"en-US\">American Journal of Physical Medicine &amp; Rehabilitation </span></em><span lang=\"en-US\">that </span>evaluat<span lang=\"en-US\">ed Prolotherapy for tennis elbow. They concluded: </span><em>“<span lang=\"en-US\">Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group. This pilot study suggests the need for a definitive trial.”</span></em><span lang=\"en-US\">(3)</span></p>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (4)</span></p>\r\n</li>\r\n</ul>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. It works because it addresses the problem by repairing the injures soft tissue. And it works because it reduces or eliminates the symptoms. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons.</span> <span lang=\"en-US\">These therapies </span><span lang=\"pt-PT\">stabilize</span><span lang=\"en-US\"> the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow</span>.<span lang=\"en-US\"> Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">If tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.</span></p>\r\n\r\n<h3 align=\"JUSTIFY\"><span lang=\"en-US\">References</span></h3>\r\n<ol>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Kroslak M, Murrell GAC. <span lang=\"en-US\">Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. <span lang=\"en-US\">Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow.</span> J Korean Acad Rehabil Med. 2002;26:764–8.</p>\r\n</li>\r\n</ol>','Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes','','inherit','closed','closed','','5513-revision-v1','','','2022-10-05 21:11:41','2022-10-05 21:11:41','',5513,'https://www.drfields.com/?p=5527',0,'revision','',0),(5528,9,'2022-10-05 21:13:06','2022-10-05 21:13:06','<a href=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab.png\"><img class=\"wp-image-5514 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-500x419.png\" alt=\"Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes\" width=\"300\" height=\"251\" /></a>\r\n<h2 align=\"JUSTIFY\">Tennis Elbow</h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Tennis elbow (</span><span lang=\"it-IT\">lateral epicondylitis)</span><span lang=\"en-US\"> is a painful condition</span> <span lang=\"en-US\">involving the tendon that attaches at the outside bony prominence of the elbow or</span><span lang=\"it-IT\"> lateral epicondyle.</span><span lang=\"en-US\"> Tennis elbow is a type of overuse injury that results from repetitive motion of the wrist and arm often from overuse due to particular jobs and activities.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">An Overuse Injury</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Because of the name, you might think that tennis elbow is strictly an injury that athletes develop. But that isn’t so. Tennis elbow can occur in people whose jobs require repeat motions, such as painters, secretaries, accountants, carpenters, and guitarists. This condition is often described as an overuse injury. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Overuse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the tendons, ligaments, and other soft tissue structures of the elbow. Using poor or improper technique</span> <span lang=\"en-US\">while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Tennis Elbow Symptoms</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The pain involved in tennis elbow is usually noted where a tendon of the forearm attaches to the bony bump at the outside of the elbow. The pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult such as turning a doorknob or picking up, holding, and gripping objects.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Instability May Be Behind Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Chronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for</span><span lang=\"it-IT\"> alleviat</span><span lang=\"en-US\">ion of the pain.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When elbow ligaments are involved, they may be </span>fray<span lang=\"en-US\">ed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint.</span>  <span lang=\"en-US\">When a tendon is injured, there is often ligament involvement as well.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability,</span> <span lang=\"en-US\">t</span><span lang=\"it-IT\">he tendons</span><span lang=\"en-US\"> will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of</span> <span lang=\"en-US\">injury to the tendon.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Conventional Treatments for Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Those with tennis elbow often try to manage the pain with over-the-counter medications and/or conservative therapy to stabilize the elbow such as with a brace. Resting the elbow is another way sufferers attempt to find relief in order to continue to work or participate in activities. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Recommended conventional treatments for tennis elbow often include NSAIDs, physical therapy, bracing, and taping. These treatments may provide temporary relief but they are not reparative in nature.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">Symptoms may be suppressed with pain medications or calmed down with bracing. However, a sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. If the pain continues, and becomes chronic, the individual requires a treatments that will repair the involved tendon and ligaments.</span></p>\r\n\r\n<h2 align=\"LEFT\"><span lang=\"en-US\">What Does the Research Say Regarding Bracing and Surgery?</span></h2>\r\n<h4 align=\"JUSTIFY\"><em><strong><span lang=\"en-US\">Bracing</span></strong></em></h4>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">T</span><span lang=\"fr-FR\">he journal</span> <em><span lang=\"en-US\">Prosthetics and Orthotics International</span></em> (<span lang=\"en-US\">1) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.</span></p>\r\n\r\n<h4 align=\"JUSTIFY\"><em><strong><span lang=\"en-US\">Surgery</span></strong></em></h4>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The </span><em><span lang=\"en-US\">US National Institutes of Health Clinical Trial</span></em><span lang=\"nl-NL\"> website</span><span lang=\"en-US\"> says: </span><em>“<span lang=\"en-US\">Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </span>(<span lang=\"en-US\">2</span>)</em></p>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">There’s Another Way and It Does Not Require Surgery!</span></strong></p>\r\n\r\n<h3 align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics, Including Prolotherapy Are Effective for Tennis Elbow</span></h3>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is an injection technique that works to regenerate the degenerated tendon. The injection of simple dextrose mimics the natural healing response and </span>stimulate<span lang=\"en-US\">s healing growth factors to repair the</span><span lang=\"fr-FR\"> tissue.</span></p>\r\n\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Researchers published a study in the </span><em><span lang=\"en-US\">American Journal of Physical Medicine &amp; Rehabilitation </span></em><span lang=\"en-US\">that </span>evaluat<span lang=\"en-US\">ed Prolotherapy for tennis elbow. They concluded: </span><em>“<span lang=\"en-US\">Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group. This pilot study suggests the need for a definitive trial.”</span></em><span lang=\"en-US\">(3)</span></p>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (4)</span></p>\r\n</li>\r\n</ul>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. It works because it addresses the problem by repairing the injures soft tissue. And it works because it reduces or eliminates the symptoms. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons.</span> <span lang=\"en-US\">These therapies </span><span lang=\"pt-PT\">stabilize</span><span lang=\"en-US\"> the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow</span>.<span lang=\"en-US\"> Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">If tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.</span></p>\r\n\r\n<h3 align=\"JUSTIFY\"><span lang=\"en-US\">References</span></h3>\r\n<ol>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Kroslak M, Murrell GAC. <span lang=\"en-US\">Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. <span lang=\"en-US\">Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow.</span> J Korean Acad Rehabil Med. 2002;26:764–8.</p>\r\n</li>\r\n</ol>','Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes','','inherit','closed','closed','','5513-revision-v1','','','2022-10-05 21:13:06','2022-10-05 21:13:06','',5513,'https://www.drfields.com/?p=5528',0,'revision','',0),(5529,9,'2022-10-05 21:14:26','2022-10-05 21:14:26','<a href=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab.png\"><img class=\"wp-image-5514 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-500x419.png\" alt=\"Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes\" width=\"300\" height=\"251\" /></a>\r\n<h2 align=\"JUSTIFY\">Tennis Elbow</h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Tennis elbow (</span><span lang=\"it-IT\">lateral epicondylitis)</span><span lang=\"en-US\"> is a painful condition</span> <span lang=\"en-US\">involving the tendon that attaches at the outside bony prominence of the elbow or</span><span lang=\"it-IT\"> lateral epicondyle.</span><span lang=\"en-US\"> Tennis elbow is a type of overuse injury that results from repetitive motion of the wrist and arm often from overuse due to particular jobs and activities.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">An Overuse Injury</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Because of the name, you might think that tennis elbow is strictly an injury that athletes develop. But that isn’t so. Tennis elbow can occur in people whose jobs require repeat motions, such as painters, secretaries, accountants, carpenters, and guitarists. This condition is often described as an overuse injury. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Overuse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the tendons, ligaments, and other soft tissue structures of the elbow. Using poor or improper technique</span> <span lang=\"en-US\">while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Tennis Elbow Symptoms</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The pain involved in tennis elbow is usually noted where a tendon of the forearm attaches to the bony bump at the outside of the elbow. The pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult such as turning a doorknob or picking up, holding, and gripping objects.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Instability May Be Behind Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Chronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for</span><span lang=\"it-IT\"> alleviat</span><span lang=\"en-US\">ion of the pain.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When elbow ligaments are involved, they may be </span>fray<span lang=\"en-US\">ed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint.</span>  <span lang=\"en-US\">When a tendon is injured, there is often ligament involvement as well.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability,</span> <span lang=\"en-US\">t</span><span lang=\"it-IT\">he tendons</span><span lang=\"en-US\"> will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of</span> <span lang=\"en-US\">injury to the tendon.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Conventional Treatments for Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Those with tennis elbow often try to manage the pain with over-the-counter medications and/or conservative therapy to stabilize the elbow such as with a brace. Resting the elbow is another way sufferers attempt to find relief in order to continue to work or participate in activities. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Recommended conventional treatments for tennis elbow often include NSAIDs, physical therapy, bracing, and taping. These treatments may provide temporary relief but they are not reparative in nature.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">Symptoms may be suppressed with pain medications or calmed down with bracing. However, a sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. If the pain continues, and becomes chronic, the individual requires a treatments that will repair the involved tendon and ligaments.</span></p>\r\n\r\n<h2 align=\"LEFT\"><span lang=\"en-US\">What Does the Research Say Regarding Bracing and Surgery?</span></h2>\r\n<h4 align=\"JUSTIFY\"><em><strong><span lang=\"en-US\">Bracing</span></strong></em></h4>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">T</span><span lang=\"fr-FR\">he journal</span> <em><span lang=\"en-US\">Prosthetics and Orthotics International</span></em> (<span lang=\"en-US\">1) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.</span></p>\r\n\r\n<h4 align=\"JUSTIFY\"><em><strong><span lang=\"en-US\">Surgery</span></strong></em></h4>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The </span><em><span lang=\"en-US\">US National Institutes of Health Clinical Trial</span></em><span lang=\"nl-NL\"> website</span><span lang=\"en-US\"> says: </span><em>“<span lang=\"en-US\">Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </span>(<span lang=\"en-US\">2</span>)</em></p>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">There’s Another Way and It Does Not Require Surgery!</span></strong></p>\r\n\r\n<h3 align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics, Including Prolotherapy Are Effective for Tennis Elbow</span></h3>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is an injection technique that works to regenerate the degenerated tendon. The injection of simple dextrose mimics the natural healing response and </span>stimulate<span lang=\"en-US\">s healing growth factors to repair the</span><span lang=\"fr-FR\"> tissue.</span></p>\r\n\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Researchers published a study in the </span><em><span lang=\"en-US\">American Journal of Physical Medicine &amp; Rehabilitation </span></em><span lang=\"en-US\">that </span>evaluat<span lang=\"en-US\">ed Prolotherapy for tennis elbow. They concluded: </span><em>“<span lang=\"en-US\">Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group. This pilot study suggests the need for a definitive trial.”</span></em><span lang=\"en-US\">(3)</span></p>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (4)</span></p>\r\n</li>\r\n</ul>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. And, it works because it addresses the problem by repairing the injures soft tissue. Plus, it works because it reduces or eliminates the symptoms. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons.</span> <span lang=\"en-US\">These therapies </span><span lang=\"pt-PT\">stabilize</span><span lang=\"en-US\"> the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow</span>.<span lang=\"en-US\"> Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">If tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.</span></p>\r\n\r\n<h3 align=\"JUSTIFY\"><span lang=\"en-US\">References</span></h3>\r\n<ol>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Kroslak M, Murrell GAC. <span lang=\"en-US\">Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. <span lang=\"en-US\">Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow.</span> J Korean Acad Rehabil Med. 2002;26:764–8.</p>\r\n</li>\r\n</ol>','Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes','','inherit','closed','closed','','5513-revision-v1','','','2022-10-05 21:14:26','2022-10-05 21:14:26','',5513,'https://www.drfields.com/?p=5529',0,'revision','',0),(5530,9,'2022-10-05 21:15:02','2022-10-05 21:15:02','<a href=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab.png\"><img class=\"wp-image-5514 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-500x419.png\" alt=\"Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes\" width=\"300\" height=\"251\" /></a>\r\n<h2 align=\"JUSTIFY\">Tennis Elbow</h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Tennis elbow (</span><span lang=\"it-IT\">lateral epicondylitis)</span><span lang=\"en-US\"> is a painful condition</span> <span lang=\"en-US\">involving the tendon that attaches at the outside bony prominence of the elbow or</span><span lang=\"it-IT\"> lateral epicondyle.</span><span lang=\"en-US\"> Tennis elbow is a type of overuse injury that results from repetitive motion of the wrist and arm often from overuse due to particular jobs and activities.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">An Overuse Injury</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Because of the name, you might think that tennis elbow is strictly an injury that athletes develop. But that isn’t so. Tennis elbow can occur in people whose jobs require repeat motions, such as painters, secretaries, accountants, carpenters, and guitarists. This condition is often described as an overuse injury. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Overuse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the tendons, ligaments, and other soft tissue structures of the elbow. Using poor or improper technique</span> <span lang=\"en-US\">while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Tennis Elbow Symptoms</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The pain involved in tennis elbow is usually noted where a tendon of the forearm attaches to the bony bump at the outside of the elbow. The pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult such as turning a doorknob or picking up, holding, and gripping objects.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Instability May Be Behind Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Chronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for</span><span lang=\"it-IT\"> alleviat</span><span lang=\"en-US\">ion of the pain.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When elbow ligaments are involved, they may be </span>fray<span lang=\"en-US\">ed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint.</span>  <span lang=\"en-US\">When a tendon is injured, there is often ligament involvement as well.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability,</span> <span lang=\"en-US\">t</span><span lang=\"it-IT\">he tendons</span><span lang=\"en-US\"> will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of</span> <span lang=\"en-US\">injury to the tendon.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Conventional Treatments for Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Those with tennis elbow often try to manage the pain with over-the-counter medications and/or conservative therapy to stabilize the elbow such as with a brace. Resting the elbow is another way sufferers attempt to find relief in order to continue to work or participate in activities. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Recommended conventional treatments for tennis elbow often include NSAIDs, physical therapy, bracing, and taping. These treatments may provide temporary relief but they are not reparative in nature.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">Symptoms may be suppressed with pain medications or calmed down with bracing. However, a sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. If the pain continues, and becomes chronic, the individual requires a treatments that will repair the involved tendon and ligaments.</span></p>\r\n\r\n<h2 align=\"LEFT\"><span lang=\"en-US\">What Does the Research Say Regarding Bracing and Surgery?</span></h2>\r\n<h4 align=\"JUSTIFY\"><em><strong><span lang=\"en-US\">Bracing</span></strong></em></h4>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">T</span><span lang=\"fr-FR\">he journal</span> <em><span lang=\"en-US\">Prosthetics and Orthotics International</span></em> (<span lang=\"en-US\">1) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.</span></p>\r\n\r\n<h4 align=\"JUSTIFY\"><em><strong><span lang=\"en-US\">Surgery</span></strong></em></h4>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The </span><em><span lang=\"en-US\">US National Institutes of Health Clinical Trial</span></em><span lang=\"nl-NL\"> website</span><span lang=\"en-US\"> says: </span><em>“<span lang=\"en-US\">Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </span>(<span lang=\"en-US\">2</span>)</em></p>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">There’s Another Way and It Does Not Require Surgery!</span></strong></p>\r\n\r\n<h3 align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics, Including Prolotherapy Are Effective for Tennis Elbow</span></h3>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is an injection technique that works to regenerate the degenerated tendon. The injection of simple dextrose mimics the natural healing response and </span>stimulate<span lang=\"en-US\">s healing growth factors to repair the</span><span lang=\"fr-FR\"> tissue.</span></p>\r\n\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Researchers published a study in the </span><em><span lang=\"en-US\">American Journal of Physical Medicine &amp; Rehabilitation </span></em><span lang=\"en-US\">that </span>evaluat<span lang=\"en-US\">ed Prolotherapy for tennis elbow. They concluded: </span><em>“<span lang=\"en-US\">Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group. This pilot study suggests the need for a definitive trial.”</span></em><span lang=\"en-US\">(3)</span></p>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (4)</span></p>\r\n</li>\r\n</ul>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. And, it works because it addresses the problem by repairing the injures soft tissue. Plus, it works because it reduces or eliminates the symptoms. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Fortunately, Prolotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons.</span> <span lang=\"en-US\">These therapies </span><span lang=\"pt-PT\">stabilize</span><span lang=\"en-US\"> the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow</span>.<span lang=\"en-US\"> Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">If tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.</span></p>\r\n\r\n<h3 align=\"JUSTIFY\"><span lang=\"en-US\">References</span></h3>\r\n<ol>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Kroslak M, Murrell GAC. <span lang=\"en-US\">Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. <span lang=\"en-US\">Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow.</span> J Korean Acad Rehabil Med. 2002;26:764–8.</p>\r\n</li>\r\n</ol>','Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes','','inherit','closed','closed','','5513-revision-v1','','','2022-10-05 21:15:02','2022-10-05 21:15:02','',5513,'https://www.drfields.com/?p=5530',0,'revision','',0),(5531,9,'2022-10-05 21:16:17','2022-10-05 21:16:17','<a href=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab.png\"><img class=\"wp-image-5514 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-500x419.png\" alt=\"Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes\" width=\"300\" height=\"251\" /></a>\r\n<h2 align=\"JUSTIFY\">Tennis Elbow</h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Tennis elbow (</span><span lang=\"it-IT\">lateral epicondylitis)</span><span lang=\"en-US\"> is a painful condition</span> <span lang=\"en-US\">involving the tendon that attaches at the outside bony prominence of the elbow or</span><span lang=\"it-IT\"> lateral epicondyle.</span><span lang=\"en-US\"> Tennis elbow is a type of overuse injury that results from repetitive motion of the wrist and arm often from overuse due to particular jobs and activities.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">An Overuse Injury</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Because of the name, you might think that tennis elbow is strictly an injury that athletes develop. But that isn’t so. Tennis elbow can occur in people whose jobs require repeat motions, such as painters, secretaries, accountants, carpenters, and guitarists. This condition is often described as an overuse injury. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Overuse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the tendons, ligaments, and other soft tissue structures of the elbow. Using poor or improper technique</span> <span lang=\"en-US\">while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Tennis Elbow Symptoms</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The pain involved in tennis elbow is usually noted where a tendon of the forearm attaches to the bony bump at the outside of the elbow. The pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult such as turning a doorknob or picking up, holding, and gripping objects.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Instability May Be Behind Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Chronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for</span><span lang=\"it-IT\"> alleviat</span><span lang=\"en-US\">ion of the pain.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When elbow ligaments are involved, they may be </span>fray<span lang=\"en-US\">ed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint.</span>  <span lang=\"en-US\">When a tendon is injured, there is often ligament involvement as well.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">When the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability,</span> <span lang=\"en-US\">t</span><span lang=\"it-IT\">he tendons</span><span lang=\"en-US\"> will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of</span> <span lang=\"en-US\">injury to the tendon.</span></p>\r\n\r\n<h2 align=\"JUSTIFY\"><span lang=\"en-US\">Conventional Treatments for Tennis Elbow</span></h2>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Those with tennis elbow often try to manage the pain with over-the-counter medications and/or conservative therapy to stabilize the elbow such as with a brace. Resting the elbow is another way sufferers attempt to find relief in order to continue to work or participate in activities. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Recommended conventional treatments for tennis elbow often include NSAIDs, physical therapy, bracing, and taping. Unfortunately, these treatments may only provide temporary relief but they are not reparative in nature.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">Symptoms may be suppressed with pain medications or calmed down with bracing. However, a sleeve, for example, will only give a false sense of security while only temporarily helping the sufferer to function. If the pain continues, and becomes chronic, the individual requires a treatments that will repair the involved tendon and ligaments.</span></p>\r\n\r\n<h2 align=\"LEFT\"><span lang=\"en-US\">What Does the Research Say Regarding Bracing and Surgery?</span></h2>\r\n<h4 align=\"JUSTIFY\"><em><strong><span lang=\"en-US\">Bracing</span></strong></em></h4>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">T</span><span lang=\"fr-FR\">he journal</span> <em><span lang=\"en-US\">Prosthetics and Orthotics International</span></em> (<span lang=\"en-US\">1) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.</span></p>\r\n\r\n<h4 align=\"JUSTIFY\"><em><strong><span lang=\"en-US\">Surgery</span></strong></em></h4>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">The </span><em><span lang=\"en-US\">US National Institutes of Health Clinical Trial</span></em><span lang=\"nl-NL\"> website</span><span lang=\"en-US\"> says: </span><em>“<span lang=\"en-US\">Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </span>(<span lang=\"en-US\">2</span>)</em></p>\r\n<p align=\"JUSTIFY\"><strong><span lang=\"en-US\">There’s Another Way and It Does Not Require Surgery!</span></strong></p>\r\n\r\n<h3 align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics, Including Prolotherapy Are Effective for Tennis Elbow</span></h3>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Regenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is an injection technique that works to regenerate the degenerated tendon. The injection of simple dextrose mimics the natural healing response and </span>stimulate<span lang=\"en-US\">s healing growth factors to repair the</span><span lang=\"fr-FR\"> tissue.</span></p>\r\n\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Researchers published a study in the </span><em><span lang=\"en-US\">American Journal of Physical Medicine &amp; Rehabilitation </span></em><span lang=\"en-US\">that </span>evaluat<span lang=\"en-US\">ed Prolotherapy for tennis elbow. They concluded: </span><em>“<span lang=\"en-US\">Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group. This pilot study suggests the need for a definitive trial.”</span></em><span lang=\"en-US\">(3)</span></p>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (4)</span></p>\r\n</li>\r\n</ul>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Prolotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. And, it works because it addresses the problem by repairing the injures soft tissue. Plus, it works because it reduces or eliminates the symptoms. </span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Fortunately, Prolotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons.</span> <span lang=\"en-US\">These therapies </span><span lang=\"pt-PT\">stabilize</span><span lang=\"en-US\"> the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow</span>.<span lang=\"en-US\"> Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.</span></p>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">If tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.</span></p>\r\n\r\n<h3 align=\"JUSTIFY\"><span lang=\"en-US\">References</span></h3>\r\n<ol>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Kroslak M, Murrell GAC. <span lang=\"en-US\">Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\">Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. <span lang=\"en-US\">Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"JUSTIFY\"><span lang=\"en-US\">Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow.</span> J Korean Acad Rehabil Med. 2002;26:764–8.</p>\r\n</li>\r\n</ol>','Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes','','inherit','closed','closed','','5513-revision-v1','','','2022-10-05 21:16:17','2022-10-05 21:16:17','',5513,'https://www.drfields.com/?p=5531',0,'revision','',0),(5532,9,'2022-10-05 21:47:48','2022-10-05 21:47:48','<h2>Stem Cells Are Gaining in Popularity</h2>\n[caption id=\"attachment_5533\" align=\"alignright\" width=\"455\"]<img class=\"wp-image-5533\" src=\"https://www.drfields.com/wp-content/uploads/2022/10/Arthritis.-Jnl-Clinical-OrthoTrauma-500x419.png\" alt=\"Arthritis. Jnl Clinical Ortho&amp;trauma\" width=\"455\" height=\"381\" /> <strong>                             Stem Cells Are Gaining in Popularity</strong>[/caption]\n\nThe limitations of traditional treatments for arthritis are causing many to seek alternatives for relieving their arthritis pain and symptoms. Even current surgical procedures for arthritis come up short since they cannot reverse the damage arthritis causes to articular cartilage. As a result, stem cell treatments and other regenerative therapies are gaining popularity because they result in the repair and regeneration of the joints.\n<h2>What Do You Mean Conventional Treatments Have Limitations?</h2>\nConventional treatments for arthritis only manage the problem. These treatments “chase the symptoms.” For example, NSAIDs and opioids may be given for the pain of arthritis. And sure, they are helpful to get relief from the pain, but these medications do not repair the joint. As time goes on, the pain and symptoms will continue because the joint is still not repaired, and surgery will likely be recommended. But surgery comes with complications and long recovery times! In an effort to avoid this scenario, people living with arthritis are seeking stem cell treatments as an alternative to surgery.\n<h2>Stem Cells Are Gaining Popularity Because They Regenerate Cartilage</h2>\nStem cell treatments have great potential due to their ability to regenerate damaged cartilage (1). Stem cell-based therapy is gaining popularity as an alternative to joint replacement, especially since it has reparative effects. However, due to the ethical concerns in using embryonic cells, the current trend is more focused on adult stem cells for cartilage regeneration.\n<h2>Types of Adult Stem Cells</h2>\nThere are various types of stem cells being utilized which include mesenchymal stem cells (MSCs), bone marrow-derived stem cells (BMSCs), and adipose-derived stem cells (ADSCs) for the regeneration of cartilage. Again, these types of adult stem cells may be chosen for cartilage regeneration.\n<h2>Mesenchymal Stem Cells (MSCs) from Bone Marrow</h2>\nMSCs derived from bone marrow (BMSCs) can repair tissues such as tendons, bony defects, and cartilage (2). Plus, when placed in the injured and degenerated areas, such as in knee and hip arthritis cases, these cells can assist in cartilage regeneration of the joint and alleviate the pain experienced by arthritis patients (3).\n\n<em>“The versatility of mesenchymal stem cells (MSCs) as a treatment modality has landed it another repair target: osteoarthritis, a crippling cartilage disease that frequently afflicts the aged population. Through many studies, this newly discovered method has been shown to significantly alleviate the pain experienced by osteoarthritic patients.”(3)</em>\n\nOnce aspirated (drawn out), mesenchymal stem cells (MSCs) are centrifuged to have a more concentrated number of stem cells to boost recovery and effectiveness (3). In addition, since these stem cells are taken directly from the person who will receive them (autologous), the chance of cross-contamination is reduced, which increases the efficacy of the therapy.\n\nStudies have shown that mesenchymal stem cells (MSCs) from bone marrow (BMSCs) can successfully regenerate injured cartilage, repair chondral defects, and improve arthritis symptoms in humans.\n\n<em>“The capability of the mesenchymal stem cells to repair and regenerate cartilage has been widely investigated. . .Several studies have demonstrated promising results in the clinical application for repair of chondral defects as an adjuvant (during surgery in some cases) or independent procedure. Intra-articular (mesenchymal stem cells (MSCs)  provide improvements in pain and function in knee osteoarthritis at short-term follow-up in many studies.”(4)</em>\n<h2>Adipose-Derived Stem Cells (ADSCs)</h2>\nAdipose-derived stem cells (ADSCs) are a promising source of stem cells because this fat tissue is abundant. Plus, it is relatively easy to harvest and has minimal side effects. Studies also back the use of ADSCs for cartilage regeneration in the treatment of arthritis.\n\n<em>“Among the different kinds of MSCs available, adipose-derived mesenchymal stem cells (ADSCs) are emerging due to their abundancy and easiness to harvest.”(5)</em>\n\n<em>“Adipose stem cells are an attractive and abundant stem cell source with therapeutic applicability in diverse fields for the repair and regeneration of acute and chronically damaged tissues.” (5)</em>\n<h2>Platelet-Rich Plasma (PRP) Used Along with Stem Cells</h2>\nPRP, or platelet-rich plasma, taken from your blood, is a regenerative therapy that helps to boost cartilage regeneration due to its many growth factors. These growth factors promote the growth and differentiation of the stem cells and encourage their adherence to cartilage lesions.\n<h2>Stem Cells Are Gaining Popularity and Are Available at OrthoRegen®</h2>\nAt OrthoRegen®, we have been using stem cells to successfully treat arthritic joints for many years. The treatment is well-established at our clinic. This non-surgical injection procedure is an excellent alternative to conventional treatments and surgeries. In addition, the self-renewing, reparative, and regenerative abilities of stem cell treatments have rendered them an attractive option for the treatment of arthritis.\n\nAdditionally, at OrthoRegen®, we use the Gold Standard in Stem Cell Therapy. That means we use four different types of regenerative therapies. Many other clinics only use 1 or 2. We will use MSCs derived from bone marrow (BMSCs), adipose-derived stem cells (ADSCs) taken from fat, PRP, or platelet-rich plasma drawn from your blood, and then Dextrose Prolotherapy. All of these together give you the best chance at repair and regeneration to help you return to all the activities you enjoy.\n\nStem cell treatments are gaining popularity because they work! Call us at 310-453-1234 and find out if you are a candidate for this treatment.\n<h3>References</h3>\n<ol>\n 	<li>Shapiro SA, Kazmerchak SE, Heckman MG, Zubair AC, O’Connor MI. A Prospective, Single-Blind, Placebo-Controlled Trial of Bone Marrow Aspirate Concentrate for Knee Osteoarthritis. Am J Sports Med. 2017 Jan;45(1):82-90.</li>\n 	<li>Gianakos AL, Sun L, Patel JN, Adams DM, Liporace FA. Clinical application of concentrated bone marrow aspirate in orthopaedics: A systematic review. World journal of orthopedics. 2017 Jun 18;8(6):491.</li>\n 	<li>Afizah H, Hui JH. Mesenchymal stem cell therapy for osteoarthritis. Journal of clinical orthopaedics and trauma. 2016 Sep 30;7(3):177-82</li>\n 	<li>Debnath UK. Mesenchymal Stem Cell Therapy in Chondral Defects of Knee: Current Concept Review. Indian Journal of Orthopaedics. 2020 Jul 27:1-9.</li>\n 	<li>Lindroos B, Suuronen R, Miettinen S. The potential of adipose stem cells in regenerative medicine. Stem Cell Rev Rep. 2011 Jun;7(2):269-91. doi: 10.1007/s12015-010-9193-7. PMID: 20853072.</li>\n</ol>','Stem Cells Are Gaining in Popularity','','inherit','closed','closed','','5522-autosave-v1','','','2022-10-05 21:47:48','2022-10-05 21:47:48','',5522,'https://www.drfields.com/?p=5532',0,'revision','',0),(5533,9,'2022-10-05 21:20:38','2022-10-05 21:20:38','Arthritis. Jnl Clinical Ortho&trauma','Arthritis. Jnl Clinical Ortho&trauma','Stem Cells Gaining Popularity','inherit','closed','closed','','arthritis-jnl-clinical-orthotrauma','','','2022-10-05 21:21:07','2022-10-05 21:21:07','',5522,'https://www.drfields.com/wp-content/uploads/2022/10/Arthritis.-Jnl-Clinical-OrthoTrauma.png',0,'attachment','image/png',0),(5534,9,'2022-10-05 21:25:43','2022-10-05 21:25:43','<h2>Stem Cell Treatments Are Gaining in Popularity</h2>\r\n[caption id=\"attachment_5533\" align=\"alignright\" width=\"455\"]<img class=\" wp-image-5533\" src=\"https://www.drfields.com/wp-content/uploads/2022/10/Arthritis.-Jnl-Clinical-OrthoTrauma-500x419.png\" alt=\"Arthritis. Jnl Clinical Ortho&amp;trauma\" width=\"455\" height=\"381\" /> <strong>                                    Stem Cells Gaining Popularity</strong>[/caption]\r\n\r\nThe limitations of traditional treatments for arthritis are causing many to seek alternatives for relief of their arthritis pain and symptoms. Even current surgical procedures for arthritis come up short since they are unable to reverse the damage arthritis causes on articular cartilage. Stem cell treatments, as well as other regenerative therapies, are gaining popularity because they result in repair and regeneration of the joints.\r\n<h2>What Do You Mean Conventional Treatments Have Limitations?</h2>\r\nConventional treatments for arthritis really only manage the problem. These treatments “chase the symptoms.” For example, NSAIDs and opioids may be given for the pain of arthritis. And sure, it’s helpful to get relief from the pain, but these medications do not repair the joint. As time goes on, the pain and symptoms will continue because the joint is still not repaired, and surgery will likely be recommended. But surgery comes with complications and long recovery times! In an effort to avoid this scenario, arthritis sufferers are seeking stem cell treatments as an alternative to surgery.\r\n<h2>Stem Cell Treatments Regenerate Cartilage</h2>\r\nStem cell treatments have great potential due to their ability to regenerate damaged cartilage (1). Stem cell based therapy is gaining popularity as an alternative to joint replacement, especially since it has reparative effects. Due to the ethical concerns in the utilization of embryonic cells the current trend is more focused on adult stem cells for cartilage regeneration.\r\n<h2>Types of Adult Stem Cells</h2>\r\nThere are various types of stem cells being utilized which include, mesenchymal stem cells (MSCs), bone marrow-derived stem cells (BMSCs), and adipose-derived stem cells (ADSCs) for the regeneration of cartilage. Again, these are all types of adult stem cells that may be chosen for cartilage regeneration.\r\n<h2>Mesenchymal Stem Cells (MSCs) from Bone Marrow</h2>\r\nMSCs derived from bone marrow (BMSCs) are able to repair tissues such as tendons, bony defects, and cartilage (2). Plus, when placed at the injured and/or degenerated areas, such as in cases of knee and hip arthritis, these cells are able to assist in cartilage regeneration of the joint and alleviate the pain experienced by arthritis patients (3).\r\n\r\n“The versatility of mesenchymal stem cells (MSCs) as a treatment modality has landed it another repair target: osteoarthritis, a crippling cartilage disease that frequently afflicts the aged population. Through many studies, this newly discovered method has been shown to significantly alleviate the pain experienced by osteoarthritic patients.”(3)\r\n\r\nOnce aspirated (drawn out), mesenchymal stem cells (MSCs) are centrifuged in order to have a more concentrated number of stem cells to boost recovery and effectiveness (3). Since these stem cells are taken directly from the person who will receive them (autologous), the chance of cross-contamination is reduced which increases the efficacy of the therapy.\r\n\r\nStudies have shown that mesenchymal stem cells (MSCs) from bone marrow (BMSCs) can successfully regenerate injured cartilage, repair chondral defects, and improve arthritis symptoms in humans.\r\n\r\n“The capability of the mesenchymal stem cells to repair and regenerate cartilage has been widely investigated. . .Several studies have demonstrated promising results in the clinical application for repair of chondral defects as an adjuvant (during surgery in some cases) or independent procedure. Intra-articular (mesenchymal stem cells (MSCs)  provide improvements in pain and function in knee osteoarthritis at short-term follow-up in many studies.”(4)\r\n<h2>Adipose-Derived Stem Cells (ADSCs)</h2>\r\nAdipose-derived stem cells (ADSCs) are a promising source of stem cells because there is an abundance of this fat tissue. Plus, it is relatively easy to harvest and has minimal side effects. Studies also back the use of ADSCs for cartilage regeneration in the treatment of arthritis.\r\n\r\n“Among the different kinds of MSCs available, adipose-derived mesenchymal stem cells (ADSCs) are emerging due to their abundancy and easiness to harvest.”(5)\r\n\r\n“Adipose stem cells are an attractive and abundant stem cell source with therapeutic applicability in diverse fields for the repair and regeneration of acute and chronically damaged tissues.” (5)\r\n<h2>Platelet Rich Plasma (PRP) Used Along with Stem Cells</h2>\r\nPRP or platelet-rich plasma, which is taken from your own blood, is a regenerative therapy that helps to boost cartilage regeneration due to its many growth factors. These growth factors promote the growth and differentiation of the stem cells as well as boost their adherence to the cartilage lesions.\r\n<h2>Stem Cell Treatments at OrthoRegen®</h2>\r\nAt OrthoRegen®, we have been successfully using stem cells to treat arthritic joints for many years. The treatment is well-established at our clinic. This non-surgical injection procedure is an excellent alternative to conventional treatments and surgeries. The self-renewing, reparative, and regenerative abilities of stem cell treatments have rendered them an attractive option for the treatment of arthritis.\r\n\r\nAdditionally, at OrthoRegen®, we use the Gold Standard in Stem Cell Therapy. That means we use 4 different types of regenerative therapies. Many other clinics only use 1 or 2. We will use MSCs derived from bone marrow (BMSCs), adipose-derived stem cells (ADSCs) taken from fat, PRP or platelet-rich plasma drawn from your own blood, and then Dextrose Prolotherapy. All of these together give you the best chance at repair and regeneration in order to help you return to all of the activities you want to be involved in.\r\n\r\nStem cell treatments are gaining popularity because they work! Call us at 310-453-1234 and find out if you are a candidate for this treatment.\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Shapiro SA, Kazmerchak SE, Heckman MG, Zubair AC, O’Connor MI. A Prospective, Single-Blind, Placebo-Controlled Trial of Bone Marrow Aspirate Concentrate for Knee Osteoarthritis. Am J Sports Med. 2017 Jan;45(1):82-90.</li>\r\n 	<li>Gianakos AL, Sun L, Patel JN, Adams DM, Liporace FA. Clinical application of concentrated bone marrow aspirate in orthopaedics: A systematic review. World journal of orthopedics. 2017 Jun 18;8(6):491.</li>\r\n 	<li>Afizah H, Hui JH. Mesenchymal stem cell therapy for osteoarthritis. Journal of clinical orthopaedics and trauma. 2016 Sep 30;7(3):177-82</li>\r\n 	<li>Debnath UK. Mesenchymal Stem Cell Therapy in Chondral Defects of Knee: Current Concept Review. Indian Journal of Orthopaedics. 2020 Jul 27:1-9.</li>\r\n 	<li>Lindroos B, Suuronen R, Miettinen S. The potential of adipose stem cells in regenerative medicine. Stem Cell Rev Rep. 2011 Jun;7(2):269-91. doi: 10.1007/s12015-010-9193-7. PMID: 20853072.</li>\r\n</ol>','Stem Cells Are Gaining in Popularity','','inherit','closed','closed','','5522-revision-v1','','','2022-10-05 21:25:43','2022-10-05 21:25:43','',5522,'https://www.drfields.com/?p=5534',0,'revision','',0),(5535,9,'2022-10-05 21:27:22','2022-10-05 21:27:22','<h2>Stem Cell Treatments Are Gaining in Popularity</h2>\r\n[caption id=\"attachment_5533\" align=\"alignright\" width=\"455\"]<img class=\" wp-image-5533\" src=\"https://www.drfields.com/wp-content/uploads/2022/10/Arthritis.-Jnl-Clinical-OrthoTrauma-500x419.png\" alt=\"Arthritis. Jnl Clinical Ortho&amp;trauma\" width=\"455\" height=\"381\" /> <strong>                             Stem Cells Are Gaining in Popularity</strong>[/caption]\r\n\r\nThe limitations of traditional treatments for arthritis are causing many to seek alternatives for relief of their arthritis pain and symptoms. Even current surgical procedures for arthritis come up short since they are unable to reverse the damage arthritis causes on articular cartilage. Stem cell treatments, as well as other regenerative therapies, are gaining popularity because they result in repair and regeneration of the joints.\r\n<h2>What Do You Mean Conventional Treatments Have Limitations?</h2>\r\nConventional treatments for arthritis really only manage the problem. These treatments “chase the symptoms.” For example, NSAIDs and opioids may be given for the pain of arthritis. And sure, it’s helpful to get relief from the pain, but these medications do not repair the joint. As time goes on, the pain and symptoms will continue because the joint is still not repaired, and surgery will likely be recommended. But surgery comes with complications and long recovery times! In an effort to avoid this scenario, arthritis sufferers are seeking stem cell treatments as an alternative to surgery.\r\n<h2>Stem Cell Treatments Regenerate Cartilage</h2>\r\nStem cell treatments have great potential due to their ability to regenerate damaged cartilage (1). Stem cell based therapy is gaining popularity as an alternative to joint replacement, especially since it has reparative effects. Due to the ethical concerns in the utilization of embryonic cells the current trend is more focused on adult stem cells for cartilage regeneration.\r\n<h2>Types of Adult Stem Cells</h2>\r\nThere are various types of stem cells being utilized which include, mesenchymal stem cells (MSCs), bone marrow-derived stem cells (BMSCs), and adipose-derived stem cells (ADSCs) for the regeneration of cartilage. Again, these are all types of adult stem cells that may be chosen for cartilage regeneration.\r\n<h2>Mesenchymal Stem Cells (MSCs) from Bone Marrow</h2>\r\nMSCs derived from bone marrow (BMSCs) are able to repair tissues such as tendons, bony defects, and cartilage (2). Plus, when placed at the injured and/or degenerated areas, such as in cases of knee and hip arthritis, these cells are able to assist in cartilage regeneration of the joint and alleviate the pain experienced by arthritis patients (3).\r\n\r\n“The versatility of mesenchymal stem cells (MSCs) as a treatment modality has landed it another repair target: osteoarthritis, a crippling cartilage disease that frequently afflicts the aged population. Through many studies, this newly discovered method has been shown to significantly alleviate the pain experienced by osteoarthritic patients.”(3)\r\n\r\nOnce aspirated (drawn out), mesenchymal stem cells (MSCs) are centrifuged in order to have a more concentrated number of stem cells to boost recovery and effectiveness (3). Since these stem cells are taken directly from the person who will receive them (autologous), the chance of cross-contamination is reduced which increases the efficacy of the therapy.\r\n\r\nStudies have shown that mesenchymal stem cells (MSCs) from bone marrow (BMSCs) can successfully regenerate injured cartilage, repair chondral defects, and improve arthritis symptoms in humans.\r\n\r\n“The capability of the mesenchymal stem cells to repair and regenerate cartilage has been widely investigated. . .Several studies have demonstrated promising results in the clinical application for repair of chondral defects as an adjuvant (during surgery in some cases) or independent procedure. Intra-articular (mesenchymal stem cells (MSCs)  provide improvements in pain and function in knee osteoarthritis at short-term follow-up in many studies.”(4)\r\n<h2>Adipose-Derived Stem Cells (ADSCs)</h2>\r\nAdipose-derived stem cells (ADSCs) are a promising source of stem cells because there is an abundance of this fat tissue. Plus, it is relatively easy to harvest and has minimal side effects. Studies also back the use of ADSCs for cartilage regeneration in the treatment of arthritis.\r\n\r\n“Among the different kinds of MSCs available, adipose-derived mesenchymal stem cells (ADSCs) are emerging due to their abundancy and easiness to harvest.”(5)\r\n\r\n“Adipose stem cells are an attractive and abundant stem cell source with therapeutic applicability in diverse fields for the repair and regeneration of acute and chronically damaged tissues.” (5)\r\n<h2>Platelet Rich Plasma (PRP) Used Along with Stem Cells</h2>\r\nPRP or platelet-rich plasma, which is taken from your own blood, is a regenerative therapy that helps to boost cartilage regeneration due to its many growth factors. These growth factors promote the growth and differentiation of the stem cells as well as boost their adherence to the cartilage lesions.\r\n<h2>Stem Cell Treatments at OrthoRegen®</h2>\r\nAt OrthoRegen®, we have been successfully using stem cells to treat arthritic joints for many years. The treatment is well-established at our clinic. This non-surgical injection procedure is an excellent alternative to conventional treatments and surgeries. The self-renewing, reparative, and regenerative abilities of stem cell treatments have rendered them an attractive option for the treatment of arthritis.\r\n\r\nAdditionally, at OrthoRegen®, we use the Gold Standard in Stem Cell Therapy. That means we use 4 different types of regenerative therapies. Many other clinics only use 1 or 2. We will use MSCs derived from bone marrow (BMSCs), adipose-derived stem cells (ADSCs) taken from fat, PRP or platelet-rich plasma drawn from your own blood, and then Dextrose Prolotherapy. All of these together give you the best chance at repair and regeneration in order to help you return to all of the activities you want to be involved in.\r\n\r\nStem cell treatments are gaining popularity because they work! Call us at 310-453-1234 and find out if you are a candidate for this treatment.\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Shapiro SA, Kazmerchak SE, Heckman MG, Zubair AC, O’Connor MI. A Prospective, Single-Blind, Placebo-Controlled Trial of Bone Marrow Aspirate Concentrate for Knee Osteoarthritis. Am J Sports Med. 2017 Jan;45(1):82-90.</li>\r\n 	<li>Gianakos AL, Sun L, Patel JN, Adams DM, Liporace FA. Clinical application of concentrated bone marrow aspirate in orthopaedics: A systematic review. World journal of orthopedics. 2017 Jun 18;8(6):491.</li>\r\n 	<li>Afizah H, Hui JH. Mesenchymal stem cell therapy for osteoarthritis. Journal of clinical orthopaedics and trauma. 2016 Sep 30;7(3):177-82</li>\r\n 	<li>Debnath UK. Mesenchymal Stem Cell Therapy in Chondral Defects of Knee: Current Concept Review. Indian Journal of Orthopaedics. 2020 Jul 27:1-9.</li>\r\n 	<li>Lindroos B, Suuronen R, Miettinen S. The potential of adipose stem cells in regenerative medicine. Stem Cell Rev Rep. 2011 Jun;7(2):269-91. doi: 10.1007/s12015-010-9193-7. PMID: 20853072.</li>\r\n</ol>','Stem Cells Are Gaining in Popularity','','inherit','closed','closed','','5522-revision-v1','','','2022-10-05 21:27:22','2022-10-05 21:27:22','',5522,'https://www.drfields.com/?p=5535',0,'revision','',0),(5536,9,'2022-10-05 21:28:51','2022-10-05 21:28:51','<h2>Stem Cell Are Gaining in Popularity</h2>\r\n[caption id=\"attachment_5533\" align=\"alignright\" width=\"455\"]<img class=\"wp-image-5533\" src=\"https://www.drfields.com/wp-content/uploads/2022/10/Arthritis.-Jnl-Clinical-OrthoTrauma-500x419.png\" alt=\"Arthritis. Jnl Clinical Ortho&amp;trauma\" width=\"455\" height=\"381\" /> <strong>                             Stem Cells Are Gaining in Popularity</strong>[/caption]\r\n\r\nThe limitations of traditional treatments for arthritis are causing many to seek alternatives for relief of their arthritis pain and symptoms. Even current surgical procedures for arthritis come up short since they are unable to reverse the damage arthritis causes on articular cartilage. Stem cell treatments, as well as other regenerative therapies, are gaining popularity because they result in repair and regeneration of the joints.\r\n<h2>What Do You Mean Conventional Treatments Have Limitations?</h2>\r\nConventional treatments for arthritis really only manage the problem. These treatments “chase the symptoms.” For example, NSAIDs and opioids may be given for the pain of arthritis. And sure, it’s helpful to get relief from the pain, but these medications do not repair the joint. As time goes on, the pain and symptoms will continue because the joint is still not repaired, and surgery will likely be recommended. But surgery comes with complications and long recovery times! In an effort to avoid this scenario, arthritis sufferers are seeking stem cell treatments as an alternative to surgery.\r\n<h2>Stem Cells Are Gaining Popularity Because They Regenerate Cartilage</h2>\r\nStem cell treatments have great potential due to their ability to regenerate damaged cartilage (1). Stem cell based therapy is gaining popularity as an alternative to joint replacement, especially since it has reparative effects. Due to the ethical concerns in the utilization of embryonic cells the current trend is more focused on adult stem cells for cartilage regeneration.\r\n<h2>Types of Adult Stem Cells</h2>\r\nThere are various types of stem cells being utilized which include, mesenchymal stem cells (MSCs), bone marrow-derived stem cells (BMSCs), and adipose-derived stem cells (ADSCs) for the regeneration of cartilage. Again, these are all types of adult stem cells that may be chosen for cartilage regeneration.\r\n<h2>Mesenchymal Stem Cells (MSCs) from Bone Marrow</h2>\r\nMSCs derived from bone marrow (BMSCs) are able to repair tissues such as tendons, bony defects, and cartilage (2). Plus, when placed at the injured and/or degenerated areas, such as in cases of knee and hip arthritis, these cells are able to assist in cartilage regeneration of the joint and alleviate the pain experienced by arthritis patients (3).\r\n\r\n“The versatility of mesenchymal stem cells (MSCs) as a treatment modality has landed it another repair target: osteoarthritis, a crippling cartilage disease that frequently afflicts the aged population. Through many studies, this newly discovered method has been shown to significantly alleviate the pain experienced by osteoarthritic patients.”(3)\r\n\r\nOnce aspirated (drawn out), mesenchymal stem cells (MSCs) are centrifuged in order to have a more concentrated number of stem cells to boost recovery and effectiveness (3). Since these stem cells are taken directly from the person who will receive them (autologous), the chance of cross-contamination is reduced which increases the efficacy of the therapy.\r\n\r\nStudies have shown that mesenchymal stem cells (MSCs) from bone marrow (BMSCs) can successfully regenerate injured cartilage, repair chondral defects, and improve arthritis symptoms in humans.\r\n\r\n“The capability of the mesenchymal stem cells to repair and regenerate cartilage has been widely investigated. . .Several studies have demonstrated promising results in the clinical application for repair of chondral defects as an adjuvant (during surgery in some cases) or independent procedure. Intra-articular (mesenchymal stem cells (MSCs)  provide improvements in pain and function in knee osteoarthritis at short-term follow-up in many studies.”(4)\r\n<h2>Adipose-Derived Stem Cells (ADSCs)</h2>\r\nAdipose-derived stem cells (ADSCs) are a promising source of stem cells because there is an abundance of this fat tissue. Plus, it is relatively easy to harvest and has minimal side effects. Studies also back the use of ADSCs for cartilage regeneration in the treatment of arthritis.\r\n\r\n“Among the different kinds of MSCs available, adipose-derived mesenchymal stem cells (ADSCs) are emerging due to their abundancy and easiness to harvest.”(5)\r\n\r\n“Adipose stem cells are an attractive and abundant stem cell source with therapeutic applicability in diverse fields for the repair and regeneration of acute and chronically damaged tissues.” (5)\r\n<h2>Platelet Rich Plasma (PRP) Used Along with Stem Cells</h2>\r\nPRP or platelet-rich plasma, which is taken from your own blood, is a regenerative therapy that helps to boost cartilage regeneration due to its many growth factors. These growth factors promote the growth and differentiation of the stem cells as well as boost their adherence to the cartilage lesions.\r\n<h2>Stem Cell Treatments at OrthoRegen®</h2>\r\nAt OrthoRegen®, we have been successfully using stem cells to treat arthritic joints for many years. The treatment is well-established at our clinic. This non-surgical injection procedure is an excellent alternative to conventional treatments and surgeries. The self-renewing, reparative, and regenerative abilities of stem cell treatments have rendered them an attractive option for the treatment of arthritis.\r\n\r\nAdditionally, at OrthoRegen®, we use the Gold Standard in Stem Cell Therapy. That means we use 4 different types of regenerative therapies. Many other clinics only use 1 or 2. We will use MSCs derived from bone marrow (BMSCs), adipose-derived stem cells (ADSCs) taken from fat, PRP or platelet-rich plasma drawn from your own blood, and then Dextrose Prolotherapy. All of these together give you the best chance at repair and regeneration in order to help you return to all of the activities you want to be involved in.\r\n\r\nStem cell treatments are gaining popularity because they work! Call us at 310-453-1234 and find out if you are a candidate for this treatment.\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Shapiro SA, Kazmerchak SE, Heckman MG, Zubair AC, O’Connor MI. A Prospective, Single-Blind, Placebo-Controlled Trial of Bone Marrow Aspirate Concentrate for Knee Osteoarthritis. Am J Sports Med. 2017 Jan;45(1):82-90.</li>\r\n 	<li>Gianakos AL, Sun L, Patel JN, Adams DM, Liporace FA. Clinical application of concentrated bone marrow aspirate in orthopaedics: A systematic review. World journal of orthopedics. 2017 Jun 18;8(6):491.</li>\r\n 	<li>Afizah H, Hui JH. Mesenchymal stem cell therapy for osteoarthritis. Journal of clinical orthopaedics and trauma. 2016 Sep 30;7(3):177-82</li>\r\n 	<li>Debnath UK. Mesenchymal Stem Cell Therapy in Chondral Defects of Knee: Current Concept Review. Indian Journal of Orthopaedics. 2020 Jul 27:1-9.</li>\r\n 	<li>Lindroos B, Suuronen R, Miettinen S. The potential of adipose stem cells in regenerative medicine. Stem Cell Rev Rep. 2011 Jun;7(2):269-91. doi: 10.1007/s12015-010-9193-7. PMID: 20853072.</li>\r\n</ol>','Stem Cells Are Gaining in Popularity','','inherit','closed','closed','','5522-revision-v1','','','2022-10-05 21:28:51','2022-10-05 21:28:51','',5522,'https://www.drfields.com/?p=5536',0,'revision','',0),(5537,9,'2022-10-05 21:30:05','2022-10-05 21:30:05','<h2>Stem Cell Are Gaining in Popularity</h2>\r\n[caption id=\"attachment_5533\" align=\"alignright\" width=\"455\"]<img class=\"wp-image-5533\" src=\"https://www.drfields.com/wp-content/uploads/2022/10/Arthritis.-Jnl-Clinical-OrthoTrauma-500x419.png\" alt=\"Arthritis. Jnl Clinical Ortho&amp;trauma\" width=\"455\" height=\"381\" /> <strong>                             Stem Cells Are Gaining in Popularity</strong>[/caption]\r\n\r\nThe limitations of traditional treatments for arthritis are causing many to seek alternatives for relief of their arthritis pain and symptoms. Even current surgical procedures for arthritis come up short since they are unable to reverse the damage arthritis causes on articular cartilage. Stem cell treatments, as well as other regenerative therapies, are gaining popularity because they result in repair and regeneration of the joints.\r\n<h2>What Do You Mean Conventional Treatments Have Limitations?</h2>\r\nConventional treatments for arthritis really only manage the problem. These treatments “chase the symptoms.” For example, NSAIDs and opioids may be given for the pain of arthritis. And sure, it’s helpful to get relief from the pain, but these medications do not repair the joint. As time goes on, the pain and symptoms will continue because the joint is still not repaired, and surgery will likely be recommended. But surgery comes with complications and long recovery times! In an effort to avoid this scenario, arthritis sufferers are seeking stem cell treatments as an alternative to surgery.\r\n<h2>Stem Cells Are Gaining Popularity Because They Regenerate Cartilage</h2>\r\nStem cell treatments have great potential due to their ability to regenerate damaged cartilage (1). Stem cell based therapy is gaining popularity as an alternative to joint replacement, especially since it has reparative effects. Due to the ethical concerns in the utilization of embryonic cells the current trend is more focused on adult stem cells for cartilage regeneration.\r\n<h2>Types of Adult Stem Cells</h2>\r\nThere are various types of stem cells being utilized which include, mesenchymal stem cells (MSCs), bone marrow-derived stem cells (BMSCs), and adipose-derived stem cells (ADSCs) for the regeneration of cartilage. Again, these are all types of adult stem cells that may be chosen for cartilage regeneration.\r\n<h2>Mesenchymal Stem Cells (MSCs) from Bone Marrow</h2>\r\nMSCs derived from bone marrow (BMSCs) are able to repair tissues such as tendons, bony defects, and cartilage (2). Plus, when placed at the injured and/or degenerated areas, such as in cases of knee and hip arthritis, these cells are able to assist in cartilage regeneration of the joint and alleviate the pain experienced by arthritis patients (3).\r\n\r\n“The versatility of mesenchymal stem cells (MSCs) as a treatment modality has landed it another repair target: osteoarthritis, a crippling cartilage disease that frequently afflicts the aged population. Through many studies, this newly discovered method has been shown to significantly alleviate the pain experienced by osteoarthritic patients.”(3)\r\n\r\nOnce aspirated (drawn out), mesenchymal stem cells (MSCs) are centrifuged in order to have a more concentrated number of stem cells to boost recovery and effectiveness (3). Since these stem cells are taken directly from the person who will receive them (autologous), the chance of cross-contamination is reduced which increases the efficacy of the therapy.\r\n\r\nStudies have shown that mesenchymal stem cells (MSCs) from bone marrow (BMSCs) can successfully regenerate injured cartilage, repair chondral defects, and improve arthritis symptoms in humans.\r\n\r\n“The capability of the mesenchymal stem cells to repair and regenerate cartilage has been widely investigated. . .Several studies have demonstrated promising results in the clinical application for repair of chondral defects as an adjuvant (during surgery in some cases) or independent procedure. Intra-articular (mesenchymal stem cells (MSCs)  provide improvements in pain and function in knee osteoarthritis at short-term follow-up in many studies.”(4)\r\n<h2>Adipose-Derived Stem Cells (ADSCs)</h2>\r\nAdipose-derived stem cells (ADSCs) are a promising source of stem cells because there is an abundance of this fat tissue. Plus, it is relatively easy to harvest and has minimal side effects. Studies also back the use of ADSCs for cartilage regeneration in the treatment of arthritis.\r\n\r\n“Among the different kinds of MSCs available, adipose-derived mesenchymal stem cells (ADSCs) are emerging due to their abundancy and easiness to harvest.”(5)\r\n\r\n“Adipose stem cells are an attractive and abundant stem cell source with therapeutic applicability in diverse fields for the repair and regeneration of acute and chronically damaged tissues.” (5)\r\n<h2>Platelet Rich Plasma (PRP) Used Along with Stem Cells</h2>\r\nPRP or platelet-rich plasma, which is taken from your own blood, is a regenerative therapy that helps to boost cartilage regeneration due to its many growth factors. These growth factors promote the growth and differentiation of the stem cells as well as boost their adherence to the cartilage lesions.\r\n<h2>Stem Cells Are Gaining Popularity and Are Available at OrthoRegen®</h2>\r\nAt OrthoRegen®, we have been successfully using stem cells to treat arthritic joints for many years. The treatment is well-established at our clinic. This non-surgical injection procedure is an excellent alternative to conventional treatments and surgeries. The self-renewing, reparative, and regenerative abilities of stem cell treatments have rendered them an attractive option for the treatment of arthritis.\r\n\r\nAdditionally, at OrthoRegen®, we use the Gold Standard in Stem Cell Therapy. That means we use 4 different types of regenerative therapies. Many other clinics only use 1 or 2. We will use MSCs derived from bone marrow (BMSCs), adipose-derived stem cells (ADSCs) taken from fat, PRP or platelet-rich plasma drawn from your own blood, and then Dextrose Prolotherapy. All of these together give you the best chance at repair and regeneration in order to help you return to all of the activities you want to be involved in.\r\n\r\nStem cell treatments are gaining popularity because they work! Call us at 310-453-1234 and find out if you are a candidate for this treatment.\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Shapiro SA, Kazmerchak SE, Heckman MG, Zubair AC, O’Connor MI. A Prospective, Single-Blind, Placebo-Controlled Trial of Bone Marrow Aspirate Concentrate for Knee Osteoarthritis. Am J Sports Med. 2017 Jan;45(1):82-90.</li>\r\n 	<li>Gianakos AL, Sun L, Patel JN, Adams DM, Liporace FA. Clinical application of concentrated bone marrow aspirate in orthopaedics: A systematic review. World journal of orthopedics. 2017 Jun 18;8(6):491.</li>\r\n 	<li>Afizah H, Hui JH. Mesenchymal stem cell therapy for osteoarthritis. Journal of clinical orthopaedics and trauma. 2016 Sep 30;7(3):177-82</li>\r\n 	<li>Debnath UK. Mesenchymal Stem Cell Therapy in Chondral Defects of Knee: Current Concept Review. Indian Journal of Orthopaedics. 2020 Jul 27:1-9.</li>\r\n 	<li>Lindroos B, Suuronen R, Miettinen S. The potential of adipose stem cells in regenerative medicine. Stem Cell Rev Rep. 2011 Jun;7(2):269-91. doi: 10.1007/s12015-010-9193-7. PMID: 20853072.</li>\r\n</ol>','Stem Cells Are Gaining in Popularity','','inherit','closed','closed','','5522-revision-v1','','','2022-10-05 21:30:05','2022-10-05 21:30:05','',5522,'https://www.drfields.com/?p=5537',0,'revision','',0),(5538,9,'2022-10-05 21:48:27','2022-10-05 21:48:27','<h2>Stem Cells Are Gaining in Popularity</h2>\r\n[caption id=\"attachment_5533\" align=\"alignright\" width=\"455\"]<img class=\"wp-image-5533\" src=\"https://www.drfields.com/wp-content/uploads/2022/10/Arthritis.-Jnl-Clinical-OrthoTrauma-500x419.png\" alt=\"Arthritis. Jnl Clinical Ortho&amp;trauma\" width=\"455\" height=\"381\" /> <strong>                             Stem Cells Are Gaining in Popularity</strong>[/caption]\r\n\r\nThe limitations of traditional treatments for arthritis are causing many to seek alternatives for relieving their arthritis pain and symptoms. Even current surgical procedures for arthritis come up short since they cannot reverse the damage arthritis causes to articular cartilage. As a result, stem cell treatments and other regenerative therapies are gaining popularity because they result in the repair and regeneration of the joints.\r\n<h2>What Do You Mean Conventional Treatments Have Limitations?</h2>\r\nConventional treatments for arthritis only manage the problem. These treatments “chase the symptoms.” For example, NSAIDs and opioids may be given for the pain of arthritis. And sure, they are helpful to get relief from the pain, but these medications do not repair the joint. As time goes on, the pain and symptoms will continue because the joint is still not repaired, and surgery will likely be recommended. But surgery comes with complications and long recovery times! In an effort to avoid this scenario, people living with arthritis are seeking stem cell treatments as an alternative to surgery.\r\n<h2>Stem Cells Are Gaining Popularity Because They Regenerate Cartilage</h2>\r\nStem cell treatments have great potential due to their ability to regenerate damaged cartilage (1). Stem cell-based therapy is gaining popularity as an alternative to joint replacement, especially since it has reparative effects. However, due to the ethical concerns in using embryonic cells, the current trend is more focused on adult stem cells for cartilage regeneration.\r\n<h2>Types of Adult Stem Cells</h2>\r\nThere are various types of stem cells being utilized which include mesenchymal stem cells (MSCs), bone marrow-derived stem cells (BMSCs), and adipose-derived stem cells (ADSCs) for the regeneration of cartilage. Again, these types of adult stem cells may be chosen for cartilage regeneration.\r\n<h2>Mesenchymal Stem Cells (MSCs) from Bone Marrow</h2>\r\nMSCs derived from bone marrow (BMSCs) can repair tissues such as tendons, bony defects, and cartilage (2). Plus, when placed in the injured and degenerated areas, such as in knee and hip arthritis cases, these cells can assist in cartilage regeneration of the joint and alleviate the pain experienced by arthritis patients (3).\r\n\r\n<em>“The versatility of mesenchymal stem cells (MSCs) as a treatment modality has landed it another repair target: osteoarthritis, a crippling cartilage disease that frequently afflicts the aged population. Through many studies, this newly discovered method has been shown to significantly alleviate the pain experienced by osteoarthritic patients.”(3)</em>\r\n\r\nOnce aspirated (drawn out), mesenchymal stem cells (MSCs) are centrifuged to have a more concentrated number of stem cells to boost recovery and effectiveness (3). In addition, since these stem cells are taken directly from the person who will receive them (autologous), the chance of cross-contamination is reduced, which increases the efficacy of the therapy.\r\n\r\nStudies have shown that mesenchymal stem cells (MSCs) from bone marrow (BMSCs) can successfully regenerate injured cartilage, repair chondral defects, and improve arthritis symptoms in humans.\r\n\r\n<em>“The capability of the mesenchymal stem cells to repair and regenerate cartilage has been widely investigated. . .Several studies have demonstrated promising results in the clinical application for repair of chondral defects as an adjuvant (during surgery in some cases) or independent procedure. Intra-articular (mesenchymal stem cells (MSCs)  provide improvements in pain and function in knee osteoarthritis at short-term follow-up in many studies.”(4)</em>\r\n<h2>Adipose-Derived Stem Cells (ADSCs)</h2>\r\nAdipose-derived stem cells (ADSCs) are a promising source of stem cells because this fat tissue is abundant. Plus, it is relatively easy to harvest and has minimal side effects. Studies also back the use of ADSCs for cartilage regeneration in treating arthritis.\r\n\r\n<em>“Among the different kinds of MSCs available, adipose-derived mesenchymal stem cells (ADSCs) are emerging due to their abundancy and easiness to harvest.”(5)</em>\r\n\r\n<em>“Adipose stem cells are an attractive and abundant stem cell source with therapeutic applicability in diverse fields for the repair and regeneration of acute and chronically damaged tissues.” (5)</em>\r\n<h2>Platelet-Rich Plasma (PRP) Used Along with Stem Cells</h2>\r\nPRP, or platelet-rich plasma, taken from your blood, is a regenerative therapy that helps to boost cartilage regeneration due to its many growth factors. These growth factors promote the growth and differentiation of the stem cells and encourage their adherence to cartilage lesions.\r\n<h2>Stem Cells Are Gaining Popularity and Are Available at OrthoRegen®</h2>\r\nAt OrthoRegen®, we have been using stem cells to successfully treat arthritic joints for many years. The treatment is well-established at our clinic. This non-surgical injection procedure is an excellent alternative to conventional therapies and surgeries. In addition, the self-renewing, reparative, and regenerative abilities of stem cell treatments have rendered them an attractive option for the treatment of arthritis.\r\n\r\nAdditionally, at OrthoRegen®, we use the Gold Standard in Stem Cell Therapy. That means we use four different types of regenerative therapies. Many other clinics only use 1 or 2. We will use MSCs derived from bone marrow (BMSCs), adipose-derived stem cells (ADSCs) taken from fat, PRP, or platelet-rich plasma drawn from your blood, and then Dextrose Prolotherapy. All of these together give you the best chance at repair and regeneration to help you return to all the activities you enjoy.\r\n\r\nStem cell treatments are gaining popularity because they work! Call us at 310-453-1234 and find out if you are a candidate for this treatment.\r\n<h3>References</h3>\r\n<ol>\r\n 	<li>Shapiro SA, Kazmerchak SE, Heckman MG, Zubair AC, O’Connor MI. A Prospective, Single-Blind, Placebo-Controlled Trial of Bone Marrow Aspirate Concentrate for Knee Osteoarthritis. Am J Sports Med. 2017 Jan;45(1):82-90.</li>\r\n 	<li>Gianakos AL, Sun L, Patel JN, Adams DM, Liporace FA. Clinical application of concentrated bone marrow aspirate in orthopaedics: A systematic review. World journal of orthopedics. 2017 Jun 18;8(6):491.</li>\r\n 	<li>Afizah H, Hui JH. Mesenchymal stem cell therapy for osteoarthritis. Journal of clinical orthopaedics and trauma. 2016 Sep 30;7(3):177-82</li>\r\n 	<li>Debnath UK. Mesenchymal Stem Cell Therapy in Chondral Defects of Knee: Current Concept Review. Indian Journal of Orthopaedics. 2020 Jul 27:1-9.</li>\r\n 	<li>Lindroos B, Suuronen R, Miettinen S. The potential of adipose stem cells in regenerative medicine. Stem Cell Rev Rep. 2011 Jun;7(2):269-91. doi: 10.1007/s12015-010-9193-7. PMID: 20853072.</li>\r\n</ol>','Stem Cells Are Gaining in Popularity','','inherit','closed','closed','','5522-revision-v1','','','2022-10-05 21:48:27','2022-10-05 21:48:27','',5522,'https://www.drfields.com/?p=5538',0,'revision','',0),(5540,8,'2022-10-07 06:00:25','2022-10-07 06:00:25','<h2>Non-Surgical Knee Treatments</h2>\r\n<img class=\"alignright wp-image-5642 size-wcsquare\" title=\"Avoid Knee Surgery in Middle Age\" src=\"https://www.drfields.com/wp-content/uploads/2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-300x300.jpg\" alt=\"Avoid Knee Surgery in Middle Age\" width=\"300\" height=\"300\" />\r\n\r\nTrying to avoid knee surgery in middle age? At OrthoRegen®, we see a lot of patients who enjoy being active and who want to remain that way. They certainly do not want knee pain to get in the way of that! They also prefer to go the non-surgical route to avoid a long surgical recovery and the risks that come with surgery.\r\n\r\nMiddle-aged patients are at that age when they begin to notice degenerative changes in their knees. And they often deal with those changes, like knee instability or pain, by using knee braces, taking over-the-counter medications, and applying ice or heat packs to get some relief.\r\n<h2>Trying to Avoid Knee Surgery But Over-the-Counter Remedies Don’t Work?</h2>\r\nThey try to live with the discomfort as long as possible, but when those remedies no longer work, they seek a medical opinion. Oftentimes, surgery is recommended. But is surgery a good option?\r\n<h3><em>Studies show that arthroscopic surgery results in little to no improvement. Here’s what a few say:</em></h3>\r\nA 2022 study from Melbourne, Australia, reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\r\n\r\nAnother medical report from the Annals of the Rheumatic Diseases says, “Several recent meta-analyses based on randomized controlled trials have failed to show a treatment benefit of Arthroscopic partial meniscectomy over conservative treatment or placebo surgery for these patients.” (2)\r\n<h2>Arthritis Sufferers Can Avoid Knee Surgery too!</h2>\r\nDoes arthroscopic surgery help in cases of arthritis? Another medical journal said this, “In this controlled trial involving patients with osteoarthritis of the knee, the outcomes after arthroscopic lavage or arthroscopic debridement were no better than those after a placebo procedure.”(3)\r\n\r\nAnd then, researchers in the medical journal Arthroscopic Surgery for Degenerative Knee Arthritis and Meniscal Tears say, “We make a strong recommendation against the use of arthroscopy in nearly all patients with degenerative knee disease, based on linked systematic reviews; further research is unlikely to alter this recommendation.” (4)\r\n\r\nWow! This surgery is not recommended. Yet unfortunately, arthroscopic knee surgery is on the rise to treat middle-aged and older patients with persistent knee pain. The majority of studies show no added benefit for this surgery when compared to the control treatment of placebo and less benefit when compared to exercise. These results are important to know for the individual considering a surgical procedure that comes with risk.\r\n<h2>Regenerative Orthopedics Helps To Avoid Knee Surgery in Middle Age</h2>\r\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include stem cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All treatments are done in conjunction with dextrose Prolotherapy to comprehensively treat the entire knee joint.\r\n\r\nThese non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (5)\r\n\r\nInjuries such as meniscus tears may respond with Prolotherapy alone or may also require PRP if the injury requires more repair due to advanced meniscus damage. Our clinicians will recommend the best regenerative therapy for your particular case in order to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma Therapy, Stem Cells, and Prolotherapy, work great to stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are so much less invasive than surgery and, therefore, require minimal downtown. These treatments are a much safer and more conservative treatment with many advantages over arthroscopic surgery.\r\n\r\n<strong>References</strong>\r\n\r\n(1) O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).\r\n\r\n(2) Sihvonen R, Paavola M, Malmivaara A, Itälä A, Joukainen A, Nurmi H, Kalske J, Ikonen A, Järvelä T, Järvinen TA, Kanto K. Arthroscopic partial meniscectomy versus placebo surgery for a degenerative meniscus tear: a 2-year follow-up of the randomised controlled trial. Annals of the Rheumatic Diseases. 2017 May 18:annrheumdis-2017.\r\n\r\n(3) Moseley JB, O’malley K, Petersen NJ, Menke TJ, Brody BA, Kuykendall DH, Hollingsworth JC, Ashton CM, Wray NP. A controlled trial of arthroscopic surgery for osteoarthritis of the knee. New England Journal of Medicine. 2002 Jul 11;347(2):81-8.\r\n\r\n(4) Siemieniuk RA, Harris IA, Agoritsas T, Poolman RW, Brignardello-Petersen R, Van de Velde S, Buchbinder R, Englund M, Lytvyn L, Quinlan C, Helsingen L. Arthroscopic surgery for degenerative knee arthritis and meniscal tears: a clinical practice guideline. BMJ. 2017 May 10;357:j1982.\r\n\r\n(5) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951','Avoid Knee Surgery in Middle Age','','publish','closed','open','','avoid-knee-surgery-in-middle-age','','','2022-12-20 11:03:47','2022-12-20 11:03:47','',0,'https://www.drfields.com/?p=5540',0,'post','',0),(5541,8,'2022-10-20 03:45:36','2022-10-20 03:45:36','Copy Of Arthritis. Rthroscopic Surgery For Degenerative Knee Arthritis And Meniscal Tears','Copy Of Arthritis. Rthroscopic Surgery For Degenerative Knee Arthritis And Meniscal Tears','Copy Of Arthritis. Rthroscopic Surgery For Degenerative Knee Arthritis And Meniscal Tears','inherit','closed','closed','','copy-of-arthritis-rthroscopic-surgery-for-degenerative-knee-arthritis-and-meniscal-tears','','','2022-10-20 03:45:36','2022-10-20 03:45:36','',5540,'https://www.drfields.com/wp-content/uploads/2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears.jpg',0,'attachment','image/jpeg',0),(5542,8,'2022-10-20 03:46:46','2022-10-20 03:46:46','<a href=\"https://www.drfields.com/wp-content/uploads/2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears.jpg\"><img class=\"wp-image-5541 alignright\" title=\"Avoiding Knee Surgery in Middle Age\" src=\"https://www.drfields.com/wp-content/uploads/2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-500x419.jpg\" alt=\"Avoiding Knee Surgery in Middle Age\" width=\"300\" height=\"251\" /></a>\r\n\r\nAt OrthoRegen®, we see a lot of patients who enjoy being active and who want to remain that way. They certainly do not want knee pain to get in the way of that! They also prefer to go the non-surgical route to avoid a long surgical recovery and the risks that come with surgery.\r\n\r\nMiddle-aged patients are at that age when they begin to notice degenerative changes in their knees. And they often deal with those changes, like knee instability or pain, by using knee braces, taking over-the-counter medications, and applying ice or heat packs, to get some relief.\r\n<h2>Trying to Avoid Knee Surgery But Over-the-Counter Remedies Don’t Work?</h2>\r\nThey try to live with the discomfort as long as possible, but when those remedies no longer work, they seek a medical opinion. Oftentimes, surgery is recommended. But is surgery a good option?\r\n\r\nStudies show that arthroscopic surgery results in little to no improvement. Here’s what a few say:\r\n\r\nA 2022 study from Melbourne, Australia reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\r\n\r\nAnother medical report from the Annals of the Rheumatic Diseases says, “Several recent meta-analyses based on randomized controlled trials have failed to show a treatment benefit of Arthroscopic partial meniscectomy over conservative treatment or placebo surgery for these patients.” (2)\r\n<h2>What About in Cases of Arthritis?</h2>\r\nDoes arthroscopic surgery help in cases of arthritis? Another medical journal said this, “In this controlled trial involving patients with osteoarthritis of the knee, the outcomes after arthroscopic lavage or arthroscopic debridement were no better than those after a placebo procedure.”(3)\r\n\r\nAnd then researchers in the medical journal Arthroscopic Surgery for Degenerative Knee Arthritis and Meniscal Tears says, “We make a strong recommendation against the use of arthroscopy in nearly all patients with degenerative knee disease, based on linked systematic reviews; further research is unlikely to alter this recommendation.” (4)\r\n\r\nWow! This surgery is not being recommended. Yet unfortunately, arthroscopic knee surgery is on the rise to treat middle-aged and older patients with persistent knee pain. The majority of studies show no added benefit for this surgery when compared to the control treatment of placebo and less benefit when compared to exercise. These results are important to know for the individual considering a surgical procedure that comes with risk.\r\n<h2>Regenerative Orthopedics Helps To Avoid Knee Surgery in Middle Age</h2>\r\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include stem cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions, respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All of the treatments are done in conjunction with dextrose Prolotherapy in order to comprehensively treat the entire knee joint.\r\n\r\nThese non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (5)\r\n\r\nInjuries such as meniscus tears may respond with Prolotherapy alone, or may also require PRP if the injury requires more repair due to advanced meniscus damage. Our clinicians will recommend the best regenerative therapy for your particular case in order to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma Therapy, Stem Cells, and Prolotherapy work great to stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are so much less invasive than surgery and therefore, require minimal downtown. These treatments are a much safer and more conservative treatment with many advantages over arthroscopic surgery.\r\n\r\n<strong>References</strong>\r\n\r\n(1) O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).\r\n\r\n(2) Sihvonen R, Paavola M, Malmivaara A, Itälä A, Joukainen A, Nurmi H, Kalske J, Ikonen A, Järvelä T, Järvinen TA, Kanto K. Arthroscopic partial meniscectomy versus placebo surgery for a degenerative meniscus tear: a 2-year follow-up of the randomised controlled trial. Annals of the Rheumatic Diseases. 2017 May 18:annrheumdis-2017.\r\n\r\n(3) Moseley JB, O’malley K, Petersen NJ, Menke TJ, Brody BA, Kuykendall DH, Hollingsworth JC, Ashton CM, Wray NP. A controlled trial of arthroscopic surgery for osteoarthritis of the knee. New England Journal of Medicine. 2002 Jul 11;347(2):81-8.\r\n\r\n(4) Siemieniuk RA, Harris IA, Agoritsas T, Poolman RW, Brignardello-Petersen R, Van de Velde S, Buchbinder R, Englund M, Lytvyn L, Quinlan C, Helsingen L. Arthroscopic surgery for degenerative knee arthritis and meniscal tears: a clinical practice guideline. BMJ. 2017 May 10;357:j1982.\r\n\r\n(5) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951','Avoiding Knee Surgery in Middle Age','','inherit','closed','closed','','5540-revision-v1','','','2022-10-20 03:46:46','2022-10-20 03:46:46','',5540,'https://www.drfields.com/?p=5542',0,'revision','',0),(5545,9,'2022-10-26 21:22:10','2022-10-26 21:22:10','<h2>Non-Surgical Knee Treatments</h2>\nTrying to avoid knee surgery in middle age? At OrthoRegen®, we see a lot of patients who enjoy being active and who want to remain that way. They certainly do not want knee pain to get in the way of that! They also prefer to go the non-surgical route to avoid a long surgical recovery and the risks that come with surgery.\n\nMiddle-aged patients are at that age when they begin to notice degenerative changes in their knees. And they often deal with those changes, like knee instability or pain, by using knee braces, taking over-the-counter medications, and applying ice or heat packs to get some relief.\n<h2>Trying to Avoid Knee Surgery But Over-the-Counter Remedies Don’t Work?</h2>\nThey try to live with the discomfort as long as possible, but when those remedies no longer work, they seek a medical opinion. Oftentimes, surgery is recommended. But is surgery a good option?\n<h3><em>Studies show that arthroscopic surgery results in little to no improvement. Here’s what a few say:</em></h3>\nA 2022 study from Melbourne, Australia, reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\n\nAnother medical report from the Annals of the Rheumatic Diseases says, “Several recent meta-analyses based on randomized controlled trials have failed to show a treatment benefit of Arthroscopic partial meniscectomy over conservative treatment or placebo surgery for these patients.” (2)\n<h2>Arthritis Sufferers Can Avoid Knee Surgery too!</h2>\nDoes arthroscopic surgery help in cases of arthritis? Another medical journal said this, “In this controlled trial involving patients with osteoarthritis of the knee, the outcomes after arthroscopic lavage or arthroscopic debridement were no better than those after a placebo procedure.”(3)\n\nAnd then, researchers in the medical journal Arthroscopic Surgery for Degenerative Knee Arthritis and Meniscal Tears say, “We make a strong recommendation against the use of arthroscopy in nearly all patients with degenerative knee disease, based on linked systematic reviews; further research is unlikely to alter this recommendation.” (4)\n\nWow! This surgery is not recommended. Yet unfortunately, arthroscopic knee surgery is on the rise to treat middle-aged and older patients with persistent knee pain. The majority of studies show no added benefit for this surgery when compared to the control treatment of placebo and less benefit when compared to exercise. These results are important to know for the individual considering a surgical procedure that comes with risk.\n<h2>Regenerative Orthopedics Helps To Avoid Knee Surgery in Middle Age</h2>\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include stem cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All treatments are done in conjunction with dextrose Prolotherapy to comprehensively treat the entire knee joint.\n\nThese non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (5)\n\nInjuries such as meniscus tears may respond with Prolotherapy alone or may also require PRP if the injury requires more repair due to advanced meniscus damage. Our clinicians will recommend the best regenerative therapy for your particular case in order to strengthen, stabilize and repair your knee.\n\nRegenerative Orthopedics, such as Platelet Rich Plasma Therapy, Stem Cells, and Prolotherapy, work great to stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are so much less invasive than surgery and, therefore, require minimal downtown. These treatments are a much safer and more conservative treatment with many advantages over arthroscopic surgery.\n\n<strong>References</strong>\n\n(1) O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).\n\n(2) Sihvonen R, Paavola M, Malmivaara A, Itälä A, Joukainen A, Nurmi H, Kalske J, Ikonen A, Järvelä T, Järvinen TA, Kanto K. Arthroscopic partial meniscectomy versus placebo surgery for a degenerative meniscus tear: a 2-year follow-up of the randomised controlled trial. Annals of the Rheumatic Diseases. 2017 May 18:annrheumdis-2017.\n\n(3) Moseley JB, O’malley K, Petersen NJ, Menke TJ, Brody BA, Kuykendall DH, Hollingsworth JC, Ashton CM, Wray NP. A controlled trial of arthroscopic surgery for osteoarthritis of the knee. New England Journal of Medicine. 2002 Jul 11;347(2):81-8.\n\n(4) Siemieniuk RA, Harris IA, Agoritsas T, Poolman RW, Brignardello-Petersen R, Van de Velde S, Buchbinder R, Englund M, Lytvyn L, Quinlan C, Helsingen L. Arthroscopic surgery for degenerative knee arthritis and meniscal tears: a clinical practice guideline. BMJ. 2017 May 10;357:j1982.\n\n(5) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951','Avoid Knee Surgery in Middle Age','','inherit','closed','closed','','5540-autosave-v1','','','2022-10-26 21:22:10','2022-10-26 21:22:10','',5540,'https://www.drfields.com/?p=5545',0,'revision','',0),(5546,9,'2022-10-26 21:13:34','2022-10-26 21:13:34','<a href=\"https://www.drfields.com/wp-content/uploads/2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears.jpg\"><img class=\"wp-image-5541 alignright\" title=\"Avoiding Knee Surgery in Middle Age\" src=\"https://www.drfields.com/wp-content/uploads/2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-500x419.jpg\" alt=\"Avoiding Knee Surgery in Middle Age\" width=\"300\" height=\"251\" /></a>\r\n<h2>Avoiding Knee Surgery in Middle Age</h2>\r\nAt OrthoRegen®, we see a lot of patients who enjoy being active and who want to remain that way. They certainly do not want knee pain to get in the way of that! They also prefer to go the non-surgical route to avoid a long surgical recovery and the risks that come with surgery.\r\n\r\nMiddle-aged patients are at that age when they begin to notice degenerative changes in their knees. And they often deal with those changes, like knee instability or pain, by using knee braces, taking over-the-counter medications, and applying ice or heat packs to get some relief.\r\n<h2>Trying to Avoid Knee Surgery But Over-the-Counter Remedies Don’t Work?</h2>\r\nThey try to live with the discomfort as long as possible, but when those remedies no longer work, they seek a medical opinion. Oftentimes, surgery is recommended. But is surgery a good option?\r\n\r\nStudies show that arthroscopic surgery results in little to no improvement. Here’s what a few say:\r\n\r\nA 2022 study from Melbourne, Australia, reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\r\n\r\nAnother medical report from the Annals of the Rheumatic Diseases says, “Several recent meta-analyses based on randomized controlled trials have failed to show a treatment benefit of Arthroscopic partial meniscectomy over conservative treatment or placebo surgery for these patients.” (2)\r\n<h2>What About in Cases of Arthritis?</h2>\r\nDoes arthroscopic surgery help in cases of arthritis? Another medical journal said this, “In this controlled trial involving patients with osteoarthritis of the knee, the outcomes after arthroscopic lavage or arthroscopic debridement were no better than those after a placebo procedure.”(3)\r\n\r\nAnd then, researchers in the medical journal Arthroscopic Surgery for Degenerative Knee Arthritis and Meniscal Tears say, “We make a strong recommendation against the use of arthroscopy in nearly all patients with degenerative knee disease, based on linked systematic reviews; further research is unlikely to alter this recommendation.” (4)\r\n\r\nWow! This surgery is not recommended. Yet unfortunately, arthroscopic knee surgery is on the rise to treat middle-aged and older patients with persistent knee pain. The majority of studies show no added benefit for this surgery when compared to the control treatment of placebo and less benefit when compared to exercise. These results are important to know for the individual considering a surgical procedure that comes with risk.\r\n<h2>Regenerative Orthopedics Helps To Avoid Knee Surgery in Middle Age</h2>\r\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include stem cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All treatments are done in conjunction with dextrose Prolotherapy to comprehensively treat the entire knee joint.\r\n\r\nThese non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (5)\r\n\r\nInjuries such as meniscus tears may respond with Prolotherapy alone or may also require PRP if the injury requires more repair due to advanced meniscus damage. Our clinicians will recommend the best regenerative therapy for your particular case in order to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma Therapy, Stem Cells, and Prolotherapy, work great to stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are so much less invasive than surgery and, therefore, require minimal downtown. These treatments are a much safer and more conservative treatment with many advantages over arthroscopic surgery.\r\n\r\n<strong>References</strong>\r\n\r\n(1) O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).\r\n\r\n(2) Sihvonen R, Paavola M, Malmivaara A, Itälä A, Joukainen A, Nurmi H, Kalske J, Ikonen A, Järvelä T, Järvinen TA, Kanto K. Arthroscopic partial meniscectomy versus placebo surgery for a degenerative meniscus tear: a 2-year follow-up of the randomised controlled trial. Annals of the Rheumatic Diseases. 2017 May 18:annrheumdis-2017.\r\n\r\n(3) Moseley JB, O’malley K, Petersen NJ, Menke TJ, Brody BA, Kuykendall DH, Hollingsworth JC, Ashton CM, Wray NP. A controlled trial of arthroscopic surgery for osteoarthritis of the knee. New England Journal of Medicine. 2002 Jul 11;347(2):81-8.\r\n\r\n(4) Siemieniuk RA, Harris IA, Agoritsas T, Poolman RW, Brignardello-Petersen R, Van de Velde S, Buchbinder R, Englund M, Lytvyn L, Quinlan C, Helsingen L. Arthroscopic surgery for degenerative knee arthritis and meniscal tears: a clinical practice guideline. BMJ. 2017 May 10;357:j1982.\r\n\r\n(5) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951','Avoiding Knee Surgery in Middle Age','','inherit','closed','closed','','5540-revision-v1','','','2022-10-26 21:13:34','2022-10-26 21:13:34','',5540,'https://www.drfields.com/?p=5546',0,'revision','',0),(5547,9,'2022-10-26 21:16:09','2022-10-26 21:16:09','<a href=\"https://www.drfields.com/wp-content/uploads/2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears.jpg\"><img class=\"wp-image-5541 alignright\" title=\"Avoiding Knee Surgery in Middle Age\" src=\"https://www.drfields.com/wp-content/uploads/2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-500x419.jpg\" alt=\"Avoiding Knee Surgery in Middle Age\" width=\"300\" height=\"251\" /></a>\r\n<h2>Avoiding Knee Surgery in Middle Age</h2>\r\nDo you want to avoid knee surgery in middle age? At OrthoRegen®, we see a lot of patients who enjoy being active and who want to remain that way. They certainly do not want knee pain to get in the way of that! They also prefer to go the non-surgical route to avoid a long surgical recovery and the risks that come with surgery.\r\n\r\nMiddle-aged patients are at that age when they begin to notice degenerative changes in their knees. And they often deal with those changes, like knee instability or pain, by using knee braces, taking over-the-counter medications, and applying ice or heat packs to get some relief.\r\n<h2>Trying to Avoid Knee Surgery But Over-the-Counter Remedies Don’t Work?</h2>\r\nThey try to live with the discomfort as long as possible, but when those remedies no longer work, they seek a medical opinion. Oftentimes, surgery is recommended. But is surgery a good option?\r\n\r\nStudies show that arthroscopic surgery results in little to no improvement. Here’s what a few say:\r\n\r\nA 2022 study from Melbourne, Australia, reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\r\n\r\nAnother medical report from the Annals of the Rheumatic Diseases says, “Several recent meta-analyses based on randomized controlled trials have failed to show a treatment benefit of Arthroscopic partial meniscectomy over conservative treatment or placebo surgery for these patients.” (2)\r\n<h2>Arthritis Sufferers Can Avoid Knee Surgery too!</h2>\r\nDoes arthroscopic surgery help in cases of arthritis? Another medical journal said this, “In this controlled trial involving patients with osteoarthritis of the knee, the outcomes after arthroscopic lavage or arthroscopic debridement were no better than those after a placebo procedure.”(3)\r\n\r\nAnd then, researchers in the medical journal Arthroscopic Surgery for Degenerative Knee Arthritis and Meniscal Tears say, “We make a strong recommendation against the use of arthroscopy in nearly all patients with degenerative knee disease, based on linked systematic reviews; further research is unlikely to alter this recommendation.” (4)\r\n\r\nWow! This surgery is not recommended. Yet unfortunately, arthroscopic knee surgery is on the rise to treat middle-aged and older patients with persistent knee pain. The majority of studies show no added benefit for this surgery when compared to the control treatment of placebo and less benefit when compared to exercise. These results are important to know for the individual considering a surgical procedure that comes with risk.\r\n<h2>Regenerative Orthopedics Helps To Avoid Knee Surgery in Middle Age</h2>\r\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include stem cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All treatments are done in conjunction with dextrose Prolotherapy to comprehensively treat the entire knee joint.\r\n\r\nThese non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (5)\r\n\r\nInjuries such as meniscus tears may respond with Prolotherapy alone or may also require PRP if the injury requires more repair due to advanced meniscus damage. Our clinicians will recommend the best regenerative therapy for your particular case in order to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma Therapy, Stem Cells, and Prolotherapy, work great to stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are so much less invasive than surgery and, therefore, require minimal downtown. These treatments are a much safer and more conservative treatment with many advantages over arthroscopic surgery.\r\n\r\n<strong>References</strong>\r\n\r\n(1) O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).\r\n\r\n(2) Sihvonen R, Paavola M, Malmivaara A, Itälä A, Joukainen A, Nurmi H, Kalske J, Ikonen A, Järvelä T, Järvinen TA, Kanto K. Arthroscopic partial meniscectomy versus placebo surgery for a degenerative meniscus tear: a 2-year follow-up of the randomised controlled trial. Annals of the Rheumatic Diseases. 2017 May 18:annrheumdis-2017.\r\n\r\n(3) Moseley JB, O’malley K, Petersen NJ, Menke TJ, Brody BA, Kuykendall DH, Hollingsworth JC, Ashton CM, Wray NP. A controlled trial of arthroscopic surgery for osteoarthritis of the knee. New England Journal of Medicine. 2002 Jul 11;347(2):81-8.\r\n\r\n(4) Siemieniuk RA, Harris IA, Agoritsas T, Poolman RW, Brignardello-Petersen R, Van de Velde S, Buchbinder R, Englund M, Lytvyn L, Quinlan C, Helsingen L. Arthroscopic surgery for degenerative knee arthritis and meniscal tears: a clinical practice guideline. BMJ. 2017 May 10;357:j1982.\r\n\r\n(5) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951','Avoiding Knee Surgery in Middle Age','','inherit','closed','closed','','5540-revision-v1','','','2022-10-26 21:16:09','2022-10-26 21:16:09','',5540,'https://www.drfields.com/?p=5547',0,'revision','',0),(5548,9,'2022-10-26 21:17:29','2022-10-26 21:17:29','<h2>Non-Surgical Knee Treatments</h2>\r\nDo you want to avoid knee surgery in middle age? At OrthoRegen®, we see a lot of patients who enjoy being active and who want to remain that way. They certainly do not want knee pain to get in the way of that! They also prefer to go the non-surgical route to avoid a long surgical recovery and the risks that come with surgery.\r\n\r\nMiddle-aged patients are at that age when they begin to notice degenerative changes in their knees. And they often deal with those changes, like knee instability or pain, by using knee braces, taking over-the-counter medications, and applying ice or heat packs to get some relief.\r\n<h2>Trying to Avoid Knee Surgery But Over-the-Counter Remedies Don’t Work?</h2>\r\nThey try to live with the discomfort as long as possible, but when those remedies no longer work, they seek a medical opinion. Oftentimes, surgery is recommended. But is surgery a good option?\r\n\r\nStudies show that arthroscopic surgery results in little to no improvement. Here’s what a few say:\r\n\r\nA 2022 study from Melbourne, Australia, reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\r\n\r\nAnother medical report from the Annals of the Rheumatic Diseases says, “Several recent meta-analyses based on randomized controlled trials have failed to show a treatment benefit of Arthroscopic partial meniscectomy over conservative treatment or placebo surgery for these patients.” (2)\r\n<h2>Arthritis Sufferers Can Avoid Knee Surgery too!</h2>\r\nDoes arthroscopic surgery help in cases of arthritis? Another medical journal said this, “In this controlled trial involving patients with osteoarthritis of the knee, the outcomes after arthroscopic lavage or arthroscopic debridement were no better than those after a placebo procedure.”(3)\r\n\r\nAnd then, researchers in the medical journal Arthroscopic Surgery for Degenerative Knee Arthritis and Meniscal Tears say, “We make a strong recommendation against the use of arthroscopy in nearly all patients with degenerative knee disease, based on linked systematic reviews; further research is unlikely to alter this recommendation.” (4)\r\n\r\nWow! This surgery is not recommended. Yet unfortunately, arthroscopic knee surgery is on the rise to treat middle-aged and older patients with persistent knee pain. The majority of studies show no added benefit for this surgery when compared to the control treatment of placebo and less benefit when compared to exercise. These results are important to know for the individual considering a surgical procedure that comes with risk.\r\n<h2>Regenerative Orthopedics Helps To Avoid Knee Surgery in Middle Age</h2>\r\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include stem cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All treatments are done in conjunction with dextrose Prolotherapy to comprehensively treat the entire knee joint.\r\n\r\nThese non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (5)\r\n\r\nInjuries such as meniscus tears may respond with Prolotherapy alone or may also require PRP if the injury requires more repair due to advanced meniscus damage. Our clinicians will recommend the best regenerative therapy for your particular case in order to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma Therapy, Stem Cells, and Prolotherapy, work great to stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are so much less invasive than surgery and, therefore, require minimal downtown. These treatments are a much safer and more conservative treatment with many advantages over arthroscopic surgery.\r\n\r\n<strong>References</strong>\r\n\r\n(1) O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).\r\n\r\n(2) Sihvonen R, Paavola M, Malmivaara A, Itälä A, Joukainen A, Nurmi H, Kalske J, Ikonen A, Järvelä T, Järvinen TA, Kanto K. Arthroscopic partial meniscectomy versus placebo surgery for a degenerative meniscus tear: a 2-year follow-up of the randomised controlled trial. Annals of the Rheumatic Diseases. 2017 May 18:annrheumdis-2017.\r\n\r\n(3) Moseley JB, O’malley K, Petersen NJ, Menke TJ, Brody BA, Kuykendall DH, Hollingsworth JC, Ashton CM, Wray NP. A controlled trial of arthroscopic surgery for osteoarthritis of the knee. New England Journal of Medicine. 2002 Jul 11;347(2):81-8.\r\n\r\n(4) Siemieniuk RA, Harris IA, Agoritsas T, Poolman RW, Brignardello-Petersen R, Van de Velde S, Buchbinder R, Englund M, Lytvyn L, Quinlan C, Helsingen L. Arthroscopic surgery for degenerative knee arthritis and meniscal tears: a clinical practice guideline. BMJ. 2017 May 10;357:j1982.\r\n\r\n(5) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951','Avoiding Knee Surgery in Middle Age','','inherit','closed','closed','','5540-revision-v1','','','2022-10-26 21:17:29','2022-10-26 21:17:29','',5540,'https://www.drfields.com/?p=5548',0,'revision','',0),(5549,9,'2022-10-26 21:18:11','2022-10-26 21:18:11','<h2>Non-Surgical Knee Treatments</h2>\r\nAvoid knee surgery in middle age? At OrthoRegen®, we see a lot of patients who enjoy being active and who want to remain that way. They certainly do not want knee pain to get in the way of that! They also prefer to go the non-surgical route to avoid a long surgical recovery and the risks that come with surgery.\r\n\r\nMiddle-aged patients are at that age when they begin to notice degenerative changes in their knees. And they often deal with those changes, like knee instability or pain, by using knee braces, taking over-the-counter medications, and applying ice or heat packs to get some relief.\r\n<h2>Trying to Avoid Knee Surgery But Over-the-Counter Remedies Don’t Work?</h2>\r\nThey try to live with the discomfort as long as possible, but when those remedies no longer work, they seek a medical opinion. Oftentimes, surgery is recommended. But is surgery a good option?\r\n\r\nStudies show that arthroscopic surgery results in little to no improvement. Here’s what a few say:\r\n\r\nA 2022 study from Melbourne, Australia, reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\r\n\r\nAnother medical report from the Annals of the Rheumatic Diseases says, “Several recent meta-analyses based on randomized controlled trials have failed to show a treatment benefit of Arthroscopic partial meniscectomy over conservative treatment or placebo surgery for these patients.” (2)\r\n<h2>Arthritis Sufferers Can Avoid Knee Surgery too!</h2>\r\nDoes arthroscopic surgery help in cases of arthritis? Another medical journal said this, “In this controlled trial involving patients with osteoarthritis of the knee, the outcomes after arthroscopic lavage or arthroscopic debridement were no better than those after a placebo procedure.”(3)\r\n\r\nAnd then, researchers in the medical journal Arthroscopic Surgery for Degenerative Knee Arthritis and Meniscal Tears say, “We make a strong recommendation against the use of arthroscopy in nearly all patients with degenerative knee disease, based on linked systematic reviews; further research is unlikely to alter this recommendation.” (4)\r\n\r\nWow! This surgery is not recommended. Yet unfortunately, arthroscopic knee surgery is on the rise to treat middle-aged and older patients with persistent knee pain. The majority of studies show no added benefit for this surgery when compared to the control treatment of placebo and less benefit when compared to exercise. These results are important to know for the individual considering a surgical procedure that comes with risk.\r\n<h2>Regenerative Orthopedics Helps To Avoid Knee Surgery in Middle Age</h2>\r\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include stem cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All treatments are done in conjunction with dextrose Prolotherapy to comprehensively treat the entire knee joint.\r\n\r\nThese non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (5)\r\n\r\nInjuries such as meniscus tears may respond with Prolotherapy alone or may also require PRP if the injury requires more repair due to advanced meniscus damage. Our clinicians will recommend the best regenerative therapy for your particular case in order to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma Therapy, Stem Cells, and Prolotherapy, work great to stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are so much less invasive than surgery and, therefore, require minimal downtown. These treatments are a much safer and more conservative treatment with many advantages over arthroscopic surgery.\r\n\r\n<strong>References</strong>\r\n\r\n(1) O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).\r\n\r\n(2) Sihvonen R, Paavola M, Malmivaara A, Itälä A, Joukainen A, Nurmi H, Kalske J, Ikonen A, Järvelä T, Järvinen TA, Kanto K. Arthroscopic partial meniscectomy versus placebo surgery for a degenerative meniscus tear: a 2-year follow-up of the randomised controlled trial. Annals of the Rheumatic Diseases. 2017 May 18:annrheumdis-2017.\r\n\r\n(3) Moseley JB, O’malley K, Petersen NJ, Menke TJ, Brody BA, Kuykendall DH, Hollingsworth JC, Ashton CM, Wray NP. A controlled trial of arthroscopic surgery for osteoarthritis of the knee. New England Journal of Medicine. 2002 Jul 11;347(2):81-8.\r\n\r\n(4) Siemieniuk RA, Harris IA, Agoritsas T, Poolman RW, Brignardello-Petersen R, Van de Velde S, Buchbinder R, Englund M, Lytvyn L, Quinlan C, Helsingen L. Arthroscopic surgery for degenerative knee arthritis and meniscal tears: a clinical practice guideline. BMJ. 2017 May 10;357:j1982.\r\n\r\n(5) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951','Avoiding Knee Surgery in Middle Age','','inherit','closed','closed','','5540-revision-v1','','','2022-10-26 21:18:11','2022-10-26 21:18:11','',5540,'https://www.drfields.com/?p=5549',0,'revision','',0),(5550,9,'2022-10-26 21:18:25','2022-10-26 21:18:25','<h2>Non-Surgical Knee Treatments</h2>\r\nAvoiding knee surgery in middle age? At OrthoRegen®, we see a lot of patients who enjoy being active and who want to remain that way. They certainly do not want knee pain to get in the way of that! They also prefer to go the non-surgical route to avoid a long surgical recovery and the risks that come with surgery.\r\n\r\nMiddle-aged patients are at that age when they begin to notice degenerative changes in their knees. And they often deal with those changes, like knee instability or pain, by using knee braces, taking over-the-counter medications, and applying ice or heat packs to get some relief.\r\n<h2>Trying to Avoid Knee Surgery But Over-the-Counter Remedies Don’t Work?</h2>\r\nThey try to live with the discomfort as long as possible, but when those remedies no longer work, they seek a medical opinion. Oftentimes, surgery is recommended. But is surgery a good option?\r\n\r\nStudies show that arthroscopic surgery results in little to no improvement. Here’s what a few say:\r\n\r\nA 2022 study from Melbourne, Australia, reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\r\n\r\nAnother medical report from the Annals of the Rheumatic Diseases says, “Several recent meta-analyses based on randomized controlled trials have failed to show a treatment benefit of Arthroscopic partial meniscectomy over conservative treatment or placebo surgery for these patients.” (2)\r\n<h2>Arthritis Sufferers Can Avoid Knee Surgery too!</h2>\r\nDoes arthroscopic surgery help in cases of arthritis? Another medical journal said this, “In this controlled trial involving patients with osteoarthritis of the knee, the outcomes after arthroscopic lavage or arthroscopic debridement were no better than those after a placebo procedure.”(3)\r\n\r\nAnd then, researchers in the medical journal Arthroscopic Surgery for Degenerative Knee Arthritis and Meniscal Tears say, “We make a strong recommendation against the use of arthroscopy in nearly all patients with degenerative knee disease, based on linked systematic reviews; further research is unlikely to alter this recommendation.” (4)\r\n\r\nWow! This surgery is not recommended. Yet unfortunately, arthroscopic knee surgery is on the rise to treat middle-aged and older patients with persistent knee pain. The majority of studies show no added benefit for this surgery when compared to the control treatment of placebo and less benefit when compared to exercise. These results are important to know for the individual considering a surgical procedure that comes with risk.\r\n<h2>Regenerative Orthopedics Helps To Avoid Knee Surgery in Middle Age</h2>\r\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include stem cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All treatments are done in conjunction with dextrose Prolotherapy to comprehensively treat the entire knee joint.\r\n\r\nThese non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (5)\r\n\r\nInjuries such as meniscus tears may respond with Prolotherapy alone or may also require PRP if the injury requires more repair due to advanced meniscus damage. Our clinicians will recommend the best regenerative therapy for your particular case in order to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma Therapy, Stem Cells, and Prolotherapy, work great to stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are so much less invasive than surgery and, therefore, require minimal downtown. These treatments are a much safer and more conservative treatment with many advantages over arthroscopic surgery.\r\n\r\n<strong>References</strong>\r\n\r\n(1) O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).\r\n\r\n(2) Sihvonen R, Paavola M, Malmivaara A, Itälä A, Joukainen A, Nurmi H, Kalske J, Ikonen A, Järvelä T, Järvinen TA, Kanto K. Arthroscopic partial meniscectomy versus placebo surgery for a degenerative meniscus tear: a 2-year follow-up of the randomised controlled trial. Annals of the Rheumatic Diseases. 2017 May 18:annrheumdis-2017.\r\n\r\n(3) Moseley JB, O’malley K, Petersen NJ, Menke TJ, Brody BA, Kuykendall DH, Hollingsworth JC, Ashton CM, Wray NP. A controlled trial of arthroscopic surgery for osteoarthritis of the knee. New England Journal of Medicine. 2002 Jul 11;347(2):81-8.\r\n\r\n(4) Siemieniuk RA, Harris IA, Agoritsas T, Poolman RW, Brignardello-Petersen R, Van de Velde S, Buchbinder R, Englund M, Lytvyn L, Quinlan C, Helsingen L. Arthroscopic surgery for degenerative knee arthritis and meniscal tears: a clinical practice guideline. BMJ. 2017 May 10;357:j1982.\r\n\r\n(5) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951','Avoiding Knee Surgery in Middle Age','','inherit','closed','closed','','5540-revision-v1','','','2022-10-26 21:18:25','2022-10-26 21:18:25','',5540,'https://www.drfields.com/?p=5550',0,'revision','',0),(5551,9,'2022-10-26 21:19:39','2022-10-26 21:19:39','<h2>Non-Surgical Knee Treatments</h2>\r\nTrying to avoid knee surgery in middle age? At OrthoRegen®, we see a lot of patients who enjoy being active and who want to remain that way. They certainly do not want knee pain to get in the way of that! They also prefer to go the non-surgical route to avoid a long surgical recovery and the risks that come with surgery.\r\n\r\nMiddle-aged patients are at that age when they begin to notice degenerative changes in their knees. And they often deal with those changes, like knee instability or pain, by using knee braces, taking over-the-counter medications, and applying ice or heat packs to get some relief.\r\n<h2>Trying to Avoid Knee Surgery But Over-the-Counter Remedies Don’t Work?</h2>\r\nThey try to live with the discomfort as long as possible, but when those remedies no longer work, they seek a medical opinion. Oftentimes, surgery is recommended. But is surgery a good option?\r\n\r\nStudies show that arthroscopic surgery results in little to no improvement. Here’s what a few say:\r\n\r\nA 2022 study from Melbourne, Australia, reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\r\n\r\nAnother medical report from the Annals of the Rheumatic Diseases says, “Several recent meta-analyses based on randomized controlled trials have failed to show a treatment benefit of Arthroscopic partial meniscectomy over conservative treatment or placebo surgery for these patients.” (2)\r\n<h2>Arthritis Sufferers Can Avoid Knee Surgery too!</h2>\r\nDoes arthroscopic surgery help in cases of arthritis? Another medical journal said this, “In this controlled trial involving patients with osteoarthritis of the knee, the outcomes after arthroscopic lavage or arthroscopic debridement were no better than those after a placebo procedure.”(3)\r\n\r\nAnd then, researchers in the medical journal Arthroscopic Surgery for Degenerative Knee Arthritis and Meniscal Tears say, “We make a strong recommendation against the use of arthroscopy in nearly all patients with degenerative knee disease, based on linked systematic reviews; further research is unlikely to alter this recommendation.” (4)\r\n\r\nWow! This surgery is not recommended. Yet unfortunately, arthroscopic knee surgery is on the rise to treat middle-aged and older patients with persistent knee pain. The majority of studies show no added benefit for this surgery when compared to the control treatment of placebo and less benefit when compared to exercise. These results are important to know for the individual considering a surgical procedure that comes with risk.\r\n<h2>Regenerative Orthopedics Helps To Avoid Knee Surgery in Middle Age</h2>\r\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include stem cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All treatments are done in conjunction with dextrose Prolotherapy to comprehensively treat the entire knee joint.\r\n\r\nThese non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (5)\r\n\r\nInjuries such as meniscus tears may respond with Prolotherapy alone or may also require PRP if the injury requires more repair due to advanced meniscus damage. Our clinicians will recommend the best regenerative therapy for your particular case in order to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma Therapy, Stem Cells, and Prolotherapy, work great to stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are so much less invasive than surgery and, therefore, require minimal downtown. These treatments are a much safer and more conservative treatment with many advantages over arthroscopic surgery.\r\n\r\n<strong>References</strong>\r\n\r\n(1) O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).\r\n\r\n(2) Sihvonen R, Paavola M, Malmivaara A, Itälä A, Joukainen A, Nurmi H, Kalske J, Ikonen A, Järvelä T, Järvinen TA, Kanto K. Arthroscopic partial meniscectomy versus placebo surgery for a degenerative meniscus tear: a 2-year follow-up of the randomised controlled trial. Annals of the Rheumatic Diseases. 2017 May 18:annrheumdis-2017.\r\n\r\n(3) Moseley JB, O’malley K, Petersen NJ, Menke TJ, Brody BA, Kuykendall DH, Hollingsworth JC, Ashton CM, Wray NP. A controlled trial of arthroscopic surgery for osteoarthritis of the knee. New England Journal of Medicine. 2002 Jul 11;347(2):81-8.\r\n\r\n(4) Siemieniuk RA, Harris IA, Agoritsas T, Poolman RW, Brignardello-Petersen R, Van de Velde S, Buchbinder R, Englund M, Lytvyn L, Quinlan C, Helsingen L. Arthroscopic surgery for degenerative knee arthritis and meniscal tears: a clinical practice guideline. BMJ. 2017 May 10;357:j1982.\r\n\r\n(5) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951','Avoid Knee Surgery in Middle Age','','inherit','closed','closed','','5540-revision-v1','','','2022-10-26 21:19:39','2022-10-26 21:19:39','',5540,'https://www.drfields.com/?p=5551',0,'revision','',0),(5552,9,'2022-10-26 21:22:16','2022-10-26 21:22:16','<h2>Non-Surgical Knee Treatments</h2>\r\nTrying to avoid knee surgery in middle age? At OrthoRegen®, we see a lot of patients who enjoy being active and who want to remain that way. They certainly do not want knee pain to get in the way of that! They also prefer to go the non-surgical route to avoid a long surgical recovery and the risks that come with surgery.\r\n\r\nMiddle-aged patients are at that age when they begin to notice degenerative changes in their knees. And they often deal with those changes, like knee instability or pain, by using knee braces, taking over-the-counter medications, and applying ice or heat packs to get some relief.\r\n<h2>Trying to Avoid Knee Surgery But Over-the-Counter Remedies Don’t Work?</h2>\r\nThey try to live with the discomfort as long as possible, but when those remedies no longer work, they seek a medical opinion. Oftentimes, surgery is recommended. But is surgery a good option?\r\n<h3><em>Studies show that arthroscopic surgery results in little to no improvement. Here’s what a few say:</em></h3>\r\nA 2022 study from Melbourne, Australia, reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\r\n\r\nAnother medical report from the Annals of the Rheumatic Diseases says, “Several recent meta-analyses based on randomized controlled trials have failed to show a treatment benefit of Arthroscopic partial meniscectomy over conservative treatment or placebo surgery for these patients.” (2)\r\n<h2>Arthritis Sufferers Can Avoid Knee Surgery too!</h2>\r\nDoes arthroscopic surgery help in cases of arthritis? Another medical journal said this, “In this controlled trial involving patients with osteoarthritis of the knee, the outcomes after arthroscopic lavage or arthroscopic debridement were no better than those after a placebo procedure.”(3)\r\n\r\nAnd then, researchers in the medical journal Arthroscopic Surgery for Degenerative Knee Arthritis and Meniscal Tears say, “We make a strong recommendation against the use of arthroscopy in nearly all patients with degenerative knee disease, based on linked systematic reviews; further research is unlikely to alter this recommendation.” (4)\r\n\r\nWow! This surgery is not recommended. Yet unfortunately, arthroscopic knee surgery is on the rise to treat middle-aged and older patients with persistent knee pain. The majority of studies show no added benefit for this surgery when compared to the control treatment of placebo and less benefit when compared to exercise. These results are important to know for the individual considering a surgical procedure that comes with risk.\r\n<h2>Regenerative Orthopedics Helps To Avoid Knee Surgery in Middle Age</h2>\r\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include stem cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All treatments are done in conjunction with dextrose Prolotherapy to comprehensively treat the entire knee joint.\r\n\r\nThese non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (5)\r\n\r\nInjuries such as meniscus tears may respond with Prolotherapy alone or may also require PRP if the injury requires more repair due to advanced meniscus damage. Our clinicians will recommend the best regenerative therapy for your particular case in order to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma Therapy, Stem Cells, and Prolotherapy, work great to stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are so much less invasive than surgery and, therefore, require minimal downtown. These treatments are a much safer and more conservative treatment with many advantages over arthroscopic surgery.\r\n\r\n<strong>References</strong>\r\n\r\n(1) O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).\r\n\r\n(2) Sihvonen R, Paavola M, Malmivaara A, Itälä A, Joukainen A, Nurmi H, Kalske J, Ikonen A, Järvelä T, Järvinen TA, Kanto K. Arthroscopic partial meniscectomy versus placebo surgery for a degenerative meniscus tear: a 2-year follow-up of the randomised controlled trial. Annals of the Rheumatic Diseases. 2017 May 18:annrheumdis-2017.\r\n\r\n(3) Moseley JB, O’malley K, Petersen NJ, Menke TJ, Brody BA, Kuykendall DH, Hollingsworth JC, Ashton CM, Wray NP. A controlled trial of arthroscopic surgery for osteoarthritis of the knee. New England Journal of Medicine. 2002 Jul 11;347(2):81-8.\r\n\r\n(4) Siemieniuk RA, Harris IA, Agoritsas T, Poolman RW, Brignardello-Petersen R, Van de Velde S, Buchbinder R, Englund M, Lytvyn L, Quinlan C, Helsingen L. Arthroscopic surgery for degenerative knee arthritis and meniscal tears: a clinical practice guideline. BMJ. 2017 May 10;357:j1982.\r\n\r\n(5) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951','Avoid Knee Surgery in Middle Age','','inherit','closed','closed','','5540-revision-v1','','','2022-10-26 21:22:16','2022-10-26 21:22:16','',5540,'https://www.drfields.com/?p=5552',0,'revision','',0),(5553,8,'2022-10-28 03:50:40','2022-10-28 03:50:40','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" target=\"_blank\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankle/\">Sprained Ankle?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Stubborn, Persistent Neck Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-partial-rotator-cuff-tear-repair/\">Non-surgical Partial Rotator Cuff Tear Repair</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/are-cortisone-shots-a-good-option/\">Are Cortisone Shots a Good Option?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/\">Try Regenerative Treatments for Your Hip Pain or Injury</a></li>\r\n 	<li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	<li class=\"last\"><a title=\"Treating Knee Pain and Injuries with Regenerative Orthopedics\" href=\"/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics/\">Treating Knee Pain and Injuries with Regenerative Orthopedics</a></li>\r\n 	<li class=\"last\"><a title=\"Keep Looking Forward Despite COVID-19\" href=\"/articles/health-news/dealing-with-covid-19/\">Keep Looking Forward Despite COVID-19</a></li>\r\n 	<li class=\"last\"><a title=\"COVID-19 Advice: Don’t Fear the Fear Itself!\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</a></li>\r\n 	<li class=\"last\"><a title=\"Rotator Cuff Tendonitis\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/\">Rotator Cuff Tendonitis</a></li>\r\n 	<li><a title=\"Allergic Reactions and Problems of Corrosion with Joint Replacements\" href=\"https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/\">Allergic Reactions and Problems of Corrosion with Joint Replacements\r\n</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-10-28 03:50:40','2022-10-28 03:50:40','',2109,'https://www.drfields.com/?p=5553',0,'revision','',0),(5554,8,'2022-10-28 04:18:56','2022-10-28 04:18:56','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" target=\"_blank\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankle/\">Sprained Ankle?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Stubborn, Persistent Neck Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-partial-rotator-cuff-tear-repair/\">Non-surgical Partial Rotator Cuff Tear Repair</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/are-cortisone-shots-a-good-option/\">Are Cortisone Shots a Good Option?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/\">Try Regenerative Treatments for Your Hip Pain or Injury</a></li>\r\n 	<li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-10-28 04:18:56','2022-10-28 04:18:56','',2109,'https://www.drfields.com/?p=5554',0,'revision','',0),(5555,8,'2022-10-28 04:19:46','2022-10-28 04:19:46','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" target=\"_blank\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankle/\">Sprained Ankle?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Stubborn, Persistent Neck Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-partial-rotator-cuff-tear-repair/\">Non-surgical Partial Rotator Cuff Tear Repair</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/are-cortisone-shots-a-good-option/\">Are Cortisone Shots a Good Option?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/\">Try Regenerative Treatments for Your Hip Pain or Injury</a></li>\r\n 	<li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n 	<li class=\"last\"><a title=\"Is Your Hip Bursitis Treatment Working?\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/\">Is Your Hip Bursitis Treatment Working?</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-10-28 04:19:46','2022-10-28 04:19:46','',2109,'https://www.drfields.com/?p=5555',0,'revision','',0),(5556,8,'2022-10-28 04:20:08','2022-10-28 04:20:08','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" target=\"_blank\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankle/\">Sprained Ankle?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Stubborn, Persistent Neck Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-partial-rotator-cuff-tear-repair/\">Non-surgical Partial Rotator Cuff Tear Repair</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/are-cortisone-shots-a-good-option/\">Are Cortisone Shots a Good Option?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/\">Try Regenerative Treatments for Your Hip Pain or Injury</a></li>\r\n 	<li class=\"last\"><a title=\"Nagging Back Pain\" href=\"/articles/regenerative-orthopedics/nagging-back-pain/\">Nagging Back Pain</a></li>\r\n 	<li><a title=\"Treat Sciatica Pain Non-Surgically\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/\">Treat Sciatica Pain Non-Surgically</a></li>\r\n 	<li class=\"last\"><a title=\"Stem Cell Therapy at OrthoRegen&lt;sup&gt;®&lt;/sup&gt; – Why We are Different\" href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/\">Stem Cell Therapy at OrthoRegen<sup>®</sup> – Why We are Different</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-10-28 04:20:08','2022-10-28 04:20:08','',2109,'https://www.drfields.com/?p=5556',0,'revision','',0),(5559,8,'2023-09-20 02:29:49','2023-09-20 02:29:49','<div class=\"clear\"></div>\n<div id=\"slider\">\n<div class=\"owl-carousel slider-carousel\">\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\n</div>\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\n</div>\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\n</div>\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\n</div>\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\n</div>\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\nPeter A. Fields, MD, DC</span>\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\nsuccessfully climbed</span>\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\nTanzania, Africa.19,341 feet!!!</span>\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\n</div>\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\nThe Athletic Doc<sup>®</sup></span>\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\n</div>\n</div>\n</div>\n<div class=\"clear\"></div>\n<div class=\"jumbotron-fluid\">\n<div class=\"row\">\n<div class=\"col-md-4 box1\">\n\nWhat\'s\n<h3>New</h3>\n<ul>\n 	<li><a title=\"Osteoarthritis Knee Treatment\" href=\"/articles/osteoarthritis-knee-treatment/\">Osteoarthritis Knee Treatment</a></li>\n 	<li><a title=\"Hip Replacement Alternatives\" href=\"/articles/hip-replacement-alternatives/\">Hip Replacement Alternatives</a></li>\n 	<li><a href=\"/articles/regenerative-orthopedics/acl-tear-repair/\">ACL TEAR Repair</a></li>\n 	<li><a href=\"/articles/regenerative-orthopedics/foot-pain-treatment/\">Foot Pain Treatment</a></li>\n 	<li><a href=\"/articles/regenerative-orthopedics/arthritis-neck-treatment/\">Arthritis Neck Treatment</a></li>\n 	<li><a href=\"/articles/regenerative-orthopedics/back-pain-specialist/\">Back Pain Specialist</a></li>\n 	<li><a href=\"/articles/non-surgical-carpal-tunnel-treatment/\">Tennis Elbow Treatment</a></li>\n</ul>\n</div>\n<div id=\"testimonials\" class=\"col-md-4 box2\">\n\nPatient\n<h3>Testimonials</h3>\n<strong>Video:</strong>\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\n<div class=\"testimonial-item\">\n\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\n\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\n<h3>Larry</h3>\n<h4>Stem Cell Knee</h4>\n</div>\n<div class=\"testimonial-item\">\n\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\n\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\n<h3>Chris, Pro Basketball Player</h3>\n<h4>PRP Knee</h4>\n</div>\n<div class=\"testimonial-item\">\n\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\n\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\n<h3>Mary</h3>\n<h4>Stem Cell Hip</h4>\n</div>\n</div>\n<strong>Written:</strong>\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\n<div class=\"testimonial-item\">\n\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\n<h3 style=\"margin-left: 0;\">Mindy</h3>\n<h4 style=\"margin-left: 0;\">Elbow</h4>\n</div>\n<div class=\"testimonial-item\">\n\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\n<h3 style=\"margin-left: 0;\">Robert</h3>\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\n</div>\n<div class=\"testimonial-item\">\n\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\n<h3 style=\"margin-left: 0;\">Lois</h3>\n<h4 style=\"margin-left: 0;\">Knee</h4>\n</div>\n</div>\n</div>\n<div class=\"col-md-4 box3\">\n\nNews &amp;\n<h3>Events</h3>\n<ul>\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\n</ul>\n</div>\n</div>\n</div>\n<div id=\"search-articles\">\n<div class=\"container\">\n<div class=\"col-md-12\">\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\n<input type=\"submit\" value=\"Search\" /></form></div>\n</div>\n</div>\n<div id=\"intro\">\n<div class=\"container\">\n<div class=\"col-md-12\">\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\n\n</div>\n</div>\n</div>\n<div class=\"clear\"></div>\n<div class=\"about\">\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\n<div class=\"col-md-7 about_holder\">\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\n<p class=\"intro_text\">Medical Physician and Chiropractor\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\n\n</div>\n<div class=\"col-md-3\">\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\n<div class=\"about_text\">\n<h3>About</h3>\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\n\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\n\n</div>\n</div>\n<div class=\"col-md-3\">\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\n<div class=\"about_text\">\n<h3>11x Ironman</h3>\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\n\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\n\n</div>\n</div>\n</div>\n<div class=\"clear\"></div>\n&nbsp;\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-autosave-v1','','','2023-09-20 02:29:49','2023-09-20 02:29:49','',2109,'https://www.drfields.com/?p=5559',0,'revision','',0),(5560,8,'2022-10-31 04:35:51','2022-10-31 04:35:51','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-4.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/07/Slider-2v05072022.png\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-santa-monica-pier.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-9.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/05/header-orthoregen-ocean-mountains.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2020/12/Kili-top-header-2.jpg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/12/Sider-01-V8.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" target=\"_blank\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankle/\">Sprained Ankle?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Stubborn, Persistent Neck Pain</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-10-31 04:35:51','2022-10-31 04:35:51','',2109,'https://www.drfields.com/?p=5560',0,'revision','',0),(5561,8,'2022-11-01 17:02:23','2022-11-01 17:02:23','','iwp_log_6361511f18487','','publish','closed','closed','','iwp_log_6361511f18487','','','2022-11-01 17:02:23','2022-11-01 17:02:23','',0,'https://www.drfields.com/iwp_log/iwp_log_6361511f18487/',0,'iwp_log','',0),(5562,8,'2022-11-01 17:02:40','2022-11-01 17:02:40','','iwp_log_636151303f62b','','publish','closed','closed','','iwp_log_636151303f62b','','','2022-11-01 17:02:40','2022-11-01 17:02:40','',0,'https://www.drfields.com/iwp_log/iwp_log_636151303f62b/',0,'iwp_log','',0),(5563,8,'2022-11-01 17:03:12','2022-11-01 17:03:12','','iwp_log_63615150697fb','','publish','closed','closed','','iwp_log_63615150697fb','','','2022-11-01 17:03:12','2022-11-01 17:03:12','',0,'https://www.drfields.com/iwp_log/iwp_log_63615150697fb/',0,'iwp_log','',0),(5564,8,'2022-11-01 17:04:49','2022-11-01 17:04:49','','iwp_log_636151b125fe7','','publish','closed','closed','','iwp_log_636151b125fe7','','','2022-11-01 17:04:49','2022-11-01 17:04:49','',0,'https://www.drfields.com/iwp_log/iwp_log_636151b125fe7/',0,'iwp_log','',0),(5573,8,'2022-11-02 09:33:55','2022-11-02 09:33:55','0 Header Orthoregen V1 021120','0 Header Orthoregen V1 021120','0 Header Orthoregen V1 021120','inherit','closed','closed','','0_header-orthoregen-v1-021120','','','2022-11-02 09:33:55','2022-11-02 09:33:55','',0,'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg',0,'attachment','image/jpeg',0),(5574,8,'2022-11-02 09:33:59','2022-11-02 09:33:59','0 Kili Top Header V1 021120','0 Kili Top Header V1 021120','0 Kili Top Header V1 021120','inherit','closed','closed','','0_kili-top-header-v1-021120','','','2022-11-02 09:34:00','2022-11-02 09:34:00','',0,'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg',0,'attachment','image/jpeg',0),(5575,8,'2022-11-02 09:34:05','2022-11-02 09:34:05','Dr Fields V1 021120','Dr Fields V1 021120','Dr Fields V1 021120','inherit','closed','closed','','dr-fields-v1-021120','','','2022-11-02 09:34:05','2022-11-02 09:34:05','',0,'https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png',0,'attachment','image/png',0),(5576,8,'2022-11-02 09:34:09','2022-11-02 09:34:09','Header Orthoregen Ocean Mountains V1 021120','Header Orthoregen Ocean Mountains V1 021120','Header Orthoregen Ocean Mountains V1 021120','inherit','closed','closed','','header-orthoregen-ocean-mountains-v1-021120','','','2022-11-02 09:34:09','2022-11-02 09:34:09','',0,'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg',0,'attachment','image/jpeg',0),(5577,8,'2022-11-02 09:34:13','2022-11-02 09:34:13','Header Orthoregen Santa Monica Pier V1 021120','Header Orthoregen Santa Monica Pier V1 021120','Header Orthoregen Santa Monica Pier V1 021120','inherit','closed','closed','','header-orthoregen-santa-monica-pier-v1-021120','','','2022-11-02 09:34:13','2022-11-02 09:34:13','',0,'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg',0,'attachment','image/jpeg',0),(5578,8,'2022-11-02 09:34:17','2022-11-02 09:34:17','Header Orthoregen V1 021120','Header Orthoregen V1 021120','Header Orthoregen V1 021120','inherit','closed','closed','','header-orthoregen-v1-021120','','','2022-11-02 09:34:17','2022-11-02 09:34:17','',0,'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg',0,'attachment','image/jpeg',0),(5579,8,'2022-11-02 09:34:21','2022-11-02 09:34:21','Sider 01 V1 021120','Sider 01 V1 021120','Sider 01 V1 021120','inherit','closed','closed','','sider-01-v1-021120','','','2022-11-02 09:34:21','2022-11-02 09:34:21','',0,'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg',0,'attachment','image/jpeg',0),(5580,8,'2022-11-02 09:34:25','2022-11-02 09:34:25','Slider V1 021120','Slider V1 021120','Slider V1 021120','inherit','closed','closed','','slider-v1-021120','','','2022-11-02 09:34:25','2022-11-02 09:34:25','',0,'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg',0,'attachment','image/jpeg',0),(5581,8,'2022-11-02 09:36:51','2022-11-02 09:36:51','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-4-min-v021122.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-2v05072022-min-v2.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v021122.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-V8-v021122.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" target=\"_blank\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankle/\">Sprained Ankle?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Stubborn, Persistent Neck Pain</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-11-02 09:36:51','2022-11-02 09:36:51','',2109,'https://www.drfields.com/?p=5581',0,'revision','',0),(5582,8,'2022-11-02 09:42:29','2022-11-02 09:42:29','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" target=\"_blank\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankle/\">Sprained Ankle?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Stubborn, Persistent Neck Pain</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-11-02 09:42:29','2022-11-02 09:42:29','',2109,'https://www.drfields.com/?p=5582',0,'revision','',0),(5583,8,'2022-11-02 09:47:55','2022-11-02 09:47:55','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" target=\"_blank\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankle/\">Sprained Ankle?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Stubborn, Persistent Neck Pain</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-11-02 09:47:55','2022-11-02 09:47:55','',2109,'https://www.drfields.com/?p=5583',0,'revision','',0),(5584,9,'2022-11-02 23:07:13','2022-11-02 23:07:13','<h4>Stem Cell Treatment for Joints and Spine - Alternative To Joint Replacement</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Knee Treatment</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong></div>\r\n<i>Regenerating a person\'s joints and spine is not something of the future: <strong>it is happening today!</strong> Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\r\n<div class=\"clear\"></div>\r\n<h4>Who Needs Stem Cell Treatment?</h4>\r\nStem Cell Treatment for Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"alignleft wp-image-732 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\" width=\"215\" height=\"167\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"alignright wp-image-735 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n<h3><strong>Stem Cell Treatment Results</strong></h3>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <a href=\"tel:+[phone_raw]\">[phone]</a>, to make an appointment now.','Stem Cell Treatment','','inherit','closed','closed','','431-revision-v1','','','2022-11-02 23:07:13','2022-11-02 23:07:13','',431,'https://www.drfields.com/?p=5584',0,'revision','',0),(5585,9,'2022-11-02 23:08:34','2022-11-02 23:08:34','<h4>Stem Cell Treatment Los Angeles for Joints and Spine - Alternative To Joint Replacement</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Knee Treatment</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong></div>\r\n<i>Regenerating a person\'s joints and spine is not something of the future: <strong>it is happening today!</strong> Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\r\n<div class=\"clear\"></div>\r\n<h4>Who Needs Stem Cell Treatment in Los Angeles?</h4>\r\nStem Cell Treatment for the Joints and Spine is a great alternative for people who have been told they need joint replacement surgery. At OrthoRegen<sup>®</sup>, we utilize the Gold Standard in Stem Cell Treatments, which is an effective non-surgical alternative, and one that very well may help you<span style=\"text-decoration: underline;\"> <em>Avoid Joint Replacement Surgery</em></span>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>If you have been told</strong> that you have any of these conditions...\r\n<ul>\r\n 	<li>Bone-on-bone</li>\r\n 	<li>Severe arthritis</li>\r\n 	<li>A degenerated joint</li>\r\n 	<li>Your cartilage has been worn away,</li>\r\n 	<li>The only option left is to have your joint replaced...</li>\r\n</ul>\r\n...you now have another option.\r\n\r\nThat\'s because your Stem Cells have the potential to regenerate into any type of body tissue. Their use in regenerative medicine is growing in popularity in the medical world as an <em>alternative to invasive orthopedic surgeries including total joint replacement</em>. The remarkable thing about Stem Cells is the fact that when you inject them into a specific area of the body, they know what kinds of cells your body needs – for example, meniscus cells or cartilage cells.\r\n<h4>What is our Stem Cell Procedure for Joints and Spine?</h4>\r\nOur Stem Cell technique we use for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to get a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have their joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once surgery is done, it cannot be un-done!</em></strong>\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments and more.  All this allows for repair and remodeling of cartilage, bone and other soft tissue structures such as meniscus, labrums, ligaments and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate not only the above tissues but to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar to, but not identical to bone marrow cells.\r\n\r\n<img class=\"alignleft wp-image-732 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1.jpg\" alt=\"Stem Cell1\" width=\"215\" height=\"167\" />Not all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate the stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulates full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies using bone marrow and fat stem cells for articular cartilage lesions have been done. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers studied the treatment results from the bone marrow mesenchymal stem cells with success.\r\n\r\n<img class=\"alignright wp-image-735 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" />Articular Cartilage has limited repair capacity and marrow-stimulation procedures such as micro fracture, osteochondral grafts and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n<h3><strong>Stem Cell Treatment Results</strong></h3>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1 year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <a href=\"tel:+[phone_raw]\">[phone]</a>, to make an appointment now.','Stem Cell Treatment Los Angeles','','inherit','closed','closed','','431-revision-v1','','','2022-11-02 23:08:34','2022-11-02 23:08:34','',431,'https://www.drfields.com/?p=5585',0,'revision','',0),(5586,9,'2022-11-02 23:15:00','2022-11-02 23:15:00','Stem Cell Therapy Los Angeles','Stem Cells.1','Stem Cells.1','inherit','closed','closed','','stem-cells-1','','','2022-11-02 23:15:36','2022-11-02 23:15:36','',431,'https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.1.png',0,'attachment','image/png',0),(5587,9,'2022-11-02 23:22:05','2022-11-02 23:22:05','Stem Cells.','Stem Cells.','Stem Cells.','inherit','closed','closed','','stem-cells-2','','','2022-11-02 23:22:05','2022-11-02 23:22:05','',431,'https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.-1.png',0,'attachment','image/png',0),(5588,9,'2022-11-02 23:24:04','2022-11-02 23:24:04','<h4>Stem Cell Treatment Los Angeles for Joints and Spine - Alternative To Joint Replacement</h4>\r\nOrthoRegen<strong><sup>®</sup></strong> is a medical clinic specializing in Stem Cell Treatment in the Los Angeles area. If you are looking to avoid surgery in your joints or spine, then we are what you are looking for since we offer effective non-surgical alternatives for joint and spine repair.\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"YoXRC87KNuM\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg\" alt=\"Stem Cell Knee\"]\r\n<strong>Knee Treatment</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"IajO8GpFeng\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg\" alt=\"Stem Cell Hip\"]\r\n<strong>Stem Cell Hip</strong></div>\r\n<i>Regenerating a person\'s joints and spine is not something of the future: <strong>it is happening today!</strong> Last year in the US, there were 3.5 million total joint replacements and another 35 million joint surgeries. Surgery can always be done but never un-done, which is why people in increasing numbers are seeking non-surgical alternatives to joint and spine surgery. Cutting out a part of a joint or injecting it with steroids is not the answer. Stem Cell Treatment for Joints is the answer. </i>\r\n\r\nWatch the testimonials on this page, or see many more on our <a href=\"https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/\">Testimonials Page</a>.\r\n<h4>Who Needs Stem Cell Treatment in Los Angeles?</h4>\r\n<img class=\"size-medium wp-image-5586\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.1-400x500.png\" alt=\"Stem Cells.1\" width=\"400\" height=\"500\" />\r\n\r\nOur Stem Cell technique for joints and spine is <strong><em>The Gold Standard</em></strong> for stem cell regeneration. We use all four kinds of regenerative Orthopedics for this procedure to help you avoid invasive surgery. Many other clinics only use one or two of these procedures, but not all four.\r\n<ul>\r\n 	<li>We use bone marrow stem cells as well as adipose (fat) stem cells.</li>\r\n 	<li>Both solutions are then centrifuged and concentrated to produce a solution with the highest amount of stem cells. We inject both of these sources of stem cells into the joint.</li>\r\n 	<li>We then use <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> to accelerate their healing.</li>\r\n 	<li>In addition, we use <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place.</li>\r\n</ul>\r\nUsing two sources of stem cells (bone and fat) as well as PRP Prolotherapy and Dextrose Prolotherapy is <strong><em>The Gold Standard</em></strong> for stem cell regeneration.\r\n\r\nAgain, this procedure is usually used for cases where you have been told to have your joint replaced, have bone-on-bone, advanced arthritis, severe meniscus or labral tear, or other aggressive injuries. This is only recommended after a very thorough history and physical exam. It is important to have an x-ray to confirm what is known from the above exams. Not everyone is a candidate for this procedure, but many are.\r\n\r\nWhy is it so important that you know about this alternative to joint replacement surgery? Because <strong><em>once the surgery is done, it cannot be undone!</em></strong>\r\n\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%; margin: 0 auto;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Why Stem Cell Therapy Works: Types of Stem Cells</h4>\r\n<strong>Bone Marrow Stem Cells</strong>\r\nStem cells are contained within the bone marrow. This has been shown in studies for many years now. Harvesting them from one’s own body eliminates the possibility of cross-reaction or rejection since it is your own body supplying the stem cells.  This autologous (meaning \"obtained from oneself\") bone marrow aspirate contains not only mesenchymal stem cells (cells that are able to develop into the tissues such as bone and cartilage) but also progenitor cells, which are a different type of stem-like cell.\r\n\r\nBone marrow also contains other cells that produce growth factors and cytokines (cells that affect the behavior of other cells). These cytokines aid in fibroblastic proliferation. Fibroblasts are cells that synthesize the structural framework.  Stem cells have the ability to form tissues like bone, cartilage, labrum, meniscus, ligaments, and more.  All this allows for the repair and remodeling of cartilage, bone, and other soft tissue structures such as meniscus, labrums, ligaments, and tendons.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n\r\n<strong>Adipose Stem Cells </strong>\r\nOn the other hand, adipose tissue is also a rich source of adult stem cells. These cells, harvested from one’s own fat, have an extensive proliferative capacity and can differentiate into multiple cell lines. Stem cells derived from adipose tissue can differentiate ligaments, bone, cartilage, muscle, or ligaments. This type of stem cell is now being used in musculoskeletal medicine to regenerate the above tissues and to provide a scaffolding to hold the stem cells in place and allow them to grow. Adipose-derived stem cells are similar but not identical to bone marrow cells.\r\n\r\n<img class=\"wp-image-5587 size-medium alignleft\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.-1-500x500.png\" alt=\"Stem Cells.\" width=\"500\" height=\"500\" />\r\n\r\nNot all injuries require stem cells to heal. The success rate with traditional Prolotherapy (both Dextrose and PRP) is in the 90%+ range for all patients. However, for those cases of advanced arthritis, severe meniscus tears or labral tears, bone-on-bone, aggressive injuries, or where one has been told to have their joint replaced, some may need to use Stem Cell Prolotherapy to regenerate the defective joint. I use this in combination with <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy</a> (to accelerate stem cell healing) and with <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Dextrose Prolotherapy</a> (to strengthen and stabilize the surrounding support structures).\r\n\r\nAs more and more research comes out, what is known by a few physicians is being proven. A recent research study was conducted and titled, “Transplanted bone marrow and fat mesenchymal stem cells with platelet-rich fibrin glue scaffold stimulate full-thickness cartilage defects to heal.”\r\n<h4>Research On Stem Cell Treatment for Joints</h4>\r\nSeveral human studies have been done using bone marrow and fat stem cells for articular cartilage lesions. Articular cartilage is a type of cartilage that covers joint surfaces and is most susceptible to injury compared to other types of cartilage. Researchers at Cairo University School of Medicine and the University of Pittsburgh School of Medicine reported on the use of bone marrow mesenchymal stem cells and a platelet-rich fibrin scaffold to heal full-thickness cartilage defects in five patients. The researchers successfully studied the treatment results from the bone marrow mesenchymal stem cells.\r\n\r\n<img class=\"alignright wp-image-735 size-full\" title=\"stem cell treatment los angeles\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg\" alt=\"Stem Cell2\" width=\"200\" height=\"267\" />Articular Cartilage has limited repair capacity, and marrow-stimulation procedures such as microfracture, osteochondral grafts, and autologous cartilage implantations have had limited success in articular cartilage defects. The researchers from this study chose mesenchymal stem cells from bone marrow because these have the ability to differentiate into cartilage cells. In the case of these five patients, the bone marrow was harvested from the iliac crest (hip bone).\r\n\r\nPlatelets were used as a scaffold because platelets contain various growth factors that stimulate cartilage regeneration. The researchers expected that the biological effect of multiple growth factors on tissue regeneration is greater than that of a single growth factor.\r\n<h3><strong>Stem Cell Treatment Results</strong></h3>\r\nThe patients showed significant functional improvement. Two of the patients underwent arthroscopy after the transplantation and showed near-normal articular cartilage. Three postoperative MRIs revealed complete healing and congruent cartilage tissue, whereas two patient MRIs showed incomplete (it was partial and not 100% complete) congruity in the cartilage tissue.\r\n\r\nThe researchers concluded that the transplantation of autologous culture-expanded bone marrow-mesenchymal stem cells in platelet rich-fibrin glue shows great promise in the treatment of full-thickness articular cartilage defects, particularly large-sized defects (&gt;4 cm).  The positive 1-year clinical outcomes support further randomized controlled clinical trials of this treatment modality with larger numbers of patients and longer follow-up periods.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>How Can Stem Cell Therapy Help Your Joints or Spine</h4>\r\nIf you\'ve been told that you need to have joint replacement surgery -- whether that\'s knee replacement surgery, hip replacement surgery, shoulder replacement surgery (or any other joint), or if you\'ve been told that you need to have spine surgery due to arthritis, bone-on-bone, or other conditions, you owe it to yourself to examine all other alternatives to surgery before going under the knife.\r\n\r\nJoint Replacement Surgery and Spine Surgery are very invasive procedures, and each comes with its own long list of reasons to avoid it at all costs: hospital stays, potential (dangerous) complications, long recovery times, and the need to have the procedure redone at some point. Make an appointment with Dr. Peter Fields for an evaluation to see if you are a good candidate for my Gold Standard Stem Cell Treatment for Joints and Spine. Click the blue button on this page, or call <a href=\"tel:+[phone_raw]\">[phone]</a> to make an appointment now.','Stem Cell Treatment Los Angeles','','inherit','closed','closed','','431-revision-v1','','','2022-11-02 23:24:04','2022-11-02 23:24:04','',431,'https://www.drfields.com/?p=5588',0,'revision','',0),(5589,8,'2022-11-05 04:39:02','2022-11-05 04:39:02','<img class=\"size-full wp-image-5591\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-Cover-reprint.jpg\" alt=\"Townsend Letter Cover Reprint\" width=\"955\" height=\"1232\" />\r\n\r\n[caption id=\"attachment_5592\" align=\"alignnone\" width=\"955\"]<img class=\"size-full wp-image-5592\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-page-1.jpg\" alt=\"Townsend Letter Page 1\" width=\"955\" height=\"1277\" /> Page 1[/caption]\r\n\r\n[caption id=\"attachment_5590\" align=\"alignnone\" width=\"955\"]<img class=\"size-full wp-image-5590\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-page-2.jpg\" alt=\"Townsend Letter Page 2\" width=\"955\" height=\"1252\" /> Page 2[/caption]','Townsend Letter: Avoiding Surgery With Stem Cell/PRP/Prolotherapy','','publish','closed','open','','townsend-letter-avoiding-surgery-with-stem-cell-prp-prolotherapy','','','2022-12-02 06:07:05','2022-12-02 06:07:05','',0,'https://www.drfields.com/?p=5589',0,'post','',0),(5590,8,'2022-11-05 04:36:23','2022-11-05 04:36:23','Townsend Letter Page 2','Townsend Letter Page 2','Townsend Letter Page 2','inherit','closed','closed','','townsend-letter-page-2','','','2022-11-05 04:36:23','2022-11-05 04:36:23','',5589,'https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-page-2.jpg',0,'attachment','image/jpeg',0),(5591,8,'2022-11-05 04:37:09','2022-11-05 04:37:09','Townsend Letter Cover Reprint','Townsend Letter Cover Reprint','Townsend Letter Cover Reprint','inherit','closed','closed','','townsend-letter-cover-reprint','','','2022-11-05 04:37:09','2022-11-05 04:37:09','',5589,'https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-Cover-reprint.jpg',0,'attachment','image/jpeg',0),(5592,8,'2022-11-05 04:37:26','2022-11-05 04:37:26','Townsend Letter Page 1','Townsend Letter Page 1','Townsend Letter Page 1','inherit','closed','closed','','townsend-letter-page-1','','','2022-11-05 04:37:26','2022-11-05 04:37:26','',5589,'https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-page-1.jpg',0,'attachment','image/jpeg',0),(5593,8,'2022-11-05 04:39:02','2022-11-05 04:39:02','<img src=\"https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-Cover-reprint.jpg\" alt=\"Townsend Letter Cover Reprint\" width=\"955\" height=\"1232\" class=\"size-full wp-image-5591\" />\r\n\r\n[caption id=\"attachment_5592\" align=\"alignnone\" width=\"955\"]<img src=\"https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-page-1.jpg\" alt=\"Townsend Letter Page 1\" width=\"955\" height=\"1277\" class=\"size-full wp-image-5592\" /> Page 1[/caption]\r\n\r\n[caption id=\"attachment_5590\" align=\"alignnone\" width=\"955\"]<img src=\"https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-page-2.jpg\" alt=\"Townsend Letter Page 2\" width=\"955\" height=\"1252\" class=\"size-full wp-image-5590\" /> Page 2[/caption]','Townsend Letter: Essential Fatty Acids and Inflammation','','inherit','closed','closed','','5589-revision-v1','','','2022-11-05 04:39:02','2022-11-05 04:39:02','',5589,'https://www.drfields.com/?p=5593',0,'revision','',0),(5594,8,'2022-11-05 04:42:00','2022-11-05 04:42:00','Townsend Letter Cover Reprint','Townsend Letter','Townsend Letter Cover Reprint','inherit','closed','closed','','townsend-letter-cover-reprint-2','','','2022-11-05 04:42:09','2022-11-05 04:42:09','',5589,'https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-Cover-reprint-1.jpg',0,'attachment','image/jpeg',0),(5596,8,'2022-11-08 03:43:47','2022-11-08 03:43:47','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n         <li><a href=\"https://www.drfields.com/articles/magazine-column/townsend-letter-essential-fatty-acids-and-inflammation/\"  rel=\"noopener\">Townsend Letter: Essential Fatty Acids And Inflammation</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankle/\">Sprained Ankle?</a></li>\r\n 	<li><a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Stubborn, Persistent Neck Pain</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-11-08 03:43:47','2022-11-08 03:43:47','',2109,'https://www.drfields.com/?p=5596',0,'revision','',0),(5598,8,'2022-11-08 06:00:18','2022-11-08 06:00:18','<img class=\"wp-image-5599 alignright\" title=\"Non-Surgical Shoulder Repair in Los Angeles, CA\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/shoulder-pain.-Hauser.png\" alt=\"Non-Surgical Shoulder Repair in Los Angeles, CA\" width=\"300\" height=\"251\" />\r\n<h2>Regenerative Orthopedics:</h2>\r\n<h2><em>Non-Surgical Shoulder Repair in Los Angeles</em></h2>\r\nAt OrthoRegen®, we offer non-surgical shoulder repair in the Los Angeles area. We have seen many patients suffering from shoulder pain, and some have even been told they need surgery. Your diagnosis may be arthritis, or it may be a rotator cuff tear. Either way, if you have been told you need surgery, regenerative therapies may be able to help you avoid the surgery.\r\n\r\nIt is not unusual for our patients to tell us about the long list of treatment options they have tried. Some brought temporary relief. But these patients are in our office because they continued to have pain and are seeking a treatment that will actually bring pain relief and repair the problem.\r\n\r\nOur goal is to help shoulder pain patients accomplish their pain relief and restoration of function goals! Once we do a physical examination and take a medical history, we can assess which regenerative treatment will most effectively repair your shoulder from the degeneration or damage sustained from an injury.\r\n<h2>Shoulder Pain</h2>\r\nThe shoulder is a pretty amazing joint! The shoulder\'s muscles and other soft tissue allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso, and allow the arm to move a full 360°. This tremendous range of motion of the shoulder also makes it extremely unstable and far more prone to injury than other joints.\r\n<h2>Looking for Non-Surgical Shoulder Repair in Los Angeles for a Rotator Cuff Injury?</h2>\r\nShoulder pain from an injury often involves the rotator cuff! There are four muscles inside the shoulder that allow us to rotate our arms. These four muscles form a cuff of tendons around the top of the arm. With a rotator cuff tear, one or more of the tendons of those four rotator cuff muscles of the shoulder are involved.\r\n\r\nThe rotator cuff helps with all that shoulder movement we discussed earlier. When there is a tear, the tendons are weakened and will degenerate, increasing their susceptibility to even more tears. Rotator cuff tears will create a cycle of instability in the shoulder and set it up for more damage if not treated.\r\n<h2>Fixing the Joint Instability with Non-Surgical Rotator Cuff Repair in Los Angeles</h2>\r\nCommon treatments for shoulder instability from tears often involve rotator cuff strengthening exercises to help stabilize the shoulder and assist with movement. Unfortunately, even though these treatments may help to strengthens the shoulder muscles, they often do not resolve the underlying problem of shoulder instability.\r\n\r\n<strong>To fix shoulder joint instability, the shoulder tendons, ligaments, and shoulder capsular structures must all be strengthened. And that’s where Regenerative Orthopedics comes in!</strong>\r\n<h2>Regenerative Orthopedics Effectively Repair Partial Rotator Cuff Tears</h2>\r\nRegenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells, are excellent options for rotator cuff injuries because the treatments involve the repair and regeneration of soft tissue. Plus, these non-surgical therapies offer repair with a short recovery time.\r\n\r\nAs a first-line alternative to costly and invasive surgery, Regenerative Orthopedics addresses the root cause of the problem by repairing the tear and the instability. And that leads to a better recovery.\r\n\r\nThe regenerative treatment of choice will depend on the severity of the injury or degeneration.\r\n<h2>Are Prolotherapy, Stem Cells, and PRP Effective for Rotator Cuff Tears?</h2>\r\nIn the journal Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders, Dextrose Prolotherapy was able to reduce pain and disability of traumatic and non-traumatic rotator cuff conditions.1\r\n\r\nThe Orthopedic Research and Reviews journal reports, “Stem cell treatment for rotator cuff tears is a promising development because they have been shown to result in an anti-inflammatory response, improved tendon regeneration, optimized collagen fiber arrangement, higher load-to-failure, and higher tensile strength. . . In a non-randomized controlled trial comparing the effects of an exercise regime to PRP combined with bone marrow aspirate (BMAC-PRP complex) on partial rotator cuff tears, the experimental group demonstrated a significantly greater improvement in (pain, function and disability) scores compared to controls at three months. Tear size decreased after BMAC-PRP injection although this did not significantly differ from controls.”2\r\n<h2>Looking for Non-Surgical Shoulder Repair in Los Angeles for Arthritis?</h2>\r\nWas a shoulder replacement surgery recommended due to degeneration from arthritis? We commonly see people who are looking at non-surgical alternatives to shoulder replacement. Sometimes they have already had surgery, but they are not satisfied with the results. Or, possibly, the patient is exploring their options.\r\n\r\nAgain, they’ve often tried a bunch of treatments, but the symptom relief was only temporary. And the orthopedic surgeon wants to pursue a shoulder replacement. Is surgery the only option? The patient doesn’t want to continue to only “manage symptoms” but rather would like to fix the issue once and for all. Regenerative Orthopedics can do that!\r\n<h2>Shoulder Arthritis</h2>\r\nArthritis of the shoulder means there is a gradual wearing of the articular cartilage. The arthritis is commonly also accompanied by degenerative rotator cuff tears.\r\n\r\nThe degeneration occurs because the shoulder is unstable and allows abnormal movement. The shoulder is a ball and socket joint. When the shoulder is unstable, the ball and shoulder socket rub against each other in an abnormal way because the rotator cuff tendons, muscles, labrum, and shoulder ligaments are damaged and are not able to stabilize as they should. At some point, there was injury to the soft tissue structures, making the joint weaker and unstable. That allowed for the abnormal motion that began the cycle leading to the degeneration of the shoulder joint and the eventual shoulder arthritis.\r\n\r\nShoulder replacement is not without risk. It may come with complications. Surgical patients also face surgical recovery and the time for rehabilitation. There may be a lot of downtime and limitation in exercise, physical activity, work, and sports involvement. But shoulder replacement surgery is not the only way!\r\n<h2>Regenerative Orthopedics for Non-Surgical Shoulder Repair in Los Angeles for Arthritis</h2>\r\nPatients with chronic shoulder pain from arthritis report significant improvements in many clinically relevant parameters and overall quality of life after receiving Regenerative Orthopedics such as Dextrose Prolotherapy.\r\n\r\nPreviously, we mentioned the results in the journal Clinical Medicine Insights. Arthritis and Musculoskeletal Disorders showed that Dextrose Prolotherapy could reduce pain and disability in both traumatic and non-traumatic rotator cuff conditions (including degenerative arthritis).\r\n\r\nThe research revealed that the ligament and tendon attachment treatment resulted in superior long-term pain improvement and patient satisfaction compared with blinded saline injection.\r\n\r\nAnother study published in the journal Archives of Physical Medicine and Rehabilitation demonstrated that dextrose Prolotherapy improved pain levels, disability, strength, and shoulder active range of motion in patients with chronic rotator cuff disease. Again, chronic disease will include a degenerative condition.3\r\n\r\nThe Regenerative Orthopedics Alternative for Non-Surgical Rotator Cuff Repair in Los Angeles, CA\r\n\r\nRegenerative Orthopedics is the non-surgical alternative that can offer repair without the risks and prolonged recovery time of surgery.\r\n\r\nPRP or Stem Cells may be recommended depending on the injury or degeneration involved. PRP and Stem Cells accelerate healing by using your own blood platelets and/or stem cells. These are always used in conjunction with Dextrose Prolotherapy to provide the most comprehensive treatment and repair.\r\n\r\nPlease contact us at OrthoRegen®, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.\r\n\r\n<strong>References</strong>\r\n\r\n1Hauser RA, Lackner JB, Steilen-Matias D, Harris DK. A systematic review of dextrose prolotherapy for chronic musculoskeletal pain. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2016 Jan;9:CMAMD-S39160.\r\n\r\n2Thangarajah T, Lo IK. Optimal Management of Partial Thickness Rotator Cuff Tears: Clinical Considerations and Practical Management. Orthopedic Research and Reviews. 2022;14:59.\r\n\r\n3Bertrand H, Reeves KD, Bennett CJ, Bicknell S, Cheng AL. Dextrose prolotherapy versus control injections in painful rotator cuff tendinopathy. Archives of physical medicine and rehabilitation. 2016 Jan 31;97(1):17-25.','Non-Surgical Shoulder Repair in Los Angeles, CA','','publish','closed','open','','non-surgical-shoulder-repair-in-los-angeles-ca','','','2022-11-09 19:23:02','2022-11-09 19:23:02','',0,'https://www.drfields.com/?p=5598',0,'post','',0),(5599,8,'2022-11-09 04:49:07','2022-11-09 04:49:07','Shoulder Pain. Hauser','Shoulder Pain. Hauser','Shoulder Pain. Hauser','inherit','closed','closed','','shoulder-pain-hauser','','','2022-11-09 04:49:07','2022-11-09 04:49:07','',5598,'https://www.drfields.com/wp-content/uploads/2022/11/shoulder-pain.-Hauser.png',0,'attachment','image/png',0),(5600,8,'2022-11-09 04:50:45','2022-11-09 04:50:45','<img class=\"wp-image-5599 alignright\" title=\"Non-Surgical Shoulder Repair in Los Angeles, CA\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/shoulder-pain.-Hauser.png\" alt=\"Non-Surgical Shoulder Repair in Los Angeles, CA\" width=\"300\" height=\"251\" />\r\n\r\nAt OrthoRegen®, we offer non-surgical shoulder repair in the Los Angeles area. We have seen many patients who suffer from shoulder pain, and some of those have even been told they need surgery. Your diagnosis may be arthritis or it may be a rotator cuff tear. Either way, if you have been told you need surgery, regenerative therapies may be able to help you avoid the surgery.\r\n\r\nIt is not unusual for our patients to tell us about the long list of treatment options they have tried. Some brought temporary relief. But these patients are in our office because the pain continued, leaving them seeking a treatment that will actually bring pain relief and repair the problem.\r\n\r\nOur goal is to help shoulder pain patients accomplish their pain relief and restoration of function goals! Once we do a physical examination and take a medical history, we can assess which regenerative treatment will be the most effective at repairing your shoulder from the degeneration or from the damage sustained from an injury.\r\n<h2>Shoulder Pain</h2>\r\nThe shoulder is a pretty amazing joint! The muscles and other soft tissue of the shoulder allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso and allow the arm to move a full 360°. This tremendous range of motion of the shoulder also makes it extremely unstable and far more prone to injury than other joints.\r\n<h2>Looking for Non-Surgical Shoulder Repair in Los Angeles for a Rotator Cuff Injury?</h2>\r\nShoulder pain from an injury often involves the rotator cuff! There are four muscles inside of the shoulder that allow us to rotate our arm. These four muscles form a cuff of tendons around the top of the arm. With a rotator cuff tear, one or more of the tendons of those four rotator cuff muscles of the shoulder are involved.\r\n\r\nThe rotator cuff helps with all that shoulder movement we discussed earlier. When there is a tear, the tendons are weakened and will degenerate, increasing their susceptibility to even more tearing. Rotator cuff tears will create a cycle of instability in the shoulder and set it up for more damage if not treated.\r\n<h2>Fixing the Joint Instability with Non-Surgical Rotator Cuff Repair in Los Angeles</h2>\r\nCommon treatments for shoulder instability from tears often involve rotator cuff strengthening exercises to help stabilize the shoulder and assist with movement. Unfortunately, even though these help strengthen the shoulder muscles, they often do not resolve the underlying problem of shoulder instability.\r\n\r\n<strong>To fix shoulder joint instability, the shoulder tendons, ligaments and shoulder capsular structures must all be strengthened. And that’s where Regenerative Orthopedics come in!</strong>\r\n<h2>Regenerative Orthopedics Effectively Repair Partial Rotator Cuff Tears</h2>\r\nRegenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells, are excellent options for rotator cuff injuries because the treatments involve the repair and the regeneration of soft tissue. Plus, these non-surgical therapies offer repair with a short recovery time.\r\n\r\nAs a first-line alternative to costly and invasive surgery, Regenerative Orthopedics address the root cause of the problem by repairing the tear and the instability. And that leads to a better recovery.\r\n\r\nThe regenerative treatment of choice will depend on the severity of the injury or degeneration.\r\n<h2>Are Prolotherapy, Stem Cells, and PRP Effective for Rotator Cuff Tears?</h2>\r\nIn the journal Clinical Medicine Insights. Arthritis and Musculoskeletal Disorders, Dextrose Prolotherapy was able to reduce pain and disability of traumatic and non-traumatic rotator cuff conditions.1\r\n\r\nThe Orthopedic Research and Reviews journal reports, “Stem cell treatment for rotator cuff tears is a promising development because they have been shown to result in an anti-inflammatory response, improved tendon regeneration, optimized collagen fiber arrangement, higher load-to-failure, and higher tensile strength. . . In a non-randomized controlled trial comparing the effects of an exercise regime to PRP combined with bone marrow aspirate (BMAC-PRP complex) on partial rotator cuff tears, the experimental group demonstrated a significantly greater improvement in (pain, function and disability) scores compared to controls at three months. Tear size decreased after BMAC-PRP injection although this did not significantly differ from controls.”2\r\n<h2>Looking for Non-Surgical Shoulder Repair in Los Angeles for Arthritis?</h2>\r\nWas a shoulder replacement surgery recommended due to degeneration from arthritis? We commonly see people who are looking at non-surgical alternatives to shoulder replacement. Sometimes they have already had surgery but they are not satisfied with the results. Or possibly, the patient is exploring their options.\r\n\r\nAgain, they’ve often tried a bunch of treatments, but the symptom relief was only temporary. And the orthopedic surgeon wants to pursue a shoulder replacement. Is surgery the only option? The patient doesn’t want to continue to only “manage symptoms”, but rather, would like to fix the issue once and for all. Regenerative Orthopedics can do that!\r\n<h2>Shoulder Arthritis</h2>\r\nArthritis of the shoulder means there is a gradual wearing of the articular cartilage. The arthritis is commonly also accompanied by degenerative rotator cuff tears.\r\n\r\nThe degeneration occurs because the shoulder is unstable and is allowing for abnormal movement. The shoulder is a ball and socket joint. When the shoulder is unstable, the ball and shoulder socket rub against each other in an abnormal way because the rotator cuff tendons, muscles, labrum, and shoulder ligaments are damaged, and are not able to stabilize like they should. At some point, there was injury to the soft tissue structures, making the joint weaker, and unstable. That allowed for the abnormal motion that began the cycle leading to the degeneration of the shoulder joint and the eventual shoulder arthritis.\r\n\r\nShoulder replacement is not without risk. It may come with complications. Surgical patients also face surgical recovery and the time for rehabilitation. There may be a lot of downtime and limitation in exercise, physical activity, work, and sports involvement. But shoulder replacement surgery is not the only way!\r\n<h2>Regenerative Orthopedics for Non-Surgical Shoulder Repair in Los Angeles for Arthritis</h2>\r\nPatients with chronic shoulder pain from arthritis report significant improvements in many clinically relevant parameters and overall quality of life after receiving Regenerative Orthopedics such as Dextrose Prolotherapy.\r\n\r\nPreviously, we mentioned the results in the journal Clinical Medicine Insights. Arthritis and Musculoskeletal Disorders, which showed that Dextrose Prolotherapy was able to reduce pain and disability in both traumatic and non-traumatic rotator cuff conditions (which includes degenerative arthritis).\r\n\r\nThe research revealed that treatment of the ligament and tendon attachments resulted in superior long-term pain improvement and patient satisfaction compared with blinded saline injection.\r\n\r\nAnother study published in the journal Archives of Physical Medicine and Rehabilitation, demonstrated that dextrose Prolotherapy improved pain levels, disability, strength, and shoulder active range of motion in patients with chronic rotator cuff disease. Again, chronic disease will include a degenerative condition.3\r\n\r\nThe Regenerative Orthopedics Alternative for Non-Surgical Rotator Cuff Repair in Los Angeles, CA\r\n\r\nRegenerative Orthopedics is the non-surgical alternative that can offer repair without the risks and prolonged recovery time of surgery.\r\n\r\nDepending on the injury or degeneration involved, PRP or Stem Cells may be recommended. PRP and Stem Cells accelerate healing by using your own blood platelets and/or stem cells. These are always utilized in conjunction with Dextrose Prolotherapy in order to provide the most comprehensive treatment and repair.\r\n\r\nPlease contact us at OrthoRegen®, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.\r\n\r\n<strong>References</strong>\r\n\r\n1Hauser RA, Lackner JB, Steilen-Matias D, Harris DK. A systematic review of dextrose prolotherapy for chronic musculoskeletal pain. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2016 Jan;9:CMAMD-S39160.\r\n\r\n2Thangarajah T, Lo IK. Optimal Management of Partial Thickness Rotator Cuff Tears: Clinical Considerations and Practical Management. Orthopedic Research and Reviews. 2022;14:59.\r\n\r\n3Bertrand H, Reeves KD, Bennett CJ, Bicknell S, Cheng AL. Dextrose prolotherapy versus control injections in painful rotator cuff tendinopathy. Archives of physical medicine and rehabilitation. 2016 Jan 31;97(1):17-25.','Non-Surgical Shoulder Repair in Los Angeles, CA','','inherit','closed','closed','','5598-revision-v1','','','2022-11-09 04:50:45','2022-11-09 04:50:45','',5598,'https://www.drfields.com/?p=5600',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (5601,8,'2022-11-09 04:54:38','2022-11-09 04:54:38','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-shoulder-repair-in-los-angeles-ca/\">Non-Surgical Shoulder Repair in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/magazine-column/townsend-letter-essential-fatty-acids-and-inflammation/\" rel=\"noopener\">Townsend Letter: Essential Fatty Acids And Inflammation</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankle/\">Sprained Ankle?</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-11-09 04:54:38','2022-11-09 04:54:38','',2109,'https://www.drfields.com/?p=5601',0,'revision','',0),(5603,9,'2022-11-09 19:21:01','2022-11-09 19:21:01','<img class=\"wp-image-5599 alignright\" title=\"Non-Surgical Shoulder Repair in Los Angeles, CA\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/shoulder-pain.-Hauser.png\" alt=\"Non-Surgical Shoulder Repair in Los Angeles, CA\" width=\"300\" height=\"251\" />\n<h2>Regenerative Orthopedics:</h2>\n<h2><em>Non-Surgical Shoulder Repair in Los Angeles</em></h2>\nAt OrthoRegen®, we offer non-surgical shoulder repair in the Los Angeles area. We have seen many patients suffering from shoulder pain, and some have even been told they need surgery. Your diagnosis may be arthritis, or it may be a rotator cuff tear. Either way, if you have been told you need surgery, regenerative therapies may be able to help you avoid the surgery.\n\nIt is not unusual for our patients to tell us about the long list of treatment options they have tried. Some brought temporary relief. But these patients are in our office because they continued to have pain and are seeking a treatment that will actually bring pain relief and repair the problem.\n\nOur goal is to help shoulder pain patients accomplish their pain relief and restoration of function goals! Once we do a physical examination and take a medical history, we can assess which regenerative treatment will most effectively repair your shoulder from the degeneration or damage sustained from an injury.\n<h2>Shoulder Pain</h2>\nThe shoulder is a pretty amazing joint! The shoulder\'s muscles and other soft tissue allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso, and allow the arm to move a full 360°. This tremendous range of motion of the shoulder also makes it extremely unstable and far more prone to injury than other joints.\n<h2>Looking for Non-Surgical Shoulder Repair in Los Angeles for a Rotator Cuff Injury?</h2>\nShoulder pain from an injury often involves the rotator cuff! There are four muscles inside the shoulder that allow us to rotate our arms. These four muscles form a cuff of tendons around the top of the arm. With a rotator cuff tear, one or more of the tendons of those four rotator cuff muscles of the shoulder are involved.\n\nThe rotator cuff helps with all that shoulder movement we discussed earlier. When there is a tear, the tendons are weakened and will degenerate, increasing their susceptibility to even more tears. Rotator cuff tears will create a cycle of instability in the shoulder and set it up for more damage if not treated.\n<h2>Fixing the Joint Instability with Non-Surgical Rotator Cuff Repair in Los Angeles</h2>\nCommon treatments for shoulder instability from tears often involve rotator cuff strengthening exercises to help stabilize the shoulder and assist with movement. Unfortunately, even though these treatments may help to strengthens the shoulder muscles, they often do not resolve the underlying problem of shoulder instability.\n\n<strong>To fix shoulder joint instability, the shoulder tendons, ligaments, and shoulder capsular structures must all be strengthened. And that’s where Regenerative Orthopedics comes in!</strong>\n<h2>Regenerative Orthopedics Effectively Repair Partial Rotator Cuff Tears</h2>\nRegenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells, are excellent options for rotator cuff injuries because the treatments involve the repair and regeneration of soft tissue. Plus, these non-surgical therapies offer repair with a short recovery time.\n\nAs a first-line alternative to costly and invasive surgery, Regenerative Orthopedics addresses the root cause of the problem by repairing the tear and the instability. And that leads to a better recovery.\n\nThe regenerative treatment of choice will depend on the severity of the injury or degeneration.\n<h2>Are Prolotherapy, Stem Cells, and PRP Effective for Rotator Cuff Tears?</h2>\nIn the journal Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders, Dextrose Prolotherapy was able to reduce pain and disability of traumatic and non-traumatic rotator cuff conditions.1\n\nThe Orthopedic Research and Reviews journal reports, “Stem cell treatment for rotator cuff tears is a promising development because they have been shown to result in an anti-inflammatory response, improved tendon regeneration, optimized collagen fiber arrangement, higher load-to-failure, and higher tensile strength. . . In a non-randomized controlled trial comparing the effects of an exercise regime to PRP combined with bone marrow aspirate (BMAC-PRP complex) on partial rotator cuff tears, the experimental group demonstrated a significantly greater improvement in (pain, function and disability) scores compared to controls at three months. Tear size decreased after BMAC-PRP injection although this did not significantly differ from controls.”2\n<h2>Looking for Non-Surgical Shoulder Repair in Los Angeles for Arthritis?</h2>\nWas a shoulder replacement surgery recommended due to degeneration from arthritis? We commonly see people who are looking at non-surgical alternatives to shoulder replacement. Sometimes they have already had surgery but they are not satisfied with the results. Or possibly, the patient is exploring their options.\n\nAgain, they’ve often tried a bunch of treatments, but the symptom relief was only temporary. And the orthopedic surgeon wants to pursue a shoulder replacement. Is surgery the only option? The patient doesn’t want to continue to only “manage symptoms”, but rather, would like to fix the issue once and for all. Regenerative Orthopedics can do that!\n<h2>Shoulder Arthritis</h2>\nArthritis of the shoulder means there is a gradual wearing of the articular cartilage. The arthritis is commonly also accompanied by degenerative rotator cuff tears.\n\nThe degeneration occurs because the shoulder is unstable and is allowing for abnormal movement. The shoulder is a ball and socket joint. When the shoulder is unstable, the ball and shoulder socket rub against each other in an abnormal way because the rotator cuff tendons, muscles, labrum, and shoulder ligaments are damaged, and are not able to stabilize like they should. At some point, there was injury to the soft tissue structures, making the joint weaker, and unstable. That allowed for the abnormal motion that began the cycle leading to the degeneration of the shoulder joint and the eventual shoulder arthritis.\n\nShoulder replacement is not without risk. It may come with complications. Surgical patients also face surgical recovery and the time for rehabilitation. There may be a lot of downtime and limitation in exercise, physical activity, work, and sports involvement. But shoulder replacement surgery is not the only way!\n<h2>Regenerative Orthopedics for Non-Surgical Shoulder Repair in Los Angeles for Arthritis</h2>\nPatients with chronic shoulder pain from arthritis report significant improvements in many clinically relevant parameters and overall quality of life after receiving Regenerative Orthopedics such as Dextrose Prolotherapy.\n\nPreviously, we mentioned the results in the journal Clinical Medicine Insights. Arthritis and Musculoskeletal Disorders, which showed that Dextrose Prolotherapy was able to reduce pain and disability in both traumatic and non-traumatic rotator cuff conditions (which includes degenerative arthritis).\n\nThe research revealed that treatment of the ligament and tendon attachments resulted in superior long-term pain improvement and patient satisfaction compared with blinded saline injection.\n\nAnother study published in the journal Archives of Physical Medicine and Rehabilitation, demonstrated that dextrose Prolotherapy improved pain levels, disability, strength, and shoulder active range of motion in patients with chronic rotator cuff disease. Again, chronic disease will include a degenerative condition.3\n\nThe Regenerative Orthopedics Alternative for Non-Surgical Rotator Cuff Repair in Los Angeles, CA\n\nRegenerative Orthopedics is the non-surgical alternative that can offer repair without the risks and prolonged recovery time of surgery.\n\nDepending on the injury or degeneration involved, PRP or Stem Cells may be recommended. PRP and Stem Cells accelerate healing by using your own blood platelets and/or stem cells. These are always utilized in conjunction with Dextrose Prolotherapy in order to provide the most comprehensive treatment and repair.\n\nPlease contact us at OrthoRegen®, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.\n\n<strong>References</strong>\n\n1Hauser RA, Lackner JB, Steilen-Matias D, Harris DK. A systematic review of dextrose prolotherapy for chronic musculoskeletal pain. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2016 Jan;9:CMAMD-S39160.\n\n2Thangarajah T, Lo IK. Optimal Management of Partial Thickness Rotator Cuff Tears: Clinical Considerations and Practical Management. Orthopedic Research and Reviews. 2022;14:59.\n\n3Bertrand H, Reeves KD, Bennett CJ, Bicknell S, Cheng AL. Dextrose prolotherapy versus control injections in painful rotator cuff tendinopathy. Archives of physical medicine and rehabilitation. 2016 Jan 31;97(1):17-25.','Non-Surgical Shoulder Repair in Los Angeles, CA','','inherit','closed','closed','','5598-autosave-v1','','','2022-11-09 19:21:01','2022-11-09 19:21:01','',5598,'https://www.drfields.com/?p=5603',0,'revision','',0),(5604,9,'2022-11-09 19:23:02','2022-11-09 19:23:02','<img class=\"wp-image-5599 alignright\" title=\"Non-Surgical Shoulder Repair in Los Angeles, CA\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/shoulder-pain.-Hauser.png\" alt=\"Non-Surgical Shoulder Repair in Los Angeles, CA\" width=\"300\" height=\"251\" />\r\n<h2>Regenerative Orthopedics:</h2>\r\n<h2><em>Non-Surgical Shoulder Repair in Los Angeles</em></h2>\r\nAt OrthoRegen®, we offer non-surgical shoulder repair in the Los Angeles area. We have seen many patients suffering from shoulder pain, and some have even been told they need surgery. Your diagnosis may be arthritis, or it may be a rotator cuff tear. Either way, if you have been told you need surgery, regenerative therapies may be able to help you avoid the surgery.\r\n\r\nIt is not unusual for our patients to tell us about the long list of treatment options they have tried. Some brought temporary relief. But these patients are in our office because they continued to have pain and are seeking a treatment that will actually bring pain relief and repair the problem.\r\n\r\nOur goal is to help shoulder pain patients accomplish their pain relief and restoration of function goals! Once we do a physical examination and take a medical history, we can assess which regenerative treatment will most effectively repair your shoulder from the degeneration or damage sustained from an injury.\r\n<h2>Shoulder Pain</h2>\r\nThe shoulder is a pretty amazing joint! The shoulder\'s muscles and other soft tissue allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso, and allow the arm to move a full 360°. This tremendous range of motion of the shoulder also makes it extremely unstable and far more prone to injury than other joints.\r\n<h2>Looking for Non-Surgical Shoulder Repair in Los Angeles for a Rotator Cuff Injury?</h2>\r\nShoulder pain from an injury often involves the rotator cuff! There are four muscles inside the shoulder that allow us to rotate our arms. These four muscles form a cuff of tendons around the top of the arm. With a rotator cuff tear, one or more of the tendons of those four rotator cuff muscles of the shoulder are involved.\r\n\r\nThe rotator cuff helps with all that shoulder movement we discussed earlier. When there is a tear, the tendons are weakened and will degenerate, increasing their susceptibility to even more tears. Rotator cuff tears will create a cycle of instability in the shoulder and set it up for more damage if not treated.\r\n<h2>Fixing the Joint Instability with Non-Surgical Rotator Cuff Repair in Los Angeles</h2>\r\nCommon treatments for shoulder instability from tears often involve rotator cuff strengthening exercises to help stabilize the shoulder and assist with movement. Unfortunately, even though these treatments may help to strengthens the shoulder muscles, they often do not resolve the underlying problem of shoulder instability.\r\n\r\n<strong>To fix shoulder joint instability, the shoulder tendons, ligaments, and shoulder capsular structures must all be strengthened. And that’s where Regenerative Orthopedics comes in!</strong>\r\n<h2>Regenerative Orthopedics Effectively Repair Partial Rotator Cuff Tears</h2>\r\nRegenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells, are excellent options for rotator cuff injuries because the treatments involve the repair and regeneration of soft tissue. Plus, these non-surgical therapies offer repair with a short recovery time.\r\n\r\nAs a first-line alternative to costly and invasive surgery, Regenerative Orthopedics addresses the root cause of the problem by repairing the tear and the instability. And that leads to a better recovery.\r\n\r\nThe regenerative treatment of choice will depend on the severity of the injury or degeneration.\r\n<h2>Are Prolotherapy, Stem Cells, and PRP Effective for Rotator Cuff Tears?</h2>\r\nIn the journal Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders, Dextrose Prolotherapy was able to reduce pain and disability of traumatic and non-traumatic rotator cuff conditions.1\r\n\r\nThe Orthopedic Research and Reviews journal reports, “Stem cell treatment for rotator cuff tears is a promising development because they have been shown to result in an anti-inflammatory response, improved tendon regeneration, optimized collagen fiber arrangement, higher load-to-failure, and higher tensile strength. . . In a non-randomized controlled trial comparing the effects of an exercise regime to PRP combined with bone marrow aspirate (BMAC-PRP complex) on partial rotator cuff tears, the experimental group demonstrated a significantly greater improvement in (pain, function and disability) scores compared to controls at three months. Tear size decreased after BMAC-PRP injection although this did not significantly differ from controls.”2\r\n<h2>Looking for Non-Surgical Shoulder Repair in Los Angeles for Arthritis?</h2>\r\nWas a shoulder replacement surgery recommended due to degeneration from arthritis? We commonly see people who are looking at non-surgical alternatives to shoulder replacement. Sometimes they have already had surgery, but they are not satisfied with the results. Or, possibly, the patient is exploring their options.\r\n\r\nAgain, they’ve often tried a bunch of treatments, but the symptom relief was only temporary. And the orthopedic surgeon wants to pursue a shoulder replacement. Is surgery the only option? The patient doesn’t want to continue to only “manage symptoms” but rather would like to fix the issue once and for all. Regenerative Orthopedics can do that!\r\n<h2>Shoulder Arthritis</h2>\r\nArthritis of the shoulder means there is a gradual wearing of the articular cartilage. The arthritis is commonly also accompanied by degenerative rotator cuff tears.\r\n\r\nThe degeneration occurs because the shoulder is unstable and allows abnormal movement. The shoulder is a ball and socket joint. When the shoulder is unstable, the ball and shoulder socket rub against each other in an abnormal way because the rotator cuff tendons, muscles, labrum, and shoulder ligaments are damaged and are not able to stabilize as they should. At some point, there was injury to the soft tissue structures, making the joint weaker and unstable. That allowed for the abnormal motion that began the cycle leading to the degeneration of the shoulder joint and the eventual shoulder arthritis.\r\n\r\nShoulder replacement is not without risk. It may come with complications. Surgical patients also face surgical recovery and the time for rehabilitation. There may be a lot of downtime and limitation in exercise, physical activity, work, and sports involvement. But shoulder replacement surgery is not the only way!\r\n<h2>Regenerative Orthopedics for Non-Surgical Shoulder Repair in Los Angeles for Arthritis</h2>\r\nPatients with chronic shoulder pain from arthritis report significant improvements in many clinically relevant parameters and overall quality of life after receiving Regenerative Orthopedics such as Dextrose Prolotherapy.\r\n\r\nPreviously, we mentioned the results in the journal Clinical Medicine Insights. Arthritis and Musculoskeletal Disorders showed that Dextrose Prolotherapy could reduce pain and disability in both traumatic and non-traumatic rotator cuff conditions (including degenerative arthritis).\r\n\r\nThe research revealed that the ligament and tendon attachment treatment resulted in superior long-term pain improvement and patient satisfaction compared with blinded saline injection.\r\n\r\nAnother study published in the journal Archives of Physical Medicine and Rehabilitation demonstrated that dextrose Prolotherapy improved pain levels, disability, strength, and shoulder active range of motion in patients with chronic rotator cuff disease. Again, chronic disease will include a degenerative condition.3\r\n\r\nThe Regenerative Orthopedics Alternative for Non-Surgical Rotator Cuff Repair in Los Angeles, CA\r\n\r\nRegenerative Orthopedics is the non-surgical alternative that can offer repair without the risks and prolonged recovery time of surgery.\r\n\r\nPRP or Stem Cells may be recommended depending on the injury or degeneration involved. PRP and Stem Cells accelerate healing by using your own blood platelets and/or stem cells. These are always used in conjunction with Dextrose Prolotherapy to provide the most comprehensive treatment and repair.\r\n\r\nPlease contact us at OrthoRegen®, and tell us more about your case to determine if you are a good candidate for Comprehensive Regenerative Orthopedics.\r\n\r\n<strong>References</strong>\r\n\r\n1Hauser RA, Lackner JB, Steilen-Matias D, Harris DK. A systematic review of dextrose prolotherapy for chronic musculoskeletal pain. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2016 Jan;9:CMAMD-S39160.\r\n\r\n2Thangarajah T, Lo IK. Optimal Management of Partial Thickness Rotator Cuff Tears: Clinical Considerations and Practical Management. Orthopedic Research and Reviews. 2022;14:59.\r\n\r\n3Bertrand H, Reeves KD, Bennett CJ, Bicknell S, Cheng AL. Dextrose prolotherapy versus control injections in painful rotator cuff tendinopathy. Archives of physical medicine and rehabilitation. 2016 Jan 31;97(1):17-25.','Non-Surgical Shoulder Repair in Los Angeles, CA','','inherit','closed','closed','','5598-revision-v1','','','2022-11-09 19:23:02','2022-11-09 19:23:02','',5598,'https://www.drfields.com/?p=5604',0,'revision','',0),(5605,8,'2022-11-17 06:00:47','2022-11-17 06:00:47','<img class=\"wp-image-5606 size-wcsquare alignright\" title=\"Stem Cell Injections in Los Angeles, CA\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Non-surgical-arthritis-TX-300x300.png\" alt=\" Stem Cell Injections in Los Angeles, CA\" width=\"300\" height=\"300\" />\r\n<h2>Stem Cell Injections in the Los Angeles Area</h2>\r\nOur goal at OrthoRegen®, where we provide stem cell injections in the Los Angeles, CA area, is to stimulate the repair of injured joints. If you have been diagnosed with a joint injury or with degeneration of the joint or spine, there is a good chance we can help you. Regenerative therapies at OrthoRegen® are effective, non-surgical treatments.\r\n\r\nStem Cell Therapy utilizes a person\'s own healing cells. These cells are given directly to the area that is in need of them. They are not shipped anywhere for processing or obtained from somewhere else. We use your own cells.\r\n\r\nThe Stem Cell Therapy done at OrthoRegen® has nothing to do with embryonic stem cell therapy. We only use the patient’s own adult stem cells. There is no cross-contamination this way!\r\n<h2>Gold Standard Stem Cell Injections in Los Angeles, CA</h2>\r\nPlus, at OrthoRegen®, we use the Gold Standard for stem cell regeneration. What does that mean? The Gold Standard means we don’t use just one type of regenerative therapy but four different kinds of Regenerative Orthopedics. And why is that important? Using four different types of regenerative therapies helps you to avoid invasive surgery.\r\n\r\n<img class=\"wp-image-5607 size-wcsquare alignright\" title=\"Stem Cell Injections in Los Angeles, CA\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Stem-Cell-Injections-in-Los-Angeles-CA-300x300.png\" alt=\"Stem Cell Injections in Los Angeles, CA\" width=\"300\" height=\"300\" />\r\n\r\nMany other clinics only use one or two of these procedures. But not all four. We use bone marrow stem cells, and adipose (fat) stem cells. We also use PRP Prolotherapy to accelerate healing. In addition, we use Dextrose Prolotherapy on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. And without it, failure rates are high.\r\n\r\nNot all injuries or degenerative cases require stem cell treatment. It may be that you will only require traditional Prolotherapy to accomplish the repair. However, in more advanced cases, Stem Cell Treatment may be necessary. Your physician will let you know which treatment is best for you after examining you and reviewing your history.\r\n<h2>Stem Cell Injections in Los Angeles, CA for Arthritis</h2>\r\nStem Cell Therapy is typically chosen to repair articular cartilage, but it will also repair ligaments and tendons. In conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. And with arthritis, the joint is in a state where it is breaking down. What we want to do with Stem Cell Therapy is to get the joint in a state of building up. When we use this treatment, we stimulate the body to repair the area to get it stronger.\r\n<h2>Conditions That Can Be Treated with Stem Cell Therapy</h2>\r\nMost clinics, including OrthoRegen®, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those involved in treating people with articular cartilage degeneration or joint injury know that the vast majority of them improve when treated with Stem Cell Therapy.\r\n\r\nWe have found that Comprehensive Regenerative Orthopedics, using the combination of Stem Cells, PRP, and Prolotherapy, works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\r\n\r\nCall us to find out if you are a candidate for non-surgical Regenerative Orthopedics at 310-463-1234.','Stem Cell Injections in Los Angeles, CA','','publish','closed','open','','stem-cell-injections-in-the-los-angeles-area','','','2023-01-21 18:44:46','2023-01-21 18:44:46','',0,'https://www.drfields.com/?p=5605',0,'post','',0),(5606,8,'2022-11-17 04:05:10','2022-11-17 04:05:10','Non Surgical Arthritis Tx','Non Surgical Arthritis Tx','Non Surgical Arthritis Tx','inherit','closed','closed','','non-surgical-arthritis-tx','','','2022-11-17 04:05:11','2022-11-17 04:05:11','',5605,'https://www.drfields.com/wp-content/uploads/2022/11/Non-surgical-arthritis-TX.png',0,'attachment','image/png',0),(5607,8,'2022-11-17 04:06:16','2022-11-17 04:06:16','Stem Cell Injections In Los Angeles, Ca','Stem Cell Injections In Los Angeles, Ca','Stem Cell Injections In Los Angeles, Ca','inherit','closed','closed','','stem-cell-injections-in-los-angeles-ca-2','','','2022-11-17 04:06:16','2022-11-17 04:06:16','',5605,'https://www.drfields.com/wp-content/uploads/2022/11/Stem-Cell-Injections-in-Los-Angeles-CA.png',0,'attachment','image/png',0),(5608,8,'2022-11-17 04:07:21','2022-11-17 04:07:21','<img class=\"wp-image-5606 size-wcsquare\" title=\"Stem Cell Injections in Los Angeles, CA\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Non-surgical-arthritis-TX-300x300.png\" alt=\" Stem Cell Injections in Los Angeles, CA\" width=\"300\" height=\"300\" />\r\n\r\nOur goal at OrthoRegen®, where we provide stem cell injections in the Los Angeles, CA area, is to stimulate the repair of injured joints. If you have been diagnosed with a joint injury or with degeneration of the joint or spine, there is a good chance we can help you. Regenerative therapies at OrthoRegen® are effective, non-surgical treatments.\r\n\r\nStem Cell Therapy utilizes a person\'s own healing cells. These cells are given directly into the area that is in need of them. They are not shipped anywhere for processing and are definitely not obtained from somewhere else. We use your own cells.\r\n\r\nThe Stem Cell Therapy done at OrthoRegen® has nothing to do with embryonic stem cell therapy. We only use the patient’s own adult stem cells. There is no cross-contamination this way!\r\n<h2>Gold Standard Stem Cell Injections in Los Angeles, CA</h2>\r\nPlus, at OrthoRegen®, we use the Gold Standard for stem cell regeneration. What does that mean? The Gold Standard means we don’t use just one type of regenerative therapy but use four different kinds of Regenerative Orthopedics. And why is that important? Using four different types of regenerative therapies helps you to avoid invasive surgery.\r\n\r\n<img class=\"wp-image-5607 size-wcsquare\" title=\"Stem Cell Injections in Los Angeles, CA\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Stem-Cell-Injections-in-Los-Angeles-CA-300x300.png\" alt=\"Stem Cell Injections in Los Angeles, CA\" width=\"300\" height=\"300\" />\r\n\r\nMany other clinics only use one or two of these procedures. But, not all four. We use bone marrow stem cells as well as adipose (fat) stem cells. We also use PRP Prolotherapy to accelerate healing. In addition, we use Dextrose Prolotherapy on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. And without it, failure rates are high.\r\n\r\nNot all injuries or degenerative cases require stem cell treatment. It may be that you will only require traditional Prolotherapy to accomplish the repair. However, in more advanced cases, Stem Cell Treatment may be necessary. Your physician will let you know which treatment is best for you after examining you and reviewing your history.\r\n<h2>Stem Cell Injections in Los Angeles, CA for Arthritis</h2>\r\nTypically, Stem Cell Therapy is chosen to repair articular cartilage, but it will also repair ligaments and tendons. In conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. And with arthritis, the joint is in a state where it is breaking down. What we want to do with Stem Cell Therapy is to get the joint in a state of building up. When we use this treatment, we stimulate the body to repair the area to get it stronger.\r\n<h2>Conditions That Can Be Treated with Stem Cell Therapy</h2>\r\nMost clinics, including OrthoRegen®, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those who are involved in treating people with articular cartilage degeneration or joint injury know that the vast majority of them improve when these patients are treated with Stem Cell Therapy.\r\n\r\nWe have found that Comprehensive Regenerative Orthopedics, using the combination of Stem Cells, PRP, and Prolotherapy, works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\r\n\r\nCall us to find out if you are a candidate for non-surgical Regenerative Orthopedics at 310-463-1234.','Stem Cell Injections in Los Angeles, CA','','inherit','closed','closed','','5605-revision-v1','','','2022-11-17 04:07:21','2022-11-17 04:07:21','',5605,'https://www.drfields.com/?p=5608',0,'revision','',0),(5609,8,'2022-11-17 04:07:59','2022-11-17 04:07:59','<img class=\"wp-image-5606 size-wcsquare alignright\" title=\"Stem Cell Injections in Los Angeles, CA\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Non-surgical-arthritis-TX-300x300.png\" alt=\" Stem Cell Injections in Los Angeles, CA\" width=\"300\" height=\"300\" />\r\n\r\nOur goal at OrthoRegen®, where we provide stem cell injections in the Los Angeles, CA area, is to stimulate the repair of injured joints. If you have been diagnosed with a joint injury or with degeneration of the joint or spine, there is a good chance we can help you. Regenerative therapies at OrthoRegen® are effective, non-surgical treatments.\r\n\r\nStem Cell Therapy utilizes a person\'s own healing cells. These cells are given directly into the area that is in need of them. They are not shipped anywhere for processing and are definitely not obtained from somewhere else. We use your own cells.\r\n\r\nThe Stem Cell Therapy done at OrthoRegen® has nothing to do with embryonic stem cell therapy. We only use the patient’s own adult stem cells. There is no cross-contamination this way!\r\n<h2>Gold Standard Stem Cell Injections in Los Angeles, CA</h2>\r\nPlus, at OrthoRegen®, we use the Gold Standard for stem cell regeneration. What does that mean? The Gold Standard means we don’t use just one type of regenerative therapy but use four different kinds of Regenerative Orthopedics. And why is that important? Using four different types of regenerative therapies helps you to avoid invasive surgery.\r\n\r\n<img class=\"wp-image-5607 size-wcsquare alignright\" title=\"Stem Cell Injections in Los Angeles, CA\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Stem-Cell-Injections-in-Los-Angeles-CA-300x300.png\" alt=\"Stem Cell Injections in Los Angeles, CA\" width=\"300\" height=\"300\" />\r\n\r\nMany other clinics only use one or two of these procedures. But, not all four. We use bone marrow stem cells as well as adipose (fat) stem cells. We also use PRP Prolotherapy to accelerate healing. In addition, we use Dextrose Prolotherapy on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. And without it, failure rates are high.\r\n\r\nNot all injuries or degenerative cases require stem cell treatment. It may be that you will only require traditional Prolotherapy to accomplish the repair. However, in more advanced cases, Stem Cell Treatment may be necessary. Your physician will let you know which treatment is best for you after examining you and reviewing your history.\r\n<h2>Stem Cell Injections in Los Angeles, CA for Arthritis</h2>\r\nTypically, Stem Cell Therapy is chosen to repair articular cartilage, but it will also repair ligaments and tendons. In conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. And with arthritis, the joint is in a state where it is breaking down. What we want to do with Stem Cell Therapy is to get the joint in a state of building up. When we use this treatment, we stimulate the body to repair the area to get it stronger.\r\n<h2>Conditions That Can Be Treated with Stem Cell Therapy</h2>\r\nMost clinics, including OrthoRegen®, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those who are involved in treating people with articular cartilage degeneration or joint injury know that the vast majority of them improve when these patients are treated with Stem Cell Therapy.\r\n\r\nWe have found that Comprehensive Regenerative Orthopedics, using the combination of Stem Cells, PRP, and Prolotherapy, works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\r\n\r\nCall us to find out if you are a candidate for non-surgical Regenerative Orthopedics at 310-463-1234.','Stem Cell Injections in Los Angeles, CA','','inherit','closed','closed','','5605-revision-v1','','','2022-11-17 04:07:59','2022-11-17 04:07:59','',5605,'https://www.drfields.com/?p=5609',0,'revision','',0),(5610,8,'2022-11-17 04:09:38','2022-11-17 04:09:38','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/stem-cell-injections-in-los-angeles-ca/\">Stem Cell Injections in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-shoulder-repair-in-los-angeles-ca/\">Non-Surgical Shoulder Repair in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/magazine-column/townsend-letter-essential-fatty-acids-and-inflammation/\" rel=\"noopener\">Townsend Letter: Essential Fatty Acids And Inflammation</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-11-17 04:09:38','2022-11-17 04:09:38','',2109,'https://www.drfields.com/?p=5610',0,'revision','',0),(5613,8,'2022-12-02 06:06:51','2022-12-02 06:06:51','<img src=\"https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-Cover-reprint.jpg\" alt=\"Townsend Letter Cover Reprint\" width=\"955\" height=\"1232\" class=\"size-full wp-image-5591\" />\n\n[caption id=\"attachment_5592\" align=\"alignnone\" width=\"955\"]<img src=\"https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-page-1.jpg\" alt=\"Townsend Letter Page 1\" width=\"955\" height=\"1277\" class=\"size-full wp-image-5592\" /> Page 1[/caption]\n\n[caption id=\"attachment_5590\" align=\"alignnone\" width=\"955\"]<img src=\"https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-page-2.jpg\" alt=\"Townsend Letter Page 2\" width=\"955\" height=\"1252\" class=\"size-full wp-image-5590\" /> Page 2[/caption]','Townsend Letter: Essential Fatty Acids and Inflammation','','inherit','closed','closed','','5589-autosave-v1','','','2022-12-02 06:06:51','2022-12-02 06:06:51','',5589,'https://www.drfields.com/?p=5613',0,'revision','',0),(5614,8,'2022-12-02 06:07:05','2022-12-02 06:07:05','<img class=\"size-full wp-image-5591\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-Cover-reprint.jpg\" alt=\"Townsend Letter Cover Reprint\" width=\"955\" height=\"1232\" />\r\n\r\n[caption id=\"attachment_5592\" align=\"alignnone\" width=\"955\"]<img class=\"size-full wp-image-5592\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-page-1.jpg\" alt=\"Townsend Letter Page 1\" width=\"955\" height=\"1277\" /> Page 1[/caption]\r\n\r\n[caption id=\"attachment_5590\" align=\"alignnone\" width=\"955\"]<img class=\"size-full wp-image-5590\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-page-2.jpg\" alt=\"Townsend Letter Page 2\" width=\"955\" height=\"1252\" /> Page 2[/caption]','Townsend Letter: Avoiding Surgery With Stem Cell/PRP/Prolotherapy','','inherit','closed','closed','','5589-revision-v1','','','2022-12-02 06:07:05','2022-12-02 06:07:05','',5589,'https://www.drfields.com/?p=5614',0,'revision','',0),(5615,8,'2022-12-02 06:15:29','2022-12-02 06:15:29','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/stem-cell-injections-in-los-angeles-ca/\">Stem Cell Injections in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-shoulder-repair-in-los-angeles-ca/\">Non-Surgical Shoulder Repair in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/magazine-column/townsend-letter-avoiding-surgery-with-stem-cell-prp-prolotherapy/\" rel=\"noopener\">Townsend Letter: Avoiding Surgery With Stem Cell/PRP/Prolotherapy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-12-02 06:15:29','2022-12-02 06:15:29','',2109,'https://www.drfields.com/?p=5615',0,'revision','',0),(5616,8,'2022-12-02 06:38:34','2022-12-02 06:38:34','<h3>A Wonderful Ending to An Almost Disastrous Event</h3>\nIn this article, printed in the <a href=\"https://www.smdp.com\">Santa Monica Daily Press</a>, Peter A. Fields, MD, DC tells the story of an event that could have ended up disastrous. The situation took place while Dr. Fields was swimming at the Santa Monica College pool.\n\nThe combination of being a strong swimmer, having the training of a water safety instructor, and being a doctor, came in handy and resulted in the saving of another swimmer\'s life.\n\nPlease take a look at the full article below.\n\n&nbsp;\n<div class=\"col-md-12\">\n\n[caption id=\"attachment_1115\" align=\"alignleft\" width=\"626\"]<img class=\"wp-image-1115 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Santa-Monica-Daily-Press-Article-2.jpg\" alt=\"A Wonderful Ending to a Most Disastrous Event\" width=\"626\" height=\"1999\" /> A Wonderful Ending to a Most Disastrous Event[/caption]\n\n[caption id=\"attachment_955\" align=\"aligncenter\" width=\"220\"]<img class=\"wp-image-955 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Drfields Bio Img\" width=\"220\" height=\"352\" /> Dr. Fields[/caption]\n\n</div>\n<img class=\"alignleft size-full wp-image-1116\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1-small.jpg\" alt=\"Stem Cell1 Small\" width=\"62\" height=\"62\" />\n\n&nbsp;\n\n<a href=\"https://www.drfields.com/stem-cell-treatment/\">Stem Cell Prolotherapy</a>\n\nRegenerating one’s joints and spine is not in the future: it is happening today!…\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\n<h3><em>Need Relief from painful joints?</em></h3>\n<em>If you are experiencing painful joints, Peter A. Fields, MD, DC and his staff are ready to help get you back to doing what you love, and doing it pain-free. </em>\n\n<em>Although many treatments may offer temporary pain relief for arthritis and other painful joint conditions, it is important to find a treatment that does more than chase the symptoms and one that actually repairs the injured soft tissue in order to restore normal motion to the knee joint. </em>\n\n<em>Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy which are effective therapies for repair and restoration of motion. These treatments stimulate healing of ligaments, tendons, and restore the normal functioning of the joint, thus preventing the arthritic progression.</em>\n\nCall us today at <span class=\"wsm_phone\"><a title=\"phone\" href=\"tel:+310-453-1234\">310-453-1234</a>.</span>','A wonderful ending to an almost disastrous event','','inherit','closed','closed','','1473-autosave-v1','','','2022-12-02 06:38:34','2022-12-02 06:38:34','',1473,'https://www.drfields.com/?p=5616',0,'revision','',0),(5617,8,'2022-12-02 06:37:26','2022-12-02 06:37:26','<h3>A Wonderful Ending to An Almost Disastrous Event</h3>\r\nIn this article, printed in the <a href=\"https://www.smdp.com\">Santa Monica Daily Press</a>, Peter A. Fields, MD, DC tells the story of an event that could have ended up disastrous. The situation took place while Dr. Fields was swimming at the Santa Monica College pool.\r\n\r\nThe combination of being a strong swimmer, having the training of a water safety instructor, and being a doctor, came in handy and resulted in the saving of another swimmer\'s life.\r\n\r\nPlease take a look at the full article below.\r\n\r\n&nbsp;\r\n<div class=\"col-md-12\">\r\n\r\n[caption id=\"attachment_1115\" align=\"alignleft\" width=\"626\"]<img class=\"wp-image-1115 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Santa-Monica-Daily-Press-Article-2.jpg\" alt=\"A Wonderful Ending to a Most Disastrous Event\" width=\"626\" height=\"1999\" /> A Wonderful Ending to a Most Disastrous Event[/caption]\r\n\r\n[caption id=\"attachment_955\" align=\"alignright\" width=\"220\"]<img class=\"wp-image-955 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Drfields Bio Img\" width=\"220\" height=\"352\" /> Dr. Fields[/caption]\r\n\r\n</div>\r\n<img class=\"alignleft size-full wp-image-1116\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1-small.jpg\" alt=\"Stem Cell1 Small\" width=\"62\" height=\"62\" />\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.drfields.com/stem-cell-treatment/\">Stem Cell Prolotherapy</a>\r\n\r\nRegenerating one’s joints and spine is not in the future: it is happening today!…\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h3><em>Need Relief from painful joints?</em></h3>\r\n<em>If you are experiencing painful joints, Peter A. Fields, MD, DC and his staff are ready to help get you back to doing what you love, and doing it pain-free. </em>\r\n\r\n<em>Although many treatments may offer temporary pain relief for arthritis and other painful joint conditions, it is important to find a treatment that does more than chase the symptoms and one that actually repairs the injured soft tissue in order to restore normal motion to the knee joint. </em>\r\n\r\n<em>Regenerative Orthopedic treatment options, such as Stem Cell Therapy, Platelet Rich Plasma, and Prolotherapy which are effective therapies for repair and restoration of motion. These treatments stimulate healing of ligaments, tendons, and restore the normal functioning of the joint, thus preventing the arthritic progression.</em>\r\n\r\nCall us today at <span class=\"wsm_phone\"><a title=\"phone\" href=\"tel:+310-453-1234\">310-453-1234</a>.</span>','A wonderful ending to an almost disastrous event','','inherit','closed','closed','','1473-revision-v1','','','2022-12-02 06:37:26','2022-12-02 06:37:26','',1473,'https://www.drfields.com/?p=5617',0,'revision','',0),(5618,8,'2022-12-02 06:46:25','2022-12-02 06:46:25','<h3>Stem Cell Prolotherapy</h3>\r\nTake a look at this article published in The<em> Townsend Letter</em> by Peter A. Fields, MD, DC  that covers Stem Cell Prolotherapy. If you\'ve ever wondered what it was all about, this article explains in detail.\r\n\r\nEver wonder how you can regenerative cartilage? Has joint replacement been recommended, but you\'d really rather not go that route? <a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a> is an effective treatment option that can meet your non-surgical and regenerative joint repair goals.\r\n\r\nStem Cells therapies are definitely a newer treatment option many are seeking. But not all therapies are the same. It\'s important to educate yourself on what this treatment really offers. This is an in-depth article that discusses bone marrow stem cells and adipose stem cells. Peter A. Fields, MD, DC will tell you what they are and how they work.\r\n\r\nThis article is a great place to find out more about a non-surgical alternative to joint replacement with this regenerative injection therapy. And remember...once surgery is done, it cannot be undone! We would like to help you to avoid that scenario!\r\n<h4>Are you a Candidate?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. And Stem Cell Prolotherapy is a very safe, affordable option that allows you to keep working, training and living a normal life during the recovery process. Plus, Stem Cell Prolotherapy is one of the few treatments that encourages movement after the treatment. That\'s because movement actually aids the healing process. By contrast, surgery requires you reduce activity after treatment.\r\n\r\nWould you like a <strong>second opinion before you have irreversible surgery</strong>? Are you a candidate for Stem Cell Prolotherapy? The only way to know for sure is to get a consultation. <a href=\"https://www.drfields.com/contact/\">Contact Us today</a> for a consultation at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nCheck out other articles in the <a href=\"https://www.townsendletter.com\">Townsend Letter</a>.\r\n\r\n<img class=\"aligncenter wp-image-1207 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article-2014_Page_1.jpg\" alt=\"Stem Cell Prolotherapy\" width=\"955\" height=\"1244\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1208\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article2014_Page_2.jpg\" alt=\"Fields July Article2014 Page 2\" width=\"1650\" height=\"2150\" />','Townsend Letter: Stem Cell Prolotherapy','','inherit','closed','closed','','1524-revision-v1','','','2022-12-02 06:46:25','2022-12-02 06:46:25','',1524,'https://www.drfields.com/?p=5618',0,'revision','',0),(5619,8,'2022-12-02 06:47:31','2022-12-02 06:47:31','<h3>Elbow Injuries</h3>\r\nAt one time or another, about 15% of people in the U.S. will have elbow pain from some type of elbow injuries. These injuries can happen in sports, at work, and even at home. The majority involve a ligament injury. Annular ligament injuries from repetitive motion, like constant computer usage, is often the culprit. Other ligaments can be the pain-causing culprit too. And so can tendons.\r\n<h3>How Are the Injuries Treated?</h3>\r\nConventional treatment often involves icing, NSAIDS, or even surgery. But icing and NSAIDS both inhibit healing. And many of us prefer avoiding surgery. Right? Remember...once surgery is done, it cannot be undone. And it\'s better to not get into that predicament if it can be avoided.\r\n\r\nThe great news is that Prolotherapy, a <strong>non-surgical</strong> regenerative treatment option works great at healing both ligament and tendon injuries.\r\n\r\nAnd Regenerative Orthopedics for elbow pain is regenerative. What does that mean? Treatments like <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> <strong>regenerate</strong> collagen tissue which means the treatment repairs the injury. And it does it naturally. So that\'s good to know, especially since the treatment fixes both the cause and the effect.\r\n\r\nFind out more about how Regenerative Orthopedics can heal your joint pain non-surgically by reading this article in the <a href=\"https://www.townsendletter.com\">\"Townsend Letter.\"</a>\r\n\r\n[caption id=\"attachment_1212\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1212 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-1.gif\" alt=\"Elbow Injuries\" width=\"955\" height=\"1249\" /> What To Do About Elbow Injuries[/caption]\r\n\r\n<img class=\"aligncenter size-full wp-image-1213\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-2.gif\" alt=\"Townsend Article Feb Mar 2014 2\" width=\"955\" height=\"1249\" />','Townsend Letter: Elbow Injuries','','inherit','closed','closed','','1526-revision-v1','','','2022-12-02 06:47:31','2022-12-02 06:47:31','',1526,'https://www.drfields.com/?p=5619',0,'revision','',0),(5620,8,'2022-12-02 06:55:45','2022-12-02 06:55:45','<h3>What Is the Cause of Back Pain?</h3>\r\nAlmost anything can cause back pain. Part of the reason is all of the stress we put on our backs. Weight from the upper body, prolonged sitting, sports, being overweight, and poor flexibility all can put added stress on the back. And at some point, all of this stress adds up and at some point will cause back pain.\r\n<h3>And What Are the Best Treatment Options?</h3>\r\nIt is not unusual to hear our patients say they have tried all kinds of treatments to no avail. That\'s why they are now in our office. They have tried stretching, yoga, pilates, massage, and all kinds of therapies. But their pain persists. And it is a good possibility that surgery has been recommended. But once surgery is done, it cannot be undone. So, many people look for an alternative.\r\n\r\nRegenerative Orthopedics is an effective, non-surgical alternative for back pain relief for most musculoskeletal conditions that cause back pain. <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>, one form of Regenerative Orthopedics, looks at the cause of back pain, and not just the effect. Prolotherapy stimulates repair. It\'s not just a bandaid to cover up back pain. But rather, it gets to the root of the problem, like tendon and ligament injury. And it repairs the injury, which results in the pain relief you seek.\r\n\r\nWhen you want to get to the root of the problem, Regenerative Medicine options like Prolotherapy, PRP, and Stem Cell Therapy, are not just effective, but they are non-surgical treatment options that relieve your back pain, and get you back to doing what you love.\r\n\r\nRead more about back pain in this article by Peter A. Fields, MD, DC in the <a href=\"https://www.townsendletter.com\">Townsend Article</a>, and why surgery may not be the best choice when looking into treatment options.\r\n\r\n&nbsp;\r\n\r\n[caption id=\"attachment_1219\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1219 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-1.gif\" alt=\"What is the Cause of back pain?\" width=\"955\" height=\"1249\" /> What is the Cause of Back Pain? In this article, Peter A. Fields, MD, DC goes into depth on the anatomy and cause of back pain and the treatment options.[/caption]\r\n\r\n<img class=\"aligncenter size-full wp-image-1220\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-2.gif\" alt=\"Townsend Article Jan 2014 2\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1221\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-3.gif\" alt=\"Townsend Article Jan 2014 3\" width=\"955\" height=\"1249\" />','Townsend Letter: What is the Cause of Back Pain?','','inherit','closed','closed','','1530-revision-v1','','','2022-12-02 06:55:45','2022-12-02 06:55:45','',1530,'https://www.drfields.com/?p=5620',0,'revision','',0),(5621,8,'2022-12-02 06:58:31','2022-12-02 06:58:31','&nbsp;\n\nThe hip gets a lot of wear and tear! And it can be weakened by a lot of different things. Eventually, the cumulative injuries cause arthritis to develop. And before long, people find themselves in the surgeon\'s office receiving the news that they need a hip replacement. But do they really?\n\nHip surgeries are going through the roof. With close to 10 million hip surgeries performed annually. That\'s a lot of surgery. And many of us would prefer to avoid surgery if at all possible.\n<h3>Are there treatments that can help me avoid surgery?</h3>\nDifferent non-surgical treatments are commonly recommended before the surgical recommendation. These include non-inflammatory medications and cortisone injections. But these treatments are not curative. And although they may help you endure the pain, they will not prevent the eventual hip replacement.\n\nIt is important to address the cause and not just the effect of the wearing out hip. Regenerative Orthopedics, such as Dextrose Prolotherapy, Platelet Rich Plasma, and Stem Cell Prolotherapy, are all non-surgical treatment options that get to the root of the problem. They actually stimulate ligament, tendon, and cartilage repair. And most people have pain because of injury to one or all of these structures.\n\nInjury to soft tissue, like the ligaments, tendons, and cartilage, causes the joint to become unstable. And this instability breaks the joint down further. Eventually, the person with a worn-out hip will experience loss of motion. Bone spurs will develop, and the bones will \"bump\" into one another. These symptoms probably sound familiar because they are experienced with arthritis. And pain medication won\'t fix the cause.\n\nSurgery that takes out parts will alter the structure and function of the joint. Eventually, more surgery will be needed. Yes, surgery is sometimes needed. But unnecessary hip replacements should be avoided. Seek out an experienced Prolotherapist to see if you are a candidate for a regenerative therapy that can help you to avoid surgery.\n\nRemember, once the surgery is done, it cannot be undone.\n\nSee testimonials from patients who have received Regenerative Orthopedics by clicking <a href=\"https://www.orthoregen.com/testimonials/\">here</a>.\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-1230\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-1.jpg\" alt=\"Townsend Article Dec 2013 1\" width=\"955\" height=\"1249\" />\n\n<img class=\"aligncenter size-full wp-image-1231\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-2.gif\" alt=\"Townsend Article Dec 2013 2\" width=\"955\" height=\"1249\" />\n\n<img class=\"aligncenter size-full wp-image-1232\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-3.gif\" alt=\"Townsend Article Dec 2013 3\" width=\"955\" height=\"1249\" />','Townsend Letter:Hip Replacement: Do You Really Need It?','','inherit','closed','closed','','1532-autosave-v1','','','2022-12-02 06:58:31','2022-12-02 06:58:31','',1532,'https://www.drfields.com/?p=5621',0,'revision','',0),(5622,8,'2022-12-02 06:58:42','2022-12-02 06:58:42','&nbsp;\r\n\r\nThe hip gets a lot of wear and tear! And it can be weakened by a lot of different things. Eventually, the cumulative injuries cause arthritis to develop. And before long, people find themselves in the surgeon\'s office receiving the news that they need a hip replacement. But do they really?\r\n\r\nHip surgeries are going through the roof. With close to 10 million hip surgeries performed annually. That\'s a lot of surgery. And many of us would prefer to avoid surgery if at all possible.\r\n<h3>Are there treatments that can help me avoid surgery?</h3>\r\nDifferent non-surgical treatments are commonly recommended before the surgical recommendation. These include non-inflammatory medications and cortisone injections. But these treatments are not curative. And although they may help you endure the pain, they will not prevent the eventual hip replacement.\r\n\r\nIt is important to address the cause and not just the effect of the wearing out hip. Regenerative Orthopedics, such as Dextrose Prolotherapy, Platelet Rich Plasma, and Stem Cell Prolotherapy, are all non-surgical treatment options that get to the root of the problem. They actually stimulate ligament, tendon, and cartilage repair. And most people have pain because of injury to one or all of these structures.\r\n\r\nInjury to soft tissue, like the ligaments, tendons, and cartilage, causes the joint to become unstable. And this instability breaks the joint down further. Eventually, the person with a worn-out hip will experience loss of motion. Bone spurs will develop, and the bones will \"bump\" into one another. These symptoms probably sound familiar because they are experienced with arthritis. And pain medication won\'t fix the cause.\r\n\r\nSurgery that takes out parts will alter the structure and function of the joint. Eventually, more surgery will be needed. Yes, surgery is sometimes needed. But unnecessary hip replacements should be avoided. Seek out an experienced Prolotherapist to see if you are a candidate for a regenerative therapy that can help you to avoid surgery.\r\n\r\nRemember, once the surgery is done, it cannot be undone.\r\n\r\nSee testimonials from patients who have received Regenerative Orthopedics by clicking <a href=\"https://www.orthoregen.com/testimonials/\">here</a>.\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter size-full wp-image-1230\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-1.jpg\" alt=\"Townsend Article Dec 2013 1\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1231\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-2.gif\" alt=\"Townsend Article Dec 2013 2\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-1232\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-3.gif\" alt=\"Townsend Article Dec 2013 3\" width=\"955\" height=\"1249\" />','Townsend Letter: Hip Replacement - Do You Really Need It?','','inherit','closed','closed','','1532-revision-v1','','','2022-12-02 06:58:42','2022-12-02 06:58:42','',1532,'https://www.drfields.com/?p=5622',0,'revision','',0),(5623,8,'2022-12-02 07:29:54','2022-12-02 07:29:54','<h3>Are MRI\'s Replacing The Physical Exam?</h3>\nEveryone seems to want to get an MRI nowadays. It\'s like there is an MRI epidemic, with millions and millions being performed in the U.S. A patient complains of pain, and an MRI is ordered. But are MRI\'s replacing the physical exam?\n\nSure, an MRI will often show an abnormality. But the problem is...<strong>that abnormality very well may not be what is causing the pain. </strong>A disc abnormality does not necessarily mean that the disc is causing the pain. Many people who have no pain have disc abnormalities.\n<h3>MRI Results Without A Physical Exam</h3>\nThe lack of a physical exam is becoming a problem. Before the MRI, physicians had to diagnose by an exam. And they would actually palpate and touch the patient. In fact, 90% of the diagnosis would come from the history and physical exam. MRI\'s should confirm what already is suspected as a result of a thorough patient history and examination.\n<h3>MRI and Surgery</h3>\nIf you are seriously considering surgery, then an MRI is what the orthopedic surgeon will use to map the surgery. <strong>But never have surgery based just on the results of an MRI. </strong>Get another opinion. And make sure you receive a proper exam. A practical option would be to receive a consult from a Prolotherapist who specializes in fixing the spine and joints without surgery. Surgery should only be done after all conservative care has been tried, including Regenerative Orthopedic options like Prolotherapy.\n<h4><em>MRI studies are not always helpful and can sometimes lead to further intervention. Do not let MRI results dictate your treatment. Fixing your problem with the least invasive and most effective method should be your priority</em>.</h4>\n<em>Please read the entire article, which was originally printed in the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.</em>\n\nIf a joint replacement has been recommended, Stem Cell Therapy, another Regenerative Orthopedic option, is an effective non-surgical alternative. Please read our article <a title=\"Alternative to Joint Replacement Surgery\" href=\"https://www.drfields.com/alternative-to-joint-replacement-surgery/\">Alternative to Joint Replacement Surgery </a> <a href=\"https://www.drfields.com/alternative-to-joint-replacement-surgery/\">here.</a>\n\n[caption id=\"attachment_1235\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1235 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-1.gif\" alt=\"Townsend Article October 2013 1\" width=\"955\" height=\"1241\" /> <strong>Are MRI\'s replacing the physical exam?</strong>[/caption]\n\n<img class=\"aligncenter size-full wp-image-1236\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-2.gif\" alt=\"Townsend Article October 2013 2\" width=\"955\" height=\"1251\" />','Townsend Letter: Are MRI\'s Replacing The Physical Exam','','inherit','closed','closed','','1535-autosave-v1','','','2022-12-02 07:29:54','2022-12-02 07:29:54','',1535,'https://www.drfields.com/?p=5623',0,'revision','',0),(5624,8,'2022-12-02 07:30:07','2022-12-02 07:30:07','<h2>Rotator Cuff Shoulder Injuries</h2>\nConditions of the rotator cuff are the most common shoulder problem. Lots of people over 50 experience rotator cuff shoulder injuries. That\'s because the tendons and ligaments become weaker and are more prone to injury. And since tendons and ligaments have a poor blood supply to begin with, these injuries are difficult to repair.\n<h3>Treat Shoulder Injuries with Non-Surgical Regenerative Orthopedics</h3>\nWhen conservative measures are tried, and if they fail to result in the sought after results, surgery is often recommended. But surgery takes parts like ligaments, tendons, and labrum out. And once they are removed, they can not be put back. A better approach would be Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy. These treatments result in effective repair and resolution of the rotator cuff shoulder injury without the need for surgery. The joint tissue can regenerate with Regenerative Orthopedics, and repair can be achieved naturally.\n<h3>Shoulder Arthritis</h3>\nArthritis is another common condition of the shoulder, and shoulder injuries can lead to this problem. Regenerative Orthopedics can effectively treat shoulder pain due to arthritis.\n\nRegenerative Orthopedics helps your body to heal itself. You can get back to doing the activities you love quickly, without the need for surgery, and without extended downtime. <a href=\"https://www.drfields.com/contact/\">Contact us</a> to find out more.\n\nRead the full article from the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.\n\nFind out more about <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> by clicking <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">here</a>.\n\n&nbsp;\n\n<img class=\"alignnone wp-image-1240 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-1.gif\" alt=\"Rotator Cuff Shoulder Injuries\" width=\"955\" height=\"1249\" />\n\n<img class=\"wp-image-1241 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-2.gif\" alt=\"&quot;&lt;yoastmark\" />','Townsend Letter: Rotator Cuff Shoulder Injuries','','inherit','closed','closed','','1537-autosave-v1','','','2022-12-02 07:30:07','2022-12-02 07:30:07','',1537,'https://www.drfields.com/?p=5624',0,'revision','',0),(5625,8,'2022-12-02 07:30:13','2022-12-02 07:30:13','<h2>Rotator Cuff Shoulder Injuries</h2>\r\nConditions of the rotator cuff are the most common shoulder problem. Lots of people over 50 experience rotator cuff shoulder injuries. That\'s because the tendons and ligaments become weaker and are more prone to injury. And since tendons and ligaments have a poor blood supply to begin with, these injuries are difficult to repair.\r\n<h3>Treat Shoulder Injuries with Non-Surgical Regenerative Orthopedics</h3>\r\nWhen conservative measures are tried, and if they fail to result in the sought after results, surgery is often recommended. But surgery takes parts like ligaments, tendons, and labrum out. And once they are removed, they can not be put back. A better approach would be Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy. These treatments result in effective repair and resolution of the rotator cuff shoulder injury without the need for surgery. The joint tissue can regenerate with Regenerative Orthopedics, and repair can be achieved naturally.\r\n<h3>Shoulder Arthritis</h3>\r\nArthritis is another common condition of the shoulder, and shoulder injuries can lead to this problem. Regenerative Orthopedics can effectively treat shoulder pain due to arthritis.\r\n\r\nRegenerative Orthopedics helps your body to heal itself. You can get back to doing the activities you love quickly, without the need for surgery, and without extended downtime. <a href=\"https://www.drfields.com/contact/\">Contact us</a> to find out more.\r\n\r\nRead the full article from the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.\r\n\r\nFind out more about <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">Prolotherapy</a> by clicking <a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/\">here</a>.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-1240 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-1.gif\" alt=\"Rotator Cuff Shoulder Injuries\" width=\"955\" height=\"1249\" />\r\n\r\n<img class=\"wp-image-1241 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-2.gif\" alt=\"&quot;&lt;yoastmark\" />','Townsend Letter: Rotator Cuff Shoulder Injuries','','inherit','closed','closed','','1537-revision-v1','','','2022-12-02 07:30:13','2022-12-02 07:30:13','',1537,'https://www.drfields.com/?p=5625',0,'revision','',0),(5626,8,'2022-12-02 07:31:19','2022-12-02 07:31:19','<h3>Knee Pain and Dysfunction</h3>\nAt one time or another, most of us will have had some sort of knee dysfunction or pain. After all, we use our knees on a daily basis. And because the knee is a weight-bearing joint, athletic individuals and overweight people are more prone to knee pain and injuries.\n\nKnee pain can develop suddenly or come on over a period of time. The acute or sudden pain may be the result of a fall or mistep. And pain that develops chronically over time may be the result of an acute injury that never healed correctly. Chronic conditions are the most common cause of knee pain and dysfunction, and the culprit is very often arthritis.\n<h3>Degenerative Joint Disease and Osteoarthritis</h3>\nOsteoarthritis affects most of us as we age, steadily wearing away the smooth cartilage that caps the ends of our long bones. That cartilage is essential for proper motion and function of the joint. The wearing down of the joint can be accelerated by overuse in playing sports, physically demanding jobs, walking, excessive sitting (which increases the pressure within the knee) or just over time through daily wear and tear.\n\nReferred pain, which occurs when a ligament injury or weakness in one part of the body cause pain in another part, may also be involved.\n<h3>Knee Pain Treatments</h3>\nKnee pain will often go away on its on. Heat, ice, massage, PT, acupuncture, chiropractic, laser, and other treatments may help to resolve the pain. But when these treatments do not work, Regenerative Orthopedics, such as Stem Cell Therapy, PRP, and Prolotherapy are excellent non-surgical treatment solutions. And they can get you back to doing what you love without the need for extended time off.\n\nEven if you have a partial tear in a ligament or tendon, Regenerative Orthopedics can successfully resolve the injury without the need for surgery. If the tear is complete, surgery is necessary. Regenerative Orthopedics are the safest and most effective treatment options for the repair of ligaments, tendons, and cartilage damage.\n\nMany of my patients have had surgery, but still experience pain. Regenerative Orthopedics is still able to help even if you have already had surgery. But if surgery is being recommended, consider the alternative. Give us a <a href=\"https://www.drfields.com/contact/\">call <strong>at </strong></a><strong><a href=\"tel:310-453-1234\">310-453-1234</a>.</strong>\n\nRead the full article from the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.\n\n[caption id=\"attachment_4373\" align=\"alignnone\" width=\"955\"]<img class=\"wp-image-4373 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-2-2.gif\" alt=\"Knee Pain\" width=\"955\" height=\"1249\" /> Knee Pain and Dysfunction[/caption]\n\n<img class=\"wp-image-1244 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-1.gif\" alt=\"Townsend Article July 2013 1\" width=\"939\" height=\"1231\" />\n\n&nbsp;','Townsend Letter: Knee Pain and Dysfunction','','inherit','closed','closed','','1539-autosave-v1','','','2022-12-02 07:31:19','2022-12-02 07:31:19','',1539,'https://www.drfields.com/?p=5626',0,'revision','',0),(5627,8,'2022-12-02 07:30:29','2022-12-02 07:30:29','<h3>How to Avoid Joint and Spine Surgery <em>and Live Pain Free</em></h3>\nRegenerative Orthopedics are natural non-surgical methods that assist the body to heal injured tendons and ligaments. These treatments help your body make new cells by boosting the natural healing cascade of the body. This serves to strengthen lax or torn ligaments and tendons, and repairs the damaged structures. It also helps patients avoid joint and spine surgery.\n<h3>When Is It Time To Seek Regenerative Orthopedics?</h3>\nIf you have had chronic pain that remains even after weeks, months, or years of healing, then it\'s time to seek out a practitioner who is experienced in Regenerative Orthopedics. The problem lies in the fact that both ligaments and tendons have poor circulations. And it is this lack of blood supply to the injured area that deprives the injured area of the nutrients it needs to heal properly.\n\nAnd although the blood supply is low, the presence of nerves is not. So these nerves become stretched and irritated in these weakened areas, and the tweaked nerves send out pain signals. Additionally, the ongoing weakness in the ligaments and tendons will also lead to degenerative of the cartilage. Eventually, arthritis will result. It is not uncommon for surgery to be recommended at this point.\n\nBut non-surgical Regenerative Orthopedics is a more logical alternative, and one that does not require extended downtime. Regenerative Orthopedics can help you avoid joint and spine surgery. It can boost healing in your joint and help you to achieve the pain-free results you seek.\n<h3>Regenerative Orthopedics include Stem Cell Therapy, PRP, and Prolotherapy</h3>\n<h4><em>Dextrose Prolotherapy</em></h4>\nDextrose Prolotherapy is just one type of Regenerative Orthopedics. It involves a series of 6-8 treatments with injections of a mild proliferant that stimulates the healing process. Prolotherapy is an excellent alternative to cortisone injections, which in long-term studies have been shown to actually weaken tissue. Prolotherapy is effective at eliminating pain in many different painful conditions.\n<h4><em>Platelet Rich Plasma (PRP)</em></h4>\nPlatelet Rich Plasma uses the patients own blood to concentrate platelets by a factor of 7 to 10 times. That means there are a lot of growth factors available in this concentrated solution. The solution rich in growth factors can then be injected into the damaged area to catalyze the growth of new soft tissue. PRP is good for structures such as the labrum of the hip and shoulder, the knee meniscus, and some forms of arthritis.\n<h4><em>Stem Cell Therapy</em></h4>\nStem Cell Therapy is derived from the patients own bone marrow stem cells and adipose stem cells. These cells can regenerate tissue like cartilage. Typically, stem cell therapy is used to regenerative articular cartilage, but it can also regenerative ligaments and tendons. This treatment is generally used in more advanced cases, such as degenerative arthritis, severe tendon injuries, and severely degenerated joints.\n\nAll three regenerative techniques accelerate fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissue, and chondrocyte proliferation. All of which amplify the body\'s own repair process and accelerate healing.\n\nRegenerative Orthopedics help you to avoid joint and spine surgery and to live pain free without the need for invasive surgery. And it is tolerated well by people of all ages.\n\nRead the full article below as it appeared in the <a href=\"https://www.townsendletter.com\">Townsend Letter.</a>\n\nWe have quite a few more articles about arthritis pain. To read more articles about treatment options for arthritis, <a href=\"https://www.drfields.com/?s=arthritis\">click here.</a>\n\n[caption id=\"attachment_1248\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1248 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-june-2013-2.gif\" alt=\"How to Avoid Joint and Spine Surgery\" width=\"955\" height=\"1248\" /> How to Avoid Joint and Spine Surgery[/caption]\n\n[caption id=\"attachment_1249\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1249 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-june-2013-3.gif\" alt=\"How to Avoid Joint and Spine Surgery\" width=\"955\" height=\"1241\" /> How to Avoid Joint and Spine Surgery[/caption]','Townsend Letter: How to Avoid Joint and Spine Surgery','','inherit','closed','closed','','1541-autosave-v1','','','2022-12-02 07:30:29','2022-12-02 07:30:29','',1541,'https://www.drfields.com/?p=5627',0,'revision','',0),(5628,8,'2022-12-02 07:30:31','2022-12-02 07:30:31','<h3>How to Avoid Joint and Spine Surgery <em>and Live Pain Free</em></h3>\r\nRegenerative Orthopedics are natural non-surgical methods that assist the body to heal injured tendons and ligaments. These treatments help your body make new cells by boosting the natural healing cascade of the body. This serves to strengthen lax or torn ligaments and tendons, and repairs the damaged structures. It also helps patients avoid joint and spine surgery.\r\n<h3>When Is It Time To Seek Regenerative Orthopedics?</h3>\r\nIf you have had chronic pain that remains even after weeks, months, or years of healing, then it\'s time to seek out a practitioner who is experienced in Regenerative Orthopedics. The problem lies in the fact that both ligaments and tendons have poor circulations. And it is this lack of blood supply to the injured area that deprives the injured area of the nutrients it needs to heal properly.\r\n\r\nAnd although the blood supply is low, the presence of nerves is not. So these nerves become stretched and irritated in these weakened areas, and the tweaked nerves send out pain signals. Additionally, the ongoing weakness in the ligaments and tendons will also lead to degenerative of the cartilage. Eventually, arthritis will result. It is not uncommon for surgery to be recommended at this point.\r\n\r\nBut non-surgical Regenerative Orthopedics is a more logical alternative, and one that does not require extended downtime. Regenerative Orthopedics can help you avoid joint and spine surgery. It can boost healing in your joint and help you to achieve the pain-free results you seek.\r\n<h3>Regenerative Orthopedics include Stem Cell Therapy, PRP, and Prolotherapy</h3>\r\n<h4><em>Dextrose Prolotherapy</em></h4>\r\nDextrose Prolotherapy is just one type of Regenerative Orthopedics. It involves a series of 6-8 treatments with injections of a mild proliferant that stimulates the healing process. Prolotherapy is an excellent alternative to cortisone injections, which in long-term studies have been shown to actually weaken tissue. Prolotherapy is effective at eliminating pain in many different painful conditions.\r\n<h4><em>Platelet Rich Plasma (PRP)</em></h4>\r\nPlatelet Rich Plasma uses the patients own blood to concentrate platelets by a factor of 7 to 10 times. That means there are a lot of growth factors available in this concentrated solution. The solution rich in growth factors can then be injected into the damaged area to catalyze the growth of new soft tissue. PRP is good for structures such as the labrum of the hip and shoulder, the knee meniscus, and some forms of arthritis.\r\n<h4><em>Stem Cell Therapy</em></h4>\r\nStem Cell Therapy is derived from the patients own bone marrow stem cells and adipose stem cells. These cells can regenerate tissue like cartilage. Typically, stem cell therapy is used to regenerative articular cartilage, but it can also regenerative ligaments and tendons. This treatment is generally used in more advanced cases, such as degenerative arthritis, severe tendon injuries, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissue, and chondrocyte proliferation. All of which amplify the body\'s own repair process and accelerate healing.\r\n\r\nRegenerative Orthopedics help you to avoid joint and spine surgery and to live pain free without the need for invasive surgery. And it is tolerated well by people of all ages.\r\n\r\nRead the full article below as it appeared in the <a href=\"https://www.townsendletter.com\">Townsend Letter.</a>\r\n\r\nWe have quite a few more articles about arthritis pain. To read more articles about treatment options for arthritis, <a href=\"https://www.drfields.com/?s=arthritis\">click here.</a>\r\n\r\n[caption id=\"attachment_1248\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1248 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-june-2013-2.gif\" alt=\"How to Avoid Joint and Spine Surgery\" width=\"955\" height=\"1248\" /> How to Avoid Joint and Spine Surgery[/caption]\r\n\r\n[caption id=\"attachment_1249\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1249 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-june-2013-3.gif\" alt=\"How to Avoid Joint and Spine Surgery\" width=\"955\" height=\"1241\" /> How to Avoid Joint and Spine Surgery[/caption]','Townsend Letter: How to Avoid Joint and Spine Surgery','','inherit','closed','closed','','1541-revision-v1','','','2022-12-02 07:30:31','2022-12-02 07:30:31','',1541,'https://www.drfields.com/?p=5628',0,'revision','',0),(5629,8,'2022-12-02 07:30:49','2022-12-02 07:30:49','<h3>Are MRI\'s Replacing The Physical Exam?</h3>\r\nEveryone seems to want to get an MRI nowadays. It\'s like there is an MRI epidemic, with millions and millions being performed in the U.S. A patient complains of pain, and an MRI is ordered. But are MRI\'s replacing the physical exam?\r\n\r\nSure, an MRI will often show an abnormality. But the problem is...<strong>that abnormality very well may not be what is causing the pain. </strong>A disc abnormality does not necessarily mean that the disc is causing the pain. Many people who have no pain have disc abnormalities.\r\n<h3>MRI Results Without A Physical Exam</h3>\r\nThe lack of a physical exam is becoming a problem. Before the MRI, physicians had to diagnose by an exam. And they would actually palpate and touch the patient. In fact, 90% of the diagnosis would come from the history and physical exam. MRI\'s should confirm what already is suspected as a result of a thorough patient history and examination.\r\n<h3>MRI and Surgery</h3>\r\nIf you are seriously considering surgery, then an MRI is what the orthopedic surgeon will use to map the surgery. <strong>But never have surgery based just on the results of an MRI. </strong>Get another opinion. And make sure you receive a proper exam. A practical option would be to receive a consult from a Prolotherapist who specializes in fixing the spine and joints without surgery. Surgery should only be done after all conservative care has been tried, including Regenerative Orthopedic options like Prolotherapy.\r\n<h4><em>MRI studies are not always helpful and can sometimes lead to further intervention. Do not let MRI results dictate your treatment. Fixing your problem with the least invasive and most effective method should be your priority</em>.</h4>\r\n<em>Please read the entire article, which was originally printed in the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.</em>\r\n\r\nIf a joint replacement has been recommended, Stem Cell Therapy, another Regenerative Orthopedic option, is an effective non-surgical alternative. Please read our article <a title=\"Alternative to Joint Replacement Surgery\" href=\"https://www.drfields.com/alternative-to-joint-replacement-surgery/\">Alternative to Joint Replacement Surgery </a> <a href=\"https://www.drfields.com/alternative-to-joint-replacement-surgery/\">here.</a>\r\n\r\n[caption id=\"attachment_1235\" align=\"aligncenter\" width=\"955\"]<img class=\"wp-image-1235 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-1.gif\" alt=\"Townsend Article October 2013 1\" width=\"955\" height=\"1241\" /> <strong>Are MRI\'s replacing the physical exam?</strong>[/caption]\r\n\r\n<img class=\"aligncenter size-full wp-image-1236\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-2.gif\" alt=\"Townsend Article October 2013 2\" width=\"955\" height=\"1251\" />','Townsend Letter: Are MRI\'s Replacing The Physical Exam','','inherit','closed','closed','','1535-revision-v1','','','2022-12-02 07:30:49','2022-12-02 07:30:49','',1535,'https://www.drfields.com/?p=5629',0,'revision','',0),(5630,8,'2022-12-02 07:31:15','2022-12-02 07:31:15','<h3>Knee Pain and Dysfunction</h3>\r\nAt one time or another, most of us will have had some sort of knee dysfunction or pain. After all, we use our knees on a daily basis. And because the knee is a weight-bearing joint, athletic individuals and overweight people are more prone to knee pain and injuries.\r\n\r\nKnee pain can develop suddenly or come on over a period of time. The acute or sudden pain may be the result of a fall or mistep. And pain that develops chronically over time may be the result of an acute injury that never healed correctly. Chronic conditions are the most common cause of knee pain and dysfunction, and the culprit is very often arthritis.\r\n<h3>Degenerative Joint Disease and Osteoarthritis</h3>\r\nOsteoarthritis affects most of us as we age, steadily wearing away the smooth cartilage that caps the ends of our long bones. That cartilage is essential for proper motion and function of the joint. The wearing down of the joint can be accelerated by overuse in playing sports, physically demanding jobs, walking, excessive sitting (which increases the pressure within the knee) or just over time through daily wear and tear.\r\n\r\nReferred pain, which occurs when a ligament injury or weakness in one part of the body cause pain in another part, may also be involved.\r\n<h3>Knee Pain Treatments</h3>\r\nKnee pain will often go away on its on. Heat, ice, massage, PT, acupuncture, chiropractic, laser, and other treatments may help to resolve the pain. But when these treatments do not work, Regenerative Orthopedics, such as Stem Cell Therapy, PRP, and Prolotherapy are excellent non-surgical treatment solutions. And they can get you back to doing what you love without the need for extended time off.\r\n\r\nEven if you have a partial tear in a ligament or tendon, Regenerative Orthopedics can successfully resolve the injury without the need for surgery. If the tear is complete, surgery is necessary. Regenerative Orthopedics are the safest and most effective treatment options for the repair of ligaments, tendons, and cartilage damage.\r\n\r\nMany of my patients have had surgery, but still experience pain. Regenerative Orthopedics is still able to help even if you have already had surgery. But if surgery is being recommended, consider the alternative. Give us a <a href=\"https://www.drfields.com/contact/\">call <strong>at </strong></a><strong><a href=\"tel:310-453-1234\">310-453-1234</a>.</strong>\r\n\r\nRead the full article from the <a href=\"https://www.townsendletter.com\">Townsend Letter</a> below.\r\n\r\n[caption id=\"attachment_4373\" align=\"alignnone\" width=\"955\"]<img class=\"wp-image-4373 size-full\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-2-2.gif\" alt=\"Knee Pain\" width=\"955\" height=\"1249\" /> Knee Pain and Dysfunction[/caption]\r\n\r\n<img class=\"wp-image-1244 alignleft\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-1.gif\" alt=\"Townsend Article July 2013 1\" width=\"939\" height=\"1231\" />\r\n\r\n&nbsp;','Townsend Letter: Knee Pain and Dysfunction','','inherit','closed','closed','','1539-revision-v1','','','2022-12-02 07:31:15','2022-12-02 07:31:15','',1539,'https://www.drfields.com/?p=5630',0,'revision','',0),(5631,8,'2022-12-03 04:33:09','2022-12-03 04:33:09','<img class=\"wp-image-3900 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Get-rid-of-the-pain-400x500.png\" alt=\"Get Rid Of The Pain\" width=\"366\" height=\"458\" />\n<h4><em>Introduction</em></h4>\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments so you can live pain-free. Regenerative Orthopedics helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones).\n\nThe notion of stimulating the body to heal itself goes back to ancient Greece. Prolotherapy, one type of Regenerative Orthopedics, was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\n<h4>When Is It Time for Regenerative Orthopedics?</h4>\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain.\n\nWhen ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Regenerative Orthopedics is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But regenerative techniques don\'t keep you from the activities you love. They get you back to them quickly.\n\nRegenerative Orthopedics can consist of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. What an excellent alternative to treatments like cortisone injections, which long-term studies have shown can actually weaken tissue.\n\nMany joints can be treated with Regenerative Orthopedics. Have back pain? We can help! Knee pain? We can repair that too! Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more can be repaired with Regenerative Orthopedics.\n<h4>Three Types of Regenerative Orthopedics</h4>\n<strong>Prolotherapy</strong> helps the body to heal in a natural non-surgical way. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As a result, the immune system sends growth factors. This results in healthy, strong, and vibrant new tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored. The pain is alleviated so joints can function normally. Most ligament and tendon injuries benefit from <a href=\"https://www.drfields.com\">dextrose prolotherapy</a>.\n\n<strong>Platelet Rich Plasma (PRP)</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and boost the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\n\n<strong>Stem Cell Therapy</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymal stem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. When is Stem Cell Therapy recommended? Indications for using Stem Cell Therapy include severe arthritis, certain types of tears, and severely degenerated joints.\n\nAll three regenerative techniques accelerate the fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. All of this amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\n<h4>Summary</h4>\nRegenerative Orthopedics is a successful non-surgical technique that helps the body heal itself. It works well on many medical conditions that result in painful joints. It is minimally invasive with very little recovery time and is tolerated well by patients of all ages. Regenerative Orthopedics first … surgery last.\n<h5><strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine. He is both a board-certified medical physician and chiropractor, one of only a handful of physicians in the United States with both these degrees. Dr. Fields is the director of OrthoRegen in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. Dr. Fields has appeared as a regenerative medicine expert on national television as well as on television and radio shows. He lectures at medical and chiropractic conferences in the United States and around the world on these techniques. He has also written for several publications.</h5>\n<h5><em>The Athletic Doc Walks His Talk</em></h5>\n<h5>Peter A. Fields, MD, DC is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. And he volunteers with the foundation, treating patients, and teaching physicians from all over the world about prolotherapy. But Dr. Fields doesn\'t just teach. He is a very active and competitive triathlete, having completed eleven Ironman triathlons and many other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”</h5>','Pain-Free Living with Regenerative Orthopedics','','inherit','closed','closed','','1423-autosave-v1','','','2022-12-03 04:33:09','2022-12-03 04:33:09','',1423,'https://www.drfields.com/?p=5631',0,'revision','',0),(5632,8,'2022-12-03 04:33:33','2022-12-03 04:33:33','<img class=\"wp-image-3900 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Get-rid-of-the-pain-400x500.png\" alt=\"Get Rid Of The Pain\" width=\"366\" height=\"458\" />\r\n<h4><em>Introduction</em></h4>\r\nRegenerative Orthopedics is a natural non-surgical method of assisting the body to heal injured tendons and ligaments so you can live pain-free. Regenerative Orthopedics helps your body make new cells by boosting the body\'s natural healing abilities and the supply of nutrient-rich blood cells to the affected area. This serves to strengthen weakened or torn tendons and ligaments (ligaments are the tough tissues that connect bones to bones, and tendons are the same kind of tissue that connect muscles to bones).\r\n\r\nThe notion of stimulating the body to heal itself goes back to ancient Greece. Prolotherapy, one type of Regenerative Orthopedics, was founded by Dr. George Hackett and passed on to Dr. Gustav Hemwall to form the modern model of prolotherapy in the 1950s and 1960s. The leading education and teaching organization for this, the Hackett-Hemwall Foundation, is named in their honor.\r\n<h4>When Is It Time for Regenerative Orthopedics?</h4>\r\nAre you experiencing pain that just won\'t go away in an area that was injured? Some people put up with weak and painful joints for weeks, months, or even years. Like when you sprain your ankle at some point and then re-injure the ankle again and again. The root of the problem is usually weakened soft tissue, like ligaments or tendons. Both ligaments and tendons have very poor circulation and this lack of blood supply deprives them of the nutrients that they need to heal properly. On the other hand, they have lots of nerves. And that is why you may continue to feel a lot of pain. How does that happen? Well, the nerves around the soft tissues become stretched and irritated, and that causes pain.\r\n\r\nWhen ligaments become relaxed and weak, cartilage degeneration eventually occurs too, which may result in arthritis. It is at this point that a patient is often told that surgery is the only option to “fix” the problem. But surgery is not the only option. Regenerative Orthopedics is the next logical step. Surgery requires weeks of recovery, physical therapy, and more pain. But regenerative techniques don\'t keep you from the activities you love. They get you back to them quickly.\r\n\r\nRegenerative Orthopedics can consist of 4 to 8 treatments. It\'s an injection treatment. But a local anesthetic is used so that there is minimal discomfort. The weakened area heals, and the patient’s pain is reduced or eliminated. What an excellent alternative to treatments like cortisone injections, which long-term studies have shown can actually weaken tissue.\r\n\r\nMany joints can be treated with Regenerative Orthopedics. Have back pain? We can help! Knee pain? We can repair that too! Conditions such as tendonitis, bursitis, various sports injuries, tendonitis, arthritis, sciatica, headaches, degenerated joints, fibromyalgia, and more can be repaired with Regenerative Orthopedics.\r\n<h4>Three Types of Regenerative Orthopedics</h4>\r\n<strong>Prolotherapy</strong> helps the body to heal in a natural non-surgical way. With Prolotherapy (also called Dextrose Prolotherapy), the weakened areas are injected with a solution that stimulates the growth of healthy, strong tissues. As a result, the immune system sends growth factors. This results in healthy, strong, and vibrant new tissues. As the tendons and ligaments grow stronger and vibrant, the pain is alleviated and motion is restored. The pain is alleviated so joints can function normally. Most ligament and tendon injuries benefit from <a href=\"https://www.drfields.com\">dextrose prolotherapy</a>.\r\n\r\n<strong>Platelet Rich Plasma (PRP)</strong> uses the patient’s own blood to concentrate platelets by a factor of 7 to 10× (platelets = growth factors). This high concentration of platelets – from 3 to 10 times that of normal blood – can be injected into the damaged areas and boost the growth of new soft tissue. PRP accelerates the regeneration of injured tissues and enhances tissue healing. <a href=\"https://www.drfields.com/prp-treatment/\">PRP</a> is good for structures such as the labrum in the shoulder, torn meniscus in the knee, and severe hip arthritis.\r\n\r\n<strong>Stem Cell Therapy</strong> is derived from patient cells in a relatively new process. One type of <a href=\"https://www.drfields.com/stem-cell-treatment/\">cell</a> found in the bone marrow is the mesenchymal stem cell. These immature cells can become tissues such as cartilage, bone, and ligaments. Typically the tissue stimulated with bone marrow cells is articular cartilage, but it can also proliferate soft-tissue structures such as ligament and tendons. When is Stem Cell Therapy recommended? Indications for using Stem Cell Therapy include severe arthritis, certain types of tears, and severely degenerated joints.\r\n\r\nAll three regenerative techniques accelerate the fibroblastic proliferation through cell growth, proteosynthesis, reparation, the remodeling of tissues, and chondrocyte proliferation. All of this amplifies the body’s own repair process and accelerates healing and repairs damaged tissue.\r\n<h4>Summary</h4>\r\nRegenerative Orthopedics is a successful non-surgical technique that helps the body heal itself. It works well on many medical conditions that result in painful joints. It is minimally invasive with very little recovery time and is tolerated well by patients of all ages. Regenerative Orthopedics first … surgery last.\r\n<h5><strong>Peter A. Fields, MD, DC, “The Athletic Doc<sup>®</sup>,”</strong> is an expert in the field of orthopedic/sports medicine.  Dr. Fields is the director of OrthoRegen in Santa Monica, California. Orthopedic/sports medicine is the main focus of his practice. Dr. Fields has appeared as a regenerative medicine expert on national television as well as on television and radio shows. He lectures at medical and chiropractic conferences in the United States and around the world on these techniques. He has also written for several publications.</h5>\r\n<h5><em>The Athletic Doc Walks His Talk</em></h5>\r\n<h5>Peter A. Fields, MD, DC is a lead clinical instructor with the Hackett-Hemwall Foundation, the nation’s largest teaching and education organization for prolotherapy. And he volunteers with the foundation, treating patients, and teaching physicians from all over the world about prolotherapy. But Dr. Fields doesn\'t just teach. He is a very active and competitive triathlete, having completed eleven Ironman triathlons and many other races. He has had his back and shoulder treated by these techniques, which helped him avoid surgery. In other words, this doc “walks his talk.”</h5>','Pain-Free Living with Regenerative Orthopedics','','inherit','closed','closed','','1423-revision-v1','','','2022-12-03 04:33:33','2022-12-03 04:33:33','',1423,'https://www.drfields.com/?p=5632',0,'revision','',0),(5633,8,'2022-12-06 08:26:44','2022-12-06 08:26:44','<h2>Can Cortisone Make Knee Arthritis Worse?</h2>\r\nCortisone makes arthritis worse? That\'s what brand-new studies are showing. Just this past week, a couple of new studies on corticosteroid knee injections showed that they were \"significantly associated\" with increased progression of osteoarthritis. Wow, cortisone injections do make arthritis worse!\r\n\r\nIf you have been following our newsletters or reading our website articles, you know we have revealed this to you over the years, as other studies have suggested the dangers of corticosteroids.\r\n\r\nInjections of corticosteroids are a prevalent treatment used in traditional medicine to treat arthritis. And even though many studies over the years have shown the harmfulness of cortisone to joint structures, the treatment has continued to be used.\r\n\r\nHopefully, the results from <a href=\"https://press.rsna.org/timssnet/media/pressreleases/14_pr_target.cfm?id=2386\" target=\"_blank\" rel=\"noopener\">the studies</a>, which were presented at the annual meeting of the Radiological Society of North America, will change how physicians treat their patients.\r\n<h2>Does the New Research Say Cortisone Makes Knee Arthritis Worse?<strong> </strong></h2>\r\n<ul>\r\n 	<li>The first study was from the University of California in San Francisco. Over a two-year period, the researchers compared 70 patients with osteoarthritis who had received intraarticular knee injections to a control group of 140 with osteoarthritis who did not get injections. The data showed more arthritis progression in patients who had steroid shots. (1)</li>\r\n</ul>\r\n<ul>\r\n 	<li>In the second study, researchers at the Chicago Medical School studied 150 patients who received intraarticular knee injections. Once again, the patients injected with steroids had significantly more osteoarthritis progression. (2)</li>\r\n</ul>\r\nThe data suggest that intraarticular cortisone injections speed up arthritis rather than prevent it.\r\n<h2>Are These Results New?</h2>\r\nUnfortunately, this is not the first time researchers have revealed the harmfulness of cortisone. Studies have shown for decades that cortisone damages cartilage cells.\r\n<ul>\r\n 	<li>Researchers in a 2019 study said, “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”(3)</li>\r\n</ul>\r\n<ul>\r\n 	<li>In 2017 scientists said, “Among patients with symptomatic knee osteoarthritis, two years of intra-articular triamcinolone, compared with intra-articular saline, resulted in significantly greater cartilage volume loss and no significant difference in knee pain. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.” (4)</li>\r\n</ul>\r\n<ul>\r\n 	<li>And in 2011, researchers revealed evidence of consistent and significant damage to cartilage cells from corticosteroid injections. (5)</li>\r\n</ul>\r\nAs you can see, even in the past decade, science has shown that cortisone is damaging to joint structures.\r\n<h2>Now What, Since Cortisone Makes Arthritis Worse?<strong> </strong></h2>\r\nHopefully, the physicians who commonly treat patients with corticosteroids will educate themselves on these dangers and stop recommending the treatment. In the meantime, patients can protect themselves and choose treatments that repair rather than damage the joint.\r\n\r\nWe continue to offer treatments that regenerate and repair the joint. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy, work by repairing the arthritic joint. These treatments heal the joints, strengthen the structures of the joints, and even boost cartilage growth.\r\n\r\nRegenerative Orthopedics regenerates the joint. The treatments do not cause the degeneration that occurs with cortisone injections. Additionally, there is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nChoose Regenerative Orthopedics to achieve the pain relief you desire, and get back to the activities you enjoy doing.\r\n<h2>References</h2>\r\n(1) PR Newswire. NSAIDs May Worsen Arthritis Inflammation. https://www.prnewswire.com/news-releases/nsaids-may-worsen-arthritis-inflammation-301681834.html. Accessed 12/2/22.\r\n\r\n(2) PR Newswire. Steroid Injections Worsen Knee Arthritis. https://www.prnewswire.com/news-releases/steroid-injections-worsen-knee-arthritis-301685584.html Accessed 12/2/22.\r\n\r\n(3) Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology, 2019; 190341\r\n\r\n(4) McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. JAMA. 2017;317(19):1967-1975.\r\n\r\n(5) Dragoo JL, Danial CM, Braun HJ, Pouliot MA, Kim HJ. The chondrotoxicity of single-dose corticosteroids. Knee Surg Sports Traumatol Arthrosc. 2012 Sep;20(9):1809-14. doi: 10.1007/s00167-011-1820-6. Epub 2011 Dec 21. PMID: 22186921.','New Studies Reveal Cortisone Injections Make Knee Arthritis Worse','','publish','closed','open','','new-studies-reveal-cortisone-injections-make-knee-arthritis-worse','','','2023-01-24 04:46:35','2023-01-24 04:46:35','',0,'https://www.drfields.com/?p=5633',0,'post','',0),(5634,8,'2022-12-06 08:26:44','2022-12-06 08:26:44','Cortisone is making knee arthritis worse? That\'s what brand new studies are showing. Just this past week, a couple of new studies on corticosteroid knee injections showed that they were \"significantly associated\" with increased progression of osteoarthritis. Wow, cortisone injections do make arthritis worse!\r\n\r\nIf you have been following our newsletters, or reading our website articles, you know we have been revealing this to you over the years as other studies have suggested the dangers of corticosteroids.\r\n\r\nInjections of corticosteroids are a very common treatment used in traditional medicine to treat arthritis. And even though many studies over the years have shown the harmfulness of cortisone to joint structures, the treatment has continued to be used.\r\n\r\nHopefully, the results from <a href=\"https://press.rsna.org/timssnet/media/pressreleases/14_pr_target.cfm?id=2386\">the studies</a>, which were presented at the annual meeting of the Radiological Society of North America, will change the way physicians treat their patients.\r\n<h2>So What Does the New Research Say?<strong> </strong></h2>\r\n<ul>\r\n 	<li>The first study was from the University of California in San Francisco. Over a two year period, the researchers compared 70 patients with osteoarthritis who had received intraarticular knee injections to a control group of 140 with osteoarthritis who did not get injections. The data showed more arthritis progression in patients who had steroid shots. (1)</li>\r\n</ul>\r\n<ul>\r\n 	<li>In the second study, researchers at the Chicago Medical School studied 150 patients who received intraarticular knee injections. Once again, the patients injected with steroids had significantly more osteoarthritis progression. (2)</li>\r\n</ul>\r\nThe data suggests that intraarticular cortisone injections speed up arthritis rather than prevent it.\r\n<h2>Are These Results New?</h2>\r\nUnfortunately, this is not the first time researchers reveal the harmfulness of cortisone. Studies have shown for decades that cortisone damages cartilage cells.\r\n<ul>\r\n 	<li>Researchers in a 2019 study said, “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”(3)</li>\r\n</ul>\r\n<ul>\r\n 	<li>In 2017 scientists said this, “Among patients with symptomatic knee osteoarthritis, two years of intra-articular triamcinolone, compared with intra-articular saline, resulted in significantly greater cartilage volume loss and no significant difference in knee pain. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.” (4)</li>\r\n</ul>\r\n<ul>\r\n 	<li>And in 2011, researchers revealed evidence of consistent and significant damage to cartilage cells from corticosteroid injections. (5)</li>\r\n</ul>\r\nAs you can see, even in the past decade, science has shown that cortisone is damaging to the joint structures.\r\n<h2>Now What?<strong> </strong></h2>\r\nHopefully, the physicians who commonly treat patients with corticosteroids will educate themselves on these dangers and stop recommending the treatment. In the meantime, patients can protect themselves and choose treatments that repair rather than damage the joint.\r\n\r\nWe continue to offer treatments that regenerate and repair the joint. Regenerative Orthopedics, like like Stem Cell Therapy, PRP, and Prolotherapy work by repairing the arthritic joint. These treatments heal the joints, strengthen the structures of the joints, and even boost the growth of cartilage.\r\n\r\nRegenerative Orthopedics regenerate the joint. The treatments do not cause the degeneration that occurs with cortisone injections. Additionally, there is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nChoose Regenerative Orthopedics to achieve the pain relief you desire, and get back to the activities you enjoy doing.\r\n<h2>References</h2>\r\n(1) PR Newswire. NSAIDs May Worsen Arthritis Inflammation. https://www.prnewswire.com/news-releases/nsaids-may-worsen-arthritis-inflammation-301681834.html. Accessed 12/2/22.\r\n\r\n(2) PR Newswire. Steroid Injections Worsen Knee Arthritis. https://www.prnewswire.com/news-releases/steroid-injections-worsen-knee-arthritis-301685584.html Accessed 12/2/22.\r\n\r\n(3) Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology, 2019; 190341\r\n\r\n(4) McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. JAMA. 2017;317(19):1967-1975.\r\n\r\n(5) Dragoo JL, Danial CM, Braun HJ, Pouliot MA, Kim HJ. The chondrotoxicity of single-dose corticosteroids. Knee Surg Sports Traumatol Arthrosc. 2012 Sep;20(9):1809-14. doi: 10.1007/s00167-011-1820-6. Epub 2011 Dec 21. PMID: 22186921.','New Studies Reveal Cortisone Injections Make Knee Arthritis Worse','','inherit','closed','closed','','5633-revision-v1','','','2022-12-06 08:26:44','2022-12-06 08:26:44','',5633,'https://www.drfields.com/?p=5634',0,'revision','',0),(5635,8,'2022-12-06 08:27:33','2022-12-06 08:27:33','Cortisone New Studies','New Studies Reveal Cortisone Injections Make Knee Arthritis Worse','Cortisone New Studies','inherit','closed','closed','','cortisone-new-studies','','','2022-12-06 08:27:47','2022-12-06 08:27:47','',5633,'https://www.drfields.com/wp-content/uploads/2022/12/Cortisone-New-studies.png',0,'attachment','image/png',0),(5636,8,'2022-12-06 08:28:01','2022-12-06 08:28:01','[caption id=\"attachment_5635\" align=\"alignright\" width=\"300\"]<img class=\"wp-image-5635 size-wcsquare\" src=\"https://www.drfields.com/wp-content/uploads/2022/12/Cortisone-New-studies-300x300.png\" alt=\"New Studies Reveal Cortisone Injections Make Knee Arthritis Worse\" width=\"300\" height=\"300\" /> Cortisone New Studies[/caption]\n\nCortisone is making knee arthritis worse? That\'s what brand new studies are showing. Just this past week, a couple of new studies on corticosteroid knee injections showed that they were \"significantly associated\" with increased progression of osteoarthritis. Wow, cortisone injections do make arthritis worse!\n\nIf you have been following our newsletters, or reading our website articles, you know we have been revealing this to you over the years as other studies have suggested the dangers of corticosteroids.\n\nInjections of corticosteroids are a very common treatment used in traditional medicine to treat arthritis. And even though many studies over the years have shown the harmfulness of cortisone to joint structures, the treatment has continued to be used.\n\nHopefully, the results from <a href=\"https://press.rsna.org/timssnet/media/pressreleases/14_pr_target.cfm?id=2386\">the studies</a>, which were presented at the annual meeting of the Radiological Society of North America, will change the way physicians treat their patients.\n<h2>So What Does the New Research Say?<strong> </strong></h2>\n<ul>\n 	<li>The first study was from the University of California in San Francisco. Over a two year period, the researchers compared 70 patients with osteoarthritis who had received intraarticular knee injections to a control group of 140 with osteoarthritis who did not get injections. The data showed more arthritis progression in patients who had steroid shots. (1)</li>\n</ul>\n<ul>\n 	<li>In the second study, researchers at the Chicago Medical School studied 150 patients who received intraarticular knee injections. Once again, the patients injected with steroids had significantly more osteoarthritis progression. (2)</li>\n</ul>\nThe data suggests that intraarticular cortisone injections speed up arthritis rather than prevent it.\n<h2>Are These Results New?</h2>\nUnfortunately, this is not the first time researchers reveal the harmfulness of cortisone. Studies have shown for decades that cortisone damages cartilage cells.\n<ul>\n 	<li>Researchers in a 2019 study said, “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”(3)</li>\n</ul>\n<ul>\n 	<li>In 2017 scientists said this, “Among patients with symptomatic knee osteoarthritis, two years of intra-articular triamcinolone, compared with intra-articular saline, resulted in significantly greater cartilage volume loss and no significant difference in knee pain. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.” (4)</li>\n</ul>\n<ul>\n 	<li>And in 2011, researchers revealed evidence of consistent and significant damage to cartilage cells from corticosteroid injections. (5)</li>\n</ul>\nAs you can see, even in the past decade, science has shown that cortisone is damaging to the joint structures.\n<h2>Now What?<strong> </strong></h2>\nHopefully, the physicians who commonly treat patients with corticosteroids will educate themselves on these dangers and stop recommending the treatment. In the meantime, patients can protect themselves and choose treatments that repair rather than damage the joint.\n\nWe continue to offer treatments that regenerate and repair the joint. Regenerative Orthopedics, like like Stem Cell Therapy, PRP, and Prolotherapy work by repairing the arthritic joint. These treatments heal the joints, strengthen the structures of the joints, and even boost the growth of cartilage.\n\nRegenerative Orthopedics regenerate the joint. The treatments do not cause the degeneration that occurs with cortisone injections. Additionally, there is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\n\nChoose Regenerative Orthopedics to achieve the pain relief you desire, and get back to the activities you enjoy doing.\n<h2>References</h2>\n(1) PR Newswire. NSAIDs May Worsen Arthritis Inflammation. https://www.prnewswire.com/news-releases/nsaids-may-worsen-arthritis-inflammation-301681834.html. Accessed 12/2/22.\n\n(2) PR Newswire. Steroid Injections Worsen Knee Arthritis. https://www.prnewswire.com/news-releases/steroid-injections-worsen-knee-arthritis-301685584.html Accessed 12/2/22.\n\n(3) Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology, 2019; 190341\n\n(4) McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. JAMA. 2017;317(19):1967-1975.\n\n(5) Dragoo JL, Danial CM, Braun HJ, Pouliot MA, Kim HJ. The chondrotoxicity of single-dose corticosteroids. Knee Surg Sports Traumatol Arthrosc. 2012 Sep;20(9):1809-14. doi: 10.1007/s00167-011-1820-6. Epub 2011 Dec 21. PMID: 22186921.','New Studies Reveal Cortisone Injections Make Knee Arthritis Worse','','inherit','closed','closed','','5633-autosave-v1','','','2022-12-06 08:28:01','2022-12-06 08:28:01','',5633,'https://www.drfields.com/?p=5636',0,'revision','',0),(5637,8,'2022-12-06 08:28:46','2022-12-06 08:28:46','[caption id=\"attachment_5635\" align=\"alignright\" width=\"300\"]<img class=\"wp-image-5635\" src=\"https://www.drfields.com/wp-content/uploads/2022/12/Cortisone-New-studies-500x419.png\" alt=\"New Studies Reveal Cortisone Injections Make Knee Arthritis Worse\" width=\"300\" height=\"251\" /> Cortisone New Studies[/caption]\r\n\r\nCortisone is making knee arthritis worse? That\'s what brand new studies are showing. Just this past week, a couple of new studies on corticosteroid knee injections showed that they were \"significantly associated\" with increased progression of osteoarthritis. Wow, cortisone injections do make arthritis worse!\r\n\r\nIf you have been following our newsletters, or reading our website articles, you know we have been revealing this to you over the years as other studies have suggested the dangers of corticosteroids.\r\n\r\nInjections of corticosteroids are a very common treatment used in traditional medicine to treat arthritis. And even though many studies over the years have shown the harmfulness of cortisone to joint structures, the treatment has continued to be used.\r\n\r\nHopefully, the results from <a href=\"https://press.rsna.org/timssnet/media/pressreleases/14_pr_target.cfm?id=2386\">the studies</a>, which were presented at the annual meeting of the Radiological Society of North America, will change the way physicians treat their patients.\r\n<h2>So What Does the New Research Say?<strong> </strong></h2>\r\n<ul>\r\n 	<li>The first study was from the University of California in San Francisco. Over a two year period, the researchers compared 70 patients with osteoarthritis who had received intraarticular knee injections to a control group of 140 with osteoarthritis who did not get injections. The data showed more arthritis progression in patients who had steroid shots. (1)</li>\r\n</ul>\r\n<ul>\r\n 	<li>In the second study, researchers at the Chicago Medical School studied 150 patients who received intraarticular knee injections. Once again, the patients injected with steroids had significantly more osteoarthritis progression. (2)</li>\r\n</ul>\r\nThe data suggests that intraarticular cortisone injections speed up arthritis rather than prevent it.\r\n<h2>Are These Results New?</h2>\r\nUnfortunately, this is not the first time researchers reveal the harmfulness of cortisone. Studies have shown for decades that cortisone damages cartilage cells.\r\n<ul>\r\n 	<li>Researchers in a 2019 study said, “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”(3)</li>\r\n</ul>\r\n<ul>\r\n 	<li>In 2017 scientists said this, “Among patients with symptomatic knee osteoarthritis, two years of intra-articular triamcinolone, compared with intra-articular saline, resulted in significantly greater cartilage volume loss and no significant difference in knee pain. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.” (4)</li>\r\n</ul>\r\n<ul>\r\n 	<li>And in 2011, researchers revealed evidence of consistent and significant damage to cartilage cells from corticosteroid injections. (5)</li>\r\n</ul>\r\nAs you can see, even in the past decade, science has shown that cortisone is damaging to the joint structures.\r\n<h2>Now What?<strong> </strong></h2>\r\nHopefully, the physicians who commonly treat patients with corticosteroids will educate themselves on these dangers and stop recommending the treatment. In the meantime, patients can protect themselves and choose treatments that repair rather than damage the joint.\r\n\r\nWe continue to offer treatments that regenerate and repair the joint. Regenerative Orthopedics, like like Stem Cell Therapy, PRP, and Prolotherapy work by repairing the arthritic joint. These treatments heal the joints, strengthen the structures of the joints, and even boost the growth of cartilage.\r\n\r\nRegenerative Orthopedics regenerate the joint. The treatments do not cause the degeneration that occurs with cortisone injections. Additionally, there is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nChoose Regenerative Orthopedics to achieve the pain relief you desire, and get back to the activities you enjoy doing.\r\n<h2>References</h2>\r\n(1) PR Newswire. NSAIDs May Worsen Arthritis Inflammation. https://www.prnewswire.com/news-releases/nsaids-may-worsen-arthritis-inflammation-301681834.html. Accessed 12/2/22.\r\n\r\n(2) PR Newswire. Steroid Injections Worsen Knee Arthritis. https://www.prnewswire.com/news-releases/steroid-injections-worsen-knee-arthritis-301685584.html Accessed 12/2/22.\r\n\r\n(3) Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology, 2019; 190341\r\n\r\n(4) McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. JAMA. 2017;317(19):1967-1975.\r\n\r\n(5) Dragoo JL, Danial CM, Braun HJ, Pouliot MA, Kim HJ. The chondrotoxicity of single-dose corticosteroids. Knee Surg Sports Traumatol Arthrosc. 2012 Sep;20(9):1809-14. doi: 10.1007/s00167-011-1820-6. Epub 2011 Dec 21. PMID: 22186921.','New Studies Reveal Cortisone Injections Make Knee Arthritis Worse','','inherit','closed','closed','','5633-revision-v1','','','2022-12-06 08:28:46','2022-12-06 08:28:46','',5633,'https://www.drfields.com/?p=5637',0,'revision','',0),(5638,8,'2022-12-06 08:29:18','2022-12-06 08:29:18','[caption id=\"attachment_5635\" align=\"alignright\" width=\"300\"]<img class=\"wp-image-5635\" src=\"https://www.drfields.com/wp-content/uploads/2022/12/Cortisone-New-studies-500x419.png\" alt=\"New Studies Reveal Cortisone Injections Make Knee Arthritis Worse\" width=\"300\" height=\"251\" /> Cortisone New Studies[/caption]\r\n\r\nCortisone is making knee arthritis worse? That\'s what brand new studies are showing. Just this past week, a couple of new studies on corticosteroid knee injections showed that they were \"significantly associated\" with increased progression of osteoarthritis. Wow, cortisone injections do make arthritis worse!\r\n\r\nIf you have been following our newsletters, or reading our website articles, you know we have been revealing this to you over the years as other studies have suggested the dangers of corticosteroids.\r\n\r\nInjections of corticosteroids are a very common treatment used in traditional medicine to treat arthritis. And even though many studies over the years have shown the harmfulness of cortisone to joint structures, the treatment has continued to be used.\r\n\r\nHopefully, the results from <a href=\"https://press.rsna.org/timssnet/media/pressreleases/14_pr_target.cfm?id=2386\" target=\"_blank\" rel=\"noopener\">the studies</a>, which were presented at the annual meeting of the Radiological Society of North America, will change the way physicians treat their patients.\r\n<h2>So What Does the New Research Say?<strong> </strong></h2>\r\n<ul>\r\n 	<li>The first study was from the University of California in San Francisco. Over a two year period, the researchers compared 70 patients with osteoarthritis who had received intraarticular knee injections to a control group of 140 with osteoarthritis who did not get injections. The data showed more arthritis progression in patients who had steroid shots. (1)</li>\r\n</ul>\r\n<ul>\r\n 	<li>In the second study, researchers at the Chicago Medical School studied 150 patients who received intraarticular knee injections. Once again, the patients injected with steroids had significantly more osteoarthritis progression. (2)</li>\r\n</ul>\r\nThe data suggests that intraarticular cortisone injections speed up arthritis rather than prevent it.\r\n<h2>Are These Results New?</h2>\r\nUnfortunately, this is not the first time researchers reveal the harmfulness of cortisone. Studies have shown for decades that cortisone damages cartilage cells.\r\n<ul>\r\n 	<li>Researchers in a 2019 study said, “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”(3)</li>\r\n</ul>\r\n<ul>\r\n 	<li>In 2017 scientists said this, “Among patients with symptomatic knee osteoarthritis, two years of intra-articular triamcinolone, compared with intra-articular saline, resulted in significantly greater cartilage volume loss and no significant difference in knee pain. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.” (4)</li>\r\n</ul>\r\n<ul>\r\n 	<li>And in 2011, researchers revealed evidence of consistent and significant damage to cartilage cells from corticosteroid injections. (5)</li>\r\n</ul>\r\nAs you can see, even in the past decade, science has shown that cortisone is damaging to the joint structures.\r\n<h2>Now What?<strong> </strong></h2>\r\nHopefully, the physicians who commonly treat patients with corticosteroids will educate themselves on these dangers and stop recommending the treatment. In the meantime, patients can protect themselves and choose treatments that repair rather than damage the joint.\r\n\r\nWe continue to offer treatments that regenerate and repair the joint. Regenerative Orthopedics, like like Stem Cell Therapy, PRP, and Prolotherapy work by repairing the arthritic joint. These treatments heal the joints, strengthen the structures of the joints, and even boost the growth of cartilage.\r\n\r\nRegenerative Orthopedics regenerate the joint. The treatments do not cause the degeneration that occurs with cortisone injections. Additionally, there is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nChoose Regenerative Orthopedics to achieve the pain relief you desire, and get back to the activities you enjoy doing.\r\n<h2>References</h2>\r\n(1) PR Newswire. NSAIDs May Worsen Arthritis Inflammation. https://www.prnewswire.com/news-releases/nsaids-may-worsen-arthritis-inflammation-301681834.html. Accessed 12/2/22.\r\n\r\n(2) PR Newswire. Steroid Injections Worsen Knee Arthritis. https://www.prnewswire.com/news-releases/steroid-injections-worsen-knee-arthritis-301685584.html Accessed 12/2/22.\r\n\r\n(3) Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology, 2019; 190341\r\n\r\n(4) McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. JAMA. 2017;317(19):1967-1975.\r\n\r\n(5) Dragoo JL, Danial CM, Braun HJ, Pouliot MA, Kim HJ. The chondrotoxicity of single-dose corticosteroids. Knee Surg Sports Traumatol Arthrosc. 2012 Sep;20(9):1809-14. doi: 10.1007/s00167-011-1820-6. Epub 2011 Dec 21. PMID: 22186921.','New Studies Reveal Cortisone Injections Make Knee Arthritis Worse','','inherit','closed','closed','','5633-revision-v1','','','2022-12-06 08:29:18','2022-12-06 08:29:18','',5633,'https://www.drfields.com/?p=5638',0,'revision','',0),(5639,8,'2022-12-06 08:32:40','2022-12-06 08:32:40','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/new-studies-reveal-cortisone-injections-make-knee-arthritis-worse/\">New Studies Reveal Cortisone Injections Make Knee Arthritis Worse</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/stem-cell-injections-in-los-angeles-ca/\">Stem Cell Injections in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-shoulder-repair-in-los-angeles-ca/\">Non-Surgical Shoulder Repair in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/magazine-column/townsend-letter-avoiding-surgery-with-stem-cell-prp-prolotherapy/\" rel=\"noopener\">Townsend Letter: Avoiding Surgery With Stem Cell/PRP/Prolotherapy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-12-06 08:32:40','2022-12-06 08:32:40','',2109,'https://www.drfields.com/?p=5639',0,'revision','',0),(5640,8,'2022-12-07 23:19:22','2022-12-07 23:19:22','','iwp_log_63911f7acd777','','publish','closed','closed','','iwp_log_63911f7acd777','','','2022-12-07 23:19:22','2022-12-07 23:19:22','',0,'https://www.drfields.com/iwp_log/iwp_log_63911f7acd777/',0,'iwp_log','',0),(5642,8,'2022-12-20 11:03:25','2022-12-20 11:03:25','Copy Of Arthritis. Rthroscopic Surgery For Degenerative Knee Arthritis And Meniscal Tears','Copy Of Arthritis. Rthroscopic Surgery For Degenerative Knee Arthritis And Meniscal Tears','Copy Of Arthritis. Rthroscopic Surgery For Degenerative Knee Arthritis And Meniscal Tears','inherit','closed','closed','','copy-of-arthritis-rthroscopic-surgery-for-degenerative-knee-arthritis-and-meniscal-tears-2','','','2022-12-20 11:03:25','2022-12-20 11:03:25','',5540,'https://www.drfields.com/wp-content/uploads/2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1.jpg',0,'attachment','image/jpeg',0),(5643,8,'2022-12-20 11:03:29','2022-12-20 11:03:29','<h2>Non-Surgical Knee Treatments</h2>\n[caption id=\"attachment_5642\" align=\"alignnone\" width=\"500\"]<img class=\"size-medium wp-image-5642\" src=\"https://www.drfields.com/wp-content/uploads/2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-500x419.jpg\" alt=\"Copy Of Arthritis. Rthroscopic Surgery For Degenerative Knee Arthritis And Meniscal Tears\" width=\"500\" height=\"419\" /> Copy Of Arthritis. Rthroscopic Surgery For Degenerative Knee Arthritis And Meniscal Tears[/caption]\n\nTrying to avoid knee surgery in middle age? At OrthoRegen®, we see a lot of patients who enjoy being active and who want to remain that way. They certainly do not want knee pain to get in the way of that! They also prefer to go the non-surgical route to avoid a long surgical recovery and the risks that come with surgery.\n\nMiddle-aged patients are at that age when they begin to notice degenerative changes in their knees. And they often deal with those changes, like knee instability or pain, by using knee braces, taking over-the-counter medications, and applying ice or heat packs to get some relief.\n<h2>Trying to Avoid Knee Surgery But Over-the-Counter Remedies Don’t Work?</h2>\nThey try to live with the discomfort as long as possible, but when those remedies no longer work, they seek a medical opinion. Oftentimes, surgery is recommended. But is surgery a good option?\n<h3><em>Studies show that arthroscopic surgery results in little to no improvement. Here’s what a few say:</em></h3>\nA 2022 study from Melbourne, Australia, reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\n\nAnother medical report from the Annals of the Rheumatic Diseases says, “Several recent meta-analyses based on randomized controlled trials have failed to show a treatment benefit of Arthroscopic partial meniscectomy over conservative treatment or placebo surgery for these patients.” (2)\n<h2>Arthritis Sufferers Can Avoid Knee Surgery too!</h2>\nDoes arthroscopic surgery help in cases of arthritis? Another medical journal said this, “In this controlled trial involving patients with osteoarthritis of the knee, the outcomes after arthroscopic lavage or arthroscopic debridement were no better than those after a placebo procedure.”(3)\n\nAnd then, researchers in the medical journal Arthroscopic Surgery for Degenerative Knee Arthritis and Meniscal Tears say, “We make a strong recommendation against the use of arthroscopy in nearly all patients with degenerative knee disease, based on linked systematic reviews; further research is unlikely to alter this recommendation.” (4)\n\nWow! This surgery is not recommended. Yet unfortunately, arthroscopic knee surgery is on the rise to treat middle-aged and older patients with persistent knee pain. The majority of studies show no added benefit for this surgery when compared to the control treatment of placebo and less benefit when compared to exercise. These results are important to know for the individual considering a surgical procedure that comes with risk.\n<h2>Regenerative Orthopedics Helps To Avoid Knee Surgery in Middle Age</h2>\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include stem cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All treatments are done in conjunction with dextrose Prolotherapy to comprehensively treat the entire knee joint.\n\nThese non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (5)\n\nInjuries such as meniscus tears may respond with Prolotherapy alone or may also require PRP if the injury requires more repair due to advanced meniscus damage. Our clinicians will recommend the best regenerative therapy for your particular case in order to strengthen, stabilize and repair your knee.\n\nRegenerative Orthopedics, such as Platelet Rich Plasma Therapy, Stem Cells, and Prolotherapy, work great to stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are so much less invasive than surgery and, therefore, require minimal downtown. These treatments are a much safer and more conservative treatment with many advantages over arthroscopic surgery.\n\n<strong>References</strong>\n\n(1) O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).\n\n(2) Sihvonen R, Paavola M, Malmivaara A, Itälä A, Joukainen A, Nurmi H, Kalske J, Ikonen A, Järvelä T, Järvinen TA, Kanto K. Arthroscopic partial meniscectomy versus placebo surgery for a degenerative meniscus tear: a 2-year follow-up of the randomised controlled trial. Annals of the Rheumatic Diseases. 2017 May 18:annrheumdis-2017.\n\n(3) Moseley JB, O’malley K, Petersen NJ, Menke TJ, Brody BA, Kuykendall DH, Hollingsworth JC, Ashton CM, Wray NP. A controlled trial of arthroscopic surgery for osteoarthritis of the knee. New England Journal of Medicine. 2002 Jul 11;347(2):81-8.\n\n(4) Siemieniuk RA, Harris IA, Agoritsas T, Poolman RW, Brignardello-Petersen R, Van de Velde S, Buchbinder R, Englund M, Lytvyn L, Quinlan C, Helsingen L. Arthroscopic surgery for degenerative knee arthritis and meniscal tears: a clinical practice guideline. BMJ. 2017 May 10;357:j1982.\n\n(5) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951','Avoid Knee Surgery in Middle Age','','inherit','closed','closed','','5540-autosave-v1','','','2022-12-20 11:03:29','2022-12-20 11:03:29','',5540,'https://www.drfields.com/?p=5643',0,'revision','',0),(5644,8,'2022-12-20 11:03:47','2022-12-20 11:03:47','<h2>Non-Surgical Knee Treatments</h2>\r\n<img class=\"alignright wp-image-5642 size-wcsquare\" title=\"Avoid Knee Surgery in Middle Age\" src=\"https://www.drfields.com/wp-content/uploads/2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-300x300.jpg\" alt=\"Avoid Knee Surgery in Middle Age\" width=\"300\" height=\"300\" />\r\n\r\nTrying to avoid knee surgery in middle age? At OrthoRegen®, we see a lot of patients who enjoy being active and who want to remain that way. They certainly do not want knee pain to get in the way of that! They also prefer to go the non-surgical route to avoid a long surgical recovery and the risks that come with surgery.\r\n\r\nMiddle-aged patients are at that age when they begin to notice degenerative changes in their knees. And they often deal with those changes, like knee instability or pain, by using knee braces, taking over-the-counter medications, and applying ice or heat packs to get some relief.\r\n<h2>Trying to Avoid Knee Surgery But Over-the-Counter Remedies Don’t Work?</h2>\r\nThey try to live with the discomfort as long as possible, but when those remedies no longer work, they seek a medical opinion. Oftentimes, surgery is recommended. But is surgery a good option?\r\n<h3><em>Studies show that arthroscopic surgery results in little to no improvement. Here’s what a few say:</em></h3>\r\nA 2022 study from Melbourne, Australia, reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\r\n\r\nAnother medical report from the Annals of the Rheumatic Diseases says, “Several recent meta-analyses based on randomized controlled trials have failed to show a treatment benefit of Arthroscopic partial meniscectomy over conservative treatment or placebo surgery for these patients.” (2)\r\n<h2>Arthritis Sufferers Can Avoid Knee Surgery too!</h2>\r\nDoes arthroscopic surgery help in cases of arthritis? Another medical journal said this, “In this controlled trial involving patients with osteoarthritis of the knee, the outcomes after arthroscopic lavage or arthroscopic debridement were no better than those after a placebo procedure.”(3)\r\n\r\nAnd then, researchers in the medical journal Arthroscopic Surgery for Degenerative Knee Arthritis and Meniscal Tears say, “We make a strong recommendation against the use of arthroscopy in nearly all patients with degenerative knee disease, based on linked systematic reviews; further research is unlikely to alter this recommendation.” (4)\r\n\r\nWow! This surgery is not recommended. Yet unfortunately, arthroscopic knee surgery is on the rise to treat middle-aged and older patients with persistent knee pain. The majority of studies show no added benefit for this surgery when compared to the control treatment of placebo and less benefit when compared to exercise. These results are important to know for the individual considering a surgical procedure that comes with risk.\r\n<h2>Regenerative Orthopedics Helps To Avoid Knee Surgery in Middle Age</h2>\r\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include stem cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All treatments are done in conjunction with dextrose Prolotherapy to comprehensively treat the entire knee joint.\r\n\r\nThese non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (5)\r\n\r\nInjuries such as meniscus tears may respond with Prolotherapy alone or may also require PRP if the injury requires more repair due to advanced meniscus damage. Our clinicians will recommend the best regenerative therapy for your particular case in order to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma Therapy, Stem Cells, and Prolotherapy, work great to stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are so much less invasive than surgery and, therefore, require minimal downtown. These treatments are a much safer and more conservative treatment with many advantages over arthroscopic surgery.\r\n\r\n<strong>References</strong>\r\n\r\n(1) O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).\r\n\r\n(2) Sihvonen R, Paavola M, Malmivaara A, Itälä A, Joukainen A, Nurmi H, Kalske J, Ikonen A, Järvelä T, Järvinen TA, Kanto K. Arthroscopic partial meniscectomy versus placebo surgery for a degenerative meniscus tear: a 2-year follow-up of the randomised controlled trial. Annals of the Rheumatic Diseases. 2017 May 18:annrheumdis-2017.\r\n\r\n(3) Moseley JB, O’malley K, Petersen NJ, Menke TJ, Brody BA, Kuykendall DH, Hollingsworth JC, Ashton CM, Wray NP. A controlled trial of arthroscopic surgery for osteoarthritis of the knee. New England Journal of Medicine. 2002 Jul 11;347(2):81-8.\r\n\r\n(4) Siemieniuk RA, Harris IA, Agoritsas T, Poolman RW, Brignardello-Petersen R, Van de Velde S, Buchbinder R, Englund M, Lytvyn L, Quinlan C, Helsingen L. Arthroscopic surgery for degenerative knee arthritis and meniscal tears: a clinical practice guideline. BMJ. 2017 May 10;357:j1982.\r\n\r\n(5) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951','Avoid Knee Surgery in Middle Age','','inherit','closed','closed','','5540-revision-v1','','','2022-12-20 11:03:47','2022-12-20 11:03:47','',5540,'https://www.drfields.com/?p=5644',0,'revision','',0),(5645,8,'2022-12-23 07:55:45','2022-12-23 07:55:45','<img class=\"wp-image-5606 size-wcsquare alignright\" title=\"Stem Cell Injections in Los Angeles, CA\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Non-surgical-arthritis-TX-300x300.png\" alt=\" Stem Cell Injections in Los Angeles, CA\" width=\"300\" height=\"300\" />\n\nOur goal at OrthoRegen®, where we provide stem cell injections in the Los Angeles, CA area, is to stimulate the repair of injured joints. If you have been diagnosed with a joint injury or with degeneration of the joint or spine, there is a good chance we can help you. Regenerative therapies at OrthoRegen® are effective, non-surgical treatments.\n\nStem Cell Therapy utilizes a person\'s own healing cells. These cells are given directly into the area that is in need of them. They are not shipped anywhere for processing and are definitely not obtained from somewhere else. We use your own cells.\n\nThe Stem Cell Therapy done at OrthoRegen® has nothing to do with embryonic stem cell therapy. We only use the patient’s own adult stem cells. There is no cross-contamination this way!\n<h2>Gold Standard Stem Cell Injections in Los Angeles, CA</h2>\nPlus, at OrthoRegen®, we use the Gold Standard for stem cell regeneration. What does that mean? The Gold Standard means we don’t use just one type of regenerative therapy but use four different kinds of Regenerative Orthopedics. And why is that important? Using four different types of regenerative therapies helps you to avoid invasive surgery.\n\n<img class=\"wp-image-5607 size-wcsquare alignright\" title=\"Stem Cell Injections in Los Angeles, CA\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Stem-Cell-Injections-in-Los-Angeles-CA-300x300.png\" alt=\"Stem Cell Injections in Los Angeles, CA\" width=\"300\" height=\"300\" />\n\nMany other clinics only use one or two of these procedures. But, not all four. We use bone marrow stem cells as well as adipose (fat) stem cells. We also use PRP Prolotherapy to accelerate healing. In addition, we use Dextrose Prolotherapy on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. And without it, failure rates are high.\n\nNot all injuries or degenerative cases require stem cell treatment. It may be that you will only require traditional Prolotherapy to accomplish the repair. However, in more advanced cases, Stem Cell Treatment may be necessary. Your physician will let you know which treatment is best for you after examining you and reviewing your history.\n<h2>Stem Cell Injections in Los Angeles, CA for Arthritis</h2>\nTypically, Stem Cell Therapy is chosen to repair articular cartilage, but it will also repair ligaments and tendons. In conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. And with arthritis, the joint is in a state where it is breaking down. What we want to do with Stem Cell Therapy is to get the joint in a state of building up. When we use this treatment, we stimulate the body to repair the area to get it stronger.\n<h2>Conditions That Can Be Treated with Stem Cell Therapy</h2>\nMost clinics, including OrthoRegen®, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those who are involved in treating people with articular cartilage degeneration or joint injury know that the vast majority of them improve when these patients are treated with Stem Cell Therapy.\n\nWe have found that Comprehensive Regenerative Orthopedics, using the combination of Stem Cells, PRP, and Prolotherapy, works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\n\nCall us to find out if you are a candidate for non-surgical Regenerative Orthopedics at 310-463-1234.','Stem Cell Injections in Los Angeles, CA','','inherit','closed','closed','','5605-autosave-v1','','','2022-12-23 07:55:45','2022-12-23 07:55:45','',5605,'https://www.drfields.com/?p=5645',0,'revision','',0),(5646,8,'2022-12-26 06:10:59','2022-12-26 06:10:59','Slider 2 V261222','Slider 2 V261222','Slider 2 V261222','inherit','closed','closed','','slider-2-v261222','','','2022-12-26 06:10:59','2022-12-26 06:10:59','',0,'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v261222.jpg',0,'attachment','image/jpeg',0),(5647,8,'2022-12-26 06:14:45','2022-12-26 06:14:45','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n  <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/new-studies-reveal-cortisone-injections-make-knee-arthritis-worse/\">New Studies Reveal Cortisone Injections Make Knee Arthritis Worse</a></li>\r\n  <li><a href=\"https://www.drfields.com/uncategorized/stem-cell-injections-in-los-angeles-ca/\">Stem Cell Injections in Los Angeles, CA</a></li>\r\n  <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-shoulder-repair-in-los-angeles-ca/\">Non-Surgical Shoulder Repair in Los Angeles, CA</a></li>\r\n  <li><a href=\"https://www.drfields.com/articles/magazine-column/townsend-letter-avoiding-surgery-with-stem-cell-prp-prolotherapy/\" rel=\"noopener\">Townsend Letter: Avoiding Surgery With Stem Cell/PRP/Prolotherapy</a></li>\r\n  <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n  <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n  <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n  <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n  <li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n  <li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-12-26 06:14:45','2022-12-26 06:14:45','',2109,'https://www.drfields.com/?p=5647',0,'revision','',0),(5648,8,'2022-12-26 06:24:05','2022-12-26 06:24:05','Slider 2 V3 261222','Slider 2 V3 261222','Slider 2 V3 261222','inherit','closed','closed','','slider-2-v3-261222','','','2022-12-26 06:24:05','2022-12-26 06:24:05','',0,'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg',0,'attachment','image/jpeg',0),(5649,8,'2022-12-26 06:24:43','2022-12-26 06:24:43','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n  <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/new-studies-reveal-cortisone-injections-make-knee-arthritis-worse/\">New Studies Reveal Cortisone Injections Make Knee Arthritis Worse</a></li>\r\n  <li><a href=\"https://www.drfields.com/uncategorized/stem-cell-injections-in-los-angeles-ca/\">Stem Cell Injections in Los Angeles, CA</a></li>\r\n  <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-shoulder-repair-in-los-angeles-ca/\">Non-Surgical Shoulder Repair in Los Angeles, CA</a></li>\r\n  <li><a href=\"https://www.drfields.com/articles/magazine-column/townsend-letter-avoiding-surgery-with-stem-cell-prp-prolotherapy/\" rel=\"noopener\">Townsend Letter: Avoiding Surgery With Stem Cell/PRP/Prolotherapy</a></li>\r\n  <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n  <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n  <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/\">Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes</a></li>\r\n  <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/\">Patellar Tendinopathy</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n  <li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n  <li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2022-12-26 06:24:43','2022-12-26 06:24:43','',2109,'https://www.drfields.com/?p=5649',0,'revision','',0),(5651,8,'2023-01-02 03:21:11','2023-01-02 03:21:11','<h2>Bone Marrow Concentrate and Platelet Rich Plasma Are Growing in Popularity</h2>\r\n<img class=\"alignright wp-image-5652\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/PRP-and-BMC-500x419.png\" alt=\"Regenerative Orthopedics\" width=\"350\" height=\"293\" />Regenerative Orthopedics, such as Bone Marrow Concentrate (BMC) and Platelet Rich Plasma (PRP) are growing in popularity in sports medicine and other fields of medicine. That\'s because PRP has been shown to boost healing in many types of injuries, and BMC is said to repair tissue like cartilage and bone.\r\n<h2>A Short Explanation of PRP and BMC?</h2>\r\nPRP is a concentration of platelets from a person\'s own blood. The treatment uses the patient\'s blood cells to accelerate healing in a specific area. Platelets contain growth factors that enhance the healing of soft tissue. When these platelets are concentrated, the healing potential is increased.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment-los-angeles/\">BMC</a> is an aspiration of mesenchymal stem cells from bone marrow commonly taken from the iliac crest and then concentrated. These stem cells have the ability to differentiate into cartilage and bone. BMC has the potential to heal injured and arthritic joints.\r\n<h2>But does the research show that these treatments effectively repair joint injuries or even arthritis?</h2>\r\nThere is quite a lot of research showing the effectiveness of both PRP and BMC in repairing joint injuries and arthritis. The following are just some of the medical journal research results:\r\n\r\nThe Journal of Pain Research looked at 115 patients treated with BMC for arthritis and/or rotator cuff tears. What were the results? Both disability and pain decreased, and the improvement continued for up to 2 years.(1)\r\n\r\nAnother study looking at BMC\'s effectiveness on rotator cuff tears compared to exercise also resulted in an improvement in function, a decrease in pain, and healing of the tendon. The findings suggested that BMC may be a safe and useful alternative to conservative treatments like exercise for managing rotator cuff tears. (2)\r\n\r\nA study by Gobbi and associates on BMC for chondral defects of the knee showed significant improvement. (3) In another study, Gobbi also showed improvement in patellofemoral lesions of the knee with BMC. (4)\r\n\r\nCan BMC help arthritis? Several human studies suggest a potential role of BMC in treating knee osteoarthritis evidenced by significant improvements in multiple clinical scores and increased cartilage healing. (5)\r\n<h2>BMC and PRP Are Growing in Popularity, and They Are Effective Treatments</h2>\r\nAs you can see,<a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\"> PRP</a> and BMC are effective in the treatment of various joint injuries as well as arthritis. These Regenerative Orthopedic procedures are great non-surgical alternatives for those with persistent joint pain, joint injury, and even arthritis.\r\n\r\nAt OrthoRegen, we have years of experience treating patients with PRP and BMC. If you are looking for a non-surgical option for your joint pain or arthritis, please call us at 310-453-1234.\r\n<h3><strong>References</strong></h3>\r\n<ol>\r\n 	<li>Centeno, Christopher J., et al.<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4463777/\"> \"A prospective multi-site registry study of a specific protocol of autologous bone marrow concentrate for the treatment of shoulder rotator cuff tears and osteoarthritis.\"</a> Journal of Pain Research 8 (2015): 269.</li>\r\n 	<li>Centeno, Christopher, et al. \"A randomized controlled trial of the treatment of rotator cuff tears with bone marrow concentrate and platelet products compared to exercise therapy: A midterm analysis.\" Stem cells international 2020 (2020).</li>\r\n 	<li>Gobbi A, Karnatzikos G, Sankineani SR. One-step surgery with multipotent stem cells for the treatment of large full- thickness chondral defects of the knee. Am J Sports Med. 2014;42:648–657.</li>\r\n 	<li>Gobbi A, Chaurasia S, Karnatzikos G, et al. Matrix-induced autologous chondrocyte implantation versus multipotent stem cells for the treatment of large patellofemoral chondral lesions: a nonrandomized prospective trial. Cartilage. 2014;6:82–97.</li>\r\n 	<li>Wolfstadt JI, Cole BJ, Ogilvie-Harris DJ, et al. Current concepts: the role of mesenchymal stem cells in the manage- ment of knee osteoarthritis. Sports Health. 2015;7:38–44.</li>\r\n</ol>','Regenerative Orthopedics Growing in Popularity','','publish','closed','open','','bone-marrow-concentrate-and-platelet-rich-plasma-are-growing-in-popularity','','','2023-01-13 21:39:02','2023-01-13 21:39:02','',0,'https://www.drfields.com/?p=5651',0,'post','',0),(5652,8,'2023-01-02 03:20:03','2023-01-02 03:20:03','','Regenerative Orthopedics','','inherit','closed','closed','','prp-and-bmc','','','2023-01-02 03:20:38','2023-01-02 03:20:38','',5651,'https://www.drfields.com/wp-content/uploads/2023/01/PRP-and-BMC.png',0,'attachment','image/png',0),(5653,8,'2023-01-02 03:20:20','2023-01-02 03:20:20','','Prolotherapy – The Answer for Joint Repair','','inherit','closed','closed','','prolo-knee-oa','','','2023-01-02 03:33:10','2023-01-02 03:33:10','',5651,'https://www.drfields.com/wp-content/uploads/2023/01/Prolo.knee-OA.jpeg',0,'attachment','image/jpeg',0),(5654,8,'2023-01-02 03:21:11','2023-01-02 03:21:11','<h2 lang=\"en-US\" align=\"LEFT\"><span style=\"color: #000000;\"><span style=\"font-family: Helvetica Neue, serif;\"><span style=\"font-size: small;\"><span style=\"font-size: medium;\"><span lang=\"en-US\">Bone Marrow Concentrate and Platelet Rich Plasma Are Growing in Popularity</span></span></span></span></span></h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span style=\"color: #000000;\"><span style=\"font-family: Helvetica Neue, serif;\"><span style=\"font-size: small;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><img class=\"alignright wp-image-5652\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/PRP-and-BMC-500x419.png\" alt=\"Regenerative Orthopedics\" width=\"350\" height=\"293\" />Regenerative Orthopedics, such as Bone Marrow Concentrate (BMC) and Platelet Rich Plasma (PRP) are growing in popularity in sports medicine and in other fields of medicine. That\'s because PRP has been shown to boost healing in many types of injuries, and BMC is said to repair tissue like cartilage and bone. </span></span></span></span></span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span style=\"color: #000000;\"><span style=\"font-family: Helvetica Neue, serif;\"><span style=\"font-size: small;\"><span style=\"font-size: medium;\"><span lang=\"en-US\">A Short Explanation of PRP and BMC? </span></span></span></span></span></h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span style=\"color: #000000;\"><span style=\"font-family: Helvetica Neue, serif;\"><span style=\"font-size: small;\"><span style=\"font-size: medium;\"><span lang=\"en-US\">PRP is a concentration of platelets from a person\'s own blood. The treatment uses the patient\'s own blood cells to accelerate healing in a specific area. Platelets contain growth factors that enhance the healing of soft tissue. When these platelets are concentrated, the healing potential is increased. </span></span></span></span></span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span style=\"color: #000000;\"><span style=\"font-family: Helvetica Neue, serif;\"><span style=\"font-size: small;\"><span style=\"font-size: medium;\"><span lang=\"en-US\">BMC is an aspiration of mesenchymal stem cells from bone marrow commonly taken from the iliac crest and then concentrated. These stem cells have the ability to differentiate into cartilage and bone. BMC has the potential to heal injured and arthritic joints. </span></span></span></span></span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span style=\"color: #000000;\"><span style=\"font-family: Helvetica Neue, serif;\"><span style=\"font-size: small;\"><span style=\"font-size: medium;\"><span lang=\"en-US\">But does the research show that these treatments are effective to repair joint injuries or even arthritis? </span></span></span></span></span></h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span style=\"color: #000000;\"><span style=\"font-family: Helvetica Neue, serif;\"><span style=\"font-size: small;\"><span style=\"font-size: medium;\"><span lang=\"en-US\">There is quite a lot of research showing the effectiveness of both PRP and BMC to repair joint injuries and arthritis. The following are just some of the medical journal research results:</span></span></span></span></span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span style=\"color: #000000;\"><span style=\"font-family: Helvetica Neue, serif;\"><span style=\"font-size: small;\"><span style=\"font-size: medium;\"><span lang=\"en-US\">The </span></span><span style=\"font-size: medium;\"><span lang=\"en-US\"><i>Journal of Pain Research</i></span></span><span style=\"font-size: medium;\"><span lang=\"en-US\"> looked at 115 patients treated with BMC for arthritis and/or rotator cuff tears. What were the results? Both disability and pain decreased, and the improvement continued for up to 2 years.(1)</span></span></span></span></span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span style=\"color: #000000;\"><span style=\"font-family: Helvetica Neue, serif;\"><span style=\"font-size: small;\"><span style=\"font-size: medium;\"><span lang=\"en-US\">Another study looking at BMC effectiveness on rotator cuff tears compared to exercise also resulted in improvement in function, decrease in pain, and healing of the tendon. The findings suggested that BMC may be a safe and useful alternative to conservative treatments like exercise for the management of rotator cuff tears. </span></span><span style=\"font-size: medium;\">(2)</span></span></span></span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span style=\"color: #000000;\"><span style=\"font-family: Helvetica Neue, serif;\"><span style=\"font-size: small;\"><span style=\"font-size: medium;\"><span lang=\"en-US\">A study by Gobbi and associates on BMC for chondral defects of the knee showed significant improvement. (3) In another study, Gobbi also showed improvement on patellofemoral lesions of the knee with BMC. (4)</span></span></span></span></span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span style=\"color: #000000;\"><span style=\"font-family: Helvetica Neue, serif;\"><span style=\"font-size: small;\"><span style=\"font-size: medium;\"><span lang=\"en-US\">Can BMC help arthritis? Several human studies suggest a potential role of BMC in the treatment of knee osteoarthritis evidenced by significant improvements in multiple clinical scores and increased cartilage healing.(5)</span></span></span></span></span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span style=\"color: #000000;\"><span style=\"font-family: Helvetica Neue, serif;\"><span style=\"font-size: small;\"><span style=\"font-size: medium;\"><span lang=\"en-US\">As you can see, PRP and BMC have been shown to be effective in the treatment of various joint injuries as well as arthritis. These Regenerative Orthopedic procedures are great non-surgical alternatives for those with persistent joint pain, joint injury, and even arthritis.</span></span></span></span></span></p>\r\n<p align=\"LEFT\"><span style=\"color: #252525;\"><span lang=\"en-US\">At OrthoRegen, we have years of experience treating patients with PRP and BMC. If you are looking for a non-surgical option for your joint pain or arthritis, give us a call at </span></span><span style=\"color: #54bbe9;\">310-453-1234</span><span style=\"color: #54bbe9;\"><span lang=\"en-US\">.</span></span></p>\r\n<p align=\"LEFT\"><strong><span style=\"font-family: Helvetica, serif;\"><span lang=\"en-US\">References</span></span></strong></p>\r\n\r\n<ol>\r\n 	<li>\r\n<p align=\"LEFT\"><span style=\"font-size: small;\"><span lang=\"en-US\">Centeno, Christopher J., et al. \"A prospective multi-site registry study of a specific protocol of autologous bone marrow concentrate for the treatment of shoulder rotator cuff tears and osteoarthritis.\" </span></span><span style=\"font-size: small;\"><span lang=\"en-US\"><i>Journal of Pain Research</i></span></span><span style=\"font-size: small;\"> 8 (2015): 269.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"LEFT\"><span style=\"font-size: small;\"><span lang=\"en-US\">Centeno, Christopher, et al. \"A randomized controlled trial of the treatment of rotator cuff tears with bone marrow concentrate and platelet products compared to exercise therapy: A midterm analysis.\" </span></span><span style=\"font-size: small;\"><span lang=\"en-US\"><i>Stem cells international</i></span></span><span style=\"font-size: small;\"> 2020 (2020).</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"LEFT\"><span style=\"font-size: small;\"><span lang=\"en-US\">Gobbi A, Karnatzikos G, Sankineani SR. One-step surgery with multipotent stem cells for the treatment of large full- thickness chondral defects of the knee. Am J Sports Med. 2014;42:648</span></span><span style=\"font-size: small;\">–657.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"LEFT\"><span style=\"font-size: small;\"><span lang=\"en-US\">Gobbi A, Chaurasia S, Karnatzikos G, et al. Matrix-induced autologous chondrocyte implantation versus multipotent stem cells for the treatment of large patellofemoral chondral lesions: a nonrandomized prospective trial. Cartilage. 2014;6:82</span></span><span style=\"font-size: small;\">–97.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"LEFT\"><span style=\"font-size: small;\"><span lang=\"en-US\">Wolfstadt JI, Cole BJ, Ogilvie-Harris DJ, et al. Current concepts: the role of mesenchymal stem cells in the manage- ment of knee osteoarthritis. Sports Health. 2015;7:38</span></span><span style=\"font-size: small;\">–44.</span></p>\r\n</li>\r\n</ol>','Regenerative Orthopedics','','inherit','closed','closed','','5651-revision-v1','','','2023-01-02 03:21:11','2023-01-02 03:21:11','',5651,'https://www.drfields.com/?p=5654',0,'revision','',0),(5655,8,'2023-01-02 03:23:19','2023-01-02 03:23:19','<h2>Bone Marrow Concentrate and Platelet Rich Plasma Are Growing in Popularity</h2>\nRegenerative Orthopedics, such as Bone Marrow Concentrate (BMC) and Platelet Rich Plasma (PRP) are growing in popularity in sports medicine and in other fields of medicine. That\'s because PRP has been shown to boost healing in many types of injuries, and BMC is said to repair tissue like cartilage and bone.\n<h2>A Short Explanation of PRP and BMC?</h2>\nPRP is a concentration of platelets from a person\'s own blood. The treatment uses the patient\'s own blood cells to accelerate healing in a specific area. Platelets contain growth factors that enhance the healing of soft tissue. When these platelets are concentrated, the healing potential is increased.\n\nBMC is an aspiration of mesenchymal stem cells from bone marrow commonly taken from the iliac crest and then concentrated. These stem cells have the ability to differentiate into cartilage and bone. BMC has the potential to heal injured and arthritic joints.\n<h2>But does the research show that these treatments are effective to repair joint injuries or even arthritis?</h2>\nThere is quite a lot of research showing the effectiveness of both PRP and BMC to repair joint injuries and arthritis. The following are just some of the medical journal research results:\n\nThe Journal of Pain Research looked at 115 patients treated with BMC for arthritis and/or rotator cuff tears. What were the results? Both disability and pain decreased, and the improvement continued for up to 2 years.(1)\n\nAnother study looking at BMC effectiveness on rotator cuff tears compared to exercise also resulted in improvement in function, decrease in pain, and healing of the tendon. The findings suggested that BMC may be a safe and useful alternative to conservative treatments like exercise for the management of rotator cuff tears. (2)\n\nA study by Gobbi and associates on BMC for chondral defects of the knee showed significant improvement. (3) In another study, Gobbi also showed improvement on patellofemoral lesions of the knee with BMC. (4)\n\nCan BMC help arthritis? Several human studies suggest a potential role of BMC in the treatment of knee osteoarthritis evidenced by significant improvements in multiple clinical scores and increased cartilage healing.(5)\n\nAs you can see, PRP and BMC have been shown to be effective in the treatment of various joint injuries as well as arthritis. These Regenerative Orthopedic procedures are great non-surgical alternatives for those with persistent joint pain, joint injury, and even arthritis.\n\nAt OrthoRegen, we have years of experience treating patients with PRP and BMC. If you are looking for a non-surgical option for your joint pain or arthritis, give us a call at 310-453-1234.\n\n<strong>References</strong>\n<ol>\n 	<li>Centeno, Christopher J., et al. \"A prospective multi-site registry study of a specific protocol of autologous bone marrow concentrate for the treatment of shoulder rotator cuff tears and osteoarthritis.\" Journal of Pain Research 8 (2015): 269.</li>\n 	<li>Centeno, Christopher, et al. \"A randomized controlled trial of the treatment of rotator cuff tears with bone marrow concentrate and platelet products compared to exercise therapy: A midterm analysis.\" Stem cells international 2020 (2020).</li>\n 	<li>(3) Gobbi A, Karnatzikos G, Sankineani SR. One-step surgery with multipotent stem cells for the treatment of large full- thickness chondral defects of the knee. Am J Sports Med. 2014;42:648–657.\n(4) Gobbi A, Chaurasia S, Karnatzikos G, et al. Matrix-induced autologous chondrocyte implantation versus multipotent stem cells for the treatment of large patellofemoral chondral lesions: a nonrandomized prospective trial. Cartilage. 2014;6:82–97.\n(5) Wolfstadt JI, Cole BJ, Ogilvie-Harris DJ, et al. Current concepts: the role of mesenchymal stem cells in the manage- ment of knee osteoarthritis. Sports Health. 2015;7:38–44.</li>\n</ol>','Regenerative Orthopedics','','inherit','closed','closed','','5651-autosave-v1','','','2023-01-02 03:23:19','2023-01-02 03:23:19','',5651,'https://www.drfields.com/?p=5655',0,'revision','',0),(5656,8,'2023-01-02 03:24:16','2023-01-02 03:24:16','<h2>Bone Marrow Concentrate and Platelet Rich Plasma Are Growing in Popularity</h2>\r\n<img class=\"alignright wp-image-5652\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/PRP-and-BMC-500x419.png\" alt=\"Regenerative Orthopedics\" width=\"350\" height=\"293\" />Regenerative Orthopedics, such as Bone Marrow Concentrate (BMC) and Platelet Rich Plasma (PRP) are growing in popularity in sports medicine and in other fields of medicine. That\'s because PRP has been shown to boost healing in many types of injuries, and BMC is said to repair tissue like cartilage and bone.\r\n<h2>A Short Explanation of PRP and BMC?</h2>\r\nPRP is a concentration of platelets from a person\'s own blood. The treatment uses the patient\'s own blood cells to accelerate healing in a specific area. Platelets contain growth factors that enhance the healing of soft tissue. When these platelets are concentrated, the healing potential is increased.\r\n\r\nBMC is an aspiration of mesenchymal stem cells from bone marrow commonly taken from the iliac crest and then concentrated. These stem cells have the ability to differentiate into cartilage and bone. BMC has the potential to heal injured and arthritic joints.\r\n<h2>But does the research show that these treatments are effective to repair joint injuries or even arthritis?</h2>\r\nThere is quite a lot of research showing the effectiveness of both PRP and BMC to repair joint injuries and arthritis. The following are just some of the medical journal research results:\r\n\r\nThe Journal of Pain Research looked at 115 patients treated with BMC for arthritis and/or rotator cuff tears. What were the results? Both disability and pain decreased, and the improvement continued for up to 2 years.(1)\r\n\r\nAnother study looking at BMC effectiveness on rotator cuff tears compared to exercise also resulted in improvement in function, decrease in pain, and healing of the tendon. The findings suggested that BMC may be a safe and useful alternative to conservative treatments like exercise for the management of rotator cuff tears. (2)\r\n\r\nA study by Gobbi and associates on BMC for chondral defects of the knee showed significant improvement. (3) In another study, Gobbi also showed improvement on patellofemoral lesions of the knee with BMC. (4)\r\n\r\nCan BMC help arthritis? Several human studies suggest a potential role of BMC in the treatment of knee osteoarthritis evidenced by significant improvements in multiple clinical scores and increased cartilage healing.(5)\r\n\r\nAs you can see, PRP and BMC have been shown to be effective in the treatment of various joint injuries as well as arthritis. These Regenerative Orthopedic procedures are great non-surgical alternatives for those with persistent joint pain, joint injury, and even arthritis.\r\n\r\nAt OrthoRegen, we have years of experience treating patients with PRP and BMC. If you are looking for a non-surgical option for your joint pain or arthritis, give us a call at 310-453-1234.\r\n\r\n<strong>References</strong>\r\n<ol>\r\n 	<li>Centeno, Christopher J., et al. \"A prospective multi-site registry study of a specific protocol of autologous bone marrow concentrate for the treatment of shoulder rotator cuff tears and osteoarthritis.\" Journal of Pain Research 8 (2015): 269.</li>\r\n 	<li>Centeno, Christopher, et al. \"A randomized controlled trial of the treatment of rotator cuff tears with bone marrow concentrate and platelet products compared to exercise therapy: A midterm analysis.\" Stem cells international 2020 (2020).</li>\r\n 	<li>Gobbi A, Karnatzikos G, Sankineani SR. One-step surgery with multipotent stem cells for the treatment of large full- thickness chondral defects of the knee. Am J Sports Med. 2014;42:648–657.</li>\r\n 	<li>Gobbi A, Chaurasia S, Karnatzikos G, et al. Matrix-induced autologous chondrocyte implantation versus multipotent stem cells for the treatment of large patellofemoral chondral lesions: a nonrandomized prospective trial. Cartilage. 2014;6:82–97.</li>\r\n 	<li>Wolfstadt JI, Cole BJ, Ogilvie-Harris DJ, et al. Current concepts: the role of mesenchymal stem cells in the manage- ment of knee osteoarthritis. Sports Health. 2015;7:38–44.</li>\r\n</ol>','Regenerative Orthopedics','','inherit','closed','closed','','5651-revision-v1','','','2023-01-02 03:24:16','2023-01-02 03:24:16','',5651,'https://www.drfields.com/?p=5656',0,'revision','',0),(5657,8,'2023-01-02 03:33:34','2023-01-02 03:33:34','<h2>Prolotherapy Specialist in the Palm Springs, CA Area</h2>\r\n<img class=\"alignright wp-image-5653\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/Prolo.knee-OA-500x375.jpeg\" alt=\"Prolotherapy – The Answer for Joint Repair\" width=\"350\" height=\"263\" />Prolotherapy is the answer for joint repair. Musculoskeletal conditions wreak havoc in the lives of many people, and the problem tends to increase as people age. However, our bodies have excellent regenerative capabilities. Physicians like Peter A. Fields, MD, DC, a Prolotherapy specialist in the Palm Springs, CA area, treat joint pain with regenerative medicine techniques that utilize therapies to stimulate the body to repair the ligaments.\r\n\r\nProlotherapy, which is short for proliferative therapy, is just one form of regenerative therapy and is an injection technique using naturally based solutions for healing. It is a cost-effective treatment option for various musculoskeletal conditions and arthritis.\r\n<h2>Regenerative Treatments are the Future of Pain Care</h2>\r\nThe key to restoring joint integrity for the long term is stimulating the area to heal. Prolotherapy works with, rather than interferes with, the body\'s healing process. When musculoskeletal injuries occur, Prolotherapy can stimulate the normal reparative mechanisms of the body, laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee and hip labrum, and boosting cartilage growth.\r\n\r\nSince it addresses the underlying cause, which is often joint instability, Prolotherapy can decrease the chance of developing long-term arthritis. The treatment offers hope to those trying to avoid joint replacement. While surgery is necessary for a small percentage of patients, specifically for full-thickness tears, non-surgical regenerative therapies should be a first-line, conservative treatment tried before surgery.\r\n<h2>What about pain after surgery?</h2>\r\nRegenerative options are effective even after surgery in cases where a patient still complains of unresolved pain. Residual pain is common if the surgery does not correct the actual cause of pain. For those who have failed surgery or have an advanced condition, Stem Cell Therapy may be the treatment of choice. This utilizes the patient’s own cells by concentrating and injecting them directly into the damaged tissue to accelerate repair. These regenerative treatments, Regenerative Orthopedics, offer promising alternatives to joint replacement and the opportunity for healing, as well as the return to function and athletics, for those suffering from chronic joint pain.\r\n<h2>What Does the Research Say About Prolotherapy?</h2>\r\nProlotherapy is not a newly discovered treatment. It’s been around a while, and research has shown its effectiveness for quite a long time. Evidence supports its use for various types of musculoskeletal pain, including the spine, pelvis, and peripheral joints.\r\n\r\nIn the 1950s, George Hackett, MD found that Prolotherapy stabilized unstable joints by strengthening the ligaments and tendons in joints throughout the body (1-4). As the years progressed, other researchers also showed the effectiveness of Prolotherapy. Hauser did studies showing the effectiveness of Prolotherapy in treating various joints (5,6). Research by Reeves demonstrated its use in treating sprains, strains, and other musculoskeletal disorders (7,8). Additionally, Jensen demonstrated its usefulness in treating knee ligaments (9,10).\r\n<h2>Prolotherapy Treatments by A Prolotherapy specialist in the Palm Springs, CA Area</h2>\r\nTreatment involves injecting a small amount of solution into multiple ligament and tendon insertions (enthesis) and into the adjacent joint spaces to induce healing of the injured structures.\r\n<h2>How Does Prolotherapy Work?</h2>\r\nProlotherapy stimulates weakened structures such as ligaments and tendons to strengthen, tighten and heal through the induced proliferation of cells.\r\n\r\nThe typical type of Prolotherapy uses dextrose in the solution. Dextrose Prolotherapy stimulates the proliferation of cells and tissue. Dextrose is an ideal solution because it is water soluble and a normal component of blood chemistry so that it can be injected safely into multiple areas and in large quantities. The result is the deposition of new collagen into injured structures, such as ligaments and tendons. It causes an increase in growth factors pertinent to the repair, health, and growth of tendons, ligaments, and other soft tissues.\r\n\r\nProlotherapy is effective in inducing healing over a wide range of musculoskeletal conditions, reducing pain, and increasing function. Dextrose Prolotherapy is the answer for joint repair from ligament and tendon injuries, unstable joints, and degenerated spines and joints.\r\n<h2>Looking for a Prolotherapy Specialist in the Palm Springs, CA Area?</h2>\r\nAt OrthoRegen®, we have offered Prolotherapy and other Regenerative Orthopedic treatments for many years and have a lot of experience in sports medicine and the treatment of musculoskeletal pain and injury. Give us a call. We\'d be happy to help!\r\n\r\n<strong>References</strong>\r\n<ol>\r\n 	<li>Hackett G. Joint stabilization: an experimental, histologic study with comments on the clinical application in ligament proliferation. American Journal of Surgery. 1955;89:968-973.</li>\r\n 	<li>Hackett G. Back pain following trauma and disease – Prolotherapy. Military Medicine. 1961;July:517-525.</li>\r\n 	<li>Hackett G. Prolotherapy in whiplash and low back pain. Postgraduate Medicine. 1960;February:214-219.</li>\r\n 	<li>Hackett G. Shearing injury to the sacroiliac joint. Journal of the International College of Surgeons. 1954;22:631-642.</li>\r\n 	<li>Hauser R, et al. Prolo Your Pain Away! Third Edition. Beulah Land Press, Oak Park, IL, 2007.</li>\r\n 	<li>Hauser R, et al. Prolo Your Sports Injuries Away! Beulah Land Press, Oak Park, IL, 2001.</li>\r\n 	<li>Reeves K. Sweet relief: Prolotherapy targets sprains and strains. Biomechanics. 2004;9:24-35.</li>\r\n 	<li>Reeves K. Prolotherapy for patients with musculoskeletal disorders. Journal of Musculoskeletal Medicine. 2002;390-301.</li>\r\n 	<li>Jensen K, et al. <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/18310313\" target=\"_blank\" rel=\"noopener\">Response of knee ligaments to Prolotherapy in a rat injury model</a>. American Journal of Sports Medicine. 2008;36:1347-1357.</li>\r\n 	<li>Jensen K, et al. <a href=\"http://www.ncbi.nlm.nih.gov/pubmed/18240327\" target=\"_blank\" rel=\"noopener\">Early inflammatory response of knee ligaments to Prolotherapy in a rat model</a>. Journal of Orthopedic Research. 2008;26:816-823.</li>\r\n</ol>','Prolotherapy Is the Answer for Joint Repair','','publish','closed','open','','prolotherapy-is-the-answer-for-joint-repair','','','2023-01-13 21:03:37','2023-01-13 21:03:37','',0,'https://www.drfields.com/?p=5657',0,'post','',0),(5658,8,'2023-01-02 03:33:34','2023-01-02 03:33:34','<h2>Prolotherapy Specialist in the Palm Springs, CA Area</h2>\r\n<img class=\"alignright wp-image-5653\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/Prolo.knee-OA-500x375.jpeg\" alt=\"Prolotherapy – The Answer for Joint Repair\" width=\"350\" height=\"263\" />Musculoskeletal conditions wreak havoc in the lives of many people and the problem tends to increase as people age. However, our bodies have amazing regenerative capabilities. Physicians, like Peter A. Fields, MD, DC, a Prolotherapy specialist in the Palm Springs, CA area, treat joint pain with regenerative medicine techniques utilize therapies to stimulate the body to repair the ligaments.\r\n\r\nProlotherapy, which is short for proliferative therapy, is just one form of regenerative therapy and is an injection technique using naturally based solutions for healing. It is a cost-effective treatment option for various musculoskeletal conditions and arthritis.\r\n<h2>Regenerative Treatments are the Future of Pain Care</h2>\r\nThe key to successfully restoring joint integrity for the long-term is to stimulate the area to heal. Prolotherapy works with, rather than interferes with, the healing process of the body. When musculoskeletal injuries occur, Prolotherapy can stimulate the normal reparative mechanisms of the body, laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee and hip labrum, and boosting cartilage growth.\r\n\r\nSince it addresses the underlying cause, which very often is joint instability, Prolotherapy can decrease the chance of developing long-term arthritis. The treatment offers hope to those trying to avoid joint replacement. While surgery is necessary in a small percentage of patients, specifically for full thickness tears, non-surgical regenerative therapies should be a first-line, conservative treatment tried prior to surgery.\r\n<h2>What about pain after surgery?</h2>\r\nRegenerative options are effective even after surgery in cases where a patient still complains of unresolved pain. Residual pain is common if the surgery did not correct the actual cause of pain. For those who have failed surgery, or have an advanced condition, Stem Cell Therapy may be the treatment of choice. This utilizes the patient’s own cells by concentrating and injecting them directly into the damaged tissue to accelerate repair. These regenerative treatments, Regenerative Orthopedics, offer promising alternatives to joint replacement and the opportunity for healing, as well as the return to function and athletics, for those suffering from chronic joint pain.\r\n<h2>What Does the Research Say About Prolotherapy?</h2>\r\nProlotherapy is not a newly discovered treatment. It’s been around awhile, and research has been showing its effectiveness for quite a long time. There is evidence supporting its use for various types of musculoskeletal pain including that involving the spine, pelvis, and peripheral joints.\r\n\r\nIn the 1950’s, George Hackett, MD found that Prolotherapy stabilized unstable joints by strengthening the ligaments and tendons in joints throughout the body (1-4). As the years progressed, other researchers also showed the effectiveness of Prolotherapy. Hauser did studies showing the effectiveness of Prolotherapy to treat various joints (5,6). Research by Reeves demonstrated its use in treating sprains, strains, and other musculoskeletal disorders (7,8). Additionally, Jensen demonstrated its usefulness in treating knee ligaments (9,10).\r\n<h2>Prolotherapy Treatments by A Prolotherapy specialist in the Palm Springs, CA Area</h2>\r\nTreatment involves the injection of a small amount of solution into multiple ligament and tendon insertions (enthesis) and into the adjacent joint spaces to induce healing of the injured structures.\r\n<h2>How Does Prolotherapy Work?</h2>\r\nProlotherapy works by stimulating weakened structures such as ligaments and tendons to strengthen, tighten and heal by the induced proliferation of cells.\r\n\r\nThe typical type of Prolotherapy is one that uses dextrose in the solution. Dextrose Prolotherapy stimulates the proliferation of cells and tissue. Dextrose is an ideal solution because it is water soluble and a normal component of blood chemistry, so it can be injected safely into multiple areas and in large quantity. The result is the deposition of new collagen into injured structures, such as ligaments and tendons. It causes an increase in growth factors pertinent to the repair, health and growth of tendons, ligaments and other soft tissues.\r\n\r\nProlotherapy is effective to induce healing over a wide range of musculoskeletal conditions, reducing pain, and increasing function. Dextrose Prolotherapy is the answer for joint repair from ligament and tendon injuries, unstable joints, and degenerated spines and joints.\r\n<h2>Looking for a Prolotherapy Specialist in the Palm Springs, CA Area?</h2>\r\nAt OrthoRegen®, we have offered Prolotherapy and other Regenerative Orthopedic treatments for many years, and have a lot of experience in sports medicine and the treatment of musculoskeletal pain and injury. Give us a call. We\'d be happy to help!\r\n\r\n<strong>References</strong>\r\n<ol>\r\n 	<li>Hackett G. Joint stabilization: an experimental, histologic study with comments on the clinical application in ligament proliferation. American Journal of Surgery. 1955;89:968-973.</li>\r\n 	<li>Hackett G. Back pain following trauma and disease – Prolotherapy. Military Medicine. 1961;July:517-525.</li>\r\n 	<li>Hackett G. Prolotherapy in whiplash and low back pain. Postgraduate Medicine. 1960;February:214-219.</li>\r\n 	<li>Hackett G. Shearing injury to the sacroiliac joint. Journal of the International College of Surgeons. 1954;22:631-642.</li>\r\n 	<li>Hauser R, et al. Prolo Your Pain Away! Third Edition. Beulah Land Press, Oak Park, IL, 2007.</li>\r\n 	<li>Hauser R, et al. Prolo Your Sports Injuries Away! Beulah Land Press, Oak Park, IL, 2001.</li>\r\n 	<li>Reeves K. Sweet relief: Prolotherapy targets sprains and strains. Biomechanics. 2004;9:24-35.</li>\r\n 	<li>Reeves K. Prolotherapy for patients with musculoskeletal disorders. Journal of Musculoskeletal Medicine. 2002;390-301.</li>\r\n 	<li>Jensen K, et al. <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/18310313\" target=\"_blank\" rel=\"noopener\">Response of knee ligaments to Prolotherapy in a rat injury model</a>. American Journal of Sports Medicine. 2008;36:1347-1357.</li>\r\n 	<li>Jensen K, et al. <a href=\"http://www.ncbi.nlm.nih.gov/pubmed/18240327\" target=\"_blank\" rel=\"noopener\">Early inflammatory response of knee ligaments to Prolotherapy in a rat model</a>. Journal of Orthopedic Research. 2008;26:816-823.</li>\r\n</ol>','Prolotherapy – The Answer for Joint Repair','','inherit','closed','closed','','5657-revision-v1','','','2023-01-02 03:33:34','2023-01-02 03:33:34','',5657,'https://www.drfields.com/?p=5658',0,'revision','',0),(5659,8,'2023-01-02 03:36:26','2023-01-02 03:36:26','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/regenerative-orthopedics/\">Regenerative Orthopedics</a></li>\r\n        <li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/prolotherapy-the-answer-for-joint-repair/\">Prolotherapy – The Answer for Joint Repair</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/new-studies-reveal-cortisone-injections-make-knee-arthritis-worse/\">New Studies Reveal Cortisone Injections Make Knee Arthritis Worse</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/stem-cell-injections-in-los-angeles-ca/\">Stem Cell Injections in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-shoulder-repair-in-los-angeles-ca/\">Non-Surgical Shoulder Repair in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/magazine-column/townsend-letter-avoiding-surgery-with-stem-cell-prp-prolotherapy/\" rel=\"noopener\">Townsend Letter: Avoiding Surgery With Stem Cell/PRP/Prolotherapy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-01-02 03:36:26','2023-01-02 03:36:26','',2109,'https://www.drfields.com/?p=5659',0,'revision','',0),(5661,9,'2023-01-13 20:56:36','2023-01-13 20:56:36','<h2>Prolotherapy Specialist in the Palm Springs, CA Area</h2>\n<img class=\"alignright wp-image-5653\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/Prolo.knee-OA-500x375.jpeg\" alt=\"Prolotherapy – The Answer for Joint Repair\" width=\"350\" height=\"263\" />ProlotherapyMusculoskeletal conditions wreak havoc in the lives of many people and the problem tends to increase as people age. However, our bodies have amazing regenerative capabilities. Physicians, like Peter A. Fields, MD, DC, a Prolotherapy specialist in the Palm Springs, CA area, treat joint pain with regenerative medicine techniques utilize therapies to stimulate the body to repair the ligaments.\n\nProlotherapy, which is short for proliferative therapy, is just one form of regenerative therapy and is an injection technique using naturally based solutions for healing. It is a cost-effective treatment option for various musculoskeletal conditions and arthritis.\n<h2>Regenerative Treatments are the Future of Pain Care</h2>\nThe key to successfully restoring joint integrity for the long-term is to stimulate the area to heal. Prolotherapy works with, rather than interferes with, the healing process of the body. When musculoskeletal injuries occur, Prolotherapy can stimulate the normal reparative mechanisms of the body, laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee and hip labrum, and boosting cartilage growth.\n\nSince it addresses the underlying cause, which very often is joint instability, Prolotherapy can decrease the chance of developing long-term arthritis. The treatment offers hope to those trying to avoid joint replacement. While surgery is necessary in a small percentage of patients, specifically for full thickness tears, non-surgical regenerative therapies should be a first-line, conservative treatment tried prior to surgery.\n<h2>What about pain after surgery?</h2>\nRegenerative options are effective even after surgery in cases where a patient still complains of unresolved pain. Residual pain is common if the surgery did not correct the actual cause of pain. For those who have failed surgery, or have an advanced condition, Stem Cell Therapy may be the treatment of choice. This utilizes the patient’s own cells by concentrating and injecting them directly into the damaged tissue to accelerate repair. These regenerative treatments, Regenerative Orthopedics, offer promising alternatives to joint replacement and the opportunity for healing, as well as the return to function and athletics, for those suffering from chronic joint pain.\n<h2>What Does the Research Say About Prolotherapy?</h2>\nProlotherapy is not a newly discovered treatment. It’s been around awhile, and research has been showing its effectiveness for quite a long time. There is evidence supporting its use for various types of musculoskeletal pain including that involving the spine, pelvis, and peripheral joints.\n\nIn the 1950’s, George Hackett, MD found that Prolotherapy stabilized unstable joints by strengthening the ligaments and tendons in joints throughout the body (1-4). As the years progressed, other researchers also showed the effectiveness of Prolotherapy. Hauser did studies showing the effectiveness of Prolotherapy to treat various joints (5,6). Research by Reeves demonstrated its use in treating sprains, strains, and other musculoskeletal disorders (7,8). Additionally, Jensen demonstrated its usefulness in treating knee ligaments (9,10).\n<h2>Prolotherapy Treatments by A Prolotherapy specialist in the Palm Springs, CA Area</h2>\nTreatment involves the injection of a small amount of solution into multiple ligament and tendon insertions (enthesis) and into the adjacent joint spaces to induce healing of the injured structures.\n<h2>How Does Prolotherapy Work?</h2>\nProlotherapy works by stimulating weakened structures such as ligaments and tendons to strengthen, tighten and heal by the induced proliferation of cells.\n\nThe typical type of Prolotherapy is one that uses dextrose in the solution. Dextrose Prolotherapy stimulates the proliferation of cells and tissue. Dextrose is an ideal solution because it is water soluble and a normal component of blood chemistry, so it can be injected safely into multiple areas and in large quantity. The result is the deposition of new collagen into injured structures, such as ligaments and tendons. It causes an increase in growth factors pertinent to the repair, health and growth of tendons, ligaments and other soft tissues.\n\nProlotherapy is effective to induce healing over a wide range of musculoskeletal conditions, reducing pain, and increasing function. Dextrose Prolotherapy is the answer for joint repair from ligament and tendon injuries, unstable joints, and degenerated spines and joints.\n<h2>Looking for a Prolotherapy Specialist in the Palm Springs, CA Area?</h2>\nAt OrthoRegen®, we have offered Prolotherapy and other Regenerative Orthopedic treatments for many years, and have a lot of experience in sports medicine and the treatment of musculoskeletal pain and injury. Give us a call. We\'d be happy to help!\n\n<strong>References</strong>\n<ol>\n 	<li>Hackett G. Joint stabilization: an experimental, histologic study with comments on the clinical application in ligament proliferation. American Journal of Surgery. 1955;89:968-973.</li>\n 	<li>Hackett G. Back pain following trauma and disease – Prolotherapy. Military Medicine. 1961;July:517-525.</li>\n 	<li>Hackett G. Prolotherapy in whiplash and low back pain. Postgraduate Medicine. 1960;February:214-219.</li>\n 	<li>Hackett G. Shearing injury to the sacroiliac joint. Journal of the International College of Surgeons. 1954;22:631-642.</li>\n 	<li>Hauser R, et al. Prolo Your Pain Away! Third Edition. Beulah Land Press, Oak Park, IL, 2007.</li>\n 	<li>Hauser R, et al. Prolo Your Sports Injuries Away! Beulah Land Press, Oak Park, IL, 2001.</li>\n 	<li>Reeves K. Sweet relief: Prolotherapy targets sprains and strains. Biomechanics. 2004;9:24-35.</li>\n 	<li>Reeves K. Prolotherapy for patients with musculoskeletal disorders. Journal of Musculoskeletal Medicine. 2002;390-301.</li>\n 	<li>Jensen K, et al. <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/18310313\" target=\"_blank\" rel=\"noopener\">Response of knee ligaments to Prolotherapy in a rat injury model</a>. American Journal of Sports Medicine. 2008;36:1347-1357.</li>\n 	<li>Jensen K, et al. <a href=\"http://www.ncbi.nlm.nih.gov/pubmed/18240327\" target=\"_blank\" rel=\"noopener\">Early inflammatory response of knee ligaments to Prolotherapy in a rat model</a>. Journal of Orthopedic Research. 2008;26:816-823.</li>\n</ol>','Prolotherapy – The Answer for Joint Repair','','inherit','closed','closed','','5657-autosave-v1','','','2023-01-13 20:56:36','2023-01-13 20:56:36','',5657,'https://www.drfields.com/?p=5661',0,'revision','',0),(5662,9,'2023-01-13 20:57:20','2023-01-13 20:57:20','<h2>Prolotherapy Specialist in the Palm Springs, CA Area</h2>\r\n<img class=\"alignright wp-image-5653\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/Prolo.knee-OA-500x375.jpeg\" alt=\"Prolotherapy – The Answer for Joint Repair\" width=\"350\" height=\"263\" />Prolotherapy is the answer for joint repair. Musculoskeletal conditions wreak havoc in the lives of many people and the problem tends to increase as people age. However, our bodies have amazing regenerative capabilities. Physicians, like Peter A. Fields, MD, DC, a Prolotherapy specialist in the Palm Springs, CA area, treat joint pain with regenerative medicine techniques utilize therapies to stimulate the body to repair the ligaments.\r\n\r\nProlotherapy, which is short for proliferative therapy, is just one form of regenerative therapy and is an injection technique using naturally based solutions for healing. It is a cost-effective treatment option for various musculoskeletal conditions and arthritis.\r\n<h2>Regenerative Treatments are the Future of Pain Care</h2>\r\nThe key to successfully restoring joint integrity for the long-term is to stimulate the area to heal. Prolotherapy works with, rather than interferes with, the healing process of the body. When musculoskeletal injuries occur, Prolotherapy can stimulate the normal reparative mechanisms of the body, laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee and hip labrum, and boosting cartilage growth.\r\n\r\nSince it addresses the underlying cause, which very often is joint instability, Prolotherapy can decrease the chance of developing long-term arthritis. The treatment offers hope to those trying to avoid joint replacement. While surgery is necessary in a small percentage of patients, specifically for full thickness tears, non-surgical regenerative therapies should be a first-line, conservative treatment tried prior to surgery.\r\n<h2>What about pain after surgery?</h2>\r\nRegenerative options are effective even after surgery in cases where a patient still complains of unresolved pain. Residual pain is common if the surgery did not correct the actual cause of pain. For those who have failed surgery, or have an advanced condition, Stem Cell Therapy may be the treatment of choice. This utilizes the patient’s own cells by concentrating and injecting them directly into the damaged tissue to accelerate repair. These regenerative treatments, Regenerative Orthopedics, offer promising alternatives to joint replacement and the opportunity for healing, as well as the return to function and athletics, for those suffering from chronic joint pain.\r\n<h2>What Does the Research Say About Prolotherapy?</h2>\r\nProlotherapy is not a newly discovered treatment. It’s been around awhile, and research has been showing its effectiveness for quite a long time. There is evidence supporting its use for various types of musculoskeletal pain including that involving the spine, pelvis, and peripheral joints.\r\n\r\nIn the 1950’s, George Hackett, MD found that Prolotherapy stabilized unstable joints by strengthening the ligaments and tendons in joints throughout the body (1-4). As the years progressed, other researchers also showed the effectiveness of Prolotherapy. Hauser did studies showing the effectiveness of Prolotherapy to treat various joints (5,6). Research by Reeves demonstrated its use in treating sprains, strains, and other musculoskeletal disorders (7,8). Additionally, Jensen demonstrated its usefulness in treating knee ligaments (9,10).\r\n<h2>Prolotherapy Treatments by A Prolotherapy specialist in the Palm Springs, CA Area</h2>\r\nTreatment involves the injection of a small amount of solution into multiple ligament and tendon insertions (enthesis) and into the adjacent joint spaces to induce healing of the injured structures.\r\n<h2>How Does Prolotherapy Work?</h2>\r\nProlotherapy works by stimulating weakened structures such as ligaments and tendons to strengthen, tighten and heal by the induced proliferation of cells.\r\n\r\nThe typical type of Prolotherapy is one that uses dextrose in the solution. Dextrose Prolotherapy stimulates the proliferation of cells and tissue. Dextrose is an ideal solution because it is water soluble and a normal component of blood chemistry, so it can be injected safely into multiple areas and in large quantity. The result is the deposition of new collagen into injured structures, such as ligaments and tendons. It causes an increase in growth factors pertinent to the repair, health and growth of tendons, ligaments and other soft tissues.\r\n\r\nProlotherapy is effective to induce healing over a wide range of musculoskeletal conditions, reducing pain, and increasing function. Dextrose Prolotherapy is the answer for joint repair from ligament and tendon injuries, unstable joints, and degenerated spines and joints.\r\n<h2>Looking for a Prolotherapy Specialist in the Palm Springs, CA Area?</h2>\r\nAt OrthoRegen®, we have offered Prolotherapy and other Regenerative Orthopedic treatments for many years, and have a lot of experience in sports medicine and the treatment of musculoskeletal pain and injury. Give us a call. We\'d be happy to help!\r\n\r\n<strong>References</strong>\r\n<ol>\r\n 	<li>Hackett G. Joint stabilization: an experimental, histologic study with comments on the clinical application in ligament proliferation. American Journal of Surgery. 1955;89:968-973.</li>\r\n 	<li>Hackett G. Back pain following trauma and disease – Prolotherapy. Military Medicine. 1961;July:517-525.</li>\r\n 	<li>Hackett G. Prolotherapy in whiplash and low back pain. Postgraduate Medicine. 1960;February:214-219.</li>\r\n 	<li>Hackett G. Shearing injury to the sacroiliac joint. Journal of the International College of Surgeons. 1954;22:631-642.</li>\r\n 	<li>Hauser R, et al. Prolo Your Pain Away! Third Edition. Beulah Land Press, Oak Park, IL, 2007.</li>\r\n 	<li>Hauser R, et al. Prolo Your Sports Injuries Away! Beulah Land Press, Oak Park, IL, 2001.</li>\r\n 	<li>Reeves K. Sweet relief: Prolotherapy targets sprains and strains. Biomechanics. 2004;9:24-35.</li>\r\n 	<li>Reeves K. Prolotherapy for patients with musculoskeletal disorders. Journal of Musculoskeletal Medicine. 2002;390-301.</li>\r\n 	<li>Jensen K, et al. <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/18310313\" target=\"_blank\" rel=\"noopener\">Response of knee ligaments to Prolotherapy in a rat injury model</a>. American Journal of Sports Medicine. 2008;36:1347-1357.</li>\r\n 	<li>Jensen K, et al. <a href=\"http://www.ncbi.nlm.nih.gov/pubmed/18240327\" target=\"_blank\" rel=\"noopener\">Early inflammatory response of knee ligaments to Prolotherapy in a rat model</a>. Journal of Orthopedic Research. 2008;26:816-823.</li>\r\n</ol>','Prolotherapy Is the Answer for Joint Repair','','inherit','closed','closed','','5657-revision-v1','','','2023-01-13 20:57:20','2023-01-13 20:57:20','',5657,'https://www.drfields.com/?p=5662',0,'revision','',0),(5663,9,'2023-01-13 21:03:37','2023-01-13 21:03:37','<h2>Prolotherapy Specialist in the Palm Springs, CA Area</h2>\r\n<img class=\"alignright wp-image-5653\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/Prolo.knee-OA-500x375.jpeg\" alt=\"Prolotherapy – The Answer for Joint Repair\" width=\"350\" height=\"263\" />Prolotherapy is the answer for joint repair. Musculoskeletal conditions wreak havoc in the lives of many people, and the problem tends to increase as people age. However, our bodies have excellent regenerative capabilities. Physicians like Peter A. Fields, MD, DC, a Prolotherapy specialist in the Palm Springs, CA area, treat joint pain with regenerative medicine techniques that utilize therapies to stimulate the body to repair the ligaments.\r\n\r\nProlotherapy, which is short for proliferative therapy, is just one form of regenerative therapy and is an injection technique using naturally based solutions for healing. It is a cost-effective treatment option for various musculoskeletal conditions and arthritis.\r\n<h2>Regenerative Treatments are the Future of Pain Care</h2>\r\nThe key to restoring joint integrity for the long term is stimulating the area to heal. Prolotherapy works with, rather than interferes with, the body\'s healing process. When musculoskeletal injuries occur, Prolotherapy can stimulate the normal reparative mechanisms of the body, laying down new collagen, strengthening the tendons and ligaments, repairing the meniscus of the knee and hip labrum, and boosting cartilage growth.\r\n\r\nSince it addresses the underlying cause, which is often joint instability, Prolotherapy can decrease the chance of developing long-term arthritis. The treatment offers hope to those trying to avoid joint replacement. While surgery is necessary for a small percentage of patients, specifically for full-thickness tears, non-surgical regenerative therapies should be a first-line, conservative treatment tried before surgery.\r\n<h2>What about pain after surgery?</h2>\r\nRegenerative options are effective even after surgery in cases where a patient still complains of unresolved pain. Residual pain is common if the surgery does not correct the actual cause of pain. For those who have failed surgery or have an advanced condition, Stem Cell Therapy may be the treatment of choice. This utilizes the patient’s own cells by concentrating and injecting them directly into the damaged tissue to accelerate repair. These regenerative treatments, Regenerative Orthopedics, offer promising alternatives to joint replacement and the opportunity for healing, as well as the return to function and athletics, for those suffering from chronic joint pain.\r\n<h2>What Does the Research Say About Prolotherapy?</h2>\r\nProlotherapy is not a newly discovered treatment. It’s been around a while, and research has shown its effectiveness for quite a long time. Evidence supports its use for various types of musculoskeletal pain, including the spine, pelvis, and peripheral joints.\r\n\r\nIn the 1950s, George Hackett, MD found that Prolotherapy stabilized unstable joints by strengthening the ligaments and tendons in joints throughout the body (1-4). As the years progressed, other researchers also showed the effectiveness of Prolotherapy. Hauser did studies showing the effectiveness of Prolotherapy in treating various joints (5,6). Research by Reeves demonstrated its use in treating sprains, strains, and other musculoskeletal disorders (7,8). Additionally, Jensen demonstrated its usefulness in treating knee ligaments (9,10).\r\n<h2>Prolotherapy Treatments by A Prolotherapy specialist in the Palm Springs, CA Area</h2>\r\nTreatment involves injecting a small amount of solution into multiple ligament and tendon insertions (enthesis) and into the adjacent joint spaces to induce healing of the injured structures.\r\n<h2>How Does Prolotherapy Work?</h2>\r\nProlotherapy stimulates weakened structures such as ligaments and tendons to strengthen, tighten and heal through the induced proliferation of cells.\r\n\r\nThe typical type of Prolotherapy uses dextrose in the solution. Dextrose Prolotherapy stimulates the proliferation of cells and tissue. Dextrose is an ideal solution because it is water soluble and a normal component of blood chemistry so that it can be injected safely into multiple areas and in large quantities. The result is the deposition of new collagen into injured structures, such as ligaments and tendons. It causes an increase in growth factors pertinent to the repair, health, and growth of tendons, ligaments, and other soft tissues.\r\n\r\nProlotherapy is effective in inducing healing over a wide range of musculoskeletal conditions, reducing pain, and increasing function. Dextrose Prolotherapy is the answer for joint repair from ligament and tendon injuries, unstable joints, and degenerated spines and joints.\r\n<h2>Looking for a Prolotherapy Specialist in the Palm Springs, CA Area?</h2>\r\nAt OrthoRegen®, we have offered Prolotherapy and other Regenerative Orthopedic treatments for many years and have a lot of experience in sports medicine and the treatment of musculoskeletal pain and injury. Give us a call. We\'d be happy to help!\r\n\r\n<strong>References</strong>\r\n<ol>\r\n 	<li>Hackett G. Joint stabilization: an experimental, histologic study with comments on the clinical application in ligament proliferation. American Journal of Surgery. 1955;89:968-973.</li>\r\n 	<li>Hackett G. Back pain following trauma and disease – Prolotherapy. Military Medicine. 1961;July:517-525.</li>\r\n 	<li>Hackett G. Prolotherapy in whiplash and low back pain. Postgraduate Medicine. 1960;February:214-219.</li>\r\n 	<li>Hackett G. Shearing injury to the sacroiliac joint. Journal of the International College of Surgeons. 1954;22:631-642.</li>\r\n 	<li>Hauser R, et al. Prolo Your Pain Away! Third Edition. Beulah Land Press, Oak Park, IL, 2007.</li>\r\n 	<li>Hauser R, et al. Prolo Your Sports Injuries Away! Beulah Land Press, Oak Park, IL, 2001.</li>\r\n 	<li>Reeves K. Sweet relief: Prolotherapy targets sprains and strains. Biomechanics. 2004;9:24-35.</li>\r\n 	<li>Reeves K. Prolotherapy for patients with musculoskeletal disorders. Journal of Musculoskeletal Medicine. 2002;390-301.</li>\r\n 	<li>Jensen K, et al. <a href=\"https://www.ncbi.nlm.nih.gov/pubmed/18310313\" target=\"_blank\" rel=\"noopener\">Response of knee ligaments to Prolotherapy in a rat injury model</a>. American Journal of Sports Medicine. 2008;36:1347-1357.</li>\r\n 	<li>Jensen K, et al. <a href=\"http://www.ncbi.nlm.nih.gov/pubmed/18240327\" target=\"_blank\" rel=\"noopener\">Early inflammatory response of knee ligaments to Prolotherapy in a rat model</a>. Journal of Orthopedic Research. 2008;26:816-823.</li>\r\n</ol>','Prolotherapy Is the Answer for Joint Repair','','inherit','closed','closed','','5657-revision-v1','','','2023-01-13 21:03:37','2023-01-13 21:03:37','',5657,'https://www.drfields.com/?p=5663',0,'revision','',0),(5664,9,'2023-01-13 21:38:41','2023-01-13 21:38:41','<h2>Bone Marrow Concentrate and Platelet Rich Plasma Are Growing in Popularity</h2>\n<img class=\"alignright wp-image-5652\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/PRP-and-BMC-500x419.png\" alt=\"Regenerative Orthopedics\" width=\"350\" height=\"293\" />Regenerative Orthopedics, such as Bone Marrow Concentrate (BMC) and Platelet Rich Plasma (PRP) are growing in popularity in sports medicine and other fields of medicine. That\'s because PRP has been shown to boost healing in many types of injuries, and BMC is said to repair tissue like cartilage and bone.\n<h2>A Short Explanation of PRP and BMC?</h2>\nPRP is a concentration of platelets from a person\'s own blood. The treatment uses the patient\'s blood cells to accelerate healing in a specific area. Platelets contain growth factors that enhance the healing of soft tissue. When these platelets are concentrated, the healing potential is increased.\n\n<a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment-los-angeles/\">BMC</a> is an aspiration of mesenchymal stem cells from bone marrow commonly taken from the iliac crest and then concentrated. These stem cells have the ability to differentiate into cartilage and bone. BMC has the potential to heal injured and arthritic joints.\n<h2>But does the research show that these treatments effectively repair joint injuries or even arthritis?</h2>\nThere is quite a lot of research showing the effectiveness of both PRP and BMC in repairing joint injuries and arthritis. The following are just some of the medical journal research results:\n\nThe Journal of Pain Research looked at 115 patients treated with BMC for arthritis and/or rotator cuff tears. What were the results? Both disability and pain decreased, and the improvement continued for up to 2 years.(1)\n\nAnother study looking at BMC\'s effectiveness on rotator cuff tears compared to exercise also resulted in an improvement in function, a decrease in pain, and healing of the tendon. The findings suggested that BMC may be a safe and useful alternative to conservative treatments like exercise for managing rotator cuff tears. (2)\n\nA study by Gobbi and associates on BMC for chondral defects of the knee showed significant improvement. (3) In another study, Gobbi also showed improvement in patellofemoral lesions of the knee with BMC. (4)\n\nCan BMC help arthritis? Several human studies suggest a potential role of BMC in treating knee osteoarthritis evidenced by significant improvements in multiple clinical scores and increased cartilage healing. (5)\n<h2>BMC and PRP Are Growing in Popularity, and They Are Effective Treatments</h2>\nAs you can see,<a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\"> PRP</a> and BMC are effective in the treatment of various joint injuries as well as arthritis. These Regenerative Orthopedic procedures are great non-surgical alternatives for those with persistent joint pain, joint injury, and even arthritis.\n\nAt OrthoRegen, we have years of experience treating patients with PRP and BMC. If you are looking for a non-surgical option for your joint pain or arthritis, please call us at 310-453-1234.\n<h3><strong>References</strong></h3>\n<ol>\n 	<li>Centeno, Christopher J., et al.<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4463777/\"> \"A prospective multi-site registry study of a specific protocol of autologous bone marrow concentrate for the treatment of shoulder rotator cuff tears and osteoarthritis.\"</a> Journal of Pain Research 8 (2015): 269.</li>\n 	<li>Centeno, Christopher, et al. \"A randomized controlled trial of the treatment of rotator cuff tears with bone marrow concentrate and platelet products compared to exercise therapy: A midterm analysis.\" Stem cells international 2020 (2020).</li>\n 	<li>Gobbi A, Karnatzikos G, Sankineani SR. One-step surgery with multipotent stem cells for the treatment of large full- thickness chondral defects of the knee. Am J Sports Med. 2014;42:648–657.</li>\n 	<li>Gobbi A, Chaurasia S, Karnatzikos G, et al. Matrix-induced autologous chondrocyte implantation versus multipotent stem cells for the treatment of large patellofemoral chondral lesions: a nonrandomized prospective trial. Cartilage. 2014;6:82–97.</li>\n 	<li>Wolfstadt JI, Cole BJ, Ogilvie-Harris DJ, et al. Current concepts: the role of mesenchymal stem cells in the manage- ment of knee osteoarthritis. Sports Health. 2015;7:38–44.</li>\n</ol>','Regenerative Orthopedics Growing in Popularity','','inherit','closed','closed','','5651-autosave-v1','','','2023-01-13 21:38:41','2023-01-13 21:38:41','',5651,'https://www.drfields.com/?p=5664',0,'revision','',0),(5665,9,'2023-01-13 21:30:29','2023-01-13 21:30:29','<h2>Bone Marrow Concentrate and Platelet Rich Plasma Are Growing in Popularity</h2>\r\n<img class=\"alignright wp-image-5652\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/PRP-and-BMC-500x419.png\" alt=\"Regenerative Orthopedics\" width=\"350\" height=\"293\" />Regenerative Orthopedics, such as Bone Marrow Concentrate (BMC) and Platelet Rich Plasma (PRP) are growing in popularity in sports medicine and other fields of medicine. That\'s because PRP has been shown to boost healing in many types of injuries, and BMC is said to repair tissue like cartilage and bone.\r\n<h2>A Short Explanation of PRP and BMC?</h2>\r\nPRP is a concentration of platelets from a person\'s own blood. The treatment uses the patient\'s blood cells to accelerate healing in a specific area. Platelets contain growth factors that enhance the healing of soft tissue. When these platelets are concentrated, the healing potential is increased.\r\n\r\nBMC is an aspiration of mesenchymal stem cells from bone marrow commonly taken from the iliac crest and then concentrated. These stem cells have the ability to differentiate into cartilage and bone. BMC has the potential to heal injured and arthritic joints.\r\n<h2>But does the research show that these treatments effectively repair joint injuries or even arthritis?</h2>\r\nThere is quite a lot of research showing the effectiveness of both PRP and BMC in repairing joint injuries and arthritis. The following are just some of the medical journal research results:\r\n\r\nThe Journal of Pain Research looked at 115 patients treated with BMC for arthritis and/or rotator cuff tears. What were the results? Both disability and pain decreased, and the improvement continued for up to 2 years.(1)\r\n\r\nAnother study looking at BMC\'s effectiveness on rotator cuff tears compared to exercise also resulted in an improvement in function, a decrease in pain, and healing of the tendon. The findings suggested that BMC may be a safe and useful alternative to conservative treatments like exercise for managing rotator cuff tears. (2)\r\n\r\nA study by Gobbi and associates on BMC for chondral defects of the knee showed significant improvement. (3) In another study, Gobbi also showed improvement in patellofemoral lesions of the knee with BMC. (4)\r\n\r\nCan BMC help arthritis? Several human studies suggest a potential role of BMC in treating knee osteoarthritis evidenced by significant improvements in multiple clinical scores and increased cartilage healing.(5)\r\n<h2>BMC and PRP Are Growing in Popularity and They Are Effective Treatments</h2>\r\nAs you can see, PRP and BMC are effective in the treatment of various joint injuries as well as arthritis. These Regenerative Orthopedic procedures are great non-surgical alternatives for those with persistent joint pain, joint injury, and even arthritis.\r\n\r\nAt OrthoRegen, we have years of experience treating patients with PRP and BMC. If you are looking for a non-surgical option for your joint pain or arthritis, please call us at 310-453-1234.\r\n\r\n<strong>References</strong>\r\n<ol>\r\n 	<li>Centeno, Christopher J., et al. \"A prospective multi-site registry study of a specific protocol of autologous bone marrow concentrate for the treatment of shoulder rotator cuff tears and osteoarthritis.\" Journal of Pain Research 8 (2015): 269.</li>\r\n 	<li>Centeno, Christopher, et al. \"A randomized controlled trial of the treatment of rotator cuff tears with bone marrow concentrate and platelet products compared to exercise therapy: A midterm analysis.\" Stem cells international 2020 (2020).</li>\r\n 	<li>Gobbi A, Karnatzikos G, Sankineani SR. One-step surgery with multipotent stem cells for the treatment of large full- thickness chondral defects of the knee. Am J Sports Med. 2014;42:648–657.</li>\r\n 	<li>Gobbi A, Chaurasia S, Karnatzikos G, et al. Matrix-induced autologous chondrocyte implantation versus multipotent stem cells for the treatment of large patellofemoral chondral lesions: a nonrandomized prospective trial. Cartilage. 2014;6:82–97.</li>\r\n 	<li>Wolfstadt JI, Cole BJ, Ogilvie-Harris DJ, et al. Current concepts: the role of mesenchymal stem cells in the manage- ment of knee osteoarthritis. Sports Health. 2015;7:38–44.</li>\r\n</ol>','Regenerative Orthopedics','','inherit','closed','closed','','5651-revision-v1','','','2023-01-13 21:30:29','2023-01-13 21:30:29','',5651,'https://www.drfields.com/?p=5665',0,'revision','',0),(5666,9,'2023-01-13 21:37:28','2023-01-13 21:37:28','<h2>Bone Marrow Concentrate and Platelet Rich Plasma Are Growing in Popularity</h2>\r\n<img class=\"alignright wp-image-5652\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/PRP-and-BMC-500x419.png\" alt=\"Regenerative Orthopedics\" width=\"350\" height=\"293\" />Regenerative Orthopedics, such as Bone Marrow Concentrate (BMC) and Platelet Rich Plasma (PRP) are growing in popularity in sports medicine and other fields of medicine. That\'s because PRP has been shown to boost healing in many types of injuries, and BMC is said to repair tissue like cartilage and bone.\r\n<h2>A Short Explanation of PRP and BMC?</h2>\r\nPRP is a concentration of platelets from a person\'s own blood. The treatment uses the patient\'s blood cells to accelerate healing in a specific area. Platelets contain growth factors that enhance the healing of soft tissue. When these platelets are concentrated, the healing potential is increased.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment-los-angeles/\">BMC</a> is an aspiration of mesenchymal stem cells from bone marrow commonly taken from the iliac crest and then concentrated. These stem cells have the ability to differentiate into cartilage and bone. BMC has the potential to heal injured and arthritic joints.\r\n<h2>But does the research show that these treatments effectively repair joint injuries or even arthritis?</h2>\r\nThere is quite a lot of research showing the effectiveness of both PRP and BMC in repairing joint injuries and arthritis. The following are just some of the medical journal research results:\r\n\r\nThe Journal of Pain Research looked at 115 patients treated with BMC for arthritis and/or rotator cuff tears. What were the results? Both disability and pain decreased, and the improvement continued for up to 2 years.(1)\r\n\r\nAnother study looking at BMC\'s effectiveness on rotator cuff tears compared to exercise also resulted in an improvement in function, a decrease in pain, and healing of the tendon. The findings suggested that BMC may be a safe and useful alternative to conservative treatments like exercise for managing rotator cuff tears. (2)\r\n\r\nA study by Gobbi and associates on BMC for chondral defects of the knee showed significant improvement. (3) In another study, Gobbi also showed improvement in patellofemoral lesions of the knee with BMC. (4)\r\n\r\nCan BMC help arthritis? Several human studies suggest a potential role of BMC in treating knee osteoarthritis evidenced by significant improvements in multiple clinical scores and increased cartilage healing. (5)\r\n<h2>BMC and PRP Are Growing in Popularity, and They Are Effective Treatments</h2>\r\nAs you can see,<a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\"> PRP</a> and BMC are effective in the treatment of various joint injuries as well as arthritis. These Regenerative Orthopedic procedures are great non-surgical alternatives for those with persistent joint pain, joint injury, and even arthritis.\r\n\r\nAt OrthoRegen, we have years of experience treating patients with PRP and BMC. If you are looking for a non-surgical option for your joint pain or arthritis, please call us at 310-453-1234.\r\n<h3><strong>References</strong></h3>\r\n<ol>\r\n 	<li>Centeno, Christopher J., et al. \"A prospective multi-site registry study of a specific protocol of autologous bone marrow concentrate for the treatment of shoulder rotator cuff tears and osteoarthritis.\" Journal of Pain Research 8 (2015): 269.</li>\r\n 	<li>Centeno, Christopher, et al. \"A randomized controlled trial of the treatment of rotator cuff tears with bone marrow concentrate and platelet products compared to exercise therapy: A midterm analysis.\" Stem cells international 2020 (2020).</li>\r\n 	<li>Gobbi A, Karnatzikos G, Sankineani SR. One-step surgery with multipotent stem cells for the treatment of large full- thickness chondral defects of the knee. Am J Sports Med. 2014;42:648–657.</li>\r\n 	<li>Gobbi A, Chaurasia S, Karnatzikos G, et al. Matrix-induced autologous chondrocyte implantation versus multipotent stem cells for the treatment of large patellofemoral chondral lesions: a nonrandomized prospective trial. Cartilage. 2014;6:82–97.</li>\r\n 	<li>Wolfstadt JI, Cole BJ, Ogilvie-Harris DJ, et al. Current concepts: the role of mesenchymal stem cells in the manage- ment of knee osteoarthritis. Sports Health. 2015;7:38–44.</li>\r\n</ol>','Regenerative Orthopedics Growing in Popularity','','inherit','closed','closed','','5651-revision-v1','','','2023-01-13 21:37:28','2023-01-13 21:37:28','',5651,'https://www.drfields.com/?p=5666',0,'revision','',0),(5667,9,'2023-01-13 21:39:02','2023-01-13 21:39:02','<h2>Bone Marrow Concentrate and Platelet Rich Plasma Are Growing in Popularity</h2>\r\n<img class=\"alignright wp-image-5652\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/PRP-and-BMC-500x419.png\" alt=\"Regenerative Orthopedics\" width=\"350\" height=\"293\" />Regenerative Orthopedics, such as Bone Marrow Concentrate (BMC) and Platelet Rich Plasma (PRP) are growing in popularity in sports medicine and other fields of medicine. That\'s because PRP has been shown to boost healing in many types of injuries, and BMC is said to repair tissue like cartilage and bone.\r\n<h2>A Short Explanation of PRP and BMC?</h2>\r\nPRP is a concentration of platelets from a person\'s own blood. The treatment uses the patient\'s blood cells to accelerate healing in a specific area. Platelets contain growth factors that enhance the healing of soft tissue. When these platelets are concentrated, the healing potential is increased.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/stem-cell-treatment-los-angeles/\">BMC</a> is an aspiration of mesenchymal stem cells from bone marrow commonly taken from the iliac crest and then concentrated. These stem cells have the ability to differentiate into cartilage and bone. BMC has the potential to heal injured and arthritic joints.\r\n<h2>But does the research show that these treatments effectively repair joint injuries or even arthritis?</h2>\r\nThere is quite a lot of research showing the effectiveness of both PRP and BMC in repairing joint injuries and arthritis. The following are just some of the medical journal research results:\r\n\r\nThe Journal of Pain Research looked at 115 patients treated with BMC for arthritis and/or rotator cuff tears. What were the results? Both disability and pain decreased, and the improvement continued for up to 2 years.(1)\r\n\r\nAnother study looking at BMC\'s effectiveness on rotator cuff tears compared to exercise also resulted in an improvement in function, a decrease in pain, and healing of the tendon. The findings suggested that BMC may be a safe and useful alternative to conservative treatments like exercise for managing rotator cuff tears. (2)\r\n\r\nA study by Gobbi and associates on BMC for chondral defects of the knee showed significant improvement. (3) In another study, Gobbi also showed improvement in patellofemoral lesions of the knee with BMC. (4)\r\n\r\nCan BMC help arthritis? Several human studies suggest a potential role of BMC in treating knee osteoarthritis evidenced by significant improvements in multiple clinical scores and increased cartilage healing. (5)\r\n<h2>BMC and PRP Are Growing in Popularity, and They Are Effective Treatments</h2>\r\nAs you can see,<a href=\"https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/\"> PRP</a> and BMC are effective in the treatment of various joint injuries as well as arthritis. These Regenerative Orthopedic procedures are great non-surgical alternatives for those with persistent joint pain, joint injury, and even arthritis.\r\n\r\nAt OrthoRegen, we have years of experience treating patients with PRP and BMC. If you are looking for a non-surgical option for your joint pain or arthritis, please call us at 310-453-1234.\r\n<h3><strong>References</strong></h3>\r\n<ol>\r\n 	<li>Centeno, Christopher J., et al.<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4463777/\"> \"A prospective multi-site registry study of a specific protocol of autologous bone marrow concentrate for the treatment of shoulder rotator cuff tears and osteoarthritis.\"</a> Journal of Pain Research 8 (2015): 269.</li>\r\n 	<li>Centeno, Christopher, et al. \"A randomized controlled trial of the treatment of rotator cuff tears with bone marrow concentrate and platelet products compared to exercise therapy: A midterm analysis.\" Stem cells international 2020 (2020).</li>\r\n 	<li>Gobbi A, Karnatzikos G, Sankineani SR. One-step surgery with multipotent stem cells for the treatment of large full- thickness chondral defects of the knee. Am J Sports Med. 2014;42:648–657.</li>\r\n 	<li>Gobbi A, Chaurasia S, Karnatzikos G, et al. Matrix-induced autologous chondrocyte implantation versus multipotent stem cells for the treatment of large patellofemoral chondral lesions: a nonrandomized prospective trial. Cartilage. 2014;6:82–97.</li>\r\n 	<li>Wolfstadt JI, Cole BJ, Ogilvie-Harris DJ, et al. Current concepts: the role of mesenchymal stem cells in the manage- ment of knee osteoarthritis. Sports Health. 2015;7:38–44.</li>\r\n</ol>','Regenerative Orthopedics Growing in Popularity','','inherit','closed','closed','','5651-revision-v1','','','2023-01-13 21:39:02','2023-01-13 21:39:02','',5651,'https://www.drfields.com/?p=5667',0,'revision','',0),(5668,9,'2023-01-13 21:40:47','2023-01-13 21:40:47','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/regenerative-orthopedics/\">Regenerative Orthopedics: Growing in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/prolotherapy-the-answer-for-joint-repair/\">Prolotherapy – The Answer for Joint Repair</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/new-studies-reveal-cortisone-injections-make-knee-arthritis-worse/\">New Studies Reveal Cortisone Injections Make Knee Arthritis Worse</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/stem-cell-injections-in-los-angeles-ca/\">Stem Cell Injections in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-shoulder-repair-in-los-angeles-ca/\">Non-Surgical Shoulder Repair in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/magazine-column/townsend-letter-avoiding-surgery-with-stem-cell-prp-prolotherapy/\" rel=\"noopener\">Townsend Letter: Avoiding Surgery With Stem Cell/PRP/Prolotherapy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-01-13 21:40:47','2023-01-13 21:40:47','',2109,'https://www.drfields.com/?p=5668',0,'revision','',0),(5669,9,'2023-01-21 18:38:36','2023-01-21 18:38:36','[caption id=\"attachment_5635\" align=\"alignright\" width=\"300\"]an<img class=\"wp-image-5635\" src=\"https://www.drfields.com/wp-content/uploads/2022/12/Cortisone-New-studies-500x419.png\" alt=\"New Studies Reveal Cortisone Injections Make Knee Arthritis Worse\" width=\"300\" height=\"251\" /> Cortisone New Studies[/caption]\n<h2>Cortisone Makes Knee Arthritis Worse</h2>\nCortisone makes arthritis worse? That\'s what brand-new studies are showing. Just this past week, a couple of new studies on corticosteroid knee injections showed that they were \"significantly associated\" with increased progression of osteoarthritis. Wow, cortisone injections do make arthritis worse!\n\nIf you have been following our newsletters or reading our website articles, you know we have revealed this to you over the years, as other studies have suggested the dangers of corticosteroids.\n\nInjections of corticosteroids are a prevalent treatment used in traditional medicine to treat arthritis. And even though many studies over the years have shown the harmfulness of cortisone to joint structures, the treatment has continued to be used.\n\nHopefully, the results from <a href=\"https://press.rsna.org/timssnet/media/pressreleases/14_pr_target.cfm?id=2386\" target=\"_blank\" rel=\"noopener\">the studies</a>, which were presented at the annual meeting of the Radiological Society of North America, will change how physicians treat their patients.\n<h2>Does the New Research Say Cortisone Makes Knee Arthritis Worse?<strong> </strong></h2>\n<ul>\n 	<li>The first study was from the University of California in San Francisco. Over a two-year period, the researchers compared 70 patients with osteoarthritis who had received intraarticular knee injections to a control group of 140 with osteoarthritis who did not get injections. The data showed more arthritis progression in patients who had steroid shots. (1)</li>\n</ul>\n<ul>\n 	<li>In the second study, researchers at the Chicago Medical School studied 150 patients who received intraarticular knee injections. Once again, the patients injected with steroids had significantly more osteoarthritis progression. (2)</li>\n</ul>\nThe data suggest that intraarticular cortisone injections speed up arthritis rather than prevent it.\n<h2>Are These Results New?</h2>\nUnfortunately, this is not the first time researchers have revealed the harmfulness of cortisone. Studies have shown for decades that cortisone damages cartilage cells.\n<ul>\n 	<li>Researchers in a 2019 study said, “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”(3)</li>\n</ul>\n<ul>\n 	<li>In 2017 scientists said, “Among patients with symptomatic knee osteoarthritis, two years of intra-articular triamcinolone, compared with intra-articular saline, resulted in significantly greater cartilage volume loss and no significant difference in knee pain. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.” (4)</li>\n</ul>\n<ul>\n 	<li>And in 2011, researchers revealed evidence of consistent and significant damage to cartilage cells from corticosteroid injections. (5)</li>\n</ul>\nAs you can see, even in the past decade, science has shown that cortisone is damaging to joint structures.\n<h2>Now What, Since Cortisone Makes Arthritis Worse?<strong> </strong></h2>\nHopefully, the physicians who commonly treat patients with corticosteroids will educate themselves on these dangers and stop recommending the treatment. In the meantime, patients can protect themselves and choose treatments that repair rather than damage the joint.\n\nWe continue to offer treatments that regenerate and repair the joint. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy, work by repairing the arthritic joint. These treatments heal the joints, strengthen the structures of the joints, and even boost cartilage growth.\n\nRegenerative Orthopedics regenerates the joint. The treatments do not cause the degeneration that occurs with cortisone injections. Additionally, there is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\n\nChoose Regenerative Orthopedics to achieve the pain relief you desire, and get back to the activities you enjoy doing.\n<h2>References</h2>\n(1) PR Newswire. NSAIDs May Worsen Arthritis Inflammation. https://www.prnewswire.com/news-releases/nsaids-may-worsen-arthritis-inflammation-301681834.html. Accessed 12/2/22.\n\n(2) PR Newswire. Steroid Injections Worsen Knee Arthritis. https://www.prnewswire.com/news-releases/steroid-injections-worsen-knee-arthritis-301685584.html Accessed 12/2/22.\n\n(3) Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology, 2019; 190341\n\n(4) McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. JAMA. 2017;317(19):1967-1975.\n\n(5) Dragoo JL, Danial CM, Braun HJ, Pouliot MA, Kim HJ. The chondrotoxicity of single-dose corticosteroids. Knee Surg Sports Traumatol Arthrosc. 2012 Sep;20(9):1809-14. doi: 10.1007/s00167-011-1820-6. Epub 2011 Dec 21. PMID: 22186921.','New Studies Reveal Cortisone Injections Make Knee Arthritis Worse','','inherit','closed','closed','','5633-autosave-v1','','','2023-01-21 18:38:36','2023-01-21 18:38:36','',5633,'https://www.drfields.com/?p=5669',0,'revision','',0),(5670,9,'2023-01-21 18:34:33','2023-01-21 18:34:33','[caption id=\"attachment_5635\" align=\"alignright\" width=\"300\"]<img class=\"wp-image-5635\" src=\"https://www.drfields.com/wp-content/uploads/2022/12/Cortisone-New-studies-500x419.png\" alt=\"New Studies Reveal Cortisone Injections Make Knee Arthritis Worse\" width=\"300\" height=\"251\" /> Cortisone New Studies[/caption]\r\n<h2>Cortisone Makes Knee Arthritis Worse</h2>\r\nCortisone makes knee arthritis worse? That\'s what brand-new studies are showing. Just this past week, a couple of new studies on corticosteroid knee injections showed that they were \"significantly associated\" with increased progression of osteoarthritis. Wow, cortisone injections do make arthritis worse!\r\n\r\nIf you have been following our newsletters or reading our website articles, you know we have revealed this to you over the years, as other studies have suggested the dangers of corticosteroids.\r\n\r\nInjections of corticosteroids are a prevalent treatment used in traditional medicine to treat arthritis. And even though many studies over the years have shown the harmfulness of cortisone to joint structures, the treatment has continued to be used.\r\n\r\nHopefully, the results from <a href=\"https://press.rsna.org/timssnet/media/pressreleases/14_pr_target.cfm?id=2386\" target=\"_blank\" rel=\"noopener\">the studies</a>, which were presented at the annual meeting of the Radiological Society of North America, will change how physicians treat their patients.\r\n<h2>Does the New Research Say Cortisone Makes Knee Arthritis Worse?<strong> </strong></h2>\r\n<ul>\r\n 	<li>The first study was from the University of California in San Francisco. Over a two-year period, the researchers compared 70 patients with osteoarthritis who had received intraarticular knee injections to a control group of 140 with osteoarthritis who did not get injections. The data showed more arthritis progression in patients who had steroid shots. (1)</li>\r\n</ul>\r\n<ul>\r\n 	<li>In the second study, researchers at the Chicago Medical School studied 150 patients who received intraarticular knee injections. Once again, the patients injected with steroids had significantly more osteoarthritis progression. (2)</li>\r\n</ul>\r\nThe data suggest that intraarticular cortisone injections speed up arthritis rather than prevent it.\r\n<h2>Are These Results New?</h2>\r\nUnfortunately, this is not the first time researchers have revealed the harmfulness of cortisone. Studies have shown for decades that cortisone damages cartilage cells.\r\n<ul>\r\n 	<li>Researchers in a 2019 study said, “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”(3)</li>\r\n</ul>\r\n<ul>\r\n 	<li>In 2017 scientists said, “Among patients with symptomatic knee osteoarthritis, two years of intra-articular triamcinolone, compared with intra-articular saline, resulted in significantly greater cartilage volume loss and no significant difference in knee pain. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.” (4)</li>\r\n</ul>\r\n<ul>\r\n 	<li>And in 2011, researchers revealed evidence of consistent and significant damage to cartilage cells from corticosteroid injections. (5)</li>\r\n</ul>\r\nAs you can see, even in the past decade, science has shown that cortisone is damaging to joint structures.\r\n<h2>Now What, Since Cortisone Makes Arthritis Worse?<strong> </strong></h2>\r\nHopefully, the physicians who commonly treat patients with corticosteroids will educate themselves on these dangers and stop recommending the treatment. In the meantime, patients can protect themselves and choose treatments that repair rather than damage the joint.\r\n\r\nWe continue to offer treatments that regenerate and repair the joint. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy, work by repairing the arthritic joint. These treatments heal the joints, strengthen the structures of the joints, and even boost cartilage growth.\r\n\r\nRegenerative Orthopedics regenerates the joint. The treatments do not cause the degeneration that occurs with cortisone injections. Additionally, there is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nChoose Regenerative Orthopedics to achieve the pain relief you desire, and get back to the activities you enjoy doing.\r\n<h2>References</h2>\r\n(1) PR Newswire. NSAIDs May Worsen Arthritis Inflammation. https://www.prnewswire.com/news-releases/nsaids-may-worsen-arthritis-inflammation-301681834.html. Accessed 12/2/22.\r\n\r\n(2) PR Newswire. Steroid Injections Worsen Knee Arthritis. https://www.prnewswire.com/news-releases/steroid-injections-worsen-knee-arthritis-301685584.html Accessed 12/2/22.\r\n\r\n(3) Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology, 2019; 190341\r\n\r\n(4) McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. JAMA. 2017;317(19):1967-1975.\r\n\r\n(5) Dragoo JL, Danial CM, Braun HJ, Pouliot MA, Kim HJ. The chondrotoxicity of single-dose corticosteroids. Knee Surg Sports Traumatol Arthrosc. 2012 Sep;20(9):1809-14. doi: 10.1007/s00167-011-1820-6. Epub 2011 Dec 21. PMID: 22186921.','New Studies Reveal Cortisone Injections Make Knee Arthritis Worse','','inherit','closed','closed','','5633-revision-v1','','','2023-01-21 18:34:33','2023-01-21 18:34:33','',5633,'https://www.drfields.com/?p=5670',0,'revision','',0),(5671,9,'2023-01-21 18:36:57','2023-01-21 18:36:57','[caption id=\"attachment_5635\" align=\"alignright\" width=\"300\"]<img class=\"wp-image-5635\" src=\"https://www.drfields.com/wp-content/uploads/2022/12/Cortisone-New-studies-500x419.png\" alt=\"New Studies Reveal Cortisone Injections Make Knee Arthritis Worse\" width=\"300\" height=\"251\" /> Cortisone New Studies[/caption]\r\n<h2>Cortisone Makes Knee Arthritis Worse</h2>\r\nCortisone makes arthritis worse? That\'s what brand-new studies are showing. Just this past week, a couple of new studies on corticosteroid knee injections showed that they were \"significantly associated\" with increased progression of osteoarthritis. Wow, cortisone injections do make arthritis worse!\r\n\r\nIf you have been following our newsletters or reading our website articles, you know we have revealed this to you over the years, as other studies have suggested the dangers of corticosteroids.\r\n\r\nInjections of corticosteroids are a prevalent treatment used in traditional medicine to treat arthritis. And even though many studies over the years have shown the harmfulness of cortisone to joint structures, the treatment has continued to be used.\r\n\r\nHopefully, the results from <a href=\"https://press.rsna.org/timssnet/media/pressreleases/14_pr_target.cfm?id=2386\" target=\"_blank\" rel=\"noopener\">the studies</a>, which were presented at the annual meeting of the Radiological Society of North America, will change how physicians treat their patients.\r\n<h2>Does the New Research Say Cortisone Makes Knee Arthritis Worse?<strong> </strong></h2>\r\n<ul>\r\n 	<li>The first study was from the University of California in San Francisco. Over a two-year period, the researchers compared 70 patients with osteoarthritis who had received intraarticular knee injections to a control group of 140 with osteoarthritis who did not get injections. The data showed more arthritis progression in patients who had steroid shots. (1)</li>\r\n</ul>\r\n<ul>\r\n 	<li>In the second study, researchers at the Chicago Medical School studied 150 patients who received intraarticular knee injections. Once again, the patients injected with steroids had significantly more osteoarthritis progression. (2)</li>\r\n</ul>\r\nThe data suggest that intraarticular cortisone injections speed up arthritis rather than prevent it.\r\n<h2>Are These Results New?</h2>\r\nUnfortunately, this is not the first time researchers have revealed the harmfulness of cortisone. Studies have shown for decades that cortisone damages cartilage cells.\r\n<ul>\r\n 	<li>Researchers in a 2019 study said, “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”(3)</li>\r\n</ul>\r\n<ul>\r\n 	<li>In 2017 scientists said, “Among patients with symptomatic knee osteoarthritis, two years of intra-articular triamcinolone, compared with intra-articular saline, resulted in significantly greater cartilage volume loss and no significant difference in knee pain. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.” (4)</li>\r\n</ul>\r\n<ul>\r\n 	<li>And in 2011, researchers revealed evidence of consistent and significant damage to cartilage cells from corticosteroid injections. (5)</li>\r\n</ul>\r\nAs you can see, even in the past decade, science has shown that cortisone is damaging to joint structures.\r\n<h2>Now What, Since Cortisone Makes Arthritis Worse?<strong> </strong></h2>\r\nHopefully, the physicians who commonly treat patients with corticosteroids will educate themselves on these dangers and stop recommending the treatment. In the meantime, patients can protect themselves and choose treatments that repair rather than damage the joint.\r\n\r\nWe continue to offer treatments that regenerate and repair the joint. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy, work by repairing the arthritic joint. These treatments heal the joints, strengthen the structures of the joints, and even boost cartilage growth.\r\n\r\nRegenerative Orthopedics regenerates the joint. The treatments do not cause the degeneration that occurs with cortisone injections. Additionally, there is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nChoose Regenerative Orthopedics to achieve the pain relief you desire, and get back to the activities you enjoy doing.\r\n<h2>References</h2>\r\n(1) PR Newswire. NSAIDs May Worsen Arthritis Inflammation. https://www.prnewswire.com/news-releases/nsaids-may-worsen-arthritis-inflammation-301681834.html. Accessed 12/2/22.\r\n\r\n(2) PR Newswire. Steroid Injections Worsen Knee Arthritis. https://www.prnewswire.com/news-releases/steroid-injections-worsen-knee-arthritis-301685584.html Accessed 12/2/22.\r\n\r\n(3) Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology, 2019; 190341\r\n\r\n(4) McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. JAMA. 2017;317(19):1967-1975.\r\n\r\n(5) Dragoo JL, Danial CM, Braun HJ, Pouliot MA, Kim HJ. The chondrotoxicity of single-dose corticosteroids. Knee Surg Sports Traumatol Arthrosc. 2012 Sep;20(9):1809-14. doi: 10.1007/s00167-011-1820-6. Epub 2011 Dec 21. PMID: 22186921.','New Studies Reveal Cortisone Injections Make Knee Arthritis Worse','','inherit','closed','closed','','5633-revision-v1','','','2023-01-21 18:36:57','2023-01-21 18:36:57','',5633,'https://www.drfields.com/?p=5671',0,'revision','',0),(5672,9,'2023-01-21 18:38:53','2023-01-21 18:38:53','<h2>Can Cortisone Make Knee Arthritis Worse?</h2>\r\nCortisone makes arthritis worse? That\'s what brand-new studies are showing. Just this past week, a couple of new studies on corticosteroid knee injections showed that they were \"significantly associated\" with increased progression of osteoarthritis. Wow, cortisone injections do make arthritis worse!\r\n\r\nIf you have been following our newsletters or reading our website articles, you know we have revealed this to you over the years, as other studies have suggested the dangers of corticosteroids.\r\n\r\nInjections of corticosteroids are a prevalent treatment used in traditional medicine to treat arthritis. And even though many studies over the years have shown the harmfulness of cortisone to joint structures, the treatment has continued to be used.\r\n\r\nHopefully, the results from <a href=\"https://press.rsna.org/timssnet/media/pressreleases/14_pr_target.cfm?id=2386\" target=\"_blank\" rel=\"noopener\">the studies</a>, which were presented at the annual meeting of the Radiological Society of North America, will change how physicians treat their patients.\r\n<h2>Does the New Research Say Cortisone Makes Knee Arthritis Worse?<strong> </strong></h2>\r\n<ul>\r\n 	<li>The first study was from the University of California in San Francisco. Over a two-year period, the researchers compared 70 patients with osteoarthritis who had received intraarticular knee injections to a control group of 140 with osteoarthritis who did not get injections. The data showed more arthritis progression in patients who had steroid shots. (1)</li>\r\n</ul>\r\n<ul>\r\n 	<li>In the second study, researchers at the Chicago Medical School studied 150 patients who received intraarticular knee injections. Once again, the patients injected with steroids had significantly more osteoarthritis progression. (2)</li>\r\n</ul>\r\nThe data suggest that intraarticular cortisone injections speed up arthritis rather than prevent it.\r\n<h2>Are These Results New?</h2>\r\nUnfortunately, this is not the first time researchers have revealed the harmfulness of cortisone. Studies have shown for decades that cortisone damages cartilage cells.\r\n<ul>\r\n 	<li>Researchers in a 2019 study said, “Physicians do not commonly tell patients about the possibility of joint collapse or subchondral insufficiency fractures that may lead to earlier total hip or knee replacement,” “This information should be part of the consent when you inject patients with intra-articular corticosteroids.”(3)</li>\r\n</ul>\r\n<ul>\r\n 	<li>In 2017 scientists said, “Among patients with symptomatic knee osteoarthritis, two years of intra-articular triamcinolone, compared with intra-articular saline, resulted in significantly greater cartilage volume loss and no significant difference in knee pain. These findings do not support this treatment for patients with symptomatic knee osteoarthritis.” (4)</li>\r\n</ul>\r\n<ul>\r\n 	<li>And in 2011, researchers revealed evidence of consistent and significant damage to cartilage cells from corticosteroid injections. (5)</li>\r\n</ul>\r\nAs you can see, even in the past decade, science has shown that cortisone is damaging to joint structures.\r\n<h2>Now What, Since Cortisone Makes Arthritis Worse?<strong> </strong></h2>\r\nHopefully, the physicians who commonly treat patients with corticosteroids will educate themselves on these dangers and stop recommending the treatment. In the meantime, patients can protect themselves and choose treatments that repair rather than damage the joint.\r\n\r\nWe continue to offer treatments that regenerate and repair the joint. Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy, work by repairing the arthritic joint. These treatments heal the joints, strengthen the structures of the joints, and even boost cartilage growth.\r\n\r\nRegenerative Orthopedics regenerates the joint. The treatments do not cause the degeneration that occurs with cortisone injections. Additionally, there is also minimal downtime needed when receiving these regenerative treatments. That means you can continue to exercise and move the joint, which is essential for a healthy joint. Exercise helps ease pain, improve mobility, and strengthen muscles around the joints.\r\n\r\nChoose Regenerative Orthopedics to achieve the pain relief you desire, and get back to the activities you enjoy doing.\r\n<h2>References</h2>\r\n(1) PR Newswire. NSAIDs May Worsen Arthritis Inflammation. https://www.prnewswire.com/news-releases/nsaids-may-worsen-arthritis-inflammation-301681834.html. Accessed 12/2/22.\r\n\r\n(2) PR Newswire. Steroid Injections Worsen Knee Arthritis. https://www.prnewswire.com/news-releases/steroid-injections-worsen-knee-arthritis-301685584.html Accessed 12/2/22.\r\n\r\n(3) Kompel AJ, Roemer FW, Murakami AM, Diaz LE, Crema MD, Guermazi A. Intra-articular Corticosteroid Injections in the Hip and Knee: Perhaps Not as Safe as We Thought? Radiology, 2019; 190341\r\n\r\n(4) McAlindon TE, LaValley MP, Harvey WF, Price LL, Driban JB, Zhang M, Ward RJ. Effect of Intra-articular Triamcinolone vs Saline on Knee Cartilage Volume and Pain in Patients With Knee OsteoarthritisA Randomized Clinical Trial. JAMA. 2017;317(19):1967-1975.\r\n\r\n(5) Dragoo JL, Danial CM, Braun HJ, Pouliot MA, Kim HJ. The chondrotoxicity of single-dose corticosteroids. Knee Surg Sports Traumatol Arthrosc. 2012 Sep;20(9):1809-14. doi: 10.1007/s00167-011-1820-6. Epub 2011 Dec 21. PMID: 22186921.','New Studies Reveal Cortisone Injections Make Knee Arthritis Worse','','inherit','closed','closed','','5633-revision-v1','','','2023-01-21 18:38:53','2023-01-21 18:38:53','',5633,'https://www.drfields.com/?p=5672',0,'revision','',0),(5673,9,'2023-01-21 18:43:22','2023-01-21 18:43:22','<img class=\"wp-image-5606 size-wcsquare alignright\" title=\"Stem Cell Injections in Los Angeles, CA\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Non-surgical-arthritis-TX-300x300.png\" alt=\" Stem Cell Injections in Los Angeles, CA\" width=\"300\" height=\"300\" />\n<h2>Stem Cell Injections in the Los Angeles Area</h2>\nOur goal at OrthoRegen®, where we provide stem cell injections in the Los Angeles, CA area, is to stimulate the repair of injured joints. If you have been diagnosed with a joint injury or with degeneration of the joint or spine, there is a good chance we can help you. Regenerative therapies at OrthoRegen® are effective, non-surgical treatments.\n\nStem Cell Therapy utilizes a person\'s own healing cells. These cells are given directly to the area that is in need of them. They are not shipped anywhere for processing or obtained from somewhere else. We use your own cells.\n\nThe Stem Cell Therapy done at OrthoRegen® has nothing to do with embryonic stem cell therapy. We only use the patient’s own adult stem cells. There is no cross-contamination this way!\n<h2>Gold Standard Stem Cell Injections in Los Angeles, CA</h2>\nPlus, at OrthoRegen®, we use the Gold Standard for stem cell regeneration. What does that mean? The Gold Standard means we don’t use just one type of regenerative therapy but four different kinds of Regenerative Orthopedics. And why is that important? Using four different types of regenerative therapies helps you to avoid invasive surgery.\n\n<img class=\"wp-image-5607 size-wcsquare alignright\" title=\"Stem Cell Injections in Los Angeles, CA\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Stem-Cell-Injections-in-Los-Angeles-CA-300x300.png\" alt=\"Stem Cell Injections in Los Angeles, CA\" width=\"300\" height=\"300\" />\n\nMany other clinics only use one or two of these procedures. But not all four. We use bone marrow stem cells, and adipose (fat) stem cells. We also use PRP Prolotherapy to accelerate healing. In addition, we use Dextrose Prolotherapy on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. And without it, failure rates are high.\n\nNot all injuries or degenerative cases require stem cell treatment. It may be that you will only require traditional Prolotherapy to accomplish the repair. However, in more advanced cases, Stem Cell Treatment may be necessary. Your physician will let you know which treatment is best for you after examining you and reviewing your history.\n<h2>Stem Cell Injections in Los Angeles, CA for Arthritis</h2>\nStem Cell Therapy is typically chosen to repair articular cartilage, but it will also repair ligaments and tendons. In conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. And with arthritis, the joint is in a state where it is breaking down. What we want to do with Stem Cell Therapy is to get the joint in a state of building up. When we use this treatment, we stimulate the body to repair the area to get it stronger.\n<h2>Conditions That Can Be Treated with Stem Cell Therapy</h2>\nMost clinics, including OrthoRegen®, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those involved in treating people with articular cartilage degeneration or joint injury know that the vast majority of them improve when treated with Stem Cell Therapy.\n\nWe have found that Comprehensive Regenerative Orthopedics, using the combination of Stem Cells, PRP, and Prolotherapy, works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\n\nCall us to find out if you are a candidate for non-surgical Regenerative Orthopedics at 310-463-1234.','Stem Cell Injections in Los Angeles, CA','','inherit','closed','closed','','5605-autosave-v1','','','2023-01-21 18:43:22','2023-01-21 18:43:22','',5605,'https://www.drfields.com/?p=5673',0,'revision','',0),(5674,9,'2023-01-21 18:44:08','2023-01-21 18:44:08','<img class=\"wp-image-5606 size-wcsquare alignright\" title=\"Stem Cell Injections in Los Angeles, CA\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Non-surgical-arthritis-TX-300x300.png\" alt=\" Stem Cell Injections in Los Angeles, CA\" width=\"300\" height=\"300\" />\r\n<h2>Stem Cell Injections in the Los Angeles Area</h2>\r\nOur goal at OrthoRegen®, where we provide stem cell injections in the Los Angeles, CA area, is to stimulate the repair of injured joints. If you have been diagnosed with a joint injury or with degeneration of the joint or spine, there is a good chance we can help you. Regenerative therapies at OrthoRegen® are effective, non-surgical treatments.\r\n\r\nStem Cell Therapy utilizes a person\'s own healing cells. These cells are given directly to the area that is in need of them. They are not shipped anywhere for processing or obtained from somewhere else. We use your own cells.\r\n\r\nThe Stem Cell Therapy done at OrthoRegen® has nothing to do with embryonic stem cell therapy. We only use the patient’s own adult stem cells. There is no cross-contamination this way!\r\n<h2>Gold Standard Stem Cell Injections in Los Angeles, CA</h2>\r\nPlus, at OrthoRegen®, we use the Gold Standard for stem cell regeneration. What does that mean? The Gold Standard means we don’t use just one type of regenerative therapy but four different kinds of Regenerative Orthopedics. And why is that important? Using four different types of regenerative therapies helps you to avoid invasive surgery.\r\n\r\n<img class=\"wp-image-5607 size-wcsquare alignright\" title=\"Stem Cell Injections in Los Angeles, CA\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/Stem-Cell-Injections-in-Los-Angeles-CA-300x300.png\" alt=\"Stem Cell Injections in Los Angeles, CA\" width=\"300\" height=\"300\" />\r\n\r\nMany other clinics only use one or two of these procedures. But not all four. We use bone marrow stem cells, and adipose (fat) stem cells. We also use PRP Prolotherapy to accelerate healing. In addition, we use Dextrose Prolotherapy on the outside of the joint to help stabilize the ligaments and tendons that hold the joint in place. This last step is critical for the success of the procedure. And without it, failure rates are high.\r\n\r\nNot all injuries or degenerative cases require stem cell treatment. It may be that you will only require traditional Prolotherapy to accomplish the repair. However, in more advanced cases, Stem Cell Treatment may be necessary. Your physician will let you know which treatment is best for you after examining you and reviewing your history.\r\n<h2>Stem Cell Injections in Los Angeles, CA for Arthritis</h2>\r\nStem Cell Therapy is typically chosen to repair articular cartilage, but it will also repair ligaments and tendons. In conditions such as arthritis, the problem is typically progressive and degenerative, with a limited ability of the joint to heal itself. And with arthritis, the joint is in a state where it is breaking down. What we want to do with Stem Cell Therapy is to get the joint in a state of building up. When we use this treatment, we stimulate the body to repair the area to get it stronger.\r\n<h2>Conditions That Can Be Treated with Stem Cell Therapy</h2>\r\nMost clinics, including OrthoRegen®, use Stem Cell Therapy for cases of significant joint injury or severe degenerative arthritis in joints or even the spine. Those involved in treating people with articular cartilage degeneration or joint injury know that the vast majority of them improve when treated with Stem Cell Therapy.\r\n\r\nWe have found that Comprehensive Regenerative Orthopedics, using the combination of Stem Cells, PRP, and Prolotherapy, works amazingly at accomplishing the results of repair and return to function in the patients we have treated, allowing them to return to the activities they enjoy in life.\r\n\r\nCall us to find out if you are a candidate for non-surgical Regenerative Orthopedics at 310-463-1234.','Stem Cell Injections in Los Angeles, CA','','inherit','closed','closed','','5605-revision-v1','','','2023-01-21 18:44:08','2023-01-21 18:44:08','',5605,'https://www.drfields.com/?p=5674',0,'revision','',0),(5676,8,'2023-01-23 06:00:45','2023-01-23 06:00:45','<h2><img class=\"wp-image-5678 alignright\" title=\"Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/arthroscopy-500x415.png\" alt=\"Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP\" width=\"391\" height=\"325\" />Stem Cell Therapy in Newport Beach, CA: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP</h2>\r\nOrthoRegen<sup>®</sup>offers Stem Cell Therapy in the Newport Beach, CA area to help patients with knee pain. Even those with cartilage loss can benefit from this non-surgical procedure. The regeneration of articular cartilage utilizing mesenchymal stem cells (MSCs) is a topic of significant scientific and therapeutic interest. Current treatment for cartilage damage in the arthritic knee generally focuses on surgical interventions such as arthroscopic repair. Unfortunately, these procedures have proven to be less effective than hoped.\r\n\r\nA 2022 study from Melbourne, Australia, reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\r\n\r\nSurgery is also invasive and often requires a prolonged recovery time. At OrthoRegen®, we offer a non-surgical alternative to knee surgery. We see a lot of patients who prefer the non-surgical route to avoid a long surgical recovery and the risks that come with surgery. They desire to get back to an active life and do what they love, just like you!\r\n<h2>Regenerative Orthopedics for Knee Arthritis Repair</h2>\r\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include Stem Cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All of the treatments are done in conjunction with dextrose Prolotherapy to treat the entire knee joint comprehensively.\r\n<h2>Why Stem Cells and PRP?</h2>\r\nMesenchymal stem cells (MSCs) are pluripotent cells found in human adult tissue such as bone marrow and adipose tissue. MSCs have been found to regenerate cartilage successfully. That\'s a great finding when it comes to the arthritic knee. When the degeneration is more severe, stem cells may be needed.\r\n\r\nAnd for adult stem cells to work best, they require growth factors. Since growth factors are found in platelets, a blood isolate called Platelet Rich Plasma (PRP) is used along with the stem cells. PRP is a concentration of a patient\'s own platelets taken from a blood draw which is concentrated in a specialized centrifuge. (2) PRP injections use each patient\'s own healing system to improve musculoskeletal problems.\r\n<h2>Stem Cell Therapy in Newport Beach, CA</h2>\r\nOrthoRegen® is a regenerative medicine clinic in the Newport Beach, CA area offering stem cell therapy utilizing mesenchymal stem cells from bone marrow and adipose. We offer the Gold Standard in Stem Cell Therapy and use PRP to augment the stem cells and Prolotherapy to comprehensively treat the entire knee. The Gold Standard offers the best opportunity for healing of the knee. These non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (3)\r\n\r\nInjuries may respond with Prolotherapy alone or may also require PRP if the injury requires more repair due to advanced damage. Our clinicians will recommend the best regenerative therapy for your particular case to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma, Stem Cells, and Prolotherapy, stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are much less invasive than surgery and, therefore, require minimal downtown. These treatments are a much safer and more conservative with many advantages over arthroscopic surgery.\r\n\r\n<strong>References</strong>\r\n<ol>\r\n 	<li>O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).</li>\r\n 	<li>Centeno, Christopher J., et al. \"Regeneration of meniscus cartilage in a knee treated with percutaneously implanted autologous mesenchymal stem cells.\" Medical hypotheses 71.6 (2008): 900-908.</li>\r\n 	<li>Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951</li>\r\n</ol>','Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP','','publish','closed','open','','stem-cell-therapy-in-newport-beach-ca-area-regenerate-knee-cartilage-with-bone-marrow-concentrate-and-prp','','','2023-01-28 21:34:41','2023-01-28 21:34:41','',0,'https://www.drfields.com/?p=5676',0,'post','',0),(5677,8,'2023-01-24 04:42:24','2023-01-24 04:42:24','The regeneration of articular cartilage utilizing mesenchymal stem cells (MSC’s) is a topic of significant scientific and therapeutic interest. Current treatment for cartilage damage in the arthritic knee generally focuses on surgical interventions such as arthroscopic repair. Unfortunately, these procedures have proven to be less effective than hoped.\r\n\r\nA 2022 study from Melbourne, Australia reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\r\n\r\nSurgery is also invasive, and often requires a prolonged recovery time. At OrthoRegen®, we offer a non-surgical alternative to knee surgery. We see a lot of patients who prefer the non-surgical route to avoid a long surgical recovery and the risks that come with surgery. They desire to get back to an active life and doing what they love, just like you!\r\n<h2>Regenerative Orthopedics for Knee Arthritis Repair</h2>\r\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include Stem Cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions, respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All of the treatments are done in conjunction with dextrose Prolotherapy in order to comprehensively treat the entire knee joint.\r\n<h2>Why Stem Cells and PRP?</h2>\r\nMesenchymal stem cells (MSC\'s) are pluripotent cells found in human adult tissue such as bone marrow and adipose tissue. MSC\'s have been found to successfully regenerate cartilage. That\'s a great finding when it comes to the arthritic knee. When the degeneration is more severe, stem cells may be needed.\r\n\r\nAnd for adult stem cells to work best, they require growth factors. Since growth factors are found in platelets, a blood isolate called Platelet Rich Plasma (PRP) is used along with the stem cells. PRP is a concentration of a patient\'s own platelets taken from a blood draw which is concentrated in a specialized centrifuge. (2) PRP injections use each individual patient\'s own healing system to improve musculoskeletal problems.\r\n<h2>Stem Cell Therapy in Newport Beach, CA</h2>\r\nOrthoRegen® is a regenerative medicine clinic in the Newport Beach area that offers stem cell therapy utilizing mesenchymal stem cells from both bone marrow and adipose. We offer the Gold Standard in Stem Cell Therapy and use PRP to augment the stem cells, and Prolotherapy to comprehensively treat the entire knee. The Gold Standard offers the best opportunity for healing of the knee. These non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (3)\r\n\r\nInjuries may respond with Prolotherapy alone, or may also require PRP if the injury requires more repair due to advanced damage. Our clinicians will recommend the best regenerative therapy for your particular case in order to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma, Stem Cells, and Prolotherapy work great to stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are so much less invasive than surgery and therefore, require minimal downtown. These treatments are a much safer and more conservative treatment with many advantages over arthroscopic surgery.\r\n\r\n<strong>References</strong>\r\n<ol>\r\n 	<li>O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).</li>\r\n 	<li>Centeno, Christopher J., et al. \"Regeneration of meniscus cartilage in a knee treated with percutaneously implanted autologous mesenchymal stem cells.\" Medical hypotheses 71.6 (2008): 900-908.</li>\r\n 	<li>Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951</li>\r\n</ol>','Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP','','inherit','closed','closed','','5676-revision-v1','','','2023-01-24 04:42:24','2023-01-24 04:42:24','',5676,'https://www.drfields.com/?p=5677',0,'revision','',0),(5678,8,'2023-01-24 04:44:27','2023-01-24 04:44:27','Arthroscopy','Arthroscopy','Arthroscopy','inherit','closed','closed','','arthroscopy','','','2023-01-24 04:44:27','2023-01-24 04:44:27','',5676,'https://www.drfields.com/wp-content/uploads/2023/01/arthroscopy.png',0,'attachment','image/png',0),(5679,8,'2023-01-24 04:45:50','2023-01-24 04:45:50','<img class=\"wp-image-5678 alignright\" title=\"Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/arthroscopy-500x415.png\" alt=\"Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP\" width=\"300\" height=\"249\" />\n\nThe regeneration of articular cartilage utilizing mesenchymal stem cells (MSC’s) is a topic of significant scientific and therapeutic interest. Current treatment for cartilage damage in the arthritic knee generally focuses on surgical interventions such as arthroscopic repair. Unfortunately, these procedures have proven to be less effective than hoped.\n\nA 2022 study from Melbourne, Australia reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\n\nSurgery is also invasive, and often requires a prolonged recovery time. At OrthoRegen®, we offer a non-surgical alternative to knee surgery. We see a lot of patients who prefer the non-surgical route to avoid a long surgical recovery and the risks that come with surgery. They desire to get back to an active life and doing what they love, just like you!\n<h2>Regenerative Orthopedics for Knee Arthritis Repair</h2>\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include Stem Cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions, respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All of the treatments are done in conjunction with dextrose Prolotherapy in order to comprehensively treat the entire knee joint.\n<h2>Why Stem Cells and PRP?</h2>\nMesenchymal stem cells (MSC\'s) are pluripotent cells found in human adult tissue such as bone marrow and adipose tissue. MSC\'s have been found to successfully regenerate cartilage. That\'s a great finding when it comes to the arthritic knee. When the degeneration is more severe, stem cells may be needed.\n\nAnd for adult stem cells to work best, they require growth factors. Since growth factors are found in platelets, a blood isolate called Platelet Rich Plasma (PRP) is used along with the stem cells. PRP is a concentration of a patient\'s own platelets taken from a blood draw which is concentrated in a specialized centrifuge. (2) PRP injections use each individual patient\'s own healing system to improve musculoskeletal problems.\n<h2>Stem Cell Therapy in Newport Beach, CA</h2>\nOrthoRegen® is a regenerative medicine clinic in the Newport Beach area that offers stem cell therapy utilizing mesenchymal stem cells from both bone marrow and adipose. We offer the Gold Standard in Stem Cell Therapy and use PRP to augment the stem cells, and Prolotherapy to comprehensively treat the entire knee. The Gold Standard offers the best opportunity for healing of the knee. These non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (3)\n\nInjuries may respond with Prolotherapy alone, or may also require PRP if the injury requires more repair due to advanced damage. Our clinicians will recommend the best regenerative therapy for your particular case in order to strengthen, stabilize and repair your knee.\n\nRegenerative Orthopedics, such as Platelet Rich Plasma, Stem Cells, and Prolotherapy work great to stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are so much less invasive than surgery and therefore, require minimal downtown. These treatments are a much safer and more conservative treatment with many advantages over arthroscopic surgery.\n\n<strong>References</strong>\n<ol>\n 	<li>O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).</li>\n 	<li>Centeno, Christopher J., et al. \"Regeneration of meniscus cartilage in a knee treated with percutaneously implanted autologous mesenchymal stem cells.\" Medical hypotheses 71.6 (2008): 900-908.</li>\n 	<li>Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951</li>\n</ol>','Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP','','inherit','closed','closed','','5676-autosave-v1','','','2023-01-24 04:45:50','2023-01-24 04:45:50','',5676,'https://www.drfields.com/?p=5679',0,'revision','',0),(5680,8,'2023-01-24 04:46:00','2023-01-24 04:46:00','<img class=\"wp-image-5678 alignright\" title=\"Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/arthroscopy-500x415.png\" alt=\"Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP\" width=\"300\" height=\"249\" />\r\n\r\nThe regeneration of articular cartilage utilizing mesenchymal stem cells (MSC’s) is a topic of significant scientific and therapeutic interest. Current treatment for cartilage damage in the arthritic knee generally focuses on surgical interventions such as arthroscopic repair. Unfortunately, these procedures have proven to be less effective than hoped.\r\n\r\nA 2022 study from Melbourne, Australia reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\r\n\r\nSurgery is also invasive, and often requires a prolonged recovery time. At OrthoRegen®, we offer a non-surgical alternative to knee surgery. We see a lot of patients who prefer the non-surgical route to avoid a long surgical recovery and the risks that come with surgery. They desire to get back to an active life and doing what they love, just like you!\r\n<h2>Regenerative Orthopedics for Knee Arthritis Repair</h2>\r\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include Stem Cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions, respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All of the treatments are done in conjunction with dextrose Prolotherapy in order to comprehensively treat the entire knee joint.\r\n<h2>Why Stem Cells and PRP?</h2>\r\nMesenchymal stem cells (MSC\'s) are pluripotent cells found in human adult tissue such as bone marrow and adipose tissue. MSC\'s have been found to successfully regenerate cartilage. That\'s a great finding when it comes to the arthritic knee. When the degeneration is more severe, stem cells may be needed.\r\n\r\nAnd for adult stem cells to work best, they require growth factors. Since growth factors are found in platelets, a blood isolate called Platelet Rich Plasma (PRP) is used along with the stem cells. PRP is a concentration of a patient\'s own platelets taken from a blood draw which is concentrated in a specialized centrifuge. (2) PRP injections use each individual patient\'s own healing system to improve musculoskeletal problems.\r\n<h2>Stem Cell Therapy in Newport Beach, CA</h2>\r\nOrthoRegen® is a regenerative medicine clinic in the Newport Beach area that offers stem cell therapy utilizing mesenchymal stem cells from both bone marrow and adipose. We offer the Gold Standard in Stem Cell Therapy and use PRP to augment the stem cells, and Prolotherapy to comprehensively treat the entire knee. The Gold Standard offers the best opportunity for healing of the knee. These non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (3)\r\n\r\nInjuries may respond with Prolotherapy alone, or may also require PRP if the injury requires more repair due to advanced damage. Our clinicians will recommend the best regenerative therapy for your particular case in order to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma, Stem Cells, and Prolotherapy work great to stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are so much less invasive than surgery and therefore, require minimal downtown. These treatments are a much safer and more conservative treatment with many advantages over arthroscopic surgery.\r\n\r\n<strong>References</strong>\r\n<ol>\r\n 	<li>O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).</li>\r\n 	<li>Centeno, Christopher J., et al. \"Regeneration of meniscus cartilage in a knee treated with percutaneously implanted autologous mesenchymal stem cells.\" Medical hypotheses 71.6 (2008): 900-908.</li>\r\n 	<li>Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951</li>\r\n</ol>','Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP','','inherit','closed','closed','','5676-revision-v1','','','2023-01-24 04:46:00','2023-01-24 04:46:00','',5676,'https://www.drfields.com/?p=5680',0,'revision','',0),(5681,8,'2023-01-24 04:50:26','2023-01-24 04:50:26','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<p lang=\"en-US\" align=\"LEFT\"></p>\r\n\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-in-newport-beach-ca-area-regenerate-knee-cartilage-with-bone-marrow-concentrate-and-prp/\">Stem Cell Therapy in Newport Beach, CA Area</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/regenerative-orthopedics/\">Regenerative Orthopedics: Growing in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/prolotherapy-the-answer-for-joint-repair/\">Prolotherapy – The Answer for Joint Repair</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/new-studies-reveal-cortisone-injections-make-knee-arthritis-worse/\">New Studies Reveal Cortisone Injections Make Knee Arthritis Worse</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/stem-cell-injections-in-los-angeles-ca/\">Stem Cell Injections in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-shoulder-repair-in-los-angeles-ca/\">Non-Surgical Shoulder Repair in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/magazine-column/townsend-letter-avoiding-surgery-with-stem-cell-prp-prolotherapy/\" rel=\"noopener\">Townsend Letter: Avoiding Surgery With Stem Cell/PRP/Prolotherapy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/\">Stem Cells Are Gaining in Popularity</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-01-24 04:50:26','2023-01-24 04:50:26','',2109,'https://www.drfields.com/?p=5681',0,'revision','',0),(5683,9,'2023-01-28 21:33:23','2023-01-28 21:33:23','<h2><img class=\"wp-image-5678 alignright\" title=\"Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/arthroscopy-500x415.png\" alt=\"Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP\" width=\"391\" height=\"325\" />Stem Cell Therapy in Newport Beach, CA: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP</h2>\nOrthoRegen<sup>®</sup>offers Stem Cell Therapy in the Newport Beach, CA area to help patients with knee pain. Even those with cartilage loss can benefit from this non-surgical procedure. The regeneration of articular cartilage utilizing mesenchymal stem cells (MSCs) is a topic of significant scientific and therapeutic interest. Current treatment for cartilage damage in the arthritic knee generally focuses on surgical interventions such as arthroscopic repair. Unfortunately, these procedures have proven to be less effective than hoped.\n\nA 2022 study from Melbourne, Australia, reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\n\nSurgery is also invasive and often requires a prolonged recovery time. At OrthoRegen®, we offer a non-surgical alternative to knee surgery. We see a lot of patients who prefer the non-surgical route to avoid a long surgical recovery and the risks that come with surgery. They desire to get back to an active life and do what they love, just like you!\n<h2>Regenerative Orthopedics for Knee Arthritis Repair</h2>\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include Stem Cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All of the treatments are done in conjunction with dextrose Prolotherapy to treat the entire knee joint comprehensively.\n<h2>Why Stem Cells and PRP?</h2>\nMesenchymal stem cells (MSCs) are pluripotent cells found in human adult tissue such as bone marrow and adipose tissue. MSCs have been found to regenerate cartilage successfully. That\'s a great finding when it comes to the arthritic knee. When the degeneration is more severe, stem cells may be needed.\n\nAnd for adult stem cells to work best, they require growth factors. Since growth factors are found in platelets, a blood isolate called Platelet Rich Plasma (PRP) is used along with the stem cells. PRP is a concentration of a patient\'s own platelets taken from a blood draw which is concentrated in a specialized centrifuge. (2) PRP injections use each patient\'s own healing system to improve musculoskeletal problems.\n<h2>Stem Cell Therapy in Newport Beach, CA</h2>\nOrthoRegen® is a regenerative medicine clinic in the Newport Beach, CA area that offers stem cell therapy utilizing mesenchymal stem cells from both bone marrow and adipose. We offer the Gold Standard in Stem Cell Therapy and use PRP to augment the stem cells, and Prolotherapy to comprehensively treat the entire knee. The Gold Standard offers the best opportunity for healing of the knee. These non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (3)\n\nInjuries may respond with Prolotherapy alone, or may also require PRP if the injury requires more repair due to advanced damage. Our clinicians will recommend the best regenerative therapy for your particular case in order to strengthen, stabilize and repair your knee.\n\nRegenerative Orthopedics, such as Platelet Rich Plasma, Stem Cells, and Prolotherapy work great to stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are so much less invasive than surgery and therefore, require minimal downtown. These treatments are a much safer and more conservative treatment with many advantages over arthroscopic surgery.\n\n<strong>References</strong>\n<ol>\n 	<li>O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).</li>\n 	<li>Centeno, Christopher J., et al. \"Regeneration of meniscus cartilage in a knee treated with percutaneously implanted autologous mesenchymal stem cells.\" Medical hypotheses 71.6 (2008): 900-908.</li>\n 	<li>Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951</li>\n</ol>','Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP','','inherit','closed','closed','','5676-autosave-v1','','','2023-01-28 21:33:23','2023-01-28 21:33:23','',5676,'https://www.drfields.com/?p=5683',0,'revision','',0),(5684,9,'2023-01-28 21:34:41','2023-01-28 21:34:41','<h2><img class=\"wp-image-5678 alignright\" title=\"Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP\" src=\"https://www.drfields.com/wp-content/uploads/2023/01/arthroscopy-500x415.png\" alt=\"Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP\" width=\"391\" height=\"325\" />Stem Cell Therapy in Newport Beach, CA: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP</h2>\r\nOrthoRegen<sup>®</sup>offers Stem Cell Therapy in the Newport Beach, CA area to help patients with knee pain. Even those with cartilage loss can benefit from this non-surgical procedure. The regeneration of articular cartilage utilizing mesenchymal stem cells (MSCs) is a topic of significant scientific and therapeutic interest. Current treatment for cartilage damage in the arthritic knee generally focuses on surgical interventions such as arthroscopic repair. Unfortunately, these procedures have proven to be less effective than hoped.\r\n\r\nA 2022 study from Melbourne, Australia, reports, “High-certainty evidence indicates arthroscopic surgery leads to little or no difference in pain or function at three months after surgery, moderate-certainty evidence indicates it is probably little or no improvement in knee-specific quality of life three months after surgery, and low-certainty evidence indicates arthroscopic surgery may lead to little or no difference in participant-reported success at up to five years, compared with placebo surgery.” (1)\r\n\r\nSurgery is also invasive and often requires a prolonged recovery time. At OrthoRegen®, we offer a non-surgical alternative to knee surgery. We see a lot of patients who prefer the non-surgical route to avoid a long surgical recovery and the risks that come with surgery. They desire to get back to an active life and do what they love, just like you!\r\n<h2>Regenerative Orthopedics for Knee Arthritis Repair</h2>\r\nAt OrthoRegen®, we utilize regenerative treatments to repair injured and degenerated knees. These treatments include Stem Cells, PRP, and Prolotherapy. Certain knee conditions will respond well to simple dextrose Prolotherapy. Other conditions respond great with PRP. And then other conditions, usually those with more degeneration, will require stem cell treatment. All of the treatments are done in conjunction with dextrose Prolotherapy to treat the entire knee joint comprehensively.\r\n<h2>Why Stem Cells and PRP?</h2>\r\nMesenchymal stem cells (MSCs) are pluripotent cells found in human adult tissue such as bone marrow and adipose tissue. MSCs have been found to regenerate cartilage successfully. That\'s a great finding when it comes to the arthritic knee. When the degeneration is more severe, stem cells may be needed.\r\n\r\nAnd for adult stem cells to work best, they require growth factors. Since growth factors are found in platelets, a blood isolate called Platelet Rich Plasma (PRP) is used along with the stem cells. PRP is a concentration of a patient\'s own platelets taken from a blood draw which is concentrated in a specialized centrifuge. (2) PRP injections use each patient\'s own healing system to improve musculoskeletal problems.\r\n<h2>Stem Cell Therapy in Newport Beach, CA</h2>\r\nOrthoRegen® is a regenerative medicine clinic in the Newport Beach, CA area offering stem cell therapy utilizing mesenchymal stem cells from bone marrow and adipose. We offer the Gold Standard in Stem Cell Therapy and use PRP to augment the stem cells and Prolotherapy to comprehensively treat the entire knee. The Gold Standard offers the best opportunity for healing of the knee. These non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (3)\r\n\r\nInjuries may respond with Prolotherapy alone or may also require PRP if the injury requires more repair due to advanced damage. Our clinicians will recommend the best regenerative therapy for your particular case to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma, Stem Cells, and Prolotherapy, stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are much less invasive than surgery and, therefore, require minimal downtown. These treatments are a much safer and more conservative with many advantages over arthroscopic surgery.\r\n\r\n<strong>References</strong>\r\n<ol>\r\n 	<li>O’Connor D, Johnston RV, Brignardello-Petersen R, Poolman RW, Cyril S, Vandvik PO, Buchbinder R. Arthroscopic surgery for degenerative knee disease (osteoarthritis including degenerative meniscal tears). Cochrane Database of Systematic Reviews. 2022(3).</li>\r\n 	<li>Centeno, Christopher J., et al. \"Regeneration of meniscus cartilage in a knee treated with percutaneously implanted autologous mesenchymal stem cells.\" Medical hypotheses 71.6 (2008): 900-908.</li>\r\n 	<li>Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951</li>\r\n</ol>','Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP','','inherit','closed','closed','','5676-revision-v1','','','2023-01-28 21:34:41','2023-01-28 21:34:41','',5676,'https://www.drfields.com/?p=5684',0,'revision','',0),(5686,8,'2023-02-03 03:47:54','2023-02-03 03:47:54','<img class=\"alignright wp-image-5687\" title=\"Alternatives for the &quot;Red Knee&quot; Non-Surgical Candidate Population\" src=\"https://www.drfields.com/wp-content/uploads/2023/02/red-knee-500x419.png\" alt=\"Alternatives for the &quot;Red Knee&quot; Non-Surgical Candidate Population\" width=\"300\" height=\"251\" />\r\n<h2>\"Red Knees\" and Not a Surgical Candidate?</h2>\r\nHas your physician said you\'re not a knee surgical candidate? If so, now what can you do? And what happens to those referred to as \"red knees\" or patients who are not candidates for surgery? Fortunately, there are alternatives for the red knee, non-surgical candidate.\r\n<h2>Background on the \"Red Knees\" Categorization</h2>\r\nThe high prevalence of joint injury and the healing ability of joint tissue poses a significant challenge for the orthopedic medical community. Even when the patient is young and healthy, injury puts the patient on the road to degenerative arthritis. But in older patients with ligament instability, arthritis, or systemic disease, the challenge is much more significant, and the options for joint repair are significantly limited. This population of patients is often categorized as \"red knees.\"\r\n<h2>Green Knees</h2>\r\nThe knee injuries of young and healthy patients planning for surgery may be referred to as \"green knees\" due to the age and health of the patient. Patients with \"green knees\" are commonly included in clinical trials because they have the highest probability of success. But even in these patients, the standard surgical options and arthroscopic repair fall short.\r\n<h2>Red Knees</h2>\r\nThose with \"red knees\" are patients with cartilage pathologies that are more severe, and those who have co-morbidities that exclude them from the more common surgical procedures. Often, these \"red knee\" patients are only given palliative treatments such as cortisone, NSAIDs, and hyaluronic acid injections. These treatments are not reparative but only provide possible relief for a few months. These \"red knee\" patients are often neglected and are generally only given the recommendation for an eventual joint replacement.\r\n<h2>A Non-Surgical Alternative</h2>\r\nRegenerative Orthopedics provides a non-surgical answer for both the green and red knee populations. Dextrose Prolotherapy injections may be sufficient for younger patients to repair a knee injury. PRP may also be recommended for certain knee injuries, like meniscus tears. And then, when injuries or degeneration are more severe, Stem Cells may be recommended. All of these procedures are non-surgical, in-office procedures.\r\n<h2>What Are the Criteria for Exclusion from Clinical Trials?</h2>\r\nAge is the main reason patients are categorized as \"red knees, \" excluding them from clinical trials. But regarding Regenerative Orthopedics, age does not prohibit the patient from receiving or benefiting from treatments. Many of our patients are older and they have had successful reparation of their knees and/or other joints. Another common exclusion due to \"red knees\" is the presence of arthritis. But \"red knee\" patients with arthritis can still benefit from these regenerative therapies.\r\n<h2>Why Does Joint Injury Lead to Arthritis?</h2>\r\nLigament instability is another criterion for categorizing a \"red knee\" patient. Fortunately, Regenerative Orthopedics is the treatment of choice to repair ligament instability. Once an injury occurs, early treatment with regenerative therapies would be beneficial before the joint becomes arthritic.\r\n\r\nIn previous articles, we discussed the joint instability process that occurs once the joint tissue structures, such as the ligaments and tendons, are injured. Basically, these structures get weaker and \"lax\" once injured. The ligament and tendon laxity allows for abnormal movement in the joint. It\'s similar to a cabinet hinge that has some screws loose. When the screws and hinge are loose, the cabinet becomes wobbly. When a joint becomes \"wobbly,\" the joint moves abnormally. With abnormal joint motion, the joint structures begin to degenerate.\r\n\r\nRegenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells, stabilize, strengthen, and repair the joint. These are the best treatments for joint instability, as they repair the injured and lax ligaments and tendons. Plus, they are regenerative in nature and allow for joint repair even in cases of arthritis.\r\n\r\nRegenerative Orthopedics offers hope for the \"red knee\" population and an alternative to knee replacement.\r\n\r\nDon\'t hesitate to call us at 310-453-1234 and find out if you are a candidate.','Alternatives for the \"Red Knee\" Non-Surgical Candidate Population','','publish','closed','open','','red-knees-non-surgical-candidate-population','','','2023-02-24 21:35:45','2023-02-24 21:35:45','',0,'https://www.drfields.com/?p=5686',0,'post','',0),(5687,8,'2023-02-04 03:53:24','2023-02-04 03:53:24','Red Knee','Red Knee','Red Knee','inherit','closed','closed','','red-knee','','','2023-02-04 03:53:26','2023-02-04 03:53:26','',5686,'https://www.drfields.com/wp-content/uploads/2023/02/red-knee.png',0,'attachment','image/png',0),(5688,8,'2023-02-04 03:57:39','2023-02-04 03:57:39','<img class=\"alignright wp-image-5687\" title=\"Alternatives for the &quot;Red Knee&quot; Non-Surgical Candidate Population\" src=\"https://www.drfields.com/wp-content/uploads/2023/02/red-knee-500x419.png\" alt=\"Alternatives for the &quot;Red Knee&quot; Non-Surgical Candidate Population\" width=\"300\" height=\"251\" />\r\n\r\nHas your physician told you that you are not a surgical candidate for your knee pain? If so, now what? And what happens to those referred to as \"red knees\" or patients who are not candidates for surgery? Fortunately, there are alternative for the red knee, non-surgical candidate.\r\n<h2>Background</h2>\r\nThe high prevalence of joint injury and the healing ability of joint tissue pose a significant challenge for the orthopedic medical community. Even in cases when the patient is young and healthy, injury puts the patient on the road to degenerative arthritis. But in patients who are older, have ligament instability, arthritis, or systemic disease, the challenge is much greater and the options for joint repair are significantly limited.\r\n<h2>Green Knees</h2>\r\nThe knee injuries of young and healthy patients planning for surgery may be referred to as \"green knees\" due to the age and health of the patient. Patients with \"green knees\" are commonly included in clinical trials because they have the highest probability of success. But even in these patients, the common surgical options and arthroscopic repair fall short.\r\n<h2>Red Knees</h2>\r\nThose with \"red knees\" are patients with cartilage pathologies that are more severe and those who have co-morbidities that exclude them the more common surgical procedures. Oftentimes, these \"red knee\" patients are only given palliative treatments such as cortisone, NSAIDs, and hyaluronic acid injections. These treatments are not reparative, but only provide possible relief for a few months. These \"red knee\" patients are often neglected, and are generally only given the recommendation for an eventual joint replacement.\r\n<h2>A Non-Surgical Alternative</h2>\r\nRegenerative Orthopedics provides a non-surgical answer for both the green knee and the red knee population. In younger patients, Dextrose Prolotherapy injections may be sufficient to repair the knee injury. In certain knee injuries, like meniscus tears, PRP may be recommended as well. And then, when injuries or degeneration are more severe, Stem Cells may be recommended. All of these procedures are non-surgical, in-office procedures.\r\n<h2>What Are the Criteria for Exclusion from Clinical Trials?</h2>\r\nAge is the main reason patients are categorized as \"red knees\" which excludes them from clinical trials. But when it comes to Regenerative Orthopedics, age does not prohibit the patient from receiving or benefiting from treatments. Many of our patients are older and they have had successful reparation of their knees and/or other joints. Another common exclusion due to \"red knees\" is the presence of arthritis. But \"red knee\" patients due to existing arthritis can still benefit from these regenerative therapies.\r\n<h2>Why Does Joint Injury Lead to Arthritis?</h2>\r\nLigament instability itself is another criteria to categorize a \"red knee\" patient. Fortunately, Regenerative Orthopedics are the treatment of choice to repair ligament instability. Once an injury occurs, early treatment with regenerative therapies would be beneficial before the joint becomes arthritic.\r\n\r\nIn previous articles, we have discussed the process of joint instability that occurs once the joint tissue structures, such as the ligaments and tendons, are injured. Basically, these structures get weaker and \"lax\" once injured. The ligament and tendon laxity allows for abnormal movement in the joint. It\'s similar to a cabinet hinge that has some screws loose. When the screws and hinge are loose, the cabinet becomes wobbly. When a joint becomes \"wobbly\", the joint moves abnormally. With the abnormal joint motion, the joint structures begin to degenerate.\r\n\r\nRegenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells, stabilize, strengthen, and repair the joint. These are the best treatments for joint instability, as they are directed at repairing the injured and lax ligaments and tendons. Plus, they are regenerative in nature and allow for repair of the joint even in cases of arthritis.\r\n\r\nRegenerative Orthopedics offers hope for the \"red knee\" population and an alternative to knee replacement.\r\n\r\nDon\'t hesitate to call us at 310-453-1234 and find out if you are a candidate.','Alternatives for the \"Red Knee\" Non-Surgical Candidate Population','','inherit','closed','closed','','5686-revision-v1','','','2023-02-04 03:57:39','2023-02-04 03:57:39','',5686,'https://www.drfields.com/?p=5688',0,'revision','',0),(5689,8,'2023-02-04 03:58:40','2023-02-04 03:58:40','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/alternatives-for-the-red-knee-non-surgical-candidate-population/\">Alternatives for the \"Red Knee\" Non-Surgical Candidate Population</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-in-newport-beach-ca-area-regenerate-knee-cartilage-with-bone-marrow-concentrate-and-prp/\">Stem Cell Therapy in Newport Beach, CA Area</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/regenerative-orthopedics/\">Regenerative Orthopedics: Growing in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/prolotherapy-the-answer-for-joint-repair/\">Prolotherapy – The Answer for Joint Repair</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/new-studies-reveal-cortisone-injections-make-knee-arthritis-worse/\">New Studies Reveal Cortisone Injections Make Knee Arthritis Worse</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/stem-cell-injections-in-los-angeles-ca/\">Stem Cell Injections in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-shoulder-repair-in-los-angeles-ca/\">Non-Surgical Shoulder Repair in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/magazine-column/townsend-letter-avoiding-surgery-with-stem-cell-prp-prolotherapy/\" rel=\"noopener\">Townsend Letter: Avoiding Surgery With Stem Cell/PRP/Prolotherapy</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/\" rel=\"noopener\">Avoid Knee Surgery in Middle Age</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-02-04 03:58:40','2023-02-04 03:58:40','',2109,'https://www.drfields.com/?p=5689',0,'revision','',0),(5691,9,'2023-02-24 21:34:00','2023-02-24 21:34:00','<img class=\"alignright wp-image-5687\" title=\"Alternatives for the &quot;Red Knee&quot; Non-Surgical Candidate Population\" src=\"https://www.drfields.com/wp-content/uploads/2023/02/red-knee-500x419.png\" alt=\"Alternatives for the &quot;Red Knee&quot; Non-Surgical Candidate Population\" width=\"300\" height=\"251\" />\n<h2>\"Red Knees\" and Not a Surgical Candidate?</h2>\nHas your physician said you\'re not a knee surgical candidate? If so, now what can you do? And what happens to those referred to as \"red knees\" or patients who are not candidates for surgery? Fortunately, there are alternatives for the red knee, non-surgical candidate.\n<h2>Background on the \"Red Knees\" Categorization</h2>\nThe high prevalence of joint injury and the healing ability of joint tissue poses a significant challenge for the orthopedic medical community. Even in cases when the patient is young and healthy, injury puts the patient on the road to degenerative arthritis. But in patients who are older and have ligament instability, arthritis, or systemic disease, the challenge is much greater, and the options for joint repair are significantly limited. This population of patients are often categorized as \"red knees.\"\n<h2>Green Knees</h2>\nThe knee injuries of young and healthy patients planning for surgery may be referred to as \"green knees\" due to the age and health of the patient. Patients with \"green knees\" are commonly included in clinical trials because they have the highest probability of success. But even in these patients, the common surgical options and arthroscopic repair fall short.\n<h2>Red Knees</h2>\nThose with \"red knees\" are patients with cartilage pathologies that are more severe and those who have co-morbidities that exclude them from the more common surgical procedures. Oftentimes, these \"red knee\" patients are only given palliative treatments such as cortisone, NSAIDs, and hyaluronic acid injections. These treatments are not reparative but only provide possible relief for a few months. These \"red knee\" patients are often neglected and are generally only given the recommendation for an eventual joint replacement.\n<h2>A Non-Surgical Alternative</h2>\nRegenerative Orthopedics provides a non-surgical answer for both the green and red knee populations. Dextrose Prolotherapy injections may be sufficient for younger patients to repair a knee injury. PRP may also be recommended for certain knee injuries, like meniscus tears. And then, when injuries or degeneration are more severe, Stem Cells may be recommended. All of these procedures are non-surgical, in-office procedures.\n<h2>What Are the Criteria for Exclusion from Clinical Trials?</h2>\nAge is the main reason patients are categorized as \"red knees, \" excluding them from clinical trials. But when it comes to Regenerative Orthopedics, age does not prohibit the patient from receiving or benefiting from treatments. Many of our patients are older and they have had successful reparation of their knees and/or other joints. Another common exclusion due to \"red knees\" is the presence of arthritis. But \"red knee\" patients due to existing arthritis can still benefit from these regenerative therapies.\n<h2>Why Does Joint Injury Lead to Arthritis?</h2>\nLigament instability is another criterion for categorizing a \"red knee\" patient. Fortunately, Regenerative Orthopedics is the treatment of choice to repair ligament instability. Once an injury occurs, early treatment with regenerative therapies would be beneficial before the joint becomes arthritic.\n\nIn previous articles, we discussed the joint instability process that occurs once the joint tissue structures, such as the ligaments and tendons, are injured. Basically, these structures get weaker and \"lax\" once injured. The ligament and tendon laxity allows for abnormal movement in the joint. It\'s similar to a cabinet hinge that has some screws loose. When the screws and hinge are loose, the cabinet becomes wobbly. When a joint becomes \"wobbly,\" the joint moves abnormally. With abnormal joint motion, the joint structures begin to degenerate.\n\nRegenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells, stabilize, strengthen, and repair the joint. These are the best treatments for joint instability, as they repair the injured and lax ligaments and tendons. Plus, they are regenerative in nature and allow for joint repair even in cases of arthritis.\n\nRegenerative Orthopedics offers hope for the \"red knee\" population and an alternative to knee replacement.\n\nDon\'t hesitate to call us at 310-453-1234 and find out if you are a candidate.','Alternatives for the \"Red Knee\" Non-Surgical Candidate Population','','inherit','closed','closed','','5686-autosave-v1','','','2023-02-24 21:34:00','2023-02-24 21:34:00','',5686,'https://www.drfields.com/?p=5691',0,'revision','',0),(5692,9,'2023-02-08 21:06:03','2023-02-08 21:06:03','<img class=\"alignright wp-image-5687\" title=\"Alternatives for the &quot;Red Knee&quot; Non-Surgical Candidate Population\" src=\"https://www.drfields.com/wp-content/uploads/2023/02/red-knee-500x419.png\" alt=\"Alternatives for the &quot;Red Knee&quot; Non-Surgical Candidate Population\" width=\"300\" height=\"251\" />\r\n<h2>\"Red Knees\" and Not a Surgical Candidate?</h2>\r\nHas your physician told you that you are not a surgical candidate for knee pain? If so, now what? And what happens to those referred to as \"red knees\" or patients who are not candidates for surgery? Fortunately, there are alternatives for the red knee, non-surgical candidate.\r\n<h2>Background on the \"Red Knees\" Categorization</h2>\r\nThe high prevalence of joint injury and the healing ability of joint tissue poses a significant challenge for the orthopedic medical community. Even in cases when the patient is young and healthy, injury puts the patient on the road to degenerative arthritis. But in patients who are older and have ligament instability, arthritis, or systemic disease, the challenge is much greater, and the options for joint repair are significantly limited. This population of patients are often categorized as \"red knees.\"\r\n<h2>Green Knees</h2>\r\nThe knee injuries of young and healthy patients planning for surgery may be referred to as \"green knees\" due to the age and health of the patient. Patients with \"green knees\" are commonly included in clinical trials because they have the highest probability of success. But even in these patients, the common surgical options and arthroscopic repair fall short.\r\n<h2>Red Knees</h2>\r\nThose with \"red knees\" are patients with cartilage pathologies that are more severe and those who have co-morbidities that exclude them from the more common surgical procedures. Oftentimes, these \"red knee\" patients are only given palliative treatments such as cortisone, NSAIDs, and hyaluronic acid injections. These treatments are not reparative but only provide possible relief for a few months. These \"red knee\" patients are often neglected and are generally only given the recommendation for an eventual joint replacement.\r\n<h2>A Non-Surgical Alternative</h2>\r\nRegenerative Orthopedics provides a non-surgical answer for both the green and red knee populations. Dextrose Prolotherapy injections may be sufficient for younger patients to repair a knee injury. PRP may also be recommended for certain knee injuries, like meniscus tears. And then, when injuries or degeneration are more severe, Stem Cells may be recommended. All of these procedures are non-surgical, in-office procedures.\r\n<h2>What Are the Criteria for Exclusion from Clinical Trials?</h2>\r\nAge is the main reason patients are categorized as \"red knees, \" excluding them from clinical trials. But when it comes to Regenerative Orthopedics, age does not prohibit the patient from receiving or benefiting from treatments. Many of our patients are older and they have had successful reparation of their knees and/or other joints. Another common exclusion due to \"red knees\" is the presence of arthritis. But \"red knee\" patients due to existing arthritis can still benefit from these regenerative therapies.\r\n<h2>Why Does Joint Injury Lead to Arthritis?</h2>\r\nLigament instability is another criterion for categorizing a \"red knee\" patient. Fortunately, Regenerative Orthopedics is the treatment of choice to repair ligament instability. Once an injury occurs, early treatment with regenerative therapies would be beneficial before the joint becomes arthritic.\r\n\r\nIn previous articles, we discussed the joint instability process that occurs once the joint tissue structures, such as the ligaments and tendons, are injured. Basically, these structures get weaker and \"lax\" once injured. The ligament and tendon laxity allows for abnormal movement in the joint. It\'s similar to a cabinet hinge that has some screws loose. When the screws and hinge are loose, the cabinet becomes wobbly. When a joint becomes \"wobbly,\" the joint moves abnormally. With abnormal joint motion, the joint structures begin to degenerate.\r\n\r\nRegenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells, stabilize, strengthen, and repair the joint. These are the best treatments for joint instability, as they repair the injured and lax ligaments and tendons. Plus, they are regenerative in nature and allow for joint repair even in cases of arthritis.\r\n\r\nRegenerative Orthopedics offers hope for the \"red knee\" population and an alternative to knee replacement.\r\n\r\nDon\'t hesitate to call us at 310-453-1234 and find out if you are a candidate.','Alternatives for the \"Red Knee\" Non-Surgical Candidate Population','','inherit','closed','closed','','5686-revision-v1','','','2023-02-08 21:06:03','2023-02-08 21:06:03','',5686,'https://www.drfields.com/?p=5692',0,'revision','',0),(5694,8,'2023-02-21 03:52:07','2023-02-21 03:52:07','<img class=\"wp-image-5701 size-medium alignright\" title=\"Shoulder Degeneration. Prolotherapy\" src=\"https://www.drfields.com/wp-content/uploads/2023/02/shoulder-degeneration.-Prolotherapy-1-500x419.png\" alt=\"Shoulder Degeneration. Prolotherapy\" width=\"500\" height=\"419\" />\r\n<h2 lang=\"en-US\" align=\"JUSTIFY\">Remedies for Shoulder Repair</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">The shoulder is an incredibly mobile joint. That\'s a good thing! We need our shoulders to move as they do. However, this mobility also makes the shoulder prone to injury. If you are looking for a remedy for shoulder pain, then you know this first hand. At OrthoRegen, we offer regenerative treatments as remedies for shoulder repair.</p>\r\n\r\n<h2 lang=\"en-US\">Why Choose Regenerative Orthopedics As A Remedy for Shoulder Repair?</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Our experience has shown that a comprehensive treatment program is preferred to treat shoulder pain for optimal long-term results. This is because most shoulder injuries involve the shoulder ligaments and/or tendons. Therefore, treating all the involved ligaments and tendons results in the best repair.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">And Regenerative Orthopedics, such as Prolotherapy, PRP, or Stem Cells, are effective treatment options for injured ligaments and tendons. Simple dextrose Prolotherapy is specifically effective for weakened, lax, and unstable soft tissue, like ligaments and tendons. Prolotherapy repairs instability! And instability is often at the core of joint injuries, including shoulder injuries.</p>\r\n\r\n<h2 lang=\"en-US\">Already Tried Conservative Treatments for Shoulder Injuries?</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">If you have tried common treatments for your shoulder but are still dealing with pain or instability, it\'s time to look into Regenerative Orthopedics. Treatments like OTC or prescribed pain medication, massage, and cortisone treatments, may help temporarily, but they will not repair any damage. Also, if physical therapy has not resolved the problem, it\'s entirely possible that the underlying issue still needs to be addressed.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">As mentioned earlier, joint instability is commonly an underlying factor in shoulder injuries. Regenerative Orthopedics is an effective non-surgical option for repair.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Additionally, since the shoulder anatomy is complex and the range of motion extensive, a wider variety of possible injuries can occur that lead to shoulder instability. Comprehensive Regenerative Orthopedics is a great way to address shoulder injuries and achieve the desired repair.</p>\r\n\r\n<h2 lang=\"en-US\">Regenerative Orthopedics: Remedy of Choice for Shoulder Instability</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Generalized joint laxity (looseness) and shoulder instability are common issues with the shoulder. Joint instability is exhibited as laxity and a disruption in the regular movement of the shoulder joint. This laxity then predisposes the shoulder to even more injury.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">A high prevalence of generalized joint laxity has been identified in patients with multidirectional shoulder instability. Multidirectional instability is defined as symptomatic instability in two or more directions. Initial treatment should be conservative, and treatment should be directed at the management of the instability.</p>\r\n\r\n<h2 lang=\"en-US\">Prolotherapy for Shoulder Instability</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Prolotherapy injections to the ligaments and tendons will stabilize the joint, increasing joint strength and aiding in pain-free motion. Once the pain has been reduced, a gradual return to one’s previous activity level can be expected.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">PRP and/or Stem Cells may be recommended in cases of more severe injury.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Regenerative Orthopedics is a non-surgical treatment designed to help repair a painful area. It involves no cutting, suturing, sewing, or stapling.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Comprehensive treatment can strengthen the ligaments and dynamic shoulder stabilizers (rotator cuff muscles). As noted earlier, chronic pain is most commonly due to tendon and ligament weakness, and Regenerative Orthopedics is the treatment of choice.</p>\r\n\r\n<h2 lang=\"en-US\">Research on the Effectiveness of Prolotherapy As A Remedy for Shoulder Repair</h2>\r\n<p align=\"LEFT\">The Journal of Ultrasound in Medicine evaluated the eﬃcacy of prolotherapy in treating shoulder joint degeneration (acromial enthesopathy and acromioclavicular joint degeneration). It concluded that \"prolotherapy with a 15% dextrose solution is an eﬀective and safe therapeutic option.1</p>\r\n\r\n<h2 lang=\"en-US\">Reference</h2>\r\n<p align=\"JUSTIFY\">1Hsieh PC, Chiou HJ, Wang HK, Lai YC, Lin YH. Ultrasound‐Guided Prolotherapy for Acromial Enthesopathy and Acromioclavicular Joint Arthropathy: A Single‐Arm Prospective Study. Journal of Ultrasound in Medicine. 2019 Mar;38(3):605-12.</p>','Remedies For Shoulder Repair','','publish','closed','open','','remedies-for-shoulder-repair','','','2023-02-24 21:53:08','2023-02-24 21:53:08','',0,'https://www.drfields.com/?p=5694',0,'post','',0),(5695,8,'2023-02-22 03:52:49','2023-02-22 03:52:49','Shoulder Degeneration. Prolotherapy','Shoulder Degeneration. Prolotherapy','Shoulder Degeneration. Prolotherapy','inherit','closed','closed','','shoulder-degeneration-prolotherapy','','','2023-02-22 03:52:50','2023-02-22 03:52:50','',5694,'https://www.drfields.com/wp-content/uploads/2023/02/shoulder-degeneration.-Prolotherapy.png',0,'attachment','image/png',0),(5696,8,'2023-02-22 03:55:57','2023-02-22 03:55:57','<img class=\"wp-image-5695 alignright\" title=\"Shoulder Degeneration. Prolotherapy\" src=\"https://www.drfields.com/wp-content/uploads/2023/02/shoulder-degeneration.-Prolotherapy-500x419.png\" alt=\"Shoulder Degeneration. Prolotherapy\" width=\"300\" height=\"251\" />\r\n<p lang=\"en-US\" align=\"JUSTIFY\">The shoulder is an incredibly mobile joint. That\'s a good thing! We need our shoulders to move like they do. However, this mobility also makes the shoulder prone to injury. If you are looking for a remedy for shoulder pain, then you know this first hand. At OrthoRegen, we offer regenerative treatments as remedies for shoulder repair.</p>\r\n\r\n<h2 lang=\"en-US\">Why Choose Regenerative Orthopedics As A Remedy for Shoulder Repair?</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Our experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long-term results. The reason for this is that most shoulder injuries involve the shoulder ligaments and/or tendons. Therefore, treatment of all of the involved ligaments and tendons results in the best repair.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">And Regenerative Orthopedics, such as Prolotherapy, PRP, or Stem Cells, are effective treatment options for injured ligaments and tendons. In fact, simple dextrose Prolotherapy has been shown to be specifically effective for weakened, lax, and unstable ligaments and tendons. Prolotherapy repairs instability! And instability is often at the core of joint injuries, including shoulder injuries.</p>\r\n\r\n<h2 lang=\"en-US\">Already Tried Conservative Treatments for Shoulder Injuries?</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">If you have tried common treatments for your shoulder but are still dealing with pain or instability, it\'s time to look into Regenerative Orthopedics. Treatments like OTC or prescribed pain medication, massage, and cortisone treatments, may help temporarily, but they will not repair any damage. Also, if physical therapy has not resolved the problem, it\'s quite possible that the underlying issue still needs to be addressed.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">As mentioned earlier, joint instability is commonly an underlying factor in shoulder injuries. Regenerative Orthopedics is an effective non-surgical option for repair.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Additionally, since the shoulder anatomy is complex and the range of motion extensive, a wider variety of possible injuries can occur that lead to shoulder instability. Comprehensive Regenerative Orthopedics is a great way to address shoulder injuries and achieve the desired repair.</p>\r\n\r\n<h2 lang=\"en-US\">Regenerative Orthopedics: Remedy of Choice for Shoulder Instability</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Generalized joint laxity (looseness) and shoulder instability are common issues with the shoulder. Joint instability is exhibited as laxity and a disruption in the regular movement of the shoulder joint. This laxity then predisposes the shoulder to even more injury.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">A high prevalence of generalized joint laxity has been identified in patients with multidirectional instability of the shoulder. Multidirectional instability is defined as symptomatic instability in two or more directions. Initial treatment should be conservative in nature, and treatment should be directed at management of the instability.</p>\r\n\r\n<h2 lang=\"en-US\">Prolotherapy for Shoulder Instability</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Prolotherapy injections to the ligaments and tendons will stabilize the joint while increasing joint strength and aiding in pain-free motion. Once the pain has been reduced, a gradual return to one’s previous level of activity can be expected.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">In cases of more severe injury, PRP and/or Stem Cells may be recommended.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Regenerative Orthopedics is a non-surgical treatment that is designed to help repair the painful area. It involves no cutting, suturing, sewing, or stapling.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Comprehensive treatment can strengthen the ligaments and dynamic shoulder stabilizers (rotator cuff muscles). As noted earlier, chronic pain is most commonly due to tendon and ligament weakness, and Regenerative Orthopedics is the treatment of choice.</p>\r\n\r\n<h2 lang=\"en-US\">Research on Effectiveness of Prolotherapy As A Remedy for Shoulder Repair</h2>\r\n<p align=\"LEFT\">The Journal of Ultrasound in Medicine evaluated the eﬃcacy of ultrasound-guided prolotherapy in the treatment of shoulder joint degeneration (acromial enthesopathy and acromioclavicular joint degeneration) and concluded that \"ultrasound-guided prolotherapy with a 15% dextrose solution is an eﬀective and safe therapeutic option.1</p>\r\n\r\n<h2 lang=\"en-US\">Reference</h2>\r\n<p align=\"JUSTIFY\">1Hsieh PC, Chiou HJ, Wang HK, Lai YC, Lin YH. Ultrasound‐Guided Prolotherapy for Acromial Enthesopathy and Acromioclavicular Joint Arthropathy: A Single‐Arm Prospective Study. Journal of Ultrasound in Medicine. 2019 Mar;38(3):605-12.</p>','Remedies For Shoulder Repair','','inherit','closed','closed','','5694-revision-v1','','','2023-02-22 03:55:57','2023-02-22 03:55:57','',5694,'https://www.drfields.com/?p=5696',0,'revision','',0),(5697,8,'2023-02-22 03:56:53','2023-02-22 03:56:53','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/remedies-for-shoulder-repair/\">Remedies For Shoulder Repair</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/alternatives-for-the-red-knee-non-surgical-candidate-population/\">Alternatives for the \"Red Knee\" Non-Surgical Candidate Population</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-in-newport-beach-ca-area-regenerate-knee-cartilage-with-bone-marrow-concentrate-and-prp/\">Stem Cell Therapy in Newport Beach, CA Area</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/regenerative-orthopedics/\">Regenerative Orthopedics: Growing in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/prolotherapy-the-answer-for-joint-repair/\">Prolotherapy – The Answer for Joint Repair</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/new-studies-reveal-cortisone-injections-make-knee-arthritis-worse/\">New Studies Reveal Cortisone Injections Make Knee Arthritis Worse</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/stem-cell-injections-in-los-angeles-ca/\">Stem Cell Injections in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-shoulder-repair-in-los-angeles-ca/\">Non-Surgical Shoulder Repair in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/magazine-column/townsend-letter-avoiding-surgery-with-stem-cell-prp-prolotherapy/\" rel=\"noopener\">Townsend Letter: Avoiding Surgery With Stem Cell/PRP/Prolotherapy</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-02-22 03:56:53','2023-02-22 03:56:53','',2109,'https://www.drfields.com/?p=5697',0,'revision','',0),(5699,9,'2023-02-24 21:35:45','2023-02-24 21:35:45','<img class=\"alignright wp-image-5687\" title=\"Alternatives for the &quot;Red Knee&quot; Non-Surgical Candidate Population\" src=\"https://www.drfields.com/wp-content/uploads/2023/02/red-knee-500x419.png\" alt=\"Alternatives for the &quot;Red Knee&quot; Non-Surgical Candidate Population\" width=\"300\" height=\"251\" />\r\n<h2>\"Red Knees\" and Not a Surgical Candidate?</h2>\r\nHas your physician said you\'re not a knee surgical candidate? If so, now what can you do? And what happens to those referred to as \"red knees\" or patients who are not candidates for surgery? Fortunately, there are alternatives for the red knee, non-surgical candidate.\r\n<h2>Background on the \"Red Knees\" Categorization</h2>\r\nThe high prevalence of joint injury and the healing ability of joint tissue poses a significant challenge for the orthopedic medical community. Even when the patient is young and healthy, injury puts the patient on the road to degenerative arthritis. But in older patients with ligament instability, arthritis, or systemic disease, the challenge is much more significant, and the options for joint repair are significantly limited. This population of patients is often categorized as \"red knees.\"\r\n<h2>Green Knees</h2>\r\nThe knee injuries of young and healthy patients planning for surgery may be referred to as \"green knees\" due to the age and health of the patient. Patients with \"green knees\" are commonly included in clinical trials because they have the highest probability of success. But even in these patients, the standard surgical options and arthroscopic repair fall short.\r\n<h2>Red Knees</h2>\r\nThose with \"red knees\" are patients with cartilage pathologies that are more severe, and those who have co-morbidities that exclude them from the more common surgical procedures. Often, these \"red knee\" patients are only given palliative treatments such as cortisone, NSAIDs, and hyaluronic acid injections. These treatments are not reparative but only provide possible relief for a few months. These \"red knee\" patients are often neglected and are generally only given the recommendation for an eventual joint replacement.\r\n<h2>A Non-Surgical Alternative</h2>\r\nRegenerative Orthopedics provides a non-surgical answer for both the green and red knee populations. Dextrose Prolotherapy injections may be sufficient for younger patients to repair a knee injury. PRP may also be recommended for certain knee injuries, like meniscus tears. And then, when injuries or degeneration are more severe, Stem Cells may be recommended. All of these procedures are non-surgical, in-office procedures.\r\n<h2>What Are the Criteria for Exclusion from Clinical Trials?</h2>\r\nAge is the main reason patients are categorized as \"red knees, \" excluding them from clinical trials. But regarding Regenerative Orthopedics, age does not prohibit the patient from receiving or benefiting from treatments. Many of our patients are older and they have had successful reparation of their knees and/or other joints. Another common exclusion due to \"red knees\" is the presence of arthritis. But \"red knee\" patients with arthritis can still benefit from these regenerative therapies.\r\n<h2>Why Does Joint Injury Lead to Arthritis?</h2>\r\nLigament instability is another criterion for categorizing a \"red knee\" patient. Fortunately, Regenerative Orthopedics is the treatment of choice to repair ligament instability. Once an injury occurs, early treatment with regenerative therapies would be beneficial before the joint becomes arthritic.\r\n\r\nIn previous articles, we discussed the joint instability process that occurs once the joint tissue structures, such as the ligaments and tendons, are injured. Basically, these structures get weaker and \"lax\" once injured. The ligament and tendon laxity allows for abnormal movement in the joint. It\'s similar to a cabinet hinge that has some screws loose. When the screws and hinge are loose, the cabinet becomes wobbly. When a joint becomes \"wobbly,\" the joint moves abnormally. With abnormal joint motion, the joint structures begin to degenerate.\r\n\r\nRegenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells, stabilize, strengthen, and repair the joint. These are the best treatments for joint instability, as they repair the injured and lax ligaments and tendons. Plus, they are regenerative in nature and allow for joint repair even in cases of arthritis.\r\n\r\nRegenerative Orthopedics offers hope for the \"red knee\" population and an alternative to knee replacement.\r\n\r\nDon\'t hesitate to call us at 310-453-1234 and find out if you are a candidate.','Alternatives for the \"Red Knee\" Non-Surgical Candidate Population','','inherit','closed','closed','','5686-revision-v1','','','2023-02-24 21:35:45','2023-02-24 21:35:45','',5686,'https://www.drfields.com/?p=5699',0,'revision','',0),(5700,9,'2023-02-24 21:52:54','2023-02-24 21:52:54','<img class=\"wp-image-5701 size-medium alignright\" title=\"Shoulder Degeneration. Prolotherapy\" src=\"https://www.drfields.com/wp-content/uploads/2023/02/shoulder-degeneration.-Prolotherapy-1-500x419.png\" alt=\"Shoulder Degeneration. Prolotherapy\" width=\"500\" height=\"419\" />\n<h2 lang=\"en-US\" align=\"JUSTIFY\">Remedies for Shoulder Repair</h2>\n<p lang=\"en-US\" align=\"JUSTIFY\">The shoulder is an incredibly mobile joint. That\'s a good thing! We need our shoulders to move as they do. However, this mobility also makes the shoulder prone to injury. If you are looking for a remedy for shoulder pain, then you know this first hand. At OrthoRegen, we offer regenerative treatments as remedies for shoulder repair.</p>\n\n<h2 lang=\"en-US\">Why Choose Regenerative Orthopedics As A Remedy for Shoulder Repair?</h2>\n<p lang=\"en-US\" align=\"JUSTIFY\">Our experience has shown that a comprehensive treatment program is preferred to treat shoulder pain for optimal long-term results. This is because most shoulder injuries involve the shoulder ligaments and/or tendons. Therefore, treating all the involved ligaments and tendons results in the best repair.</p>\n<p lang=\"en-US\" align=\"JUSTIFY\">And Regenerative Orthopedics, such as Prolotherapy, PRP, or Stem Cells, are effective treatment options for injured ligaments and tendons. Simple dextrose Prolotherapy is specifically effective for weakened, lax, and unstable soft tissue, like ligaments and tendons. Prolotherapy repairs instability! And instability is often at the core of joint injuries, including shoulder injuries.</p>\n\n<h2 lang=\"en-US\">Already Tried Conservative Treatments for Shoulder Injuries?</h2>\n<p lang=\"en-US\" align=\"JUSTIFY\">If you have tried common treatments for your shoulder but are still dealing with pain or instability, it\'s time to look into Regenerative Orthopedics. Treatments like OTC or prescribed pain medication, massage, and cortisone treatments, may help temporarily, but they will not repair any damage. Also, if physical therapy has not resolved the problem, it\'s entirely possible that the underlying issue still needs to be addressed.</p>\n<p lang=\"en-US\" align=\"JUSTIFY\">As mentioned earlier, joint instability is commonly an underlying factor in shoulder injuries. Regenerative Orthopedics is an effective non-surgical option for repair.</p>\n<p lang=\"en-US\" align=\"JUSTIFY\">Additionally, since the shoulder anatomy is complex and the range of motion extensive, a wider variety of possible injuries can occur that lead to shoulder instability. Comprehensive Regenerative Orthopedics is a great way to address shoulder injuries and achieve the desired repair.</p>\n\n<h2 lang=\"en-US\">Regenerative Orthopedics: Remedy of Choice for Shoulder Instability</h2>\n<p lang=\"en-US\" align=\"JUSTIFY\">Generalized joint laxity (looseness) and shoulder instability are common issues with the shoulder. Joint instability is exhibited as laxity and a disruption in the regular movement of the shoulder joint. This laxity then predisposes the shoulder to even more injury.</p>\n<p lang=\"en-US\" align=\"JUSTIFY\">A high prevalence of generalized joint laxity has been identified in patients with multidirectional shoulder instability. Multidirectional instability is defined as symptomatic instability in two or more directions. Initial treatment should be conservative, and treatment should be directed at the management of the instability.</p>\n\n<h2 lang=\"en-US\">Prolotherapy for Shoulder Instability</h2>\n<p lang=\"en-US\" align=\"JUSTIFY\">Prolotherapy injections to the ligaments and tendons will stabilize the joint, increasing joint strength and aiding in pain-free motion. Once the pain has been reduced, a gradual return to one’s previous activity level can be expected.</p>\n<p lang=\"en-US\" align=\"JUSTIFY\">PRP and/or Stem Cells may be recommended in cases of more severe injury.</p>\n<p lang=\"en-US\" align=\"JUSTIFY\">Regenerative Orthopedics is a non-surgical treatment designed to help repair a painful area. It involves no cutting, suturing, sewing, or stapling.</p>\n<p lang=\"en-US\" align=\"JUSTIFY\">Comprehensive treatment can strengthen the ligaments and dynamic shoulder stabilizers (rotator cuff muscles). As noted earlier, chronic pain is most commonly due to tendon and ligament weakness, and Regenerative Orthopedics is the treatment of choice.</p>\n\n<h2 lang=\"en-US\">Research on the Effectiveness of Prolotherapy As A Remedy for Shoulder Repair</h2>\n<p align=\"LEFT\">The Journal of Ultrasound in Medicine evaluated the eﬃcacy of prolotherapy in treating shoulder joint degeneration (acromial enthesopathy and acromioclavicular joint degeneration). It concluded that \"prolotherapy with a 15% dextrose solution is an eﬀective and safe therapeutic option.1</p>\n\n<h2 lang=\"en-US\">Reference</h2>\n<p align=\"JUSTIFY\">1Hsieh PC, Chiou HJ, Wang HK, Lai YC, Lin YH. Ultrasound‐Guided Prolotherapy for Acromial Enthesopathy and Acromioclavicular Joint Arthropathy: A Single‐Arm Prospective Study. Journal of Ultrasound in Medicine. 2019 Mar;38(3):605-12.</p>','Remedies For Shoulder Repair','','inherit','closed','closed','','5694-autosave-v1','','','2023-02-24 21:52:54','2023-02-24 21:52:54','',5694,'https://www.drfields.com/?p=5700',0,'revision','',0),(5701,9,'2023-02-24 21:44:43','2023-02-24 21:44:43','Shoulder Degeneration. Prolotherapy','Shoulder Degeneration. Prolotherapy','Shoulder Degeneration. Prolotherapy','inherit','closed','closed','','shoulder-degeneration-prolotherapy-2','','','2023-02-24 21:44:43','2023-02-24 21:44:43','',5694,'https://www.drfields.com/wp-content/uploads/2023/02/shoulder-degeneration.-Prolotherapy-1.png',0,'attachment','image/png',0),(5702,9,'2023-02-24 21:46:12','2023-02-24 21:46:12','<img class=\"wp-image-5701 size-medium\" title=\"Shoulder Degeneration. Prolotherapy\" src=\"https://www.drfields.com/wp-content/uploads/2023/02/shoulder-degeneration.-Prolotherapy-1-500x419.png\" alt=\"Shoulder Degeneration. Prolotherapy\" width=\"500\" height=\"419\" />\r\n<h2 lang=\"en-US\" align=\"JUSTIFY\">Remedies for Shoulder Repair</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">The shoulder is an incredibly mobile joint. That\'s a good thing! We need our shoulders to move like they do. However, this mobility also makes the shoulder prone to injury. If you are looking for a remedy for shoulder pain, then you know this first hand. At OrthoRegen, we offer regenerative treatments as remedies for shoulder repair.</p>\r\n\r\n<h2 lang=\"en-US\">Why Choose Regenerative Orthopedics As A Remedy for Shoulder Repair?</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Our experience has shown that a comprehensive treatment program is a preferred way to treat shoulder pain for optimal long-term results. The reason for this is that most shoulder injuries involve the shoulder ligaments and/or tendons. Therefore, treatment of all of the involved ligaments and tendons results in the best repair.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">And Regenerative Orthopedics, such as Prolotherapy, PRP, or Stem Cells, are effective treatment options for injured ligaments and tendons. In fact, simple dextrose Prolotherapy has been shown to be specifically effective for weakened, lax, and unstable soft tissue, like ligaments and tendons. Prolotherapy repairs instability! And instability is often at the core of joint injuries, including shoulder injuries.</p>\r\n\r\n<h2 lang=\"en-US\">Already Tried Conservative Treatments for Shoulder Injuries?</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">If you have tried common treatments for your shoulder but are still dealing with pain or instability, it\'s time to look into Regenerative Orthopedics. Treatments like OTC or prescribed pain medication, massage, and cortisone treatments, may help temporarily, but they will not repair any damage. Also, if physical therapy has not resolved the problem, it\'s quite possible that the underlying issue still needs to be addressed.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">As mentioned earlier, joint instability is commonly an underlying factor in shoulder injuries. Regenerative Orthopedics is an effective non-surgical option for repair.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Additionally, since the shoulder anatomy is complex and the range of motion extensive, a wider variety of possible injuries can occur that lead to shoulder instability. Comprehensive Regenerative Orthopedics is a great way to address shoulder injuries and achieve the desired repair.</p>\r\n\r\n<h2 lang=\"en-US\">Regenerative Orthopedics: Remedy of Choice for Shoulder Instability</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Generalized joint laxity (looseness) and shoulder instability are common issues with the shoulder. Joint instability is exhibited as laxity and a disruption in the regular movement of the shoulder joint. This laxity then predisposes the shoulder to even more injury.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">A high prevalence of generalized joint laxity has been identified in patients with multidirectional instability of the shoulder. Multidirectional instability is defined as symptomatic instability in two or more directions. Initial treatment should be conservative in nature, and treatment should be directed at management of the instability.</p>\r\n\r\n<h2 lang=\"en-US\">Prolotherapy for Shoulder Instability</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Prolotherapy injections to the ligaments and tendons will stabilize the joint while increasing joint strength and aiding in pain-free motion. Once the pain has been reduced, a gradual return to one’s previous level of activity can be expected.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">In cases of more severe injury, PRP and/or Stem Cells may be recommended.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Regenerative Orthopedics is a non-surgical treatment that is designed to help repair the painful area. It involves no cutting, suturing, sewing, or stapling.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Comprehensive treatment can strengthen the ligaments and dynamic shoulder stabilizers (rotator cuff muscles). As noted earlier, chronic pain is most commonly due to tendon and ligament weakness, and Regenerative Orthopedics is the treatment of choice.</p>\r\n\r\n<h2 lang=\"en-US\">Research on Effectiveness of Prolotherapy As A Remedy for Shoulder Repair</h2>\r\n<p align=\"LEFT\">The Journal of Ultrasound in Medicine evaluated the eﬃcacy of prolotherapy in the treatment of shoulder joint degeneration (acromial enthesopathy and acromioclavicular joint degeneration) and concluded that \"prolotherapy with a 15% dextrose solution is an eﬀective and safe therapeutic option.1</p>\r\n\r\n<h2 lang=\"en-US\">Reference</h2>\r\n<p align=\"JUSTIFY\">1Hsieh PC, Chiou HJ, Wang HK, Lai YC, Lin YH. Ultrasound‐Guided Prolotherapy for Acromial Enthesopathy and Acromioclavicular Joint Arthropathy: A Single‐Arm Prospective Study. Journal of Ultrasound in Medicine. 2019 Mar;38(3):605-12.</p>','Remedies For Shoulder Repair','','inherit','closed','closed','','5694-revision-v1','','','2023-02-24 21:46:12','2023-02-24 21:46:12','',5694,'https://www.drfields.com/?p=5702',0,'revision','',0),(5703,9,'2023-02-24 21:53:08','2023-02-24 21:53:08','<img class=\"wp-image-5701 size-medium alignright\" title=\"Shoulder Degeneration. Prolotherapy\" src=\"https://www.drfields.com/wp-content/uploads/2023/02/shoulder-degeneration.-Prolotherapy-1-500x419.png\" alt=\"Shoulder Degeneration. Prolotherapy\" width=\"500\" height=\"419\" />\r\n<h2 lang=\"en-US\" align=\"JUSTIFY\">Remedies for Shoulder Repair</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">The shoulder is an incredibly mobile joint. That\'s a good thing! We need our shoulders to move as they do. However, this mobility also makes the shoulder prone to injury. If you are looking for a remedy for shoulder pain, then you know this first hand. At OrthoRegen, we offer regenerative treatments as remedies for shoulder repair.</p>\r\n\r\n<h2 lang=\"en-US\">Why Choose Regenerative Orthopedics As A Remedy for Shoulder Repair?</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Our experience has shown that a comprehensive treatment program is preferred to treat shoulder pain for optimal long-term results. This is because most shoulder injuries involve the shoulder ligaments and/or tendons. Therefore, treating all the involved ligaments and tendons results in the best repair.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">And Regenerative Orthopedics, such as Prolotherapy, PRP, or Stem Cells, are effective treatment options for injured ligaments and tendons. Simple dextrose Prolotherapy is specifically effective for weakened, lax, and unstable soft tissue, like ligaments and tendons. Prolotherapy repairs instability! And instability is often at the core of joint injuries, including shoulder injuries.</p>\r\n\r\n<h2 lang=\"en-US\">Already Tried Conservative Treatments for Shoulder Injuries?</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">If you have tried common treatments for your shoulder but are still dealing with pain or instability, it\'s time to look into Regenerative Orthopedics. Treatments like OTC or prescribed pain medication, massage, and cortisone treatments, may help temporarily, but they will not repair any damage. Also, if physical therapy has not resolved the problem, it\'s entirely possible that the underlying issue still needs to be addressed.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">As mentioned earlier, joint instability is commonly an underlying factor in shoulder injuries. Regenerative Orthopedics is an effective non-surgical option for repair.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Additionally, since the shoulder anatomy is complex and the range of motion extensive, a wider variety of possible injuries can occur that lead to shoulder instability. Comprehensive Regenerative Orthopedics is a great way to address shoulder injuries and achieve the desired repair.</p>\r\n\r\n<h2 lang=\"en-US\">Regenerative Orthopedics: Remedy of Choice for Shoulder Instability</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Generalized joint laxity (looseness) and shoulder instability are common issues with the shoulder. Joint instability is exhibited as laxity and a disruption in the regular movement of the shoulder joint. This laxity then predisposes the shoulder to even more injury.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">A high prevalence of generalized joint laxity has been identified in patients with multidirectional shoulder instability. Multidirectional instability is defined as symptomatic instability in two or more directions. Initial treatment should be conservative, and treatment should be directed at the management of the instability.</p>\r\n\r\n<h2 lang=\"en-US\">Prolotherapy for Shoulder Instability</h2>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Prolotherapy injections to the ligaments and tendons will stabilize the joint, increasing joint strength and aiding in pain-free motion. Once the pain has been reduced, a gradual return to one’s previous activity level can be expected.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">PRP and/or Stem Cells may be recommended in cases of more severe injury.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Regenerative Orthopedics is a non-surgical treatment designed to help repair a painful area. It involves no cutting, suturing, sewing, or stapling.</p>\r\n<p lang=\"en-US\" align=\"JUSTIFY\">Comprehensive treatment can strengthen the ligaments and dynamic shoulder stabilizers (rotator cuff muscles). As noted earlier, chronic pain is most commonly due to tendon and ligament weakness, and Regenerative Orthopedics is the treatment of choice.</p>\r\n\r\n<h2 lang=\"en-US\">Research on the Effectiveness of Prolotherapy As A Remedy for Shoulder Repair</h2>\r\n<p align=\"LEFT\">The Journal of Ultrasound in Medicine evaluated the eﬃcacy of prolotherapy in treating shoulder joint degeneration (acromial enthesopathy and acromioclavicular joint degeneration). It concluded that \"prolotherapy with a 15% dextrose solution is an eﬀective and safe therapeutic option.1</p>\r\n\r\n<h2 lang=\"en-US\">Reference</h2>\r\n<p align=\"JUSTIFY\">1Hsieh PC, Chiou HJ, Wang HK, Lai YC, Lin YH. Ultrasound‐Guided Prolotherapy for Acromial Enthesopathy and Acromioclavicular Joint Arthropathy: A Single‐Arm Prospective Study. Journal of Ultrasound in Medicine. 2019 Mar;38(3):605-12.</p>','Remedies For Shoulder Repair','','inherit','closed','closed','','5694-revision-v1','','','2023-02-24 21:53:08','2023-02-24 21:53:08','',5694,'https://www.drfields.com/?p=5703',0,'revision','',0),(5704,8,'2023-02-26 06:00:14','2023-02-26 06:00:14','<img class=\"wp-image-5705 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2023/02/Back-Pain-Treatment-500x419.png\" alt=\"Back Pain Treatment\" width=\"300\" height=\"251\" />\r\n<h2>Back Pain Treatment</h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Looking for a back pain treatment to finally give you the relief you are seeking? It\'s not unusual for back pain sufferers to spend years trying to find relief. Relief may be experienced after massage, manipulations, or heating pads. Or over-the-counter or prescription pain medications may provide some help. But when back pain continues even after trying these and other conservative treatments, it is most likely because the actual problem is not being addressed. </span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">What Is the Underlying Problem That Needs to Be Addressed?</span></h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">If the underlying problem is more than muscular pain, the back pain sufferer may be dealing with instability due to ligament injury. But what does instability have to do with anything? When the injury occurs to the back, very often the ligaments that hold the spine in place get injured as well. Once injury to the ligaments takes place, they may become weaker. Weak ligaments will allow for more movement of the vertebrae. Then, when a person bends and twists, instability from weak ligaments makes the back more prone to further injury.</span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Weakness and instability of the back due to ligament weakness can become a chronic problem. The result? Back pain that comes and goes. Or back pain that just won\'t go away. </span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Back pain is a major challenge for clinicians because they are accustomed to managing the pain with medication, but the benefits of pharmacological management are just not there, and their use is not justified. The </span><span lang=\"en-US\">Journal of Orthopaedic Surgery and Research</span><span lang=\"en-US\"> says, \"The benefits are just not there to justify the routine prolonged use of any given drug in nonspecific chronic low back pain: this is a major challenge, and it is often hard to accept for clinicians and patients . . . </span>”<span lang=\"en-US\">(1)</span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">And according to the </span><span lang=\"en-US\">Journal of Osteopathic Medicine</span><span lang=\"en-US\">, long-term opioid use for back pain only worsens patients. (2)</span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">What About Manipulation as a Back Pain Treatment?</span></h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Chiropractic manipulation is a great treatment tool for back pain and is often very effective. But when pain persists and does not resolve after these treatments, ligament injury should be investigated because many back conditions have underlying ligament involvement or ligament instability.</span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Explaining Spinal Instability</span></h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Spinal instability is a problem when the stabilizing structures of the spine, such as the ligaments, are no longer able to hold the adjacent bones together. Abnormal motion of the spine is transpiring as a result. Oftentimes, problems with instability will arise after a patient overdoes on an activity or exercise. Again, the most common cause of unresolved back pain is spinal instability.</span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Regenerative Orthopedics Is An Effective Back Pain Treatment</span></h2>\r\n<p align=\"LEFT\"><span lang=\"en-US\">What\'s the best treatment for spinal instability? Regenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells. In fact, simple Dextrose Prolotherapy is a great tool to treat instability because it strengthens the vertebral ligaments and prevents further</span><span lang=\"it-IT\"> degeneration. </span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">A patient with chronic low back pain can be treated with Prolotherapy injections into the various</span><span lang=\"pt-PT\"> ligaments</span><span lang=\"en-US\"> that have become weakened by injury, and the treatment can repair the injury.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">A paper published in the </span><span lang=\"en-US\">Journal of Prolotherapy</span> <span lang=\"en-US\">says, </span>“<span lang=\"en-US\">In comparison to other soft tissues, ligaments have less vascularity. Once injured or degenerated, this lack of blood supply may delay healing. Prolotherapy may offer the stimulus for ligament regeneration.</span>”(3)</p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">And the </span><span lang=\"en-US\">Journal of Back and Musculoskeletal Rehabilitation says,</span> “<span lang=\"en-US\">Prolotherapy can be regarded as a safe way of providing a meaningful improvement in pain and musculoskeletal function compared to the initial status.\" (4)</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">When the spine is stable and able to maintain alignment during activity, it can protect the structures and not elicit pain. A stable spine means the bones, muscles, discs, and ligaments work collectively to maintain the alignment of the spinal column. But once stability is lost, spinal instability and pain can result</span>.<span lang=\"en-US\"> When this occurs, Regenerative Orthopedics are great non-surgical options</span> <span lang=\"en-US\">to give relief and provide repair for those suffering from back pain and associated conditions related to spinal instability. Regenerative treatment of injured ligaments has the potential and ability to strengthen the spine and relieve back pain.</span></p>\r\n\r\n<h3 lang=\"en-US\" align=\"LEFT\"><strong><span lang=\"en-US\">References</span></strong></h3>\r\n<p align=\"LEFT\"><span lang=\"en-US\">(1)Migliorini F, Maffulli N. Choosing the appropriate pharmacotherapy for nonspecific chronic low back pain. Journal of Orthopaedic Surgery and Research. 2022 Dec;17(1):1-3. </span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">(2) Schultz MJ, Licciardone JC. The effect of long-term opioid use on back-specific disability and health-related quality of life in patients with chronic low back pain. Journal of Osteopathic Medicine. 2022 Aug 11. </span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">(3)Ferraro MC, Bagg MK, Wewege MA, Cashin AG, Leake HB, Rizzo RR, Jones MD, Gustin SM, Day R, Loo CK, McAuley JH. Efficacy, acceptability, and safety of antidepressants for low back pain: a systematic review and meta-analysis. Systematic reviews. 2021 Dec;10(1):1-3.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">(4)Solmaz I, Orscelik A, Koroglu O. Modified prolotherapy by 5% dextrose: Two years experiences of a traditional and complementary medicine practice center in Turkey. Journal of Back and Musculoskeletal Rehabilitation. 2021(Preprint):1-8. </span></p>','Back Pain Treatment','','publish','closed','open','','back-pain-treatment','','','2023-03-10 17:32:54','2023-03-10 17:32:54','',0,'https://www.drfields.com/?p=5704',0,'post','',0),(5705,8,'2023-02-27 04:29:25','2023-02-27 04:29:25','Back Pain Treatment','Back Pain Treatment','Back Pain Treatment','inherit','closed','closed','','back-pain-treatment','','','2023-02-27 04:29:25','2023-02-27 04:29:25','',5704,'https://www.drfields.com/wp-content/uploads/2023/02/Back-Pain-Treatment.png',0,'attachment','image/png',0),(5706,8,'2023-02-27 04:30:29','2023-02-27 04:30:29','<img class=\"wp-image-5705 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2023/02/Back-Pain-Treatment-500x419.png\" alt=\"Back Pain Treatment\" width=\"300\" height=\"251\" />\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Looking for a back pain treatment to finally give you the relief you are seeking? It\'s not unusual for back pain sufferers to spend years trying to find relief. Relief may be experienced after massage, manipulations, or heating pads. Or over-the-counter or prescription pain medications may provide some help. But when back pain continues even after trying these and other conservative treatments, it is most likely because the actual problem is not being addressed. </span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">What Is the Underlying Problem That Needs to Be Addressed?</span></h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">If the underlying problem is more than muscular pain, the back pain sufferer may be dealing with instability due to ligament injury. But what does instability have to do with anything? When injury occurs to the back, very often the ligaments that hold the spine in place get injured as well. Once injury to the ligaments takes place, they may become weaker. Weak ligaments will allow for more movement of the vertebrae. Then, when a person bends and twists, instability from weak ligaments makes the back more prone to further injury.</span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Weakness and instability of the back due to ligament weakness can become a chronic problem. The result? Back pain that comes and goes. Or back pain that just won\'t go away. </span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Back pain is a major challenge for clinicians because they are accustomed to managing the pain with medication, but the benefits of pharmacological management are just not there, and their use is not justified. The </span><span lang=\"en-US\">Journal of Orthopaedic Surgery and Research</span><span lang=\"en-US\"> says, \"The benefits are just not there to justify the routine prolonged use of any given drug in nonspecific chronic low back pain: this is a major challenge, and it is often hard to accept for clinicians and patients . . . </span>”<span lang=\"en-US\">(1)</span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">And according to the </span><span lang=\"en-US\">Journal of Osteopathic Medicine</span><span lang=\"en-US\">, long-term opioid use for back pain only makes patients worse. (2)</span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">What About Manipulation as a Back Pain Treatment?</span></h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Chiropractic manipulation is a great treatment tool for back pain and one that is oftentimes very effective. But when pain persists and does not resolve after these treatments, ligament injury should be investigated, because many back conditions have underlying ligament involvement or ligament instability.</span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Explaining Spinal Instability</span></h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Spinal instability is a problem when the stabilizing structures of the spine, such as the ligaments, are no longer able to hold the adjacent bones together. Abnormal motion of the spine is transpiring as a result. Oftentimes, problems with instability will arise after a patient overdoes an activity or exercise. Again, the most common cause of unresolved back pain is spinal instability.</span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Regenerative Orthopedics Is An Effective Back Pain Treatment</span></h2>\r\n<p align=\"LEFT\"><span lang=\"en-US\">What\'s the best treatment for spinal instability? Regenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells. In fact, simple Dextrose Prolotherapy is a great tool to treat instability because it strengthens the vertebral ligaments and prevents further</span><span lang=\"it-IT\"> degeneration. </span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">A patient with chronic low back pain can be treated with Prolotherapy injections into the various</span><span lang=\"pt-PT\"> ligaments</span><span lang=\"en-US\"> that have become weakened by injury, and the treatment can repair the injury.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">A paper published in the </span><span lang=\"en-US\">Journal of Prolotherapy</span> <span lang=\"en-US\">says, </span>“<span lang=\"en-US\">In comparison to other soft tissues, ligaments have less vascularity. Once injured or degenerated, this lack of blood supply may delay healing. Prolotherapy may offer the stimulus for ligament regeneration.</span>”(3)</p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">And the </span><span lang=\"en-US\">Journal of Back and Musculoskeletal Rehabilitation says,</span> “<span lang=\"en-US\">Prolotherapy can be regarded as a safe way of providing a meaningful improvement in pain and musculoskeletal function compared to the initial status.\" (4)</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">When the spine is stable and able to maintain alignment during activity it can protect the structures and not elicit pain. A stable spine means the bones, muscles, discs, and ligaments work collectively to maintain the alignment of the spinal column. But once stability is lost, spinal instability and pain can result</span>.<span lang=\"en-US\"> When this occurs, Regenerative Orthopedics are great non-surgical options</span> <span lang=\"en-US\">to give relief and provide repair for those suffering from back pain and associated conditions related to spinal instability. Regenerative treatment of injured ligaments has the potential and ability to strengthen the spine and relieve back pain.</span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><strong><span lang=\"en-US\">References</span></strong></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">(1)Migliorini F, Maffulli N. Choosing the appropriate pharmacotherapy for nonspecific chronic low back pain. Journal of Orthopaedic Surgery and Research. 2022 Dec;17(1):1-3. </span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">(2) Schultz MJ, Licciardone JC. The effect of long-term opioid use on back-specific disability and health-related quality of life in patients with chronic low back pain. Journal of Osteopathic Medicine. 2022 Aug 11. </span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">(3)Ferraro MC, Bagg MK, Wewege MA, Cashin AG, Leake HB, Rizzo RR, Jones MD, Gustin SM, Day R, Loo CK, McAuley JH. Efficacy, acceptability, and safety of antidepressants for low back pain: a systematic review and meta-analysis. Systematic reviews. 2021 Dec;10(1):1-3.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">(4)Solmaz I, Orscelik A, Koroglu O. Modified prolotherapy by 5% dextrose: Two years experiences of a traditional and complementary medicine practice center in Turkey. Journal of Back and Musculoskeletal Rehabilitation. 2021(Preprint):1-8. </span></p>','Back Pain Treatment','','inherit','closed','closed','','5704-revision-v1','','','2023-02-27 04:30:29','2023-02-27 04:30:29','',5704,'https://www.drfields.com/?p=5706',0,'revision','',0),(5707,8,'2023-02-27 04:30:58','2023-02-27 04:30:58','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/back-pain-treatment/\">Back Pain Treatment</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/remedies-for-shoulder-repair/\">Remedies For Shoulder Repair</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/alternatives-for-the-red-knee-non-surgical-candidate-population/\">Alternatives for the \"Red Knee\" Non-Surgical Candidate Population</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-in-newport-beach-ca-area-regenerate-knee-cartilage-with-bone-marrow-concentrate-and-prp/\">Stem Cell Therapy in Newport Beach, CA Area</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/regenerative-orthopedics/\">Regenerative Orthopedics: Growing in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/prolotherapy-the-answer-for-joint-repair/\">Prolotherapy – The Answer for Joint Repair</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/new-studies-reveal-cortisone-injections-make-knee-arthritis-worse/\">New Studies Reveal Cortisone Injections Make Knee Arthritis Worse</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/stem-cell-injections-in-los-angeles-ca/\">Stem Cell Injections in Los Angeles, CA</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-shoulder-repair-in-los-angeles-ca/\">Non-Surgical Shoulder Repair in Los Angeles, CA</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-02-27 04:30:58','2023-02-27 04:30:58','',2109,'https://www.drfields.com/?p=5707',0,'revision','',0),(5709,9,'2023-03-10 17:32:03','2023-03-10 17:32:03','<img class=\"wp-image-5705 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2023/02/Back-Pain-Treatment-500x419.png\" alt=\"Back Pain Treatment\" width=\"300\" height=\"251\" />\n<h2>Back Pain Treatment</h2>\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Looking for a back pain treatment to finally give you the relief you are seeking? It\'s not unusual for back pain sufferers to spend years trying to find relief. Relief may be experienced after massage, manipulations, or heating pads. Or over-the-counter or prescription pain medications may provide some help. But when back pain continues even after trying these and other conservative treatments, it is most likely because the actual problem is not being addressed. </span></p>\n\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">What Is the Underlying Problem That Needs to Be Addressed?</span></h2>\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">If the underlying problem is more than muscular pain, the back pain sufferer may be dealing with instability due to ligament injury. But what does instability have to do with anything? When the injury occurs to the back, very often the ligaments that hold the spine in place get injured as well. Once injury to the ligaments takes place, they may become weaker. Weak ligaments will allow for more movement of the vertebrae. Then, when a person bends and twists, instability from weak ligaments makes the back more prone to further injury.</span></p>\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Weakness and instability of the back due to ligament weakness can become a chronic problem. The result? Back pain that comes and goes. Or back pain that just won\'t go away. </span></p>\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Back pain is a major challenge for clinicians because they are accustomed to managing the pain with medication, but the benefits of pharmacological management are just not there, and their use is not justified. The </span><span lang=\"en-US\">Journal of Orthopaedic Surgery and Research</span><span lang=\"en-US\"> says, \"The benefits are just not there to justify the routine prolonged use of any given drug in nonspecific chronic low back pain: this is a major challenge, and it is often hard to accept for clinicians and patients . . . </span>”<span lang=\"en-US\">(1)</span></p>\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">And according to the </span><span lang=\"en-US\">Journal of Osteopathic Medicine</span><span lang=\"en-US\">, long-term opioid use for back pain only worsens patients. (2)</span></p>\n\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">What About Manipulation as a Back Pain Treatment?</span></h2>\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Chiropractic manipulation is a great treatment tool for back pain and is often very effective. But when pain persists and does not resolve after these treatments, ligament injury should be investigated because many back conditions have underlying ligament involvement or ligament instability.</span></p>\n\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Explaining Spinal Instability</span></h2>\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Spinal instability is a problem when the stabilizing structures of the spine, such as the ligaments, are no longer able to hold the adjacent bones together. Abnormal motion of the spine is transpiring as a result. Oftentimes, problems with instability will arise after a patient overdoes on an activity or exercise. Again, the most common cause of unresolved back pain is spinal instability.</span></p>\n\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Regenerative Orthopedics Is An Effective Back Pain Treatment</span></h2>\n<p align=\"LEFT\"><span lang=\"en-US\">What\'s the best treatment for spinal instability? Regenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells. In fact, simple Dextrose Prolotherapy is a great tool to treat instability because it strengthens the vertebral ligaments and prevents further</span><span lang=\"it-IT\"> degeneration. </span></p>\n<p align=\"LEFT\"><span lang=\"en-US\">A patient with chronic low back pain can be treated with Prolotherapy injections into the various</span><span lang=\"pt-PT\"> ligaments</span><span lang=\"en-US\"> that have become weakened by injury, and the treatment can repair the injury.</span></p>\n<p align=\"LEFT\"><span lang=\"en-US\">A paper published in the </span><span lang=\"en-US\">Journal of Prolotherapy</span> <span lang=\"en-US\">says, </span>“<span lang=\"en-US\">In comparison to other soft tissues, ligaments have less vascularity. Once injured or degenerated, this lack of blood supply may delay healing. Prolotherapy may offer the stimulus for ligament regeneration.</span>”(3)</p>\n<p align=\"LEFT\"><span lang=\"en-US\">And the </span><span lang=\"en-US\">Journal of Back and Musculoskeletal Rehabilitation says,</span> “<span lang=\"en-US\">Prolotherapy can be regarded as a safe way of providing a meaningful improvement in pain and musculoskeletal function compared to the initial status.\" (4)</span></p>\n<p align=\"LEFT\"><span lang=\"en-US\">When the spine is stable and able to maintain alignment during activity, it can protect the structures and not elicit pain. A stable spine means the bones, muscles, discs, and ligaments work collectively to maintain the alignment of the spinal column. But once stability is lost, spinal instability and pain can result</span>.<span lang=\"en-US\"> When this occurs, Regenerative Orthopedics are great non-surgical options</span> <span lang=\"en-US\">to give relief and provide repair for those suffering from back pain and associated conditions related to spinal instability. Regenerative treatment of injured ligaments has the potential and ability to strengthen the spine and relieve back pain.</span></p>\n<p lang=\"en-US\" align=\"LEFT\"><strong><span lang=\"en-US\">References</span></strong></p>\n<p align=\"LEFT\"><span lang=\"en-US\">(1)Migliorini F, Maffulli N. Choosing the appropriate pharmacotherapy for nonspecific chronic low back pain. Journal of Orthopaedic Surgery and Research. 2022 Dec;17(1):1-3. </span></p>\n<p align=\"LEFT\"><span lang=\"en-US\">(2) Schultz MJ, Licciardone JC. The effect of long-term opioid use on back-specific disability and health-related quality of life in patients with chronic low back pain. Journal of Osteopathic Medicine. 2022 Aug 11. </span></p>\n<p align=\"LEFT\"><span lang=\"en-US\">(3)Ferraro MC, Bagg MK, Wewege MA, Cashin AG, Leake HB, Rizzo RR, Jones MD, Gustin SM, Day R, Loo CK, McAuley JH. Efficacy, acceptability, and safety of antidepressants for low back pain: a systematic review and meta-analysis. Systematic reviews. 2021 Dec;10(1):1-3.</span></p>\n<p align=\"LEFT\"><span lang=\"en-US\">(4)Solmaz I, Orscelik A, Koroglu O. Modified prolotherapy by 5% dextrose: Two years experiences of a traditional and complementary medicine practice center in Turkey. Journal of Back and Musculoskeletal Rehabilitation. 2021(Preprint):1-8. </span></p>','Back Pain Treatment','','inherit','closed','closed','','5704-autosave-v1','','','2023-03-10 17:32:03','2023-03-10 17:32:03','',5704,'https://www.drfields.com/?p=5709',0,'revision','',0),(5710,9,'2023-03-10 17:28:30','2023-03-10 17:28:30','<img class=\"wp-image-5705 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2023/02/Back-Pain-Treatment-500x419.png\" alt=\"Back Pain Treatment\" width=\"300\" height=\"251\" />\r\n<h2>Back Pain Treatment</h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Looking for a back pain treatment to finally give you the relief you are seeking? It\'s not unusual for back pain sufferers to spend years trying to find relief. Relief may be experienced after massage, manipulations, or heating pads. Or over-the-counter or prescription pain medications may provide some help. But when back pain continues even after trying these and other conservative treatments, it is most likely because the actual problem is not being addressed. </span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">What Is the Underlying Problem That Needs to Be Addressed?</span></h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">If the underlying problem is more than muscular pain, the back pain sufferer may be dealing with instability due to ligament injury. But what does instability have to do with anything? When injury occurs to the back, very often the ligaments that hold the spine in place get injured as well. Once injury to the ligaments takes place, they may become weaker. Weak ligaments will allow for more movement of the vertebrae. Then, when a person bends and twists, instability from weak ligaments makes the back more prone to further injury.</span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Weakness and instability of the back due to ligament weakness can become a chronic problem. The result? Back pain that comes and goes. Or back pain that just won\'t go away. </span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Back pain is a major challenge for clinicians because they are accustomed to managing the pain with medication, but the benefits of pharmacological management are just not there, and their use is not justified. The </span><span lang=\"en-US\">Journal of Orthopaedic Surgery and Research</span><span lang=\"en-US\"> says, \"The benefits are just not there to justify the routine prolonged use of any given drug in nonspecific chronic low back pain: this is a major challenge, and it is often hard to accept for clinicians and patients . . . </span>”<span lang=\"en-US\">(1)</span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">And according to the </span><span lang=\"en-US\">Journal of Osteopathic Medicine</span><span lang=\"en-US\">, long-term opioid use for back pain only makes patients worse. (2)</span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">What About Manipulation as a Back Pain Treatment?</span></h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Chiropractic manipulation is a great treatment tool for back pain and one that is oftentimes very effective. But when pain persists and does not resolve after these treatments, ligament injury should be investigated, because many back conditions have underlying ligament involvement or ligament instability.</span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Explaining Spinal Instability</span></h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Spinal instability is a problem when the stabilizing structures of the spine, such as the ligaments, are no longer able to hold the adjacent bones together. Abnormal motion of the spine is transpiring as a result. Oftentimes, problems with instability will arise after a patient overdoes an activity or exercise. Again, the most common cause of unresolved back pain is spinal instability.</span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Regenerative Orthopedics Is An Effective Back Pain Treatment</span></h2>\r\n<p align=\"LEFT\"><span lang=\"en-US\">What\'s the best treatment for spinal instability? Regenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells. In fact, simple Dextrose Prolotherapy is a great tool to treat instability because it strengthens the vertebral ligaments and prevents further</span><span lang=\"it-IT\"> degeneration. </span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">A patient with chronic low back pain can be treated with Prolotherapy injections into the various</span><span lang=\"pt-PT\"> ligaments</span><span lang=\"en-US\"> that have become weakened by injury, and the treatment can repair the injury.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">A paper published in the </span><span lang=\"en-US\">Journal of Prolotherapy</span> <span lang=\"en-US\">says, </span>“<span lang=\"en-US\">In comparison to other soft tissues, ligaments have less vascularity. Once injured or degenerated, this lack of blood supply may delay healing. Prolotherapy may offer the stimulus for ligament regeneration.</span>”(3)</p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">And the </span><span lang=\"en-US\">Journal of Back and Musculoskeletal Rehabilitation says,</span> “<span lang=\"en-US\">Prolotherapy can be regarded as a safe way of providing a meaningful improvement in pain and musculoskeletal function compared to the initial status.\" (4)</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">When the spine is stable and able to maintain alignment during activity it can protect the structures and not elicit pain. A stable spine means the bones, muscles, discs, and ligaments work collectively to maintain the alignment of the spinal column. But once stability is lost, spinal instability and pain can result</span>.<span lang=\"en-US\"> When this occurs, Regenerative Orthopedics are great non-surgical options</span> <span lang=\"en-US\">to give relief and provide repair for those suffering from back pain and associated conditions related to spinal instability. Regenerative treatment of injured ligaments has the potential and ability to strengthen the spine and relieve back pain.</span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><strong><span lang=\"en-US\">References</span></strong></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">(1)Migliorini F, Maffulli N. Choosing the appropriate pharmacotherapy for nonspecific chronic low back pain. Journal of Orthopaedic Surgery and Research. 2022 Dec;17(1):1-3. </span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">(2) Schultz MJ, Licciardone JC. The effect of long-term opioid use on back-specific disability and health-related quality of life in patients with chronic low back pain. Journal of Osteopathic Medicine. 2022 Aug 11. </span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">(3)Ferraro MC, Bagg MK, Wewege MA, Cashin AG, Leake HB, Rizzo RR, Jones MD, Gustin SM, Day R, Loo CK, McAuley JH. Efficacy, acceptability, and safety of antidepressants for low back pain: a systematic review and meta-analysis. Systematic reviews. 2021 Dec;10(1):1-3.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">(4)Solmaz I, Orscelik A, Koroglu O. Modified prolotherapy by 5% dextrose: Two years experiences of a traditional and complementary medicine practice center in Turkey. Journal of Back and Musculoskeletal Rehabilitation. 2021(Preprint):1-8. </span></p>','Back Pain Treatment','','inherit','closed','closed','','5704-revision-v1','','','2023-03-10 17:28:30','2023-03-10 17:28:30','',5704,'https://www.drfields.com/?p=5710',0,'revision','',0),(5711,9,'2023-03-10 17:32:54','2023-03-10 17:32:54','<img class=\"wp-image-5705 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2023/02/Back-Pain-Treatment-500x419.png\" alt=\"Back Pain Treatment\" width=\"300\" height=\"251\" />\r\n<h2>Back Pain Treatment</h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Looking for a back pain treatment to finally give you the relief you are seeking? It\'s not unusual for back pain sufferers to spend years trying to find relief. Relief may be experienced after massage, manipulations, or heating pads. Or over-the-counter or prescription pain medications may provide some help. But when back pain continues even after trying these and other conservative treatments, it is most likely because the actual problem is not being addressed. </span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">What Is the Underlying Problem That Needs to Be Addressed?</span></h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">If the underlying problem is more than muscular pain, the back pain sufferer may be dealing with instability due to ligament injury. But what does instability have to do with anything? When the injury occurs to the back, very often the ligaments that hold the spine in place get injured as well. Once injury to the ligaments takes place, they may become weaker. Weak ligaments will allow for more movement of the vertebrae. Then, when a person bends and twists, instability from weak ligaments makes the back more prone to further injury.</span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Weakness and instability of the back due to ligament weakness can become a chronic problem. The result? Back pain that comes and goes. Or back pain that just won\'t go away. </span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Back pain is a major challenge for clinicians because they are accustomed to managing the pain with medication, but the benefits of pharmacological management are just not there, and their use is not justified. The </span><span lang=\"en-US\">Journal of Orthopaedic Surgery and Research</span><span lang=\"en-US\"> says, \"The benefits are just not there to justify the routine prolonged use of any given drug in nonspecific chronic low back pain: this is a major challenge, and it is often hard to accept for clinicians and patients . . . </span>”<span lang=\"en-US\">(1)</span></p>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">And according to the </span><span lang=\"en-US\">Journal of Osteopathic Medicine</span><span lang=\"en-US\">, long-term opioid use for back pain only worsens patients. (2)</span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">What About Manipulation as a Back Pain Treatment?</span></h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Chiropractic manipulation is a great treatment tool for back pain and is often very effective. But when pain persists and does not resolve after these treatments, ligament injury should be investigated because many back conditions have underlying ligament involvement or ligament instability.</span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Explaining Spinal Instability</span></h2>\r\n<p lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Spinal instability is a problem when the stabilizing structures of the spine, such as the ligaments, are no longer able to hold the adjacent bones together. Abnormal motion of the spine is transpiring as a result. Oftentimes, problems with instability will arise after a patient overdoes on an activity or exercise. Again, the most common cause of unresolved back pain is spinal instability.</span></p>\r\n\r\n<h2 lang=\"en-US\" align=\"LEFT\"><span lang=\"en-US\">Regenerative Orthopedics Is An Effective Back Pain Treatment</span></h2>\r\n<p align=\"LEFT\"><span lang=\"en-US\">What\'s the best treatment for spinal instability? Regenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells. In fact, simple Dextrose Prolotherapy is a great tool to treat instability because it strengthens the vertebral ligaments and prevents further</span><span lang=\"it-IT\"> degeneration. </span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">A patient with chronic low back pain can be treated with Prolotherapy injections into the various</span><span lang=\"pt-PT\"> ligaments</span><span lang=\"en-US\"> that have become weakened by injury, and the treatment can repair the injury.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">A paper published in the </span><span lang=\"en-US\">Journal of Prolotherapy</span> <span lang=\"en-US\">says, </span>“<span lang=\"en-US\">In comparison to other soft tissues, ligaments have less vascularity. Once injured or degenerated, this lack of blood supply may delay healing. Prolotherapy may offer the stimulus for ligament regeneration.</span>”(3)</p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">And the </span><span lang=\"en-US\">Journal of Back and Musculoskeletal Rehabilitation says,</span> “<span lang=\"en-US\">Prolotherapy can be regarded as a safe way of providing a meaningful improvement in pain and musculoskeletal function compared to the initial status.\" (4)</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">When the spine is stable and able to maintain alignment during activity, it can protect the structures and not elicit pain. A stable spine means the bones, muscles, discs, and ligaments work collectively to maintain the alignment of the spinal column. But once stability is lost, spinal instability and pain can result</span>.<span lang=\"en-US\"> When this occurs, Regenerative Orthopedics are great non-surgical options</span> <span lang=\"en-US\">to give relief and provide repair for those suffering from back pain and associated conditions related to spinal instability. Regenerative treatment of injured ligaments has the potential and ability to strengthen the spine and relieve back pain.</span></p>\r\n\r\n<h3 lang=\"en-US\" align=\"LEFT\"><strong><span lang=\"en-US\">References</span></strong></h3>\r\n<p align=\"LEFT\"><span lang=\"en-US\">(1)Migliorini F, Maffulli N. Choosing the appropriate pharmacotherapy for nonspecific chronic low back pain. Journal of Orthopaedic Surgery and Research. 2022 Dec;17(1):1-3. </span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">(2) Schultz MJ, Licciardone JC. The effect of long-term opioid use on back-specific disability and health-related quality of life in patients with chronic low back pain. Journal of Osteopathic Medicine. 2022 Aug 11. </span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">(3)Ferraro MC, Bagg MK, Wewege MA, Cashin AG, Leake HB, Rizzo RR, Jones MD, Gustin SM, Day R, Loo CK, McAuley JH. Efficacy, acceptability, and safety of antidepressants for low back pain: a systematic review and meta-analysis. Systematic reviews. 2021 Dec;10(1):1-3.</span></p>\r\n<p align=\"LEFT\"><span lang=\"en-US\">(4)Solmaz I, Orscelik A, Koroglu O. Modified prolotherapy by 5% dextrose: Two years experiences of a traditional and complementary medicine practice center in Turkey. Journal of Back and Musculoskeletal Rehabilitation. 2021(Preprint):1-8. </span></p>','Back Pain Treatment','','inherit','closed','closed','','5704-revision-v1','','','2023-03-10 17:32:54','2023-03-10 17:32:54','',5704,'https://www.drfields.com/?p=5711',0,'revision','',0),(5712,9,'2023-03-10 17:34:38','2023-03-10 17:34:38','<h2><img class=\"alignright wp-image-5506 size-wcsquare\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-300x300.png\" alt=\"Patellar Tendinopathy. Prp. Amer J Of Sports Med.2ndpng\" width=\"300\" height=\"300\" />Patellar Tendinopathy</h2>\nHave you been diagnosed with patellar tendinopathy? If so, your condition relates to the tendon that passes from the large muscle at the front of the thigh and over the kneecap (patella) to connect to the shinbone.\n\nWhen someone has knee pain from a tendon problem or other causes, conservative self-management is usually the next step, or a doctor may recommend a brace, wrap, and/or anti-inflammatory medication. These treatments may keep down swelling down and possibly relieve some pain. However, any actual injury is not repaired with these conventional measures.\n\nAfter a few weeks of rest, once you are active again, you may still experience problems with pain and instability. Repair is needed. Fortunately, Regenerative Orthopedics is an available solution that can repair the tendons and any involved ligaments. Plus, it is non-surgical.\n<h2>Tendinitis vs Tendinosis</h2>\nBefore we go on, let’s talk about the difference between tendinitis and tendinosis:\n<ul>\n 	<li>With tendinitis, there is inflammation, pain, and swelling. The body is still trying to heal the knee</li>\n 	<li>When tendinosis is diagnosed, there is pain and weakness without the inflammation. At this point, the soft tissue is degenerated and the body has pretty much stopped trying to heal the tendon. And even though inflammation can be painful, inflammation is the body’s way of healing.</li>\n</ul>\n<h2>Patellar Tendinopathy Explained</h2>\nThe Journal of the American Academy of Orthopaedic Surgeons explains patellar tendinopathy like this: “The main problem in patellar tendinopathy is tendinosis, which is a degenerative disorder rather than an inflammatory disorder; therefore, the other popular term for this disease, tendinitis, is not appropriate.”\n\nRegenerative treatments are needed to repair and regenerate the degenerated soft tissue.\n<h2>Do Cortisone Injections Help?</h2>\nCortisone injections may help to calm down the inflammation and pain, but cortisone can make the tendon weaker. A recent study on the effect of dexamethasone (a type of cortisone injection) on the patellar tendon showed that dexamethasone had a “paradoxical” effect or changed the tendon stem cells into non-tendon tissue which weakened the tendon. Keep in mind then, that if cortisone is recommended, that while it may calm down inflammation, the injection could weaken rather than strengthen the tendon. (2)\n\nUnfortunately, with a tendon injury, the structure is already weakened. Plus, once it is weakened or damaged through injury or degenerative wear and tear, the knee becomes unstable. Stability needs to be regained, and Regenerative Orthopedics can stabilize and repair the soft tissue structures.\n<h2>Can Taping Help?</h2>\nIn the Annals of Translational Medicine (3), taping for the purpose of stabilizing the patella was discussed. “Patellar taping is commonly used in conjunction with manual and exercise therapies in the management of patellofemoral pain syndrome. Taping is predominately used to help decrease pain. Other studies show it can also help with patellar alignment and muscle activation. As patellar hypermobility has been shown as a predisposing factor for developing patellofemoral pain syndrome, taping can be indicated to promote patellar positioning and decrease pain. . . Overall, the effects of taping, are conflicting,…short-term it can be helpful with acute management of symptoms with functional activity.”\n\nThe goal of taping is to get the patella back into place, and to stabilize it temporarily. It is not reparative. Regenerative Orthopedics can stabilize the patellar, get it back in alignment, and resolve the pain. Regenerative Orthopedics is reparative.\n<h2>What About Surgery?</h2>\nSurgery may help the condition, but the downtime is very long. Researchers in the medical journal Orthopedics found that open surgery and arthroscopic techniques achieved similar satisfactory results but the average time to return to play was 5.6 months and 5 months, respectively (4). But keep in mind, there is also the possibility that surgery may not work.\n\nWhy not choose a non-surgical option that results in repair? Plus, effective Regenerative Orthopedics does not require the downtime of surgery. Movement is encouraged!\n<h2>Research about Regenerative Therapies?</h2>\nThe Journal of Experimental Orthopaedics examined the use of Prolotherapy in ten different studies for tendinopathies and found: “Among all ten studies, no serious adverse events were reported. Based on this limited set of studies, there seems to be some evidence that…Prolotherapy may be an effective treatment option to treat pain and to improve function in patients with Chronic Patellar Tendinopathy.” (5)\n\nPRP, another form of Regenerative Orthopedics, may also be warranted depending on the severity of the knee condition and for patellar tendinopathy. Do researchers recommend it? Doctors looking for a non-surgical options to treat patellar tendinopathy concluded in the American Journal of Sports Medicine: “Eccentric exercises may seem the strategy of choice in the short-term, but multiple PRP injections may offer more satisfactory results at long-term follow-up and can be therefore considered a suitable option for the treatment of patellar tendinopathy.”(6)\n\nRegenerative Orthopedics is a successful non-surgical solution for many knee pain conditions, including patellar tendinopathy. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love quickly and with improved knee function.\n\n<strong>References</strong>\n\n1 Figueroa D, Figueroa F, Calvo R. Patellar Tendinopathy: Diagnosis and Treatment. J Am Acad Orthop Surg. 2016 Dec;24(12):e184-e192.\n\n2 Zhang J, Keenan C, Wang JH. The Effects of Dexamethasone on Human Patellar Tendon Stem Cells: Implications for Dexamethasone Treatment of Tendon Injury. Journal of orthopaedic research: official publication of the Orthopaedic Research Society. 2013 Jan;31(1):105.\n\n3 Mellinger S, Neurohr GA. Evidence-based treatment options for common knee injuries in runners. Annals of translational medicine. 2019 Oct;7(Suppl 7).\n\n4 Stuhlman CR, Stowers K, Stowers L, Smith J. Current Concepts and the Role of Surgery in the Treatment of Jumper’s Knee. Orthopedics. Nov 1 2016;39(6):e1028-e1035. doi: 10.3928/01477447-20160714-06.\n\n5 Morath O, Beck M, Taeymans J, Hirschmüller A. Sclerotherapy and prolotherapy for chronic patellar tendinopathies – a promising therapy with limited available evidence, a systematic review. J Exp Orthop. 2020 Nov 9;7(1):89. doi: 10.1186/s40634-020-00303-0. PMID: 33165667.\n\n6 Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.','Patellar Tendinopathy','','inherit','closed','closed','','5500-autosave-v1','','','2023-03-10 17:34:38','2023-03-10 17:34:38','',5500,'https://www.drfields.com/?p=5712',0,'revision','',0),(5713,9,'2023-03-10 17:36:53','2023-03-10 17:36:53','<h2><img class=\"alignright wp-image-5506 size-wcsquare\" src=\"https://www.drfields.com/wp-content/uploads/2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-300x300.png\" alt=\"Patellar Tendinopathy. Prp. Amer J Of Sports Med.2ndpng\" width=\"300\" height=\"300\" />Patellar Tendinopathy</h2>\r\nHave you been diagnosed with patellar tendinopathy? If so, your condition relates to the tendon that passes from the large muscle at the front of the thigh and over the kneecap (patella) to connect to the shinbone.\r\n\r\nWhen someone has knee pain from a tendon problem or other causes, conservative self-management is usually the next step, or a doctor may recommend a brace, wrap, and/or anti-inflammatory medication. These treatments may keep down swelling down and possibly relieve some pain. However, any actual injury is not repaired with these conventional measures.\r\n\r\nAfter a few weeks of rest, once you are active again, you may still experience problems with pain and instability. Repair is needed. Fortunately, Regenerative Orthopedics is an available solution that can repair the tendons and any involved ligaments. Plus, it is non-surgical.\r\n<h2>Tendinitis vs Tendinosis</h2>\r\nBefore we go on, let’s talk about the difference between tendinitis and tendinosis:\r\n<ul>\r\n 	<li>With tendinitis, there is inflammation, pain, and swelling. The body is still trying to heal the knee</li>\r\n 	<li>When tendinosis is diagnosed, there is pain and weakness without the inflammation. At this point, the soft tissue is degenerated and the body has pretty much stopped trying to heal the tendon. And even though inflammation can be painful, inflammation is the body’s way of healing.</li>\r\n</ul>\r\n<h2>Patellar Tendinopathy Explained</h2>\r\nThe Journal of the American Academy of Orthopaedic Surgeons explains patellar tendinopathy like this: “The main problem in patellar tendinopathy is tendinosis, which is a degenerative disorder rather than an inflammatory disorder; therefore, the other popular term for this disease, tendinitis, is not appropriate.”\r\n\r\nRegenerative treatments are needed to repair and regenerate the degenerated soft tissue.\r\n<h2>Do Cortisone Injections Help?</h2>\r\nCortisone injections may help to calm down the inflammation and pain, but cortisone can make the tendon weaker. A recent study on the effect of dexamethasone (a type of cortisone injection) on the patellar tendon showed that dexamethasone had a “paradoxical” effect or changed the tendon stem cells into non-tendon tissue which weakened the tendon. Keep in mind then, that if cortisone is recommended, that while it may calm down inflammation, the injection could weaken rather than strengthen the tendon. (2)\r\n\r\nUnfortunately, with a tendon injury, the structure is already weakened. Plus, once it is weakened or damaged through injury or degenerative wear and tear, the knee becomes unstable. Stability needs to be regained, and Regenerative Orthopedics can stabilize and repair the soft tissue structures.\r\n<h2>Can Taping Help?</h2>\r\nIn the Annals of Translational Medicine (3), taping for the purpose of stabilizing the patella was discussed. “Patellar taping is commonly used in conjunction with manual and exercise therapies in the management of patellofemoral pain syndrome. Taping is predominately used to help decrease pain. Other studies show it can also help with patellar alignment and muscle activation. As patellar hypermobility has been shown as a predisposing factor for developing patellofemoral pain syndrome, taping can be indicated to promote patellar positioning and decrease pain. . . Overall, the effects of taping, are conflicting,…short-term it can be helpful with acute management of symptoms with functional activity.”\r\n\r\nThe goal of taping is to get the patella back into place, and to stabilize it temporarily. It is not reparative. Regenerative Orthopedics can stabilize the patellar, get it back in alignment, and resolve the pain. Regenerative Orthopedics is reparative.\r\n<h2>What About Surgery?</h2>\r\nSurgery may help the condition, but the downtime is very long. Researchers in the medical journal Orthopedics found that open surgery and arthroscopic techniques achieved similar satisfactory results but the average time to return to play was 5.6 months and 5 months, respectively (4). But keep in mind, there is also the possibility that surgery may not work.\r\n\r\nWhy not choose a non-surgical option that results in repair? Plus, effective Regenerative Orthopedics does not require the downtime of surgery. Movement is encouraged!\r\n<h2>Research about Regenerative Therapies?</h2>\r\nThe Journal of Experimental Orthopaedics examined the use of Prolotherapy in ten different studies for tendinopathies and found: “Among all ten studies, no serious adverse events were reported. Based on this limited set of studies, there seems to be some evidence that…Prolotherapy may be an effective treatment option to treat pain and to improve function in patients with Chronic Patellar Tendinopathy.” (5)\r\n\r\nPRP, another form of Regenerative Orthopedics, may also be warranted depending on the severity of the knee condition and for patellar tendinopathy. Do researchers recommend it? Doctors looking for a non-surgical options to treat patellar tendinopathy concluded in the American Journal of Sports Medicine: “Eccentric exercises may seem the strategy of choice in the short-term, but multiple PRP injections may offer more satisfactory results at long-term follow-up and can be therefore considered a suitable option for the treatment of patellar tendinopathy.”(6)\r\n\r\nRegenerative Orthopedics is a successful non-surgical solution for many knee pain conditions, including patellar tendinopathy. If you are suffering from knee pain, call us today. We are more than happy to help you resolve your pain and get you back to what you love quickly and with improved knee function.\r\n<h3><strong>References</strong></h3>\r\n1 Figueroa D, Figueroa F, Calvo R. Patellar Tendinopathy: Diagnosis and Treatment. J Am Acad Orthop Surg. 2016 Dec;24(12):e184-e192.\r\n\r\n2 Zhang J, Keenan C, Wang JH. The Effects of Dexamethasone on Human Patellar Tendon Stem Cells: Implications for Dexamethasone Treatment of Tendon Injury. Journal of orthopaedic research: official publication of the Orthopaedic Research Society. 2013 Jan;31(1):105.\r\n\r\n3 Mellinger S, Neurohr GA. Evidence-based treatment options for common knee injuries in runners. Annals of translational medicine. 2019 Oct;7(Suppl 7).\r\n\r\n4 Stuhlman CR, Stowers K, Stowers L, Smith J. Current Concepts and the Role of Surgery in the Treatment of Jumper’s Knee. Orthopedics. Nov 1 2016;39(6):e1028-e1035. doi: 10.3928/01477447-20160714-06.\r\n\r\n5 Morath O, Beck M, Taeymans J, Hirschmüller A. Sclerotherapy and prolotherapy for chronic patellar tendinopathies – a promising therapy with limited available evidence, a systematic review. J Exp Orthop. 2020 Nov 9;7(1):89. doi: 10.1186/s40634-020-00303-0. PMID: 33165667.\r\n\r\n6 Andriolo L, Altamura SA, Reale D, Candrian C, Zaffagnini S, Filardo G. Nonsurgical Treatments of Patellar Tendinopathy: Multiple Injections of Platelet-Rich Plasma Are a Suitable Option: A Systematic Review and Meta-analysis. The American journal of sports medicine. 2018 Mar 1:0363546518759674.','Patellar Tendinopathy','','inherit','closed','closed','','5500-revision-v1','','','2023-03-10 17:36:53','2023-03-10 17:36:53','',5500,'https://www.drfields.com/?p=5713',0,'revision','',0),(5715,8,'2023-03-10 06:00:19','2023-03-10 06:00:19','<h2><img class=\"wp-image-5716 alignright\" title=\"Arthritis Knee Treatment\" src=\"https://www.drfields.com/wp-content/uploads/2023/03/Prolotherapy-Knee-Arthritis-1-500x419.png\" alt=\"Arthritis Knee Treatment\" width=\"300\" height=\"251\" />Arthritis Knee Treatment</h2>\r\nKnee arthritis can put a damper on doing the activities you love. When the degeneration of arthritis interferes with your life, there is an arthritis knee treatment that can get you back to doing what you love. Regenerative Orthopedics are treatments that can repair the arthritic knee without surgery.\r\n\r\nIf you have knee arthritis, you most likely have already tried over-the-counter medications to help with the symptoms. You may even be bracing. Or you\'ve received cortisone injections to relieve the pain and swelling.\r\n\r\nYour physician may have even recommended surgery. You may have already had surgery! But unfortunately, even after all of these treatments, you continue to experience symptoms that are interfering with your life.\r\n\r\nWhat can you do now that you\'ve tried all kinds of treatments that you thought would help but didn\'t? The good news is, Regenerative Orthopedics is a treatment that can repair the knee and boost function and mobility. Plus, it\'s non-surgical!\r\n<h2>Regenerative Orthopedics, Includes Prolotherapy, PRP, and Stem Cells</h2>\r\nProlotherapy, PRP, and Stem Cells are all arthritis knee treatments. The journal Orthopedic Reviews says this about Prolotherapy: “Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy. Although there is heterogeneity between studies concerning study variables, the results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment.\" (1)\r\n\r\nAnd the journal Clinical Rehabilitation says, \"Compared with placebo injection and noninvasive control therapy, dextrose Prolotherapy had favorable effects on pain, global function, and quality of life during the overall follow-up.\"(2)\r\n\r\nAnother study from Taiwan concluded, \"In this study, after receiving hypertonic dextrose prolotherapy, the osteoarthritis patients clearly demonstrated a significant improvement in WOMAC index and increasing tendency in the medial minimum joint space width after intervention. (3)\r\n\r\nProlotherapy is not a new treatment. It\'s been around for decades. As a non-surgical regenerative injection therapy, Prolotherapy treats joints, ligaments, and other joint structures and promotes the repair of these tissues. It is simple yet highly effective! Arthritis is a degenerative disease that progressively destroys the knee joint. Prolotherapy is an answer for many because this arthritis knee treatment repairs and regenerates the knee.\r\n<h2>Arthritis Knee Treatment for More Severe Arthritis</h2>\r\nIn cases where arthritis in the knee is more severe, PRP and Stem Cells may be recommended. Fortunately, at OrthoRegen®, we have years of experience using the Gold Standard in Stem Cells to repair arthritic knees.\r\n\r\nOrthoRegen® offers stem cell therapy utilizing mesenchymal stem cells from bone marrow and adipose. The Gold Standard in Stem Cell Therapy includes two types of Stem Cells, plus PRP to augment the stem cells and Prolotherapy to treat the entire knee comprehensively. The Gold Standard offers the best opportunity for healing the knee. These non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (4)\r\n\r\nOur clinicians will recommend the best regenerative therapy for your particular case to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma, Stem Cells, and Prolotherapy, stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are much less invasive than surgery and, therefore, require minimal downtown. These therapies are safe and conservative arthritis knee treatments to help relieve the disabling symptoms of knee arthritis.\r\n<h3>References</h3>\r\n(1) Zhao AT, Caballero CJ, Nguyen LT, Vienne HC, Lee C, Kaye AD. A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee. Orthopedic Reviews. 2022 May 31;14(4):33921.\r\n\r\n(2) Chen YW, Lin YN, Chen HC, Liou TH, Liao CD, Huang SW. Effectiveness, Compliance, and Safety of Dextrose Prolotherapy for Knee Osteoarthritis: A Meta-Analysis and Metaregression of Randomized Controlled Trials. Clinical Rehabilitation. 2022 Jun;36(6):740-52.\r\n\r\n(3) Pan PJ, Wang JC, Tsai CC, Kuo HC. Identification of early response to hypertonic dextrose prolotherapy markers in knee osteoarthritis patients by an inflammation-related cytokine array. J Chin Med Assoc. 2022 Jan 11. doi: 10.1097/JCMA.0000000000000693. Epub ahead of print. PMID: 35019866.\r\n\r\n(4) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951','Arthritis Knee Treatment','','publish','closed','open','','arthritis-knee-treatment','','','2023-03-15 19:20:57','2023-03-15 19:20:57','',0,'https://www.drfields.com/?p=5715',0,'post','',0),(5716,8,'2023-03-13 04:06:43','2023-03-13 04:06:43','Prolotherapy Knee Arthritis (1)','Prolotherapy Knee Arthritis (1)','Prolotherapy Knee Arthritis (1)','inherit','closed','closed','','prolotherapy-knee-arthritis-1','','','2023-03-13 04:06:43','2023-03-13 04:06:43','',5715,'https://www.drfields.com/wp-content/uploads/2023/03/Prolotherapy-Knee-Arthritis-1.png',0,'attachment','image/png',0),(5717,8,'2023-03-13 04:08:17','2023-03-13 04:08:17','<img class=\"wp-image-5716 alignright\" title=\"Arthritis Knee Treatment\" src=\"https://www.drfields.com/wp-content/uploads/2023/03/Prolotherapy-Knee-Arthritis-1-500x419.png\" alt=\"Arthritis Knee Treatment\" width=\"300\" height=\"251\" />Knee arthritis can really put a damper on doing the activities you love. When the degeneration of arthritis interferes with your life, there is an arthritis knee treatment that can get you back to doing what you love. Regenerative Orthopedics are treatments that can repair the arthritic knee without surgery.\r\n\r\nIf you have knee arthritis, you most likely have already tried over-the-counter medications to help with the symptoms. You may even be bracing. Or you\'ve received cortisone injections to give relief from the pain and swelling.\r\n\r\nYour physician may have even recommended surgery. You may have already had surgery! But unfortunately, even after all of these treatments, you continue to experience symptoms that are interfering with your life.\r\n\r\nWhat can you do now that you\'ve tried all kinds of treatments that you thought would help but didn\'t? The good news is, Regenerative Orthopedics is a treatment that can repair the knee and boost function and mobility. Plus, it\'s non-surgical!\r\n<h2>Regenerative Orthopedics, Includes Prolotherapy, PRP, and Stem Cells</h2>\r\nProlotherapy, PRP, and Stem Cells are all arthritis knee treatments. The journal Orthopedic Reviews says this about Prolotherapy: “Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy. Although there is heterogeneity between studies with regard to study variables, the results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment.\" (1)\r\n\r\nAnd the journal Clinical Rehabilitation says, \"Compared with placebo injection and noninvasive control therapy, dextrose Prolotherapy had favorable effects on pain, global function, and quality of life during the overall follow-up.\"(2)\r\n\r\nAnother study from Taiwan concluded, \"In this study, after receiving hypertonic dextrose prolotherapy, the osteoarthritis patients clearly demonstrated a significant improvement in WOMAC index and increasing tendency in the medial minimum joint space width after intervention. (3)\r\n\r\nProlotherapy is not a new treatment. It\'s been around for decades. As a non-surgical regenerative injection therapy, Prolotherapy treats joints, ligaments, and other joint structures and promotes repair of these tissues. It is simple, yet extremely effective! Arthritis is a degenerative disease that progressively destroys the knee joint. Prolotherapy is an answer for many because this arthritis knee treatment repairs and regenerates the knee.\r\n<h2>Arthritis Knee Treatment for More Severe Arthritis</h2>\r\nIn cases where the arthritis in the knee is more severe, PRP and Stem Cells may be recommended. Fortunately, at OrthoRegen®, we have years of experience using the Gold Standard in Stem Cells for the repair of arthritic knees.\r\n\r\nOrthoRegen® offers stem cell therapy utilizing mesenchymal stem cells from bone marrow and adipose. The Gold Standard in Stem Cell Therapy includes two types of Stem Cells, plus PRP to augment the stem cells, and Prolotherapy to comprehensively treat the entire knee. The Gold Standard offers the best opportunity for healing of the knee. These non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (4)\r\n\r\nOur clinicians will recommend the best regenerative therapy for your particular case to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma, Stem Cells, and Prolotherapy, stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are much less invasive than surgery and, therefore, require minimal downtown. These therapies are safe and conservative arthritis knee treatments to help you give you relief from the disabling symptoms of knee arthritis.\r\n\r\n(1) Zhao AT, Caballero CJ, Nguyen LT, Vienne HC, Lee C, Kaye AD. A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee. Orthopedic Reviews. 2022 May 31;14(4):33921.\r\n\r\n(2) Chen YW, Lin YN, Chen HC, Liou TH, Liao CD, Huang SW. Effectiveness, Compliance, and Safety of Dextrose Prolotherapy for Knee Osteoarthritis: A Meta-Analysis and Metaregression of Randomized Controlled Trials. Clinical Rehabilitation. 2022 Jun;36(6):740-52.\r\n\r\n(3) Pan PJ, Wang JC, Tsai CC, Kuo HC. Identification of early response to hypertonic dextrose prolotherapy markers in knee osteoarthritis patients by an inflammation-related cytokine array. J Chin Med Assoc. 2022 Jan 11. doi: 10.1097/JCMA.0000000000000693. Epub ahead of print. PMID: 35019866.\r\n\r\n(4) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951','Arthritis Knee Treatment','','inherit','closed','closed','','5715-revision-v1','','','2023-03-13 04:08:17','2023-03-13 04:08:17','',5715,'https://www.drfields.com/?p=5717',0,'revision','',0),(5718,8,'2023-03-13 04:09:07','2023-03-13 04:09:07','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/arthritis-knee-treatment/\">Arthritis Knee Treatment</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/back-pain-treatment/\">Back Pain Treatment</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/remedies-for-shoulder-repair/\">Remedies For Shoulder Repair</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/alternatives-for-the-red-knee-non-surgical-candidate-population/\">Alternatives for the \"Red Knee\" Non-Surgical Candidate Population</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-in-newport-beach-ca-area-regenerate-knee-cartilage-with-bone-marrow-concentrate-and-prp/\">Stem Cell Therapy in Newport Beach, CA Area</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/regenerative-orthopedics/\">Regenerative Orthopedics: Growing in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/prolotherapy-the-answer-for-joint-repair/\">Prolotherapy – The Answer for Joint Repair</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/new-studies-reveal-cortisone-injections-make-knee-arthritis-worse/\">New Studies Reveal Cortisone Injections Make Knee Arthritis Worse</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/stem-cell-injections-in-los-angeles-ca/\">Stem Cell Injections in Los Angeles, CA</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-03-13 04:09:07','2023-03-13 04:09:07','',2109,'https://www.drfields.com/?p=5718',0,'revision','',0),(5719,9,'2023-03-15 19:20:33','2023-03-15 19:20:33','<h2><img class=\"wp-image-5716 alignright\" title=\"Arthritis Knee Treatment\" src=\"https://www.drfields.com/wp-content/uploads/2023/03/Prolotherapy-Knee-Arthritis-1-500x419.png\" alt=\"Arthritis Knee Treatment\" width=\"300\" height=\"251\" />Arthritis Knee Treatment</h2>\nKnee arthritis can put a damper on doing the activities you love. When the degeneration of arthritis interferes with your life, there is an arthritis knee treatment that can get you back to doing what you love. Regenerative Orthopedics are treatments that can repair the arthritic knee without surgery.\n\nIf you have knee arthritis, you most likely have already tried over-the-counter medications to help with the symptoms. You may even be bracing. Or you\'ve received cortisone injections to relieve the pain and swelling.\n\nYour physician may have even recommended surgery. You may have already had surgery! But unfortunately, even after all of these treatments, you continue to experience symptoms that are interfering with your life.\n\nWhat can you do now that you\'ve tried all kinds of treatments that you thought would help but didn\'t? The good news is, Regenerative Orthopedics is a treatment that can repair the knee and boost function and mobility. Plus, it\'s non-surgical!\n<h2>Regenerative Orthopedics, Includes Prolotherapy, PRP, and Stem Cells</h2>\nProlotherapy, PRP, and Stem Cells are all arthritis knee treatments. The journal Orthopedic Reviews says this about Prolotherapy: “Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy. Although there is heterogeneity between studies concerning study variables, the results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment.\" (1)\n\nAnd the journal Clinical Rehabilitation says, \"Compared with placebo injection and noninvasive control therapy, dextrose Prolotherapy had favorable effects on pain, global function, and quality of life during the overall follow-up.\"(2)\n\nAnother study from Taiwan concluded, \"In this study, after receiving hypertonic dextrose prolotherapy, the osteoarthritis patients clearly demonstrated a significant improvement in WOMAC index and increasing tendency in the medial minimum joint space width after intervention. (3)\n\nProlotherapy is not a new treatment. It\'s been around for decades. As a non-surgical regenerative injection therapy, Prolotherapy treats joints, ligaments, and other joint structures and promotes the repair of these tissues. It is simple yet highly effective! Arthritis is a degenerative disease that progressively destroys the knee joint. Prolotherapy is an answer for many because this arthritis knee treatment repairs and regenerates the knee.\n<h2>Arthritis Knee Treatment for More Severe Arthritis</h2>\nIn cases where arthritis in the knee is more severe, PRP and Stem Cells may be recommended. Fortunately, at OrthoRegen®, we have years of experience using the Gold Standard in Stem Cells to repair arthritic knees.\n\nOrthoRegen® offers stem cell therapy utilizing mesenchymal stem cells from bone marrow and adipose. The Gold Standard in Stem Cell Therapy includes two types of Stem Cells, plus PRP to augment the stem cells and Prolotherapy to treat the entire knee comprehensively. The Gold Standard offers the best opportunity for healing the knee. These non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (4)\n\nOur clinicians will recommend the best regenerative therapy for your particular case to strengthen, stabilize and repair your knee.\n\nRegenerative Orthopedics, such as Platelet Rich Plasma, Stem Cells, and Prolotherapy, stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are much less invasive than surgery and, therefore, require minimal downtown. These therapies are safe and conservative arthritis knee treatments to help relieve from the disabling symptoms of knee arthritis.\n\n(1) Zhao AT, Caballero CJ, Nguyen LT, Vienne HC, Lee C, Kaye AD. A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee. Orthopedic Reviews. 2022 May 31;14(4):33921.\n\n(2) Chen YW, Lin YN, Chen HC, Liou TH, Liao CD, Huang SW. Effectiveness, Compliance, and Safety of Dextrose Prolotherapy for Knee Osteoarthritis: A Meta-Analysis and Metaregression of Randomized Controlled Trials. Clinical Rehabilitation. 2022 Jun;36(6):740-52.\n\n(3) Pan PJ, Wang JC, Tsai CC, Kuo HC. Identification of early response to hypertonic dextrose prolotherapy markers in knee osteoarthritis patients by an inflammation-related cytokine array. J Chin Med Assoc. 2022 Jan 11. doi: 10.1097/JCMA.0000000000000693. Epub ahead of print. PMID: 35019866.\n\n(4) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951','Arthritis Knee Treatment','','inherit','closed','closed','','5715-autosave-v1','','','2023-03-15 19:20:33','2023-03-15 19:20:33','',5715,'https://www.drfields.com/?p=5719',0,'revision','',0),(5720,9,'2023-03-15 19:20:57','2023-03-15 19:20:57','<h2><img class=\"wp-image-5716 alignright\" title=\"Arthritis Knee Treatment\" src=\"https://www.drfields.com/wp-content/uploads/2023/03/Prolotherapy-Knee-Arthritis-1-500x419.png\" alt=\"Arthritis Knee Treatment\" width=\"300\" height=\"251\" />Arthritis Knee Treatment</h2>\r\nKnee arthritis can put a damper on doing the activities you love. When the degeneration of arthritis interferes with your life, there is an arthritis knee treatment that can get you back to doing what you love. Regenerative Orthopedics are treatments that can repair the arthritic knee without surgery.\r\n\r\nIf you have knee arthritis, you most likely have already tried over-the-counter medications to help with the symptoms. You may even be bracing. Or you\'ve received cortisone injections to relieve the pain and swelling.\r\n\r\nYour physician may have even recommended surgery. You may have already had surgery! But unfortunately, even after all of these treatments, you continue to experience symptoms that are interfering with your life.\r\n\r\nWhat can you do now that you\'ve tried all kinds of treatments that you thought would help but didn\'t? The good news is, Regenerative Orthopedics is a treatment that can repair the knee and boost function and mobility. Plus, it\'s non-surgical!\r\n<h2>Regenerative Orthopedics, Includes Prolotherapy, PRP, and Stem Cells</h2>\r\nProlotherapy, PRP, and Stem Cells are all arthritis knee treatments. The journal Orthopedic Reviews says this about Prolotherapy: “Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy. Although there is heterogeneity between studies concerning study variables, the results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment.\" (1)\r\n\r\nAnd the journal Clinical Rehabilitation says, \"Compared with placebo injection and noninvasive control therapy, dextrose Prolotherapy had favorable effects on pain, global function, and quality of life during the overall follow-up.\"(2)\r\n\r\nAnother study from Taiwan concluded, \"In this study, after receiving hypertonic dextrose prolotherapy, the osteoarthritis patients clearly demonstrated a significant improvement in WOMAC index and increasing tendency in the medial minimum joint space width after intervention. (3)\r\n\r\nProlotherapy is not a new treatment. It\'s been around for decades. As a non-surgical regenerative injection therapy, Prolotherapy treats joints, ligaments, and other joint structures and promotes the repair of these tissues. It is simple yet highly effective! Arthritis is a degenerative disease that progressively destroys the knee joint. Prolotherapy is an answer for many because this arthritis knee treatment repairs and regenerates the knee.\r\n<h2>Arthritis Knee Treatment for More Severe Arthritis</h2>\r\nIn cases where arthritis in the knee is more severe, PRP and Stem Cells may be recommended. Fortunately, at OrthoRegen®, we have years of experience using the Gold Standard in Stem Cells to repair arthritic knees.\r\n\r\nOrthoRegen® offers stem cell therapy utilizing mesenchymal stem cells from bone marrow and adipose. The Gold Standard in Stem Cell Therapy includes two types of Stem Cells, plus PRP to augment the stem cells and Prolotherapy to treat the entire knee comprehensively. The Gold Standard offers the best opportunity for healing the knee. These non-surgical regenerative treatments stimulate natural healing repair in the knee and rebuild the injured tissue. (4)\r\n\r\nOur clinicians will recommend the best regenerative therapy for your particular case to strengthen, stabilize and repair your knee.\r\n\r\nRegenerative Orthopedics, such as Platelet Rich Plasma, Stem Cells, and Prolotherapy, stimulate tendon, ligament, and cartilage repair. These treatments are non-surgical, in-office procedures that are much less invasive than surgery and, therefore, require minimal downtown. These therapies are safe and conservative arthritis knee treatments to help relieve the disabling symptoms of knee arthritis.\r\n<h3>References</h3>\r\n(1) Zhao AT, Caballero CJ, Nguyen LT, Vienne HC, Lee C, Kaye AD. A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee. Orthopedic Reviews. 2022 May 31;14(4):33921.\r\n\r\n(2) Chen YW, Lin YN, Chen HC, Liou TH, Liao CD, Huang SW. Effectiveness, Compliance, and Safety of Dextrose Prolotherapy for Knee Osteoarthritis: A Meta-Analysis and Metaregression of Randomized Controlled Trials. Clinical Rehabilitation. 2022 Jun;36(6):740-52.\r\n\r\n(3) Pan PJ, Wang JC, Tsai CC, Kuo HC. Identification of early response to hypertonic dextrose prolotherapy markers in knee osteoarthritis patients by an inflammation-related cytokine array. J Chin Med Assoc. 2022 Jan 11. doi: 10.1097/JCMA.0000000000000693. Epub ahead of print. PMID: 35019866.\r\n\r\n(4) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders. 2013 Jan;6:CMAMD-S10951','Arthritis Knee Treatment','','inherit','closed','closed','','5715-revision-v1','','','2023-03-15 19:20:57','2023-03-15 19:20:57','',5715,'https://www.drfields.com/?p=5720',0,'revision','',0),(5721,9,'2023-03-15 19:24:53','2023-03-15 19:24:53','<h2>Hand Injury Treatment</h2>\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"ThzUVq3rx2Y\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg\" alt=\"Hand Injury Treatment Suzie Wrist\"]\r\n<strong>Suzie - Wrist</strong></div>\r\n<h4>Prolotherapy Hand and Wrist Injuries and Treatment</h4>\r\nWhether you suffer from a sprained finger from football or baseball or wrist pain from tennis or golf, OrthoRegen<sup>®</sup> treats numerous finger, hand, and wrist injuries with comprehensive <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/ \">Prolotherapy</a> hand treatments. We can treat your pain or injury without surgery, without pain medications, or without extended time away from training and competition.\r\n\r\nIn our experience, comprehensive Prolotherapy can successfully treat pain in your fingers, hands and wrists, with optimal long-term results. Dr. Fields, <a href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">The Athletic Doc<sup>®</sup></a>, can consult with you to determine if you are a candidate for <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. Because of his participation in Triathlons and Ironman competitions, he understands your desire to return quickly to the sports in which you participate.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h4>Common Hand and Wrist Injuries are Treatable by Prolotherapy</h4>\r\nThe most common finger, wrist, and hand pain and injuries we treat with comprehensive Prolotherapy are:\r\n<ul>\r\n 	<li>Arthritis</li>\r\n 	<li>Baseball injuries</li>\r\n 	<li>Carpal tunnel</li>\r\n 	<li>Finger pain</li>\r\n 	<li>Football injuries</li>\r\n 	<li>Golf injuries</li>\r\n 	<li>Hand pain</li>\r\n 	<li>Overuse injury</li>\r\n 	<li>Sprain injury</li>\r\n 	<li>Stiffness</li>\r\n 	<li>Tennis injuries</li>\r\n 	<li>Thumb pain</li>\r\n 	<li>Wrist pain</li>\r\n</ul>\r\n<h4>Are You A Candidate for Prolotherapy?</h4>\r\nDr. Fields and our staff at OrthoRegen<sup>®</sup> offer traditional Dextrose Prolotherapy hand injury treatments, <a href=\"https://www.drfields.com/regenerative-techniques/prp-treatment/\">PRP Prolotherapy,</a> and <a href=\"/regenerative-techniques/stem-cell-treatment/\">Stem Cell Prolotherapy</a>. To see if you are a candidate for one of our Prolotherapy treatments or for a second opinion for a recommended surgery, contact us for a consultation, OrthoRegen<sup>®</sup>, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\nStill not convinced? Check out the testimonials on this page and on our <a href=\"https://www.drfields.com/Testimonials/Knee-Testimonials/\">Prolotherapy Hand and Wrist Testimonials page</a>.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>','Hand Injury Treatment','','inherit','closed','closed','','615-revision-v1','','','2023-03-15 19:24:53','2023-03-15 19:24:53','',615,'https://www.drfields.com/?p=5721',0,'revision','',0),(5722,9,'2023-03-15 19:30:21','2023-03-15 19:30:21','<h4>Prolotherapy for Chronic Shoulder Pain</h4>\n[caption id=\"attachment_5599\" align=\"alignnone\" width=\"500\"]<img class=\"size-medium wp-image-5599\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/shoulder-pain.-Hauser-500x419.png\" alt=\"Shoulder Pain. Hauser\" width=\"500\" height=\"419\" /> Shoulder Pain. Hauser[/caption]\n\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Mark-Neck\"]\n<strong>Wilbur - Shoulder</strong></div>\nIt\'s easy to take your own body for granted when your body is working well. But when a part of your body, such as your shoulder, begins to hurt or hurts for an extended period, you quickly realize how much you depend on your shoulders for reaching, raising your arm, lifting yourself up, or even just opening a cupboard. That\'s why so many people with shoulder pain or injuries look to <strong>Prolotherapy for chronic shoulder pain</strong> treatment.\n<h4>Causes of Shoulder Pain</h4>\nThe muscles and joints of the shoulder allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso, and allow the arm to move a full 360°. This tremendous range of motion also makes the shoulder extremely unstable and far more prone to dislocation and injury than other joints.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n\nBecause the rounded head or ball of the upper arm bone (humerus) is larger than the socket of the shoulder bone (scapula), this area is especially susceptible to injury. The shoulder joint consists of bones, muscles, and ligaments subject to stress and overuse.\n\nCommon causes of shoulder pain can be:\n<ul>\n 	<li>Tendonitis</li>\n 	<li>Bursitis</li>\n 	<li>Dislocation and attendant injury</li>\n 	<li>Impingement syndrome</li>\n 	<li>Rotator cuff tear</li>\n 	<li>Adhesive capsulated (frozen shoulder)</li>\n 	<li>Fracture</li>\n 	<li>Poor posture.</li>\n</ul>\nBut the <strong>most common cause of chronic pain in the shoulder is arthritis</strong>. This can take many forms, such as osteoarthritis, rheumatoid, traumatic, and gouty arthritis.\n\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\n<h4>Which Kind of Shoulder Pain Do You Have?</h4>\nIf you are experiencing pain from a rotator cuff injury, you will feel a dull aching pain, which worsens with movement.  A rotator cuff injury includes any irritation or damage to your <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> muscles or tendons. Causes of a rotator cuff injury may include falling, lifting, and repetitive arm activities — especially those done overhead.\n\n<strong>Shoulder tendonitis</strong> can produce symptoms including a slow onset of discomfort, pain in the upper third of your arm, and difficulty sleeping on the side of that arm.\n\nRedness and swelling that is tender and warm to the touch can be caused by <strong>bursitis</strong>.\n\nMinor shoulder pain, ‘clicking,’ ‘giving way,’ or frozen shoulder are symptoms of <strong>arthritis</strong>. Osteoarthritis can begin as early as thirty, but symptoms can appear later as the condition progresses.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\n<h4>How Prolotherapy Is Used To Treat Chronic Shoulder Pain</h4>\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\n\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\n\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons, and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\n\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder ligaments, tendons, or joints, to boost healing in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\n<h4>Are you a Candidate For Prolotherapy for Chronic Shoulder Pain?</h4>\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training, and living an everyday life during the recovery process. Prolotherapy for chronic shoulder pain is one of the few treatments that encourages movement post-treatment. Movement aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, shoulder surgery requires you to\n\nreduce activity after treatment.\n\nAre you a candidate for Prolotherapy for your chronic shoulder pain? Would you like a <strong>second opinion before you have irreversible shoulder surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Chronic Shoulder Pain','','inherit','closed','closed','','511-autosave-v1','','','2023-03-15 19:30:21','2023-03-15 19:30:21','',511,'https://www.drfields.com/?p=5722',0,'revision','',0),(5723,9,'2023-03-15 19:30:47','2023-03-15 19:30:47','<h4>Prolotherapy for Chronic Shoulder Pain</h4>\r\n<img class=\" wp-image-5599\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/shoulder-pain.-Hauser-500x419.png\" alt=\"Shoulder Pain. Hauser\" width=\"428\" height=\"358\" />\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Wilbur - Shoulder</strong></div>\r\nIt\'s easy to take your own body for granted when your body is working well. But when a part of your body, such as your shoulder, begins to hurt or hurts for an extended period, you quickly realize how much you depend on your shoulders for reaching, raising your arm, lifting yourself up, or even just opening a cupboard. That\'s why so many people with shoulder pain or injuries look to <strong>Prolotherapy for chronic shoulder pain</strong> treatment.\r\n<h4>Causes of Shoulder Pain</h4>\r\nThe muscles and joints of the shoulder allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso, and allow the arm to move a full 360°. This tremendous range of motion also makes the shoulder extremely unstable and far more prone to dislocation and injury than other joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nBecause the rounded head or ball of the upper arm bone (humerus) is larger than the socket of the shoulder bone (scapula), this area is especially susceptible to injury. The shoulder joint consists of bones, muscles, and ligaments subject to stress and overuse.\r\n\r\nCommon causes of shoulder pain can be:\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation and attendant injury</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Adhesive capsulated (frozen shoulder)</li>\r\n 	<li>Fracture</li>\r\n 	<li>Poor posture.</li>\r\n</ul>\r\nBut the <strong>most common cause of chronic pain in the shoulder is arthritis</strong>. This can take many forms, such as osteoarthritis, rheumatoid, traumatic, and gouty arthritis.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Which Kind of Shoulder Pain Do You Have?</h4>\r\nIf you are experiencing pain from a rotator cuff injury, you will feel a dull aching pain, which worsens with movement.  A rotator cuff injury includes any irritation or damage to your <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> muscles or tendons. Causes of a rotator cuff injury may include falling, lifting, and repetitive arm activities — especially those done overhead.\r\n\r\n<strong>Shoulder tendonitis</strong> can produce symptoms including a slow onset of discomfort, pain in the upper third of your arm, and difficulty sleeping on the side of that arm.\r\n\r\nRedness and swelling that is tender and warm to the touch can be caused by <strong>bursitis</strong>.\r\n\r\nMinor shoulder pain, ‘clicking,’ ‘giving way,’ or frozen shoulder are symptoms of <strong>arthritis</strong>. Osteoarthritis can begin as early as thirty, but symptoms can appear later as the condition progresses.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<h4>How Prolotherapy Is Used To Treat Chronic Shoulder Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons, and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder ligaments, tendons, or joints, to boost healing in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Shoulder Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training, and living an everyday life during the recovery process. Prolotherapy for chronic shoulder pain is one of the few treatments that encourages movement post-treatment. Movement aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, shoulder surgery requires you to\r\n\r\nreduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic shoulder pain? Would you like a <strong>second opinion before you have irreversible shoulder surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Chronic Shoulder Pain','','inherit','closed','closed','','511-revision-v1','','','2023-03-15 19:30:47','2023-03-15 19:30:47','',511,'https://www.drfields.com/?p=5723',0,'revision','',0),(5724,9,'2023-03-15 19:30:57','2023-03-15 19:30:57','<h4>Prolotherapy for Chronic Shoulder Pain</h4>\r\n<img class=\"wp-image-5599 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/shoulder-pain.-Hauser-500x419.png\" alt=\"Shoulder Pain. Hauser\" width=\"428\" height=\"358\" />\r\n<div class=\"youtube-click-div video_left\">[video_lightbox_youtube video_id=\"VkDlCmTq6dE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg\" alt=\"Mark-Neck\"]\r\n<strong>Wilbur - Shoulder</strong></div>\r\nIt\'s easy to take your own body for granted when your body is working well. But when a part of your body, such as your shoulder, begins to hurt or hurts for an extended period, you quickly realize how much you depend on your shoulders for reaching, raising your arm, lifting yourself up, or even just opening a cupboard. That\'s why so many people with shoulder pain or injuries look to <strong>Prolotherapy for chronic shoulder pain</strong> treatment.\r\n<h4>Causes of Shoulder Pain</h4>\r\nThe muscles and joints of the shoulder allow it to move through a remarkable range of motion, making it one of the most mobile joints in the human body. The shoulder can rotate, be raised in front of and behind the torso, and allow the arm to move a full 360°. This tremendous range of motion also makes the shoulder extremely unstable and far more prone to dislocation and injury than other joints.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n\r\nBecause the rounded head or ball of the upper arm bone (humerus) is larger than the socket of the shoulder bone (scapula), this area is especially susceptible to injury. The shoulder joint consists of bones, muscles, and ligaments subject to stress and overuse.\r\n\r\nCommon causes of shoulder pain can be:\r\n<ul>\r\n 	<li>Tendonitis</li>\r\n 	<li>Bursitis</li>\r\n 	<li>Dislocation and attendant injury</li>\r\n 	<li>Impingement syndrome</li>\r\n 	<li>Rotator cuff tear</li>\r\n 	<li>Adhesive capsulated (frozen shoulder)</li>\r\n 	<li>Fracture</li>\r\n 	<li>Poor posture.</li>\r\n</ul>\r\nBut the <strong>most common cause of chronic pain in the shoulder is arthritis</strong>. This can take many forms, such as osteoarthritis, rheumatoid, traumatic, and gouty arthritis.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Which Kind of Shoulder Pain Do You Have?</h4>\r\nIf you are experiencing pain from a rotator cuff injury, you will feel a dull aching pain, which worsens with movement.  A rotator cuff injury includes any irritation or damage to your <a href=\"https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries\">rotator cuff</a> muscles or tendons. Causes of a rotator cuff injury may include falling, lifting, and repetitive arm activities — especially those done overhead.\r\n\r\n<strong>Shoulder tendonitis</strong> can produce symptoms including a slow onset of discomfort, pain in the upper third of your arm, and difficulty sleeping on the side of that arm.\r\n\r\nRedness and swelling that is tender and warm to the touch can be caused by <strong>bursitis</strong>.\r\n\r\nMinor shoulder pain, ‘clicking,’ ‘giving way,’ or frozen shoulder are symptoms of <strong>arthritis</strong>. Osteoarthritis can begin as early as thirty, but symptoms can appear later as the condition progresses.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">  Schedule Your Appointment Today!</a>\r\n<h4>How Prolotherapy Is Used To Treat Chronic Shoulder Pain</h4>\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not remove the cause of the pain.\r\n\r\nDr. Fields may be able to <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/\">treat your chronic pain with prolotherapy</a>. It just depends on the cause of your particular pain.\r\n\r\nMost of the time, musculoskeletal pain is due to weakness in the ligaments, tendons, and possibly cartilage. Prolotherapy can <strong>regenerate these damaged tissues</strong> and ultimately alleviate the problem causing the pain.\r\n\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected shoulder ligaments, tendons, or joints, to boost healing in that area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n<h4>Are you a Candidate For Prolotherapy for Chronic Shoulder Pain?</h4>\r\nOur goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working, training, and living an everyday life during the recovery process. Prolotherapy for chronic shoulder pain is one of the few treatments that encourages movement post-treatment. Movement aids the healing process after <a title=\"Prolotherapy\" href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a>. By contrast, shoulder surgery requires you to\r\n\r\nreduce activity after treatment.\r\n\r\nAre you a candidate for Prolotherapy for your chronic shoulder pain? Would you like a <strong>second opinion before you have irreversible shoulder surgery</strong>? The only way to know for sure is to get a consultation. <a href=\"/contact/\">Contact Us today</a> for a consultation or call Dr. Fields at <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Chronic Shoulder Pain','','inherit','closed','closed','','511-revision-v1','','','2023-03-15 19:30:57','2023-03-15 19:30:57','',511,'https://www.drfields.com/?p=5724',0,'revision','',0),(5725,8,'2023-03-16 03:57:55','2023-03-16 03:57:55','<img class=\"alignleft size-full wp-image-288\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" /><u><strong>Fee’s and Payment/Insurance Policies</strong></u> <a href=\"https://www.drfields.com/about/fees-policies/\" rel=\"noopener noreferrer\">Click Here</a>\r\n\r\n<u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h6>Fees</h6>\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time.\r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img class=\"alignright\" style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" width=\"275\" /></a>\r\nInitial Regenerative Orthopedic Consultation: <strong>$550</strong>\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (fingers, toes, TMJ): <strong>$500</strong>\r\nMedium Joint (knee, shoulder, Wrist): <strong>$600</strong>\r\nLarge Joint (hip, Neck, Mid Back, or Low Back): <strong>$900</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n<h6>PRP Charges</h6>\r\nPRP Small joint: <strong>$1100</strong>\r\nPRP Medium joint: <strong>$1300</strong>\r\nPRP Large joint: <strong>$1600</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Questions + Costs','','inherit','closed','closed','','2536-revision-v1','','','2023-03-16 03:57:55','2023-03-16 03:57:55','',2536,'https://www.drfields.com/?p=5725',0,'revision','',0),(5727,8,'2023-03-23 03:38:58','2023-03-23 03:38:58','<img class=\"alignleft size-full wp-image-288\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg\" alt=\"Mother Child Reading\" width=\"200\" height=\"300\" /><u><strong>Are medical records or MRI’s/X-rays necessary?</strong></u>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report (reading) of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRI’s or x-rays are not absolutely necessary but may be brought with you.\r\n\r\n<u><strong>How long is each visit?</strong></u>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n\r\n<u><strong>Do I receive a Prolotherapy treatment on the initial visit?</strong></u>\r\nIf after history and examination it is determined that you are a prolotherapy candidate, then you will receive Prolotherapy on your first visit.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h6>Fees</h6>\r\nFor your first visit:\r\nA complete Regenerative Orthopedics history and physical is done at that time.\r\nThis takes approximately 30-40 minutes.\r\nThen the treatment options are explained (prices below).\r\n<a href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img class=\"alignright\" style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" width=\"275\" /></a>\r\nInitial Regenerative Orthopedic Consultation: <strong>$550</strong>\r\n<h6>Prolotherapy Charges</h6>\r\nSmall Joint (fingers, toes, TMJ): <strong>$500</strong>\r\nMedium Joint (knee, shoulder, Wrist): <strong>$600</strong>\r\nLarge Joint (hip, Neck, Mid Back, or Low Back): <strong>$900</strong>\r\nStem Cell Therapy: <strong>Please call for pricing</strong>\r\n<h6>PRP Charges</h6>\r\nPRP Small joint: <strong>$1100</strong>\r\nPRP Medium joint: <strong>$1300</strong>\r\nPRP Large joint: <strong>$1600</strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n\r\n<strong>Payment Policy</strong>\r\n\r\nInvesting in your health should be very important to you. Since the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n\r\nAs a <strong>Fee for Service Office</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\nWe accept credit cards, checks, or cash for payment of services.\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. <u><strong>We cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nWe <u>do not subscribe to any insurance networks.</u> Insurance billing can be up to 40 percent of a medical office\'s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n\r\nRemember that health insurance is a contract between you and your insurance carrier.\r\n\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover - only whether they cover it or not. Most insurance companies cover MD\'s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr Fields\' medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n\r\n<u><strong>We cannot bill Medicare or Medi-cal since we are not a provider.</strong></u>\r\nPlease do not ask us to attempt this as it is not possible.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Questions + Costs','','inherit','closed','closed','','2536-revision-v1','','','2023-03-23 03:38:58','2023-03-23 03:38:58','',2536,'https://www.drfields.com/?p=5727',0,'revision','',0),(5728,8,'2023-03-27 02:20:27','2023-03-27 02:20:27','<h2>Best Treatment for Low Back Pain</h2>\r\nIf you or someone you love is suffering from back pain, you understand the search for an answer for the resolution of the pain. The search for relief  or the best treatment for low back pain, can go on year after year.\r\n\r\nBack pain sufferers have tried many different treatment options like supplements, painkillers, anti-inflammatories, antidepressants, massage, manipulation, and possibly even surgery. But are these the best treatments for lower back pain?\r\n<h2>Why Do These Common Treatments Fail to Give Relief?</h2>\r\n<img class=\"alignright wp-image-5729\" src=\"https://www.drfields.com/wp-content/uploads/2023/03/DDD-Treatment-2-500x419.png\" alt=\"Best Treatments for Low Back Pain\" width=\"300\" height=\"251\" />Unfortunately, these common treatments for back pain do not address the real problem. Sure, they may address pain or inflammation, but pain and inflammation are symptoms of the underlying problem. What is the root cause of the pain and inflammation?\r\n\r\nVery often, the underlying problem causing back pain is instability. Instability in the back occurs when the ligaments connecting bone to bone become injured. Once ligaments are injured, they become more lax or loose. With this laxness comes abnormal motion in the joints.\r\n\r\nYou\'ve probably noticed that back pain comes and goes for many people. Back pain may be worse on some days and better on others. And when back pain is chronic, it continually comes back. Why does the pain always come back? If the underlying instability problem is not addressed, then the pain medications and anti-inflammatories only touch the symptoms of pain and inflammation. They do not repair the instability and abnormal motion in the vertebrae.\r\n<h2>What About Pain Medications? Are They the Best Treatment for Low Back Pain?</h2>\r\nCare for chronic low back pain is often very frustrating to clinicians and patients. It\'s frustrating because the commonly used treatments come up short. The Journal of Orthopaedic Surgery and Research says this, <em>\"The benefits are just not there to justify the routine prolonged use of any given drug in nonspecific chronic low back pain: this is a major challenge, and it is often hard to accept for clinicians and patients . . . ”(1)</em><em> </em>\r\n\r\nThere is also a subset of patients that have been prescribed narcotic pain relievers. Do these help long-term? The Journal of Osteopathic Medicine says,<em> \"Long-term opioid use (more than 12 months) patients had a worse disability, physical function, fatigue, and other pain-related problems including the earlier onset of sleep disturbance.\"(2) </em>As you can see, opioids do not help long-term, but rather increase disability.\r\n<h2>When Physical Therapy or Manipulation Aren\'t Working</h2>\r\nPhysical therapy and chiropractic manipulation are great treatment modalities and are effective in many cases of back pain. However, if the back pain is still an issue after the recommended treatments, ligament injury should be looked into, and Regenerative Orthopedics should be sought.\r\n<h2>What Can Repair the Abnormal Motion or Instability?</h2>\r\nRegenerative Orthopedic treatments repair the underlying damage to the ligaments and any involved tendons. These injured soft tissues naturally have a poor blood supply. But Regenerative Orthopedics boosts the blood supply to the ligaments. This increased blood supply helps the body to heal and repair. The result? The back is strengthening, the abnormal joint motion is stabilized, and the back pain sufferer experiences decreased pain and increased function!\r\n<h2>But I Have Disc Problems, What About That?</h2>\r\nEven if you have disc problems, the underlying problem can likely be instability. The injured ligaments allow for abnormal motion in the vertebrae and increase problems with the discs. Spinal ligament damage is at the core of the problem.\r\n\r\nIn degenerative disc disease, the disc height increases, and the lax ligaments lose tension. The vertebrae move even more, and the lack of stabilization increases pain in the discs and other spinal joint structures.\r\n\r\nIn many instances, the common underlying low back pain complaints, including arthritis and loss of spinal curve, are largely due to ligament injury. Instability in the spine is at the root of most chronic spinal pain.<em>  </em>\r\n<h2>The Most Common Cause of Unresolved Back Pain is Spinal Instability</h2>\r\nMuscles are one of the stabilizing structures of the spine. If the injury in the back is muscular, standard treatments will address the pain. The intervertebral discs and surrounding ligaments also hold together and stabilize the spine.\r\n\r\nWhen these standard treatments do not solve the problem of low back pain, underlying ligament damage and spinal instability need to be addressed. And the best treatment for back pain due to ligament damage is Regenerative Orthopedics.\r\n<h2>The Best Treatment for Low Back Pain Gets to the Underlying Issue</h2>\r\nOver time, after a traumatic injury, the ligaments will start to elongate and become loose and lax. Physically demanding activities or even sedentary postures can lead to this gradual loosening over time. Muscle spasms will develop because of these elongated ligaments. Swelling may occur, and eventually, arthritis will develop as the body attempts to stabilize the area by creating bone spurs.\r\n\r\nRegenerative Orthopedics strengthens the ligaments of the spine and prevents further degeneration. It gets to the underlying issue causing low back pain. Prolotherapy is a type of Regenerative Orthopedics. Researchers in the Journal of Prolotherapy say, “<em>In comparison to other soft tissues, ligaments have less vascularity. Once injured or degenerated, this lack of blood supply may delay healing. Prolotherapy may offer the stimulus for ligament regeneration.\"(3)</em>\r\n\r\nThe <em>Journal of Back and Musculoskeletal Rehabilitation</em> concluded, <em>“Prolotherapy can be regarded as a safe way of providing a meaningful improvement in pain and musculoskeletal function compared to the initial status. ...5% dextrose is a more simple and painless solution for Prolotherapy and also has a high success.”(4)</em>\r\n\r\nRemember, when back pain is an issue, the muscles may be in spasm because they are overcompensating for the injured ligaments as they try to stabilize the spine. Regenerative Orthopedics is the best treatment to repair the ligaments and get to the root of the back pain problem. Additionally, in cases of degenerative disc disease, Prolotherapy tightens the ligamentous structures and limits the abnormal vertebral motion, reducing the incidence of discogenic low back pain by improving stability.\r\n<h3>References</h3>\r\n(1)Migliorini F, Maffulli N. Choosing the appropriate pharmacotherapy for nonspecific chronic low back pain. Journal of Orthopaedic Surgery and Research. 2022 Dec;17(1):1-3.\r\n\r\n(2)Schultz MJ, Licciardone JC. The effect of long-term opioid use on back-specific disability and health-related quality of life in patients with chronic low back pain. Journal of Osteopathic Medicine. 2022 Aug 11.\r\n\r\n(3)Inklebarger J, Petrides S, Prolotherapy for Lumbar Segmental Instability Associated with Degenerative Disc Disease. Journal of Prolotherapy. 2016;8:e971-e977.\r\n\r\n(4)Solmaz I, Orscelik A, Koroglu O. Modified prolotherapy by 5% dextrose: Two years experiences of a traditional and complementary medicine practice center in Turkey. Journal of Back and Musculoskeletal Rehabilitation. 2021(Preprint):1-8.','Best Treatments for Low Back Pain','','publish','closed','open','','best-treatments-for-low-back-pain','','','2023-03-31 16:53:24','2023-03-31 16:53:24','',0,'https://www.drfields.com/?p=5728',0,'post','',0),(5729,8,'2023-03-27 02:19:24','2023-03-27 02:19:24','Ddd Treatment (2)','Best Treatments for Low Back Pain','','inherit','closed','closed','','ddd-treatment-2','','','2023-03-27 02:19:55','2023-03-27 02:19:55','',5728,'https://www.drfields.com/wp-content/uploads/2023/03/DDD-Treatment-2.png',0,'attachment','image/png',0),(5730,8,'2023-03-27 02:20:27','2023-03-27 02:20:27','If you or someone you love is suffering from back pain, you understand the search for an answer for the resolution of the pain. The search can go on year after year, as relief is sought.\r\n\r\nBack pain sufferers have surely tried many different treatment options like supplements, painkillers, anti-inflammatories, antidepressants, massage, manipulation, and possibly even surgery. But are these the best treatments for lower back pain?\r\n<h2>Why Do These Common Treatments Fail to Give Relief?</h2>\r\n<img class=\"alignright wp-image-5729\" src=\"https://www.drfields.com/wp-content/uploads/2023/03/DDD-Treatment-2-500x419.png\" alt=\"Best Treatments for Low Back Pain\" width=\"300\" height=\"251\" />Unfortunately, these common treatments for back pain do not address the real problem. Sure, they may address pain or they may address inflammation, but pain and inflammation are symptoms of the underlying problem. What is the root cause of the pain and inflammation?\r\n\r\nVery often, the underlying problem causing back pain is instability. Instability in the back occurs when the ligaments connecting bone to bone become injured. Once ligaments are injured, they become more lax or loose. With this laxness comes abnormal motion in the joints.\r\n\r\nYou\'ve probably noticed that for many people, back pain comes and goes. Back pain may be worse on some days and better on others. And when back pain is chronic, it continually comes back. Why does the pain always come back? If the underlying problem of the instability is not addressed, then the pain medications and anti-inflammatories are only touching the symptoms of pain and inflammation. They do not repair the instability and abnormal motion in the vertebrae.\r\n<h2>What About Pain Medications?</h2>\r\nCare for chronic low back pain is often very frustrating to both clinicians and patients. It\'s frustrating because the commonly used treatments come up short. The Journal of Orthopaedic Surgery and Research says this, <em>\"The benefits are just not there to justify the routine prolonged use of any given drug in nonspecific chronic low back pain: this is a major challenge, and it is often hard to accept for clinicians and patients . . . ”(1)</em><em> </em>\r\n\r\nThere is also a subset of patients that have been prescribed narcotic pain relievers. Do these help long-term? The Journal of Osteopathic Medicine says,<em> \"Long-term opioid use (more than 12 months) patients had a worse disability, physical function, fatigue, and other pain-related problems including the earlier onset of sleep disturbance.\"(2) </em>As you can see, opioids do not help long-term, but rather increase disability.\r\n<h2>When Physical Therapy or Manipulation Aren\'t Working</h2>\r\nPhysical therapy and chiropractic manipulation are great treatment modalities and effective in many cases of back pain. However, if after the recommended treatments, the back pain is still an issue, then ligament injury should be looked into, and Regenerative Orthopedics sought.\r\n<h2>What Can Repair the Abnormal Motion or Instability?</h2>\r\nRegenerative Orthopedic treatments repair the underlying damage to the ligaments and any involved tendons. These injured soft tissue naturally have a poor blood supply. But Regenerative Orthopedics boost the blood supply to the ligaments. This increased blood supply helps the body to heal and repair. The result? The back is strengthening, the abnormal  joint motion is stabilized, and the back pain sufferer experiences decreased pain and increased function!\r\n<h2>But I Have Disc Problems, What About That?</h2>\r\nEven if you have disc problems, the underlying problem can very likely be instability. The injured ligaments allow for abnormal motion in the vertebrae and increase problems with the discs. Spinal ligament damage is at the core of the problem.\r\n\r\nIn degenerative disc disease, the disc height increases, and the lax ligaments loose tension. The vertebrae move even more, and the lack of stabilization increases pain at the discs and other spinal joint structures.\r\n\r\nIn many instances, the common underlying low back pain complaints, including arthritis and loss of spinal curve, are in large part due to ligament injury. Instability in the spine is at the root of most chronic spinal pain.<em>  </em>\r\n<h2>The Most Common Cause of Unresolved Back Pain is Spinal Instability</h2>\r\nMuscles are one of the stabilizing structures of the spine. If injury in the back is muscular, common treatments will address the pain. The spine is also held together and stabilized by the intervertebral discs, and the surrounding ligaments.\r\n\r\nWhen these common treatments do not solve the problem of low back pain, underlying ligament damage and spinal instability need to be addressed. And the best treatment for back pain due to ligament damage is Regenerative Orthopedics.\r\n<h2>Regenerative Orthopedics Resolves the Underlying Problem</h2>\r\nOver time, after a traumatic injury has occurred, the ligaments will start to elongate and become loose and lax. Physically demanding activities or even sedentary postures can lead to this gradual loosening over time. Muscle spasms will develop because of these elongated ligaments. Swelling may occur, and eventually arthritis will develop as the body attempts to stabilize the area by the creation of bone spurs.\r\n\r\nRegenerative Orthopedics strengthen the ligaments of the spine and prevent further degeneration. Prolotherapy is a type of Regenerative Orthopedics. In the J<em>ournal of Prolotherapy</em> researchers say, “<em>In comparison to other soft tissues, ligaments have less vascularity. Once injured or degenerated, this lack of blood supply may delay healing. Prolotherapy may offer the stimulus for ligament regeneration.\"(3)</em>\r\n\r\nThe <em>Journal of Back and Musculoskeletal Rehabilitation</em> concluded, <em>“Prolotherapy can be regarded as a safe way of providing a meaningful improvement in pain and musculoskeletal function compared to the initial status. ...5% dextrose is a more simple and painless solution for Prolotherapy and also has a high success.”(4)</em>\r\n\r\nRemember, when back pain is an issue, the muscles may be in spasm because they are overcompensating for the injured ligaments as they try to stabilize the spine. Regenerative Orthopedics are the best treatment to repair the ligaments and get to the root of the back pain problem. Additionally, in cases of degenerative disc disease, Prolotherapy tightens the ligamentous structures and limits the abnormal vertebral motion, reducing the incidence of discogenic low back pain by improving stability.\r\n<h3>References</h3>\r\n(1)Migliorini F, Maffulli N. Choosing the appropriate pharmacotherapy for nonspecific chronic low back pain. Journal of Orthopaedic Surgery and Research. 2022 Dec;17(1):1-3.\r\n\r\n(2)Schultz MJ, Licciardone JC. The effect of long-term opioid use on back-specific disability and health-related quality of life in patients with chronic low back pain. Journal of Osteopathic Medicine. 2022 Aug 11.\r\n\r\n(3)Inklebarger J, Petrides S, Prolotherapy for Lumbar Segmental Instability Associated with Degenerative Disc Disease. Journal of Prolotherapy. 2016;8:e971-e977.\r\n\r\n(4)Solmaz I, Orscelik A, Koroglu O. Modified prolotherapy by 5% dextrose: Two years experiences of a traditional and complementary medicine practice center in Turkey. Journal of Back and Musculoskeletal Rehabilitation. 2021(Preprint):1-8.','Best Treatments for Low Back Pain','','inherit','closed','closed','','5728-revision-v1','','','2023-03-27 02:20:27','2023-03-27 02:20:27','',5728,'https://www.drfields.com/?p=5730',0,'revision','',0),(5731,8,'2023-03-27 02:22:51','2023-03-27 02:22:51','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li><a href=\"/articles/regenerative-orthopedics/best-treatments-for-low-back-pain/\">Best Treatments For Low Back Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/arthritis-knee-treatment/\">Arthritis Knee Treatment</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/back-pain-treatment/\">Back Pain Treatment</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/remedies-for-shoulder-repair/\">Remedies For Shoulder Repair</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/alternatives-for-the-red-knee-non-surgical-candidate-population/\">Alternatives for the \"Red Knee\" Non-Surgical Candidate Population</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-in-newport-beach-ca-area-regenerate-knee-cartilage-with-bone-marrow-concentrate-and-prp/\">Stem Cell Therapy in Newport Beach, CA Area</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/regenerative-orthopedics/\">Regenerative Orthopedics: Growing in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/prolotherapy-the-answer-for-joint-repair/\">Prolotherapy – The Answer for Joint Repair</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/new-studies-reveal-cortisone-injections-make-knee-arthritis-worse/\">New Studies Reveal Cortisone Injections Make Knee Arthritis Worse</a></li>\r\n 	</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-03-27 02:22:51','2023-03-27 02:22:51','',2109,'https://www.drfields.com/?p=5731',0,'revision','',0),(5733,9,'2023-03-31 16:53:12','2023-03-31 16:53:12','<h2>Best Treatment for Low Back Pain</h2>\nIf you or someone you love is suffering from back pain, you understand the search for an answer for the resolution of the pain. The search for relief  or the best treatment for low back pain, can go on year after year.\n\nBack pain sufferers have tried many different treatment options like supplements, painkillers, anti-inflammatories, antidepressants, massage, manipulation, and possibly even surgery. But are these the best treatments for lower back pain?\n<h2>Why Do These Common Treatments Fail to Give Relief?</h2>\n<img class=\"alignright wp-image-5729\" src=\"https://www.drfields.com/wp-content/uploads/2023/03/DDD-Treatment-2-500x419.png\" alt=\"Best Treatments for Low Back Pain\" width=\"300\" height=\"251\" />Unfortunately, these common treatments for back pain do not address the real problem. Sure, they may address pain or inflammation, but pain and inflammation are symptoms of the underlying problem. What is the root cause of the pain and inflammation?\n\nVery often, the underlying problem causing back pain is instability. Instability in the back occurs when the ligaments connecting bone to bone become injured. Once ligaments are injured, they become more lax or loose. With this laxness comes abnormal motion in the joints.\n\nYou\'ve probably noticed that back pain comes and goes for many people. Back pain may be worse on some days and better on others. And when back pain is chronic, it continually comes back. Why does the pain always come back? If the underlying instability problem is not addressed, then the pain medications and anti-inflammatories only touch the symptoms of pain and inflammation. They do not repair the instability and abnormal motion in the vertebrae.\n<h2>What About Pain Medications? Are They the Best Treatment for Low Back Pain?</h2>\nCare for chronic low back pain is often very frustrating to clinicians and patients. It\'s frustrating because the commonly used treatments come up short. The Journal of Orthopaedic Surgery and Research says this, <em>\"The benefits are just not there to justify the routine prolonged use of any given drug in nonspecific chronic low back pain: this is a major challenge, and it is often hard to accept for clinicians and patients . . . ”(1)</em><em> </em>\n\nThere is also a subset of patients that have been prescribed narcotic pain relievers. Do these help long-term? The Journal of Osteopathic Medicine says,<em> \"Long-term opioid use (more than 12 months) patients had a worse disability, physical function, fatigue, and other pain-related problems including the earlier onset of sleep disturbance.\"(2) </em>As you can see, opioids do not help long-term, but rather increase disability.\n<h2>When Physical Therapy or Manipulation Aren\'t Working</h2>\nPhysical therapy and chiropractic manipulation are great treatment modalities and are effective in many cases of back pain. However, if the back pain is still an issue after the recommended treatments, ligament injury should be looked into, and Regenerative Orthopedics should be sought.\n<h2>What Can Repair the Abnormal Motion or Instability?</h2>\nRegenerative Orthopedic treatments repair the underlying damage to the ligaments and any involved tendons. These injured soft tissues naturally have a poor blood supply. But Regenerative Orthopedics boosts the blood supply to the ligaments. This increased blood supply helps the body to heal and repair. The result? The back is strengthening, the abnormal joint motion is stabilized, and the back pain sufferer experiences decreased pain and increased function!\n<h2>But I Have Disc Problems, What About That?</h2>\nEven if you have disc problems, the underlying problem can likely be instability. The injured ligaments allow for abnormal motion in the vertebrae and increase problems with the discs. Spinal ligament damage is at the core of the problem.\n\nIn degenerative disc disease, the disc height increases, and the lax ligaments lose tension. The vertebrae move even more, and the lack of stabilization increases pain in the discs and other spinal joint structures.\n\nIn many instances, the common underlying low back pain complaints, including arthritis and loss of spinal curve, are largely due to ligament injury. Instability in the spine is at the root of most chronic spinal pain.<em>  </em>\n<h2>The Most Common Cause of Unresolved Back Pain is Spinal Instability</h2>\nMuscles are one of the stabilizing structures of the spine. If the injury in the back is muscular, standard treatments will address the pain. The intervertebral discs and surrounding ligaments also hold together and stabilize the spine.\n\nWhen these standard treatments do not solve the problem of low back pain, underlying ligament damage and spinal instability need to be addressed. And the best treatment for back pain due to ligament damage is Regenerative Orthopedics.\n<h2>The Best Treatment for Low Back Pain Gets to the Underlying Issue</h2>\nOver time, after a traumatic injury, the ligaments will start to elongate and become loose and lax. Physically demanding activities or even sedentary postures can lead to this gradual loosening over time. Muscle spasms will develop because of these elongated ligaments. Swelling may occur, and eventually, arthritis will develop as the body attempts to stabilize the area by creating bone spurs.\n\nRegenerative Orthopedics strengthens the ligaments of the spine and prevents further degeneration. It gets to the underlying issue causing low back pain. Prolotherapy is a type of Regenerative Orthopedics. Researchers in the Journal of Prolotherapy say, “<em>In comparison to other soft tissues, ligaments have less vascularity. Once injured or degenerated, this lack of blood supply may delay healing. Prolotherapy may offer the stimulus for ligament regeneration.\"(3)</em>\n\nThe <em>Journal of Back and Musculoskeletal Rehabilitation</em> concluded, <em>“Prolotherapy can be regarded as a safe way of providing a meaningful improvement in pain and musculoskeletal function compared to the initial status. ...5% dextrose is a more simple and painless solution for Prolotherapy and also has a high success.”(4)</em>\n\nRemember, when back pain is an issue, the muscles may be in spasm because they are overcompensating for the injured ligaments as they try to stabilize the spine. Regenerative Orthopedics is the best treatment to repair the ligaments and get to the root of the back pain problem. Additionally, in cases of degenerative disc disease, Prolotherapy tightens the ligamentous structures and limits the abnormal vertebral motion, reducing the incidence of discogenic low back pain by improving stability.\n<h3>References</h3>\n(1)Migliorini F, Maffulli N. Choosing the appropriate pharmacotherapy for nonspecific chronic low back pain. Journal of Orthopaedic Surgery and Research. 2022 Dec;17(1):1-3.\n\n(2)Schultz MJ, Licciardone JC. The effect of long-term opioid use on back-specific disability and health-related quality of life in patients with chronic low back pain. Journal of Osteopathic Medicine. 2022 Aug 11.\n\n(3)Inklebarger J, Petrides S, Prolotherapy for Lumbar Segmental Instability Associated with Degenerative Disc Disease. Journal of Prolotherapy. 2016;8:e971-e977.\n\n(4)Solmaz I, Orscelik A, Koroglu O. Modified prolotherapy by 5% dextrose: Two years experiences of a traditional and complementary medicine practice center in Turkey. Journal of Back and Musculoskeletal Rehabilitation. 2021(Preprint):1-8.','Best Treatments for Low Back Pain','','inherit','closed','closed','','5728-autosave-v1','','','2023-03-31 16:53:12','2023-03-31 16:53:12','',5728,'https://www.drfields.com/?p=5733',0,'revision','',0),(5734,9,'2023-03-31 16:53:24','2023-03-31 16:53:24','<h2>Best Treatment for Low Back Pain</h2>\r\nIf you or someone you love is suffering from back pain, you understand the search for an answer for the resolution of the pain. The search for relief  or the best treatment for low back pain, can go on year after year.\r\n\r\nBack pain sufferers have tried many different treatment options like supplements, painkillers, anti-inflammatories, antidepressants, massage, manipulation, and possibly even surgery. But are these the best treatments for lower back pain?\r\n<h2>Why Do These Common Treatments Fail to Give Relief?</h2>\r\n<img class=\"alignright wp-image-5729\" src=\"https://www.drfields.com/wp-content/uploads/2023/03/DDD-Treatment-2-500x419.png\" alt=\"Best Treatments for Low Back Pain\" width=\"300\" height=\"251\" />Unfortunately, these common treatments for back pain do not address the real problem. Sure, they may address pain or inflammation, but pain and inflammation are symptoms of the underlying problem. What is the root cause of the pain and inflammation?\r\n\r\nVery often, the underlying problem causing back pain is instability. Instability in the back occurs when the ligaments connecting bone to bone become injured. Once ligaments are injured, they become more lax or loose. With this laxness comes abnormal motion in the joints.\r\n\r\nYou\'ve probably noticed that back pain comes and goes for many people. Back pain may be worse on some days and better on others. And when back pain is chronic, it continually comes back. Why does the pain always come back? If the underlying instability problem is not addressed, then the pain medications and anti-inflammatories only touch the symptoms of pain and inflammation. They do not repair the instability and abnormal motion in the vertebrae.\r\n<h2>What About Pain Medications? Are They the Best Treatment for Low Back Pain?</h2>\r\nCare for chronic low back pain is often very frustrating to clinicians and patients. It\'s frustrating because the commonly used treatments come up short. The Journal of Orthopaedic Surgery and Research says this, <em>\"The benefits are just not there to justify the routine prolonged use of any given drug in nonspecific chronic low back pain: this is a major challenge, and it is often hard to accept for clinicians and patients . . . ”(1)</em><em> </em>\r\n\r\nThere is also a subset of patients that have been prescribed narcotic pain relievers. Do these help long-term? The Journal of Osteopathic Medicine says,<em> \"Long-term opioid use (more than 12 months) patients had a worse disability, physical function, fatigue, and other pain-related problems including the earlier onset of sleep disturbance.\"(2) </em>As you can see, opioids do not help long-term, but rather increase disability.\r\n<h2>When Physical Therapy or Manipulation Aren\'t Working</h2>\r\nPhysical therapy and chiropractic manipulation are great treatment modalities and are effective in many cases of back pain. However, if the back pain is still an issue after the recommended treatments, ligament injury should be looked into, and Regenerative Orthopedics should be sought.\r\n<h2>What Can Repair the Abnormal Motion or Instability?</h2>\r\nRegenerative Orthopedic treatments repair the underlying damage to the ligaments and any involved tendons. These injured soft tissues naturally have a poor blood supply. But Regenerative Orthopedics boosts the blood supply to the ligaments. This increased blood supply helps the body to heal and repair. The result? The back is strengthening, the abnormal joint motion is stabilized, and the back pain sufferer experiences decreased pain and increased function!\r\n<h2>But I Have Disc Problems, What About That?</h2>\r\nEven if you have disc problems, the underlying problem can likely be instability. The injured ligaments allow for abnormal motion in the vertebrae and increase problems with the discs. Spinal ligament damage is at the core of the problem.\r\n\r\nIn degenerative disc disease, the disc height increases, and the lax ligaments lose tension. The vertebrae move even more, and the lack of stabilization increases pain in the discs and other spinal joint structures.\r\n\r\nIn many instances, the common underlying low back pain complaints, including arthritis and loss of spinal curve, are largely due to ligament injury. Instability in the spine is at the root of most chronic spinal pain.<em>  </em>\r\n<h2>The Most Common Cause of Unresolved Back Pain is Spinal Instability</h2>\r\nMuscles are one of the stabilizing structures of the spine. If the injury in the back is muscular, standard treatments will address the pain. The intervertebral discs and surrounding ligaments also hold together and stabilize the spine.\r\n\r\nWhen these standard treatments do not solve the problem of low back pain, underlying ligament damage and spinal instability need to be addressed. And the best treatment for back pain due to ligament damage is Regenerative Orthopedics.\r\n<h2>The Best Treatment for Low Back Pain Gets to the Underlying Issue</h2>\r\nOver time, after a traumatic injury, the ligaments will start to elongate and become loose and lax. Physically demanding activities or even sedentary postures can lead to this gradual loosening over time. Muscle spasms will develop because of these elongated ligaments. Swelling may occur, and eventually, arthritis will develop as the body attempts to stabilize the area by creating bone spurs.\r\n\r\nRegenerative Orthopedics strengthens the ligaments of the spine and prevents further degeneration. It gets to the underlying issue causing low back pain. Prolotherapy is a type of Regenerative Orthopedics. Researchers in the Journal of Prolotherapy say, “<em>In comparison to other soft tissues, ligaments have less vascularity. Once injured or degenerated, this lack of blood supply may delay healing. Prolotherapy may offer the stimulus for ligament regeneration.\"(3)</em>\r\n\r\nThe <em>Journal of Back and Musculoskeletal Rehabilitation</em> concluded, <em>“Prolotherapy can be regarded as a safe way of providing a meaningful improvement in pain and musculoskeletal function compared to the initial status. ...5% dextrose is a more simple and painless solution for Prolotherapy and also has a high success.”(4)</em>\r\n\r\nRemember, when back pain is an issue, the muscles may be in spasm because they are overcompensating for the injured ligaments as they try to stabilize the spine. Regenerative Orthopedics is the best treatment to repair the ligaments and get to the root of the back pain problem. Additionally, in cases of degenerative disc disease, Prolotherapy tightens the ligamentous structures and limits the abnormal vertebral motion, reducing the incidence of discogenic low back pain by improving stability.\r\n<h3>References</h3>\r\n(1)Migliorini F, Maffulli N. Choosing the appropriate pharmacotherapy for nonspecific chronic low back pain. Journal of Orthopaedic Surgery and Research. 2022 Dec;17(1):1-3.\r\n\r\n(2)Schultz MJ, Licciardone JC. The effect of long-term opioid use on back-specific disability and health-related quality of life in patients with chronic low back pain. Journal of Osteopathic Medicine. 2022 Aug 11.\r\n\r\n(3)Inklebarger J, Petrides S, Prolotherapy for Lumbar Segmental Instability Associated with Degenerative Disc Disease. Journal of Prolotherapy. 2016;8:e971-e977.\r\n\r\n(4)Solmaz I, Orscelik A, Koroglu O. Modified prolotherapy by 5% dextrose: Two years experiences of a traditional and complementary medicine practice center in Turkey. Journal of Back and Musculoskeletal Rehabilitation. 2021(Preprint):1-8.','Best Treatments for Low Back Pain','','inherit','closed','closed','','5728-revision-v1','','','2023-03-31 16:53:24','2023-03-31 16:53:24','',5728,'https://www.drfields.com/?p=5734',0,'revision','',0),(5736,8,'2023-04-06 10:02:13','2023-04-06 10:02:13','[caption id=\"attachment_5737\" align=\"alignright\" width=\"300\"]<img class=\"wp-image-5737\" src=\"https://www.drfields.com/wp-content/uploads/2023/04/Knee-Replacement-Failures-500x419.png\" alt=\"Knee Replacement Failures\" width=\"300\" height=\"251\" /> <strong> Knee Replacement Failure Statistics</strong>[/caption]\r\n<h2>Understanding Knee Replacement Failure</h2>\r\nKnee replacement is a huge undertaking. The surgery requires hospitalization and prolonged downtime. But is this surgery just a one-time thing? Unfortunately, it may not be!\r\n\r\nAdditionally, there is also a risk of replacement failure necessitating revision surgery down the road. How high is that risk?\r\n<h3><strong>Why Do Knee Replacements Fail?</strong></h3>\r\nThe leading cause of knee replacement failure is infection. Instability, looseness, persistent stiffness, ongoing pain, and metal allergies are additional reasons for failure.\r\n<h4><strong>Reasons for Increased Knee Replacement Failure Include:</strong></h4>\r\n<em>Revision Surgery</em>\r\n\r\nWhen replacements fail, revision surgery is needed, and revision surgeries have even worse outcomes than the initial replacement. (1)\r\n\r\n<em>Higher Recipient Rates</em>\r\n\r\nOne reason failure rates are getting higher is that more people are getting knee replacements. People are receiving knee replacements at a younger age too. And knee replacements don\'t last forever. In time, all knee replacements fail.\r\n\r\n<em>Continued Pain after Knee Replacement</em>\r\n\r\nKnee replacement recipients report a substantial rate of continued pain after knee replacement. Twenty percent or one in five patients who undergo total knee replacement for osteoarthritis report an unfavorable pain outcome after surgery. (2)\r\n\r\nGerman physicians reported even higher rates of pain, “About one-third of all patients after total knee arthroplasty experience persistent or recurring pain and/or dissatisfaction.\"(3)\r\n\r\nAnd researchers from the United Kingdom reported that \"adverse knee pain occurs in 10-34% of all total knee replacements, and 20% of total knee replacements patients experience more pain post-operatively than pre-operatively.\"(4)\r\n<h3><strong>How Long Do Knee Replacements Last?</strong></h3>\r\nResults vary when data is reviewed to show how long knee replacements last. Some studies show 15 years, others 20 years, and still others 25 years. (2,5,6)\r\n<h3><strong>What Is Your Idea of a Successful Knee Replacement?</strong></h3>\r\nYou may be surprised that your idea of success and the surgeon\'s idea of surgical success may differ completely. The surgeon may be satisfied that the surgery itself went well. But you may not be happy with that alone. If you have pain, a loose knee, swelling, and less walking ability after surgery than before, you may not feel like the surgery was a success.\r\n\r\nIn the Journal of Arthroplasty, researchers described patient dissatisfaction with their knee replacement due to looseness. The patients reported more pain and unmet expectations. (7)\r\n\r\nPatients generally expect a better quality of life after surgery, including less pain and an increased ability to do the activities they want. When these expectations are not met, patients are dissatisfied.\r\n<h3><strong>Is There An Alternative?</strong></h3>\r\nRegenerative Orthopedics is an alternative therapy that can be sought before surgery. The treatment should also be sought if surgery has already been done, and the patient is dissatisfied, or if the pain continues.\r\n\r\nBefore getting to the point of surgery, these regenerative treatments can stop the cycle of degeneration, reduce pain, and improve function. Osteoarthritis is the main reason people end up facing a knee replacement. Arthritis occurs because of instability in the knee joint. The instability is the result of an old or new injury. Regenerative Orthopedics can stabilize the knee and stop the degenerative process in these cases.\r\n\r\nRegenerative treatments can also help once a replacement has been done. The connective tissues damaged by the surgery or the damage due to the new stress placed on them by the implant can be strengthened and repaired.\r\n\r\nWe are pleased to offer this alternative to knee replacement and a solution when pain and dissatisfaction continue after knee replacement. Give us a call at 310-453-1234.\r\n<h3><strong>References</strong></h3>\r\n(1) Agarwal, Sanjeev, et al. \"Why are revision knee replacements failing?.\" <em>The Knee</em> 26.3 (2019): 774-778.\r\n\r\n(2) Beswick AD, Wylde V, Gooberman-Hill R, et al. What proportion of patients report long-term pain after total hip or knee replacement for osteoarthritis? A systematic review of prospective studies in unselected patients. BMJ Open 2012; 2:e000435. doi: 10.1136/bmjopen-2011-000435\r\n\r\n(3) Mathis DT, Hirschmann MT. Trotz Knietotalprothese schmerzt das Knie – was nun? [Painful knee after total knee arthroplasty – what can be done?]. Ther Umsch. 2020;77(10):491-497. German.\r\n\r\n(4) Li CY, Ng Cheong Chung KJ, Ali OM, Chung ND, Li CH. Literature review of the causes of pain following total knee replacement surgery: prosthesis, inflammation and arthrofibrosis. EFORT Open Reviews. 2020 Sep;5(9):534-43.\r\n\r\n(5) P van der List, DL Sheng, LJ Kleeblad, H Chawla, AD Pearle. Outcomes of cementless unicompartmental and total knee arthroplasty: a systematic review. Knee, 24 (2017), pp. 497-507.\r\n\r\n(6) T Niinimaki, A Eskelinen, K Makela, P Ohtonen, A-P Puhto, V Remes. Unicompartmental knee arthroplasty survivorship is lower than TKA survivorship: a 27-year Finnish registry study. Clin Orthop Relat Res, 472 (2014), pp. 1496-1501.\r\n\r\n(7) Broberg JS, Naudie DD, Lanting BA, Howard JL, Vasarhelyi EM, Teeter MG. Patient and Implant Performance of Satisfied and Dissatisfied Total Knee Arthroplasty Patients. The Journal of Arthroplasty. 2022 Jun 1;37(6):S98-104.','Knee Replacement Failure','','publish','closed','open','','knee-replacement-failure','','','2023-05-03 20:31:38','2023-05-03 20:31:38','',0,'https://www.drfields.com/?p=5736',0,'post','',0),(5737,8,'2023-04-08 16:03:31','2023-04-08 16:03:31','Knee Replacement Failures','Knee Replacement Failures','Knee Replacement Failures','inherit','closed','closed','','knee-replacement-failures','','','2023-04-08 16:03:32','2023-04-08 16:03:32','',5736,'https://www.drfields.com/wp-content/uploads/2023/04/Knee-Replacement-Failures.png',0,'attachment','image/png',0),(5738,8,'2023-04-08 16:04:42','2023-04-08 16:04:42','[caption id=\"attachment_5737\" align=\"alignright\" width=\"300\"]<img class=\"wp-image-5737\" src=\"https://www.drfields.com/wp-content/uploads/2023/04/Knee-Replacement-Failures-500x419.png\" alt=\"Knee Replacement Failures\" width=\"300\" height=\"251\" /> Knee Replacement Failures[/caption]\r\n\r\nKnee replacement is a huge undertaking. The surgery requires hospitalization and prolonged downtown. But is this surgery just a one time thing? Unfortunately, there is also a risk of replacement failure necessitating revision surgery down the road. How high is that risk?\r\n\r\n<strong>Why Do Knee Replacements Fail?</strong>\r\n\r\nThe main cause of knee replacement failure is infection. Instability, looseness, persistent stiffness, ongoing pain, and metal allergies are additional reasons for failure.\r\n\r\n<strong>Reasons for Increased Replacement Failure Include:</strong>\r\n\r\n<em>Revision Surgery</em>\r\n\r\nWhen replacements fail, revision surgery is needed, and revision surgeries have even worse outcomes than the initial replacement. (1)\r\n\r\n<em>Higher Recipient Rates</em>\r\n\r\nFailure rates are also getting higher because there are more people getting knee replacements. People are receiving knee replacements at a younger age too. And knee replacements don\'t last forever. In time, all knee replacements fail.\r\n\r\n<em>Continued Pain after Knee Replacement</em>\r\n\r\nThere is also a high rate of continued pain after knee replacement. Twenty percent, or one in five patients who undergo total knee replacement for osteoarthritis report an unfavorable pain outcome after surgery. (2)\r\n\r\nGerman physicians reported even higher rates of pain, “About one-third of all patients after total knee arthroplasty experience persistent or recurring pain and/or dissatisfaction.\"(3)\r\n\r\nAnd researchers from the United Kingdom reported that \"adverse knee pain occurs in 10-34% of all total knee replacements, and 20% of total knee replacements patients experience more pain post-operatively than pre-operatively.\"(4)\r\n\r\n<strong>How Long Do Knee Replacements Last?</strong>\r\n\r\nWhen data is reviewed to show how long knee replacements last there is a variety of results. Some studies show 15 years, others 20 years, and still others 25 years. (2,5,6)\r\n\r\n<strong>What Is Your Idea of a Successful Knee Replacement?</strong>\r\n\r\nYou may be surprised to know that your idea of success and the surgeons idea of surgical success may be two completely different things. The surgeon may just be happy that the surgery itself went well. But you may not be happy with that alone. If you have pain, a loose knee, swelling, and less walking ability after surgery than you did before surgery, you very well may not feel like the surgery was a success.\r\n\r\nIn the Journal of Arthroplasty, researchers described patient dissatisfaction with their knee replacement due to looseness. The patients reported more pain and unmet expectations. (7)\r\n\r\nPatients generally expect to see a better quality of life after surgery, including less pain and an increased ability to do the activities they want to do. When these expectations are not met, patients are dissatisfied.\r\n\r\n<strong>Is There An Alternative?</strong>\r\n\r\nRegenerative Orthopedics can help prior to surgery and after the surgery has been done.\r\n\r\nBefore getting to the point of surgery, these regenerative treatments can stop the cycle of degeneration, reduce pain, and improve function. Osteoarthritis is the main reason people end up facing a knee replacement. Arthritis occurs, because of instability in the knee joint. The instability is the result of an old or new injury. In these cases, Regenerative Orthopedics can stabilize the knee and stop the degenerative process.\r\n\r\nRegenerative treatments can also help once a replacement has been done. The connective tissues that have been damaged by the surgery or the damage that has occurred due to the new stress placed on them by the implant, can be strengthened and repaired.\r\n\r\nWe are pleased to offer this alternative to knee replacement as well as a solution when pain and dissatisfaction continue after knee replacement. Give us a call 310-453-1234.\r\n\r\n<strong>References</strong>\r\n\r\n(1) Agarwal, Sanjeev, et al. \"Why are revision knee replacements failing?.\" <em>The Knee</em> 26.3 (2019): 774-778.\r\n\r\n(2) Beswick AD, Wylde V, Gooberman-Hill R, et al. What proportion of patients report long-term pain after total hip or knee replacement for osteoarthritis? A systematic review of prospective studies in unselected patients. BMJ Open 2012; 2:e000435. doi: 10.1136/bmjopen-2011-000435\r\n\r\n(3) Mathis DT, Hirschmann MT. Trotz Knietotalprothese schmerzt das Knie – was nun? [Painful knee after total knee arthroplasty – what can be done?]. Ther Umsch. 2020;77(10):491-497. German.\r\n\r\n(4) Li CY, Ng Cheong Chung KJ, Ali OM, Chung ND, Li CH. Literature review of the causes of pain following total knee replacement surgery: prosthesis, inflammation and arthrofibrosis. EFORT Open Reviews. 2020 Sep;5(9):534-43.\r\n\r\n(5) P van der List, DL Sheng, LJ Kleeblad, H Chawla, AD Pearle. Outcomes of cementless unicompartmental and total knee arthroplasty: a systematic review. Knee, 24 (2017), pp. 497-507.\r\n\r\n(6) T Niinimaki, A Eskelinen, K Makela, P Ohtonen, A-P Puhto, V Remes. Unicompartmental knee arthroplasty survivorship is lower than TKA survivorship: a 27-year Finnish registry study. Clin Orthop Relat Res, 472 (2014), pp. 1496-1501.\r\n\r\n(7) Broberg JS, Naudie DD, Lanting BA, Howard JL, Vasarhelyi EM, Teeter MG. Patient and Implant Performance of Satisfied and Dissatisfied Total Knee Arthroplasty Patients. The Journal of Arthroplasty. 2022 Jun 1;37(6):S98-104.','Knee Replacement Failure','','inherit','closed','closed','','5736-revision-v1','','','2023-04-08 16:04:42','2023-04-08 16:04:42','',5736,'https://www.drfields.com/?p=5738',0,'revision','',0),(5739,8,'2023-04-08 16:09:36','2023-04-08 16:09:36','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"/uncategorized/knee-replacement-failure/\">Knee Replacement Failure</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/best-treatments-for-low-back-pain/\">Best Treatments For Low Back Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/arthritis-knee-treatment/\">Arthritis Knee Treatment</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/back-pain-treatment/\">Back Pain Treatment</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/remedies-for-shoulder-repair/\">Remedies For Shoulder Repair</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/alternatives-for-the-red-knee-non-surgical-candidate-population/\">Alternatives for the \"Red Knee\" Non-Surgical Candidate Population</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-in-newport-beach-ca-area-regenerate-knee-cartilage-with-bone-marrow-concentrate-and-prp/\">Stem Cell Therapy in Newport Beach, CA Area</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/regenerative-orthopedics/\">Regenerative Orthopedics: Growing in Popularity</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/prolotherapy-the-answer-for-joint-repair/\">Prolotherapy – The Answer for Joint Repair</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-04-08 16:09:36','2023-04-08 16:09:36','',2109,'https://www.drfields.com/?p=5739',0,'revision','',0),(5740,8,'2023-04-08 16:10:19','2023-04-08 16:10:19','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"/uncategorized/knee-replacement-failure/\">Knee Replacement Failure</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/best-treatments-for-low-back-pain/\">Best Treatments For Low Back Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/arthritis-knee-treatment/\">Arthritis Knee Treatment</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/back-pain-treatment/\">Back Pain Treatment</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/remedies-for-shoulder-repair/\">Remedies For Shoulder Repair</a></li>\r\n 	<li><a href=\"https://www.drfields.com/articles/regenerative-orthopedics/alternatives-for-the-red-knee-non-surgical-candidate-population/\">Alternatives for the \"Red Knee\" Non-Surgical Candidate Population</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-04-08 16:10:19','2023-04-08 16:10:19','',2109,'https://www.drfields.com/?p=5740',0,'revision','',0),(5741,8,'2023-04-08 16:10:49','2023-04-08 16:10:49','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"/uncategorized/knee-replacement-failure/\">Knee Replacement Failure</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/best-treatments-for-low-back-pain/\">Best Treatments For Low Back Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/arthritis-knee-treatment/\">Arthritis Knee Treatment</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/back-pain-treatment/\">Back Pain Treatment</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/remedies-for-shoulder-repair/\">Remedies For Shoulder Repair</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-04-08 16:10:49','2023-04-08 16:10:49','',2109,'https://www.drfields.com/?p=5741',0,'revision','',0),(5743,9,'2023-04-12 21:44:10','2023-04-12 21:44:10','[caption id=\"attachment_5737\" align=\"alignright\" width=\"300\"]<img class=\"wp-image-5737\" src=\"https://www.drfields.com/wp-content/uploads/2023/04/Knee-Replacement-Failures-500x419.png\" alt=\"Knee Replacement Failures\" width=\"300\" height=\"251\" />       <strong> Knee Replacement Failure Statistics</strong>[/caption]\n<h2>Understanding Knee Replacement Failure</h2>\nKnee replacement is a huge undertaking. The surgery requires hospitalization and prolonged downtown. But is this surgery just a one-time thing? Unfortunately, it may not be!\n\nAdditionally, there is also a risk of replacement failure necessitating revision surgery down the road. How high is that risk?\n<h3><strong>Why Do Knee Replacements Fail?</strong></h3>\nThe leading cause of knee replacement failure is infection. Instability, looseness, persistent stiffness, ongoing pain, and metal allergies are additional reasons for failure.\n<h4><strong>Reasons for Increased Knee Replacement Failure Include:</strong></h4>\n<em>Revision Surgery</em>\n\nWhen replacements fail, revision surgery is needed, and revision surgeries have even worse outcomes than the initial replacement. (1)\n\n<em>Higher Recipient Rates</em>\n\nOne reason failure rates are getting higher is that more people are getting knee replacements. People are receiving knee replacements at a younger age too. And knee replacements don\'t last forever. In time, all knee replacements fail.\n\n<em>Continued Pain after Knee Replacement</em>\n\nKnee replacement recipients report a substantial rate of continued pain after knee replacement. Twenty percent or one in five patients who undergo total knee replacement for osteoarthritis report an unfavorable pain outcome after surgery. (2)\n\nGerman physicians reported even higher rates of pain, “About one-third of all patients after total knee arthroplasty experience persistent or recurring pain and/or dissatisfaction.\"(3)\n\nAnd researchers from the United Kingdom reported that \"adverse knee pain occurs in 10-34% of all total knee replacements, and 20% of total knee replacements patients experience more pain post-operatively than pre-operatively.\"(4)\n<h3><strong>How Long Do Knee Replacements Last?</strong></h3>\nResults vary when data is reviewed to show how long knee replacements last. Some studies show 15 years, others 20 years, and still others 25 years. (2,5,6)\n<h3><strong>What Is Your Idea of a Successful Knee Replacement?</strong></h3>\nYou may be surprised that your idea of success and the surgeon\'s idea of surgical success may differ completely. The surgeon may be satisfied that the surgery itself went well. But you may not be happy with that alone. If you have pain, a loose knee, swelling, and less walking ability after surgery than before, you may not feel like the surgery was a success.\n\nIn the Journal of Arthroplasty, researchers described patient dissatisfaction with their knee replacement due to looseness. The patients reported more pain and unmet expectations. (7)\n\nPatients generally expect a better quality of life after surgery, including less pain and an increased ability to do the activities they want. When these expectations are not met, patients are dissatisfied.\n<h3><strong>Is There An Alternative?</strong></h3>\nRegenerative Orthopedics is an alternative therapy that can be sought before surgery. The treatment should also be sought if surgery has already been done, and the patient is dissatisfied, or if the pain continues.\n\nBefore getting to the point of surgery, these regenerative treatments can stop the cycle of degeneration, reduce pain, and improve function. Osteoarthritis is the main reason people end up facing a knee replacement. Arthritis occurs because of instability in the knee joint. The instability is the result of an old or new injury. Regenerative Orthopedics can stabilize the knee and stop the degenerative process in these cases.\n\nRegenerative treatments can also help once a replacement has been done. The connective tissues damaged by the surgery or the damage due to the new stress placed on them by the implant can be strengthened and repaired.\n\nWe are pleased to offer this alternative to knee replacement and a solution when pain and dissatisfaction continue after knee replacement. Give us a call at 310-453-1234.\n<h3><strong>References</strong></h3>\n(1) Agarwal, Sanjeev, et al. \"Why are revision knee replacements failing?.\" <em>The Knee</em> 26.3 (2019): 774-778.\n\n(2) Beswick AD, Wylde V, Gooberman-Hill R, et al. What proportion of patients report long-term pain after total hip or knee replacement for osteoarthritis? A systematic review of prospective studies in unselected patients. BMJ Open 2012; 2:e000435. doi: 10.1136/bmjopen-2011-000435\n\n(3) Mathis DT, Hirschmann MT. Trotz Knietotalprothese schmerzt das Knie – was nun? [Painful knee after total knee arthroplasty – what can be done?]. Ther Umsch. 2020;77(10):491-497. German.\n\n(4) Li CY, Ng Cheong Chung KJ, Ali OM, Chung ND, Li CH. Literature review of the causes of pain following total knee replacement surgery: prosthesis, inflammation and arthrofibrosis. EFORT Open Reviews. 2020 Sep;5(9):534-43.\n\n(5) P van der List, DL Sheng, LJ Kleeblad, H Chawla, AD Pearle. Outcomes of cementless unicompartmental and total knee arthroplasty: a systematic review. Knee, 24 (2017), pp. 497-507.\n\n(6) T Niinimaki, A Eskelinen, K Makela, P Ohtonen, A-P Puhto, V Remes. Unicompartmental knee arthroplasty survivorship is lower than TKA survivorship: a 27-year Finnish registry study. Clin Orthop Relat Res, 472 (2014), pp. 1496-1501.\n\n(7) Broberg JS, Naudie DD, Lanting BA, Howard JL, Vasarhelyi EM, Teeter MG. Patient and Implant Performance of Satisfied and Dissatisfied Total Knee Arthroplasty Patients. The Journal of Arthroplasty. 2022 Jun 1;37(6):S98-104.','Knee Replacement Failure','','inherit','closed','closed','','5736-autosave-v1','','','2023-04-12 21:44:10','2023-04-12 21:44:10','',5736,'https://www.drfields.com/?p=5743',0,'revision','',0),(5744,9,'2023-04-12 21:33:14','2023-04-12 21:33:14','[caption id=\"attachment_5737\" align=\"alignright\" width=\"300\"]<img class=\"wp-image-5737\" src=\"https://www.drfields.com/wp-content/uploads/2023/04/Knee-Replacement-Failures-500x419.png\" alt=\"Knee Replacement Failures\" width=\"300\" height=\"251\" /> Knee Replacement Failures[/caption]\r\n<h2>Understanding Knee Replacement Failure</h2>\r\nKnee replacement is a huge undertaking. The surgery requires hospitalization and prolonged downtown. But is this surgery just a one-time thing? Unfortunately, there is also a risk of replacement failure necessitating revision surgery down the road. How high is that risk?\r\n\r\n<strong>Why Do Knee Replacements Fail?</strong>\r\n\r\nThe leading cause of knee replacement failure is infection. Instability, looseness, persistent stiffness, ongoing pain, and metal allergies are additional reasons for failure.\r\n\r\n<strong>Reasons for Increased Replacement Failure Include:</strong>\r\n\r\n<em>Revision Surgery</em>\r\n\r\nWhen replacements fail, revision surgery is needed, and revision surgeries have even worse outcomes than the initial replacement. (1)\r\n\r\n<em>Higher Recipient Rates</em>\r\n\r\nFailure rates are also getting higher because there are more people getting knee replacements. People are receiving knee replacements at a younger age too. And knee replacements don\'t last forever. In time, all knee replacements fail.\r\n\r\n<em>Continued Pain after Knee Replacement</em>\r\n\r\nThere is also a high rate of continued pain after knee replacement. Twenty percent, or one in five patients who undergo total knee replacement for osteoarthritis report an unfavorable pain outcome after surgery. (2)\r\n\r\nGerman physicians reported even higher rates of pain, “About one-third of all patients after total knee arthroplasty experience persistent or recurring pain and/or dissatisfaction.\"(3)\r\n\r\nAnd researchers from the United Kingdom reported that \"adverse knee pain occurs in 10-34% of all total knee replacements, and 20% of total knee replacements patients experience more pain post-operatively than pre-operatively.\"(4)\r\n\r\n<strong>How Long Do Knee Replacements Last?</strong>\r\n\r\nWhen data is reviewed to show how long knee replacements last there is a variety of results. Some studies show 15 years, others 20 years, and still others 25 years. (2,5,6)\r\n\r\n<strong>What Is Your Idea of a Successful Knee Replacement?</strong>\r\n\r\nYou may be surprised to know that your idea of success and the surgeons idea of surgical success may be two completely different things. The surgeon may just be happy that the surgery itself went well. But you may not be happy with that alone. If you have pain, a loose knee, swelling, and less walking ability after surgery than you did before surgery, you very well may not feel like the surgery was a success.\r\n\r\nIn the Journal of Arthroplasty, researchers described patient dissatisfaction with their knee replacement due to looseness. The patients reported more pain and unmet expectations. (7)\r\n\r\nPatients generally expect to see a better quality of life after surgery, including less pain and an increased ability to do the activities they want to do. When these expectations are not met, patients are dissatisfied.\r\n\r\n<strong>Is There An Alternative?</strong>\r\n\r\nRegenerative Orthopedics can help prior to surgery and after the surgery has been done.\r\n\r\nBefore getting to the point of surgery, these regenerative treatments can stop the cycle of degeneration, reduce pain, and improve function. Osteoarthritis is the main reason people end up facing a knee replacement. Arthritis occurs, because of instability in the knee joint. The instability is the result of an old or new injury. In these cases, Regenerative Orthopedics can stabilize the knee and stop the degenerative process.\r\n\r\nRegenerative treatments can also help once a replacement has been done. The connective tissues that have been damaged by the surgery or the damage that has occurred due to the new stress placed on them by the implant, can be strengthened and repaired.\r\n\r\nWe are pleased to offer this alternative to knee replacement as well as a solution when pain and dissatisfaction continue after knee replacement. Give us a call 310-453-1234.\r\n\r\n<strong>References</strong>\r\n\r\n(1) Agarwal, Sanjeev, et al. \"Why are revision knee replacements failing?.\" <em>The Knee</em> 26.3 (2019): 774-778.\r\n\r\n(2) Beswick AD, Wylde V, Gooberman-Hill R, et al. What proportion of patients report long-term pain after total hip or knee replacement for osteoarthritis? A systematic review of prospective studies in unselected patients. BMJ Open 2012; 2:e000435. doi: 10.1136/bmjopen-2011-000435\r\n\r\n(3) Mathis DT, Hirschmann MT. Trotz Knietotalprothese schmerzt das Knie – was nun? [Painful knee after total knee arthroplasty – what can be done?]. Ther Umsch. 2020;77(10):491-497. German.\r\n\r\n(4) Li CY, Ng Cheong Chung KJ, Ali OM, Chung ND, Li CH. Literature review of the causes of pain following total knee replacement surgery: prosthesis, inflammation and arthrofibrosis. EFORT Open Reviews. 2020 Sep;5(9):534-43.\r\n\r\n(5) P van der List, DL Sheng, LJ Kleeblad, H Chawla, AD Pearle. Outcomes of cementless unicompartmental and total knee arthroplasty: a systematic review. Knee, 24 (2017), pp. 497-507.\r\n\r\n(6) T Niinimaki, A Eskelinen, K Makela, P Ohtonen, A-P Puhto, V Remes. Unicompartmental knee arthroplasty survivorship is lower than TKA survivorship: a 27-year Finnish registry study. Clin Orthop Relat Res, 472 (2014), pp. 1496-1501.\r\n\r\n(7) Broberg JS, Naudie DD, Lanting BA, Howard JL, Vasarhelyi EM, Teeter MG. Patient and Implant Performance of Satisfied and Dissatisfied Total Knee Arthroplasty Patients. The Journal of Arthroplasty. 2022 Jun 1;37(6):S98-104.','Knee Replacement Failure','','inherit','closed','closed','','5736-revision-v1','','','2023-04-12 21:33:14','2023-04-12 21:33:14','',5736,'https://www.drfields.com/?p=5744',0,'revision','',0),(5745,9,'2023-04-12 21:44:19','2023-04-12 21:44:19','[caption id=\"attachment_5737\" align=\"alignright\" width=\"300\"]<img class=\"wp-image-5737\" src=\"https://www.drfields.com/wp-content/uploads/2023/04/Knee-Replacement-Failures-500x419.png\" alt=\"Knee Replacement Failures\" width=\"300\" height=\"251\" />       <strong> Knee Replacement Failure Statistics</strong>[/caption]\r\n<h2>Understanding Knee Replacement Failure</h2>\r\nKnee replacement is a huge undertaking. The surgery requires hospitalization and prolonged downtown. But is this surgery just a one-time thing? Unfortunately, it may not be!\r\n\r\nAdditionally, there is also a risk of replacement failure necessitating revision surgery down the road. How high is that risk?\r\n<h3><strong>Why Do Knee Replacements Fail?</strong></h3>\r\nThe leading cause of knee replacement failure is infection. Instability, looseness, persistent stiffness, ongoing pain, and metal allergies are additional reasons for failure.\r\n<h4><strong>Reasons for Increased Knee Replacement Failure Include:</strong></h4>\r\n<em>Revision Surgery</em>\r\n\r\nWhen replacements fail, revision surgery is needed, and revision surgeries have even worse outcomes than the initial replacement. (1)\r\n\r\n<em>Higher Recipient Rates</em>\r\n\r\nOne reason failure rates are getting higher is that more people are getting knee replacements. People are receiving knee replacements at a younger age too. And knee replacements don\'t last forever. In time, all knee replacements fail.\r\n\r\n<em>Continued Pain after Knee Replacement</em>\r\n\r\nKnee replacement recipients report a substantial rate of continued pain after knee replacement. Twenty percent or one in five patients who undergo total knee replacement for osteoarthritis report an unfavorable pain outcome after surgery. (2)\r\n\r\nGerman physicians reported even higher rates of pain, “About one-third of all patients after total knee arthroplasty experience persistent or recurring pain and/or dissatisfaction.\"(3)\r\n\r\nAnd researchers from the United Kingdom reported that \"adverse knee pain occurs in 10-34% of all total knee replacements, and 20% of total knee replacements patients experience more pain post-operatively than pre-operatively.\"(4)\r\n<h3><strong>How Long Do Knee Replacements Last?</strong></h3>\r\nResults vary when data is reviewed to show how long knee replacements last. Some studies show 15 years, others 20 years, and still others 25 years. (2,5,6)\r\n<h3><strong>What Is Your Idea of a Successful Knee Replacement?</strong></h3>\r\nYou may be surprised that your idea of success and the surgeon\'s idea of surgical success may differ completely. The surgeon may be satisfied that the surgery itself went well. But you may not be happy with that alone. If you have pain, a loose knee, swelling, and less walking ability after surgery than before, you may not feel like the surgery was a success.\r\n\r\nIn the Journal of Arthroplasty, researchers described patient dissatisfaction with their knee replacement due to looseness. The patients reported more pain and unmet expectations. (7)\r\n\r\nPatients generally expect a better quality of life after surgery, including less pain and an increased ability to do the activities they want. When these expectations are not met, patients are dissatisfied.\r\n<h3><strong>Is There An Alternative?</strong></h3>\r\nRegenerative Orthopedics is an alternative therapy that can be sought before surgery. The treatment should also be sought if surgery has already been done, and the patient is dissatisfied, or if the pain continues.\r\n\r\nBefore getting to the point of surgery, these regenerative treatments can stop the cycle of degeneration, reduce pain, and improve function. Osteoarthritis is the main reason people end up facing a knee replacement. Arthritis occurs because of instability in the knee joint. The instability is the result of an old or new injury. Regenerative Orthopedics can stabilize the knee and stop the degenerative process in these cases.\r\n\r\nRegenerative treatments can also help once a replacement has been done. The connective tissues damaged by the surgery or the damage due to the new stress placed on them by the implant can be strengthened and repaired.\r\n\r\nWe are pleased to offer this alternative to knee replacement and a solution when pain and dissatisfaction continue after knee replacement. Give us a call at 310-453-1234.\r\n<h3><strong>References</strong></h3>\r\n(1) Agarwal, Sanjeev, et al. \"Why are revision knee replacements failing?.\" <em>The Knee</em> 26.3 (2019): 774-778.\r\n\r\n(2) Beswick AD, Wylde V, Gooberman-Hill R, et al. What proportion of patients report long-term pain after total hip or knee replacement for osteoarthritis? A systematic review of prospective studies in unselected patients. BMJ Open 2012; 2:e000435. doi: 10.1136/bmjopen-2011-000435\r\n\r\n(3) Mathis DT, Hirschmann MT. Trotz Knietotalprothese schmerzt das Knie – was nun? [Painful knee after total knee arthroplasty – what can be done?]. Ther Umsch. 2020;77(10):491-497. German.\r\n\r\n(4) Li CY, Ng Cheong Chung KJ, Ali OM, Chung ND, Li CH. Literature review of the causes of pain following total knee replacement surgery: prosthesis, inflammation and arthrofibrosis. EFORT Open Reviews. 2020 Sep;5(9):534-43.\r\n\r\n(5) P van der List, DL Sheng, LJ Kleeblad, H Chawla, AD Pearle. Outcomes of cementless unicompartmental and total knee arthroplasty: a systematic review. Knee, 24 (2017), pp. 497-507.\r\n\r\n(6) T Niinimaki, A Eskelinen, K Makela, P Ohtonen, A-P Puhto, V Remes. Unicompartmental knee arthroplasty survivorship is lower than TKA survivorship: a 27-year Finnish registry study. Clin Orthop Relat Res, 472 (2014), pp. 1496-1501.\r\n\r\n(7) Broberg JS, Naudie DD, Lanting BA, Howard JL, Vasarhelyi EM, Teeter MG. Patient and Implant Performance of Satisfied and Dissatisfied Total Knee Arthroplasty Patients. The Journal of Arthroplasty. 2022 Jun 1;37(6):S98-104.','Knee Replacement Failure','','inherit','closed','closed','','5736-revision-v1','','','2023-04-12 21:44:19','2023-04-12 21:44:19','',5736,'https://www.drfields.com/?p=5745',0,'revision','',0),(5747,8,'2023-04-18 03:01:17','2023-04-18 03:01:17','<img class=\"wp-image-5752  alignright\" src=\"https://www.drfields.com/wp-content/uploads/2023/04/Cervical-Instability-2-1-500x419.png\" alt=\"Cervical Instability 2\" width=\"415\" height=\"348\" />\r\n<h2>Neck Pain Treatment: Suffering from Cervical Instability?</h2>\r\nNeck pain and neck instability wreak havoc in a patient\'s life. If you or someone you know has been in a car accident or has hit their head, you are probably familiar with the symptoms that follow afterward and have sought neck pain treatment. Are you experiencing balance problems, neck pain, muscle spasms, dizziness, headaches/migraines, difficulty thinking, and neck mobility issues?\r\n\r\nThese symptoms are often due to cervical (neck) instability. They are frightening and interfere with your life. If that isn\'t bad enough, add to that the reality that many providers lack understanding about cervical instability. The result is exasperation! All you want is to find a treatment that provides relief.\r\n<h2>Regenerative Orthopedics: A Neck Pain Treatment and Answer for Cervical Instability</h2>\r\nAt OrthoRegen®, we understand what is behind cervical instability. We have years of experience treating patients with these symptoms. Why is Regenerative Orthopedics effective in resolving the symptoms of cervical instability? The treatment effectively repairs soft tissue injuries. It\'s not a bandaid, like pain medication or medications to relieve some dizziness. It actually repairs the underlying problem of neck instability.\r\n\r\nWhen a person experiences injuries such as whiplash, or when they hurt their neck while hitting their head, the ligaments in the neck are injured and weakened. This sets the person up for cervical instability, and the many symptoms that accompany it.\r\n\r\nWhen these ligaments are injured, they stretch out and become weak, allowing for excessive and abnormal movement in the vertebrae of the neck.\r\n<h2>As the instability worsens, so do the symptoms, and so does the frustration with the symptoms.</h2>\r\nYour doctor may even suggest surgery to stabilize the neck. Sure, surgery to fuse the vertebrae of the neck may be needed in some cases. However, a second opinion from a Regenerative Orthopedics specialist should be sought when possible. Why? Because Regenerative Orthopedics can often prevent the need for fusion surgery. Plus, Regenerative Orthopedics can strengthen the involved ligaments and restore proper motion to the neck. This cervical instability and neck pain treatment gets to the source of the problem.\r\n<h2>Explain the Neck (Cervical) Instability More, Please!</h2>\r\nThe neck is quite unique! The vertebrae in the neck are smaller and more mobile than all of the movable vertebrae of the spine. That ability is great so the neck can carry out its functions. But they also make the neck more vulnerable to injury.\r\n\r\nThe ligaments of the neck are primary stabilizing structures that connect adjacent bones. They are especially vulnerable when trauma occurs. The normal neck is stable, moving and functioning properly while remaining in correct alignment, and protecting the blood vessels, nerves, and spinal cord. Injury to the ligaments; however, changes this dynamic, and leads to instability of the cervical spine. Add to that all of the stresses and loads placed upon the neck, and a cycle of imbalance is set in motion generating even more abnormal changes in the vertebral alignment.\r\n\r\nRemember that cervical instability involves excessive and abnormal motion between vertebrae. That abnormal motion causes extra stress on the ligaments and the nerve endings within them, and results in a cycle of pain and the variety of aforementioned symptoms.\r\n<h2>Ligaments Are a Major Source of Neck Pain and Instability</h2>\r\nLigaments are a major source of the pain and symptoms in cervical instability because of the laxity of ligaments after injury. Regenerative Orthopedics, like Prolotherapy, are effective treatments to strengthen these ligaments. The treatments are safe to relieve the pain and symptoms of cervical instability. (1)\r\n\r\nA study in the European Journal of Preventive Medicine says, \"We found statistically significant reductions in pain and functionality, indicating the safety and viability of Prolotherapy for cervical spine instability. (2)\r\n<h2>An Answer for Cervical Instability and Neck Pain Treatment</h2>\r\nCervical instability changes a person\'s quality of life. Sufferers enter a cycle of seeking physician after physician to get some relief. The patient, family and friends become frustrated seeking an answer. But there is an answer. Regenerative Orthopedics can stop the cycle because it effectively strengthens and stabilizes the ligaments at the core of the neck instability problem. The result? A resolution of the disabling symptoms. The cervical instability patient can get back to the activities they love, with decreased pain, and increased function.\r\n<ul>\r\n 	<li>Steilen D, Hauser R, Woldin B, Sawyer S. Chronic neck pain: making the connection between capsular ligament laxity and cervical instability. The open orthopaedics journal. 2014;8:326.</li>\r\n 	<li>Hauser R, Steilen D, Gordin K The Biology of Prolotherapy and Its Application in Clinical Cervical Spine Instability and Chronic Neck Pain: A Retrospective Study. European Journal of Preventive Medicine. Vol. 3, No. 4, 2015, pp. 85-102. doi: 10.11648/j.ejpm.20150304.112396</li>\r\n</ul>','Neck Pain Treatment','','publish','closed','open','','neck-pain-treatment','','','2023-04-19 17:49:44','2023-04-19 17:49:44','',0,'https://www.drfields.com/?p=5747',0,'post','',0),(5748,8,'2023-04-18 03:00:18','2023-04-18 03:00:18','Cervical Instability 2','Neck Pain Treatment','','inherit','closed','closed','','cervical-instability-2','','','2023-04-18 03:00:52','2023-04-18 03:00:52','',5747,'https://www.drfields.com/wp-content/uploads/2023/04/Cervical-Instability-2.png',0,'attachment','image/png',0),(5749,8,'2023-04-18 03:01:17','2023-04-18 03:01:17','<img class=\"alignright wp-image-5748\" src=\"https://www.drfields.com/wp-content/uploads/2023/04/Cervical-Instability-2-500x419.png\" alt=\"Neck Pain Treatment\" width=\"350\" height=\"293\" />Neck pain and neck instability wreak havoc in a patient\'s life. If you or someone you know has been in a car accident or has hit their head, you are probably familiar with the symptoms that follow afterward. Are you experiencing balance problems, pain, muscle spasms, dizziness, headaches/migraines, difficulty thinking, confusion, and neck mobility issues?\r\n\r\nThese symptoms are often due to cervical (neck) instability. They are frightening and interfere with your life. If that isn\'t bad enough, add to that the reality that many providers lack understanding about cervical instability. The result is exasperation! All you want is to find a treatment that provides relief.\r\n<h2>Regenerative Orthopedics: A Neck Pain Treatment and Answer for Cervical Instability</h2>\r\nAt OrthoRegen®, we understand what is behind cervical instability. We have years of experience treating patients with these symptoms. Why is Regenerative Orthopedics effective in resolving the symptoms of cervical instability? The treatment effectively repairs soft tissue injuries. It\'s not a bandaid, like pain medication or medications to relieve some dizziness. It actually repairs the underlying problem of neck instability.\r\n\r\nWhen a person experiences injuries such as whiplash, or when they hurt their neck while hitting their head, the ligaments in the neck are injured and weakened. This sets the person up for cervical instability, and the many symptoms that accompany it.\r\n\r\nWhen these ligaments are injured, they stretch out and become weak, allowing for excessive and abnormal movement in the vertebrae of the neck.\r\n<h2>As the instability worsens, so do the symptoms, and so does the frustration with the symptoms.</h2>\r\nYour doctor may even suggest surgery to stabilize the neck. Sure, surgery to fuse the vertebrae of the neck may be needed in some cases. However, a second opinion from a Regenerative Orthopedics specialist should be sought when possible. Why? Because Regenerative Orthopedics can often prevent the need for fusion surgery. Plus, Regenerative Orthopedics can strengthen the involved ligaments and restore proper motion to the neck. This cervical instability and neck pain treatment gets to the source of the problem.\r\n<h2>Explain the Neck (Cervical) Instability More, Please!</h2>\r\nThe neck is quite unique! The vertebrae in the neck are smaller and more mobile than all of the movable vertebrae of the spine. That ability is great so the neck can carry out its functions. But they also make the neck more vulnerable to injury.\r\n\r\nThe ligaments of the neck are primary stabilizing structures that connect adjacent bones. They are especially vulnerable when trauma occurs. The normal neck is stable, moving and functioning properly while remaining in correct alignment, and protecting the blood vessels, nerves, and spinal cord. Injury to the ligaments; however, changes this dynamic, and leads to instability of the cervical spine. Add to that all of the stresses and loads placed upon the neck, and a cycle of imbalance is set in motion generating even more abnormal changes in the vertebral alignment.\r\n\r\nRemember that cervical instability involves excessive and abnormal motion between vertebrae. That abnormal motion causes extra stress on the ligaments and the nerve endings within them, and results in a cycle of pain and the variety of aforementioned symptoms.\r\n<h2>Ligaments Are a Major Source of Neck Pain and Instability</h2>\r\nLigaments are a major source of the pain and symptoms in cervical instability because of the laxity of ligaments after injury. Regenerative Orthopedics, like Prolotherapy, are effective treatments to strengthen these ligaments. The treatments are safe to relieve the pain and symptoms of cervical instability. (1)\r\n\r\nA study in the European Journal of Preventive Medicine says, \"We found statistically significant reductions in pain and functionality, indicating the safety and viability of Prolotherapy for cervical spine instability. (2)\r\n<h2>An Answer for Cervical Instability and Neck Pain Treatment</h2>\r\nCervical instability changes a person\'s quality of life. Sufferers enter a cycle of seeking physician after physician to get some relief. The patient, family and friends become frustrated seeking an answer. But there is an answer. Regenerative Orthopedics can stop the cycle because it effectively strengthens and stabilizes the ligaments at the core of the neck instability problem. The result? A resolution of the disabling symptoms. The cervical instability patient can get back to the activities they love, with decreased pain, and increased function.\r\n<ul>\r\n 	<li>Steilen D, Hauser R, Woldin B, Sawyer S. Chronic neck pain: making the connection between capsular ligament laxity and cervical instability. The open orthopaedics journal. 2014;8:326.</li>\r\n 	<li>Hauser R, Steilen D, Gordin K The Biology of Prolotherapy and Its Application in Clinical Cervical Spine Instability and Chronic Neck Pain: A Retrospective Study. European Journal of Preventive Medicine. Vol. 3, No. 4, 2015, pp. 85-102. doi: 10.11648/j.ejpm.20150304.112396</li>\r\n</ul>','Neck Pain Treatment','','inherit','closed','closed','','5747-revision-v1','','','2023-04-18 03:01:17','2023-04-18 03:01:17','',5747,'https://www.drfields.com/?p=5749',0,'revision','',0),(5750,8,'2023-04-18 03:02:59','2023-04-18 03:02:59','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li><a href=\"/articles/regenerative-orthopedics/neck-pain-treatment/\">Neck Pain Treatment</a></li>\r\n 	<li><a href=\"/uncategorized/knee-replacement-failure/\">Knee Replacement Failure</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/best-treatments-for-low-back-pain/\">Best Treatments For Low Back Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/arthritis-knee-treatment/\">Arthritis Knee Treatment</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/back-pain-treatment/\">Back Pain Treatment</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/remedies-for-shoulder-repair/\">Remedies For Shoulder Repair</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-04-18 03:02:59','2023-04-18 03:02:59','',2109,'https://www.drfields.com/?p=5750',0,'revision','',0),(5751,9,'2023-04-19 17:48:59','2023-04-19 17:48:59','<img class=\"wp-image-5752 \" src=\"https://www.drfields.com/wp-content/uploads/2023/04/Cervical-Instability-2-1-500x419.png\" alt=\"Cervical Instability 2\" width=\"415\" height=\"348\" />\n<h2>Neck Pain Treatment: Suffering from Cervical Instability?</h2>\nNeck pain and neck instability wreak havoc in a patient\'s life. If you or someone you know has been in a car accident or has hit their head, you are probably familiar with the symptoms that follow afterward and have sought neck pain treatment. Are you experiencing balance problems, neck pain, muscle spasms, dizziness, headaches/migraines, difficulty thinking, confusion, and neck mobility issues?\n\nThese symptoms are often due to cervical (neck) instability. They are frightening and interfere with your life. If that isn\'t bad enough, add to that the reality that many providers lack understanding about cervical instability. The result is exasperation! All you want is to find a treatment that provides relief.\n<h2>Regenerative Orthopedics: A Neck Pain Treatment and Answer for Cervical Instability</h2>\nAt OrthoRegen®, we understand what is behind cervical instability. We have years of experience treating patients with these symptoms. Why is Regenerative Orthopedics effective in resolving the symptoms of cervical instability? The treatment effectively repairs soft tissue injuries. It\'s not a bandaid, like pain medication or medications to relieve some dizziness. It actually repairs the underlying problem of neck instability.\n\nWhen a person experiences injuries such as whiplash, or when they hurt their neck while hitting their head, the ligaments in the neck are injured and weakened. This sets the person up for cervical instability, and the many symptoms that accompany it.\n\nWhen these ligaments are injured, they stretch out and become weak, allowing for excessive and abnormal movement in the vertebrae of the neck.\n<h2>As the instability worsens, so do the symptoms, and so does the frustration with the symptoms.</h2>\nYour doctor may even suggest surgery to stabilize the neck. Sure, surgery to fuse the vertebrae of the neck may be needed in some cases. However, a second opinion from a Regenerative Orthopedics specialist should be sought when possible. Why? Because Regenerative Orthopedics can often prevent the need for fusion surgery. Plus, Regenerative Orthopedics can strengthen the involved ligaments and restore proper motion to the neck. This cervical instability and neck pain treatment gets to the source of the problem.\n<h2>Explain the Neck (Cervical) Instability More, Please!</h2>\nThe neck is quite unique! The vertebrae in the neck are smaller and more mobile than all of the movable vertebrae of the spine. That ability is great so the neck can carry out its functions. But they also make the neck more vulnerable to injury.\n\nThe ligaments of the neck are primary stabilizing structures that connect adjacent bones. They are especially vulnerable when trauma occurs. The normal neck is stable, moving and functioning properly while remaining in correct alignment, and protecting the blood vessels, nerves, and spinal cord. Injury to the ligaments; however, changes this dynamic, and leads to instability of the cervical spine. Add to that all of the stresses and loads placed upon the neck, and a cycle of imbalance is set in motion generating even more abnormal changes in the vertebral alignment.\n\nRemember that cervical instability involves excessive and abnormal motion between vertebrae. That abnormal motion causes extra stress on the ligaments and the nerve endings within them, and results in a cycle of pain and the variety of aforementioned symptoms.\n<h2>Ligaments Are a Major Source of Neck Pain and Instability</h2>\nLigaments are a major source of the pain and symptoms in cervical instability because of the laxity of ligaments after injury. Regenerative Orthopedics, like Prolotherapy, are effective treatments to strengthen these ligaments. The treatments are safe to relieve the pain and symptoms of cervical instability. (1)\n\nA study in the European Journal of Preventive Medicine says, \"We found statistically significant reductions in pain and functionality, indicating the safety and viability of Prolotherapy for cervical spine instability. (2)\n<h2>An Answer for Cervical Instability and Neck Pain Treatment</h2>\nCervical instability changes a person\'s quality of life. Sufferers enter a cycle of seeking physician after physician to get some relief. The patient, family and friends become frustrated seeking an answer. But there is an answer. Regenerative Orthopedics can stop the cycle because it effectively strengthens and stabilizes the ligaments at the core of the neck instability problem. The result? A resolution of the disabling symptoms. The cervical instability patient can get back to the activities they love, with decreased pain, and increased function.\n<ul>\n 	<li>Steilen D, Hauser R, Woldin B, Sawyer S. Chronic neck pain: making the connection between capsular ligament laxity and cervical instability. The open orthopaedics journal. 2014;8:326.</li>\n 	<li>Hauser R, Steilen D, Gordin K The Biology of Prolotherapy and Its Application in Clinical Cervical Spine Instability and Chronic Neck Pain: A Retrospective Study. European Journal of Preventive Medicine. Vol. 3, No. 4, 2015, pp. 85-102. doi: 10.11648/j.ejpm.20150304.112396</li>\n</ul>','Neck Pain Treatment','','inherit','closed','closed','','5747-autosave-v1','','','2023-04-19 17:48:59','2023-04-19 17:48:59','',5747,'https://www.drfields.com/?p=5751',0,'revision','',0),(5752,9,'2023-04-19 17:40:56','2023-04-19 17:40:56','Cervical Instability 2','Cervical Instability 2','Neck Pain Treatment','inherit','closed','closed','','cervical-instability-2-2','','','2023-04-19 17:41:27','2023-04-19 17:41:27','',5747,'https://www.drfields.com/wp-content/uploads/2023/04/Cervical-Instability-2-1.png',0,'attachment','image/png',0),(5753,9,'2023-04-19 17:49:23','2023-04-19 17:49:23','<img class=\"wp-image-5752 \" src=\"https://www.drfields.com/wp-content/uploads/2023/04/Cervical-Instability-2-1-500x419.png\" alt=\"Cervical Instability 2\" width=\"415\" height=\"348\" />\r\n<h2>Neck Pain Treatment: Suffering from Cervical Instability?</h2>\r\nNeck pain and neck instability wreak havoc in a patient\'s life. If you or someone you know has been in a car accident or has hit their head, you are probably familiar with the symptoms that follow afterward and have sought neck pain treatment. Are you experiencing balance problems, neck pain, muscle spasms, dizziness, headaches/migraines, difficulty thinking, and neck mobility issues?\r\n\r\nThese symptoms are often due to cervical (neck) instability. They are frightening and interfere with your life. If that isn\'t bad enough, add to that the reality that many providers lack understanding about cervical instability. The result is exasperation! All you want is to find a treatment that provides relief.\r\n<h2>Regenerative Orthopedics: A Neck Pain Treatment and Answer for Cervical Instability</h2>\r\nAt OrthoRegen®, we understand what is behind cervical instability. We have years of experience treating patients with these symptoms. Why is Regenerative Orthopedics effective in resolving the symptoms of cervical instability? The treatment effectively repairs soft tissue injuries. It\'s not a bandaid, like pain medication or medications to relieve some dizziness. It actually repairs the underlying problem of neck instability.\r\n\r\nWhen a person experiences injuries such as whiplash, or when they hurt their neck while hitting their head, the ligaments in the neck are injured and weakened. This sets the person up for cervical instability, and the many symptoms that accompany it.\r\n\r\nWhen these ligaments are injured, they stretch out and become weak, allowing for excessive and abnormal movement in the vertebrae of the neck.\r\n<h2>As the instability worsens, so do the symptoms, and so does the frustration with the symptoms.</h2>\r\nYour doctor may even suggest surgery to stabilize the neck. Sure, surgery to fuse the vertebrae of the neck may be needed in some cases. However, a second opinion from a Regenerative Orthopedics specialist should be sought when possible. Why? Because Regenerative Orthopedics can often prevent the need for fusion surgery. Plus, Regenerative Orthopedics can strengthen the involved ligaments and restore proper motion to the neck. This cervical instability and neck pain treatment gets to the source of the problem.\r\n<h2>Explain the Neck (Cervical) Instability More, Please!</h2>\r\nThe neck is quite unique! The vertebrae in the neck are smaller and more mobile than all of the movable vertebrae of the spine. That ability is great so the neck can carry out its functions. But they also make the neck more vulnerable to injury.\r\n\r\nThe ligaments of the neck are primary stabilizing structures that connect adjacent bones. They are especially vulnerable when trauma occurs. The normal neck is stable, moving and functioning properly while remaining in correct alignment, and protecting the blood vessels, nerves, and spinal cord. Injury to the ligaments; however, changes this dynamic, and leads to instability of the cervical spine. Add to that all of the stresses and loads placed upon the neck, and a cycle of imbalance is set in motion generating even more abnormal changes in the vertebral alignment.\r\n\r\nRemember that cervical instability involves excessive and abnormal motion between vertebrae. That abnormal motion causes extra stress on the ligaments and the nerve endings within them, and results in a cycle of pain and the variety of aforementioned symptoms.\r\n<h2>Ligaments Are a Major Source of Neck Pain and Instability</h2>\r\nLigaments are a major source of the pain and symptoms in cervical instability because of the laxity of ligaments after injury. Regenerative Orthopedics, like Prolotherapy, are effective treatments to strengthen these ligaments. The treatments are safe to relieve the pain and symptoms of cervical instability. (1)\r\n\r\nA study in the European Journal of Preventive Medicine says, \"We found statistically significant reductions in pain and functionality, indicating the safety and viability of Prolotherapy for cervical spine instability. (2)\r\n<h2>An Answer for Cervical Instability and Neck Pain Treatment</h2>\r\nCervical instability changes a person\'s quality of life. Sufferers enter a cycle of seeking physician after physician to get some relief. The patient, family and friends become frustrated seeking an answer. But there is an answer. Regenerative Orthopedics can stop the cycle because it effectively strengthens and stabilizes the ligaments at the core of the neck instability problem. The result? A resolution of the disabling symptoms. The cervical instability patient can get back to the activities they love, with decreased pain, and increased function.\r\n<ul>\r\n 	<li>Steilen D, Hauser R, Woldin B, Sawyer S. Chronic neck pain: making the connection between capsular ligament laxity and cervical instability. The open orthopaedics journal. 2014;8:326.</li>\r\n 	<li>Hauser R, Steilen D, Gordin K The Biology of Prolotherapy and Its Application in Clinical Cervical Spine Instability and Chronic Neck Pain: A Retrospective Study. European Journal of Preventive Medicine. Vol. 3, No. 4, 2015, pp. 85-102. doi: 10.11648/j.ejpm.20150304.112396</li>\r\n</ul>','Neck Pain Treatment','','inherit','closed','closed','','5747-revision-v1','','','2023-04-19 17:49:23','2023-04-19 17:49:23','',5747,'https://www.drfields.com/?p=5753',0,'revision','',0),(5754,9,'2023-04-19 17:49:44','2023-04-19 17:49:44','<img class=\"wp-image-5752  alignright\" src=\"https://www.drfields.com/wp-content/uploads/2023/04/Cervical-Instability-2-1-500x419.png\" alt=\"Cervical Instability 2\" width=\"415\" height=\"348\" />\r\n<h2>Neck Pain Treatment: Suffering from Cervical Instability?</h2>\r\nNeck pain and neck instability wreak havoc in a patient\'s life. If you or someone you know has been in a car accident or has hit their head, you are probably familiar with the symptoms that follow afterward and have sought neck pain treatment. Are you experiencing balance problems, neck pain, muscle spasms, dizziness, headaches/migraines, difficulty thinking, and neck mobility issues?\r\n\r\nThese symptoms are often due to cervical (neck) instability. They are frightening and interfere with your life. If that isn\'t bad enough, add to that the reality that many providers lack understanding about cervical instability. The result is exasperation! All you want is to find a treatment that provides relief.\r\n<h2>Regenerative Orthopedics: A Neck Pain Treatment and Answer for Cervical Instability</h2>\r\nAt OrthoRegen®, we understand what is behind cervical instability. We have years of experience treating patients with these symptoms. Why is Regenerative Orthopedics effective in resolving the symptoms of cervical instability? The treatment effectively repairs soft tissue injuries. It\'s not a bandaid, like pain medication or medications to relieve some dizziness. It actually repairs the underlying problem of neck instability.\r\n\r\nWhen a person experiences injuries such as whiplash, or when they hurt their neck while hitting their head, the ligaments in the neck are injured and weakened. This sets the person up for cervical instability, and the many symptoms that accompany it.\r\n\r\nWhen these ligaments are injured, they stretch out and become weak, allowing for excessive and abnormal movement in the vertebrae of the neck.\r\n<h2>As the instability worsens, so do the symptoms, and so does the frustration with the symptoms.</h2>\r\nYour doctor may even suggest surgery to stabilize the neck. Sure, surgery to fuse the vertebrae of the neck may be needed in some cases. However, a second opinion from a Regenerative Orthopedics specialist should be sought when possible. Why? Because Regenerative Orthopedics can often prevent the need for fusion surgery. Plus, Regenerative Orthopedics can strengthen the involved ligaments and restore proper motion to the neck. This cervical instability and neck pain treatment gets to the source of the problem.\r\n<h2>Explain the Neck (Cervical) Instability More, Please!</h2>\r\nThe neck is quite unique! The vertebrae in the neck are smaller and more mobile than all of the movable vertebrae of the spine. That ability is great so the neck can carry out its functions. But they also make the neck more vulnerable to injury.\r\n\r\nThe ligaments of the neck are primary stabilizing structures that connect adjacent bones. They are especially vulnerable when trauma occurs. The normal neck is stable, moving and functioning properly while remaining in correct alignment, and protecting the blood vessels, nerves, and spinal cord. Injury to the ligaments; however, changes this dynamic, and leads to instability of the cervical spine. Add to that all of the stresses and loads placed upon the neck, and a cycle of imbalance is set in motion generating even more abnormal changes in the vertebral alignment.\r\n\r\nRemember that cervical instability involves excessive and abnormal motion between vertebrae. That abnormal motion causes extra stress on the ligaments and the nerve endings within them, and results in a cycle of pain and the variety of aforementioned symptoms.\r\n<h2>Ligaments Are a Major Source of Neck Pain and Instability</h2>\r\nLigaments are a major source of the pain and symptoms in cervical instability because of the laxity of ligaments after injury. Regenerative Orthopedics, like Prolotherapy, are effective treatments to strengthen these ligaments. The treatments are safe to relieve the pain and symptoms of cervical instability. (1)\r\n\r\nA study in the European Journal of Preventive Medicine says, \"We found statistically significant reductions in pain and functionality, indicating the safety and viability of Prolotherapy for cervical spine instability. (2)\r\n<h2>An Answer for Cervical Instability and Neck Pain Treatment</h2>\r\nCervical instability changes a person\'s quality of life. Sufferers enter a cycle of seeking physician after physician to get some relief. The patient, family and friends become frustrated seeking an answer. But there is an answer. Regenerative Orthopedics can stop the cycle because it effectively strengthens and stabilizes the ligaments at the core of the neck instability problem. The result? A resolution of the disabling symptoms. The cervical instability patient can get back to the activities they love, with decreased pain, and increased function.\r\n<ul>\r\n 	<li>Steilen D, Hauser R, Woldin B, Sawyer S. Chronic neck pain: making the connection between capsular ligament laxity and cervical instability. The open orthopaedics journal. 2014;8:326.</li>\r\n 	<li>Hauser R, Steilen D, Gordin K The Biology of Prolotherapy and Its Application in Clinical Cervical Spine Instability and Chronic Neck Pain: A Retrospective Study. European Journal of Preventive Medicine. Vol. 3, No. 4, 2015, pp. 85-102. doi: 10.11648/j.ejpm.20150304.112396</li>\r\n</ul>','Neck Pain Treatment','','inherit','closed','closed','','5747-revision-v1','','','2023-04-19 17:49:44','2023-04-19 17:49:44','',5747,'https://www.drfields.com/?p=5754',0,'revision','',0),(5755,9,'2023-04-19 17:53:46','2023-04-19 17:53:46','Back Pain. Prolotherapy','Back Pain. Prolotherapy','Back Pain. Prolotherapy','inherit','closed','closed','','back-pain-prolotherapy-2','','','2023-04-19 17:53:46','2023-04-19 17:53:46','',469,'https://www.drfields.com/wp-content/uploads/2019/06/Back-Pain.-Prolotherapy.jpeg',0,'attachment','image/jpeg',0),(5756,9,'2023-04-19 17:57:05','2023-04-19 17:57:05','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\n<div class=\"clearfix\"></div>\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<h4>What is Pain?</h4>\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\n<h4>Acute Pain vs Chronic Pain</h4>\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\n\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\n<h4>Why Am I Still In Pain?</h4>\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\n\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\n<h4>Who Uses Prolotherapy?</h4>\n<img class=\"wp-image-5755  alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Back-Pain.-Prolotherapy-500x375.jpeg\" alt=\"Back Pain. Prolotherapy\" width=\"415\" height=\"310\" />\n\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\n\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\n<h4>Why Prolotherapy Works</h4>\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\n\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\n<h4>Are You A Candidate For Prolotherapy?</h4>\nWhether your  pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen<sup>®</sup>, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+[phone_raw]\">[phone]</a>.\n\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Pain Overview','','inherit','closed','closed','','469-autosave-v1','','','2023-04-19 17:57:05','2023-04-19 17:57:05','',469,'https://www.drfields.com/?p=5756',0,'revision','',0),(5757,9,'2023-04-19 17:54:53','2023-04-19 17:54:53','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div class=\"clearfix\"></div>\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Pain receptors, found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>Who Uses Prolotherapy?</h4>\r\n<img class=\"wp-image-5755 \" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Back-Pain.-Prolotherapy-500x375.jpeg\" alt=\"Back Pain. Prolotherapy\" width=\"440\" height=\"330\" />\r\n\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your chronic pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen<sup>®</sup>, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2023-04-19 17:54:53','2023-04-19 17:54:53','',469,'https://www.drfields.com/?p=5757',0,'revision','',0),(5758,9,'2023-04-19 17:57:59','2023-04-19 17:57:59','<h4>Treat Your Chronic Pain With Prolotherapy</h4>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"hA1FVmxWixE\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg\" alt=\"Dr. Barry Leonard - PRP Knee\"]<strong>Dr. Barry Leonard - PRP Knee</strong></div>\r\n<div id=\"youtubeleft\" class=\"youtube-click-div \">[video_lightbox_youtube video_id=\"vQGBBEARjMk\" width=\"640\" height=\"480\" anchor=\"https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg\" alt=\"May - Knee\"]<strong>May - Knee</strong></div>\r\n<div class=\"clearfix\"></div>\r\nAre you suffering from a back injury, a work-related injury or a sports injury? Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? If it has, then a doctor might have told you that you need to have surgery, arthroscopy, cortisone injections or take dangerous NSAIDS to treat your chronic pain. In many cases, those may not be the best treatments. Depending on the nature of your injury, you may be able to <strong>treat your chronic pain with Prolotherapy</strong>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>What is Pain?</h4>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Receptors for pain are found in the skin and other tissues are nerve fibres that react to stimuli. Pain impulses enter the spinal cord and are transmitted to your brain, where they are interpreted as pain. The purpose of pain in a person’s body is chiefly protective; pain acts as a warning that tissues are being damaged. This tissue damage can be actual or potential.\r\n<h4>Acute Pain vs Chronic Pain</h4>\r\nThere are two general categories of pain: acute pain and chronic pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs. Chronic pain however, can range from mild to severe and can last weeks, months or longer. Chronic pain is pain that continues or recurs over a prolonged period. Under certain conditions the pain receptors in the body become more sensitive over a period of time. This means that as long as a traumatic stimulus persists, you will continue to be aware that damage to the tissues may still be occurring.\r\n\r\n<a style=\"display: block; margin: 0 auto; max-width: 275px;\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\"><img style=\"max-width: 100%;\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg\" width=\"275\" /></a>\r\n<h4>Why Am I Still In Pain?</h4>\r\nYou might wonder why there is still pain in an injured area or why that area remains weak, even after healing for weeks, months or years. The answer is that both ligaments and tendons have very poor circulation. This lack of blood supply deprives these tissues of nutrients they need to heal properly.\r\n\r\n<a href=\"https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/\">Prolotherapy</a> builds stronger or larger tendons or ligaments that can hold body structures in place more effectively. The weakened area heals, and the patient’s pain is reduced or eliminated. Prolotherapy is an excellent alternative to cortisone injections, which long-term studies show, can actually weaken tissue.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>\r\n<h4>Who Uses Prolotherapy?</h4>\r\n<img class=\"wp-image-5755  alignright\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/Back-Pain.-Prolotherapy-500x375.jpeg\" alt=\"Back Pain. Prolotherapy\" width=\"415\" height=\"310\" />\r\n\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAID or narcotic medications, various therapies, and exercises. In many cases, these methods do not deal with the cause of the pain. Most of the time, musculoskeletal pain is due to weakness in the ligaments, tendons and possibly cartilage. Athletes with sports injuries are especially interested in the use of Prolotherapy for treatment because it is an alternative to surgery, arthroscopy, cortisone shots, non-steroidal and anti-inflammatories, and chronic use of narcotic pain medications. These measures may not help, and often hinder or even prevent the healing process.\r\n\r\nDo you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or is your chronic pain somewhere else in your body, such as your back, hips, or ankles? Wherever it is, Dr. Fields may be able to treat your chronic pain with Prolotherapy.\r\n<h4>Why Prolotherapy Works</h4>\r\nProlotherapy works because it stimulates an inflammatory reaction in the body. Solutions are injected into the affected ligaments, tendons, or joints, which leads to local inflammation in that specific area. The localized inflammation triggers the deposition of new collagen, the material in which ligaments and tendons are made. New collagen shrinks as it matures and tightens the ligament that was injected, making it stronger.\r\n\r\nThe potential for Prolotherapy to eliminate chronic pain is very high, especially in sports injuries that are a result of ligament and tendon weakness. Prolotherapy can regenerate damaged tissues and ultimately alleviate the problem causing the pain. Our goal at OrthoRegen<sup>®</sup> is for our patients to have an active, healthy, pain-free life. Prolotherapy is a very safe, affordable option that allows you to keep working and training during the recovery process. It is one treatment that encourages movement post-treatment. Movement actually aids the healing process after Prolotherapy.\r\n<h4>Are You A Candidate For Prolotherapy?</h4>\r\nWhether your pain is from a back injury, a work-related injury, or a sports injury, you can treat your chronic pain with Prolotherapy. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or get a second opinion for a recommended surgery. We see all levels of injury, simple to extensive. At OrthoRegen<sup>®</sup>, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Call today, <a href=\"tel:+[phone_raw]\">[phone]</a>.\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Schedule Your Appointment Today!</a>','Chronic Pain Overview','','inherit','closed','closed','','469-revision-v1','','','2023-04-19 17:57:59','2023-04-19 17:57:59','',469,'https://www.drfields.com/?p=5758',0,'revision','',0),(5760,8,'2023-04-26 10:14:45','2023-04-26 10:14:45','<h2>What Are the Common Meniscus Tear Treatments?</h2>\r\n<img class=\"wp-image-5761 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2023/04/meniscectomy.-Osteoarthritis-and-Cartilage-500x419.png\" alt=\"Meniscectomy. Osteoarthritis And Cartilage\" width=\"300\" height=\"251\" />\r\n\r\nWhen an injury to the meniscus occurs, patients commonly try non-surgical meniscus tear treatments like rest, ice, compression, elevation, pain medications, physical therapy, and cortisone injections. When those do not work, their doctor may recommend arthroscopic surgery.\r\n\r\nSurgery, though, has not been shown to be an effective means to treat meniscus injuries. Studies have found no significant difference between meniscectomy and sham surgery. And recent studies show that surgery does not reduce the mechanical symptoms of knee catching and locking, which patients often experience.\r\n\r\nAs you can see, the effectiveness of meniscectomies is questionable. So why do patients seek surgery to fix their meniscus?\r\n<h2>Patients Believe Meniscus Surgery Will Restore Knee Function. But Will It?</h2>\r\nWhen a patient is in pain, they want the pain to stop. And when an athlete has an injury, they want to get it fixed so they can return to the game. Therefore, they decide to receive surgery so they can return to the activities they love, believing that the surgery will restore knee function.\r\n\r\nSure, there are successful meniscus surgeries. But that\'s not who we see in our office.\r\nWe see patients who want to avoid surgery and those who have continued pain after surgery. But what about people we don\'t see? What are the outcomes of patients receiving surgical meniscectomy? And what does the research say about meniscus surgery?\r\n\r\nThe medical journal Cureus states, “Arthroscopic partial meniscectomy (APM) is currently the most performed orthopedic procedure around the globe. However, recent studies have conclusively <strong>shown that outcomes after an arthroscopic partial meniscectomy are no better than the outcomes after a sham/placebo surgery.\"</strong> (1)\r\n<h2>What About Athletes? Does Surgery Help?</h2>\r\nDo athletes who choose surgery to return to their sport more quickly achieve their goals? A team of doctors in the journal Knee Surgery, Sports Traumatology and Arthroscopy evaluated 421 elite athletes who received partial meniscectomy or a meniscus repair. They found that 84.7% returned to the sport after a partial meniscectomy (a piece of meniscus removed), and 78.3% returned to the sport after a meniscal repair (a small tear sewn with suture). (2)\r\n\r\nThe study also showed that although surgery allowed for a return to sports in these patients, it also increased the risk of developing knee arthritis. If you do the math, that means over 15-20% or about 1 in 5 elite athletes do not return to their sport. And those that do now have a higher arthritis risk.\r\n\r\nWhy does the risk of arthritis increase with surgery? The meniscus and the ligaments are stabilizing structures for the knee. When this soft tissue is cut and trimmed during the surgical process, the knee is destabilized. The knee instability sets the arthritic cycle in motion.\r\n<h2>Is Meniscectomy the Meniscus Tear Treatment for Patients Over 50?</h2>\r\nSurgeons have a more difficult time predicting who will benefit from meniscectomy in patients over 50. In the journal, Current Reviews in Musculoskeletal Medicine, reviewers wrote, \"Despite an abundance of literature exploring outcomes of arthroscopic partial meniscus for degenerative meniscus tears, there is little consensus among surgeons about the drivers of good outcomes following arthroscopic partial meniscus.\"(3)\r\n\r\nIn older patients or active patients with arthritis, more conservative therapies should be sought for meniscal tears.\r\n<h2>\"Can even experienced orthopaedic surgeons predict who will benefit from surgery when patients present with degenerative meniscal tears?\"</h2>\r\nThat\'s the exact title of an article in the British Journal of Sports Medicine. Researchers questioned whether orthopedic surgeons could predict the outcomes of treating meniscal tears with arthroscopic partial meniscectomy. The answer? The surgeons were only correct 50% of the time. How eye-opening! Only half the time, these experienced surgeons had it right when recommending that surgery be indicated. The results are no different than the flip of a coin!! (4)\r\n<h2>What\'s the Meniscus Tear Treatment for Patients Who Already Have Arthritis?</h2>\r\nPatients with meniscal tears and severe arthritis have a high risk of needing more surgery. The Indian Journal of Orthopaedics says, “Clinical practice is moving away from treating meniscal tears in patients with osteoarthritis unless there are mechanical symptoms (Knee function is significantly compromised). This study assessed the risk of needing further surgery for osteoarthritis in the five years following partial meniscectomy in different age groups and different grades of knee osteoarthritis”(5).\r\n\r\nUnfortunately, patients are often too optimistic that surgery will fix everything. “In general, <strong>patients undergoing arthroscopic meniscus surgery were too optimistic regarding their recovery time</strong> and postoperative participation in leisure activities. This highlights the need for shared decision making which should include giving the patient information on realistic expectations. . .\"(6)\r\n<h2>The Controversy Continues Regarding the Efficacy of Partial Meniscectomy</h2>\r\nIn a January 2023 paper published in the journal Osteoarthritis Cartilage, researchers examined comparison studies between arthroscopic partial meniscectomy versus non-surgical or sham treatment in patients with MRI-confirmed degenerative meniscus tears. What did they find? Overall knee function and health-related quality of life did not differ between the two groups. And across all outcomes, no relevant subgroup of patients benefitted more from the arthroscopic partial meniscectomy than the sham surgery. (7)\r\n<h2>What Is the Alternative to Meniscectomy?</h2>\r\nGiven these poor outcomes and up to 6 months of recovery time even in \"successful\" surgeries, what alternative does a patient with an injured meniscus have?\r\n\r\n<strong>Regenerative Orthopedics, like Prolotherapy, PRP, and Stem Cell Therapy, stabilize the soft tissue structures and stop the arthritic cycle.</strong> As we said earlier, the meniscus is a primary stabilizing structure, as are the ligaments. When destabilized from meniscectomy, the abnormal motion will occur, and friction will increase, causing the acceleration of cartilage breakdown.\r\n\r\nRegenerative Orthopedics will strengthen the ligaments, repair the meniscus, and stop the breakdown of cartilage.\r\n<h2>PRP for Meniscal Repair</h2>\r\nAt OrthoRegen, our regenerative specialists may recommend PRP and Prolotherapy to repair the damaged knee.\r\n\r\n• PRP is full of growth factors that boost the healing and repair of the damaged meniscus.\r\n• Dextrose Prolotherapy is a successful treatment for the repair of ligaments and tendons. Whenever an injury is significant enough to damage a meniscus, it is also very likely that ligaments have also been damaged. Prolotherapy effectively repairs the damaged ligaments or involved tendons.\r\n\r\nRegenerative Orthopedics are safe, conservative treatment alternatives for the injured meniscus. In the athlete and non-athlete alike, these treatments offer an effective non-surgical option for the repair of the injured meniscus.\r\n\r\nGiven the accumulation of evidence demonstrating the overwhelming lack of efficacy and benefit and the risk for serious adverse effects of this widely used procedure for meniscus tears, it is essential to consider potential safe and effective alternatives.\r\n\r\nRegenerative Orthopedic treatments boost the healing process, raise growth factors, and initiate repair. The treatments stimulate new cell growth and rebuild depleted tissue, including cartilage regeneration.\r\n\r\nRegenerative Orthopedic treatments can safely and effectively treat meniscus tears non-surgically, returning you quickly to the activities and sports you enjoy.\r\n<h3>References</h3>\r\n(1) Bhan K. Meniscal Tears: Current Understanding, Diagnosis, and Management. Cureus. 2020;12(6):e8590. Published 2020 Jun 13. doi:10.7759/cureus.8590.\r\n(2) D’Ambrosi R, Meena A, Raj A, Ursino N, Mangiavini L, Herbort M, Fink C. In elite athletes with meniscal injuries, always repair the lateral, think about the medial! A systematic review. Knee Surgery, Sports Traumatology, Arthroscopy. 2022 Nov 2:1-1.\r\n(3) Avila A, Vasavada K, Shankar DS, Petrera M, Jazrawi LM, Strauss EJ. Current Controversies in Arthroscopic Partial Meniscectomy. Current Reviews in Musculoskeletal Medicine. 2022 Jun 21:1-8.\r\n(4) Van De Graaf VA, Bloembergen CH, Willigenburg NW, Noorduyn JC, Saris DB, Harris IA, Poolman RW. Can even experienced orthopaedic surgeons predict who will benefit from surgery when patients present with degenerative meniscal tears? A survey of 194 orthopaedic surgeons who made 3880 predictions. British Journal of Sports Medicine. 2020 Mar 1;54(6):354-9.\r\n(5) Chitnis SS, Al-Azzani WA, Kakar R. Medium-Term Results of Arthroscopic Partial Meniscectomy from a Single High-Volume Center. Indian Journal of Orthopaedics. 2020 May;54(3):358-65.\r\n(6) Pihl K, Roos EM, Nissen N, JøRgensen U, Schjerning J, Thorlund JB. Over-optimistic patient expectations of recovery and leisure activities after arthroscopic meniscus surgery: A prospective cohort study of 478 patients. Acta Orthopaedica. 2016;87(6):615-621.\r\n(7) Wijn SR, Hannink G, Østerås H, Risberg MA, Roos EM, Hare KB, van de Graaf VA, Poolman RW, Ahn HW, Seon JK, Englund M. Arthroscopic partial meniscectomy versus non-surgical or sham treatment in patients with MRI-confirmed degenerative meniscus tears: a systematic review and meta-analysis with individual participant data from 605 randomised patients. Osteoarthritis and Cartilage. 2023 Jan 13.\r\n(8) Hackett GS, Hemwall GA, Montgomery GA. Ligament and Tendon Relaxation Treated by Prolotherapy. 5th ed. Oak Park, IL: Gustav A. Hemwall; 1993.\r\n(9) Hauser RA, Blakemore PJ, Wang J, Steilen D. Structural basis of joint instability as cause for chronic musculoskeletal pain and its successful treatment with regenerative injection therapy (prolotherapy). The Open Pain Journal 2014; 7: 9-22.','Meniscus Tear Treatments','','publish','closed','open','','meniscus-tear-treatments','','','2023-05-03 20:50:27','2023-05-03 20:50:27','',0,'https://www.drfields.com/?p=5760',0,'post','',0),(5761,8,'2023-04-29 03:20:49','2023-04-29 03:20:49','Meniscectomy. Osteoarthritis And Cartilage','Meniscectomy. Osteoarthritis And Cartilage','Meniscectomy. Osteoarthritis And Cartilage','inherit','closed','closed','','meniscectomy-osteoarthritis-and-cartilage','','','2023-04-29 03:20:49','2023-04-29 03:20:49','',5760,'https://www.drfields.com/wp-content/uploads/2023/04/meniscectomy.-Osteoarthritis-and-Cartilage.png',0,'attachment','image/png',0),(5762,8,'2023-04-29 03:21:33','2023-04-29 03:21:33','<h2>What Are the Common Treatments for a Meniscus Tear?</h2>\r\n[caption id=\"attachment_5761\" align=\"alignright\" width=\"300\"]<img class=\"wp-image-5761\" src=\"https://www.drfields.com/wp-content/uploads/2023/04/meniscectomy.-Osteoarthritis-and-Cartilage-500x419.png\" alt=\"Meniscectomy. Osteoarthritis And Cartilage\" width=\"300\" height=\"251\" /> Meniscectomy. Osteoarthritis And Cartilage[/caption]\r\n\r\nWhen an injury to the meniscus occurs, patients commonly try non-surgical therapies like rest, ice, compression, and elevation, pain medications, physical therapy, and cortisone injections. When those do not work, their doctor may recommend arthroscopic surgery.\r\n\r\nSurgery, though, has not been shown to be an effective means to treat meniscus injuries. In fact, studies have found no significant difference between meniscectomy and sham surgery. And recent studies show the surgery does not reduce the mechanical symptoms of knee catching and locking, which patients often experience.\r\n\r\nAs you can see, the effectiveness of meniscectomies is questionable. So why do patients seek surgery to fix their meniscus?\r\n<h2>Patients Believe Meniscus Surgery Will Restore Knee Function. But Will It?</h2>\r\nWhen a patient is in pain they want the pain to stop. And when an athlete has an injury, they want to get it fixed so they can return to the game. Therefore, they make the decision to receive surgery so they can return to the activities they love, believing that the surgery will restore knee function.\r\n\r\nSure, there are successful meniscus surgeries. But that\'s not who we see in our office.\r\nWe see patients who want to avoid surgery, and those who have continued pain after surgery. But what about people we don\'t see? What are the outcomes of patients receiving surgical meniscectomy? And what does the research say about meniscus surgery?\r\n\r\nThe medical journal Cureus states, “Arthroscopic partial meniscectomy (APM) is currently the most performed orthopedic procedure around the globe. However, recent studies have conclusively <strong>shown that outcomes after an arthroscopic partial meniscectomy are no better than the outcomes after a sham/placebo surgery.</strong> (1)\r\n<h2>What About Athletes? Does Surgery Help?</h2>\r\nDo athletes who choose surgery to get back to their sport more quickly achieve their goal? A team of doctors in the journal Knee Surgery, Sports Traumatology and Arthroscopy evaluated 421 elite athletes who received partial meniscectomy or a meniscus repair. They found that 84.7% returned to sport after partial meniscectomy (piece of meniscus removed) and 78.3% returned to sport after a meniscal repair (a small tear sewn with suture). (2)\r\n\r\nThe study also showed that although surgery allowed for a return to sports in these patients, it also increased the risk for the development of knee arthritis. If you do the math, that means over 15-20% or about 1 in 5 elite athletes do not return to their sport. And those that do, now have a higher arthritis risk.\r\nWhy does the risk of arthritis increase with surgery? The meniscus and the ligaments are stabilizing structures for the knee. When this soft tissue is cut and trimmed during the surgical process, the knee is destabilized. The knee instability sets the arthritic cycle in motion.\r\n<h2>Is Meniscectomy the Way to Go for Patients Over 50?</h2>\r\nSurgeons have a more difficult time predicting who will benefit from meniscectomy in patients over 50. In the journal, Current Reviews in Musculoskeletal Medicine, reviewers wrote, \"Despite an abundance of literature exploring outcomes of arthroscopic partial meniscus for degenerative meniscus tears, there is little consensus among surgeons about the drivers of good outcomes following arthroscopic partial meniscus.\"(3)\r\n\r\nIn older patients or in active patients with arthritis, more conservative therapies should be sought for meniscal tears.\r\n<h2>\"Can even experienced orthopaedic surgeons predict who will benefit from surgery when patients present with degenerative meniscal tears?\"</h2>\r\nThat\'s the exact title of an article in the British Journal of Sports Medicine. Researchers questioned whether orthopedic surgeons could predict the outcomes for treatment of meniscal tears with arthroscopic partial meniscectomy. The answer? The surgeons were only correct 50% of the time. How eye-opening! Only half the time, these experienced surgeons had it right when recommending that surgery was indicated. The results are no different than the flip of a coin!! (4)\r\n<h2>What About Patients Who Already Have Arthritis?</h2>\r\nPatients with meniscal tears and severe arthritis have a high risk of needing more surgery. The Indian Journal of Orthopaedics says, “Clinical practice is moving away from treating meniscal tears in patients with osteoarthritis unless there are mechanical symptoms (Knee function is significantly compromised). This study assessed the risk of needing further surgery for osteoarthritis in the five years following partial meniscectomy in different age groups and different grades of knee osteoarthritis”(5).\r\n\r\nUnfortunately, patients are often too optimistic that surgery will fix everything. “In general, <strong>patients undergoing arthroscopic meniscus surgery were too optimistic regarding their recovery time</strong> and postoperative participation in leisure activities. This highlights the need for shared decision making which should include giving the patient information on realistic expectations. . .\"(6)\r\n<h2>The Controversy Continues Regarding the Efficacy of Partial Meniscectomy</h2>\r\nIn a January 2023 paper published in the journal Osteoarthritis Cartilage, researchers examined comparison studies between arthroscopic partial meniscectomy versus non-surgical or sham treatment in patients with MRI-confirmed degenerative meniscus tears. What did they find? Overall knee function and health-related quality of life did not differ between the two groups. And across all outcomes, no relevant subgroup of patients benefitted more from the arthroscopic partial meniscectomy than the sham surgery. (7)\r\n<h2>What Is the Alternative to Menisectomy?</h2>\r\nGiven these poor outcomes and up to 6 months recovery time even in \"successful\" surgeries, what alternative does a patient with an injured meniscus have?\r\n\r\n<strong>Regenerative Orthopedics, like Prolotherapy, PRP, and Stem Cell Therapy stabilize the soft tissue structures and stop the arthritic cycle.</strong> As we said earlier, the meniscus is a primary stabilizing structure, as are the ligaments. When detabilized from meniscectomy, abnormal motion will occur, and friction will increase, causing the acceleration of cartilage breakdown.\r\n\r\nRegenerative Orthopedics will strengthen the ligaments, repair the meniscus, and stop the breakdown of cartilage.\r\n<h2>PRP for Meniscal Repair</h2>\r\nAt OrthoRegen, our regenerative specialists may recommend PRP along with Prolotherapy, to repair the damaged knee.\r\n\r\n• PRP is full of growth factors that boost the healing and repair of the damaged meniscus.\r\n• Dextrose Prolotherapy is a successful treatment for the repair of ligaments and tendons. Whenever an injury is significant enough to damage a meniscus, it is also very likely that ligaments have also been damaged. Prolotherapy effectively repairs the damaged ligaments or involved tendons.\r\n\r\nRegenerative Orthopedics are safe, conservative treatment alternatives for the injured meniscus. In the athlete and non-athlete alike, these treatments offer an effective non-surgical option for the repair of the injured meniscus.\r\n\r\nGiven the accumulation of evidence demonstrating not only the overwhelming lack of efficacy and benefit, but also the risk for serious adverse effects of this widely used procedure for meniscus tears, it is important to consider potential safe and effective alternatives.\r\n\r\nRegenerative Orthopedic treatments work by boosting the healing process, raising the levels of growth factors, and initiating repair. The treatments stimulate new cell growth and rebuild depleted tissue, including the regeneration of cartilage.\r\n\r\nRegenerative Orthopedic treatments can safely and effectively treat meniscus tears non-surgically, returning you quickly to the activities and sports you enjoy.\r\n<h3>References</h3>\r\n(1) Bhan K. Meniscal Tears: Current Understanding, Diagnosis, and Management. Cureus. 2020;12(6):e8590. Published 2020 Jun 13. doi:10.7759/cureus.8590.\r\n(2) D’Ambrosi R, Meena A, Raj A, Ursino N, Mangiavini L, Herbort M, Fink C. In elite athletes with meniscal injuries, always repair the lateral, think about the medial! A systematic review. Knee Surgery, Sports Traumatology, Arthroscopy. 2022 Nov 2:1-1.\r\n(3) Avila A, Vasavada K, Shankar DS, Petrera M, Jazrawi LM, Strauss EJ. Current Controversies in Arthroscopic Partial Meniscectomy. Current Reviews in Musculoskeletal Medicine. 2022 Jun 21:1-8.\r\n(4) Van De Graaf VA, Bloembergen CH, Willigenburg NW, Noorduyn JC, Saris DB, Harris IA, Poolman RW. Can even experienced orthopaedic surgeons predict who will benefit from surgery when patients present with degenerative meniscal tears? A survey of 194 orthopaedic surgeons who made 3880 predictions. British Journal of Sports Medicine. 2020 Mar 1;54(6):354-9.\r\n(5) Chitnis SS, Al-Azzani WA, Kakar R. Medium-Term Results of Arthroscopic Partial Meniscectomy from a Single High-Volume Center. Indian Journal of Orthopaedics. 2020 May;54(3):358-65.\r\n(6) Pihl K, Roos EM, Nissen N, JøRgensen U, Schjerning J, Thorlund JB. Over-optimistic patient expectations of recovery and leisure activities after arthroscopic meniscus surgery: A prospective cohort study of 478 patients. Acta Orthopaedica. 2016;87(6):615-621.\r\n(7) Wijn SR, Hannink G, Østerås H, Risberg MA, Roos EM, Hare KB, van de Graaf VA, Poolman RW, Ahn HW, Seon JK, Englund M. Arthroscopic partial meniscectomy versus non-surgical or sham treatment in patients with MRI-confirmed degenerative meniscus tears: a systematic review and meta-analysis with individual participant data from 605 randomised patients. Osteoarthritis and Cartilage. 2023 Jan 13.\r\n(8) Hackett GS, Hemwall GA, Montgomery GA. Ligament and Tendon Relaxation Treated by Prolotherapy. 5th ed. Oak Park, IL: Gustav A. Hemwall; 1993.\r\n(9) Hauser RA, Blakemore PJ, Wang J, Steilen D. Structural basis of joint instability as cause for chronic musculoskeletal pain and its successful treatment with regenerative injection therapy (prolotherapy). The Open Pain Journal 2014; 7: 9-22.','Meniscus Tear Treatment','','inherit','closed','closed','','5760-revision-v1','','','2023-04-29 03:21:33','2023-04-29 03:21:33','',5760,'https://www.drfields.com/?p=5762',0,'revision','',0),(5763,8,'2023-04-29 03:24:05','2023-04-29 03:24:05','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"/articles/meniscus-tear-treatment/\">Meniscus Tear Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/neck-pain-treatment/\">Neck Pain Treatment</a></li>\r\n 	<li><a href=\"/uncategorized/knee-replacement-failure/\">Knee Replacement Failure</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/best-treatments-for-low-back-pain/\">Best Treatments For Low Back Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/arthritis-knee-treatment/\">Arthritis Knee Treatment</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/back-pain-treatment/\">Back Pain Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-04-29 03:24:05','2023-04-29 03:24:05','',2109,'https://www.drfields.com/?p=5763',0,'revision','',0),(5766,9,'2023-05-03 20:31:38','2023-05-03 20:31:38','[caption id=\"attachment_5737\" align=\"alignright\" width=\"300\"]<img class=\"wp-image-5737\" src=\"https://www.drfields.com/wp-content/uploads/2023/04/Knee-Replacement-Failures-500x419.png\" alt=\"Knee Replacement Failures\" width=\"300\" height=\"251\" /> <strong> Knee Replacement Failure Statistics</strong>[/caption]\r\n<h2>Understanding Knee Replacement Failure</h2>\r\nKnee replacement is a huge undertaking. The surgery requires hospitalization and prolonged downtime. But is this surgery just a one-time thing? Unfortunately, it may not be!\r\n\r\nAdditionally, there is also a risk of replacement failure necessitating revision surgery down the road. How high is that risk?\r\n<h3><strong>Why Do Knee Replacements Fail?</strong></h3>\r\nThe leading cause of knee replacement failure is infection. Instability, looseness, persistent stiffness, ongoing pain, and metal allergies are additional reasons for failure.\r\n<h4><strong>Reasons for Increased Knee Replacement Failure Include:</strong></h4>\r\n<em>Revision Surgery</em>\r\n\r\nWhen replacements fail, revision surgery is needed, and revision surgeries have even worse outcomes than the initial replacement. (1)\r\n\r\n<em>Higher Recipient Rates</em>\r\n\r\nOne reason failure rates are getting higher is that more people are getting knee replacements. People are receiving knee replacements at a younger age too. And knee replacements don\'t last forever. In time, all knee replacements fail.\r\n\r\n<em>Continued Pain after Knee Replacement</em>\r\n\r\nKnee replacement recipients report a substantial rate of continued pain after knee replacement. Twenty percent or one in five patients who undergo total knee replacement for osteoarthritis report an unfavorable pain outcome after surgery. (2)\r\n\r\nGerman physicians reported even higher rates of pain, “About one-third of all patients after total knee arthroplasty experience persistent or recurring pain and/or dissatisfaction.\"(3)\r\n\r\nAnd researchers from the United Kingdom reported that \"adverse knee pain occurs in 10-34% of all total knee replacements, and 20% of total knee replacements patients experience more pain post-operatively than pre-operatively.\"(4)\r\n<h3><strong>How Long Do Knee Replacements Last?</strong></h3>\r\nResults vary when data is reviewed to show how long knee replacements last. Some studies show 15 years, others 20 years, and still others 25 years. (2,5,6)\r\n<h3><strong>What Is Your Idea of a Successful Knee Replacement?</strong></h3>\r\nYou may be surprised that your idea of success and the surgeon\'s idea of surgical success may differ completely. The surgeon may be satisfied that the surgery itself went well. But you may not be happy with that alone. If you have pain, a loose knee, swelling, and less walking ability after surgery than before, you may not feel like the surgery was a success.\r\n\r\nIn the Journal of Arthroplasty, researchers described patient dissatisfaction with their knee replacement due to looseness. The patients reported more pain and unmet expectations. (7)\r\n\r\nPatients generally expect a better quality of life after surgery, including less pain and an increased ability to do the activities they want. When these expectations are not met, patients are dissatisfied.\r\n<h3><strong>Is There An Alternative?</strong></h3>\r\nRegenerative Orthopedics is an alternative therapy that can be sought before surgery. The treatment should also be sought if surgery has already been done, and the patient is dissatisfied, or if the pain continues.\r\n\r\nBefore getting to the point of surgery, these regenerative treatments can stop the cycle of degeneration, reduce pain, and improve function. Osteoarthritis is the main reason people end up facing a knee replacement. Arthritis occurs because of instability in the knee joint. The instability is the result of an old or new injury. Regenerative Orthopedics can stabilize the knee and stop the degenerative process in these cases.\r\n\r\nRegenerative treatments can also help once a replacement has been done. The connective tissues damaged by the surgery or the damage due to the new stress placed on them by the implant can be strengthened and repaired.\r\n\r\nWe are pleased to offer this alternative to knee replacement and a solution when pain and dissatisfaction continue after knee replacement. Give us a call at 310-453-1234.\r\n<h3><strong>References</strong></h3>\r\n(1) Agarwal, Sanjeev, et al. \"Why are revision knee replacements failing?.\" <em>The Knee</em> 26.3 (2019): 774-778.\r\n\r\n(2) Beswick AD, Wylde V, Gooberman-Hill R, et al. What proportion of patients report long-term pain after total hip or knee replacement for osteoarthritis? A systematic review of prospective studies in unselected patients. BMJ Open 2012; 2:e000435. doi: 10.1136/bmjopen-2011-000435\r\n\r\n(3) Mathis DT, Hirschmann MT. Trotz Knietotalprothese schmerzt das Knie – was nun? [Painful knee after total knee arthroplasty – what can be done?]. Ther Umsch. 2020;77(10):491-497. German.\r\n\r\n(4) Li CY, Ng Cheong Chung KJ, Ali OM, Chung ND, Li CH. Literature review of the causes of pain following total knee replacement surgery: prosthesis, inflammation and arthrofibrosis. EFORT Open Reviews. 2020 Sep;5(9):534-43.\r\n\r\n(5) P van der List, DL Sheng, LJ Kleeblad, H Chawla, AD Pearle. Outcomes of cementless unicompartmental and total knee arthroplasty: a systematic review. Knee, 24 (2017), pp. 497-507.\r\n\r\n(6) T Niinimaki, A Eskelinen, K Makela, P Ohtonen, A-P Puhto, V Remes. Unicompartmental knee arthroplasty survivorship is lower than TKA survivorship: a 27-year Finnish registry study. Clin Orthop Relat Res, 472 (2014), pp. 1496-1501.\r\n\r\n(7) Broberg JS, Naudie DD, Lanting BA, Howard JL, Vasarhelyi EM, Teeter MG. Patient and Implant Performance of Satisfied and Dissatisfied Total Knee Arthroplasty Patients. The Journal of Arthroplasty. 2022 Jun 1;37(6):S98-104.','Knee Replacement Failure','','inherit','closed','closed','','5736-revision-v1','','','2023-05-03 20:31:38','2023-05-03 20:31:38','',5736,'https://www.drfields.com/?p=5766',0,'revision','',0),(5767,9,'2023-05-03 20:49:24','2023-05-03 20:49:24','<h2>What Are the Common Meniscus Tear Treatments?</h2>\n<img class=\"wp-image-5761 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2023/04/meniscectomy.-Osteoarthritis-and-Cartilage-500x419.png\" alt=\"Meniscectomy. Osteoarthritis And Cartilage\" width=\"300\" height=\"251\" />\n\nWhen an injury to the meniscus occurs, patients commonly try non-surgical meniscus tear treatments like rest, ice, compression, elevation, pain medications, physical therapy, and cortisone injections. When those do not work, their doctor may recommend arthroscopic surgery.\n\nSurgery, though, has not been shown to be an effective means to treat meniscus injuries. Studies have found no significant difference between meniscectomy and sham surgery. And recent studies show that surgery does not reduce the mechanical symptoms of knee catching and locking, which patients often experience.\n\nAs you can see, the effectiveness of meniscectomies is questionable. So why do patients seek surgery to fix their meniscus?\n<h2>Patients Believe Meniscus Surgery Will Restore Knee Function. But Will It?</h2>\nWhen a patient is in pain, they want the pain to stop. And when an athlete has an injury, they want to get it fixed so they can return to the game. Therefore, they decide to receive surgery so they can return to the activities they love, believing that the surgery will restore knee function.\n\nSure, there are successful meniscus surgeries. But that\'s not who we see in our office.\nWe see patients who want to avoid surgery and those who have continued pain after surgery. But what about people we don\'t see? What are the outcomes of patients receiving surgical meniscectomy? And what does the research say about meniscus surgery?\n\nThe medical journal Cureus states, “Arthroscopic partial meniscectomy (APM) is currently the most performed orthopedic procedure around the globe. However, recent studies have conclusively <strong>shown that outcomes after an arthroscopic partial meniscectomy are no better than the outcomes after a sham/placebo surgery.\"</strong> (1)\n<h2>What About Athletes? Does Surgery Help?</h2>\nDo athletes who choose surgery to return to their sport more quickly achieve their goals? A team of doctors in the journal Knee Surgery, Sports Traumatology and Arthroscopy evaluated 421 elite athletes who received partial meniscectomy or a meniscus repair. They found that 84.7% returned to the sport after a partial meniscectomy (a piece of meniscus removed), and 78.3% returned to the sport after a meniscal repair (a small tear sewn with suture). (2)\n\nThe study also showed that although surgery allowed for a return to sports in these patients, it also increased the risk of developing knee arthritis. If you do the math, that means over 15-20% or about 1 in 5 elite athletes do not return to their sport. And those that do now have a higher arthritis risk.\n\nWhy does the risk of arthritis increase with surgery? The meniscus and the ligaments are stabilizing structures for the knee. When this soft tissue is cut and trimmed during the surgical process, the knee is destabilized. The knee instability sets the arthritic cycle in motion.\n<h2>Is Meniscectomy the Meniscus Tear Treatment for Patients Over 50?</h2>\nSurgeons have a more difficult time predicting who will benefit from meniscectomy in patients over 50. In the journal, Current Reviews in Musculoskeletal Medicine, reviewers wrote, \"Despite an abundance of literature exploring outcomes of arthroscopic partial meniscus for degenerative meniscus tears, there is little consensus among surgeons about the drivers of good outcomes following arthroscopic partial meniscus.\"(3)\n\nIn older patients or active patients with arthritis, more conservative therapies should be sought for meniscal tears.\n<h2>\"Can even experienced orthopaedic surgeons predict who will benefit from surgery when patients present with degenerative meniscal tears?\"</h2>\nThat\'s the exact title of an article in the British Journal of Sports Medicine. Researchers questioned whether orthopedic surgeons could predict the outcomes of treating meniscal tears with arthroscopic partial meniscectomy. The answer? The surgeons were only correct 50% of the time. How eye-opening! Only half the time, these experienced surgeons had it right when recommending that surgery be indicated. The results are no different than the flip of a coin!! (4)\n<h2>What\'s the Meniscus Tear Treatment for Patients Who Already Have Arthritis?</h2>\nPatients with meniscal tears and severe arthritis have a high risk of needing more surgery. The Indian Journal of Orthopaedics says, “Clinical practice is moving away from treating meniscal tears in patients with osteoarthritis unless there are mechanical symptoms (Knee function is significantly compromised). This study assessed the risk of needing further surgery for osteoarthritis in the five years following partial meniscectomy in different age groups and different grades of knee osteoarthritis”(5).\n\nUnfortunately, patients are often too optimistic that surgery will fix everything. “In general, <strong>patients undergoing arthroscopic meniscus surgery were too optimistic regarding their recovery time</strong> and postoperative participation in leisure activities. This highlights the need for shared decision making which should include giving the patient information on realistic expectations. . .\"(6)\n<h2>The Controversy Continues Regarding the Efficacy of Partial Meniscectomy</h2>\nIn a January 2023 paper published in the journal Osteoarthritis Cartilage, researchers examined comparison studies between arthroscopic partial meniscectomy versus non-surgical or sham treatment in patients with MRI-confirmed degenerative meniscus tears. What did they find? Overall knee function and health-related quality of life did not differ between the two groups. And across all outcomes, no relevant subgroup of patients benefitted more from the arthroscopic partial meniscectomy than the sham surgery. (7)\n<h2>What Is the Alternative to Meniscectomy?</h2>\nGiven these poor outcomes and up to 6 months of recovery time even in \"successful\" surgeries, what alternative does a patient with an injured meniscus have?\n\n<strong>Regenerative Orthopedics, like Prolotherapy, PRP, and Stem Cell Therapy, stabilize the soft tissue structures and stop the arthritic cycle.</strong> As we said earlier, the meniscus is a primary stabilizing structure, as are the ligaments. When destabilized from meniscectomy, the abnormal motion will occur, and friction will increase, causing the acceleration of cartilage breakdown.\n\nRegenerative Orthopedics will strengthen the ligaments, repair the meniscus, and stop the breakdown of cartilage.\n<h2>PRP for Meniscal Repair</h2>\nAt OrthoRegen, our regenerative specialists may recommend PRP and Prolotherapy to repair the damaged knee.\n\n• PRP is full of growth factors that boost the healing and repair of the damaged meniscus.\n• Dextrose Prolotherapy is a successful treatment for the repair of ligaments and tendons. Whenever an injury is significant enough to damage a meniscus, it is also very likely that ligaments have also been damaged. Prolotherapy effectively repairs the damaged ligaments or involved tendons.\n\nRegenerative Orthopedics are safe, conservative treatment alternatives for the injured meniscus. In the athlete and non-athlete alike, these treatments offer an effective non-surgical option for the repair of the injured meniscus.\n\nGiven the accumulation of evidence demonstrating the overwhelming lack of efficacy and benefit and the risk for serious adverse effects of this widely used procedure for meniscus tears, it is essential to consider potential safe and effective alternatives.\n\nRegenerative Orthopedic treatments boost the healing process, raise growth factors, and initiate repair. The treatments stimulate new cell growth and rebuild depleted tissue, including cartilage regeneration.\n\nRegenerative Orthopedic treatments can safely and effectively treat meniscus tears non-surgically, returning you quickly to the activities and sports you enjoy.\n<h3>References</h3>\n(1) Bhan K. Meniscal Tears: Current Understanding, Diagnosis, and Management. Cureus. 2020;12(6):e8590. Published 2020 Jun 13. doi:10.7759/cureus.8590.\n(2) D’Ambrosi R, Meena A, Raj A, Ursino N, Mangiavini L, Herbort M, Fink C. In elite athletes with meniscal injuries, always repair the lateral, think about the medial! A systematic review. Knee Surgery, Sports Traumatology, Arthroscopy. 2022 Nov 2:1-1.\n(3) Avila A, Vasavada K, Shankar DS, Petrera M, Jazrawi LM, Strauss EJ. Current Controversies in Arthroscopic Partial Meniscectomy. Current Reviews in Musculoskeletal Medicine. 2022 Jun 21:1-8.\n(4) Van De Graaf VA, Bloembergen CH, Willigenburg NW, Noorduyn JC, Saris DB, Harris IA, Poolman RW. Can even experienced orthopaedic surgeons predict who will benefit from surgery when patients present with degenerative meniscal tears? A survey of 194 orthopaedic surgeons who made 3880 predictions. British Journal of Sports Medicine. 2020 Mar 1;54(6):354-9.\n(5) Chitnis SS, Al-Azzani WA, Kakar R. Medium-Term Results of Arthroscopic Partial Meniscectomy from a Single High-Volume Center. Indian Journal of Orthopaedics. 2020 May;54(3):358-65.\n(6) Pihl K, Roos EM, Nissen N, JøRgensen U, Schjerning J, Thorlund JB. Over-optimistic patient expectations of recovery and leisure activities after arthroscopic meniscus surgery: A prospective cohort study of 478 patients. Acta Orthopaedica. 2016;87(6):615-621.\n(7) Wijn SR, Hannink G, Østerås H, Risberg MA, Roos EM, Hare KB, van de Graaf VA, Poolman RW, Ahn HW, Seon JK, Englund M. Arthroscopic partial meniscectomy versus non-surgical or sham treatment in patients with MRI-confirmed degenerative meniscus tears: a systematic review and meta-analysis with individual participant data from 605 randomised patients. Osteoarthritis and Cartilage. 2023 Jan 13.\n(8) Hackett GS, Hemwall GA, Montgomery GA. Ligament and Tendon Relaxation Treated by Prolotherapy. 5th ed. Oak Park, IL: Gustav A. Hemwall; 1993.\n(9) Hauser RA, Blakemore PJ, Wang J, Steilen D. Structural basis of joint instability as cause for chronic musculoskeletal pain and its successful treatment with regenerative injection therapy (prolotherapy). The Open Pain Journal 2014; 7: 9-22.','Meniscus Tear Treatments','','inherit','closed','closed','','5760-autosave-v1','','','2023-05-03 20:49:24','2023-05-03 20:49:24','',5760,'https://www.drfields.com/?p=5767',0,'revision','',0),(5768,9,'2023-05-03 20:37:20','2023-05-03 20:37:20','<h2>What Are the Common Meniscus Tear Treatments?</h2>\r\n<img class=\"wp-image-5761\" src=\"https://www.drfields.com/wp-content/uploads/2023/04/meniscectomy.-Osteoarthritis-and-Cartilage-500x419.png\" alt=\"Meniscectomy. Osteoarthritis And Cartilage\" width=\"300\" height=\"251\" />\r\n\r\nWhen an injury to the meniscus occurs, patients commonly try non-surgical meniscus tear treatments like rest, ice, compression, elevation, pain medications, physical therapy, and cortisone injections. When those do not work, their doctor may recommend arthroscopic surgery.\r\n\r\nSurgery, though, has not been shown to be an effective means to treat meniscus injuries. Studies have found no significant difference between meniscectomy and sham surgery. And recent studies show that surgery does not reduce the mechanical symptoms of knee catching and locking, which patients often experience.\r\n\r\nAs you can see, the effectiveness of meniscectomies is questionable. So why do patients seek surgery to fix their meniscus?\r\n<h2>Patients Believe Meniscus Surgery Will Restore Knee Function. But Will It?</h2>\r\nWhen a patient is in pain they want the pain to stop. And when an athlete has an injury, they want to get it fixed so they can return to the game. Therefore, they make the decision to receive surgery so they can return to the activities they love, believing that the surgery will restore knee function.\r\n\r\nSure, there are successful meniscus surgeries. But that\'s not who we see in our office.\r\nWe see patients who want to avoid surgery, and those who have continued pain after surgery. But what about people we don\'t see? What are the outcomes of patients receiving surgical meniscectomy? And what does the research say about meniscus surgery?\r\n\r\nThe medical journal Cureus states, “Arthroscopic partial meniscectomy (APM) is currently the most performed orthopedic procedure around the globe. However, recent studies have conclusively <strong>shown that outcomes after an arthroscopic partial meniscectomy are no better than the outcomes after a sham/placebo surgery.</strong> (1)\r\n<h2>What About Athletes? Does Surgery Help?</h2>\r\nDo athletes who choose surgery to get back to their sport more quickly achieve their goal? A team of doctors in the journal Knee Surgery, Sports Traumatology and Arthroscopy evaluated 421 elite athletes who received partial meniscectomy or a meniscus repair. They found that 84.7% returned to sport after partial meniscectomy (piece of meniscus removed) and 78.3% returned to sport after a meniscal repair (a small tear sewn with suture). (2)\r\n\r\nThe study also showed that although surgery allowed for a return to sports in these patients, it also increased the risk for the development of knee arthritis. If you do the math, that means over 15-20% or about 1 in 5 elite athletes do not return to their sport. And those that do, now have a higher arthritis risk.\r\nWhy does the risk of arthritis increase with surgery? The meniscus and the ligaments are stabilizing structures for the knee. When this soft tissue is cut and trimmed during the surgical process, the knee is destabilized. The knee instability sets the arthritic cycle in motion.\r\n<h2>Is Meniscectomy the Way to Go for Patients Over 50?</h2>\r\nSurgeons have a more difficult time predicting who will benefit from meniscectomy in patients over 50. In the journal, Current Reviews in Musculoskeletal Medicine, reviewers wrote, \"Despite an abundance of literature exploring outcomes of arthroscopic partial meniscus for degenerative meniscus tears, there is little consensus among surgeons about the drivers of good outcomes following arthroscopic partial meniscus.\"(3)\r\n\r\nIn older patients or in active patients with arthritis, more conservative therapies should be sought for meniscal tears.\r\n<h2>\"Can even experienced orthopaedic surgeons predict who will benefit from surgery when patients present with degenerative meniscal tears?\"</h2>\r\nThat\'s the exact title of an article in the British Journal of Sports Medicine. Researchers questioned whether orthopedic surgeons could predict the outcomes for treatment of meniscal tears with arthroscopic partial meniscectomy. The answer? The surgeons were only correct 50% of the time. How eye-opening! Only half the time, these experienced surgeons had it right when recommending that surgery was indicated. The results are no different than the flip of a coin!! (4)\r\n<h2>What About Patients Who Already Have Arthritis?</h2>\r\nPatients with meniscal tears and severe arthritis have a high risk of needing more surgery. The Indian Journal of Orthopaedics says, “Clinical practice is moving away from treating meniscal tears in patients with osteoarthritis unless there are mechanical symptoms (Knee function is significantly compromised). This study assessed the risk of needing further surgery for osteoarthritis in the five years following partial meniscectomy in different age groups and different grades of knee osteoarthritis”(5).\r\n\r\nUnfortunately, patients are often too optimistic that surgery will fix everything. “In general, <strong>patients undergoing arthroscopic meniscus surgery were too optimistic regarding their recovery time</strong> and postoperative participation in leisure activities. This highlights the need for shared decision making which should include giving the patient information on realistic expectations. . .\"(6)\r\n<h2>The Controversy Continues Regarding the Efficacy of Partial Meniscectomy</h2>\r\nIn a January 2023 paper published in the journal Osteoarthritis Cartilage, researchers examined comparison studies between arthroscopic partial meniscectomy versus non-surgical or sham treatment in patients with MRI-confirmed degenerative meniscus tears. What did they find? Overall knee function and health-related quality of life did not differ between the two groups. And across all outcomes, no relevant subgroup of patients benefitted more from the arthroscopic partial meniscectomy than the sham surgery. (7)\r\n<h2>What Is the Alternative to Menisectomy?</h2>\r\nGiven these poor outcomes and up to 6 months recovery time even in \"successful\" surgeries, what alternative does a patient with an injured meniscus have?\r\n\r\n<strong>Regenerative Orthopedics, like Prolotherapy, PRP, and Stem Cell Therapy stabilize the soft tissue structures and stop the arthritic cycle.</strong> As we said earlier, the meniscus is a primary stabilizing structure, as are the ligaments. When detabilized from meniscectomy, abnormal motion will occur, and friction will increase, causing the acceleration of cartilage breakdown.\r\n\r\nRegenerative Orthopedics will strengthen the ligaments, repair the meniscus, and stop the breakdown of cartilage.\r\n<h2>PRP for Meniscal Repair</h2>\r\nAt OrthoRegen, our regenerative specialists may recommend PRP along with Prolotherapy, to repair the damaged knee.\r\n\r\n• PRP is full of growth factors that boost the healing and repair of the damaged meniscus.\r\n• Dextrose Prolotherapy is a successful treatment for the repair of ligaments and tendons. Whenever an injury is significant enough to damage a meniscus, it is also very likely that ligaments have also been damaged. Prolotherapy effectively repairs the damaged ligaments or involved tendons.\r\n\r\nRegenerative Orthopedics are safe, conservative treatment alternatives for the injured meniscus. In the athlete and non-athlete alike, these treatments offer an effective non-surgical option for the repair of the injured meniscus.\r\n\r\nGiven the accumulation of evidence demonstrating not only the overwhelming lack of efficacy and benefit, but also the risk for serious adverse effects of this widely used procedure for meniscus tears, it is important to consider potential safe and effective alternatives.\r\n\r\nRegenerative Orthopedic treatments work by boosting the healing process, raising the levels of growth factors, and initiating repair. The treatments stimulate new cell growth and rebuild depleted tissue, including the regeneration of cartilage.\r\n\r\nRegenerative Orthopedic treatments can safely and effectively treat meniscus tears non-surgically, returning you quickly to the activities and sports you enjoy.\r\n<h3>References</h3>\r\n(1) Bhan K. Meniscal Tears: Current Understanding, Diagnosis, and Management. Cureus. 2020;12(6):e8590. Published 2020 Jun 13. doi:10.7759/cureus.8590.\r\n(2) D’Ambrosi R, Meena A, Raj A, Ursino N, Mangiavini L, Herbort M, Fink C. In elite athletes with meniscal injuries, always repair the lateral, think about the medial! A systematic review. Knee Surgery, Sports Traumatology, Arthroscopy. 2022 Nov 2:1-1.\r\n(3) Avila A, Vasavada K, Shankar DS, Petrera M, Jazrawi LM, Strauss EJ. Current Controversies in Arthroscopic Partial Meniscectomy. Current Reviews in Musculoskeletal Medicine. 2022 Jun 21:1-8.\r\n(4) Van De Graaf VA, Bloembergen CH, Willigenburg NW, Noorduyn JC, Saris DB, Harris IA, Poolman RW. Can even experienced orthopaedic surgeons predict who will benefit from surgery when patients present with degenerative meniscal tears? A survey of 194 orthopaedic surgeons who made 3880 predictions. British Journal of Sports Medicine. 2020 Mar 1;54(6):354-9.\r\n(5) Chitnis SS, Al-Azzani WA, Kakar R. Medium-Term Results of Arthroscopic Partial Meniscectomy from a Single High-Volume Center. Indian Journal of Orthopaedics. 2020 May;54(3):358-65.\r\n(6) Pihl K, Roos EM, Nissen N, JøRgensen U, Schjerning J, Thorlund JB. Over-optimistic patient expectations of recovery and leisure activities after arthroscopic meniscus surgery: A prospective cohort study of 478 patients. Acta Orthopaedica. 2016;87(6):615-621.\r\n(7) Wijn SR, Hannink G, Østerås H, Risberg MA, Roos EM, Hare KB, van de Graaf VA, Poolman RW, Ahn HW, Seon JK, Englund M. Arthroscopic partial meniscectomy versus non-surgical or sham treatment in patients with MRI-confirmed degenerative meniscus tears: a systematic review and meta-analysis with individual participant data from 605 randomised patients. Osteoarthritis and Cartilage. 2023 Jan 13.\r\n(8) Hackett GS, Hemwall GA, Montgomery GA. Ligament and Tendon Relaxation Treated by Prolotherapy. 5th ed. Oak Park, IL: Gustav A. Hemwall; 1993.\r\n(9) Hauser RA, Blakemore PJ, Wang J, Steilen D. Structural basis of joint instability as cause for chronic musculoskeletal pain and its successful treatment with regenerative injection therapy (prolotherapy). The Open Pain Journal 2014; 7: 9-22.','Meniscus Tear Treatment','','inherit','closed','closed','','5760-revision-v1','','','2023-05-03 20:37:20','2023-05-03 20:37:20','',5760,'https://www.drfields.com/?p=5768',0,'revision','',0),(5769,9,'2023-05-03 20:44:16','2023-05-03 20:44:16','<h2>What Are the Common Meniscus Tear Treatments?</h2>\r\n<img class=\"wp-image-5761 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2023/04/meniscectomy.-Osteoarthritis-and-Cartilage-500x419.png\" alt=\"Meniscectomy. Osteoarthritis And Cartilage\" width=\"300\" height=\"251\" />\r\n\r\nWhen an injury to the meniscus occurs, patients commonly try non-surgical meniscus tear treatments like rest, ice, compression, elevation, pain medications, physical therapy, and cortisone injections. When those do not work, their doctor may recommend arthroscopic surgery.\r\n\r\nSurgery, though, has not been shown to be an effective means to treat meniscus injuries. Studies have found no significant difference between meniscectomy and sham surgery. And recent studies show that surgery does not reduce the mechanical symptoms of knee catching and locking, which patients often experience.\r\n\r\nAs you can see, the effectiveness of meniscectomies is questionable. So why do patients seek surgery to fix their meniscus?\r\n<h2>Patients Believe Meniscus Surgery Will Restore Knee Function. But Will It?</h2>\r\nWhen a patient is in pain, they want the pain to stop. And when an athlete has an injury, they want to get it fixed so they can return to the game. Therefore, they decide to receive surgery so they can return to the activities they love, believing that the surgery will restore knee function.\r\n\r\nSure, there are successful meniscus surgeries. But that\'s not who we see in our office.\r\nWe see patients who want to avoid surgery and those who have continued pain after surgery. But what about people we don\'t see? What are the outcomes of patients receiving surgical meniscectomy? And what does the research say about meniscus surgery?\r\n\r\nThe medical journal Cureus states, “Arthroscopic partial meniscectomy (APM) is currently the most performed orthopedic procedure around the globe. However, recent studies have conclusively <strong>shown that outcomes after an arthroscopic partial meniscectomy are no better than the outcomes after a sham/placebo surgery.\"</strong> (1)\r\n<h2>What About Athletes? Does Surgery Help?</h2>\r\nDo athletes who choose surgery to return to their sport more quickly achieve their goals? A team of doctors in the journal Knee Surgery, Sports Traumatology and Arthroscopy evaluated 421 elite athletes who received partial meniscectomy or a meniscus repair. They found that 84.7% returned to the sport after a partial meniscectomy (a piece of meniscus removed), and 78.3% returned to the sport after a meniscal repair (a small tear sewn with suture). (2)\r\n\r\nThe study also showed that although surgery allowed for a return to sports in these patients, it also increased the risk of developing knee arthritis. If you do the math, that means over 15-20% or about 1 in 5 elite athletes do not return to their sport. And those that do now have a higher arthritis risk.\r\n\r\nWhy does the risk of arthritis increase with surgery? The meniscus and the ligaments are stabilizing structures for the knee. When this soft tissue is cut and trimmed during the surgical process, the knee is destabilized. The knee instability sets the arthritic cycle in motion.\r\n<h2>Is Meniscectomy the Way to Go for Patients Over 50?</h2>\r\nSurgeons have a more difficult time predicting who will benefit from meniscectomy in patients over 50. In the journal, Current Reviews in Musculoskeletal Medicine, reviewers wrote, \"Despite an abundance of literature exploring outcomes of arthroscopic partial meniscus for degenerative meniscus tears, there is little consensus among surgeons about the drivers of good outcomes following arthroscopic partial meniscus.\"(3)\r\n\r\nIn older patients or active patients with arthritis, more conservative therapies should be sought for meniscal tears.\r\n<h2>\"Can even experienced orthopaedic surgeons predict who will benefit from surgery when patients present with degenerative meniscal tears?\"</h2>\r\nThat\'s the exact title of an article in the British Journal of Sports Medicine. Researchers questioned whether orthopedic surgeons could predict the outcomes of treating meniscal tears with arthroscopic partial meniscectomy. The answer? The surgeons were only correct 50% of the time. How eye-opening! Only half the time, these experienced surgeons had it right when recommending that surgery be indicated. The results are no different than the flip of a coin!! (4)\r\n<h2>What About Patients Who Already Have Arthritis?</h2>\r\nPatients with meniscal tears and severe arthritis have a high risk of needing more surgery. The Indian Journal of Orthopaedics says, “Clinical practice is moving away from treating meniscal tears in patients with osteoarthritis unless there are mechanical symptoms (Knee function is significantly compromised). This study assessed the risk of needing further surgery for osteoarthritis in the five years following partial meniscectomy in different age groups and different grades of knee osteoarthritis”(5).\r\n\r\nUnfortunately, patients are often too optimistic that surgery will fix everything. “In general, <strong>patients undergoing arthroscopic meniscus surgery were too optimistic regarding their recovery time</strong> and postoperative participation in leisure activities. This highlights the need for shared decision making which should include giving the patient information on realistic expectations. . .\"(6)\r\n<h2>The Controversy Continues Regarding the Efficacy of Partial Meniscectomy</h2>\r\nIn a January 2023 paper published in the journal Osteoarthritis Cartilage, researchers examined comparison studies between arthroscopic partial meniscectomy versus non-surgical or sham treatment in patients with MRI-confirmed degenerative meniscus tears. What did they find? Overall knee function and health-related quality of life did not differ between the two groups. And across all outcomes, no relevant subgroup of patients benefitted more from the arthroscopic partial meniscectomy than the sham surgery. (7)\r\n<h2>What Is the Alternative to Meniscectomy?</h2>\r\nGiven these poor outcomes and up to 6 months of recovery time even in \"successful\" surgeries, what alternative does a patient with an injured meniscus have?\r\n\r\n<strong>Regenerative Orthopedics, like Prolotherapy, PRP, and Stem Cell Therapy, stabilize the soft tissue structures and stop the arthritic cycle.</strong> As we said earlier, the meniscus is a primary stabilizing structure, as are the ligaments. When destabilized from meniscectomy, the abnormal motion will occur, and friction will increase, causing the acceleration of cartilage breakdown.\r\n\r\nRegenerative Orthopedics will strengthen the ligaments, repair the meniscus, and stop the breakdown of cartilage.\r\n<h2>PRP for Meniscal Repair</h2>\r\nAt OrthoRegen, our regenerative specialists may recommend PRP and Prolotherapy to repair the damaged knee.\r\n\r\n• PRP is full of growth factors that boost the healing and repair of the damaged meniscus.\r\n• Dextrose Prolotherapy is a successful treatment for the repair of ligaments and tendons. Whenever an injury is significant enough to damage a meniscus, it is also very likely that ligaments have also been damaged. Prolotherapy effectively repairs the damaged ligaments or involved tendons.\r\n\r\nRegenerative Orthopedics are safe, conservative treatment alternatives for the injured meniscus. In the athlete and non-athlete alike, these treatments offer an effective non-surgical option for the repair of the injured meniscus.\r\n\r\nGiven the accumulation of evidence demonstrating the overwhelming lack of efficacy and benefit and the risk for serious adverse effects of this widely used procedure for meniscus tears, it is essential to consider potential safe and effective alternatives.\r\n\r\nRegenerative Orthopedic treatments boost the healing process, raise growth factors, and initiate repair. The treatments stimulate new cell growth and rebuild depleted tissue, including cartilage regeneration.\r\n\r\nRegenerative Orthopedic treatments can safely and effectively treat meniscus tears non-surgically, returning you quickly to the activities and sports you enjoy.\r\n<h3>References</h3>\r\n(1) Bhan K. Meniscal Tears: Current Understanding, Diagnosis, and Management. Cureus. 2020;12(6):e8590. Published 2020 Jun 13. doi:10.7759/cureus.8590.\r\n(2) D’Ambrosi R, Meena A, Raj A, Ursino N, Mangiavini L, Herbort M, Fink C. In elite athletes with meniscal injuries, always repair the lateral, think about the medial! A systematic review. Knee Surgery, Sports Traumatology, Arthroscopy. 2022 Nov 2:1-1.\r\n(3) Avila A, Vasavada K, Shankar DS, Petrera M, Jazrawi LM, Strauss EJ. Current Controversies in Arthroscopic Partial Meniscectomy. Current Reviews in Musculoskeletal Medicine. 2022 Jun 21:1-8.\r\n(4) Van De Graaf VA, Bloembergen CH, Willigenburg NW, Noorduyn JC, Saris DB, Harris IA, Poolman RW. Can even experienced orthopaedic surgeons predict who will benefit from surgery when patients present with degenerative meniscal tears? A survey of 194 orthopaedic surgeons who made 3880 predictions. British Journal of Sports Medicine. 2020 Mar 1;54(6):354-9.\r\n(5) Chitnis SS, Al-Azzani WA, Kakar R. Medium-Term Results of Arthroscopic Partial Meniscectomy from a Single High-Volume Center. Indian Journal of Orthopaedics. 2020 May;54(3):358-65.\r\n(6) Pihl K, Roos EM, Nissen N, JøRgensen U, Schjerning J, Thorlund JB. Over-optimistic patient expectations of recovery and leisure activities after arthroscopic meniscus surgery: A prospective cohort study of 478 patients. Acta Orthopaedica. 2016;87(6):615-621.\r\n(7) Wijn SR, Hannink G, Østerås H, Risberg MA, Roos EM, Hare KB, van de Graaf VA, Poolman RW, Ahn HW, Seon JK, Englund M. Arthroscopic partial meniscectomy versus non-surgical or sham treatment in patients with MRI-confirmed degenerative meniscus tears: a systematic review and meta-analysis with individual participant data from 605 randomised patients. Osteoarthritis and Cartilage. 2023 Jan 13.\r\n(8) Hackett GS, Hemwall GA, Montgomery GA. Ligament and Tendon Relaxation Treated by Prolotherapy. 5th ed. Oak Park, IL: Gustav A. Hemwall; 1993.\r\n(9) Hauser RA, Blakemore PJ, Wang J, Steilen D. Structural basis of joint instability as cause for chronic musculoskeletal pain and its successful treatment with regenerative injection therapy (prolotherapy). The Open Pain Journal 2014; 7: 9-22.','Meniscus Tear Treatment','','inherit','closed','closed','','5760-revision-v1','','','2023-05-03 20:44:16','2023-05-03 20:44:16','',5760,'https://www.drfields.com/?p=5769',0,'revision','',0),(5770,9,'2023-05-03 20:47:16','2023-05-03 20:47:16','<h2>What Are the Common Meniscus Tear Treatments?</h2>\r\n<img class=\"wp-image-5761 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2023/04/meniscectomy.-Osteoarthritis-and-Cartilage-500x419.png\" alt=\"Meniscectomy. Osteoarthritis And Cartilage\" width=\"300\" height=\"251\" />\r\n\r\nWhen an injury to the meniscus occurs, patients commonly try non-surgical meniscus tear treatments like rest, ice, compression, elevation, pain medications, physical therapy, and cortisone injections. When those do not work, their doctor may recommend arthroscopic surgery.\r\n\r\nSurgery, though, has not been shown to be an effective means to treat meniscus injuries. Studies have found no significant difference between meniscectomy and sham surgery. And recent studies show that surgery does not reduce the mechanical symptoms of knee catching and locking, which patients often experience.\r\n\r\nAs you can see, the effectiveness of meniscectomies is questionable. So why do patients seek surgery to fix their meniscus?\r\n<h2>Patients Believe Meniscus Surgery Will Restore Knee Function. But Will It?</h2>\r\nWhen a patient is in pain, they want the pain to stop. And when an athlete has an injury, they want to get it fixed so they can return to the game. Therefore, they decide to receive surgery so they can return to the activities they love, believing that the surgery will restore knee function.\r\n\r\nSure, there are successful meniscus surgeries. But that\'s not who we see in our office.\r\nWe see patients who want to avoid surgery and those who have continued pain after surgery. But what about people we don\'t see? What are the outcomes of patients receiving surgical meniscectomy? And what does the research say about meniscus surgery?\r\n\r\nThe medical journal Cureus states, “Arthroscopic partial meniscectomy (APM) is currently the most performed orthopedic procedure around the globe. However, recent studies have conclusively <strong>shown that outcomes after an arthroscopic partial meniscectomy are no better than the outcomes after a sham/placebo surgery.\"</strong> (1)\r\n<h2>What About Athletes? Does Surgery Help?</h2>\r\nDo athletes who choose surgery to return to their sport more quickly achieve their goals? A team of doctors in the journal Knee Surgery, Sports Traumatology and Arthroscopy evaluated 421 elite athletes who received partial meniscectomy or a meniscus repair. They found that 84.7% returned to the sport after a partial meniscectomy (a piece of meniscus removed), and 78.3% returned to the sport after a meniscal repair (a small tear sewn with suture). (2)\r\n\r\nThe study also showed that although surgery allowed for a return to sports in these patients, it also increased the risk of developing knee arthritis. If you do the math, that means over 15-20% or about 1 in 5 elite athletes do not return to their sport. And those that do now have a higher arthritis risk.\r\n\r\nWhy does the risk of arthritis increase with surgery? The meniscus and the ligaments are stabilizing structures for the knee. When this soft tissue is cut and trimmed during the surgical process, the knee is destabilized. The knee instability sets the arthritic cycle in motion.\r\n<h2>Is Meniscectomy the Meniscus Tear Treatment for Patients Over 50?</h2>\r\nSurgeons have a more difficult time predicting who will benefit from meniscectomy in patients over 50. In the journal, Current Reviews in Musculoskeletal Medicine, reviewers wrote, \"Despite an abundance of literature exploring outcomes of arthroscopic partial meniscus for degenerative meniscus tears, there is little consensus among surgeons about the drivers of good outcomes following arthroscopic partial meniscus.\"(3)\r\n\r\nIn older patients or active patients with arthritis, more conservative therapies should be sought for meniscal tears.\r\n<h2>\"Can even experienced orthopaedic surgeons predict who will benefit from surgery when patients present with degenerative meniscal tears?\"</h2>\r\nThat\'s the exact title of an article in the British Journal of Sports Medicine. Researchers questioned whether orthopedic surgeons could predict the outcomes of treating meniscal tears with arthroscopic partial meniscectomy. The answer? The surgeons were only correct 50% of the time. How eye-opening! Only half the time, these experienced surgeons had it right when recommending that surgery be indicated. The results are no different than the flip of a coin!! (4)\r\n<h2>What About Patients Who Already Have Arthritis?</h2>\r\nPatients with meniscal tears and severe arthritis have a high risk of needing more surgery. The Indian Journal of Orthopaedics says, “Clinical practice is moving away from treating meniscal tears in patients with osteoarthritis unless there are mechanical symptoms (Knee function is significantly compromised). This study assessed the risk of needing further surgery for osteoarthritis in the five years following partial meniscectomy in different age groups and different grades of knee osteoarthritis”(5).\r\n\r\nUnfortunately, patients are often too optimistic that surgery will fix everything. “In general, <strong>patients undergoing arthroscopic meniscus surgery were too optimistic regarding their recovery time</strong> and postoperative participation in leisure activities. This highlights the need for shared decision making which should include giving the patient information on realistic expectations. . .\"(6)\r\n<h2>The Controversy Continues Regarding the Efficacy of Partial Meniscectomy</h2>\r\nIn a January 2023 paper published in the journal Osteoarthritis Cartilage, researchers examined comparison studies between arthroscopic partial meniscectomy versus non-surgical or sham treatment in patients with MRI-confirmed degenerative meniscus tears. What did they find? Overall knee function and health-related quality of life did not differ between the two groups. And across all outcomes, no relevant subgroup of patients benefitted more from the arthroscopic partial meniscectomy than the sham surgery. (7)\r\n<h2>What Is the Alternative to Meniscectomy?</h2>\r\nGiven these poor outcomes and up to 6 months of recovery time even in \"successful\" surgeries, what alternative does a patient with an injured meniscus have?\r\n\r\n<strong>Regenerative Orthopedics, like Prolotherapy, PRP, and Stem Cell Therapy, stabilize the soft tissue structures and stop the arthritic cycle.</strong> As we said earlier, the meniscus is a primary stabilizing structure, as are the ligaments. When destabilized from meniscectomy, the abnormal motion will occur, and friction will increase, causing the acceleration of cartilage breakdown.\r\n\r\nRegenerative Orthopedics will strengthen the ligaments, repair the meniscus, and stop the breakdown of cartilage.\r\n<h2>PRP for Meniscal Repair</h2>\r\nAt OrthoRegen, our regenerative specialists may recommend PRP and Prolotherapy to repair the damaged knee.\r\n\r\n• PRP is full of growth factors that boost the healing and repair of the damaged meniscus.\r\n• Dextrose Prolotherapy is a successful treatment for the repair of ligaments and tendons. Whenever an injury is significant enough to damage a meniscus, it is also very likely that ligaments have also been damaged. Prolotherapy effectively repairs the damaged ligaments or involved tendons.\r\n\r\nRegenerative Orthopedics are safe, conservative treatment alternatives for the injured meniscus. In the athlete and non-athlete alike, these treatments offer an effective non-surgical option for the repair of the injured meniscus.\r\n\r\nGiven the accumulation of evidence demonstrating the overwhelming lack of efficacy and benefit and the risk for serious adverse effects of this widely used procedure for meniscus tears, it is essential to consider potential safe and effective alternatives.\r\n\r\nRegenerative Orthopedic treatments boost the healing process, raise growth factors, and initiate repair. The treatments stimulate new cell growth and rebuild depleted tissue, including cartilage regeneration.\r\n\r\nRegenerative Orthopedic treatments can safely and effectively treat meniscus tears non-surgically, returning you quickly to the activities and sports you enjoy.\r\n<h3>References</h3>\r\n(1) Bhan K. Meniscal Tears: Current Understanding, Diagnosis, and Management. Cureus. 2020;12(6):e8590. Published 2020 Jun 13. doi:10.7759/cureus.8590.\r\n(2) D’Ambrosi R, Meena A, Raj A, Ursino N, Mangiavini L, Herbort M, Fink C. In elite athletes with meniscal injuries, always repair the lateral, think about the medial! A systematic review. Knee Surgery, Sports Traumatology, Arthroscopy. 2022 Nov 2:1-1.\r\n(3) Avila A, Vasavada K, Shankar DS, Petrera M, Jazrawi LM, Strauss EJ. Current Controversies in Arthroscopic Partial Meniscectomy. Current Reviews in Musculoskeletal Medicine. 2022 Jun 21:1-8.\r\n(4) Van De Graaf VA, Bloembergen CH, Willigenburg NW, Noorduyn JC, Saris DB, Harris IA, Poolman RW. Can even experienced orthopaedic surgeons predict who will benefit from surgery when patients present with degenerative meniscal tears? A survey of 194 orthopaedic surgeons who made 3880 predictions. British Journal of Sports Medicine. 2020 Mar 1;54(6):354-9.\r\n(5) Chitnis SS, Al-Azzani WA, Kakar R. Medium-Term Results of Arthroscopic Partial Meniscectomy from a Single High-Volume Center. Indian Journal of Orthopaedics. 2020 May;54(3):358-65.\r\n(6) Pihl K, Roos EM, Nissen N, JøRgensen U, Schjerning J, Thorlund JB. Over-optimistic patient expectations of recovery and leisure activities after arthroscopic meniscus surgery: A prospective cohort study of 478 patients. Acta Orthopaedica. 2016;87(6):615-621.\r\n(7) Wijn SR, Hannink G, Østerås H, Risberg MA, Roos EM, Hare KB, van de Graaf VA, Poolman RW, Ahn HW, Seon JK, Englund M. Arthroscopic partial meniscectomy versus non-surgical or sham treatment in patients with MRI-confirmed degenerative meniscus tears: a systematic review and meta-analysis with individual participant data from 605 randomised patients. Osteoarthritis and Cartilage. 2023 Jan 13.\r\n(8) Hackett GS, Hemwall GA, Montgomery GA. Ligament and Tendon Relaxation Treated by Prolotherapy. 5th ed. Oak Park, IL: Gustav A. Hemwall; 1993.\r\n(9) Hauser RA, Blakemore PJ, Wang J, Steilen D. Structural basis of joint instability as cause for chronic musculoskeletal pain and its successful treatment with regenerative injection therapy (prolotherapy). The Open Pain Journal 2014; 7: 9-22.','Meniscus Tear Treatment','','inherit','closed','closed','','5760-revision-v1','','','2023-05-03 20:47:16','2023-05-03 20:47:16','',5760,'https://www.drfields.com/?p=5770',0,'revision','',0),(5771,9,'2023-05-03 20:49:35','2023-05-03 20:49:35','<h2>What Are the Common Meniscus Tear Treatments?</h2>\r\n<img class=\"wp-image-5761 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2023/04/meniscectomy.-Osteoarthritis-and-Cartilage-500x419.png\" alt=\"Meniscectomy. Osteoarthritis And Cartilage\" width=\"300\" height=\"251\" />\r\n\r\nWhen an injury to the meniscus occurs, patients commonly try non-surgical meniscus tear treatments like rest, ice, compression, elevation, pain medications, physical therapy, and cortisone injections. When those do not work, their doctor may recommend arthroscopic surgery.\r\n\r\nSurgery, though, has not been shown to be an effective means to treat meniscus injuries. Studies have found no significant difference between meniscectomy and sham surgery. And recent studies show that surgery does not reduce the mechanical symptoms of knee catching and locking, which patients often experience.\r\n\r\nAs you can see, the effectiveness of meniscectomies is questionable. So why do patients seek surgery to fix their meniscus?\r\n<h2>Patients Believe Meniscus Surgery Will Restore Knee Function. But Will It?</h2>\r\nWhen a patient is in pain, they want the pain to stop. And when an athlete has an injury, they want to get it fixed so they can return to the game. Therefore, they decide to receive surgery so they can return to the activities they love, believing that the surgery will restore knee function.\r\n\r\nSure, there are successful meniscus surgeries. But that\'s not who we see in our office.\r\nWe see patients who want to avoid surgery and those who have continued pain after surgery. But what about people we don\'t see? What are the outcomes of patients receiving surgical meniscectomy? And what does the research say about meniscus surgery?\r\n\r\nThe medical journal Cureus states, “Arthroscopic partial meniscectomy (APM) is currently the most performed orthopedic procedure around the globe. However, recent studies have conclusively <strong>shown that outcomes after an arthroscopic partial meniscectomy are no better than the outcomes after a sham/placebo surgery.\"</strong> (1)\r\n<h2>What About Athletes? Does Surgery Help?</h2>\r\nDo athletes who choose surgery to return to their sport more quickly achieve their goals? A team of doctors in the journal Knee Surgery, Sports Traumatology and Arthroscopy evaluated 421 elite athletes who received partial meniscectomy or a meniscus repair. They found that 84.7% returned to the sport after a partial meniscectomy (a piece of meniscus removed), and 78.3% returned to the sport after a meniscal repair (a small tear sewn with suture). (2)\r\n\r\nThe study also showed that although surgery allowed for a return to sports in these patients, it also increased the risk of developing knee arthritis. If you do the math, that means over 15-20% or about 1 in 5 elite athletes do not return to their sport. And those that do now have a higher arthritis risk.\r\n\r\nWhy does the risk of arthritis increase with surgery? The meniscus and the ligaments are stabilizing structures for the knee. When this soft tissue is cut and trimmed during the surgical process, the knee is destabilized. The knee instability sets the arthritic cycle in motion.\r\n<h2>Is Meniscectomy the Meniscus Tear Treatment for Patients Over 50?</h2>\r\nSurgeons have a more difficult time predicting who will benefit from meniscectomy in patients over 50. In the journal, Current Reviews in Musculoskeletal Medicine, reviewers wrote, \"Despite an abundance of literature exploring outcomes of arthroscopic partial meniscus for degenerative meniscus tears, there is little consensus among surgeons about the drivers of good outcomes following arthroscopic partial meniscus.\"(3)\r\n\r\nIn older patients or active patients with arthritis, more conservative therapies should be sought for meniscal tears.\r\n<h2>\"Can even experienced orthopaedic surgeons predict who will benefit from surgery when patients present with degenerative meniscal tears?\"</h2>\r\nThat\'s the exact title of an article in the British Journal of Sports Medicine. Researchers questioned whether orthopedic surgeons could predict the outcomes of treating meniscal tears with arthroscopic partial meniscectomy. The answer? The surgeons were only correct 50% of the time. How eye-opening! Only half the time, these experienced surgeons had it right when recommending that surgery be indicated. The results are no different than the flip of a coin!! (4)\r\n<h2>What\'s the Meniscus Tear Treatment for Patients Who Already Have Arthritis?</h2>\r\nPatients with meniscal tears and severe arthritis have a high risk of needing more surgery. The Indian Journal of Orthopaedics says, “Clinical practice is moving away from treating meniscal tears in patients with osteoarthritis unless there are mechanical symptoms (Knee function is significantly compromised). This study assessed the risk of needing further surgery for osteoarthritis in the five years following partial meniscectomy in different age groups and different grades of knee osteoarthritis”(5).\r\n\r\nUnfortunately, patients are often too optimistic that surgery will fix everything. “In general, <strong>patients undergoing arthroscopic meniscus surgery were too optimistic regarding their recovery time</strong> and postoperative participation in leisure activities. This highlights the need for shared decision making which should include giving the patient information on realistic expectations. . .\"(6)\r\n<h2>The Controversy Continues Regarding the Efficacy of Partial Meniscectomy</h2>\r\nIn a January 2023 paper published in the journal Osteoarthritis Cartilage, researchers examined comparison studies between arthroscopic partial meniscectomy versus non-surgical or sham treatment in patients with MRI-confirmed degenerative meniscus tears. What did they find? Overall knee function and health-related quality of life did not differ between the two groups. And across all outcomes, no relevant subgroup of patients benefitted more from the arthroscopic partial meniscectomy than the sham surgery. (7)\r\n<h2>What Is the Alternative to Meniscectomy?</h2>\r\nGiven these poor outcomes and up to 6 months of recovery time even in \"successful\" surgeries, what alternative does a patient with an injured meniscus have?\r\n\r\n<strong>Regenerative Orthopedics, like Prolotherapy, PRP, and Stem Cell Therapy, stabilize the soft tissue structures and stop the arthritic cycle.</strong> As we said earlier, the meniscus is a primary stabilizing structure, as are the ligaments. When destabilized from meniscectomy, the abnormal motion will occur, and friction will increase, causing the acceleration of cartilage breakdown.\r\n\r\nRegenerative Orthopedics will strengthen the ligaments, repair the meniscus, and stop the breakdown of cartilage.\r\n<h2>PRP for Meniscal Repair</h2>\r\nAt OrthoRegen, our regenerative specialists may recommend PRP and Prolotherapy to repair the damaged knee.\r\n\r\n• PRP is full of growth factors that boost the healing and repair of the damaged meniscus.\r\n• Dextrose Prolotherapy is a successful treatment for the repair of ligaments and tendons. Whenever an injury is significant enough to damage a meniscus, it is also very likely that ligaments have also been damaged. Prolotherapy effectively repairs the damaged ligaments or involved tendons.\r\n\r\nRegenerative Orthopedics are safe, conservative treatment alternatives for the injured meniscus. In the athlete and non-athlete alike, these treatments offer an effective non-surgical option for the repair of the injured meniscus.\r\n\r\nGiven the accumulation of evidence demonstrating the overwhelming lack of efficacy and benefit and the risk for serious adverse effects of this widely used procedure for meniscus tears, it is essential to consider potential safe and effective alternatives.\r\n\r\nRegenerative Orthopedic treatments boost the healing process, raise growth factors, and initiate repair. The treatments stimulate new cell growth and rebuild depleted tissue, including cartilage regeneration.\r\n\r\nRegenerative Orthopedic treatments can safely and effectively treat meniscus tears non-surgically, returning you quickly to the activities and sports you enjoy.\r\n<h3>References</h3>\r\n(1) Bhan K. Meniscal Tears: Current Understanding, Diagnosis, and Management. Cureus. 2020;12(6):e8590. Published 2020 Jun 13. doi:10.7759/cureus.8590.\r\n(2) D’Ambrosi R, Meena A, Raj A, Ursino N, Mangiavini L, Herbort M, Fink C. In elite athletes with meniscal injuries, always repair the lateral, think about the medial! A systematic review. Knee Surgery, Sports Traumatology, Arthroscopy. 2022 Nov 2:1-1.\r\n(3) Avila A, Vasavada K, Shankar DS, Petrera M, Jazrawi LM, Strauss EJ. Current Controversies in Arthroscopic Partial Meniscectomy. Current Reviews in Musculoskeletal Medicine. 2022 Jun 21:1-8.\r\n(4) Van De Graaf VA, Bloembergen CH, Willigenburg NW, Noorduyn JC, Saris DB, Harris IA, Poolman RW. Can even experienced orthopaedic surgeons predict who will benefit from surgery when patients present with degenerative meniscal tears? A survey of 194 orthopaedic surgeons who made 3880 predictions. British Journal of Sports Medicine. 2020 Mar 1;54(6):354-9.\r\n(5) Chitnis SS, Al-Azzani WA, Kakar R. Medium-Term Results of Arthroscopic Partial Meniscectomy from a Single High-Volume Center. Indian Journal of Orthopaedics. 2020 May;54(3):358-65.\r\n(6) Pihl K, Roos EM, Nissen N, JøRgensen U, Schjerning J, Thorlund JB. Over-optimistic patient expectations of recovery and leisure activities after arthroscopic meniscus surgery: A prospective cohort study of 478 patients. Acta Orthopaedica. 2016;87(6):615-621.\r\n(7) Wijn SR, Hannink G, Østerås H, Risberg MA, Roos EM, Hare KB, van de Graaf VA, Poolman RW, Ahn HW, Seon JK, Englund M. Arthroscopic partial meniscectomy versus non-surgical or sham treatment in patients with MRI-confirmed degenerative meniscus tears: a systematic review and meta-analysis with individual participant data from 605 randomised patients. Osteoarthritis and Cartilage. 2023 Jan 13.\r\n(8) Hackett GS, Hemwall GA, Montgomery GA. Ligament and Tendon Relaxation Treated by Prolotherapy. 5th ed. Oak Park, IL: Gustav A. Hemwall; 1993.\r\n(9) Hauser RA, Blakemore PJ, Wang J, Steilen D. Structural basis of joint instability as cause for chronic musculoskeletal pain and its successful treatment with regenerative injection therapy (prolotherapy). The Open Pain Journal 2014; 7: 9-22.','Meniscus Tear Treatments','','inherit','closed','closed','','5760-revision-v1','','','2023-05-03 20:49:35','2023-05-03 20:49:35','',5760,'https://www.drfields.com/?p=5771',0,'revision','',0),(5773,8,'2023-05-09 03:50:21','2023-05-09 03:50:21','<img class=\"alignright wp-image-5774\" src=\"https://www.drfields.com/wp-content/uploads/2023/05/JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-500x419.png\" alt=\"Chronic Pain Management\" width=\"350\" height=\"293\" />\r\n<h2>Chronic Pain Management:</h2>\r\n<h2>Musculoskeletal Pain</h2>\r\nPain can be defined as a feeling of distress, suffering, or agony caused by the stimulation of specialized nerve endings in the body resulting from injury or disease. Musculoskeletal pain affects the muscles, ligaments, tendons, and bones. When a person suffers from musculoskeletal pain, their quality of life is reduced, and they seek treatment options for chronic pain management.\r\n\r\nAs a person ages, musculoskeletal diseases increase in frequency. Millions of Americans suffer from arthritis, a chronic musculoskeletal disease that often leads to joint replacements.\r\n<h2>What Is Chronic Pain?</h2>\r\nChronic pain is pain that continues or recurs over a prolonged period. Chronic pain, however, can range from mild to severe and last weeks, months, or longer.\r\n\r\nAnother type of pain is acute pain. Acute pain is intense and can last a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs.\r\n<h2>What Causes Musculoskeletal Pain?</h2>\r\nPain often acts as a warning that tissues are being damaged. There are different reasons for musculoskeletal pain. Soft tissue, like muscles, tendons, and ligaments, can become damaged by wear and tear from various activities.\r\n\r\nTrauma from falls, accidents, sprains, dislocations, and fractures can also damage musculoskeletal tissue. Musculoskeletal pain can be caused by any trauma to the muscles, ligaments, tendons, bones, and other soft tissue of the joint.\r\n\r\nVery often, the pain in a joint is due to ligament and/or tendon injury. Ligaments and tendons are the main connective tissue structures that stabilize and move joints. Unfortunately, these soft tissue structures have a poor blood supply and often fail to heal completely once injured.\r\n\r\n<strong>That is why an old injury sets into motion a chronic cycle that can rear its head up years later.</strong> Ligament tears and injuries alter joint mechanics. They cause the joint to move abnormally. An injured area remains weak. Month after month, and year after year, that weakened joint, moving abnormally, causes degeneration of the joint.\r\n<h2>How Can Chronic Pain Be Managed?</h2>\r\nRegenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy, effectively repair the damaged, weakened ligaments and tendons. These treatments build stronger tendons and ligaments that can stabilize the joint structures. With treatment, the weakened soft tissue is healed, and the patient’s pain is reduced or eliminated.\r\n<h2>Types of Regenerative Orthopedics:</h2>\r\n<ul>\r\n 	<li><strong>Prolotherapy </strong>involves injections given into and around the entire painful or injured area. Prolotherapy strengthens ligaments and tendons by inducing repair through stimulating growth factors and boosting the body\'s healing mechanism.</li>\r\n 	<li>PRP involves the injection of the person\'s platelets. These platelets release growth factors that stimulate recovery in blood-poor tissue, such as tendons. PRP is great at accelerating the regeneration of soft tissue injuries such as knee meniscus tears.</li>\r\n 	<li><strong>Stem Cell Therapy </strong>describes the use of a person\'s adult mesenchymal stem cells (MSCs) taken from the individual’s bone marrow or adipose (fat) tissue. Stem Cell Therapy is typically done in more advanced cases of joint degeneration or injury.</li>\r\n</ul>\r\n<h2>Regenerative Orthopedics for Chronic Musculoskeletal Pain</h2>\r\nRegenerative Orthopedics significantly relieves chronic musculoskeletal pain in the neck, back, knee, elbow, foot, hand, shoulder, and wrist. The use of Regenerative Orthopedics results in a decrease in pain and an increase in function.\r\n\r\nThese regenerative therapies are effective for arthritis, ligament injury, tendinopathy,  joint instability, labrum or meniscus injury, joint hypermobility syndrome, and many other musculoskeletal pain conditions.\r\n\r\nRegenerative Orthopedics are viable alternatives to pain medications, NSAIDs, cortisone (steroid) injections, and surgery.\r\n\r\nMusculoskeletal diseases are prevalent causes of pain and have devastating consequences for millions. Non-Surgical Regenerative Orthopedics are effective treatment options that do not just manage pain but effectively repair the underlying source of the pain...the ligament and tendon injuries.\r\n\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAIDs, narcotic medications, various therapies, and exercises that fail to provide relief. That\'s because they do not get to the root of the problem.\r\n\r\nThe <i>Journal of Prolotherapy</i> says, \"Clinicians make their recommendations to patients on the basis of their knowledge of human physiology in both health and disease. Since most chronic pain results from the degeneration and injury of musculoskeletal structures such as ligaments, tendons, other soft tissues and joints, and the nerves that support them, then regenerative injection therapy (Prolotherapy) makes physiological sense. Prolotherapy should be one of the preferred therapies when clinicians, including doctors, nurses, and other allied health care professionals, discuss treatment options with patients who suffer from musculoskeletal pain.\"2\r\n<h2>Don\'t Just Manage Your Pain, Repair It</h2>\r\nDo you suffer from musculoskeletal pain, such as <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? If you are afflicted with chronic musculoskeletal pain, Regenerative Orthopedics may be your answer. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or to get a second opinion for a recommended surgery. At OrthoRegen®, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Don\'t just manage your pain; repair it with Regenerative Orthopedics. Call today at 310-453-1234.\r\n<h2>References</h2>\r\n1 Haunschild, Eric D., et al. \"Biologics in shoulder and elbow pathology.\" <i>JSES Reviews, Reports, and Techniques</i> 1.1 (2021): 1-6.\r\n\r\n2 Hauser, RA, Maddela, H., et al. \"Journal of Prolotherapy International Medical Editorial Board Consensus Statement on the Use of Prolotherapy for Musculoskeletal Pain.\"<i>Journal of Prolotherapy.</i> 2011;3(4):744-764.','Chronic Pain Management','','publish','closed','open','','chronic-pain-management','','','2023-05-12 21:46:28','2023-05-12 21:46:28','',0,'https://www.drfields.com/?p=5773',0,'post','',0),(5774,8,'2023-05-09 03:49:47','2023-05-09 03:49:47','Jses Reviews, Reports, And Techniques. Musculoskeletal','','Chronic Pain Management','inherit','closed','closed','','jses-reviews-reports-and-techniques-musculoskeletal','','','2023-05-09 03:50:09','2023-05-09 03:50:09','',5773,'https://www.drfields.com/wp-content/uploads/2023/05/JSES-Reviews-Reports-and-Techniques.-Musculoskeletal.png',0,'attachment','image/png',0),(5775,8,'2023-05-09 03:50:21','2023-05-09 03:50:21','[caption id=\"attachment_5774\" align=\"alignright\" width=\"350\"]<img class=\"wp-image-5774\" src=\"https://www.drfields.com/wp-content/uploads/2023/05/JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-500x419.png\" alt=\"Chronic Pain Management\" width=\"350\" height=\"293\" /> Chronic Pain Management[/caption]\r\n<h2>Musculoskeletal Pain</h2>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Musculoskeletal pain is pain that affects the muscles, ligaments, tendons, and bones. When a person suffers from musculoskeletal pain, their quality of life is reduced.\r\n\r\nAs a person ages, musculoskeletal diseases increase in frequency. Millions of Americans suffer from arthritis, a chronic musculoskeletal disease, that often leads to joint replacements.\r\n<h2>What Is Chronic Pain?</h2>\r\nChronic pain is pain that continues or recurs over a prolonged period. Chronic pain however, can range from mild to severe and can last weeks, months or longer.\r\n\r\nAnother type of pain is acute pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs.\r\n<h2>What Causes Musculoskeletal Pain?</h2>\r\nThere are different causes of musculoskeletal pain. Pain often acts as a warning that tissues are being damaged. Soft tissue, like muscle, tendons, and ligaments, can become damaged by wear and tear from a variety of activities.\r\n\r\nMusculoskeletal tissue can also be damaged by trauma, such as can occur through falls, accidents, sprains, dislocations, and fractures. Musculoskeletal pain can be caused by any type of trauma to the muscles, ligaments, tendons, bones, and other soft tissue of the joint.\r\n\r\nVery often the pain in a joint is due to ligament and/or tendon injury. Ligaments and tendons are the main connective tissue structures that stabilize and move joints. Unfortunately, these soft tissue structures have a poor blood supply, and they often fail to completely heal once injured.\r\n\r\n<strong>That is why an old injury sets into motion a chronic cycle that can rear its head up years later.</strong> Ligament tears and injuries alter joint mechanics. They cause the joint to move abnormally. An injured area remains weak. Month after month, and year after year, that weakened joint, moving abnormally, causes degeneration of the joint.\r\n<h2>How Can Chronic Pain Be Managed?</h2>\r\nRegenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy, effectively repair the damaged, weakened ligaments and tendons. These treatments build stronger tendons and ligaments that can stabilize the joint structures. With treatment, the weakened soft tissue are healed, and the patient’s pain is reduced or eliminated.\r\n<h2>Types of Regenerative Orthopedics:</h2>\r\n<ul>\r\n 	<li><strong>Prolotherapy </strong>involves injections that are given into and around the entire painful or injured area. Prolotherapy strengthens ligaments and tendons by inducing repair through the stimulation of growth factors and boosting the body\'s own healing mechanism.</li>\r\n 	<li>PRP involves the injection of the person\'s own platelets. These platelets release growth factors that stimulate recovery in these blood poor tissue such as tendons. PRP is great at accelerating the regeneration in soft tissue injuries such as meniscus tears of the knee.</li>\r\n 	<li><strong>Stem Cell Therapy </strong>describes the use of a person\'s own adult mesenchymal stem cells (MSCs) taken from the individual’s bone marrow or adipose (fat) tissue. Stem Cell Therapy is typically done in more advanced cases of joint degeneration or injury, and at our clinic also involves PRP and Prolotherapy.</li>\r\n</ul>\r\n<h2>Regenerative Orthopedics for Chronic Musculoskeletal Pain</h2>\r\nRegenerative Orthopedics provide significant relief of chronic musculoskeletal pain in the neck, back, knee, elbow, foot, hand, shoulder, and wrist. The use of Regenerative Orthopedics results in a decrease in pain and an increase in function.\r\n\r\nThese regenerative therapies are effective for arthritis, ligament injury, tendinopathy,  joint instability, labrum or meniscus injury, joint hypermobility syndrome, and many other musculoskeletal pain conditions.\r\n\r\nRegenerative Orthopedics are viable alternatives to pain medications, NSAIDs, cortisone (steroid) injection, and surgery.\r\n\r\nMusculoskeletal diseases are extremely common causes of pain and result in devastating consequences to millions of people. Non-Surgical Regenerative Orthopedics are effective treatment options that do not just manage pain, but effectively repair the underlying source of the pain...the ligament and tendon injuries.\r\n\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAIDs, narcotic medications, various therapies, and exercises that fail to provide relief. That\'s because they do not get to the root of the problem.\r\n<h2>Don\'t Just Manage Your Pain, Repair It</h2>\r\nIf you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or if you are afflicted with another chronic musculoskeletal pain, Regenerative Orthopedics may be your answer. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or to get a second opinion for a recommended surgery. At OrthoRegen®, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Don\'t just manage your pain, repair it with Regenerative Orthopedics. Call today at 310-453-1234.\r\n\r\nHaunschild, Eric D., et al. \"Biologics in shoulder and elbow pathology.\" <em>JSES Reviews, Reports, and Techniques</em> 1.1 (2021): 1-6.','Chronic Pain Management','','inherit','closed','closed','','5773-revision-v1','','','2023-05-09 03:50:21','2023-05-09 03:50:21','',5773,'https://www.drfields.com/?p=5775',0,'revision','',0),(5776,8,'2023-05-09 03:50:40','2023-05-09 03:50:40','<img class=\"alignright wp-image-5774\" src=\"https://www.drfields.com/wp-content/uploads/2023/05/JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-500x419.png\" alt=\"Chronic Pain Management\" width=\"350\" height=\"293\" />\r\n<h2>Musculoskeletal Pain</h2>\r\nPain can be defined as a feeling of distress, suffering, or agony, caused by stimulation of specialized nerve endings in the body, resulting from injury or disease. Musculoskeletal pain is pain that affects the muscles, ligaments, tendons, and bones. When a person suffers from musculoskeletal pain, their quality of life is reduced.\r\n\r\nAs a person ages, musculoskeletal diseases increase in frequency. Millions of Americans suffer from arthritis, a chronic musculoskeletal disease, that often leads to joint replacements.\r\n<h2>What Is Chronic Pain?</h2>\r\nChronic pain is pain that continues or recurs over a prolonged period. Chronic pain however, can range from mild to severe and can last weeks, months or longer.\r\n\r\nAnother type of pain is acute pain. Acute pain is intense and can last from a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs.\r\n<h2>What Causes Musculoskeletal Pain?</h2>\r\nThere are different causes of musculoskeletal pain. Pain often acts as a warning that tissues are being damaged. Soft tissue, like muscle, tendons, and ligaments, can become damaged by wear and tear from a variety of activities.\r\n\r\nMusculoskeletal tissue can also be damaged by trauma, such as can occur through falls, accidents, sprains, dislocations, and fractures. Musculoskeletal pain can be caused by any type of trauma to the muscles, ligaments, tendons, bones, and other soft tissue of the joint.\r\n\r\nVery often the pain in a joint is due to ligament and/or tendon injury. Ligaments and tendons are the main connective tissue structures that stabilize and move joints. Unfortunately, these soft tissue structures have a poor blood supply, and they often fail to completely heal once injured.\r\n\r\n<strong>That is why an old injury sets into motion a chronic cycle that can rear its head up years later.</strong> Ligament tears and injuries alter joint mechanics. They cause the joint to move abnormally. An injured area remains weak. Month after month, and year after year, that weakened joint, moving abnormally, causes degeneration of the joint.\r\n<h2>How Can Chronic Pain Be Managed?</h2>\r\nRegenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy, effectively repair the damaged, weakened ligaments and tendons. These treatments build stronger tendons and ligaments that can stabilize the joint structures. With treatment, the weakened soft tissue are healed, and the patient’s pain is reduced or eliminated.\r\n<h2>Types of Regenerative Orthopedics:</h2>\r\n<ul>\r\n 	<li><strong>Prolotherapy </strong>involves injections that are given into and around the entire painful or injured area. Prolotherapy strengthens ligaments and tendons by inducing repair through the stimulation of growth factors and boosting the body\'s own healing mechanism.</li>\r\n 	<li>PRP involves the injection of the person\'s own platelets. These platelets release growth factors that stimulate recovery in these blood poor tissue such as tendons. PRP is great at accelerating the regeneration in soft tissue injuries such as meniscus tears of the knee.</li>\r\n 	<li><strong>Stem Cell Therapy </strong>describes the use of a person\'s own adult mesenchymal stem cells (MSCs) taken from the individual’s bone marrow or adipose (fat) tissue. Stem Cell Therapy is typically done in more advanced cases of joint degeneration or injury, and at our clinic also involves PRP and Prolotherapy.</li>\r\n</ul>\r\n<h2>Regenerative Orthopedics for Chronic Musculoskeletal Pain</h2>\r\nRegenerative Orthopedics provide significant relief of chronic musculoskeletal pain in the neck, back, knee, elbow, foot, hand, shoulder, and wrist. The use of Regenerative Orthopedics results in a decrease in pain and an increase in function.\r\n\r\nThese regenerative therapies are effective for arthritis, ligament injury, tendinopathy,  joint instability, labrum or meniscus injury, joint hypermobility syndrome, and many other musculoskeletal pain conditions.\r\n\r\nRegenerative Orthopedics are viable alternatives to pain medications, NSAIDs, cortisone (steroid) injection, and surgery.\r\n\r\nMusculoskeletal diseases are extremely common causes of pain and result in devastating consequences to millions of people. Non-Surgical Regenerative Orthopedics are effective treatment options that do not just manage pain, but effectively repair the underlying source of the pain...the ligament and tendon injuries.\r\n\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAIDs, narcotic medications, various therapies, and exercises that fail to provide relief. That\'s because they do not get to the root of the problem.\r\n<h2>Don\'t Just Manage Your Pain, Repair It</h2>\r\nIf you suffer from <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? Or if you are afflicted with another chronic musculoskeletal pain, Regenerative Orthopedics may be your answer. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or to get a second opinion for a recommended surgery. At OrthoRegen®, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Don\'t just manage your pain, repair it with Regenerative Orthopedics. Call today at 310-453-1234.\r\n\r\nHaunschild, Eric D., et al. \"Biologics in shoulder and elbow pathology.\" <em>JSES Reviews, Reports, and Techniques</em> 1.1 (2021): 1-6.','Chronic Pain Management','','inherit','closed','closed','','5773-revision-v1','','','2023-05-09 03:50:40','2023-05-09 03:50:40','',5773,'https://www.drfields.com/?p=5776',0,'revision','',0),(5777,8,'2023-05-09 03:52:08','2023-05-09 03:52:08','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/chronic-pain-management/\">Chronic Pain Management</a></li>\r\n        <li><a href=\"/articles/meniscus-tear-treatment/\">Meniscus Tear Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/neck-pain-treatment/\">Neck Pain Treatment</a></li>\r\n 	<li><a href=\"/uncategorized/knee-replacement-failure/\">Knee Replacement Failure</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/best-treatments-for-low-back-pain/\">Best Treatments For Low Back Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/arthritis-knee-treatment/\">Arthritis Knee Treatment</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/back-pain-treatment/\">Back Pain Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-05-09 03:52:08','2023-05-09 03:52:08','',2109,'https://www.drfields.com/?p=5777',0,'revision','',0),(5779,9,'2023-05-12 21:45:32','2023-05-12 21:45:32','<img class=\"alignright wp-image-5774\" src=\"https://www.drfields.com/wp-content/uploads/2023/05/JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-500x419.png\" alt=\"Chronic Pain Management\" width=\"350\" height=\"293\" />\n<h2>Chronic Pain Management:</h2>\n<h2>Musculoskeletal Pain</h2>\nPain can be defined as a feeling of distress, suffering, or agony caused by the stimulation of specialized nerve endings in the body resulting from injury or disease. Musculoskeletal pain affects the muscles, ligaments, tendons, and bones. When a person suffers from musculoskeletal pain, their quality of life is reduced, and they seek treatment options for chronic pain management.\n\nAs a person ages, musculoskeletal diseases increase in frequency. Millions of Americans suffer from arthritis, a chronic musculoskeletal disease that often leads to joint replacements.\n<h2>What Is Chronic Pain?</h2>\nChronic pain is pain that continues or recurs over a prolonged period. Chronic pain, however, can range from mild to severe and last weeks, months, or longer.\n\nAnother type of pain is acute pain. Acute pain is intense and can last a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs.\n<h2>What Causes Musculoskeletal Pain?</h2>\nPain often acts as a warning that tissues are being damaged. There are different reasons for musculoskeletal pain. Soft tissue, like muscles, tendons, and ligaments, can become damaged by wear and tear from various activities.\n\nTrauma from falls, accidents, sprains, dislocations, and fractures can also damage musculoskeletal tissue. Musculoskeletal pain can be caused by any trauma to the muscles, ligaments, tendons, bones, and other soft tissue of the joint.\n\nVery often, the pain in a joint is due to ligament and/or tendon injury. Ligaments and tendons are the main connective tissue structures that stabilize and move joints. Unfortunately, these soft tissue structures have a poor blood supply and often fail to heal completely once injured.\n\n<strong>That is why an old injury sets into motion a chronic cycle that can rear its head up years later.</strong> Ligament tears and injuries alter joint mechanics. They cause the joint to move abnormally. An injured area remains weak. Month after month, and year after year, that weakened joint, moving abnormally, causes degeneration of the joint.\n<h2>How Can Chronic Pain Be Managed?</h2>\nRegenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy, effectively repair the damaged, weakened ligaments and tendons. These treatments build stronger tendons and ligaments that can stabilize the joint structures. With treatment, the weakened soft tissue is healed, and the patient’s pain is reduced or eliminated.\n<h2>Types of Regenerative Orthopedics:</h2>\n<ul>\n 	<li><strong>Prolotherapy </strong>involves injections given into and around the entire painful or injured area. Prolotherapy strengthens ligaments and tendons by inducing repair through stimulating growth factors and boosting the body\'s healing mechanism.</li>\n 	<li>PRP involves the injection of the person\'s platelets. These platelets release growth factors that stimulate recovery in blood-poor tissue, such as tendons. PRP is great at accelerating the regeneration of soft tissue injuries such as knee meniscus tears.</li>\n 	<li><strong>Stem Cell Therapy </strong>describes the use of a person\'s adult mesenchymal stem cells (MSCs) taken from the individual’s bone marrow or adipose (fat) tissue. Stem Cell Therapy is typically done in more advanced cases of joint degeneration or injury.</li>\n</ul>\n<h2>Regenerative Orthopedics for Chronic Musculoskeletal Pain</h2>\nRegenerative Orthopedics provides significant relief of chronic musculoskeletal pain in the neck, back, knee, elbow, foot, hand, shoulder, and wrist. The use of Regenerative Orthopedics results in a decrease in pain and an increase in function.\n\nThese regenerative therapies are effective for arthritis, ligament injury, tendinopathy,  joint instability, labrum or meniscus injury, joint hypermobility syndrome, and many other musculoskeletal pain conditions.\n\nRegenerative Orthopedics are viable alternatives to pain medications, NSAIDs, cortisone (steroid) injection, and surgery.\n\nMusculoskeletal diseases are extremely common causes of pain and result in devastating consequences to millions of people. Non-Surgical Regenerative Orthopedics are effective treatment options that do not just manage pain but effectively repair the underlying source of the pain...the ligament and tendon injuries.\n\nMany patients come to us tired of ‘managing’ their chronic pain with NSAIDs, narcotic medications, various therapies, and exercises that fail to provide relief. That\'s because they do not get to the root of the problem.\n\nThe <i>Journal of Prolotherapy</i> says, \"Clinicians make their recommendations to patients on the basis of their knowledge of human physiology in both health and disease. Since most chronic pain results from the degeneration and injury of musculoskeletal structures such as ligaments, tendons, other soft tissues and joints, and the nerves that support them, then regenerative injection therapy (Prolotherapy) makes physiological sense. Prolotherapy should be one of the preferred therapies when clinicians, including doctors, nurses, and other allied health care professionals, discuss treatment options with patients who suffer from musculoskeletal pain.\"2\n<h2>Don\'t Just Manage Your Pain, Repair It</h2>\nDo you suffer from musculoskeletal pain, such as <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? If you are afflicted with chronic musculoskeletal pain, Regenerative Orthopedics may be your answer. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or to get a second opinion for a recommended surgery. At OrthoRegen®, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Don\'t just manage your pain; repair it with Regenerative Orthopedics. Call today at 310-453-1234.\n<h2>References</h2>\n1 Haunschild, Eric D., et al. \"Biologics in shoulder and elbow pathology.\" <i>JSES Reviews, Reports, and Techniques</i> 1.1 (2021): 1-6.\n\n2 Hauser, RA, Maddela, H., et al. \"Journal of Prolotherapy International Medical Editorial Board Consensus Statement on the Use of Prolotherapy for Musculoskeletal Pain.\"<i>Journal of Prolotherapy.</i> 2011;3(4):744-764.','Chronic Pain Management','','inherit','closed','closed','','5773-autosave-v1','','','2023-05-12 21:45:32','2023-05-12 21:45:32','',5773,'https://www.drfields.com/?p=5779',0,'revision','',0),(5780,9,'2023-05-12 21:40:42','2023-05-12 21:40:42','<img class=\"alignright wp-image-5774\" src=\"https://www.drfields.com/wp-content/uploads/2023/05/JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-500x419.png\" alt=\"Chronic Pain Management\" width=\"350\" height=\"293\" />\r\n<h2>Musculoskeletal Pain</h2>\r\nPain can be defined as a feeling of distress, suffering, or agony caused by the stimulation of specialized nerve endings in the body resulting from injury or disease. Musculoskeletal pain affects the muscles, ligaments, tendons, and bones. When a person suffers from musculoskeletal pain, their quality of life is reduced, and they seek treatment options for chronic pain management.\r\n\r\nAs a person ages, musculoskeletal diseases increase in frequency. Millions of Americans suffer from arthritis, a chronic musculoskeletal disease that often leads to joint replacements.\r\n<h2>What Is Chronic Pain?</h2>\r\nChronic pain is pain that continues or recurs over a prolonged period. Chronic pain, however, can range from mild to severe and last weeks, months, or longer.\r\n\r\nAnother type of pain is acute pain. Acute pain is intense and can last a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs.\r\n<h2>What Causes Musculoskeletal Pain?</h2>\r\nPain often acts as a warning that tissues are being damaged. There are different reasons for musculoskeletal pain. Soft tissue, like muscle, tendons, and ligaments, can become damaged by wear and tear from a variety of activities.\r\n\r\nMusculoskeletal tissue can also be damaged by trauma, such as falls, accidents, sprains, dislocations, and fractures. Musculoskeletal pain can be caused by any trauma to the muscles, ligaments, tendons, bones, and other soft tissue of the joint.\r\n\r\nVery often the pain in a joint is due to ligament and/or tendon injury. Ligaments and tendons are the main connective tissue structures that stabilize and move joints. Unfortunately, these soft tissue structures have a poor blood supply and often fail to  heal completely once injured.\r\n\r\n<strong>That is why an old injury sets into motion a chronic cycle that can rear its head up years later.</strong> Ligament tears and injuries alter joint mechanics. They cause the joint to move abnormally. An injured area remains weak. Month after month, and year after year, that weakened joint, moving abnormally, causes degeneration of the joint.\r\n<h2>How Can Chronic Pain Be Managed?</h2>\r\nRegenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy, effectively repair the damaged, weakened ligaments and tendons. These treatments build stronger tendons and ligaments that can stabilize the joint structures. With treatment, the weakened soft tissue is healed, and the patient’s pain is reduced or eliminated.\r\n<h2>Types of Regenerative Orthopedics:</h2>\r\n<ul>\r\n 	<li><strong>Prolotherapy </strong>involves injections given into and around the entire painful or injured area. Prolotherapy strengthens ligaments and tendons by inducing repair through stimulating growth factors and boosting the body\'s healing mechanism.</li>\r\n 	<li>PRP involves the injection of the person\'s own platelets. These platelets release growth factors that stimulate recovery in these blood-poor tissue, such as tendons. PRP is great at accelerating the regeneration of soft tissue injuries such as knee meniscus tears.</li>\r\n 	<li><strong>Stem Cell Therapy </strong>describes the use of a person\'s adult mesenchymal stem cells (MSCs) taken from the individual’s bone marrow or adipose (fat) tissue. Stem Cell Therapy is typically done in more advanced cases of joint degeneration or injury.</li>\r\n</ul>\r\n<h2>Regenerative Orthopedics for Chronic Musculoskeletal Pain</h2>\r\nRegenerative Orthopedics provides significant relief of chronic musculoskeletal pain in the neck, back, knee, elbow, foot, hand, shoulder, and wrist. The use of Regenerative Orthopedics results in a decrease in pain and an increase in function.\r\n\r\nThese regenerative therapies are effective for arthritis, ligament injury, tendinopathy,  joint instability, labrum or meniscus injury, joint hypermobility syndrome, and many other musculoskeletal pain conditions.\r\n\r\nRegenerative Orthopedics are viable alternatives to pain medications, NSAIDs, cortisone (steroid) injection, and surgery.\r\n\r\nMusculoskeletal diseases are extremely common causes of pain and result in devastating consequences to millions of people. Non-Surgical Regenerative Orthopedics are effective treatment options that do not just manage pain but effectively repair the underlying source of the pain...the ligament and tendon injuries.\r\n\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAIDs, narcotic medications, various therapies, and exercises that fail to provide relief. That\'s because they do not get to the root of the problem.\r\n\r\nThe <i>Journal of Prolotherapy</i> says, \"Clinicians make their recommendations to patients on the basis of their knowledge of human physiology in both health and disease. Since most chronic pain results from the degeneration and injury of musculoskeletal structures such as ligaments, tendons, other soft tissues and joints, and the nerves that support them, then regenerative injection therapy (Prolotherapy) makes physiological sense. Prolotherapy should be one of the preferred therapies when clinicians, including doctors, nurses, and other allied health care professionals, discuss treatment options with patients who suffer from musculoskeletal pain.\"2\r\n<h2>Don\'t Just Manage Your Pain, Repair It</h2>\r\nDo you suffer from musculoskeletal pain, such as <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? If you are afflicted with chronic musculoskeletal pain, Regenerative Orthopedics may be your answer. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or to get a second opinion for a recommended surgery. At OrthoRegen®, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Don\'t just manage your pain; repair it with Regenerative Orthopedics. Call today at 310-453-1234.\r\n<h2>References</h2>\r\n1 Haunschild, Eric D., et al. \"Biologics in shoulder and elbow pathology.\" <i>JSES Reviews, Reports, and Techniques</i> 1.1 (2021): 1-6.\r\n\r\n2 Hauser, RA, Maddela, H., et al. \"Journal of Prolotherapy International Medical Editorial Board Consensus Statement on the Use of Prolotherapy for Musculoskeletal Pain.\"<i>Journal of Prolotherapy.</i> 2011;3(4):744-764.','Chronic Pain Management','','inherit','closed','closed','','5773-revision-v1','','','2023-05-12 21:40:42','2023-05-12 21:40:42','',5773,'https://www.drfields.com/?p=5780',0,'revision','',0),(5781,9,'2023-05-12 21:46:28','2023-05-12 21:46:28','<img class=\"alignright wp-image-5774\" src=\"https://www.drfields.com/wp-content/uploads/2023/05/JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-500x419.png\" alt=\"Chronic Pain Management\" width=\"350\" height=\"293\" />\r\n<h2>Chronic Pain Management:</h2>\r\n<h2>Musculoskeletal Pain</h2>\r\nPain can be defined as a feeling of distress, suffering, or agony caused by the stimulation of specialized nerve endings in the body resulting from injury or disease. Musculoskeletal pain affects the muscles, ligaments, tendons, and bones. When a person suffers from musculoskeletal pain, their quality of life is reduced, and they seek treatment options for chronic pain management.\r\n\r\nAs a person ages, musculoskeletal diseases increase in frequency. Millions of Americans suffer from arthritis, a chronic musculoskeletal disease that often leads to joint replacements.\r\n<h2>What Is Chronic Pain?</h2>\r\nChronic pain is pain that continues or recurs over a prolonged period. Chronic pain, however, can range from mild to severe and last weeks, months, or longer.\r\n\r\nAnother type of pain is acute pain. Acute pain is intense and can last a few seconds to hours or days. This severe pain should wane as healing of the injury or disease occurs.\r\n<h2>What Causes Musculoskeletal Pain?</h2>\r\nPain often acts as a warning that tissues are being damaged. There are different reasons for musculoskeletal pain. Soft tissue, like muscles, tendons, and ligaments, can become damaged by wear and tear from various activities.\r\n\r\nTrauma from falls, accidents, sprains, dislocations, and fractures can also damage musculoskeletal tissue. Musculoskeletal pain can be caused by any trauma to the muscles, ligaments, tendons, bones, and other soft tissue of the joint.\r\n\r\nVery often, the pain in a joint is due to ligament and/or tendon injury. Ligaments and tendons are the main connective tissue structures that stabilize and move joints. Unfortunately, these soft tissue structures have a poor blood supply and often fail to heal completely once injured.\r\n\r\n<strong>That is why an old injury sets into motion a chronic cycle that can rear its head up years later.</strong> Ligament tears and injuries alter joint mechanics. They cause the joint to move abnormally. An injured area remains weak. Month after month, and year after year, that weakened joint, moving abnormally, causes degeneration of the joint.\r\n<h2>How Can Chronic Pain Be Managed?</h2>\r\nRegenerative Orthopedics, including Prolotherapy, PRP, and Stem Cell Therapy, effectively repair the damaged, weakened ligaments and tendons. These treatments build stronger tendons and ligaments that can stabilize the joint structures. With treatment, the weakened soft tissue is healed, and the patient’s pain is reduced or eliminated.\r\n<h2>Types of Regenerative Orthopedics:</h2>\r\n<ul>\r\n 	<li><strong>Prolotherapy </strong>involves injections given into and around the entire painful or injured area. Prolotherapy strengthens ligaments and tendons by inducing repair through stimulating growth factors and boosting the body\'s healing mechanism.</li>\r\n 	<li>PRP involves the injection of the person\'s platelets. These platelets release growth factors that stimulate recovery in blood-poor tissue, such as tendons. PRP is great at accelerating the regeneration of soft tissue injuries such as knee meniscus tears.</li>\r\n 	<li><strong>Stem Cell Therapy </strong>describes the use of a person\'s adult mesenchymal stem cells (MSCs) taken from the individual’s bone marrow or adipose (fat) tissue. Stem Cell Therapy is typically done in more advanced cases of joint degeneration or injury.</li>\r\n</ul>\r\n<h2>Regenerative Orthopedics for Chronic Musculoskeletal Pain</h2>\r\nRegenerative Orthopedics significantly relieves chronic musculoskeletal pain in the neck, back, knee, elbow, foot, hand, shoulder, and wrist. The use of Regenerative Orthopedics results in a decrease in pain and an increase in function.\r\n\r\nThese regenerative therapies are effective for arthritis, ligament injury, tendinopathy,  joint instability, labrum or meniscus injury, joint hypermobility syndrome, and many other musculoskeletal pain conditions.\r\n\r\nRegenerative Orthopedics are viable alternatives to pain medications, NSAIDs, cortisone (steroid) injections, and surgery.\r\n\r\nMusculoskeletal diseases are prevalent causes of pain and have devastating consequences for millions. Non-Surgical Regenerative Orthopedics are effective treatment options that do not just manage pain but effectively repair the underlying source of the pain...the ligament and tendon injuries.\r\n\r\nMany patients come to us tired of ‘managing’ their chronic pain with NSAIDs, narcotic medications, various therapies, and exercises that fail to provide relief. That\'s because they do not get to the root of the problem.\r\n\r\nThe <i>Journal of Prolotherapy</i> says, \"Clinicians make their recommendations to patients on the basis of their knowledge of human physiology in both health and disease. Since most chronic pain results from the degeneration and injury of musculoskeletal structures such as ligaments, tendons, other soft tissues and joints, and the nerves that support them, then regenerative injection therapy (Prolotherapy) makes physiological sense. Prolotherapy should be one of the preferred therapies when clinicians, including doctors, nurses, and other allied health care professionals, discuss treatment options with patients who suffer from musculoskeletal pain.\"2\r\n<h2>Don\'t Just Manage Your Pain, Repair It</h2>\r\nDo you suffer from musculoskeletal pain, such as <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/\">chronic knee pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/\">Chronic shoulder pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/\">Chronic neck pain</a>? <a href=\"https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/\">Chronic elbow pain</a>? If you are afflicted with chronic musculoskeletal pain, Regenerative Orthopedics may be your answer. <a href=\"https://www.drfields.com/contact/\">Contact us for a consultation</a> to see if you are a candidate or to get a second opinion for a recommended surgery. At OrthoRegen®, we want to help you achieve your goals of optimal health and sustained wellness. We will use the most effective and least invasive methods in your treatment. Don\'t just manage your pain; repair it with Regenerative Orthopedics. Call today at 310-453-1234.\r\n<h2>References</h2>\r\n1 Haunschild, Eric D., et al. \"Biologics in shoulder and elbow pathology.\" <i>JSES Reviews, Reports, and Techniques</i> 1.1 (2021): 1-6.\r\n\r\n2 Hauser, RA, Maddela, H., et al. \"Journal of Prolotherapy International Medical Editorial Board Consensus Statement on the Use of Prolotherapy for Musculoskeletal Pain.\"<i>Journal of Prolotherapy.</i> 2011;3(4):744-764.','Chronic Pain Management','','inherit','closed','closed','','5773-revision-v1','','','2023-05-12 21:46:28','2023-05-12 21:46:28','',5773,'https://www.drfields.com/?p=5781',0,'revision','',0),(5783,8,'2023-05-19 09:00:44','2023-05-19 09:00:44','<img class=\"alignright wp-image-5784\" src=\"https://www.drfields.com/wp-content/uploads/2023/05/Arthritis.-Orthopedic-Reviews-500x419.png\" alt=\"Arthritis. Orthopedic Reviews\" width=\"300\" height=\"251\" />\r\n<h2>Regenerative Orthopedics: Alternative Treatments for Arthritis</h2>\r\nArthritis is one of the most common conditions plaguing people worldwide. The annoying arthritis symptoms, like joint pain and stiffness, are a result of the progressive loss of cartilage as the joint degenerates. These symptoms can put a real damper on people\'s lives, hindering the ability to move, slowing down progress, and making it difficult to accomplish desired activities. When common treatments fail, what are alternative treatments for arthritis?\r\n\r\nRegenerative Orthopedics are effective arthritis treatments. At OrthoRegen,® we have seen arthritis sufferers finally get the relief they seek by choosing Prolotherapy, Platelet Rich Plasma, and the Gold Standard in Stem Cell Therapy.\r\n<h2>Why Does Arthritis Even Start in the First Place?</h2>\r\nThere is a reason for the degeneration that is prevalent with arthritis. At some point, the structures of the joint become injured. This injury may have occurred as a traumatic event, such as a sports injury or fall.  Or, the injury transpired over time from wear and tear. Either way, the damage to the joint structures, like the ligaments and tendons, causes the joint to move abnormally. As the joint moves abnormally, friction and pressure are placed on the joint structures, which injures and wears them further.\r\n\r\nImagine a door with loose hinges. The door may now scrape on the floor, leaving grooves on it because the door moves abnormally. Whatever caused the loose hinge, either wear and tear or something/someone banged into it; the result is the same. The door is now unstable, leading to abnormal motion and new wear on the floor.\r\n\r\nThat same process happens to our joints when the stabilizing joint structures, the tendons, and ligaments, are injured. Ligaments become lax once they are injured, and the abnormal motion that takes place begins a cycle that ultimately results in degenerative changes and osteoarthritis.\r\n<h2>Can Joint Motion Be Restored?</h2>\r\nRegenerative Orthopedic therapies, such as Prolotherapy, PRP, and Stem Cells, can restore normal joint motion. The great thing about these treatments is that they are regenerative and restorative. Many other treatments, such as pain medications, only chase arthritic symptoms. They do not repair the underlying problem. These regenerative therapies do! Regenerative Orthopedics repairs the underlying ligament and tendon injury, restore the abnormal joint motion, and stop the degenerative cycle.\r\n<h2>What Does the Research Say about Regenerative Orthopedics as An Alternative Arthritis Treatment?</h2>\r\nStudies show that Regenerative Orthopedics are beneficial alternative arthritis treatments that can bring significant pain relief and healing in degenerated joints.\r\n<h3>Here\'s what some of the studies say:</h3>\r\nResearchers analyzed 1093 patients for the efficacy and safety of intra-articular injections of platelet-rich plasma (PRP) and mesenchymal stem cells (MSCs) in treating knee arthritis. They noted \"beneficial clinical outcomes by means of lowered pain perception and increased physical functionality; therefore, the quality of life in KOA (knee osteoarthritis) patients had been significantly improved.\"1\r\n<h4><em>PRP and Stem Cells as an Alternative Arthritis Treatment</em></h4>\r\nThis study, documented in the journal, <em>Cureus</em>, looked at 30 published medical articles and found that PRP and stem cell injections are effective at repairing tissue, providing pain relief, and restoring function in patients with mild to moderate knee arthritis. Stem Cell injections are more effective at repair in more severely degenerated knees. Both treatments are well tolerated without serious adverse effects observed. Additionally, this study concluded that regenerative medicine injections show superior results compared to hyaluronic acid injections. (1)\r\n<h4><em>Prolotherapy as an Alternative Arthritis Treatment</em></h4>\r\nProlotherapy is a successful treatment option for various musculoskeletal conditions. Physicians commonly choose intra-articular injections, such as cortisone injections, once over-the-counter medications, topicals, and other treatments fail. However, cortisone treatments increase cartilage loss and make the arthritic joint worse. (2)\r\n<h2>Is Prolotherapy an Effective Alternative?</h2>\r\nResearchers in the medical journal <em>Orthopedic Reviews</em> say, \"Numerous clinical trials show significant improvement of osteoarthritic knee pain without any significant side effects reported following the use of prolotherapy. The results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment. <strong>Prolotherapy appears to be a safe and effective alternative</strong> to physical therapy, surgery, NSAIDs, steroids, and opiates when they fail to provide clinical relief.\"(3)\r\n\r\nA 2023 Indonesian study concluded, \"Prolotherapy effectively improves functional outcomes in all stages of knee osteoarthritis.\"(4)\r\n\r\nAll of the above studies reviewed the effects of Regenerative Orthopedic treatments on knees. <strong>What about other joints?</strong> Hauser et al. reviewed 32 research studies to determine the efficacy of dextrose prolotherapy in chronic musculoskeletal pain. In other words, this team reviewed the effects of regenerative treatment on multiple joint conditions.\r\n<h4>What were the results?</h4>\r\nThe Hauser et al. study demonstrated the effectiveness of Prolotherapy on multiple joints and various types of joint conditions and found, \"Overall, dextrose prolotherapy has been demonstrated to be efficacious and should be considered as a treatment for pain and dysfunction associated with chronic musculoskeletal conditions, particularly tendinopathies, and <strong>osteoarthritis</strong>.\"(5)\r\n<h2>Regenerative Orthopedics at OrthoRegen®</h2>\r\nAt OrthoRegen,® we have been a leader in regenerative treatments, helping arthritis sufferers get pain relief and restore joint function. We have many years of experience in providing regenerative treatments as alternative treatments for arthritis including Prolotherapy, Platelet Rich Plasma, and the Gold Standard in Stem Cell Therapy.  These treatments have helped thousands of patients restore their joint integrity. If arthritis is affecting your knees, back, shoulders, hips, or other joints, please give us a call and make an appointment soon, so you can get back to the activities you love.\r\n<ul>\r\n 	<li>Ip, Hoi Leng, et al. \"Regenerative medicine for knee osteoarthritis–the efficacy and safety of intra-articular platelet-rich plasma and mesenchymal Stem cells injections: a literature review.\" <em>Cureus</em>9 (2020).</li>\r\n 	<li>Zeng C, Lane NE, Hunter DJ, et al. Intra-articular corticosteroids and the risk of knee osteoarthritis progression: results from the Osteoarthritis Initiative. <em>Osteoarthr Cartil</em>. 2019;27(6):855-862.</li>\r\n 	<li>Zhao, Alex Tang, et al. \"A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee.\" <em>Orthopedic Reviews</em>4 (2022).</li>\r\n 	<li>Waluyo, Y., Artika, S. R. ., Wahyuni, I. N. ., Adnan, E. ., Budu, &amp; Bukhari, A. . (2023). Functional outcome in knee osteoarthritis after dextrose prolotherapy intervention: A severity-based pilot study. JKKI : Jurnal Kedokteran Dan Kesehatan Indonesia, 14(1), 47–54. <a href=\"https://doi.org/10.20885/JKKI.Vol14.Iss1.art8\">https://doi.org/10.20885/JKKI.Vol14.Iss1.art8</a></li>\r\n 	<li>Hauser, Ross A., et al. \"A systematic review of dextrose prolotherapy for chronic musculoskeletal pain.\" <em>Clinical medicine insights: arthritis and musculoskeletal disorders</em> 9 (2016): CMAMD-S39160.</li>\r\n</ul>','Alternative Treatments for Arthritis','','publish','closed','open','','alternative-treatments-for-arthritis','','','2023-05-26 21:41:25','2023-05-26 21:41:25','',0,'https://www.drfields.com/?p=5783',0,'post','',0),(5784,8,'2023-05-21 16:02:02','2023-05-21 16:02:02','Arthritis. Orthopedic Reviews','Arthritis. Orthopedic Reviews','Arthritis. Orthopedic Reviews','inherit','closed','closed','','arthritis-orthopedic-reviews','','','2023-05-21 16:02:02','2023-05-21 16:02:02','',5783,'https://www.drfields.com/wp-content/uploads/2023/05/Arthritis.-Orthopedic-Reviews.png',0,'attachment','image/png',0),(5785,8,'2023-05-21 16:03:33','2023-05-21 16:03:33','<img class=\"alignright wp-image-5784\" src=\"https://www.drfields.com/wp-content/uploads/2023/05/Arthritis.-Orthopedic-Reviews-500x419.png\" alt=\"Arthritis. Orthopedic Reviews\" width=\"300\" height=\"251\" />\r\n\r\nArthritis is one of the most common conditions plaguing people all over the world. The annoying arthritis symptoms, like joint pain and stiffness, are a result of progressive loss of cartilage as the joint degenerates. These symptoms can put a real damper on people\'s lives, hindering the ability to move, slowing down progress, and making it difficult to accomplish desired activities.\r\n\r\n<strong>Why Does Arthritis Even Start in the First Place?</strong>\r\n\r\nThere is a reason for the degeneration that is prevalent with arthritis. At some point, the structures of the joint become injured. This injury may have occurred as a traumatic event, such as a sports injury or fall; or, the injury transpired over time, from wear and tear. Either way, the injury to the joint structures, like the ligaments and tendons, causes the joint to move abnormally. As the joint moves abnormally, friction and pressure is placed on the joint structures, which injures and wears them further.\r\n\r\nImagine a door with loose hinges. The door may now scrape on the floor, leaving grooves on the floor, because it moves abnormally. Whatever caused the loose hinge, either wear and tear or something/someone banged into it, the result is the same. The door is now unstable, leading to the abnormal motion, and the new wear on the floor.\r\n\r\nThat same process happens to our joints when the stabilizing joint structures, the tendons and ligaments, are injured. Ligaments become lax once they are injured, and the abnormal motion that takes place begins a cycle that ultimately results in degenerative changes and osteoarthritis.\r\n\r\n<strong>Can Joint Motion Be Restored?</strong>\r\n\r\nRegenerative Orthopedic therapies, such as Prolotherapy, PRP, and Stem Cells, can restore normal joint motion. The great thing about these treatments is that they are regenerative and restorative. Many other treatments, such as pain medications, only chase arthritic symptoms. They do not repair the underlying problem. These regenerative therapies do! Regenerative Orthopedics repair the underlying ligament and tendon injury, restore the abnormal joint motion, and stop the degenerative cycle.\r\n\r\n<strong>What Does the Research Say about Regenerative Orthopedics as An Alternative Arthritis Treatment?</strong>\r\n\r\nStudies show that Regenerative Orthopedics are beneficial alternative arthritis treatments that can bring a significant amount of pain relief and healing in degenerated joints.\r\n\r\n<strong>Here\'s what some of the studies say:</strong>\r\n\r\nResearchers analyzed 1093 patients for the efficacy and safety of intra-articular injections of platelet-rich plasma (PRP) and mesenchymal stem cells (MSCs) in the treatments of knee arthritis. They noted \"beneficial clinical outcomes by means of lowered pain perception and increased physical functionality; therefore, the quality of life in KOA (knee osteoarthritis) patients had been significantly improved.\"1\r\n\r\n<em>PRP and Stem Cell as an Alternative Arthritis Treatment</em>\r\n\r\nThis study documented in the journal, <em>Cureus</em>, looked at 30 published medical articles and found that PRP and stem cell injections are both effective at repairing tissue, providing pain relief, and restoring function in patients with mild to moderate knee arthritis. Stem Cell injections are more effective at repair in more severely degenerated knees. Both treatments are well tolerated without serious adverse effects observed. Additionally, this study concluded that regenerative medicine injections show superior results when compared to hyaluronic acid injections. (1)\r\n\r\n<strong><em>Prolotherapy as an Alternative Arthritis Treatment</em></strong>\r\n\r\nProlotherapy has been shown to be a successful treatment option for a variety of musculoskeletal conditions. Physicians commonly choose intra-articular injections, such as cortisone injections, once over-the-counter medications, topicals, and other treatments fail. However, cortisone treatments increase cartilage loss and make the arthritic joint worse.(2)\r\n\r\n<strong><em>Is Prolotherapy an Effective Alternative?</em></strong>\r\n\r\nResearchers in the medical journal <em>Orthopedic Reviews</em> say, \"Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy. The results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment. <strong>Prolotherapy appears to be a safe and effective alternative</strong> to physical therapy, surgery, NSAIDs, steroids, and opiates when they fail to provide clinical relief.\"(3)\r\n\r\nA 2023 Indonesian study concluded, \"Prolotherapy effectively improves functional outcomes in all stages of knee osteoarthritis.\"(4)\r\n\r\nAll of the above studies reviewed the effects of Regenerative Orthopedic treatments on knees. <strong>What about other joints?</strong> Hauser et al reviewed 32 research studies to determine the efficacy of dextrose prolotherapy in chronic musculoskeletal pain. In other words, this team reviewed the effects of regenerative treatment on multiple joint conditions.\r\n\r\n<strong>What were the results?</strong>\r\n\r\nThe Hauser et al study demonstrated the effectiveness of Prolotherapy on multiple joints and various types of joint conditions and found, \"Overall, dextrose prolotherapy has been demonstrated to be efficacious and should be considered as a treatment for pain and dysfunction associated with chronic musculoskeletal conditions, particularly tendinopathies and <strong>osteoarthritis</strong>.\"(5)\r\n\r\n<strong>Regenerative Orthopedics at OrthoRegen®</strong>\r\n\r\nAt OrthoRegen,® we have been a leader in regenerative treatments, helping arthritis sufferers get pain relief and restoration of joint function. We have many years of experience in providing regenerative treatments including Prolotherapy, Platelet Rich Plasma, and the Gold Standard in Stem Cell Therapy.  These treatments have helped thousands of patients with the restoration of their joint integrity. If arthritis is affecting your knees, back, shoulders, hips, or other joints, please give us a call and make an appointment soon, so you can get back to the activities you love.\r\n<ul>\r\n 	<li>Ip, Hoi Leng, et al. \"Regenerative medicine for knee osteoarthritis–the efficacy and safety of intra-articular platelet-rich plasma and mesenchymal Stem cells injections: a literature review.\" <em>Cureus</em>9 (2020).</li>\r\n 	<li>Zeng C, Lane NE, Hunter DJ, et al. Intra-articular corticosteroids and the risk of knee osteoarthritis progression: results from the Osteoarthritis Initiative. <em>Osteoarthr Cartil</em>. 2019;27(6):855-862.</li>\r\n 	<li>Zhao, Alex Tang, et al. \"A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee.\" <em>Orthopedic Reviews</em>4 (2022).</li>\r\n 	<li>Waluyo, Y., Artika, S. R. ., Wahyuni, I. N. ., Adnan, E. ., Budu, &amp; Bukhari, A. . (2023). Functional outcome in knee osteoarthritis after dextrose prolotherapy intervention: A severity-based pilot study. JKKI : Jurnal Kedokteran Dan Kesehatan Indonesia, 14(1), 47–54. <a href=\"https://doi.org/10.20885/JKKI.Vol14.Iss1.art8\">https://doi.org/10.20885/JKKI.Vol14.Iss1.art8</a></li>\r\n 	<li>Hauser, Ross A., et al. \"A systematic review of dextrose prolotherapy for chronic musculoskeletal pain.\" <em>Clinical medicine insights: arthritis and musculoskeletal disorders</em> 9 (2016): CMAMD-S39160.</li>\r\n</ul>','','','inherit','closed','closed','','5783-revision-v1','','','2023-05-21 16:03:33','2023-05-21 16:03:33','',5783,'https://www.drfields.com/?p=5785',0,'revision','',0),(5786,8,'2023-05-21 16:03:52','2023-05-21 16:03:52','<img class=\"alignright wp-image-5784\" src=\"https://www.drfields.com/wp-content/uploads/2023/05/Arthritis.-Orthopedic-Reviews-500x419.png\" alt=\"Arthritis. Orthopedic Reviews\" width=\"300\" height=\"251\" />\r\n\r\nArthritis is one of the most common conditions plaguing people all over the world. The annoying arthritis symptoms, like joint pain and stiffness, are a result of progressive loss of cartilage as the joint degenerates. These symptoms can put a real damper on people\'s lives, hindering the ability to move, slowing down progress, and making it difficult to accomplish desired activities.\r\n\r\n<strong>Why Does Arthritis Even Start in the First Place?</strong>\r\n\r\nThere is a reason for the degeneration that is prevalent with arthritis. At some point, the structures of the joint become injured. This injury may have occurred as a traumatic event, such as a sports injury or fall; or, the injury transpired over time, from wear and tear. Either way, the injury to the joint structures, like the ligaments and tendons, causes the joint to move abnormally. As the joint moves abnormally, friction and pressure is placed on the joint structures, which injures and wears them further.\r\n\r\nImagine a door with loose hinges. The door may now scrape on the floor, leaving grooves on the floor, because it moves abnormally. Whatever caused the loose hinge, either wear and tear or something/someone banged into it, the result is the same. The door is now unstable, leading to the abnormal motion, and the new wear on the floor.\r\n\r\nThat same process happens to our joints when the stabilizing joint structures, the tendons and ligaments, are injured. Ligaments become lax once they are injured, and the abnormal motion that takes place begins a cycle that ultimately results in degenerative changes and osteoarthritis.\r\n\r\n<strong>Can Joint Motion Be Restored?</strong>\r\n\r\nRegenerative Orthopedic therapies, such as Prolotherapy, PRP, and Stem Cells, can restore normal joint motion. The great thing about these treatments is that they are regenerative and restorative. Many other treatments, such as pain medications, only chase arthritic symptoms. They do not repair the underlying problem. These regenerative therapies do! Regenerative Orthopedics repair the underlying ligament and tendon injury, restore the abnormal joint motion, and stop the degenerative cycle.\r\n\r\n<strong>What Does the Research Say about Regenerative Orthopedics as An Alternative Arthritis Treatment?</strong>\r\n\r\nStudies show that Regenerative Orthopedics are beneficial alternative arthritis treatments that can bring a significant amount of pain relief and healing in degenerated joints.\r\n\r\n<strong>Here\'s what some of the studies say:</strong>\r\n\r\nResearchers analyzed 1093 patients for the efficacy and safety of intra-articular injections of platelet-rich plasma (PRP) and mesenchymal stem cells (MSCs) in the treatments of knee arthritis. They noted \"beneficial clinical outcomes by means of lowered pain perception and increased physical functionality; therefore, the quality of life in KOA (knee osteoarthritis) patients had been significantly improved.\"1\r\n\r\n<em>PRP and Stem Cell as an Alternative Arthritis Treatment</em>\r\n\r\nThis study documented in the journal, <em>Cureus</em>, looked at 30 published medical articles and found that PRP and stem cell injections are both effective at repairing tissue, providing pain relief, and restoring function in patients with mild to moderate knee arthritis. Stem Cell injections are more effective at repair in more severely degenerated knees. Both treatments are well tolerated without serious adverse effects observed. Additionally, this study concluded that regenerative medicine injections show superior results when compared to hyaluronic acid injections. (1)\r\n\r\n<strong><em>Prolotherapy as an Alternative Arthritis Treatment</em></strong>\r\n\r\nProlotherapy has been shown to be a successful treatment option for a variety of musculoskeletal conditions. Physicians commonly choose intra-articular injections, such as cortisone injections, once over-the-counter medications, topicals, and other treatments fail. However, cortisone treatments increase cartilage loss and make the arthritic joint worse.(2)\r\n\r\n<strong><em>Is Prolotherapy an Effective Alternative?</em></strong>\r\n\r\nResearchers in the medical journal <em>Orthopedic Reviews</em> say, \"Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy. The results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment. <strong>Prolotherapy appears to be a safe and effective alternative</strong> to physical therapy, surgery, NSAIDs, steroids, and opiates when they fail to provide clinical relief.\"(3)\r\n\r\nA 2023 Indonesian study concluded, \"Prolotherapy effectively improves functional outcomes in all stages of knee osteoarthritis.\"(4)\r\n\r\nAll of the above studies reviewed the effects of Regenerative Orthopedic treatments on knees. <strong>What about other joints?</strong> Hauser et al reviewed 32 research studies to determine the efficacy of dextrose prolotherapy in chronic musculoskeletal pain. In other words, this team reviewed the effects of regenerative treatment on multiple joint conditions.\r\n\r\n<strong>What were the results?</strong>\r\n\r\nThe Hauser et al study demonstrated the effectiveness of Prolotherapy on multiple joints and various types of joint conditions and found, \"Overall, dextrose prolotherapy has been demonstrated to be efficacious and should be considered as a treatment for pain and dysfunction associated with chronic musculoskeletal conditions, particularly tendinopathies and <strong>osteoarthritis</strong>.\"(5)\r\n\r\n<strong>Regenerative Orthopedics at OrthoRegen®</strong>\r\n\r\nAt OrthoRegen,® we have been a leader in regenerative treatments, helping arthritis sufferers get pain relief and restoration of joint function. We have many years of experience in providing regenerative treatments including Prolotherapy, Platelet Rich Plasma, and the Gold Standard in Stem Cell Therapy.  These treatments have helped thousands of patients with the restoration of their joint integrity. If arthritis is affecting your knees, back, shoulders, hips, or other joints, please give us a call and make an appointment soon, so you can get back to the activities you love.\r\n<ul>\r\n 	<li>Ip, Hoi Leng, et al. \"Regenerative medicine for knee osteoarthritis–the efficacy and safety of intra-articular platelet-rich plasma and mesenchymal Stem cells injections: a literature review.\" <em>Cureus</em>9 (2020).</li>\r\n 	<li>Zeng C, Lane NE, Hunter DJ, et al. Intra-articular corticosteroids and the risk of knee osteoarthritis progression: results from the Osteoarthritis Initiative. <em>Osteoarthr Cartil</em>. 2019;27(6):855-862.</li>\r\n 	<li>Zhao, Alex Tang, et al. \"A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee.\" <em>Orthopedic Reviews</em>4 (2022).</li>\r\n 	<li>Waluyo, Y., Artika, S. R. ., Wahyuni, I. N. ., Adnan, E. ., Budu, &amp; Bukhari, A. . (2023). Functional outcome in knee osteoarthritis after dextrose prolotherapy intervention: A severity-based pilot study. JKKI : Jurnal Kedokteran Dan Kesehatan Indonesia, 14(1), 47–54. <a href=\"https://doi.org/10.20885/JKKI.Vol14.Iss1.art8\">https://doi.org/10.20885/JKKI.Vol14.Iss1.art8</a></li>\r\n 	<li>Hauser, Ross A., et al. \"A systematic review of dextrose prolotherapy for chronic musculoskeletal pain.\" <em>Clinical medicine insights: arthritis and musculoskeletal disorders</em> 9 (2016): CMAMD-S39160.</li>\r\n</ul>','Alternative Treatment for Arthritis','','inherit','closed','closed','','5783-revision-v1','','','2023-05-21 16:03:52','2023-05-21 16:03:52','',5783,'https://www.drfields.com/?p=5786',0,'revision','',0),(5787,8,'2023-05-21 16:05:18','2023-05-21 16:05:18','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"/uncategorized/alternative-treatment-for-arthritis/\">Alternative Treatment for Arthritis</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/chronic-pain-management/\">Chronic Pain Management</a></li>\r\n 	<li><a href=\"/articles/meniscus-tear-treatment/\">Meniscus Tear Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/neck-pain-treatment/\">Neck Pain Treatment</a></li>\r\n 	<li><a href=\"/uncategorized/knee-replacement-failure/\">Knee Replacement Failure</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/best-treatments-for-low-back-pain/\">Best Treatments For Low Back Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/arthritis-knee-treatment/\">Arthritis Knee Treatment</a></li></ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-05-21 16:05:18','2023-05-21 16:05:18','',2109,'https://www.drfields.com/?p=5787',0,'revision','',0),(5788,8,'2023-05-23 03:49:11','2023-05-23 03:49:11','<img class=\"alignright wp-image-5784\" src=\"https://www.drfields.com/wp-content/uploads/2023/05/Arthritis.-Orthopedic-Reviews-500x419.png\" alt=\"Arthritis. Orthopedic Reviews\" width=\"300\" height=\"251\" />\n\nArthritis is one of the most common conditions plaguing people all over the world. The annoying arthritis symptoms, like joint pain and stiffness, are a result of progressive loss of cartilage as the joint degenerates. These symptoms can put a real damper on people\'s lives, hindering the ability to move, slowing down progress, and making it difficult to accomplish desired activities.\n<h2>Why Does Arthritis Even Start in the First Place?</h2>\nThere is a reason for the degeneration that is prevalent with arthritis. At some point, the structures of the joint become injured. This injury may have occurred as a traumatic event, such as a sports injury or fall; or, the injury transpired over time, from wear and tear. Either way, the injury to the joint structures, like the ligaments and tendons, causes the joint to move abnormally. As the joint moves abnormally, friction and pressure is placed on the joint structures, which injures and wears them further.\n\nImagine a door with loose hinges. The door may now scrape on the floor, leaving grooves on the floor, because it moves abnormally. Whatever caused the loose hinge, either wear and tear or something/someone banged into it, the result is the same. The door is now unstable, leading to the abnormal motion, and the new wear on the floor.\n\nThat same process happens to our joints when the stabilizing joint structures, the tendons and ligaments, are injured. Ligaments become lax once they are injured, and the abnormal motion that takes place begins a cycle that ultimately results in degenerative changes and osteoarthritis.\n<h2>Can Joint Motion Be Restored?</h2>\nRegenerative Orthopedic therapies, such as Prolotherapy, PRP, and Stem Cells, can restore normal joint motion. The great thing about these treatments is that they are regenerative and restorative. Many other treatments, such as pain medications, only chase arthritic symptoms. They do not repair the underlying problem. These regenerative therapies do! Regenerative Orthopedics repair the underlying ligament and tendon injury, restore the abnormal joint motion, and stop the degenerative cycle.\n<h2>What Does the Research Say about Regenerative Orthopedics as An Alternative Arthritis Treatment?</h2>\nStudies show that Regenerative Orthopedics are beneficial alternative arthritis treatments that can bring a significant amount of pain relief and healing in degenerated joints.\n<h2>Here\'s what some of the studies say:</h2>\nResearchers analyzed 1093 patients for the efficacy and safety of intra-articular injections of platelet-rich plasma (PRP) and mesenchymal stem cells (MSCs) in the treatments of knee arthritis. They noted \"beneficial clinical outcomes by means of lowered pain perception and increased physical functionality; therefore, the quality of life in KOA (knee osteoarthritis) patients had been significantly improved.\"1\n\n<em>PRP and Stem Cell as an Alternative Arthritis Treatment</em>\n\nThis study documented in the journal, <em>Cureus</em>, looked at 30 published medical articles and found that PRP and stem cell injections are both effective at repairing tissue, providing pain relief, and restoring function in patients with mild to moderate knee arthritis. Stem Cell injections are more effective at repair in more severely degenerated knees. Both treatments are well tolerated without serious adverse effects observed. Additionally, this study concluded that regenerative medicine injections show superior results when compared to hyaluronic acid injections. (1)\n\n<strong><em>Prolotherapy as an Alternative Arthritis Treatment</em></strong>\n\nProlotherapy has been shown to be a successful treatment option for a variety of musculoskeletal conditions. Physicians commonly choose intra-articular injections, such as cortisone injections, once over-the-counter medications, topicals, and other treatments fail. However, cortisone treatments increase cartilage loss and make the arthritic joint worse.(2)\n<h2>Is Prolotherapy an Effective Alternative?</h2>\nResearchers in the medical journal <em>Orthopedic Reviews</em> say, \"Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy. The results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment. <strong>Prolotherapy appears to be a safe and effective alternative</strong> to physical therapy, surgery, NSAIDs, steroids, and opiates when they fail to provide clinical relief.\"(3)\n\nA 2023 Indonesian study concluded, \"Prolotherapy effectively improves functional outcomes in all stages of knee osteoarthritis.\"(4)\n\nAll of the above studies reviewed the effects of Regenerative Orthopedic treatments on knees. <strong>What about other joints?</strong> Hauser et al reviewed 32 research studies to determine the efficacy of dextrose prolotherapy in chronic musculoskeletal pain. In other words, this team reviewed the effects of regenerative treatment on multiple joint conditions.\n<h2>What were the results?</h2>\nThe Hauser et al study demonstrated the effectiveness of Prolotherapy on multiple joints and various types of joint conditions and found, \"Overall, dextrose prolotherapy has been demonstrated to be efficacious and should be considered as a treatment for pain and dysfunction associated with chronic musculoskeletal conditions, particularly tendinopathies and <strong>osteoarthritis</strong>.\"(5)\n<h2>Regenerative Orthopedics at OrthoRegen®</h2>\nAt OrthoRegen,® we have been a leader in regenerative treatments, helping arthritis sufferers get pain relief and restoration of joint function. We have many years of experience in providing regenerative treatments including Prolotherapy, Platelet Rich Plasma, and the Gold Standard in Stem Cell Therapy.  These treatments have helped thousands of patients with the restoration of their joint integrity. If arthritis is affecting your knees, back, shoulders, hips, or other joints, please give us a call and make an appointment soon, so you can get back to the activities you love.\n<ul>\n 	<li>Ip, Hoi Leng, et al. \"Regenerative medicine for knee osteoarthritis–the efficacy and safety of intra-articular platelet-rich plasma and mesenchymal Stem cells injections: a literature review.\" <em>Cureus</em>9 (2020).</li>\n 	<li>Zeng C, Lane NE, Hunter DJ, et al. Intra-articular corticosteroids and the risk of knee osteoarthritis progression: results from the Osteoarthritis Initiative. <em>Osteoarthr Cartil</em>. 2019;27(6):855-862.</li>\n 	<li>Zhao, Alex Tang, et al. \"A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee.\" <em>Orthopedic Reviews</em>4 (2022).</li>\n 	<li>Waluyo, Y., Artika, S. R. ., Wahyuni, I. N. ., Adnan, E. ., Budu, &amp; Bukhari, A. . (2023). Functional outcome in knee osteoarthritis after dextrose prolotherapy intervention: A severity-based pilot study. JKKI : Jurnal Kedokteran Dan Kesehatan Indonesia, 14(1), 47–54. <a href=\"https://doi.org/10.20885/JKKI.Vol14.Iss1.art8\">https://doi.org/10.20885/JKKI.Vol14.Iss1.art8</a></li>\n 	<li>Hauser, Ross A., et al. \"A systematic review of dextrose prolotherapy for chronic musculoskeletal pain.\" <em>Clinical medicine insights: arthritis and musculoskeletal disorders</em> 9 (2016): CMAMD-S39160.</li>\n</ul>','Alternative Treatment for Arthritis','','inherit','closed','closed','','5783-autosave-v1','','','2023-05-23 03:49:11','2023-05-23 03:49:11','',5783,'https://www.drfields.com/?p=5788',0,'revision','',0),(5789,8,'2023-05-23 03:49:21','2023-05-23 03:49:21','<img class=\"alignright wp-image-5784\" src=\"https://www.drfields.com/wp-content/uploads/2023/05/Arthritis.-Orthopedic-Reviews-500x419.png\" alt=\"Arthritis. Orthopedic Reviews\" width=\"300\" height=\"251\" />\r\n\r\nArthritis is one of the most common conditions plaguing people all over the world. The annoying arthritis symptoms, like joint pain and stiffness, are a result of progressive loss of cartilage as the joint degenerates. These symptoms can put a real damper on people\'s lives, hindering the ability to move, slowing down progress, and making it difficult to accomplish desired activities.\r\n<h2>Why Does Arthritis Even Start in the First Place?</h2>\r\nThere is a reason for the degeneration that is prevalent with arthritis. At some point, the structures of the joint become injured. This injury may have occurred as a traumatic event, such as a sports injury or fall; or, the injury transpired over time, from wear and tear. Either way, the injury to the joint structures, like the ligaments and tendons, causes the joint to move abnormally. As the joint moves abnormally, friction and pressure is placed on the joint structures, which injures and wears them further.\r\n\r\nImagine a door with loose hinges. The door may now scrape on the floor, leaving grooves on the floor, because it moves abnormally. Whatever caused the loose hinge, either wear and tear or something/someone banged into it, the result is the same. The door is now unstable, leading to the abnormal motion, and the new wear on the floor.\r\n\r\nThat same process happens to our joints when the stabilizing joint structures, the tendons and ligaments, are injured. Ligaments become lax once they are injured, and the abnormal motion that takes place begins a cycle that ultimately results in degenerative changes and osteoarthritis.\r\n<h2>Can Joint Motion Be Restored?</h2>\r\nRegenerative Orthopedic therapies, such as Prolotherapy, PRP, and Stem Cells, can restore normal joint motion. The great thing about these treatments is that they are regenerative and restorative. Many other treatments, such as pain medications, only chase arthritic symptoms. They do not repair the underlying problem. These regenerative therapies do! Regenerative Orthopedics repair the underlying ligament and tendon injury, restore the abnormal joint motion, and stop the degenerative cycle.\r\n<h2>What Does the Research Say about Regenerative Orthopedics as An Alternative Arthritis Treatment?</h2>\r\nStudies show that Regenerative Orthopedics are beneficial alternative arthritis treatments that can bring a significant amount of pain relief and healing in degenerated joints.\r\n<h2>Here\'s what some of the studies say:</h2>\r\nResearchers analyzed 1093 patients for the efficacy and safety of intra-articular injections of platelet-rich plasma (PRP) and mesenchymal stem cells (MSCs) in the treatments of knee arthritis. They noted \"beneficial clinical outcomes by means of lowered pain perception and increased physical functionality; therefore, the quality of life in KOA (knee osteoarthritis) patients had been significantly improved.\"1\r\n\r\n<em>PRP and Stem Cell as an Alternative Arthritis Treatment</em>\r\n\r\nThis study documented in the journal, <em>Cureus</em>, looked at 30 published medical articles and found that PRP and stem cell injections are both effective at repairing tissue, providing pain relief, and restoring function in patients with mild to moderate knee arthritis. Stem Cell injections are more effective at repair in more severely degenerated knees. Both treatments are well tolerated without serious adverse effects observed. Additionally, this study concluded that regenerative medicine injections show superior results when compared to hyaluronic acid injections. (1)\r\n<h2>Prolotherapy as an Alternative Arthritis Treatment</h2>\r\nProlotherapy has been shown to be a successful treatment option for a variety of musculoskeletal conditions. Physicians commonly choose intra-articular injections, such as cortisone injections, once over-the-counter medications, topicals, and other treatments fail. However, cortisone treatments increase cartilage loss and make the arthritic joint worse.(2)\r\n<h2>Is Prolotherapy an Effective Alternative?</h2>\r\nResearchers in the medical journal <em>Orthopedic Reviews</em> say, \"Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy. The results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment. <strong>Prolotherapy appears to be a safe and effective alternative</strong> to physical therapy, surgery, NSAIDs, steroids, and opiates when they fail to provide clinical relief.\"(3)\r\n\r\nA 2023 Indonesian study concluded, \"Prolotherapy effectively improves functional outcomes in all stages of knee osteoarthritis.\"(4)\r\n\r\nAll of the above studies reviewed the effects of Regenerative Orthopedic treatments on knees. <strong>What about other joints?</strong> Hauser et al reviewed 32 research studies to determine the efficacy of dextrose prolotherapy in chronic musculoskeletal pain. In other words, this team reviewed the effects of regenerative treatment on multiple joint conditions.\r\n<h2>What were the results?</h2>\r\nThe Hauser et al study demonstrated the effectiveness of Prolotherapy on multiple joints and various types of joint conditions and found, \"Overall, dextrose prolotherapy has been demonstrated to be efficacious and should be considered as a treatment for pain and dysfunction associated with chronic musculoskeletal conditions, particularly tendinopathies and <strong>osteoarthritis</strong>.\"(5)\r\n<h2>Regenerative Orthopedics at OrthoRegen®</h2>\r\nAt OrthoRegen,® we have been a leader in regenerative treatments, helping arthritis sufferers get pain relief and restoration of joint function. We have many years of experience in providing regenerative treatments including Prolotherapy, Platelet Rich Plasma, and the Gold Standard in Stem Cell Therapy.  These treatments have helped thousands of patients with the restoration of their joint integrity. If arthritis is affecting your knees, back, shoulders, hips, or other joints, please give us a call and make an appointment soon, so you can get back to the activities you love.\r\n<ul>\r\n 	<li>Ip, Hoi Leng, et al. \"Regenerative medicine for knee osteoarthritis–the efficacy and safety of intra-articular platelet-rich plasma and mesenchymal Stem cells injections: a literature review.\" <em>Cureus</em>9 (2020).</li>\r\n 	<li>Zeng C, Lane NE, Hunter DJ, et al. Intra-articular corticosteroids and the risk of knee osteoarthritis progression: results from the Osteoarthritis Initiative. <em>Osteoarthr Cartil</em>. 2019;27(6):855-862.</li>\r\n 	<li>Zhao, Alex Tang, et al. \"A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee.\" <em>Orthopedic Reviews</em>4 (2022).</li>\r\n 	<li>Waluyo, Y., Artika, S. R. ., Wahyuni, I. N. ., Adnan, E. ., Budu, &amp; Bukhari, A. . (2023). Functional outcome in knee osteoarthritis after dextrose prolotherapy intervention: A severity-based pilot study. JKKI : Jurnal Kedokteran Dan Kesehatan Indonesia, 14(1), 47–54. <a href=\"https://doi.org/10.20885/JKKI.Vol14.Iss1.art8\">https://doi.org/10.20885/JKKI.Vol14.Iss1.art8</a></li>\r\n 	<li>Hauser, Ross A., et al. \"A systematic review of dextrose prolotherapy for chronic musculoskeletal pain.\" <em>Clinical medicine insights: arthritis and musculoskeletal disorders</em> 9 (2016): CMAMD-S39160.</li>\r\n</ul>','Alternative Treatment for Arthritis','','inherit','closed','closed','','5783-revision-v1','','','2023-05-23 03:49:21','2023-05-23 03:49:21','',5783,'https://www.drfields.com/?p=5789',0,'revision','',0),(5790,8,'2023-05-23 03:50:12','2023-05-23 03:50:12','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/alternative-treatment-for-arthritis/\">Alternative Treatment for Arthritis</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/chronic-pain-management/\">Chronic Pain Management</a></li>\r\n 	<li><a href=\"/articles/meniscus-tear-treatment/\">Meniscus Tear Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/neck-pain-treatment/\">Neck Pain Treatment</a></li>\r\n 	<li><a href=\"/uncategorized/knee-replacement-failure/\">Knee Replacement Failure</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/best-treatments-for-low-back-pain/\">Best Treatments For Low Back Pain</a></li>\r\n 	<li><a href=\"https://www.drfields.com/uncategorized/arthritis-knee-treatment/\">Arthritis Knee Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-05-23 03:50:12','2023-05-23 03:50:12','',2109,'https://www.drfields.com/?p=5790',0,'revision','',0),(5792,9,'2023-05-26 21:39:35','2023-05-26 21:39:35','<img class=\"alignright wp-image-5784\" src=\"https://www.drfields.com/wp-content/uploads/2023/05/Arthritis.-Orthopedic-Reviews-500x419.png\" alt=\"Arthritis. Orthopedic Reviews\" width=\"300\" height=\"251\" />\n<h2>Regenerative Orthopedics: Alternative Treatments for Arthritis</h2>\nArthritis is one of the most common conditions plaguing people worldwide. The annoying arthritis symptoms, like joint pain and stiffness, are a result of the progressive loss of cartilage as the joint degenerates. These symptoms can put a real damper on people\'s lives, hindering the ability to move, slowing down progress, and making it difficult to accomplish desired activities. When common treatments fail, what are alternative treatments for arthritis?\n\nRegenerative Orthopedics are effective arthritis treatments. At OrthoRegen, we have seen arthritis sufferers finally get the relief they seek by choosing Prolotherapy, Platelet Rich Plasma, and the Gold Standard in Stem Cell Therapy.\n<h2>Why Does Arthritis Even Start in the First Place?</h2>\nThere is a reason for the degeneration that is prevalent with arthritis. At some point, the structures of the joint become injured. This injury may have occurred as a traumatic event, such as a sports injury or fall.  Or, the injury transpired over time from wear and tear. Either way, the damage to the joint structures, like the ligaments and tendons, causes the joint to move abnormally. As the joint moves abnormally, friction and pressure are placed on the joint structures, which injures and wears them further.\n\nImagine a door with loose hinges. The door may now scrape on the floor, leaving grooves on it because the door moves abnormally. Whatever caused the loose hinge, either wear and tear or something/someone banged into it; the result is the same. The door is now unstable, leading to abnormal motion and new wear on the floor.\n\nThat same process happens to our joints when the stabilizing joint structures, the tendons, and ligaments, are injured. Ligaments become lax once they are injured, and the abnormal motion that takes place begins a cycle that ultimately results in degenerative changes and osteoarthritis.\n<h2>Can Joint Motion Be Restored?</h2>\nRegenerative Orthopedic therapies, such as Prolotherapy, PRP, and Stem Cells, can restore normal joint motion. The great thing about these treatments is that they are regenerative and restorative. Many other treatments, such as pain medications, only chase arthritic symptoms. They do not repair the underlying problem. These regenerative therapies do! Regenerative Orthopedics repairs the underlying ligament and tendon injury, restore the abnormal joint motion, and stop the degenerative cycle.\n<h2>What Does the Research Say about Regenerative Orthopedics as An Alternative Arthritis Treatment?</h2>\nStudies show that Regenerative Orthopedics are beneficial alternative arthritis treatments that can bring significant pain relief and healing in degenerated joints.\n<h3>Here\'s what some of the studies say:</h3>\nResearchers analyzed 1093 patients for the efficacy and safety of intra-articular injections of platelet-rich plasma (PRP) and mesenchymal stem cells (MSCs) in treating knee arthritis. They noted \"beneficial clinical outcomes by means of lowered pain perception and increased physical functionality; therefore, the quality of life in KOA (knee osteoarthritis) patients had been significantly improved.\"1\n<h4><em>PRP and Stem Cells as an Alternative Arthritis Treatment</em></h4>\nThis study, documented in the journal, <em>Cureus</em>, looked at 30 published medical articles and found that PRP and stem cell injections are effective at repairing tissue, providing pain relief, and restoring function in patients with mild to moderate knee arthritis. Stem Cell injections are more effective at repair in more severely degenerated knees. Both treatments are well tolerated without serious adverse effects observed. Additionally, this study concluded that regenerative medicine injections show superior results compared to hyaluronic acid injections. (1)\n<h4><em>Prolotherapy as an Alternative Arthritis Treatment</em></h4>\nProlotherapy is a successful treatment option for various musculoskeletal conditions. Physicians commonly choose intra-articular injections, such as cortisone injections, once over-the-counter medications, topicals, and other treatments fail. However, cortisone treatments increase cartilage loss and make the arthritic joint worse. (2)\n<h2>Is Prolotherapy an Effective Alternative?</h2>\nResearchers in the medical journal <em>Orthopedic Reviews</em> say, \"Numerous clinical trials show significant improvement of osteoarthritic knee pain without any significant side effects reported following the use of prolotherapy. The results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment. <strong>Prolotherapy appears to be a safe and effective alternative</strong> to physical therapy, surgery, NSAIDs, steroids, and opiates when they fail to provide clinical relief.\"(3)\n\nA 2023 Indonesian study concluded, \"Prolotherapy effectively improves functional outcomes in all stages of knee osteoarthritis.\"(4)\n\nAll of the above studies reviewed the effects of Regenerative Orthopedic treatments on knees. <strong>What about other joints?</strong> Hauser et al. reviewed 32 research studies to determine the efficacy of dextrose prolotherapy in chronic musculoskeletal pain. In other words, this team reviewed the effects of regenerative treatment on multiple joint conditions.\n<h4>What were the results?</h4>\nThe Hauser et al. study demonstrated the effectiveness of Prolotherapy on multiple joints and various types of joint conditions and found, \"Overall, dextrose prolotherapy has been demonstrated to be efficacious and should be considered as a treatment for pain and dysfunction associated with chronic musculoskeletal conditions, particularly tendinopathies, and <strong>osteoarthritis</strong>.\"(5)\n<h2>Regenerative Orthopedics at OrthoRegen®</h2>\nAt OrthoRegen,® we have been a leader in regenerative treatments, helping arthritis sufferers get pain relief and restore joint function. We have many years of experience in providing regenerative treatments as alternative treatments for arthritis including Prolotherapy, Platelet Rich Plasma, and the Gold Standard in Stem Cell Therapy.  These treatments have helped thousands of patients restore their joint integrity. If arthritis is affecting your knees, back, shoulders, hips, or other joints, please give us a call and make an appointment soon, so you can get back to the activities you love.\n<ul>\n 	<li>Ip, Hoi Leng, et al. \"Regenerative medicine for knee osteoarthritis–the efficacy and safety of intra-articular platelet-rich plasma and mesenchymal Stem cells injections: a literature review.\" <em>Cureus</em>9 (2020).</li>\n 	<li>Zeng C, Lane NE, Hunter DJ, et al. Intra-articular corticosteroids and the risk of knee osteoarthritis progression: results from the Osteoarthritis Initiative. <em>Osteoarthr Cartil</em>. 2019;27(6):855-862.</li>\n 	<li>Zhao, Alex Tang, et al. \"A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee.\" <em>Orthopedic Reviews</em>4 (2022).</li>\n 	<li>Waluyo, Y., Artika, S. R. ., Wahyuni, I. N. ., Adnan, E. ., Budu, &amp; Bukhari, A. . (2023). Functional outcome in knee osteoarthritis after dextrose prolotherapy intervention: A severity-based pilot study. JKKI : Jurnal Kedokteran Dan Kesehatan Indonesia, 14(1), 47–54. <a href=\"https://doi.org/10.20885/JKKI.Vol14.Iss1.art8\">https://doi.org/10.20885/JKKI.Vol14.Iss1.art8</a></li>\n 	<li>Hauser, Ross A., et al. \"A systematic review of dextrose prolotherapy for chronic musculoskeletal pain.\" <em>Clinical medicine insights: arthritis and musculoskeletal disorders</em> 9 (2016): CMAMD-S39160.</li>\n</ul>','Alternative Treatments for Arthritis','','inherit','closed','closed','','5783-autosave-v1','','','2023-05-26 21:39:35','2023-05-26 21:39:35','',5783,'https://www.drfields.com/?p=5792',0,'revision','',0),(5793,9,'2023-05-26 21:39:48','2023-05-26 21:39:48','<img class=\"alignright wp-image-5784\" src=\"https://www.drfields.com/wp-content/uploads/2023/05/Arthritis.-Orthopedic-Reviews-500x419.png\" alt=\"Arthritis. Orthopedic Reviews\" width=\"300\" height=\"251\" />\r\n<h2>Regenerative Orthopedics: Alternative Treatments for Arthritis</h2>\r\nArthritis is one of the most common conditions plaguing people worldwide. The annoying arthritis symptoms, like joint pain and stiffness, are a result of the progressive loss of cartilage as the joint degenerates. These symptoms can put a real damper on people\'s lives, hindering the ability to move, slowing down progress, and making it difficult to accomplish desired activities. When common treatments fail, what are alternative treatments for arthritis?\r\n\r\nRegenerative Orthopedics are effective arthritis treatments. At OrthoRegen,® we have seen arthritis sufferers finally get the relief they seek by choosing Prolotherapy, Platelet Rich Plasma, and the Gold Standard in Stem Cell Therapy.\r\n<h2>Why Does Arthritis Even Start in the First Place?</h2>\r\nThere is a reason for the degeneration that is prevalent with arthritis. At some point, the structures of the joint become injured. This injury may have occurred as a traumatic event, such as a sports injury or fall.  Or, the injury transpired over time from wear and tear. Either way, the damage to the joint structures, like the ligaments and tendons, causes the joint to move abnormally. As the joint moves abnormally, friction and pressure are placed on the joint structures, which injures and wears them further.\r\n\r\nImagine a door with loose hinges. The door may now scrape on the floor, leaving grooves on it because the door moves abnormally. Whatever caused the loose hinge, either wear and tear or something/someone banged into it; the result is the same. The door is now unstable, leading to abnormal motion and new wear on the floor.\r\n\r\nThat same process happens to our joints when the stabilizing joint structures, the tendons, and ligaments, are injured. Ligaments become lax once they are injured, and the abnormal motion that takes place begins a cycle that ultimately results in degenerative changes and osteoarthritis.\r\n<h2>Can Joint Motion Be Restored?</h2>\r\nRegenerative Orthopedic therapies, such as Prolotherapy, PRP, and Stem Cells, can restore normal joint motion. The great thing about these treatments is that they are regenerative and restorative. Many other treatments, such as pain medications, only chase arthritic symptoms. They do not repair the underlying problem. These regenerative therapies do! Regenerative Orthopedics repairs the underlying ligament and tendon injury, restore the abnormal joint motion, and stop the degenerative cycle.\r\n<h2>What Does the Research Say about Regenerative Orthopedics as An Alternative Arthritis Treatment?</h2>\r\nStudies show that Regenerative Orthopedics are beneficial alternative arthritis treatments that can bring significant pain relief and healing in degenerated joints.\r\n<h3>Here\'s what some of the studies say:</h3>\r\nResearchers analyzed 1093 patients for the efficacy and safety of intra-articular injections of platelet-rich plasma (PRP) and mesenchymal stem cells (MSCs) in treating knee arthritis. They noted \"beneficial clinical outcomes by means of lowered pain perception and increased physical functionality; therefore, the quality of life in KOA (knee osteoarthritis) patients had been significantly improved.\"1\r\n<h4><em>PRP and Stem Cells as an Alternative Arthritis Treatment</em></h4>\r\nThis study, documented in the journal, <em>Cureus</em>, looked at 30 published medical articles and found that PRP and stem cell injections are effective at repairing tissue, providing pain relief, and restoring function in patients with mild to moderate knee arthritis. Stem Cell injections are more effective at repair in more severely degenerated knees. Both treatments are well tolerated without serious adverse effects observed. Additionally, this study concluded that regenerative medicine injections show superior results compared to hyaluronic acid injections. (1)\r\n<h4><em>Prolotherapy as an Alternative Arthritis Treatment</em></h4>\r\nProlotherapy is a successful treatment option for various musculoskeletal conditions. Physicians commonly choose intra-articular injections, such as cortisone injections, once over-the-counter medications, topicals, and other treatments fail. However, cortisone treatments increase cartilage loss and make the arthritic joint worse. (2)\r\n<h2>Is Prolotherapy an Effective Alternative?</h2>\r\nResearchers in the medical journal <em>Orthopedic Reviews</em> say, \"Numerous clinical trials show significant improvement of osteoarthritic knee pain without any significant side effects reported following the use of prolotherapy. The results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment. <strong>Prolotherapy appears to be a safe and effective alternative</strong> to physical therapy, surgery, NSAIDs, steroids, and opiates when they fail to provide clinical relief.\"(3)\r\n\r\nA 2023 Indonesian study concluded, \"Prolotherapy effectively improves functional outcomes in all stages of knee osteoarthritis.\"(4)\r\n\r\nAll of the above studies reviewed the effects of Regenerative Orthopedic treatments on knees. <strong>What about other joints?</strong> Hauser et al. reviewed 32 research studies to determine the efficacy of dextrose prolotherapy in chronic musculoskeletal pain. In other words, this team reviewed the effects of regenerative treatment on multiple joint conditions.\r\n<h4>What were the results?</h4>\r\nThe Hauser et al. study demonstrated the effectiveness of Prolotherapy on multiple joints and various types of joint conditions and found, \"Overall, dextrose prolotherapy has been demonstrated to be efficacious and should be considered as a treatment for pain and dysfunction associated with chronic musculoskeletal conditions, particularly tendinopathies, and <strong>osteoarthritis</strong>.\"(5)\r\n<h2>Regenerative Orthopedics at OrthoRegen®</h2>\r\nAt OrthoRegen,® we have been a leader in regenerative treatments, helping arthritis sufferers get pain relief and restore joint function. We have many years of experience in providing regenerative treatments as alternative treatments for arthritis including Prolotherapy, Platelet Rich Plasma, and the Gold Standard in Stem Cell Therapy.  These treatments have helped thousands of patients restore their joint integrity. If arthritis is affecting your knees, back, shoulders, hips, or other joints, please give us a call and make an appointment soon, so you can get back to the activities you love.\r\n<ul>\r\n 	<li>Ip, Hoi Leng, et al. \"Regenerative medicine for knee osteoarthritis–the efficacy and safety of intra-articular platelet-rich plasma and mesenchymal Stem cells injections: a literature review.\" <em>Cureus</em>9 (2020).</li>\r\n 	<li>Zeng C, Lane NE, Hunter DJ, et al. Intra-articular corticosteroids and the risk of knee osteoarthritis progression: results from the Osteoarthritis Initiative. <em>Osteoarthr Cartil</em>. 2019;27(6):855-862.</li>\r\n 	<li>Zhao, Alex Tang, et al. \"A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee.\" <em>Orthopedic Reviews</em>4 (2022).</li>\r\n 	<li>Waluyo, Y., Artika, S. R. ., Wahyuni, I. N. ., Adnan, E. ., Budu, &amp; Bukhari, A. . (2023). Functional outcome in knee osteoarthritis after dextrose prolotherapy intervention: A severity-based pilot study. JKKI : Jurnal Kedokteran Dan Kesehatan Indonesia, 14(1), 47–54. <a href=\"https://doi.org/10.20885/JKKI.Vol14.Iss1.art8\">https://doi.org/10.20885/JKKI.Vol14.Iss1.art8</a></li>\r\n 	<li>Hauser, Ross A., et al. \"A systematic review of dextrose prolotherapy for chronic musculoskeletal pain.\" <em>Clinical medicine insights: arthritis and musculoskeletal disorders</em> 9 (2016): CMAMD-S39160.</li>\r\n</ul>','Alternative Treatments for Arthritis','','inherit','closed','closed','','5783-revision-v1','','','2023-05-26 21:39:48','2023-05-26 21:39:48','',5783,'https://www.drfields.com/?p=5793',0,'revision','',0),(5795,8,'2023-06-08 14:49:25','2023-06-08 14:49:25','<h2><img class=\"alignright wp-image-5796\" src=\"https://www.drfields.com/wp-content/uploads/2023/06/Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-500x419.png\" alt=\"Tennis Elbow Treatment\" width=\"365\" height=\"305\" />Tennis Elbow Treatment</h2>\r\nYou don\'t have to be a tennis player to have tennis elbow. Tennis elbow is a condition caused by overuse. Sufferers might be painters, writers, guitar players, or anyone who does an activity requiring repetitive use of the arm and elbow. In this article, we\'ll delve into tennis elbow as well as tennis elbow treatment.\r\n\r\nTennis elbow pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult. Even simple tasks like turning a doorknob or picking up, holding, and gripping objects.\r\n\r\nOver-the-counter pain medications, NSAIDs, cortisone injections, bracing, taping, physical therapy, and massage, may work to bring some relief. But when these fail to achieve the desired relief, and your elbow continues to hurt, it is time to seek reparative, regenerative treatments like Regenerative Orthopedics.\r\n<h2>Lateral Epicondylitis</h2>\r\nThe medical terminology for tennis elbow is lateral epicondylitis. The \"itis\" at the end of this word suggests inflammation of the tendon where it attaches to the bony prominence of the elbow (the lateral epicondyle). However, in tennis elbow, there is not always evidence of inflammation.  And because of that, there is some controversy about the treatment for the condition. The <em>Journal of Shoulder and Elbow Surgery says this</em>:\r\n<ul>\r\n 	<li>“As orthopaedic surgeons, we are besieged by myths that guide our treatment of lateral epicondylitis, or “tennis elbow.” This extends from the term used to describe the condition to the nonoperative and operative treatments as well. The term epicondylitis suggests an inflammatory cause; however, in all but 1 publication examining pathologic specimens of patients operated on for this condition, <strong>no evidence of acute or chronic inflammation is found</strong>.\"(<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/10543604\">1</a>)</li>\r\n</ul>\r\nThe Open Access Journal of Sports Medicine also notes the controversy:\r\n<ul>\r\n 	<li>“Although most cases are self-limiting over several years, controversy exists regarding the best treatment strategy for chronic lateral epicondylitis.”(2)</li>\r\n</ul>\r\n<h2>Tendinosis Rather Than Tendonitis</h2>\r\nWhen elbow pain is chronic, and has lasted for an extended amount of time, it is likely that the problem is tendinosis, a condition of tendon degeneration.\r\n\r\n<strong><em>What does all of that mean? What is tendinopathy, tendonitis, or tendinosis?</em></strong>\r\n\r\nTendinopathy is a broad term often used to describe any problem with a tendon.\r\n\r\nTendonitis refers to inflammation of the tendon, and is actually a less common cause of tendon pain than you might think.\r\n\r\nTendinosis is the breakdown (degeneration) of the collagen fibers in the tendon. It happens slowly and is often the result of tendon overuse.\r\n\r\nTendinosis is therefore the chronic non-inflammatory degeneration of a tendon. The condition may develop as a result of chronic tendonitis or due to repetitive strain-injuries to a tendon without adequate time to heal. Tendinosis is a more common cause of tendon pain. Since inflammation is not the issue, the problem does not respond well to anti-inflammatories.<strong> </strong>\r\n<h2>Tennis Elbow: An Overuse Injury</h2>\r\nOveruse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the soft tissue structures of the elbow. Using poor or improper technique while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.\r\n<h2>Instability May Be Behind Tennis Elbow</h2>\r\nChronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for alleviation of the pain.\r\n\r\nIt is possible that elbow pain is a result of injury of the elbow ligaments. When elbow ligaments are involved, they may be frayed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint. When a tendon is injured, there is often ligament involvement as well, and these soft tissue structures need to be repaired to stop the problem.\r\n\r\nWhen the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability, the tendons will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of injury to the tendon.<strong> </strong>\r\n<h2>Is Bracing a Tennis Elbow Treatment that Helps?<strong> </strong></h2>\r\n<em><u>Bracing</u></em>\r\n\r\nThe journal <em>Prosthetics and Orthotics International</em> (3) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.\r\n\r\nIn fact, researchers have concluded that braces, sleeves, tapes, and elbow bands may just be a waste of money, and that they probably only provide placebo affects.(4)\r\n<h2><em><u>What About Surgery as a Tennis Elbow Treatment?</u></em></h2>\r\n<strong>The <em>US National Institutes of Health Clinical Trial</em></strong><strong> website</strong><strong> says: “<em>Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </em>(5)</strong>\r\n\r\n<em>The British Journal of Sports Medicine </em>has an article entitled:<strong> “Time to put down the scalpel?”</strong> It says,“Our published review highlighted the importance of sham surgery in randomized controlled surgical trials including those in tendinopathy. Compared with using a non-surgical control group, sham surgery equalizes the placebo effect of surgery and gives more realistic insights into the effectiveness of the actual surgical procedure in question.\"(6)<strong> </strong>\r\n<h2>There’s Another Way and It Does Not Require Surgery!</h2>\r\n<h3><em>Regenerative Orthopedics: Tennis Elbow Treatment</em></h3>\r\nRegenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow.\r\n\r\nProlotherapy is an injection technique that works to regenerate the degenerated tendon and ligaments. The injection of simple dextrose mimics the natural healing response and stimulates healing growth factors to repair the tissue.\r\n<h2>What Does the Research Say About Prolotherapy?</h2>\r\n<ul>\r\n 	<li>Researchers published a study in the <em>American Journal of Physical Medicine &amp; Rehabilitation </em>that evaluated Prolotherapy for tennis elbow. They concluded: <em>“Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group” </em>(7).</li>\r\n</ul>\r\n<ul>\r\n 	<li>A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (8)</li>\r\n</ul>\r\n<ul>\r\n 	<li>Archives of Physical Medicine and Rehabilitation concluded: “Hypertonic dextrose prolotherapy is superior to (placebo) at 12 weeks for decreasing pain intensity and functioning by margins that meet criteria for clinical relevance in the treatment of lateral elbow tendinosis.\" (9)<strong> </strong></li>\r\n</ul>\r\nProlotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. It works because it addresses the problem by repairing the injured soft tissue. And it works because it reduces or eliminates the symptoms.\r\n\r\nProlotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons. These therapies stabilize the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow. Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.\r\n\r\nIf tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.\r\n<h2><strong>References</strong></h2>\r\n(1) Boyer MI. Lateral tennis elbow:” Is there any science out there?.”Journal of Shoulder and Elbow Surgery. 1999;8(5):481-91.\r\n\r\n(2) Lai WC, Erickson BJ, Mlynarek RA, Wang D. Chronic lateral epicondylitis: challenges and solutions. Open Access Journal of Sports Medicine. 2018;9:243.\r\n\r\n(3) Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.\r\n\r\n(4) Au IP, Fan PC, Lee WY, Leong MW, Tang OY, An WW, Cheung RT. Effects of Kinesio tape in individuals with lateral epicondylitis: a deceptive crossover trial. Physiotherapy Theory and Practice. 2017 Dec 2;33(12):914-9.\r\n\r\n(5) Kroslak M, Murrell GAC. Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.\r\n\r\n(6) Millar, Neal L., George AC Murrell, and Paul Kirwan. \"Time to put down the scalpel? The role of surgery in tendinopathy.\" British Journal of Sports Medicine 54.8 (2020): 441-442.\r\n\r\n(7) Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.\r\n\r\n(8) Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow. J Korean Acad Rehabil Med. 2002;26:764–8.\r\n\r\n(9) Zhu M, Rabago D, Chung VC, Reeves KD, Wong SY, Sit RW. Effects of Hypertonic Dextrose Injection (Prolotherapy) in Lateral Elbow Tendinosis: A Systematic Review and Meta-analysis. Archives of Physical Medicine and Rehabilitation. 2022 Feb 28.','Tennis Elbow Treatment','','publish','closed','open','','tennis-elbow-treatment','','','2023-06-09 21:18:33','2023-06-09 21:18:33','',0,'https://www.drfields.com/?p=5795',0,'post','',0),(5796,8,'2023-06-08 14:48:43','2023-06-08 14:48:43','','Tennis Elbow Treatment','','inherit','closed','closed','','tennis-elbow-american-journal-of-phy-med-rehab-1','','','2023-06-08 14:49:09','2023-06-08 14:49:09','',5795,'https://www.drfields.com/wp-content/uploads/2023/06/Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1.png',0,'attachment','image/png',0),(5797,8,'2023-06-08 14:49:25','2023-06-08 14:49:25','<img class=\"alignright wp-image-5796\" src=\"https://www.drfields.com/wp-content/uploads/2023/06/Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-500x419.png\" alt=\"Tennis Elbow Treatment\" width=\"300\" height=\"251\" />You don\'t have to be a tennis player to have tennis elbow. Tennis elbow is a condition caused by overuse. Sufferers might be painters, writers, guitar players, or anyone who does an activity requiring repetitive use of the arm and elbow.\r\n\r\nTennis elbow pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult. Even simple tasks like turning a doorknob or picking up, holding, and gripping objects.\r\n\r\nOver-the-counter pain medications, NSAIDs, cortisone injections, bracing, taping, physical therapy, and massage, may work to bring some relief. But when these fail to achieve the desired relief, and your elbow continues to hurt, it is time to seek reparative, regenerative treatments like Regenerative Orthopedics.\r\n<h2>Lateral Epicondylitis</h2>\r\nThe medical terminology for tennis elbow is lateral epicondylitis. The \"itis\" at the end of this word suggests inflammation of the tendon where it attaches to the bony prominence of the elbow (the lateral epicondyle). However, in tennis elbow, there is not always evidence of inflammation.  And because of that, there is some controversy about the treatment for the condition. The <em>Journal of Shoulder and Elbow Surgery says this</em>:\r\n<ul>\r\n 	<li>“As orthopaedic surgeons, we are besieged by myths that guide our treatment of lateral epicondylitis, or “tennis elbow.” This extends from the term used to describe the condition to the nonoperative and operative treatments as well. The term epicondylitis suggests an inflammatory cause; however, in all but 1 publication examining pathologic specimens of patients operated on for this condition, <strong>no evidence of acute or chronic inflammation is found</strong>.\"(<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/10543604\">1</a>)</li>\r\n</ul>\r\nThe Open Access Journal of Sports Medicine also notes the controversy:\r\n<ul>\r\n 	<li>“Although most cases are self-limiting over several years, controversy exists regarding the best treatment strategy for chronic lateral epicondylitis.”(2)</li>\r\n</ul>\r\n<h2>Tendinosis Rather Than Tendonitis</h2>\r\nWhen elbow pain is chronic, and has lasted for an extended amount of time, it is likely that the problem is tendinosis, a condition of tendon degeneration.\r\n<h2>What does all of that mean? What is tendinopathy, tendonitis, or tendinosis?</h2>\r\nTendinopathy is a broad term often used to describe any problem with a tendon.\r\n\r\nTendonitis refers to inflammation of the tendon, and is actually a less common cause of tendon pain than you might think.\r\n\r\nTendinosis is the breakdown (degeneration) of the collagen fibers in the tendon. It happens slowly and is often the result of tendon overuse.\r\n\r\nTendinosis is therefore the chronic non-inflammatory degeneration of a tendon. Tendinosis may develop as a result of chronic tendonitis or due to repetitive strain-injuries to a tendon without adequate time to heal. Tendinosis is a more common cause of tendon pain. Since inflammation is not the issue, the problem does not respond well to anti-inflammatories.<strong> </strong>\r\n\r\nTennis Elbow: An Overuse Injury\r\n\r\nOveruse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the soft tissue structures of the elbow. Using poor or improper technique while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.\r\n<h2>Instability May Be Behind Tennis Elbow</h2>\r\nChronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for alleviation of the pain.\r\n\r\nIt is possible that elbow pain is a result of injury of the elbow ligaments. When elbow ligaments are involved, they may be frayed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint. When a tendon is injured, there is often ligament involvement as well, and these soft tissue structures need to be repaired to stop the problem.\r\n\r\nWhen the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability, the tendons will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of injury to the tendon.<strong> </strong>\r\n<h2>Is Bracing a Tennis Elbow Treatment that Helps?<strong> </strong></h2>\r\n<em><u>Bracing</u></em>\r\n\r\nThe journal <em>Prosthetics and Orthotics International</em> (3) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.\r\n\r\nIn fact, researchers have concluded that braces, sleeves, tapes, and elbow bands may just be a waste of money, and that they probably only provide placebo affects.(4)\r\n\r\n<em><u>What About Surgery as a Tennis Elbow Treatment?</u></em>\r\n\r\n<strong>The <em>US National Institutes of Health Clinical Trial</em></strong><strong> website</strong><strong> says: “<em>Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </em>(5)</strong>\r\n\r\n<em>The British Journal of Sports Medicine </em>has an article entitled: “Time to put down the scalpel?” It says,“Our published review highlighted the importance of sham surgery in randomized controlled surgical trials including those in tendinopathy. Compared with using a non-surgical control group, sham surgery equalizes the placebo effect of surgery and gives more realistic insights into the effectiveness of the actual surgical procedure in question.\"(6)<strong> </strong>\r\n\r\nThere’s Another Way and It Does Not Require Surgery!\r\n\r\nRegenerative Orthopedics: Tennis Elbow Treatment\r\n\r\nRegenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow.\r\n\r\nProlotherapy is an injection technique that works to regenerate the degenerated tendon and ligaments. The injection of simple dextrose mimics the natural healing response and stimulates healing growth factors to repair the tissue.\r\n<h2>What Does the Research Say About Prolotherapy?</h2>\r\n<ul>\r\n 	<li>Researchers published a study in the <em>American Journal of Physical Medicine &amp; Rehabilitation </em>that evaluated Prolotherapy for tennis elbow. They concluded: <em>“Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group” </em>(7).</li>\r\n</ul>\r\n<ul>\r\n 	<li>A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (8)</li>\r\n</ul>\r\n<ul>\r\n 	<li>Archives of Physical Medicine and Rehabilitation concluded: “Hypertonic dextrose prolotherapy is superior to (placebo) at 12 weeks for decreasing pain intensity and functioning by margins that meet criteria for clinical relevance in the treatment of lateral elbow tendinosis.\" (9)<strong> </strong></li>\r\n</ul>\r\nProlotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. It works because it addresses the problem by repairing the injured soft tissue. And it works because it reduces or eliminates the symptoms.\r\n\r\nProlotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons. These therapies stabilize the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow. Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.\r\n\r\nIf tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.\r\n\r\n<strong>References</strong>\r\n<ul>\r\n 	<li>Boyer MI. Lateral tennis elbow:” Is there any science out there?.”Journal of Shoulder and Elbow Surgery. 1999;8(5):481-91.</li>\r\n 	<li>Lai WC, Erickson BJ, Mlynarek RA, Wang D. Chronic lateral epicondylitis: challenges and solutions. Open access journal of sports medicine. 2018;9:243.</li>\r\n 	<li>Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.</li>\r\n 	<li>Au IP, Fan PC, Lee WY, Leong MW, Tang OY, An WW, Cheung RT. Effects of Kinesio tape in individuals with lateral epicondylitis: a deceptive crossover trial. Physiotherapy theory and practice. 2017 Dec 2;33(12):914-9.</li>\r\n 	<li>Kroslak M, Murrell GAC. Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.</li>\r\n 	<li>Millar, Neal L., George AC Murrell, and Paul Kirwan. \"Time to put down the scalpel? The role of surgery in tendinopathy.\" British Journal of Sports Medicine 54.8 (2020): 441-442.</li>\r\n 	<li>Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.</li>\r\n 	<li>Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow. J Korean Acad Rehabil Med. 2002;26:764–8.</li>\r\n 	<li>Zhu M, Rabago D, Chung VC, Reeves KD, Wong SY, Sit RW. Effects of Hypertonic Dextrose Injection (Prolotherapy) in Lateral Elbow Tendinosis: A Systematic Review and Meta-analysis. Archives of Physical Medicine and Rehabilitation. 2022 Feb 28.</li>\r\n</ul>','Tennis Elbow Treatment','','inherit','closed','closed','','5795-revision-v1','','','2023-06-08 14:49:25','2023-06-08 14:49:25','',5795,'https://www.drfields.com/?p=5797',0,'revision','',0),(5798,8,'2023-06-08 14:52:38','2023-06-08 14:52:38','<h2><img class=\"alignright wp-image-5799\" src=\"https://www.drfields.com/wp-content/uploads/2023/06/Hip-Arthritis-500x419.png\" alt=\"Hip Arthritis Treatment\" width=\"300\" height=\"251\" /><span style=\"font-size: 16px;\">Hip Arthritis Treatment</span></h2>\r\nIf you have hip arthritis, there is a good chance you are looking for an alternative to hip replacement. Are you seeking a way to preserve your hip from hip replacement surgery? What is the best hip arthritis treatment?\r\n\r\nFor those who still have good range of motion in their hip, Regenerative Orthopedics may be your alternative to hip replacement. Regenerative Orthopedics is a non-surgical regenerative therapy that includes Prolotherapy, PRP, and Stem Cell Therapy. At OrthoRegen®, we use the Gold Standard in Stem Cell Therapy.\r\n<h2>An Alternative to Hip Replacement Surgery</h2>\r\nOften, hip replacement is chosen because the patient is told they have bone-on-bone arthritis, and hip replacement is the only option. As you read, you will see that hip replacement is not the only option for bone-on-bone arthritis, but Regenerative Orthopedics is practical in many arthritis cases.\r\n\r\nMany people assume that once they get a hip replacement, they will be good to go, and can get back to all the activities they want. This is not always the case. Some people continue to have pain after the replacement.\r\n\r\nAdditionally, it\'s essential to remember that hip replacements do not last forever. If the patient is younger, remember that replacements will wear out after 15-plus years.\r\n\r\nHip replacements may not provide the desired relief sought. Instead, chronic pain and incomplete function after surgery is a possibility. And surgery is permanent. Once surgery is done, it cannot be undone. Fortunately, there is an alternative! Regenerative Orthopedics is an effective hip arthritis treatment that can help get you back to the activities you enjoy.\r\n<h2>Background: The Hip Arthritis Cycle</h2>\r\nThe cycle of hip arthritis begins sometime after an injury occurs to the hip joint. That injury could have been an acute trauma-type injury. Or the damage relates to wear and tear over time. The injury then causes the hip joint to move abnormally. Once the soft tissue, like tendons, ligaments, and even the hip labrum, become injured, worn, and/or weakened, they allow for the hip joint to become unstable. The hip instability then causes further joint injury. The cartilage that lines the hip joint also degenerates, and sclerotic changes can be seen on an x-ray, and arthritis is diagnosed.\r\n\r\nIs the cartilage degeneration causing the pain? Interestingly, cartilage has no nerve endings, so the pain is not coming from the cartilage. Ligaments, however, are highly innervated. They do have nerves. And when injured, can elicit pain. Therefore, the injured, weak ligaments can be the source of joint pain.\r\n<h2>Hip Ligaments and Hip Arthritis</h2>\r\nPeople do not wake up one morning with advanced bone-on-bone hip osteoarthritis. Something did cause it. Bone-on-bone hip osteoarthritis is the end result of continued, prolonged, unrelenting hip joint degeneration due to damaged, loose hip ligaments.\r\n\r\nFortunately, Regenerative Orthopedics treats the weak, injured, and lax ligaments and other soft tissue structures of the hip that are in need of repair. The treatments do not just cover up pain, as pain meds and anti-inflammatories do. Regenerative Orthopedics regenerates and repair the hip.\r\n\r\nThe three main ligaments of the hip, the iliofemoral, pubofemoral, and ischiofemoral ligaments, are very strong. Normally, when these ligaments are healthy, they keep your hip stable. But when they become injured, the hip becomes unstable. With the instability, the hip labrum and other soft tissue begin to tear. And the ball of the hip bone rubs the wrong way and causes the degeneration to continue. Researchers agree about the importance of healthy ligaments in order to have a healthy hip joint.\r\n<h2>Research on How Ligaments Affect the Health of the Hip Joint</h2>\r\nWhen examining why patients continue to have pain after hip surgery, Researchers said this in the Knee Surgery, Sports Traumatology, Arthroscopy journal, \"surgical management for hip disorders should preserve the soft tissue constraints (ligaments) in the hip when possible to maintain normal hip biomechanics.”(1)\r\n<h3><em>How Important Are Hip Ligaments?</em></h3>\r\nPlus, a study in the <em>Journal of Biomechanics</em> explained the importance of hip ligaments while stressing the need to save the ligaments writing, “Laboratory data indicate the hip capsular ligaments prevent an excessive range of motion, may protect the joint against adverse edge loading, and contribute to synovial fluid replenishment at the cartilage surfaces of the joint. However, their repair after joint preserving (hip arthroscopy) or arthroplasty (hip replacement) surgery is not routine.\" (2)\r\n<h3>Bone-On-Bone Is Not the Only Problem to Address with Damaged Joints</h3>\r\nThe researchers stress the importance of preserving the ligaments. Clearly, the bone-on-bone situation is not the only problem that needs to be addressed in the degenerated hip. It is vital to repair the injured ligaments because if not, the problem and the pain can continue. The hip needs to be treated comprehensively.\r\n\r\nA February 2021 paper in the journal <em>International Orthopaedics</em> offers this opinion on the future of surgery: “Orthopedic surgeons are at an exciting crossroads in medicine, where hip biologic therapies are evolving and increasingly available. Time-tested interventions such as arthroplasty have shown good results and still have a major role to play <strong>but newer, regenerative approaches have the potential to effectively delay or reduce the requirement for such invasive procedures.</strong><strong>”</strong> (3)\r\n\r\nThere are certainly times when surgery is needed. However, regenerative treatments are great alternatives in many cases.\r\n<h2>Regenerative Orthopedics: Hip Arthritis Treatment</h2>\r\nLet\'s look at some of the studies and see what they say about the effectiveness of regenerative therapies like Prolotherapy, PRP, and Stem Cell Therapy.\r\n\r\n<strong><em>Prolotherapy</em></strong>\r\n\r\nHauser et al. looked at 61 patients with hip pain, and 95% said their pain decreased after Prolotherapy. (4)\r\n\r\nResearchers in the journal <em>Medical Science Monitor</em> said, “To our best knowledge, this study is the first regarding the effects of an injection method in treating osteoarthritis secondary to developmental dysplasia of the hip. According to our study, Prolotherapy is superior to exercise. Prolotherapy could provide significant improvement for clinical outcomes in developmental dysplasia of the hip and might delay surgery.\" (5)\r\n\r\n<strong><em>PRP</em></strong>\r\n\r\nAs far as PRP, the <em>American Journal of Sports Medicine</em> journal says this: “Results indicated that intra-articular PRP injections offer a significant clinical improvement in patients with hip osteoarthritis without relevant side effects.\" (6)\r\n\r\n<strong><em>Stem Cell Therapy</em></strong>\r\n\r\nAt OrthoRegen®, we may use PRP and Stem Cell Therapy in cases where the hip degeneration is more advanced. We call this the Gold Standard in Stem Cell Therapy because we will use Prolotherapy, PRP, and stem cells to comprehensively treat all of the injured structures of the hip joint.\r\n\r\n<em>Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders</em> shows that stem cells regenerate tissue damage within the osteoarthritic joint and, when used in combination with <strong>Prolotherapy injections</strong>, can repair hip stability. (7)\r\n\r\nAt OrthoRegen, we\'ve had years of experience in regenerative therapies as a hip arthritis treatment. If you are suffering from hip arthritis and are looking for an alternative to hip replacement, please call us. We\'d love to help you stop the arthritis cycle and repair the damaged hip structures so you can return to the activities you love.\r\n\r\n(1) Smith MV, Costic RS, Allaire R, Schilling PL, Sekiya JK. A biomechanical analysis of the soft tissue and osseous constraints of the hip joint. Knee Surgery, Sports Traumatology, Arthroscopy. 2014 Apr 1;22(4):946-52.\r\n\r\n(2) Van Arkel RJ, Amis AA, Jeffers JR. The envelope of passive motion allowed by the capsular ligaments of the hip. Journal of biomechanics. 2015 Nov 5;48(14):3803-9.\r\n\r\n(3) Hevesi M, Jacob G, Shimomura K, Ando W, Nakamura N, Krych AJ. Current hip cartilage regeneration/repair modalities: a scoping review of biologics and surgery. International Orthopaedics. 2020 Sep 10:1-5.\r\n\r\n(4) Hauser RA, Hauser MA. A Retrospective Study on Hackett-Hemwall Dextrose Prolotherapy for Chronic Hip Pain at an Outpatient Charity Clinic in Rural Illinois. Journal of Prolotherapy. 2009;2:76-88.\r\n\r\n(5) Gül D, Orsçelik A, Akpancar S. Treatment of Osteoarthritis Secondary to Developmental Dysplasia of the Hip with Prolotherapy Injection versus a Supervised Progressive Exercise Control. <em>Med Sci Monit</em>. 2020;26:e919166. Published 2020 Feb 11. doi:10.12659/MSM.919166\r\n\r\n(6) Dallari D, Stagni C, Rani N, Sabbioni G, Pelotti P, Torricelli P, Tschon M, Giavaresi G.Ultrasound-Guided Injection of Platelet-Rich Plasma and Hyaluronic Acid, Separately and in Combination, for Hip Osteoarthritis: A Randomized Controlled Study. <em>Am J Sports Med</em>. 2016 Mar;44(3):664-71. doi: 10.1177/0363546515620383. Epub 2016 Jan 21\r\n\r\n(7) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. <em>Clin Med Insights Arthritis Musculoskelet Disord</em>. 2013 Sep 4;6:65-72. doi: 10.4137/CMAMD.S10951. eCollection 2013.','Hip Arthritis?','','publish','closed','open','','hip-arthritis-treatment','','','2023-06-09 21:16:09','2023-06-09 21:16:09','',0,'https://www.drfields.com/?p=5798',0,'post','',0),(5799,8,'2023-06-08 14:52:13','2023-06-08 14:52:13','','Hip Arthritis Treatment','','inherit','closed','closed','','hip-arthritis','','','2023-06-08 14:52:28','2023-06-08 14:52:28','',5798,'https://www.drfields.com/wp-content/uploads/2023/06/Hip-Arthritis.png',0,'attachment','image/png',0),(5800,8,'2023-06-08 14:52:38','2023-06-08 14:52:38','<img class=\"alignright wp-image-5799\" src=\"https://www.drfields.com/wp-content/uploads/2023/06/Hip-Arthritis-500x419.png\" alt=\"Hip Arthritis Treatment\" width=\"300\" height=\"251\" />If you have hip arthritis, there is a good chance you are looking for an alternative to hip replacement. Are you looking for a way to preserve your hip from hip replacement surgery?\r\n\r\nFor those who still have good range of motion in their hip, Regenerative Orthopedics may be your alternative to hip replacement. Regenerative Orthopedics is a non-surgical regenerative therapy that includes Prolotherapy, PRP, and Stem Cell Therapy. At OrthoRegen®, we use the Gold Standard in Stem Cell Therapy.\r\n<h2>An Alternative to Hip Replacement</h2>\r\nOftentimes, hip replacement is chosen because the patient is told they have bone on bone arthritis, and hip replacement is the only option. As you read on, you will see that hip replacement is not the only option for bone on bone arthritis, but Regenerative Orthopedics is effective in many arthritis cases.\r\n\r\nMany people assume that once they get a hip replacement, they will be good to go, and can get back to all of the activities they want. This is not always the case. Some people continue to have pain after the replacement.\r\n\r\nAdditionally, it\'s important to keep in mind that hip replacements do not last forever. If the patient is younger, remember that replacements will wear out after 15 plus years.\r\n\r\nHip replacements may not provide the desired relief sought. Instead, chronic pain and incomplete function after surgery is a possibility. And surgery is permanent. Once surgery is done, it cannot be undone.\r\n<h2>Background: The Hip Arthritis Cycle</h2>\r\nThe cycle of hip arthritis begins sometime after an injury occurs to the hip joint. That injury could have been an acute trauma-type injury. Or the injury relates to wear and tear over time. The injury then causes the hip joint to move abnormally. Once the soft tissue, like tendons, ligaments, and even the hip labrum become injured, worn, and/or weakened, they allow for the hip joint to become unstable. The hip instability then cause further joint injury. The cartilage that lines the hip joint also degenerates and sclerotic changes can be seen on an x-ray and arthritis is diagnosed.\r\n\r\nIs the cartilage degeneration causing the pain? Interestingly, cartilage has no nerve endings, so the pain is not coming from the cartilage. Ligaments, however, are highly innervated. They do have nerves. And when injured, can elicit pain. Therefore, the injured, weak ligaments can be the source of the joint pain.\r\n<h2>Hip Ligaments and Hip Arthritis</h2>\r\nPeople do not wake up one morning with advanced bone-on-bone hip osteoarthritis. Something did cause it. Bone-on-bone hip osteoarthritis is the end result of continued, prolonged, unrelenting hip joint degeneration due to damaged, loose, hip ligaments.\r\n\r\nFortunately, Regenerative Orthopedics treat the weak, injured, and lax ligaments and other soft tissue structures of the hip that are in need of repair. The treatments do not just cover up pain, like pain meds and anti-inflammatories do. Regenerative Orthopedics regenerate and repair the hip.\r\n\r\nThe three main ligaments of the hip, the iliofemoral, pubofemoral, and ischiofemoral ligaments are very strong. Normally, when these ligaments are healthy, they keep your hip stable. But when they become injured, the hip becomes unstable. With the instability, the hip labrum and other soft tissue begin to tear. And the ball of the hip bone rubs the wrong way, and causes the degeneration to continue. Researchers agree about the importance of healthy ligaments in order to have a healthy hip joint.\r\n<h2>Research on How Ligaments Affect the Health of the Hip Joint</h2>\r\nWhen examining why patients continue to have pain after hip surgery, Researchers said this in the Knee Surgery, Sports Traumatology, Arthroscopy journal, \"surgical management for hip disorders should preserve the soft tissue constraints (ligaments) in the hip when possible to maintain normal hip biomechanics.”(1)\r\n\r\nPlus, a study in the <em>Journal of Biomechanics</em> explained the importance of hip ligaments while stressing the need to save the ligaments writing, “Laboratory data indicate the hip capsular ligaments prevent excessive range of motion, may protect the joint against adverse edge loading, and contribute to synovial fluid replenishment at the cartilage surfaces of the joint. However, their repair after joint preserving (hip arthroscopy) or arthroplasty (hip replacement) surgery is not routine.\" (2)\r\n\r\nThe researchers definitely stress the importance of preserving the ligaments. Clearly, the bone on bone situation is not the only problem that needs to be addressed in the degenerated hip. It is vital to repair the injured ligaments, because if not, the problem and the pain can continue. The hip needs to be treated in a comprehensive fashion.\r\n\r\nA February 2021 paper in the journal <em>International Orthopaedics</em> offers this opinion on the future of surgery: “Orthopedic surgeons are at an exciting crossroads in medicine, where hip biologic therapies are evolving and increasingly available. Time-tested interventions such as arthroplasty have shown good results and still have a major role to play <strong>but newer, regenerative approaches have the potential to effectively delay or reduce the requirement for such invasive procedures.</strong><strong>”</strong> (3)\r\n\r\nThere are certainly times when surgery is needed. However, regenerative treatments are great alternatives in many cases.\r\n<h2>Regenerative Orthopedics for the Treatment of Hip Arthritis</h2>\r\nLet\'s take a look at some of the studies and see what they say about the effectiveness of regenerative therapies like Prolotherapy, PRP, and Stem Cell Therapy.\r\n\r\n<strong><em>Prolotherapy</em></strong>\r\n\r\nHauser, et al looked at 61 patients with hip pain and 95% said their pain was decreased after Prolotherapy. (4)\r\n\r\nResearchers in the journal <em>Medical Science Monitor</em> said, “To our best knowledge, this study is the first regarding the effects of an injection method in the treatment of osteoarthritis secondary to developmental dysplasia of the hip. According to our study, Prolotherapy is superior to exercise. Prolotherapy could provide significant improvement for clinical outcomes in developmental dysplasia of the hip and might delay surgery.\" (5)\r\n\r\n<strong><em>PRP</em></strong>\r\n\r\nAs far as PRP, the <em>American Journal of Sports Medicine</em> journal says this: “Results indicated that intra-articular PRP injections offer a significant clinical improvement in patients with hip osteoarthritis without relevant side effects.\" (6)\r\n\r\n<strong><em>Stem Cell Therapy</em></strong>\r\n\r\nAt OrthoRegen®, we may choose to use PRP and Stem Cell Therapy in cases where the hip degeneration is more advanced. We call this the Gold Standard in Stem Cell Therapy, because we will use Prolotherapy, PRP, and stem cells to comprehensively treat all of the injured structures of the hip joint.\r\n\r\n<em>Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders</em>, shows that stem cells regenerate tissue damage within the osteoarthritic joint, and when used in combination with <strong>Prolotherapy injections</strong>, are able to repair hip stability.(7)\r\n\r\nAt OrthoRegen, we\'ve had years of experience in regenerative therapies. If you are suffering with hip arthritis and are looking for an alternative to hip replacement, please give us a call. We\'d love to help you stop the arthritis cycle and repair the damaged hip structures so you can return to the activities you love.\r\n\r\n(1) Smith MV, Costic RS, Allaire R, Schilling PL, Sekiya JK. A biomechanical analysis of the soft tissue and osseous constraints of the hip joint. Knee Surgery, Sports Traumatology, Arthroscopy. 2014 Apr 1;22(4):946-52.\r\n\r\n(2) Van Arkel RJ, Amis AA, Jeffers JR. The envelope of passive motion allowed by the capsular ligaments of the hip. Journal of biomechanics. 2015 Nov 5;48(14):3803-9.\r\n\r\n(3) Hevesi M, Jacob G, Shimomura K, Ando W, Nakamura N, Krych AJ. Current hip cartilage regeneration/repair modalities: a scoping review of biologics and surgery. International Orthopaedics. 2020 Sep 10:1-5.\r\n\r\n(4) Hauser RA, Hauser MA. A Retrospective Study on Hackett-Hemwall Dextrose Prolotherapy for Chronic Hip Pain at an Outpatient Charity Clinic in Rural Illinois. Journal of Prolotherapy. 2009;2:76-88.\r\n\r\n(5) Gül D, Orsçelik A, Akpancar S. Treatment of Osteoarthritis Secondary to Developmental Dysplasia of the Hip with Prolotherapy Injection versus a Supervised Progressive Exercise Control. <em>Med Sci Monit</em>. 2020;26:e919166. Published 2020 Feb 11. doi:10.12659/MSM.919166\r\n\r\n(6) Dallari D, Stagni C, Rani N, Sabbioni G, Pelotti P, Torricelli P, Tschon M, Giavaresi G.Ultrasound-Guided Injection of Platelet-Rich Plasma and Hyaluronic Acid, Separately and in Combination, for Hip Osteoarthritis: A Randomized Controlled Study. <em>Am J Sports Med</em>. 2016 Mar;44(3):664-71. doi: 10.1177/0363546515620383. Epub 2016 Jan 21\r\n\r\n(7) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. <em>Clin Med Insights Arthritis Musculoskelet Disord</em>. 2013 Sep 4;6:65-72. doi: 10.4137/CMAMD.S10951. eCollection 2013.','Hip Arthritis Treatment','','inherit','closed','closed','','5798-revision-v1','','','2023-06-08 14:52:38','2023-06-08 14:52:38','',5798,'https://www.drfields.com/?p=5800',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (5801,8,'2023-06-08 14:54:17','2023-06-08 14:54:17','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li><a href=\"/articles/regenerative-orthopedics/tennis-elbow-treatment/\">Tennis Elbow Treatment</a></li>\r\n        <li><a href=\"/articles/regenerative-orthopedics/hip-arthritis-treatment/\">Hip Arthritis Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/alternative-treatment-for-arthritis/\">Alternative Treatment for Arthritis</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/chronic-pain-management/\">Chronic Pain Management</a></li>\r\n 	<li><a href=\"/articles/meniscus-tear-treatment/\">Meniscus Tear Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/neck-pain-treatment/\">Neck Pain Treatment</a></li>\r\n 	<li><a href=\"/uncategorized/knee-replacement-failure/\">Knee Replacement Failure</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-06-08 14:54:17','2023-06-08 14:54:17','',2109,'https://www.drfields.com/?p=5801',0,'revision','',0),(5803,9,'2023-06-09 20:47:09','2023-06-09 20:47:09','<h2><img class=\"alignright wp-image-5796\" src=\"https://www.drfields.com/wp-content/uploads/2023/06/Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-500x419.png\" alt=\"Tennis Elbow Treatment\" width=\"365\" height=\"305\" />Tennis Elbow Treatment</h2>\nYou don\'t have to be a tennis player to have tennis elbow. Tennis elbow is a condition caused by overuse. Sufferers might be painters, writers, guitar players, or anyone who does an activity requiring repetitive use of the arm and elbow. In this article, we\'ll take a look delve into tennis elbow as well as tennis elbow treatment.\n\nTennis elbow pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult. Even simple tasks like turning a doorknob or picking up, holding, and gripping objects.\n\nOver-the-counter pain medications, NSAIDs, cortisone injections, bracing, taping, physical therapy, and massage, may work to bring some relief. But when these fail to achieve the desired relief, and your elbow continues to hurt, it is time to seek reparative, regenerative treatments like Regenerative Orthopedics.\n<h2>Lateral Epicondylitis</h2>\nThe medical terminology for tennis elbow is lateral epicondylitis. The \"itis\" at the end of this word suggests inflammation of the tendon where it attaches to the bony prominence of the elbow (the lateral epicondyle). However, in tennis elbow, there is not always evidence of inflammation.  And because of that, there is some controversy about the treatment for the condition. The <em>Journal of Shoulder and Elbow Surgery says this</em>:\n<ul>\n 	<li>“As orthopaedic surgeons, we are besieged by myths that guide our treatment of lateral epicondylitis, or “tennis elbow.” This extends from the term used to describe the condition to the nonoperative and operative treatments as well. The term epicondylitis suggests an inflammatory cause; however, in all but 1 publication examining pathologic specimens of patients operated on for this condition, <strong>no evidence of acute or chronic inflammation is found</strong>.\"(<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/10543604\">1</a>)</li>\n</ul>\nThe Open Access Journal of Sports Medicine also notes the controversy:\n<ul>\n 	<li>“Although most cases are self-limiting over several years, controversy exists regarding the best treatment strategy for chronic lateral epicondylitis.”(2)</li>\n</ul>\n<h2>Tendinosis Rather Than Tendonitis</h2>\nWhen elbow pain is chronic, and has lasted for an extended amount of time, it is likely that the problem is tendinosis, a condition of tendon degeneration.\n\n<strong><em>What does all of that mean? What is tendinopathy, tendonitis, or tendinosis?</em></strong>\n\nTendinopathy is a broad term often used to describe any problem with a tendon.\n\nTendonitis refers to inflammation of the tendon, and is actually a less common cause of tendon pain than you might think.\n\nTendinosis is the breakdown (degeneration) of the collagen fibers in the tendon. It happens slowly and is often the result of tendon overuse.\n\nTendinosis is therefore the chronic non-inflammatory degeneration of a tendon. Tendinosis may develop as a result of chronic tendonitis or due to repetitive strain-injuries to a tendon without adequate time to heal. Tendinosis is a more common cause of tendon pain. Since inflammation is not the issue, the problem does not respond well to anti-inflammatories.<strong> </strong>\n<h2>Tennis Elbow: An Overuse Injury</h2>\nOveruse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the soft tissue structures of the elbow. Using poor or improper technique while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.\n<h2>Instability May Be Behind Tennis Elbow</h2>\nChronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for alleviation of the pain.\n\nIt is possible that elbow pain is a result of injury of the elbow ligaments. When elbow ligaments are involved, they may be frayed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint. When a tendon is injured, there is often ligament involvement as well, and these soft tissue structures need to be repaired to stop the problem.\n\nWhen the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability, the tendons will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of injury to the tendon.<strong> </strong>\n<h2>Is Bracing a Tennis Elbow Treatment that Helps?<strong> </strong></h2>\n<em><u>Bracing</u></em>\n\nThe journal <em>Prosthetics and Orthotics International</em> (3) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.\n\nIn fact, researchers have concluded that braces, sleeves, tapes, and elbow bands may just be a waste of money, and that they probably only provide placebo affects.(4)\n<h2><em><u>What About Surgery as a Tennis Elbow Treatment?</u></em></h2>\n<strong>The <em>US National Institutes of Health Clinical Trial</em></strong><strong> website</strong><strong> says: “<em>Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </em>(5)</strong>\n\n<em>The British Journal of Sports Medicine </em>has an article entitled:<strong> “Time to put down the scalpel?”</strong> It says,“Our published review highlighted the importance of sham surgery in randomized controlled surgical trials including those in tendinopathy. Compared with using a non-surgical control group, sham surgery equalizes the placebo effect of surgery and gives more realistic insights into the effectiveness of the actual surgical procedure in question.\"(6)<strong> </strong>\n<h2>There’s Another Way and It Does Not Require Surgery!</h2>\n<h3><em>Regenerative Orthopedics: Tennis Elbow Treatment</em></h3>\nRegenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow.\n\nProlotherapy is an injection technique that works to regenerate the degenerated tendon and ligaments. The injection of simple dextrose mimics the natural healing response and stimulates healing growth factors to repair the tissue.\n<h2>What Does the Research Say About Prolotherapy?</h2>\n<ul>\n 	<li>Researchers published a study in the <em>American Journal of Physical Medicine &amp; Rehabilitation </em>that evaluated Prolotherapy for tennis elbow. They concluded: <em>“Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group” </em>(7).</li>\n</ul>\n<ul>\n 	<li>A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (8)</li>\n</ul>\n<ul>\n 	<li>Archives of Physical Medicine and Rehabilitation concluded: “Hypertonic dextrose prolotherapy is superior to (placebo) at 12 weeks for decreasing pain intensity and functioning by margins that meet criteria for clinical relevance in the treatment of lateral elbow tendinosis.\" (9)<strong> </strong></li>\n</ul>\nProlotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. It works because it addresses the problem by repairing the injured soft tissue. And it works because it reduces or eliminates the symptoms.\n\nProlotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons. These therapies stabilize the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow. Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.\n\nIf tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.\n<h2><strong>References</strong></h2>\n(1) Boyer MI. Lateral tennis elbow:” Is there any science out there?.”Journal of Shoulder and Elbow Surgery. 1999;8(5):481-91.\n\n(2) Lai WC, Erickson BJ, Mlynarek RA, Wang D. Chronic lateral epicondylitis: challenges and solutions. Open Access Journal of Sports Medicine. 2018;9:243.\n\n(3) Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.\n\n(4) Au IP, Fan PC, Lee WY, Leong MW, Tang OY, An WW, Cheung RT. Effects of Kinesio tape in individuals with lateral epicondylitis: a deceptive crossover trial. Physiotherapy Theory and Practice. 2017 Dec 2;33(12):914-9.\n\n(5) Kroslak M, Murrell GAC. Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.\n\n(6) Millar, Neal L., George AC Murrell, and Paul Kirwan. \"Time to put down the scalpel? The role of surgery in tendinopathy.\" British Journal of Sports Medicine 54.8 (2020): 441-442.\n\n(7) Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.\n\n(8) Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow. J Korean Acad Rehabil Med. 2002;26:764–8.\n\n(9) Zhu M, Rabago D, Chung VC, Reeves KD, Wong SY, Sit RW. Effects of Hypertonic Dextrose Injection (Prolotherapy) in Lateral Elbow Tendinosis: A Systematic Review and Meta-analysis. Archives of Physical Medicine and Rehabilitation. 2022 Feb 28.','Tennis Elbow Treatment','','inherit','closed','closed','','5795-autosave-v1','','','2023-06-09 20:47:09','2023-06-09 20:47:09','',5795,'https://www.drfields.com/?p=5803',0,'revision','',0),(5804,9,'2023-06-09 20:32:36','2023-06-09 20:32:36','<h2><img class=\"alignright wp-image-5796\" src=\"https://www.drfields.com/wp-content/uploads/2023/06/Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-500x419.png\" alt=\"Tennis Elbow Treatment\" width=\"300\" height=\"251\" />Tennis Elbow Treatment</h2>\r\nYou don\'t have to be a tennis player to have tennis elbow. Tennis elbow is a condition caused by overuse. Sufferers might be painters, writers, guitar players, or anyone who does an activity requiring repetitive use of the arm and elbow.\r\n\r\nTennis elbow pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult. Even simple tasks like turning a doorknob or picking up, holding, and gripping objects.\r\n\r\nOver-the-counter pain medications, NSAIDs, cortisone injections, bracing, taping, physical therapy, and massage, may work to bring some relief. But when these fail to achieve the desired relief, and your elbow continues to hurt, it is time to seek reparative, regenerative treatments like Regenerative Orthopedics.\r\n<h2>Lateral Epicondylitis</h2>\r\nThe medical terminology for tennis elbow is lateral epicondylitis. The \"itis\" at the end of this word suggests inflammation of the tendon where it attaches to the bony prominence of the elbow (the lateral epicondyle). However, in tennis elbow, there is not always evidence of inflammation.  And because of that, there is some controversy about the treatment for the condition. The <em>Journal of Shoulder and Elbow Surgery says this</em>:\r\n<ul>\r\n 	<li>“As orthopaedic surgeons, we are besieged by myths that guide our treatment of lateral epicondylitis, or “tennis elbow.” This extends from the term used to describe the condition to the nonoperative and operative treatments as well. The term epicondylitis suggests an inflammatory cause; however, in all but 1 publication examining pathologic specimens of patients operated on for this condition, <strong>no evidence of acute or chronic inflammation is found</strong>.\"(<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/10543604\">1</a>)</li>\r\n</ul>\r\nThe Open Access Journal of Sports Medicine also notes the controversy:\r\n<ul>\r\n 	<li>“Although most cases are self-limiting over several years, controversy exists regarding the best treatment strategy for chronic lateral epicondylitis.”(2)</li>\r\n</ul>\r\n<h2>Tendinosis Rather Than Tendonitis</h2>\r\nWhen elbow pain is chronic, and has lasted for an extended amount of time, it is likely that the problem is tendinosis, a condition of tendon degeneration.\r\n<h2>What does all of that mean? What is tendinopathy, tendonitis, or tendinosis?</h2>\r\nTendinopathy is a broad term often used to describe any problem with a tendon.\r\n\r\nTendonitis refers to inflammation of the tendon, and is actually a less common cause of tendon pain than you might think.\r\n\r\nTendinosis is the breakdown (degeneration) of the collagen fibers in the tendon. It happens slowly and is often the result of tendon overuse.\r\n\r\nTendinosis is therefore the chronic non-inflammatory degeneration of a tendon. Tendinosis may develop as a result of chronic tendonitis or due to repetitive strain-injuries to a tendon without adequate time to heal. Tendinosis is a more common cause of tendon pain. Since inflammation is not the issue, the problem does not respond well to anti-inflammatories.<strong> </strong>\r\n\r\nTennis Elbow: An Overuse Injury\r\n\r\nOveruse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the soft tissue structures of the elbow. Using poor or improper technique while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.\r\n<h2>Instability May Be Behind Tennis Elbow</h2>\r\nChronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for alleviation of the pain.\r\n\r\nIt is possible that elbow pain is a result of injury of the elbow ligaments. When elbow ligaments are involved, they may be frayed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint. When a tendon is injured, there is often ligament involvement as well, and these soft tissue structures need to be repaired to stop the problem.\r\n\r\nWhen the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability, the tendons will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of injury to the tendon.<strong> </strong>\r\n<h2>Is Bracing a Tennis Elbow Treatment that Helps?<strong> </strong></h2>\r\n<em><u>Bracing</u></em>\r\n\r\nThe journal <em>Prosthetics and Orthotics International</em> (3) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.\r\n\r\nIn fact, researchers have concluded that braces, sleeves, tapes, and elbow bands may just be a waste of money, and that they probably only provide placebo affects.(4)\r\n\r\n<em><u>What About Surgery as a Tennis Elbow Treatment?</u></em>\r\n\r\n<strong>The <em>US National Institutes of Health Clinical Trial</em></strong><strong> website</strong><strong> says: “<em>Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </em>(5)</strong>\r\n\r\n<em>The British Journal of Sports Medicine </em>has an article entitled: “Time to put down the scalpel?” It says,“Our published review highlighted the importance of sham surgery in randomized controlled surgical trials including those in tendinopathy. Compared with using a non-surgical control group, sham surgery equalizes the placebo effect of surgery and gives more realistic insights into the effectiveness of the actual surgical procedure in question.\"(6)<strong> </strong>\r\n\r\nThere’s Another Way and It Does Not Require Surgery!\r\n\r\nRegenerative Orthopedics: Tennis Elbow Treatment\r\n\r\nRegenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow.\r\n\r\nProlotherapy is an injection technique that works to regenerate the degenerated tendon and ligaments. The injection of simple dextrose mimics the natural healing response and stimulates healing growth factors to repair the tissue.\r\n<h2>What Does the Research Say About Prolotherapy?</h2>\r\n<ul>\r\n 	<li>Researchers published a study in the <em>American Journal of Physical Medicine &amp; Rehabilitation </em>that evaluated Prolotherapy for tennis elbow. They concluded: <em>“Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group” </em>(7).</li>\r\n</ul>\r\n<ul>\r\n 	<li>A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (8)</li>\r\n</ul>\r\n<ul>\r\n 	<li>Archives of Physical Medicine and Rehabilitation concluded: “Hypertonic dextrose prolotherapy is superior to (placebo) at 12 weeks for decreasing pain intensity and functioning by margins that meet criteria for clinical relevance in the treatment of lateral elbow tendinosis.\" (9)<strong> </strong></li>\r\n</ul>\r\nProlotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. It works because it addresses the problem by repairing the injured soft tissue. And it works because it reduces or eliminates the symptoms.\r\n\r\nProlotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons. These therapies stabilize the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow. Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.\r\n\r\nIf tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.\r\n\r\n<strong>References</strong>\r\n<ul>\r\n 	<li>Boyer MI. Lateral tennis elbow:” Is there any science out there?.”Journal of Shoulder and Elbow Surgery. 1999;8(5):481-91.</li>\r\n 	<li>Lai WC, Erickson BJ, Mlynarek RA, Wang D. Chronic lateral epicondylitis: challenges and solutions. Open access journal of sports medicine. 2018;9:243.</li>\r\n 	<li>Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.</li>\r\n 	<li>Au IP, Fan PC, Lee WY, Leong MW, Tang OY, An WW, Cheung RT. Effects of Kinesio tape in individuals with lateral epicondylitis: a deceptive crossover trial. Physiotherapy theory and practice. 2017 Dec 2;33(12):914-9.</li>\r\n 	<li>Kroslak M, Murrell GAC. Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.</li>\r\n 	<li>Millar, Neal L., George AC Murrell, and Paul Kirwan. \"Time to put down the scalpel? The role of surgery in tendinopathy.\" British Journal of Sports Medicine 54.8 (2020): 441-442.</li>\r\n 	<li>Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.</li>\r\n 	<li>Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow. J Korean Acad Rehabil Med. 2002;26:764–8.</li>\r\n 	<li>Zhu M, Rabago D, Chung VC, Reeves KD, Wong SY, Sit RW. Effects of Hypertonic Dextrose Injection (Prolotherapy) in Lateral Elbow Tendinosis: A Systematic Review and Meta-analysis. Archives of Physical Medicine and Rehabilitation. 2022 Feb 28.</li>\r\n</ul>','Tennis Elbow Treatment','','inherit','closed','closed','','5795-revision-v1','','','2023-06-09 20:32:36','2023-06-09 20:32:36','',5795,'https://www.drfields.com/?p=5804',0,'revision','',0),(5805,9,'2023-06-09 20:41:28','2023-06-09 20:41:28','<h2><img class=\"alignright wp-image-5796\" src=\"https://www.drfields.com/wp-content/uploads/2023/06/Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-500x419.png\" alt=\"Tennis Elbow Treatment\" width=\"365\" height=\"305\" />Tennis Elbow Treatment</h2>\r\nYou don\'t have to be a tennis player to have tennis elbow. Tennis elbow is a condition caused by overuse. Sufferers might be painters, writers, guitar players, or anyone who does an activity requiring repetitive use of the arm and elbow.\r\n\r\nTennis elbow pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult. Even simple tasks like turning a doorknob or picking up, holding, and gripping objects.\r\n\r\nOver-the-counter pain medications, NSAIDs, cortisone injections, bracing, taping, physical therapy, and massage, may work to bring some relief. But when these fail to achieve the desired relief, and your elbow continues to hurt, it is time to seek reparative, regenerative treatments like Regenerative Orthopedics.\r\n<h2>Lateral Epicondylitis</h2>\r\nThe medical terminology for tennis elbow is lateral epicondylitis. The \"itis\" at the end of this word suggests inflammation of the tendon where it attaches to the bony prominence of the elbow (the lateral epicondyle). However, in tennis elbow, there is not always evidence of inflammation.  And because of that, there is some controversy about the treatment for the condition. The <em>Journal of Shoulder and Elbow Surgery says this</em>:\r\n<ul>\r\n 	<li>“As orthopaedic surgeons, we are besieged by myths that guide our treatment of lateral epicondylitis, or “tennis elbow.” This extends from the term used to describe the condition to the nonoperative and operative treatments as well. The term epicondylitis suggests an inflammatory cause; however, in all but 1 publication examining pathologic specimens of patients operated on for this condition, <strong>no evidence of acute or chronic inflammation is found</strong>.\"(<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/10543604\">1</a>)</li>\r\n</ul>\r\nThe Open Access Journal of Sports Medicine also notes the controversy:\r\n<ul>\r\n 	<li>“Although most cases are self-limiting over several years, controversy exists regarding the best treatment strategy for chronic lateral epicondylitis.”(2)</li>\r\n</ul>\r\n<h2>Tendinosis Rather Than Tendonitis</h2>\r\nWhen elbow pain is chronic, and has lasted for an extended amount of time, it is likely that the problem is tendinosis, a condition of tendon degeneration.\r\n\r\n<strong><em>What does all of that mean? What is tendinopathy, tendonitis, or tendinosis?</em></strong>\r\n\r\nTendinopathy is a broad term often used to describe any problem with a tendon.\r\n\r\nTendonitis refers to inflammation of the tendon, and is actually a less common cause of tendon pain than you might think.\r\n\r\nTendinosis is the breakdown (degeneration) of the collagen fibers in the tendon. It happens slowly and is often the result of tendon overuse.\r\n\r\nTendinosis is therefore the chronic non-inflammatory degeneration of a tendon. Tendinosis may develop as a result of chronic tendonitis or due to repetitive strain-injuries to a tendon without adequate time to heal. Tendinosis is a more common cause of tendon pain. Since inflammation is not the issue, the problem does not respond well to anti-inflammatories.<strong> </strong>\r\n<h2>Tennis Elbow: An Overuse Injury</h2>\r\nOveruse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the soft tissue structures of the elbow. Using poor or improper technique while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.\r\n<h2>Instability May Be Behind Tennis Elbow</h2>\r\nChronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for alleviation of the pain.\r\n\r\nIt is possible that elbow pain is a result of injury of the elbow ligaments. When elbow ligaments are involved, they may be frayed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint. When a tendon is injured, there is often ligament involvement as well, and these soft tissue structures need to be repaired to stop the problem.\r\n\r\nWhen the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability, the tendons will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of injury to the tendon.<strong> </strong>\r\n<h2>Is Bracing a Tennis Elbow Treatment that Helps?<strong> </strong></h2>\r\n<em><u>Bracing</u></em>\r\n\r\nThe journal <em>Prosthetics and Orthotics International</em> (3) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.\r\n\r\nIn fact, researchers have concluded that braces, sleeves, tapes, and elbow bands may just be a waste of money, and that they probably only provide placebo affects.(4)\r\n<h2><em><u>What About Surgery as a Tennis Elbow Treatment?</u></em></h2>\r\n<strong>The <em>US National Institutes of Health Clinical Trial</em></strong><strong> website</strong><strong> says: “<em>Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </em>(5)</strong>\r\n\r\n<em>The British Journal of Sports Medicine </em>has an article entitled:<strong> “Time to put down the scalpel?”</strong> It says,“Our published review highlighted the importance of sham surgery in randomized controlled surgical trials including those in tendinopathy. Compared with using a non-surgical control group, sham surgery equalizes the placebo effect of surgery and gives more realistic insights into the effectiveness of the actual surgical procedure in question.\"(6)<strong> </strong>\r\n<h2>There’s Another Way and It Does Not Require Surgery!</h2>\r\n<h3><em>Regenerative Orthopedics: Tennis Elbow Treatment</em></h3>\r\nRegenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow.\r\n\r\nProlotherapy is an injection technique that works to regenerate the degenerated tendon and ligaments. The injection of simple dextrose mimics the natural healing response and stimulates healing growth factors to repair the tissue.\r\n<h2>What Does the Research Say About Prolotherapy?</h2>\r\n<ul>\r\n 	<li>Researchers published a study in the <em>American Journal of Physical Medicine &amp; Rehabilitation </em>that evaluated Prolotherapy for tennis elbow. They concluded: <em>“Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group” </em>(7).</li>\r\n</ul>\r\n<ul>\r\n 	<li>A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (8)</li>\r\n</ul>\r\n<ul>\r\n 	<li>Archives of Physical Medicine and Rehabilitation concluded: “Hypertonic dextrose prolotherapy is superior to (placebo) at 12 weeks for decreasing pain intensity and functioning by margins that meet criteria for clinical relevance in the treatment of lateral elbow tendinosis.\" (9)<strong> </strong></li>\r\n</ul>\r\nProlotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. It works because it addresses the problem by repairing the injured soft tissue. And it works because it reduces or eliminates the symptoms.\r\n\r\nProlotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons. These therapies stabilize the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow. Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.\r\n\r\nIf tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.\r\n<h2><strong>References</strong></h2>\r\n(1) Boyer MI. Lateral tennis elbow:” Is there any science out there?.”Journal of Shoulder and Elbow Surgery. 1999;8(5):481-91.\r\n\r\n(2) Lai WC, Erickson BJ, Mlynarek RA, Wang D. Chronic lateral epicondylitis: challenges and solutions. Open Access Journal of Sports Medicine. 2018;9:243.\r\n\r\n(3) Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.\r\n\r\n(4) Au IP, Fan PC, Lee WY, Leong MW, Tang OY, An WW, Cheung RT. Effects of Kinesio tape in individuals with lateral epicondylitis: a deceptive crossover trial. Physiotherapy Theory and Practice. 2017 Dec 2;33(12):914-9.\r\n\r\n(5) Kroslak M, Murrell GAC. Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.\r\n\r\n(6) Millar, Neal L., George AC Murrell, and Paul Kirwan. \"Time to put down the scalpel? The role of surgery in tendinopathy.\" British Journal of Sports Medicine 54.8 (2020): 441-442.\r\n\r\n(7) Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.\r\n\r\n(8) Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow. J Korean Acad Rehabil Med. 2002;26:764–8.\r\n\r\n(9) Zhu M, Rabago D, Chung VC, Reeves KD, Wong SY, Sit RW. Effects of Hypertonic Dextrose Injection (Prolotherapy) in Lateral Elbow Tendinosis: A Systematic Review and Meta-analysis. Archives of Physical Medicine and Rehabilitation. 2022 Feb 28.','Tennis Elbow Treatment','','inherit','closed','closed','','5795-revision-v1','','','2023-06-09 20:41:28','2023-06-09 20:41:28','',5795,'https://www.drfields.com/?p=5805',0,'revision','',0),(5806,9,'2023-06-09 20:47:57','2023-06-09 20:47:57','<h2><img class=\"alignright wp-image-5796\" src=\"https://www.drfields.com/wp-content/uploads/2023/06/Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-500x419.png\" alt=\"Tennis Elbow Treatment\" width=\"365\" height=\"305\" />Tennis Elbow Treatment</h2>\r\nYou don\'t have to be a tennis player to have tennis elbow. Tennis elbow is a condition caused by overuse. Sufferers might be painters, writers, guitar players, or anyone who does an activity requiring repetitive use of the arm and elbow. In this article, we\'ll take a look delve into tennis elbow as well as tennis elbow treatment.\r\n\r\nTennis elbow pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult. Even simple tasks like turning a doorknob or picking up, holding, and gripping objects.\r\n\r\nOver-the-counter pain medications, NSAIDs, cortisone injections, bracing, taping, physical therapy, and massage, may work to bring some relief. But when these fail to achieve the desired relief, and your elbow continues to hurt, it is time to seek reparative, regenerative treatments like Regenerative Orthopedics.\r\n<h2>Lateral Epicondylitis</h2>\r\nThe medical terminology for tennis elbow is lateral epicondylitis. The \"itis\" at the end of this word suggests inflammation of the tendon where it attaches to the bony prominence of the elbow (the lateral epicondyle). However, in tennis elbow, there is not always evidence of inflammation.  And because of that, there is some controversy about the treatment for the condition. The <em>Journal of Shoulder and Elbow Surgery says this</em>:\r\n<ul>\r\n 	<li>“As orthopaedic surgeons, we are besieged by myths that guide our treatment of lateral epicondylitis, or “tennis elbow.” This extends from the term used to describe the condition to the nonoperative and operative treatments as well. The term epicondylitis suggests an inflammatory cause; however, in all but 1 publication examining pathologic specimens of patients operated on for this condition, <strong>no evidence of acute or chronic inflammation is found</strong>.\"(<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/10543604\">1</a>)</li>\r\n</ul>\r\nThe Open Access Journal of Sports Medicine also notes the controversy:\r\n<ul>\r\n 	<li>“Although most cases are self-limiting over several years, controversy exists regarding the best treatment strategy for chronic lateral epicondylitis.”(2)</li>\r\n</ul>\r\n<h2>Tendinosis Rather Than Tendonitis</h2>\r\nWhen elbow pain is chronic, and has lasted for an extended amount of time, it is likely that the problem is tendinosis, a condition of tendon degeneration.\r\n\r\n<strong><em>What does all of that mean? What is tendinopathy, tendonitis, or tendinosis?</em></strong>\r\n\r\nTendinopathy is a broad term often used to describe any problem with a tendon.\r\n\r\nTendonitis refers to inflammation of the tendon, and is actually a less common cause of tendon pain than you might think.\r\n\r\nTendinosis is the breakdown (degeneration) of the collagen fibers in the tendon. It happens slowly and is often the result of tendon overuse.\r\n\r\nTendinosis is therefore the chronic non-inflammatory degeneration of a tendon. The condition may develop as a result of chronic tendonitis or due to repetitive strain-injuries to a tendon without adequate time to heal. Tendinosis is a more common cause of tendon pain. Since inflammation is not the issue, the problem does not respond well to anti-inflammatories.<strong> </strong>\r\n<h2>Tennis Elbow: An Overuse Injury</h2>\r\nOveruse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the soft tissue structures of the elbow. Using poor or improper technique while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.\r\n<h2>Instability May Be Behind Tennis Elbow</h2>\r\nChronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for alleviation of the pain.\r\n\r\nIt is possible that elbow pain is a result of injury of the elbow ligaments. When elbow ligaments are involved, they may be frayed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint. When a tendon is injured, there is often ligament involvement as well, and these soft tissue structures need to be repaired to stop the problem.\r\n\r\nWhen the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability, the tendons will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of injury to the tendon.<strong> </strong>\r\n<h2>Is Bracing a Tennis Elbow Treatment that Helps?<strong> </strong></h2>\r\n<em><u>Bracing</u></em>\r\n\r\nThe journal <em>Prosthetics and Orthotics International</em> (3) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.\r\n\r\nIn fact, researchers have concluded that braces, sleeves, tapes, and elbow bands may just be a waste of money, and that they probably only provide placebo affects.(4)\r\n<h2><em><u>What About Surgery as a Tennis Elbow Treatment?</u></em></h2>\r\n<strong>The <em>US National Institutes of Health Clinical Trial</em></strong><strong> website</strong><strong> says: “<em>Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </em>(5)</strong>\r\n\r\n<em>The British Journal of Sports Medicine </em>has an article entitled:<strong> “Time to put down the scalpel?”</strong> It says,“Our published review highlighted the importance of sham surgery in randomized controlled surgical trials including those in tendinopathy. Compared with using a non-surgical control group, sham surgery equalizes the placebo effect of surgery and gives more realistic insights into the effectiveness of the actual surgical procedure in question.\"(6)<strong> </strong>\r\n<h2>There’s Another Way and It Does Not Require Surgery!</h2>\r\n<h3><em>Regenerative Orthopedics: Tennis Elbow Treatment</em></h3>\r\nRegenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow.\r\n\r\nProlotherapy is an injection technique that works to regenerate the degenerated tendon and ligaments. The injection of simple dextrose mimics the natural healing response and stimulates healing growth factors to repair the tissue.\r\n<h2>What Does the Research Say About Prolotherapy?</h2>\r\n<ul>\r\n 	<li>Researchers published a study in the <em>American Journal of Physical Medicine &amp; Rehabilitation </em>that evaluated Prolotherapy for tennis elbow. They concluded: <em>“Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group” </em>(7).</li>\r\n</ul>\r\n<ul>\r\n 	<li>A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (8)</li>\r\n</ul>\r\n<ul>\r\n 	<li>Archives of Physical Medicine and Rehabilitation concluded: “Hypertonic dextrose prolotherapy is superior to (placebo) at 12 weeks for decreasing pain intensity and functioning by margins that meet criteria for clinical relevance in the treatment of lateral elbow tendinosis.\" (9)<strong> </strong></li>\r\n</ul>\r\nProlotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. It works because it addresses the problem by repairing the injured soft tissue. And it works because it reduces or eliminates the symptoms.\r\n\r\nProlotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons. These therapies stabilize the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow. Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.\r\n\r\nIf tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.\r\n<h2><strong>References</strong></h2>\r\n(1) Boyer MI. Lateral tennis elbow:” Is there any science out there?.”Journal of Shoulder and Elbow Surgery. 1999;8(5):481-91.\r\n\r\n(2) Lai WC, Erickson BJ, Mlynarek RA, Wang D. Chronic lateral epicondylitis: challenges and solutions. Open Access Journal of Sports Medicine. 2018;9:243.\r\n\r\n(3) Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.\r\n\r\n(4) Au IP, Fan PC, Lee WY, Leong MW, Tang OY, An WW, Cheung RT. Effects of Kinesio tape in individuals with lateral epicondylitis: a deceptive crossover trial. Physiotherapy Theory and Practice. 2017 Dec 2;33(12):914-9.\r\n\r\n(5) Kroslak M, Murrell GAC. Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.\r\n\r\n(6) Millar, Neal L., George AC Murrell, and Paul Kirwan. \"Time to put down the scalpel? The role of surgery in tendinopathy.\" British Journal of Sports Medicine 54.8 (2020): 441-442.\r\n\r\n(7) Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.\r\n\r\n(8) Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow. J Korean Acad Rehabil Med. 2002;26:764–8.\r\n\r\n(9) Zhu M, Rabago D, Chung VC, Reeves KD, Wong SY, Sit RW. Effects of Hypertonic Dextrose Injection (Prolotherapy) in Lateral Elbow Tendinosis: A Systematic Review and Meta-analysis. Archives of Physical Medicine and Rehabilitation. 2022 Feb 28.','Tennis Elbow Treatment','','inherit','closed','closed','','5795-revision-v1','','','2023-06-09 20:47:57','2023-06-09 20:47:57','',5795,'https://www.drfields.com/?p=5806',0,'revision','',0),(5807,9,'2023-06-09 21:15:13','2023-06-09 21:15:13','<h2><img class=\"alignright wp-image-5799\" src=\"https://www.drfields.com/wp-content/uploads/2023/06/Hip-Arthritis-500x419.png\" alt=\"Hip Arthritis Treatment\" width=\"300\" height=\"251\" /><span style=\"font-size: 16px;\">Hip Arthritis Treatment</span></h2>\nIf you have hip arthritis, there is a good chance you are looking for an alternative to hip replacement. Are you seeking a way to preserve your hip from hip replacement surgery? What is the best hip arthritis treatment?\n\nFor those who still have good range of motion in their hip, Regenerative Orthopedics may be your alternative to hip replacement. Regenerative Orthopedics is a non-surgical regenerative therapy that includes Prolotherapy, PRP, and Stem Cell Therapy. At OrthoRegen®, we use the Gold Standard in Stem Cell Therapy.\n<h2>An Alternative to Hip Replacement Surgery</h2>\nOften, hip replacement is chosen because the patient is told they have bone-on-bone arthritis, and hip replacement is the only option. As you read, you will see that hip replacement is not the only option for bone-on-bone arthritis, but Regenerative Orthopedics is practical in many arthritis cases.\n\nMany people assume that once they get a hip replacement, they will be good to go, and can get back to all the activities they want. This is not always the case. Some people continue to have pain after the replacement.\n\nAdditionally, it\'s essential to remember that hip replacements do not last forever. If the patient is younger, remember that replacements will wear out after 15-plus years.\n\nHip replacements may not provide the desired relief sought. Instead, chronic pain and incomplete function after surgery is a possibility. And surgery is permanent. Once surgery is done, it cannot be undone. Fortunately, there is an alternative! Regenerative Orthopedics is an effective hip arthritis treatment that can help get you back to the activities you enjoy.\n<h2>Background: The Hip Arthritis Cycle</h2>\nThe cycle of hip arthritis begins sometime after an injury occurs to the hip joint. That injury could have been an acute trauma-type injury. Or the damage relates to wear and tear over time. The injury then causes the hip joint to move abnormally. Once the soft tissue, like tendons, ligaments, and even the hip labrum, become injured, worn, and/or weakened, they allow for the hip joint to become unstable. The hip instability then causes further joint injury. The cartilage that lines the hip joint also degenerates, and sclerotic changes can be seen on an x-ray, and arthritis is diagnosed.\n\nIs the cartilage degeneration causing the pain? Interestingly, cartilage has no nerve endings, so the pain is not coming from the cartilage. Ligaments, however, are highly innervated. They do have nerves. And when injured, can elicit pain. Therefore, the injured, weak ligaments can be the source of joint pain.\n<h2>Hip Ligaments and Hip Arthritis</h2>\nPeople do not wake up one morning with advanced bone-on-bone hip osteoarthritis. Something did cause it. Bone-on-bone hip osteoarthritis is the end result of continued, prolonged, unrelenting hip joint degeneration due to damaged, loose hip ligaments.\n\nFortunately, Regenerative Orthopedics treats the weak, injured, and lax ligaments and other soft tissue structures of the hip that are in need of repair. The treatments do not just cover up pain, as pain meds and anti-inflammatories do. Regenerative Orthopedics regenerates and repair the hip.\n\nThe three main ligaments of the hip, the iliofemoral, pubofemoral, and ischiofemoral ligaments, are very strong. Normally, when these ligaments are healthy, they keep your hip stable. But when they become injured, the hip becomes unstable. With the instability, the hip labrum and other soft tissue begin to tear. And the ball of the hip bone rubs the wrong way and causes the degeneration to continue. Researchers agree about the importance of healthy ligaments in order to have a healthy hip joint.\n<h2>Research on How Ligaments Affect the Health of the Hip Joint</h2>\nWhen examining why patients continue to have pain after hip surgery, Researchers said this in the Knee Surgery, Sports Traumatology, Arthroscopy journal, \"surgical management for hip disorders should preserve the soft tissue constraints (ligaments) in the hip when possible to maintain normal hip biomechanics.”(1)\n<h3><em>How Important Are Hip Ligaments?</em></h3>\nPlus, a study in the <em>Journal of Biomechanics</em> explained the importance of hip ligaments while stressing the need to save the ligaments writing, “Laboratory data indicate the hip capsular ligaments prevent an excessive range of motion, may protect the joint against adverse edge loading, and contribute to synovial fluid replenishment at the cartilage surfaces of the joint. However, their repair after joint preserving (hip arthroscopy) or arthroplasty (hip replacement) surgery is not routine.\" (2)\n<h3>Bone-On-Bone Is Not the Only Problem to Address with Damaged Joints</h3>\nThe researchers stress the importance of preserving the ligaments. Clearly, the bone-on-bone situation is not the only problem that needs to be addressed in the degenerated hip. It is vital to repair the injured ligaments because if not, the problem and the pain can continue. The hip needs to be treated comprehensively.\n\nA February 2021 paper in the journal <em>International Orthopaedics</em> offers this opinion on the future of surgery: “Orthopedic surgeons are at an exciting crossroads in medicine, where hip biologic therapies are evolving and increasingly available. Time-tested interventions such as arthroplasty have shown good results and still have a major role to play <strong>but newer, regenerative approaches have the potential to effectively delay or reduce the requirement for such invasive procedures.</strong><strong>”</strong> (3)\n\nThere are certainly times when surgery is needed. However, regenerative treatments are great alternatives in many cases.\n<h2>Regenerative Orthopedics: Hip Arthritis Treatment</h2>\nLet\'s look at some of the studies and see what they say about the effectiveness of regenerative therapies like Prolotherapy, PRP, and Stem Cell Therapy.\n\n<strong><em>Prolotherapy</em></strong>\n\nHauser et al. looked at 61 patients with hip pain, and 95% said their pain decreased after Prolotherapy. (4)\n\nResearchers in the journal <em>Medical Science Monitor</em> said, “To our best knowledge, this study is the first regarding the effects of an injection method in treating osteoarthritis secondary to developmental dysplasia of the hip. According to our study, Prolotherapy is superior to exercise. Prolotherapy could provide significant improvement for clinical outcomes in developmental dysplasia of the hip and might delay surgery.\" (5)\n\n<strong><em>PRP</em></strong>\n\nAs far as PRP, the <em>American Journal of Sports Medicine</em> journal says this: “Results indicated that intra-articular PRP injections offer a significant clinical improvement in patients with hip osteoarthritis without relevant side effects.\" (6)\n\n<strong><em>Stem Cell Therapy</em></strong>\n\nAt OrthoRegen®, we may use PRP and Stem Cell Therapy in cases where the hip degeneration is more advanced. We call this the Gold Standard in Stem Cell Therapy because we will use Prolotherapy, PRP, and stem cells to comprehensively treat all of the injured structures of the hip joint.\n\n<em>Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders</em> shows that stem cells regenerate tissue damage within the osteoarthritic joint and, when used in combination with <strong>Prolotherapy injections</strong>, can repair hip stability. (7)\n\nAt OrthoRegen, we\'ve had years of experience in regenerative therapies as a hip arthritis treatment. If you are suffering from hip arthritis and are looking for an alternative to hip replacement, please call us. We\'d love to help you stop the arthritis cycle and repair the damaged hip structures so you can return to the activities you love.\n\n(1) Smith MV, Costic RS, Allaire R, Schilling PL, Sekiya JK. A biomechanical analysis of the soft tissue and osseous constraints of the hip joint. Knee Surgery, Sports Traumatology, Arthroscopy. 2014 Apr 1;22(4):946-52.\n\n(2) Van Arkel RJ, Amis AA, Jeffers JR. The envelope of passive motion allowed by the capsular ligaments of the hip. Journal of biomechanics. 2015 Nov 5;48(14):3803-9.\n\n(3) Hevesi M, Jacob G, Shimomura K, Ando W, Nakamura N, Krych AJ. Current hip cartilage regeneration/repair modalities: a scoping review of biologics and surgery. International Orthopaedics. 2020 Sep 10:1-5.\n\n(4) Hauser RA, Hauser MA. A Retrospective Study on Hackett-Hemwall Dextrose Prolotherapy for Chronic Hip Pain at an Outpatient Charity Clinic in Rural Illinois. Journal of Prolotherapy. 2009;2:76-88.\n\n(5) Gül D, Orsçelik A, Akpancar S. Treatment of Osteoarthritis Secondary to Developmental Dysplasia of the Hip with Prolotherapy Injection versus a Supervised Progressive Exercise Control. <em>Med Sci Monit</em>. 2020;26:e919166. Published 2020 Feb 11. doi:10.12659/MSM.919166\n\n(6) Dallari D, Stagni C, Rani N, Sabbioni G, Pelotti P, Torricelli P, Tschon M, Giavaresi G.Ultrasound-Guided Injection of Platelet-Rich Plasma and Hyaluronic Acid, Separately and in Combination, for Hip Osteoarthritis: A Randomized Controlled Study. <em>Am J Sports Med</em>. 2016 Mar;44(3):664-71. doi: 10.1177/0363546515620383. Epub 2016 Jan 21\n\n(7) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. <em>Clin Med Insights Arthritis Musculoskelet Disord</em>. 2013 Sep 4;6:65-72. doi: 10.4137/CMAMD.S10951. eCollection 2013.','Hip Arthritis?','','inherit','closed','closed','','5798-autosave-v1','','','2023-06-09 21:15:13','2023-06-09 21:15:13','',5798,'https://www.drfields.com/?p=5807',0,'revision','',0),(5808,9,'2023-06-09 21:03:51','2023-06-09 21:03:51','<h2><img class=\"alignright wp-image-5799\" src=\"https://www.drfields.com/wp-content/uploads/2023/06/Hip-Arthritis-500x419.png\" alt=\"Hip Arthritis Treatment\" width=\"300\" height=\"251\" />Hip Arthritis Treatment</h2>\r\nIf you have hip arthritis, there is a good chance you are looking for an alternative to hip replacement. Are you looking for a way to preserve your hip from hip replacement surgery? What is the best hip arthritis treatment?\r\n\r\nFor those who still have good range of motion in their hip, Regenerative Orthopedics may be your alternative to hip replacement. Regenerative Orthopedics is a non-surgical regenerative therapy that includes Prolotherapy, PRP, and Stem Cell Therapy. At OrthoRegen®, we use the Gold Standard in Stem Cell Therapy.\r\n<h2>An Alternative to Hip Replacment Surgery</h2>\r\nOftentimes, hip replacement is chosen because the patient is told they have bone-on-bone arthritis, and hip replacement is the only option. As you read, you will see that hip replacement is not the only option for bone-on-bone arthritis, but Regenerative Orthopedics is practical in many arthritis cases.\r\n\r\nMany people assume that once they get a hip replacement, they will be good to go, and can get back to all the activities they want. This is not always the case. Some people continue to have pain after the replacement.\r\n\r\nAdditionally, it\'s essential to remember that hip replacements do not last forever. If the patient is younger, remember that replacements will wear out after 15-plus years.\r\n\r\nHip replacements may not provide the desired relief sought. Instead, chronic pain and incomplete function after surgery is a possibility. And surgery is permanent. Once surgery is done, it cannot be undone.\r\n<h2>Background: The Hip Arthritis Cycle</h2>\r\nThe cycle of hip arthritis begins sometime after an injury occurs to the hip joint. That injury could have been an acute trauma-type injury. Or the damage relates to wear and tear over time. The injury then causes the hip joint to move abnormally. Once the soft tissue, like tendons, ligaments, and even the hip labrum, become injured, worn, and/or weakened, they allow for the hip joint to become unstable. The hip instability then causes further joint injury. The cartilage that lines the hip joint also degenerates, and sclerotic changes can be seen on an x-ray, and arthritis is diagnosed.\r\n\r\nIs the cartilage degeneration causing the pain? Interestingly, cartilage has no nerve endings, so the pain is not coming from the cartilage. Ligaments, however, are highly innervated. They do have nerves. And when injured, can elicit pain. Therefore, the injured, weak ligaments can be the source of joint pain.\r\n<h2>Hip Ligaments and Hip Arthritis</h2>\r\nPeople do not wake up one morning with advanced bone-on-bone hip osteoarthritis. Something did cause it. Bone-on-bone hip osteoarthritis is the end result of continued, prolonged, unrelenting hip joint degeneration due to damaged, loose hip ligaments.\r\n\r\nFortunately, Regenerative Orthopedics treats the weak, injured, and lax ligaments and other soft tissue structures of the hip that are in need of repair. The treatments do not just cover up pain, as pain meds and anti-inflammatories do. Regenerative Orthopedics regenerates and repair the hip.\r\n\r\nThe three main ligaments of the hip, the iliofemoral, pubofemoral, and ischiofemoral ligaments, are very strong. Normally, when these ligaments are healthy, they keep your hip stable. But when they become injured, the hip becomes unstable. With the instability, the hip labrum and other soft tissue begin to tear. And the ball of the hip bone rubs the wrong way and causes the degeneration to continue. Researchers agree about the importance of healthy ligaments in order to have a healthy hip joint.\r\n<h2>Research on How Ligaments Affect the Health of the Hip Joint</h2>\r\nWhen examining why patients continue to have pain after hip surgery, Researchers said this in the Knee Surgery, Sports Traumatology, Arthroscopy journal, \"surgical management for hip disorders should preserve the soft tissue constraints (ligaments) in the hip when possible to maintain normal hip biomechanics.”(1)\r\n\r\nPlus, a study in the <em>Journal of Biomechanics</em> explained the importance of hip ligaments while stressing the need to save the ligaments writing, “Laboratory data indicate the hip capsular ligaments prevent an excessive range of motion, may protect the joint against adverse edge loading, and contribute to synovial fluid replenishment at the cartilage surfaces of the joint. However, their repair after joint preserving (hip arthroscopy) or arthroplasty (hip replacement) surgery is not routine.\" (2)\r\n\r\nThe researchers stress the importance of preserving the ligaments. Clearly, the bone-on-bone situation is not the only problem that needs to be addressed in the degenerated hip. It is vital to repair the injured ligaments because if not, the problem and the pain can continue. The hip needs to be treated comprehensively.\r\n\r\nA February 2021 paper in the journal <em>International Orthopaedics</em> offers this opinion on the future of surgery: “Orthopedic surgeons are at an exciting crossroads in medicine, where hip biologic therapies are evolving and increasingly available. Time-tested interventions such as arthroplasty have shown good results and still have a major role to play <strong>but newer, regenerative approaches have the potential to effectively delay or reduce the requirement for such invasive procedures.</strong><strong>”</strong> (3)\r\n\r\nThere are certainly times when surgery is needed. However, regenerative treatments are great alternatives in many cases.\r\n<h2>Regenerative Orthopedics: Hip Arthritis Treatment</h2>\r\nLet\'s look at some of the studies and see what they say about the effectiveness of regenerative therapies like Prolotherapy, PRP, and Stem Cell Therapy.\r\n\r\n<strong><em>Prolotherapy</em></strong>\r\n\r\nHauser et al. looked at 61 patients with hip pain, and 95% said their pain decreased after Prolotherapy. (4)\r\n\r\nResearchers in the journal <em>Medical Science Monitor</em> said, “To our best knowledge, this study is the first regarding the effects of an injection method in treating osteoarthritis secondary to developmental dysplasia of the hip. According to our study, Prolotherapy is superior to exercise. Prolotherapy could provide significant improvement for clinical outcomes in developmental dysplasia of the hip and might delay surgery.\" (5)\r\n\r\n<strong><em>PRP</em></strong>\r\n\r\nAs far as PRP, the <em>American Journal of Sports Medicine</em> journal says this: “Results indicated that intra-articular PRP injections offer a significant clinical improvement in patients with hip osteoarthritis without relevant side effects.\" (6)\r\n\r\n<strong><em>Stem Cell Therapy</em></strong>\r\n\r\nAt OrthoRegen®, we may use PRP and Stem Cell Therapy in cases where the hip degeneration is more advanced. We call this the Gold Standard in Stem Cell Therapy because we will use Prolotherapy, PRP, and stem cells to comprehensively treat all of the injured structures of the hip joint.\r\n\r\n<em>Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders</em> shows that stem cells regenerate tissue damage within the osteoarthritic joint and, when used in combination with <strong>Prolotherapy injections</strong>, can repair hip stability. (7)\r\n\r\nAt OrthoRegen, we\'ve had years of experience in regenerative therapies. If you are suffering from hip arthritis and are looking for an alternative to hip replacement, please call us. We\'d love to help you stop the arthritis cycle and repair the damaged hip structures so you can return to the activities you love.\r\n\r\n(1) Smith MV, Costic RS, Allaire R, Schilling PL, Sekiya JK. A biomechanical analysis of the soft tissue and osseous constraints of the hip joint. Knee Surgery, Sports Traumatology, Arthroscopy. 2014 Apr 1;22(4):946-52.\r\n\r\n(2) Van Arkel RJ, Amis AA, Jeffers JR. The envelope of passive motion allowed by the capsular ligaments of the hip. Journal of biomechanics. 2015 Nov 5;48(14):3803-9.\r\n\r\n(3) Hevesi M, Jacob G, Shimomura K, Ando W, Nakamura N, Krych AJ. Current hip cartilage regeneration/repair modalities: a scoping review of biologics and surgery. International Orthopaedics. 2020 Sep 10:1-5.\r\n\r\n(4) Hauser RA, Hauser MA. A Retrospective Study on Hackett-Hemwall Dextrose Prolotherapy for Chronic Hip Pain at an Outpatient Charity Clinic in Rural Illinois. Journal of Prolotherapy. 2009;2:76-88.\r\n\r\n(5) Gül D, Orsçelik A, Akpancar S. Treatment of Osteoarthritis Secondary to Developmental Dysplasia of the Hip with Prolotherapy Injection versus a Supervised Progressive Exercise Control. <em>Med Sci Monit</em>. 2020;26:e919166. Published 2020 Feb 11. doi:10.12659/MSM.919166\r\n\r\n(6) Dallari D, Stagni C, Rani N, Sabbioni G, Pelotti P, Torricelli P, Tschon M, Giavaresi G.Ultrasound-Guided Injection of Platelet-Rich Plasma and Hyaluronic Acid, Separately and in Combination, for Hip Osteoarthritis: A Randomized Controlled Study. <em>Am J Sports Med</em>. 2016 Mar;44(3):664-71. doi: 10.1177/0363546515620383. Epub 2016 Jan 21\r\n\r\n(7) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. <em>Clin Med Insights Arthritis Musculoskelet Disord</em>. 2013 Sep 4;6:65-72. doi: 10.4137/CMAMD.S10951. eCollection 2013.','Hip Arthritis?','','inherit','closed','closed','','5798-revision-v1','','','2023-06-09 21:03:51','2023-06-09 21:03:51','',5798,'https://www.drfields.com/?p=5808',0,'revision','',0),(5809,9,'2023-06-09 21:06:00','2023-06-09 21:06:00','<h2><img class=\"alignright wp-image-5799\" src=\"https://www.drfields.com/wp-content/uploads/2023/06/Hip-Arthritis-500x419.png\" alt=\"Hip Arthritis Treatment\" width=\"300\" height=\"251\" />Hip Arthritis Treatment</h2>\r\nIf you have hip arthritis, there is a good chance you are looking for an alternative to hip replacement. Are you looking for a way to preserve your hip from hip replacement surgery? What is the best hip arthritis treatment?\r\n\r\nFor those who still have good range of motion in their hip, Regenerative Orthopedics may be your alternative to hip replacement. Regenerative Orthopedics is a non-surgical regenerative therapy that includes Prolotherapy, PRP, and Stem Cell Therapy. At OrthoRegen®, we use the Gold Standard in Stem Cell Therapy.\r\n<h2>An Alternative to Hip Replacement Surgery</h2>\r\nOften, hip replacement is chosen because the patient is told they have bone-on-bone arthritis, and hip replacement is the only option. As you read, you will see that hip replacement is not the only option for bone-on-bone arthritis, but Regenerative Orthopedics is practical in many arthritis cases.\r\n\r\nMany people assume that once they get a hip replacement, they will be good to go, and can get back to all the activities they want. This is not always the case. Some people continue to have pain after the replacement.\r\n\r\nAdditionally, it\'s essential to remember that hip replacements do not last forever. If the patient is younger, remember that replacements will wear out after 15-plus years.\r\n\r\nHip replacements may not provide the desired relief sought. Instead, chronic pain and incomplete function after surgery is a possibility. And surgery is permanent. Once surgery is done, it cannot be undone. Fortunately, there is an alternative! Regenerative Orthopedics is an effective hip arthritis treatment that can help get you back to the activities you enjoy.\r\n<h2>Background: The Hip Arthritis Cycle</h2>\r\nThe cycle of hip arthritis begins sometime after an injury occurs to the hip joint. That injury could have been an acute trauma-type injury. Or the damage relates to wear and tear over time. The injury then causes the hip joint to move abnormally. Once the soft tissue, like tendons, ligaments, and even the hip labrum, become injured, worn, and/or weakened, they allow for the hip joint to become unstable. The hip instability then causes further joint injury. The cartilage that lines the hip joint also degenerates, and sclerotic changes can be seen on an x-ray, and arthritis is diagnosed.\r\n\r\nIs the cartilage degeneration causing the pain? Interestingly, cartilage has no nerve endings, so the pain is not coming from the cartilage. Ligaments, however, are highly innervated. They do have nerves. And when injured, can elicit pain. Therefore, the injured, weak ligaments can be the source of joint pain.\r\n<h2>Hip Ligaments and Hip Arthritis</h2>\r\nPeople do not wake up one morning with advanced bone-on-bone hip osteoarthritis. Something did cause it. Bone-on-bone hip osteoarthritis is the end result of continued, prolonged, unrelenting hip joint degeneration due to damaged, loose hip ligaments.\r\n\r\nFortunately, Regenerative Orthopedics treats the weak, injured, and lax ligaments and other soft tissue structures of the hip that are in need of repair. The treatments do not just cover up pain, as pain meds and anti-inflammatories do. Regenerative Orthopedics regenerates and repair the hip.\r\n\r\nThe three main ligaments of the hip, the iliofemoral, pubofemoral, and ischiofemoral ligaments, are very strong. Normally, when these ligaments are healthy, they keep your hip stable. But when they become injured, the hip becomes unstable. With the instability, the hip labrum and other soft tissue begin to tear. And the ball of the hip bone rubs the wrong way and causes the degeneration to continue. Researchers agree about the importance of healthy ligaments in order to have a healthy hip joint.\r\n<h2>Research on How Ligaments Affect the Health of the Hip Joint</h2>\r\nWhen examining why patients continue to have pain after hip surgery, Researchers said this in the Knee Surgery, Sports Traumatology, Arthroscopy journal, \"surgical management for hip disorders should preserve the soft tissue constraints (ligaments) in the hip when possible to maintain normal hip biomechanics.”(1)\r\n\r\nPlus, a study in the <em>Journal of Biomechanics</em> explained the importance of hip ligaments while stressing the need to save the ligaments writing, “Laboratory data indicate the hip capsular ligaments prevent an excessive range of motion, may protect the joint against adverse edge loading, and contribute to synovial fluid replenishment at the cartilage surfaces of the joint. However, their repair after joint preserving (hip arthroscopy) or arthroplasty (hip replacement) surgery is not routine.\" (2)\r\n\r\nThe researchers stress the importance of preserving the ligaments. Clearly, the bone-on-bone situation is not the only problem that needs to be addressed in the degenerated hip. It is vital to repair the injured ligaments because if not, the problem and the pain can continue. The hip needs to be treated comprehensively.\r\n\r\nA February 2021 paper in the journal <em>International Orthopaedics</em> offers this opinion on the future of surgery: “Orthopedic surgeons are at an exciting crossroads in medicine, where hip biologic therapies are evolving and increasingly available. Time-tested interventions such as arthroplasty have shown good results and still have a major role to play <strong>but newer, regenerative approaches have the potential to effectively delay or reduce the requirement for such invasive procedures.</strong><strong>”</strong> (3)\r\n\r\nThere are certainly times when surgery is needed. However, regenerative treatments are great alternatives in many cases.\r\n<h2>Regenerative Orthopedics: Hip Arthritis Treatment</h2>\r\nLet\'s look at some of the studies and see what they say about the effectiveness of regenerative therapies like Prolotherapy, PRP, and Stem Cell Therapy.\r\n\r\n<strong><em>Prolotherapy</em></strong>\r\n\r\nHauser et al. looked at 61 patients with hip pain, and 95% said their pain decreased after Prolotherapy. (4)\r\n\r\nResearchers in the journal <em>Medical Science Monitor</em> said, “To our best knowledge, this study is the first regarding the effects of an injection method in treating osteoarthritis secondary to developmental dysplasia of the hip. According to our study, Prolotherapy is superior to exercise. Prolotherapy could provide significant improvement for clinical outcomes in developmental dysplasia of the hip and might delay surgery.\" (5)\r\n\r\n<strong><em>PRP</em></strong>\r\n\r\nAs far as PRP, the <em>American Journal of Sports Medicine</em> journal says this: “Results indicated that intra-articular PRP injections offer a significant clinical improvement in patients with hip osteoarthritis without relevant side effects.\" (6)\r\n\r\n<strong><em>Stem Cell Therapy</em></strong>\r\n\r\nAt OrthoRegen®, we may use PRP and Stem Cell Therapy in cases where the hip degeneration is more advanced. We call this the Gold Standard in Stem Cell Therapy because we will use Prolotherapy, PRP, and stem cells to comprehensively treat all of the injured structures of the hip joint.\r\n\r\n<em>Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders</em> shows that stem cells regenerate tissue damage within the osteoarthritic joint and, when used in combination with <strong>Prolotherapy injections</strong>, can repair hip stability. (7)\r\n\r\nAt OrthoRegen, we\'ve had years of experience in regenerative therapies. If you are suffering from hip arthritis and are looking for an alternative to hip replacement, please call us. We\'d love to help you stop the arthritis cycle and repair the damaged hip structures so you can return to the activities you love.\r\n\r\n(1) Smith MV, Costic RS, Allaire R, Schilling PL, Sekiya JK. A biomechanical analysis of the soft tissue and osseous constraints of the hip joint. Knee Surgery, Sports Traumatology, Arthroscopy. 2014 Apr 1;22(4):946-52.\r\n\r\n(2) Van Arkel RJ, Amis AA, Jeffers JR. The envelope of passive motion allowed by the capsular ligaments of the hip. Journal of biomechanics. 2015 Nov 5;48(14):3803-9.\r\n\r\n(3) Hevesi M, Jacob G, Shimomura K, Ando W, Nakamura N, Krych AJ. Current hip cartilage regeneration/repair modalities: a scoping review of biologics and surgery. International Orthopaedics. 2020 Sep 10:1-5.\r\n\r\n(4) Hauser RA, Hauser MA. A Retrospective Study on Hackett-Hemwall Dextrose Prolotherapy for Chronic Hip Pain at an Outpatient Charity Clinic in Rural Illinois. Journal of Prolotherapy. 2009;2:76-88.\r\n\r\n(5) Gül D, Orsçelik A, Akpancar S. Treatment of Osteoarthritis Secondary to Developmental Dysplasia of the Hip with Prolotherapy Injection versus a Supervised Progressive Exercise Control. <em>Med Sci Monit</em>. 2020;26:e919166. Published 2020 Feb 11. doi:10.12659/MSM.919166\r\n\r\n(6) Dallari D, Stagni C, Rani N, Sabbioni G, Pelotti P, Torricelli P, Tschon M, Giavaresi G.Ultrasound-Guided Injection of Platelet-Rich Plasma and Hyaluronic Acid, Separately and in Combination, for Hip Osteoarthritis: A Randomized Controlled Study. <em>Am J Sports Med</em>. 2016 Mar;44(3):664-71. doi: 10.1177/0363546515620383. Epub 2016 Jan 21\r\n\r\n(7) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. <em>Clin Med Insights Arthritis Musculoskelet Disord</em>. 2013 Sep 4;6:65-72. doi: 10.4137/CMAMD.S10951. eCollection 2013.','Hip Arthritis?','','inherit','closed','closed','','5798-revision-v1','','','2023-06-09 21:06:00','2023-06-09 21:06:00','',5798,'https://www.drfields.com/?p=5809',0,'revision','',0),(5810,9,'2023-06-09 21:07:48','2023-06-09 21:07:48','<h2><img class=\"alignright wp-image-5799\" src=\"https://www.drfields.com/wp-content/uploads/2023/06/Hip-Arthritis-500x419.png\" alt=\"Hip Arthritis Treatment\" width=\"300\" height=\"251\" />Hip Arthritis Treatment</h2>\r\nIf you have hip arthritis, there is a good chance you are looking for an alternative to hip replacement. Are you looking for a way to preserve your hip from hip replacement surgery? What is the best hip arthritis treatment?\r\n\r\nFor those who still have good range of motion in their hip, Regenerative Orthopedics may be your alternative to hip replacement. Regenerative Orthopedics is a non-surgical regenerative therapy that includes Prolotherapy, PRP, and Stem Cell Therapy. At OrthoRegen®, we use the Gold Standard in Stem Cell Therapy.\r\n<h2>An Alternative to Hip Replacement Surgery</h2>\r\nOften, hip replacement is chosen because the patient is told they have bone-on-bone arthritis, and hip replacement is the only option. As you read, you will see that hip replacement is not the only option for bone-on-bone arthritis, but Regenerative Orthopedics is practical in many arthritis cases.\r\n\r\nMany people assume that once they get a hip replacement, they will be good to go, and can get back to all the activities they want. This is not always the case. Some people continue to have pain after the replacement.\r\n\r\nAdditionally, it\'s essential to remember that hip replacements do not last forever. If the patient is younger, remember that replacements will wear out after 15-plus years.\r\n\r\nHip replacements may not provide the desired relief sought. Instead, chronic pain and incomplete function after surgery is a possibility. And surgery is permanent. Once surgery is done, it cannot be undone. Fortunately, there is an alternative! Regenerative Orthopedics is an effective hip arthritis treatment that can help get you back to the activities you enjoy.\r\n<h2>Background: The Hip Arthritis Cycle</h2>\r\nThe cycle of hip arthritis begins sometime after an injury occurs to the hip joint. That injury could have been an acute trauma-type injury. Or the damage relates to wear and tear over time. The injury then causes the hip joint to move abnormally. Once the soft tissue, like tendons, ligaments, and even the hip labrum, become injured, worn, and/or weakened, they allow for the hip joint to become unstable. The hip instability then causes further joint injury. The cartilage that lines the hip joint also degenerates, and sclerotic changes can be seen on an x-ray, and arthritis is diagnosed.\r\n\r\nIs the cartilage degeneration causing the pain? Interestingly, cartilage has no nerve endings, so the pain is not coming from the cartilage. Ligaments, however, are highly innervated. They do have nerves. And when injured, can elicit pain. Therefore, the injured, weak ligaments can be the source of joint pain.\r\n<h2>Hip Ligaments and Hip Arthritis</h2>\r\nPeople do not wake up one morning with advanced bone-on-bone hip osteoarthritis. Something did cause it. Bone-on-bone hip osteoarthritis is the end result of continued, prolonged, unrelenting hip joint degeneration due to damaged, loose hip ligaments.\r\n\r\nFortunately, Regenerative Orthopedics treats the weak, injured, and lax ligaments and other soft tissue structures of the hip that are in need of repair. The treatments do not just cover up pain, as pain meds and anti-inflammatories do. Regenerative Orthopedics regenerates and repair the hip.\r\n\r\nThe three main ligaments of the hip, the iliofemoral, pubofemoral, and ischiofemoral ligaments, are very strong. Normally, when these ligaments are healthy, they keep your hip stable. But when they become injured, the hip becomes unstable. With the instability, the hip labrum and other soft tissue begin to tear. And the ball of the hip bone rubs the wrong way and causes the degeneration to continue. Researchers agree about the importance of healthy ligaments in order to have a healthy hip joint.\r\n<h2>Research on How Ligaments Affect the Health of the Hip Joint</h2>\r\nWhen examining why patients continue to have pain after hip surgery, Researchers said this in the Knee Surgery, Sports Traumatology, Arthroscopy journal, \"surgical management for hip disorders should preserve the soft tissue constraints (ligaments) in the hip when possible to maintain normal hip biomechanics.”(1)\r\n\r\nPlus, a study in the <em>Journal of Biomechanics</em> explained the importance of hip ligaments while stressing the need to save the ligaments writing, “Laboratory data indicate the hip capsular ligaments prevent an excessive range of motion, may protect the joint against adverse edge loading, and contribute to synovial fluid replenishment at the cartilage surfaces of the joint. However, their repair after joint preserving (hip arthroscopy) or arthroplasty (hip replacement) surgery is not routine.\" (2)\r\n\r\nThe researchers stress the importance of preserving the ligaments. Clearly, the bone-on-bone situation is not the only problem that needs to be addressed in the degenerated hip. It is vital to repair the injured ligaments because if not, the problem and the pain can continue. The hip needs to be treated comprehensively.\r\n\r\nA February 2021 paper in the journal <em>International Orthopaedics</em> offers this opinion on the future of surgery: “Orthopedic surgeons are at an exciting crossroads in medicine, where hip biologic therapies are evolving and increasingly available. Time-tested interventions such as arthroplasty have shown good results and still have a major role to play <strong>but newer, regenerative approaches have the potential to effectively delay or reduce the requirement for such invasive procedures.</strong><strong>”</strong> (3)\r\n\r\nThere are certainly times when surgery is needed. However, regenerative treatments are great alternatives in many cases.\r\n<h2>Regenerative Orthopedics: Hip Arthritis Treatment</h2>\r\nLet\'s look at some of the studies and see what they say about the effectiveness of regenerative therapies like Prolotherapy, PRP, and Stem Cell Therapy.\r\n\r\n<strong><em>Prolotherapy</em></strong>\r\n\r\nHauser et al. looked at 61 patients with hip pain, and 95% said their pain decreased after Prolotherapy. (4)\r\n\r\nResearchers in the journal <em>Medical Science Monitor</em> said, “To our best knowledge, this study is the first regarding the effects of an injection method in treating osteoarthritis secondary to developmental dysplasia of the hip. According to our study, Prolotherapy is superior to exercise. Prolotherapy could provide significant improvement for clinical outcomes in developmental dysplasia of the hip and might delay surgery.\" (5)\r\n\r\n<strong><em>PRP</em></strong>\r\n\r\nAs far as PRP, the <em>American Journal of Sports Medicine</em> journal says this: “Results indicated that intra-articular PRP injections offer a significant clinical improvement in patients with hip osteoarthritis without relevant side effects.\" (6)\r\n\r\n<strong><em>Stem Cell Therapy</em></strong>\r\n\r\nAt OrthoRegen®, we may use PRP and Stem Cell Therapy in cases where the hip degeneration is more advanced. We call this the Gold Standard in Stem Cell Therapy because we will use Prolotherapy, PRP, and stem cells to comprehensively treat all of the injured structures of the hip joint.\r\n\r\n<em>Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders</em> shows that stem cells regenerate tissue damage within the osteoarthritic joint and, when used in combination with <strong>Prolotherapy injections</strong>, can repair hip stability. (7)\r\n\r\nAt OrthoRegen, we\'ve had years of experience in regenerative therapies as hip arthritis treatments. If you are suffering from hip arthritis and are looking for an alternative to hip replacement, please call us. We\'d love to help you stop the arthritis cycle and repair the damaged hip structures so you can return to the activities you love.\r\n\r\n(1) Smith MV, Costic RS, Allaire R, Schilling PL, Sekiya JK. A biomechanical analysis of the soft tissue and osseous constraints of the hip joint. Knee Surgery, Sports Traumatology, Arthroscopy. 2014 Apr 1;22(4):946-52.\r\n\r\n(2) Van Arkel RJ, Amis AA, Jeffers JR. The envelope of passive motion allowed by the capsular ligaments of the hip. Journal of biomechanics. 2015 Nov 5;48(14):3803-9.\r\n\r\n(3) Hevesi M, Jacob G, Shimomura K, Ando W, Nakamura N, Krych AJ. Current hip cartilage regeneration/repair modalities: a scoping review of biologics and surgery. International Orthopaedics. 2020 Sep 10:1-5.\r\n\r\n(4) Hauser RA, Hauser MA. A Retrospective Study on Hackett-Hemwall Dextrose Prolotherapy for Chronic Hip Pain at an Outpatient Charity Clinic in Rural Illinois. Journal of Prolotherapy. 2009;2:76-88.\r\n\r\n(5) Gül D, Orsçelik A, Akpancar S. Treatment of Osteoarthritis Secondary to Developmental Dysplasia of the Hip with Prolotherapy Injection versus a Supervised Progressive Exercise Control. <em>Med Sci Monit</em>. 2020;26:e919166. Published 2020 Feb 11. doi:10.12659/MSM.919166\r\n\r\n(6) Dallari D, Stagni C, Rani N, Sabbioni G, Pelotti P, Torricelli P, Tschon M, Giavaresi G.Ultrasound-Guided Injection of Platelet-Rich Plasma and Hyaluronic Acid, Separately and in Combination, for Hip Osteoarthritis: A Randomized Controlled Study. <em>Am J Sports Med</em>. 2016 Mar;44(3):664-71. doi: 10.1177/0363546515620383. Epub 2016 Jan 21\r\n\r\n(7) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. <em>Clin Med Insights Arthritis Musculoskelet Disord</em>. 2013 Sep 4;6:65-72. doi: 10.4137/CMAMD.S10951. eCollection 2013.','Hip Arthritis?','','inherit','closed','closed','','5798-revision-v1','','','2023-06-09 21:07:48','2023-06-09 21:07:48','',5798,'https://www.drfields.com/?p=5810',0,'revision','',0),(5811,9,'2023-06-09 21:10:24','2023-06-09 21:10:24','<h2>\r\n<img class=\"alignright wp-image-5799\" src=\"https://www.drfields.com/wp-content/uploads/2023/06/Hip-Arthritis-500x419.png\" alt=\"Hip Arthritis Treatment\" width=\"300\" height=\"251\" /><span style=\"font-size: 16px;\">Hip Arthritis Treatment</span></h2>\r\nIf you have hip arthritis, there is a good chance you are looking for an alternative to hip replacement. Are you seeking a way to preserve your hip from hip replacement surgery? What is the best hip arthritis treatment?\r\n\r\nFor those who still have good range of motion in their hip, Regenerative Orthopedics may be your alternative to hip replacement. Regenerative Orthopedics is a non-surgical regenerative therapy that includes Prolotherapy, PRP, and Stem Cell Therapy. At OrthoRegen®, we use the Gold Standard in Stem Cell Therapy.\r\n<h2>An Alternative to Hip Replacement Surgery</h2>\r\nOften, hip replacement is chosen because the patient is told they have bone-on-bone arthritis, and hip replacement is the only option. As you read, you will see that hip replacement is not the only option for bone-on-bone arthritis, but Regenerative Orthopedics is practical in many arthritis cases.\r\n\r\nMany people assume that once they get a hip replacement, they will be good to go, and can get back to all the activities they want. This is not always the case. Some people continue to have pain after the replacement.\r\n\r\nAdditionally, it\'s essential to remember that hip replacements do not last forever. If the patient is younger, remember that replacements will wear out after 15-plus years.\r\n\r\nHip replacements may not provide the desired relief sought. Instead, chronic pain and incomplete function after surgery is a possibility. And surgery is permanent. Once surgery is done, it cannot be undone. Fortunately, there is an alternative! Regenerative Orthopedics is an effective hip arthritis treatment that can help get you back to the activities you enjoy.\r\n<h2>Background: The Hip Arthritis Cycle</h2>\r\nThe cycle of hip arthritis begins sometime after an injury occurs to the hip joint. That injury could have been an acute trauma-type injury. Or the damage relates to wear and tear over time. The injury then causes the hip joint to move abnormally. Once the soft tissue, like tendons, ligaments, and even the hip labrum, become injured, worn, and/or weakened, they allow for the hip joint to become unstable. The hip instability then causes further joint injury. The cartilage that lines the hip joint also degenerates, and sclerotic changes can be seen on an x-ray, and arthritis is diagnosed.\r\n\r\nIs the cartilage degeneration causing the pain? Interestingly, cartilage has no nerve endings, so the pain is not coming from the cartilage. Ligaments, however, are highly innervated. They do have nerves. And when injured, can elicit pain. Therefore, the injured, weak ligaments can be the source of joint pain.\r\n<h2>Hip Ligaments and Hip Arthritis</h2>\r\nPeople do not wake up one morning with advanced bone-on-bone hip osteoarthritis. Something did cause it. Bone-on-bone hip osteoarthritis is the end result of continued, prolonged, unrelenting hip joint degeneration due to damaged, loose hip ligaments.\r\n\r\nFortunately, Regenerative Orthopedics treats the weak, injured, and lax ligaments and other soft tissue structures of the hip that are in need of repair. The treatments do not just cover up pain, as pain meds and anti-inflammatories do. Regenerative Orthopedics regenerates and repair the hip.\r\n\r\nThe three main ligaments of the hip, the iliofemoral, pubofemoral, and ischiofemoral ligaments, are very strong. Normally, when these ligaments are healthy, they keep your hip stable. But when they become injured, the hip becomes unstable. With the instability, the hip labrum and other soft tissue begin to tear. And the ball of the hip bone rubs the wrong way and causes the degeneration to continue. Researchers agree about the importance of healthy ligaments in order to have a healthy hip joint.\r\n<h2>Research on How Ligaments Affect the Health of the Hip Joint</h2>\r\nWhen examining why patients continue to have pain after hip surgery, Researchers said this in the Knee Surgery, Sports Traumatology, Arthroscopy journal, \"surgical management for hip disorders should preserve the soft tissue constraints (ligaments) in the hip when possible to maintain normal hip biomechanics.”(1)\r\n\r\nPlus, a study in the <em>Journal of Biomechanics</em> explained the importance of hip ligaments while stressing the need to save the ligaments writing, “Laboratory data indicate the hip capsular ligaments prevent an excessive range of motion, may protect the joint against adverse edge loading, and contribute to synovial fluid replenishment at the cartilage surfaces of the joint. However, their repair after joint preserving (hip arthroscopy) or arthroplasty (hip replacement) surgery is not routine.\" (2)\r\n\r\nThe researchers stress the importance of preserving the ligaments. Clearly, the bone-on-bone situation is not the only problem that needs to be addressed in the degenerated hip. It is vital to repair the injured ligaments because if not, the problem and the pain can continue. The hip needs to be treated comprehensively.\r\n\r\nA February 2021 paper in the journal <em>International Orthopaedics</em> offers this opinion on the future of surgery: “Orthopedic surgeons are at an exciting crossroads in medicine, where hip biologic therapies are evolving and increasingly available. Time-tested interventions such as arthroplasty have shown good results and still have a major role to play <strong>but newer, regenerative approaches have the potential to effectively delay or reduce the requirement for such invasive procedures.</strong><strong>”</strong> (3)\r\n\r\nThere are certainly times when surgery is needed. However, regenerative treatments are great alternatives in many cases.\r\n<h2>Regenerative Orthopedics: Hip Arthritis Treatment</h2>\r\nLet\'s look at some of the studies and see what they say about the effectiveness of regenerative therapies like Prolotherapy, PRP, and Stem Cell Therapy.\r\n\r\n<strong><em>Prolotherapy</em></strong>\r\n\r\nHauser et al. looked at 61 patients with hip pain, and 95% said their pain decreased after Prolotherapy. (4)\r\n\r\nResearchers in the journal <em>Medical Science Monitor</em> said, “To our best knowledge, this study is the first regarding the effects of an injection method in treating osteoarthritis secondary to developmental dysplasia of the hip. According to our study, Prolotherapy is superior to exercise. Prolotherapy could provide significant improvement for clinical outcomes in developmental dysplasia of the hip and might delay surgery.\" (5)\r\n\r\n<strong><em>PRP</em></strong>\r\n\r\nAs far as PRP, the <em>American Journal of Sports Medicine</em> journal says this: “Results indicated that intra-articular PRP injections offer a significant clinical improvement in patients with hip osteoarthritis without relevant side effects.\" (6)\r\n\r\n<strong><em>Stem Cell Therapy</em></strong>\r\n\r\nAt OrthoRegen®, we may use PRP and Stem Cell Therapy in cases where the hip degeneration is more advanced. We call this the Gold Standard in Stem Cell Therapy because we will use Prolotherapy, PRP, and stem cells to comprehensively treat all of the injured structures of the hip joint.\r\n\r\n<em>Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders</em> shows that stem cells regenerate tissue damage within the osteoarthritic joint and, when used in combination with <strong>Prolotherapy injections</strong>, can repair hip stability. (7)\r\n\r\nAt OrthoRegen, we\'ve had years of experience in regenerative therapies as a hip arthritis treatment. If you are suffering from hip arthritis and are looking for an alternative to hip replacement, please call us. We\'d love to help you stop the arthritis cycle and repair the damaged hip structures so you can return to the activities you love.\r\n\r\n(1) Smith MV, Costic RS, Allaire R, Schilling PL, Sekiya JK. A biomechanical analysis of the soft tissue and osseous constraints of the hip joint. Knee Surgery, Sports Traumatology, Arthroscopy. 2014 Apr 1;22(4):946-52.\r\n\r\n(2) Van Arkel RJ, Amis AA, Jeffers JR. The envelope of passive motion allowed by the capsular ligaments of the hip. Journal of biomechanics. 2015 Nov 5;48(14):3803-9.\r\n\r\n(3) Hevesi M, Jacob G, Shimomura K, Ando W, Nakamura N, Krych AJ. Current hip cartilage regeneration/repair modalities: a scoping review of biologics and surgery. International Orthopaedics. 2020 Sep 10:1-5.\r\n\r\n(4) Hauser RA, Hauser MA. A Retrospective Study on Hackett-Hemwall Dextrose Prolotherapy for Chronic Hip Pain at an Outpatient Charity Clinic in Rural Illinois. Journal of Prolotherapy. 2009;2:76-88.\r\n\r\n(5) Gül D, Orsçelik A, Akpancar S. Treatment of Osteoarthritis Secondary to Developmental Dysplasia of the Hip with Prolotherapy Injection versus a Supervised Progressive Exercise Control. <em>Med Sci Monit</em>. 2020;26:e919166. Published 2020 Feb 11. doi:10.12659/MSM.919166\r\n\r\n(6) Dallari D, Stagni C, Rani N, Sabbioni G, Pelotti P, Torricelli P, Tschon M, Giavaresi G.Ultrasound-Guided Injection of Platelet-Rich Plasma and Hyaluronic Acid, Separately and in Combination, for Hip Osteoarthritis: A Randomized Controlled Study. <em>Am J Sports Med</em>. 2016 Mar;44(3):664-71. doi: 10.1177/0363546515620383. Epub 2016 Jan 21\r\n\r\n(7) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. <em>Clin Med Insights Arthritis Musculoskelet Disord</em>. 2013 Sep 4;6:65-72. doi: 10.4137/CMAMD.S10951. eCollection 2013.','Hip Arthritis?','','inherit','closed','closed','','5798-revision-v1','','','2023-06-09 21:10:24','2023-06-09 21:10:24','',5798,'https://www.drfields.com/?p=5811',0,'revision','',0),(5812,9,'2023-06-09 21:15:57','2023-06-09 21:15:57','<h2><img class=\"alignright wp-image-5799\" src=\"https://www.drfields.com/wp-content/uploads/2023/06/Hip-Arthritis-500x419.png\" alt=\"Hip Arthritis Treatment\" width=\"300\" height=\"251\" /><span style=\"font-size: 16px;\">Hip Arthritis Treatment</span></h2>\r\nIf you have hip arthritis, there is a good chance you are looking for an alternative to hip replacement. Are you seeking a way to preserve your hip from hip replacement surgery? What is the best hip arthritis treatment?\r\n\r\nFor those who still have good range of motion in their hip, Regenerative Orthopedics may be your alternative to hip replacement. Regenerative Orthopedics is a non-surgical regenerative therapy that includes Prolotherapy, PRP, and Stem Cell Therapy. At OrthoRegen®, we use the Gold Standard in Stem Cell Therapy.\r\n<h2>An Alternative to Hip Replacement Surgery</h2>\r\nOften, hip replacement is chosen because the patient is told they have bone-on-bone arthritis, and hip replacement is the only option. As you read, you will see that hip replacement is not the only option for bone-on-bone arthritis, but Regenerative Orthopedics is practical in many arthritis cases.\r\n\r\nMany people assume that once they get a hip replacement, they will be good to go, and can get back to all the activities they want. This is not always the case. Some people continue to have pain after the replacement.\r\n\r\nAdditionally, it\'s essential to remember that hip replacements do not last forever. If the patient is younger, remember that replacements will wear out after 15-plus years.\r\n\r\nHip replacements may not provide the desired relief sought. Instead, chronic pain and incomplete function after surgery is a possibility. And surgery is permanent. Once surgery is done, it cannot be undone. Fortunately, there is an alternative! Regenerative Orthopedics is an effective hip arthritis treatment that can help get you back to the activities you enjoy.\r\n<h2>Background: The Hip Arthritis Cycle</h2>\r\nThe cycle of hip arthritis begins sometime after an injury occurs to the hip joint. That injury could have been an acute trauma-type injury. Or the damage relates to wear and tear over time. The injury then causes the hip joint to move abnormally. Once the soft tissue, like tendons, ligaments, and even the hip labrum, become injured, worn, and/or weakened, they allow for the hip joint to become unstable. The hip instability then causes further joint injury. The cartilage that lines the hip joint also degenerates, and sclerotic changes can be seen on an x-ray, and arthritis is diagnosed.\r\n\r\nIs the cartilage degeneration causing the pain? Interestingly, cartilage has no nerve endings, so the pain is not coming from the cartilage. Ligaments, however, are highly innervated. They do have nerves. And when injured, can elicit pain. Therefore, the injured, weak ligaments can be the source of joint pain.\r\n<h2>Hip Ligaments and Hip Arthritis</h2>\r\nPeople do not wake up one morning with advanced bone-on-bone hip osteoarthritis. Something did cause it. Bone-on-bone hip osteoarthritis is the end result of continued, prolonged, unrelenting hip joint degeneration due to damaged, loose hip ligaments.\r\n\r\nFortunately, Regenerative Orthopedics treats the weak, injured, and lax ligaments and other soft tissue structures of the hip that are in need of repair. The treatments do not just cover up pain, as pain meds and anti-inflammatories do. Regenerative Orthopedics regenerates and repair the hip.\r\n\r\nThe three main ligaments of the hip, the iliofemoral, pubofemoral, and ischiofemoral ligaments, are very strong. Normally, when these ligaments are healthy, they keep your hip stable. But when they become injured, the hip becomes unstable. With the instability, the hip labrum and other soft tissue begin to tear. And the ball of the hip bone rubs the wrong way and causes the degeneration to continue. Researchers agree about the importance of healthy ligaments in order to have a healthy hip joint.\r\n<h2>Research on How Ligaments Affect the Health of the Hip Joint</h2>\r\nWhen examining why patients continue to have pain after hip surgery, Researchers said this in the Knee Surgery, Sports Traumatology, Arthroscopy journal, \"surgical management for hip disorders should preserve the soft tissue constraints (ligaments) in the hip when possible to maintain normal hip biomechanics.”(1)\r\n<h3><em>How Important Are Hip Ligaments?</em></h3>\r\nPlus, a study in the <em>Journal of Biomechanics</em> explained the importance of hip ligaments while stressing the need to save the ligaments writing, “Laboratory data indicate the hip capsular ligaments prevent an excessive range of motion, may protect the joint against adverse edge loading, and contribute to synovial fluid replenishment at the cartilage surfaces of the joint. However, their repair after joint preserving (hip arthroscopy) or arthroplasty (hip replacement) surgery is not routine.\" (2)\r\n<h3>Bone-On-Bone Is Not the Only Problem to Address with Damaged Joints</h3>\r\nThe researchers stress the importance of preserving the ligaments. Clearly, the bone-on-bone situation is not the only problem that needs to be addressed in the degenerated hip. It is vital to repair the injured ligaments because if not, the problem and the pain can continue. The hip needs to be treated comprehensively.\r\n\r\nA February 2021 paper in the journal <em>International Orthopaedics</em> offers this opinion on the future of surgery: “Orthopedic surgeons are at an exciting crossroads in medicine, where hip biologic therapies are evolving and increasingly available. Time-tested interventions such as arthroplasty have shown good results and still have a major role to play <strong>but newer, regenerative approaches have the potential to effectively delay or reduce the requirement for such invasive procedures.</strong><strong>”</strong> (3)\r\n\r\nThere are certainly times when surgery is needed. However, regenerative treatments are great alternatives in many cases.\r\n<h2>Regenerative Orthopedics: Hip Arthritis Treatment</h2>\r\nLet\'s look at some of the studies and see what they say about the effectiveness of regenerative therapies like Prolotherapy, PRP, and Stem Cell Therapy.\r\n\r\n<strong><em>Prolotherapy</em></strong>\r\n\r\nHauser et al. looked at 61 patients with hip pain, and 95% said their pain decreased after Prolotherapy. (4)\r\n\r\nResearchers in the journal <em>Medical Science Monitor</em> said, “To our best knowledge, this study is the first regarding the effects of an injection method in treating osteoarthritis secondary to developmental dysplasia of the hip. According to our study, Prolotherapy is superior to exercise. Prolotherapy could provide significant improvement for clinical outcomes in developmental dysplasia of the hip and might delay surgery.\" (5)\r\n\r\n<strong><em>PRP</em></strong>\r\n\r\nAs far as PRP, the <em>American Journal of Sports Medicine</em> journal says this: “Results indicated that intra-articular PRP injections offer a significant clinical improvement in patients with hip osteoarthritis without relevant side effects.\" (6)\r\n\r\n<strong><em>Stem Cell Therapy</em></strong>\r\n\r\nAt OrthoRegen®, we may use PRP and Stem Cell Therapy in cases where the hip degeneration is more advanced. We call this the Gold Standard in Stem Cell Therapy because we will use Prolotherapy, PRP, and stem cells to comprehensively treat all of the injured structures of the hip joint.\r\n\r\n<em>Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders</em> shows that stem cells regenerate tissue damage within the osteoarthritic joint and, when used in combination with <strong>Prolotherapy injections</strong>, can repair hip stability. (7)\r\n\r\nAt OrthoRegen, we\'ve had years of experience in regenerative therapies as a hip arthritis treatment. If you are suffering from hip arthritis and are looking for an alternative to hip replacement, please call us. We\'d love to help you stop the arthritis cycle and repair the damaged hip structures so you can return to the activities you love.\r\n\r\n(1) Smith MV, Costic RS, Allaire R, Schilling PL, Sekiya JK. A biomechanical analysis of the soft tissue and osseous constraints of the hip joint. Knee Surgery, Sports Traumatology, Arthroscopy. 2014 Apr 1;22(4):946-52.\r\n\r\n(2) Van Arkel RJ, Amis AA, Jeffers JR. The envelope of passive motion allowed by the capsular ligaments of the hip. Journal of biomechanics. 2015 Nov 5;48(14):3803-9.\r\n\r\n(3) Hevesi M, Jacob G, Shimomura K, Ando W, Nakamura N, Krych AJ. Current hip cartilage regeneration/repair modalities: a scoping review of biologics and surgery. International Orthopaedics. 2020 Sep 10:1-5.\r\n\r\n(4) Hauser RA, Hauser MA. A Retrospective Study on Hackett-Hemwall Dextrose Prolotherapy for Chronic Hip Pain at an Outpatient Charity Clinic in Rural Illinois. Journal of Prolotherapy. 2009;2:76-88.\r\n\r\n(5) Gül D, Orsçelik A, Akpancar S. Treatment of Osteoarthritis Secondary to Developmental Dysplasia of the Hip with Prolotherapy Injection versus a Supervised Progressive Exercise Control. <em>Med Sci Monit</em>. 2020;26:e919166. Published 2020 Feb 11. doi:10.12659/MSM.919166\r\n\r\n(6) Dallari D, Stagni C, Rani N, Sabbioni G, Pelotti P, Torricelli P, Tschon M, Giavaresi G.Ultrasound-Guided Injection of Platelet-Rich Plasma and Hyaluronic Acid, Separately and in Combination, for Hip Osteoarthritis: A Randomized Controlled Study. <em>Am J Sports Med</em>. 2016 Mar;44(3):664-71. doi: 10.1177/0363546515620383. Epub 2016 Jan 21\r\n\r\n(7) Hauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. <em>Clin Med Insights Arthritis Musculoskelet Disord</em>. 2013 Sep 4;6:65-72. doi: 10.4137/CMAMD.S10951. eCollection 2013.','Hip Arthritis?','','inherit','closed','closed','','5798-revision-v1','','','2023-06-09 21:15:57','2023-06-09 21:15:57','',5798,'https://www.drfields.com/?p=5812',0,'revision','',0),(5813,9,'2023-06-09 21:18:33','2023-06-09 21:18:33','<h2><img class=\"alignright wp-image-5796\" src=\"https://www.drfields.com/wp-content/uploads/2023/06/Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-500x419.png\" alt=\"Tennis Elbow Treatment\" width=\"365\" height=\"305\" />Tennis Elbow Treatment</h2>\r\nYou don\'t have to be a tennis player to have tennis elbow. Tennis elbow is a condition caused by overuse. Sufferers might be painters, writers, guitar players, or anyone who does an activity requiring repetitive use of the arm and elbow. In this article, we\'ll delve into tennis elbow as well as tennis elbow treatment.\r\n\r\nTennis elbow pain may radiate from the outer elbow into the forearm and wrist. These symptoms may make daily activities difficult. Even simple tasks like turning a doorknob or picking up, holding, and gripping objects.\r\n\r\nOver-the-counter pain medications, NSAIDs, cortisone injections, bracing, taping, physical therapy, and massage, may work to bring some relief. But when these fail to achieve the desired relief, and your elbow continues to hurt, it is time to seek reparative, regenerative treatments like Regenerative Orthopedics.\r\n<h2>Lateral Epicondylitis</h2>\r\nThe medical terminology for tennis elbow is lateral epicondylitis. The \"itis\" at the end of this word suggests inflammation of the tendon where it attaches to the bony prominence of the elbow (the lateral epicondyle). However, in tennis elbow, there is not always evidence of inflammation.  And because of that, there is some controversy about the treatment for the condition. The <em>Journal of Shoulder and Elbow Surgery says this</em>:\r\n<ul>\r\n 	<li>“As orthopaedic surgeons, we are besieged by myths that guide our treatment of lateral epicondylitis, or “tennis elbow.” This extends from the term used to describe the condition to the nonoperative and operative treatments as well. The term epicondylitis suggests an inflammatory cause; however, in all but 1 publication examining pathologic specimens of patients operated on for this condition, <strong>no evidence of acute or chronic inflammation is found</strong>.\"(<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/10543604\">1</a>)</li>\r\n</ul>\r\nThe Open Access Journal of Sports Medicine also notes the controversy:\r\n<ul>\r\n 	<li>“Although most cases are self-limiting over several years, controversy exists regarding the best treatment strategy for chronic lateral epicondylitis.”(2)</li>\r\n</ul>\r\n<h2>Tendinosis Rather Than Tendonitis</h2>\r\nWhen elbow pain is chronic, and has lasted for an extended amount of time, it is likely that the problem is tendinosis, a condition of tendon degeneration.\r\n\r\n<strong><em>What does all of that mean? What is tendinopathy, tendonitis, or tendinosis?</em></strong>\r\n\r\nTendinopathy is a broad term often used to describe any problem with a tendon.\r\n\r\nTendonitis refers to inflammation of the tendon, and is actually a less common cause of tendon pain than you might think.\r\n\r\nTendinosis is the breakdown (degeneration) of the collagen fibers in the tendon. It happens slowly and is often the result of tendon overuse.\r\n\r\nTendinosis is therefore the chronic non-inflammatory degeneration of a tendon. The condition may develop as a result of chronic tendonitis or due to repetitive strain-injuries to a tendon without adequate time to heal. Tendinosis is a more common cause of tendon pain. Since inflammation is not the issue, the problem does not respond well to anti-inflammatories.<strong> </strong>\r\n<h2>Tennis Elbow: An Overuse Injury</h2>\r\nOveruse injuries are activity-related injuries linked to repetitive stress placed on the tendon, ligament or other joint structure. Doing too much of the same activity strains the soft tissue structures of the elbow. Using poor or improper technique while training or poor form when painting can overload the muscles, tendons, and ligaments, and cause an overuse injury.\r\n<h2>Instability May Be Behind Tennis Elbow</h2>\r\nChronic elbow pain may be related to ligament, muscle, and tendon injury. In order to resolve the problem, all of these areas need to be addressed for alleviation of the pain.\r\n\r\nIt is possible that elbow pain is a result of injury of the elbow ligaments. When elbow ligaments are involved, they may be frayed, torn, or otherwise weakened. Why is it important to address the ligaments if tennis elbow is a tendon problem? Ligaments are dense bands of connective tissue that attach one bone to another. They hold the bones in place, and allow for a strong, stable base upon which the muscles contract and move the joint. When a tendon is injured, there is often ligament involvement as well, and these soft tissue structures need to be repaired to stop the problem.\r\n\r\nWhen the ligaments are injured or weakened, they can cause strain on the tendon and other joint structures. This allows for excessive elbow movement and instability. In this cycle of instability, the tendons will attempt to hold the muscle to the bone, increasing stress, and increasing the possibility of injury to the tendon.<strong> </strong>\r\n<h2>Is Bracing a Tennis Elbow Treatment that Helps?<strong> </strong></h2>\r\n<em><u>Bracing</u></em>\r\n\r\nThe journal <em>Prosthetics and Orthotics International</em> (3) examined the popular counterforce brace in people with problems of lateral elbow tendinopathy and found that physical therapy had better results.\r\n\r\nIn fact, researchers have concluded that braces, sleeves, tapes, and elbow bands may just be a waste of money, and that they probably only provide placebo affects.(4)\r\n<h2><em><u>What About Surgery as a Tennis Elbow Treatment?</u></em></h2>\r\n<strong>The <em>US National Institutes of Health Clinical Trial</em></strong><strong> website</strong><strong> says: “<em>Despite its promise, there have been no high-quality studies evaluating the efficacy of arthroscopic tennis elbow release, bringing the actual efficacy of this procedure into question.” </em>(5)</strong>\r\n\r\n<em>The British Journal of Sports Medicine </em>has an article entitled:<strong> “Time to put down the scalpel?”</strong> It says,“Our published review highlighted the importance of sham surgery in randomized controlled surgical trials including those in tendinopathy. Compared with using a non-surgical control group, sham surgery equalizes the placebo effect of surgery and gives more realistic insights into the effectiveness of the actual surgical procedure in question.\"(6)<strong> </strong>\r\n<h2>There’s Another Way and It Does Not Require Surgery!</h2>\r\n<h3><em>Regenerative Orthopedics: Tennis Elbow Treatment</em></h3>\r\nRegenerative Orthopedics is a non-surgical treatment that effectively repairs the tendons and ligaments involved in tennis elbow. Prolotherapy is one type of Regenerative Orthopedics and studies show its effectiveness in treating tennis elbow.\r\n\r\nProlotherapy is an injection technique that works to regenerate the degenerated tendon and ligaments. The injection of simple dextrose mimics the natural healing response and stimulates healing growth factors to repair the tissue.\r\n<h2>What Does the Research Say About Prolotherapy?</h2>\r\n<ul>\r\n 	<li>Researchers published a study in the <em>American Journal of Physical Medicine &amp; Rehabilitation </em>that evaluated Prolotherapy for tennis elbow. They concluded: <em>“Prolotherapy resulted in safe, significant improvement of elbow pain and function compared with baseline status and follow-up data and the wait-and-see control group” </em>(7).</li>\r\n</ul>\r\n<ul>\r\n 	<li>A study of 84 patients with tennis elbow who were treated with dextrose prolotherapy had statistically significant reductions in pain levels. (8)</li>\r\n</ul>\r\n<ul>\r\n 	<li>Archives of Physical Medicine and Rehabilitation concluded: “Hypertonic dextrose prolotherapy is superior to (placebo) at 12 weeks for decreasing pain intensity and functioning by margins that meet criteria for clinical relevance in the treatment of lateral elbow tendinosis.\" (9)<strong> </strong></li>\r\n</ul>\r\nProlotherapy is effective for tennis elbow! It works because it boosts the body’s healing abilities naturally. It works because it addresses the problem by repairing the injured soft tissue. And it works because it reduces or eliminates the symptoms.\r\n\r\nProlotherapy and other Regenerative Orthopedics, such as PRP and Stem Cell Therapy, all strengthen the involved ligaments and tendons. These therapies stabilize the elbow, strengthen the elbow, address the instability, and put an end to the pain and symptoms of tennis elbow. Recommendations may be made for PRP and/or Stem Cell in more advanced cases, but all treatments would include Prolotherapy.\r\n\r\nIf tennis elbow is a condition you are currently facing, please reach out and give us a call. We would be happy to help you become symptom free.\r\n<h2><strong>References</strong></h2>\r\n(1) Boyer MI. Lateral tennis elbow:” Is there any science out there?.”Journal of Shoulder and Elbow Surgery. 1999;8(5):481-91.\r\n\r\n(2) Lai WC, Erickson BJ, Mlynarek RA, Wang D. Chronic lateral epicondylitis: challenges and solutions. Open Access Journal of Sports Medicine. 2018;9:243.\r\n\r\n(3) Shahabi S, Bagheri Lankarani K, Heydari ST, Jalali M, Ghahramani S, Kamyab M, Tabrizi R, Hosseinabadi M. The effects of counterforce brace on pain in subjects with lateral elbow tendinopathy: A systematic review and meta-analysis of randomized controlled trials. Prosthetics and Orthotics International. 2020 Jul 8:0309364620930618.\r\n\r\n(4) Au IP, Fan PC, Lee WY, Leong MW, Tang OY, An WW, Cheung RT. Effects of Kinesio tape in individuals with lateral epicondylitis: a deceptive crossover trial. Physiotherapy Theory and Practice. 2017 Dec 2;33(12):914-9.\r\n\r\n(5) Kroslak M, Murrell GAC. Surgical Treatment of Lateral Epicondylitis: A Prospective, Randomized, Double-Blinded, Placebo-Controlled Clinical Trial. Am J Sports Med. 2018 Mar 1:363546517753385. doi: 10.1177/0363546517753385.\r\n\r\n(6) Millar, Neal L., George AC Murrell, and Paul Kirwan. \"Time to put down the scalpel? The role of surgery in tendinopathy.\" British Journal of Sports Medicine 54.8 (2020): 441-442.\r\n\r\n(7) Rabago D, Lee KS, Ryan M, Chourasia AO, Sesto ME, Zgierska A, Kijowski R, Grettie J, Wilson J, Miller D. Hypertonic Dextrose and Morrhuate Sodium Injections (Prolotherapy) for Lateral Epicondylosis (Tennis Elbow): Results of a Single-blind, Pilot-Level, Randomized Controlled Trial. Am J Phys Med Rehabil. 2013 Jan 3.\r\n\r\n(8) Shin J, Seo K-M, Kim D-K, Kim B-K, Kang SH. The effect of prolotherapy on lateral epicondylitis of elbow. J Korean Acad Rehabil Med. 2002;26:764–8.\r\n\r\n(9) Zhu M, Rabago D, Chung VC, Reeves KD, Wong SY, Sit RW. Effects of Hypertonic Dextrose Injection (Prolotherapy) in Lateral Elbow Tendinosis: A Systematic Review and Meta-analysis. Archives of Physical Medicine and Rehabilitation. 2022 Feb 28.','Tennis Elbow Treatment','','inherit','closed','closed','','5795-revision-v1','','','2023-06-09 21:18:33','2023-06-09 21:18:33','',5795,'https://www.drfields.com/?p=5813',0,'revision','',0),(5815,8,'2023-06-26 09:41:28','2023-06-26 09:41:28','<img class=\"alignright wp-image-5816\" src=\"https://www.drfields.com/wp-content/uploads/2023/07/Low-Back-Pain-500x419.png\" alt=\"Low Back Pain\" width=\"300\" height=\"251\" />\r\n<h2>Back Pain Specialists</h2>\r\nAt OrthoRegen®, we specialize in treating the joints and the spine. Low back pain is one of the conditions we see quite often. People who come to our clinic typically have already tried various treatments that did not achieve the results they sought, leaving them with a reduced quality of life due to the pain and loss of function they experience. Therefore, they are seeking a back pain specialist and a treatment that works to bring relief.\r\n\r\nIn many cases, our Regenerative Orthopedics specialists can help low back pain sufferers return to the quality of life they desire, with less pain and increased function. If you are tired of taking anti-inflammatories, supplements, cortisone injections, and other remedies and are looking for a solution to your back pain, we believe we can help.\r\n\r\nRegenerative Orthopedics is a non-surgical treatment that repairs the soft tissue of the joints and spine by naturally and effectively strengthening the structures involved and eliminating the pain. Regenerative Orthopedics stimulates the body to repair the painful area and develops new healthy and strong tissue.\r\n<h2>Why Choose OrthoRegen® Back Pain Specialists?</h2>\r\nRegenerative Orthopedics are effective treatment options that do not require surgery. It\'s a great, beneficial treatment that is proven to provide pain relief and repair of the injured soft tissues of the joints and spine. As with any treatment, it is vital to choose an experienced practitioner. Peter A. Fields, MD, DC, has successfully treated back pain patients for many years. He is a joint and back pain specialist who gets results.\r\n<h2>Many Pharmaceuticals Do Not Provide Benefit</h2>\r\nThe Journal of Orthopedic Surgery and Research says, “Clinicians have to choose from drugs with very modest effects and variable risk profiles. Hence, the widespread recommendations to use pharmacological options as a last resort. <strong>The benefits are just not there to justify the routine prolonged use of any given drug in nonspecific chronic low back pain</strong>: this is a major challenge, and it is often hard to accept for clinicians and patients . . . ”\r\n<h2>Lumbar Instability As the Root Cause of Low Back Pain</h2>\r\nIf you have spent months or even years trying to get relief from your back pain, we recommend that you seek out a treatment that repairs the underlying issue, commonly lumbar instability. Other common therapies fail to attain the relief sought because they do not address the root cause of lumbar instability.\r\n\r\nThere are many reasons for low back pain. Conditions such as herniated discs, stenosis, spondylolisthesis, and others. However, the root cause behind these conditions is lumbar instability.\r\n<h2>What Is Lumbar Instability, and How Does it Begin?</h2>\r\nLumbar instability is caused by weakened and damaged ligaments. Once the ligaments become damaged, either by sudden trauma or prolonged wear and tear, the vertebrae begin to move abnormally.\r\n\r\nLigaments are bands of connective tissue that hold bone to bone. Spinal ligaments are primary stabilizers of the vertebrae of the spine. When spinal ligaments can no longer hold the adjacent vertebrae in their correct place, spinal instability becomes an issue. The weakened ligaments allow for excess mobility/motion in the spine. Spinal instability is the most common cause of unresolved low back pain.\r\n\r\nThe body will respond to this instability and attempt to stabilize the area. The result is muscle spasms, swelling, and eventual bone spurs (arthritis).\r\n<h2>OrthoRegen® Back Pain Specialists in Regenerative Orthopedics</h2>\r\nAt OrthoRegen®, we use Regenerative Orthopedics to treat lumbar instability. The various regenerative treatments, including Prolotherapy, PRP, and stem cells, can be directed toward the pain sources, often the ligaments.\r\n\r\nProlotherapy strengthens lumbar vertebral ligaments and prevents progressive degeneration. Researchers in the Journal of Spine Disorders demonstrated that Prolotherapy was effective in patients with chronic low back pain who failed to respond to conservative care. (2)\r\n\r\nHauser et al. also found that Prolotherapy can be effective for chronic back pain due to spinal instability. (3) Prolotherapy strengthens the ligaments and eliminates the back pain problem.\r\n\r\nAt OrthoRegen®, our back pain specialists have effectively treated many patients suffering from low back pain and the associated conditions that occur due to spinal instability. We would love to help you too!\r\n<h3>References</h3>\r\n(1) Migliorini F, Maffulli N. Choosing the appropriate pharmacotherapy for nonspecific chronic low back pain. Journal of Orthopaedic Surgery and Research. 2022 Dec;17(1):1-3.\r\n\r\n(2) Klein RG, Eek BC, DeLong WB, Mooney V. A randomized, double-blind trial of dextrose-glycerine-phenol injections for chronic, low back pain. Journal of Spinal Disorders. 1993 Feb 1;6(1):23-33.\r\n\r\n(3) Hauser RA, Matias D, Woznica D, Rawlings B, Woldin BA. Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review. J Back Musculoskelet Rehabil. 2022;35(4):701-712. doi: 10.3233/BMR-210097. PMID: 34957989; PMCID: PMC9398090.','Back Pain Specialist','','publish','closed','open','','back-pain-specialists','','','2023-07-05 21:19:35','2023-07-05 21:19:35','',0,'https://www.drfields.com/?p=5815',0,'post','',0),(5816,8,'2023-07-02 19:43:03','2023-07-02 19:43:03','Low Back Pain','Low Back Pain','Low Back Pain','inherit','closed','closed','','low-back-pain','','','2023-07-02 19:43:03','2023-07-02 19:43:03','',5815,'https://www.drfields.com/wp-content/uploads/2023/07/Low-Back-Pain.png',0,'attachment','image/png',0),(5817,8,'2023-07-02 19:44:35','2023-07-02 19:44:35','<img class=\"alignright wp-image-5816\" src=\"https://www.drfields.com/wp-content/uploads/2023/07/Low-Back-Pain-500x419.png\" alt=\"Low Back Pain\" width=\"300\" height=\"251\" />\r\n\r\nAt OrthoRegen®, we specialize in treating the joints and the spine. Low back pain is one of the conditions we see quite often. People who come to our clinic typically have already tried various treatments that did not achieve the results they sought, leaving them with a quality of life that is reduced as a result of the pain and loss of function they experience. Therefore, they are seeking a treatment that actually works to bring relief.\r\n\r\nIn many cases, our Regenerative Orthopedics specialists can help low back pain sufferers return to the quality of life they desire, one with less pain and increased function. If you are tired of taking anti-inflammatories, supplements, cortisone injections, and other remedies, and are looking for a solution to your back pain, we believe we can help.\r\n\r\nRegenerative Orthopedics is a non-surgical treatment that repairs the soft tissue of the joints and spine by naturally and effectively strengthening the structures involved and eliminating the pain. Regenerative Orthopedics stimulates the body to repair the painful area and starts developing new healthy and strong tissue.\r\n\r\n<strong>Why Choose OrthoRegen® Back Pain Specialists?</strong>\r\n\r\nRegenerative Orthopedics are effective treatment options that do not require surgery. It\'s a great treatment that is very beneficial and one that is proven to provide pain relief and repair of the injured soft tissues of the joints and spine. As with any treatment, it is vital to choose an experienced practitioner. Peter A. Fields, MD, DC has been treating back pain patients successfully for many years. He is a joint and back pain specialist who gets results.\r\n\r\n<strong>Many Pharmaceuticals Just Do Not Provide Benefit</strong>\r\n\r\nThe Journal of Orthopedic Surgery and Research says, “Clinicians have to choose from drugs with very modest effects and variable risk profiles. Hence, the widespread recommendations to use pharmacological options as a last resort. <strong>The benefits are just not there to justify the routine prolonged use of any given drug in nonspecific chronic low back pain</strong>: this is a major challenge, and it is often hard to accept for clinicians and patients . . . ”\r\n\r\n<strong>Lumbar Instability As the Root Cause of Low Back Pain</strong>\r\n\r\nIf you have spent months or even years trying to get relief from your back pain, we recommend that you seek out a treatment that repairs the underlying issue, commonly lumbar instability. Other common treatments fail to attain the relief sought because they do not address the root cause of lumbar instability.\r\n\r\nThere are many reasons for low back pain. Conditions such as herniated discs, stenosis, spondylolisthesis, and others. However, the root cause behind these conditions is lumbar instability.\r\n\r\n<strong>What is lumbar instability, and how does it begin?</strong>\r\n\r\nLumbar instability is caused by weakened and damaged ligaments. Once the ligaments become damaged, either by sudden trauma or prolonged wear and tear, the vertebrae begin to move abnormally.\r\n\r\nLigaments are bands of connective tissue that hold bone to bone. Spinal ligaments are primary stabilizers of the vertebrae of the spine. When the spinal ligaments are no longer able to hold the adjacent vertebrae in their correct place, spinal instability becomes an issue. The weakened ligaments allow for excess mobility/motion in the spine. Spinal instability is the most common cause of unresolved low back pain.\r\n\r\nThe body will respond to this instability and attempt to stabilize the area. The result is muscle spasms, swelling, and eventual bone spurs (arthritis).\r\n\r\n<strong>OrthoRegen® Back Pain Specialist and Regenerative Orthopedics</strong>\r\n\r\nAt OrthoRegen®, we use Regenerative Orthopedics to treat lumbar instability. The various regenerative treatments, including Prolotherapy, PRP, and stem cells, can be directed towards the pain sources, which are often the ligaments.\r\n\r\nProlotherapy strengthens lumbar vertebral ligaments and prevents the progressive degeneration. Researchers in the Journal of Spine Disorders demonstrated that Prolotherapy was effective in patients with chronic low back pain who failed to respond to conservative care. (2)\r\n\r\nHauser et al, also found that Prolotherapy can be effective for chronic back pain due to spinal instability. (3) Prolotherapy strengthens the ligaments and eliminates the back pain problem.\r\n\r\nAt OrthoRegen®, our back pain specialists have effectively treated many patients suffering with low back pain and the associated conditions that occur due to spinal instability. We would love to help you too!\r\n\r\n(1) Migliorini F, Maffulli N. Choosing the appropriate pharmacotherapy for nonspecific chronic low back pain. Journal of Orthopaedic Surgery and Research. 2022 Dec;17(1):1-3.\r\n\r\n(2) Klein RG, Eek BC, DeLong WB, Mooney V. A randomized double-blind trial of dextrose-glycerine-phenol injections for chronic, low back pain. Journal of Spinal Disorders. 1993 Feb 1;6(1):23-33.\r\n\r\n(3) Hauser RA, Matias D, Woznica D, Rawlings B, Woldin BA. Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review. J Back Musculoskelet Rehabil. 2022;35(4):701-712. doi: 10.3233/BMR-210097. PMID: 34957989; PMCID: PMC9398090.','Back Pain Specialist','','inherit','closed','closed','','5815-revision-v1','','','2023-07-02 19:44:35','2023-07-02 19:44:35','',5815,'https://www.drfields.com/?p=5817',0,'revision','',0),(5818,8,'2023-07-02 19:46:04','2023-07-02 19:46:04','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"/uncategorized/back-pain-specialist/\">Back Pain Specialist</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/tennis-elbow-treatment/\">Tennis Elbow Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/hip-arthritis-treatment/\">Hip Arthritis Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/alternative-treatment-for-arthritis/\">Alternative Treatment for Arthritis</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/chronic-pain-management/\">Chronic Pain Management</a></li>\r\n 	<li><a href=\"/articles/meniscus-tear-treatment/\">Meniscus Tear Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/neck-pain-treatment/\">Neck Pain Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-07-02 19:46:04','2023-07-02 19:46:04','',2109,'https://www.drfields.com/?p=5818',0,'revision','',0),(5819,8,'2023-07-03 03:14:07','2023-07-03 03:14:07','<img class=\"alignright wp-image-5816\" src=\"https://www.drfields.com/wp-content/uploads/2023/07/Low-Back-Pain-500x419.png\" alt=\"Low Back Pain\" width=\"300\" height=\"251\" />\r\n\r\nAt OrthoRegen®, we specialize in treating the joints and the spine. Low back pain is one of the conditions we see quite often. People who come to our clinic typically have already tried various treatments that did not achieve the results they sought, leaving them with a quality of life that is reduced as a result of the pain and loss of function they experience. Therefore, they are seeking a treatment that actually works to bring relief.\r\n\r\nIn many cases, our Regenerative Orthopedics specialists can help low back pain sufferers return to the quality of life they desire, one with less pain and increased function. If you are tired of taking anti-inflammatories, supplements, cortisone injections, and other remedies, and are looking for a solution to your back pain, we believe we can help.\r\n\r\nRegenerative Orthopedics is a non-surgical treatment that repairs the soft tissue of the joints and spine by naturally and effectively strengthening the structures involved and eliminating the pain. Regenerative Orthopedics stimulates the body to repair the painful area and starts developing new healthy and strong tissue.\r\n<h2>Why Choose OrthoRegen® Back Pain Specialists?</h2>\r\nRegenerative Orthopedics are effective treatment options that do not require surgery. It\'s a great treatment that is very beneficial and one that is proven to provide pain relief and repair of the injured soft tissues of the joints and spine. As with any treatment, it is vital to choose an experienced practitioner. Peter A. Fields, MD, DC has been treating back pain patients successfully for many years. He is a joint and back pain specialist who gets results.\r\n<h2>Many Pharmaceuticals Just Do Not Provide Benefit</h2>\r\nThe Journal of Orthopedic Surgery and Research says, “Clinicians have to choose from drugs with very modest effects and variable risk profiles. Hence, the widespread recommendations to use pharmacological options as a last resort. <strong>The benefits are just not there to justify the routine prolonged use of any given drug in nonspecific chronic low back pain</strong>: this is a major challenge, and it is often hard to accept for clinicians and patients . . . ”\r\n<h2>Lumbar Instability As the Root Cause of Low Back Pain</h2>\r\nIf you have spent months or even years trying to get relief from your back pain, we recommend that you seek out a treatment that repairs the underlying issue, commonly lumbar instability. Other common treatments fail to attain the relief sought because they do not address the root cause of lumbar instability.\r\n\r\nThere are many reasons for low back pain. Conditions such as herniated discs, stenosis, spondylolisthesis, and others. However, the root cause behind these conditions is lumbar instability.\r\n<h2>What is lumbar instability, and how does it begin?</h2>\r\nLumbar instability is caused by weakened and damaged ligaments. Once the ligaments become damaged, either by sudden trauma or prolonged wear and tear, the vertebrae begin to move abnormally.\r\n\r\nLigaments are bands of connective tissue that hold bone to bone. Spinal ligaments are primary stabilizers of the vertebrae of the spine. When the spinal ligaments are no longer able to hold the adjacent vertebrae in their correct place, spinal instability becomes an issue. The weakened ligaments allow for excess mobility/motion in the spine. Spinal instability is the most common cause of unresolved low back pain.\r\n\r\nThe body will respond to this instability and attempt to stabilize the area. The result is muscle spasms, swelling, and eventual bone spurs (arthritis).\r\n<h2>OrthoRegen® Back Pain Specialist and Regenerative Orthopedics</h2>\r\nAt OrthoRegen®, we use Regenerative Orthopedics to treat lumbar instability. The various regenerative treatments, including Prolotherapy, PRP, and stem cells, can be directed towards the pain sources, which are often the ligaments.\r\n\r\nProlotherapy strengthens lumbar vertebral ligaments and prevents the progressive degeneration. Researchers in the Journal of Spine Disorders demonstrated that Prolotherapy was effective in patients with chronic low back pain who failed to respond to conservative care. (2)\r\n\r\nHauser et al, also found that Prolotherapy can be effective for chronic back pain due to spinal instability. (3) Prolotherapy strengthens the ligaments and eliminates the back pain problem.\r\n\r\nAt OrthoRegen®, our back pain specialists have effectively treated many patients suffering with low back pain and the associated conditions that occur due to spinal instability. We would love to help you too!\r\n\r\n(1) Migliorini F, Maffulli N. Choosing the appropriate pharmacotherapy for nonspecific chronic low back pain. Journal of Orthopaedic Surgery and Research. 2022 Dec;17(1):1-3.\r\n\r\n(2) Klein RG, Eek BC, DeLong WB, Mooney V. A randomized double-blind trial of dextrose-glycerine-phenol injections for chronic, low back pain. Journal of Spinal Disorders. 1993 Feb 1;6(1):23-33.\r\n\r\n(3) Hauser RA, Matias D, Woznica D, Rawlings B, Woldin BA. Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review. J Back Musculoskelet Rehabil. 2022;35(4):701-712. doi: 10.3233/BMR-210097. PMID: 34957989; PMCID: PMC9398090.','Back Pain Specialist','','inherit','closed','closed','','5815-revision-v1','','','2023-07-03 03:14:07','2023-07-03 03:14:07','',5815,'https://www.drfields.com/?p=5819',0,'revision','',0),(5820,8,'2023-07-03 03:14:44','2023-07-03 03:14:44','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/back-pain-specialist/\">Back Pain Specialist</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/tennis-elbow-treatment/\">Tennis Elbow Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/hip-arthritis-treatment/\">Hip Arthritis Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/alternative-treatment-for-arthritis/\">Alternative Treatment for Arthritis</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/chronic-pain-management/\">Chronic Pain Management</a></li>\r\n 	<li><a href=\"/articles/meniscus-tear-treatment/\">Meniscus Tear Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/neck-pain-treatment/\">Neck Pain Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-07-03 03:14:44','2023-07-03 03:14:44','',2109,'https://www.drfields.com/?p=5820',0,'revision','',0),(5822,9,'2023-07-05 21:19:18','2023-07-05 21:19:18','<img class=\"alignright wp-image-5816\" src=\"https://www.drfields.com/wp-content/uploads/2023/07/Low-Back-Pain-500x419.png\" alt=\"Low Back Pain\" width=\"300\" height=\"251\" />\n<h2>Back Pain Specialists</h2>\nAt OrthoRegen®, we specialize in treating the joints and the spine. Low back pain is one of the conditions we see quite often. People who come to our clinic typically have already tried various treatments that did not achieve the results they sought, leaving them with a reduced quality of life due to the pain and loss of function they experience. Therefore, they are seeking a back pain specialist and a treatment that works to bring relief.\n\nIn many cases, our Regenerative Orthopedics specialists can help low back pain sufferers return to the quality of life they desire, with less pain and increased function. If you are tired of taking anti-inflammatories, supplements, cortisone injections, and other remedies and are looking for a solution to your back pain, we believe we can help.\n\nRegenerative Orthopedics is a non-surgical treatment that repairs the soft tissue of the joints and spine by naturally and effectively strengthening the structures involved and eliminating the pain. Regenerative Orthopedics stimulates the body to repair the painful area and develops new healthy and strong tissue.\n<h2>Why Choose OrthoRegen® Back Pain Specialists?</h2>\nRegenerative Orthopedics are effective treatment options that do not require surgery. It\'s a great, beneficial treatment that is proven to provide pain relief and repair of the injured soft tissues of the joints and spine. As with any treatment, it is vital to choose an experienced practitioner. Peter A. Fields, MD, DC, has successfully treated back pain patients for many years. He is a joint and back pain specialist who gets results.\n<h2>Many Pharmaceuticals Do Not Provide Benefit</h2>\nThe Journal of Orthopedic Surgery and Research says, “Clinicians have to choose from drugs with very modest effects and variable risk profiles. Hence, the widespread recommendations to use pharmacological options as a last resort. <strong>The benefits are just not there to justify the routine prolonged use of any given drug in nonspecific chronic low back pain</strong>: this is a major challenge, and it is often hard to accept for clinicians and patients . . . ”\n<h2>Lumbar Instability As the Root Cause of Low Back Pain</h2>\nIf you have spent months or even years trying to get relief from your back pain, we recommend that you seek out a treatment that repairs the underlying issue, commonly lumbar instability. Other common therapies fail to attain the relief sought because they do not address the root cause of lumbar instability.\n\nThere are many reasons for low back pain. Conditions such as herniated discs, stenosis, spondylolisthesis, and others. However, the root cause behind these conditions is lumbar instability.\n<h2>What Is Lumbar Instability, and How Does it Begin?</h2>\nLumbar instability is caused by weakened and damaged ligaments. Once the ligaments become damaged, either by sudden trauma or prolonged wear and tear, the vertebrae begin to move abnormally.\n\nLigaments are bands of connective tissue that hold bone to bone. Spinal ligaments are primary stabilizers of the vertebrae of the spine. When spinal ligaments can no longer hold the adjacent vertebrae in their correct place, spinal instability becomes an issue. The weakened ligaments allow for excess mobility/motion in the spine. Spinal instability is the most common cause of unresolved low back pain.\n\nThe body will respond to this instability and attempt to stabilize the area. The result is muscle spasms, swelling, and eventual bone spurs (arthritis).\n<h2>OrthoRegen® Back Pain Specialists in Regenerative Orthopedics</h2>\nAt OrthoRegen®, we use Regenerative Orthopedics to treat lumbar instability. The various regenerative treatments, including Prolotherapy, PRP, and stem cells, can be directed toward the pain sources, often the ligaments.\n\nProlotherapy strengthens lumbar vertebral ligaments and prevents progressive degeneration. Researchers in the Journal of Spine Disorders demonstrated that Prolotherapy was effective in patients with chronic low back pain who failed to respond to conservative care. (2)\n\nHauser et al. also found that Prolotherapy can be effective for chronic back pain due to spinal instability. (3) Prolotherapy strengthens the ligaments and eliminates the back pain problem.\n\nAt OrthoRegen®, our back pain specialists have effectively treated many patients suffering from low back pain and the associated conditions that occur due to spinal instability. We would love to help you too!\n\nReferences\n\n(1) Migliorini F, Maffulli N. Choosing the appropriate pharmacotherapy for nonspecific chronic low back pain. Journal of Orthopaedic Surgery and Research. 2022 Dec;17(1):1-3.\n\n(2) Klein RG, Eek BC, DeLong WB, Mooney V. A randomized, double-blind trial of dextrose-glycerine-phenol injections for chronic, low back pain. Journal of Spinal Disorders. 1993 Feb 1;6(1):23-33.\n\n(3) Hauser RA, Matias D, Woznica D, Rawlings B, Woldin BA. Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review. J Back Musculoskelet Rehabil. 2022;35(4):701-712. doi: 10.3233/BMR-210097. PMID: 34957989; PMCID: PMC9398090.','Back Pain Specialist','','inherit','closed','closed','','5815-autosave-v1','','','2023-07-05 21:19:18','2023-07-05 21:19:18','',5815,'https://www.drfields.com/?p=5822',0,'revision','',0),(5823,9,'2023-07-05 21:13:38','2023-07-05 21:13:38','<img class=\"alignright wp-image-5816\" src=\"https://www.drfields.com/wp-content/uploads/2023/07/Low-Back-Pain-500x419.png\" alt=\"Low Back Pain\" width=\"300\" height=\"251\" />\r\n<h2>Back Pain Specialist</h2>\r\nAt OrthoRegen®, we specialize in treating the joints and the spine. Low back pain is one of the conditions we see quite often. People who come to our clinic typically have already tried various treatments that did not achieve the results they sought, leaving them with a reduced quality of life due to the pain and loss of function they experience. Therefore, they are seeking a back pain specialist and a treatment that works to bring relief.\r\n\r\nIn many cases, our Regenerative Orthopedics specialists can help low back pain sufferers return to the quality of life they desire, with less pain and increased function. If you are tired of taking anti-inflammatories, supplements, cortisone injections, and other remedies and are looking for a solution to your back pain, we believe we can help.\r\n\r\nRegenerative Orthopedics is a non-surgical treatment that repairs the soft tissue of the joints and spine by naturally and effectively strengthening the structures involved and eliminating the pain. Regenerative Orthopedics stimulates the body to repair the painful area and develops new healthy and strong tissue.\r\n<h2>Why Choose OrthoRegen® Back Pain Specialists?</h2>\r\nRegenerative Orthopedics are effective treatment options that do not require surgery. It\'s a great, beneficial treatment that is proven to provide pain relief and repair of the injured soft tissues of the joints and spine. As with any treatment, it is vital to choose an experienced practitioner. Peter A. Fields, MD, DC, has successfully treated back pain patients for many years. He is a joint and back pain specialist who gets results.\r\n<h2>Many Pharmaceuticals Do Not Provide Benefit</h2>\r\nThe Journal of Orthopedic Surgery and Research says, “Clinicians have to choose from drugs with very modest effects and variable risk profiles. Hence, the widespread recommendations to use pharmacological options as a last resort. <strong>The benefits are just not there to justify the routine prolonged use of any given drug in nonspecific chronic low back pain</strong>: this is a major challenge, and it is often hard to accept for clinicians and patients . . . ”\r\n<h2>Lumbar Instability As the Root Cause of Low Back Pain</h2>\r\nIf you have spent months or even years trying to get relief from your back pain, we recommend that you seek out a treatment that repairs the underlying issue, commonly lumbar instability. Other common therapies fail to attain the relief sought because they do not address the root cause of lumbar instability.\r\n\r\nThere are many reasons for low back pain. Conditions such as herniated discs, stenosis, spondylolisthesis, and others. However, the root cause behind these conditions is lumbar instability.\r\n<h2>What Is Lumbar Instability, and How Does it Begin?</h2>\r\nLumbar instability is caused by weakened and damaged ligaments. Once the ligaments become damaged, either by sudden trauma or prolonged wear and tear, the vertebrae begin to move abnormally.\r\n\r\nLigaments are bands of connective tissue that hold bone to bone. Spinal ligaments are primary stabilizers of the vertebrae of the spine. When spinal ligaments can no longer hold the adjacent vertebrae in their correct place, spinal instability becomes an issue. The weakened ligaments allow for excess mobility/motion in the spine. Spinal instability is the most common cause of unresolved low back pain.\r\n\r\nThe body will respond to this instability and attempt to stabilize the area. The result is muscle spasms, swelling, and eventual bone spurs (arthritis).\r\n<h2>OrthoRegen® Back Pain Specialist and Regenerative Orthopedics</h2>\r\nAt OrthoRegen®, we use Regenerative Orthopedics to treat lumbar instability. The various regenerative treatments, including Prolotherapy, PRP, and stem cells, can be directed toward the pain sources, often the ligaments.\r\n\r\nProlotherapy strengthens lumbar vertebral ligaments and prevents progressive degeneration. Researchers in the Journal of Spine Disorders demonstrated that Prolotherapy was effective in patients with chronic low back pain who failed to respond to conservative care. (2)\r\n\r\nHauser et al. also found that Prolotherapy can be effective for chronic back pain due to spinal instability. (3) Prolotherapy strengthens the ligaments and eliminates the back pain problem.\r\n\r\nAt OrthoRegen®, our back pain specialists have effectively treated many patients suffering from low back pain and the associated conditions that occur due to spinal instability. We would love to help you too!\r\n\r\n(1) Migliorini F, Maffulli N. Choosing the appropriate pharmacotherapy for nonspecific chronic low back pain. Journal of Orthopaedic Surgery and Research. 2022 Dec;17(1):1-3.\r\n\r\n(2) Klein RG, Eek BC, DeLong WB, Mooney V. A randomized, double-blind trial of dextrose-glycerine-phenol injections for chronic, low back pain. Journal of Spinal Disorders. 1993 Feb 1;6(1):23-33.\r\n\r\n(3) Hauser RA, Matias D, Woznica D, Rawlings B, Woldin BA. Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review. J Back Musculoskelet Rehabil. 2022;35(4):701-712. doi: 10.3233/BMR-210097. PMID: 34957989; PMCID: PMC9398090.','Back Pain Specialist','','inherit','closed','closed','','5815-revision-v1','','','2023-07-05 21:13:38','2023-07-05 21:13:38','',5815,'https://www.drfields.com/?p=5823',0,'revision','',0),(5824,9,'2023-07-05 21:18:15','2023-07-05 21:18:15','<img class=\"alignright wp-image-5816\" src=\"https://www.drfields.com/wp-content/uploads/2023/07/Low-Back-Pain-500x419.png\" alt=\"Low Back Pain\" width=\"300\" height=\"251\" />\r\n<h2>Back Pain Specialist</h2>\r\nAt OrthoRegen®, we specialize in treating the joints and the spine. Low back pain is one of the conditions we see quite often. People who come to our clinic typically have already tried various treatments that did not achieve the results they sought, leaving them with a reduced quality of life due to the pain and loss of function they experience. Therefore, they are seeking a back pain specialist and a treatment that works to bring relief.\r\n\r\nIn many cases, our Regenerative Orthopedics specialists can help low back pain sufferers return to the quality of life they desire, with less pain and increased function. If you are tired of taking anti-inflammatories, supplements, cortisone injections, and other remedies and are looking for a solution to your back pain, we believe we can help.\r\n\r\nRegenerative Orthopedics is a non-surgical treatment that repairs the soft tissue of the joints and spine by naturally and effectively strengthening the structures involved and eliminating the pain. Regenerative Orthopedics stimulates the body to repair the painful area and develops new healthy and strong tissue.\r\n<h2>Why Choose OrthoRegen® Back Pain Specialists?</h2>\r\nRegenerative Orthopedics are effective treatment options that do not require surgery. It\'s a great, beneficial treatment that is proven to provide pain relief and repair of the injured soft tissues of the joints and spine. As with any treatment, it is vital to choose an experienced practitioner. Peter A. Fields, MD, DC, has successfully treated back pain patients for many years. He is a joint and back pain specialist who gets results.\r\n<h2>Many Pharmaceuticals Do Not Provide Benefit</h2>\r\nThe Journal of Orthopedic Surgery and Research says, “Clinicians have to choose from drugs with very modest effects and variable risk profiles. Hence, the widespread recommendations to use pharmacological options as a last resort. <strong>The benefits are just not there to justify the routine prolonged use of any given drug in nonspecific chronic low back pain</strong>: this is a major challenge, and it is often hard to accept for clinicians and patients . . . ”\r\n<h2>Lumbar Instability As the Root Cause of Low Back Pain</h2>\r\nIf you have spent months or even years trying to get relief from your back pain, we recommend that you seek out a treatment that repairs the underlying issue, commonly lumbar instability. Other common therapies fail to attain the relief sought because they do not address the root cause of lumbar instability.\r\n\r\nThere are many reasons for low back pain. Conditions such as herniated discs, stenosis, spondylolisthesis, and others. However, the root cause behind these conditions is lumbar instability.\r\n<h2>What Is Lumbar Instability, and How Does it Begin?</h2>\r\nLumbar instability is caused by weakened and damaged ligaments. Once the ligaments become damaged, either by sudden trauma or prolonged wear and tear, the vertebrae begin to move abnormally.\r\n\r\nLigaments are bands of connective tissue that hold bone to bone. Spinal ligaments are primary stabilizers of the vertebrae of the spine. When spinal ligaments can no longer hold the adjacent vertebrae in their correct place, spinal instability becomes an issue. The weakened ligaments allow for excess mobility/motion in the spine. Spinal instability is the most common cause of unresolved low back pain.\r\n\r\nThe body will respond to this instability and attempt to stabilize the area. The result is muscle spasms, swelling, and eventual bone spurs (arthritis).\r\n<h2>OrthoRegen® Back Pain Specialists in Regenerative Orthopedics</h2>\r\nAt OrthoRegen®, we use Regenerative Orthopedics to treat lumbar instability. The various regenerative treatments, including Prolotherapy, PRP, and stem cells, can be directed toward the pain sources, often the ligaments.\r\n\r\nProlotherapy strengthens lumbar vertebral ligaments and prevents progressive degeneration. Researchers in the Journal of Spine Disorders demonstrated that Prolotherapy was effective in patients with chronic low back pain who failed to respond to conservative care. (2)\r\n\r\nHauser et al. also found that Prolotherapy can be effective for chronic back pain due to spinal instability. (3) Prolotherapy strengthens the ligaments and eliminates the back pain problem.\r\n\r\nAt OrthoRegen®, our back pain specialists have effectively treated many patients suffering from low back pain and the associated conditions that occur due to spinal instability. We would love to help you too!\r\n\r\n(1) Migliorini F, Maffulli N. Choosing the appropriate pharmacotherapy for nonspecific chronic low back pain. Journal of Orthopaedic Surgery and Research. 2022 Dec;17(1):1-3.\r\n\r\n(2) Klein RG, Eek BC, DeLong WB, Mooney V. A randomized, double-blind trial of dextrose-glycerine-phenol injections for chronic, low back pain. Journal of Spinal Disorders. 1993 Feb 1;6(1):23-33.\r\n\r\n(3) Hauser RA, Matias D, Woznica D, Rawlings B, Woldin BA. Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review. J Back Musculoskelet Rehabil. 2022;35(4):701-712. doi: 10.3233/BMR-210097. PMID: 34957989; PMCID: PMC9398090.','Back Pain Specialist','','inherit','closed','closed','','5815-revision-v1','','','2023-07-05 21:18:15','2023-07-05 21:18:15','',5815,'https://www.drfields.com/?p=5824',0,'revision','',0),(5825,9,'2023-07-05 21:19:35','2023-07-05 21:19:35','<img class=\"alignright wp-image-5816\" src=\"https://www.drfields.com/wp-content/uploads/2023/07/Low-Back-Pain-500x419.png\" alt=\"Low Back Pain\" width=\"300\" height=\"251\" />\r\n<h2>Back Pain Specialists</h2>\r\nAt OrthoRegen®, we specialize in treating the joints and the spine. Low back pain is one of the conditions we see quite often. People who come to our clinic typically have already tried various treatments that did not achieve the results they sought, leaving them with a reduced quality of life due to the pain and loss of function they experience. Therefore, they are seeking a back pain specialist and a treatment that works to bring relief.\r\n\r\nIn many cases, our Regenerative Orthopedics specialists can help low back pain sufferers return to the quality of life they desire, with less pain and increased function. If you are tired of taking anti-inflammatories, supplements, cortisone injections, and other remedies and are looking for a solution to your back pain, we believe we can help.\r\n\r\nRegenerative Orthopedics is a non-surgical treatment that repairs the soft tissue of the joints and spine by naturally and effectively strengthening the structures involved and eliminating the pain. Regenerative Orthopedics stimulates the body to repair the painful area and develops new healthy and strong tissue.\r\n<h2>Why Choose OrthoRegen® Back Pain Specialists?</h2>\r\nRegenerative Orthopedics are effective treatment options that do not require surgery. It\'s a great, beneficial treatment that is proven to provide pain relief and repair of the injured soft tissues of the joints and spine. As with any treatment, it is vital to choose an experienced practitioner. Peter A. Fields, MD, DC, has successfully treated back pain patients for many years. He is a joint and back pain specialist who gets results.\r\n<h2>Many Pharmaceuticals Do Not Provide Benefit</h2>\r\nThe Journal of Orthopedic Surgery and Research says, “Clinicians have to choose from drugs with very modest effects and variable risk profiles. Hence, the widespread recommendations to use pharmacological options as a last resort. <strong>The benefits are just not there to justify the routine prolonged use of any given drug in nonspecific chronic low back pain</strong>: this is a major challenge, and it is often hard to accept for clinicians and patients . . . ”\r\n<h2>Lumbar Instability As the Root Cause of Low Back Pain</h2>\r\nIf you have spent months or even years trying to get relief from your back pain, we recommend that you seek out a treatment that repairs the underlying issue, commonly lumbar instability. Other common therapies fail to attain the relief sought because they do not address the root cause of lumbar instability.\r\n\r\nThere are many reasons for low back pain. Conditions such as herniated discs, stenosis, spondylolisthesis, and others. However, the root cause behind these conditions is lumbar instability.\r\n<h2>What Is Lumbar Instability, and How Does it Begin?</h2>\r\nLumbar instability is caused by weakened and damaged ligaments. Once the ligaments become damaged, either by sudden trauma or prolonged wear and tear, the vertebrae begin to move abnormally.\r\n\r\nLigaments are bands of connective tissue that hold bone to bone. Spinal ligaments are primary stabilizers of the vertebrae of the spine. When spinal ligaments can no longer hold the adjacent vertebrae in their correct place, spinal instability becomes an issue. The weakened ligaments allow for excess mobility/motion in the spine. Spinal instability is the most common cause of unresolved low back pain.\r\n\r\nThe body will respond to this instability and attempt to stabilize the area. The result is muscle spasms, swelling, and eventual bone spurs (arthritis).\r\n<h2>OrthoRegen® Back Pain Specialists in Regenerative Orthopedics</h2>\r\nAt OrthoRegen®, we use Regenerative Orthopedics to treat lumbar instability. The various regenerative treatments, including Prolotherapy, PRP, and stem cells, can be directed toward the pain sources, often the ligaments.\r\n\r\nProlotherapy strengthens lumbar vertebral ligaments and prevents progressive degeneration. Researchers in the Journal of Spine Disorders demonstrated that Prolotherapy was effective in patients with chronic low back pain who failed to respond to conservative care. (2)\r\n\r\nHauser et al. also found that Prolotherapy can be effective for chronic back pain due to spinal instability. (3) Prolotherapy strengthens the ligaments and eliminates the back pain problem.\r\n\r\nAt OrthoRegen®, our back pain specialists have effectively treated many patients suffering from low back pain and the associated conditions that occur due to spinal instability. We would love to help you too!\r\n<h3>References</h3>\r\n(1) Migliorini F, Maffulli N. Choosing the appropriate pharmacotherapy for nonspecific chronic low back pain. Journal of Orthopaedic Surgery and Research. 2022 Dec;17(1):1-3.\r\n\r\n(2) Klein RG, Eek BC, DeLong WB, Mooney V. A randomized, double-blind trial of dextrose-glycerine-phenol injections for chronic, low back pain. Journal of Spinal Disorders. 1993 Feb 1;6(1):23-33.\r\n\r\n(3) Hauser RA, Matias D, Woznica D, Rawlings B, Woldin BA. Lumbar instability as an etiology of low back pain and its treatment by prolotherapy: A review. J Back Musculoskelet Rehabil. 2022;35(4):701-712. doi: 10.3233/BMR-210097. PMID: 34957989; PMCID: PMC9398090.','Back Pain Specialist','','inherit','closed','closed','','5815-revision-v1','','','2023-07-05 21:19:35','2023-07-05 21:19:35','',5815,'https://www.drfields.com/?p=5825',0,'revision','',0),(5827,8,'2023-07-18 03:33:37','2023-07-18 03:33:37','<h2><img class=\"alignright wp-image-5828\" src=\"https://www.drfields.com/wp-content/uploads/2023/07/Neck-Arthritis-500x419.png\" alt=\"Arthritis Neck Treatment\" width=\"300\" height=\"251\" />Arthritis Neck Treatment</h2>\r\nNeck arthritis can deter you from moving your neck normally, disrupt your life, and limit the activities you enjoy. When the neck is uninjured and stable, it moves and functions normally. But an injury to the ligaments changes this whole dynamic because it causes the cervical spine to become unstable. Left untreated, the instability will lead to the development of arthritis, and the sufferer will eventually seek an arthritis neck treatment.\r\n\r\nAs a Chiropractor (although I do not practice it anymore), I understand that chiropractic care can provide significant relief and do a fantastic job at bringing relief from neck pain and symptoms.\r\n\r\nHowever, when injured ligaments are the source of the problem, causing a cycle of instability in the neck or cervical spine, a treatment focused on repairing these ligaments may need to be sought. Regenerative Orthopedics is a treatment that repairs and strengthens injured ligaments and resolves many of these symptoms.\r\n<h3>Regenerative Orthopedics As An Arthritis Neck Treatment</h3>\r\nNeck arthritis is often due to neck instability. Neck or cervical instability occurs after an injury to  the ligaments of the neck transpires. Since the ligaments are the primary structures that stabilize joints, they are especially vulnerable when trauma occurs.\r\n\r\nAn unstable cervical spine cannot provide adequate support to function properly. The instability creates a cycle of imbalance between the different neck structures causing too much movement of the neighboring vertebrae. And that stresses the ligaments that support the vertebrae even more. It also puts undue pressure on the nerve endings within those structures. The result is neck pain and other symptoms.\r\n\r\nRegenerative Orthopedics is a great solution to the puzzle of neck pain caused by cervical instability. and the eventual neck arthritis that develops as a result. Stem Cell Therapy, PRP, and Prolotherapy are regenerative therapies that repair the injured ligaments at the core of the problem. These regenerative injection therapies tighten, repair, and regenerate the ligaments involved in neck (cervical) instability. By strengthening the injured ligaments, the arthritis cycle is slowed down.\r\n<h2>Symptoms of Cervical Instability and Neck Arthritis</h2>\r\nThe body will respond to neck instability by trying to stabilize the neck. At first, muscles will spasm, and in time, <strong>the body will create bone spurs to stabilize the neck. That result is arthritis.</strong> Besides neck pain, other symptoms might include headache, arm numbness, dizziness, fatigue, and nausea.\r\n\r\nCervical instability can also affect the nerves and blood supply that travel up to the brain, manifesting as other concerning symptoms such as hearing, vision, speaking, and vertigo.\r\n<h2>Time Hunched Over Smartphones Can Add to the Neck Arthritis Problem</h2>\r\nMany people suffer from symptoms of neck arthritis, but they don\'t know the reason behind the symptoms. One possible causative factor is the amount of time we spend hunched over smartphones and devices! In this position, we are stretching our neck ligaments and changing our spinal curves. Even children are losing the normal curve of the cervical spine. This position places incredible stress on the neck ligaments and exacerbates the problem of neck instability and neck arthritis. (1)\r\n<h2>Arthritis Neck Treatment Options</h2>\r\nAs noted earlier, chiropractors can provide significant relief from neck pain and symptoms. But when adjustments are not holding, and symptoms continue, cervical instability from ligament injury may be an underlying cause of the discomfort. Regenerative Orthopedics is a safe, non-surgical option that brings stability to the neck and its structures, improving function, and eliminating pain.\r\n\r\nDoes Regenerative Orthopedics work? One research team demonstrated that Regenerative Orthopedics, specifically Prolotherapy, met the expectations of 95% of patients in regards to pain relief and functionality. (2)\r\n\r\nRegenerative Orthopedics is a beneficial and effective non-surgical arthritis neck treatment option for those suffering from this life-altering condition.<strong> </strong>\r\n\r\n<strong>References</strong>\r\n<ul>\r\n 	<li>David D, Giannini C, Chiarelli F, Mohn A. Text neck syndrome in children and adolescents. International journal of environmental research and public health. 2021 Feb;18(4):1565.</li>\r\n 	<li>Hauser RA, Steilen D, Gordin K. The Biology of Prolotherapy and Its Application in Clinical Cervical Spine Instability and Chronic Neck Pain: A Retrospective Study. European Journal of Preventive Medicine. 2015 Jun 16;3(4):85.</li>\r\n</ul>','Arthritis Neck Treatment','','publish','closed','open','','arthritis-neck-treatment','','','2023-07-20 20:00:08','2023-07-20 20:00:08','',0,'https://www.drfields.com/?p=5827',0,'post','',0),(5828,8,'2023-07-18 03:33:06','2023-07-18 03:33:06','','Arthritis Neck Treatment','','inherit','closed','closed','','neck-arthritis','','','2023-07-18 03:33:21','2023-07-18 03:33:21','',5827,'https://www.drfields.com/wp-content/uploads/2023/07/Neck-Arthritis.png',0,'attachment','image/png',0),(5829,8,'2023-07-18 03:33:37','2023-07-18 03:33:37','<img class=\"alignright wp-image-5828\" src=\"https://www.drfields.com/wp-content/uploads/2023/07/Neck-Arthritis-500x419.png\" alt=\"Arthritis Neck Treatment\" width=\"300\" height=\"251\" />Neck arthritis can deter you from moving your neck normally, disrupt your life, and limit the activities you enjoy. When the neck is uninjured and stable, it moves and functions normally. But an injury to the ligaments changes this whole dynamic because it causes the cervical spine to become unstable.\r\n\r\nNeck arthritis is often due to neck instability. Neck or cervical instability occurs after an injury to  the ligaments of the neck transpires. Since the ligaments are the primary structures that stabilize joints, they are especially vulnerable when trauma occurs.\r\n\r\nAn unstable cervical spine cannot provide adequate support to function properly. The instability creates a cycle of imbalance between the different neck structures causing too much movement of the neighboring vertebrae. And that stresses the ligaments that support the vertebrae even more. It also puts undue pressure on the nerve endings within those structures. The result is neck pain.\r\n<h2>Symptoms of Cervical Instability and Neck Arthritis</h2>\r\nThe body will respond by trying to stabilize the neck. At first, muscles will go into spasm, and in time, <strong>the body will create bone spurs to stabilize the neck. That result is arthritis.</strong> Besides neck pain, other symptoms might include headache, arm numbness, dizziness, fatigue, and nausea.\r\n\r\nCervical instability can also affect the nerves and blood supply that travel up to the brain, which can manifest as other concerning symptoms such as disturbances in hearing, vision, speaking, and vertigo.\r\n<h2>Time Hunched Over Smartphones Can Add to the Neck Arthritis Problem</h2>\r\nMany people suffer from symptoms of neck arthritis but they don\'t know the reason behind the symptoms. Also, since we now spend so much time hunched over smartphones and devices, we are stretching out our neck ligaments and changing our spinal curves. Even children are loosing the normal curve of the cervical spine. This position is putting a lot of stress on the neck ligaments, and exacerbating the problem of neck instability and neck arthritis. (1)\r\n<h2>Arthritis Neck Treatment Options</h2>\r\nChiropractors can provide great relief, and upper cervical chiropractic specialists do an amazing job at bringing relief from the symptoms of cervical instability.\r\n\r\nHowever, when injured ligaments are the problem, a treatment focused at repairing these ligaments should be sought. Regenerative Orthopedics repairs and strengthens injured ligaments, and resolves many of these symptoms. Strengthening the injured ligaments also slows down the arthritis cycle.\r\n\r\nHauser et al found 95 percent of patients with chronic neck pain reported that Prolotherapy met their expectations in regards to pain relief and functionality. (2)\r\n\r\nRegenerative Orthopedics is actually a great solution to the puzzle of neck pain, cervical instability, and neck arthritis. Stem Cell Therapy, PRP, and Prolotherapy are types of regenerative therapies that repair the injured ligaments at the core of the problem. These regenerative injection therapies tighten, repair, and regenerate the ligaments involved in neck instability and neck arthritis. The treatments work to eliminate the unstable movement, associated neck pain, and multiple symptoms.\r\n\r\nRegenerative Orthopedics is a safe non-surgical option that brings stability back to the neck and its structures and relief to those suffering from this life-altering condition.<strong> </strong>\r\n\r\n<strong>References</strong>\r\n<ul>\r\n 	<li>David D, Giannini C, Chiarelli F, Mohn A. Text neck syndrome in children and adolescents. International journal of environmental research and public health. 2021 Feb;18(4):1565.</li>\r\n 	<li>Hauser RA, Steilen D, Gordin K. The Biology of Prolotherapy and Its Application in Clinical Cervical Spine Instability and Chronic Neck Pain: A Retrospective Study. European Journal of Preventive Medicine. 2015 Jun 16;3(4):85.</li>\r\n</ul>','Arthritis Neck Treatment','','inherit','closed','closed','','5827-revision-v1','','','2023-07-18 03:33:37','2023-07-18 03:33:37','',5827,'https://www.drfields.com/?p=5829',0,'revision','',0),(5830,8,'2023-07-18 03:35:12','2023-07-18 03:35:12','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li><a href=\"/articles/regenerative-orthopedics/arthritis-neck-treatment/\">Arthritis Neck Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/back-pain-specialist/\">Back Pain Specialist</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/tennis-elbow-treatment/\">Tennis Elbow Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/hip-arthritis-treatment/\">Hip Arthritis Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/alternative-treatment-for-arthritis/\">Alternative Treatment for Arthritis</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/chronic-pain-management/\">Chronic Pain Management</a></li>\r\n 	<li><a href=\"/articles/meniscus-tear-treatment/\">Meniscus Tear Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-07-18 03:35:12','2023-07-18 03:35:12','',2109,'https://www.drfields.com/?p=5830',0,'revision','',0),(5832,9,'2023-07-20 19:59:49','2023-07-20 19:59:49','<h2><img class=\"alignright wp-image-5828\" src=\"https://www.drfields.com/wp-content/uploads/2023/07/Neck-Arthritis-500x419.png\" alt=\"Arthritis Neck Treatment\" width=\"300\" height=\"251\" />Arthritis Neck Treatment</h2>\nNeck arthritis can deter you from moving your neck normally, disrupt your life, and limit the activities you enjoy. When the neck is uninjured and stable, it moves and functions normally. But an injury to the ligaments changes this whole dynamic because it causes the cervical spine to become unstable. Left untreated, the instability will lead to the development of arthritis, and the sufferer will eventually seek an arthritis neck treatment.\n\nAs a Chiropractor (although I do not practice it anymore), I understand that chiropractic care can provide significant relief and do a fantastic job at bringing relief from neck pain and symptoms.\n\nHowever, when injured ligaments are the source of the problem, causing a cycle of instability in the neck or cervical spine, a treatment focused on repairing these ligaments may need to be sought. Regenerative Orthopedics is a treatment that repairs and strengthens injured ligaments and resolves many of these symptoms.\n<h3>Regenerative Orthopedics As An Arthritis Neck Treatment</h3>\nNeck arthritis is often due to neck instability. Neck or cervical instability occurs after an injury to  the ligaments of the neck transpires. Since the ligaments are the primary structures that stabilize joints, they are especially vulnerable when trauma occurs.\n\nAn unstable cervical spine cannot provide adequate support to function properly. The instability creates a cycle of imbalance between the different neck structures causing too much movement of the neighboring vertebrae. And that stresses the ligaments that support the vertebrae even more. It also puts undue pressure on the nerve endings within those structures. The result is neck pain and other symptoms.\n\nRegenerative Orthopedics is a great solution to the puzzle of neck pain caused by cervical instability. and the eventual neck arthritis that develops as a result. Stem Cell Therapy, PRP, and Prolotherapy are regenerative therapies that repair the injured ligaments at the core of the problem. These regenerative injection therapies tighten, repair, and regenerate the ligaments involved in neck (cervical) instability. By strengthening the injured ligaments, the arthritis cycle is slowed down.\n<h2>Symptoms of Cervical Instability and Neck Arthritis</h2>\nThe body will respond to neck instability by trying to stabilize the neck. At first, muscles will spasm, and in time, <strong>the body will create bone spurs to stabilize the neck. That result is arthritis.</strong> Besides neck pain, other symptoms might include headache, arm numbness, dizziness, fatigue, and nausea.\n\nCervical instability can also affect the nerves and blood supply that travel up to the brain, manifesting as other concerning symptoms such as hearing, vision, speaking, and vertigo.\n<h2>Time Hunched Over Smartphones Can Add to the Neck Arthritis Problem</h2>\nMany people suffer from symptoms of neck arthritis, but they don\'t know the reason behind the symptoms. One possible causative factor is the amount of time we spend hunched over smartphones and devices! In this position, we are stretching our neck ligaments and changing our spinal curves. Even children are losing the normal curve of the cervical spine. This position places incredible stress on the neck ligaments and exacerbates the problem of neck instability and neck arthritis. (1)\n<h2>Arthritis Neck Treatment Options</h2>\nAs noted earlier, chiropractors can provide significant relief from neck pain and symptoms. But when adjustments are not holding, and symptoms continue, cervical instability from ligament injury may be an underlying cause of the discomfort. Regenerative Orthopedics is a safe, non-surgical option that brings stability to the neck and its structures, improving function, and eliminating pain.\n\nDoes Regenerative Orthopedics work? One research team demonstrated that Regenerative Orthopedics, specifically Prolotherapy, met the expectations of 95% of patients in regards to pain relief and functionality. (2)\n\nRegenerative Orthopedics is a beneficial and effective non-surgical arthritis neck treatment option for those suffering from this life-altering condition.<strong> </strong>\n\n<strong>References</strong>\n<ul>\n 	<li>David D, Giannini C, Chiarelli F, Mohn A. Text neck syndrome in children and adolescents. International journal of environmental research and public health. 2021 Feb;18(4):1565.</li>\n 	<li>Hauser RA, Steilen D, Gordin K. The Biology of Prolotherapy and Its Application in Clinical Cervical Spine Instability and Chronic Neck Pain: A Retrospective Study. European Journal of Preventive Medicine. 2015 Jun 16;3(4):85.</li>\n</ul>','Arthritis Neck Treatment','','inherit','closed','closed','','5827-autosave-v1','','','2023-07-20 19:59:49','2023-07-20 19:59:49','',5827,'https://www.drfields.com/?p=5832',0,'revision','',0),(5833,9,'2023-07-20 20:00:08','2023-07-20 20:00:08','<h2><img class=\"alignright wp-image-5828\" src=\"https://www.drfields.com/wp-content/uploads/2023/07/Neck-Arthritis-500x419.png\" alt=\"Arthritis Neck Treatment\" width=\"300\" height=\"251\" />Arthritis Neck Treatment</h2>\r\nNeck arthritis can deter you from moving your neck normally, disrupt your life, and limit the activities you enjoy. When the neck is uninjured and stable, it moves and functions normally. But an injury to the ligaments changes this whole dynamic because it causes the cervical spine to become unstable. Left untreated, the instability will lead to the development of arthritis, and the sufferer will eventually seek an arthritis neck treatment.\r\n\r\nAs a Chiropractor (although I do not practice it anymore), I understand that chiropractic care can provide significant relief and do a fantastic job at bringing relief from neck pain and symptoms.\r\n\r\nHowever, when injured ligaments are the source of the problem, causing a cycle of instability in the neck or cervical spine, a treatment focused on repairing these ligaments may need to be sought. Regenerative Orthopedics is a treatment that repairs and strengthens injured ligaments and resolves many of these symptoms.\r\n<h3>Regenerative Orthopedics As An Arthritis Neck Treatment</h3>\r\nNeck arthritis is often due to neck instability. Neck or cervical instability occurs after an injury to  the ligaments of the neck transpires. Since the ligaments are the primary structures that stabilize joints, they are especially vulnerable when trauma occurs.\r\n\r\nAn unstable cervical spine cannot provide adequate support to function properly. The instability creates a cycle of imbalance between the different neck structures causing too much movement of the neighboring vertebrae. And that stresses the ligaments that support the vertebrae even more. It also puts undue pressure on the nerve endings within those structures. The result is neck pain and other symptoms.\r\n\r\nRegenerative Orthopedics is a great solution to the puzzle of neck pain caused by cervical instability. and the eventual neck arthritis that develops as a result. Stem Cell Therapy, PRP, and Prolotherapy are regenerative therapies that repair the injured ligaments at the core of the problem. These regenerative injection therapies tighten, repair, and regenerate the ligaments involved in neck (cervical) instability. By strengthening the injured ligaments, the arthritis cycle is slowed down.\r\n<h2>Symptoms of Cervical Instability and Neck Arthritis</h2>\r\nThe body will respond to neck instability by trying to stabilize the neck. At first, muscles will spasm, and in time, <strong>the body will create bone spurs to stabilize the neck. That result is arthritis.</strong> Besides neck pain, other symptoms might include headache, arm numbness, dizziness, fatigue, and nausea.\r\n\r\nCervical instability can also affect the nerves and blood supply that travel up to the brain, manifesting as other concerning symptoms such as hearing, vision, speaking, and vertigo.\r\n<h2>Time Hunched Over Smartphones Can Add to the Neck Arthritis Problem</h2>\r\nMany people suffer from symptoms of neck arthritis, but they don\'t know the reason behind the symptoms. One possible causative factor is the amount of time we spend hunched over smartphones and devices! In this position, we are stretching our neck ligaments and changing our spinal curves. Even children are losing the normal curve of the cervical spine. This position places incredible stress on the neck ligaments and exacerbates the problem of neck instability and neck arthritis. (1)\r\n<h2>Arthritis Neck Treatment Options</h2>\r\nAs noted earlier, chiropractors can provide significant relief from neck pain and symptoms. But when adjustments are not holding, and symptoms continue, cervical instability from ligament injury may be an underlying cause of the discomfort. Regenerative Orthopedics is a safe, non-surgical option that brings stability to the neck and its structures, improving function, and eliminating pain.\r\n\r\nDoes Regenerative Orthopedics work? One research team demonstrated that Regenerative Orthopedics, specifically Prolotherapy, met the expectations of 95% of patients in regards to pain relief and functionality. (2)\r\n\r\nRegenerative Orthopedics is a beneficial and effective non-surgical arthritis neck treatment option for those suffering from this life-altering condition.<strong> </strong>\r\n\r\n<strong>References</strong>\r\n<ul>\r\n 	<li>David D, Giannini C, Chiarelli F, Mohn A. Text neck syndrome in children and adolescents. International journal of environmental research and public health. 2021 Feb;18(4):1565.</li>\r\n 	<li>Hauser RA, Steilen D, Gordin K. The Biology of Prolotherapy and Its Application in Clinical Cervical Spine Instability and Chronic Neck Pain: A Retrospective Study. European Journal of Preventive Medicine. 2015 Jun 16;3(4):85.</li>\r\n</ul>','Arthritis Neck Treatment','','inherit','closed','closed','','5827-revision-v1','','','2023-07-20 20:00:08','2023-07-20 20:00:08','',5827,'https://www.drfields.com/?p=5833',0,'revision','',0),(5835,8,'2023-07-31 04:43:22','2023-07-31 04:43:22','<h2><img class=\"alignright wp-image-5836\" src=\"https://www.drfields.com/wp-content/uploads/2023/07/foot-pain-1-500x419.png\" alt=\"Foot Pain Treatment\" width=\"300\" height=\"251\" />Foot Pain Treatment</h2>\r\nFoot pain afflicts many people. We depend on our feet for so much, from simply getting from place to place to running, working, and dancing. When our feet hurt, our lives are greatly affected, and we\'ll try everything we can to get relief. What foot pain treatments are available for this disabling chronic foot pain?\r\n\r\nOptions for relief may include orthotics, massage, and over-the-counter medications. When those don\'t work, steroid injections, or even surgery may be recommended. Are there other options for foot pain?\r\n<h2>Regenerative Orthopedic Foot Pain Treatments</h2>\r\nWhen these common treatments fail to achieve the results you seek, regenerative treatments are effective alternatives. At OrthoRegen®, we offer non-surgical alternatives for foot and toe pain called Regenerative Orthopedics. The standard treatment options mentioned earlier may not achieve the relief sought because they oftentimes do not repair the underlying injury causing the pain. Regenerative Orthopedics addresses the underlying issue, which is commonly joint instability caused by tendon or ligament injury.\r\n\r\nThe foot, ankle, and toes consist of a lot of bones and joints. These joints are supported by soft tissue such as muscles, tendons, and ligaments. When any of these soft tissue structures become injured, the joint becomes weakened, setting in motion a cycle of abnormal joint movement. As time goes on, the abnormal movement increases, injuring the soft tissue further. The eventual result is arthritis in the joint.\r\n\r\nRegenerative Orthopedics directed at the injured soft tissue, strengthens the tissue, and results in repair of the injured area. The joint stabilizes, function is enhanced, and pain will decrease.\r\n\r\nAthlete and non-athletes alike who are experiencing a foot injury, very likely desire a treatment option that will get results quickly. Of course, you want to get back to training, return to your sport, or be able to do all of the activities that foot pain has disturbed for way too long. Regenerative Orthopedics rebuilds and restores the injured soft tissue, so you can return to what you love without long recovery times.\r\n<h2>But Does It Work?</h2>\r\nHow can I know this treatment works? Regenerative Orthopedics are not a new treatment option. It\'s been around for quite some time. And research has been done proving how beneficial it is.\r\n\r\nFor almost 100 years, research has shown the effectiveness of the regenerative treatment option Prolotherapy. (1)\r\n\r\nProlotherapy is simple, and works by boosting the bodies\' healing abilities at the injured or weakened area, strengthening and repairing damaged ligaments, tendons, and joint structures. (2)\r\n\r\nEven in Morton\'s Neuroma, a difficult to treat condition, Prolotherapy has been shown to be effective. (3) Morton\'s Neuroma, like many other foot conditions, is most likely due to abnormal motion, combined with excessive stress of activity and weight bearing.\r\n\r\n<strong>What about PRP?</strong> A study in the medical journal <em>International Orthopedics</em> showed that PRP injections were \"associated with improved pain and function scores when compared with steroid injections\" in patients with plantar fasciopathy who had failed to achieve relief with other conservative measures. (4)\r\n\r\nPlantar fasciitis is the most common cause of pain in the heel (plantar) of the foot. Another journal, the <em>Orthopedic Journal of Sports Medicine</em> says,\"that PRP may lead to a greater improvement in pain and functional outcome over corticosteroid injections in patients with plantar fasciitis.\" (5)\r\n\r\nRegenerative Orthopedics to the weakened areas strengthens and repairs the affected structures, resulting in increased ability to walk, exercise, and work without pain.\r\n\r\nIf foot, ankle, or toe pain is hindering you from carrying out or enjoying daily activities, and the common treatment options you\'ve tried have not resulted in the relief you desire, we encourage you to try Regenerative Orthopedics. Call us to set up an appointment at 310-453-1234.\r\n<h3><strong>References</strong></h3>\r\n(1) Rabago D. Prolotherapy in primary care practice. Primary Care 2010 37: 65-80.\r\n\r\n(2) Rabago D, <a href=\"http://www.ncbi.nlm.nih.gov/pubmed?term=Best%20TM%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983\">Best TM</a>, <a href=\"http://www.ncbi.nlm.nih.gov/pubmed?term=Beamsley%20M%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983\">Beamsley M</a>, <a href=\"http://www.ncbi.nlm.nih.gov/pubmed?term=Patterson%20J%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983\">Patterson J</a>. A systematic review of prolotherapy for chronic musculoskeletal pain. Clin J Sports Medicine 2005 15: 376-380.\r\n\r\n(3) Hauser, Ross A., Wayne A. Feister, and Debra K. Brinker. \"Dextrose Prolotherapy Treatment for Unresolved “Morton’s Neuroma” Pain.\"<em>The Foot and Ankle Online Journal. 2012. </em><em>doi: 10.3827/faoj.2012.0506.0001</em>.\r\n\r\n(4) Singh, Prashant, et al. \"A systematic review and meta-analysis of platelet-rich plasma versus corticosteroid injections for plantar fasciopathy.\" <em>International orthopaedics</em> 41 (2017): 1169-1181.\r\n\r\n(5) Hurley, Eoghan T., et al. \"Platelet-rich plasma versus corticosteroids for plantar fasciitis: a systematic review of randomized controlled trials.\" <em>Orthopaedic Journal of Sports Medicine</em> 8.4 (2020): 2325967120915704.','Foot Pain Treatment','','publish','closed','open','','foot-pain-treatment','','','2023-08-02 17:50:51','2023-08-02 17:50:51','',0,'https://www.drfields.com/?p=5835',0,'post','',0),(5836,8,'2023-07-31 04:42:46','2023-07-31 04:42:46','','Foot Pain Treatment','','inherit','closed','closed','','foot-pain-1','','','2023-07-31 04:43:11','2023-07-31 04:43:11','',5835,'https://www.drfields.com/wp-content/uploads/2023/07/foot-pain-1.png',0,'attachment','image/png',0),(5837,8,'2023-07-31 04:43:22','2023-07-31 04:43:22','<img class=\"alignright wp-image-5836\" src=\"https://www.drfields.com/wp-content/uploads/2023/07/foot-pain-1-500x419.png\" alt=\"Foot Pain Treatment\" width=\"300\" height=\"251\" />Foot pain afflicts many people. We depend on our feet for so much, from simply getting from place to place to running, working, and dancing. When our feet hurt, our lives are greatly affected, and we\'ll try everything we can to get relief. What foot pain treatments are available for this disabling chronic foot pain?\r\n\r\nOptions for relief may include orthotics, massage, and over-the-counter medications. When those don\'t work, steroid injections, or even surgery may be recommended. Are there other options for foot pain?\r\n<h2>Regenerative Orthopedic Foot Pain Treatments</h2>\r\nWhen these common treatments fail to achieve the results you seek, regenerative treatments are effective alternatives. At OrthoRegen®, we offer non-surgical alternatives for foot and toe pain called Regenerative Orthopedics. The standard treatment options mentioned earlier may not achieve the relief sought because they oftentimes do not repair the underlying injury causing the pain. Regenerative Orthopedics addresses the underlying issue, which is commonly joint instability caused by tendon or ligament injury.\r\n\r\nThe foot, ankle, and toes consist of a lot of bones and joints. These joints are supported by soft tissue such as muscles, tendons, and ligaments. When any of these soft tissue structures become injured, the joint becomes weakened, setting in motion a cycle of abnormal joint movement. As time goes on, the abnormal movement increases, injuring the soft tissue further. The eventual result is arthritis in the joint.\r\n\r\nRegenerative Orthopedics directed at the injured soft tissue, strengthens the tissue, and results in repair of the injured area. The joint stabilizes, function is enhanced, and pain will decrease.\r\n\r\nAthlete and non-athletes alike who are experiencing a foot injury, very likely desire a treatment option that will get results quickly. Of course, you want to get back to training, return to your sport, or be able to do all of the activities that foot pain has disturbed for way too long. Regenerative Orthopedics rebuilds and restores the injured soft tissue, so you can return to what you love without long recovery times.\r\n<h2>But Does It Work?</h2>\r\nHow can I know this treatment works? Regenerative Orthopedics are not a new treatment option. It\'s been around for quite some time. And research has been done proving how beneficial it is.\r\n\r\nFor almost 100 years, research has shown the effectiveness of the regenerative treatment option Prolotherapy. (1)\r\n\r\nProlotherapy is simple, and works by boosting the bodies\' healing abilities at the injured or weakened area, strengthening and repairing damaged ligaments, tendons, and joint structures. (2)\r\n\r\nEven in Morton\'s Neuroma, a difficult to treat condition, Prolotherapy has been shown to be effective. (3) Morton\'s Neuroma, like many other foot conditions, is most likely due to abnormal motion, combined with excessive stress of activity and weight bearing.\r\n\r\n<strong>What about PRP?</strong> A study in the medical journal <em>International Orthopedics</em> showed that PRP injections were \"associated with improved pain and function scores when compared with steroid injections\" in patients with plantar fasciopathy who had failed to achieve relief with other conservative measures. (4)\r\n\r\nPlantar fasciitis is the most common cause of pain in the heel (plantar) of the foot. Another journal, the <em>Orthopedic Journal of Sports Medicine</em> says,\"that PRP may lead to a greater improvement in pain and functional outcome over corticosteroid injections in patients with plantar fasciitis.\" (5)\r\n\r\nRegenerative Orthopedics to the weakened areas strengthens and repairs the affected structures, resulting in increased ability to walk, exercise, and work without pain.\r\n\r\nIf foot, ankle, or toe pain is hindering you from carrying out or enjoying daily activities, and the common treatment options you\'ve tried have not resulted in the relief you desire, we encourage you to try Regenerative Orthopedics. Call us to set up an appointment at 310-453-1234.\r\n\r\n<strong>References</strong>\r\n\r\n(1) Rabago D. Prolotherapy in primary care practice. Primary Care 2010 37: 65-80.\r\n\r\n(2) Rabago D, <a href=\"http://www.ncbi.nlm.nih.gov/pubmed?term=Best%20TM%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983\">Best TM</a>, <a href=\"http://www.ncbi.nlm.nih.gov/pubmed?term=Beamsley%20M%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983\">Beamsley M</a>, <a href=\"http://www.ncbi.nlm.nih.gov/pubmed?term=Patterson%20J%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983\">Patterson J</a>. A systematic review of prolotherapy for chronic musculoskeletal pain. Clin J Sports Medicine 2005 15: 376-380.\r\n\r\n(3) Hauser, Ross A., Wayne A. Feister, and Debra K. Brinker. \"Dextrose Prolotherapy Treatment for Unresolved “Morton’s Neuroma” Pain.\"<em>The Foot and Ankle Online Journal. 2012. </em><em>doi: 10.3827/faoj.2012.0506.0001</em>.\r\n\r\n(4) Singh, Prashant, et al. \"A systematic review and meta-analysis of platelet-rich plasma versus corticosteroid injections for plantar fasciopathy.\" <em>International orthopaedics</em> 41 (2017): 1169-1181.\r\n\r\n(5) Hurley, Eoghan T., et al. \"Platelet-rich plasma versus corticosteroids for plantar fasciitis: a systematic review of randomized controlled trials.\" <em>Orthopaedic Journal of Sports Medicine</em> 8.4 (2020): 2325967120915704.','Foot Pain Treatment','','inherit','closed','closed','','5835-revision-v1','','','2023-07-31 04:43:22','2023-07-31 04:43:22','',5835,'https://www.drfields.com/?p=5837',0,'revision','',0),(5838,8,'2023-07-31 04:44:35','2023-07-31 04:44:35','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li><a href=\"/articles/regenerative-orthopedics/foot-pain-treatment/\">Foot Pain Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/arthritis-neck-treatment/\">Arthritis Neck Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/back-pain-specialist/\">Back Pain Specialist</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/tennis-elbow-treatment/\">Tennis Elbow Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/hip-arthritis-treatment/\">Hip Arthritis Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/alternative-treatment-for-arthritis/\">Alternative Treatment for Arthritis</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/chronic-pain-management/\">Chronic Pain Management</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-07-31 04:44:35','2023-07-31 04:44:35','',2109,'https://www.drfields.com/?p=5838',0,'revision','',0),(5840,9,'2023-08-02 17:50:47','2023-08-02 17:50:47','<h2><img class=\"alignright wp-image-5836\" src=\"https://www.drfields.com/wp-content/uploads/2023/07/foot-pain-1-500x419.png\" alt=\"Foot Pain Treatment\" width=\"300\" height=\"251\" />Foot Pain Treatment</h2>\nFoot pain afflicts many people. We depend on our feet for so much, from simply getting from place to place to running, working, and dancing. When our feet hurt, our lives are greatly affected, and we\'ll try everything we can to get relief. What foot pain treatments are available for this disabling chronic foot pain?\n\nOptions for relief may include orthotics, massage, and over-the-counter medications. When those don\'t work, steroid injections, or even surgery may be recommended. Are there other options for foot pain?\n<h2>Regenerative Orthopedic Foot Pain Treatments</h2>\nWhen these common treatments fail to achieve the results you seek, regenerative treatments are effective alternatives. At OrthoRegen®, we offer non-surgical alternatives for foot and toe pain called Regenerative Orthopedics. The standard treatment options mentioned earlier may not achieve the relief sought because they oftentimes do not repair the underlying injury causing the pain. Regenerative Orthopedics addresses the underlying issue, which is commonly joint instability caused by tendon or ligament injury.\n\nThe foot, ankle, and toes consist of a lot of bones and joints. These joints are supported by soft tissue such as muscles, tendons, and ligaments. When any of these soft tissue structures become injured, the joint becomes weakened, setting in motion a cycle of abnormal joint movement. As time goes on, the abnormal movement increases, injuring the soft tissue further. The eventual result is arthritis in the joint.\n\nRegenerative Orthopedics directed at the injured soft tissue, strengthens the tissue, and results in repair of the injured area. The joint stabilizes, function is enhanced, and pain will decrease.\n\nAthlete and non-athletes alike who are experiencing a foot injury, very likely desire a treatment option that will get results quickly. Of course, you want to get back to training, return to your sport, or be able to do all of the activities that foot pain has disturbed for way too long. Regenerative Orthopedics rebuilds and restores the injured soft tissue, so you can return to what you love without long recovery times.\n<h2>But Does It Work?</h2>\nHow can I know this treatment works? Regenerative Orthopedics are not a new treatment option. It\'s been around for quite some time. And research has been done proving how beneficial it is.\n\nFor almost 100 years, research has shown the effectiveness of the regenerative treatment option Prolotherapy. (1)\n\nProlotherapy is simple, and works by boosting the bodies\' healing abilities at the injured or weakened area, strengthening and repairing damaged ligaments, tendons, and joint structures. (2)\n\nEven in Morton\'s Neuroma, a difficult to treat condition, Prolotherapy has been shown to be effective. (3) Morton\'s Neuroma, like many other foot conditions, is most likely due to abnormal motion, combined with excessive stress of activity and weight bearing.\n\n<strong>What about PRP?</strong> A study in the medical journal <em>International Orthopedics</em> showed that PRP injections were \"associated with improved pain and function scores when compared with steroid injections\" in patients with plantar fasciopathy who had failed to achieve relief with other conservative measures. (4)\n\nPlantar fasciitis is the most common cause of pain in the heel (plantar) of the foot. Another journal, the <em>Orthopedic Journal of Sports Medicine</em> says,\"that PRP may lead to a greater improvement in pain and functional outcome over corticosteroid injections in patients with plantar fasciitis.\" (5)\n\nRegenerative Orthopedics to the weakened areas strengthens and repairs the affected structures, resulting in increased ability to walk, exercise, and work without pain.\n\nIf foot, ankle, or toe pain is hindering you from carrying out or enjoying daily activities, and the common treatment options you\'ve tried have not resulted in the relief you desire, we encourage you to try Regenerative Orthopedics. Call us to set up an appointment at 310-453-1234.\n<h3><strong>References</strong></h3>\n(1) Rabago D. Prolotherapy in primary care practice. Primary Care 2010 37: 65-80.\n\n(2) Rabago D, <a href=\"http://www.ncbi.nlm.nih.gov/pubmed?term=Best%20TM%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983\">Best TM</a>, <a href=\"http://www.ncbi.nlm.nih.gov/pubmed?term=Beamsley%20M%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983\">Beamsley M</a>, <a href=\"http://www.ncbi.nlm.nih.gov/pubmed?term=Patterson%20J%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983\">Patterson J</a>. A systematic review of prolotherapy for chronic musculoskeletal pain. Clin J Sports Medicine 2005 15: 376-380.\n\n(3) Hauser, Ross A., Wayne A. Feister, and Debra K. Brinker. \"Dextrose Prolotherapy Treatment for Unresolved “Morton’s Neuroma” Pain.\"<em>The Foot and Ankle Online Journal. 2012. </em><em>doi: 10.3827/faoj.2012.0506.0001</em>.\n\n(4) Singh, Prashant, et al. \"A systematic review and meta-analysis of platelet-rich plasma versus corticosteroid injections for plantar fasciopathy.\" <em>International orthopaedics</em> 41 (2017): 1169-1181.\n\n(5) Hurley, Eoghan T., et al. \"Platelet-rich plasma versus corticosteroids for plantar fasciitis: a systematic review of randomized controlled trials.\" <em>Orthopaedic Journal of Sports Medicine</em> 8.4 (2020): 2325967120915704.','Foot Pain Treatment','','inherit','closed','closed','','5835-autosave-v1','','','2023-08-02 17:50:47','2023-08-02 17:50:47','',5835,'https://www.drfields.com/?p=5840',0,'revision','',0),(5841,9,'2023-08-02 17:49:19','2023-08-02 17:49:19','<h2><img class=\"alignright wp-image-5836\" src=\"https://www.drfields.com/wp-content/uploads/2023/07/foot-pain-1-500x419.png\" alt=\"Foot Pain Treatment\" width=\"300\" height=\"251\" />Foot Pain Treatment</h2>\r\nFoot pain afflicts many people. We depend on our feet for so much, from simply getting from place to place to running, working, and dancing. When our feet hurt, our lives are greatly affected, and we\'ll try everything we can to get relief. What foot pain treatments are available for this disabling chronic foot pain?\r\n\r\nOptions for relief may include orthotics, massage, and over-the-counter medications. When those don\'t work, steroid injections, or even surgery may be recommended. Are there other options for foot pain?\r\n<h2>Regenerative Orthopedic Foot Pain Treatments</h2>\r\nWhen these common treatments fail to achieve the results you seek, regenerative treatments are effective alternatives. At OrthoRegen®, we offer non-surgical alternatives for foot and toe pain called Regenerative Orthopedics. The standard treatment options mentioned earlier may not achieve the relief sought because they oftentimes do not repair the underlying injury causing the pain. Regenerative Orthopedics addresses the underlying issue, which is commonly joint instability caused by tendon or ligament injury.\r\n\r\nThe foot, ankle, and toes consist of a lot of bones and joints. These joints are supported by soft tissue such as muscles, tendons, and ligaments. When any of these soft tissue structures become injured, the joint becomes weakened, setting in motion a cycle of abnormal joint movement. As time goes on, the abnormal movement increases, injuring the soft tissue further. The eventual result is arthritis in the joint.\r\n\r\nRegenerative Orthopedics directed at the injured soft tissue, strengthens the tissue, and results in repair of the injured area. The joint stabilizes, function is enhanced, and pain will decrease.\r\n\r\nAthlete and non-athletes alike who are experiencing a foot injury, very likely desire a treatment option that will get results quickly. Of course, you want to get back to training, return to your sport, or be able to do all of the activities that foot pain has disturbed for way too long. Regenerative Orthopedics rebuilds and restores the injured soft tissue, so you can return to what you love without long recovery times.\r\n<h2>But Does It Work?</h2>\r\nHow can I know this treatment works? Regenerative Orthopedics are not a new treatment option. It\'s been around for quite some time. And research has been done proving how beneficial it is.\r\n\r\nFor almost 100 years, research has shown the effectiveness of the regenerative treatment option Prolotherapy. (1)\r\n\r\nProlotherapy is simple, and works by boosting the bodies\' healing abilities at the injured or weakened area, strengthening and repairing damaged ligaments, tendons, and joint structures. (2)\r\n\r\nEven in Morton\'s Neuroma, a difficult to treat condition, Prolotherapy has been shown to be effective. (3) Morton\'s Neuroma, like many other foot conditions, is most likely due to abnormal motion, combined with excessive stress of activity and weight bearing.\r\n\r\n<strong>What about PRP?</strong> A study in the medical journal <em>International Orthopedics</em> showed that PRP injections were \"associated with improved pain and function scores when compared with steroid injections\" in patients with plantar fasciopathy who had failed to achieve relief with other conservative measures. (4)\r\n\r\nPlantar fasciitis is the most common cause of pain in the heel (plantar) of the foot. Another journal, the <em>Orthopedic Journal of Sports Medicine</em> says,\"that PRP may lead to a greater improvement in pain and functional outcome over corticosteroid injections in patients with plantar fasciitis.\" (5)\r\n\r\nRegenerative Orthopedics to the weakened areas strengthens and repairs the affected structures, resulting in increased ability to walk, exercise, and work without pain.\r\n\r\nIf foot, ankle, or toe pain is hindering you from carrying out or enjoying daily activities, and the common treatment options you\'ve tried have not resulted in the relief you desire, we encourage you to try Regenerative Orthopedics. Call us to set up an appointment at 310-453-1234.\r\n\r\n<strong>References</strong>\r\n\r\n(1) Rabago D. Prolotherapy in primary care practice. Primary Care 2010 37: 65-80.\r\n\r\n(2) Rabago D, <a href=\"http://www.ncbi.nlm.nih.gov/pubmed?term=Best%20TM%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983\">Best TM</a>, <a href=\"http://www.ncbi.nlm.nih.gov/pubmed?term=Beamsley%20M%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983\">Beamsley M</a>, <a href=\"http://www.ncbi.nlm.nih.gov/pubmed?term=Patterson%20J%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983\">Patterson J</a>. A systematic review of prolotherapy for chronic musculoskeletal pain. Clin J Sports Medicine 2005 15: 376-380.\r\n\r\n(3) Hauser, Ross A., Wayne A. Feister, and Debra K. Brinker. \"Dextrose Prolotherapy Treatment for Unresolved “Morton’s Neuroma” Pain.\"<em>The Foot and Ankle Online Journal. 2012. </em><em>doi: 10.3827/faoj.2012.0506.0001</em>.\r\n\r\n(4) Singh, Prashant, et al. \"A systematic review and meta-analysis of platelet-rich plasma versus corticosteroid injections for plantar fasciopathy.\" <em>International orthopaedics</em> 41 (2017): 1169-1181.\r\n\r\n(5) Hurley, Eoghan T., et al. \"Platelet-rich plasma versus corticosteroids for plantar fasciitis: a systematic review of randomized controlled trials.\" <em>Orthopaedic Journal of Sports Medicine</em> 8.4 (2020): 2325967120915704.','Foot Pain Treatment','','inherit','closed','closed','','5835-revision-v1','','','2023-08-02 17:49:19','2023-08-02 17:49:19','',5835,'https://www.drfields.com/?p=5841',0,'revision','',0),(5842,9,'2023-08-02 17:50:51','2023-08-02 17:50:51','<h2><img class=\"alignright wp-image-5836\" src=\"https://www.drfields.com/wp-content/uploads/2023/07/foot-pain-1-500x419.png\" alt=\"Foot Pain Treatment\" width=\"300\" height=\"251\" />Foot Pain Treatment</h2>\r\nFoot pain afflicts many people. We depend on our feet for so much, from simply getting from place to place to running, working, and dancing. When our feet hurt, our lives are greatly affected, and we\'ll try everything we can to get relief. What foot pain treatments are available for this disabling chronic foot pain?\r\n\r\nOptions for relief may include orthotics, massage, and over-the-counter medications. When those don\'t work, steroid injections, or even surgery may be recommended. Are there other options for foot pain?\r\n<h2>Regenerative Orthopedic Foot Pain Treatments</h2>\r\nWhen these common treatments fail to achieve the results you seek, regenerative treatments are effective alternatives. At OrthoRegen®, we offer non-surgical alternatives for foot and toe pain called Regenerative Orthopedics. The standard treatment options mentioned earlier may not achieve the relief sought because they oftentimes do not repair the underlying injury causing the pain. Regenerative Orthopedics addresses the underlying issue, which is commonly joint instability caused by tendon or ligament injury.\r\n\r\nThe foot, ankle, and toes consist of a lot of bones and joints. These joints are supported by soft tissue such as muscles, tendons, and ligaments. When any of these soft tissue structures become injured, the joint becomes weakened, setting in motion a cycle of abnormal joint movement. As time goes on, the abnormal movement increases, injuring the soft tissue further. The eventual result is arthritis in the joint.\r\n\r\nRegenerative Orthopedics directed at the injured soft tissue, strengthens the tissue, and results in repair of the injured area. The joint stabilizes, function is enhanced, and pain will decrease.\r\n\r\nAthlete and non-athletes alike who are experiencing a foot injury, very likely desire a treatment option that will get results quickly. Of course, you want to get back to training, return to your sport, or be able to do all of the activities that foot pain has disturbed for way too long. Regenerative Orthopedics rebuilds and restores the injured soft tissue, so you can return to what you love without long recovery times.\r\n<h2>But Does It Work?</h2>\r\nHow can I know this treatment works? Regenerative Orthopedics are not a new treatment option. It\'s been around for quite some time. And research has been done proving how beneficial it is.\r\n\r\nFor almost 100 years, research has shown the effectiveness of the regenerative treatment option Prolotherapy. (1)\r\n\r\nProlotherapy is simple, and works by boosting the bodies\' healing abilities at the injured or weakened area, strengthening and repairing damaged ligaments, tendons, and joint structures. (2)\r\n\r\nEven in Morton\'s Neuroma, a difficult to treat condition, Prolotherapy has been shown to be effective. (3) Morton\'s Neuroma, like many other foot conditions, is most likely due to abnormal motion, combined with excessive stress of activity and weight bearing.\r\n\r\n<strong>What about PRP?</strong> A study in the medical journal <em>International Orthopedics</em> showed that PRP injections were \"associated with improved pain and function scores when compared with steroid injections\" in patients with plantar fasciopathy who had failed to achieve relief with other conservative measures. (4)\r\n\r\nPlantar fasciitis is the most common cause of pain in the heel (plantar) of the foot. Another journal, the <em>Orthopedic Journal of Sports Medicine</em> says,\"that PRP may lead to a greater improvement in pain and functional outcome over corticosteroid injections in patients with plantar fasciitis.\" (5)\r\n\r\nRegenerative Orthopedics to the weakened areas strengthens and repairs the affected structures, resulting in increased ability to walk, exercise, and work without pain.\r\n\r\nIf foot, ankle, or toe pain is hindering you from carrying out or enjoying daily activities, and the common treatment options you\'ve tried have not resulted in the relief you desire, we encourage you to try Regenerative Orthopedics. Call us to set up an appointment at 310-453-1234.\r\n<h3><strong>References</strong></h3>\r\n(1) Rabago D. Prolotherapy in primary care practice. Primary Care 2010 37: 65-80.\r\n\r\n(2) Rabago D, <a href=\"http://www.ncbi.nlm.nih.gov/pubmed?term=Best%20TM%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983\">Best TM</a>, <a href=\"http://www.ncbi.nlm.nih.gov/pubmed?term=Beamsley%20M%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983\">Beamsley M</a>, <a href=\"http://www.ncbi.nlm.nih.gov/pubmed?term=Patterson%20J%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983\">Patterson J</a>. A systematic review of prolotherapy for chronic musculoskeletal pain. Clin J Sports Medicine 2005 15: 376-380.\r\n\r\n(3) Hauser, Ross A., Wayne A. Feister, and Debra K. Brinker. \"Dextrose Prolotherapy Treatment for Unresolved “Morton’s Neuroma” Pain.\"<em>The Foot and Ankle Online Journal. 2012. </em><em>doi: 10.3827/faoj.2012.0506.0001</em>.\r\n\r\n(4) Singh, Prashant, et al. \"A systematic review and meta-analysis of platelet-rich plasma versus corticosteroid injections for plantar fasciopathy.\" <em>International orthopaedics</em> 41 (2017): 1169-1181.\r\n\r\n(5) Hurley, Eoghan T., et al. \"Platelet-rich plasma versus corticosteroids for plantar fasciitis: a systematic review of randomized controlled trials.\" <em>Orthopaedic Journal of Sports Medicine</em> 8.4 (2020): 2325967120915704.','Foot Pain Treatment','','inherit','closed','closed','','5835-revision-v1','','','2023-08-02 17:50:51','2023-08-02 17:50:51','',5835,'https://www.drfields.com/?p=5842',0,'revision','',0),(5843,8,'2023-08-07 03:44:39','2023-08-07 03:44:39','<h2>Common Questions for Services at OrthoRegen<sup>®</sup></h2>\r\n[caption id=\"attachment_4393\" align=\"alignright\" width=\"500\"]<img class=\"wp-image-4393 size-medium\" src=\"https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png\" alt=\"Prolotherapy Copy 2\" width=\"500\" height=\"500\" /> <em><strong> Non-Surgical Services at OrthoRegen for Joint Pain</strong></em>[/caption]\r\n<h3><strong>What Is the Payment Policy for Service?</strong></h3>\r\nInvesting in your health should be very important to you. And we are so happy you have chosen to look into the services offered at OrthoRegen.<sup>® </sup>\r\n\r\nSince the future of health care is changing, you should be involved with this investment. When you make a financial investment, you measure it by how much it grows each year. Investing in your health pays off in many different ways: wellness, health stability, quality of life, energy, happiness, and more.\r\n\r\nOnly you can decide what is fair and if it is worth the investment even if you pay out-of-pocket costs for your health care.\r\n\r\nWe will make every effort to instill the feeling that your time with us is worth it.\r\n<h3>Is OrthoRegen<sup>® </sup>a Fee for Service Office?</h3>\r\nYes! And as a <strong>Fee for Service Office,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\n<em>We accept credit cards, checks, or cash for payment of services.</em>\r\n<h4>What Should I Expect at the First Visit?</h4>\r\nDuring your first visit to OrthoRegen,<sup>® </sup>a complete Regenerative Orthopedics history and physical is done. This takes approximately 30-40 minutes. Your regenerative medicine expert will then recommend the best treatment option according to your particular needs and case.\r\n<h4>The Regenerative Orthopedic treatment options are explained below with current fees:</h4>\r\n[caption id=\"\" align=\"alignright\" width=\"586\"]<a class=\"enhancr_card_5084827434\" href=\"https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/\" target=\"_blank\" rel=\"nofollow noopener\"><img class=\"ydpb17459af\" src=\"https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png\" alt=\"\" width=\"586\" height=\"434\" data-inlineimagemanipulating=\"true\" data-id=\"1624650312930\" /></a> <em>We accept credit cards, checks, or cash for payment of services at OrthoRegen.</em>[/caption]\r\n<h3></h3>\r\n<h3>What Are the Regenerative Orthopedics Fees?</h3>\r\nInitial Regenerative Orthopedic Consultation: $550\r\n<h4>Prolotherapy Charges:</h4>\r\nSmall Joint (Foot, hand, fingers, toes, ankle, elbow, TMJ): $500\r\nMedium Joint (Knee, hip, shoulder, ribs): $600\r\nLarge Joint (Groin, neck, mid-back, or low back): $1600\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><strong>Platelet Rich Plasma:</strong></h4>\r\n<strong> </strong>$550 Plus, the above joint charges\r\n<h4>Stem Cell Therapy:</h4>\r\nPlease call for pricing\r\n<h3>What Is the Insurance Policy at OrthoRegen<sup>® </sup>for Services?</h3>\r\nWe will provide you with a detailed invoice that you can submit to your insurance company for possible reimbursement. As noted above, we are a <strong>Fee for Service Office. And as such,</strong> we request that the <u><strong>fee is paid in full at the time of service</strong></u>.\r\n\r\nSince <strong>we do not subscribe to any insurance networks</strong>, <strong>we</strong><u><strong> cannot guarantee insurance reimbursement.</strong></u>\r\n\r\nInsurance billing can be up to 40 percent of a medical office’s overhead. It involves a lot of time and effort. We would rather put that time and effort into caring for our patients instead of billing insurance companies. It also helps us keep our prices reasonable.\r\n<h4>Remember that health insurance is a contract between you and your insurance carrier.</h4>\r\nIf so inclined, you can contact your insurance carrier and ask them if they cover an MD office visit (codes: 99203 or 4; 99213 or 4.) They will not tell you how much they cover – only whether they cover it or not. Most insurance companies cover MD’s office visits. This is what we bill for.\r\n\r\nAll bills are issued under Dr. Fields’ medical license (MD). Unfortunately, there is still no guarantee that insurance companies will reimburse you for your treatments even after they have said yes to complete or partial coverage.\r\n<h3><u><strong>Are You a Medicare of Medi-cal Provider?</strong></u></h3>\r\n<u>No. And since we are not a Medicare or Medi-cal provider, <strong>we cannot bill Medicare or Medi-cal.</strong></u>\r\nPlease do not ask us to attempt this, as it is not possible.\r\n<h3><u><strong>Are Medical Records or MRI’s/X-rays Necessary?</strong></u></h3>\r\nAny pertinent medical records can be faxed [phone] to the office prior to your visit. The report of the MRI/X-ray can also be faxed or brought with you.\r\n\r\nActual MRIs or x-rays are not absolutely necessary but may be brought with you.\r\n<h3><u><strong>How Long Is Each Visit?</strong></u></h3>\r\nThe first visit is approximately one hour. Each additional visit is about half an hour unless there is more than one area being treated. You can discuss this with the doctor on your first visit.\r\n<h3><u><strong>Can I Receive Treatment at the Initial Visit?</strong></u></h3>\r\nIf after your history and examination it is determined that you are a good candidate for Regenerative Orthopedics treatments, then after reviewing the recommendations with your clinician, you can receive treatment on your first visit.\r\n\r\nWe are excited that you are looking into this non-surgical alternative. Are you ready to get back to all the things you loved doing before pain changed your life? We are here to help you get your life back. Call us soon!\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>','Common Questions','','inherit','closed','closed','','207-revision-v1','','','2023-08-07 03:44:39','2023-08-07 03:44:39','',207,'https://www.drfields.com/?p=5843',0,'revision','',0),(5845,9,'2023-08-11 20:56:39','2023-08-11 20:56:39','<h2 style=\"text-align: left;\">The Athletic Doc<sup>®</sup></h2>\r\nPeter A. Fields, MD, DC has become known as <strong>The Athletic Doc<sup>®.  </sup></strong>\r\n\r\nHe not only treats athletes but is an athlete himself, so he understands the desire to keep active. So if you suffer an injury, he gets what it means to you to get back into the game or to return quickly to your sport.\r\n\r\n[caption id=\"attachment_374\" align=\"alignright\" width=\"498\"]<img class=\" wp-image-374\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg\" alt=\"Dr Fields Pete Jacobs Small\" width=\"498\" height=\"369\" /> <em><strong> Pete Jacobs 2012 Ironman World Champion and Dr. Fields           (The Atletic Doc<sup>®)</sup></strong></em><span style=\"font-size: 16px;\">He not only treats athletes in his practice but is an athlete himself.</span>[/caption]\r\n<h3>How Doctor Fields Became <strong class=\"subhead\">The Athletic Doc<sup>®</sup></strong></h3>\r\nFor over twenty years, Dr. Fields has been active in the sport of Triathlon which has led to him becoming known as <strong>The Athletic Doc<sup>®</sup></strong>. To date, he has completed eleven Ironman Triathlons. An Ironman Triathlon is a 2.4-mile swim, a 112-mile bike, and a 26.2-mile run. Dr. Fields has competed in over 60 other Triathlons in his career, including eight half (70.3) Ironman competitions as well as numerous Olympic distance ones. He says that even with all the years of training and racing, he still enjoys the challenges of it all.\r\n\r\nWith a busy practice, Dr. Fields still makes time to work out. During the triathlon season, he can be found swimming, biking, or running six to seven days a week in addition to a regime of active stretching twice a day. On most weekends, Dr. Fields can be found on long training rides. Besides being outdoors and keeping himself very physically active, Dr. Fields also enjoys the camaraderie of his training partners. In addition to the sport of Triathlon, Dr. Fields is a competitive tennis player and participates in several other athletic activities including skiing, lifting weights, scuba diving, and hiking to name just a few.\r\n\r\n[caption id=\"attachment_4938\" align=\"alignleft\" width=\"359\"]<img class=\" wp-image-4938\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/3c2609ba-657a-4097-a191-6a009c32f46e-366x500.jpg\" alt=\"The Athletic Doc Scuba Diving\" width=\"359\" height=\"490\" /> <strong>      <em>The Athletic Doc Scuba Diving</em></strong>[/caption]\r\n<h3><strong class=\"subhead\">Peter A. Fields, MD, DC</strong> Keeps Active and Fit to Maintain Optimal Health</h3>\r\nDr. Fields finds that keeping fit and active is not only important in keeping him in top physical shape but also in staying in touch with those patients that are, or want to be, active. To keep his body at maximum efficiency and maintain optimal health, Dr. Fields eats a very healthy diet which includes lots of organic fruits and vegetables and other whole food products. He avoids processed foods, fried foods, and white flour or white sugar products. <em>The Athletic Doc<sup>®</sup></em> also utilizes a daily vitamin and supplement regime as well as massage therapy, chiropractic, and of course, <strong>Prolotherapy</strong> for those injuries that just won\'t heal. Plus he makes sure to get plenty of sleep, drink lots of water, and have some quiet time in his life.\r\n\r\nDr. Fields is a nationally known <a href=\"#\">Prolotherapy</a> Doctor. For more severe injuries, Dr. Fields recommends <a href=\"#\">PRP Prolotherapy</a>, which uses a patient\'s own cells to stimulate healing. And for his patients who have arthritic joints, torn or missing cartilage, or bone-on-bone conditions, Dr. Fields is a nationally known <a href=\"#\">Stem Cell Prolotherapy</a> doctor who regularly helps his patients avoid joint replacement surgery.\r\n<h2>About Peter A. Fields, MD, DC</h2>\r\nDr. Fields is the Director of OrthoRegen<sup>®</sup> in Santa Monica, California, one of the largest practices in the world dedicated to Regenerative Orthopedics. Dr. Fields treats patients from around the United States and the World: from professional athletes to weekend warriors and even non-athletes. He helps people avoid orthopedic surgeries whether full surgery or arthroscopic.\r\n\r\nDr. Fields is a leading expert in Regenerative Orthopedic treatments such as Stem Cells, PRP, and Prolotherapy, to help people reduce pain and prevent joint replacement.\r\n\r\n<strong><em>The Athletic Doc<sup>®</sup> motto is \"not only train hard but smart – as if your body depended on it\"</em></strong>\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<div class=\"fullwidth color_bar\">\r\n<div id=\"aboutdocgallery\" class=\"col-md-12\">\r\n<h4>Ironman Photos &amp; Stories</h4>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg\" />2017 Ironman Santa Rose</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg\" />2016 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg\" />2016 Ironman Switzerland</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg\" />2015 Ironman Cozumel</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg\" />2015 Ironman Brazil</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg\" />2014 Ironman Austria</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg\" />2013 Ironman Canada</a></li>\r\n 	<li><a href=\"https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/\"><img src=\"https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg\" />2012 Ironman Cozumel</a></li>\r\n</ul>\r\n</div>\r\n</div>','About The Athletic Doc','','inherit','closed','closed','','373-revision-v1','','','2023-08-11 20:56:39','2023-08-11 20:56:39','',373,'https://www.drfields.com/?p=5845',0,'revision','',0),(5847,8,'2023-08-16 04:09:29','2023-08-16 04:09:29','<img class=\"alignright wp-image-5848\" src=\"https://www.drfields.com/wp-content/uploads/2023/08/ACL-Tearblog.1png-500x419.png\" alt=\"ACL TEAR Repair\" width=\"350\" height=\"293\" />\r\n<h2>Anterior Cruciate Ligament (ACL) Tear Repair</h2>\r\nAn anterior cruciate ligament (ACL) injury often means that you feel your knee giving out. A \"popping\" noise may also be heard, and there may be pain along the outside or back of knee. Partial ACL tears may \"heal\" on their own, but other problems can develop down the road because of incomplete healing and other associated injuries. Complete healing and repair of the entire injury is important, and comprehensive Regenerative Orthopedics are effective treatment options for ACL injuries.\r\n<h2>Treatment Options for ACL Tear Repair</h2>\r\nRepair of the anterior cruciate ligament (ACL) has traditionally been surgical, but an increase in injuries has lead to a higher need of repair and an increase in younger patients who may end up with complications with these surgical repairs. Because of these changes, alternatives to surgery are being sought. Regenerative techniques are being considered because they enhance repair and regeneration of tissue and are excellent options specific to the repair of ligament and tendon soft tissue structures.\r\n\r\nWhy is ACL repair important? Because the knee instability that occurs due to injury needs to be resolved, or further damage can occur to the other knee structures. Without resolution of the instability, the long-term complication of arthritis will also likely occur. Additionally, regenerating the injured ligament, rather than replacing it with grafts, can help boost the normal biomechanics of the knee. (1)\r\n<h2>ACL Tear Repair with Regenerative Orthopedics</h2>\r\nThe ACL responds well to healing by regenerative treatments like Platelet Rich Plasma, which provide the needed fibrin-platelet clot and growth factors for repair. PRP is a rich source of growth factors, limiting inflammation, and promoting tissue regeneration. (2) This platelet concentrate releases a number of crucial growth factors that stimulate repair and collagen production.(3)\r\n\r\nRegenerative Orthopedics are an effective alternative for the difficult-to-treat younger patient with ACL injury. Researchers in the <em>Sports medicine and arthroscopy Review </em>say this<em>:</em>\r\n\r\n\"Younger and more active patients benefit from regenerative approaches that encourage biological repair since they prevent complications provoked by the high stresses due to high physical demand over a prolonged time after classic replacement with synthetic materials.\"(3)\r\n\r\nAt our OrthoRegen® clinic, patients are looking to avoid surgery, or have tried surgery and continue to have knee issues. Many young athletes choose surgery because they expect it to get that back in the game. Sometimes it does and sometimes it fails. Physical Therapy also works to strengthen the leg, but unfortunately may not work to sufficiently stabilize the knee, because the ligament cannot be repaired with PT. Therefore, a non-surgical solution to repair the instability is desired.\r\n<h2>ACL Injury and Accompanying Injuries</h2>\r\nAdditionally, when an injury is significant enough to injure the ACL, it is very likely that other knee ligaments and/or the meniscus are injured as well. That\'s when comprehensive regenerative treatments really shine. Why is that? Because comprehensive Regenerative Orthopedics treat the entire knee. All of the injured areas will be attended to for maximal healing results. On the other hand, ligament reconstruction, the usual management technique for significant ACL injuries, using replacement auto- or allografts, as noted earlier, have less than satisfactory outcomes, including instability that could progressively damage other knee structures, and result in arthritis.\r\n<h4><em><strong>What happens to those who skip repair altogether?</strong></em></h4>\r\nA November 2021 study in the <em>Progress in Rehabilitation Medicine</em> investigated whether student-athletes with anterior cruciate ligament (ACL) injuries who returned to sports without reconstruction could continue their sporting activities until the end of the season and whether there was an increase in secondary damage associated with knee instability. What did they find? The majority of athletes experienced their knees giving way and some experienced injury of their meniscus. Unfortunately, with ACL injury, instability occurs and the knee needs to be repaired. Non-surgical repair with Regenerative Orthopedics is an effective option.\r\n<h4><em><strong>Is surgery the answer?</strong></em></h4>\r\nHere\'s what researchers from Brown University say, “Accelerated rehabilitation has made recovery from (ACL) surgery more predictable and shortened the timeline for return to play (from ACL reconstruction surgery). (However) Despite success with advancements in anterior cruciate ligament reconstructions, <strong>some athletes still fail to return to play</strong>.” There may be short-term results, but in the long-term, stability of the knee becomes problematic. A solution that saves the biological ligament, like Regenerative Orthopedics is able to do, is the optimal way to go, because it repairs the underlying problem of instability and treats the whole knee, including the meniscus. (4)\r\n\r\nInstability of the knee after ACL injury or even ACL surgery will lead to the eventual breakdown of the knee structures. <strong>The instability needs to be addressed.</strong> The abnormal motion that is caused by the ACL injury needs to be repaired to stop secondary pathology from the instability. Knee instability is the problem that needs to be solved, and no amount of surgery will address it. Regenerative Orthopedics do address knee instability.\r\n<h2>The Benefits of Regenerative Orthopedics for ACL Tears and Injuries</h2>\r\nProlotherapy, one type of regenerative therapy, has been around a very long time. The treatment has long been associated with being effectiveness in treating joint instability due to ligament and/or damage. Over the years, research continues to prove its efficacy as a non-surgical treatment for joint and spine pain and injury. (5)\r\n\r\nWe also mentioned the research on the benefits of PRP earlier. That study and others, show the  benefits of biological augmentation, using PRP and stem cells, to improve healing and a faster return to sport and activities of daily living for those with partial ACL tears. (6)\r\n\r\nIt is important to note that if the tear is complete, these regenerative therapies cannot regrow an absent ligament. They can restore strength and stability for a partial tear, ACL damage, and other knee soft tissue injury. Additionally, for the highest success, the entire knee should be addressed and treated comprehensively in order to repair all damaged structures and prevent the development of arthritis.\r\n\r\nDepending on the severity of injury, Prolotherapy alone may be recommended. If meniscus injury is present, Prolotherapy and PRP may be recommended. And, if more advanced degeneration and/or arthritis is evident, stem cell treatment may also be indicated.\r\n\r\nHas surgery has been recommended for an ACL repair? Are you are seeking a non-surgical solution for an ACL injury? If so, we would be happy to discuss our Regenerative Orthopedic approaches and your options for ACL tear repair.<strong> </strong>\r\n<h3><strong>References</strong></h3>\r\n(1) Vavken P, Murray MM. Translational Studies in ACL repair. <em>Tissue Eng Part A. </em>2009\r\n\r\n(2) El-Sharkawy H, Kantarci A, Deady J, et al. Platelet-rich plasma: growth factors and pro- and anti-inflammatory properties. <em>J Periodontol. </em>2007;78:661–669.\r\n\r\n(3) Vavken, Patrick, and Martha M. Murray. \"The potential for primary repair of the ACL.\" <em>Sports medicine and arthroscopy review</em> 19.1 (2011): 44.\r\n\r\n(4) Morris RC, Hulstyn MJ, Fleming BC, Owens BD, Fadale PD. Return to Play Following Anterior Cruciate Ligament Reconstruction. Clin Sports Med. 2016 Oct;35(4):655-68. doi: 10.1016/j.csm.2016.05.009. Epub 2016 Jun 22. PMID: 27543405.\r\n\r\n(5) Reeves KD, Hassanein KM. Long-term effects of dextrose prolotherapy for anterior cruciate ligament laxity. Altern Ther Health Med. 2003 May-Jun;9(3):58-62. PMID: 12776476.\r\n\r\n(6) Dallo I, Chahla J, Mitchell JJ, Pascual-Garrido C, Feagin JA, LaPrade RF. Biologic Approaches for the Treatment of Partial Tears of the Anterior Cruciate Ligament: A Current Concepts Review. Orthop J Sports Med. 2017 Jan 25;5(1):2325967116681724. doi: 10.1177/2325967116681724. PMID: 28210653; PMCID: PMC5298533.','ACL TEAR Repair','','publish','closed','open','','acl-tear-repair','','','2023-08-16 21:39:22','2023-08-16 21:39:22','',0,'https://www.drfields.com/?p=5847',0,'post','',0),(5848,8,'2023-08-16 04:09:01','2023-08-16 04:09:01','Acl Tearblog.1png','ACL TEAR Repair','Acl Tearblog.1png','inherit','closed','closed','','acl-tearblog-1png','','','2023-08-16 04:09:18','2023-08-16 04:09:18','',5847,'https://www.drfields.com/wp-content/uploads/2023/08/ACL-Tearblog.1png.png',0,'attachment','image/png',0),(5849,8,'2023-08-16 04:09:29','2023-08-16 04:09:29','[caption id=\"attachment_5848\" align=\"alignright\" width=\"350\"]<img class=\"wp-image-5848\" src=\"https://www.drfields.com/wp-content/uploads/2023/08/ACL-Tearblog.1png-500x419.png\" alt=\"ACL TEAR Repair\" width=\"350\" height=\"293\" /> Acl Tearblog.1png[/caption]\r\n\r\nAn anterior cruciate ligament (ACL) injury often means that you feel your knee giving out. A \"popping\" noise may also be heard, and there may be pain along the outside or back of knee. Partial tears of this ligament may \"heal\" on their own, but other problems can develop down the road because of incomplete healing and other associated injuries. Complete healing and repair of the entire injury is important, and comprehensive Regenerative Orthopedics are effective treatment options for ACL injuries.\r\n<h2>Treatment Options for ACL Repair</h2>\r\nRepair of the anterior cruciate ligament (ACL) has traditionally been surgical, but an increase in injuries has lead to a higher need of repair and an increase in younger patients who may end up with complications with these surgical repairs. Because of these changes, alternatives to surgery are being sought. Regenerative techniques are being considered because they enhance repair and regeneration of tissue and are excellent options specific to the repair of ligament and tendon soft tissue structures.\r\n\r\nWhy is ACL repair important? Because the knee instability that occurs due to injury needs to be resolved, or further damage can occur to the other knee structures. Without resolution of the instability, the long-term complication of arthritis will also likely occur. Additionally, regenerating the injured ligament, rather than replacing it with grafts, can help boost the normal biomechanics of the knee. (1)\r\n<h2>ACL Repair with Regenerative Orthopedics</h2>\r\nThe ACL responds well to healing by regenerative treatments like Platelet Rich Plasma, which provide the needed fibrin-platelet clot and growth factors for repair. PRP is a rich source of growth factors, limiting inflammation, and promoting tissue regeneration. (2) This platelet concentrate releases a number of crucial growth factors that stimulate repair and collagen production.(3)\r\n\r\nRegenerative Orthopedics are an effective alternative for the difficult-to-treat younger patient with ACL injury. Researchers in the <em>Sports medicine and arthroscopy Review </em>say this<em>:</em>\r\n\r\n\"Younger and more active patients benefit from regenerative approaches that encourage biological repair since they prevent complications provoked by the high stresses due to high physical demand over a prolonged time after classic replacement with synthetic materials.\"(3)\r\n\r\nAt our OrthoRegen® clinic, patients are looking to avoid surgery, or have tried surgery and continue to have knee issues. Many young athletes choose surgery because they expect it to get that back in the game. Sometimes it does and sometimes it fails. Physical Therapy also works to strengthen the leg, but unfortunately may not work to sufficiently stabilize the knee, because the ligament cannot be repaired with PT. Therefore, a non-surgical solution to repair the instability is desired.\r\n<h2>ACL Injury and Accompanying Injuries</h2>\r\nAdditionally, when an injury is significant enough to injure the ACL, it is very likely that other knee ligaments and/or the meniscus are injured as well. That\'s when comprehensive regenerative treatments really shine. Why is that? Because comprehensive Regenerative Orthopedics treat the entire knee. All of the injured areas will be attended to for maximal healing results. On the other hand, ligament reconstruction, the usual management technique for significant ACL injuries, using replacement auto- or allografts, as noted earlier, have less than satisfactory outcomes, including instability that could progressively damage other knee structures, and result in arthritis.\r\n\r\n<strong>What happens to those who skip repair altogether?</strong> A November 2021 study in the <em>Progress in Rehabilitation Medicine</em> investigated whether student-athletes with anterior cruciate ligament (ACL) injuries who returned to sports without reconstruction could continue their sporting activities until the end of the season and whether there was an increase in secondary damage associated with knee instability. What did they find? The majority of athletes experienced their knees giving way and some experienced injury of their meniscus. Unfortunately, with ACL injury, instability occurs and the knee needs to be repaired. Non-surgical repair with Regenerative Orthopedics is an effective option.\r\n\r\n<strong>Is surgery the answer?</strong> Here\'s what researchers from Brown University say, “Accelerated rehabilitation has made recovery from (ACL) surgery more predictable and shortened the timeline for return to play (from ACL reconstruction surgery). (However) Despite success with advancements in anterior cruciate ligament reconstructions, <strong>some athletes still fail to return to play</strong>.” There may be short-term results, but in the long-term, stability of the knee becomes problematic. A solution that saves the biological ligament, like Regenerative Orthopedics is able to do, is the optimal way to go, because it repairs the underlying problem of instability and treats the whole knee, including the meniscus. (4)\r\n\r\nInstability of the knee after ACL injury or even ACL surgery will lead to the eventual breakdown of the knee structures. <strong>The instability needs to be addressed.</strong> The abnormal motion that is caused by the ACL injury needs to be repaired to stop secondary pathology from the instability. Knee instability is the problem that needs to be solved, and no amount of surgery will address it. Regenerative Orthopedics do address knee instability.\r\n<h2>The Benefits of Regenerative Orthopedics</h2>\r\nProlotherapy, one type of regenerative therapy, has been around a very long time. The treatment has long been associated with being effectiveness in treating joint instability due to ligament and/or damage. Over the years, research continues to prove its efficacy as a non-surgical treatment for joint and spine pain and injury. (5)\r\n\r\nWe also mentioned the research on the benefits of PRP earlier. That study and others, show the  benefits of biological augmentation, using PRP and stem cells, to improve healing and a faster return to sport and activities of daily living for those with partial ACL tears. (6)\r\n\r\nIt is important to note that if the tear is complete, these regenerative therapies cannot regrow an absent ligament. They can restore strength and stability for a partial tear, ACL damage, and other knee soft tissue injury. Additionally, for the highest success, the entire knee should be addressed and treated comprehensively in order to repair all damaged structures and prevent the development of arthritis.\r\n\r\nDepending on the severity of injury, Prolotherapy alone may be recommended. If meniscus injury is present, Prolotherapy and PRP may be recommended. And, if more advanced degeneration and/or arthritis is evident, stem cell treatment may also be indicated.\r\n\r\nHas surgery has been recommended for an ACL repair? Are you are seeking a non-surgical solution for an ACL injury? If so, we would be happy to discuss our Regenerative Orthopedic approaches and your options.<strong> </strong>\r\n\r\n<strong>References</strong>\r\n\r\n(1) Vavken P, Murray MM. Translational Studies in ACL repair. <em>Tissue Eng Part A. </em>2009\r\n\r\n(2) El-Sharkawy H, Kantarci A, Deady J, et al. Platelet-rich plasma: growth factors and pro- and anti-inflammatory properties. <em>J Periodontol. </em>2007;78:661–669.\r\n\r\n(3) Vavken, Patrick, and Martha M. Murray. \"The potential for primary repair of the ACL.\" <em>Sports medicine and arthroscopy review</em> 19.1 (2011): 44.\r\n\r\n(4) Morris RC, Hulstyn MJ, Fleming BC, Owens BD, Fadale PD. Return to Play Following Anterior Cruciate Ligament Reconstruction. Clin Sports Med. 2016 Oct;35(4):655-68. doi: 10.1016/j.csm.2016.05.009. Epub 2016 Jun 22. PMID: 27543405.\r\n\r\n(5) Reeves KD, Hassanein KM. Long-term effects of dextrose prolotherapy for anterior cruciate ligament laxity. Altern Ther Health Med. 2003 May-Jun;9(3):58-62. PMID: 12776476.\r\n\r\n(6) Dallo I, Chahla J, Mitchell JJ, Pascual-Garrido C, Feagin JA, LaPrade RF. Biologic Approaches for the Treatment of Partial Tears of the Anterior Cruciate Ligament: A Current Concepts Review. Orthop J Sports Med. 2017 Jan 25;5(1):2325967116681724. doi: 10.1177/2325967116681724. PMID: 28210653; PMCID: PMC5298533.','ACL TEAR Repair','','inherit','closed','closed','','5847-revision-v1','','','2023-08-16 04:09:29','2023-08-16 04:09:29','',5847,'https://www.drfields.com/?p=5849',0,'revision','',0),(5850,8,'2023-08-16 04:09:46','2023-08-16 04:09:46','<img class=\"alignright wp-image-5848\" src=\"https://www.drfields.com/wp-content/uploads/2023/08/ACL-Tearblog.1png-500x419.png\" alt=\"ACL TEAR Repair\" width=\"350\" height=\"293\" />\r\n\r\nAn anterior cruciate ligament (ACL) injury often means that you feel your knee giving out. A \"popping\" noise may also be heard, and there may be pain along the outside or back of knee. Partial tears of this ligament may \"heal\" on their own, but other problems can develop down the road because of incomplete healing and other associated injuries. Complete healing and repair of the entire injury is important, and comprehensive Regenerative Orthopedics are effective treatment options for ACL injuries.\r\n<h2>Treatment Options for ACL Repair</h2>\r\nRepair of the anterior cruciate ligament (ACL) has traditionally been surgical, but an increase in injuries has lead to a higher need of repair and an increase in younger patients who may end up with complications with these surgical repairs. Because of these changes, alternatives to surgery are being sought. Regenerative techniques are being considered because they enhance repair and regeneration of tissue and are excellent options specific to the repair of ligament and tendon soft tissue structures.\r\n\r\nWhy is ACL repair important? Because the knee instability that occurs due to injury needs to be resolved, or further damage can occur to the other knee structures. Without resolution of the instability, the long-term complication of arthritis will also likely occur. Additionally, regenerating the injured ligament, rather than replacing it with grafts, can help boost the normal biomechanics of the knee. (1)\r\n<h2>ACL Repair with Regenerative Orthopedics</h2>\r\nThe ACL responds well to healing by regenerative treatments like Platelet Rich Plasma, which provide the needed fibrin-platelet clot and growth factors for repair. PRP is a rich source of growth factors, limiting inflammation, and promoting tissue regeneration. (2) This platelet concentrate releases a number of crucial growth factors that stimulate repair and collagen production.(3)\r\n\r\nRegenerative Orthopedics are an effective alternative for the difficult-to-treat younger patient with ACL injury. Researchers in the <em>Sports medicine and arthroscopy Review </em>say this<em>:</em>\r\n\r\n\"Younger and more active patients benefit from regenerative approaches that encourage biological repair since they prevent complications provoked by the high stresses due to high physical demand over a prolonged time after classic replacement with synthetic materials.\"(3)\r\n\r\nAt our OrthoRegen® clinic, patients are looking to avoid surgery, or have tried surgery and continue to have knee issues. Many young athletes choose surgery because they expect it to get that back in the game. Sometimes it does and sometimes it fails. Physical Therapy also works to strengthen the leg, but unfortunately may not work to sufficiently stabilize the knee, because the ligament cannot be repaired with PT. Therefore, a non-surgical solution to repair the instability is desired.\r\n<h2>ACL Injury and Accompanying Injuries</h2>\r\nAdditionally, when an injury is significant enough to injure the ACL, it is very likely that other knee ligaments and/or the meniscus are injured as well. That\'s when comprehensive regenerative treatments really shine. Why is that? Because comprehensive Regenerative Orthopedics treat the entire knee. All of the injured areas will be attended to for maximal healing results. On the other hand, ligament reconstruction, the usual management technique for significant ACL injuries, using replacement auto- or allografts, as noted earlier, have less than satisfactory outcomes, including instability that could progressively damage other knee structures, and result in arthritis.\r\n\r\n<strong>What happens to those who skip repair altogether?</strong> A November 2021 study in the <em>Progress in Rehabilitation Medicine</em> investigated whether student-athletes with anterior cruciate ligament (ACL) injuries who returned to sports without reconstruction could continue their sporting activities until the end of the season and whether there was an increase in secondary damage associated with knee instability. What did they find? The majority of athletes experienced their knees giving way and some experienced injury of their meniscus. Unfortunately, with ACL injury, instability occurs and the knee needs to be repaired. Non-surgical repair with Regenerative Orthopedics is an effective option.\r\n\r\n<strong>Is surgery the answer?</strong> Here\'s what researchers from Brown University say, “Accelerated rehabilitation has made recovery from (ACL) surgery more predictable and shortened the timeline for return to play (from ACL reconstruction surgery). (However) Despite success with advancements in anterior cruciate ligament reconstructions, <strong>some athletes still fail to return to play</strong>.” There may be short-term results, but in the long-term, stability of the knee becomes problematic. A solution that saves the biological ligament, like Regenerative Orthopedics is able to do, is the optimal way to go, because it repairs the underlying problem of instability and treats the whole knee, including the meniscus. (4)\r\n\r\nInstability of the knee after ACL injury or even ACL surgery will lead to the eventual breakdown of the knee structures. <strong>The instability needs to be addressed.</strong> The abnormal motion that is caused by the ACL injury needs to be repaired to stop secondary pathology from the instability. Knee instability is the problem that needs to be solved, and no amount of surgery will address it. Regenerative Orthopedics do address knee instability.\r\n<h2>The Benefits of Regenerative Orthopedics</h2>\r\nProlotherapy, one type of regenerative therapy, has been around a very long time. The treatment has long been associated with being effectiveness in treating joint instability due to ligament and/or damage. Over the years, research continues to prove its efficacy as a non-surgical treatment for joint and spine pain and injury. (5)\r\n\r\nWe also mentioned the research on the benefits of PRP earlier. That study and others, show the  benefits of biological augmentation, using PRP and stem cells, to improve healing and a faster return to sport and activities of daily living for those with partial ACL tears. (6)\r\n\r\nIt is important to note that if the tear is complete, these regenerative therapies cannot regrow an absent ligament. They can restore strength and stability for a partial tear, ACL damage, and other knee soft tissue injury. Additionally, for the highest success, the entire knee should be addressed and treated comprehensively in order to repair all damaged structures and prevent the development of arthritis.\r\n\r\nDepending on the severity of injury, Prolotherapy alone may be recommended. If meniscus injury is present, Prolotherapy and PRP may be recommended. And, if more advanced degeneration and/or arthritis is evident, stem cell treatment may also be indicated.\r\n\r\nHas surgery has been recommended for an ACL repair? Are you are seeking a non-surgical solution for an ACL injury? If so, we would be happy to discuss our Regenerative Orthopedic approaches and your options.<strong> </strong>\r\n\r\n<strong>References</strong>\r\n\r\n(1) Vavken P, Murray MM. Translational Studies in ACL repair. <em>Tissue Eng Part A. </em>2009\r\n\r\n(2) El-Sharkawy H, Kantarci A, Deady J, et al. Platelet-rich plasma: growth factors and pro- and anti-inflammatory properties. <em>J Periodontol. </em>2007;78:661–669.\r\n\r\n(3) Vavken, Patrick, and Martha M. Murray. \"The potential for primary repair of the ACL.\" <em>Sports medicine and arthroscopy review</em> 19.1 (2011): 44.\r\n\r\n(4) Morris RC, Hulstyn MJ, Fleming BC, Owens BD, Fadale PD. Return to Play Following Anterior Cruciate Ligament Reconstruction. Clin Sports Med. 2016 Oct;35(4):655-68. doi: 10.1016/j.csm.2016.05.009. Epub 2016 Jun 22. PMID: 27543405.\r\n\r\n(5) Reeves KD, Hassanein KM. Long-term effects of dextrose prolotherapy for anterior cruciate ligament laxity. Altern Ther Health Med. 2003 May-Jun;9(3):58-62. PMID: 12776476.\r\n\r\n(6) Dallo I, Chahla J, Mitchell JJ, Pascual-Garrido C, Feagin JA, LaPrade RF. Biologic Approaches for the Treatment of Partial Tears of the Anterior Cruciate Ligament: A Current Concepts Review. Orthop J Sports Med. 2017 Jan 25;5(1):2325967116681724. doi: 10.1177/2325967116681724. PMID: 28210653; PMCID: PMC5298533.','ACL TEAR Repair','','inherit','closed','closed','','5847-revision-v1','','','2023-08-16 04:09:46','2023-08-16 04:09:46','',5847,'https://www.drfields.com/?p=5850',0,'revision','',0),(5851,8,'2023-08-16 04:10:43','2023-08-16 04:10:43','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li><a href=\"/articles/regenerative-orthopedics/acl-tear-repair/\">ACL TEAR Repair</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/foot-pain-treatment/\">Foot Pain Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/arthritis-neck-treatment/\">Arthritis Neck Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/back-pain-specialist/\">Back Pain Specialist</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/tennis-elbow-treatment/\">Tennis Elbow Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/hip-arthritis-treatment/\">Hip Arthritis Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/alternative-treatment-for-arthritis/\">Alternative Treatment for Arthritis</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-08-16 04:10:43','2023-08-16 04:10:43','',2109,'https://www.drfields.com/?p=5851',0,'revision','',0),(5852,9,'2023-08-16 21:35:50','2023-08-16 21:35:50','<img class=\"alignright wp-image-5848\" src=\"https://www.drfields.com/wp-content/uploads/2023/08/ACL-Tearblog.1png-500x419.png\" alt=\"ACL TEAR Repair\" width=\"350\" height=\"293\" />\n<h2>Anterior Cruciate Ligament (ACL) Tear Repair</h2>\nAn anterior cruciate ligament (ACL) injury often means that you feel your knee giving out. A \"popping\" noise may also be heard, and there may be pain along the outside or back of knee. Partial ACL tears may \"heal\" on their own, but other problems can develop down the road because of incomplete healing and other associated injuries. Complete healing and repair of the entire injury is important, and comprehensive Regenerative Orthopedics are effective treatment options for ACL injuries.\n<h2>Treatment Options for ACL Tear Repair</h2>\nRepair of the anterior cruciate ligament (ACL) has traditionally been surgical, but an increase in injuries has lead to a higher need of repair and an increase in younger patients who may end up with complications with these surgical repairs. Because of these changes, alternatives to surgery are being sought. Regenerative techniques are being considered because they enhance repair and regeneration of tissue and are excellent options specific to the repair of ligament and tendon soft tissue structures.\n\nWhy is ACL repair important? Because the knee instability that occurs due to injury needs to be resolved, or further damage can occur to the other knee structures. Without resolution of the instability, the long-term complication of arthritis will also likely occur. Additionally, regenerating the injured ligament, rather than replacing it with grafts, can help boost the normal biomechanics of the knee. (1)\n<h2>ACL Tear Repair with Regenerative Orthopedics</h2>\nThe ACL responds well to healing by regenerative treatments like Platelet Rich Plasma, which provide the needed fibrin-platelet clot and growth factors for repair. PRP is a rich source of growth factors, limiting inflammation, and promoting tissue regeneration. (2) This platelet concentrate releases a number of crucial growth factors that stimulate repair and collagen production.(3)\n\nRegenerative Orthopedics are an effective alternative for the difficult-to-treat younger patient with ACL injury. Researchers in the <em>Sports medicine and arthroscopy Review </em>say this<em>:</em>\n\n\"Younger and more active patients benefit from regenerative approaches that encourage biological repair since they prevent complications provoked by the high stresses due to high physical demand over a prolonged time after classic replacement with synthetic materials.\"(3)\n\nAt our OrthoRegen® clinic, patients are looking to avoid surgery, or have tried surgery and continue to have knee issues. Many young athletes choose surgery because they expect it to get that back in the game. Sometimes it does and sometimes it fails. Physical Therapy also works to strengthen the leg, but unfortunately may not work to sufficiently stabilize the knee, because the ligament cannot be repaired with PT. Therefore, a non-surgical solution to repair the instability is desired.\n<h2>ACL Injury and Accompanying Injuries</h2>\nAdditionally, when an injury is significant enough to injure the ACL, it is very likely that other knee ligaments and/or the meniscus are injured as well. That\'s when comprehensive regenerative treatments really shine. Why is that? Because comprehensive Regenerative Orthopedics treat the entire knee. All of the injured areas will be attended to for maximal healing results. On the other hand, ligament reconstruction, the usual management technique for significant ACL injuries, using replacement auto- or allografts, as noted earlier, have less than satisfactory outcomes, including instability that could progressively damage other knee structures, and result in arthritis.\n\n<strong>What happens to those who skip repair altogether?</strong>\n\nA November 2021 study in the <em>Progress in Rehabilitation Medicine</em> investigated whether student-athletes with anterior cruciate ligament (ACL) injuries who returned to sports without reconstruction could continue their sporting activities until the end of the season and whether there was an increase in secondary damage associated with knee instability. What did they find? The majority of athletes experienced their knees giving way and some experienced injury of their meniscus. Unfortunately, with ACL injury, instability occurs and the knee needs to be repaired. Non-surgical repair with Regenerative Orthopedics is an effective option.\n\n<strong>Is surgery the answer?</strong> Here\'s what researchers from Brown University say, “Accelerated rehabilitation has made recovery from (ACL) surgery more predictable and shortened the timeline for return to play (from ACL reconstruction surgery). (However) Despite success with advancements in anterior cruciate ligament reconstructions, <strong>some athletes still fail to return to play</strong>.” There may be short-term results, but in the long-term, stability of the knee becomes problematic. A solution that saves the biological ligament, like Regenerative Orthopedics is able to do, is the optimal way to go, because it repairs the underlying problem of instability and treats the whole knee, including the meniscus. (4)\n\nInstability of the knee after ACL injury or even ACL surgery will lead to the eventual breakdown of the knee structures. <strong>The instability needs to be addressed.</strong> The abnormal motion that is caused by the ACL injury needs to be repaired to stop secondary pathology from the instability. Knee instability is the problem that needs to be solved, and no amount of surgery will address it. Regenerative Orthopedics do address knee instability.\n<h2>The Benefits of Regenerative Orthopedics for ACL Tears and Injuries</h2>\nProlotherapy, one type of regenerative therapy, has been around a very long time. The treatment has long been associated with being effectiveness in treating joint instability due to ligament and/or damage. Over the years, research continues to prove its efficacy as a non-surgical treatment for joint and spine pain and injury. (5)\n\nWe also mentioned the research on the benefits of PRP earlier. That study and others, show the  benefits of biological augmentation, using PRP and stem cells, to improve healing and a faster return to sport and activities of daily living for those with partial ACL tears. (6)\n\nIt is important to note that if the tear is complete, these regenerative therapies cannot regrow an absent ligament. They can restore strength and stability for a partial tear, ACL damage, and other knee soft tissue injury. Additionally, for the highest success, the entire knee should be addressed and treated comprehensively in order to repair all damaged structures and prevent the development of arthritis.\n\nDepending on the severity of injury, Prolotherapy alone may be recommended. If meniscus injury is present, Prolotherapy and PRP may be recommended. And, if more advanced degeneration and/or arthritis is evident, stem cell treatment may also be indicated.\n\nHas surgery has been recommended for an ACL repair? Are you are seeking a non-surgical solution for an ACL injury? If so, we would be happy to discuss our Regenerative Orthopedic approaches and your options for ACL tear repair.<strong> </strong>\n<h3><strong>References</strong></h3>\n(1) Vavken P, Murray MM. Translational Studies in ACL repair. <em>Tissue Eng Part A. </em>2009\n\n(2) El-Sharkawy H, Kantarci A, Deady J, et al. Platelet-rich plasma: growth factors and pro- and anti-inflammatory properties. <em>J Periodontol. </em>2007;78:661–669.\n\n(3) Vavken, Patrick, and Martha M. Murray. \"The potential for primary repair of the ACL.\" <em>Sports medicine and arthroscopy review</em> 19.1 (2011): 44.\n\n(4) Morris RC, Hulstyn MJ, Fleming BC, Owens BD, Fadale PD. Return to Play Following Anterior Cruciate Ligament Reconstruction. Clin Sports Med. 2016 Oct;35(4):655-68. doi: 10.1016/j.csm.2016.05.009. Epub 2016 Jun 22. PMID: 27543405.\n\n(5) Reeves KD, Hassanein KM. Long-term effects of dextrose prolotherapy for anterior cruciate ligament laxity. Altern Ther Health Med. 2003 May-Jun;9(3):58-62. PMID: 12776476.\n\n(6) Dallo I, Chahla J, Mitchell JJ, Pascual-Garrido C, Feagin JA, LaPrade RF. Biologic Approaches for the Treatment of Partial Tears of the Anterior Cruciate Ligament: A Current Concepts Review. Orthop J Sports Med. 2017 Jan 25;5(1):2325967116681724. doi: 10.1177/2325967116681724. PMID: 28210653; PMCID: PMC5298533.','ACL TEAR Repair','','inherit','closed','closed','','5847-autosave-v1','','','2023-08-16 21:35:50','2023-08-16 21:35:50','',5847,'https://www.drfields.com/?p=5852',0,'revision','',0),(5853,9,'2023-08-16 21:34:27','2023-08-16 21:34:27','<img class=\"alignright wp-image-5848\" src=\"https://www.drfields.com/wp-content/uploads/2023/08/ACL-Tearblog.1png-500x419.png\" alt=\"ACL TEAR Repair\" width=\"350\" height=\"293\" />\r\n<h2>Anterior Cruciate Ligament (ACL) Tear Repair</h2>\r\nAn anterior cruciate ligament (ACL) injury often means that you feel your knee giving out. A \"popping\" noise may also be heard, and there may be pain along the outside or back of knee. Partial ACL tears may \"heal\" on their own, but other problems can develop down the road because of incomplete healing and other associated injuries. Complete healing and repair of the entire injury is important, and comprehensive Regenerative Orthopedics are effective treatment options for ACL injuries.\r\n<h2>Treatment Options for ACL Tear Repair</h2>\r\nRepair of the anterior cruciate ligament (ACL) has traditionally been surgical, but an increase in injuries has lead to a higher need of repair and an increase in younger patients who may end up with complications with these surgical repairs. Because of these changes, alternatives to surgery are being sought. Regenerative techniques are being considered because they enhance repair and regeneration of tissue and are excellent options specific to the repair of ligament and tendon soft tissue structures.\r\n\r\nWhy is ACL repair important? Because the knee instability that occurs due to injury needs to be resolved, or further damage can occur to the other knee structures. Without resolution of the instability, the long-term complication of arthritis will also likely occur. Additionally, regenerating the injured ligament, rather than replacing it with grafts, can help boost the normal biomechanics of the knee. (1)\r\n<h2>ACL Tear Repair with Regenerative Orthopedics</h2>\r\nThe ACL responds well to healing by regenerative treatments like Platelet Rich Plasma, which provide the needed fibrin-platelet clot and growth factors for repair. PRP is a rich source of growth factors, limiting inflammation, and promoting tissue regeneration. (2) This platelet concentrate releases a number of crucial growth factors that stimulate repair and collagen production.(3)\r\n\r\nRegenerative Orthopedics are an effective alternative for the difficult-to-treat younger patient with ACL injury. Researchers in the <em>Sports medicine and arthroscopy Review </em>say this<em>:</em>\r\n\r\n\"Younger and more active patients benefit from regenerative approaches that encourage biological repair since they prevent complications provoked by the high stresses due to high physical demand over a prolonged time after classic replacement with synthetic materials.\"(3)\r\n\r\nAt our OrthoRegen® clinic, patients are looking to avoid surgery, or have tried surgery and continue to have knee issues. Many young athletes choose surgery because they expect it to get that back in the game. Sometimes it does and sometimes it fails. Physical Therapy also works to strengthen the leg, but unfortunately may not work to sufficiently stabilize the knee, because the ligament cannot be repaired with PT. Therefore, a non-surgical solution to repair the instability is desired.\r\n<h2>ACL Injury and Accompanying Injuries</h2>\r\nAdditionally, when an injury is significant enough to injure the ACL, it is very likely that other knee ligaments and/or the meniscus are injured as well. That\'s when comprehensive regenerative treatments really shine. Why is that? Because comprehensive Regenerative Orthopedics treat the entire knee. All of the injured areas will be attended to for maximal healing results. On the other hand, ligament reconstruction, the usual management technique for significant ACL injuries, using replacement auto- or allografts, as noted earlier, have less than satisfactory outcomes, including instability that could progressively damage other knee structures, and result in arthritis.\r\n\r\n<strong>What happens to those who skip repair altogether?</strong> A November 2021 study in the <em>Progress in Rehabilitation Medicine</em> investigated whether student-athletes with anterior cruciate ligament (ACL) injuries who returned to sports without reconstruction could continue their sporting activities until the end of the season and whether there was an increase in secondary damage associated with knee instability. What did they find? The majority of athletes experienced their knees giving way and some experienced injury of their meniscus. Unfortunately, with ACL injury, instability occurs and the knee needs to be repaired. Non-surgical repair with Regenerative Orthopedics is an effective option.\r\n\r\n<strong>Is surgery the answer?</strong> Here\'s what researchers from Brown University say, “Accelerated rehabilitation has made recovery from (ACL) surgery more predictable and shortened the timeline for return to play (from ACL reconstruction surgery). (However) Despite success with advancements in anterior cruciate ligament reconstructions, <strong>some athletes still fail to return to play</strong>.” There may be short-term results, but in the long-term, stability of the knee becomes problematic. A solution that saves the biological ligament, like Regenerative Orthopedics is able to do, is the optimal way to go, because it repairs the underlying problem of instability and treats the whole knee, including the meniscus. (4)\r\n\r\nInstability of the knee after ACL injury or even ACL surgery will lead to the eventual breakdown of the knee structures. <strong>The instability needs to be addressed.</strong> The abnormal motion that is caused by the ACL injury needs to be repaired to stop secondary pathology from the instability. Knee instability is the problem that needs to be solved, and no amount of surgery will address it. Regenerative Orthopedics do address knee instability.\r\n<h2>The Benefits of Regenerative Orthopedics for ACL Tears and Injuries</h2>\r\nProlotherapy, one type of regenerative therapy, has been around a very long time. The treatment has long been associated with being effectiveness in treating joint instability due to ligament and/or damage. Over the years, research continues to prove its efficacy as a non-surgical treatment for joint and spine pain and injury. (5)\r\n\r\nWe also mentioned the research on the benefits of PRP earlier. That study and others, show the  benefits of biological augmentation, using PRP and stem cells, to improve healing and a faster return to sport and activities of daily living for those with partial ACL tears. (6)\r\n\r\nIt is important to note that if the tear is complete, these regenerative therapies cannot regrow an absent ligament. They can restore strength and stability for a partial tear, ACL damage, and other knee soft tissue injury. Additionally, for the highest success, the entire knee should be addressed and treated comprehensively in order to repair all damaged structures and prevent the development of arthritis.\r\n\r\nDepending on the severity of injury, Prolotherapy alone may be recommended. If meniscus injury is present, Prolotherapy and PRP may be recommended. And, if more advanced degeneration and/or arthritis is evident, stem cell treatment may also be indicated.\r\n\r\nHas surgery has been recommended for an ACL repair? Are you are seeking a non-surgical solution for an ACL injury? If so, we would be happy to discuss our Regenerative Orthopedic approaches and your options for ACL tear repair.<strong> </strong>\r\n<h3><strong>References</strong></h3>\r\n(1) Vavken P, Murray MM. Translational Studies in ACL repair. <em>Tissue Eng Part A. </em>2009\r\n\r\n(2) El-Sharkawy H, Kantarci A, Deady J, et al. Platelet-rich plasma: growth factors and pro- and anti-inflammatory properties. <em>J Periodontol. </em>2007;78:661–669.\r\n\r\n(3) Vavken, Patrick, and Martha M. Murray. \"The potential for primary repair of the ACL.\" <em>Sports medicine and arthroscopy review</em> 19.1 (2011): 44.\r\n\r\n(4) Morris RC, Hulstyn MJ, Fleming BC, Owens BD, Fadale PD. Return to Play Following Anterior Cruciate Ligament Reconstruction. Clin Sports Med. 2016 Oct;35(4):655-68. doi: 10.1016/j.csm.2016.05.009. Epub 2016 Jun 22. PMID: 27543405.\r\n\r\n(5) Reeves KD, Hassanein KM. Long-term effects of dextrose prolotherapy for anterior cruciate ligament laxity. Altern Ther Health Med. 2003 May-Jun;9(3):58-62. PMID: 12776476.\r\n\r\n(6) Dallo I, Chahla J, Mitchell JJ, Pascual-Garrido C, Feagin JA, LaPrade RF. Biologic Approaches for the Treatment of Partial Tears of the Anterior Cruciate Ligament: A Current Concepts Review. Orthop J Sports Med. 2017 Jan 25;5(1):2325967116681724. doi: 10.1177/2325967116681724. PMID: 28210653; PMCID: PMC5298533.','ACL TEAR Repair','','inherit','closed','closed','','5847-revision-v1','','','2023-08-16 21:34:27','2023-08-16 21:34:27','',5847,'https://www.drfields.com/?p=5853',0,'revision','',0),(5854,9,'2023-08-16 21:37:46','2023-08-16 21:37:46','<img class=\"alignright wp-image-5848\" src=\"https://www.drfields.com/wp-content/uploads/2023/08/ACL-Tearblog.1png-500x419.png\" alt=\"ACL TEAR Repair\" width=\"350\" height=\"293\" />\r\n<h2>Anterior Cruciate Ligament (ACL) Tear Repair</h2>\r\nAn anterior cruciate ligament (ACL) injury often means that you feel your knee giving out. A \"popping\" noise may also be heard, and there may be pain along the outside or back of knee. Partial ACL tears may \"heal\" on their own, but other problems can develop down the road because of incomplete healing and other associated injuries. Complete healing and repair of the entire injury is important, and comprehensive Regenerative Orthopedics are effective treatment options for ACL injuries.\r\n<h2>Treatment Options for ACL Tear Repair</h2>\r\nRepair of the anterior cruciate ligament (ACL) has traditionally been surgical, but an increase in injuries has lead to a higher need of repair and an increase in younger patients who may end up with complications with these surgical repairs. Because of these changes, alternatives to surgery are being sought. Regenerative techniques are being considered because they enhance repair and regeneration of tissue and are excellent options specific to the repair of ligament and tendon soft tissue structures.\r\n\r\nWhy is ACL repair important? Because the knee instability that occurs due to injury needs to be resolved, or further damage can occur to the other knee structures. Without resolution of the instability, the long-term complication of arthritis will also likely occur. Additionally, regenerating the injured ligament, rather than replacing it with grafts, can help boost the normal biomechanics of the knee. (1)\r\n<h2>ACL Tear Repair with Regenerative Orthopedics</h2>\r\nThe ACL responds well to healing by regenerative treatments like Platelet Rich Plasma, which provide the needed fibrin-platelet clot and growth factors for repair. PRP is a rich source of growth factors, limiting inflammation, and promoting tissue regeneration. (2) This platelet concentrate releases a number of crucial growth factors that stimulate repair and collagen production.(3)\r\n\r\nRegenerative Orthopedics are an effective alternative for the difficult-to-treat younger patient with ACL injury. Researchers in the <em>Sports medicine and arthroscopy Review </em>say this<em>:</em>\r\n\r\n\"Younger and more active patients benefit from regenerative approaches that encourage biological repair since they prevent complications provoked by the high stresses due to high physical demand over a prolonged time after classic replacement with synthetic materials.\"(3)\r\n\r\nAt our OrthoRegen® clinic, patients are looking to avoid surgery, or have tried surgery and continue to have knee issues. Many young athletes choose surgery because they expect it to get that back in the game. Sometimes it does and sometimes it fails. Physical Therapy also works to strengthen the leg, but unfortunately may not work to sufficiently stabilize the knee, because the ligament cannot be repaired with PT. Therefore, a non-surgical solution to repair the instability is desired.\r\n<h2>ACL Injury and Accompanying Injuries</h2>\r\nAdditionally, when an injury is significant enough to injure the ACL, it is very likely that other knee ligaments and/or the meniscus are injured as well. That\'s when comprehensive regenerative treatments really shine. Why is that? Because comprehensive Regenerative Orthopedics treat the entire knee. All of the injured areas will be attended to for maximal healing results. On the other hand, ligament reconstruction, the usual management technique for significant ACL injuries, using replacement auto- or allografts, as noted earlier, have less than satisfactory outcomes, including instability that could progressively damage other knee structures, and result in arthritis.\r\n<h4><strong>What happens to those who skip repair altogether?</strong></h4>\r\nA November 2021 study in the <em>Progress in Rehabilitation Medicine</em> investigated whether student-athletes with anterior cruciate ligament (ACL) injuries who returned to sports without reconstruction could continue their sporting activities until the end of the season and whether there was an increase in secondary damage associated with knee instability. What did they find? The majority of athletes experienced their knees giving way and some experienced injury of their meniscus. Unfortunately, with ACL injury, instability occurs and the knee needs to be repaired. Non-surgical repair with Regenerative Orthopedics is an effective option.\r\n<h4><strong>Is surgery the answer?</strong></h4>\r\nHere\'s what researchers from Brown University say, “Accelerated rehabilitation has made recovery from (ACL) surgery more predictable and shortened the timeline for return to play (from ACL reconstruction surgery). (However) Despite success with advancements in anterior cruciate ligament reconstructions, <strong>some athletes still fail to return to play</strong>.” There may be short-term results, but in the long-term, stability of the knee becomes problematic. A solution that saves the biological ligament, like Regenerative Orthopedics is able to do, is the optimal way to go, because it repairs the underlying problem of instability and treats the whole knee, including the meniscus. (4)\r\n\r\nInstability of the knee after ACL injury or even ACL surgery will lead to the eventual breakdown of the knee structures. <strong>The instability needs to be addressed.</strong> The abnormal motion that is caused by the ACL injury needs to be repaired to stop secondary pathology from the instability. Knee instability is the problem that needs to be solved, and no amount of surgery will address it. Regenerative Orthopedics do address knee instability.\r\n<h2>The Benefits of Regenerative Orthopedics for ACL Tears and Injuries</h2>\r\nProlotherapy, one type of regenerative therapy, has been around a very long time. The treatment has long been associated with being effectiveness in treating joint instability due to ligament and/or damage. Over the years, research continues to prove its efficacy as a non-surgical treatment for joint and spine pain and injury. (5)\r\n\r\nWe also mentioned the research on the benefits of PRP earlier. That study and others, show the  benefits of biological augmentation, using PRP and stem cells, to improve healing and a faster return to sport and activities of daily living for those with partial ACL tears. (6)\r\n\r\nIt is important to note that if the tear is complete, these regenerative therapies cannot regrow an absent ligament. They can restore strength and stability for a partial tear, ACL damage, and other knee soft tissue injury. Additionally, for the highest success, the entire knee should be addressed and treated comprehensively in order to repair all damaged structures and prevent the development of arthritis.\r\n\r\nDepending on the severity of injury, Prolotherapy alone may be recommended. If meniscus injury is present, Prolotherapy and PRP may be recommended. And, if more advanced degeneration and/or arthritis is evident, stem cell treatment may also be indicated.\r\n\r\nHas surgery has been recommended for an ACL repair? Are you are seeking a non-surgical solution for an ACL injury? If so, we would be happy to discuss our Regenerative Orthopedic approaches and your options for ACL tear repair.<strong> </strong>\r\n<h3><strong>References</strong></h3>\r\n(1) Vavken P, Murray MM. Translational Studies in ACL repair. <em>Tissue Eng Part A. </em>2009\r\n\r\n(2) El-Sharkawy H, Kantarci A, Deady J, et al. Platelet-rich plasma: growth factors and pro- and anti-inflammatory properties. <em>J Periodontol. </em>2007;78:661–669.\r\n\r\n(3) Vavken, Patrick, and Martha M. Murray. \"The potential for primary repair of the ACL.\" <em>Sports medicine and arthroscopy review</em> 19.1 (2011): 44.\r\n\r\n(4) Morris RC, Hulstyn MJ, Fleming BC, Owens BD, Fadale PD. Return to Play Following Anterior Cruciate Ligament Reconstruction. Clin Sports Med. 2016 Oct;35(4):655-68. doi: 10.1016/j.csm.2016.05.009. Epub 2016 Jun 22. PMID: 27543405.\r\n\r\n(5) Reeves KD, Hassanein KM. Long-term effects of dextrose prolotherapy for anterior cruciate ligament laxity. Altern Ther Health Med. 2003 May-Jun;9(3):58-62. PMID: 12776476.\r\n\r\n(6) Dallo I, Chahla J, Mitchell JJ, Pascual-Garrido C, Feagin JA, LaPrade RF. Biologic Approaches for the Treatment of Partial Tears of the Anterior Cruciate Ligament: A Current Concepts Review. Orthop J Sports Med. 2017 Jan 25;5(1):2325967116681724. doi: 10.1177/2325967116681724. PMID: 28210653; PMCID: PMC5298533.','ACL TEAR Repair','','inherit','closed','closed','','5847-revision-v1','','','2023-08-16 21:37:46','2023-08-16 21:37:46','',5847,'https://www.drfields.com/?p=5854',0,'revision','',0),(5855,9,'2023-08-16 21:39:22','2023-08-16 21:39:22','<img class=\"alignright wp-image-5848\" src=\"https://www.drfields.com/wp-content/uploads/2023/08/ACL-Tearblog.1png-500x419.png\" alt=\"ACL TEAR Repair\" width=\"350\" height=\"293\" />\r\n<h2>Anterior Cruciate Ligament (ACL) Tear Repair</h2>\r\nAn anterior cruciate ligament (ACL) injury often means that you feel your knee giving out. A \"popping\" noise may also be heard, and there may be pain along the outside or back of knee. Partial ACL tears may \"heal\" on their own, but other problems can develop down the road because of incomplete healing and other associated injuries. Complete healing and repair of the entire injury is important, and comprehensive Regenerative Orthopedics are effective treatment options for ACL injuries.\r\n<h2>Treatment Options for ACL Tear Repair</h2>\r\nRepair of the anterior cruciate ligament (ACL) has traditionally been surgical, but an increase in injuries has lead to a higher need of repair and an increase in younger patients who may end up with complications with these surgical repairs. Because of these changes, alternatives to surgery are being sought. Regenerative techniques are being considered because they enhance repair and regeneration of tissue and are excellent options specific to the repair of ligament and tendon soft tissue structures.\r\n\r\nWhy is ACL repair important? Because the knee instability that occurs due to injury needs to be resolved, or further damage can occur to the other knee structures. Without resolution of the instability, the long-term complication of arthritis will also likely occur. Additionally, regenerating the injured ligament, rather than replacing it with grafts, can help boost the normal biomechanics of the knee. (1)\r\n<h2>ACL Tear Repair with Regenerative Orthopedics</h2>\r\nThe ACL responds well to healing by regenerative treatments like Platelet Rich Plasma, which provide the needed fibrin-platelet clot and growth factors for repair. PRP is a rich source of growth factors, limiting inflammation, and promoting tissue regeneration. (2) This platelet concentrate releases a number of crucial growth factors that stimulate repair and collagen production.(3)\r\n\r\nRegenerative Orthopedics are an effective alternative for the difficult-to-treat younger patient with ACL injury. Researchers in the <em>Sports medicine and arthroscopy Review </em>say this<em>:</em>\r\n\r\n\"Younger and more active patients benefit from regenerative approaches that encourage biological repair since they prevent complications provoked by the high stresses due to high physical demand over a prolonged time after classic replacement with synthetic materials.\"(3)\r\n\r\nAt our OrthoRegen® clinic, patients are looking to avoid surgery, or have tried surgery and continue to have knee issues. Many young athletes choose surgery because they expect it to get that back in the game. Sometimes it does and sometimes it fails. Physical Therapy also works to strengthen the leg, but unfortunately may not work to sufficiently stabilize the knee, because the ligament cannot be repaired with PT. Therefore, a non-surgical solution to repair the instability is desired.\r\n<h2>ACL Injury and Accompanying Injuries</h2>\r\nAdditionally, when an injury is significant enough to injure the ACL, it is very likely that other knee ligaments and/or the meniscus are injured as well. That\'s when comprehensive regenerative treatments really shine. Why is that? Because comprehensive Regenerative Orthopedics treat the entire knee. All of the injured areas will be attended to for maximal healing results. On the other hand, ligament reconstruction, the usual management technique for significant ACL injuries, using replacement auto- or allografts, as noted earlier, have less than satisfactory outcomes, including instability that could progressively damage other knee structures, and result in arthritis.\r\n<h4><em><strong>What happens to those who skip repair altogether?</strong></em></h4>\r\nA November 2021 study in the <em>Progress in Rehabilitation Medicine</em> investigated whether student-athletes with anterior cruciate ligament (ACL) injuries who returned to sports without reconstruction could continue their sporting activities until the end of the season and whether there was an increase in secondary damage associated with knee instability. What did they find? The majority of athletes experienced their knees giving way and some experienced injury of their meniscus. Unfortunately, with ACL injury, instability occurs and the knee needs to be repaired. Non-surgical repair with Regenerative Orthopedics is an effective option.\r\n<h4><em><strong>Is surgery the answer?</strong></em></h4>\r\nHere\'s what researchers from Brown University say, “Accelerated rehabilitation has made recovery from (ACL) surgery more predictable and shortened the timeline for return to play (from ACL reconstruction surgery). (However) Despite success with advancements in anterior cruciate ligament reconstructions, <strong>some athletes still fail to return to play</strong>.” There may be short-term results, but in the long-term, stability of the knee becomes problematic. A solution that saves the biological ligament, like Regenerative Orthopedics is able to do, is the optimal way to go, because it repairs the underlying problem of instability and treats the whole knee, including the meniscus. (4)\r\n\r\nInstability of the knee after ACL injury or even ACL surgery will lead to the eventual breakdown of the knee structures. <strong>The instability needs to be addressed.</strong> The abnormal motion that is caused by the ACL injury needs to be repaired to stop secondary pathology from the instability. Knee instability is the problem that needs to be solved, and no amount of surgery will address it. Regenerative Orthopedics do address knee instability.\r\n<h2>The Benefits of Regenerative Orthopedics for ACL Tears and Injuries</h2>\r\nProlotherapy, one type of regenerative therapy, has been around a very long time. The treatment has long been associated with being effectiveness in treating joint instability due to ligament and/or damage. Over the years, research continues to prove its efficacy as a non-surgical treatment for joint and spine pain and injury. (5)\r\n\r\nWe also mentioned the research on the benefits of PRP earlier. That study and others, show the  benefits of biological augmentation, using PRP and stem cells, to improve healing and a faster return to sport and activities of daily living for those with partial ACL tears. (6)\r\n\r\nIt is important to note that if the tear is complete, these regenerative therapies cannot regrow an absent ligament. They can restore strength and stability for a partial tear, ACL damage, and other knee soft tissue injury. Additionally, for the highest success, the entire knee should be addressed and treated comprehensively in order to repair all damaged structures and prevent the development of arthritis.\r\n\r\nDepending on the severity of injury, Prolotherapy alone may be recommended. If meniscus injury is present, Prolotherapy and PRP may be recommended. And, if more advanced degeneration and/or arthritis is evident, stem cell treatment may also be indicated.\r\n\r\nHas surgery has been recommended for an ACL repair? Are you are seeking a non-surgical solution for an ACL injury? If so, we would be happy to discuss our Regenerative Orthopedic approaches and your options for ACL tear repair.<strong> </strong>\r\n<h3><strong>References</strong></h3>\r\n(1) Vavken P, Murray MM. Translational Studies in ACL repair. <em>Tissue Eng Part A. </em>2009\r\n\r\n(2) El-Sharkawy H, Kantarci A, Deady J, et al. Platelet-rich plasma: growth factors and pro- and anti-inflammatory properties. <em>J Periodontol. </em>2007;78:661–669.\r\n\r\n(3) Vavken, Patrick, and Martha M. Murray. \"The potential for primary repair of the ACL.\" <em>Sports medicine and arthroscopy review</em> 19.1 (2011): 44.\r\n\r\n(4) Morris RC, Hulstyn MJ, Fleming BC, Owens BD, Fadale PD. Return to Play Following Anterior Cruciate Ligament Reconstruction. Clin Sports Med. 2016 Oct;35(4):655-68. doi: 10.1016/j.csm.2016.05.009. Epub 2016 Jun 22. PMID: 27543405.\r\n\r\n(5) Reeves KD, Hassanein KM. Long-term effects of dextrose prolotherapy for anterior cruciate ligament laxity. Altern Ther Health Med. 2003 May-Jun;9(3):58-62. PMID: 12776476.\r\n\r\n(6) Dallo I, Chahla J, Mitchell JJ, Pascual-Garrido C, Feagin JA, LaPrade RF. Biologic Approaches for the Treatment of Partial Tears of the Anterior Cruciate Ligament: A Current Concepts Review. Orthop J Sports Med. 2017 Jan 25;5(1):2325967116681724. doi: 10.1177/2325967116681724. PMID: 28210653; PMCID: PMC5298533.','ACL TEAR Repair','','inherit','closed','closed','','5847-revision-v1','','','2023-08-16 21:39:22','2023-08-16 21:39:22','',5847,'https://www.drfields.com/?p=5855',0,'revision','',0),(5856,9,'2023-08-16 21:41:38','2023-08-16 21:41:38','','iwp_log_64dd4292f3319','','publish','closed','closed','','iwp_log_64dd4292f3319','','','2023-08-16 21:41:38','2023-08-16 21:41:38','',0,'https://www.drfields.com/iwp_log/iwp_log_64dd4292f3319/',0,'iwp_log','',0),(5858,8,'2023-08-24 06:51:12','2023-08-24 06:51:12','','Hip Replacement Alternatives','','trash','closed','open','','__trashed','','','2023-08-24 06:51:12','2023-08-24 06:51:12','',0,'https://www.drfields.com/?p=5858',0,'post','',0),(5859,8,'2023-08-24 06:51:12','2023-08-24 06:51:12','','Hip Replacement Alternatives','','inherit','closed','closed','','5858-revision-v1','','','2023-08-24 06:51:12','2023-08-24 06:51:12','',5858,'https://www.drfields.com/?p=5859',0,'revision','',0),(5860,8,'2023-08-27 17:10:34','2023-08-27 17:10:34','<h2><img class=\"alignright wp-image-5862\" src=\"https://www.drfields.com/wp-content/uploads/2023/08/hip-replacement-alternative-1-500x422.png\" alt=\"Hip Replacement Alternative\" width=\"300\" height=\"253\" />Hip Replacement Alternative</h2>\r\nWe see many people in our office trying to avoid hip replacement surgery. These patients have usually already tried all kinds of treatments to \"preserve their hip\" and avoid surgery. Often, just mentioning surgery sends people searching for an alternative. Regenerative Orthopedic options are effective hip replacement alternatives.\r\n<h3><strong>Why Look for An Alternative to Hip Replacement?</strong></h3>\r\nHip replacement can be a successful means of improving quality of life, especially when the hip has become severely degenerated. However, there are issues to be considered before choosing a hip replacement.\r\n\r\nHip replacements do not last forever; they wear out. So, if the patient is younger, it is essential to keep in mind that the replacement will wear out in 15-plus years.\r\n\r\nAlso, some people have continued pain after hip replacement. The surgery doesn\'t go as well as planned! But there are alternatives. And Regenerative Orthopedics is a non-surgical option.\r\n\r\nDebris can leak from the replacement, causing an inflammatory response that further destroys the hip joint. Researchers in the journal <em>Orthopaedic Surgery</em> say, “Inflammatory responses to polyethylene wear debris can lead to severe bone resorption and aseptic loosening in the long-term following total hip replacement.” (1)\r\n\r\nAnd I always say, \"Remember, once the surgery is done, it cannot be undone.\" Surgery is permanent. There is no going back!\r\n<h3><strong>But My Doctor Says My Hip Is Bone-On-Bone?</strong></h3>\r\nHip replacement is often chosen because the patient has been told they have bone-on-bone arthritis, and hip replacement is the only option. The hip replacement is chosen because the patient thinks there is no other choice. But hip replacement is not the only option for bone-on-bone arthritis. Regenerative Orthopedics is a practical option in many arthritis cases.\r\n<h3><em>How do you get to bone-on-bone in the first place?</em></h3>\r\nBone-on-bone refers to the condition of arthritis where the smooth cartilage that lines the hip bones wears away, leaving the joint without its cushion, allowing bone to rub against bone. The bones no longer glide normally.\r\n\r\nBone-on-bone doesn\'t happen suddenly. That bone-on-bone condition began when the soft tissue, like tendons, ligaments, and even the hip labrum, became injured, worn, and/or weakened, making the hip joint unstable. Eventually, the person with this worn-out hip will experience loss of motion. Over time, the hip instability causes further joint injury, the wearing away of the cartilage lining of the hip joint, the development of bone spurs, and the “bumping” of bones into one another. The eventual degenerative changes can be seen on an x-ray, and bone-on-bone arthritis is diagnosed.\r\n\r\nBut what\'s interesting is that cartilage has no nerve endings. Where is the pain coming from if it\'s not from the worn cartilage? It\'s likely the ligaments! All of the abnormal motion from the unstable hip changes the balance in the hip joint and distributes forces differently, injuring other joint structures like the ligaments. Ligaments are highly innervated. They do have nerves. And when damaged, can elicit pain. The injured soft tissue needs to be addressed and repaired. What repairs joint soft tissue? Regenerative Orthopedics!\r\n<h3><strong>Which Treatments Are Hip Replacement Alternatives?</strong></h3>\r\nInjury to soft tissue, like the ligaments, tendons, and cartilage, causes the joint to become unstable. It is crucial to address the cause and not just the effect of the wearing-out hip. Regenerative Orthopedics, such as Dextrose Prolotherapy, Platelet Rich Plasma, and Stem Cell Prolotherapy, are all non-surgical treatment options that get to the root of the problem. They actually stimulate ligament, tendon, and cartilage repair.\r\n<h3><strong>But I Have Already Tried Conservative Care</strong></h3>\r\nHave you tried pain medications, cortisone injections, hyaluronic injections, or even massage and PT? But you still have pain? Pain medications, NSAIDs, and cortisone injections may help with the pain but not repair the joint\'s soft tissue. It\'s also possible that massage and physical therapy helped for a time. These treatments are great for resolving and repairing muscle issues. However, if the problem involves ligaments, tendons, and cartilage that need repair, a treatment must be sought to address these soft tissue injuries. Regenerative Orthopedics does just that!\r\n<h3><strong>The Ligaments of the Hip Need to Be Repaired!</strong></h3>\r\nWhen your hip is unstable, it destroys the supporting tissue of the hip. The ball starts to rub the socket the wrong way, and it moves abnormally. This is what\'s often referred to as “wear and tear” degeneration. This abnormal motion must be fixed.\r\n\r\nThe ligaments of the hip need to be repaired to stop the degenerative effect of the injured ligaments. Surgery often cuts through ligaments, but it does not repair them! The Journal of Biomechanics says, “Laboratory data indicate the hip capsular ligaments prevent excessive range of motion, may protect the joint against adverse edge loading, and contribute to synovial fluid replenishment at the cartilage surfaces of the joint. However, <strong>their repair after joint preserving (hip arthroscopy) or arthroplasty (hip replacement) surgery is not routine.</strong>\"(2)\r\n\r\nThe hip ligaments need to be repaired. Many people continue to have pain even after hip replacement. The problem may be related to the lack of repair of these soft tissue structures. You can’t save the hip without saving and repairing the hip ligaments.\r\n<h3><strong>Why Is Hip Ligament Repair Important?</strong></h3>\r\n<ul>\r\n 	<li>Hip ligaments prevent an excessive range of motion and contribute to the natural lubrication process of joints, preventing friction and wear and tear.</li>\r\n 	<li>When ligaments are not repaired, this often leads to the need for hip revision surgery.</li>\r\n 	<li>Failing to restore hip ligament function may increase the risk of hip degeneration and arthritis.</li>\r\n</ul>\r\n<h3><strong>Regenerative Orthopedics Is an Effective Hip Replacement Alternative</strong></h3>\r\n<h4><em>Studies Demonstrating the Effectiveness of the Regenerative Orthopedic Treatment of Prolotherapy:</em></h4>\r\nRegenerative Orthopedics offers an alternative for repairing hip ligaments, which can reduce the need for hip replacement. The journal <em>International Orthopaedics says, </em>\"Newer, regenerative approaches have the potential to effectively delay or reduce the requirement for such invasive procedures.”(3)\r\n\r\nRegenerative Orthopedics is an effective alternative to hip replacement surgery. Researchers in the <em>Journal of Prolotherapy</em> demonstrated that Prolotherapy helps decrease pain and improve the quality of life of patients with chronic hip pain. Ninety-five percent of patients stated their pain was better after Prolotherapy. (4)\r\n\r\nAnother medical journal reported, “According to our study, Prolotherapy is superior to exercise. Prolotherapy could provide significant improvement for clinical outcomes in developmental dysplasia of the hip and might delay surgery.\" (5)\r\n<h4><em>Studies Demonstrating the Effectiveness of the Regenerative Orthopedic Treatment of PRP and Stem Cells:</em></h4>\r\nIn many cases, Prolotherapy alone is sufficient to repair the hip. But PRP and Stem Cells may be needed in cases of more advanced degeneration. At OrthoRegen®, we use the Gold Standard in Stem Cell Repair, which includes Prolotherapy, PRP, adipose stem cells, and bone marrow stem cells. This combination is highly effective for advanced cases of hip arthritis. The stem cells and PRP address the cartilage problem, and Prolotherapy addresses ligament repair, stabilizing the hip and restoring joint stability. The repair is a comprehensive treatment of the entire hip.\r\n\r\nIn the <em>American Journal of Sports Medicine, researchers say,</em> “Results indicated that intra-articular PRP injections offer a significant clinical improvement in patients with hip osteoarthritis without relevant side effects.”(6)\r\n\r\nIn the journal <em>Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders</em>, researchers show that stem cells regenerate tissue damage within the osteoarthritic joint and, when combined with Prolotherapy injections, were able to restore hip stability. (7)\r\n\r\nHip surgeries are going through the roof, with close to 10 million hip surgeries performed annually. If you prefer to avoid surgery, please call us to see if you are a good candidate for Regenerative Orthopedics.\r\n\r\n&nbsp;\r\n<h3><strong>References</strong></h3>\r\n<ul>\r\n 	<li>Xing D, Li R, Li JJ, Tao K, Lin J, Yan T, Zhou D. Catastrophic Periprosthetic Osteolysis in Total Hip Arthroplasty at 20 Years: A Case Report and Literature Review. Orthopaedic Surgery. 2022 Aug.</li>\r\n 	<li>van Arkel RJ, Amis AA, Jeffers JR. The envelope of passive motion allowed by the capsular ligaments of the hip. Journal of biomechanics. 2015 Nov 5;48(14):3803-9</li>\r\n 	<li>Hevesi M, Jacob G, Shimomura K, Ando W, Nakamura N, Krych AJ. Current hip cartilage regeneration/repair modalities: a scoping review of biologics and surgery. International Orthopaedics. 2020 Sep 10:1-5.</li>\r\n 	<li>Hauser RA, Hauser MA. A Retrospective Study on Hackett-Hemwall Dextrose Prolotherapy for Chronic Hip Pain at an Outpatient Charity Clinic in Rural Illinois. Journal of Prolotherapy. 2009;2:76-88.</li>\r\n 	<li>Gül D, Orsçelik A, Akpancar S. Treatment of Osteoarthritis Secondary to Developmental Dysplasia of the Hip with Prolotherapy Injection versus a Supervised Progressive Exercise Control. <em>Med Sci Monit</em>. 2020;26:e919166. Published 2020 Feb 11. doi:10.12659/MSM.919166</li>\r\n 	<li>Dallari D, Stagni C, Rani N, Sabbioni G, Pelotti P, Torricelli P, Tschon M, Giavaresi G.Ultrasound-Guided Injection of Platelet-Rich Plasma and Hyaluronic Acid, Separately and in Combination, for Hip Osteoarthritis: A Randomized Controlled Study. <em>Am J Sports Med</em>. 2016 Mar;44(3):664-71. doi: 10.1177/0363546515620383. Epub 2016 Jan 21.</li>\r\n</ul>\r\nHauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. <em>Clin Med Insights Arthritis Musculoskelet Disord</em>. 2013 Sep 4;6:65-72. doi: 10.4137/CMAMD.S10951. eCollection 2013.','Hip Replacement Alternative','','publish','closed','open','','hip-replacement-alternative','','','2023-08-30 20:19:17','2023-08-30 20:19:17','',0,'https://www.drfields.com/?p=5860',0,'post','',0),(5861,8,'2023-08-27 17:06:11','2023-08-27 17:06:11','Hip Replacement Alternative','Hip Replacement Alternative','Hip Replacement Alternative','inherit','closed','closed','','hip-replacement-alternative','','','2023-08-27 17:06:11','2023-08-27 17:06:11','',5860,'https://www.drfields.com/wp-content/uploads/2023/08/hip-replacement-alternative.png',0,'attachment','image/png',0),(5862,8,'2023-08-27 17:08:37','2023-08-27 17:08:37','','Hip Replacement Alternative','','inherit','closed','closed','','hip-replacement-alternative-2','','','2023-08-27 17:09:51','2023-08-27 17:09:51','',5860,'https://www.drfields.com/wp-content/uploads/2023/08/hip-replacement-alternative-1.png',0,'attachment','image/png',0),(5863,8,'2023-08-27 17:10:34','2023-08-27 17:10:34','<img class=\"alignright wp-image-5862\" src=\"https://www.drfields.com/wp-content/uploads/2023/08/hip-replacement-alternative-1-500x422.png\" alt=\"Hip Replacement Alternative\" width=\"300\" height=\"253\" />We see a lot of people in our office trying to avoid hip replacement surgery. These patients have usually already tried all kinds of treatments in an effort to \"preserve their hip\" and avoid surgery. Oftentimes, just the mention of surgery sends people searching for an alternative, and Regenerative Orthopedic options are effective hip replacement alternatives.\r\n\r\n&nbsp;\r\n\r\n<strong>Why Look for An Alternative to Hip Replacement?</strong>\r\n\r\n&nbsp;\r\n\r\nHip replacement can be a successful means of improving quality of life, especially when the hip has become severely degenerated. But there are issues to be considered prior to choosing hip replacement.\r\n\r\n&nbsp;\r\n\r\nHip replacements do not last forever, they wear out. So if the patient is younger, it is important to keep in mind that the replacement will wear out in 15-plus years.\r\n\r\n&nbsp;\r\n\r\nAlso, some people have continued pain after hip replacement.The surgery just doesn\'t go as well as planned! But there are alternatives. And Regenerative Orthopedics is a non-surgical option.\r\n\r\n&nbsp;\r\n\r\nDebris can leak from the replacement causing an inflammatory response that leads to further destruction of the hip joint. Researchers in the journal <em>Orthopaedic Surgery</em> say, “Inflammatory responses to polyethylene wear debris can lead to severe bone resorption and aseptic loosening in the long-term following total hip replacement.” (1)\r\n\r\n&nbsp;\r\n\r\nAnd I always say, \"remember, once the surgery is done, it cannot be undone.\" Surgery is permanent. There is no going back!\r\n\r\n&nbsp;\r\n\r\n<strong>But My Doctor Says My Hip Is Bone-On-Bone?</strong>\r\n\r\nHip replacement is often chosen because the patient has been told they have bone-on-bone arthritis, and hip replacement is the only option. The hip replacement is chosen because the patient thinks there is no other choice. But hip replacement is not the only option for bone-on-bone arthritis. Regenerative Orthopedics is a practical option in many arthritis cases.\r\n\r\n&nbsp;\r\n\r\n<em>How do you get to bone-on-bone in the first place?</em>\r\n\r\nBone-on-bone refers to the a condition of arthritis where the smooth cartilage that lines the hip bones wears away, leaving the joint without its cushion, allowing bone to rub against bone. The bones no longer glide normally.\r\n\r\n&nbsp;\r\n\r\nBone-on-bone doesn\'t happen suddenly. That bone-on-bone condition began when the soft tissue, like tendons, ligaments, and even the hip labrum, became injured, worn, and/or weakened, and allowed for the hip joint to become unstable. Eventually, the person with this worn-out hip will experience loss of motion. Over time, the hip instability causes further joint injury, the wearing away of the cartilage lining of the hip joint, the development of bone spurs, and the “bumping” of bones into one another. The eventual degenerative changes can be seen on an x-ray, and bone-on-bone arthritis is diagnosed.\r\n\r\n&nbsp;\r\n\r\nBut what\'s really interesting is that cartilage has no nerve endings. Where is the pain coming from then if it\'s not from the worn cartilage? It\'s likely the ligaments! All of the abnormal motion from the unstable hip changes the balance in the hip joint and distributes forces differently, injuring other joint structures like the ligaments. Ligaments are highly innervated. They do have nerves. And when injured, can elicit pain. The injured soft tissue needs to be addressed and repaired. What repairs joint soft tissue? Regenerative Orthopedics!\r\n\r\n&nbsp;\r\n\r\n<strong>Which Treatments Can Help Me Avoid Surgery?</strong>\r\n\r\nInjury to soft tissue, like the ligaments, tendons, and cartilage, causes the joint to become unstable. It is important to address the cause and not just the effect of the wearing out hip. Regenerative Orthopedics, such as Dextrose Prolotherapy, Platelet Rich Plasma, and Stem Cell Prolotherapy, are all non-surgical treatment options that get to the root of the problem. They actually stimulate ligament, tendon, and cartilage repair. And most people have pain because of injury to one or all of these structures.\r\n\r\n&nbsp;\r\n\r\n<strong>But I Have Already Tried Conservative Care</strong>\r\n\r\nHave you already tried pain medications, cortisone injections, hyaluronic injections, or even massage and PT? But you still have pain? Pains medications, NSAIDs, and cortisone injections may help with the pain, but they do not repair the soft tissue of the joint. It\'s also very possible massage and physical therapy helped for a time. These treatments are great to resolve and repair muscle issues. However, if the problem involves ligaments, tendons, and cartilage, that need repair, then a treatment needs to be sought that addresses these soft tissue injuries. Regenerative Orthopedics does just that!\r\n\r\n&nbsp;\r\n\r\n<strong>The Ligaments of the Hip Need to Be Repaired!</strong>\r\n\r\nWhen your hip is unstable it destroys supporting tissue of the hip. The ball starts to rub the socket the wrong way and it moves abnormally. This is what\'s often referred to as “wear and tear” degeneration. This abnormal motion must be fixed.\r\n\r\n&nbsp;\r\n\r\nThe ligaments of the hip need to be repaired in order to stop the degenerative effect of the injured ligaments. Surgery often cuts through ligaments but it does not repair them! The Journal of Biomechanics says this, “Laboratory data indicate the hip capsular ligaments prevent excessive range of motion, may protect the joint against adverse edge loading, and contribute to synovial fluid replenishment at the cartilage surfaces of the joint. However, <strong>their repair after joint preserving (hip arthroscopy) or arthroplasty (hip replacement) surgery is not routine.</strong>\"(2)\r\n\r\n&nbsp;\r\n\r\nThe hip ligaments need to be repaired. Many people continue to have pain even after hip replacement. It is quite possible the problem is related to the lack of repair of these soft tissue structures. You can’t save the hip without saving and repairing the hip ligaments.\r\n\r\n&nbsp;\r\n\r\n<strong>Why Is Hip Ligament Repair Important?</strong>\r\n<ul>\r\n 	<li>Hip ligaments prevent an excessive range of motion and contribute to the natural lubrication process of joints preventing friction and wear and tear.</li>\r\n 	<li>The repair of ligaments after hip replacement surgery is not routine, and often leads to the need for hip revision surgery.</li>\r\n 	<li>Failing to restore hip ligament function may increase the risk joint</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Regenerative Repair of the Ligaments Is an Effective Treatment Option</strong>\r\n\r\nRegenerative Orthopedics offer an alternative for the repair of hip ligaments which can reduce the need for hip replacement. The journal <em>International Orthopaedics says, </em>\"Newer, regenerative approaches have the potential to effectively delay or reduce the requirement for such invasive procedures.”(3)\r\n\r\n&nbsp;\r\n\r\nRegenerative Orthopedics are an effective alternative to hip replacement surgery. Researchers in the <em>Journal of Prolotherapy</em> demonstrated that Prolotherapy helps decrease pain and improve the quality of life of patients with chronic hip pain. Ninety-five percent of patients stated their pain was better after Prolotherapy. (4)\r\n\r\n&nbsp;\r\n\r\nAnother medical journal reported, “According to our study, Prolotherapy is superior to exercise. Prolotherapy could provide significant improvement for clinical outcomes in developmental dysplasia of the hip and might delay surgery.\" (5)\r\n\r\n&nbsp;\r\n\r\nIn many cases, Prolotherapy alone is sufficient to repair the hip. But in cases of more advanced degeneration, the addition of PRP and Stem Cells may be needed. At OrthoRegen®, we use the Gold Standard in Stem Cell Repair, which includes Prolotherapy, PRP, adipose stem cells, and bone marrow stem cells. This combination is extremely effective for advanced cases of hip arthritis. The stem cells and PRP address the cartilage problem and the Prolotherapy addresses ligament repair, stabilizing the hip, and restoring joint stability. The repair is comprehensive treatment of the entire hip.\r\n\r\n&nbsp;\r\n\r\nIn the <em>American Journal of Sports Medicine, researchers say,</em> “Results indicated that intra-articular PRP injections offer a significant clinical improvement in patients with hip osteoarthritis without relevant side effects.”(6)\r\n\r\n<strong> </strong>\r\n\r\nAnd in the journal <em>Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders</em>, researchers show that stem cells regenerate tissue damage within the osteoarthritic joint, and when combined with Prolotherapy injections, were able to restore hip stability. (7)\r\n\r\n&nbsp;\r\n\r\nHip surgeries are going through the roof with close to 10 million hip surgeries performed annually. If you would prefer to avoid surgery, please give us a call to see if you are a good candidate for Regenerative Orthopedics.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>References</strong>\r\n<ul>\r\n 	<li>Xing D, Li R, Li JJ, Tao K, Lin J, Yan T, Zhou D. Catastrophic Periprosthetic Osteolysis in Total Hip Arthroplasty at 20 Years: A Case Report and Literature Review. Orthopaedic Surgery. 2022 Aug.</li>\r\n 	<li>van Arkel RJ, Amis AA, Jeffers JR. The envelope of passive motion allowed by the capsular ligaments of the hip. Journal of biomechanics. 2015 Nov 5;48(14):3803-9</li>\r\n 	<li>Hevesi M, Jacob G, Shimomura K, Ando W, Nakamura N, Krych AJ. Current hip cartilage regeneration/repair modalities: a scoping review of biologics and surgery. International Orthopaedics. 2020 Sep 10:1-5.</li>\r\n 	<li>Hauser RA, Hauser MA. A Retrospective Study on Hackett-Hemwall Dextrose Prolotherapy for Chronic Hip Pain at an Outpatient Charity Clinic in Rural Illinois. Journal of Prolotherapy. 2009;2:76-88.</li>\r\n 	<li>Gül D, Orsçelik A, Akpancar S. Treatment of Osteoarthritis Secondary to Developmental Dysplasia of the Hip with Prolotherapy Injection versus a Supervised Progressive Exercise Control. <em>Med Sci Monit</em>. 2020;26:e919166. Published 2020 Feb 11. doi:10.12659/MSM.919166</li>\r\n 	<li>Dallari D, Stagni C, Rani N, Sabbioni G, Pelotti P, Torricelli P, Tschon M, Giavaresi G.Ultrasound-Guided Injection of Platelet-Rich Plasma and Hyaluronic Acid, Separately and in Combination, for Hip Osteoarthritis: A Randomized Controlled Study. <em>Am J Sports Med</em>. 2016 Mar;44(3):664-71. doi: 10.1177/0363546515620383. Epub 2016 Jan 21.</li>\r\n</ul>\r\nHauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. <em>Clin Med Insights Arthritis Musculoskelet Disord</em>. 2013 Sep 4;6:65-72. doi: 10.4137/CMAMD.S10951. eCollection 2013.','Hip Replacement Alternatives','','inherit','closed','closed','','5860-revision-v1','','','2023-08-27 17:10:34','2023-08-27 17:10:34','',5860,'https://www.drfields.com/?p=5863',0,'revision','',0),(5864,8,'2023-08-27 17:18:41','2023-08-27 17:18:41','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a href=\"/articles/hip-replacement-alternatives/\" title=\"Hip Replacement Alternatives\">Hip Replacement Alternatives</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/acl-tear-repair/\">ACL TEAR Repair</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/foot-pain-treatment/\">Foot Pain Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/arthritis-neck-treatment/\">Arthritis Neck Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/back-pain-specialist/\">Back Pain Specialist</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/tennis-elbow-treatment/\">Tennis Elbow Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/hip-arthritis-treatment/\">Hip Arthritis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-08-27 17:18:41','2023-08-27 17:18:41','',2109,'https://www.drfields.com/?p=5864',0,'revision','',0),(5866,9,'2023-08-30 20:10:40','2023-08-30 20:10:40','<h2><img class=\"alignright wp-image-5862\" src=\"https://www.drfields.com/wp-content/uploads/2023/08/hip-replacement-alternative-1-500x422.png\" alt=\"Hip Replacement Alternative\" width=\"300\" height=\"253\" />Hip Replacement Alternative</h2>\nWe see many people in our office trying to avoid hip replacement surgery. These patients have usually already tried all kinds of treatments to \"preserve their hip\" and avoid surgery. Often, just mentioning surgery sends people searching for an alternative. Regenerative Orthopedic options are effective hip replacement alternatives.\n<h3><strong>Why Look for An Alternative to Hip Replacement?</strong></h3>\nHip replacement can be a successful means of improving quality of life, especially when the hip has become severely degenerated. However, there are issues to be considered before choosing a hip replacement.\n\nHip replacements do not last forever; they wear out. So, if the patient is younger, it is essential to keep in mind that the replacement will wear out in 15-plus years.\n\nAlso, some people have continued pain after hip replacement. The surgery doesn\'t go as well as planned! But there are alternatives. And Regenerative Orthopedics is a non-surgical option.\n\nDebris can leak from the replacement, causing an inflammatory response that further destroys the hip joint. Researchers in the journal <em>Orthopaedic Surgery</em> say, “Inflammatory responses to polyethylene wear debris can lead to severe bone resorption and aseptic loosening in the long-term following total hip replacement.” (1)\n\nAnd I always say, \"Remember, once the surgery is done, it cannot be undone.\" Surgery is permanent. There is no going back!\n<h3><strong>But My Doctor Says My Hip Is Bone-On-Bone?</strong></h3>\nHip replacement is often chosen because the patient has been told they have bone-on-bone arthritis, and hip replacement is the only option. The hip replacement is chosen because the patient thinks there is no other choice. But hip replacement is not the only option for bone-on-bone arthritis. Regenerative Orthopedics is a practical option in many arthritis cases.\n<h3><em>How do you get to bone-on-bone in the first place?</em></h3>\nBone-on-bone refers to the condition of arthritis where the smooth cartilage that lines the hip bones wears away, leaving the joint without its cushion, allowing bone to rub against bone. The bones no longer glide normally.\n\nBone-on-bone doesn\'t happen suddenly. That bone-on-bone condition began when the soft tissue, like tendons, ligaments, and even the hip labrum, became injured, worn, and/or weakened, making the hip joint unstable. Eventually, the person with this worn-out hip will experience loss of motion. Over time, the hip instability causes further joint injury, the wearing away of the cartilage lining of the hip joint, the development of bone spurs, and the “bumping” of bones into one another. The eventual degenerative changes can be seen on an x-ray, and bone-on-bone arthritis is diagnosed.\n\nBut what\'s interesting is that cartilage has no nerve endings. Where is the pain coming from if it\'s not from the worn cartilage? It\'s likely the ligaments! All of the abnormal motion from the unstable hip changes the balance in the hip joint and distributes forces differently, injuring other joint structures like the ligaments. Ligaments are highly innervated. They do have nerves. And when damaged, can elicit pain. The injured soft tissue needs to be addressed and repaired. What repairs joint soft tissue? Regenerative Orthopedics!\n<h3><strong>Which Treatments Are Hip Replacement Alternatives?</strong></h3>\nInjury to soft tissue, like the ligaments, tendons, and cartilage, causes the joint to become unstable. It is crucial to address the cause and not just the effect of the wearing-out hip. Regenerative Orthopedics, such as Dextrose Prolotherapy, Platelet Rich Plasma, and Stem Cell Prolotherapy, are all non-surgical treatment options that get to the root of the problem. They actually stimulate ligament, tendon, and cartilage repair.\n<h3><strong>But I Have Already Tried Conservative Care</strong></h3>\nHave you tried pain medications, cortisone injections, hyaluronic injections, or even massage and PT? But you still have pain? Pain medications, NSAIDs, and cortisone injections may help with the pain but not repair the joint\'s soft tissue. It\'s also possible that massage and physical therapy helped for a time. These treatments are great for resolving and repairing muscle issues. However, if the problem involves ligaments, tendons, and cartilage that need repair, a treatment must be sought to address these soft tissue injuries. Regenerative Orthopedics does just that!\n<h3><strong>The Ligaments of the Hip Need to Be Repaired!</strong></h3>\nWhen your hip is unstable, it destroys the supporting tissue of the hip. The ball starts to rub the socket the wrong way, and it moves abnormally. This is what\'s often referred to as “wear and tear” degeneration. This abnormal motion must be fixed.\n\nThe ligaments of the hip need to be repaired to stop the degenerative effect of the injured ligaments. Surgery often cuts through ligaments, but it does not repair them! The Journal of Biomechanics says, “Laboratory data indicate the hip capsular ligaments prevent excessive range of motion, may protect the joint against adverse edge loading, and contribute to synovial fluid replenishment at the cartilage surfaces of the joint. However, <strong>their repair after joint preserving (hip arthroscopy) or arthroplasty (hip replacement) surgery is not routine.</strong>\"(2)\n\nThe hip ligaments need to be repaired. Many people continue to have pain even after hip replacement. The problem may be related to the lack of repair of these soft tissue structures. You can’t save the hip without saving and repairing the hip ligaments.\n<h3><strong>Why Is Hip Ligament Repair Important?</strong></h3>\n<ul>\n 	<li>Hip ligaments prevent an excessive range of motion and contribute to the natural lubrication process of joints, preventing friction and wear and tear.</li>\n 	<li>When ligaments are not repaired, this often leads to the need for hip revision surgery.</li>\n 	<li>Failing to restore hip ligament function may increase the risk of hip degeneration and arthritis.</li>\n</ul>\n<h3><strong>Regenerative Orthopedics Is an Effective Hip Replacement Alternative</strong></h3>\n<h4><em>Studies Demonstrating the Effectiveness of the Regenerative Orthopedic Treatment of Prolotherapy:</em></h4>\nRegenerative Orthopedics offers an alternative for repairing hip ligaments, which can reduce the need for hip replacement. The journal <em>International Orthopaedics says, </em>\"Newer, regenerative approaches have the potential to effectively delay or reduce the requirement for such invasive procedures.”(3)\n\nRegenerative Orthopedics is an effective alternative to hip replacement surgery. Researchers in the <em>Journal of Prolotherapy</em> demonstrated that Prolotherapy helps decrease pain and improve the quality of life of patients with chronic hip pain. Ninety-five percent of patients stated their pain was better after Prolotherapy. (4)\n\nAnother medical journal reported, “According to our study, Prolotherapy is superior to exercise. Prolotherapy could provide significant improvement for clinical outcomes in developmental dysplasia of the hip and might delay surgery.\" (5)\n<h4><em>Studies Demonstrating the Effectiveness of the Regenerative Orthopedic Treatment of PRP </em></h4>\nIn many cases, Prolotherapy alone is sufficient to repair the hip. But PRP and Stem Cells may be needed in cases of more advanced degeneration. At OrthoRegen®, we use the Gold Standard in Stem Cell Repair, which includes Prolotherapy, PRP, adipose stem cells, and bone marrow stem cells. This combination is highly effective for advanced cases of hip arthritis. The stem cells and PRP address the cartilage problem, and Prolotherapy addresses ligament repair, stabilizing the hip and restoring joint stability. The repair is a comprehensive treatment of the entire hip.\n\nIn the <em>American Journal of Sports Medicine, researchers say,</em> “Results indicated that intra-articular PRP injections offer a significant clinical improvement in patients with hip osteoarthritis without relevant side effects.”(6)\n\nIn the journal <em>Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders</em>, researchers show that stem cells regenerate tissue damage within the osteoarthritic joint and, when combined with Prolotherapy injections, were able to restore hip stability. (7)\n\nHip surgeries are going through the roof, with close to 10 million hip surgeries performed annually. If you prefer to avoid surgery, please call us to see if you are a good candidate for Regenerative Orthopedics.\n\n&nbsp;\n<h3><strong>References</strong></h3>\n<ul>\n 	<li>Xing D, Li R, Li JJ, Tao K, Lin J, Yan T, Zhou D. Catastrophic Periprosthetic Osteolysis in Total Hip Arthroplasty at 20 Years: A Case Report and Literature Review. Orthopaedic Surgery. 2022 Aug.</li>\n 	<li>van Arkel RJ, Amis AA, Jeffers JR. The envelope of passive motion allowed by the capsular ligaments of the hip. Journal of biomechanics. 2015 Nov 5;48(14):3803-9</li>\n 	<li>Hevesi M, Jacob G, Shimomura K, Ando W, Nakamura N, Krych AJ. Current hip cartilage regeneration/repair modalities: a scoping review of biologics and surgery. International Orthopaedics. 2020 Sep 10:1-5.</li>\n 	<li>Hauser RA, Hauser MA. A Retrospective Study on Hackett-Hemwall Dextrose Prolotherapy for Chronic Hip Pain at an Outpatient Charity Clinic in Rural Illinois. Journal of Prolotherapy. 2009;2:76-88.</li>\n 	<li>Gül D, Orsçelik A, Akpancar S. Treatment of Osteoarthritis Secondary to Developmental Dysplasia of the Hip with Prolotherapy Injection versus a Supervised Progressive Exercise Control. <em>Med Sci Monit</em>. 2020;26:e919166. Published 2020 Feb 11. doi:10.12659/MSM.919166</li>\n 	<li>Dallari D, Stagni C, Rani N, Sabbioni G, Pelotti P, Torricelli P, Tschon M, Giavaresi G.Ultrasound-Guided Injection of Platelet-Rich Plasma and Hyaluronic Acid, Separately and in Combination, for Hip Osteoarthritis: A Randomized Controlled Study. <em>Am J Sports Med</em>. 2016 Mar;44(3):664-71. doi: 10.1177/0363546515620383. Epub 2016 Jan 21.</li>\n</ul>\nHauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. <em>Clin Med Insights Arthritis Musculoskelet Disord</em>. 2013 Sep 4;6:65-72. doi: 10.4137/CMAMD.S10951. eCollection 2013.','Hip Replacement Alternative','','inherit','closed','closed','','5860-autosave-v1','','','2023-08-30 20:10:40','2023-08-30 20:10:40','',5860,'https://www.drfields.com/?p=5866',0,'revision','',0),(5867,9,'2023-08-30 19:48:38','2023-08-30 19:48:38','<img class=\"alignright wp-image-5862\" src=\"https://www.drfields.com/wp-content/uploads/2023/08/hip-replacement-alternative-1-500x422.png\" alt=\"Hip Replacement Alternative\" width=\"300\" height=\"253\" />We see a lot of people in our office trying to avoid hip replacement surgery. These patients have usually already tried all kinds of treatments in an effort to \"preserve their hip\" and avoid surgery. Oftentimes, just the mention of surgery sends people searching for an alternative, and Regenerative Orthopedic options are effective hip replacement alternatives.\r\n\r\n<strong>Why Look for An Alternative to Hip Replacement?</strong>\r\n\r\nHip replacement can be a successful means of improving quality of life, especially when the hip has become severely degenerated. But there are issues to be considered prior to choosing hip replacement.\r\n\r\nHip replacements do not last forever, they wear out. So if the patient is younger, it is important to keep in mind that the replacement will wear out in 15-plus years.\r\n\r\nAlso, some people have continued pain after hip replacement.The surgery just doesn\'t go as well as planned! But there are alternatives. And Regenerative Orthopedics is a non-surgical option.\r\n\r\nDebris can leak from the replacement causing an inflammatory response that leads to further destruction of the hip joint. Researchers in the journal <em>Orthopaedic Surgery</em> say, “Inflammatory responses to polyethylene wear debris can lead to severe bone resorption and aseptic loosening in the long-term following total hip replacement.” (1)\r\n\r\nAnd I always say, \"remember, once the surgery is done, it cannot be undone.\" Surgery is permanent. There is no going back!\r\n\r\n<strong>But My Doctor Says My Hip Is Bone-On-Bone?</strong>\r\n\r\nHip replacement is often chosen because the patient has been told they have bone-on-bone arthritis, and hip replacement is the only option. The hip replacement is chosen because the patient thinks there is no other choice. But hip replacement is not the only option for bone-on-bone arthritis. Regenerative Orthopedics is a practical option in many arthritis cases.\r\n\r\n<em>How do you get to bone-on-bone in the first place?</em>\r\n\r\nBone-on-bone refers to the condition of arthritis where the smooth cartilage that lines the hip bones wears away, leaving the joint without its cushion, allowing bone to rub against bone. The bones no longer glide normally.\r\n\r\nBone-on-bone doesn\'t happen suddenly. That bone-on-bone condition began when the soft tissue, like tendons, ligaments, and even the hip labrum, became injured, worn, and/or weakened, and allowed for the hip joint to become unstable. Eventually, the person with this worn-out hip will experience loss of motion. Over time, the hip instability causes further joint injury, the wearing away of the cartilage lining of the hip joint, the development of bone spurs, and the “bumping” of bones into one another. The eventual degenerative changes can be seen on an x-ray, and bone-on-bone arthritis is diagnosed.\r\n\r\nBut what\'s really interesting is that cartilage has no nerve endings. Where is the pain coming from then if it\'s not from the worn cartilage? It\'s likely the ligaments! All of the abnormal motion from the unstable hip changes the balance in the hip joint and distributes forces differently, injuring other joint structures like the ligaments. Ligaments are highly innervated. They do have nerves. And when injured, can elicit pain. The injured soft tissue needs to be addressed and repaired. What repairs joint soft tissue? Regenerative Orthopedics!\r\n\r\n<strong>Which Treatments Can Help Me Avoid Surgery?</strong>\r\n\r\nInjury to soft tissue, like the ligaments, tendons, and cartilage, causes the joint to become unstable. It is important to address the cause and not just the effect of the wearing out hip. Regenerative Orthopedics, such as Dextrose Prolotherapy, Platelet Rich Plasma, and Stem Cell Prolotherapy, are all non-surgical treatment options that get to the root of the problem. They actually stimulate ligament, tendon, and cartilage repair. And most people have pain because of injury to one or all of these structures.\r\n\r\n<strong>But I Have Already Tried Conservative Care</strong>\r\n\r\nHave you already tried pain medications, cortisone injections, hyaluronic injections, or even massage and PT? But you still have pain? Pains medications, NSAIDs, and cortisone injections may help with the pain, but they do not repair the soft tissue of the joint. It\'s also very possible massage and physical therapy helped for a time. These treatments are great to resolve and repair muscle issues. However, if the problem involves ligaments, tendons, and cartilage, that need repair, then a treatment needs to be sought that addresses these soft tissue injuries. Regenerative Orthopedics does just that!\r\n\r\n<strong>The Ligaments of the Hip Need to Be Repaired!</strong>\r\n\r\nWhen your hip is unstable it destroys supporting tissue of the hip. The ball starts to rub the socket the wrong way and it moves abnormally. This is what\'s often referred to as “wear and tear” degeneration. This abnormal motion must be fixed.\r\n\r\nThe ligaments of the hip need to be repaired in order to stop the degenerative effect of the injured ligaments. Surgery often cuts through ligaments but it does not repair them! The Journal of Biomechanics says this, “Laboratory data indicate the hip capsular ligaments prevent excessive range of motion, may protect the joint against adverse edge loading, and contribute to synovial fluid replenishment at the cartilage surfaces of the joint. However, <strong>their repair after joint preserving (hip arthroscopy) or arthroplasty (hip replacement) surgery is not routine.</strong>\"(2)\r\n\r\nThe hip ligaments need to be repaired. Many people continue to have pain even after hip replacement. It is quite possible the problem is related to the lack of repair of these soft tissue structures. You can’t save the hip without saving and repairing the hip ligaments.\r\n\r\n<strong>Why Is Hip Ligament Repair Important?</strong>\r\n<ul>\r\n 	<li>Hip ligaments prevent an excessive range of motion and contribute to the natural lubrication process of joints preventing friction and wear and tear.</li>\r\n 	<li>The repair of ligaments after hip replacement surgery is not routine, and often leads to the need for hip revision surgery.</li>\r\n 	<li>Failing to restore hip ligament function may increase the risk joint</li>\r\n</ul>\r\n<strong>Regenerative Repair of the Ligaments Is an Effective Treatment Option</strong>\r\n\r\nRegenerative Orthopedics offer an alternative for the repair of hip ligaments which can reduce the need for hip replacement. The journal <em>International Orthopaedics says, </em>\"Newer, regenerative approaches have the potential to effectively delay or reduce the requirement for such invasive procedures.”(3)\r\n\r\nRegenerative Orthopedics are an effective alternative to hip replacement surgery. Researchers in the <em>Journal of Prolotherapy</em> demonstrated that Prolotherapy helps decrease pain and improve the quality of life of patients with chronic hip pain. Ninety-five percent of patients stated their pain was better after Prolotherapy. (4)\r\n\r\nAnother medical journal reported, “According to our study, Prolotherapy is superior to exercise. Prolotherapy could provide significant improvement for clinical outcomes in developmental dysplasia of the hip and might delay surgery.\" (5)\r\n\r\nIn many cases, Prolotherapy alone is sufficient to repair the hip. But in cases of more advanced degeneration, the addition of PRP and Stem Cells may be needed. At OrthoRegen®, we use the Gold Standard in Stem Cell Repair, which includes Prolotherapy, PRP, adipose stem cells, and bone marrow stem cells. This combination is extremely effective for advanced cases of hip arthritis. The stem cells and PRP address the cartilage problem and the Prolotherapy addresses ligament repair, stabilizing the hip, and restoring joint stability. The repair is comprehensive treatment of the entire hip.\r\n\r\nIn the <em>American Journal of Sports Medicine, researchers say,</em> “Results indicated that intra-articular PRP injections offer a significant clinical improvement in patients with hip osteoarthritis without relevant side effects.”(6)\r\n\r\nAnd in the journal <em>Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders</em>, researchers show that stem cells regenerate tissue damage within the osteoarthritic joint, and when combined with Prolotherapy injections, were able to restore hip stability. (7)\r\n\r\nHip surgeries are going through the roof, with close to 10 million hip surgeries performed annually. If you prefer to avoid surgery, please call us to see if you are a good candidate for Regenerative Orthopedics.\r\n\r\n&nbsp;\r\n\r\n<strong>References</strong>\r\n<ul>\r\n 	<li>Xing D, Li R, Li JJ, Tao K, Lin J, Yan T, Zhou D. Catastrophic Periprosthetic Osteolysis in Total Hip Arthroplasty at 20 Years: A Case Report and Literature Review. Orthopaedic Surgery. 2022 Aug.</li>\r\n 	<li>van Arkel RJ, Amis AA, Jeffers JR. The envelope of passive motion allowed by the capsular ligaments of the hip. Journal of biomechanics. 2015 Nov 5;48(14):3803-9</li>\r\n 	<li>Hevesi M, Jacob G, Shimomura K, Ando W, Nakamura N, Krych AJ. Current hip cartilage regeneration/repair modalities: a scoping review of biologics and surgery. International Orthopaedics. 2020 Sep 10:1-5.</li>\r\n 	<li>Hauser RA, Hauser MA. A Retrospective Study on Hackett-Hemwall Dextrose Prolotherapy for Chronic Hip Pain at an Outpatient Charity Clinic in Rural Illinois. Journal of Prolotherapy. 2009;2:76-88.</li>\r\n 	<li>Gül D, Orsçelik A, Akpancar S. Treatment of Osteoarthritis Secondary to Developmental Dysplasia of the Hip with Prolotherapy Injection versus a Supervised Progressive Exercise Control. <em>Med Sci Monit</em>. 2020;26:e919166. Published 2020 Feb 11. doi:10.12659/MSM.919166</li>\r\n 	<li>Dallari D, Stagni C, Rani N, Sabbioni G, Pelotti P, Torricelli P, Tschon M, Giavaresi G.Ultrasound-Guided Injection of Platelet-Rich Plasma and Hyaluronic Acid, Separately and in Combination, for Hip Osteoarthritis: A Randomized Controlled Study. <em>Am J Sports Med</em>. 2016 Mar;44(3):664-71. doi: 10.1177/0363546515620383. Epub 2016 Jan 21.</li>\r\n</ul>\r\nHauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. <em>Clin Med Insights Arthritis Musculoskelet Disord</em>. 2013 Sep 4;6:65-72. doi: 10.4137/CMAMD.S10951. eCollection 2013.','Hip Replacement Alternatives','','inherit','closed','closed','','5860-revision-v1','','','2023-08-30 19:48:38','2023-08-30 19:48:38','',5860,'https://www.drfields.com/?p=5867',0,'revision','',0),(5868,9,'2023-08-30 20:00:37','2023-08-30 20:00:37','<h2><img class=\"alignright wp-image-5862\" src=\"https://www.drfields.com/wp-content/uploads/2023/08/hip-replacement-alternative-1-500x422.png\" alt=\"Hip Replacement Alternative\" width=\"300\" height=\"253\" />Hip Replacement Alternative</h2>\r\nWe see many people in our office trying to avoid hip replacement surgery. These patients have usually already tried all kinds of treatments to \"preserve their hip\" and avoid surgery. Often, just mentioning surgery sends people searching for an alternative. Regenerative Orthopedic options are effective hip replacement alternatives.\r\n\r\n<strong>Why Look for An Alternative to Hip Replacement?</strong>\r\n\r\nHip replacement can be a successful means of improving quality of life, especially when the hip has become severely degenerated. However, there are issues to be considered before choosing a hip replacement.\r\n\r\nHip replacements do not last forever; they wear out. So, if the patient is younger, it is essential to keep in mind that the replacement will wear out in 15-plus years.\r\n\r\nAlso, some people have continued pain after hip replacement. The surgery doesn\'t go as well as planned! But there are alternatives. And Regenerative Orthopedics is a non-surgical option.\r\n\r\nDebris can leak from the replacement, causing an inflammatory response that further destroys the hip joint. Researchers in the journal <em>Orthopaedic Surgery</em> say, “Inflammatory responses to polyethylene wear debris can lead to severe bone resorption and aseptic loosening in the long-term following total hip replacement.” (1)\r\n\r\nAnd I always say, \"Remember, once the surgery is done, it cannot be undone.\" Surgery is permanent. There is no going back!\r\n\r\n<strong>But My Doctor Says My Hip Is Bone-On-Bone?</strong>\r\n\r\nHip replacement is often chosen because the patient has been told they have bone-on-bone arthritis, and hip replacement is the only option. The hip replacement is chosen because the patient thinks there is no other choice. But hip replacement is not the only option for bone-on-bone arthritis. Regenerative Orthopedics is a practical option in many arthritis cases.\r\n\r\n<em>How do you get to bone-on-bone in the first place?</em>\r\n\r\nBone-on-bone refers to the condition of arthritis where the smooth cartilage that lines the hip bones wears away, leaving the joint without its cushion, allowing bone to rub against bone. The bones no longer glide normally.\r\n\r\nBone-on-bone doesn\'t happen suddenly. That bone-on-bone condition began when the soft tissue, like tendons, ligaments, and even the hip labrum, became injured, worn, and/or weakened, making the hip joint unstable. Eventually, the person with this worn-out hip will experience loss of motion. Over time, the hip instability causes further joint injury, the wearing away of the cartilage lining of the hip joint, the development of bone spurs, and the “bumping” of bones into one another. The eventual degenerative changes can be seen on an x-ray, and bone-on-bone arthritis is diagnosed.\r\n\r\nBut what\'s interesting is that cartilage has no nerve endings. Where is the pain coming from if it\'s not from the worn cartilage? It\'s likely the ligaments! All of the abnormal motion from the unstable hip changes the balance in the hip joint and distributes forces differently, injuring other joint structures like the ligaments. Ligaments are highly innervated. They do have nerves. And when damaged, can elicit pain. The injured soft tissue needs to be addressed and repaired. What repairs joint soft tissue? Regenerative Orthopedics!\r\n\r\n<strong>Which Treatments Can Help Me Avoid Surgery?</strong>\r\n\r\nInjury to soft tissue, like the ligaments, tendons, and cartilage, causes the joint to become unstable. It is crucial to address the cause and not just the effect of the wearing-out hip. Regenerative Orthopedics, such as Dextrose Prolotherapy, Platelet Rich Plasma, and Stem Cell Prolotherapy, are all non-surgical treatment options that get to the root of the problem. They actually stimulate ligament, tendon, and cartilage repair.\r\n\r\n<strong>But I Have Already Tried Conservative Care</strong>\r\n\r\nHave you tried pain medications, cortisone injections, hyaluronic injections, or even massage and PT? But you still have pain? Pain medications, NSAIDs, and cortisone injections may help with the pain but not repair the joint\'s soft tissue. It\'s also possible that massage and physical therapy helped for a time. These treatments are great for resolving and repairing muscle issues. However, if the problem involves ligaments, tendons, and cartilage that need repair, then a treatment needs to be sought that addresses these soft tissue injuries. Regenerative Orthopedics does just that!\r\n\r\n<strong>The Ligaments of the Hip Need to Be Repaired!</strong>\r\n\r\nWhen your hip is unstable, it destroys the supporting tissue of the hip. The ball starts to rub the socket the wrong way, and it moves abnormally. This is what\'s often referred to as “wear and tear” degeneration. This abnormal motion must be fixed.\r\n\r\nThe ligaments of the hip need to be repaired to stop the degenerative effect of the injured ligaments. Surgery often cuts through ligaments, but it does not repair them! The Journal of Biomechanics says, “Laboratory data indicate the hip capsular ligaments prevent excessive range of motion, may protect the joint against adverse edge loading, and contribute to synovial fluid replenishment at the cartilage surfaces of the joint. However, <strong>their repair after joint preserving (hip arthroscopy) or arthroplasty (hip replacement) surgery is not routine.</strong>\"(2)\r\n\r\nThe hip ligaments need to be repaired. Many people continue to have pain even after hip replacement. The problem may be related to the lack of repair of these soft tissue structures. You can’t save the hip without saving and repairing the hip ligaments.\r\n\r\n<strong>Why Is Hip Ligament Repair Important?</strong>\r\n<ul>\r\n 	<li>Hip ligaments prevent an excessive range of motion and contribute to the natural lubrication process of joints, preventing friction and wear and tear.</li>\r\n 	<li>When ligaments are not repaired, this often leads to the need for hip revision surgery.</li>\r\n 	<li>Failing to restore hip ligament function may increase the risk of hip degeneration and arthritis</li>\r\n</ul>\r\n<strong>Regenerative Repair of the Ligaments Is an Effective Treatment Option</strong>\r\n\r\nRegenerative Orthopedics offers an alternative for repairing hip ligaments, which can reduce the need for hip replacement. The journal <em>International Orthopaedics says, </em>\"Newer, regenerative approaches have the potential to effectively delay or reduce the requirement for such invasive procedures.”(3)\r\n\r\nRegenerative Orthopedics is an effective alternative to hip replacement surgery. Researchers in the <em>Journal of Prolotherapy</em> demonstrated that Prolotherapy helps decrease pain and improve the quality of life of patients with chronic hip pain. Ninety-five percent of patients stated their pain was better after Prolotherapy. (4)\r\n\r\nAnother medical journal reported, “According to our study, Prolotherapy is superior to exercise. Prolotherapy could provide significant improvement for clinical outcomes in developmental dysplasia of the hip and might delay surgery.\" (5)\r\n\r\nIn many cases, Prolotherapy alone is sufficient to repair the hip. But PRP and Stem Cells may be needed in cases of more advanced degeneration. At OrthoRegen®, we use the Gold Standard in Stem Cell Repair, which includes Prolotherapy, PRP, adipose stem cells, and bone marrow stem cells. This combination is highly effective for advanced cases of hip arthritis. The stem cells and PRP address the cartilage problem, and Prolotherapy addresses ligament repair, stabilizing the hip and restoring joint stability. The repair is a comprehensive treatment of the entire hip.\r\n\r\nIn the <em>American Journal of Sports Medicine, researchers say,</em> “Results indicated that intra-articular PRP injections offer a significant clinical improvement in patients with hip osteoarthritis without relevant side effects.”(6)\r\n\r\nAnd in the journal <em>Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders</em>, researchers show that stem cells regenerate tissue damage within the osteoarthritic joint and when combined with Prolotherapy injections, were able to restore hip stability. (7)\r\n\r\nHip surgeries are going through the roof, with close to 10 million hip surgeries performed annually. If you prefer to avoid surgery, please call us to see if you are a good candidate for Regenerative Orthopedics.\r\n\r\n&nbsp;\r\n\r\n<strong>References</strong>\r\n<ul>\r\n 	<li>Xing D, Li R, Li JJ, Tao K, Lin J, Yan T, Zhou D. Catastrophic Periprosthetic Osteolysis in Total Hip Arthroplasty at 20 Years: A Case Report and Literature Review. Orthopaedic Surgery. 2022 Aug.</li>\r\n 	<li>van Arkel RJ, Amis AA, Jeffers JR. The envelope of passive motion allowed by the capsular ligaments of the hip. Journal of biomechanics. 2015 Nov 5;48(14):3803-9</li>\r\n 	<li>Hevesi M, Jacob G, Shimomura K, Ando W, Nakamura N, Krych AJ. Current hip cartilage regeneration/repair modalities: a scoping review of biologics and surgery. International Orthopaedics. 2020 Sep 10:1-5.</li>\r\n 	<li>Hauser RA, Hauser MA. A Retrospective Study on Hackett-Hemwall Dextrose Prolotherapy for Chronic Hip Pain at an Outpatient Charity Clinic in Rural Illinois. Journal of Prolotherapy. 2009;2:76-88.</li>\r\n 	<li>Gül D, Orsçelik A, Akpancar S. Treatment of Osteoarthritis Secondary to Developmental Dysplasia of the Hip with Prolotherapy Injection versus a Supervised Progressive Exercise Control. <em>Med Sci Monit</em>. 2020;26:e919166. Published 2020 Feb 11. doi:10.12659/MSM.919166</li>\r\n 	<li>Dallari D, Stagni C, Rani N, Sabbioni G, Pelotti P, Torricelli P, Tschon M, Giavaresi G.Ultrasound-Guided Injection of Platelet-Rich Plasma and Hyaluronic Acid, Separately and in Combination, for Hip Osteoarthritis: A Randomized Controlled Study. <em>Am J Sports Med</em>. 2016 Mar;44(3):664-71. doi: 10.1177/0363546515620383. Epub 2016 Jan 21.</li>\r\n</ul>\r\nHauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. <em>Clin Med Insights Arthritis Musculoskelet Disord</em>. 2013 Sep 4;6:65-72. doi: 10.4137/CMAMD.S10951. eCollection 2013.','Hip Replacement Alternative','','inherit','closed','closed','','5860-revision-v1','','','2023-08-30 20:00:37','2023-08-30 20:00:37','',5860,'https://www.drfields.com/?p=5868',0,'revision','',0),(5869,9,'2023-08-30 20:05:50','2023-08-30 20:05:50','<h2><img class=\"alignright wp-image-5862\" src=\"https://www.drfields.com/wp-content/uploads/2023/08/hip-replacement-alternative-1-500x422.png\" alt=\"Hip Replacement Alternative\" width=\"300\" height=\"253\" />Hip Replacement Alternative</h2>\r\nWe see many people in our office trying to avoid hip replacement surgery. These patients have usually already tried all kinds of treatments to \"preserve their hip\" and avoid surgery. Often, just mentioning surgery sends people searching for an alternative. Regenerative Orthopedic options are effective hip replacement alternatives.\r\n<h3><strong>Why Look for An Alternative to Hip Replacement?</strong></h3>\r\nHip replacement can be a successful means of improving quality of life, especially when the hip has become severely degenerated. However, there are issues to be considered before choosing a hip replacement.\r\n\r\nHip replacements do not last forever; they wear out. So, if the patient is younger, it is essential to keep in mind that the replacement will wear out in 15-plus years.\r\n\r\nAlso, some people have continued pain after hip replacement. The surgery doesn\'t go as well as planned! But there are alternatives. And Regenerative Orthopedics is a non-surgical option.\r\n\r\nDebris can leak from the replacement, causing an inflammatory response that further destroys the hip joint. Researchers in the journal <em>Orthopaedic Surgery</em> say, “Inflammatory responses to polyethylene wear debris can lead to severe bone resorption and aseptic loosening in the long-term following total hip replacement.” (1)\r\n\r\nAnd I always say, \"Remember, once the surgery is done, it cannot be undone.\" Surgery is permanent. There is no going back!\r\n<h3><strong>But My Doctor Says My Hip Is Bone-On-Bone?</strong></h3>\r\nHip replacement is often chosen because the patient has been told they have bone-on-bone arthritis, and hip replacement is the only option. The hip replacement is chosen because the patient thinks there is no other choice. But hip replacement is not the only option for bone-on-bone arthritis. Regenerative Orthopedics is a practical option in many arthritis cases.\r\n<h3><em>How do you get to bone-on-bone in the first place?</em></h3>\r\nBone-on-bone refers to the condition of arthritis where the smooth cartilage that lines the hip bones wears away, leaving the joint without its cushion, allowing bone to rub against bone. The bones no longer glide normally.\r\n\r\nBone-on-bone doesn\'t happen suddenly. That bone-on-bone condition began when the soft tissue, like tendons, ligaments, and even the hip labrum, became injured, worn, and/or weakened, making the hip joint unstable. Eventually, the person with this worn-out hip will experience loss of motion. Over time, the hip instability causes further joint injury, the wearing away of the cartilage lining of the hip joint, the development of bone spurs, and the “bumping” of bones into one another. The eventual degenerative changes can be seen on an x-ray, and bone-on-bone arthritis is diagnosed.\r\n\r\nBut what\'s interesting is that cartilage has no nerve endings. Where is the pain coming from if it\'s not from the worn cartilage? It\'s likely the ligaments! All of the abnormal motion from the unstable hip changes the balance in the hip joint and distributes forces differently, injuring other joint structures like the ligaments. Ligaments are highly innervated. They do have nerves. And when damaged, can elicit pain. The injured soft tissue needs to be addressed and repaired. What repairs joint soft tissue? Regenerative Orthopedics!\r\n<h3><strong>Which Treatments Can Help Me Avoid Surgery?</strong></h3>\r\nInjury to soft tissue, like the ligaments, tendons, and cartilage, causes the joint to become unstable. It is crucial to address the cause and not just the effect of the wearing-out hip. Regenerative Orthopedics, such as Dextrose Prolotherapy, Platelet Rich Plasma, and Stem Cell Prolotherapy, are all non-surgical treatment options that get to the root of the problem. They actually stimulate ligament, tendon, and cartilage repair.\r\n<h3><strong>But I Have Already Tried Conservative Care</strong></h3>\r\nHave you tried pain medications, cortisone injections, hyaluronic injections, or even massage and PT? But you still have pain? Pain medications, NSAIDs, and cortisone injections may help with the pain but not repair the joint\'s soft tissue. It\'s also possible that massage and physical therapy helped for a time. These treatments are great for resolving and repairing muscle issues. However, if the problem involves ligaments, tendons, and cartilage that need repair, then a treatment needs to be sought that addresses these soft tissue injuries. Regenerative Orthopedics does just that!\r\n<h3><strong>The Ligaments of the Hip Need to Be Repaired!</strong></h3>\r\nWhen your hip is unstable, it destroys the supporting tissue of the hip. The ball starts to rub the socket the wrong way, and it moves abnormally. This is what\'s often referred to as “wear and tear” degeneration. This abnormal motion must be fixed.\r\n\r\nThe ligaments of the hip need to be repaired to stop the degenerative effect of the injured ligaments. Surgery often cuts through ligaments, but it does not repair them! The Journal of Biomechanics says, “Laboratory data indicate the hip capsular ligaments prevent excessive range of motion, may protect the joint against adverse edge loading, and contribute to synovial fluid replenishment at the cartilage surfaces of the joint. However, <strong>their repair after joint preserving (hip arthroscopy) or arthroplasty (hip replacement) surgery is not routine.</strong>\"(2)\r\n\r\nThe hip ligaments need to be repaired. Many people continue to have pain even after hip replacement. The problem may be related to the lack of repair of these soft tissue structures. You can’t save the hip without saving and repairing the hip ligaments.\r\n<h3><strong>Why Is Hip Ligament Repair Important?</strong></h3>\r\n<ul>\r\n 	<li>Hip ligaments prevent an excessive range of motion and contribute to the natural lubrication process of joints, preventing friction and wear and tear.</li>\r\n 	<li>When ligaments are not repaired, this often leads to the need for hip revision surgery.</li>\r\n 	<li>Failing to restore hip ligament function may increase the risk of hip degeneration and arthritis</li>\r\n</ul>\r\n<h3><strong>Regenerative Repair of the Ligaments Is an Effective Treatment Option</strong></h3>\r\nRegenerative Orthopedics offers an alternative for repairing hip ligaments, which can reduce the need for hip replacement. The journal <em>International Orthopaedics says, </em>\"Newer, regenerative approaches have the potential to effectively delay or reduce the requirement for such invasive procedures.”(3)\r\n\r\nRegenerative Orthopedics is an effective alternative to hip replacement surgery. Researchers in the <em>Journal of Prolotherapy</em> demonstrated that Prolotherapy helps decrease pain and improve the quality of life of patients with chronic hip pain. Ninety-five percent of patients stated their pain was better after Prolotherapy. (4)\r\n\r\nAnother medical journal reported, “According to our study, Prolotherapy is superior to exercise. Prolotherapy could provide significant improvement for clinical outcomes in developmental dysplasia of the hip and might delay surgery.\" (5)\r\n\r\nIn many cases, Prolotherapy alone is sufficient to repair the hip. But PRP and Stem Cells may be needed in cases of more advanced degeneration. At OrthoRegen®, we use the Gold Standard in Stem Cell Repair, which includes Prolotherapy, PRP, adipose stem cells, and bone marrow stem cells. This combination is highly effective for advanced cases of hip arthritis. The stem cells and PRP address the cartilage problem, and Prolotherapy addresses ligament repair, stabilizing the hip and restoring joint stability. The repair is a comprehensive treatment of the entire hip.\r\n\r\nIn the <em>American Journal of Sports Medicine, researchers say,</em> “Results indicated that intra-articular PRP injections offer a significant clinical improvement in patients with hip osteoarthritis without relevant side effects.”(6)\r\n\r\nIn the journal <em>Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders</em>, researchers show that stem cells regenerate tissue damage within the osteoarthritic joint and, when combined with Prolotherapy injections, were able to restore hip stability. (7)\r\n\r\nHip surgeries are going through the roof, with close to 10 million hip surgeries performed annually. If you prefer to avoid surgery, please call us to see if you are a good candidate for Regenerative Orthopedics.\r\n\r\n&nbsp;\r\n<h3><strong>References</strong></h3>\r\n<ul>\r\n 	<li>Xing D, Li R, Li JJ, Tao K, Lin J, Yan T, Zhou D. Catastrophic Periprosthetic Osteolysis in Total Hip Arthroplasty at 20 Years: A Case Report and Literature Review. Orthopaedic Surgery. 2022 Aug.</li>\r\n 	<li>van Arkel RJ, Amis AA, Jeffers JR. The envelope of passive motion allowed by the capsular ligaments of the hip. Journal of biomechanics. 2015 Nov 5;48(14):3803-9</li>\r\n 	<li>Hevesi M, Jacob G, Shimomura K, Ando W, Nakamura N, Krych AJ. Current hip cartilage regeneration/repair modalities: a scoping review of biologics and surgery. International Orthopaedics. 2020 Sep 10:1-5.</li>\r\n 	<li>Hauser RA, Hauser MA. A Retrospective Study on Hackett-Hemwall Dextrose Prolotherapy for Chronic Hip Pain at an Outpatient Charity Clinic in Rural Illinois. Journal of Prolotherapy. 2009;2:76-88.</li>\r\n 	<li>Gül D, Orsçelik A, Akpancar S. Treatment of Osteoarthritis Secondary to Developmental Dysplasia of the Hip with Prolotherapy Injection versus a Supervised Progressive Exercise Control. <em>Med Sci Monit</em>. 2020;26:e919166. Published 2020 Feb 11. doi:10.12659/MSM.919166</li>\r\n 	<li>Dallari D, Stagni C, Rani N, Sabbioni G, Pelotti P, Torricelli P, Tschon M, Giavaresi G.Ultrasound-Guided Injection of Platelet-Rich Plasma and Hyaluronic Acid, Separately and in Combination, for Hip Osteoarthritis: A Randomized Controlled Study. <em>Am J Sports Med</em>. 2016 Mar;44(3):664-71. doi: 10.1177/0363546515620383. Epub 2016 Jan 21.</li>\r\n</ul>\r\nHauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. <em>Clin Med Insights Arthritis Musculoskelet Disord</em>. 2013 Sep 4;6:65-72. doi: 10.4137/CMAMD.S10951. eCollection 2013.','Hip Replacement Alternative','','inherit','closed','closed','','5860-revision-v1','','','2023-08-30 20:05:50','2023-08-30 20:05:50','',5860,'https://www.drfields.com/?p=5869',0,'revision','',0),(5870,9,'2023-08-30 20:11:03','2023-08-30 20:11:03','<h2><img class=\"alignright wp-image-5862\" src=\"https://www.drfields.com/wp-content/uploads/2023/08/hip-replacement-alternative-1-500x422.png\" alt=\"Hip Replacement Alternative\" width=\"300\" height=\"253\" />Hip Replacement Alternative</h2>\r\nWe see many people in our office trying to avoid hip replacement surgery. These patients have usually already tried all kinds of treatments to \"preserve their hip\" and avoid surgery. Often, just mentioning surgery sends people searching for an alternative. Regenerative Orthopedic options are effective hip replacement alternatives.\r\n<h3><strong>Why Look for An Alternative to Hip Replacement?</strong></h3>\r\nHip replacement can be a successful means of improving quality of life, especially when the hip has become severely degenerated. However, there are issues to be considered before choosing a hip replacement.\r\n\r\nHip replacements do not last forever; they wear out. So, if the patient is younger, it is essential to keep in mind that the replacement will wear out in 15-plus years.\r\n\r\nAlso, some people have continued pain after hip replacement. The surgery doesn\'t go as well as planned! But there are alternatives. And Regenerative Orthopedics is a non-surgical option.\r\n\r\nDebris can leak from the replacement, causing an inflammatory response that further destroys the hip joint. Researchers in the journal <em>Orthopaedic Surgery</em> say, “Inflammatory responses to polyethylene wear debris can lead to severe bone resorption and aseptic loosening in the long-term following total hip replacement.” (1)\r\n\r\nAnd I always say, \"Remember, once the surgery is done, it cannot be undone.\" Surgery is permanent. There is no going back!\r\n<h3><strong>But My Doctor Says My Hip Is Bone-On-Bone?</strong></h3>\r\nHip replacement is often chosen because the patient has been told they have bone-on-bone arthritis, and hip replacement is the only option. The hip replacement is chosen because the patient thinks there is no other choice. But hip replacement is not the only option for bone-on-bone arthritis. Regenerative Orthopedics is a practical option in many arthritis cases.\r\n<h3><em>How do you get to bone-on-bone in the first place?</em></h3>\r\nBone-on-bone refers to the condition of arthritis where the smooth cartilage that lines the hip bones wears away, leaving the joint without its cushion, allowing bone to rub against bone. The bones no longer glide normally.\r\n\r\nBone-on-bone doesn\'t happen suddenly. That bone-on-bone condition began when the soft tissue, like tendons, ligaments, and even the hip labrum, became injured, worn, and/or weakened, making the hip joint unstable. Eventually, the person with this worn-out hip will experience loss of motion. Over time, the hip instability causes further joint injury, the wearing away of the cartilage lining of the hip joint, the development of bone spurs, and the “bumping” of bones into one another. The eventual degenerative changes can be seen on an x-ray, and bone-on-bone arthritis is diagnosed.\r\n\r\nBut what\'s interesting is that cartilage has no nerve endings. Where is the pain coming from if it\'s not from the worn cartilage? It\'s likely the ligaments! All of the abnormal motion from the unstable hip changes the balance in the hip joint and distributes forces differently, injuring other joint structures like the ligaments. Ligaments are highly innervated. They do have nerves. And when damaged, can elicit pain. The injured soft tissue needs to be addressed and repaired. What repairs joint soft tissue? Regenerative Orthopedics!\r\n<h3><strong>Which Treatments Are Hip Replacement Alternatives?</strong></h3>\r\nInjury to soft tissue, like the ligaments, tendons, and cartilage, causes the joint to become unstable. It is crucial to address the cause and not just the effect of the wearing-out hip. Regenerative Orthopedics, such as Dextrose Prolotherapy, Platelet Rich Plasma, and Stem Cell Prolotherapy, are all non-surgical treatment options that get to the root of the problem. They actually stimulate ligament, tendon, and cartilage repair.\r\n<h3><strong>But I Have Already Tried Conservative Care</strong></h3>\r\nHave you tried pain medications, cortisone injections, hyaluronic injections, or even massage and PT? But you still have pain? Pain medications, NSAIDs, and cortisone injections may help with the pain but not repair the joint\'s soft tissue. It\'s also possible that massage and physical therapy helped for a time. These treatments are great for resolving and repairing muscle issues. However, if the problem involves ligaments, tendons, and cartilage that need repair, a treatment must be sought to address these soft tissue injuries. Regenerative Orthopedics does just that!\r\n<h3><strong>The Ligaments of the Hip Need to Be Repaired!</strong></h3>\r\nWhen your hip is unstable, it destroys the supporting tissue of the hip. The ball starts to rub the socket the wrong way, and it moves abnormally. This is what\'s often referred to as “wear and tear” degeneration. This abnormal motion must be fixed.\r\n\r\nThe ligaments of the hip need to be repaired to stop the degenerative effect of the injured ligaments. Surgery often cuts through ligaments, but it does not repair them! The Journal of Biomechanics says, “Laboratory data indicate the hip capsular ligaments prevent excessive range of motion, may protect the joint against adverse edge loading, and contribute to synovial fluid replenishment at the cartilage surfaces of the joint. However, <strong>their repair after joint preserving (hip arthroscopy) or arthroplasty (hip replacement) surgery is not routine.</strong>\"(2)\r\n\r\nThe hip ligaments need to be repaired. Many people continue to have pain even after hip replacement. The problem may be related to the lack of repair of these soft tissue structures. You can’t save the hip without saving and repairing the hip ligaments.\r\n<h3><strong>Why Is Hip Ligament Repair Important?</strong></h3>\r\n<ul>\r\n 	<li>Hip ligaments prevent an excessive range of motion and contribute to the natural lubrication process of joints, preventing friction and wear and tear.</li>\r\n 	<li>When ligaments are not repaired, this often leads to the need for hip revision surgery.</li>\r\n 	<li>Failing to restore hip ligament function may increase the risk of hip degeneration and arthritis.</li>\r\n</ul>\r\n<h3><strong>Regenerative Orthopedics Is an Effective Hip Replacement Alternative</strong></h3>\r\n<h4><em>Studies Demonstrating the Effectiveness of the Regenerative Orthopedic Treatment of Prolotherapy:</em></h4>\r\nRegenerative Orthopedics offers an alternative for repairing hip ligaments, which can reduce the need for hip replacement. The journal <em>International Orthopaedics says, </em>\"Newer, regenerative approaches have the potential to effectively delay or reduce the requirement for such invasive procedures.”(3)\r\n\r\nRegenerative Orthopedics is an effective alternative to hip replacement surgery. Researchers in the <em>Journal of Prolotherapy</em> demonstrated that Prolotherapy helps decrease pain and improve the quality of life of patients with chronic hip pain. Ninety-five percent of patients stated their pain was better after Prolotherapy. (4)\r\n\r\nAnother medical journal reported, “According to our study, Prolotherapy is superior to exercise. Prolotherapy could provide significant improvement for clinical outcomes in developmental dysplasia of the hip and might delay surgery.\" (5)\r\n<h4><em>Studies Demonstrating the Effectiveness of the Regenerative Orthopedic Treatment of PRP and Stem Cells:</em></h4>\r\nIn many cases, Prolotherapy alone is sufficient to repair the hip. But PRP and Stem Cells may be needed in cases of more advanced degeneration. At OrthoRegen®, we use the Gold Standard in Stem Cell Repair, which includes Prolotherapy, PRP, adipose stem cells, and bone marrow stem cells. This combination is highly effective for advanced cases of hip arthritis. The stem cells and PRP address the cartilage problem, and Prolotherapy addresses ligament repair, stabilizing the hip and restoring joint stability. The repair is a comprehensive treatment of the entire hip.\r\n\r\nIn the <em>American Journal of Sports Medicine, researchers say,</em> “Results indicated that intra-articular PRP injections offer a significant clinical improvement in patients with hip osteoarthritis without relevant side effects.”(6)\r\n\r\nIn the journal <em>Clinical Medicine Insights: Arthritis and Musculoskeletal Disorders</em>, researchers show that stem cells regenerate tissue damage within the osteoarthritic joint and, when combined with Prolotherapy injections, were able to restore hip stability. (7)\r\n\r\nHip surgeries are going through the roof, with close to 10 million hip surgeries performed annually. If you prefer to avoid surgery, please call us to see if you are a good candidate for Regenerative Orthopedics.\r\n\r\n&nbsp;\r\n<h3><strong>References</strong></h3>\r\n<ul>\r\n 	<li>Xing D, Li R, Li JJ, Tao K, Lin J, Yan T, Zhou D. Catastrophic Periprosthetic Osteolysis in Total Hip Arthroplasty at 20 Years: A Case Report and Literature Review. Orthopaedic Surgery. 2022 Aug.</li>\r\n 	<li>van Arkel RJ, Amis AA, Jeffers JR. The envelope of passive motion allowed by the capsular ligaments of the hip. Journal of biomechanics. 2015 Nov 5;48(14):3803-9</li>\r\n 	<li>Hevesi M, Jacob G, Shimomura K, Ando W, Nakamura N, Krych AJ. Current hip cartilage regeneration/repair modalities: a scoping review of biologics and surgery. International Orthopaedics. 2020 Sep 10:1-5.</li>\r\n 	<li>Hauser RA, Hauser MA. A Retrospective Study on Hackett-Hemwall Dextrose Prolotherapy for Chronic Hip Pain at an Outpatient Charity Clinic in Rural Illinois. Journal of Prolotherapy. 2009;2:76-88.</li>\r\n 	<li>Gül D, Orsçelik A, Akpancar S. Treatment of Osteoarthritis Secondary to Developmental Dysplasia of the Hip with Prolotherapy Injection versus a Supervised Progressive Exercise Control. <em>Med Sci Monit</em>. 2020;26:e919166. Published 2020 Feb 11. doi:10.12659/MSM.919166</li>\r\n 	<li>Dallari D, Stagni C, Rani N, Sabbioni G, Pelotti P, Torricelli P, Tschon M, Giavaresi G.Ultrasound-Guided Injection of Platelet-Rich Plasma and Hyaluronic Acid, Separately and in Combination, for Hip Osteoarthritis: A Randomized Controlled Study. <em>Am J Sports Med</em>. 2016 Mar;44(3):664-71. doi: 10.1177/0363546515620383. Epub 2016 Jan 21.</li>\r\n</ul>\r\nHauser RA, Orlofsky A. Regenerative injection therapy with whole bone marrow aspirate for degenerative joint disease: a case series. <em>Clin Med Insights Arthritis Musculoskelet Disord</em>. 2013 Sep 4;6:65-72. doi: 10.4137/CMAMD.S10951. eCollection 2013.','Hip Replacement Alternative','','inherit','closed','closed','','5860-revision-v1','','','2023-08-30 20:11:03','2023-08-30 20:11:03','',5860,'https://www.drfields.com/?p=5870',0,'revision','',0),(5871,9,'2023-08-30 20:18:32','2023-08-30 20:18:32','','iwp_log_64efa418b0e63','','publish','closed','closed','','iwp_log_64efa418b0e63','','','2023-08-30 20:18:32','2023-08-30 20:18:32','',0,'https://www.drfields.com/iwp_log/iwp_log_64efa418b0e63/',0,'iwp_log','',0),(5872,9,'2023-08-30 20:18:32','2023-08-30 20:18:32','','iwp_log_64efa418e6957','','publish','closed','closed','','iwp_log_64efa418e6957','','','2023-08-30 20:18:32','2023-08-30 20:18:32','',0,'https://www.drfields.com/iwp_log/iwp_log_64efa418e6957/',0,'iwp_log','',0),(5873,9,'2023-08-30 20:18:33','2023-08-30 20:18:33','','iwp_log_64efa41959212','','publish','closed','closed','','iwp_log_64efa41959212','','','2023-08-30 20:18:33','2023-08-30 20:18:33','',0,'https://www.drfields.com/iwp_log/iwp_log_64efa41959212/',0,'iwp_log','',0),(5874,9,'2023-08-30 20:18:33','2023-08-30 20:18:33','','iwp_log_64efa419bfee3','','publish','closed','closed','','iwp_log_64efa419bfee3','','','2023-08-30 20:18:33','2023-08-30 20:18:33','',0,'https://www.drfields.com/iwp_log/iwp_log_64efa419bfee3/',0,'iwp_log','',0),(5875,9,'2023-08-30 20:18:34','2023-08-30 20:18:34','','iwp_log_64efa41a33ace','','publish','closed','closed','','iwp_log_64efa41a33ace','','','2023-08-30 20:18:34','2023-08-30 20:18:34','',0,'https://www.drfields.com/iwp_log/iwp_log_64efa41a33ace/',0,'iwp_log','',0),(5877,8,'2023-09-01 09:02:38','2023-09-01 09:02:38','<h2><img class=\"alignright wp-image-5880\" src=\"https://www.drfields.com/wp-content/uploads/2023/09/osteoarthritis-knee-treatment--500x419.png\" alt=\"Osteoarthritis Knee Treatment\" width=\"300\" height=\"251\" />Osteoarthritis Knee Treatment</h2>\r\nYour knee hurts. But you don\'t want surgery. Now what? We see many patients trying to avoid surgery. Some come because they injured their knee and are looking for repair to get back to their game. But many have arthritis pain. Their knee grinds and cracks and hurts. Plus, the arthritis symptoms limit their activity level, and they are looking for an osteoarthritis knee treatment to increase their function again.\r\n\r\nMost have already tried pain medications and therapies, but the symptoms continue. Their orthopedic surgeon has likely recommended surgery, but is surgery the only option?\r\n\r\nSome have even had surgery already, but their pain continues. So what\'s the solution? We recommend Regenerative Orthopedics!\r\n<h3><strong>What Can Regenerative Orthopedics Offer for Knee Osteoarthritis?</strong></h3>\r\nRegenerative Orthopedic treatments, like Prolotherapy, have been found to improve osteoarthritis pain. The journal <em>Orthopedic Reviews</em> says, “Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy...the results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment.\" (1)\r\n\r\nThat\'s excellent news. But it\'s only one study!\r\n<h3><strong>Is There More Research on the Effectiveness of Prolotherapy?</strong></h3>\r\nIn 2022, the journal <em>Clinical Rehabilitation</em> looked at the effectiveness of Prolotherapy for knee osteoarthritis patients. The results? Prolotherapy had favorable results, yielding a greater reduction in pain scores over placebo and achieving comparable pain and function outcomes to other invasive therapies. (2)\r\n\r\nWe\'ve mentioned in previous articles that Prolotherapy is not a new treatment. It is gaining popularity lately, along with other regenerative therapies, but it has been around for quite some time. Back in the 1950s, Dr. George Hackett demonstrated Prolotherapy\'s effectiveness in treating ligament damage. His research showed that ligament damage caused joint instability, which led to the eventual osteoarthritis in a joint.\r\n\r\nOne of the reasons Prolotherapy is so effective for knee arthritis is because it addresses the entire knee and the instability from ligament damage. The instability that leads to arthritis is the same instability that is addressed with Prolotherapy. Often, it\'s not just one ligament that is damaged. If the force during the original injury was significant enough to damage one ligament, other ligaments, and joint structures were likely affected. And these all need to be treated.\r\n\r\nKnee osteoarthritis is a progressive disease. It did not just happen overnight! The weak and injured ligaments cause the joint to move abnormally. That abnormal movement causes forces on the knee joint to change, leading to more and more joint damage. Eventually, degeneration in the joint destroys the cartilage...and arthritis becomes apparent.\r\n\r\nAgain, the good news is that Prolotherapy addresses the entire knee joint, repairing all the involved soft tissue structures.\r\n<h3><strong>Prolotherapy Is An Effective Osteoarthritis Knee Treatment</strong></h3>\r\nThe journal <em>Therapeutic Advances in Musculoskeletal Disease</em> says, \"Prolotherapy has been reported as a useful method in treating chronic musculoskeletal and joint diseases. It is proposed that Prolotherapy causes mild inflammation and cell stress in the weakened ligament or tendon area, releases cytokines and growth factors, and induces a new healing cascade in that area, which leads to the activation of fibroblasts, generation of collagen precursors and strengthening of the connective tissue.” (3)\r\n\r\nAnother study in the <em>Annals of Family Medicine</em> reports these findings about Prolotherapy for knee osteoarthritis: “Intra-articular dextrose Prolotherapy injections reduced pain, improved function and quality of life in patients with knee osteoarthritis compared with blinded saline injections. The procedure is straightforward and safe; the adherence and satisfaction were high.” (4)\r\n<h3><strong>And evidence even suggests that Prolotherapy can help with cartilage growth.</strong></h3>\r\nThe Researchers from the University of Southern California say this, \"(Prolotherapy) solution appears to be associated with the increased metabolic activity of chondrocytes (cells that make cartilage), increased collagen deposition, and increased chondrocyte proliferation. These results support clinical Prolotherapy research suggesting that intra-articular hypertonic dextrose joint injections reduce knee pain.”\r\n\r\nAll of this research suggests that Prolotherapy is a viable treatment for knee osteoarthritis.\r\n\r\nWe recommend comprehensively treating the knee with regenerative treatment directed at all of the involved structures. Remember that osteoarthritis does not happen suddenly but is a degenerative process that occurs over time. To achieve optimal results, all of the involved structures need to be treated. Prolotherapy is a safe and effective treatment option that addresses soft tissue damage and degeneration resulting in the repair of the osteoarthritic knee.\r\n\r\nKnee osteoarthritis is one of the most common complaints that we see at OrthoRegen<sup>®</sup>. Regenerative Orthopedics are excellent osteoarthritis knee treatments because they address the root cause of what started the osteoarthritic progression...structural damage to the soft tissue of the knee that leads to degenerative changes in the knee. Stop the degenerative process with regenerative injection treatments such as Prolotherapy, PRP, and Stem Cells.\r\n<h3><strong>References</strong></h3>\r\n<ul>\r\n 	<li>Zhao AT, Caballero CJ, Nguyen LT, Vienne HC, Lee C, Kaye AD. A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee. Orthopedic Reviews. 2022 May 31;14(4):33921.</li>\r\n 	<li>Chen YW, Lin YN, Chen HC, Liou TH, Liao CD, Huang SW. Effectiveness, Compliance, and Safety of Dextrose Prolotherapy for Knee Osteoarthritis: A Meta-Analysis and Metaregression of Randomized Controlled Trials. Clinical Rehabilitation. 2022 Jun;36(6):740-52.</li>\r\n 	<li>Eslamian F, Amouzandeh B. Therapeutic effects of prolotherapy with intra-articular dextrose injection in patients with moderate knee osteoarthritis: a single-arm study with 6 months follow-up. Ther Adv Musculoskelet Dis. 2015 Apr;7(2):35-44.</li>\r\n 	<li>Shan Sit RW, Keung Wu RW, Rabago D, et al. Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial. <em>Ann Fam Med</em>. 2020;18(3):235‐242. doi:10.1370/afm.2520</li>\r\n</ul>','Osteoarthritis Knee Treatment','','publish','closed','open','','osteoarthritis-knee-treatment','','','2023-09-15 23:59:12','2023-09-15 23:59:12','',0,'https://www.drfields.com/?p=5877',0,'post','',0),(5880,8,'2023-09-04 07:08:05','2023-09-04 07:08:05','Osteoarthritis Knee Treatment','Osteoarthritis Knee Treatment','Osteoarthritis Knee Treatment','inherit','closed','closed','','osteoarthritis-knee-treatment','','','2023-09-04 07:08:05','2023-09-04 07:08:05','',5877,'https://www.drfields.com/wp-content/uploads/2023/09/osteoarthritis-knee-treatment-.png',0,'attachment','image/png',0),(5881,8,'2023-09-04 07:09:02','2023-09-04 07:09:02','<img class=\"alignright wp-image-5880\" src=\"https://www.drfields.com/wp-content/uploads/2023/09/osteoarthritis-knee-treatment--500x419.png\" alt=\"Osteoarthritis Knee Treatment\" width=\"300\" height=\"251\" />\r\n\r\nYour knee hurts. But you don\'t want surgery. Now what?\r\n\r\nWe see many patients trying to avoid surgery. Some come because they injured their knee and are looking for repair to get back to their game. But many have arthritis pain. Their knee grinds and cracks and hurts. Plus, the arthritis symptoms are limiting their activity level, and they are looking for an osteoarthritis knee treatment that will increase their function again.\r\n\r\nThe majority have already tried pain medications and therapies, but the symptoms continue. Their orthopedic surgeon has likely recommended surgery, but is surgery the only option?\r\n\r\nSome have even had surgery already, but their pain continues. So what\'s the solution? We recommend Regenerative Orthopedics!\r\n\r\n<strong>What Can Regenerative Orthopedics Offer for Knee Osteoarthritis?</strong>\r\n\r\nThe Regenerative Orthopedic treatment Prolotherapy has been found to improve osteoarthritis pain. The journal <em>Orthopedic Reviews</em> says “Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy...the results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment.\" (1)\r\n\r\nThat\'s great news. But it\'s only one study!\r\n\r\n<strong>Is There More Research on the Effectiveness of Prolotherapy?</strong>\r\n\r\nIn 2022, the journal <em>Clinical Rehabilitation</em> took a look at the effectiveness of Prolotherapy for knee osteoarthritis patients. The results? Prolotherapy had favorable results and yielded greater reduction in pain scores over placebo, and achieved comparable pain and function outcomes as other invasive therapies. (2)\r\n\r\nWe\'ve mentioned in previous articles that Prolotherapy is not a new treatment. It is gaining popularity lately, along with other regenerative treatments, but it has been around for quite some time. Back in the 1950s, Dr. George Hackett demonstrated the effectiveness of Prolotherapy to treat ligament damage. His research showed that ligament damage caused joint instability, which lead to the eventual osteoarthritis in a joint.\r\n\r\nOne of the reasons Prolotherapy is so effective for knee arthritis is because it addresses the entire knee and the instability from ligament damage. The instability that leads to arthritis is the same instability that is addressed with Prolotherapy. Oftentimes, it\'s not just one ligament that is damaged. If the force during the original injury was great enough to damage one ligament, it is very likely that other ligaments, as well as other joint structures, were affected. And these all need to be treated.\r\n\r\nKnee osteoarthritis is a progressive disease. It did not just happen overnight! The weak and injured ligaments, cause the joint to move abnormally. That abnormal movement causes forces on the knee joint to change, leading to more and more joint damage. Eventually, degeneration in the joint destroys the cartilage...and arthritis becomes apparent.\r\n\r\nAgain, the good news here is that Prolotherapy addresses the entire knee joint, repairing all of the involved soft tissue structures.\r\n\r\n<strong>Prolotherapy Is An Effective Osteoarthritis Knee Treatment</strong>\r\n\r\nThe journal, <em>Therapeutic Advances in Musculoskeletal Disease,</em> says that “Prolotherapy has been reported as a useful method in the treatment of chronic musculoskeletal and joint diseases. It is proposed that Prolotherapy causes mild inflammation and cell stress in the weakened ligament or tendon area, releases cytokines and growth factors and induces a new healing cascade in that area, which leads to activation of fibroblasts, generation of collagen precursors, and strengthening of the connective tissue.” (3)\r\n\r\nAnother study in the <em>Annals of Family Medicine</em> reports these findings about Prolotherapy for knee osteoarthritis: “Intra-articular dextrose Prolotherapy injections reduced pain, improved function and quality of life in patients with knee osteoarthritis compared with blinded saline injections. The procedure is straightforward and safe; the adherence and satisfaction were high.” (4)\r\n\r\n<strong>And evidence even suggests that Prolotherapy can help with cartilage growth.</strong>\r\n\r\nThe Researchers from the University of Southern California say this, \"(Prolotherapy) solution appears to be associated with the increased metabolic activity of chondrocytes (cells that make cartilage), increased collagen deposition, and increased chondrocyte proliferation. These results support clinical Prolotherapy research suggesting that intra-articular hypertonic dextrose joint injections reduce knee pain.”\r\n\r\nAll of this research definitely suggests that Prolotherapy is a viable treatment for knee osteoarthritis.\r\n\r\nWe suggest treating the knee in a comprehensive fashion, directed at all of the involved structures. Keep in mind that osteoarthritis did not happen suddenly, but is a degenerative process that occurs over time. In order to achieve optimal results, all of the involved structures need to be treated. Prolotherapy is a safe and effective treatment option that addresses soft tissue damage and degeneration and results in repair of the osteoarthritic knee.\r\n\r\nKnee osteoarthritis is one of the most common complaints that we see at OrthoRegen. Regenerative Orthopedics are excellent osteoarthritis knee treatments because they address the root cause of what started the osteoarthritic progression...structural damage to the soft tissue of the knee that leads to degenerative changes in the knee. Stop the degenerative process with regenerative injection treatments such as Prolotherapy, PRP, and Stem Cells.\r\n\r\n&nbsp;\r\n\r\n<strong>References</strong>\r\n<ul>\r\n 	<li>Zhao AT, Caballero CJ, Nguyen LT, Vienne HC, Lee C, Kaye AD. A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee. Orthopedic Reviews. 2022 May 31;14(4):33921.</li>\r\n 	<li>Chen YW, Lin YN, Chen HC, Liou TH, Liao CD, Huang SW. Effectiveness, Compliance, and Safety of Dextrose Prolotherapy for Knee Osteoarthritis: A Meta-Analysis and Metaregression of Randomized Controlled Trials. Clinical Rehabilitation. 2022 Jun;36(6):740-52.</li>\r\n 	<li>Eslamian F, Amouzandeh B. Therapeutic effects of prolotherapy with intra-articular dextrose injection in patients with moderate knee osteoarthritis: a single-arm study with 6 months follow-up. Ther Adv Musculoskelet Dis. 2015 Apr;7(2):35-44.</li>\r\n 	<li>Shan Sit RW, Keung Wu RW, Rabago D, et al. Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial. <em>Ann Fam Med</em>. 2020;18(3):235‐242. doi:10.1370/afm.2520</li>\r\n</ul>','Osteoarthritis Knee Treatment','','inherit','closed','closed','','5877-revision-v1','','','2023-09-04 07:09:02','2023-09-04 07:09:02','',5877,'https://www.drfields.com/?p=5881',0,'revision','',0),(5883,9,'2023-09-12 21:41:09','2023-09-12 21:41:09','','iwp_log_6500daf5b55f2','','publish','closed','closed','','iwp_log_6500daf5b55f2','','','2023-09-12 21:41:09','2023-09-12 21:41:09','',0,'https://www.drfields.com/iwp_log/iwp_log_6500daf5b55f2/',0,'iwp_log','',0),(5884,9,'2023-09-12 21:58:22','2023-09-12 21:58:22','<h2><img class=\"alignright wp-image-5880\" src=\"https://www.drfields.com/wp-content/uploads/2023/09/osteoarthritis-knee-treatment--500x419.png\" alt=\"Osteoarthritis Knee Treatment\" width=\"300\" height=\"251\" />Osteoarthritis Knee Treatment</h2>\nYour knee hurts. But you don\'t want surgery. Now what? We see many patients trying to avoid surgery. Some come because they injured their knee and are looking for repair to get back to their game. But many have arthritis pain. Their knee grinds and cracks and hurts. Plus, the arthritis symptoms limit their activity level, and they are looking for an osteoarthritis knee treatment to increase their function again.\n\nMost have already tried pain medications and therapies, but the symptoms continue. Their orthopedic surgeon has likely recommended surgery, but is surgery the only option?\n\nSome have even had surgery already, but their pain continues. So what\'s the solution? We recommend Regenerative Orthopedics!\n<h3><strong>What Can Regenerative Orthopedics Offer for Knee Osteoarthritis?</strong></h3>\nRegenerative Orthopedic treatments, like Prolotherapy, have been found to improve osteoarthritis pain. The journal <em>Orthopedic Reviews</em> says, “Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy...the results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment.\" (1)\n\nThat\'s excellent news. But it\'s only one study!\n<h3><strong>Is There More Research on the Effectiveness of Prolotherapy?</strong></h3>\nIn 2022, the journal <em>Clinical Rehabilitation</em> looked at the effectiveness of Prolotherapy for knee osteoarthritis patients. The results? Prolotherapy had favorable results, yielding a greater reduction in pain scores over placebo and achieving comparable pain and function outcomes to other invasive therapies. (2)\n\nWe\'ve mentioned in previous articles that Prolotherapy is not a new treatment. It is gaining popularity lately, along with other regenerative therapies, but it has been around for quite some time. Back in the 1950s, Dr. George Hackett demonstrated Prolotherapy\'s effectiveness in treating ligament damage. His research showed that ligament damage caused joint instability, which led to the eventual osteoarthritis in a joint.\n\nOne of the reasons Prolotherapy is so effective for knee arthritis is because it addresses the entire knee and the instability from ligament damage. The instability that leads to arthritis is the same instability that is addressed with Prolotherapy. Often, it\'s not just one ligament that is damaged. If the force during the original injury was significant enough to damage one ligament, other ligaments, and joint structures were likely affected. And these all need to be treated.\n\nKnee osteoarthritis is a progressive disease. It did not just happen overnight! The weak and injured ligaments cause the joint to move abnormally. That abnormal movement causes forces on the knee joint to change, leading to more and more joint damage. Eventually, degeneration in the joint destroys the cartilage...and arthritis becomes apparent.\n\nAgain, the good news is that Prolotherapy addresses the entire knee joint, repairing all the involved soft tissue structures.\n<h3><strong>Prolotherapy Is An Effective Osteoarthritis Knee Treatment</strong></h3>\nThe journal <em>Therapeutic Advances in Musculoskeletal Disease</em> says, \"Prolotherapy has been reported as a useful method in treating chronic musculoskeletal and joint diseases. It is proposed that Prolotherapy causes mild inflammation and cell stress in the weakened ligament or tendon area, releases cytokines and growth factors, and induces a new healing cascade in that area, which leads to the activation of fibroblasts, generation of collagen precursors and strengthening of the connective tissue.” (3)\n\nAnother study in the <em>Annals of Family Medicine</em> reports these findings about Prolotherapy for knee osteoarthritis: “Intra-articular dextrose Prolotherapy injections reduced pain, improved function and quality of life in patients with knee osteoarthritis compared with blinded saline injections. The procedure is straightforward and safe; the adherence and satisfaction were high.” (4)\n<h3><strong>And evidence even suggests that Prolotherapy can help with cartilage growth.</strong></h3>\nThe Researchers from the University of Southern California say this, \"(Prolotherapy) solution appears to be associated with the increased metabolic activity of chondrocytes (cells that make cartilage), increased collagen deposition, and increased chondrocyte proliferation. These results support clinical Prolotherapy research suggesting that intra-articular hypertonic dextrose joint injections reduce knee pain.”\n\nAll of this research suggests that Prolotherapy is a viable treatment for knee osteoarthritis.\n\nWe recommend comprehensively treating the knee with regenerative treatment directed at all of the involved structures. Remember that osteoarthritis does not happen suddenly but is a degenerative process that occurs over time. To achieve optimal results, all of the involved structures need to be treated. Prolotherapy is a safe and effective treatment option that addresses soft tissue damage and degeneration   in repair of the osteoarthritic knee.\n\nKnee osteoarthritis is one of the most common complaints that we see at OrthoRegen<sup>®</sup>. Regenerative Orthopedics are excellent osteoarthritis knee treatments because they address the root cause of what started the osteoarthritic progression...structural damage to the soft tissue of the knee that leads to degenerative changes in the knee. Stop the degenerative process with regenerative injection treatments such as Prolotherapy, PRP, and Stem Cells.\n<h3><strong>References</strong></h3>\n<ul>\n 	<li>Zhao AT, Caballero CJ, Nguyen LT, Vienne HC, Lee C, Kaye AD. A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee. Orthopedic Reviews. 2022 May 31;14(4):33921.</li>\n 	<li>Chen YW, Lin YN, Chen HC, Liou TH, Liao CD, Huang SW. Effectiveness, Compliance, and Safety of Dextrose Prolotherapy for Knee Osteoarthritis: A Meta-Analysis and Metaregression of Randomized Controlled Trials. Clinical Rehabilitation. 2022 Jun;36(6):740-52.</li>\n 	<li>Eslamian F, Amouzandeh B. Therapeutic effects of prolotherapy with intra-articular dextrose injection in patients with moderate knee osteoarthritis: a single-arm study with 6 months follow-up. Ther Adv Musculoskelet Dis. 2015 Apr;7(2):35-44.</li>\n 	<li>Shan Sit RW, Keung Wu RW, Rabago D, et al. Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial. <em>Ann Fam Med</em>. 2020;18(3):235‐242. doi:10.1370/afm.2520</li>\n</ul>','Osteoarthritis Knee Treatment','','inherit','closed','closed','','5877-autosave-v1','','','2023-09-12 21:58:22','2023-09-12 21:58:22','',5877,'https://www.drfields.com/?p=5884',0,'revision','',0),(5885,9,'2023-09-12 21:46:13','2023-09-12 21:46:13','<h2><img class=\"alignright wp-image-5880\" src=\"https://www.drfields.com/wp-content/uploads/2023/09/osteoarthritis-knee-treatment--500x419.png\" alt=\"Osteoarthritis Knee Treatment\" width=\"300\" height=\"251\" />Osteoarthritis Knee Treatment</h2>\r\nYour knee hurts. But you don\'t want surgery. Now what?\r\n\r\nWe see many patients trying to avoid surgery. Some come because they injured their knee and are looking for repair to get back to their game. But many have arthritis pain. Their knee grinds and cracks and hurts. Plus, the arthritis symptoms are limiting their activity level, and they are looking for an osteoarthritis knee treatment that will increase their function again.\r\n\r\nThe majority have already tried pain medications and therapies, but the symptoms continue. Their orthopedic surgeon has likely recommended surgery, but is surgery the only option?\r\n\r\nSome have even had surgery already, but their pain continues. So what\'s the solution? We recommend Regenerative Orthopedics!\r\n<h3><strong>What Can Regenerative Orthopedics Offer for Knee Osteoarthritis?</strong></h3>\r\nThe Regenerative Orthopedic treatment Prolotherapy has been found to improve osteoarthritis pain. The journal <em>Orthopedic Reviews</em> says “Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy...the results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment.\" (1)\r\n\r\nThat\'s great news. But it\'s only one study!\r\n<h3><strong>Is There More Research on the Effectiveness of Prolotherapy?</strong></h3>\r\nIn 2022, the journal <em>Clinical Rehabilitation</em> took a look at the effectiveness of Prolotherapy for knee osteoarthritis patients. The results? Prolotherapy had favorable results and yielded greater reduction in pain scores over placebo, and achieved comparable pain and function outcomes as other invasive therapies. (2)\r\n\r\nWe\'ve mentioned in previous articles that Prolotherapy is not a new treatment. It is gaining popularity lately, along with other regenerative treatments, but it has been around for quite some time. Back in the 1950s, Dr. George Hackett demonstrated the effectiveness of Prolotherapy to treat ligament damage. His research showed that ligament damage caused joint instability, which lead to the eventual osteoarthritis in a joint.\r\n\r\nOne of the reasons Prolotherapy is so effective for knee arthritis is because it addresses the entire knee and the instability from ligament damage. The instability that leads to arthritis is the same instability that is addressed with Prolotherapy. Oftentimes, it\'s not just one ligament that is damaged. If the force during the original injury was great enough to damage one ligament, it is very likely that other ligaments, as well as other joint structures, were affected. And these all need to be treated.\r\n\r\nKnee osteoarthritis is a progressive disease. It did not just happen overnight! The weak and injured ligaments, cause the joint to move abnormally. That abnormal movement causes forces on the knee joint to change, leading to more and more joint damage. Eventually, degeneration in the joint destroys the cartilage...and arthritis becomes apparent.\r\n\r\nAgain, the good news here is that Prolotherapy addresses the entire knee joint, repairing all of the involved soft tissue structures.\r\n<h3><strong>Prolotherapy Is An Effective Osteoarthritis Knee Treatment</strong></h3>\r\nThe journal, <em>Therapeutic Advances in Musculoskeletal Disease,</em> says that “Prolotherapy has been reported as a useful method in the treatment of chronic musculoskeletal and joint diseases. It is proposed that Prolotherapy causes mild inflammation and cell stress in the weakened ligament or tendon area, releases cytokines and growth factors and induces a new healing cascade in that area, which leads to activation of fibroblasts, generation of collagen precursors, and strengthening of the connective tissue.” (3)\r\n\r\nAnother study in the <em>Annals of Family Medicine</em> reports these findings about Prolotherapy for knee osteoarthritis: “Intra-articular dextrose Prolotherapy injections reduced pain, improved function and quality of life in patients with knee osteoarthritis compared with blinded saline injections. The procedure is straightforward and safe; the adherence and satisfaction were high.” (4)\r\n<h3><strong>And evidence even suggests that Prolotherapy can help with cartilage growth.</strong></h3>\r\nThe Researchers from the University of Southern California say this, \"(Prolotherapy) solution appears to be associated with the increased metabolic activity of chondrocytes (cells that make cartilage), increased collagen deposition, and increased chondrocyte proliferation. These results support clinical Prolotherapy research suggesting that intra-articular hypertonic dextrose joint injections reduce knee pain.”\r\n\r\nAll of this research definitely suggests that Prolotherapy is a viable treatment for knee osteoarthritis.\r\n\r\nWe suggest treating the knee in a comprehensive fashion, directed at all of the involved structures. Keep in mind that osteoarthritis did not happen suddenly, but is a degenerative process that occurs over time. In order to achieve optimal results, all of the involved structures need to be treated. Prolotherapy is a safe and effective treatment option that addresses soft tissue damage and degeneration and results in repair of the osteoarthritic knee.\r\n\r\nKnee osteoarthritis is one of the most common complaints that we see at OrthoRegen<sup>®</sup>. Regenerative Orthopedics are excellent osteoarthritis knee treatments because they address the root cause of what started the osteoarthritic progression...structural damage to the soft tissue of the knee that leads to degenerative changes in the knee. Stop the degenerative process with regenerative injection treatments such as Prolotherapy, PRP, and Stem Cells.\r\n<h3><strong>References</strong></h3>\r\n<ul>\r\n 	<li>Zhao AT, Caballero CJ, Nguyen LT, Vienne HC, Lee C, Kaye AD. A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee. Orthopedic Reviews. 2022 May 31;14(4):33921.</li>\r\n 	<li>Chen YW, Lin YN, Chen HC, Liou TH, Liao CD, Huang SW. Effectiveness, Compliance, and Safety of Dextrose Prolotherapy for Knee Osteoarthritis: A Meta-Analysis and Metaregression of Randomized Controlled Trials. Clinical Rehabilitation. 2022 Jun;36(6):740-52.</li>\r\n 	<li>Eslamian F, Amouzandeh B. Therapeutic effects of prolotherapy with intra-articular dextrose injection in patients with moderate knee osteoarthritis: a single-arm study with 6 months follow-up. Ther Adv Musculoskelet Dis. 2015 Apr;7(2):35-44.</li>\r\n 	<li>Shan Sit RW, Keung Wu RW, Rabago D, et al. Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial. <em>Ann Fam Med</em>. 2020;18(3):235‐242. doi:10.1370/afm.2520</li>\r\n</ul>','Osteoarthritis Knee Treatment','','inherit','closed','closed','','5877-revision-v1','','','2023-09-12 21:46:13','2023-09-12 21:46:13','',5877,'https://www.drfields.com/?p=5885',0,'revision','',0),(5886,9,'2023-09-12 21:47:20','2023-09-12 21:47:20','<h2><img class=\"alignright wp-image-5880\" src=\"https://www.drfields.com/wp-content/uploads/2023/09/osteoarthritis-knee-treatment--500x419.png\" alt=\"Osteoarthritis Knee Treatment\" width=\"300\" height=\"251\" />Osteoarthritis Knee Treatment</h2>\r\nYour knee hurts. But you don\'t want surgery. Now what? We see many patients trying to avoid surgery. Some come because they injured their knee and are looking for repair to get back to their game. But many have arthritis pain. Their knee grinds and cracks and hurts. Plus, the arthritis symptoms are limiting their activity level, and they are looking for an osteoarthritis knee treatment that will increase their function again.\r\n\r\nThe majority have already tried pain medications and therapies, but the symptoms continue. Their orthopedic surgeon has likely recommended surgery, but is surgery the only option?\r\n\r\nSome have even had surgery already, but their pain continues. So what\'s the solution? We recommend Regenerative Orthopedics!\r\n<h3><strong>What Can Regenerative Orthopedics Offer for Knee Osteoarthritis?</strong></h3>\r\nThe Regenerative Orthopedic treatment Prolotherapy has been found to improve osteoarthritis pain. The journal <em>Orthopedic Reviews</em> says “Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy...the results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment.\" (1)\r\n\r\nThat\'s great news. But it\'s only one study!\r\n<h3><strong>Is There More Research on the Effectiveness of Prolotherapy?</strong></h3>\r\nIn 2022, the journal <em>Clinical Rehabilitation</em> took a look at the effectiveness of Prolotherapy for knee osteoarthritis patients. The results? Prolotherapy had favorable results and yielded greater reduction in pain scores over placebo, and achieved comparable pain and function outcomes as other invasive therapies. (2)\r\n\r\nWe\'ve mentioned in previous articles that Prolotherapy is not a new treatment. It is gaining popularity lately, along with other regenerative treatments, but it has been around for quite some time. Back in the 1950s, Dr. George Hackett demonstrated the effectiveness of Prolotherapy to treat ligament damage. His research showed that ligament damage caused joint instability, which lead to the eventual osteoarthritis in a joint.\r\n\r\nOne of the reasons Prolotherapy is so effective for knee arthritis is because it addresses the entire knee and the instability from ligament damage. The instability that leads to arthritis is the same instability that is addressed with Prolotherapy. Oftentimes, it\'s not just one ligament that is damaged. If the force during the original injury was great enough to damage one ligament, it is very likely that other ligaments, as well as other joint structures, were affected. And these all need to be treated.\r\n\r\nKnee osteoarthritis is a progressive disease. It did not just happen overnight! The weak and injured ligaments, cause the joint to move abnormally. That abnormal movement causes forces on the knee joint to change, leading to more and more joint damage. Eventually, degeneration in the joint destroys the cartilage...and arthritis becomes apparent.\r\n\r\nAgain, the good news here is that Prolotherapy addresses the entire knee joint, repairing all of the involved soft tissue structures.\r\n<h3><strong>Prolotherapy Is An Effective Osteoarthritis Knee Treatment</strong></h3>\r\nThe journal, <em>Therapeutic Advances in Musculoskeletal Disease,</em> says that “Prolotherapy has been reported as a useful method in the treatment of chronic musculoskeletal and joint diseases. It is proposed that Prolotherapy causes mild inflammation and cell stress in the weakened ligament or tendon area, releases cytokines and growth factors and induces a new healing cascade in that area, which leads to activation of fibroblasts, generation of collagen precursors, and strengthening of the connective tissue.” (3)\r\n\r\nAnother study in the <em>Annals of Family Medicine</em> reports these findings about Prolotherapy for knee osteoarthritis: “Intra-articular dextrose Prolotherapy injections reduced pain, improved function and quality of life in patients with knee osteoarthritis compared with blinded saline injections. The procedure is straightforward and safe; the adherence and satisfaction were high.” (4)\r\n<h3><strong>And evidence even suggests that Prolotherapy can help with cartilage growth.</strong></h3>\r\nThe Researchers from the University of Southern California say this, \"(Prolotherapy) solution appears to be associated with the increased metabolic activity of chondrocytes (cells that make cartilage), increased collagen deposition, and increased chondrocyte proliferation. These results support clinical Prolotherapy research suggesting that intra-articular hypertonic dextrose joint injections reduce knee pain.”\r\n\r\nAll of this research definitely suggests that Prolotherapy is a viable treatment for knee osteoarthritis.\r\n\r\nWe suggest treating the knee in a comprehensive fashion, directed at all of the involved structures. Keep in mind that osteoarthritis did not happen suddenly, but is a degenerative process that occurs over time. In order to achieve optimal results, all of the involved structures need to be treated. Prolotherapy is a safe and effective treatment option that addresses soft tissue damage and degeneration and results in repair of the osteoarthritic knee.\r\n\r\nKnee osteoarthritis is one of the most common complaints that we see at OrthoRegen<sup>®</sup>. Regenerative Orthopedics are excellent osteoarthritis knee treatments because they address the root cause of what started the osteoarthritic progression...structural damage to the soft tissue of the knee that leads to degenerative changes in the knee. Stop the degenerative process with regenerative injection treatments such as Prolotherapy, PRP, and Stem Cells.\r\n<h3><strong>References</strong></h3>\r\n<ul>\r\n 	<li>Zhao AT, Caballero CJ, Nguyen LT, Vienne HC, Lee C, Kaye AD. A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee. Orthopedic Reviews. 2022 May 31;14(4):33921.</li>\r\n 	<li>Chen YW, Lin YN, Chen HC, Liou TH, Liao CD, Huang SW. Effectiveness, Compliance, and Safety of Dextrose Prolotherapy for Knee Osteoarthritis: A Meta-Analysis and Metaregression of Randomized Controlled Trials. Clinical Rehabilitation. 2022 Jun;36(6):740-52.</li>\r\n 	<li>Eslamian F, Amouzandeh B. Therapeutic effects of prolotherapy with intra-articular dextrose injection in patients with moderate knee osteoarthritis: a single-arm study with 6 months follow-up. Ther Adv Musculoskelet Dis. 2015 Apr;7(2):35-44.</li>\r\n 	<li>Shan Sit RW, Keung Wu RW, Rabago D, et al. Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial. <em>Ann Fam Med</em>. 2020;18(3):235‐242. doi:10.1370/afm.2520</li>\r\n</ul>','Osteoarthritis Knee Treatment','','inherit','closed','closed','','5877-revision-v1','','','2023-09-12 21:47:20','2023-09-12 21:47:20','',5877,'https://www.drfields.com/?p=5886',0,'revision','',0),(5887,9,'2023-09-12 21:58:52','2023-09-12 21:58:52','<h2><img class=\"alignright wp-image-5880\" src=\"https://www.drfields.com/wp-content/uploads/2023/09/osteoarthritis-knee-treatment--500x419.png\" alt=\"Osteoarthritis Knee Treatment\" width=\"300\" height=\"251\" />Osteoarthritis Knee Treatment</h2>\r\nYour knee hurts. But you don\'t want surgery. Now what? We see many patients trying to avoid surgery. Some come because they injured their knee and are looking for repair to get back to their game. But many have arthritis pain. Their knee grinds and cracks and hurts. Plus, the arthritis symptoms limit their activity level, and they are looking for an osteoarthritis knee treatment to increase their function again.\r\n\r\nMost have already tried pain medications and therapies, but the symptoms continue. Their orthopedic surgeon has likely recommended surgery, but is surgery the only option?\r\n\r\nSome have even had surgery already, but their pain continues. So what\'s the solution? We recommend Regenerative Orthopedics!\r\n<h3><strong>What Can Regenerative Orthopedics Offer for Knee Osteoarthritis?</strong></h3>\r\nRegenerative Orthopedic treatments, like Prolotherapy, have been found to improve osteoarthritis pain. The journal <em>Orthopedic Reviews</em> says, “Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy...the results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment.\" (1)\r\n\r\nThat\'s excellent news. But it\'s only one study!\r\n<h3><strong>Is There More Research on the Effectiveness of Prolotherapy?</strong></h3>\r\nIn 2022, the journal <em>Clinical Rehabilitation</em> looked at the effectiveness of Prolotherapy for knee osteoarthritis patients. The results? Prolotherapy had favorable results, yielding a greater reduction in pain scores over placebo and achieving comparable pain and function outcomes to other invasive therapies. (2)\r\n\r\nWe\'ve mentioned in previous articles that Prolotherapy is not a new treatment. It is gaining popularity lately, along with other regenerative therapies, but it has been around for quite some time. Back in the 1950s, Dr. George Hackett demonstrated Prolotherapy\'s effectiveness in treating ligament damage. His research showed that ligament damage caused joint instability, which led to the eventual osteoarthritis in a joint.\r\n\r\nOne of the reasons Prolotherapy is so effective for knee arthritis is because it addresses the entire knee and the instability from ligament damage. The instability that leads to arthritis is the same instability that is addressed with Prolotherapy. Often, it\'s not just one ligament that is damaged. If the force during the original injury was significant enough to damage one ligament, other ligaments, and joint structures were likely affected. And these all need to be treated.\r\n\r\nKnee osteoarthritis is a progressive disease. It did not just happen overnight! The weak and injured ligaments cause the joint to move abnormally. That abnormal movement causes forces on the knee joint to change, leading to more and more joint damage. Eventually, degeneration in the joint destroys the cartilage...and arthritis becomes apparent.\r\n\r\nAgain, the good news is that Prolotherapy addresses the entire knee joint, repairing all the involved soft tissue structures.\r\n<h3><strong>Prolotherapy Is An Effective Osteoarthritis Knee Treatment</strong></h3>\r\nThe journal <em>Therapeutic Advances in Musculoskeletal Disease</em> says, \"Prolotherapy has been reported as a useful method in treating chronic musculoskeletal and joint diseases. It is proposed that Prolotherapy causes mild inflammation and cell stress in the weakened ligament or tendon area, releases cytokines and growth factors, and induces a new healing cascade in that area, which leads to the activation of fibroblasts, generation of collagen precursors and strengthening of the connective tissue.” (3)\r\n\r\nAnother study in the <em>Annals of Family Medicine</em> reports these findings about Prolotherapy for knee osteoarthritis: “Intra-articular dextrose Prolotherapy injections reduced pain, improved function and quality of life in patients with knee osteoarthritis compared with blinded saline injections. The procedure is straightforward and safe; the adherence and satisfaction were high.” (4)\r\n<h3><strong>And evidence even suggests that Prolotherapy can help with cartilage growth.</strong></h3>\r\nThe Researchers from the University of Southern California say this, \"(Prolotherapy) solution appears to be associated with the increased metabolic activity of chondrocytes (cells that make cartilage), increased collagen deposition, and increased chondrocyte proliferation. These results support clinical Prolotherapy research suggesting that intra-articular hypertonic dextrose joint injections reduce knee pain.”\r\n\r\nAll of this research suggests that Prolotherapy is a viable treatment for knee osteoarthritis.\r\n\r\nWe recommend comprehensively treating the knee with regenerative treatment directed at all of the involved structures. Remember that osteoarthritis does not happen suddenly but is a degenerative process that occurs over time. To achieve optimal results, all of the involved structures need to be treated. Prolotherapy is a safe and effective treatment option that addresses soft tissue damage and degeneration resulting in the repair of the osteoarthritic knee.\r\n\r\nKnee osteoarthritis is one of the most common complaints that we see at OrthoRegen<sup>®</sup>. Regenerative Orthopedics are excellent osteoarthritis knee treatments because they address the root cause of what started the osteoarthritic progression...structural damage to the soft tissue of the knee that leads to degenerative changes in the knee. Stop the degenerative process with regenerative injection treatments such as Prolotherapy, PRP, and Stem Cells.\r\n<h3><strong>References</strong></h3>\r\n<ul>\r\n 	<li>Zhao AT, Caballero CJ, Nguyen LT, Vienne HC, Lee C, Kaye AD. A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee. Orthopedic Reviews. 2022 May 31;14(4):33921.</li>\r\n 	<li>Chen YW, Lin YN, Chen HC, Liou TH, Liao CD, Huang SW. Effectiveness, Compliance, and Safety of Dextrose Prolotherapy for Knee Osteoarthritis: A Meta-Analysis and Metaregression of Randomized Controlled Trials. Clinical Rehabilitation. 2022 Jun;36(6):740-52.</li>\r\n 	<li>Eslamian F, Amouzandeh B. Therapeutic effects of prolotherapy with intra-articular dextrose injection in patients with moderate knee osteoarthritis: a single-arm study with 6 months follow-up. Ther Adv Musculoskelet Dis. 2015 Apr;7(2):35-44.</li>\r\n 	<li>Shan Sit RW, Keung Wu RW, Rabago D, et al. Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial. <em>Ann Fam Med</em>. 2020;18(3):235‐242. doi:10.1370/afm.2520</li>\r\n</ul>','Osteoarthritis Knee Treatment','','inherit','closed','closed','','5877-revision-v1','','','2023-09-12 21:58:52','2023-09-12 21:58:52','',5877,'https://www.drfields.com/?p=5887',0,'revision','',0),(5888,8,'2023-09-15 23:52:12','0000-00-00 00:00:00','','Auto Draft','','auto-draft','','open','','','','','2023-09-15 23:52:12','0000-00-00 00:00:00','',0,'https://www.drfields.com/?p=5888',0,'post','',0),(5889,8,'2023-09-15 23:53:23','2023-09-15 23:53:23','<p class=\"p1\"><strong>Your knee hurts. But you don\'t want surgery. Now what?</strong></p>\r\n<p class=\"p1\">We see many patients trying to avoid surgery. Some come because they injured their knee and are looking for repair to get back to doing what they love. And many have arthritis pain. Their knee grinds and cracks and hurts. Plus, the arthritis symptoms are limiting their activity level, and they are looking for an osteoarthritis knee treatment that will increase their function again.</p>\r\n<p class=\"p1\">The majority have already tried pain medications and therapies, but the symptoms continue. Their orthopedic surgeon has likely recommended surgery. Some have even had surgery already, but their pain continues. So what\'s the solution? We recommend Regenerative Orthopedics!</p>\r\n\r\n<h2 class=\"p1\"><b>What Can Regenerative Orthopedics Offer for Knee Osteoarthritis?</b></h2>\r\n<p class=\"p1\">The Regenerative Orthopedic treatment Prolotherapy has been found to improve osteoarthritis pain. The journal <i>Orthopedic Reviews</i> says, “Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy...the results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment.\" (1)</p>\r\n<p class=\"p1\">That\'s great news. But do other studies show the same results from Prolotherapy?</p>\r\n\r\n<h2 class=\"p1\"><b>More Research on the Effectiveness of Prolotherapy</b></h2>\r\n<p class=\"p1\">In 2022, the journal <i>Clinical Rehabilitation</i> took a look at the effectiveness of Prolotherapy for knee osteoarthritis patients. The results? Prolotherapy had favorable results and yielded greater reduction in pain scores over placebo, and achieved comparable pain and function outcomes as invasive therapies. (2)</p>\r\n<p class=\"p1\">We\'ve mentioned in previous articles that Prolotherapy is not a new treatment. It\'s true that it is gaining popularity lately, along with other regenerative treatments, but it has been around for quite some time. In fact, back in the 1950s, Dr. George Hackett demonstrated the effectiveness of Prolotherapy to treat ligament damage. His research showed that ligament damage caused joint instability, and that joint instability lead to the eventual development of osteoarthritis in a joint.</p>\r\n<p class=\"p1\">One of the reasons Prolotherapy is so effective for knee arthritis is because it addresses the entire knee and the instability brought about by ligament damage. That means the instability that leads to arthritis is the same instability that is addressed with Prolotherapy. Oftentimes, it\'s not just one ligament that is damaged. When the force during the original injury is great enough to damage one ligament, it is very likely that other ligaments, and possibly other joint structures, were affected as well. And these all need to be treated.</p>\r\n\r\n<h2 class=\"p1\"><b>Knee Osteoarthritis Is Progressive</b></h2>\r\n<p class=\"p1\">Knee osteoarthritis is a progressive disease. It did not just happen overnight! The weak and injured ligaments, cause the joint to move abnormally (joint instability). That abnormal movement causes forces on the knee joint to change, leading to more and more joint damage. Eventually, degeneration in the joint destroys the cartilage...and arthritis becomes apparent.</p>\r\n<p class=\"p1\">Again, the good news here is that Prolotherapy addresses the entire knee joint, repairing all of the involved soft tissue structures.</p>\r\n\r\n<h2 class=\"p1\"><b>Prolotherapy Is An Effective Osteoarthritis Knee Treatment</b></h2>\r\n<p class=\"p4\">Research shows that Prolotherapy is effective for joint diseases, including knee osteoarthritis. The journal, <i>Therapeutic Advances in Musculoskeletal Disease </i>says“Prolotherapy has been reported as a useful method in the treatment of chronic musculoskeletal and joint diseases.” (3)</p>\r\n<p class=\"p4\">Another study in the <i>Annals of Family Medicine</i> reports, “Intra-articular dextrose Prolotherapy injections reduced pain, improved function and quality of life in patients with <b>knee osteoarthritis</b> compared with blinded saline injections. The procedure is straightforward and safe; the adherence and satisfaction were high.” (4)</p>\r\n\r\n<h2 class=\"p1\"><b>And evidence even suggests that Prolotherapy can help with cartilage growth.</b></h2>\r\n<p class=\"p1\">The Researchers from the University of Southern California say, \"(Prolotherapy) solution appears to be associated with the increased metabolic activity of chondrocytes (cells that make cartilage), increased collagen deposition, and increased chondrocyte proliferation. These results support clinical Prolotherapy research suggesting that intra-articular hypertonic dextrose joint injections reduce knee pain.”</p>\r\n<p class=\"p1\">All of this research definitely suggests that Prolotherapy is a viable treatment for knee osteoarthritis.</p>\r\n\r\n<h2 class=\"p1\"><b>Knee Osteoarthritis Treatment at OrthoRegen®</b></h2>\r\n<p class=\"p1\">We suggest treating the knee in a comprehensive fashion, directed at all of the involved structures. Keep in mind that osteoarthritis did not happen suddenly, but is a degenerative process that occurs over time. In order to achieve optimal results, all of the involved structures need to be treated. Prolotherapy is a safe and effective treatment option that addresses soft tissue damage and degeneration, resulting in repair of the osteoarthritic knee.</p>\r\n<p class=\"p4\">Knee osteoarthritis is one of the most common complaints that we see at OrthoRegen®. Regenerative Orthopedics, like Prolotherapy, are excellent osteoarthritis knee treatments because they address the root cause of what started the osteoarthritic progression, the structural damage to the soft tissue of the knee. Stop the degenerative process with regenerative injection treatments such as Prolotherapy, PRP, and Stem Cells.</p>\r\n\r\n<h3 class=\"p4\"><b>References</b></h3>\r\n<ol class=\"ol1\">\r\n 	<li class=\"li4\">Zhao AT, Caballero CJ, Nguyen LT, Vienne HC, Lee C, Kaye AD. A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee. Orthopedic Reviews. 2022 May 31;14(4):33921.</li>\r\n 	<li class=\"li4\">Chen YW, Lin YN, Chen HC, Liou TH, Liao CD, Huang SW. Effectiveness, Compliance, and Safety of Dextrose Prolotherapy for Knee Osteoarthritis: A Meta-Analysis and Metaregression of Randomized Controlled Trials. Clinical Rehabilitation. 2022 Jun;36(6):740-52.</li>\r\n 	<li class=\"li4\">Eslamian F, Amouzandeh B. Therapeutic effects of prolotherapy with intra-articular dextrose injection in patients with moderate knee osteoarthritis: a single-arm study with 6 months follow-up. Ther Adv Musculoskelet Dis. 2015 Apr;7(2):35-44.</li>\r\n 	<li class=\"li4\">Shan Sit RW, Keung Wu RW, Rabago D, et al. Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial. <i>Ann Fam Med</i>. 2020;18(3):235‐242. doi:10.1370/afm.2520</li>\r\n</ol>','Osteoarthritis Knee Treatment','','trash','closed','open','','osteoarthritis-knee-treatment-2__trashed','','','2023-09-15 23:53:47','2023-09-15 23:53:47','',0,'https://www.drfields.com/?p=5889',0,'post','',0),(5890,8,'2023-09-15 23:52:52','2023-09-15 23:52:52','<p class=\"p1\">Your knee hurts. But you don\'t want surgery. Now what?</p>\r\n<p class=\"p1\">We see many patients trying to avoid surgery. Some come because they injured their knee and are looking for repair to get back to doing what they love. And many have arthritis pain. Their knee grinds and cracks and hurts. Plus, the arthritis symptoms are limiting their activity level, and they are looking for an osteoarthritis knee treatment that will increase their function again.</p>\r\n<p class=\"p1\">The majority have already tried pain medications and therapies, but the symptoms continue. Their orthopedic surgeon has likely recommended surgery. Some have even had surgery already, but their pain continues. So what\'s the solution? We recommend Regenerative Orthopedics!</p>\r\n<p class=\"p1\"><b>What Can Regenerative Orthopedics Offer for Knee Osteoarthritis?</b></p>\r\n<p class=\"p1\">The Regenerative Orthopedic treatment Prolotherapy has been found to improve osteoarthritis pain. The journal <i>Orthopedic Reviews</i> says, “Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy...the results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment.\" (1)</p>\r\n<p class=\"p1\">That\'s great news. But do other studies show the same results from Prolotherapy?</p>\r\n<p class=\"p1\"><b>More Research on the Effectiveness of Prolotherapy</b></p>\r\n<p class=\"p1\">In 2022, the journal <i>Clinical Rehabilitation</i> took a look at the effectiveness of Prolotherapy for knee osteoarthritis patients. The results? Prolotherapy had favorable results and yielded greater reduction in pain scores over placebo, and achieved comparable pain and function outcomes as invasive therapies. (2)</p>\r\n<p class=\"p1\">We\'ve mentioned in previous articles that Prolotherapy is not a new treatment. It\'s true that it is gaining popularity lately, along with other regenerative treatments, but it has been around for quite some time. In fact, back in the 1950s, Dr. George Hackett demonstrated the effectiveness of Prolotherapy to treat ligament damage. His research showed that ligament damage caused joint instability, and that joint instability lead to the eventual development of osteoarthritis in a joint.</p>\r\n<p class=\"p1\">One of the reasons Prolotherapy is so effective for knee arthritis is because it addresses the entire knee and the instability brought about by ligament damage. That means the instability that leads to arthritis is the same instability that is addressed with Prolotherapy. Oftentimes, it\'s not just one ligament that is damaged. When the force during the original injury is great enough to damage one ligament, it is very likely that other ligaments, and possibly other joint structures, were affected as well. And these all need to be treated.</p>\r\n\r\n<h2 class=\"p1\"><b>Knee Osteoarthritis Is Progressive</b></h2>\r\n<p class=\"p1\">Knee osteoarthritis is a progressive disease. It did not just happen overnight! The weak and injured ligaments, cause the joint to move abnormally (joint instability). That abnormal movement causes forces on the knee joint to change, leading to more and more joint damage. Eventually, degeneration in the joint destroys the cartilage...and arthritis becomes apparent.</p>\r\n<p class=\"p1\">Again, the good news here is that Prolotherapy addresses the entire knee joint, repairing all of the involved soft tissue structures.</p>\r\n\r\n<h2 class=\"p1\"><b>Prolotherapy Is An Effective Osteoarthritis Knee Treatment</b></h2>\r\n<p class=\"p4\">Research shows that Prolotherapy is effective for joint diseases, including knee osteoarthritis. The journal, <i>Therapeutic Advances in Musculoskeletal Disease </i>says“Prolotherapy has been reported as a useful method in the treatment of chronic musculoskeletal and joint diseases.” (3)</p>\r\n<p class=\"p4\">Another study in the <i>Annals of Family Medicine</i> reports, “Intra-articular dextrose Prolotherapy injections reduced pain, improved function and quality of life in patients with <b>knee osteoarthritis</b> compared with blinded saline injections. The procedure is straightforward and safe; the adherence and satisfaction were high.” (4)</p>\r\n\r\n<h2 class=\"p1\"><b>And evidence even suggests that Prolotherapy can help with cartilage growth.</b></h2>\r\n<p class=\"p1\">The Researchers from the University of Southern California say, \"(Prolotherapy) solution appears to be associated with the increased metabolic activity of chondrocytes (cells that make cartilage), increased collagen deposition, and increased chondrocyte proliferation. These results support clinical Prolotherapy research suggesting that intra-articular hypertonic dextrose joint injections reduce knee pain.”</p>\r\n<p class=\"p1\">All of this research definitely suggests that Prolotherapy is a viable treatment for knee osteoarthritis.</p>\r\n\r\n<h2 class=\"p1\"><b>Knee Osteoarthritis Treatment at OrthoRegen®</b></h2>\r\n<p class=\"p1\">We suggest treating the knee in a comprehensive fashion, directed at all of the involved structures. Keep in mind that osteoarthritis did not happen suddenly, but is a degenerative process that occurs over time. In order to achieve optimal results, all of the involved structures need to be treated. Prolotherapy is a safe and effective treatment option that addresses soft tissue damage and degeneration, resulting in repair of the osteoarthritic knee.</p>\r\n<p class=\"p4\">Knee osteoarthritis is one of the most common complaints that we see at OrthoRegen®. Regenerative Orthopedics, like Prolotherapy, are excellent osteoarthritis knee treatments because they address the root cause of what started the osteoarthritic progression, the structural damage to the soft tissue of the knee. Stop the degenerative process with regenerative injection treatments such as Prolotherapy, PRP, and Stem Cells.</p>\r\n<p class=\"p4\"><b>References</b></p>\r\n\r\n<ol class=\"ol1\">\r\n 	<li class=\"li4\">Zhao AT, Caballero CJ, Nguyen LT, Vienne HC, Lee C, Kaye AD. A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee. Orthopedic Reviews. 2022 May 31;14(4):33921.</li>\r\n 	<li class=\"li4\">Chen YW, Lin YN, Chen HC, Liou TH, Liao CD, Huang SW. Effectiveness, Compliance, and Safety of Dextrose Prolotherapy for Knee Osteoarthritis: A Meta-Analysis and Metaregression of Randomized Controlled Trials. Clinical Rehabilitation. 2022 Jun;36(6):740-52.</li>\r\n 	<li class=\"li4\">Eslamian F, Amouzandeh B. Therapeutic effects of prolotherapy with intra-articular dextrose injection in patients with moderate knee osteoarthritis: a single-arm study with 6 months follow-up. Ther Adv Musculoskelet Dis. 2015 Apr;7(2):35-44.</li>\r\n 	<li class=\"li4\">Shan Sit RW, Keung Wu RW, Rabago D, et al. Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial. <i>Ann Fam Med</i>. 2020;18(3):235‐242. doi:10.1370/afm.2520</li>\r\n</ol>','Osteoarthritis Knee Treatment','','inherit','closed','closed','','5889-revision-v1','','','2023-09-15 23:52:52','2023-09-15 23:52:52','',5889,'https://www.drfields.com/?p=5890',0,'revision','',0),(5891,8,'2023-09-15 23:53:23','2023-09-15 23:53:23','<p class=\"p1\"><strong>Your knee hurts. But you don\'t want surgery. Now what?</strong></p>\r\n<p class=\"p1\">We see many patients trying to avoid surgery. Some come because they injured their knee and are looking for repair to get back to doing what they love. And many have arthritis pain. Their knee grinds and cracks and hurts. Plus, the arthritis symptoms are limiting their activity level, and they are looking for an osteoarthritis knee treatment that will increase their function again.</p>\r\n<p class=\"p1\">The majority have already tried pain medications and therapies, but the symptoms continue. Their orthopedic surgeon has likely recommended surgery. Some have even had surgery already, but their pain continues. So what\'s the solution? We recommend Regenerative Orthopedics!</p>\r\n\r\n<h2 class=\"p1\"><b>What Can Regenerative Orthopedics Offer for Knee Osteoarthritis?</b></h2>\r\n<p class=\"p1\">The Regenerative Orthopedic treatment Prolotherapy has been found to improve osteoarthritis pain. The journal <i>Orthopedic Reviews</i> says, “Numerous clinical trials show significant improvement of osteoarthritic pain of the knee without any significant side effects reported following the use of prolotherapy...the results consistently show significant improvement in radiographic outcomes, pain scores, and quality of life with prolotherapy treatment.\" (1)</p>\r\n<p class=\"p1\">That\'s great news. But do other studies show the same results from Prolotherapy?</p>\r\n\r\n<h2 class=\"p1\"><b>More Research on the Effectiveness of Prolotherapy</b></h2>\r\n<p class=\"p1\">In 2022, the journal <i>Clinical Rehabilitation</i> took a look at the effectiveness of Prolotherapy for knee osteoarthritis patients. The results? Prolotherapy had favorable results and yielded greater reduction in pain scores over placebo, and achieved comparable pain and function outcomes as invasive therapies. (2)</p>\r\n<p class=\"p1\">We\'ve mentioned in previous articles that Prolotherapy is not a new treatment. It\'s true that it is gaining popularity lately, along with other regenerative treatments, but it has been around for quite some time. In fact, back in the 1950s, Dr. George Hackett demonstrated the effectiveness of Prolotherapy to treat ligament damage. His research showed that ligament damage caused joint instability, and that joint instability lead to the eventual development of osteoarthritis in a joint.</p>\r\n<p class=\"p1\">One of the reasons Prolotherapy is so effective for knee arthritis is because it addresses the entire knee and the instability brought about by ligament damage. That means the instability that leads to arthritis is the same instability that is addressed with Prolotherapy. Oftentimes, it\'s not just one ligament that is damaged. When the force during the original injury is great enough to damage one ligament, it is very likely that other ligaments, and possibly other joint structures, were affected as well. And these all need to be treated.</p>\r\n\r\n<h2 class=\"p1\"><b>Knee Osteoarthritis Is Progressive</b></h2>\r\n<p class=\"p1\">Knee osteoarthritis is a progressive disease. It did not just happen overnight! The weak and injured ligaments, cause the joint to move abnormally (joint instability). That abnormal movement causes forces on the knee joint to change, leading to more and more joint damage. Eventually, degeneration in the joint destroys the cartilage...and arthritis becomes apparent.</p>\r\n<p class=\"p1\">Again, the good news here is that Prolotherapy addresses the entire knee joint, repairing all of the involved soft tissue structures.</p>\r\n\r\n<h2 class=\"p1\"><b>Prolotherapy Is An Effective Osteoarthritis Knee Treatment</b></h2>\r\n<p class=\"p4\">Research shows that Prolotherapy is effective for joint diseases, including knee osteoarthritis. The journal, <i>Therapeutic Advances in Musculoskeletal Disease </i>says“Prolotherapy has been reported as a useful method in the treatment of chronic musculoskeletal and joint diseases.” (3)</p>\r\n<p class=\"p4\">Another study in the <i>Annals of Family Medicine</i> reports, “Intra-articular dextrose Prolotherapy injections reduced pain, improved function and quality of life in patients with <b>knee osteoarthritis</b> compared with blinded saline injections. The procedure is straightforward and safe; the adherence and satisfaction were high.” (4)</p>\r\n\r\n<h2 class=\"p1\"><b>And evidence even suggests that Prolotherapy can help with cartilage growth.</b></h2>\r\n<p class=\"p1\">The Researchers from the University of Southern California say, \"(Prolotherapy) solution appears to be associated with the increased metabolic activity of chondrocytes (cells that make cartilage), increased collagen deposition, and increased chondrocyte proliferation. These results support clinical Prolotherapy research suggesting that intra-articular hypertonic dextrose joint injections reduce knee pain.”</p>\r\n<p class=\"p1\">All of this research definitely suggests that Prolotherapy is a viable treatment for knee osteoarthritis.</p>\r\n\r\n<h2 class=\"p1\"><b>Knee Osteoarthritis Treatment at OrthoRegen®</b></h2>\r\n<p class=\"p1\">We suggest treating the knee in a comprehensive fashion, directed at all of the involved structures. Keep in mind that osteoarthritis did not happen suddenly, but is a degenerative process that occurs over time. In order to achieve optimal results, all of the involved structures need to be treated. Prolotherapy is a safe and effective treatment option that addresses soft tissue damage and degeneration, resulting in repair of the osteoarthritic knee.</p>\r\n<p class=\"p4\">Knee osteoarthritis is one of the most common complaints that we see at OrthoRegen®. Regenerative Orthopedics, like Prolotherapy, are excellent osteoarthritis knee treatments because they address the root cause of what started the osteoarthritic progression, the structural damage to the soft tissue of the knee. Stop the degenerative process with regenerative injection treatments such as Prolotherapy, PRP, and Stem Cells.</p>\r\n\r\n<h3 class=\"p4\"><b>References</b></h3>\r\n<ol class=\"ol1\">\r\n 	<li class=\"li4\">Zhao AT, Caballero CJ, Nguyen LT, Vienne HC, Lee C, Kaye AD. A Comprehensive Update of Prolotherapy in the Management of Osteoarthritis of the Knee. Orthopedic Reviews. 2022 May 31;14(4):33921.</li>\r\n 	<li class=\"li4\">Chen YW, Lin YN, Chen HC, Liou TH, Liao CD, Huang SW. Effectiveness, Compliance, and Safety of Dextrose Prolotherapy for Knee Osteoarthritis: A Meta-Analysis and Metaregression of Randomized Controlled Trials. Clinical Rehabilitation. 2022 Jun;36(6):740-52.</li>\r\n 	<li class=\"li4\">Eslamian F, Amouzandeh B. Therapeutic effects of prolotherapy with intra-articular dextrose injection in patients with moderate knee osteoarthritis: a single-arm study with 6 months follow-up. Ther Adv Musculoskelet Dis. 2015 Apr;7(2):35-44.</li>\r\n 	<li class=\"li4\">Shan Sit RW, Keung Wu RW, Rabago D, et al. Efficacy of Intra-Articular Hypertonic Dextrose (Prolotherapy) for Knee Osteoarthritis: A Randomized Controlled Trial. <i>Ann Fam Med</i>. 2020;18(3):235‐242. doi:10.1370/afm.2520</li>\r\n</ol>','Osteoarthritis Knee Treatment','','inherit','closed','closed','','5889-revision-v1','','','2023-09-15 23:53:23','2023-09-15 23:53:23','',5889,'https://www.drfields.com/?p=5891',0,'revision','',0),(5892,8,'2023-09-16 03:51:09','2023-09-16 03:51:09','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li><a title=\"Osteoarthritis Knee Treatment\" href=\"/articles/osteoarthritis-knee-treatment/\">Osteoarthritis Knee Treatment</a></li>\r\n 	<li><a title=\"Hip Replacement Alternatives\" href=\"/articles/hip-replacement-alternatives/\">Hip Replacement Alternatives</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/acl-tear-repair/\">ACL TEAR Repair</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/foot-pain-treatment/\">Foot Pain Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/arthritis-neck-treatment/\">Arthritis Neck Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/back-pain-specialist/\">Back Pain Specialist</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/tennis-elbow-treatment/\">Tennis Elbow Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/hip-arthritis-treatment/\">Hip Arthritis Treatment</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-09-16 03:51:09','2023-09-16 03:51:09','',2109,'https://www.drfields.com/?p=5892',0,'revision','',0),(5893,8,'2023-09-16 03:51:28','2023-09-16 03:51:28','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n        <li><a title=\"Osteoarthritis Knee Treatment\" href=\"/articles/osteoarthritis-knee-treatment/\">Osteoarthritis Knee Treatment</a></li>\r\n 	<li><a title=\"Hip Replacement Alternatives\" href=\"/articles/hip-replacement-alternatives/\">Hip Replacement Alternatives</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/acl-tear-repair/\">ACL TEAR Repair</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/foot-pain-treatment/\">Foot Pain Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/arthritis-neck-treatment/\">Arthritis Neck Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/back-pain-specialist/\">Back Pain Specialist</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/tennis-elbow-treatment/\">Tennis Elbow Treatment</a></li>\r\n 	\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-09-16 03:51:28','2023-09-16 03:51:28','',2109,'https://www.drfields.com/?p=5893',0,'revision','',0),(5894,0,'2023-09-19 09:00:31','2023-09-19 09:00:31','','iwp_log_6509632f958e5','','publish','closed','closed','','iwp_log_6509632f958e5','','','2023-09-19 09:00:31','2023-09-19 09:00:31','',0,'https://www.drfields.com/iwp_log/iwp_log_6509632f958e5/',0,'iwp_log','',0),(5895,8,'2023-09-12 09:27:01','2023-09-12 09:27:01','<h2>Carpal Tunnel Syndrome Treatment</h2>\r\nDo you think you may have Carpal Tunnel Syndrome? Actual carpal tunnel syndromes are caused by median nerve compression. Symptoms of carpal tunnel can also be related to ligament injury. Both conditions can present with the same or similar symptoms but have different pathology. Joint instability may be the source of the problem in either case. Regenerative Orthopedics is a carpal tunnel syndrome treatment that stabilizes the joint and can effectively treat the problem.\r\n\r\nA physician who understands the referral patterns of ligaments should be sought to ascertain if the ligaments are the source of the problem. Regenerative Orthopedics works well to treat the pain, numbness, and tingling associated with carpal tunnel syndrome or when the symptoms of carpal tunnel syndrome are caused by ligament damage.\r\n\r\nSurgery is a standard go-to when it comes to Carpal Tunnel Syndrome. But is surgery inevitable? Although the standard practice of modern medicine is to inject steroids or to prescribe anti-inflammatory medications, the result of a diagnosis of carpal tunnel syndrome is usually surgery. Is surgery the answer?\r\n<h3><strong>Carpal Tunnel Release Surgery Has Varying Degrees of Success</strong></h3>\r\n<img class=\"wp-image-5896 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2023/09/Carpal-tunnel-500x419.png\" alt=\"Carpal Tunnel\" width=\"300\" height=\"251\" />\r\n\r\nCarpal Tunnel surgery has limited and widely varying degrees of success in treating carpal tunnel syndrome. <em>Muscle &amp; Nerve: Official Journal of the American Association of Electrodiagnostic Medicine</em> says, \"years after its widespread recognition, a significant minority of patients with carpal tunnel syndrome continue to experience poor outcomes from treatment.\" (1) With over 600,000 carpal tunnel release surgeries performed annually in the U.S., that would account for many failures.\r\n\r\nSome failures are due to misdiagnosis, where the median nerve is not causing the symptoms. In our office, we have seen patients with carpal tunnel-like symptoms who have symptoms caused by a ligament injury. To ascertain the source, a complete history and evaluation must be completed.\r\n<h3><strong>Injured Ligaments Can Cause Symptoms of Carpal Tunnel Syndrome</strong></h3>\r\nLigament laxity may be the source of the symptoms. A complete history and evaluation are needed before diagnosing carpal tunnel syndrome. Electrodiagnostic studies and imaging may be necessary. Additionally, a physician who understands the referral patterns of ligaments should evaluate the individual with this condition before surgery is considered. Because most physicians do not know the referral pain patterns of ligaments, they do not realize that the cervical vertebrae 4 and 5 and the annular ligament can refer pain to the thumb, index, and middle fingers. Ligament laxity can also cause numbness. Cervical and annular ligament laxity should always be evaluated before diagnosing carpal tunnel syndrome.\r\n\r\nRegenerative Orthopedics repairs injured and weakened ligaments. If ligaments are the source of the problem, then these treatments, which specifically address injured ligaments, can be sought.\r\n<h3><strong>Why Cut Unnecessarily for Carpal Tunnel Syndrome Treatment?</strong></h3>\r\nLigament injury can often cause a variety of symptoms. When carpal tunnel surgery is performed, ligaments are cut. Why chance additional injury if cutting is not necessary? A 2023 article in the <em>Journal of Biomechanical Engineering</em> says, “Carpal tunnel release surgery transects the transverse carpal ligament to expand the tunnel arch space, decompress the median nerve, and relieve the associated symptoms. However, the surgical procedure unavoidably disrupts essential anatomical, biomechanical, and physiological functions of the wrist, potentially causing reduced grip strength, pillar pain, carpal bone instability, scar tissue formation, and perineural fibrosis.”  (2) Looking into non-surgical alternatives may be the answer to avoid this problem.\r\n<h3><strong>Actual Carpal Tunnel Syndrome vs. Ligament Injury (Pseudo-Carpal Tunnel Syndrome)</strong></h3>\r\nActual carpal tunnel syndromes are caused by median nerve compression, and pseudo carpal tunnel syndromes are caused by ligament weakness. Joint instability can be at the core of both problems, as looseness and abnormal movement in the joint can cause compression on the nerve. Regenerative treatment of joint instability can be effective in treating these conditions. They both may present with the same or similar symptoms but have some different pathology.<span class=\"Apple-converted-space\"> </span>\r\n\r\nRegenerative Orthopedic injections to the injured areas result in the stabilization of the joint, strengthening, and repair of these soft tissue structures. The ligaments become tighter and stronger, eliminating the causative factor.\r\n\r\nThe medical journal<i> Pain Management</i> concluded that Dextrose Prolotherapy was effective for improving pain intensity, limitations in daily life, electrophysiologic parameters, and ultrasonographic outcomes. (3)\r\n\r\nThe journal Pharmaceuticals concluded, \"D5W and PRP injections are more effective than splinting and corticosteroid or saline injection for relieving the symptoms of CTS.\" (4)\r\n\r\nAdditionally, university researchers in Taiwan found that \"Platelet Rich Plasma (PRP) is a safe modality that relieves pain and improves disability in patients with carpal tunnel syndrome.\" (5)\r\n<h3><strong>OrthoRegen\'s Approach to Carpal Tunnel Syndrome Treatment</strong></h3>\r\nRegenerative Orthopedics works well to treat the pain, numbness, and tingling associated with carpal tunnel syndrome and when the symptoms of carpal tunnel syndrome are caused by ligament damage. If symptoms of carpal tunnel syndrome are found to be due to weak ligaments, then Regenerative Orthopedics would be recommended to strengthen the affected wrist ligaments.\r\n\r\nIf a person has significant tenderness over the lateral elbow (radius) and no evidence of muscle atrophy (weakness) or sensory deficit in the hand, they likely have ‘pseudo’ carpal tunnel syndrome. The annular ligament, which enables the hand to rotate, becomes lax through use in repetitive tasks or athletics, leading to chronic pain in the elbow and/or referred pain in the wrist. These ligaments have referral pain patterns that travel down to the wrist and fingers and may be confused with carpal tunnel syndrome. When examining a patient with these symptoms, it is essential to examine the elbow as well.\r\n\r\nProlotherapy treatments to the lateral collateral ligament (i.e., the radial collateral ligament) and annular ligament of the elbow will help to strengthen these tissues and stop the pain referral patterns down the arm and into the fingers. This problem commonly occurs in people who type frequently or use their arms and elbows at work, such as workers, carpenters, or hairdressers. While operations for carpal tunnel syndrome are sometimes needed, Regenerative Orthopedics can help eliminate the need for surgery and cure a patient’s chronic pain.\r\n\r\n&nbsp;\r\n<h3><strong>References</strong></h3>\r\n<ol>\r\n 	<li style=\"list-style-type: none;\">\r\n<ol>\r\n 	<li><i></i>Bland, Jeremy DP. \"Treatment of carpal tunnel syndrome.\" <i>Muscle &amp; Nerve: Official Journal of the American Association of Electrodiagnostic Medicine</i> 36.2 (2007): 167-171.</li>\r\n 	<li><i></i> Li ZM. Non-Surgical Carpal Arch Space Augmentation for Median Nerve Decompression. Journal of Biomechanical Engineering. 2023 Aug 1;145(8):080801.</li>\r\n 	<li><i></i> Babaei-Ghazani A, Moradnia S, Azar M, Forogh B, Ahadi T, Chaibakhsh S, Khodabandeh M, Eftekharsadat B. Ultrasound-guided 5% dextrose prolotherapy versus corticosteroid injection in carpal tunnel syndrome: a randomized, controlled clinical trial. Pain Manag. 2022 Jul 18. doi: 10.2217/pmt-2022-0018. Epub ahead of print. PMID: 35848821.</li>\r\n 	<li><i></i>Lin CP, Chang KV, Huang YK, Wu WT, Özçakar L. Regenerative Injections Including 5% Dextrose and Platelet-Rich Plasma for the Treatment of Carpal Tunnel Syndrome: A Systematic Review and Network Meta-Analysis. Pharmaceuticals. 2020 Mar;13(3):49.</li>\r\n 	<li>Wu YT, Ho TY, Chou YC, Ke MJ, Li TY, Huang GS, Chen LC. Six-month efficacy of platelet-rich plasma for carpal tunnel syndrome: A prospective randomized, single-blind controlled trial. Sci Rep. 2017 Dec;7(1):94.</li>\r\n</ol>\r\n</li>\r\n</ol>','Non-Surgical Carpal Tunnel Treatment','','publish','closed','open','','carpal-tunnel-syndrome-treatment','','','2023-09-20 19:34:23','2023-09-20 19:34:23','',0,'https://www.drfields.com/?p=5895',0,'post','',0),(5896,8,'2023-09-20 02:27:40','2023-09-20 02:27:40','Carpal Tunnel','Carpal Tunnel','Carpal Tunnel','inherit','closed','closed','','carpal-tunnel','','','2023-09-20 02:27:40','2023-09-20 02:27:40','',5895,'https://www.drfields.com/wp-content/uploads/2023/09/Carpal-tunnel.png',0,'attachment','image/png',0),(5897,8,'2023-09-20 02:28:31','2023-09-20 02:28:31','Surgery is a common go to when it comes to Carpal Tunnel Syndrome. But is surgery inevitable? Although the standard practice of modern medicine is to inject steroids or to prescribe anti-inflammatory medications, the end result with a diagnosis of carpal tunnel syndrome is usually surgery. Is surgery the answer?\r\n\r\n<strong>Carpal Tunnel Release Surgery Has Varying Degrees of Success</strong>\r\n\r\n[caption id=\"attachment_5896\" align=\"alignright\" width=\"300\"]<img class=\"wp-image-5896\" src=\"https://www.drfields.com/wp-content/uploads/2023/09/Carpal-tunnel-500x419.png\" alt=\"Carpal Tunnel\" width=\"300\" height=\"251\" /> Carpal Tunnel[/caption]\r\n\r\nCarpal Tunnel surgery has limited and widely varying degrees of success in treating carpal tunnel syndrome. The journal <em>Muscle &amp; Nerve: Official Journal of the American Association of Electrodiagnostic Medicine</em> says, \"years after its widespread recognition, a significant minority of patients with carpal tunnel syndrome continue to experience poor outcomes from treatment.\" With over 600,000 carpal tunnel release surgeries performed annually in the U.S., that would account for quite a lot of failures.\r\n\r\nSome of the failures are due to misdiagnosis where the surgeon does not treat the true cause of the problem, considering that it is not always the median nerve causing the symptoms. In our office, we have seen patients with carpal tunnel-like symptoms, who actually have symptoms caused by a ligament injury. To ascertain the source, a complete history and evaluation must be completed.\r\n\r\n<strong>Injured Ligaments Can Cause Symptoms of Carpal Tunnel Syndrome</strong>\r\n\r\nLigament laxity may be the source of the symptoms. A complete history and evaluation is needed prior to making the diagnosis of carpal tunnel syndrome. Electrodiagnostic studies and imaging may be necessary. Additionally, a physician who understands the referral patterns of ligaments should evaluate the individual with this condition before surgery is considered. Because most physicians do not know the referral pain patterns of ligaments, they do not realize that the cervical vertebrae 4 and 5 and the annular ligament can refer pain to the thumb, index, and middle fingers. Ligament laxity can also cause numbness. Cervical and annular ligament laxity should always be evaluated prior to making a diagnosis of carpal tunnel syndrome.\r\n\r\nRegenerative Orthopedics repairs injured and weakened ligaments. If ligaments are the source of the problem, then these treatments, which specifically address injured ligaments, can be sought.\r\n\r\n<strong>Why Cut Unnecessarily?</strong>\r\n\r\nLigament injury can often cause a variety of symptoms. And when carpal tunnel surgery is performed, ligaments are cut. Why chance additional injury if cutting is not necessary. A 2023 article in the <em>Journal of biomechanical engineering</em> says “Carpal tunnel release surgery transects the transverse carpal ligament to expand the tunnel arch space, decompress the median nerve, and relieve the associated symptoms. However, the surgical procedure unavoidably disrupts essential anatomical, biomechanical, and physiological functions of the wrist, potentially causing reduced grip strength, pillar pain, carpal bone instability, scar tissue formation, and perineural fibrosis.” Looking into non-surgical alternative may be the answer to avoid this problem.\r\n\r\n<strong> </strong>\r\n\r\n<strong>Actual Carpal Tunnel Syndrome vs Ligament Injury (Pseudo-Carpal Tunnel Syndrome)</strong>\r\n\r\nActual carpal tunnel syndromes are caused by compression of the median nerve and pseudo carpal tunnel syndromes are caused by ligament weakness. They both may present with the same or similar symptoms but have entirely different pathology.\r\n\r\nAs stated earlier, when ligaments are the source, Regenerative Orthopedic injections to the injured ligaments results in the strengthening and repair of these structures. The ligaments become tighter and stronger, eliminating the causative factor.\r\n\r\nThe medical journal<em> Pain Management</em> concluded that Dextrose Prolotherapy was effective for improving pain intensity, limitations in daily life, electrophysiologic parameters, and ultrasonographic outcomes.(3)\r\n\r\n&nbsp;\r\n\r\n<strong>OrthoRegen\'s Approach to Carpal Tunnel Syndrome</strong>\r\n\r\nRegenerative Orthopedics works well to treat the pain, numbness, and tingling associated with ‘pseudo’ carpal tunnel syndrome or when the symptoms of carpal tunnel syndrome are caused by ligament damage. If symptoms of carpal tunnel syndrome are found to be due to weak ligaments in the wrist, then Regenerative Orthopedics would be recommended to strengthen the affected wrist ligaments.\r\n\r\nIf a person has significant tenderness over the lateral elbow (radius) and no evidence of muscle atrophy (weakness) or sensory deficit in the hand, it is likely they have ‘pseudo’ carpal tunnel syndrome. The annular ligament, which enables the hand to rotate, becomes lax through use in repetitive tasks or athletics, leading to chronic pain in the elbow and/or referred pain in the wrist. These ligaments have referral pain patterns that travel down to the wrist and fingers and may be confused with carpal tunnel syndrome. When examining a patient with these symptoms, it is important to examine the elbow as well. Prolotherapy treatments to the lateral collateral ligament (i.e. the radial collateral ligament) and annular ligament of the elbow will help to strengthen these tissues and stop the pain referral patterns down the arm and into the fingers. This problem occurs commonly in people who type frequently or use their arms and elbows a lot at work, such as workers, carpenters, or hairdressers. While operations for carpal tunnel syndrome are sometimes needed, many times Regenerative Orthopedics can help eliminate the need for surgery and cure a patient’s chronic pain.\r\n\r\n&nbsp;\r\n\r\n<strong>References</strong>\r\n<ul>\r\n 	<li>Bland, Jeremy DP. \"Treatment of carpal tunnel syndrome.\" <em>Muscle &amp; Nerve: Official Journal of the American Association of Electrodiagnostic Medicine</em>2 (2007): 167-171.</li>\r\n 	<li>Li ZM. Non-Surgical Carpal Arch Space Augmentation for Median Nerve Decompression. Journal of Biomechanical Engineering. 2023 Aug 1;145(8):080801.</li>\r\n 	<li>Babaei-Ghazani A, Moradnia S, Azar M, Forogh B, Ahadi T, Chaibakhsh S, Khodabandeh M, Eftekharsadat B. Ultrasound-guided 5% dextrose prolotherapy versus corticosteroid injection in carpal tunnel syndrome: a randomized, controlled clinical trial. Pain Manag. 2022 Jul 18. doi: 10.2217/pmt-2022-0018. Epub ahead of print. PMID: 35848821.</li>\r\n</ul>','Non-Surgical Carpal Tunnel Treatment','','inherit','closed','closed','','5895-revision-v1','','','2023-09-20 02:28:31','2023-09-20 02:28:31','',5895,'https://www.drfields.com/?p=5897',0,'revision','',0),(5898,8,'2023-09-20 02:30:20','2023-09-20 02:30:20','<div class=\"clear\"></div>\r\n<div id=\"slider\">\r\n<div class=\"owl-carousel slider-carousel\">\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/12/Slider-2-v3-261222.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Slider-v1-021120.jpg\');\"></div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-santa-monica-pier-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">New Article:</span>\r\n<span class=\"header_text_second\">Keep Looking Forward Despite COVID-19</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dealing-with-covid-19/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2019/06/header-orthoregen-11.jpg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Stem Cell / PRP / Prolotherapy</span>\r\n<span class=\"header_text_second\">Regenerative Orthopedics</span>\r\n<span class=\"header_text_third\">Fix Your Joints &amp; Spine Without Surgery</span>\r\n<a class=\"btn-more\" title=\"Let\'s Get Started Today!\" href=\"Contact-Us\"> Let\'s Get Started Today!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_header-orthoregen-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Get Back In The Game!</span>\r\n<span class=\"header_text_second\">Avoid Joint and Spine Surgery </span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">Stem Cell/PRP/Prolotherapy</span>\r\n<a class=\"btn-more\" title=\"Get Help Now!\" href=\"Contact-Us\"> Get Help Now!</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item slide-article\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/header-orthoregen-ocean-mountains-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_second\">COVID-19 Advice: \"Don’t Fear the Fear Itself!\"</span>\r\n<span class=\"header_text_third\" style=\"color: #ffffff;\">By Peter A. Fields, MD, DC</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/articles/health-news/dont-fear-the-fear-itself/\">Read Article</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/0_Kili-top-header-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\" style=\"text-align: left;\"><span class=\"header_text_first\">Congratulations\r\nPeter A. Fields, MD, DC</span>\r\n<span class=\"header_text_second\">The Athletic Doc<sup>®</sup>\r\nsuccessfully climbed</span>\r\n<span class=\"header_text_third white-text\">Mt. Kilimanjaro in\r\nTanzania, Africa.19,341 feet!!!</span>\r\n<a class=\"btn-more\" title=\"Read Article\" href=\"/report-of-my-kilimanjaro-climb/\">Read More</a></div>\r\n</div>\r\n<div id=\"slide\" class=\"item\" style=\"background-image: url(\'https://www.drfields.com/wp-content/uploads/2022/11/Sider-01-v1-021120.jpeg\');\">\r\n<div class=\"carousel-caption\"><span class=\"header_text_first\">Peter A. Fields, MD, DC\r\nThe Athletic Doc<sup>®</sup></span>\r\n<span class=\"header_text_second\">Completed His 11th Ironman</span>\r\n<span class=\"header_text_third\">Sunday, November 24th in Cozumel Mexico</span>\r\n<a class=\"btn-more\" title=\"Read More\" href=\"#\">Images &amp; Story Coming Soon</a></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"jumbotron-fluid\">\r\n<div class=\"row\">\r\n<div class=\"col-md-4 box1\">\r\n\r\nWhat\'s\r\n<h3>New</h3>\r\n<ul>\r\n 	<li><a title=\"Non-Surgical Carpal Tunnel Treatment\" href=\"/articles/non-surgical-carpal-tunnel-treatment/\">Non-Surgical Carpal Tunnel Treatment</a></li>\r\n 	<li><a title=\"Osteoarthritis Knee Treatment\" href=\"/articles/osteoarthritis-knee-treatment/\">Osteoarthritis Knee Treatment</a></li>\r\n 	<li><a title=\"Hip Replacement Alternatives\" href=\"/articles/hip-replacement-alternatives/\">Hip Replacement Alternatives</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/acl-tear-repair/\">ACL TEAR Repair</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/foot-pain-treatment/\">Foot Pain Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/arthritis-neck-treatment/\">Arthritis Neck Treatment</a></li>\r\n 	<li><a href=\"/articles/regenerative-orthopedics/back-pain-specialist/\">Back Pain Specialist</a></li>\r\n</ul>\r\n</div>\r\n<div id=\"testimonials\" class=\"col-md-4 box2\">\r\n\r\nPatient\r\n<h3>Testimonials</h3>\r\n<strong>Video:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I wished I had come earlier and listened to what my physical therapist had told me to do because Dr. Fields has been a real solution for me.\"\r\n\r\n<img class=\"testimonial-img\" title=\"Testimonial\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png\" alt=\"Testimonial\" />\r\n<h3>Larry</h3>\r\n<h4>Stem Cell Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I highly recommend it to anyone who needs to recover fast and get back out there.\"\r\n\r\n<img class=\"testimonial-img\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png\" alt=\"\" />\r\n<h3>Chris, Pro Basketball Player</h3>\r\n<h4>PRP Knee</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"Now I can go walking, I go to my ballet class and I’m a happy camper because of Dr. Fields.\"\r\n\r\n<img class=\"testimonial-img\" title=\"\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png\" alt=\"Testimonial\" />\r\n<h3>Mary</h3>\r\n<h4>Stem Cell Hip</h4>\r\n</div>\r\n</div>\r\n<strong>Written:</strong>\r\n<div class=\"owl-carousel testimonials-carousel wow fadeInUp\">\r\n<div class=\"testimonial-item\">\r\n\r\n\"I need to say a big thank you to Dr Fields for getting me back on the tennis court. I am an avid tennis player who tried to ignore the terrible pain in my elbow.\"\r\n<h3 style=\"margin-left: 0;\">Mindy</h3>\r\n<h4 style=\"margin-left: 0;\">Elbow</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"I chose Dr. Peter Fields because he is an athlete and would have more direct knowledge of my particular circumstances than anyone else.\"\r\n<h3 style=\"margin-left: 0;\">Robert</h3>\r\n<h4 style=\"margin-left: 0;\">Shoulder</h4>\r\n</div>\r\n<div class=\"testimonial-item\">\r\n\r\n\"After the final treatments ended I am still without all the pain and have more muscle strength in my legs.\"\r\n<h3 style=\"margin-left: 0;\">Lois</h3>\r\n<h4 style=\"margin-left: 0;\">Knee</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-4 box3\">\r\n\r\nNews &amp;\r\n<h3>Events</h3>\r\n<ul>\r\n 	<li><a href=\"https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/\">Peter A. Fields, MD, DC to lecture in Mexico City on July 9th</a></li>\r\n 	<li><a class=\"buttonlink\" style=\"width: 100%; font-size: 24px; text-align: center; padding: 25px 8%;\" href=\"https://www.drfields.com/contact/\"> Are you a Stem Cell Candidate?</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"search-articles\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\"> Schedule Your Appointment Today!</a>\r\n<h2 class=\"text-center\">Search <b>Dr. Fields\'</b> Articles</h2>\r\n<form id=\"searchform\" action=\"/\" method=\"get\"><input class=\"search-field\" name=\"s\" type=\"text\" placeholder=\"What\'s Your Condition?\" />\r\n<input type=\"submit\" value=\"Search\" /></form></div>\r\n</div>\r\n</div>\r\n<div id=\"intro\">\r\n<div class=\"container\">\r\n<div class=\"col-md-12\">\r\n<h1 class=\"text-center\">Welcome to OrthoRegen<sup>®</sup>!</h1>\r\n<p class=\"intro_text welcome\"><a href=\"http://orthoregen.com\"><span style=\"font-size: 26px;\">OrthoRegen<sup>®</sup></span></a> is dedicated to providing the best of <span class=\"nowrap\">Regenerative Orthopedics</span> by offering non-surgical alternatives for joint and spine repair</p>\r\n<a class=\"primaryButton\" title=\"Read More About U\" href=\"https://www.drfields.com/about/orthoregen-our-philosophy/\">Read More About Us</a>\r\n<a id=\"candidateButton\" title=\"Are you a good candidate?\" href=\"/contact/\">Are you a good candidate?</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n<div class=\"about\">\r\n<div class=\"col-md-5 drfields\"><img class=\"alignnone\" title=\"Regenerative Orthopedics Leader\" src=\"https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png\" alt=\"Regenerative Orthopedics Leader\" width=\"460\" height=\"737\" /></div>\r\n<div class=\"col-md-7 about_holder\">\r\n<h1>Peter A. Fields, <span class=\"nowrap\">MD, DC</span></h1>\r\n<p class=\"intro_text\">Medical Physician and Chiropractor\r\nThe Athletic Doc<sup>®</sup> - 11x Ironman Triathlete</p>\r\n\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"icon info\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png\" alt=\"icon info\" /></div>\r\n<div class=\"about_text\">\r\n<h3>About</h3>\r\nPeter A. Fields, MD, DC is one of a handful of physicians in the nation with both medical and chiropractic degrees...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/dr-fields-bio/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-md-3\">\r\n<div class=\"about_icon\"><img title=\"Man Icon\" src=\"https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png\" alt=\"Man Icon\" /></div>\r\n<div class=\"about_text\">\r\n<h3>11x Ironman</h3>\r\nDr. Peter A. Fields is also known as The Athletic Doc<sup>®</sup> He not only treats athletes in his practice but is an athlete himself. For over...\r\n\r\n<a class=\"secondaryButton\" title=\"Read More\" href=\"https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/\">Read More</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"clear\"></div>\r\n&nbsp;\r\n\r\n<a class=\"buttonlink\" href=\"https://www.drfields.com/contact/\">Call Us Today! 310-453-1234</a>','Home','','inherit','closed','closed','','2109-revision-v1','','','2023-09-20 02:30:20','2023-09-20 02:30:20','',2109,'https://www.drfields.com/?p=5898',0,'revision','',0),(5899,9,'2023-09-20 19:31:30','2023-09-20 19:31:30','<h2>Carpal Tunnel Syndrome Treatment</h2>\nDo you think you may have Carpal Tunnel Syndrome? Actual carpal tunnel syndromes are caused by median nerve compression. Symptoms of carpal tunnel can also be related to ligament injury. Both conditions can present with the same or similar symptoms but have different pathology. Joint instability may be the source of the problem in either case. Regenerative Orthopedics is a carpal tunnel syndrome treatment that stabilizes the joint and can effectively treat the problem.\n\nA physician who understands the referral patterns of ligaments should be sought to ascertain if the ligaments are the source of the problem. Regenerative Orthopedics works well to treat the pain, numbness, and tingling associated with carpal tunnel syndrome or when the symptoms of carpal tunnel syndrome are caused by ligament damage.\n\nSurgery is a standard go-to when it comes to Carpal Tunnel Syndrome. But is surgery inevitable? Although the standard practice of modern medicine is to inject steroids or to prescribe anti-inflammatory medications, the result of a diagnosis of carpal tunnel syndrome is usually surgery. Is surgery the answer?\n<h3><strong>Carpal Tunnel Release Surgery Has Varying Degrees of Success</strong></h3>\n<img class=\"wp-image-5896\" src=\"https://www.drfields.com/wp-content/uploads/2023/09/Carpal-tunnel-500x419.png\" alt=\"Carpal Tunnel\" width=\"300\" height=\"251\" />\n\nCarpal Tunnel surgery has limited and widely varying degrees of success in treating carpal tunnel syndrome. <em>Muscle &amp; Nerve: Official Journal of the American Association of Electrodiagnostic Medicine</em> says, \"years after its widespread recognition, a significant minority of patients with carpal tunnel syndrome continue to experience poor outcomes from treatment.\" (1) With over 600,000 carpal tunnel release surgeries performed annually in the U.S., that would account for many failures.\n\nSome failures are due to misdiagnosis, where the median nerve is not causing the symptoms. In our office, we have seen patients with carpal tunnel-like symptoms who have symptoms caused by a ligament injury. To ascertain the source, a complete history and evaluation must be completed.\n<h3><strong>Injured Ligaments Can Cause Symptoms of Carpal Tunnel Syndrome</strong></h3>\nLigament laxity may be the source of the symptoms. A complete history and evaluation are needed before diagnosing carpal tunnel syndrome. Electrodiagnostic studies and imaging may be necessary. Additionally, a physician who understands the referral patterns of ligaments should evaluate the individual with this condition before surgery is considered. Because most physicians do not know the referral pain patterns of ligaments, they do not realize that the cervical vertebrae 4 and 5 and the annular ligament can refer pain to the thumb, index, and middle fingers. Ligament laxity can also cause numbness. Cervical and annular ligament laxity should always be evaluated before diagnosing carpal tunnel syndrome.\n\nRegenerative Orthopedics repairs injured and weakened ligaments. If ligaments are the source of the problem, then these treatments, which specifically address injured ligaments, can be sought.\n<h3><strong>Why Cut Unnecessarily for Carpal Tunnel Syndrome Treatment?</strong></h3>\nLigament injury can often cause a variety of symptoms. When carpal tunnel surgery is performed, ligaments are cut. Why chance additional injury if cutting is not necessary? A 2023 article in the <em>Journal of Biomechanical Engineering</em> says, “Carpal tunnel release surgery transects the transverse carpal ligament to expand the tunnel arch space, decompress the median nerve, and relieve the associated symptoms. However, the surgical procedure unavoidably disrupts essential anatomical, biomechanical, and physiological functions of the wrist, potentially causing reduced grip strength, pillar pain, carpal bone instability, scar tissue formation, and perineural fibrosis.”  (2) Looking into non-surgical alternatives may be the answer to avoid this problem.\n<h3><strong>Actual Carpal Tunnel Syndrome vs. Ligament Injury (Pseudo-Carpal Tunnel Syndrome)</strong></h3>\nActual carpal tunnel syndromes are caused by median nerve compression, and pseudo carpal tunnel syndromes are caused by ligament weakness. Joint instability can be at the core of both problems, as looseness and abnormal movement in the joint can cause compression on the nerve. Regenerative treatment of joint instability can be effective in treating these conditions. They both may present with the same or similar symptoms but have some different pathology.<span class=\"Apple-converted-space\"> </span>\n\nRegenerative Orthopedic injections to the injured areas result in the stabilization of the joint, strengthening, and repair of these soft tissue structures. The ligaments become tighter and stronger, eliminating the causative factor.\n\nThe medical journal<i> Pain Management</i> concluded that Dextrose Prolotherapy was effective for improving pain intensity, limitations in daily life, electrophysiologic parameters, and ultrasonographic outcomes. (3)\n\nThe journal Pharmaceuticals concluded, \"D5W and PRP injections are more effective than splinting and corticosteroid or saline injection for relieving the symptoms of CTS.\" (4)\n\nAdditionally, university researchers in Taiwan found that \"Platelet Rich Plasma (PRP) is a safe modality that relieves pain and improves disability in patients with carpal tunnel syndrome.\" (5)\n<h3><strong>OrthoRegen\'s Approach to Carpal Tunnel Syndrome Treatment</strong></h3>\nRegenerative Orthopedics works well to treat the pain, numbness, and tingling associated with carpal tunnel syndrome and when the symptoms of carpal tunnel syndrome are caused by ligament damage. If symptoms of carpal tunnel syndrome are found to be due to weak ligaments, then Regenerative Orthopedics would be recommended to strengthen the affected wrist ligaments.\n\nIf a person has significant tenderness over the lateral elbow (radius) and no evidence of muscle atrophy (weakness) or sensory deficit in the hand, they likely have ‘pseudo’ carpal tunnel syndrome. The annular ligament, which enables the hand to rotate, becomes lax through use in repetitive tasks or athletics, leading to chronic pain in the elbow and/or referred pain in the wrist. These ligaments have referral pain patterns that travel down to the wrist and fingers and may be confused with carpal tunnel syndrome. When examining a patient with these symptoms, it is essential to examine the elbow as well. Prolotherapy treatments to the lateral collateral ligament (i.e., the radial collateral ligament) and annular ligament of the elbow will help to strengthen these tissues and stop the pain referral patterns down the arm and into the fingers. This problem commonly occurs in people who type frequently or use their arms and elbows at work, such as workers, carpenters, or hairdressers. While operations for carpal tunnel syndrome are sometimes needed, Regenerative Orthopedics can help eliminate the need for surgery and cure a patient’s chronic pain.\n\n&nbsp;\n<h3><strong>References</strong></h3>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li><i></i>Bland, Jeremy DP. \"Treatment of carpal tunnel syndrome.\" <i>Muscle &amp; Nerve: Official Journal of the American Association of Electrodiagnostic Medicine</i> 36.2 (2007): 167-171.</li>\n 	<li><i></i> Li ZM. Non-Surgical Carpal Arch Space Augmentation for Median Nerve Decompression. Journal of Biomechanical Engineering. 2023 Aug 1;145(8):080801.</li>\n 	<li><i></i> Babaei-Ghazani A, Moradnia S, Azar M, Forogh B, Ahadi T, Chaibakhsh S, Khodabandeh M, Eftekharsadat B. Ultrasound-guided 5% dextrose prolotherapy versus corticosteroid injection in carpal tunnel syndrome: a randomized, controlled clinical trial. Pain Manag. 2022 Jul 18. doi: 10.2217/pmt-2022-0018. Epub ahead of print. PMID: 35848821.</li>\n 	<li><i></i>Lin CP, Chang KV, Huang YK, Wu WT, Özçakar L. Regenerative Injections Including 5% Dextrose and Platelet-Rich Plasma for the Treatment of Carpal Tunnel Syndrome: A Systematic Review and Network Meta-Analysis. Pharmaceuticals. 2020 Mar;13(3):49.</li>\n 	<li>Wu YT, Ho TY, Chou YC, Ke MJ, Li TY, Huang GS, Chen LC. Six-month efficacy of platelet-rich plasma for carpal tunnel syndrome: A prospective randomized, single-blind controlled trial. Sci Rep. 2017 Dec;7(1):94.</li>\n</ol>\n</li>\n</ol>','Non-Surgical Carpal Tunnel Treatment','','inherit','closed','closed','','5895-autosave-v1','','','2023-09-20 19:31:30','2023-09-20 19:31:30','',5895,'https://www.drfields.com/?p=5899',0,'revision','',0),(5900,9,'2023-09-20 19:32:42','2023-09-20 19:32:42','<h2>Carpal Tunnel Syndrome Treatment</h2>\r\nDo you think you may have Carpal Tunnel Syndrome? Actual carpal tunnel syndromes are caused by median nerve compression. Symptoms of carpal tunnel can also be related to ligament injury. Both conditions can present with the same or similar symptoms but have different pathology. Joint instability may be the source of the problem in either case. Regenerative Orthopedics is a carpal tunnel syndrome treatment that stabilizes the joint and can effectively treat the problem.\r\n\r\nA physician who understands the referral patterns of ligaments should be sought to ascertain if the ligaments are the source of the problem. Regenerative Orthopedics works well to treat the pain, numbness, and tingling associated with carpal tunnel syndrome or when the symptoms of carpal tunnel syndrome are caused by ligament damage.\r\n\r\nSurgery is a standard go-to when it comes to Carpal Tunnel Syndrome. But is surgery inevitable? Although the standard practice of modern medicine is to inject steroids or to prescribe anti-inflammatory medications, the result of a diagnosis of carpal tunnel syndrome is usually surgery. Is surgery the answer?\r\n<h3><strong>Carpal Tunnel Release Surgery Has Varying Degrees of Success</strong></h3>\r\n<img class=\"wp-image-5896\" src=\"https://www.drfields.com/wp-content/uploads/2023/09/Carpal-tunnel-500x419.png\" alt=\"Carpal Tunnel\" width=\"300\" height=\"251\" />\r\n\r\nCarpal Tunnel surgery has limited and widely varying degrees of success in treating carpal tunnel syndrome. <em>Muscle &amp; Nerve: Official Journal of the American Association of Electrodiagnostic Medicine</em> says, \"years after its widespread recognition, a significant minority of patients with carpal tunnel syndrome continue to experience poor outcomes from treatment.\" (1) With over 600,000 carpal tunnel release surgeries performed annually in the U.S., that would account for many failures.\r\n\r\nSome failures are due to misdiagnosis, where the median nerve is not causing the symptoms. In our office, we have seen patients with carpal tunnel-like symptoms who have symptoms caused by a ligament injury. To ascertain the source, a complete history and evaluation must be completed.\r\n<h3><strong>Injured Ligaments Can Cause Symptoms of Carpal Tunnel Syndrome</strong></h3>\r\nLigament laxity may be the source of the symptoms. A complete history and evaluation are needed before diagnosing carpal tunnel syndrome. Electrodiagnostic studies and imaging may be necessary. Additionally, a physician who understands the referral patterns of ligaments should evaluate the individual with this condition before surgery is considered. Because most physicians do not know the referral pain patterns of ligaments, they do not realize that the cervical vertebrae 4 and 5 and the annular ligament can refer pain to the thumb, index, and middle fingers. Ligament laxity can also cause numbness. Cervical and annular ligament laxity should always be evaluated before diagnosing carpal tunnel syndrome.\r\n\r\nRegenerative Orthopedics repairs injured and weakened ligaments. If ligaments are the source of the problem, then these treatments, which specifically address injured ligaments, can be sought.\r\n<h3><strong>Why Cut Unnecessarily for Carpal Tunnel Syndrome Treatment?</strong></h3>\r\nLigament injury can often cause a variety of symptoms. When carpal tunnel surgery is performed, ligaments are cut. Why chance additional injury if cutting is not necessary? A 2023 article in the <em>Journal of Biomechanical Engineering</em> says, “Carpal tunnel release surgery transects the transverse carpal ligament to expand the tunnel arch space, decompress the median nerve, and relieve the associated symptoms. However, the surgical procedure unavoidably disrupts essential anatomical, biomechanical, and physiological functions of the wrist, potentially causing reduced grip strength, pillar pain, carpal bone instability, scar tissue formation, and perineural fibrosis.”  (2) Looking into non-surgical alternatives may be the answer to avoid this problem.\r\n<h3><strong>Actual Carpal Tunnel Syndrome vs. Ligament Injury (Pseudo-Carpal Tunnel Syndrome)</strong></h3>\r\nActual carpal tunnel syndromes are caused by median nerve compression, and pseudo carpal tunnel syndromes are caused by ligament weakness. Joint instability can be at the core of both problems, as looseness and abnormal movement in the joint can cause compression on the nerve. Regenerative treatment of joint instability can be effective in treating these conditions. They both may present with the same or similar symptoms but have some different pathology.<span class=\"Apple-converted-space\"> </span>\r\n\r\nRegenerative Orthopedic injections to the injured areas result in the stabilization of the joint, strengthening, and repair of these soft tissue structures. The ligaments become tighter and stronger, eliminating the causative factor.\r\n\r\nThe medical journal<i> Pain Management</i> concluded that Dextrose Prolotherapy was effective for improving pain intensity, limitations in daily life, electrophysiologic parameters, and ultrasonographic outcomes. (3)\r\n\r\nThe journal Pharmaceuticals concluded, \"D5W and PRP injections are more effective than splinting and corticosteroid or saline injection for relieving the symptoms of CTS.\" (4)\r\n\r\nAdditionally, university researchers in Taiwan found that \"Platelet Rich Plasma (PRP) is a safe modality that relieves pain and improves disability in patients with carpal tunnel syndrome.\" (5)\r\n<h3><strong>OrthoRegen\'s Approach to Carpal Tunnel Syndrome Treatment</strong></h3>\r\nRegenerative Orthopedics works well to treat the pain, numbness, and tingling associated with carpal tunnel syndrome and when the symptoms of carpal tunnel syndrome are caused by ligament damage. If symptoms of carpal tunnel syndrome are found to be due to weak ligaments, then Regenerative Orthopedics would be recommended to strengthen the affected wrist ligaments.\r\n\r\nIf a person has significant tenderness over the lateral elbow (radius) and no evidence of muscle atrophy (weakness) or sensory deficit in the hand, they likely have ‘pseudo’ carpal tunnel syndrome. The annular ligament, which enables the hand to rotate, becomes lax through use in repetitive tasks or athletics, leading to chronic pain in the elbow and/or referred pain in the wrist. These ligaments have referral pain patterns that travel down to the wrist and fingers and may be confused with carpal tunnel syndrome. When examining a patient with these symptoms, it is essential to examine the elbow as well. Prolotherapy treatments to the lateral collateral ligament (i.e., the radial collateral ligament) and annular ligament of the elbow will help to strengthen these tissues and stop the pain referral patterns down the arm and into the fingers. This problem commonly occurs in people who type frequently or use their arms and elbows at work, such as workers, carpenters, or hairdressers. While operations for carpal tunnel syndrome are sometimes needed, Regenerative Orthopedics can help eliminate the need for surgery and cure a patient’s chronic pain.\r\n\r\n&nbsp;\r\n<h3><strong>References</strong></h3>\r\n<ol>\r\n 	<li style=\"list-style-type: none;\">\r\n<ol>\r\n 	<li><i></i>Bland, Jeremy DP. \"Treatment of carpal tunnel syndrome.\" <i>Muscle &amp; Nerve: Official Journal of the American Association of Electrodiagnostic Medicine</i> 36.2 (2007): 167-171.</li>\r\n 	<li><i></i> Li ZM. Non-Surgical Carpal Arch Space Augmentation for Median Nerve Decompression. Journal of Biomechanical Engineering. 2023 Aug 1;145(8):080801.</li>\r\n 	<li><i></i> Babaei-Ghazani A, Moradnia S, Azar M, Forogh B, Ahadi T, Chaibakhsh S, Khodabandeh M, Eftekharsadat B. Ultrasound-guided 5% dextrose prolotherapy versus corticosteroid injection in carpal tunnel syndrome: a randomized, controlled clinical trial. Pain Manag. 2022 Jul 18. doi: 10.2217/pmt-2022-0018. Epub ahead of print. PMID: 35848821.</li>\r\n 	<li><i></i>Lin CP, Chang KV, Huang YK, Wu WT, Özçakar L. Regenerative Injections Including 5% Dextrose and Platelet-Rich Plasma for the Treatment of Carpal Tunnel Syndrome: A Systematic Review and Network Meta-Analysis. Pharmaceuticals. 2020 Mar;13(3):49.</li>\r\n 	<li>Wu YT, Ho TY, Chou YC, Ke MJ, Li TY, Huang GS, Chen LC. Six-month efficacy of platelet-rich plasma for carpal tunnel syndrome: A prospective randomized, single-blind controlled trial. Sci Rep. 2017 Dec;7(1):94.</li>\r\n</ol>\r\n</li>\r\n</ol>','Non-Surgical Carpal Tunnel Treatment','','inherit','closed','closed','','5895-revision-v1','','','2023-09-20 19:32:42','2023-09-20 19:32:42','',5895,'https://www.drfields.com/?p=5900',0,'revision','',0),(5901,9,'2023-09-20 19:33:27','2023-09-20 19:33:27','<h2>Carpal Tunnel Syndrome Treatment</h2>\r\nDo you think you may have Carpal Tunnel Syndrome? Actual carpal tunnel syndromes are caused by median nerve compression. Symptoms of carpal tunnel can also be related to ligament injury. Both conditions can present with the same or similar symptoms but have different pathology. Joint instability may be the source of the problem in either case. Regenerative Orthopedics is a carpal tunnel syndrome treatment that stabilizes the joint and can effectively treat the problem.\r\n\r\nA physician who understands the referral patterns of ligaments should be sought to ascertain if the ligaments are the source of the problem. Regenerative Orthopedics works well to treat the pain, numbness, and tingling associated with carpal tunnel syndrome or when the symptoms of carpal tunnel syndrome are caused by ligament damage.\r\n\r\nSurgery is a standard go-to when it comes to Carpal Tunnel Syndrome. But is surgery inevitable? Although the standard practice of modern medicine is to inject steroids or to prescribe anti-inflammatory medications, the result of a diagnosis of carpal tunnel syndrome is usually surgery. Is surgery the answer?\r\n<h3><strong>Carpal Tunnel Release Surgery Has Varying Degrees of Success</strong></h3>\r\n<img class=\"wp-image-5896 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2023/09/Carpal-tunnel-500x419.png\" alt=\"Carpal Tunnel\" width=\"300\" height=\"251\" />\r\n\r\nCarpal Tunnel surgery has limited and widely varying degrees of success in treating carpal tunnel syndrome. <em>Muscle &amp; Nerve: Official Journal of the American Association of Electrodiagnostic Medicine</em> says, \"years after its widespread recognition, a significant minority of patients with carpal tunnel syndrome continue to experience poor outcomes from treatment.\" (1) With over 600,000 carpal tunnel release surgeries performed annually in the U.S., that would account for many failures.\r\n\r\nSome failures are due to misdiagnosis, where the median nerve is not causing the symptoms. In our office, we have seen patients with carpal tunnel-like symptoms who have symptoms caused by a ligament injury. To ascertain the source, a complete history and evaluation must be completed.\r\n<h3><strong>Injured Ligaments Can Cause Symptoms of Carpal Tunnel Syndrome</strong></h3>\r\nLigament laxity may be the source of the symptoms. A complete history and evaluation are needed before diagnosing carpal tunnel syndrome. Electrodiagnostic studies and imaging may be necessary. Additionally, a physician who understands the referral patterns of ligaments should evaluate the individual with this condition before surgery is considered. Because most physicians do not know the referral pain patterns of ligaments, they do not realize that the cervical vertebrae 4 and 5 and the annular ligament can refer pain to the thumb, index, and middle fingers. Ligament laxity can also cause numbness. Cervical and annular ligament laxity should always be evaluated before diagnosing carpal tunnel syndrome.\r\n\r\nRegenerative Orthopedics repairs injured and weakened ligaments. If ligaments are the source of the problem, then these treatments, which specifically address injured ligaments, can be sought.\r\n<h3><strong>Why Cut Unnecessarily for Carpal Tunnel Syndrome Treatment?</strong></h3>\r\nLigament injury can often cause a variety of symptoms. When carpal tunnel surgery is performed, ligaments are cut. Why chance additional injury if cutting is not necessary? A 2023 article in the <em>Journal of Biomechanical Engineering</em> says, “Carpal tunnel release surgery transects the transverse carpal ligament to expand the tunnel arch space, decompress the median nerve, and relieve the associated symptoms. However, the surgical procedure unavoidably disrupts essential anatomical, biomechanical, and physiological functions of the wrist, potentially causing reduced grip strength, pillar pain, carpal bone instability, scar tissue formation, and perineural fibrosis.”  (2) Looking into non-surgical alternatives may be the answer to avoid this problem.\r\n<h3><strong>Actual Carpal Tunnel Syndrome vs. Ligament Injury (Pseudo-Carpal Tunnel Syndrome)</strong></h3>\r\nActual carpal tunnel syndromes are caused by median nerve compression, and pseudo carpal tunnel syndromes are caused by ligament weakness. Joint instability can be at the core of both problems, as looseness and abnormal movement in the joint can cause compression on the nerve. Regenerative treatment of joint instability can be effective in treating these conditions. They both may present with the same or similar symptoms but have some different pathology.<span class=\"Apple-converted-space\"> </span>\r\n\r\nRegenerative Orthopedic injections to the injured areas result in the stabilization of the joint, strengthening, and repair of these soft tissue structures. The ligaments become tighter and stronger, eliminating the causative factor.\r\n\r\nThe medical journal<i> Pain Management</i> concluded that Dextrose Prolotherapy was effective for improving pain intensity, limitations in daily life, electrophysiologic parameters, and ultrasonographic outcomes. (3)\r\n\r\nThe journal Pharmaceuticals concluded, \"D5W and PRP injections are more effective than splinting and corticosteroid or saline injection for relieving the symptoms of CTS.\" (4)\r\n\r\nAdditionally, university researchers in Taiwan found that \"Platelet Rich Plasma (PRP) is a safe modality that relieves pain and improves disability in patients with carpal tunnel syndrome.\" (5)\r\n<h3><strong>OrthoRegen\'s Approach to Carpal Tunnel Syndrome Treatment</strong></h3>\r\nRegenerative Orthopedics works well to treat the pain, numbness, and tingling associated with carpal tunnel syndrome and when the symptoms of carpal tunnel syndrome are caused by ligament damage. If symptoms of carpal tunnel syndrome are found to be due to weak ligaments, then Regenerative Orthopedics would be recommended to strengthen the affected wrist ligaments.\r\n\r\nIf a person has significant tenderness over the lateral elbow (radius) and no evidence of muscle atrophy (weakness) or sensory deficit in the hand, they likely have ‘pseudo’ carpal tunnel syndrome. The annular ligament, which enables the hand to rotate, becomes lax through use in repetitive tasks or athletics, leading to chronic pain in the elbow and/or referred pain in the wrist. These ligaments have referral pain patterns that travel down to the wrist and fingers and may be confused with carpal tunnel syndrome. When examining a patient with these symptoms, it is essential to examine the elbow as well. Prolotherapy treatments to the lateral collateral ligament (i.e., the radial collateral ligament) and annular ligament of the elbow will help to strengthen these tissues and stop the pain referral patterns down the arm and into the fingers. This problem commonly occurs in people who type frequently or use their arms and elbows at work, such as workers, carpenters, or hairdressers. While operations for carpal tunnel syndrome are sometimes needed, Regenerative Orthopedics can help eliminate the need for surgery and cure a patient’s chronic pain.\r\n\r\n&nbsp;\r\n<h3><strong>References</strong></h3>\r\n<ol>\r\n 	<li style=\"list-style-type: none;\">\r\n<ol>\r\n 	<li><i></i>Bland, Jeremy DP. \"Treatment of carpal tunnel syndrome.\" <i>Muscle &amp; Nerve: Official Journal of the American Association of Electrodiagnostic Medicine</i> 36.2 (2007): 167-171.</li>\r\n 	<li><i></i> Li ZM. Non-Surgical Carpal Arch Space Augmentation for Median Nerve Decompression. Journal of Biomechanical Engineering. 2023 Aug 1;145(8):080801.</li>\r\n 	<li><i></i> Babaei-Ghazani A, Moradnia S, Azar M, Forogh B, Ahadi T, Chaibakhsh S, Khodabandeh M, Eftekharsadat B. Ultrasound-guided 5% dextrose prolotherapy versus corticosteroid injection in carpal tunnel syndrome: a randomized, controlled clinical trial. Pain Manag. 2022 Jul 18. doi: 10.2217/pmt-2022-0018. Epub ahead of print. PMID: 35848821.</li>\r\n 	<li><i></i>Lin CP, Chang KV, Huang YK, Wu WT, Özçakar L. Regenerative Injections Including 5% Dextrose and Platelet-Rich Plasma for the Treatment of Carpal Tunnel Syndrome: A Systematic Review and Network Meta-Analysis. Pharmaceuticals. 2020 Mar;13(3):49.</li>\r\n 	<li>Wu YT, Ho TY, Chou YC, Ke MJ, Li TY, Huang GS, Chen LC. Six-month efficacy of platelet-rich plasma for carpal tunnel syndrome: A prospective randomized, single-blind controlled trial. Sci Rep. 2017 Dec;7(1):94.</li>\r\n</ol>\r\n</li>\r\n</ol>','Non-Surgical Carpal Tunnel Treatment','','inherit','closed','closed','','5895-revision-v1','','','2023-09-20 19:33:27','2023-09-20 19:33:27','',5895,'https://www.drfields.com/?p=5901',0,'revision','',0),(5902,9,'2023-09-20 19:34:23','2023-09-20 19:34:23','<h2>Carpal Tunnel Syndrome Treatment</h2>\r\nDo you think you may have Carpal Tunnel Syndrome? Actual carpal tunnel syndromes are caused by median nerve compression. Symptoms of carpal tunnel can also be related to ligament injury. Both conditions can present with the same or similar symptoms but have different pathology. Joint instability may be the source of the problem in either case. Regenerative Orthopedics is a carpal tunnel syndrome treatment that stabilizes the joint and can effectively treat the problem.\r\n\r\nA physician who understands the referral patterns of ligaments should be sought to ascertain if the ligaments are the source of the problem. Regenerative Orthopedics works well to treat the pain, numbness, and tingling associated with carpal tunnel syndrome or when the symptoms of carpal tunnel syndrome are caused by ligament damage.\r\n\r\nSurgery is a standard go-to when it comes to Carpal Tunnel Syndrome. But is surgery inevitable? Although the standard practice of modern medicine is to inject steroids or to prescribe anti-inflammatory medications, the result of a diagnosis of carpal tunnel syndrome is usually surgery. Is surgery the answer?\r\n<h3><strong>Carpal Tunnel Release Surgery Has Varying Degrees of Success</strong></h3>\r\n<img class=\"wp-image-5896 alignright\" src=\"https://www.drfields.com/wp-content/uploads/2023/09/Carpal-tunnel-500x419.png\" alt=\"Carpal Tunnel\" width=\"300\" height=\"251\" />\r\n\r\nCarpal Tunnel surgery has limited and widely varying degrees of success in treating carpal tunnel syndrome. <em>Muscle &amp; Nerve: Official Journal of the American Association of Electrodiagnostic Medicine</em> says, \"years after its widespread recognition, a significant minority of patients with carpal tunnel syndrome continue to experience poor outcomes from treatment.\" (1) With over 600,000 carpal tunnel release surgeries performed annually in the U.S., that would account for many failures.\r\n\r\nSome failures are due to misdiagnosis, where the median nerve is not causing the symptoms. In our office, we have seen patients with carpal tunnel-like symptoms who have symptoms caused by a ligament injury. To ascertain the source, a complete history and evaluation must be completed.\r\n<h3><strong>Injured Ligaments Can Cause Symptoms of Carpal Tunnel Syndrome</strong></h3>\r\nLigament laxity may be the source of the symptoms. A complete history and evaluation are needed before diagnosing carpal tunnel syndrome. Electrodiagnostic studies and imaging may be necessary. Additionally, a physician who understands the referral patterns of ligaments should evaluate the individual with this condition before surgery is considered. Because most physicians do not know the referral pain patterns of ligaments, they do not realize that the cervical vertebrae 4 and 5 and the annular ligament can refer pain to the thumb, index, and middle fingers. Ligament laxity can also cause numbness. Cervical and annular ligament laxity should always be evaluated before diagnosing carpal tunnel syndrome.\r\n\r\nRegenerative Orthopedics repairs injured and weakened ligaments. If ligaments are the source of the problem, then these treatments, which specifically address injured ligaments, can be sought.\r\n<h3><strong>Why Cut Unnecessarily for Carpal Tunnel Syndrome Treatment?</strong></h3>\r\nLigament injury can often cause a variety of symptoms. When carpal tunnel surgery is performed, ligaments are cut. Why chance additional injury if cutting is not necessary? A 2023 article in the <em>Journal of Biomechanical Engineering</em> says, “Carpal tunnel release surgery transects the transverse carpal ligament to expand the tunnel arch space, decompress the median nerve, and relieve the associated symptoms. However, the surgical procedure unavoidably disrupts essential anatomical, biomechanical, and physiological functions of the wrist, potentially causing reduced grip strength, pillar pain, carpal bone instability, scar tissue formation, and perineural fibrosis.”  (2) Looking into non-surgical alternatives may be the answer to avoid this problem.\r\n<h3><strong>Actual Carpal Tunnel Syndrome vs. Ligament Injury (Pseudo-Carpal Tunnel Syndrome)</strong></h3>\r\nActual carpal tunnel syndromes are caused by median nerve compression, and pseudo carpal tunnel syndromes are caused by ligament weakness. Joint instability can be at the core of both problems, as looseness and abnormal movement in the joint can cause compression on the nerve. Regenerative treatment of joint instability can be effective in treating these conditions. They both may present with the same or similar symptoms but have some different pathology.<span class=\"Apple-converted-space\"> </span>\r\n\r\nRegenerative Orthopedic injections to the injured areas result in the stabilization of the joint, strengthening, and repair of these soft tissue structures. The ligaments become tighter and stronger, eliminating the causative factor.\r\n\r\nThe medical journal<i> Pain Management</i> concluded that Dextrose Prolotherapy was effective for improving pain intensity, limitations in daily life, electrophysiologic parameters, and ultrasonographic outcomes. (3)\r\n\r\nThe journal Pharmaceuticals concluded, \"D5W and PRP injections are more effective than splinting and corticosteroid or saline injection for relieving the symptoms of CTS.\" (4)\r\n\r\nAdditionally, university researchers in Taiwan found that \"Platelet Rich Plasma (PRP) is a safe modality that relieves pain and improves disability in patients with carpal tunnel syndrome.\" (5)\r\n<h3><strong>OrthoRegen\'s Approach to Carpal Tunnel Syndrome Treatment</strong></h3>\r\nRegenerative Orthopedics works well to treat the pain, numbness, and tingling associated with carpal tunnel syndrome and when the symptoms of carpal tunnel syndrome are caused by ligament damage. If symptoms of carpal tunnel syndrome are found to be due to weak ligaments, then Regenerative Orthopedics would be recommended to strengthen the affected wrist ligaments.\r\n\r\nIf a person has significant tenderness over the lateral elbow (radius) and no evidence of muscle atrophy (weakness) or sensory deficit in the hand, they likely have ‘pseudo’ carpal tunnel syndrome. The annular ligament, which enables the hand to rotate, becomes lax through use in repetitive tasks or athletics, leading to chronic pain in the elbow and/or referred pain in the wrist. These ligaments have referral pain patterns that travel down to the wrist and fingers and may be confused with carpal tunnel syndrome. When examining a patient with these symptoms, it is essential to examine the elbow as well.\r\n\r\nProlotherapy treatments to the lateral collateral ligament (i.e., the radial collateral ligament) and annular ligament of the elbow will help to strengthen these tissues and stop the pain referral patterns down the arm and into the fingers. This problem commonly occurs in people who type frequently or use their arms and elbows at work, such as workers, carpenters, or hairdressers. While operations for carpal tunnel syndrome are sometimes needed, Regenerative Orthopedics can help eliminate the need for surgery and cure a patient’s chronic pain.\r\n\r\n&nbsp;\r\n<h3><strong>References</strong></h3>\r\n<ol>\r\n 	<li style=\"list-style-type: none;\">\r\n<ol>\r\n 	<li><i></i>Bland, Jeremy DP. \"Treatment of carpal tunnel syndrome.\" <i>Muscle &amp; Nerve: Official Journal of the American Association of Electrodiagnostic Medicine</i> 36.2 (2007): 167-171.</li>\r\n 	<li><i></i> Li ZM. Non-Surgical Carpal Arch Space Augmentation for Median Nerve Decompression. Journal of Biomechanical Engineering. 2023 Aug 1;145(8):080801.</li>\r\n 	<li><i></i> Babaei-Ghazani A, Moradnia S, Azar M, Forogh B, Ahadi T, Chaibakhsh S, Khodabandeh M, Eftekharsadat B. Ultrasound-guided 5% dextrose prolotherapy versus corticosteroid injection in carpal tunnel syndrome: a randomized, controlled clinical trial. Pain Manag. 2022 Jul 18. doi: 10.2217/pmt-2022-0018. Epub ahead of print. PMID: 35848821.</li>\r\n 	<li><i></i>Lin CP, Chang KV, Huang YK, Wu WT, Özçakar L. Regenerative Injections Including 5% Dextrose and Platelet-Rich Plasma for the Treatment of Carpal Tunnel Syndrome: A Systematic Review and Network Meta-Analysis. Pharmaceuticals. 2020 Mar;13(3):49.</li>\r\n 	<li>Wu YT, Ho TY, Chou YC, Ke MJ, Li TY, Huang GS, Chen LC. Six-month efficacy of platelet-rich plasma for carpal tunnel syndrome: A prospective randomized, single-blind controlled trial. Sci Rep. 2017 Dec;7(1):94.</li>\r\n</ol>\r\n</li>\r\n</ol>','Non-Surgical Carpal Tunnel Treatment','','inherit','closed','closed','','5895-revision-v1','','','2023-09-20 19:34:23','2023-09-20 19:34:23','',5895,'https://www.drfields.com/?p=5902',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_shwattributes`
--

DROP TABLE IF EXISTS `wp_shwattributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_shwattributes` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `catalog_id` int(11) unsigned NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `ordering` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `catalog_id` (`catalog_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_shwattributes`
--

LOCK TABLES `wp_shwattributes` WRITE;
/*!40000 ALTER TABLE `wp_shwattributes` DISABLE KEYS */;
INSERT INTO `wp_shwattributes` VALUES (1,1,'Attribute 1',1),(2,1,'Attribute 2',2),(3,1,'Attribute 3',3);
/*!40000 ALTER TABLE `wp_shwattributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_shwcatalogproductattributes`
--

DROP TABLE IF EXISTS `wp_shwcatalogproductattributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_shwcatalogproductattributes` (
  `id` int(50) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `attribute_id` int(11) NOT NULL,
  `value` varchar(200) NOT NULL,
  `is_visible` varchar(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_shwcatalogproductattributes`
--

LOCK TABLES `wp_shwcatalogproductattributes` WRITE;
/*!40000 ALTER TABLE `wp_shwcatalogproductattributes` DISABLE KEYS */;
INSERT INTO `wp_shwcatalogproductattributes` VALUES (4,1,1,'Value 1','off'),(5,1,2,'','on'),(6,1,3,'','on');
/*!40000 ALTER TABLE `wp_shwcatalogproductattributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_shwcatalogproductcategories`
--

DROP TABLE IF EXISTS `wp_shwcatalogproductcategories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_shwcatalogproductcategories` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(11) unsigned NOT NULL,
  `category_id` int(11) unsigned NOT NULL,
  `is_visible` varchar(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `product_id` (`product_id`),
  KEY `category_id` (`category_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_shwcatalogproductcategories`
--

LOCK TABLES `wp_shwcatalogproductcategories` WRITE;
/*!40000 ALTER TABLE `wp_shwcatalogproductcategories` DISABLE KEYS */;
INSERT INTO `wp_shwcatalogproductcategories` VALUES (1,1,3,'off'),(2,1,2,'off'),(3,1,1,'off');
/*!40000 ALTER TABLE `wp_shwcatalogproductcategories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_shwcatalogproductoptions`
--

DROP TABLE IF EXISTS `wp_shwcatalogproductoptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_shwcatalogproductoptions` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `catalog_id` int(11) unsigned NOT NULL,
  `productoptions_id` int(11) NOT NULL,
  `value` varchar(500) NOT NULL,
  `theme_id` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `catalog_id` (`catalog_id`),
  KEY `theme_id` (`theme_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_shwcatalogproductoptions`
--

LOCK TABLES `wp_shwcatalogproductoptions` WRITE;
/*!40000 ALTER TABLE `wp_shwcatalogproductoptions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_shwcatalogproductoptions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_shwcatalogproducts`
--

DROP TABLE IF EXISTS `wp_shwcatalogproducts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_shwcatalogproducts` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `catalog_id` int(11) unsigned NOT NULL,
  `image_id` int(11) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `catalog_title` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `price` varchar(50) DEFAULT NULL,
  `discount` varchar(50) DEFAULT NULL,
  `visible` int(1) DEFAULT 1,
  `ordering` int(11) DEFAULT NULL,
  `created_date` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `catalog_id` (`catalog_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_shwcatalogproducts`
--

LOCK TABLES `wp_shwcatalogproducts` WRITE;
/*!40000 ALTER TABLE `wp_shwcatalogproducts` DISABLE KEYS */;
INSERT INTO `wp_shwcatalogproducts` VALUES (1,1,1347,'','','',NULL,NULL,1,1,'2019-06-12 06:35:13'),(2,2,1347,NULL,NULL,NULL,NULL,NULL,1,0,'2019-06-12 06:38:18');
/*!40000 ALTER TABLE `wp_shwcatalogproducts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_shwcatalogproductthumbnails`
--

DROP TABLE IF EXISTS `wp_shwcatalogproductthumbnails`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_shwcatalogproductthumbnails` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(11) unsigned DEFAULT NULL,
  `image_id` int(11) DEFAULT NULL,
  `ordering` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `product_id` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_shwcatalogproductthumbnails`
--

LOCK TABLES `wp_shwcatalogproductthumbnails` WRITE;
/*!40000 ALTER TABLE `wp_shwcatalogproductthumbnails` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_shwcatalogproductthumbnails` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_shwcatalogs`
--

DROP TABLE IF EXISTS `wp_shwcatalogs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_shwcatalogs` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `ordering` int(11) NOT NULL,
  `display_type` int(1) NOT NULL DEFAULT 0,
  `view_type` int(1) NOT NULL DEFAULT 0,
  `position` enum('center','left','right') DEFAULT 'center',
  `hover_effect` int(1) NOT NULL DEFAULT 0,
  `items_per_page` int(3) NOT NULL DEFAULT 0,
  `custom_css` text DEFAULT NULL,
  `ctime` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_shwcatalogs`
--

LOCK TABLES `wp_shwcatalogs` WRITE;
/*!40000 ALTER TABLE `wp_shwcatalogs` DISABLE KEYS */;
INSERT INTO `wp_shwcatalogs` VALUES (1,'Default Grid','',1,0,0,'',0,0,'','0000-00-00 00:00:00'),(2,'dem2',NULL,0,0,0,'center',0,0,NULL,'2019-06-12 08:37:47');
/*!40000 ALTER TABLE `wp_shwcatalogs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_shwcategories`
--

DROP TABLE IF EXISTS `wp_shwcategories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_shwcategories` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(50) NOT NULL,
  `parent` varchar(50) NOT NULL,
  `description` text DEFAULT NULL,
  `ordering` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_shwcategories`
--

LOCK TABLES `wp_shwcategories` WRITE;
/*!40000 ALTER TABLE `wp_shwcategories` DISABLE KEYS */;
INSERT INTO `wp_shwcategories` VALUES (1,'Category 1','','0','',1),(2,'Category 2 ','','','',2),(3,'Category 3 ','','','',3);
/*!40000 ALTER TABLE `wp_shwcategories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_shwthemes`
--

DROP TABLE IF EXISTS `wp_shwthemes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_shwthemes` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `ordering` int(11) DEFAULT NULL,
  `options` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_shwthemes`
--

LOCK TABLES `wp_shwthemes` WRITE;
/*!40000 ALTER TABLE `wp_shwthemes` DISABLE KEYS */;
INSERT INTO `wp_shwthemes` VALUES (1,'Theme1',1,'{\"layoutWidth\":\"100\",\"layoutAlign\":\"center\",\"layoutContainerBackground\":\"#ffffff\",\"view\":\"1\",\"gridItemWidth\":\"33\",\"gridItemDimension\":\"%\",\"gridItemFixedHeight\":\"true\",\"gridItemHeight\":\"270\",\"gridItemShowTitle\":\"true\",\"gridItemTitle1\":\"18\",\"gridItemTitle2\":\"#333333\",\"gridItemTitle3\":\"arial\",\"gridItemShowDescription\":\"false\",\"gridItemDescription1\":\"30\",\"gridItemDescription2\":\"#333333\",\"gridItemDescription3\":\"inherit\",\"gridItemShowPrice\":\"true\",\"gridItemShowPrice1\":\"16\",\"gridItemShowPrice2\":\"#333333\",\"gridItemShowPrice3\":\"inherit\",\"gridItemShowDiscountPrice\":\"true\",\"gridItemShowDiscountPrice1\":\"16\",\"gridItemShowDiscountPrice2\":\"#33acdd\",\"gridItemShowDiscountPrice3\":\"inherit\",\"gridItemMargin\":\"10\",\"gridItemBackgroundTransparency\":\"0\",\"gridItemBorderRadius\":\"5\",\"gridItemBackgroundColor\":\"#fafafa\",\"gridItemBackgroundColorHover\":\"#ececec\",\"itemPopupPopupWidth\":\"90\",\"itemPopupDimension\":\"%\",\"itemPopupBackground\":\"#fdfdfd\",\"itemPopupOverlayColor\":\"#000000\",\"itemPopupOverlayTransparency\":\"10\",\"itemPopupIconsColor\":\"#ffffff\",\"itemPopupTitle1\":\"30\",\"itemPopupTitle2\":\"#333333\",\"itemPopupTitle3\":\"inherit\",\"itemPopupDescription1\":\"16\",\"itemPopupDescription2\":\"#303030\",\"itemPopupDescription3\":\"inherit\",\"itemPopupPrice1\":\"24\",\"itemPopupPrice2\":\"#303030\",\"itemPopupPrice3\":\"inherit\",\"itemPopupDiscountPrice1\":\"24\",\"itemPopupDiscountPrice2\":\"#33acdd\",\"itemPopupDiscountPrice3\":\"inherit\",\"itemPopupLabels1\":\"20\",\"itemPopupLabels2\":\"#333333\",\"itemPopupLabels3\":\"inherit\",\"itemPopupAttributes1\":\"18\",\"itemPopupAttributes2\":\"#303030\",\"itemPopupAttributes3\":\"inherit\",\"itemPageTitle\":\"25\",\"itemPageTitleColor\":\"#333333\",\"itemPageTitleFontStyle\":\"inherit\",\"itemPageDescription\":\"14\",\"itemPageDescriptionColor\":\"#303030\",\"itemPageDescriptionFontStyle\":\"inherit\",\"itemPagePrice\":\"20\",\"itemPagePriceColor\":\"#303030\",\"itemPagePriceFontStyle\":\"inherit\",\"itemPageDiscountPrice\":\"20\",\"itemPageDiscountPriceColor\":\"#33acdd\",\"itemPageDiscountPriceFontStyle\":\"inherit\",\"itemPageLabele\":\"17\",\"itemPageLabeleColor\":\"#303030\",\"itemPageLabeleFontStyle\":\"inherit\",\"itemPageAttribute\":\"15\",\"itemPageAttributeColor\":\"#303030\",\"itemPageAttributeFontStyle\":\"inherit\",\"categoryButtonsPositionBtn\":\"left\",\"categoryButtonsTextSize\":\"14\",\"categoryButtonsText\":\"#262626\",\"categoryButtonsTextFontStyle\":\"arial\",\"categoryButtonsPaddingSize\":\"10\",\"categoryButtonsGapSpaceSize\":\"9\",\"categoryButtonsBackgroundColor\":\"#fcfcfc\",\"categoryButtonsBackgroundColorHover\":\"#fcfcfc\",\"categoryButtonsStyleLinkOrButton\":\"button\",\"categoryButtonsBorderColor\":\"#262626\",\"categoryButtonsBorderThickness\":\"1\",\"categoryButtonsBorderRadius\":\"3\",\"categoryButtonsBorderColorHover\":\"#33acdd\",\"orderingButtonsPositionBtn\":\"left\",\"orderingButtonsTextSize\":\"14\",\"orderingButtonsTextColor\":\"#262626\",\"orderingButtonsFontStyle\":\"arial\",\"orderingButtonsPadding\":\"5\",\"orderingButtonsGapSpace\":\"5\",\"orderingButtonsBackgroundColor\":\"#ffffff\",\"orderingButtonsBackgroundColorHover\":\"#ffffff\",\"orderingButtonsStyleButtonOrLink\":\"link\",\"orderingButtonsBorderColor\":\"#262626\",\"orderingButtonsBorderThickness\":\"2\",\"orderingButtonsBorderRadius\":\"5\",\"orderingButtonsBorderColorHover\":\"#33acdd\",\"searchFieldPosition\":\"left\",\"searchFieldPlaceholderText\":\"Search\",\"searchFieldTextSize\":\"14\",\"searchFieldTextColor\":\"#262626\",\"searchFieldTextFontStyle\":\"arial\",\"searchFieldBackground\":\"#ffffff\",\"searchFieldButtonIconColor\":\"#f8f4f4\",\"searchFieldButtonBackground\":\"#170000\",\"searchFieldPadding\":\"4\",\"searchFieldBorderColor\":\"FFF\",\"searchFieldBorderSize\":\"12\",\"searchFieldBorderRadius\":\"3\",\"searchFieldButtonBackgroundHover\":\"#33acdd\",\"loadMoreType\":\"scroll\",\"loadMoreLoadingIcons\":\"4\",\"loadMoreDefaultImagesCount\":\"15\",\"loadMorefaultCount\":\"15\",\"loadMoreButtonText\":\"See More\",\"loadMoreButtonTextSize\":\"14\",\"loadMoreButtonTextColor\":\"#d16868\",\"loadMoreButtonFontStyle\":\"arial\",\"loadMoreButtonPadding\":\"20\",\"loadMoreButtonBackgroundColor\":\"#c18282\",\"loadMoreButtonBackgroundColorHover\":\"#c72b2b\",\"loadMoreButtonBorderColor\":\"#ca7373\",\"loadMoreButtonBorderColorHover\":\"#e00d0d\",\"loadMoreBorderThickness\":\"6\",\"loadMoreBorderRadius\":\"6\",\"sliderEnableArrows\":\"true\",\"sliderArrowsColor\":\"#696969\",\"sliderArrowsColorHover\":\"#33acdd\",\"sliderEnableDots\":\"true\",\"sliderDotsColor\":\"#acacac\",\"sliderDotsColorActive\":\"#0c8fc7\",\"sliderSlidesToShow\":\"3\",\"sliderSlidesToScroll\":\"3\",\"sliderScrollSpeed\":\"1000\",\"sliderAutoPlay\":\"false\",\"sliderSlidesToShowHidden\":\"5\"}'),(2,'Theme2',2,'{\"layoutWidth\":\"100\",\"layoutAlign\":\"center\",\"layoutContainerBackground\":\"FFFFFF\",\"view\":\"1\",\"gridItemWidth\":\"25\",\"gridItemDimension\":\"%\",\"gridItemFixedHeight\":\"true\",\"gridItemHeight\":\"300\",\"gridItemShowTitle\":\"true\",\"gridItemTitle1\":\"16\",\"gridItemTitle2\":\"#cc6600\",\"gridItemTitle3\":\"inherit\",\"gridItemShowDescription\":\"true\",\"gridItemDescription1\":\"13\",\"gridItemDescription2\":\"#000000\",\"gridItemDescription3\":\"inherit\",\"gridItemShowPrice\":\"true\",\"gridItemShowPrice1\":\"14\",\"gridItemShowPrice2\":\"#000000\",\"gridItemShowPrice3\":\"inherit\",\"gridItemShowDiscountPrice\":\"true\",\"gridItemShowDiscountPrice1\":\"14\",\"gridItemShowDiscountPrice2\":\"#cc6600\",\"gridItemShowDiscountPrice3\":\"inherit\",\"gridItemMargin\":\"15\",\"gridItemBackgroundTransparency\":\"0\",\"gridItemBorderRadius\":\"0\",\"gridItemBackgroundColor\":\"#ffffff\",\"gridItemBackgroundColorHover\":\"#ffffff\",\"itemPopupPopupWidth\":\"80\",\"itemPopupDimension\":\"%\",\"itemPopupBackground\":\"#f8f8f8\",\"itemPopupOverlayColor\":\"#ffffff\",\"itemPopupOverlayTransparency\":\"14\",\"itemPopupIconsColor\":\"#cc6600\",\"itemPopupTitle1\":\"30\",\"itemPopupTitle2\":\"#febd69\",\"itemPopupTitle3\":\"inherit\",\"itemPopupDescription1\":\"16\",\"itemPopupDescription2\":\"#000000\",\"itemPopupDescription3\":\"inherit\",\"itemPopupPrice1\":\"22\",\"itemPopupPrice2\":\"#000000\",\"itemPopupPrice3\":\"inherit\",\"itemPopupDiscountPrice1\":\"22\",\"itemPopupDiscountPrice2\":\"#febd69\",\"itemPopupDiscountPrice3\":\"inherit\",\"itemPopupLabels1\":\"20\",\"itemPopupLabels2\":\"#000000\",\"itemPopupLabels3\":\"inherit\",\"itemPopupAttributes1\":\"18\",\"itemPopupAttributes2\":\"#686868\",\"itemPopupAttributes3\":\"inherit\",\"itemPageTitle\":\"30\",\"itemPageTitleColor\":\"#febd69\",\"itemPageTitleFontStyle\":\"inherit\",\"itemPageDescription\":\"16\",\"itemPageDescriptionColor\":\"#000000\",\"itemPageDescriptionFontStyle\":\"inherit\",\"itemPagePrice\":\"22\",\"itemPagePriceColor\":\"#050505\",\"itemPagePriceFontStyle\":\"inherit\",\"itemPageDiscountPrice\":\"22\",\"itemPageDiscountPriceColor\":\"#febd69\",\"itemPageDiscountPriceFontStyle\":\"inherit\",\"itemPageLabele\":\"20\",\"itemPageLabeleColor\":\"#000000\",\"itemPageLabeleFontStyle\":\"inherit\",\"itemPageAttribute\":\"18\",\"itemPageAttributeColor\":\"#686868\",\"itemPageAttributeFontStyle\":\"inherit\",\"categoryButtonsPositionBtn\":\"top\",\"categoryButtonsTextSize\":\"16\",\"categoryButtonsText\":\"#cc6600\",\"categoryButtonsTextFontStyle\":\"arial\",\"categoryButtonsPaddingSize\":\"10\",\"categoryButtonsGapSpaceSize\":\"0\",\"categoryButtonsBackgroundColor\":\"#ffffff\",\"categoryButtonsBackgroundColorHover\":\"#ffffff\",\"categoryButtonsStyleLinkOrButton\":\"link\",\"categoryButtonsBorderColor\":\"#febd69\",\"categoryButtonsBorderThickness\":\"3\",\"categoryButtonsBorderRadius\":\"2\",\"categoryButtonsBorderColorHover\":\"#cc6600\",\"orderingButtonsPositionBtn\":\"top\",\"orderingButtonsTextSize\":\"16\",\"orderingButtonsTextColor\":\"#ffffff\",\"orderingButtonsFontStyle\":\"arial\",\"orderingButtonsPadding\":\"10\",\"orderingButtonsGapSpace\":\"10\",\"orderingButtonsBackgroundColor\":\"#febd69\",\"orderingButtonsBackgroundColorHover\":\"#f3a847\",\"orderingButtonsStyleButtonOrLink\":\"button\",\"orderingButtonsBorderColor\":\"#cc6600\",\"orderingButtonsBorderThickness\":\"0\",\"orderingButtonsBorderRadius\":\"5\",\"orderingButtonsBorderColorHover\":\"#cc6600\",\"searchFieldPosition\":\"top\",\"searchFieldPlaceholderText\":\" \",\"searchFieldTextSize\":\"16\",\"searchFieldTextColor\":\"#080808\",\"searchFieldTextFontStyle\":\"arial\",\"searchFieldBackground\":\"#ffffff\",\"searchFieldButtonIconColor\":\"#ffffff\",\"searchFieldButtonBackground\":\"#febd69\",\"searchFieldPadding\":\"6\",\"searchFieldBorderColor\":\"FFF\",\"searchFieldBorderSize\":\"12\",\"searchFieldBorderRadius\":\"5\",\"searchFieldButtonBackgroundHover\":\"#f3a847\",\"loadMoreType\":\"button\",\"loadMoreLoadingIcons\":\"5\",\"loadMoreDefaultImagesCount\":\"20\",\"loadMorefaultCount\":\"10\",\"loadMoreButtonText\":\"See More\",\"loadMoreButtonTextSize\":\"16\",\"loadMoreButtonTextColor\":\"#ffffff\",\"loadMoreButtonFontStyle\":\"arial\",\"loadMoreButtonPadding\":\"10\",\"loadMoreButtonBackgroundColor\":\"#febd69\",\"loadMoreButtonBackgroundColorHover\":\"#f3a847\",\"loadMoreButtonBorderColor\":\"#cc6600\",\"loadMoreButtonBorderColorHover\":\"#cc6600\",\"loadMoreBorderThickness\":\"1\",\"loadMoreBorderRadius\":\"5\",\"sliderEnableArrows\":\"true\",\"sliderArrowsColor\":\"#f3a847\",\"sliderArrowsColorHover\":\"#cc6600\",\"sliderEnableDots\":\"true\",\"sliderDotsColor\":\"#f3a847\",\"sliderDotsColorActive\":\"#cc6600\",\"sliderSlidesToShow\":\"4\",\"sliderSlidesToScroll\":\"2\",\"sliderScrollSpeed\":\"1000\",\"sliderAutoPlay\":\"true\",\"sliderSlidesToShowHidden\":\"5\"}');
/*!40000 ALTER TABLE `wp_shwthemes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (31,2,0),(36,2,0),(92,3,0),(119,2,0),(120,3,0),(130,2,0),(131,3,0),(153,3,0),(180,2,0),(181,2,0),(184,3,0),(202,4,0),(207,4,0),(213,4,0),(216,4,0),(217,3,0),(221,2,0),(222,2,0),(229,4,0),(266,4,0),(273,2,0),(280,2,0),(283,2,0),(292,4,0),(302,3,0),(306,3,0),(308,2,0),(309,2,0),(348,3,0),(361,3,0),(373,3,0),(382,18,0),(395,18,0),(400,2,0),(401,2,0),(402,2,0),(408,18,0),(414,17,0),(416,19,0),(431,17,0),(432,19,0),(453,19,0),(469,21,0),(475,2,0),(476,2,0),(477,2,0),(478,2,0),(479,2,0),(481,2,0),(483,2,0),(485,2,0),(486,21,0),(504,19,0),(509,21,0),(511,21,0),(512,2,0),(514,2,0),(515,2,0),(516,2,0),(524,21,0),(528,22,0),(533,22,0),(536,22,0),(543,19,0),(545,22,0),(567,22,0),(572,19,0),(577,2,0),(578,2,0),(582,22,0),(583,23,0),(585,23,0),(587,23,0),(589,23,0),(591,23,0),(595,22,0),(609,19,0),(611,2,0),(615,22,0),(627,19,0),(629,2,0),(632,22,0),(646,2,0),(647,2,0),(648,2,0),(649,2,0),(650,2,0),(651,2,0),(652,2,0),(653,2,0),(654,2,0),(655,2,0),(656,2,0),(657,2,0),(658,2,0),(659,2,0),(660,2,0),(661,2,0),(665,1,0),(1272,2,0),(1342,2,0),(1372,30,0),(1376,32,0),(1379,32,0),(1381,32,0),(1385,2,0),(1388,2,0),(1389,32,0),(1391,32,0),(1393,32,0),(1395,32,0),(1397,32,0),(1399,32,0),(1401,32,0),(1401,35,0),(1403,32,0),(1406,32,0),(1408,32,0),(1410,32,0),(1412,32,0),(1414,32,0),(1416,32,0),(1419,32,0),(1423,32,0),(1429,32,0),(1434,33,0),(1436,32,0),(1450,32,0),(1452,32,0),(1454,32,0),(1457,32,0),(1459,32,0),(1461,32,0),(1463,32,0),(1468,2,0),(1469,33,0),(1471,33,0),(1473,33,0),(1475,33,0),(1480,33,0),(1482,33,0),(1484,33,0),(1486,33,0),(1488,33,0),(1490,33,0),(1492,33,0),(1494,33,0),(1496,33,0),(1498,33,0),(1500,33,0),(1502,33,0),(1504,33,0),(1506,33,0),(1508,33,0),(1510,33,0),(1512,33,0),(1514,33,0),(1516,33,0),(1518,33,0),(1520,33,0),(1524,34,0),(1526,34,0),(1528,2,0),(1530,34,0),(1532,34,0),(1535,34,0),(1537,34,0),(1539,34,0),(1541,34,0),(1547,30,0),(1558,1,0),(1614,17,0),(1667,17,0),(1669,17,0),(1750,2,0),(1751,2,0),(1820,20,0),(1831,20,0),(1837,20,0),(1845,20,0),(1852,2,0),(2009,35,0),(2012,35,0),(2014,35,0),(2020,35,0),(2020,38,0),(2024,35,0),(2024,40,0),(2028,35,0),(2082,32,0),(2082,40,0),(2345,32,0),(2345,38,0),(2353,32,0),(2355,33,0),(2362,30,0),(2362,32,0),(2384,37,0),(2429,37,0),(2431,37,0),(2433,37,0),(2436,37,0),(2442,37,0),(2444,37,0),(2446,37,0),(2449,37,0),(2459,37,0),(2461,37,0),(2463,37,0),(2485,37,0),(2489,37,0),(2491,37,0),(2493,37,0),(2495,37,0),(2497,37,0),(2499,37,0),(2501,32,0),(2503,32,0),(2510,37,0),(2533,37,0),(2534,2,0),(2535,2,0),(2540,2,0),(2544,2,0),(2550,37,0),(2552,37,0),(2554,37,0),(2555,32,0),(2558,37,0),(2560,37,0),(2561,17,0),(2561,38,0),(2561,39,0),(2565,17,0),(2565,38,0),(2565,39,0),(2574,37,0),(2579,37,0),(2581,37,0),(2583,37,0),(2585,37,0),(2586,17,0),(2586,39,0),(2586,40,0),(2591,37,0),(2592,32,0),(2596,37,0),(2599,37,0),(2601,37,0),(2603,37,0),(2604,37,0),(2605,37,0),(2607,37,0),(2609,37,0),(2611,32,0),(2619,37,0),(2622,37,0),(2627,37,0),(2630,37,0),(2633,37,0),(2636,37,0),(2639,37,0),(2642,37,0),(2645,37,0),(2648,37,0),(2650,32,0),(2655,37,0),(2658,37,0),(2661,37,0),(2664,37,0),(2665,21,0),(2670,2,0),(2673,37,0),(2676,37,0),(2679,37,0),(2682,37,0),(2684,37,0),(2687,37,0),(2690,37,0),(2697,33,0),(2701,37,0),(2702,37,0),(2703,37,0),(2704,37,0),(2705,37,0),(2706,37,0),(2707,37,0),(2708,37,0),(2709,37,0),(2710,37,0),(2711,37,0),(2712,37,0),(2714,37,0),(2717,37,0),(2720,37,0),(2723,37,0),(2745,37,0),(2756,37,0),(2760,20,0),(2760,21,0),(2764,2,0),(2767,37,0),(2768,37,0),(2771,37,0),(2773,32,0),(2775,32,0),(2788,37,0),(2791,37,0),(2794,37,0),(2798,37,0),(2801,37,0),(2837,37,0),(2840,37,0),(2850,37,0),(2854,37,0),(2857,37,0),(2858,32,0),(2863,37,0),(2865,32,0),(2869,37,0),(2872,37,0),(2875,37,0),(2879,37,0),(2892,32,0),(2894,32,0),(2898,32,0),(2912,32,0),(2915,32,0),(3134,32,0),(3199,32,0),(3297,32,0),(3301,32,0),(3306,32,0),(3409,32,0),(3416,34,0),(3484,32,0),(3492,2,0),(3511,32,0),(3526,32,0),(3540,32,0),(3547,30,0),(3547,32,0),(3584,32,0),(3638,32,0),(3638,33,0),(3677,32,0),(3677,33,0),(4556,2,0),(5157,32,0),(5169,32,0),(5180,32,0),(5446,32,0),(5459,32,0),(5474,32,0),(5500,32,0),(5513,32,0),(5522,32,0),(5540,32,0),(5589,34,0),(5598,32,0),(5605,32,0),(5633,32,0),(5651,32,0),(5657,32,0),(5676,32,0),(5686,32,0),(5694,1,0),(5704,1,0),(5715,1,0),(5728,32,0),(5736,1,0),(5747,32,0),(5760,30,0),(5773,32,0),(5783,32,0),(5795,32,0),(5798,32,0),(5815,32,0),(5827,32,0),(5835,32,0),(5847,32,0),(5858,1,0),(5860,30,0),(5877,30,0),(5889,1,0),(5895,30,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,5),(2,2,'nav_menu','',0,65),(3,3,'category','',4,11),(4,4,'category','',0,7),(8,8,'post_tag','',0,0),(17,17,'category','',0,8),(18,18,'category','',17,3),(19,19,'category','',4,8),(20,20,'category','',0,1),(21,21,'category','Suffering from a Chronic Pain from a back injury, or a work related injury, or a sports injury, Prolotherapy by Dr. Fields can help you in getting the relief from your chronic pain.',20,7),(22,22,'category','',20,9),(23,23,'category','',19,0),(30,30,'category','',0,6),(32,32,'category','',30,87),(33,33,'category','',30,28),(34,34,'category','Click on cover to read article. July 2014 Stem Cell Prolotherapy February/March 2014 Elbow Injuries January 2014 Low Back December 2013 Hip Joint Octo...',30,10),(35,35,'category','Prolotherapy, Prolotherapy Research on Knee Pain, Elbow Pain, Ankle and Foot Pain, Finger Pain and More.',30,7),(36,36,'flamingo_inbound_channel','',0,0),(37,37,'flamingo_inbound_channel','',36,77),(38,38,'post_tag','',0,4),(39,39,'post_tag','',0,3),(40,40,'post_tag','',0,3);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Top navigation','top-navigation',0),(3,'The Athletic Doc','the-athletic-doc',0),(4,'About','about',0),(8,'Fees &amp; Policies','fees-policies',0),(17,'Regenerative Techniques','regenerative-techniques',0),(18,'Dextrose Prolotherapy','dextrose-prolotherapy',0),(19,'Philanthropy','philanthropy',0),(20,'Conditions','conditions',0),(21,'Chronic Pain','chronic-pain',0),(22,'Sports Injuries','sports-injuries',0),(23,'Honduras','honduras',0),(30,'Articles','articles',0),(32,'Regenerative Orthopedics','regenerative-orthopedics',0),(33,'Health News','health-news',0),(34,'Magazine Column','magazine-column',0),(35,'Prolotherapy Research','prolotherapy-research',0),(36,'Contact Form 7','contact-form-7',0),(37,'Contact page form','contact-form-1',0),(38,'Regenerative Orthopedics','regenerative-orthopedics',0),(39,'PRP Los Angeles','prp-los-angeles',0),(40,'Stem Cell Doctor in Santa Monica','stem-cell-doctor-in-santa-monica',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=414 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (202,8,'nickname','Peter A. Fields, MD, DC'),(203,8,'first_name','Peter'),(204,8,'last_name','Fields'),(205,8,'description',''),(206,8,'rich_editing','true'),(207,8,'syntax_highlighting','true'),(208,8,'comment_shortcuts','false'),(209,8,'admin_color','fresh'),(210,8,'use_ssl','0'),(211,8,'show_admin_bar_front','true'),(212,8,'locale',''),(213,8,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(214,8,'wp_user_level','0'),(215,8,'_yoast_wpseo_profile_updated','1656541286'),(216,8,'dismissed_wp_pointers','theme_editor_notice,text_widget_custom_html'),(217,8,'last_login_time','2023-09-18 17:16:32'),(219,8,'wp_dashboard_quick_press_last_post_id','5888'),(220,8,'community-events-location','a:1:{s:2:\"ip\";s:11:\"47.155.28.0\";}'),(221,8,'wp_user-settings','editor=html&hidetb=1&libraryContent=browse&align=right&imgsize=medium&advImgDetails=show&editor_plain_text_paste_warning=2&urlbutton=none'),(222,8,'wp_user-settings-time','1695176944'),(224,8,'wpseo_title',''),(225,8,'wpseo_metadesc',''),(226,8,'wpseo_noindex_author',''),(227,8,'wpseo_content_analysis_disable',''),(228,8,'wpseo_keyword_analysis_disable',''),(229,8,'facebook',''),(230,8,'instagram',''),(231,8,'linkedin',''),(232,8,'myspace',''),(233,8,'pinterest',''),(234,8,'soundcloud',''),(235,8,'tumblr',''),(236,8,'twitter',''),(237,8,'youtube',''),(238,8,'wikipedia',''),(241,8,'edit_page_per_page','200'),(243,8,'manageedit-pagecolumnshidden','a:3:{i:0;s:6:\"author\";i:1;s:11:\"wpseo-title\";i:2;s:13:\"wpseo-focuskw\";}'),(246,9,'nickname','debi-brinker'),(247,9,'first_name','Debi'),(248,9,'last_name','Brinker'),(249,9,'description',''),(250,9,'rich_editing','true'),(251,9,'syntax_highlighting','true'),(252,9,'comment_shortcuts','false'),(253,9,'admin_color','fresh'),(254,9,'use_ssl','0'),(255,9,'show_admin_bar_front','true'),(256,9,'locale',''),(257,9,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(258,9,'wp_user_level','10'),(259,9,'_yoast_wpseo_profile_updated','1656541205'),(260,9,'dismissed_wp_pointers',''),(262,9,'wp_dashboard_quick_press_last_post_id','5882'),(263,9,'community-events-location','a:1:{s:2:\"ip\";s:12:\"204.154.23.0\";}'),(264,10,'nickname','peter-fields'),(265,10,'first_name','Peter'),(266,10,'last_name','Fields'),(267,10,'description',''),(268,10,'rich_editing','true'),(269,10,'syntax_highlighting','true'),(270,10,'comment_shortcuts','false'),(271,10,'admin_color','fresh'),(272,10,'use_ssl','0'),(273,10,'show_admin_bar_front','true'),(274,10,'locale',''),(275,10,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(276,10,'wp_user_level','10'),(277,10,'_yoast_wpseo_profile_updated','1656540932'),(278,10,'dismissed_wp_pointers',''),(279,10,'wpseo_title',''),(280,10,'wpseo_metadesc',''),(281,10,'wpseo_noindex_author',''),(282,10,'wpseo_content_analysis_disable',''),(283,10,'wpseo_keyword_analysis_disable',''),(284,10,'facebook',''),(285,10,'instagram',''),(286,10,'linkedin',''),(287,10,'myspace',''),(288,10,'pinterest',''),(289,10,'soundcloud',''),(290,10,'tumblr',''),(291,10,'twitter',''),(292,10,'youtube',''),(293,10,'wikipedia',''),(294,9,'wp_user-settings','libraryContent=browse&advImgDetails=show&editor=tinymce&hidetb=0&mfold=o'),(295,9,'wp_user-settings-time','1599942569'),(296,10,'session_tokens','a:1:{s:64:\"c9bc8b4d84e1710bbee357a493e8476e4ed70b063b8d56e8f6482d152b3ca933\";a:4:{s:10:\"expiration\";i:1667151195;s:2:\"ip\";s:13:\"172.251.169.3\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36\";s:5:\"login\";i:1666978395;}}'),(297,10,'wp_dashboard_quick_press_last_post_id','5557'),(298,10,'community-events-location','a:1:{s:2:\"ip\";s:13:\"172.251.169.0\";}'),(316,8,'nav_menu_recently_edited','2'),(317,8,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(318,8,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(362,9,'closedpostboxes_post','a:1:{i:0;s:11:\"categorydiv\";}'),(363,9,'metaboxhidden_post','a:7:{i:0;s:11:\"postexcerpt\";i:1;s:13:\"trackbacksdiv\";i:2;s:10:\"postcustom\";i:3;s:16:\"commentstatusdiv\";i:4;s:11:\"commentsdiv\";i:5;s:7:\"slugdiv\";i:6;s:9:\"authordiv\";}'),(366,9,'closedpostboxes_dashboard','a:0:{}'),(367,9,'metaboxhidden_dashboard','a:0:{}'),(383,9,'rocket_boxes','a:1:{i:1;s:34:\"rocket_warning_plugin_modification\";}'),(390,8,'gform_recent_forms','a:1:{i:0;s:1:\"1\";}'),(391,10,'gform_recent_forms','a:1:{i:0;s:1:\"1\";}'),(392,9,'wpseo_title',''),(393,9,'wpseo_metadesc',''),(394,9,'wpseo_noindex_author',''),(395,9,'wpseo_content_analysis_disable',''),(396,9,'wpseo_keyword_analysis_disable',''),(397,9,'facebook',''),(398,9,'instagram',''),(399,9,'linkedin',''),(400,9,'myspace',''),(401,9,'pinterest',''),(402,9,'soundcloud',''),(403,9,'tumblr',''),(404,9,'twitter',''),(405,9,'youtube',''),(406,9,'wikipedia',''),(408,9,'gform_recent_forms','a:1:{i:0;s:1:\"1\";}'),(409,9,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:155:\"dashboard_php_nag,rg_forms_dashboard,dashboard_site_health,dashboard_right_now,dashboard_activity,wpseo-dashboard-overview,wp_mail_smtp_reports_widget_lite\";s:4:\"side\";s:39:\"dashboard_quick_press,dashboard_primary\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s:0:\"\";}'),(410,8,'wp_media_library_mode','grid'),(411,8,'session_tokens','a:2:{s:64:\"57ea5d25b449d669fed85582c400eaf8a5e4a38f4ab517164edd042a26e00295\";a:4:{s:10:\"expiration\";i:1695349606;s:2:\"ip\";s:13:\"45.136.131.40\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36\";s:5:\"login\";i:1695176806;}s:64:\"293b42ab685343cbea5b77406a134443b26a57b7b9ef07adfb1d105af5ae0568\";a:4:{s:10:\"expiration\";i:1695422920;s:2:\"ip\";s:13:\"47.155.28.252\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36\";s:5:\"login\";i:1695250120;}}'),(412,9,'session_tokens','a:2:{s:64:\"3205d97e3e55bd7ad7758418325b5f69d0f76b2352396e4ef695f6039ed42344\";a:4:{s:10:\"expiration\";i:1695410139;s:2:\"ip\";s:12:\"204.154.23.1\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15\";s:5:\"login\";i:1695237339;}s:64:\"271182789ca3c7eaf3d64e1f95abe510eeb2eb1185824446fbee4d405dbb433d\";a:4:{s:10:\"expiration\";i:1695492053;s:2:\"ip\";s:14:\"173.231.218.25\";s:2:\"ua\";s:80:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/117.0\";s:5:\"login\";i:1695319253;}}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (8,'website-admin','$P$BV383VfwsStE0Ubbt.IDzsQKva3617.','website-admin','webmaster@webstractmarketing.com','','2019-10-16 20:17:10','',0,'Peter A. Fields, MD, DC'),(9,'debi-brinker','$P$BUqkEcUbHcJ72SPWYnqIQRuTokNV9J.','debi-brinker','brinkerd@yahoo.com','','2019-11-26 22:16:45','',0,'Debi Brinker'),(10,'peter-fields','$P$BqM3/RzklE4w7smV/KNIyelMgnRqSB1','peter-fields','info@drfields.com','','2019-11-27 21:58:36','',0,'Peter Fields');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_web_paceportfolio_images`
--

DROP TABLE IF EXISTS `wp_web_paceportfolio_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_web_paceportfolio_images` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) DEFAULT NULL,
  `portfolio_id` varchar(200) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `image_url` text DEFAULT NULL,
  `sl_url` text DEFAULT NULL,
  `sl_type` text NOT NULL,
  `link_target` text NOT NULL,
  `ordering` int(11) NOT NULL,
  `published` tinyint(4) unsigned DEFAULT NULL,
  `published_in_sl_width` tinyint(4) unsigned DEFAULT NULL,
  `category` text NOT NULL,
  `web_pace_loadDate` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_web_paceportfolio_images`
--

LOCK TABLES `wp_web_paceportfolio_images` WRITE;
/*!40000 ALTER TABLE `wp_web_paceportfolio_images` DISABLE KEYS */;
INSERT INTO `wp_web_paceportfolio_images` VALUES (1,'Marshall Music Box','1','<p><p>Revolutionise the way you listen to music with Marshall Voice. Marshall Voice combines the legendary sound of Marshall with the helpfulness of voice activation to create the world’s greatest sounding smart speakers. Depending on which ecosystem you choose, you can play music, schedule reminders, control your smart home and more – all with the power of your voice.</p><p>The Marshall Wireless Multi-Room Speaker System is an unparalleled listening experience for your home. Consider this system your backstage pass to every song on the planet, as each speaker in the range features multiple ways to connect and listen to your favourite tunes.</p>','https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/marshal-1.jpg;https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/marshal-1.1.jpg;https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/marshal-1.2.jpg;','http://webpace.net/wordpress-photo-portfolio-gallery-plugin/','image','on',1,1,NULL,'','2019-06-12 08:08:58'),(2,'History of coffee','1','<h6>Coffee</h6><p>The history of coffee dates back to the 15th century, and possibly earlier with a number of reports and legends surrounding its first use. The native (undomesticated) origin of coffee is thought to have been Ethiopia, with several mythical accounts but no solid evidence.</p>','https://vimeo.com/82547176;https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/coffee-2.1.jpg;https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/coffee-2.2.jpg;','http://webpace.net/wordpress-photo-portfolio-gallery-plugin/','video','on',2,1,NULL,'','2019-06-12 08:08:58'),(3,'Iphone','1','<h6>Iphone </h6><p>The iPhone is one of the world’s most iconic devices and, in the grand scheme of things, it isn’t very old. But when did it begin? Where did the idea come from? </p><p>EThe very first iPhone was unveiled in January 2007 at the MacWorld convention. Steve Jobs revealed what Apple had been developing for nearly 3 years and, for its time, it represented the cutting edge of technology.</p><p>The device was introduced as an iPod with a wider screen, controlled by touch instead of physical buttons. In short, it was a mobile phone and a device to communicate with the internet. At the time, Jobs told the audience that this device would “reinvent the phone”.</p>','https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/iphone-3.jpg;https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/iphone-3.1.jpg;https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/3.2.jpg:https://www.youtube.com/watch?v=YMQdfGFK5XQ;','http://webpace.net/wordpress-photo-portfolio-gallery-plugin/','image','on',3,1,NULL,'','2019-06-12 08:08:58'),(4,'Designer','1','<p>Designer is a general term for a person who makes designs for objects. In usage the term is requires specific context, for example a fashion designer designs clothing, a web designer designs web pages, and an automobile designer designs automobiles. In each case, the designer works with the help of a technician or engineer who understands deeper level concepts of manufacturing and engineering, and the designer themself is largely confined to work at a surface level.</p><p>Classically, the main area of design was only architecture, which was understood as the major arts. The design of clothing, furniture, and other common artifacts were left mostly to tradition or artisans specializing in hand making them.</p>','https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/designer-4.jpg;https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/designer-4.1.jpg;https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/designer-4.2.jpg;','http://webpace.net/wordpress-photo-portfolio-gallery-plugin/','image','on',4,1,NULL,'','2019-06-12 08:08:58'),(5,'Shoes','1','<h6>Shoes</h6><p>A shoe is an item of footwear intended to protect and comfort the human foot while the wearer is doing various activities. Shoes are also used as an item of decoration and fashion. The design of shoes has varied enormously through time and from culture to culture, with appearance originally being tied to function. Additionally, fashion has often dictated many design elements, such as whether shoes have very high heels or flat ones. Contemporary footwear in the 2010s varies widely in style, complexity and cost. Basic sandals may consist of only a thin sole and simple strap and be sold for a low cost. High fashion shoes made by famous designers may be made of expensive materials, use complex construction and sell for hundreds or even thousands of dollars a pair. Some shoes are designed for specific purposes, such as boots designed specifically for mountaineering or skiing.</p>','https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/shoes-5.jpg;','http://webpace.net/wordpress-photo-portfolio-gallery-plugin/','image','on',5,1,NULL,'','2019-06-12 08:08:58'),(6,'Retro Cars','1','<p>A classic car is an older automobile; the exact definition varies around the world. The common theme is of an older car with enough historical interest to be collectable and worth preserving or restoring rather than scrapping.</p>','https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/retro-6.jpg;https://vimeo.com/80514062;https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/retro-6.1.jpg;https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/retro-6.2.jpg;','http://webpace.net/wordpress-photo-portfolio-gallery-plugin/','image','on',6,1,NULL,'','2019-06-12 08:08:58'),(7,'Drone Photos','1','<h6>Drone Photos</h6><p>Yet innovators ranging from civil engineers to students still in their teens have been experimenting with intriguing new ideas for how these unmanned aerial vehicles could solve real-world problems. Here are five Redshift stories about aerial drones that point toward the future of construction, art, and disaster response.</p>','https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/drone-7.jpg;https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/drone-7.2.jpg;https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/drone-7.3.jpg;','http://webpace.net/wordpress-photo-portfolio-gallery-plugin/','image','on',7,1,NULL,'','2019-06-12 08:08:58'),(8,'Glasses','1','<h6>Glasses </h6><p>Glasses, also known as eyeglasses or spectacles, are devices consisting of glass or hard plastic lenses mounted in a frame that holds them in front of a persons eyes, typically using a bridge over the nose and arms which rest over the ears.</p><p>Glasses are typically used for vision correction, such as with reading glasses and glasses used for nearsightedness.</p>','https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/glasses-8.jpg;https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/glasses-8.1.jpg;https://www.drfields.com/wp-content/plugins/photo-portfolio-gallery/assets/images/front_images/projects/glasses-8.3.jpg;','http://webpace.net/wordpress-photo-portfolio-gallery-plugin/','image','on',8,1,NULL,'','2019-06-12 08:08:58'),(9,'','1','','https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg;','https://www.youtube.com/watch?v=Hp4lUuSalOE','video','',0,1,1,'','2019-06-12 08:10:01');
/*!40000 ALTER TABLE `wp_web_paceportfolio_images` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_web_paceportfolio_portfolios`
--

DROP TABLE IF EXISTS `wp_web_paceportfolio_portfolios`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_web_paceportfolio_portfolios` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL,
  `sl_height` int(11) unsigned DEFAULT NULL,
  `sl_width` int(11) unsigned DEFAULT NULL,
  `pause_on_hover` text DEFAULT NULL,
  `portfolio_list_effects_s` text DEFAULT NULL,
  `description` text DEFAULT NULL,
  `param` text DEFAULT NULL,
  `sl_position` text NOT NULL,
  `ordering` int(11) NOT NULL,
  `published` text DEFAULT NULL,
  `categories` text NOT NULL,
  `ht_show_sorting` varchar(3) NOT NULL DEFAULT 'off',
  `ht_show_filtering` varchar(3) NOT NULL DEFAULT 'off',
  `autoslide` varchar(5) NOT NULL DEFAULT 'on',
  `show_loading` varchar(3) NOT NULL DEFAULT 'on',
  `loading_icon_type` int(2) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_web_paceportfolio_portfolios`
--

LOCK TABLES `wp_web_paceportfolio_portfolios` WRITE;
/*!40000 ALTER TABLE `wp_web_paceportfolio_portfolios` DISABLE KEYS */;
INSERT INTO `wp_web_paceportfolio_portfolios` VALUES (1,'My First Portfolio',375,1111,'on','2','4000','1000','off',1,'300','My_First_Category,My_Second_Category,My_Third_Category,','off','off','on','on',1);
/*!40000 ALTER TABLE `wp_web_paceportfolio_portfolios` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpfm_backup`
--

DROP TABLE IF EXISTS `wp_wpfm_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpfm_backup` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `backup_name` text DEFAULT NULL,
  `backup_date` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpfm_backup`
--

LOCK TABLES `wp_wpfm_backup` WRITE;
/*!40000 ALTER TABLE `wp_wpfm_backup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpfm_backup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpmailsmtp_debug_events`
--

DROP TABLE IF EXISTS `wp_wpmailsmtp_debug_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpmailsmtp_debug_events` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `content` text DEFAULT NULL,
  `initiator` text DEFAULT NULL,
  `event_type` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpmailsmtp_debug_events`
--

LOCK TABLES `wp_wpmailsmtp_debug_events` WRITE;
/*!40000 ALTER TABLE `wp_wpmailsmtp_debug_events` DISABLE KEYS */;
INSERT INTO `wp_wpmailsmtp_debug_events` VALUES (1,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-06-17 05:46:05'),(2,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-06-17 16:13:19'),(3,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-06-20 23:48:41'),(4,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-06-21 06:36:03'),(5,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-06-22 08:02:13'),(6,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-06-24 00:24:59'),(7,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-06-24 05:19:10'),(8,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-06-24 05:25:08'),(9,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-06-24 22:41:36'),(10,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-06-26 08:44:58'),(11,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-06-27 15:03:15'),(12,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-06-29 02:49:50'),(13,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-06-30 00:07:09'),(14,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-06-30 05:18:40'),(15,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-06-30 19:11:55'),(16,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-02 03:12:20'),(17,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-03 11:49:29'),(18,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-03 13:58:41'),(19,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-03 16:06:15'),(20,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-06 06:57:12'),(21,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-07 03:59:25'),(22,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-07 22:38:03'),(23,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-10 05:59:34'),(24,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-15 15:05:23'),(25,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-16 02:53:01'),(26,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-22 21:19:19'),(27,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-23 13:12:58'),(28,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-23 17:47:04'),(29,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-24 04:59:57'),(30,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-27 04:06:11'),(31,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-27 07:58:16'),(32,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-28 06:57:19'),(33,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-07-30 21:27:10'),(34,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-04 00:45:06'),(35,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-04 17:29:36'),(36,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-04 22:33:37'),(37,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-08 00:22:29'),(38,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-09 13:25:40'),(39,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-10 04:59:26'),(40,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-11 05:23:46'),(41,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-11 20:50:25'),(42,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-12 17:30:50'),(43,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-16 10:37:02'),(44,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-18 04:53:01'),(45,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-19 11:26:04'),(46,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-22 16:41:44'),(47,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-23 01:47:38'),(48,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-23 18:39:18'),(49,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-24 03:53:40'),(50,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-27 10:51:36'),(51,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-30 04:04:38'),(52,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-30 07:32:44'),(53,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-31 01:59:07'),(54,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-31 07:38:57'),(55,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-31 12:24:23'),(56,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-08-31 20:37:30'),(57,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-01 02:39:28'),(58,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-01 13:43:02'),(59,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-01 22:31:39'),(60,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-01 23:10:29'),(61,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-02 04:44:41'),(62,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-04 03:17:14'),(63,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-04 09:58:02'),(64,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-06 02:18:55'),(65,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-06 12:55:18'),(66,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-06 23:24:22'),(67,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-07 00:00:02'),(68,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-12 06:14:21'),(69,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-13 00:45:11'),(70,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-13 02:37:47'),(71,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-15 07:35:04'),(72,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-16 01:12:21'),(73,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-19 06:49:31'),(74,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-21 03:21:02'),(75,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-21 04:13:12'),(76,'Mailer: Other SMTP\r\nSMTP Error: Could not authenticate.','{\"file\":\"\\/home\\/drfiel5\\/public_html\\/wp-content\\/plugins\\/gravityforms\\/common.php\",\"line\":2195}',0,'2023-09-22 01:02:36');
/*!40000 ALTER TABLE `wp_wpmailsmtp_debug_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpmailsmtp_tasks_meta`
--

DROP TABLE IF EXISTS `wp_wpmailsmtp_tasks_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpmailsmtp_tasks_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `action` varchar(255) NOT NULL,
  `data` longtext NOT NULL,
  `date` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=133 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpmailsmtp_tasks_meta`
--

LOCK TABLES `wp_wpmailsmtp_tasks_meta` WRITE;
/*!40000 ALTER TABLE `wp_wpmailsmtp_tasks_meta` DISABLE KEYS */;
INSERT INTO `wp_wpmailsmtp_tasks_meta` VALUES (132,'wp_mail_smtp_admin_notifications_update','W10=','2023-09-20 22:48:57');
/*!40000 ALTER TABLE `wp_wpmailsmtp_tasks_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpr_rocket_cache`
--

DROP TABLE IF EXISTS `wp_wpr_rocket_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpr_rocket_cache` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(2000) NOT NULL DEFAULT '',
  `status` varchar(255) NOT NULL DEFAULT '',
  `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_accessed` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `url` (`url`(191)),
  KEY `modified` (`modified`),
  KEY `last_accessed` (`last_accessed`)
) ENGINE=MyISAM AUTO_INCREMENT=368 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpr_rocket_cache`
--

LOCK TABLES `wp_wpr_rocket_cache` WRITE;
/*!40000 ALTER TABLE `wp_wpr_rocket_cache` DISABLE KEYS */;
INSERT INTO `wp_wpr_rocket_cache` VALUES (2,'https://www.drfields.com/tag/prp-los-angeles','in-progress','2022-11-02 00:04:16','2022-11-02 00:04:16'),(3,'https://www.drfields.com/tag/regenerative-orthopedics','in-progress','2022-11-02 00:04:16','2022-11-02 00:04:16'),(4,'https://www.drfields.com/tag/stem-cell-doctor-in-santa-monica','completed','2022-11-02 00:25:47','2022-11-02 00:25:47'),(5,'https://www.drfields.com/articles/health-news/an-adequate-supply-of-antioxidant-nutrients','in-progress','2022-11-02 00:04:19','2022-11-02 00:04:19'),(6,'https://www.drfields.com/articles/health-news/health-concerns-about-dairy-products','completed','2022-11-02 00:25:48','2022-11-02 00:25:48'),(7,'https://www.drfields.com/articles/health-news/dementia-diet-exercise-and-supplements-can-help','completed','2022-11-02 00:25:49','2022-11-02 00:25:49'),(8,'https://www.drfields.com/articles/health-news/improve-sports-performance-with-co-q','completed','2022-11-02 00:25:50','2022-11-02 00:25:50'),(9,'https://www.drfields.com/articles/health-news/delicious-meat-alternatives','completed','2022-11-02 00:25:50','2022-11-02 00:25:50'),(10,'https://www.drfields.com/about/philanthropy/honduras-2006','completed','2022-11-02 00:25:51','2022-11-02 00:25:51'),(11,'https://www.drfields.com/regenerative-techniques/regenerative-orthopedics-a-rejuvenated-you','completed','2022-11-02 00:25:52','2022-11-02 00:25:52'),(12,'https://www.drfields.com/regenerative-techniques/the-gold-standard-stem-cell-doctor-in-santa-monica','completed','2022-11-02 00:25:53','2022-11-02 00:25:53'),(13,'https://www.drfields.com/about/prolotherapy-doctor','completed','2022-11-02 00:25:54','2022-11-02 00:25:54'),(14,'https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman','completed','2022-11-02 00:25:54','2022-11-02 00:25:54'),(15,'https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman','completed','2022-11-02 00:25:55','2022-11-02 00:25:55'),(16,'https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman','completed','2022-11-02 00:25:56','2022-11-02 00:25:56'),(17,'https://www.drfields.com/articles/regenerative-orthopedics/joint-surgery-think-again-learn-about-prolotherapy','completed','2022-11-02 00:05:54','2022-11-02 00:05:54'),(18,'https://www.drfields.com/articles/health-news/dr-sinatras-list-of-top-doctors-list','completed','2022-11-02 00:05:55','2022-11-02 00:05:55'),(19,'https://www.drfields.com/articles/regenerative-orthopedics/how-to-avoid-joint-live-pain-free-with-regenerative-orthopedics','completed','2022-11-02 00:05:56','2022-11-02 00:05:56'),(20,'https://www.drfields.com/about/prp-los-angeles-doctor','completed','2022-11-02 00:05:56','2022-11-02 00:05:56'),(21,'https://www.drfields.com/articles/regenerative-orthopedics/neurologic-problems-after-epidural-corticosteroid-injections','in-progress','2022-11-02 00:04:52','2022-11-02 00:04:52'),(22,'https://www.drfields.com/articles/regenerative-orthopedics/regenerative-medicine-lecture-in-mexico-city-english','in-progress','2022-11-02 00:04:53','2022-11-02 00:04:53'),(23,'https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements','in-progress','2022-11-02 00:04:54','2022-11-02 00:04:54'),(24,'https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different','in-progress','2022-11-02 00:04:54','2022-11-02 00:04:54'),(25,'https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working','completed','2022-11-02 00:30:18','2022-11-02 00:30:18'),(26,'https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes','in-progress','2022-11-02 00:04:56','2022-11-02 00:04:56'),(27,'https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment','in-progress','2022-11-02 00:04:57','2022-11-02 00:04:57'),(28,'https://www.drfields.com/articles/magazine-column/townsend-letter-arthritis','completed','2022-11-02 00:25:38','2022-11-02 00:25:38'),(29,'https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment','in-progress','2022-11-02 00:04:59','2022-11-02 00:04:59'),(30,'https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain','in-progress','2022-11-02 00:05:00','2022-11-02 00:05:00'),(31,'https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-and-toe-pain','completed','2022-11-02 00:05:00','2022-11-02 00:05:00'),(32,'https://www.drfields.com/articles/regenerative-orthopedics/why-regenerative-orthopedics-are-the-ideal-sports-medicine','completed','2022-11-02 00:05:01','2022-11-02 00:05:01'),(33,'https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined','completed','2022-11-02 00:05:02','2022-11-02 00:05:02'),(34,'https://www.drfields.com/articles/regenerative-orthopedics/snapping-hip-syndrome','completed','2022-11-02 00:05:03','2022-11-02 00:05:03'),(35,'https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears','completed','2022-11-02 00:05:04','2022-11-02 00:05:04'),(36,'https://www.drfields.com/articles/regenerative-orthopedics/active-and-looking-to-avoid-joint-replacement','completed','2022-11-02 00:05:05','2022-11-02 00:05:05'),(37,'https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries','completed','2022-11-02 00:05:07','2022-11-02 00:05:07'),(38,'https://www.drfields.com/articles/regenerative-orthopedics/the-glenoid-labrum-of-the-shoulder','completed','2022-11-02 00:05:08','2022-11-02 00:05:08'),(39,'https://www.drfields.com/articles/health-news/can-surgery-cause-strokes','completed','2022-11-02 00:05:08','2022-11-02 00:05:08'),(40,'https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully','completed','2022-11-02 00:05:09','2022-11-02 00:05:09'),(41,'https://www.drfields.com/articles/health-news/dont-fear-the-fear-itself','completed','2022-11-02 00:05:10','2022-11-02 00:05:10'),(42,'https://www.drfields.com/articles/regenerative-orthopedics/is-surgery-a-good-option-for-meniscus-tears','completed','2022-11-02 00:05:11','2022-11-02 00:05:11'),(43,'https://www.drfields.com/articles/hip-labral-tears-and-non-surgical-repair-with-regenerative-orthopedics','completed','2022-11-02 00:05:12','2022-11-02 00:05:12'),(44,'https://www.drfields.com/articles/regenerative-orthopedics/meniscus-surgery-a-failed-surgery-being-over-used','completed','2022-11-02 00:05:13','2022-11-02 00:05:13'),(45,'https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis','completed','2022-11-02 00:05:14','2022-11-02 00:05:14'),(46,'https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-treatment-an-alternative-to-joint-replacement','completed','2022-11-02 00:05:14','2022-11-02 00:05:14'),(47,'https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-replacement-with-regenerative-orthopedics','completed','2022-11-02 00:05:15','2022-11-02 00:05:15'),(48,'https://www.drfields.com/articles/prolotherapy-research/sports-hernia','completed','2022-11-02 00:05:16','2022-11-02 00:05:16'),(49,'https://www.drfields.com/articles/regenerative-orthopedics/cortisone-injections-are-as-safe-as-you-think','completed','2022-11-02 00:05:17','2022-11-02 00:05:17'),(50,'https://www.drfields.com/articles/prolotherapy-research/tennis-elbow-or-lateral-epicondylitis','completed','2022-11-02 00:05:18','2022-11-02 00:05:18'),(51,'https://www.drfields.com/articles/prolotherapy-research/knee','completed','2022-11-02 00:05:24','2022-11-02 00:05:24'),(52,'https://www.drfields.com/articles/health-news/exercise-improves-brain-fitness-and-reduces-parkinsons-disease-risk','completed','2022-11-02 00:05:25','2022-11-02 00:05:25'),(53,'https://www.drfields.com/articles/prolotherapy-research/dry-needling-is-not-a-placebo','completed','2022-11-02 00:05:26','2022-11-02 00:05:26'),(54,'https://www.drfields.com/articles/prolotherapy-research/ankle-foot','completed','2022-11-02 00:05:27','2022-11-02 00:05:27'),(55,'https://www.drfields.com/articles/health-news/dealing-with-covid-19-my-dads-story','completed','2022-11-02 00:05:27','2022-11-02 00:05:27'),(56,'https://www.drfields.com/regenerative-techniques/los-angeles-prp','completed','2022-11-02 00:05:28','2022-11-02 00:05:28'),(57,'https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy','completed','2022-11-02 00:05:29','2022-11-02 00:05:29'),(58,'https://www.drfields.com/uncategorized/regenerative-orthopedics-in-mexico','completed','2022-11-02 00:05:30','2022-11-02 00:05:30'),(59,'https://www.drfields.com/regenerative-techniques/prolotherapy-videos','completed','2022-11-02 00:05:31','2022-11-02 00:05:31'),(60,'https://www.drfields.com/articles/magazine-column/elbow-injuries','completed','2022-11-02 00:05:31','2022-11-02 00:05:31'),(61,'https://www.drfields.com/articles/regenerative-orthopedics/iliotibial-band-syndrome','completed','2022-11-02 00:05:32','2022-11-02 00:05:32'),(62,'https://www.drfields.com/articles/health-news/fat-fighting-foods','completed','2022-11-02 00:05:57','2022-11-02 00:05:57'),(63,'https://www.drfields.com/articles/regenerative-orthopedics/persistent-joint-pain-regenerative-orthopedics-may-be-the-answer','completed','2022-11-02 00:05:58','2022-11-02 00:05:58'),(64,'https://www.drfields.com/articles/regenerative-orthopedics/dr-fields-interviewed-on-kcal-cbs-about-prolotherapy','completed','2022-11-02 00:05:59','2022-11-02 00:05:59'),(65,'https://www.drfields.com/articles/magazine-column/stem-cell-prolotherapy','completed','2022-11-02 00:05:59','2022-11-02 00:05:59'),(66,'https://www.drfields.com/articles/magazine-column/cause-of-back-pain','completed','2022-11-02 00:06:00','2022-11-02 00:06:00'),(67,'https://www.drfields.com/articles/magazine-column/hip-replacement-is-it-necessary','completed','2022-11-02 00:06:01','2022-11-02 00:06:01'),(68,'https://www.drfields.com/articles/health-news/vitamin-d-its-not-just-for-bones-anymore','completed','2022-11-02 00:06:02','2022-11-02 00:06:02'),(69,'https://www.drfields.com/articles/health-news/workplace-napping-increase-productivity','completed','2022-11-02 00:06:03','2022-11-02 00:06:03'),(70,'https://www.drfields.com/articles/health-news/dietary-supplements-in-older-adults','completed','2022-11-02 00:06:03','2022-11-02 00:06:03'),(71,'https://www.drfields.com/articles/health-news/body-cleansing-foods','completed','2022-11-02 00:06:04','2022-11-02 00:06:04'),(72,'https://www.drfields.com/articles/health-news/protein-foods','completed','2022-11-02 00:06:05','2022-11-02 00:06:05'),(73,'https://www.drfields.com/articles/health-news/quality-supplements-and-co','completed','2022-11-02 00:06:06','2022-11-02 00:06:06'),(74,'https://www.drfields.com/articles/magazine-column/are-mris-replacing-the-physical-exam','completed','2022-11-02 00:06:07','2022-11-02 00:06:07'),(75,'https://www.drfields.com/articles/magazine-column/rotator-cuff-shoulder-injuries','completed','2022-11-02 00:06:08','2022-11-02 00:06:08'),(76,'https://www.drfields.com/articles/magazine-column/knee-pain-and-dysfunction','completed','2022-11-02 00:06:08','2022-11-02 00:06:08'),(77,'https://www.drfields.com/articles/magazine-column/how-to-avoid-joint-and-spine-surgery','completed','2022-11-02 00:06:09','2022-11-02 00:06:09'),(78,'https://www.drfields.com/articles/health-news/soft-drinks-increase-risk-for-disease','completed','2022-11-02 00:06:10','2022-11-02 00:06:10'),(79,'https://www.drfields.com/articles/health-news/a-wonderful-ending-to-an-almost-disastrous-event','completed','2022-11-02 00:06:11','2022-11-02 00:06:11'),(80,'https://www.drfields.com/articles/health-news/dr-fields-interviewed-on-kcal-cbs-about-prolotherapy-2','completed','2022-11-02 00:06:12','2022-11-02 00:06:12'),(81,'https://www.drfields.com/articles/health-news/dr-fields-talks-about-the-dangers-of-anti-inflammatory-medicines','completed','2022-11-02 00:06:13','2022-11-02 00:06:13'),(82,'https://www.drfields.com/articles/health-news/needles-not-knives-to-treat-sports-injuries-and-degeneration','completed','2022-11-02 00:06:13','2022-11-02 00:06:13'),(83,'https://www.drfields.com/articles/health-news/benefits-of-vitamin-supplementation-in-covid-19','completed','2022-11-02 00:06:14','2022-11-02 00:06:14'),(84,'https://www.drfields.com/about/fees-policies','completed','2022-11-02 00:06:15','2022-11-02 00:06:15'),(85,'https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview','completed','2022-11-02 00:06:16','2022-11-02 00:06:16'),(86,'https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain','completed','2022-11-02 00:06:17','2022-11-02 00:06:17'),(87,'https://www.drfields.com/conditions/chronic-pain/prolotherapy-for-elbow-pain','completed','2022-11-02 00:06:18','2022-11-02 00:06:18'),(88,'https://www.drfields.com/conditions/chronic-pain/chronic-hip-pain','completed','2022-11-02 00:06:18','2022-11-02 00:06:18'),(89,'https://www.drfields.com/conditions/sports-injuries/prolotherapy-for-hip-injuries','completed','2022-11-02 00:06:19','2022-11-02 00:06:19'),(90,'https://www.drfields.com/conditions/sports-injuries/prolotherapy-for-foot-and-ankle-injuries','completed','2022-11-02 00:06:20','2022-11-02 00:06:20'),(91,'https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy','completed','2022-11-02 00:06:21','2022-11-02 00:06:21'),(92,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/post-treatment','completed','2022-11-02 00:06:29','2022-11-02 00:06:29'),(93,'https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you','completed','2022-11-02 00:06:30','2022-11-02 00:06:30'),(94,'https://www.drfields.com/articles/regenerative-orthopedics/exercise-injuries','completed','2022-11-02 00:06:32','2022-11-02 00:06:32'),(95,'https://www.drfields.com/articles/prolotherapy-research/arthritis-pain','completed','2022-11-02 00:06:34','2022-11-02 00:06:34'),(96,'https://www.drfields.com/articles/regenerative-orthopedics/dextrose-prolotherapy-is-it-for-you','completed','2022-11-02 00:06:35','2022-11-02 00:06:35'),(97,'https://www.drfields.com/articles/regenerative-orthopedics/ever-wonder-if-there-is-a-joint-replacement-alternative','completed','2022-11-02 00:06:36','2022-11-02 00:06:36'),(98,'https://www.drfields.com/articles/regenerative-orthopedics/relief-from-painful-knees','completed','2022-11-02 00:06:37','2022-11-02 00:06:37'),(99,'https://www.drfields.com/articles/regenerative-orthopedics/cervical-instability','completed','2022-11-02 00:06:37','2022-11-02 00:06:37'),(100,'https://www.drfields.com/articles/regenerative-orthopedics/staying-out-of-the-hospital-and-avoiding-surgery-with-regenerative-orthopedics','completed','2022-11-02 00:06:38','2022-11-02 00:06:38'),(101,'https://www.drfields.com/about/orthoregen-our-philosophy','completed','2022-11-02 00:06:39','2022-11-02 00:06:39'),(102,'https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-get-relief-non-surgically','completed','2022-11-02 00:06:40','2022-11-02 00:06:40'),(103,'https://www.drfields.com/articles/health-news/exercise-provides-health-benefits','completed','2022-11-02 00:07:24','2022-11-02 00:07:24'),(104,'https://www.drfields.com/articles/regenerative-orthopedics/is-there-help-for-arthritis-pain-without-having-to-have-surgery','completed','2022-11-02 00:07:25','2022-11-02 00:07:25'),(105,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment','completed','2022-11-02 00:07:25','2022-11-02 00:07:25'),(106,'https://www.drfields.com/articles/regenerative-orthopedics/what-is-behind-joint-pain','completed','2022-11-02 00:07:26','2022-11-02 00:07:26'),(107,'https://www.drfields.com/articles/regenerative-orthopedics/is-hip-injury-and-pain-getting-in-your-way','completed','2022-11-02 00:07:27','2022-11-02 00:07:27'),(108,'https://www.drfields.com/articles/regenerative-orthopedics/failed-back-surgery-syndrome','completed','2022-11-02 00:07:28','2022-11-02 00:07:28'),(109,'https://www.drfields.com/articles/regenerative-orthopedics/neck-pain-relief','completed','2022-11-02 00:07:29','2022-11-02 00:07:29'),(110,'https://www.drfields.com/articles/regenerative-orthopedics/get-lasting-arthritis-pain-relief','completed','2022-11-02 00:07:29','2022-11-02 00:07:29'),(111,'https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries','completed','2022-11-02 00:07:30','2022-11-02 00:07:30'),(112,'https://www.drfields.com/about/stem-cell-doctor','completed','2022-11-02 00:06:45','2022-11-02 00:06:45'),(113,'https://www.drfields.com/articles/regenerative-orthopedics/low-back-pain-treatments-and-the-challenges-at-finding-relief','completed','2022-11-02 00:07:31','2022-11-02 00:07:31'),(114,'https://www.drfields.com/articles/regenerative-orthopedics/relief-from-sciatica-symptoms','completed','2022-11-02 00:07:32','2022-11-02 00:07:32'),(115,'https://www.drfields.com/articles/regenerative-orthopedics/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain','completed','2022-11-02 00:07:32','2022-11-02 00:07:32'),(116,'https://www.drfields.com/about/the-athletic-doc/my-first-ironman-race-report','completed','2022-11-02 00:07:33','2022-11-02 00:07:33'),(117,'https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico','completed','2022-11-02 00:07:34','2022-11-02 00:07:34'),(118,'https://www.drfields.com/about/the-athletic-doc/achieving-higher-goals-at-my-third-ironman','completed','2022-11-02 00:07:35','2022-11-02 00:07:35'),(119,'https://www.drfields.com/about/the-athletic-doc/ironman-4-and-a-new-pr','completed','2022-11-02 00:07:36','2022-11-02 00:07:36'),(120,'https://www.drfields.com/conditions/sports-injuries/elbow-injury-treatment','completed','2022-11-02 00:07:37','2022-11-02 00:07:37'),(121,'https://www.drfields.com/conditions/chronic-pain/stop-back-pain','completed','2022-11-02 00:07:37','2022-11-02 00:07:37'),(122,'https://www.drfields.com/conditions/sports-injuries/tommy-john-surgery-and-all-surgeries-come-with-risks','completed','2022-11-02 00:07:38','2022-11-02 00:07:38'),(123,'https://www.drfields.com/about/common-questions-for-services-at-orthoregen','completed','2022-11-02 00:07:39','2022-11-02 00:07:39'),(124,'https://www.drfields.com/conditions/sports-injuries/get-rid-of-back-pain-with-regenerative-orthopedics','completed','2022-11-02 00:07:40','2022-11-02 00:07:40'),(125,'https://www.drfields.com/about/philanthropy/peter-a-fields-md-dc-volunteering-and-philanthropy-overview','completed','2022-11-02 00:07:23','2022-11-02 00:07:23'),(126,'https://www.drfields.com/articles/regenerative-orthopedics/suffering-from-headaches-the-problem-may-come-from-your-neck','completed','2022-11-02 00:07:41','2022-11-02 00:07:41'),(127,'https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-options-for-arthritis','completed','2022-11-02 00:07:41','2022-11-02 00:07:41'),(128,'https://www.drfields.com/conditions/chronic-pain/knee-pain','completed','2022-11-02 00:07:42','2022-11-02 00:07:42'),(129,'https://www.drfields.com/conditions/sports-injuries/shoulder-injury-treatment','completed','2022-11-02 00:07:43','2022-11-02 00:07:43'),(130,'https://www.drfields.com/articles/regenerative-orthopedics/what-to-ask-when-looking-for-a-prolotherapist','completed','2022-11-02 00:07:44','2022-11-02 00:07:44'),(131,'https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically','completed','2022-11-02 00:07:44','2022-11-02 00:07:44'),(132,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-facts','completed','2022-11-02 00:07:45','2022-11-02 00:07:45'),(133,'https://www.drfields.com/articles/regenerative-orthopedics/amniotic-stem-cell-therapy','completed','2022-11-02 00:07:46','2022-11-02 00:07:46'),(134,'https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-injuries','completed','2022-11-02 00:07:47','2022-11-02 00:07:47'),(135,'https://www.drfields.com/conditions/sports-injuries/neck-injury-treatments','completed','2022-11-02 00:07:47','2022-11-02 00:07:47'),(136,'https://www.drfields.com/articles/health-news/knee-and-hip-replacements-increase-heart-attack-risk','completed','2022-11-02 00:07:48','2022-11-02 00:07:48'),(137,'https://www.drfields.com/conditions/sports-injuries/hand-injury-treatment','completed','2022-11-02 00:07:49','2022-11-02 00:07:49'),(138,'https://www.drfields.com/articles/regenerative-orthopedics/painful-joints-regenerative-orthopedics-works-even-when-other-treatments-fail','completed','2022-11-02 00:07:50','2022-11-02 00:07:50'),(139,'https://www.drfields.com/articles/health-news/bio-identical-hormones-for-a-happier-and-healthier-lifestyle','completed','2022-11-02 00:07:51','2022-11-02 00:07:51'),(140,'https://www.drfields.com/about/dr-fields-bio','completed','2022-11-02 00:09:04','2022-11-02 00:09:04'),(141,'https://www.drfields.com/regenerative-techniques/regenerative-orthopedic-treatment-options-getting-back-on-the-right-foot','completed','2022-11-02 00:09:05','2022-11-02 00:09:05'),(142,'https://www.drfields.com/conditions/sports-injuries/knee-injuries','completed','2022-11-02 00:09:06','2022-11-02 00:09:06'),(143,'https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc','completed','2022-11-02 00:09:07','2022-11-02 00:09:07'),(144,'https://www.drfields.com/about/the-athletic-doc/ironman-maryland-my-10th-ironman-competition','completed','2022-11-02 00:09:07','2022-11-02 00:09:07'),(145,'https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman','completed','2022-11-02 00:09:08','2022-11-02 00:09:08'),(146,'https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman','completed','2022-11-02 00:09:10','2022-11-02 00:09:10'),(147,'https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2','completed','2022-11-02 00:09:10','2022-11-02 00:09:10'),(148,'https://www.drfields.com/articles/regenerative-orthopedics/unrelenting-back-pain-repaired-with-regenerative-orthopedics','completed','2022-11-02 00:09:11','2022-11-02 00:09:11'),(149,'https://www.drfields.com/articles/regenerative-orthopedics/stop-pain-from-rotator-cuff-injuries-and-other-shoulder-injuries','completed','2022-11-02 00:09:12','2022-11-02 00:09:12'),(150,'https://www.drfields.com/articles/health-news/regenerative-orthopedics-lecture','completed','2022-11-02 00:09:13','2022-11-02 00:09:13'),(151,'https://www.drfields.com/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics','completed','2022-11-02 00:09:14','2022-11-02 00:09:14'),(152,'https://www.drfields.com/articles/regenerative-orthopedics/nagging-back-pain','completed','2022-11-02 00:09:15','2022-11-02 00:09:15'),(153,'https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury','completed','2022-11-02 00:09:15','2022-11-02 00:09:15'),(154,'https://www.drfields.com/articles/regenerative-orthopedics/are-cortisone-shots-a-good-option','completed','2022-11-02 00:09:16','2022-11-02 00:09:16'),(155,'https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-partial-rotator-cuff-tear-repair','completed','2022-11-02 00:09:17','2022-11-02 00:09:17'),(156,'https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th','completed','2022-11-02 00:09:18','2022-11-02 00:09:18'),(157,'https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain','completed','2022-11-02 00:09:18','2022-11-02 00:09:18'),(158,'https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankles','completed','2022-11-02 00:09:19','2022-11-02 00:09:19'),(159,'https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy','completed','2022-11-02 00:09:20','2022-11-02 00:09:20'),(160,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview','completed','2022-11-02 00:09:21','2022-11-02 00:09:21'),(161,'https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes','completed','2022-11-02 00:09:21','2022-11-02 00:09:21'),(162,'https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity','completed','2022-11-02 00:09:22','2022-11-02 00:09:22'),(163,'https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age','completed','2022-11-02 00:09:23','2022-11-02 00:09:23'),(164,'https://www.drfields.com/office-move','completed','2022-11-02 00:09:24','2022-11-02 00:09:24'),(165,'https://www.drfields.com/acl-tears-and-knee-ligament-injuries','completed','2022-11-02 00:09:25','2022-11-02 00:09:25'),(166,'https://www.drfields.com/articles','completed','2022-11-02 00:09:26','2022-11-02 00:09:26'),(167,'https://www.drfields.com/testimonials','completed','2022-11-02 00:09:27','2022-11-02 00:09:27'),(168,'https://www.drfields.com/snapping-hip-syndrome','completed','2022-11-02 00:09:27','2022-11-02 00:09:27'),(169,'https://www.drfields.com/recommended-sites','completed','2022-11-02 00:09:28','2022-11-02 00:09:28'),(170,'https://www.drfields.com/relieve-arthritis-pain','completed','2022-11-02 00:09:29','2022-11-02 00:09:29'),(171,'https://www.drfields.com/failed-back-surgery-syndrome','completed','2022-11-02 00:09:30','2022-11-02 00:09:30'),(172,'https://www.drfields.com/neck-pain-treatment-and-relief','completed','2022-11-02 00:09:30','2022-11-02 00:09:30'),(173,'https://www.drfields.com/directory-reviews','completed','2022-11-02 00:09:31','2022-11-02 00:09:31'),(174,'https://www.drfields.com/testimonials/written-testimonials','completed','2022-11-02 00:10:56','2022-11-02 00:10:56'),(175,'https://www.drfields.com/santa-monica-daily-grill-lecture-04-19-19','completed','2022-11-02 00:10:57','2022-11-02 00:10:57'),(176,'https://www.drfields.com/disclamer','completed','2022-11-02 00:10:57','2022-11-02 00:10:57'),(177,'https://www.drfields.com/neck-and-shoulder-pain-may-be-interconnected','completed','2022-11-02 00:10:58','2022-11-02 00:10:58'),(178,'https://www.drfields.com/waking-up-at-15-000-feet','completed','2022-11-02 00:10:59','2022-11-02 00:10:59'),(179,'https://www.drfields.com/is-surgery-a-good-option-for-meniscus-tears','completed','2022-11-02 00:11:00','2022-11-02 00:11:00'),(180,'https://www.drfields.com/help-for-arthritis-of-the-hip','completed','2022-11-02 00:11:00','2022-11-02 00:11:00'),(181,'https://www.drfields.com/dr-fields-on-the-radio','completed','2022-11-02 00:11:01','2022-11-02 00:11:01'),(182,'https://www.drfields.com/testimonials/knee-testimonials','completed','2022-11-02 00:11:03','2022-11-02 00:11:03'),(183,'https://www.drfields.com/hip-testimonials','completed','2022-11-02 00:11:03','2022-11-02 00:11:03'),(184,'https://www.drfields.com/testimonials/elbow-testimonials','completed','2022-11-02 00:11:04','2022-11-02 00:11:04'),(185,'https://www.drfields.com/testimonials/sports-hernia-testimonials','completed','2022-11-02 00:12:22','2022-11-02 00:12:22'),(186,'https://www.drfields.com/testimonials/spanish-testimonials','completed','2022-11-02 00:12:22','2022-11-02 00:12:22'),(187,'https://www.drfields.com/testimonials/hamstring-testimonials','completed','2022-11-02 00:12:23','2022-11-02 00:12:23'),(188,'https://www.drfields.com/thank-you','completed','2022-11-02 00:12:25','2022-11-02 00:12:25'),(189,'https://www.drfields.com/alternative-to-joint-replacement-surgery','completed','2022-11-02 00:12:25','2022-11-02 00:12:25'),(190,'https://www.drfields.com/mark-test','completed','2022-11-02 00:12:26','2022-11-02 00:12:26'),(191,'https://www.drfields.com/lectures','completed','2022-11-02 00:12:27','2022-11-02 00:12:27'),(192,'https://www.drfields.com/review-us','completed','2022-11-02 00:12:28','2022-11-02 00:12:28'),(193,'https://www.drfields.com/doc-on-tv','completed','2022-11-02 00:12:28','2022-11-02 00:12:28'),(194,'https://www.drfields.com/terms','completed','2022-11-02 00:12:29','2022-11-02 00:12:29'),(195,'https://www.drfields.com/privacy-policy','completed','2022-11-02 00:12:30','2022-11-02 00:12:30'),(196,'https://www.drfields.com/testimonials/video-testimonials','completed','2022-11-02 00:12:31','2022-11-02 00:12:31'),(197,'https://www.drfields.com/testimonials/neck-testimonials','completed','2022-11-02 00:12:32','2022-11-02 00:12:32'),(198,'https://www.drfields.com/testimonials/ganglion-cyst-testimonials','completed','2022-11-02 00:12:33','2022-11-02 00:12:33'),(199,'https://www.drfields.com/testimonials/headache-testimonials','completed','2022-11-02 00:12:33','2022-11-02 00:12:33'),(200,'https://www.drfields.com/testimonials/german-testimonials','completed','2022-11-02 00:12:34','2022-11-02 00:12:34'),(201,'https://www.drfields.com/testimonials/foot-testimonials','completed','2022-11-02 00:12:35','2022-11-02 00:12:35'),(202,'https://www.drfields.com/testimonials/wrist-testimonials','completed','2022-11-02 00:12:36','2022-11-02 00:12:36'),(203,'https://www.drfields.com/testimonials/ankle-testimonials','completed','2022-11-02 00:12:36','2022-11-02 00:12:36'),(204,'https://www.drfields.com/testimonials/shoulder-testimonials','completed','2022-11-02 00:12:37','2022-11-02 00:12:37'),(205,'https://www.drfields.com/testimonials/low-back-testimonials','completed','2022-11-02 00:12:38','2022-11-02 00:12:38'),(206,'https://www.drfields.com/testimonials/cellular-regeneration-testimonials','completed','2022-11-02 00:12:39','2022-11-02 00:12:39'),(207,'https://www.drfields.com/how-prolotherapy-can-eliminate-joint-pain-without-surgery','completed','2022-11-02 00:12:39','2022-11-02 00:12:39'),(208,'https://www.drfields.com/knee-arthritis-treatment-that-get-srid-of-pain-at-the-source','completed','2022-11-02 00:12:40','2022-11-02 00:12:40'),(209,'https://www.drfields.com/non-surgical-repair-of-ligaments-and-tendons','completed','2022-11-02 00:12:41','2022-11-02 00:12:41'),(210,'https://www.drfields.com/service-locations/beverly-hills-ca/affordable-stem-cell-therapy-in-beverly-hills-ca','completed','2022-11-02 00:12:42','2022-11-02 00:12:42'),(211,'https://www.drfields.com/service-locations','completed','2022-11-02 00:12:43','2022-11-02 00:12:43'),(212,'https://www.drfields.com/service-locations/beverly-hills-ca','completed','2022-11-02 00:12:43','2022-11-02 00:12:43'),(213,'https://www.drfields.com/service-locations/beverly-hills-ca/alternative-to-hip-replacement-in-beverly-hills-ca','completed','2022-11-02 00:12:44','2022-11-02 00:12:44'),(214,'https://www.drfields.com/service-locations/beverly-hills-ca/non-surgical-shoulder-repair-in-beverly-hills-ca','completed','2022-11-02 00:12:45','2022-11-02 00:12:45'),(215,'https://www.drfields.com/service-locations/beverly-hills-ca/joint-prp-injection-therapy-in-beverly-hills-ca','completed','2022-11-02 00:12:46','2022-11-02 00:12:46'),(216,'https://www.drfields.com/service-locations/beverly-hills-ca/non-surgical-knee-repair-in-beverly-hills-ca','completed','2022-11-02 00:12:47','2022-11-02 00:12:47'),(217,'https://www.drfields.com/service-locations/beverly-hills-ca/doctor-for-athletes-in-beverly-hills-ca','completed','2022-11-02 00:12:48','2022-11-02 00:12:48'),(218,'https://www.drfields.com/service-locations/beverly-hills-ca/stem-cell-prp-in-beverly-hills-ca','completed','2022-11-02 00:12:48','2022-11-02 00:12:48'),(219,'https://www.drfields.com/service-locations/beverly-hills-ca/prolotherapy-specialist-in-beverly-hills-ca','completed','2022-11-02 00:19:52','2022-11-02 00:19:52'),(220,'https://www.drfields.com/service-locations/beverly-hills-ca/prp-knee-injections-in-beverly-hills-ca','completed','2022-11-02 00:19:53','2022-11-02 00:19:53'),(221,'https://www.drfields.com/service-locations/beverly-hills-ca/stem-cell-injections-in-beverly-hills-ca','completed','2022-11-02 00:19:54','2022-11-02 00:19:54'),(222,'https://www.drfields.com/service-locations/los-angeles-ca/non-surgical-shoulder-repair-in-los-angeles-ca','completed','2022-11-02 00:19:55','2022-11-02 00:19:55'),(223,'https://www.drfields.com/service-locations/beverly-hills-ca/stem-cell-therapy-in-beverly-hills-ca','completed','2022-11-02 00:19:55','2022-11-02 00:19:55'),(224,'https://www.drfields.com/service-locations/beverly-hills-ca/stem-cell-therapy-specialist-in-beverly-hills-ca','completed','2022-11-02 00:19:56','2022-11-02 00:19:56'),(225,'https://www.drfields.com/service-locations/los-angeles-ca/affordable-stem-cell-therapy-in-los-angeles-ca','completed','2022-11-02 00:19:57','2022-11-02 00:19:57'),(226,'https://www.drfields.com/service-locations/los-angeles-ca','completed','2022-11-02 00:19:58','2022-11-02 00:19:58'),(227,'https://www.drfields.com/service-locations/los-angeles-ca/joint-prp-injection-therapy-in-los-angeles-ca','completed','2022-11-02 00:19:59','2022-11-02 00:19:59'),(228,'https://www.drfields.com/service-locations/los-angeles-ca/non-surgical-knee-repair-in-los-angeles-ca','completed','2022-11-02 00:19:59','2022-11-02 00:19:59'),(229,'https://www.drfields.com/service-locations/los-angeles-ca/alternative-to-hip-replacement-in-los-angeles-ca','completed','2022-11-02 00:20:00','2022-11-02 00:20:00'),(230,'https://www.drfields.com/service-locations/los-angeles-ca/doctor-for-athletes-in-los-angeles-ca','completed','2022-11-02 00:20:02','2022-11-02 00:20:02'),(231,'https://www.drfields.com/service-locations/los-angeles-ca/stem-cell-prp-in-los-angeles-ca','completed','2022-11-02 00:20:01','2022-11-02 00:20:01'),(232,'https://www.drfields.com/service-locations/los-angeles-ca/prolotherapy-specialist-in-los-angeles-ca','completed','2022-11-02 00:20:02','2022-11-02 00:20:02'),(233,'https://www.drfields.com/service-locations/los-angeles-ca/prp-knee-injections-in-los-angeles-ca','completed','2022-11-02 00:20:03','2022-11-02 00:20:03'),(234,'https://www.drfields.com/service-locations/los-angeles-ca/stem-cell-injections-in-los-angeles-ca','completed','2022-11-02 00:20:05','2022-11-02 00:20:05'),(235,'https://www.drfields.com/service-locations/los-angeles-ca/stem-cell-therapy-in-los-angeles-ca','completed','2022-11-02 00:20:06','2022-11-02 00:20:06'),(236,'https://www.drfields.com/service-locations/los-angeles-ca/stem-cell-therapy-specialist-in-los-angeles-ca','completed','2022-11-02 00:20:07','2022-11-02 00:20:07'),(237,'https://www.drfields.com/service-locations/malibu-ca','completed','2022-11-02 00:20:08','2022-11-02 00:20:08'),(238,'https://www.drfields.com/service-locations/malibu-ca/prp-knee-injections-in-malibu-ca','completed','2022-11-02 00:20:09','2022-11-02 00:20:09'),(239,'https://www.drfields.com/service-locations/malibu-ca/joint-prp-injection-therapy-in-malibu-ca','completed','2022-11-02 00:20:09','2022-11-02 00:20:09'),(240,'https://www.drfields.com/service-locations/malibu-ca/affordable-stem-cell-therapy-in-malibu-ca','completed','2022-11-02 00:20:10','2022-11-02 00:20:10'),(241,'https://www.drfields.com/service-locations/malibu-ca/alternative-to-hip-replacement-in-malibu-ca','completed','2022-11-02 00:20:11','2022-11-02 00:20:11'),(242,'https://www.drfields.com/service-locations/malibu-ca/doctor-for-athletes-in-malibu-ca','completed','2022-11-02 00:20:12','2022-11-02 00:20:12'),(243,'https://www.drfields.com/service-locations/malibu-ca/non-surgical-shoulder-repair-in-malibu-ca','completed','2022-11-02 00:20:13','2022-11-02 00:20:13'),(244,'https://www.drfields.com/service-locations/malibu-ca/non-surgical-knee-repair-in-malibu-ca','completed','2022-11-02 00:20:14','2022-11-02 00:20:14'),(245,'https://www.drfields.com/service-locations/malibu-ca/prolotherapy-specialist-in-malibu-ca','completed','2022-11-02 00:20:14','2022-11-02 00:20:14'),(246,'https://www.drfields.com/service-locations/malibu-ca/stem-cell-injections-in-malibu-ca','completed','2022-11-02 00:20:15','2022-11-02 00:20:15'),(247,'https://www.drfields.com/service-locations/malibu-ca/stem-cell-therapy-in-malibu-ca','completed','2022-11-02 00:20:16','2022-11-02 00:20:16'),(248,'https://www.drfields.com/service-locations/malibu-ca/stem-cell-therapy-specialist-in-malibu-ca','completed','2022-11-02 00:20:17','2022-11-02 00:20:17'),(249,'https://www.drfields.com/service-locations/malibu-ca/stem-cell-prp-in-malibu-ca','completed','2022-11-02 00:20:17','2022-11-02 00:20:17'),(250,'https://www.drfields.com/service-locations/newport-beach-ca/joint-prp-injection-therapy-in-newport-beach-ca','completed','2022-11-02 00:20:18','2022-11-02 00:20:18'),(251,'https://www.drfields.com/service-locations/newport-beach-ca/affordable-stem-cell-therapy-in-newport-beach-ca','completed','2022-11-02 00:20:41','2022-11-02 00:20:41'),(252,'https://www.drfields.com/service-locations/newport-beach-ca','completed','2022-11-02 00:20:42','2022-11-02 00:20:42'),(253,'https://www.drfields.com/service-locations/newport-beach-ca/alternative-to-hip-replacement-in-newport-beach-ca','completed','2022-11-02 00:20:43','2022-11-02 00:20:43'),(254,'https://www.drfields.com/service-locations/newport-beach-ca/doctor-for-athletes-in-newport-beach-ca','completed','2022-11-02 00:20:44','2022-11-02 00:20:44'),(255,'https://www.drfields.com/service-locations/newport-beach-ca/non-surgical-shoulder-repair-in-newport-beach-ca','completed','2022-11-02 00:20:44','2022-11-02 00:20:44'),(256,'https://www.drfields.com/service-locations/newport-beach-ca/non-surgical-knee-repair-in-newport-beach-ca','completed','2022-11-02 00:20:45','2022-11-02 00:20:45'),(257,'https://www.drfields.com/service-locations/newport-beach-ca/prolotherapy-specialist-in-newport-beach-ca','completed','2022-11-02 00:20:46','2022-11-02 00:20:46'),(258,'https://www.drfields.com/service-locations/newport-beach-ca/prp-knee-injections-in-newport-beach-ca','completed','2022-11-02 00:20:47','2022-11-02 00:20:47'),(259,'https://www.drfields.com/service-locations/newport-beach-ca/stem-cell-injections-in-newport-beach-ca','completed','2022-11-02 00:20:48','2022-11-02 00:20:48'),(260,'https://www.drfields.com/service-locations/newport-beach-ca/stem-cell-therapy-in-newport-beach-ca','completed','2022-11-02 00:20:48','2022-11-02 00:20:48'),(261,'https://www.drfields.com/service-locations/newport-beach-ca/stem-cell-therapy-specialist-in-newport-beach-ca','completed','2022-11-02 00:20:49','2022-11-02 00:20:49'),(262,'https://www.drfields.com/service-locations/newport-beach-ca/stem-cell-prp-in-newport-beach-ca','completed','2022-11-02 00:20:50','2022-11-02 00:20:50'),(263,'https://www.drfields.com/service-locations/palm-desert-ca/affordable-stem-cell-therapy-in-palm-desert-ca','completed','2022-11-02 00:20:51','2022-11-02 00:20:51'),(264,'https://www.drfields.com/service-locations/palm-desert-ca','completed','2022-11-02 00:20:51','2022-11-02 00:20:51'),(265,'https://www.drfields.com/service-locations/palm-desert-ca/prp-knee-injections-in-palm-desert-ca','completed','2022-11-02 00:20:52','2022-11-02 00:20:52'),(266,'https://www.drfields.com/service-locations/palm-desert-ca/alternative-to-hip-replacement-in-palm-desert-ca','completed','2022-11-02 00:20:53','2022-11-02 00:20:53'),(267,'https://www.drfields.com/service-locations/palm-desert-ca/non-surgical-shoulder-repair-in-palm-desert-ca','completed','2022-11-02 00:20:54','2022-11-02 00:20:54'),(268,'https://www.drfields.com/service-locations/palm-desert-ca/non-surgical-knee-repair-in-palm-desert-ca','completed','2022-11-02 00:20:55','2022-11-02 00:20:55'),(269,'https://www.drfields.com/service-locations/palm-desert-ca/prolotherapy-specialist-in-palm-desert-ca','completed','2022-11-02 00:20:56','2022-11-02 00:20:56'),(270,'https://www.drfields.com/service-locations/palm-desert-ca/doctor-for-athletes-in-palm-desert-ca','completed','2022-11-02 00:20:57','2022-11-02 00:20:57'),(271,'https://www.drfields.com/service-locations/palm-desert-ca/stem-cell-injections-in-palm-desert-ca','completed','2022-11-02 00:20:58','2022-11-02 00:20:58'),(272,'https://www.drfields.com/service-locations/palm-desert-ca/stem-cell-therapy-in-palm-desert-ca','completed','2022-11-02 00:21:00','2022-11-02 00:21:00'),(273,'https://www.drfields.com/service-locations/palm-desert-ca/stem-cell-therapy-specialist-in-palm-desert-ca','completed','2022-11-02 00:21:01','2022-11-02 00:21:01'),(274,'https://www.drfields.com/service-locations/palm-desert-ca/stem-cell-prp-in-palm-desert-ca','completed','2022-11-02 00:21:02','2022-11-02 00:21:02'),(275,'https://www.drfields.com/service-locations/palm-springs-ca/affordable-stem-cell-therapy-in-palm-springs-ca','completed','2022-11-02 00:21:04','2022-11-02 00:21:04'),(276,'https://www.drfields.com/service-locations/palm-springs-ca','completed','2022-11-02 00:21:05','2022-11-02 00:21:05'),(277,'https://www.drfields.com/service-locations/palm-springs-ca/alternative-to-hip-replacement-in-palm-springs-ca','completed','2022-11-02 00:21:07','2022-11-02 00:21:07'),(278,'https://www.drfields.com/service-locations/palm-springs-ca/doctor-for-athletes-in-palm-springs-ca','completed','2022-11-02 00:21:08','2022-11-02 00:21:08'),(279,'https://www.drfields.com/service-locations/palm-springs-ca/non-surgical-shoulder-repair-in-palm-springs-ca','completed','2022-11-02 00:21:53','2022-11-02 00:21:53'),(280,'https://www.drfields.com/service-locations/palm-springs-ca/joint-prp-injection-therapy-in-palm-desert-ca','completed','2022-11-02 00:21:54','2022-11-02 00:21:54'),(281,'https://www.drfields.com/service-locations/palm-springs-ca/joint-prp-injection-therapy-in-palm-springs-ca','completed','2022-11-02 00:21:54','2022-11-02 00:21:54'),(282,'https://www.drfields.com/service-locations/palm-springs-ca/non-surgical-knee-repair-in-palm-springs-ca','completed','2022-11-02 00:21:55','2022-11-02 00:21:55'),(283,'https://www.drfields.com/service-locations/palm-springs-ca/prolotherapy-specialist-in-palm-springs-ca','completed','2022-11-02 00:21:56','2022-11-02 00:21:56'),(284,'https://www.drfields.com/service-locations/palm-springs-ca/stem-cell-injections-in-palm-springs-ca','completed','2022-11-02 00:21:57','2022-11-02 00:21:57'),(285,'https://www.drfields.com/service-locations/palm-springs-ca/stem-cell-therapy-in-palm-springs-ca','completed','2022-11-02 00:21:57','2022-11-02 00:21:57'),(286,'https://www.drfields.com/service-locations/palm-springs-ca/stem-cell-prp-in-palm-springs-ca','completed','2022-11-02 00:21:58','2022-11-02 00:21:58'),(287,'https://www.drfields.com/service-locations/palm-springs-ca/prp-knee-injections-in-palm-springs-ca','completed','2022-11-02 00:21:59','2022-11-02 00:21:59'),(288,'https://www.drfields.com/service-locations/palm-springs-ca/stem-cell-therapy-specialist-in-palm-springs-ca','completed','2022-11-02 00:21:59','2022-11-02 00:21:59'),(289,'https://www.drfields.com/service-locations/pasadena-ca/affordable-stem-cell-therapy-in-pasadena-ca','completed','2022-11-02 00:22:00','2022-11-02 00:22:00'),(290,'https://www.drfields.com/service-locations/pasadena-ca','completed','2022-11-02 00:22:01','2022-11-02 00:22:01'),(291,'https://www.drfields.com/service-locations/pasadena-ca/prp-knee-injections-in-pasadena-ca','completed','2022-11-02 00:22:02','2022-11-02 00:22:02'),(292,'https://www.drfields.com/service-locations/pasadena-ca/joint-prp-injection-therapy-in-pasadena-ca','completed','2022-11-02 00:22:02','2022-11-02 00:22:02'),(293,'https://www.drfields.com/service-locations/pasadena-ca/non-surgical-knee-repair-in-pasadena-ca','completed','2022-11-02 00:22:03','2022-11-02 00:22:03'),(294,'https://www.drfields.com/service-locations/pasadena-ca/alternative-to-hip-replacement-in-pasadena-ca','completed','2022-11-02 00:22:04','2022-11-02 00:22:04'),(295,'https://www.drfields.com/service-locations/pasadena-ca/doctor-for-athletes-in-pasadena-ca','completed','2022-11-02 00:22:05','2022-11-02 00:22:05'),(296,'https://www.drfields.com/service-locations/pasadena-ca/stem-cell-injections-in-pasadena-ca','completed','2022-11-02 00:22:07','2022-11-02 00:22:07'),(297,'https://www.drfields.com/service-locations/pasadena-ca/non-surgical-shoulder-repair-in-pasadena-ca','completed','2022-11-02 00:22:05','2022-11-02 00:22:05'),(298,'https://www.drfields.com/service-locations/pasadena-ca/prolotherapy-specialist-in-pasadena-ca','completed','2022-11-02 00:22:06','2022-11-02 00:22:06'),(299,'https://www.drfields.com/service-locations/pasadena-ca/stem-cell-therapy-in-pasadena-ca','completed','2022-11-02 00:22:08','2022-11-02 00:22:08'),(300,'https://www.drfields.com/service-locations/pasadena-ca/stem-cell-therapy-specialist-in-pasadena-ca','completed','2022-11-02 00:22:08','2022-11-02 00:22:08'),(301,'https://www.drfields.com/service-locations/pasadena-ca/stem-cell-prp-in-pasadena-ca','completed','2022-11-02 00:22:09','2022-11-02 00:22:09'),(302,'https://www.drfields.com/service-locations/rancho-mirage-ca','completed','2022-11-02 00:22:10','2022-11-02 00:22:10'),(303,'https://www.drfields.com/service-locations/rancho-mirage-ca/joint-prp-injection-therapy-in-rancho-mirage-ca','completed','2022-11-02 00:22:11','2022-11-02 00:22:11'),(304,'https://www.drfields.com/service-locations/rancho-mirage-ca/affordable-stem-cell-therapy-in-rancho-mirage-ca','completed','2022-11-02 00:22:11','2022-11-02 00:22:11'),(305,'https://www.drfields.com/service-locations/rancho-mirage-ca/prp-knee-injections-in-rancho-mirage-ca','completed','2022-11-02 00:22:12','2022-11-02 00:22:12'),(306,'https://www.drfields.com/service-locations/rancho-mirage-ca/alternative-to-hip-replacement-in-rancho-mirage-ca','completed','2022-11-02 00:22:13','2022-11-02 00:22:13'),(307,'https://www.drfields.com/service-locations/rancho-mirage-ca/doctor-for-athletes-in-rancho-mirage-ca','completed','2022-11-02 00:22:14','2022-11-02 00:22:14'),(308,'https://www.drfields.com/service-locations/rancho-mirage-ca/stem-cell-injections-in-rancho-mirage-ca','completed','2022-11-02 00:22:14','2022-11-02 00:22:14'),(309,'https://www.drfields.com/service-locations/rancho-mirage-ca/non-surgical-shoulder-repair-in-rancho-mirage-ca','completed','2022-11-02 00:22:15','2022-11-02 00:22:15'),(310,'https://www.drfields.com/service-locations/rancho-mirage-ca/non-surgical-knee-repair-in-rancho-mirage-ca','completed','2022-11-02 00:22:16','2022-11-02 00:22:16'),(311,'https://www.drfields.com/service-locations/rancho-mirage-ca/prolotherapy-specialist-in-rancho-mirage-ca','completed','2022-11-02 00:22:17','2022-11-02 00:22:17'),(312,'https://www.drfields.com/service-locations/rancho-mirage-ca/stem-cell-therapy-in-rancho-mirage-ca','completed','2022-11-02 00:22:18','2022-11-02 00:22:18'),(313,'https://www.drfields.com/service-locations/rancho-mirage-ca/stem-cell-therapy-specialist-in-rancho-mirage-ca','completed','2022-11-02 00:22:18','2022-11-02 00:22:18'),(314,'https://www.drfields.com/service-locations/rancho-mirage-ca/stem-cell-prp-in-rancho-mirage-ca','completed','2022-11-02 00:12:21','2022-11-02 00:12:21'),(315,'https://www.drfields.com/service-locations/santa-monica-ca','completed','2022-11-02 00:22:19','2022-11-02 00:22:19'),(316,'https://www.drfields.com/service-locations/santa-monica-ca/joint-prp-injection-therapy-in-santa-monica-ca','completed','2022-11-02 00:22:20','2022-11-02 00:22:20'),(317,'https://www.drfields.com/service-locations/santa-monica-ca/affordable-stem-cell-therapy-in-santa-monica-ca','completed','2022-11-02 00:22:40','2022-11-02 00:22:40'),(318,'https://www.drfields.com/service-locations/santa-monica-ca/non-surgical-knee-repair-in-santa-monica-ca','completed','2022-11-02 00:22:41','2022-11-02 00:22:41'),(319,'https://www.drfields.com/service-locations/santa-monica-ca/alternative-to-hip-replacement-in-santa-monica-ca','completed','2022-11-02 00:22:42','2022-11-02 00:22:42'),(320,'https://www.drfields.com/service-locations/santa-monica-ca/doctor-for-athletes-in-santa-monica-ca','completed','2022-11-02 00:22:43','2022-11-02 00:22:43'),(321,'https://www.drfields.com/service-locations/santa-monica-ca/non-surgical-shoulder-repair-in-santa-monica-ca','completed','2022-11-02 00:22:43','2022-11-02 00:22:43'),(322,'https://www.drfields.com/service-locations/santa-monica-ca/prolotherapy-specialist-in-santa-monica-ca','completed','2022-11-02 00:22:44','2022-11-02 00:22:44'),(323,'https://www.drfields.com/service-locations/santa-monica-ca/prp-knee-injections-in-santa-monica-ca','completed','2022-11-02 00:22:45','2022-11-02 00:22:45'),(324,'https://www.drfields.com/service-locations/santa-monica-ca/stem-cell-injections-in-santa-monica-ca','completed','2022-11-02 00:22:45','2022-11-02 00:22:45'),(325,'https://www.drfields.com/service-locations/santa-monica-ca/stem-cell-therapy-in-santa-monica-ca','completed','2022-11-02 00:24:26','2022-11-02 00:24:26'),(326,'https://www.drfields.com/service-locations/santa-monica-ca/stem-cell-therapy-specialist-in-santa-monica-ca','completed','2022-11-02 00:24:27','2022-11-02 00:24:27'),(327,'https://www.drfields.com/service-locations/santa-monica-ca/stem-cell-prp-in-santa-monica-ca','completed','2022-11-02 00:24:28','2022-11-02 00:24:28'),(328,'https://www.drfields.com/service-locations/studio-city-ca','completed','2022-11-02 00:24:28','2022-11-02 00:24:28'),(329,'https://www.drfields.com/service-locations/studio-city-ca/joint-prp-injection-therapy-in-studio-city-ca','completed','2022-11-02 00:24:29','2022-11-02 00:24:29'),(330,'https://www.drfields.com/service-locations/studio-city-ca/affordable-stem-cell-therapy-in-studio-city-ca','completed','2022-11-02 00:24:30','2022-11-02 00:24:30'),(331,'https://www.drfields.com/service-locations/studio-city-ca/non-surgical-knee-repair-in-studio-city-ca','completed','2022-11-02 00:24:30','2022-11-02 00:24:30'),(332,'https://www.drfields.com/service-locations/studio-city-ca/alternative-to-hip-replacement-in-studio-city-ca','completed','2022-11-02 00:24:31','2022-11-02 00:24:31'),(333,'https://www.drfields.com/service-locations/studio-city-ca/doctor-for-athletes-in-studio-city-ca','completed','2022-11-02 00:24:32','2022-11-02 00:24:32'),(334,'https://www.drfields.com/service-locations/studio-city-ca/stem-cell-injections-in-studio-city-ca','completed','2022-11-02 00:24:33','2022-11-02 00:24:33'),(335,'https://www.drfields.com/service-locations/studio-city-ca/non-surgical-shoulder-repair-in-studio-city-ca','completed','2022-11-02 00:24:34','2022-11-02 00:24:34'),(336,'https://www.drfields.com/service-locations/studio-city-ca/prolotherapy-specialist-in-studio-city-ca','completed','2022-11-02 00:24:34','2022-11-02 00:24:34'),(337,'https://www.drfields.com/service-locations/studio-city-ca/prp-knee-injections-in-studio-city-ca','completed','2022-11-02 00:24:35','2022-11-02 00:24:35'),(338,'https://www.drfields.com/service-locations/studio-city-ca/stem-cell-therapy-in-studio-city-ca','completed','2022-11-02 00:24:36','2022-11-02 00:24:36'),(339,'https://www.drfields.com/service-locations/studio-city-ca/stem-cell-therapy-specialist-in-studio-city-ca','completed','2022-11-02 00:24:37','2022-11-02 00:24:37'),(340,'https://www.drfields.com/service-locations/studio-city-ca/stem-cell-prp-in-studio-city-ca','completed','2022-11-02 00:24:37','2022-11-02 00:24:37'),(341,'https://www.drfields.com/day-1-kiliminaro-and-base-camp-arrival','completed','2022-11-02 00:24:38','2022-11-02 00:24:38'),(342,'https://www.drfields.com/kilimanjaro-pre-hike','completed','2022-11-02 00:24:39','2022-11-02 00:24:39'),(343,'https://www.drfields.com/kili-getting-to-the-trailhead','completed','2022-11-02 00:24:42','2022-11-02 00:24:42'),(344,'https://www.drfields.com/kili-hiking-to-11400-ft','completed','2022-11-02 00:24:42','2022-11-02 00:24:42'),(345,'https://www.drfields.com/sunrise-up-top-and-heading-down','completed','2022-11-02 00:24:42','2022-11-02 00:24:42'),(346,'https://www.drfields.com/kili-hiking-to-13400-feet','completed','2022-11-02 00:24:43','2022-11-02 00:24:43'),(347,'https://www.drfields.com/kilimanjaro-final-camp-at-18500-feet','completed','2022-11-02 00:24:44','2022-11-02 00:24:44'),(348,'https://www.drfields.com/16-500-feet-to-18-400','completed','2022-11-02 00:24:45','2022-11-02 00:24:45'),(349,'https://www.drfields.com/report-of-my-kilimanjaro-climb','completed','2022-11-02 00:24:46','2022-11-02 00:24:46'),(350,'https://www.drfields.com/final-goodbyes-and-certificates','completed','2022-11-02 00:24:46','2022-11-02 00:24:46'),(351,'https://www.drfields.com/kili-hiking-to-15500-feet','completed','2022-11-02 00:24:47','2022-11-02 00:24:47'),(352,'https://www.drfields.com/hiking-to-the-summit-19-341-feet','completed','2022-11-02 00:24:48','2022-11-02 00:24:48'),(353,'https://www.drfields.com/kilimanjaro-climb-gallery','completed','2022-11-02 00:24:49','2022-11-02 00:24:49'),(354,'https://www.drfields.com/questions-costs','completed','2022-11-02 00:24:50','2022-11-02 00:24:50'),(355,'https://www.drfields.com/about','completed','2022-11-02 00:24:51','2022-11-02 00:24:51'),(356,'https://www.drfields.com/conditions/chronic-pain','completed','2022-11-02 00:24:51','2022-11-02 00:24:51'),(357,'https://www.drfields.com/conditions','completed','2022-11-02 00:24:52','2022-11-02 00:24:52'),(358,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy','completed','2022-11-02 00:24:53','2022-11-02 00:24:53'),(359,'https://www.drfields.com/articles/health-news','completed','2022-11-02 00:25:39','2022-11-02 00:25:39'),(360,'https://www.drfields.com/articles/magazine-column','completed','2022-11-02 00:25:39','2022-11-02 00:25:39'),(361,'https://www.drfields.com/about/philanthropy','completed','2022-11-02 00:25:40','2022-11-02 00:25:40'),(362,'https://www.drfields.com/articles/prolotherapy-research','completed','2022-11-02 00:25:41','2022-11-02 00:25:41'),(363,'https://www.drfields.com/articles/regenerative-orthopedics','completed','2022-11-02 00:25:42','2022-11-02 00:25:42'),(364,'https://www.drfields.com/regenerative-techniques','completed','2022-11-02 00:25:42','2022-11-02 00:25:42'),(365,'https://www.drfields.com/conditions/sports-injuries','completed','2022-11-02 00:25:43','2022-11-02 00:25:43'),(366,'https://www.drfields.com/about/the-athletic-doc','completed','2022-11-02 00:25:44','2022-11-02 00:25:44'),(367,'https://www.drfields.com/uncategorized','completed','2022-11-02 00:25:45','2022-11-02 00:25:45');
/*!40000 ALTER TABLE `wp_wpr_rocket_cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpr_rucss_used_css`
--

DROP TABLE IF EXISTS `wp_wpr_rucss_used_css`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpr_rucss_used_css` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(2000) NOT NULL DEFAULT '',
  `css` longtext DEFAULT NULL,
  `hash` varchar(32) DEFAULT '',
  `unprocessedcss` longtext DEFAULT NULL,
  `retries` tinyint(1) NOT NULL DEFAULT 1,
  `is_mobile` tinyint(1) NOT NULL DEFAULT 0,
  `job_id` varchar(255) NOT NULL DEFAULT '',
  `queue_name` varchar(255) NOT NULL DEFAULT '',
  `status` varchar(255) NOT NULL DEFAULT '',
  `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_accessed` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `url` (`url`(150),`is_mobile`),
  KEY `modified` (`modified`),
  KEY `last_accessed` (`last_accessed`),
  KEY `hash` (`hash`),
  KEY `status_index` (`status`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpr_rucss_used_css`
--

LOCK TABLES `wp_wpr_rucss_used_css` WRITE;
/*!40000 ALTER TABLE `wp_wpr_rucss_used_css` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpr_rucss_used_css` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_indexable`
--

DROP TABLE IF EXISTS `wp_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_indexable` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext DEFAULT NULL,
  `permalink_hash` varchar(40) DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_type` varchar(32) NOT NULL,
  `object_sub_type` varchar(32) DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `post_parent` bigint(20) DEFAULT NULL,
  `title` text DEFAULT NULL,
  `description` mediumtext DEFAULT NULL,
  `breadcrumb_title` text DEFAULT NULL,
  `post_status` varchar(20) DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT 0,
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int(11) unsigned DEFAULT NULL,
  `canonical` longtext DEFAULT NULL,
  `primary_focus_keyword` varchar(191) DEFAULT NULL,
  `primary_focus_keyword_score` int(3) DEFAULT NULL,
  `readability_score` int(3) DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT 0,
  `is_robots_noindex` tinyint(1) DEFAULT 0,
  `is_robots_nofollow` tinyint(1) DEFAULT 0,
  `is_robots_noarchive` tinyint(1) DEFAULT 0,
  `is_robots_noimageindex` tinyint(1) DEFAULT 0,
  `is_robots_nosnippet` tinyint(1) DEFAULT 0,
  `twitter_title` text DEFAULT NULL,
  `twitter_image` longtext DEFAULT NULL,
  `twitter_description` longtext DEFAULT NULL,
  `twitter_image_id` varchar(191) DEFAULT NULL,
  `twitter_image_source` text DEFAULT NULL,
  `open_graph_title` text DEFAULT NULL,
  `open_graph_description` longtext DEFAULT NULL,
  `open_graph_image` longtext DEFAULT NULL,
  `open_graph_image_id` varchar(191) DEFAULT NULL,
  `open_graph_image_source` text DEFAULT NULL,
  `open_graph_image_meta` mediumtext DEFAULT NULL,
  `link_count` int(11) DEFAULT NULL,
  `incoming_link_count` int(11) DEFAULT NULL,
  `prominent_words_version` int(11) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  `schema_page_type` varchar(64) DEFAULT NULL,
  `schema_article_type` varchar(64) DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT 0,
  `estimated_reading_time_minutes` int(11) DEFAULT NULL,
  `version` int(11) DEFAULT 1,
  `object_last_modified` datetime DEFAULT NULL,
  `object_published_at` datetime DEFAULT NULL,
  `inclusive_language_score` int(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
  KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=MyISAM AUTO_INCREMENT=1481 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable`
--

LOCK TABLES `wp_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable` VALUES (1,'https://www.drfields.com/author/website-admin/','46:66c8f3253b055e194edae0f308f32f9e',8,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/1f0410165c772c4d37b5983d2e929c7e?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/1f0410165c772c4d37b5983d2e929c7e?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-05-05 21:32:58','2023-09-21 02:34:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-20 19:34:23','2019-05-28 18:47:49',NULL),(2,'https://www.drfields.com/','25:f0690134d0d3cc82f4b6a6631ae07de9',2109,'post','page',8,0,'Regenerative Orthopedics - Dr. Peter A. Fields MD, DC','Dr. Peter A. Fields is uniquely degreed as an MD and chiropractor, exclusively practicing Regenerative Orthopedics with no hospitalization.','Home','publish',NULL,0,NULL,NULL,NULL,'Regenerative Orthopedics',71,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png',NULL,'first-content-image',NULL,21,8,NULL,'2020-05-05 21:32:58','2023-09-20 09:30:20',1,NULL,NULL,NULL,NULL,0,4,2,'2023-09-20 02:30:20','2019-06-18 08:08:15',0),(3,'https://www.drfields.com/about/dr-fields-bio/','45:26c36ca413b20dd257294faa50ef5ec3',216,'post','post',8,0,'Dr Fields | PRP, Prolotherapy and Stem Cell Doctor in Los Angeles','Dr Fields is a world-renowned expert in the field of Regenerative Orthopedics (non-surgical joint and spine repair). He is one of a handful of physicians in the nation that is both a Medical Physician and Chiropractor. Make a consultation online or calling (310) 453-1234.','Bio: Dr. Fields','publish',NULL,0,NULL,NULL,NULL,'dr fields',79,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg',NULL,'first-content-image',NULL,6,1,NULL,'2020-05-05 21:33:21','2022-06-30 05:58:44',1,NULL,NULL,NULL,NULL,0,3,2,'2022-01-06 00:59:38','2019-06-07 10:06:00',NULL),(4,'https://www.drfields.com/conditions/chronic-pain/chronic-pain/','62:5cd09afd30edc8e5188c451dd43f8be2',469,'post','post',8,0,'Chronic Pain','Is your Chronic Pain changing your lifestyle and preventing you from doing the things you want to do? Treat it with Prolotherapy.','Chronic Pain Overview','publish',NULL,0,NULL,NULL,NULL,'Chronic Pain',82,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,'first-content-image',NULL,9,3,NULL,'2020-05-05 21:34:39','2023-04-20 00:58:53',1,NULL,NULL,NULL,NULL,0,5,2,'2023-04-19 17:58:53','2019-06-08 06:21:20',NULL),(5,'https://www.drfields.com/contact/','33:e87a7af9f4e905e3854b5cf24fe568e3',29,'post','page',8,0,NULL,NULL,'Contact','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,148,NULL,'2020-05-05 21:34:57','2023-05-09 03:50:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-04-05 23:23:22','2019-06-07 04:36:03',NULL),(6,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-05 21:36:00','2020-09-24 19:24:04',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(7,'https://www.drfields.com/','25:f0690134d0d3cc82f4b6a6631ae07de9',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','Stem Cell - PRP - Prolotherapy - Surgery Alternative - Orthopedic Medicine Treatment','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,21,NULL,'2020-05-05 21:36:26','2023-09-21 02:34:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-20 19:34:23','2019-06-07 06:12:41',NULL),(8,'https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/','72:f0854849496c34d838b595275ac893d1',348,'post','post',8,0,'Ironman 9 Took Place in My Home State of California','Ironman 9 took place in my home State in Santa Rosa, California, which being so close, made it different than all my other races.','Ironman 9 Took Place in Santa Rosa, California','publish',NULL,0,NULL,NULL,NULL,'Ironman 9',71,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg',NULL,'first-content-image',NULL,9,14,NULL,'2020-05-05 21:37:24','2022-07-27 21:41:06',1,NULL,NULL,NULL,NULL,0,10,2,'2022-02-25 23:50:42','2019-06-08 03:50:49',NULL),(9,'https://www.drfields.com/about/philanthropy/honduras-2006/','58:3d4fd39358c965ba2b811dcddafe323a',432,'post','post',8,0,NULL,NULL,'Honduras 2006','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-and-two-Honduran-translators.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-and-two-Honduran-translators.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2020-05-05 21:37:55','2022-07-28 04:41:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-17 07:15:17','2019-06-08 05:55:36',NULL),(10,'https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/','72:3daa6d3ec316088f98d393bfbb9621ec',184,'post','post',8,0,NULL,NULL,'Race Report 5th Ironman','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png',NULL,'first-content-image',NULL,9,11,NULL,'2020-05-05 21:40:08','2022-07-27 21:41:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-06-30 17:48:36','2019-06-07 09:06:53',NULL),(11,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment-los-angeles/','81:7e2af7cea440b2a7593269c256708e54',431,'post','post',8,0,'Stem Cell Treatment Los Angeles | Alternative To Joint Replacement','OrthoRegen provides non-surgical stem cell treatment in Los Angeles to help you Avoid Joint Replacement Surgery. Call us at (310) 453-1234.','Stem Cell Treatment Los Angeles','publish',NULL,0,NULL,NULL,NULL,'stem cell treatment Los Angeles',76,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.1-400x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.1-400x500.png',NULL,'first-content-image',NULL,7,19,NULL,'2020-05-05 21:47:21','2023-01-13 21:37:29',1,NULL,NULL,NULL,NULL,0,7,2,'2022-11-02 23:24:04','2019-06-08 05:59:37',NULL),(12,'https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/','98:b7da5f2ba76d7f981b31bd4331a0e5f8',414,'post','post',8,0,'Platelet Rich Plasma Treatments: How Do They Differ from Prolotherapy?','Platelet Rich Plasma Treatments effectively treat soft tissue injuries. But how are these non-surgical treatments different from Prolotherapy?','Platelet Rich Plasma Treatments: How Are They Different from Prolotherapy?','publish',NULL,0,NULL,NULL,NULL,'Platelet Rich Plasma Treatments',76,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/running.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/running.jpg',NULL,'first-content-image',NULL,4,4,NULL,'2020-05-05 21:48:27','2023-01-13 21:37:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-28 20:16:18','2019-06-08 05:44:21',NULL),(13,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/','104:6d646e102cece61d851c61365c0be3c2',382,'post','post',8,0,'Prolotherapy Treatments Overview | Hip Injury Treatment','Prolotherapy treatments non-surgically assist the body to heal injured or weakened joints, ligaments, and tendons. Call today at 310-453-1234.','Prolotherapy Treatment Overview','publish',NULL,0,NULL,NULL,NULL,'prolotherapy treatments',80,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/running.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/running.jpg',NULL,'first-content-image',NULL,11,12,NULL,'2020-05-05 21:49:02','2022-09-15 10:55:39',1,NULL,NULL,NULL,NULL,0,4,2,'2022-09-15 03:55:38','2019-06-08 04:58:53',NULL),(14,'https://www.drfields.com/?p=587','31:eb7f6600cfcd9026e2f2cfeaef97ea82',587,'post','post',8,0,NULL,NULL,'Mid Weekend','draft',0,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'2020-05-05 21:50:18','2022-07-28 04:41:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-07-07 23:01:36','2019-06-08 07:58:25',NULL),(15,'https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-tendonitis/','83:6b4ce250deb6b536ad8cca567fef170e',3584,'post','post',8,0,NULL,'Rotator cuff tendonitis is often related to activities that require repetitive overhead movements. Regenerative Orthopedics can relieve the pain.','Relieve Pain from Rotator Cuff Tendonitis','publish',NULL,0,NULL,NULL,NULL,'Rotator Cuff Tendonitis',78,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2020/03/Tony-Shoulder-500x377.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2020/03/Tony-Shoulder-500x377.png',NULL,'first-content-image',NULL,2,0,NULL,'2020-05-05 21:55:09','2022-10-28 04:18:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-11 01:08:55','2020-03-16 03:55:38',NULL),(16,'https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/','74:923143911d4fc40e4742716dbdd86f81',1667,'post','post',8,0,NULL,'Enjoy improved joint mobility and decreased pain levels with Prolotherapy by Peter A. Fields, MD,DC, a Los Angeles Prolotherapy Doctor.','Los Angeles Prolotherapy','publish',NULL,0,NULL,NULL,NULL,'Los Angeles Prolotherapy',79,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15,1,NULL,'2020-05-05 21:55:38','2022-07-01 04:18:40',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-07 18:12:17','2019-06-14 08:08:16',NULL),(17,'https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/','67:2ce8b888c9758b8c58bea0ca62a48147',509,'post','post',8,0,'Chronic Neck Pain','Our goal at OrthoRegen® is for patients with chronic neck pain to regain their active and pain-free life. And we do that non-surgically.','Stubborn, Persistent Neck Pain','publish',NULL,0,NULL,NULL,NULL,'Chronic Neck Pain',81,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/PRP.-Neck.-Lower-back-1-500x375.jpeg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/PRP.-Neck.-Lower-back-1-500x375.jpeg',NULL,'first-content-image',NULL,3,4,NULL,'2020-05-05 22:03:43','2023-05-09 03:50:21',1,NULL,NULL,NULL,NULL,0,4,2,'2022-08-26 04:56:45','2019-06-08 06:47:29',NULL),(18,'https://www.drfields.com/testimonials/neck-testimonials/','56:3faf6846e42131c7044355ff0aa20308',1711,'post','page',8,1268,NULL,NULL,'Neck Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19,18,NULL,'2020-05-05 22:07:10','2022-07-27 21:41:04',1,NULL,NULL,NULL,NULL,1,NULL,2,'2020-12-11 21:26:26','2019-06-14 10:15:21',NULL),(19,'https://www.drfields.com/testimonials/','38:0ff7d4980297c211be124944784cfe4f',1268,'post','page',8,0,NULL,NULL,'Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-05 22:07:10','2022-07-28 04:41:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-12 03:23:14','2019-06-12 03:14:47',NULL),(20,'https://www.drfields.com/articles/health-news/improve-sports-performance-with-co-q/','83:6a74958f0138ee6da0aefda5766d3ea9',1488,'post','post',8,0,NULL,NULL,'Improve Sports Performance With Co-Q','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-05-05 22:17:41','2022-07-28 04:41:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-13 06:11:21','2019-06-13 06:11:21',NULL),(21,'https://www.drfields.com/articles/health-news/soft-drinks-increase-risk-for-disease/','84:ce1a2b26d89c1426470094331ce56ca1',1506,'post','post',8,0,NULL,'Both Diet and Regular Soft Drinks Increase Risk for Disease and have been implicated for decades in cardiometabolic diseases.','Soft Drinks Increase Risk for Disease','publish',NULL,0,NULL,NULL,NULL,'Soft Drinks Increase Risk for Disease',73,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Soft-Drinks.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Soft-Drinks.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2020-05-05 22:28:37','2022-06-30 10:19:34',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-12-31 20:43:28','2019-06-13 06:20:08',NULL),(22,'https://www.drfields.com/articles/health-news/dementia-diet-exercise-and-supplements-can-help/','94:00a7ca74af63dfb896e76fbadf258675',1484,'post','post',8,0,NULL,NULL,'Dementia – Diet, Exercise and Supplements Can Help','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-05-05 22:29:34','2022-07-28 04:41:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-13 06:08:56','2019-06-13 06:08:56',NULL),(23,'https://www.drfields.com/about/philanthropy/honduras-2007/','58:768ce2ca9631ee6b693f28730f7e5493',453,'post','post',8,0,NULL,NULL,'Honduras 2007','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2020-05-05 22:34:45','2022-11-02 01:02:13',1,NULL,NULL,NULL,NULL,0,3,2,'2022-11-01 18:02:12','2019-06-08 06:02:35',NULL),(24,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-05 22:41:59','2020-09-24 19:22:38',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(25,'https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/','104:bc7deb0876327c29caae97f9f659144f',2650,'post','post',8,0,NULL,'Regenerative Orthopedics reduces Chondromalacia Patella symptoms, improves function, fixes patellar tracking, and gets you back to the activities you enjoy. ','Chondromalacia Patella Treated Successfully','publish',NULL,0,NULL,NULL,NULL,'chondromalacia patella',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/08/knee-injury-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/08/knee-injury-500x500.png',NULL,'first-content-image',NULL,1,1,NULL,'2020-05-05 22:43:32','2022-06-30 13:22:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-02 18:40:10','2019-08-27 05:26:26',NULL),(27,'https://www.drfields.com/testimonials/video-testimonials/','57:ca9430704a1bbb605f6c6a755f125418',1340,'post','page',8,1268,NULL,NULL,'Video Testimonials','publish',NULL,0,NULL,NULL,NULL,'Prolotherapy',52,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,24,19,NULL,'2020-05-05 23:00:51','2022-07-27 21:41:04',1,NULL,NULL,NULL,NULL,1,NULL,2,'2020-12-11 20:16:11','2019-06-12 06:00:21',NULL),(28,'https://www.drfields.com/articles/regenerative-orthopedics/unrelenting-back-pain-repaired-with-regenerative-orthopedics/','120:cfcbdddd46ff1c0946c0d4ccd42918ab',1410,'post','post',8,0,'Unrelenting Back Pain Repaired with Regenerative Orthopedics','For those with unrelenting back pain, we strongly recommend Regenerative Orthopedics, because it\'s helpful for so many back pain conditions.','Unrelenting Back Pain Repaired with Regenerative Orthopedics','publish',NULL,0,NULL,NULL,NULL,'Unrelenting Back Pain',78,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/BACK-pain-500x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/BACK-pain-500x500.jpg',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-05-05 23:00:56','2022-06-30 07:04:28',1,NULL,NULL,NULL,NULL,0,6,2,'2022-03-26 16:11:29','2019-06-12 11:01:24',NULL),(29,'https://www.drfields.com/kili-hiking-to-15500-feet/','51:88e93eff2e916a2bae7cb71fa58b3867',2239,'post','page',8,0,NULL,NULL,'Kilimanjaro Hiking to 15,500 Feet','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_053648-300x300.jpg',NULL,NULL,'gallery-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_053648-300x300.jpg',NULL,'gallery-image',NULL,12,1,NULL,'2020-05-05 23:26:01','2022-07-28 11:23:00',1,NULL,NULL,NULL,NULL,0,1,2,'2022-07-28 04:22:59','2019-06-28 06:36:37',NULL),(30,'https://www.drfields.com/testimonials/sports-hernia-testimonials/','65:cddec4525bab7c6027728805c712692b',1721,'post','page',8,1268,NULL,NULL,'Sports Hernia Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19,17,NULL,'2020-05-05 23:46:42','2022-07-27 21:41:04',1,NULL,NULL,NULL,NULL,1,NULL,2,'2019-09-27 20:56:26','2019-06-14 10:16:45',NULL),(31,'https://www.drfields.com/articles/magazine-column/townsend-letter-arthritis/','76:a3ff3849a882a63ffa33a4beda40eb2b',3416,'post','post',8,0,NULL,'Peter A. Fields, MD, DC talks about arthritis in an article in this June 2019 edition of The Townsend Letter. Read the article to find out more.','Townsend Letter: Arthritis','publish',NULL,0,NULL,NULL,NULL,'Townsend Letter',79,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/12/Fields-cover.jpg',NULL,'3418','featured-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/12/Fields-cover.jpg','3418','featured-image','{\"width\":224,\"height\":287,\"url\":\"https://www.drfields.com/wp-content/uploads/2019/12/Fields-cover.jpg\",\"path\":\"/home/drfiel5/public_html/wp-content/uploads/2019/12/Fields-cover.jpg\",\"size\":\"full\",\"id\":3418,\"alt\":\"Fields Cover\",\"pixels\":64288,\"type\":\"image/jpeg\"}',7,1,NULL,'2020-05-05 23:48:15','2022-07-28 04:41:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-13 20:55:50','2019-12-09 06:00:32',NULL),(33,'https://www.drfields.com/articles/health-news/dont-fear-the-fear-itself/','72:562cc298d0ab266e1e64941e76c3f10a',3638,'post','post',8,0,NULL,'We cannot live our lives in fear. In this article, Peter A. Fields, MD, DC gives some COVID advice about really living your life despite the pandemic.','“Don’t Fear the Fear Itself!”','publish',NULL,0,NULL,NULL,NULL,'Don\'t Fear',71,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2020/04/image0-400x500.jpeg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2020/04/image0-400x500.jpeg',NULL,'first-content-image',NULL,2,2,NULL,'2020-05-05 23:51:15','2022-07-28 04:41:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-02 19:18:18','2020-04-27 20:41:58',NULL),(34,'https://www.drfields.com/testimonials/written-testimonials/','59:ae56cfe445ad68d2c9baf3e812596b0b',1012,'post','page',8,1268,NULL,NULL,'Written Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6,17,NULL,'2020-05-06 00:01:58','2022-07-27 21:41:04',1,NULL,NULL,NULL,NULL,1,NULL,2,'2019-06-19 05:48:33','2019-06-11 04:32:56',NULL),(35,'https://www.drfields.com/articles/regenerative-orthopedics/what-is-behind-joint-pain/','85:2805a6e9235d091b377a2f3421f70b2e',1395,'post','post',8,0,'What is behind joint pain?','Ligaments are one of the most common causes of musculoskeletal joint pain and are an integral part of the proper functioning of the joint.','What is Behind Joint Pain?','publish',NULL,0,NULL,NULL,NULL,'joint pain',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/joint-pain-400x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/joint-pain-400x500.png',NULL,'first-content-image',NULL,3,NULL,NULL,'2020-05-06 00:07:39','2022-07-02 00:27:18',1,NULL,NULL,NULL,NULL,0,5,2,'2021-03-31 19:17:32','2019-06-12 10:52:39',NULL),(36,'https://www.drfields.com/articles/health-news/knee-and-hip-replacements-increase-heart-attack-risk/','99:bd67c3d2f277efecfc3cf6f2ac9023d2',1480,'post','post',8,0,NULL,'Knee and hip replacements increase heart attack risk and cardiac arrhythmias by boosting the odds of blood clot formation.','Knee And Hip Replacements Increase Heart Attack Risk','publish',NULL,0,NULL,NULL,NULL,'heart attack risk',73,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/heart-attack-1-359x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/heart-attack-1-359x500.png',NULL,'first-content-image',NULL,3,NULL,NULL,'2020-05-06 00:41:54','2022-06-30 23:37:05',1,NULL,NULL,NULL,NULL,0,3,2,'2021-09-25 22:46:04','2019-06-13 06:06:14',NULL),(37,'https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/','94:3cbe93a341279fe6fb15eb9fc108c526',3540,'post','post',8,0,NULL,'Sciatica pain is a major nuisance that interferes with activities we love. At OrthoRegen, we treat sciatica pain non-surgically. Call us at (310)453-1234.','Treat Sciatica Pain Non-Surgically','publish',NULL,0,NULL,NULL,NULL,'sciatica pain',75,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2020/02/Cortisone-500x375.jpeg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2020/02/Cortisone-500x375.jpeg',NULL,'first-content-image',NULL,1,2,NULL,'2020-05-06 01:03:45','2022-10-31 04:35:52',1,NULL,NULL,NULL,NULL,0,3,2,'2021-08-06 21:45:47','2020-02-20 04:09:40',NULL),(38,'https://www.drfields.com/articles/prolotherapy-research/ankle-foot/','67:6f6ba2acfb1bb5dcea589e29c1e9fa1c',2009,'post','post',8,0,NULL,'What helps foot pain besides surgery? Regenerative Orthopedics like Prolotherapy, PRP, and Stem Cell Therapy.','Foot Pain Resolution','publish',NULL,0,NULL,NULL,NULL,'foot pain',73,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-500x281.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-500x281.jpg',NULL,'first-content-image',NULL,4,1,NULL,'2020-05-06 01:05:56','2022-07-01 14:19:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-28 00:19:58','2019-06-15 10:17:06',NULL),(39,'https://www.drfields.com/about/prp-los-angeles-doctor/','54:802b0aab0c82e58cf526605297ae8606',266,'post','post',8,0,'PRP Los Angeles | Prolotherapy Knee & Shoulder | PRP ACL Repair','PRP Los Angeles with Peter A. Fields, MD, DC is a fast and effective treatment to resolve your painful joint or sports injury. Call now at (310) 453-1234.','PRP Doctor in the Los Angeles Area','publish',NULL,0,NULL,NULL,NULL,'prp los angeles',75,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg',NULL,'first-content-image',NULL,3,0,NULL,'2020-05-06 01:24:50','2022-07-28 04:41:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-07-12 00:09:03','2019-06-07 10:53:18',NULL),(40,'https://www.drfields.com/articles/regenerative-orthopedics/rotator-cuff-injuries/','81:71c0744859666f5453f625fd70bb8fcb',1457,'post','post',8,0,'Rotator Cuff Injuries: Tears, Impingement, and Tendonitis','Rotator cuff injuries are so common that they affect about a quarter of the population over 50 years of age. Find a non-surgical solution!','Rotator Cuff Injuries: Tears, Impingement, and Tendonitis','publish',NULL,0,NULL,NULL,NULL,'Rotator cuff injuries',79,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Rotator-Cuff-500x375.jpeg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Rotator-Cuff-500x375.jpeg',NULL,'first-content-image',NULL,4,NULL,NULL,'2020-05-06 01:51:13','2022-07-01 21:37:09',1,NULL,NULL,NULL,NULL,0,4,2,'2021-08-26 22:19:18','2019-06-12 11:21:37',NULL),(41,'https://www.drfields.com/uncategorized/regenerative-orthopedics-in-mexico/','74:a64ddf25ac08766ed9ae16d9b505982d',1558,'post','post',8,0,NULL,'Dr. Fields had the opportunity to educate his peers about Regenerative Orthopedics in Mexico at a conference in Mexico City.','Regenerative Orthopedics in Mexico','publish',NULL,0,NULL,NULL,NULL,'Regenerative Orthopedics in Mexico',77,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-2.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-2.jpg',NULL,'first-content-image',NULL,2,1,NULL,'2020-05-06 02:00:56','2022-07-02 04:24:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-07 19:14:29','2019-06-13 08:23:16',NULL),(42,'https://www.drfields.com/directory-reviews/','43:0ef028b30223eaf937dee03d94448d4f',2117,'post','page',8,0,NULL,NULL,'Directory Reviews','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-06 02:05:09','2022-07-28 04:41:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-18 21:28:29','2019-06-18 21:26:42',NULL),(43,'https://www.drfields.com/?p=1837','32:f1c3d87c4bc7adf6167f2f0ee4f50113',1837,'post','post',8,0,NULL,NULL,'Musculo-Skeletal Laser Therapy','draft',0,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg',NULL,'first-content-image',NULL,13,1,NULL,'2020-05-06 02:37:43','2022-07-28 04:41:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-05 23:52:31','2019-06-14 14:51:17',NULL),(44,'https://www.drfields.com/about/the-athletic-doc/ironman-maryland-my-10th-ironman-competition/','93:f6946507e0591a1495145a7c712d0b6a',361,'post','post',8,0,NULL,'I originally scheduled for Ironman Hamburg, Germany, but it was cancelled. To compete in my 10th Ironman, I then joined Ironman Maryland.','Race Report 10th Ironman','publish',NULL,0,NULL,NULL,NULL,'Ironman Maryland',74,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg',NULL,'first-content-image',NULL,9,NULL,NULL,'2020-05-06 02:38:04','2022-06-30 07:04:29',1,NULL,NULL,NULL,NULL,0,7,2,'2022-02-25 23:08:17','2019-06-08 04:02:17',NULL),(45,'https://www.drfields.com/about/the-athletic-doc/achieving-higher-goals-at-my-third-ironman/','91:ba1ae548b5da4e230d4da4fdace11b58',131,'post','post',8,0,'Achieving Higher Goals at My Third Ironman in Canada','Read the story of my third Ironman which took place in Canada. Although I didn\'t beat my goal, nonetheless it was a very satisfying outcome.','Achieving Higher Goals at My Third Ironman in Canada','publish',NULL,0,NULL,NULL,NULL,'Third Ironman',71,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg',NULL,'first-content-image',NULL,12,2,NULL,'2020-05-06 02:43:14','2022-06-30 07:46:01',1,NULL,NULL,NULL,NULL,0,10,2,'2021-06-03 02:47:55','2019-06-07 07:08:31',NULL),(46,'https://www.drfields.com/testimonials/ankle-testimonials/','57:a7bd9acc8b7f66c7257c964156a809e0',1713,'post','page',8,1268,NULL,NULL,'Ankle Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19,18,NULL,'2020-05-06 02:43:22','2022-07-27 21:41:04',1,NULL,NULL,NULL,NULL,1,NULL,2,'2020-12-11 21:31:57','2019-06-14 10:15:37',NULL),(47,'https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/','72:3cd4eadcf8494814e052983562e19a95',302,'post','post',8,0,NULL,NULL,'Race Report 7th Ironman','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg',NULL,'first-content-image',NULL,9,11,NULL,'2020-05-06 02:50:03','2022-07-28 04:41:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-06-30 17:58:43','2019-06-07 11:32:37',NULL),(48,'https://www.drfields.com/about/philanthropy/honduras-2008/','58:0e23b11d5eeffd601483533cebe595fb',627,'post','post',8,0,NULL,NULL,'Honduras','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961.jpg',NULL,'first-content-image',NULL,0,0,NULL,'2020-05-06 02:54:10','2022-11-02 01:02:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-11-01 18:02:23','2019-06-08 08:25:16',NULL),(49,'https://www.drfields.com/conditions/sports-injuries/prolotherapy-for-hip-injuries/','82:3ba5b8c69df75003cee172a9fb2828a5',528,'post','post',8,0,'Prolotherapy for Hip and Groin Injuries by Peter A. Fields, MD, DC','OrthoRegen offers Prolotherapy for hip injuries so you can avoid pain medication, surgery or extended time away from the sport you love.','Prolotherapy for Hip and Groin Injuries','publish',NULL,0,NULL,NULL,NULL,'Prolotherapy for hip',81,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,'first-content-image',NULL,4,0,NULL,'2020-05-06 03:00:45','2022-06-30 06:19:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-26 23:38:11','2019-06-08 07:13:21',NULL),(50,'https://www.drfields.com/about/the-athletic-doc/ironman-4-and-a-new-pr/','71:2cabd966df525ecc15b66eeb945efc6a',153,'post','post',8,0,NULL,'Ironman #4 meant at time of 13 hours, 32 minutes, and 36 seconds...a new personal best for me by 18 minutes. Interested? Read more here.','Ironman #4 and a New Personal Record','publish',NULL,0,NULL,NULL,NULL,'Ironman #4',77,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg',NULL,'first-content-image',NULL,9,3,NULL,'2020-05-06 03:04:20','2022-06-30 06:58:01',1,NULL,NULL,NULL,NULL,0,17,2,'2021-06-04 01:37:15','2019-06-07 07:52:43',NULL),(51,'https://www.drfields.com/about/philanthropy/peter-a-fields-md-dc-volunteering-and-philanthropy-overview/','104:acb381f3348fec79351c216c792d85cd',609,'post','post',8,0,'Peter A. Fields, MD, DC Volunteering and Philanthropy Overview','Peter A. Fields, MD, DC has had the honor of volunteering with the Hackett-Hemwall Foundation to help those in need.','Peter A. Fields, MD, DC Volunteering and Philanthropy Overview','publish',NULL,0,NULL,NULL,NULL,'Volunteering',73,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032-1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032-1.jpg',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-05-06 03:07:06','2022-06-30 05:54:27',1,NULL,NULL,NULL,NULL,0,3,2,'2021-07-07 23:17:56','2019-06-08 08:17:36',NULL),(52,'https://www.drfields.com/about/philanthropy/honduras-2011/','58:0549a86f6c1b3f7718b40ec18f4d156f',543,'post','post',8,0,NULL,NULL,'Honduras 2011','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/With-two-other-student-docs-and-a-patient.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/With-two-other-student-docs-and-a-patient.jpg',NULL,'first-content-image',NULL,0,0,NULL,'2020-05-06 03:07:28','2022-11-02 01:02:12',1,NULL,NULL,NULL,NULL,0,5,2,'2022-11-01 18:02:11','2019-06-08 07:42:07',NULL),(53,'https://www.drfields.com/about/prolotherapy-doctor/','51:304e51007b9760e67838809ae9341fe1',229,'post','post',8,0,'Prolotherapy Doctor Peter A. Fields | Prolotherapy Doctors in Los Angeles','A Prolotherapy Doctor provides regenerative orthopedics by offering non-surgical alternatives to joint and spine repair. Dr. Fields offers prolotherapy treatments to relieve pain by treating the underlying conditions. For more information call us at (310) 453-1234.','Prolotherapy Doctor','publish',NULL,0,NULL,NULL,NULL,'Prolotherapy Doctor',79,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg',NULL,'first-content-image',NULL,3,0,NULL,'2020-05-06 03:08:52','2022-07-28 04:41:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-06-30 17:07:16','2019-06-07 10:35:48',NULL),(54,'https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/','72:29432c7bcd1d55611b6fae542c378afc',217,'post','post',8,0,NULL,NULL,'Race Report 6th Ironman','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg',NULL,'first-content-image',NULL,9,11,NULL,'2020-05-06 03:09:08','2022-07-27 21:41:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-06-30 17:53:16','2019-06-07 10:03:28',NULL),(55,'https://www.drfields.com/about/philanthropy/honduras-2013/','58:a7466cc835ce50530539f9e10a691d24',572,'post','post',8,0,NULL,NULL,'Honduras 2013','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,NULL,'2020-05-06 03:11:54','2022-11-02 01:02:13',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-11-01 18:02:13','2019-06-08 07:47:20',NULL),(56,'https://www.drfields.com/about/philanthropy/guadalajara-2006/','61:b087d8188d8b35db40fbac77eefb72bb',416,'post','post',8,0,NULL,NULL,'Guadalajara 2006','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-two-aides.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-two-aides.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2020-05-06 03:14:49','2022-11-02 01:02:20',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-11-01 18:02:19','2019-06-08 05:40:44',NULL),(57,'https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/','72:fe8d2b03bd37b205c6282f2e6e762d80',306,'post','post',8,0,'Ironman 8 Took Place in Beautiful Cozumel, Mexico','Ironman 8 Took Place in Beautiful Cozumel, Mexico. Having done this race three times before, I knew that bike course well.','Race Report 8th Ironman','publish',NULL,0,NULL,NULL,NULL,'Ironman 8',71,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo-1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo-1.jpg',NULL,'first-content-image',NULL,9,11,NULL,'2020-05-06 03:16:12','2022-07-27 21:41:06',1,NULL,NULL,NULL,NULL,0,8,2,'2022-02-26 00:06:56','2019-06-07 11:40:19',NULL),(58,'https://www.drfields.com/about/philanthropy/honduras-2009/','58:92ef9e3f6270aeb411f3d88d8117965b',504,'post','post',8,0,NULL,NULL,'Honduras 2009','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-and-Matt.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-and-Matt.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2020-05-06 03:19:01','2022-11-02 01:02:11',1,NULL,NULL,NULL,NULL,0,4,2,'2022-11-01 18:02:11','2019-06-08 06:59:31',NULL),(59,'https://www.drfields.com/tag/regenerative-orthopedics/','54:d9c86a6f9163cdb9bd29d5340164db91',38,'term','post_tag',NULL,NULL,NULL,NULL,'Regenerative Orthopedics',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-06 03:46:31','2022-07-28 04:41:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-01-06 01:10:25','2019-06-15 11:15:20',NULL),(60,'https://www.drfields.com/doc-on-tv/','35:f50f638c76abbaaf7fbe3be2f730a3cd',1567,'post','page',8,0,NULL,NULL,'Dr. Fields on TV and more','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg',NULL,'first-content-image',NULL,2,0,NULL,'2020-05-06 03:51:37','2022-07-28 04:41:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-04-21 19:45:22','2019-06-13 08:56:38',NULL),(61,'https://www.drfields.com/about/fees-policies/','45:893f20d2dac92b08fd76da033cb4c68a',202,'post','post',8,0,NULL,NULL,'Fees &#038; Policies','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png',NULL,'first-content-image',NULL,2,0,NULL,'2020-05-06 04:00:51','2023-03-23 03:38:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-25 23:50:27','2019-06-07 09:42:07',NULL),(62,'https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico/','107:663f5fc20bf744e425392785475a74ee',120,'post','post',8,0,NULL,'Read about my second Ironman race in Cozumel, Mexico where, although difficult, was still able to achieve my goal of coming in under 14 hours.','My Second Ironman Competition Took Place in Cozumel, Mexico','publish',NULL,0,NULL,NULL,NULL,'Second Ironman',73,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg',NULL,'first-content-image',NULL,9,2,NULL,'2020-05-06 04:02:40','2022-06-30 07:46:00',1,NULL,NULL,NULL,NULL,0,9,2,'2021-05-19 00:12:57','2019-06-07 06:47:57',NULL),(63,'https://www.drfields.com/review-us/','35:ff7df30032f772ca6ef32941535938f7',3490,'post','page',8,0,NULL,NULL,'Review Us','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/12/facebook-v141219.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/12/facebook-v141219.jpg',NULL,'first-content-image',NULL,0,0,NULL,'2020-05-06 04:35:38','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-12-17 09:17:52','2019-12-17 08:51:19',NULL),(64,'https://www.drfields.com/articles/','34:3aba66170404a42e26e4cd6bab6cbdcd',30,'term','category',NULL,NULL,NULL,NULL,'Articles',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-06 05:16:24','2023-09-21 02:34:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-20 19:34:23','2019-07-02 23:14:56',NULL),(65,'https://www.drfields.com/regenerative-techniques/','49:42cef3f11c7725d1aec17f4079696d0d',17,'term','category',NULL,NULL,NULL,NULL,'Regenerative Techniques',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-06 05:19:02','2022-11-03 06:24:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-11-02 23:24:04','2019-06-08 05:44:21',NULL),(66,'https://www.drfields.com/conditions/chronic-pain/prolotherapy-for-elbow-pain/','77:4d50b3883e618d207a8a76fd5c7ab83d',524,'post','post',8,0,'Prolotherapy for Elbow Pain | Prolotherapy and PRP Injections','Prolotherapy for elbow pain effectively treats ligament, tendon, and many other pain causing elbow injuries joints. Call us at (310) 453-1234.','Prolotherapy for Elbow Pain','publish',NULL,0,NULL,NULL,NULL,'Prolotherapy for elbow',76,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,'first-content-image',NULL,6,2,NULL,'2020-05-06 05:24:08','2022-06-30 06:23:58',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-26 23:30:07','2019-06-08 07:05:24',NULL),(67,'https://www.drfields.com/articles/prolotherapy-research/','56:d8c2eaa9ab8e308f0c0d79fbfe65ca19',35,'term','category',NULL,NULL,NULL,NULL,'Prolotherapy Research',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-06 05:49:40','2022-07-28 04:41:11',1,NULL,NULL,NULL,NULL,1,NULL,2,'2021-03-22 22:52:19','2019-06-12 10:57:08',NULL),(68,'https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/','85:72218184539e084cbdb265e681372538',3409,'post','post',8,0,NULL,'Regenerative Orthopedics effectively treats knee tendonitis. Even with tendon degeneration, or tendinosis is present, the condition benefits tremendously.','Knee Tendonitis Treatment','publish',NULL,0,NULL,NULL,NULL,'knee tendonitis',78,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/12/May-Athlete-Knee-v101219-500x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/12/May-Athlete-Knee-v101219-500x500.jpg',NULL,'first-content-image',NULL,3,1,NULL,'2020-05-06 05:58:20','2022-07-28 04:41:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-13 19:42:13','2019-12-10 03:46:59',NULL),(69,'https://www.drfields.com/regenerative-techniques/prolotherapy-videos/','69:b44779d51490187994ef8b70d61d9e3c',1614,'post','post',8,0,NULL,'In these Prolotherapy videos, Peter A. Fields, MD,DC answers your questions as he discusses many different aspects of Prolotherapy. ','Prolotherapy Videos Provide Answers','publish',NULL,0,NULL,NULL,NULL,'Prolotherapy Videos',78,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,1,NULL,'2020-05-06 06:01:51','2022-06-30 10:17:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-10 19:44:04','2019-06-14 05:34:22',NULL),(70,'https://www.drfields.com/articles/regenerative-orthopedics/cervical-instability/','80:8a3500674e39664d8b34e7db5bbb849e',3301,'post','post',8,0,'Cervical Instability: Neck Pain That Changes Your Life','Cervical instability can result in neck pain & symptoms that alter the ability to live normally. Regenerative Orthopedics can stop the cycle.','Cervical Instability: Neck Pain That Changes Your Life','publish',NULL,0,NULL,NULL,NULL,'cervical instability',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-1-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-1-500x500.png',NULL,'first-content-image',NULL,1,2,NULL,'2020-05-06 06:16:16','2022-06-30 05:57:48',1,NULL,NULL,NULL,NULL,0,6,2,'2021-03-09 03:03:00','2019-11-21 04:19:50',NULL),(71,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/post-treatment/','86:a4db73958b002c9b42315e81a35a2676',408,'post','post',8,0,NULL,NULL,'Post Treatment','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/prolotherapy-3.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/prolotherapy-3.jpg',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-05-06 06:49:41','2022-06-30 12:23:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-28 20:23:35','2019-06-08 05:24:14',NULL),(72,'https://www.drfields.com/articles/health-news/vitamin-d-its-not-just-for-bones-anymore/','87:3709ff3aabfdb24f20c29c48b9b31165',1514,'post','post',8,0,NULL,'The importance of healthy Vitamin D levels continues to expand, and a deficiency may even be implicated in the COVID‐19 prognosis.','Vitamin D: It’s Not Just For Bones Anymore','publish',NULL,0,NULL,NULL,NULL,'Vitamin D',82,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Vitamin-D.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Vitamin-D.jpg',NULL,'first-content-image',NULL,1,2,NULL,'2020-05-06 06:56:22','2022-07-03 21:07:42',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-11-04 23:44:12','2019-06-13 06:23:39',NULL),(73,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-facts/','90:42e038c4a3092c1009ae6dc42481b485',395,'post','post',8,0,'Prolotherapy Treatments: Answering Your Questions About Prolotherapy','In this article, we will discuss the answers to some of the questions you may have about Prolotherapy treatments.','Prolotherapy Treatment Facts','publish',NULL,0,NULL,NULL,NULL,'Prolotherapy Treatments',71,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/prolojpg-500x498.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/prolojpg-500x498.png',NULL,'first-content-image',NULL,10,2,NULL,'2020-05-06 06:57:33','2022-06-30 14:18:15',1,NULL,NULL,NULL,NULL,0,5,2,'2021-08-22 23:30:07','2019-06-08 05:17:54',NULL),(74,'https://www.drfields.com/articles/prolotherapy-research/sports-hernia/','70:c8b98d01bccdf668c71d3dc1b8aa06ae',2028,'post','post',8,0,NULL,'Athletes with groin pain returned to full elite-level performance in a timely and sustainable manner after regenerative injection therapy using dextrose. ','Groin Pain Resolved with Regenerative Therapy','publish',NULL,0,NULL,NULL,NULL,'Groin pain',73,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,0,NULL,'2020-05-06 07:27:47','2022-07-28 04:41:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-12 19:58:48','2019-06-15 11:25:03',NULL),(75,'https://www.drfields.com/conditions/','36:cbf918b7f41007f5a524998bd21cc960',20,'term','category',NULL,NULL,NULL,NULL,'Conditions',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-06 07:41:22','2022-07-28 04:41:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-06-18 21:48:51','2019-09-12 13:35:04',NULL),(76,'https://www.drfields.com/conditions/sports-injuries/elbow-injury-treatment/','75:9d3c05fd1bae342b40acc486727c8935',582,'post','post',8,0,NULL,'Our comprehensive Regenerative Orthopedic elbow injury treatment offers our patients a non-surgical solution for their elbow pain.','Elbow Injury Treatment','publish',NULL,0,NULL,NULL,NULL,'Elbow Injury Treatment',78,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,'first-content-image',NULL,7,0,NULL,'2020-05-06 08:10:18','2022-06-30 14:26:09',1,NULL,NULL,NULL,NULL,0,2,2,'2021-06-11 18:28:52','2019-06-08 08:00:59',NULL),(77,'https://www.drfields.com/conditions/sports-injuries/hand-injury-treatment/','74:fcd80f53537c0384a2792aa68550744c',615,'post','post',8,0,'Hand Injury Treatment','Dr. Fields and our staff at OrthoRegen® offer traditional Dextrose Prolotherapy hand injury treatments to give you pain relief.','Hand Injury Treatment','publish',NULL,0,NULL,NULL,NULL,'Hand Injury Treatment',71,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,'first-content-image',NULL,7,0,NULL,'2020-05-06 08:48:46','2023-03-16 02:24:54',1,NULL,NULL,NULL,NULL,0,2,2,'2023-03-15 19:24:53','2019-06-08 08:25:36',NULL),(78,'https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/','94:3854216414d8f8a6a5d568cd55fa4d5c',1471,'post','post',8,0,'Lecture in Mexico City on July 9th','Dr. Fields to Lecture in Mexico City on July 9th about Regenerative Medicine, including stem cells, PRP, and Prolotherapy.','Dr. Fields to Lecture in Mexico City on July 9th','publish',NULL,0,NULL,NULL,NULL,'Lecture in Mexico City',69,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Copy-of-Mexico-City-Lecture-2-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Copy-of-Mexico-City-Lecture-2-500x419.png',NULL,'first-content-image',NULL,2,1,NULL,'2020-05-06 09:44:13','2022-08-23 03:11:36',1,NULL,NULL,NULL,NULL,0,1,2,'2022-08-22 20:11:35','2022-07-02 13:15:57',NULL),(79,'https://www.drfields.com/articles/health-news/an-adequate-supply-of-antioxidant-nutrients/','90:604cff22309d7967825ff24567eebbab',1469,'post','post',8,0,NULL,NULL,'An adequate supply of antioxidant nutrients','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Antioxidants.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Antioxidants.jpg',NULL,'first-content-image',NULL,2,NULL,NULL,'2020-05-06 10:23:53','2022-07-28 04:41:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-12 16:45:48','2019-06-12 16:45:48',NULL),(80,'https://www.drfields.com/articles/regenerative-orthopedics/relief-from-sciatica-symptoms/','89:d2a186ccaedb4e731ec96332c9daba9e',2555,'post','post',8,0,NULL,'Regenerative Orthopedics is effective at bringing pain relief and return to function for those suffering from sciatica symptoms and lumbar radiculopathy.','Relief from Sciatica Symptoms','publish',NULL,0,NULL,NULL,NULL,'sciatica symptoms',80,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/08/sciatical-400x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/08/sciatical-400x500.png',NULL,'first-content-image',NULL,1,0,NULL,'2020-05-06 10:25:42','2022-07-03 03:42:49',1,NULL,NULL,NULL,NULL,0,6,2,'2021-05-08 02:25:37','2019-08-06 00:00:16',NULL),(81,'https://www.drfields.com/snapping-hip-syndrome/','47:97a6ad69bb4597677519e661489f565d',1374,'post','page',8,0,NULL,NULL,'Snapping Hip Syndrome','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-06 10:31:08','2022-07-28 04:41:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-13 08:07:18','2019-06-12 07:45:49',NULL),(82,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/','71:8f9a2f5117deb765fc9c2633696d18bb',18,'term','category',NULL,NULL,NULL,NULL,'Dextrose Prolotherapy',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-06 10:49:00','2022-09-15 10:55:39',1,NULL,NULL,NULL,NULL,1,NULL,2,'2022-09-15 03:55:38','2019-06-08 04:58:53',NULL),(83,'https://www.drfields.com/conditions/chronic-pain/knee-pain/','59:de8788ce8f0945b4b9c620029247b93c',486,'post','post',8,0,'Knee Pain that Won\'t Go Away? Try Prolotherapy at OrthoRegen','Do you have knee pain that won\'t go away? Regenerative Orthopedics repairs the knee and resolves the pain. Call us at (310) 453-1234.','Knee Pain That Won&#8217;t Go Away','publish',NULL,0,NULL,NULL,NULL,'knee pain',78,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,'first-content-image',NULL,6,2,NULL,'2020-05-06 11:09:41','2022-06-30 08:52:49',1,NULL,NULL,NULL,NULL,0,4,2,'2021-07-26 18:54:27','2019-06-08 06:35:34',NULL),(84,'https://www.drfields.com/articles/health-news/needles-not-knives-to-treat-sports-injuries-and-degeneration/','107:3d2b27dba4cfed15ad6a2e92d127eb84',1475,'post','post',8,0,'Needles, Not Knives, to Treat Sports Injuries and Degeneration','Needles, Not Knives is an article by Nancy Deville explaining her path of maintaining her athletics with the help of Prolotherapy.','Needles, Not Knives, To Treat Sports Injuries And Degeneration','publish',NULL,0,NULL,NULL,NULL,'Needles Not Knives',73,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Nancy-Deville-with-Dr.-Peter-Fields-500x423.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Nancy-Deville-with-Dr.-Peter-Fields-500x423.png',NULL,'first-content-image',NULL,2,NULL,NULL,'2020-05-06 11:15:46','2022-07-04 13:48:04',1,NULL,NULL,NULL,NULL,0,4,2,'2021-01-21 00:03:23','2019-06-12 16:53:04',NULL),(85,'https://www.drfields.com/testimonials/knee-testimonials/','56:164b9b2cc85ee9340c409066265db728',1702,'post','page',8,1268,NULL,NULL,'Knee Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19,20,NULL,'2020-05-06 11:47:28','2022-07-27 21:41:04',1,NULL,NULL,NULL,NULL,1,NULL,2,'2019-09-27 20:56:16','2019-06-14 10:14:24',NULL),(86,'https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-get-relief-non-surgically/','103:e4e207b8ec1a7d239a567b74cc0df13b',1401,'post','post',8,0,'Runner\'s Knee Pain: Get Quicker Relief Non-Surgically with this treatment','Experiencing Runner\'s Knee Pain? Get Quicker Relief Non-Surgically with Regenerative Orthopedics and get back to what you love faster!','Runner&#8217;s Knee Pain: Get Relief Non-Surgically','publish',NULL,0,NULL,NULL,NULL,'Runner\'s Knee Pain',73,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Runners-Knee-500x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Runners-Knee-500x500.jpg',NULL,'first-content-image',NULL,1,0,NULL,'2020-05-06 11:47:33','2022-07-02 06:41:44',1,NULL,NULL,NULL,NULL,0,4,2,'2021-03-22 22:52:19','2019-06-12 10:57:08',NULL),(87,'https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/','112:2b73ddaee462ec7b1f983322406adcf6',3526,'post','post',8,0,NULL,'Not all Stem Cell Therapy is the same. At OrthoRegen, we are set apart from others because we use the Gold Standard in Stem Cell Therapy.','Stem Cell Therapy at OrthoRegen: Why We&#8217;re Different','publish',NULL,0,NULL,NULL,NULL,'Stem Cell Therapy',76,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png',NULL,'first-content-image',NULL,3,4,NULL,'2020-05-06 11:49:57','2022-10-31 04:35:52',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-08 23:09:17','2020-02-10 17:36:30',NULL),(88,'https://www.drfields.com/testimonials/cellular-regeneration-testimonials/','73:9a1b61dbe27d18af8c770c02a0e099b0',1700,'post','page',8,1268,NULL,NULL,'Stem Cell','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,20,19,NULL,'2020-05-06 11:53:05','2022-07-27 21:41:07',1,NULL,NULL,NULL,NULL,1,NULL,2,'2020-12-11 21:39:43','2019-06-14 10:13:50',NULL),(89,'https://www.drfields.com/articles/health-news/','46:7b6c2867df3f0ce658c160a5a8651ce5',33,'term','category',NULL,NULL,NULL,NULL,'Health News',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-06 11:53:53','2022-12-02 14:38:49',1,NULL,NULL,NULL,NULL,1,NULL,2,'2022-12-02 06:38:49','2019-06-12 16:45:48',NULL),(90,'https://www.drfields.com/about/the-athletic-doc/my-first-ironman-race-report/','77:1964e5887fd4ad5366b0c0119f53a0cd',92,'post','post',8,0,NULL,'I crossed the finish line of my first Ironman and something I hadn\'t heard before: \"Peter Fields, you are an Ironman!\"','My First Ironman: Race Report','publish',NULL,0,NULL,NULL,NULL,'First Ironman',75,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg',NULL,'first-content-image',NULL,9,1,NULL,'2020-05-06 11:55:53','2022-06-30 07:45:58',1,NULL,NULL,NULL,NULL,0,7,2,'2021-05-18 23:19:04','2019-06-07 06:12:41',NULL),(91,'https://www.drfields.com/articles/regenerative-orthopedics/dextrose-prolotherapy-is-it-for-you/','95:0937de9b175399759014a37cb64482ed',1454,'post','post',8,0,'Dextrose Prolotherapy: Is this non-surgical treatment option for you?','Dextrose Prolotherapy is a natural non-surgical method of assisting the body to heal injured joints, ligaments and tendons. Is it for you?','Dextrose Prolotherapy &#8211; Is It For You','publish',NULL,0,NULL,NULL,NULL,'Dextrose Prolotherapy',78,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-1-copy-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-1-copy-500x500.png',NULL,'first-content-image',NULL,5,NULL,NULL,'2020-05-06 11:57:06','2022-07-01 04:13:13',1,NULL,NULL,NULL,NULL,0,4,2,'2021-02-16 23:44:38','2019-06-12 11:20:30',NULL),(92,'https://www.drfields.com/about/orthoregen-our-philosophy/','57:c9bcbc442045d05ca2035cd387b661df',213,'post','post',8,0,NULL,'At OrthoRegen®, we want to help you achieve your goals of optimal health and sustained wellness using the most effective, least invasive path.','OrthoRegen®: Our Philosophy','publish',NULL,0,NULL,NULL,NULL,'OrthoRegen®',76,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Why-Choose-OrthoRegen-copy-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Why-Choose-OrthoRegen-copy-500x500.png',NULL,'first-content-image',NULL,5,1,NULL,'2020-05-06 11:57:28','2022-06-30 07:46:08',1,NULL,NULL,NULL,NULL,0,4,2,'2021-03-12 03:48:44','2019-06-07 09:54:45',NULL),(93,'https://www.drfields.com/?p=589','31:8ca6f3eb42df12b16d8b8523c1a7b68b',589,'post','post',8,0,NULL,NULL,'In the Clinic','draft',0,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2020-05-06 12:01:27','2022-07-28 04:41:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-07-07 23:01:08','2019-06-08 07:58:47',NULL),(94,'https://www.drfields.com/testimonials/shoulder-testimonials/','60:2b808b0ccbde40567bdbd74542d69631',1706,'post','page',8,1268,NULL,NULL,'Shoulder Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19,18,NULL,'2020-05-06 12:03:44','2022-07-27 21:41:04',1,NULL,NULL,NULL,NULL,1,NULL,2,'2020-12-11 21:32:20','2019-06-14 10:14:53',NULL),(95,'https://www.drfields.com/articles/regenerative-orthopedics/the-glenoid-labrum-of-the-shoulder/','94:a3417fc54002381bace8bb7a38ab6cfb',2773,'post','post',8,0,NULL,'When the glenoid labrum of the shoulder is injured, the shoulder is susceptible to dislocations and pain. Non-Surgical Regenerative Orthopedics repairs it.','The Glenoid Labrum of the Shoulder','publish',NULL,0,NULL,NULL,NULL,'glenoid labrum of the shoulder',75,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,'2020-05-06 12:23:32','2022-07-02 18:42:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-01 01:15:41','2019-09-23 12:45:08',NULL),(96,'https://www.drfields.com/about/philanthropy/','44:2e781e0ecf9c0c3ef6d375286d9d0933',19,'term','category',NULL,NULL,NULL,NULL,'Philanthropy',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-06 12:56:19','2022-11-02 01:02:23',1,NULL,NULL,NULL,NULL,1,NULL,2,'2022-11-01 18:02:23','2019-06-08 05:55:36',NULL),(97,'https://www.drfields.com/about/','31:d905a45223833a1c89b716e4bfc4e7f4',4,'term','category',NULL,NULL,NULL,NULL,'About',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-06 12:56:19','2023-08-07 10:44:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-07 03:44:39','2019-06-07 09:42:07',NULL),(98,'https://www.drfields.com/?p=585','31:be805824f90c3c85ee298c2b8bf02757',585,'post','post',8,0,NULL,NULL,'Olanchito The Town','draft',0,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'2020-05-06 12:58:00','2022-07-28 04:41:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-07-07 23:02:07','2019-06-08 07:58:05',NULL),(99,'https://www.drfields.com/articles/regenerative-orthopedics/is-your-hip-bursitis-treatment-working/','98:a7ee8a787ccccb0d63a39f878c546197',3511,'post','post',8,0,NULL,'In this article, we will discuss hip bursitis,  various treatment options for bursitis, and other reasons for hip pain that cause bursitis like symptoms.','Is Your Hip Pain from Bursitis?','publish',NULL,0,NULL,NULL,NULL,'hip pain from bursitis',78,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,'2020-05-06 13:00:09','2022-10-28 04:20:09',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-09 00:19:39','2020-01-20 03:42:38',NULL),(100,'https://www.drfields.com/?p=591','31:2345a95b38b703dd5774f3f3934c5234',591,'post','post',8,0,NULL,NULL,'Before and After','draft',0,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2020-05-06 13:00:33','2022-07-28 04:41:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-07-07 23:00:21','2019-06-08 07:59:10',NULL),(101,'https://www.drfields.com/about/philanthropy/honduras/','53:96660f295201cb9662b7b1b577df425d',23,'term','category',NULL,NULL,NULL,NULL,'Honduras',NULL,NULL,0,NULL,NULL,NULL,'Honduras',32,30,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-06 13:01:21','2022-07-28 04:41:08',1,NULL,NULL,NULL,NULL,1,NULL,2,NULL,NULL,NULL),(102,'https://www.drfields.com/?p=583','31:d2ca180ddfa702c2a1cb265cdd89bcae',583,'post','post',8,0,NULL,NULL,'The Final Party','draft',0,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'2020-05-06 13:01:29','2022-07-28 04:41:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-07-07 23:02:38','2019-06-08 07:57:05',NULL),(103,'https://www.drfields.com/about/the-athletic-doc/','48:1854ce4c1adf8a9e42df4ae3c002e4d9',3,'term','category',NULL,NULL,NULL,NULL,'The Athletic Doc',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-06 13:02:41','2023-08-12 03:56:39',1,NULL,NULL,NULL,NULL,1,NULL,2,'2023-08-11 20:56:39','2019-06-07 06:12:41',NULL),(104,'https://www.drfields.com/conditions/sports-injuries/knee-injuries/','66:11f3033a2e2f7ca1fcbfdf843d984959',533,'post','post',8,0,'Regenerative Orthopedic Treatments for Knee Injuries','Regenerative Orthopedics are exciting and new cutting-edge therapies that repair knee injuries by regenerating soft tissue of the knee joint.','Regenerative Orthopedics for Knee Injuries','publish',NULL,0,NULL,NULL,NULL,'Knee Injuries',76,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/knee-stem-cells-500x375.jpeg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/knee-stem-cells-500x375.jpeg',NULL,'first-content-image',NULL,20,7,NULL,'2020-05-06 13:34:25','2022-06-30 07:04:29',1,NULL,NULL,NULL,NULL,0,5,2,'2022-01-06 02:22:32','2019-06-08 07:21:58',NULL),(105,'https://www.drfields.com/articles/regenerative-orthopedics/why-regenerative-orthopedics-are-the-ideal-sports-medicine/','118:63a55087ee4bbdfe1a165e65b794cd9c',3134,'post','post',8,0,NULL,'Athletes of all ages desire to stay fit and active. Regenerative Orhopedics are the ideal sports medicine to keep you in your game.','Regenerative Orthopedics: The Ideal Sports Medicine','publish',NULL,0,NULL,NULL,NULL,'Ideal sports medicine',71,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/joint-injury.do-what-you-love-Copy-2-1-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/joint-injury.do-what-you-love-Copy-2-1-500x500.png',NULL,'first-content-image',NULL,1,0,NULL,'2020-05-06 13:44:51','2022-06-30 13:27:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-25 03:01:52','2019-11-01 05:32:28',NULL),(106,'https://www.drfields.com/conditions/sports-injuries/','52:3c65917a4cea1337ab9ed82e46c139b2',22,'term','category',NULL,NULL,NULL,NULL,'Sports Injuries',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-06 15:21:54','2023-03-16 02:24:54',1,NULL,NULL,NULL,NULL,1,NULL,2,'2023-03-15 19:24:53','2019-06-08 07:13:21',NULL),(107,'https://www.drfields.com/articles/regenerative-orthopedics/is-there-help-for-arthritis-pain-without-having-to-have-surgery/','123:425f2446e10ebe1a442c0dff1090daa9',1399,'post','post',8,0,'Is There Help for Arthritis Pain without having to have surgery?','The Gold Standard in Stem Cell Therapy is an amazing help for arthritis pain, slowing the progression & promoting regeneration of cartilage.','Is there Help for Arthritis Pain?','publish',NULL,0,NULL,NULL,NULL,'Help for Arthritis Pain',78,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/arthritis-steals-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/arthritis-steals-500x500.png',NULL,'first-content-image',NULL,3,NULL,NULL,'2020-05-06 15:39:04','2022-07-01 01:20:38',1,NULL,NULL,NULL,NULL,0,6,2,'2021-03-23 00:14:26','2019-06-12 10:55:29',NULL),(108,'https://www.drfields.com/about/common-questions-for-services-at-orthoregen/','75:57cf3dffbc14262ddab58e1cc6fc6343',207,'post','post',8,0,'Common Questions for Services at OrthoRegen','Common questions patients ask when considering non-surgical services at OrthoRegen to get rid of their joint and spine pain.','Common Questions','publish',NULL,0,NULL,NULL,NULL,'Services at OrthoRegen',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png',NULL,'first-content-image',NULL,1,1,NULL,'2020-05-06 16:18:59','2023-08-07 10:44:39',1,NULL,NULL,NULL,NULL,0,4,2,'2023-08-07 03:44:39','2019-06-07 09:48:41',NULL),(109,'https://www.drfields.com/knee-arthritis-treatment-that-get-srid-of-pain-at-the-source/','86:d0e3aaaf5dc6b00f1d1bbb17098a8d1a',2347,'post','page',8,0,'Knee Arthritis Treatment That Get sRid of Pain at the Source','Regenerative Orthopedics is an effective knee arthritis treatment. Plus, it works for knee injuries, and even an articular cartilage defects.','Knee Arthritis Treatment That Gets Rid of Pain at the Source','publish',NULL,0,NULL,NULL,NULL,'Knee Arthritis Treatment',78,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2021/06/knee-arthritis-500x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2021/06/knee-arthritis-500x500.jpg',NULL,'first-content-image',NULL,0,1,NULL,'2020-05-06 16:22:41','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,0,6,2,'2021-06-16 23:39:59','2019-06-28 08:15:07',NULL),(110,'https://www.drfields.com/articles/regenerative-orthopedics/amniotic-stem-cell-therapy/','86:03836f2233510b5095b9d5eaf7df82d7',2611,'post','post',8,0,NULL,'Amniotic stem cell therapy is being advertised all over the place for joint repair. But the product actually contains NO live stem cells. Read more.','Amniotic “Stem Cell” Therapy','publish',NULL,0,NULL,NULL,NULL,'Amniotic Stem Cell',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/08/Amniotic-400x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/08/Amniotic-400x500.jpg',NULL,'first-content-image',NULL,1,0,NULL,'2020-05-06 16:29:23','2022-06-30 18:04:49',1,NULL,NULL,NULL,NULL,0,8,2,'2021-08-22 23:55:33','2019-08-20 00:00:34',NULL),(111,'https://www.drfields.com/articles/regenerative-orthopedics/joint-surgery-think-again-learn-about-prolotherapy/','110:3e980245d7e474db0b0c8e8624de7124',1463,'post','post',8,0,NULL,'Have joint pain? Surgery is not always necessary. Non-surgical options, like Regenerative Orthopedics, can effectively reduce pain and improve function.','Surgery for Joint Pain? Think Again!','publish',NULL,0,NULL,NULL,NULL,'joint pain',73,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Claire.-pro-triathlete-2-Copy-2-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Claire.-pro-triathlete-2-Copy-2-500x500.png',NULL,'first-content-image',NULL,1,1,NULL,'2020-05-06 17:00:58','2022-07-28 04:41:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-06-30 20:35:47','2019-06-12 11:23:47',NULL),(112,'https://www.drfields.com/articles/regenerative-orthopedics/painful-joints-regenerative-orthopedics-works-even-when-other-treatments-fail/','137:251650c8baac80a7f71fa4067da2c387',2592,'post','post',8,0,NULL,'Regenerative Orthopedics has a greater chance at effectively repairing painful joints as it fixes the root cause of the joint pain problem.','Painful Joints?','publish',NULL,0,NULL,NULL,NULL,'painful joints',75,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/08/Sue.-knee.stem_-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/08/Sue.-knee.stem_-500x500.png',NULL,'first-content-image',NULL,1,0,NULL,'2020-05-06 17:02:38','2022-06-30 09:18:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-12-15 00:41:33','2019-08-12 13:14:29',NULL),(113,'https://www.drfields.com/articles/regenerative-orthopedics/how-to-avoid-joint-live-pain-free-with-regenerative-orthopedics/','123:5da0c5c15e396de32c6e50beaf05bf31',1423,'post','post',8,0,NULL,'Relieve joint pain with Regenerative Orthopedics without the need for surgery. In this article, we discuss three Regenerative Orthopedic techniques.','Pain-Free Living with Regenerative Orthopedics','publish',NULL,0,NULL,NULL,NULL,'Pain',73,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Get-rid-of-the-pain-400x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Get-rid-of-the-pain-400x500.png',NULL,'first-content-image',NULL,3,0,NULL,'2020-05-06 17:32:53','2022-12-03 12:33:34',1,NULL,NULL,NULL,NULL,0,5,2,'2022-12-03 04:33:33','2019-06-12 11:07:16',NULL),(114,'https://www.drfields.com/articles/regenerative-orthopedics/iliotibial-band-syndrome/','84:51878e796cf1a8d4547458c25333b419',2775,'post','post',8,0,NULL,'Regenerative Orthopedics offers a non-surgical treatment solution for patients to find healing with persistent iliotibial band syndrome.','Iliotibial Band Syndrome Repair','publish',NULL,0,NULL,NULL,NULL,'Iliotibial Band',80,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/10/IT-band-400x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/10/IT-band-400x500.png',NULL,'first-content-image',NULL,1,1,NULL,'2020-05-06 18:10:33','2022-06-30 09:31:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-10 22:01:58','2019-10-01 01:46:10',NULL),(115,'https://www.drfields.com/conditions/sports-injuries/tommy-john-surgery-and-all-surgeries-come-with-risks/','105:8f0fd851fcf41425e7c30796d787390e',632,'post','post',8,0,'Tommy John Surgery and All Surgeries Come with Risks','Surgeries, like Tommy John surgery, all come with risks. Regenerative Orthopedics are a non-surgical alternative to get you playing again.','Tommy John Surgery and All Surgeries Come with Risks','publish',NULL,0,NULL,NULL,NULL,'Tommy John Surgery',82,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/tommy-john-500x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/tommy-john-500x500.jpg',NULL,'first-content-image',NULL,12,1,NULL,'2020-05-06 18:36:12','2022-06-30 14:58:56',1,NULL,NULL,NULL,NULL,0,5,2,'2021-06-21 20:04:24','2019-06-08 08:32:53',NULL),(116,'https://www.drfields.com/terms/','31:b5b9f9fc728c0c8afb33afc938a2d218',977,'post','page',8,0,NULL,NULL,'Terms','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-06 18:55:39','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-07-01 00:02:42','2019-06-10 10:13:01',NULL),(117,'https://www.drfields.com/articles/magazine-column/','50:4d8eb10ec3bfeefb213c961779398fb3',34,'term','category',NULL,NULL,NULL,NULL,'Magazine Column',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-06 18:55:39','2022-12-02 15:31:16',1,NULL,NULL,NULL,NULL,1,NULL,2,'2022-12-02 07:31:15','2019-06-13 06:41:34',NULL),(118,'https://www.drfields.com/privacy-policy/','40:19af3c5c31dee76e75e182361426c2c3',3,'post','page',8,0,NULL,NULL,'Privacy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-06 18:55:39','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-07-01 17:56:54','2019-05-28 18:47:49',NULL),(119,'https://www.drfields.com/hip-testimonials/','42:c8e46209b1dd444a0345670365964555',1708,'post','page',8,0,NULL,NULL,'Hip Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19,0,NULL,'2020-05-06 19:16:04','2022-07-28 04:41:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-09-27 20:56:19','2019-06-14 10:15:07',NULL),(120,'https://www.drfields.com/conditions/sports-injuries/shoulder-injury-treatment/','78:b1f134916580e19ad5db06ced0bf8f7a',545,'post','post',8,0,NULL,NULL,'Shoulder Injury Treatment','publish',NULL,0,NULL,NULL,NULL,'Shoulder injury',74,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Slide17-500x375.jpeg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Slide17-500x375.jpeg',NULL,'first-content-image',NULL,6,0,NULL,'2020-05-06 19:53:13','2022-11-21 23:38:41',1,NULL,NULL,NULL,NULL,0,3,2,'2021-07-29 20:38:25','2019-06-08 07:38:23',NULL),(121,'https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/','96:3de78715719fee2ed6de5715747f933b',3484,'post','post',8,0,NULL,'The hope for the older athlete is to be as fit as when in the prime of their athletic careers. Regenerative Orthopedics keeps older athletes in their game.','How Arthritis Affects Older Athletes','publish',NULL,0,NULL,NULL,NULL,'Older athletes',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/12/arthritis.do-what-you-love-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/12/arthritis.do-what-you-love-500x500.png',NULL,'first-content-image',NULL,1,3,NULL,'2020-05-06 19:53:17','2022-07-27 21:41:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-13 19:32:46','2019-12-13 03:43:29',NULL),(122,'https://www.drfields.com/tag/prp-los-angeles/','45:8508a9a59808a48e6c211ad5dffad947',39,'term','post_tag',NULL,NULL,NULL,NULL,'PRP Los Angeles',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-06 19:53:18','2022-07-28 04:41:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-01-06 01:10:25','2019-08-09 18:34:24',NULL),(123,'https://www.drfields.com/conditions/chronic-pain/chronic-hip-pain/','66:b085a59551f7abc12baffd4da61d6bc6',2665,'post','post',8,0,NULL,'Our goal at OrthoRegen® is for hip pain patients to have an active, healthy, pain-free life. Regenerative Orthopedics offers a safe, affordable solution.','Hip Pain Solutions','publish',NULL,0,NULL,NULL,NULL,'hip pain',77,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,'first-content-image',NULL,3,0,NULL,'2020-05-06 19:53:19','2022-06-30 06:46:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-26 23:30:53','2019-08-30 22:24:05',NULL),(124,'https://www.drfields.com/articles/regenerative-orthopedics/','59:ca17418bb4e33bb8137762efb9e6098f',32,'term','category',NULL,NULL,NULL,NULL,'Regenerative Orthopedics',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,20,NULL,'2020-05-06 19:53:23','2023-08-17 04:39:22',1,NULL,NULL,NULL,NULL,1,NULL,2,'2023-08-16 21:39:22','2019-06-12 07:48:25',NULL),(125,'https://www.drfields.com/conditions/sports-injuries/neck-injury-treatments/','75:c6893bf30e389e49549fc1e87b1338df',536,'post','post',8,0,NULL,'Regenerative Orthopedic neck injury treatments can resolve neck pain and get you back to what you love without surgery, without medications, and without extended time off.','Neck Injury Treatments','publish',NULL,0,NULL,NULL,NULL,'Neck Injury Treatments',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Non-Surgical-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Non-Surgical-500x500.png',NULL,'first-content-image',NULL,8,1,NULL,'2020-05-06 19:56:58','2022-06-30 08:45:26',1,NULL,NULL,NULL,NULL,0,3,2,'2021-09-02 01:56:54','2019-06-08 07:28:00',NULL),(126,'https://www.drfields.com/conditions/sports-injuries/prolotherapy-for-foot-and-ankle-injuries/','93:a32d4bbe444ee79aa365cb9c5b07e2ac',595,'post','post',8,0,'Prolotherapy for Foot Injury Treatment by Dr. Fields | Prolotherapy in LA','Every day at OrthoRegen® we use Prolotherapy for foot and ankle injuries and get people back to enjoying a painfree lifestyle.','Prolotherapy for Foot Injuries','publish',NULL,0,NULL,NULL,NULL,'prolotherapy for foot',81,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,'first-content-image',NULL,8,0,NULL,'2020-05-06 19:57:05','2022-06-30 06:56:40',1,NULL,NULL,NULL,NULL,0,NULL,2,'2021-01-26 23:54:29','2019-06-08 08:11:07',NULL),(127,'https://www.drfields.com/articles/health-news/a-wonderful-ending-to-an-almost-disastrous-event/','95:c4d02134b121f95bf514e8032109d73f',1473,'post','post',8,0,NULL,'A Wonderful Ending to a Most Disastrous Event is an interesting article in the Santa Monica Daily Press by Peter A. Fields, MD, DC.','A wonderful ending to an almost disastrous event','publish',NULL,0,NULL,NULL,NULL,'A Wonderful Ending to An Almost Disastrous Event',74,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Santa-Monica-Daily-Press-Article-2.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Santa-Monica-Daily-Press-Article-2.jpg',NULL,'first-content-image',NULL,2,0,NULL,'2020-05-06 20:11:47','2022-12-02 14:38:49',1,NULL,NULL,NULL,NULL,0,2,2,'2022-12-02 06:38:49','2019-06-12 16:51:28',NULL),(128,'https://www.drfields.com/articles/allergic-reactions-and-problems-of-corrosion-with-joint-replacements/','103:5edb59ec44141b10284b33b496a33e43',3547,'post','post',8,0,NULL,'Allergic reactions to joint replacements, and the problem of corrosion from their wear and tear are real problems to consider. Find out about alternatives.','Allergic Reactions to Joint Replacements','publish',NULL,0,NULL,NULL,NULL,'Allergic reactions to joint replacements',75,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,0,NULL,'2020-05-06 21:05:51','2022-10-28 04:18:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-01 02:16:05','2020-03-04 20:52:08',NULL),(129,'https://www.drfields.com/articles/regenerative-orthopedics/exercise-injuries/','77:fe0324f07535d38fc3ba0bd7763c602a',1414,'post','post',8,0,'Injured While Exercising? Choose This Non-Surgical Alternative!','Prevent exercise injuries by easing into new exercise routines and gradually building up to heavier weights and more vigorous exercising.','Preventing Exercise Injuries','publish',NULL,0,NULL,NULL,NULL,'Exercise Injuries',72,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Exercising-at-home-1-copy-400x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Exercising-at-home-1-copy-400x500.png',NULL,'first-content-image',NULL,2,2,NULL,'2020-05-06 21:06:40','2022-07-03 21:50:45',1,NULL,NULL,NULL,NULL,0,5,2,'2021-02-03 02:16:52','2019-06-12 11:02:55',NULL),(130,'https://www.drfields.com/articles/regenerative-orthopedics/persistent-joint-pain-regenerative-orthopedics-may-be-the-answer/','124:b3e51852e07b6992ec99b32540a006ab',1461,'post','post',8,0,NULL,'Can\'t get a break from persistent joint pain? Tried all kinds of therapies to no avail? Regenerative Orthopedics just might be your answer!','Persistent Joint Pain? Try Regenerative Orthopedics','publish',NULL,0,NULL,NULL,NULL,'persistent joint pain',75,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Pain.-OrthoRegen-Copy-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Pain.-OrthoRegen-Copy-500x500.png',NULL,'first-content-image',NULL,1,0,NULL,'2020-05-06 21:24:12','2022-06-30 10:19:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-12 18:02:54','2019-06-12 11:22:59',NULL),(131,'https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/','95:9dc6405ea9be2b5a459e97724b33ecbf',1459,'post','post',8,0,'Cortisone - Is it Really Good for You?','Cortisone - Is it Really Good for You? Although cortisone injections reduce pain, they do so at the cost of destroying tissue.','Cortisone &#8211; Is it Really Good for You?','publish',NULL,0,NULL,NULL,NULL,'Cortisone',76,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/older-man-pain.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/older-man-pain.jpg',NULL,'first-content-image',NULL,4,4,NULL,'2020-05-06 21:26:34','2022-07-27 21:41:07',1,NULL,NULL,NULL,NULL,0,4,2,'2021-01-29 23:06:42','2019-06-12 11:22:07',NULL),(132,'https://www.drfields.com/articles/regenerative-orthopedics/active-and-looking-to-avoid-joint-replacement/','105:c7a6a9bd5a919da4d17ccd1777940076',2865,'post','post',8,0,NULL,'Regenerative Orthopedics is an effective option for those desiring to avoid joint replacement and get back to the level of activities they love.','Avoid Joint Replacement and Stay Active','publish',NULL,0,NULL,NULL,NULL,'Avoid Joint Replacement',73,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/10/Claire.-pro-triathlete-500x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/10/Claire.-pro-triathlete-500x500.jpg',NULL,'first-content-image',NULL,1,0,NULL,'2020-05-06 21:27:37','2022-07-02 03:45:33',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-26 17:39:34','2019-10-14 02:00:23',NULL),(133,'https://www.drfields.com/about/stem-cell-doctor/','48:1389728a1b9898bb376dab9942408021',292,'post','post',8,0,'Stem Cell Doctor in the Los Angeles Area- Peter A. Fields, MD, DC','A Stem Cell Doctor like Peter A. Fields, MD, DC provides Regenerative Orthopedics solutions for painful joint conditions.','Stem Cell Doctor','publish',NULL,0,NULL,NULL,NULL,'Stem Cell Doctor',78,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg',NULL,'first-content-image',NULL,5,0,NULL,'2020-05-06 22:24:50','2022-06-30 07:45:57',1,NULL,NULL,NULL,NULL,0,4,2,'2021-04-26 20:14:19','2019-06-07 11:19:41',NULL),(134,'https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/','71:5cd87ec923cdcb8707d0a64d67b95aa5',373,'post','post',8,0,'The Athletic Doc® Continues to Enjoy Athletic Challenges','Dr. Fields, The Athletic Doc®, has completed 11 Ironman races, numerous triathlons, and many half Ironman competitions.','About The Athletic Doc','publish',NULL,0,NULL,NULL,NULL,'The Athletic Doc®',76,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg',NULL,'first-content-image',NULL,9,15,NULL,'2020-05-06 22:24:52','2023-08-12 03:56:39',1,NULL,NULL,NULL,NULL,0,5,2,'2023-08-11 20:56:39','2019-06-08 04:12:56',NULL),(135,'https://www.drfields.com/questions-costs/','41:7193295cbd4adbec8867b11b4c06ef70',2536,'post','page',8,0,NULL,NULL,'Questions + Costs','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg',NULL,'first-content-image',NULL,3,0,NULL,'2020-05-06 22:25:00','2023-03-23 10:38:58',1,NULL,NULL,NULL,NULL,0,3,2,'2023-03-23 03:38:58','2019-08-01 20:45:04',NULL),(136,'https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/','71:9e23f1eb3ba89c8fba9faf338b35460c',511,'post','post',8,0,NULL,'Our goal at OrthoRegen® is for patients to have an active, healthy, pain-free life instead of chronic shoulder pain.','Chronic Shoulder Pain','publish',NULL,0,NULL,NULL,NULL,'Chronic Shoulder Pain',82,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/11/shoulder-pain.-Hauser-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/11/shoulder-pain.-Hauser-500x419.png',NULL,'first-content-image',NULL,7,4,NULL,'2020-05-06 22:27:26','2023-05-09 03:50:21',1,NULL,NULL,NULL,NULL,0,4,2,'2023-03-15 19:30:57','2019-06-08 06:55:13',NULL),(137,'https://www.drfields.com/conditions/chronic-pain/stop-back-pain/','64:ea52e01dafc406b20d1ed887e1c03f76',2760,'post','post',8,0,NULL,'The most common cause of back pain is spinal instability due to weakened ligaments. Regenerative Orthopedics repairs them & can stop back pain.','Stop Back Pain with Regenerative Orthopedics','publish',NULL,0,NULL,NULL,NULL,'Stop Back Pain',82,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/09/Back-Pain.-Prolotherapy-500x375.jpeg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/09/Back-Pain.-Prolotherapy-500x375.jpeg',NULL,'first-content-image',NULL,2,3,NULL,'2020-05-06 22:27:26','2022-06-30 11:41:02',1,NULL,NULL,NULL,NULL,0,6,2,'2021-06-18 21:48:51','2019-09-12 13:35:04',NULL),(138,'https://www.drfields.com/conditions/sports-injuries/get-rid-of-back-pain-with-regenerative-orthopedics/','103:ba7c4dbb8b274abd70a1817c8f46e1da',567,'post','post',8,0,'Get Rid of Back Pain with Regenerative Orthopedics','Get rid of back pain safely with non-surgical Regenerative Orthopedics and enjoy the activities you\'ve been missing.','Get Rid of Back Pain with Regenerative Orthopedics','publish',NULL,0,NULL,NULL,NULL,'Get Rid of Back Pain',78,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',NULL,'first-content-image',NULL,9,0,NULL,'2020-05-06 22:27:37','2022-06-30 22:03:02',1,NULL,NULL,NULL,NULL,0,3,2,'2021-07-07 19:29:00','2019-06-08 07:53:43',NULL),(139,'https://www.drfields.com/articles/health-news/dr-sinatras-list-of-top-doctors-list/','83:3118cedf5c4053a7923bb8ad624edc52',1500,'post','post',8,0,NULL,NULL,'Dr. Sinatra&#8217;s List of Top Doctors List','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg',NULL,'first-content-image',NULL,0,0,NULL,'2020-05-07 00:08:37','2022-07-01 06:15:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-06-30 21:05:32','2019-06-13 06:17:29',NULL),(140,'https://www.drfields.com/articles/hip-labral-tears-and-non-surgical-repair-with-regenerative-orthopedics/','105:344b1315060471d4d08320cff985b6e6',2362,'post','post',8,0,NULL,'We have treated hip labrum tears successfully for many years at OrthoRegen®, and offer an effective alternative to hip surgery in cases of hip labral tears.','Hip Labral Tears? Get Non-Surgical Repair','publish',NULL,0,NULL,NULL,NULL,'Hip Labral Tears',76,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/labral-tear-400x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/labral-tear-400x500.png',NULL,'first-content-image',NULL,3,0,NULL,'2020-05-07 01:33:24','2022-07-28 04:41:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-07 20:59:58','2019-07-02 23:14:56',NULL),(141,'https://www.drfields.com/dr-fields-on-the-radio/','48:ed41b43da47e321cbaff2bba8d639a2d',1584,'post','page',8,0,NULL,NULL,'Dr. Fields on the Radio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg',NULL,'first-content-image',NULL,6,1,NULL,'2020-05-07 02:52:16','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-09-09 20:23:57','2019-06-13 09:23:00',NULL),(142,'https://www.drfields.com/testimonials/spanish-testimonials/','59:076081b99f73e49b35db90985fe099a4',1723,'post','page',8,1268,NULL,NULL,'Spanish Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19,17,NULL,'2020-05-07 03:24:34','2022-07-27 21:41:04',1,NULL,NULL,NULL,NULL,1,NULL,2,'2019-09-27 20:56:26','2019-06-14 10:17:02',NULL),(143,'https://www.drfields.com/kilimanjaro-pre-hike/','46:3aa87a49715f1826dfb6fc6f11ec0d9d',1789,'post','page',8,0,NULL,NULL,'Kilimanjaro Pre-Hike','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908-300x300.jpg',NULL,NULL,'gallery-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908-300x300.jpg',NULL,'gallery-image',NULL,7,1,NULL,'2020-05-07 04:03:52','2022-07-26 13:49:30',1,NULL,NULL,NULL,NULL,0,1,2,'2022-07-26 06:49:29','2019-06-14 13:48:47',NULL),(144,'https://www.drfields.com/testimonials/elbow-testimonials/','57:4c33f37142d115b3c8b5b97cf249f2cd',1715,'post','page',8,1268,NULL,NULL,'Elbow Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19,18,NULL,'2020-05-07 04:37:10','2022-07-27 21:41:04',1,NULL,NULL,NULL,NULL,1,NULL,2,'2019-09-27 20:56:22','2019-06-14 10:15:53',NULL),(145,'https://www.drfields.com/testimonials/foot-testimonials/','56:2a00a2c87ae59f9fcb1367e2eb2ece4e',1717,'post','page',8,1268,NULL,NULL,'Foot Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19,18,NULL,'2020-05-07 04:41:05','2022-07-27 21:41:04',1,NULL,NULL,NULL,NULL,1,NULL,2,'2020-12-11 21:30:28','2019-06-14 10:16:16',NULL),(146,'https://www.drfields.com/testimonials/headache-testimonials/','60:49c42add1734527361f34553b0f5bfce',1729,'post','page',8,1268,NULL,NULL,'Headache Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19,18,NULL,'2020-05-07 04:45:09','2022-07-27 21:41:04',1,NULL,NULL,NULL,NULL,1,NULL,2,'2020-12-11 21:27:51','2019-06-14 10:17:48',NULL),(147,'https://www.drfields.com/testimonials/low-back-testimonials/','60:943ad869e094fae3a6a86977418e1d22',1704,'post','page',8,1268,NULL,NULL,'Low Back Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19,18,NULL,'2020-05-07 04:49:10','2022-07-27 21:41:04',1,NULL,NULL,NULL,NULL,1,NULL,2,'2020-12-11 21:32:43','2019-06-14 10:14:40',NULL),(148,'https://www.drfields.com/articles/regenerative-orthopedics/regenerative-medicine-lecture-in-mexico-city-english/','112:68f1f9ebe83f37cb4c3a9fc39e517ea4',1419,'post','post',8,0,NULL,'Peter A. Fields, MD, DC discusses how Regenerative Medicine techniques like Stem Cell Therapy, PRP, and Dextrose Prolotherapy can help you avoid surgery.','Regenerative Medicine Lecture in Mexico City','publish',NULL,0,NULL,NULL,NULL,'Regenerative Medicine',76,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-7.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-7.jpg',NULL,'first-content-image',NULL,2,0,NULL,'2020-05-07 04:56:40','2022-07-28 04:41:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-07-26 02:04:08','2019-06-12 11:04:56',NULL),(149,'https://www.drfields.com/testimonials/ganglion-cyst-testimonials/','65:47e4023929e4469f8ed435e7563fdedc',1727,'post','page',8,1268,NULL,NULL,'Ganglion Cyst Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19,17,NULL,'2020-05-07 05:03:07','2022-07-27 21:41:04',1,NULL,NULL,NULL,NULL,1,NULL,2,'2020-12-11 21:27:16','2019-06-14 10:17:31',NULL),(150,'https://www.drfields.com/uncategorized/','39:f64ed221b6fe83bf7baf875366bc1a58',1,'term','category',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-07 05:03:19','2023-09-20 09:29:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-20 02:29:08','2019-06-13 08:23:16',NULL),(151,'https://www.drfields.com/testimonials/hamstring-testimonials/','61:9055ee8413f8ad8fca86fa69c9f39003',1725,'post','page',8,1268,NULL,NULL,'Hamstring Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19,18,NULL,'2020-05-07 05:03:41','2022-07-28 04:41:05',1,NULL,NULL,NULL,NULL,1,NULL,2,'2019-09-27 20:56:27','2019-06-14 10:17:16',NULL),(152,'https://www.drfields.com/testimonials/wrist-testimonials/','57:515fcef856ea0896dfb4ce67e5ccc151',1719,'post','page',8,1268,NULL,NULL,'Wrist Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19,17,NULL,'2020-05-07 05:09:11','2022-07-27 21:41:04',1,NULL,NULL,NULL,NULL,1,NULL,2,'2020-12-11 21:31:37','2019-06-14 10:16:30',NULL),(153,'https://www.drfields.com/?page_id=1758','38:d9b45248c585b42c97a5685fa04f7f2c',1758,'post','page',8,0,NULL,NULL,'Ironman','draft',0,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/event-logo-im-hamburg.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/event-logo-im-hamburg.jpg',NULL,'first-content-image',NULL,NULL,0,NULL,'2020-05-07 05:14:13','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-02-25 23:04:38','2019-06-14 13:04:31',NULL),(154,'https://www.drfields.com/articles/regenerative-orthopedics/staying-out-of-the-hospital-and-avoiding-surgery-with-regenerative-orthopedics/','138:1c8977f78ee30e5e23340b7e168b04e3',1452,'post','post',8,0,'Staying Out of the Hospital, Avoiding Surgery with Regenerative Orthopedics','If you have pain but are trying to stay out of the hospital and avoiding surgery, Regenerative Orthopedics is your non-surgical alternative.','Staying Out of the Hospital and Avoiding Surgery with Regenerative Orthopedics','publish',NULL,0,NULL,NULL,NULL,'Staying Out of the Hospital',75,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Avoid-the-hospital-1-500x466.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Avoid-the-hospital-1-500x466.png',NULL,'first-content-image',NULL,4,NULL,NULL,'2020-05-07 05:45:39','2022-06-30 14:19:38',1,NULL,NULL,NULL,NULL,0,7,2,'2021-03-12 03:07:21','2019-06-12 11:19:46',NULL),(155,'https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-options-for-arthritis/','99:8e92f46c0708ea62407c911f36af7781',1416,'post','post',8,0,NULL,'Stem Cell Therapy for arthritis offers a non-surgical alternative to effective joint repair and pain relief, without the need for joint replacement.','Stem Cell Therapy for Arthritis','publish',NULL,0,NULL,NULL,NULL,'Stem Cell Therapy for Arthritis',76,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Knee-Stems-500x375.jpeg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Knee-Stems-500x375.jpeg',NULL,'first-content-image',NULL,3,1,NULL,'2020-05-07 07:39:48','2022-06-30 08:45:26',1,NULL,NULL,NULL,NULL,0,6,2,'2021-07-23 22:48:24','2019-06-12 11:03:40',NULL),(156,'https://www.drfields.com/regenerative-techniques/regenerative-orthopedic-treatment-options-getting-back-on-the-right-foot/','122:7a2948185efcad8c9e2abe779023df47',2565,'post','post',8,0,'Regenerative Orthopedic Treatment Options | PRP in Los Angeles Area','Prolotherapy foot treatment is just one of the many different kinds of ways that our regenerative orthopedic treatments can help. Hip injury treatment methods don’t get any more non-invasive than our prolotherapy injections. For the right prolotherapy doctors, contact us at: (310) 453-1234','Regenerative Orthopedic Treatment Options: Getting Back on the Right Foot','publish',NULL,0,NULL,NULL,NULL,'Regenerative Orthopedic',76,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedic...jpg',NULL,'2566','featured-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedic...jpg','2566','featured-image','{\"width\":800,\"height\":534,\"url\":\"https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedic...jpg\",\"path\":\"/home/drfiel5/public_html/wp-content/uploads/2019/08/Regenerative-Orthopedic...jpg\",\"size\":\"full\",\"id\":2566,\"alt\":\"Regenerative Orthopedic..\",\"pixels\":427200,\"type\":\"image/jpeg\"}',1,0,NULL,'2020-05-07 07:55:58','2022-06-30 07:04:29',1,NULL,NULL,NULL,NULL,0,4,2,'2022-01-06 01:10:25','2019-08-16 08:00:50',NULL),(1433,'https://www.drfields.com/articles/regenerative-orthopedics/bone-marrow-concentrate-and-platelet-rich-plasma-are-growing-in-popularity/','134:3a3edd0524eb3e4c7fa7cb9be48bce11',5651,'post','post',8,0,'Bone Marrow Concentrate and PRP are Growing in Popularity','Bone Marrow Concentrate and Platelet Rich Plasma are growing in popularity and are effective in treating various joint injuries and arthritis.','Regenerative Orthopedics Growing in Popularity','publish',NULL,0,NULL,NULL,NULL,'Bone Marrow Concentrate and Platelet Rich Plasma Are Growing in Popularity',72,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/01/PRP-and-BMC-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/01/PRP-and-BMC-500x419.png',NULL,'first-content-image',NULL,2,0,NULL,'2023-01-02 03:17:13','2023-04-08 16:10:19',1,NULL,NULL,NULL,NULL,0,3,2,'2023-01-13 21:39:02','2023-01-02 03:21:11',NULL),(159,'https://www.drfields.com/articles/regenerative-orthopedics/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/','129:a478125c8010fbede5c3d76b4570f6f7',1391,'post','post',8,0,'get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain','Regenerative Orthopedics give hope to people living with knee arthritis by providing pain relief, joint repair, and improved function.','Get Rid of Knee Arthritis Symptoms by Treating the Source of the Pain','publish',NULL,0,NULL,NULL,NULL,'Knee Arthritis',73,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/knee-arthritis-500x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/knee-arthritis-500x500.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2020-05-07 08:24:12','2022-06-30 09:36:43',1,NULL,NULL,NULL,NULL,0,4,2,'2021-05-12 21:45:50','2019-06-12 10:02:21',NULL),(160,'https://www.drfields.com/articles/health-news/regenerative-orthopedics-lecture/','79:42bbf43e233cb9312600d58a7dd14061',1434,'post','post',8,0,'Regenerative Orthopedics Lecture by Peter A. Fields, MD, DC on Zoom','Join us Sunday, June 5th for a Regenerative Orthopedics Lecture with leading expert Peter A. Fields, MD, DC at 9AM Los Angeles time.','Regenerative Orthopedics Lecture on Zoom','publish',NULL,0,NULL,NULL,NULL,'Regenerative Orthopedics Lecture',73,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png',NULL,'first-content-image',NULL,2,1,NULL,'2020-05-07 10:22:47','2022-06-30 07:04:28',1,NULL,NULL,NULL,NULL,0,2,2,'2022-05-28 03:55:49','2022-05-12 10:35:04',NULL),(162,'https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/','85:16ed4276144ee7cf026abb99ea5b6124',1397,'post','post',8,0,NULL,'Non-Surgical Regenerative Orthopedics is an excellent option to repair knee and hip as a result of meniscus and labral tears.','Meniscus and Labral Tears','publish',NULL,0,NULL,NULL,NULL,'Meniscus and Labral Tears',78,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/10/meniscus-tears-500x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/10/meniscus-tears-500x500.jpg',NULL,'first-content-image',NULL,1,2,NULL,'2020-05-07 12:08:52','2022-06-30 15:16:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-26 02:44:35','2019-10-16 10:54:01',NULL),(163,'https://www.drfields.com/articles/health-news/health-concerns-about-dairy-products/','83:370152a7aefdec39794c3dde90fad745',1482,'post','post',8,0,NULL,NULL,'Health Concerns about Dairy Products','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,NULL,'2020-05-07 12:18:12','2022-07-28 04:41:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-13 06:07:50','2019-06-13 06:07:50',NULL),(164,'https://www.drfields.com/articles/health-news/bio-identical-hormones-for-a-happier-and-healthier-lifestyle/','107:07a740b6bcda126d91247b59732e51ac',1486,'post','post',8,0,'Bio-Identical Hormones for a Happier and Healthier Lifestyle','Natural, bio-identical hormones can help you achieve your health goals without the risks and side effects associated with synthetic hormones.','Bio-Identical Hormones and Aging','publish',NULL,0,NULL,NULL,NULL,'Bio-identical hormones',71,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/health-insurance.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/health-insurance.jpg',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-05-07 12:51:53','2022-07-02 14:37:26',1,NULL,NULL,NULL,NULL,0,3,2,'2021-12-15 02:58:22','2019-06-13 06:09:49',NULL),(165,'https://www.drfields.com/articles/regenerative-orthopedics/failed-back-surgery-syndrome/','88:247658892a2bb8645f21e791b855a118',1389,'post','post',8,0,NULL,'Regenerative Orthopedics help you avoid Failed Back Surgery Syndrome by addressing the causes of back pain in a non-surgical manner.','Failed Back Surgery Syndrome','publish',NULL,0,NULL,NULL,NULL,'Failed Back Surgery Syndrome',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/failed-back-surgery-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/failed-back-surgery-500x500.png',NULL,'first-content-image',NULL,0,1,NULL,'2020-05-07 14:00:25','2022-06-30 17:41:52',1,NULL,NULL,NULL,NULL,0,7,2,'2021-04-05 22:40:23','2019-06-12 10:01:26',NULL),(166,'https://www.drfields.com/articles/regenerative-orthopedics/do-overuse-injuries-have-you-sidelined/','98:d7d0019efeacfd933606532f79fcbcad',2912,'post','post',8,0,NULL,'Overuse injuries from repetitive activities can sideline you from from being active. Regenerative Orthopedics can repair the injuries non-surgically.','Do Overuse Injuries Have You Sidelined?','publish',NULL,0,NULL,NULL,NULL,'Overuse injuries',78,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,'2020-05-07 14:46:39','2022-07-01 13:14:08',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-25 17:03:09','2019-10-18 03:54:37',NULL),(167,'https://www.drfields.com/articles/health-news/dr-fields-interviewed-on-kcal-cbs-about-prolotherapy-2/','101:38e07c93ece49a90192bb2e28ff9756f',1504,'post','post',8,0,'Dr. Fields Interviewed on KCAL/CBS about Prolotherapy','In this video, Dr. Fields is Interviewed on KCAL/CBS About Prolotherapy, an effective non-surgical technique to repair joint injuries.','Dr. Fields interviewed on KCAL/CBS about Prolotherapy','publish',NULL,0,NULL,NULL,NULL,'Dr. Fields Interviewed on KCAL/CBS about Prolotherapy',73,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png',NULL,'first-content-image',NULL,3,NULL,NULL,'2020-05-07 15:33:15','2022-07-04 15:05:17',1,NULL,NULL,NULL,NULL,0,2,2,'2021-01-14 01:53:29','2019-06-13 06:19:13',NULL),(168,'https://www.drfields.com/final-goodbyes-and-certificates/','57:4f6a00a21cf5273f8414c6da7060979f',2294,'post','page',8,0,NULL,NULL,'Final goodbyes and certificates','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-5.jpg',NULL,NULL,'gallery-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-5.jpg',NULL,'gallery-image',NULL,9,1,NULL,'2020-05-07 15:38:20','2022-07-28 11:06:19',1,NULL,NULL,NULL,NULL,0,1,2,'2022-07-28 04:06:18','2019-06-28 06:57:12',NULL),(169,'https://www.drfields.com/articles/regenerative-orthopedics/persistent-elbow-pain/','81:1b23a9df31423bee48161681706ed97b',3297,'post','post',8,0,NULL,'In this article, find out what is behind your elbow pain and how to get rid of the pain and get back to what you love without the need for surgery.','Persistent Elbow Pain','publish',NULL,0,NULL,NULL,NULL,'Elbow pain',71,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,'2020-05-07 15:56:22','2022-07-01 17:37:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-24 22:04:34','2019-11-14 04:46:30',NULL),(170,'https://www.drfields.com/recommended-sites/','43:1372aded71f0826730f63d364c7e9e79',1773,'post','page',8,0,NULL,NULL,'Recommended Sites','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/recomment-sites.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/recomment-sites.jpg',NULL,'first-content-image',NULL,0,0,NULL,'2020-05-07 16:01:24','2022-07-28 04:41:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-14 13:47:32','2019-06-14 13:23:01',NULL),(171,'https://www.drfields.com/articles/health-news/can-surgery-cause-strokes/','72:dec5d0604f151733c2d65e43f9f9b92e',2697,'post','post',8,0,NULL,'Since surgery can cause strokes, and anesthesia adds to the risk, it is great to know Regenerative Orthopedics is an alternative to surgery.','Can Surgery Cause Strokes?','publish',NULL,0,NULL,NULL,NULL,'surgery cause strokes',71,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-07 16:26:58','2022-06-30 07:52:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-01 21:21:19','2019-09-03 22:08:03',NULL),(172,'https://www.drfields.com/articles/regenerative-orthopedics/neurologic-problems-after-epidural-corticosteroid-injections/','120:fcaa532a345531b52b5646438229031e',1429,'post','post',8,0,NULL,'In this article, Peter A. Fields, MD, DC talks about problems that may occur with corticosteroid injections, otherwise known as cortisone injections.','Problems After Corticosteroid Injections','publish',NULL,0,NULL,NULL,NULL,'Corticosteroid injections',73,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,'2020-05-07 18:19:36','2022-07-28 04:41:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-07-26 01:19:03','2019-06-12 11:11:34',NULL),(1450,'https://www.drfields.com/uncategorized/knee-replacement-failure/','64:95a209b5cb96d350f35899925ed47b9f',5736,'post','post',8,0,'Knee Replacement Failure','We are pleased to offer this alternative to knee replacement when knee replacement failure is a concern. Give us a call 310-453-1234.','Knee Replacement Failure','publish',NULL,0,NULL,NULL,NULL,'Knee Replacement Failure',76,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/04/Knee-Replacement-Failures-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/04/Knee-Replacement-Failures-500x419.png',NULL,'first-content-image',NULL,0,0,NULL,'2023-04-08 16:02:28','2023-07-02 19:46:04',1,NULL,NULL,NULL,NULL,0,4,2,'2023-05-03 20:31:38','2023-04-06 10:02:13',NULL),(174,'https://www.drfields.com/articles/regenerative-orthopedics/cortisone-injections-are-as-safe-as-you-think/','105:395bda5736add7761c8a1bfbb785854b',2915,'post','post',8,0,NULL,'Cortisone injections are commonly recommended for arthritis, but research shows how it can actually boost the arthritic process.','Cortisone Injections: Are They As Safe As You Think','publish',NULL,0,NULL,NULL,NULL,'cortisone injections',78,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2020/08/cortisone-400x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2020/08/cortisone-400x500.png',NULL,'first-content-image',NULL,1,1,NULL,'2020-05-07 19:50:55','2022-06-30 09:38:39',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-12 20:40:48','2019-10-18 03:57:41',NULL),(175,'https://www.drfields.com/regenerative-techniques/los-angeles-prp/','65:e975e17134571f71fc886480a4225160',1669,'post','post',8,0,NULL,'PRP Prolotherapy can be a miracle when it comes to ending joint damage and muscle pain, especially when compare to invasive surgery.','Los Angeles PRP Prolotherapy','publish',NULL,0,NULL,NULL,NULL,'PRP Prolotherapy',75,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2020-05-07 19:51:01','2022-07-01 02:21:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-07 17:50:49','2019-06-14 08:09:40',NULL),(176,'https://www.drfields.com/?p=1831','32:c12fe75ee93a8f561a4490959417b499',1831,'post','post',8,0,NULL,NULL,'Bio-Identical Hormones','draft',0,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Bio-Identical-Hormones.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Bio-Identical-Hormones.jpg',NULL,'first-content-image',NULL,9,1,NULL,'2020-05-07 20:11:57','2022-07-28 04:41:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-05 23:52:56','2019-06-14 14:50:37',NULL),(177,'https://www.drfields.com/articles/regenerative-orthopedics/is-surgery-a-good-option-for-meniscus-tears/','103:aed023c960cd838dccf5da8bd9d79881',2503,'post','post',8,0,NULL,'Regenerative Orthopedic can safely and effectively treat meniscus tears without the need for surgery, returning you quickly to the activities you enjoy.','Meniscus Tears: Is Surgery a Good Option?','publish',NULL,0,NULL,NULL,NULL,'meniscus tears',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/07/meniscus-injuries-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/07/meniscus-injuries-500x500.png',NULL,'first-content-image',NULL,1,1,NULL,'2020-05-07 20:40:25','2022-06-30 08:00:41',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-07 20:26:11','2019-07-29 14:50:12',NULL),(178,'https://www.drfields.com/articles/health-news/dr-fields-talks-about-the-dangers-of-anti-inflammatory-medicines/','111:26be8529f0041180310571bd8545df8b',1502,'post','post',8,0,'Dr. Fields Talks About the Dangers of Anti-Inflammatory Medicines','Check out this Interview with expert lecturer Peter A. Fields, MD, DC on KCAL/CBS About the Dangers of Anti-Inflammatory Medicines.','Dr. Fields Talks About the Dangers of Anti-Inflammatory Medicines','publish',NULL,0,NULL,NULL,NULL,'Dr. Fields Talks About the Dangers of Anti-Inflammatory Medicines',78,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,'2020-05-07 21:07:36','2022-07-04 03:19:11',1,NULL,NULL,NULL,NULL,0,2,2,'2021-01-16 01:23:59','2019-06-13 06:18:07',NULL),(179,'https://www.drfields.com/articles/health-news/protein-foods/','60:aa96f0c343936aab5680308ef1118543',1496,'post','post',8,0,NULL,'Whether you are a meat eater or not, a healthy eating pattern will include a variety of high-quality protein foods.','Protein Foods','publish',NULL,0,NULL,NULL,NULL,'Protein Foods',73,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Healthy-Breakfast.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Healthy-Breakfast.jpg',NULL,'first-content-image',NULL,3,NULL,NULL,'2020-05-07 21:34:56','2022-07-01 13:32:01',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-12-16 01:57:10','2019-06-13 06:15:02',NULL),(180,'https://www.drfields.com/articles/prolotherapy-research/tennis-elbow-or-lateral-epicondylitis/','94:d6e1f46667e049add89f3c21c57559bf',2024,'post','post',8,0,NULL,'Lateral Epicondylitis patients who received Prolotherapy continued to improve at the 3 month follow-up, but those who received cortisone did not.','Prolotherapy or Cortisone?','publish',NULL,0,NULL,NULL,NULL,'Prolotherapy or Cortisone',71,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium-1.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium-1.png',NULL,'first-content-image',NULL,3,0,NULL,'2020-05-07 23:06:16','2022-07-28 04:41:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-12 20:48:27','2019-06-15 11:18:59',NULL),(181,'https://www.drfields.com/articles/regenerative-orthopedics/what-to-ask-when-looking-for-a-prolotherapist/','105:fbc6fab9641604d94d5ea64cc2a3b84c',1450,'post','post',8,0,'What Should You Ask When Looking for A Prolotherapist','Looking for a Prolotherapist? Peter A. Fields, MD, DC is an experienced physician dedicated to providing highly effective & safe treatments.','What to Ask When Looking for a Prolotherapist','publish',NULL,0,NULL,NULL,NULL,'When Looking for a Prolotherapist',73,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-2-186x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-2-186x500.png',NULL,'first-content-image',NULL,3,NULL,NULL,'2020-05-07 23:57:56','2022-06-30 09:37:30',1,NULL,NULL,NULL,NULL,0,3,2,'2021-08-05 20:57:04','2019-06-12 11:19:03',NULL),(182,'https://www.drfields.com/how-prolotherapy-can-eliminate-joint-pain-without-surgery/','83:89fa921126bca5b53f2df32c29c4949a',1682,'post','page',8,0,'How Prolotherapy Can Eliminate Joint Pain Without Surgery','You\'ve tried all kinds of treatments to eliminate your joint pain without surgery, but still have pain. Non-surgical Prolotherapy can help!','How Prolotherapy Can Eliminate Joint Pain Without Surgery','publish',NULL,0,NULL,NULL,NULL,'Eliminate Joint Pain Without Surgery',76,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg',NULL,'first-content-image',NULL,1,1,NULL,'2020-05-08 00:15:22','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,0,4,2,'2021-02-16 21:48:52','2019-06-14 09:24:45',NULL),(183,'https://www.drfields.com/articles/magazine-column/townsend-letter-knee-pain-and-dysfunction/','92:783d191bddae8b11bdf419636b27d27c',1539,'post','post',8,0,NULL,'Tired of knee pain? Regenerative Orthopedics, like Stem Cell Therapy, PRP, and Prolotherapy are excellent non-surgical solutions.','Townsend Letter: Knee Pain and Dysfunction','publish',NULL,0,NULL,NULL,NULL,'Knee Pain and Dysfunction',74,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-july-2013.jpg',NULL,'1200','featured-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-july-2013.jpg','1200','featured-image','{\"width\":224,\"height\":287,\"url\":\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-july-2013.jpg\",\"path\":\"/home/drfiel5/public_html/wp-content/uploads/2019/06/townsend-july-2013.jpg\",\"size\":\"full\",\"id\":1200,\"alt\":\"Townsend July 2013\",\"pixels\":64288,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2020-05-08 00:59:27','2022-12-02 15:31:16',1,NULL,NULL,NULL,NULL,0,3,2,'2022-12-02 07:31:15','2019-06-13 06:41:47',NULL),(184,'https://www.drfields.com/?p=1845','32:24de2c2e3ea704cb94031c4c2beb4411',1845,'post','post',8,0,NULL,NULL,'Holistic Integrative Medicine','draft',0,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Integrative-Medicine.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Integrative-Medicine.jpg',NULL,'first-content-image',NULL,8,1,NULL,'2020-05-08 01:37:19','2022-07-28 04:41:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-05 22:48:15','2019-06-14 17:16:53',NULL),(187,'https://www.drfields.com/articles/health-news/fat-fighting-foods/','65:f2af7e1c0e8d1371ed74566b799957c0',1520,'post','post',8,0,NULL,'We are bombarded constantly with junk food advertisements. This article helps us learn about fat fighting foods to help combat the onslaught.','Fat Fighting Foods. Learn How Certain Food Can Help Burn Fat','publish',NULL,0,NULL,NULL,NULL,'fat fighting foods',71,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Foods-That-Burn-Fat.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Foods-That-Burn-Fat.jpg',NULL,'first-content-image',NULL,0,3,NULL,'2020-05-08 05:11:25','2022-06-30 16:32:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-12 17:56:50','2019-06-13 06:26:33',NULL),(188,'https://www.drfields.com/articles/prolotherapy-research/dry-needling-is-not-a-placebo/','86:191a60db141ae1980a133f5dcd89b7e2',2012,'post','post',8,0,NULL,'Dry needling alone reduces tendon pain. Regenerative Orthopedics boosts the healing capacity even more & effectively treats tendon injuries.','Dry Needling of Tendons is Not a Placebo','publish',NULL,0,NULL,NULL,NULL,'Dry Needling of tendons',73,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Prolo-definition-500x376.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Prolo-definition-500x376.png',NULL,'first-content-image',NULL,2,NULL,NULL,'2020-05-08 05:34:16','2022-07-01 14:22:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-26 03:10:44','2019-06-15 11:08:19',NULL),(189,'https://www.drfields.com/articles/magazine-column/townsend-letter-hip-replacement-do-you-really-need-it/','104:ab6edf880bf34760bccc222f16e5a00b',1532,'post','post',8,0,NULL,'Address the cause, and not just the effect, and avoid hip replacement with . Regenerative Orthopedics, a non-surgical treatment alternative.','Townsend Letter: Hip Replacement &#8211; Do You Really Need It?','publish',NULL,0,NULL,NULL,NULL,'Hip Replacement',65,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-december-2013.jpg',NULL,'1197','featured-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-december-2013.jpg','1197','featured-image','{\"width\":224,\"height\":287,\"url\":\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-december-2013.jpg\",\"path\":\"/home/drfiel5/public_html/wp-content/uploads/2019/06/townsend-december-2013.jpg\",\"size\":\"full\",\"id\":1197,\"alt\":\"Townsend December 2013\",\"pixels\":64288,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-05-08 06:05:19','2022-12-02 14:58:43',1,NULL,NULL,NULL,NULL,0,3,2,'2022-12-02 06:58:42','2019-06-13 06:43:12',NULL),(190,'https://www.drfields.com/relieve-arthritis-pain/','48:a20c30641d45c11c8fc917abc44798b3',1817,'post','page',8,0,NULL,NULL,'Relieve Arthritis Pain','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-05-08 10:35:50','2022-07-28 04:41:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-14 14:28:23','2019-06-14 14:28:23',NULL),(191,'https://www.drfields.com/articles/regenerative-orthopedics/stop-pain-from-rotator-cuff-injuries-and-other-shoulder-injuries/','124:c15793931f3614673889c2a4aa385032',1408,'post','post',8,0,'Stop Pain from Rotator Cuff Injuries and Other Shoulder Injuries','Stop Pain from Rotator Cuff Injuries with Non-Surgical Regenerative Orthopedics, such as Stem Cell Therapy, Prolotherapy, and PRP.','Stop Shoulder Pain from Rotator Cuff Injuries','publish',NULL,0,NULL,NULL,NULL,'Stop Pain from Rotator Cuff Injuries',76,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/shoulder-copy-2-500x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/shoulder-copy-2-500x500.jpg',NULL,'first-content-image',NULL,1,1,NULL,'2020-05-08 15:03:06','2022-06-30 07:04:28',1,NULL,NULL,NULL,NULL,0,6,2,'2022-04-05 00:12:25','2019-06-12 11:00:36',NULL),(192,'https://www.drfields.com/articles/regenerative-orthopedics/get-lasting-arthritis-pain-relief/','93:aab8e98997d20c4fb62b781746377e35',1381,'post','post',8,0,'Relief from Arthritis Pain that Lasts with Regenerative Orthopedics','Looking for a reprieve from the pain and disability of arthritis? Get lasting relief from arthritis pain with Regenerative Orthopedics!','Get Lasting Relief from Arthritis Pain','publish',NULL,0,NULL,NULL,NULL,'Relief from Arthritis Pain',76,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/avoid-replacement-400x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/avoid-replacement-400x500.png',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-05-08 15:15:35','2022-07-04 15:04:01',1,NULL,NULL,NULL,NULL,0,6,2,'2021-04-16 02:18:03','2019-06-12 08:15:47',NULL),(194,'https://www.drfields.com/articles/regenerative-orthopedics/neck-pain-relief/','76:0b16045d8dac530dde59b1f5365f4279',1393,'post','post',8,0,'Neck Pain Relief from Cervical Instability with Regenerative Orthopedics','Get neck pain relief from Regenerative Orthopedics, an effective non-surgical treatment option to neck and cervical instability.','Neck Pain Relief','publish',NULL,0,NULL,NULL,NULL,'Neck Pain Relief',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Cervivcal-Instability-copy-2-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Cervivcal-Instability-copy-2-500x500.png',NULL,'first-content-image',NULL,3,NULL,NULL,'2020-05-08 18:05:31','2022-07-01 03:54:28',1,NULL,NULL,NULL,NULL,0,5,2,'2021-04-06 00:34:42','2019-06-12 10:20:56',NULL),(195,'https://www.drfields.com/conditions/chronic-pain/','49:1ae3884c3d97d59630d1b7976ddbab62',21,'term','category',NULL,NULL,NULL,NULL,'Chronic Pain',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-08 18:52:11','2023-04-20 00:58:53',1,NULL,NULL,NULL,NULL,1,NULL,2,'2023-04-19 17:58:53','2019-06-08 06:21:20',NULL),(196,'https://www.drfields.com/articles/regenerative-orthopedics/low-back-pain-treatments-and-the-challenges-at-finding-relief/','121:ed5502de47f4e924ff4caa457394e263',1376,'post','post',8,0,'Low Back Pain Treatments and the Challenges at Finding Relief','Looking for low back pain treatments? Regenerative Orthopedics offers pain relief and healing and repair at the source of the pain.','Low Back Pain Treatments: How to Successfully Meet the Challenges of Finding Relief','publish',NULL,0,NULL,NULL,NULL,'Low Back Pain Treatments',75,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/back-stop-the-cycle--500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/back-stop-the-cycle--500x500.png',NULL,'first-content-image',NULL,4,1,NULL,'2020-05-08 19:31:45','2022-06-30 18:12:10',1,NULL,NULL,NULL,NULL,0,7,2,'2021-04-28 00:20:20','2019-06-12 07:48:25',NULL),(197,'https://www.drfields.com/articles/regenerative-orthopedics/suffering-from-headaches-the-problem-may-come-from-your-neck/','120:d7ea9183bdead01fb110371c8e514045',2501,'post','post',8,0,NULL,'Regenerative Orthopedics is a safe, non-surgical option that stops headache pain, decreases symptoms, and helps you to enjoy life again.','Headache Sufferer? It Could Be Your Neck.','publish',NULL,0,NULL,NULL,NULL,'headaches',74,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/07/headaches-1-500x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/07/headaches-1-500x500.jpg',NULL,'first-content-image',NULL,1,0,NULL,'2020-05-08 22:00:09','2022-06-30 19:55:57',1,NULL,NULL,NULL,NULL,0,5,2,'2021-07-12 03:10:19','2019-07-29 14:33:26',NULL),(198,'https://www.drfields.com/tag/stem-cell-doctor-in-santa-monica/','62:f15379b95dc0db76ce26ef28da7a9ea0',40,'term','post_tag',NULL,NULL,NULL,NULL,'Stem Cell Doctor in Santa Monica',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-08 22:50:57','2022-07-28 04:41:11',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-12 20:48:27','2019-06-15 11:18:59',NULL),(199,'https://www.drfields.com/articles/health-news/exercise-provides-health-benefits/','80:0d6130a67f816fbfeb8ab267efcee397',1518,'post','post',8,0,NULL,'Studies show that increased exercise provides health benefits for all ages of people, and short bursts of activity can help as well.','Exercise Provides Health Benefits For All Ages','publish',NULL,0,NULL,NULL,NULL,'Exercise Provides Health Benefits',76,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Spinning-class-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Spinning-class-500x500.png',NULL,'first-content-image',NULL,0,0,NULL,'2020-05-09 00:05:58','2022-06-30 07:02:07',1,NULL,NULL,NULL,NULL,0,4,2,'2021-03-22 22:58:55','2019-06-13 06:25:06',NULL),(200,'https://www.drfields.com/regenerative-techniques/the-gold-standard-stem-cell-doctor-in-santa-monica/','100:9d9bbc473fa3f44cf64034e556dc4d7a',2586,'post','post',8,0,'The Gold Standard Stem Cell Doctor in Santa Monica | PRP Los Angeles','A Stem Cell Doctor in Santa Monica that can help you with Regenerative Orthopedics. That’s what you’ll find here at OrthoRegen and Peter A. Fields, MD, DC. Our Gold Standard in Stem Cell Therapy is your non-surgical alternative to joint replacement. For an experienced regenerative medicine clinic with success in repairing joints with stem cells, prp, and prolotherapy, call (310) 453-1234.','The Gold Standard Stem Cell Doctor in Santa Monica','publish',NULL,0,NULL,NULL,NULL,'Stem Cell Doctor in Santa Monica',74,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/08/Stem-Cell-Doctor-in-Santa-Monica-.jpg',NULL,'2587','featured-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/08/Stem-Cell-Doctor-in-Santa-Monica-.jpg','2587','featured-image','{\"width\":800,\"height\":525,\"url\":\"https://www.drfields.com/wp-content/uploads/2019/08/Stem-Cell-Doctor-in-Santa-Monica-.jpg\",\"path\":\"/home/drfiel5/public_html/wp-content/uploads/2019/08/Stem-Cell-Doctor-in-Santa-Monica-.jpg\",\"size\":\"full\",\"id\":2587,\"alt\":\"Stem Cell Doctor in Santa Monica\",\"pixels\":420000,\"type\":\"image/jpeg\"}',1,0,NULL,'2020-05-09 01:33:21','2022-07-28 04:41:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-10-18 08:54:03','2019-08-09 18:34:24',NULL),(201,'https://www.drfields.com/articles/prolotherapy-research/arthritis-pain/','71:4c9223b4a53a6f19d957e5fb402e36d0',2014,'post','post',8,0,NULL,'Prolotherapy provides a better effect than exercise, local anesthetics, and probably corticosteroids for arthritis pain patients at 6 months follow-up.','Arthritis Pain: How Effective Is Prolotherapy vs Exercise Or Cortisone?','publish',NULL,0,NULL,NULL,NULL,'arthritis pain',71,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/arthritis-symptoms-500x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/arthritis-symptoms-500x500.jpg',NULL,'first-content-image',NULL,4,0,NULL,'2020-05-09 03:55:35','2022-07-03 16:42:27',1,NULL,NULL,NULL,NULL,0,3,2,'2021-02-16 21:52:40','2019-06-15 11:10:32',NULL),(202,'https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/','96:53ffeb7985305234971e4ccb89b3e3e8',1379,'post','post',8,0,NULL,'Avoid unsatisfactory outcome of incomplete ACL tears and repair, and seek a consult with our Regenerative Orthopedics specialists.','ACL Tears and Knee Ligament Injuries','publish',NULL,0,NULL,NULL,NULL,'ACL Tears',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/ACL-400x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/ACL-400x500.png',NULL,'first-content-image',NULL,2,2,NULL,'2020-05-09 04:30:27','2022-07-01 18:53:57',1,NULL,NULL,NULL,NULL,0,5,2,'2021-04-20 20:54:00','2019-06-12 08:00:15',NULL),(203,'https://www.drfields.com/articles/health-news/workplace-napping-increase-productivity/','86:2b6ae6f0aa827ac99ec879b894c11f6a',1512,'post','post',8,0,NULL,'New research shows that workplace napping actually improves productivity even for those who are not sleep deprived in the first place.','Workplace Napping Boosts Productivity','publish',NULL,0,NULL,NULL,NULL,'Workplace Napping',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Napping.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Napping.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2020-05-09 04:44:47','2022-07-01 04:42:22',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-11-07 03:37:50','2019-06-13 06:23:02',NULL),(204,'https://www.drfields.com/testimonials/german-testimonials/','58:c6bc95334241c910a182cf4a4bd66da7',2833,'post','page',8,1268,NULL,NULL,'German Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17,16,NULL,'2020-05-09 05:40:24','2022-07-27 21:41:04',1,NULL,NULL,NULL,NULL,1,NULL,2,'2020-12-11 21:28:57','2019-09-27 20:58:58',NULL),(205,'https://www.drfields.com/day-1-kiliminaro-and-base-camp-arrival/','64:069913d01e7982fdf5705a0103b486f7',2219,'post','page',8,0,NULL,NULL,'Day 1-Kiliminaro and base camp arrival','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_100719-300x300.jpg',NULL,NULL,'gallery-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_100719-300x300.jpg',NULL,'gallery-image',NULL,8,1,NULL,'2020-05-09 07:04:22','2022-07-26 12:42:47',1,NULL,NULL,NULL,NULL,0,2,2,'2022-07-26 05:42:46','2019-06-28 06:25:30',NULL),(206,'https://www.drfields.com/articles/health-news/exercise-improves-brain-fitness-and-reduces-parkinsons-disease-risk/','114:5949a39010eecece9c20da907c7ae983',1516,'post','post',8,0,NULL,'Exercise not only keeps our body fit, and muscles strong, it also provides brain fitness and reduces the risk of Parkinson\'s Disease.','Improve Brain Fitness and Reduce Parkinson&#8217;s Risk with Exercise','publish',NULL,0,NULL,NULL,NULL,'brain fitness',73,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Screen-Shot-2020-09-15-at-4.52.16-PM-500x260.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Screen-Shot-2020-09-15-at-4.52.16-PM-500x260.png',NULL,'first-content-image',NULL,0,0,NULL,'2020-05-09 08:40:57','2022-06-30 15:34:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-15 21:58:29','2019-06-13 06:24:18',NULL),(207,'https://www.drfields.com/articles/regenerative-orthopedics/meniscus-surgery-a-failed-surgery-being-over-used/','109:4f4903c240ed20500e7572480fd7e72f',2353,'post','post',8,0,NULL,'Regenerative Orthopedics could save you from having your joint permanently removed and replaced after meniscus surgery, which sometimes can be disastrous.','Meniscus Surgery: A Failed Surgery','publish',NULL,0,NULL,NULL,NULL,'Meniscus Surgery',71,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/meniscectomy-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/meniscectomy-500x500.png',NULL,'first-content-image',NULL,1,0,NULL,'2020-05-09 12:36:53','2022-07-28 04:41:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-07 21:18:59','2019-06-28 08:26:23',NULL),(208,'https://www.drfields.com/articles/regenerative-orthopedics/ever-wonder-if-there-is-a-joint-replacement-alternative/','115:136f2845a48b7c06c60be08b4396099b',1406,'post','post',8,0,'Ever Wonder If There Is A Joint Replacement Alternative?','Are you experiencing joint pain and wondering about your options...even a joint replacement alternative? This article discusses your options.','Ever Wonder If You Have Another Choice Other Than Joint Replacement?','publish',NULL,0,NULL,NULL,NULL,'Joint Replacement Alternative',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/knee.-avoid-replacement2-1-400x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/knee.-avoid-replacement2-1-400x500.png',NULL,'first-content-image',NULL,1,0,NULL,'2020-05-09 13:03:44','2022-07-04 15:03:40',1,NULL,NULL,NULL,NULL,0,5,2,'2021-02-23 00:43:48','2019-06-12 10:59:49',NULL),(209,'https://www.drfields.com/articles/regenerative-orthopedics/dr-fields-interviewed-on-kcal-cbs-about-prolotherapy/','112:728cab1a0fa7e932f33b334098776d8f',1436,'post','post',8,0,NULL,'In this interview with KCAL/CBS, Peter A. Fields, MD, DC discusses how you can resolve painful joint conditions with Prolotherapy, a non-surgical treatment.','Prolotherapy Treatment on KCAL/CBS','publish',NULL,0,NULL,NULL,NULL,'Prolotherapy Treatment',73,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg',NULL,'first-content-image',NULL,1,0,NULL,'2020-05-09 17:39:13','2022-07-02 07:12:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-12 18:07:05','2019-06-12 11:13:34',NULL),(210,'https://www.drfields.com/non-surgical-repair-of-ligaments-and-tendons/','70:752582869f85842789eaefc445bec694',2335,'post','page',8,0,NULL,'Regenerative Orthopedic treatments using PRP are effective non-surgical options for joint injury repair at OrthoRegen.','Non-Surgical Repair of Ligaments and Tendons','publish',NULL,0,NULL,NULL,NULL,'Non-Surgical',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg',NULL,'first-content-image',NULL,1,1,NULL,'2020-05-09 22:51:20','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,0,4,2,'2022-06-05 00:59:16','2019-06-28 07:31:01',NULL),(211,'https://www.drfields.com/articles/regenerative-orthopedics/is-hip-injury-and-pain-getting-in-your-way/','102:9fa7caf32740726649f7c2c7d4423df1',1403,'post','post',8,0,'Is Hip Injury and Pain Getting in Your Way? Treat it non-surgically!','The hip is generally strong and stable. But with more and more required of them, cases of hip injury have increased. Find out more!','Is Hip Injury and Pain Getting in Your Way?','publish',NULL,0,NULL,NULL,NULL,'Hip Injury',75,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/hip-500x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/hip-500x500.jpg',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-05-10 00:04:19','2022-07-03 21:53:52',1,NULL,NULL,NULL,NULL,0,5,2,'2021-03-31 22:37:55','2019-06-12 10:58:32',NULL),(212,'https://www.drfields.com/articles/health-news/delicious-meat-alternatives/','74:80a2d4c912fa5f4bc9e7bee6f7b7b3f1',1490,'post','post',8,0,NULL,NULL,'Delicious Meat Alternatives','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/almonds-heart.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/almonds-heart.jpg',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-05-10 00:18:40','2022-07-28 04:41:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-13 06:12:11','2019-06-13 06:12:11',NULL),(213,'https://www.drfields.com/articles/regenerative-orthopedics/persistent-foot-and-toe-pain/','88:21e75200f7ea8f9b61e3e12f5e47c420',3199,'post','post',8,0,NULL,'Foot and toe pain can really put a damper on simple, daily activities like walking. If you are looking for relief, Regenerative Orthopedics can help.','Persistent Foot Pain and Toe Pain','publish',NULL,0,NULL,NULL,NULL,'Foot and toe pain',71,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2020/08/Foot-pain-copy-1-500x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2020/08/Foot-pain-copy-1-500x500.jpg',NULL,'first-content-image',NULL,1,0,NULL,'2020-05-10 01:10:17','2022-06-30 08:37:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-25 00:17:57','2019-11-08 04:07:09',NULL),(214,'https://www.drfields.com/regenerative-techniques/regenerative-orthopedics-a-rejuvenated-you/','92:745943e34ff96c75b06661e88ac74fb5',2561,'post','post',8,0,'Regenerative Orthopedics: A Rejuvenated You | PRP Los Angeles','Regenerative Orthopedics can help your ligaments, tendons and heal your painful joint. A non-invasive alternative to surgery, our Regenerative Orthopedic clinicians in Santa Monica can help you to live a pain-free life. Whether you need treatment for knee, hip, shoulder or back pain, contact us at (310) 453-1234.','Regenerative Orthopedics: A Rejuvenated You','publish',NULL,0,NULL,NULL,NULL,'Regenerative Orthopedics',82,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedics.jpg',NULL,'2562','featured-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedics.jpg','2562','featured-image','{\"width\":800,\"height\":542,\"url\":\"https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedics.jpg\",\"path\":\"/home/drfiel5/public_html/wp-content/uploads/2019/08/Regenerative-Orthopedics.jpg\",\"size\":\"full\",\"id\":2562,\"alt\":\"Regenerative Orthopedics\",\"pixels\":433600,\"type\":\"image/jpeg\"}',1,0,NULL,'2020-05-10 04:45:53','2022-07-28 04:41:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-10-18 08:53:36','2019-08-30 08:00:13',NULL),(215,'https://www.drfields.com/santa-monica-daily-grill-lecture-04-19-19/','67:d74fb6b745a40032c4e340b4dc5efdf2',2309,'post','page',8,0,NULL,NULL,'Santa Monica Daily Grill Lecture 04-19-19','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-10 08:55:14','2022-07-28 04:41:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-28 07:08:17','2019-06-28 07:08:17',NULL),(216,'https://www.drfields.com/office-move/','37:843a3fa6aea273fbe585e9e1f9ff3f99',104,'post','page',8,0,NULL,NULL,'Office Move','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img.jpg',NULL,'first-content-image',NULL,0,0,NULL,'2020-05-10 08:55:21','2022-07-28 04:41:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-07 06:32:53','2019-06-07 06:29:51',NULL),(217,'https://www.drfields.com/articles/regenerative-orthopedics/snapping-hip-syndrome/','81:a3ef36d09907bd5acb0a62bd9c90bd38',2892,'post','post',8,0,NULL,'With Regenerative Orthopedic treatments for Snapping Hip Syndrome, you can return quickly to the sports you enjoy, without the need for surgery.','Snapping Hip Syndrome and Athletes','publish',NULL,0,NULL,NULL,NULL,'Snapping Hip Syndrome',75,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/10/Snapping-Hip-Syndrome-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/10/Snapping-Hip-Syndrome-500x500.png',NULL,'first-content-image',NULL,2,0,NULL,'2020-05-10 10:51:33','2022-07-28 04:41:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-26 01:22:56','2019-10-17 08:11:57',NULL),(218,'https://www.drfields.com/articles/regenerative-orthopedics/degenerative-disc-disease-proper-diagnosis-and-treatment/','116:d590781e22054c3fe702657da76c6573',3306,'post','post',8,0,NULL,'Regenerative Orthopedics provides a non-surgical solution for back and neck pain due to degenerative disc disease. Please call us at (310)453-1234.','Degenerative Disc Disease Treatment','publish',NULL,0,NULL,NULL,NULL,'Degenerative Disc Disease',82,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/11/Wilbur-back-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/11/Wilbur-back-500x500.png',NULL,'first-content-image',NULL,1,0,NULL,'2020-05-10 10:51:47','2022-06-30 14:33:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-13 21:14:56','2019-11-26 03:16:18',NULL),(219,'https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/','79:e658ba3d888ae5e513eab04714a9c76e',2894,'post','post',8,0,NULL,'Regenerative Orthopedics can relieve Runner\'s Knee and speed up the process of normalizing the patellar tracking, allowing for a quick return to activities.','Runner’s Knee Pain','publish',NULL,0,NULL,NULL,NULL,'Runner\'s Knee',71,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/10/Runners-Knee-500x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/10/Runners-Knee-500x500.jpg',NULL,'first-content-image',NULL,1,2,NULL,'2020-05-10 10:54:06','2022-06-30 07:04:28',1,NULL,NULL,NULL,NULL,0,5,2,'2022-03-04 19:41:37','2019-10-17 08:12:55',NULL),(220,'https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-treatment-an-alternative-to-joint-replacement/','115:4725f5e98f30f240ab35165ef3b40252',2345,'post','post',8,0,NULL,'Stem Cell Treatment is a type of Regenerative Orthopedics that offer hope to people suffering from joint pain and those trying to avoid joint replacement.','Joint Replacement: What&#8217;s the Alternative?','publish',NULL,0,NULL,NULL,NULL,'Joint Replacement',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.-500x500.png',NULL,'first-content-image',NULL,0,1,NULL,'2020-05-10 10:54:37','2022-07-01 18:54:30',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-11 01:45:53','2019-06-28 08:14:04',NULL),(221,'https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-replacement-with-regenerative-orthopedics/','112:400b3d4ca65be76e34d6041804587267',2082,'post','post',8,0,NULL,'Regenerative Orthopedics offer hope to knee pain sufferers and they provide an effective, non-surgical option for those trying to avoid knee replacement.','Avoid Knee Replacement with Regenerative Orthopedics','publish',NULL,0,NULL,NULL,NULL,'Avoid Knee Replacement',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/knee.-avoid-replacement2-400x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/knee.-avoid-replacement2-400x500.png',NULL,'first-content-image',NULL,1,1,NULL,'2020-05-10 10:54:44','2022-07-28 04:41:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-11 02:24:20','2019-06-18 03:20:09',NULL),(222,'https://www.drfields.com/articles/regenerative-orthopedics/relief-from-painful-knees/','85:8c3c2f7ad6a854b491f7d27aa82c1cd3',1412,'post','post',8,0,'Relief From Painful Knees with Regenerative Orthopedics','If painful knees have you side-lined, don’t put up with it! We can help get you back to what you love, without the nuisance of painful knees!','Relief from Painful Knees','publish',NULL,0,NULL,NULL,NULL,'Painful Knees',73,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2020-05-10 10:54:53','2022-07-04 03:53:04',1,NULL,NULL,NULL,NULL,0,6,2,'2021-02-24 00:05:29','2019-06-12 11:02:13',NULL),(223,'https://www.drfields.com/articles/health-news/dietary-supplements-in-older-adults/','82:20f650ba06a502f28f9dbe10662b34f1',1508,'post','post',8,0,NULL,'Even in our modern society, people are poorly nourished, especially older adults. Dietary supplements are a way to boost overall health.','Do Dietary Supplements Improve Health?','publish',NULL,0,NULL,NULL,NULL,'Dietary Supplements',73,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Supplementation.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Supplementation.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2020-05-10 11:23:57','2022-07-01 02:26:43',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-12-01 02:08:35','2019-06-13 06:21:39',NULL),(224,'https://www.drfields.com/report-of-my-kilimanjaro-climb/','56:ebc4cb4717cf1d92312c955294a92d20',2208,'post','page',8,0,NULL,'After waiting over ten years with this on my bucket list, I finally was going to climb Kilimanjaro. Here\'s the story of my Kilimanjaro climb.','Report of My Kilimanjaro Climb','publish',NULL,0,NULL,NULL,NULL,'Kilimanjaro',69,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-1-300x300.jpg',NULL,NULL,'gallery-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-1-300x300.jpg',NULL,'gallery-image',NULL,36,1,NULL,'2020-05-10 12:29:12','2022-07-28 05:25:26',1,NULL,NULL,NULL,NULL,0,15,2,'2022-07-27 22:25:26','2019-06-28 06:21:11',NULL),(225,'https://www.drfields.com/kili-getting-to-the-trailhead/','55:6b4c9ae9656c3607e152c70bb3516aaf',2232,'post','page',8,0,NULL,NULL,'Kili Getting to the trailhead','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_215121-300x300.jpg',NULL,NULL,'gallery-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_215121-300x300.jpg',NULL,'gallery-image',NULL,16,1,NULL,'2020-05-10 13:15:18','2022-07-26 14:31:31',1,NULL,NULL,NULL,NULL,0,1,2,'2022-07-26 07:31:31','2019-06-28 06:32:55',NULL),(226,'https://www.drfields.com/articles/magazine-column/townsend-letter-stem-cell-prolotherapy/','89:a0801ec5174182c716b7cd6155145ba1',1524,'post','post',8,0,'%%page%% %%sep%% %%sitename%%','This article in \"The Townsend Article\" by Peter A. Fields, MD, DC  explains Stem Cell Prolotherapy, a non-surgical alternative, in detail.','Townsend Letter: Stem Cell Prolotherapy','publish',NULL,0,NULL,NULL,NULL,'Stem Cell',79,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-july2014.jpg',NULL,'1194','featured-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-july2014.jpg','1194','featured-image','{\"width\":201,\"height\":259,\"url\":\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-july2014.jpg\",\"path\":\"/home/drfiel5/public_html/wp-content/uploads/2019/06/townsend-july2014.jpg\",\"size\":\"full\",\"id\":1194,\"alt\":\"Townsend July2014\",\"pixels\":52059,\"type\":\"image/jpeg\"}',2,NULL,NULL,'2020-05-10 14:35:27','2022-12-02 14:46:25',1,NULL,NULL,NULL,NULL,0,2,2,'2022-12-02 06:46:25','2019-06-13 06:52:35',NULL),(227,'https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/','119:6f19b11e20081629e533693f150487d2',2858,'post','post',8,0,NULL,'In medial collateral ligament injuries, co-injury of ligaments, and other structures may be involved. The goal is whole knee treatment for adequate repair.','Medial Collateral Ligament Injuries','publish',NULL,0,NULL,NULL,NULL,'Medial Collateral Ligament Injuries',78,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/10/MCL-tears-500x500.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/10/MCL-tears-500x500.jpg',NULL,'first-content-image',NULL,3,1,NULL,'2020-05-10 17:45:08','2022-07-28 04:41:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-08-26 21:17:50','2019-10-08 17:56:13',NULL),(228,'https://www.drfields.com/articles/magazine-column/townsend-letter-are-mris-replacing-the-physical-exam/','103:536173099795d0a3f634c51e289e360e',1535,'post','post',8,0,'%%title%% %%page%% %%sep%% %%sitename%% %','Are MRI\'s replacing the physical exam and dictating your treatment? Physical exam and history should be the priority when diagnosing.','Townsend Letter: Are MRI&#8217;s Replacing The Physical Exam','publish',NULL,0,NULL,NULL,NULL,'Are MRI\'s replacing the Physical Exam?',76,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-october-2013.jpg',NULL,'1198','featured-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-october-2013.jpg','1198','featured-image','{\"width\":224,\"height\":287,\"url\":\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-october-2013.jpg\",\"path\":\"/home/drfiel5/public_html/wp-content/uploads/2019/06/townsend-october-2013.jpg\",\"size\":\"full\",\"id\":1198,\"alt\":\"Townsend October 2013\",\"pixels\":64288,\"type\":\"image/jpeg\"}',2,NULL,NULL,'2020-05-10 18:36:07','2022-12-02 15:30:51',1,NULL,NULL,NULL,NULL,0,2,2,'2022-12-02 07:30:49','2019-06-13 06:42:35',NULL),(229,'https://www.drfields.com/articles/magazine-column/townsend-letter-how-to-avoid-joint-and-spine-surgery/','103:1781559199d89d1f49edd8518f2f00bb',1541,'post','post',8,0,NULL,'Regenerative Orthopedics help you to avoid joint and spine surgery and to live pain free without the need for invasive surgery.','Townsend Letter: How to Avoid Joint and Spine Surgery','publish',NULL,0,NULL,NULL,NULL,'How to Avoid Joint and Spine Surgery',78,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/towesend_letter.jpg',NULL,'1201','featured-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/towesend_letter.jpg','1201','featured-image','{\"width\":224,\"height\":287,\"url\":\"https://www.drfields.com/wp-content/uploads/2019/06/towesend_letter.jpg\",\"path\":\"/home/drfiel5/public_html/wp-content/uploads/2019/06/towesend_letter.jpg\",\"size\":\"full\",\"id\":1201,\"alt\":\"Towesend Letter\",\"pixels\":64288,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2020-05-10 18:36:13','2022-12-02 15:30:31',1,NULL,NULL,NULL,NULL,0,3,2,'2022-12-02 07:30:31','2019-06-13 06:41:34',NULL),(230,'https://www.drfields.com/articles/magazine-column/townsend-letter-what-is-the-cause-of-back-pain/','97:c273a5d2c8d77e694670beb0fafdc115',1530,'post','post',8,0,NULL,'Want to get to the root cause of back pain? Regenerative Orthopedics relieves your back pain and gets you back to doing what you love.','Townsend Letter: What is the Cause of Back Pain?','publish',NULL,0,NULL,NULL,NULL,'Cause of Back Pain',78,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-january-2014.jpg',NULL,'1196','featured-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-january-2014.jpg','1196','featured-image','{\"width\":224,\"height\":287,\"url\":\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-january-2014.jpg\",\"path\":\"/home/drfiel5/public_html/wp-content/uploads/2019/06/townsend-january-2014.jpg\",\"size\":\"full\",\"id\":1196,\"alt\":\"Townsend January 2014\",\"pixels\":64288,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2020-05-10 18:36:38','2022-12-02 14:55:45',1,NULL,NULL,NULL,NULL,0,3,2,'2022-12-02 06:55:45','2019-06-13 06:45:48',NULL),(231,'https://www.drfields.com/articles/magazine-column/townsend-letter-elbow-injuries/','81:bea6cd5761d0a72d2da1e345072838bf',1526,'post','post',8,0,NULL,'Regenerative Orthopedics for elbow injuries regenerates collagen tissue to repair the injury naturally, fixing both the cause and the effect.','Townsend Letter: Elbow Injuries','publish',NULL,0,NULL,NULL,NULL,'Elbow Injuries',78,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-feb-mar-2014.jpg',NULL,'1195','featured-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-feb-mar-2014.jpg','1195','featured-image','{\"width\":224,\"height\":287,\"url\":\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-feb-mar-2014.jpg\",\"path\":\"/home/drfiel5/public_html/wp-content/uploads/2019/06/townsend-feb-mar-2014.jpg\",\"size\":\"full\",\"id\":1195,\"alt\":\"Townsend Feb Mar 2014\",\"pixels\":64288,\"type\":\"image/jpeg\"}',1,0,NULL,'2020-05-10 18:36:48','2022-12-02 14:47:32',1,NULL,NULL,NULL,NULL,0,2,2,'2022-12-02 06:47:31','2019-06-13 06:51:30',NULL),(232,'https://www.drfields.com/articles/magazine-column/townsend-letter-rotator-cuff-shoulder-injuries/','97:4afc5c3ab88d27323f46b4b418096322',1537,'post','post',8,0,NULL,'Rotator Cuff Shoulder Injuries can regenerate with Regenerative Orthopedics & repair can be achieved naturally without the need for surgery.','Townsend Letter: Rotator Cuff Shoulder Injuries','publish',NULL,0,NULL,NULL,NULL,'Rotator Cuff Shoulder Injuries',74,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-august-2013.jpg',NULL,'1199','featured-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-august-2013.jpg','1199','featured-image','{\"width\":224,\"height\":287,\"url\":\"https://www.drfields.com/wp-content/uploads/2019/06/townsend-august-2013.jpg\",\"path\":\"/home/drfiel5/public_html/wp-content/uploads/2019/06/townsend-august-2013.jpg\",\"size\":\"full\",\"id\":1199,\"alt\":\"Townsend August 2013\",\"pixels\":64288,\"type\":\"image/jpeg\"}',3,NULL,NULL,'2020-05-10 18:37:25','2022-12-02 15:30:13',1,NULL,NULL,NULL,NULL,0,2,2,'2022-12-02 07:30:13','2019-06-13 06:41:47',NULL),(235,'https://www.drfields.com/articles/prolotherapy-research/knee/','61:d4f595debc817396827c64ec087e61ec',2020,'post','post',8,0,NULL,'Prolotherapy is safe & well tolerated & resulted in rapid achievement of unaltered sport & asymptomatic sport than usual care in Osgood-Schlatter Disease.','Osgood-Schlatter Disease','publish',NULL,0,NULL,NULL,NULL,'Osgood-Schlatter Disease',80,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium-1.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium-1.png',NULL,'first-content-image',NULL,3,1,NULL,'2020-05-10 18:52:01','2022-07-28 04:41:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-09-12 21:23:22','2019-06-15 11:15:20',NULL),(236,'https://www.drfields.com/articles/health-news/body-cleansing-foods/','67:bef31b9c3eaab83683498ec24c271230',1498,'post','post',8,0,'Body Cleansing Foods to Incorporate in Your Diet for a Healthier You','The liver is a big part of the cleansing process. Here is a list of body cleansing foods that can help your body cleanse itself.','Body Cleansing Foods','publish',NULL,0,NULL,NULL,NULL,'Body Cleansing Foods',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Body-Cleansing-Foods.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Body-Cleansing-Foods.jpg',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-05-10 18:56:01','2022-07-02 21:05:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-12-05 02:48:52','2019-06-13 06:16:35',NULL),(237,'https://www.drfields.com/articles/health-news/quality-supplements-and-co/','73:a0c6e4a95dda5498e518f1c07a384da9',1494,'post','post',8,0,NULL,'Not all supplements are created equally. Taking quality supplements for optimal health during the COVID-19 pandemic is especially important!','Quality Supplements and COVID-19','publish',NULL,0,NULL,NULL,NULL,'quality supplements',78,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Quality-Supplements-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Quality-Supplements-500x500.png',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-05-10 18:56:22','2022-07-01 02:39:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-12-18 00:02:22','2019-06-13 06:14:19',NULL),(238,'https://www.drfields.com/articles/health-news/dr-fields-completes-his-7th-half-ironman-triathlon/','97:cdc2f290a4c93880c4673e0814b80c40',1510,'post','post',8,0,NULL,NULL,'Private: Dr. Fields Completes His 7th Half Ironman Triathlon','private',0,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/LATC-Logo.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/LATC-Logo.jpg',NULL,'first-content-image',NULL,3,0,NULL,'2020-05-10 18:56:49','2022-07-28 04:41:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-06-21 23:36:39','2019-06-13 06:22:13',NULL),(239,'https://www.drfields.com/articles/health-news/benefits-of-vitamin-supplementation-in-covid-19/','94:fd489aa6a5e40398baea19a0296ef8cc',1492,'post','post',8,0,'The benefits of Vitamin Supplementation in COVID-19','Let\'s take a look at what some of the research is saying about the benefits of vitamin supplementation in COVID-19.','Benefits of Vitamin Supplementation in COVID-19','publish',NULL,0,NULL,NULL,NULL,'Benefits of Vitamin Supplementation in COVID-19',78,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Antioxidants-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Antioxidants-500x500.png',NULL,'first-content-image',NULL,2,NULL,NULL,'2020-05-10 18:57:13','2022-07-04 15:05:54',1,NULL,NULL,NULL,NULL,0,5,2,'2021-01-24 02:52:13','2019-06-13 06:12:53',NULL),(240,'https://www.drfields.com/acl-tears-and-knee-ligament-injuries/','62:dfcec726b37dc11a64aa74917cd9b038',680,'post','page',8,0,NULL,NULL,'ACL Tears and Knee Ligament Injuries','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-10 19:34:53','2022-07-28 04:41:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-08 10:01:29','2019-06-08 10:00:27',NULL),(241,'https://www.drfields.com/failed-back-surgery-syndrome/','54:89fb5fbc1f9844486d075022e3e4fec6',689,'post','page',8,0,NULL,NULL,'Failed Back Surgery Syndrome','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-10 19:46:59','2022-07-28 04:41:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-18 05:48:31','2019-06-08 10:06:03',NULL),(242,'https://www.drfields.com/neck-pain-treatment-and-relief/','56:dc0a02a3c6c314f7a22bdd92451225ee',703,'post','page',8,0,NULL,NULL,'Neck Pain Treatment and Relief','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-10 20:00:44','2022-07-28 04:41:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-18 05:56:33','2019-06-08 10:10:41',NULL),(243,'https://www.drfields.com/neck-and-shoulder-pain-may-be-interconnected/','70:49bc67f5b89295c66042099f9a8dcd72',2319,'post','page',8,0,NULL,NULL,'Neck and Shoulder Pain May Be Interconnected','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-10 20:11:45','2022-07-28 04:41:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-28 07:23:03','2019-06-28 07:23:03',NULL),(244,'https://www.drfields.com/is-surgery-a-good-option-for-meniscus-tears/','69:9cb4d636cc19fac0f709efe8db46e14a',2419,'post','page',8,0,NULL,NULL,'Is Surgery a Good Option for Meniscus Tears?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-10 21:11:44','2022-07-28 04:41:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-07-16 18:20:25','2019-07-11 16:39:24',NULL),(245,'https://www.drfields.com/lectures/','34:3351382a56e5e0836933dc22622ceaca',3487,'post','page',8,0,NULL,NULL,'Lectures','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-11 16:13:21','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-12-17 04:18:59','2019-12-17 04:17:16',NULL),(246,'https://www.drfields.com/thank-you/','35:1de3d7e61d8c1da97953a798488e3eac',2795,'post','page',8,0,NULL,NULL,'Thank You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-12 09:41:58','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-10-18 04:54:35','2019-09-27 20:06:05',NULL),(247,'https://www.drfields.com/help-for-arthritis-of-the-hip/','55:4377ea510e7bb144f8de14c2cbf2e549',2450,'post','page',8,0,NULL,NULL,'Help for Arthritis of the Hip','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-12 09:41:58','2022-07-28 04:41:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-07-23 21:21:54','2019-07-22 21:30:45',NULL),(248,'https://www.drfields.com/?page_id=2366','38:872e0bc14c0d86305ca597d4a4fedd36',2366,'post','page',8,0,NULL,NULL,'11th Ironman','draft',0,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/07/image1-1.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/07/image1-1.png',NULL,'first-content-image',NULL,NULL,0,NULL,'2020-05-12 09:41:58','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2022-02-25 23:05:33','2019-07-08 17:33:58',NULL),(249,'https://www.drfields.com/alternative-to-joint-replacement-surgery/','66:fc22ed66ae6435f052008710c921c4d9',2339,'post','page',8,0,NULL,NULL,'Alternative to Joint Replacement Surgery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg',NULL,'first-content-image',NULL,0,2,NULL,'2020-05-12 09:41:58','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-10-18 09:01:34','2019-06-28 07:37:29',NULL),(251,'https://www.drfields.com/articles/health-news/dealing-with-covid-19-my-dads-story/','82:a8d529593852cab5d487e1c20f4665da',3677,'post','post',8,0,NULL,'My dad’s life could be an example for all of us during COVID-19 to encourage us to keep moving forwards and to not look back no matter how bad things are.','My Dad&#8217;s Story: Keep Looking Forward Despite COVID-19','publish',NULL,0,NULL,NULL,NULL,'my dad\'s',71,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png',NULL,'first-content-image',NULL,2,2,NULL,'2020-05-13 17:32:31','2022-06-30 14:34:06',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-05 22:43:31','2020-05-13 17:38:29',NULL),(336,NULL,NULL,NULL,'date-archive',NULL,NULL,NULL,'%%date%% %%page%% %%sep%% %%sitename%%','',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-21 09:53:36','2020-09-24 19:22:38',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(272,'https://www.drfields.com/articles/','34:3aba66170404a42e26e4cd6bab6cbdcd',1045,'post','page',8,0,NULL,NULL,'Articles','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-14 16:19:10','2022-07-28 04:41:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-11 05:25:20','2019-06-11 05:25:20',NULL),(289,'https://www.drfields.com/kilimanjaro-final-camp-at-18500-feet/','62:872aae6b21abf5c0bdf5dfbf0c4f7a48',2274,'post','page',8,0,NULL,NULL,'Kilimanjaro- final camp at 18,500 feet','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072131-1-300x300.jpg',NULL,NULL,'gallery-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072131-1-300x300.jpg',NULL,'gallery-image',NULL,3,1,NULL,'2020-05-15 18:33:09','2022-07-28 05:12:37',1,NULL,NULL,NULL,NULL,0,1,2,'2022-07-27 22:12:37','2019-06-28 06:46:01',NULL),(312,'https://www.drfields.com/waking-up-at-15-000-feet/','50:f3a00c821ece8f18636b17d13190b54f',2321,'post','page',8,0,NULL,NULL,'Waking up at 15000+ feet','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-1.jpg',NULL,'first-content-image',NULL,0,0,NULL,'2020-05-15 23:16:09','2022-07-28 04:41:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-28 07:25:30','2019-06-28 07:24:56',NULL),(320,'https://www.drfields.com/16-500-feet-to-18-400/','47:543c5f6146d9cb8759f229baefbab3cb',2257,'post','page',8,0,NULL,NULL,'Getting To Camp At 16,500 Feet','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-1.jpg',NULL,NULL,'gallery-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-1.jpg',NULL,'gallery-image',NULL,23,1,NULL,'2020-05-16 18:25:09','2022-07-28 05:21:18',1,NULL,NULL,NULL,NULL,0,1,2,'2022-07-27 22:21:17','2019-06-28 06:40:28',NULL),(326,'https://www.drfields.com/mark-test/','35:befcba0b009db0b1b8e14627937b6c64',2312,'post','page',8,0,NULL,NULL,'Mark Test','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-17 17:43:29','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-10-18 09:05:41','2019-06-28 07:11:14',NULL),(340,'https://www.drfields.com/sunrise-up-top-and-heading-down/','57:773af5e7d393048ae6d29f2e530d4f82',2283,'post','page',8,0,NULL,NULL,'Sunrise up top and heading down','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-9.jpg',NULL,NULL,'gallery-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-9.jpg',NULL,'gallery-image',NULL,8,1,NULL,'2020-05-26 14:43:15','2022-07-27 11:19:58',1,NULL,NULL,NULL,NULL,0,1,2,'2022-07-27 04:19:57','2019-06-28 06:50:25',NULL),(346,'https://www.drfields.com/disclamer/','35:d9f0082e190335b8993568a1f87ae080',2314,'post','page',8,0,NULL,NULL,'Disclamer','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Disclamer-img.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/Disclamer-img.jpg',NULL,'first-content-image',NULL,0,0,NULL,'2020-05-29 19:03:09','2022-07-28 04:41:05',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-28 07:21:36','2019-06-28 07:18:08',NULL),(353,'https://www.drfields.com/?p=2898','32:2d651d7f9b2100a8fec7d65053090a86',2898,'post','post',8,0,NULL,NULL,'Meniscus and Labral Tears','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-06-21 22:06:40','2022-07-03 01:23:16',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-10-17 08:15:48','0000-00-00 00:00:00',NULL),(354,'https://www.drfields.com/?p=1547','32:eefefa192f66d85e8378922832102ad1',1547,'post','post',8,0,NULL,NULL,'health news old','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-21 22:06:53','2022-07-28 04:41:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-13 07:44:54','2019-06-13 07:33:19',NULL),(357,'https://www.drfields.com/?p=2355','32:d2bcc1f465b9260fbd23148c45030f45',2355,'post','post',8,0,NULL,NULL,'A4M Conference 2015','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg',NULL,'first-content-image',NULL,NULL,NULL,NULL,'2020-06-21 22:24:07','2022-07-28 04:41:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-28 08:31:51','2019-06-28 08:27:43',NULL),(358,'https://www.drfields.com/?p=1372','32:ec28cc7a502adff3c9d3239b1ba0dbe7',1372,'post','post',8,0,NULL,NULL,'Prolo News','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-21 22:25:57','2022-07-28 04:41:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-14 13:18:08','2019-06-12 07:41:23',NULL),(359,'https://www.drfields.com/?p=665','31:3cdf6aa2bc48b9ace4486f1a6489f3d8',665,'post','post',8,0,NULL,NULL,'Prolo News old','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-21 22:25:57','2022-07-28 04:41:02',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-13 07:50:28','2019-06-08 09:38:22',NULL),(360,'https://www.drfields.com/?page_id=3063','38:ad6771e2168e83746805ecc0aecdf9e1',3063,'post','page',8,0,NULL,NULL,'','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-06-21 22:46:59','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-10-31 09:54:50','0000-00-00 00:00:00',NULL),(361,'https://www.drfields.com/?page_id=2176','38:c743b219561f3b2f7149220a0a11b9f0',2176,'post','page',8,1045,NULL,NULL,'Hip Labral Tears and Non-Surgical Treatment with Regenerative Orthopedics','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/hip-injury-500x500.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/hip-injury-500x500.png',NULL,'first-content-image',NULL,NULL,NULL,NULL,'2020-06-21 22:46:59','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,1,NULL,2,'2019-06-25 02:18:39','0000-00-00 00:00:00',NULL),(377,'https://www.drfields.com/?page_id=763','37:8cc58c13824ab41f438536c917b5179f',763,'post','page',8,0,NULL,NULL,'Regenerative Medicine Lecture in Mexico City (Spanish)','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/MASIVO-PROLOTERAPIA.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2019/06/MASIVO-PROLOTERAPIA.jpg',NULL,'first-content-image',NULL,NULL,NULL,NULL,'2020-07-10 18:58:23','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-06-18 07:57:49','2019-06-08 11:32:52',NULL),(378,'https://www.drfields.com/?page_id=2545','38:26c9e0059940e6a79e396c7d1549aa02',2545,'post','page',8,0,NULL,NULL,'Video Testimonial &#8211; Chronic Pain','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-07-10 18:58:38','2022-06-30 05:55:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2019-08-01 21:01:40','0000-00-00 00:00:00',NULL),(1448,'https://www.drfields.com/articles/regenerative-orthopedics/best-treatments-for-low-back-pain/','93:c3714292d3de7be854fe4a03b8655a3d',5728,'post','post',8,0,'Best Treatment for Low Back Pain','The best treatment for low back pain is one that gets to the root of the problem. Regenerative Orthopedics does that!','Best Treatments for Low Back Pain','publish',NULL,0,NULL,NULL,NULL,'Best Treatment for Low Back Pain',74,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/03/DDD-Treatment-2-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/03/DDD-Treatment-2-500x419.png',NULL,'first-content-image',NULL,0,0,NULL,'2023-03-27 02:16:24','2023-06-08 14:54:17',1,NULL,NULL,NULL,NULL,0,5,2,'2023-03-31 16:53:24','2023-03-27 02:20:27',NULL),(1446,'https://www.drfields.com/uncategorized/arthritis-knee-treatment/','64:0d1a4977c209643e393891e83d465116',5715,'post','post',8,0,'Arthritis Knee Treatment','Regenerative Orthopedics are effective Arthritis Knee Treatments even in cases of severe arthritis. Call today at 310-453-1234.','Arthritis Knee Treatment','publish',NULL,0,NULL,NULL,NULL,'Arthritis Knee Treatment',72,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/03/Prolotherapy-Knee-Arthritis-1-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/03/Prolotherapy-Knee-Arthritis-1-500x419.png',NULL,'first-content-image',NULL,0,0,NULL,'2023-03-13 04:05:33','2023-06-08 14:54:17',1,NULL,NULL,NULL,NULL,0,4,2,'2023-03-15 19:20:57','2023-03-10 06:00:19',NULL),(1444,'https://www.drfields.com/uncategorized/back-pain-treatment/','59:136fb14011714d18e371cf4df399948b',5704,'post','post',8,0,'Back Pain Treatment: Regenerative Orthopedics','What\'s the best back pain treatment for spinal instability? Regenerative Orthopedics, like Prolotherapy, PRP, and Stem Cells.','Back Pain Treatment','publish',NULL,0,NULL,NULL,NULL,'Back Pain Treatment',76,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/02/Back-Pain-Treatment-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/02/Back-Pain-Treatment-500x419.png',NULL,'first-content-image',NULL,0,0,NULL,'2023-02-27 04:29:28','2023-05-21 16:05:18',1,NULL,NULL,NULL,NULL,0,4,2,'2023-03-10 17:32:54','2023-02-26 06:00:14',NULL),(1441,'https://www.drfields.com/uncategorized/remedies-for-shoulder-repair/','68:3975e7064ac08427e7466e5450839009',5694,'post','post',8,0,NULL,'Regenerative Orthopedics: Non-surgical remedies for shoulder repair that involve no cutting, suturing, sewing, or stapling.','Remedies For Shoulder Repair','publish',NULL,0,NULL,NULL,NULL,'Remedies for Shoulder Repair',74,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/02/shoulder-degeneration.-Prolotherapy-1-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/02/shoulder-degeneration.-Prolotherapy-1-500x419.png',NULL,'first-content-image',NULL,0,0,NULL,'2023-02-22 03:53:21','2023-04-29 03:24:05',1,NULL,NULL,NULL,NULL,0,3,2,'2023-02-24 21:53:08','2023-02-21 03:52:07',NULL),(1439,'https://www.drfields.com/articles/regenerative-orthopedics/red-knees-non-surgical-candidate-population/','103:1c32f1918a8f8b6b5fc18d67f3a73dca',5686,'post','post',8,0,'Red Knees','Regenerative Orthopedics offers hope for the \"red knee\" population and a non-surgical alternative to knee replacement.','Alternatives for the &#8220;Red Knee&#8221; Non-Surgical Candidate Population','publish',NULL,0,NULL,NULL,NULL,'Red Knees',72,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/02/red-knee-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/02/red-knee-500x419.png',NULL,'first-content-image',NULL,0,0,NULL,'2023-02-04 03:48:11','2023-04-08 16:10:49',1,NULL,NULL,NULL,NULL,0,3,2,'2023-02-24 21:35:45','2023-02-03 03:47:54',NULL),(1436,'https://www.drfields.com/articles/regenerative-orthopedics/prolotherapy-is-the-answer-for-joint-repair/','103:35c1ddd33f95005c922946a3f0e7efd9',5657,'post','post',8,0,'Prolotherapy Is the Answer for Joint Repair','Prolotherapy is the answer for joint repair, and at OrthoRegen, we have specialized in this regenerative treatment for many years.','Prolotherapy Is the Answer for Joint Repair','publish',NULL,0,NULL,NULL,NULL,'Prolotherapy Is the Answer for Joint Repair',73,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/01/Prolo.knee-OA-500x375.jpeg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/01/Prolo.knee-OA-500x375.jpeg',NULL,'first-content-image',NULL,0,0,NULL,'2023-01-02 03:25:48','2023-04-08 16:10:19',1,NULL,NULL,NULL,NULL,0,5,2,'2023-01-13 21:03:37','2023-01-02 03:33:34',NULL),(505,'https://www.drfields.com/?p=1820','32:bc5a635258cfc17e2654265ad33669bc',1820,'post','post',8,0,NULL,NULL,'Chelation Therapy','draft',0,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,NULL,NULL,'2020-10-05 23:54:32','2022-07-28 04:41:03',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-10-05 23:54:50','2019-06-14 14:32:45',NULL),(1458,'https://www.drfields.com/articles/regenerative-orthopedics/chronic-pain-management/','83:2686d79acaa256614defe733935f0ea8',5773,'post','post',8,0,'Chronic Pain Management','Spending your days in chronic pain management? Don\'t just manage musculoskeletal pain; repair the problem with Regenerative Orthopedics.','Chronic Pain Management','publish',NULL,0,NULL,NULL,NULL,'chronic pain management',77,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/05/JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/05/JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-500x419.png',NULL,'first-content-image',NULL,5,0,NULL,'2023-05-09 03:48:22','2023-08-16 04:10:43',1,NULL,NULL,NULL,NULL,0,5,2,'2023-05-12 21:46:28','2023-05-09 03:50:21',NULL),(1456,'https://www.drfields.com/articles/meniscus-tear-treatments/','59:8154050d5afc0419ba48432c23aecb53',5760,'post','post',8,0,'Meniscus tear treatments','Regenerative Orthopedics are meniscus tear treatments that strengthen ligaments, repair the meniscus, and stop the breakdown of cartilage.','Meniscus Tear Treatments','publish',NULL,0,NULL,NULL,NULL,'Meniscus Tear Treatments',71,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/04/meniscectomy.-Osteoarthritis-and-Cartilage-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/04/meniscectomy.-Osteoarthritis-and-Cartilage-500x419.png',NULL,'first-content-image',NULL,0,0,NULL,'2023-04-29 03:15:32','2023-07-31 04:44:35',1,NULL,NULL,NULL,NULL,0,7,2,'2023-05-03 20:50:27','2023-04-26 10:14:45',NULL),(1460,'https://www.drfields.com/articles/regenerative-orthopedics/alternative-treatments-for-arthritis/','96:e6edfc930b059f76cdb65ad83245a6c2',5783,'post','post',8,0,NULL,'At OrthoRegen,® we have many years of experience in providing regenerative treatments as alternative treatments for arthritis.','Alternative Treatments for Arthritis','publish',NULL,0,NULL,NULL,NULL,'Alternative Arthritis Treatments',72,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/05/Arthritis.-Orthopedic-Reviews-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/05/Arthritis.-Orthopedic-Reviews-500x419.png',NULL,'first-content-image',NULL,0,0,NULL,'2023-05-21 16:01:49','2023-08-27 17:18:41',1,NULL,NULL,NULL,NULL,0,5,2,'2023-05-26 21:41:25','2023-05-19 09:00:44',NULL),(1462,'https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-treatment/','82:9c1816c476cdafbf0d3292c1ddbb7a19',5795,'post','post',8,0,NULL,'Regenerative Orthopedics stabilize, strengthen, address the instability, and put an end to the pain and symptoms of tennis elbow.','Tennis Elbow Treatment','publish',NULL,0,NULL,NULL,NULL,'Tennis Elbow Treatment',76,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/06/Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/06/Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-500x419.png',NULL,'first-content-image',NULL,0,0,NULL,'2023-06-08 14:46:35','2023-09-20 02:30:20',1,NULL,NULL,NULL,NULL,0,7,2,'2023-06-09 21:18:33','2023-06-08 14:49:25',NULL),(1464,'https://www.drfields.com/articles/regenerative-orthopedics/hip-arthritis-treatment/','83:418b4ab2abfb9ebddd76ca0b1ce649ea',5798,'post','post',8,0,'Hip Arthritis Treatment','Looking for a surgical alternative to hip replacement? Regenerative Orthopedics is a successful hip arthritis treatment. Give us a call!','Hip Arthritis?','publish',NULL,0,NULL,NULL,NULL,'Hip Arthritis Treatment',76,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/06/Hip-Arthritis-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/06/Hip-Arthritis-500x419.png',NULL,'first-content-image',NULL,0,0,NULL,'2023-06-08 14:50:25','2023-09-16 03:51:29',1,NULL,NULL,NULL,NULL,0,7,2,'2023-06-09 21:16:09','2023-06-08 14:52:38',NULL),(1466,'https://www.drfields.com/articles/regenerative-orthopedics/back-pain-specialists/','81:5688a12083cb4272249c80d592e914f0',5815,'post','post',8,0,'Back Pain Specialists','At OrthoRegen®, our back pain specialists effectively use Regenerative Orthopedics to treat lumbar pain and instability.','Back Pain Specialist','publish',NULL,0,NULL,NULL,NULL,'Back Pain Specialists',72,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/07/Low-Back-Pain-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/07/Low-Back-Pain-500x419.png',NULL,'first-content-image',NULL,0,1,NULL,'2023-07-02 19:41:57','2023-07-06 04:19:35',1,NULL,NULL,NULL,NULL,0,4,2,'2023-07-05 21:19:35','2023-06-26 09:41:28',NULL),(1468,'https://www.drfields.com/articles/regenerative-orthopedics/arthritis-neck-treatment/','84:3d3dddf059be5059051376466643b3f4',5827,'post','post',8,0,NULL,'Regenerative Orthopedics is an excellent arthritis neck treatment and solution to the puzzle of neck pain and cervical instability.','Arthritis Neck Treatment','publish',NULL,0,NULL,NULL,NULL,'Arthritis Neck Treatment',72,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/07/Neck-Arthritis-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/07/Neck-Arthritis-500x419.png',NULL,'first-content-image',NULL,0,1,NULL,'2023-07-18 03:31:58','2023-07-21 03:00:09',1,NULL,NULL,NULL,NULL,0,4,2,'2023-07-20 20:00:08','2023-07-18 03:33:37',NULL),(1470,'https://www.drfields.com/articles/regenerative-orthopedics/foot-pain-treatment/','79:e264af901c0470572b2c5550240ed147',5835,'post','post',8,0,NULL,'Regenerative Orthopedics is a foot pain treatment that repairs the problem, increasing the ability to walk, exercise, and work without pain.','Foot Pain Treatment','publish',NULL,0,NULL,NULL,NULL,'Foot Pain Treatment',76,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/07/foot-pain-1-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/07/foot-pain-1-500x419.png',NULL,'first-content-image',NULL,0,1,NULL,'2023-07-31 04:41:43','2023-08-03 00:50:52',1,NULL,NULL,NULL,NULL,0,4,2,'2023-08-02 17:50:51','2023-07-31 04:43:22',NULL),(1472,'https://www.drfields.com/articles/regenerative-orthopedics/acl-tear-repair/','75:879d148fe28dc0c3b1f9105f4fd31ddf',5847,'post','post',8,0,NULL,'Are you are seeking a non-surgical solution for an ACL injury? Regenerative Orthopedic approaches are effective options for ACL tear repair. ','ACL TEAR Repair','publish',NULL,0,NULL,NULL,NULL,'ACL Tear',72,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/08/ACL-Tearblog.1png-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/08/ACL-Tearblog.1png-500x419.png',NULL,'first-content-image',NULL,0,1,NULL,'2023-08-16 04:07:26','2023-08-17 04:39:22',1,NULL,NULL,NULL,NULL,0,6,2,'2023-08-16 21:39:22','2023-08-16 04:09:29',NULL),(1474,'https://www.drfields.com/?p=5858','32:a5a8fd0893de37b5f7075c44baa0a169',5858,'post','post',8,0,NULL,NULL,'Hip Replacement Alternatives','trash',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-24 06:50:05','2023-08-24 13:51:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-08-24 06:51:12','2023-08-24 06:51:12',NULL),(1475,'https://www.drfields.com/articles/hip-replacement-alternative/','62:061323bad01360b0733dcda5f6c316fe',5860,'post','post',8,0,'Hip Replacement Alternative','Hip surgeries are going through the roof, but non-surgical Regenerative Orthopedics is an effective hip replacement alternative.','Hip Replacement Alternative','publish',NULL,0,NULL,NULL,NULL,'Hip Replacement Alternative',74,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/08/hip-replacement-alternative-1-500x422.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/08/hip-replacement-alternative-1-500x422.png',NULL,'first-content-image',NULL,0,1,NULL,'2023-08-27 17:04:09','2023-08-31 03:19:17',1,NULL,NULL,NULL,NULL,0,7,2,'2023-08-30 20:19:17','2023-08-27 17:10:34',0),(1479,'https://www.drfields.com/?p=5889','32:091464a68958bfecac94b39fadc306fb',5889,'post','post',8,0,NULL,NULL,'Osteoarthritis Knee Treatment','trash',0,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-09-15 23:52:24','2023-09-16 06:53:47',1,NULL,NULL,NULL,NULL,0,4,2,'2023-09-15 23:53:47','2023-09-15 23:53:23',0),(1480,'https://www.drfields.com/articles/carpal-tunnel-syndrome-treatment/','67:f71aeeaa6aafc79b2e3f46af0a7c49e7',5895,'post','post',8,0,'Carpal Tunnel Syndrome Treatment','Regenerative Orthopedics works well as a carpal tunnel sydrome treatment to improve the pain, numbness, and associated tingling.','Non-Surgical Carpal Tunnel Treatment','publish',NULL,0,NULL,NULL,NULL,'Carpal tunnel syndrome treatment',72,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/09/Carpal-tunnel-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/09/Carpal-tunnel-500x419.png',NULL,'first-content-image',NULL,0,1,NULL,'2023-09-20 02:27:07','2023-09-21 02:34:23',1,NULL,NULL,NULL,NULL,0,6,2,'2023-09-20 19:34:23','2023-09-12 09:27:01',0),(1427,'https://www.drfields.com/articles/regenerative-orthopedics/new-studies-reveal-cortisone-injections-make-knee-arthritis-worse/','125:d01bbf89bed8c153048507bef89806cd',5633,'post','post',8,0,'Cortisone Makes Arthritis Worse','New studies show cortisone injections are \"significantly associated\" with increased progression of arthritis. Cortisone makes arthritis worse','New Studies Reveal Cortisone Injections Make Knee Arthritis Worse','publish',NULL,0,NULL,NULL,NULL,'Cortisone Makes Arthritis Worse',75,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2022-12-06 08:25:20','2023-04-08 16:09:36',1,NULL,NULL,NULL,NULL,0,4,2,'2023-01-24 04:46:35','2022-12-06 08:26:44',NULL),(1437,'https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-in-newport-beach-ca-area-regenerate-knee-cartilage-with-bone-marrow-concentrate-and-prp/','165:921021d4dff0a4a011b6825a572b2d3b',5676,'post','post',8,0,'Stem Cell Therapy in Newport Beach, CA','Looking for a surgical alternative? OrthoRegen® offers Stem Cell Therapy in the Newport Beach, CA area to help patients with knee pain.','Stem Cell Therapy in Newport Beach, CA Area: Regenerate Knee Cartilage with Bone Marrow Concentrate and PRP','publish',NULL,0,NULL,NULL,NULL,'Stem Cell Therapy in Newport Beach CA',72,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/01/arthroscopy-500x415.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/01/arthroscopy-500x415.png',NULL,'first-content-image',NULL,0,0,NULL,'2023-01-24 04:40:21','2023-04-08 16:10:19',1,NULL,NULL,NULL,NULL,0,4,2,'2023-01-28 21:34:41','2023-01-23 06:00:45',NULL),(969,'https://www.drfields.com/articles/regenerative-orthopedics/treating-knee-pain-and-injuries-with-regenerative-orthopedics/','121:a2c6425590fe0adaaedccde685300472',5157,'post','post',8,0,'Treating Knee Pain and Injuries with Regenerative Orthopedics','Treating Knee Pain and Injuries with Regenerative Orthopedics is an effective non-surgical solution to get you back to doing what you love.','Treating Knee Pain and Injuries with Regenerative Orthopedics','publish',NULL,0,NULL,NULL,NULL,'Treating Knee Pain',76,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/Meniscectomy.-Cureus.FB-Facebook-Post.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/Meniscectomy.-Cureus.FB-Facebook-Post.png',NULL,'first-content-image',NULL,0,0,NULL,'2022-07-08 04:10:05','2022-10-28 04:18:57',1,NULL,NULL,NULL,NULL,0,4,2,'2022-07-11 01:25:09','2022-07-07 06:00:48',NULL),(1478,'https://www.drfields.com/articles/osteoarthritis-knee-treatment/','64:ae9f5ae3a29bae82ef9d62a61af79c6e',5877,'post','post',8,0,'Osteoarthritis Knee Treatment','Regenerative Orthopedics are excellent osteoarthritis knee treatments because they address the root cause...the soft tissue damage.','Osteoarthritis Knee Treatment','publish',NULL,0,NULL,NULL,NULL,'Osteoarthritis Knee Treatment',72,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/09/osteoarthritis-knee-treatment--500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/09/osteoarthritis-knee-treatment--500x419.png',NULL,'first-content-image',NULL,0,1,NULL,'2023-09-04 07:03:22','2023-09-16 03:51:10',1,NULL,NULL,NULL,NULL,0,5,2,'2023-09-15 23:59:12','2023-09-01 09:02:38',0),(972,'https://www.drfields.com/articles/regenerative-orthopedics/nagging-back-pain/','77:fb9d40d914d7e9ed8f0170da0ed587aa',5169,'post','post',8,0,'Nagging Back Pain Relieved with Regenerative Orthopedics','Regenerative Orthopedics relieves nagging back pain by strengthening the ligaments and their connecting attachments resulting in pain relief.','Nagging Back Pain','publish',NULL,0,NULL,NULL,NULL,'nagging back pain',76,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/Back-Pain.Hauser.FB_-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/Back-Pain.Hauser.FB_-500x419.png',NULL,'first-content-image',NULL,0,0,NULL,'2022-07-16 03:40:25','2022-10-31 04:35:52',1,NULL,NULL,NULL,NULL,0,4,2,'2022-07-21 00:57:41','2022-07-16 03:42:02',NULL),(974,'https://www.drfields.com/articles/regenerative-orthopedics/try-regenerative-treatments-for-your-hip-pain-or-injury/','115:a5168daeb0674ae3f8e048051211315a',5180,'post','post',8,0,'Try Regenerative Treatments for Your Hip Pain or Injury','If you are experiencing hip pain or injury seek a non-surgical alternative such as Regenerative Orthopedics.','Try Regenerative Treatments for Your Hip Pain or Injury','publish',NULL,0,NULL,NULL,NULL,'Hip Pain or Injury',74,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/regen.tissue-healing-500x375.jpeg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/regen.tissue-healing-500x375.jpeg',NULL,'first-content-image',NULL,0,0,NULL,'2022-07-21 03:49:45','2022-10-31 04:35:52',1,NULL,NULL,NULL,NULL,0,3,2,'2022-07-29 17:10:48','2022-07-26 06:00:06',NULL),(976,'https://www.drfields.com/kilimanjaro-climb-gallery/','51:4f1eb07430ffeba43cf77c487b868985',5190,'post','page',8,0,NULL,NULL,'Kilimanjaro Climb Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_100719-300x300.jpg',NULL,NULL,'gallery-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_100719-300x300.jpg',NULL,'gallery-image',NULL,119,9,NULL,'2022-07-26 04:23:28','2022-07-28 11:37:10',1,NULL,NULL,NULL,NULL,0,1,2,'2022-07-28 04:37:08','2022-07-26 04:23:27',NULL),(1025,'https://www.drfields.com/kili-hiking-to-11400-ft/','49:9d276c74a04a21f6522500162365964b',5252,'post','page',8,0,NULL,NULL,'Kili Hiking to 11,400 ft','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_205057-300x300.jpg',NULL,NULL,'gallery-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_205057-300x300.jpg',NULL,'gallery-image',NULL,9,1,NULL,'2022-07-26 07:51:50','2022-07-26 10:47:08',1,NULL,NULL,NULL,NULL,0,1,2,'2022-07-26 07:55:43','2022-07-26 07:55:43',NULL),(1091,'https://www.drfields.com/hiking-to-the-summit-19-341-feet/','58:bebd31e73f31ff8482d44485b76bef39',5322,'post','page',8,0,NULL,NULL,'Hiking to the Summit 19341 Feet','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190218_033826-300x300.jpg',NULL,NULL,'gallery-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190218_033826-300x300.jpg',NULL,'gallery-image',NULL,8,1,NULL,'2022-07-26 09:33:00','2022-07-28 11:26:31',1,NULL,NULL,NULL,NULL,0,1,2,'2022-07-28 04:26:30','2022-07-26 09:34:52',NULL),(1101,'https://www.drfields.com/kili-hiking-to-13400-feet/','51:d85816b2886af805ac00b7e9a10dffe5',5350,'post','page',8,0,NULL,NULL,'Kili- Hiking to 13,400 feet','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_203442-300x300.jpg',NULL,NULL,'gallery-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_203442-300x300.jpg',NULL,'gallery-image',NULL,15,1,NULL,'2022-07-26 10:50:48','2022-07-28 05:08:34',1,NULL,NULL,NULL,NULL,0,1,2,'2022-07-27 22:08:33','2022-07-26 10:57:00',NULL),(1130,'https://www.drfields.com/tag/fees-policies/','43:65fd1077ca2bd8186a09c2c77a09fbe9',8,'term','post_tag',NULL,NULL,NULL,NULL,'Fees &amp; Policies',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-07-27 21:40:57','2022-07-28 04:41:11',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(1452,'https://www.drfields.com/articles/regenerative-orthopedics/neck-pain-treatment/','79:283f976d89f56c8b33c9392e734097aa',5747,'post','post',8,0,'Neck Pain Treatment','At OrthoRegen®, we understand cervical instability. For years, our neck pain treatment has helped patients find the relief they seek.','Neck Pain Treatment','publish',NULL,0,NULL,NULL,NULL,'Neck Pain Treatment',74,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/04/Cervical-Instability-2-1-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2023/04/Cervical-Instability-2-1-500x419.png',NULL,'first-content-image',NULL,0,0,NULL,'2023-04-18 02:58:50','2023-07-18 03:35:13',1,NULL,NULL,NULL,NULL,0,4,2,'2023-04-19 17:49:44','2023-04-18 03:01:17',NULL),(1376,'https://www.drfields.com/articles/regenerative-orthopedics/are-cortisone-shots-a-good-option/','93:ba7a5b58485f8735fdd01efaf9870703',5446,'post','post',8,0,'Are Cortisone Shots a Good Option?','Cortisone shots can harm the joint. Don\'t damage the joint! Choose Regenerative Orthopedics instead, and repair it!','Are Cortisone Shots a Good Option?','publish',NULL,0,NULL,NULL,NULL,'Cortisone Shots',72,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/08/Cortisone.-Jama-1-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/08/Cortisone.-Jama-1-500x419.png',NULL,'first-content-image',NULL,0,0,NULL,'2022-08-01 03:39:16','2022-10-31 04:35:52',1,NULL,NULL,NULL,NULL,0,4,2,'2022-08-03 21:26:01','2022-08-01 03:41:11',NULL),(1379,'https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-partial-rotator-cuff-tear-repair/','105:a463b76b5828adae341630050e57cd11',5459,'post','post',8,0,'Non-Surgical Partial Rotator Cuff Tear Repair','At OrthoRegen, we often see patients in our office seeking to avoid surgery after being diagnosed with a partial rotator cuff tear.','Non-Surgical Partial Rotator Cuff Tear Repair','publish',NULL,0,NULL,NULL,NULL,'Partial Rotator Cuff Tear',78,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/08/Rotator-Cuff.-J-Ortho-Surg-Research-500x425.jpeg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/08/Rotator-Cuff.-J-Ortho-Surg-Research-500x425.jpeg',NULL,'first-content-image',NULL,1,0,NULL,'2022-08-10 03:54:30','2022-10-31 04:35:52',1,NULL,NULL,NULL,NULL,0,5,2,'2022-08-22 20:03:16','2022-08-10 06:00:58',NULL),(1381,'https://www.drfields.com/articles/regenerative-orthopedics/sprained-ankles/','75:38749ff21438a23e6c401b236584ae56',5474,'post','post',8,0,'Sprained Ankles? Repair it with Regenerative Orthopedics','At OrthoRegen®, our treatment of choice for recurrent sprained ankles is Regenerative Orthopedics for effective repair and strengthening.','Sprained or Overturned Ankle?','publish',NULL,0,NULL,NULL,NULL,'Sprained Ankles',76,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/08/Sprained-Ankle-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/08/Sprained-Ankle-500x419.png',NULL,'first-content-image',NULL,0,0,NULL,'2022-08-23 05:17:23','2022-11-17 04:09:38',1,NULL,NULL,NULL,NULL,0,3,2,'2022-08-26 22:03:16','2022-08-23 06:00:06',NULL),(1385,'https://www.drfields.com/articles/regenerative-orthopedics/patellar-tendinopathy/','81:89b849e4a7661b99e7b8935a3b1e9b03',5500,'post','post',8,0,'Patellar Tendinopathy: Treat It With Regenerative Orthopedics','Non-Surgical Regenerative Orthopedics is a successful solution for many knee pain conditions, including patellar tendinopathy.','Patellar Tendinopathy','publish',NULL,0,NULL,NULL,NULL,'Patellar Tendinopathy',72,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-300x300.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-300x300.png',NULL,'first-content-image',NULL,0,0,NULL,'2022-09-07 06:01:24','2023-03-11 01:38:55',1,NULL,NULL,NULL,NULL,0,5,2,'2023-03-10 17:38:54','2022-09-06 06:00:27',NULL),(1388,'https://www.drfields.com/articles/regenerative-orthopedics/tennis-elbow-its-not-strictly-an-injury-afflicting-athletes/','119:5d69e897deb48811e9ec46b486a659fa',5513,'post','post',8,0,'Tennis Elbow','Prolotherapy for tennis elbow! Boosts the body’s healing abilities, repairs the injured soft tissue, and reduces or eliminates the symptoms.','Tennis Elbow: It’s Not Strictly An Injury Afflicting Athletes','publish',NULL,0,NULL,NULL,NULL,'Tennis Elbow',80,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-500x419.png',NULL,'first-content-image',NULL,1,0,NULL,'2022-09-26 12:04:16','2023-01-02 03:36:27',1,NULL,NULL,NULL,NULL,0,5,2,'2022-10-05 21:16:17','2022-09-25 06:00:50',NULL),(1390,'https://www.drfields.com/articles/regenerative-orthopedics/stem-cells-are-gaining-in-popularity/','96:b6b719cea36101c154910e6608815183',5522,'post','post',8,0,'Stem Cells Are Gaining in Popularity','Stem cells are gaining in popularity because they work! At OrthoRegen®, we have used stem cells to treat arthritis for many years.','Stem Cells Are Gaining in Popularity','publish',NULL,0,NULL,NULL,NULL,'Stem Cells Are Gaining in Popularity',74,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/10/Arthritis.-Jnl-Clinical-OrthoTrauma-500x419.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/10/Arthritis.-Jnl-Clinical-OrthoTrauma-500x419.png',NULL,'first-content-image',NULL,0,0,NULL,'2022-10-01 04:06:25','2023-02-04 03:58:41',1,NULL,NULL,NULL,NULL,0,5,2,'2022-10-05 21:48:27','2022-10-01 06:00:06',NULL),(1392,'https://www.drfields.com/articles/regenerative-orthopedics/avoid-knee-surgery-in-middle-age/','92:62c8f1d0bf127d3409e7516d0aa27013',5540,'post','post',8,0,'Avoid Knee Surgery in Middle Age','Regenerative Orthopedics are non-surgical, in-office procedures that help to avoid knee surgery in middle age.','Avoid Knee Surgery in Middle Age','publish',NULL,0,NULL,NULL,NULL,'Avoid Knee Surgery',76,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-300x300.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-300x300.jpg',NULL,'first-content-image',NULL,0,0,NULL,'2022-10-20 03:43:21','2023-02-22 03:56:54',1,NULL,NULL,NULL,NULL,0,4,2,'2022-12-20 11:03:47','2022-10-07 06:00:25',NULL),(1416,'https://www.drfields.com/articles/magazine-column/townsend-letter-avoiding-surgery-with-stem-cell-prp-prolotherapy/','115:053583b843f8aa86559dc03acd09aa10',5589,'post','post',8,0,NULL,NULL,'Townsend Letter: Avoiding Surgery With Stem Cell/PRP/Prolotherapy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-Cover-reprint-1.jpg',NULL,'5594','featured-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-Cover-reprint-1.jpg','5594','featured-image','{\"width\":224,\"height\":289,\"filesize\":32611,\"url\":\"https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-Cover-reprint-1.jpg\",\"path\":\"/home/drfiel5/public_html/wp-content/uploads/2022/11/Townsend-Letter-Cover-reprint-1.jpg\",\"size\":\"full\",\"id\":5594,\"alt\":\"Townsend Letter\",\"pixels\":64736,\"type\":\"image/jpeg\"}',0,0,NULL,'2022-11-05 04:26:15','2023-02-27 04:30:59',1,NULL,NULL,NULL,NULL,0,1,2,'2022-12-02 06:07:05','2022-11-05 04:39:02',NULL),(1422,'https://www.drfields.com/articles/regenerative-orthopedics/non-surgical-shoulder-repair-in-los-angeles-ca/','106:faf8b0a8b4acf79caf29e908eb15e4ea',5598,'post','post',8,0,'Non-Surgical Shoulder Repair in Los Angeles','Regenerative Orthopedics for Non-Surgical Shoulder Repair in Los Angeles is available for pain relief and restoration of function!','Non-Surgical Shoulder Repair in Los Angeles, CA','publish',NULL,0,NULL,NULL,NULL,'Non-Surgical Shoulder Repair in Los Angeles',72,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/11/shoulder-pain.-Hauser.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/11/shoulder-pain.-Hauser.png',NULL,'first-content-image',NULL,0,0,NULL,'2022-11-09 04:46:57','2023-03-13 04:09:07',1,NULL,NULL,NULL,NULL,0,6,2,'2022-11-09 19:23:02','2022-11-08 06:00:18',NULL),(1424,'https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-injections-in-the-los-angeles-area/','104:f359411a22479826fa31661e8ea4cf70',5605,'post','post',8,0,'Stem Cell Injections in the Los Angeles Area','Our goal at OrthoRegen®, where we provide stem cell injections in the Los Angeles, CA area, is to stimulate the repair of injured joints.','Stem Cell Injections in Los Angeles, CA','publish',NULL,0,NULL,NULL,NULL,'Stem Cell Injections in the Los Angeles Area',74,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/11/Non-surgical-arthritis-TX-300x300.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.drfields.com/wp-content/uploads/2022/11/Non-surgical-arthritis-TX-300x300.png',NULL,'first-content-image',NULL,0,0,NULL,'2022-11-17 04:02:34','2023-03-27 02:22:51',1,NULL,NULL,NULL,NULL,0,3,2,'2023-01-21 18:44:46','2022-11-17 06:00:47',NULL);
/*!40000 ALTER TABLE `wp_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `wp_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_indexable_hierarchy` (
  `indexable_id` int(11) unsigned NOT NULL,
  `ancestor_id` int(11) unsigned NOT NULL,
  `depth` int(11) unsigned DEFAULT NULL,
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable_hierarchy`
--

LOCK TABLES `wp_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable_hierarchy` VALUES (117,64,1,1),(124,64,1,1),(89,64,1,1),(82,65,1,1),(106,75,1,1),(96,97,1,1),(103,97,1,1),(101,97,2,1),(101,96,1,1),(195,75,1,1),(67,64,1,1),(312,0,0,1),(215,0,0,1),(1427,0,0,1),(3,0,0,1),(11,0,0,1),(17,0,0,1),(136,0,0,1),(123,0,0,1),(83,0,0,1),(20,0,0,1),(24,0,0,1),(9,0,0,1),(73,0,0,1),(169,0,0,1),(71,0,0,1),(53,0,0,1),(222,0,0,1),(133,0,0,1),(1,0,0,1),(219,0,0,1),(336,0,0,1),(191,0,0,1),(28,0,0,1),(208,0,0,1),(55,0,0,1),(76,0,0,1),(45,0,0,1),(50,0,0,1),(10,0,0,1),(54,0,0,1),(47,0,0,1),(57,0,0,1),(8,0,0,1),(58,0,0,1),(23,0,0,1),(12,0,0,1),(66,0,0,1),(49,0,0,1),(126,0,0,1),(64,0,0,1),(251,0,0,1),(15,0,0,1),(128,0,0,1),(99,0,0,1),(121,0,0,1),(68,0,0,1),(31,0,0,1),(108,0,0,1),(4,0,0,1),(115,0,0,1),(105,0,0,1),(48,0,0,1),(127,0,0,1),(212,0,0,1),(162,0,0,1),(74,0,0,1),(134,0,0,1),(199,0,0,1),(84,0,0,1),(120,0,0,1),(40,0,0,1),(189,0,0,1),(92,0,0,1),(91,0,0,1),(138,0,0,1),(236,0,0,1),(13,0,0,1),(220,0,0,1),(97,0,0,1),(104,0,0,1),(70,0,0,1),(35,0,0,1),(72,0,0,1),(25,0,0,1),(166,0,0,1),(52,0,0,1),(78,0,0,1),(44,0,0,1),(62,0,0,1),(90,0,0,1),(56,0,0,1),(51,0,0,1),(39,0,0,1),(226,0,0,1),(37,0,0,1),(137,0,0,1),(125,0,0,1),(77,0,0,1),(132,0,0,1),(150,0,0,1),(229,0,0,1),(140,0,0,1),(98,0,0,1),(218,0,0,1),(21,0,0,1),(217,0,0,1),(148,0,0,1),(86,0,0,1),(80,0,0,1),(95,0,0,1),(110,0,0,1),(61,0,0,1),(206,0,0,1),(201,0,0,1),(159,0,0,1),(200,0,0,1),(163,0,0,1),(198,0,0,1),(122,0,0,1),(59,0,0,1),(33,0,0,1),(174,0,0,1),(87,0,0,1),(65,0,0,1),(75,0,0,1),(14,0,0,1),(93,0,0,1),(100,0,0,1),(102,0,0,1),(235,0,0,1),(36,0,0,1),(183,0,0,1),(230,0,0,1),(228,0,0,1),(232,0,0,1),(231,0,0,1),(38,0,0,1),(180,0,0,1),(188,0,0,1),(203,0,0,1),(223,0,0,1),(171,0,0,1),(239,0,0,1),(79,0,0,1),(179,0,0,1),(164,0,0,1),(237,0,0,1),(139,0,0,1),(167,0,0,1),(187,0,0,1),(178,0,0,1),(22,0,0,1),(160,0,0,1),(196,0,0,1),(207,0,0,1),(194,0,0,1),(114,0,0,1),(213,0,0,1),(113,0,0,1),(154,0,0,1),(181,0,0,1),(177,0,0,1),(131,0,0,1),(192,0,0,1),(172,0,0,1),(165,0,0,1),(221,0,0,1),(197,0,0,1),(130,0,0,1),(155,0,0,1),(107,0,0,1),(202,0,0,1),(227,0,0,1),(156,0,0,1),(69,0,0,1),(41,0,0,1),(214,0,0,1),(16,0,0,1),(175,0,0,1),(129,0,0,1),(209,0,0,1),(111,0,0,1),(1478,0,0,1),(1479,0,0,1),(1475,0,0,1),(1474,0,0,1),(1480,0,0,1),(1472,0,0,1),(1470,0,0,1),(1468,0,0,1),(1466,0,0,1),(1464,0,0,1),(1462,0,0,1),(1460,0,0,1),(1458,0,0,1),(7,0,0,1),(1456,0,0,1),(112,0,0,1),(1452,0,0,1),(1450,0,0,1),(211,0,0,1),(1448,0,0,1),(1446,0,0,1),(1444,0,0,1),(1441,0,0,1),(1439,0,0,1),(1437,0,0,1),(1436,0,0,1),(1433,0,0,1),(353,0,0,1),(969,0,0,1),(972,0,0,1),(974,0,0,1),(1424,0,0,1),(1422,0,0,1),(272,0,0,1),(326,0,0,1),(245,0,0,1),(1416,0,0,1),(241,0,0,1),(119,0,0,1),(190,0,0,1),(19,0,0,1),(247,0,0,1),(30,19,1,1),(94,19,1,1),(149,19,1,1),(145,19,1,1),(144,19,1,1),(118,0,0,1),(204,19,1,1),(242,0,0,1),(246,0,0,1),(240,0,0,1),(243,0,0,1),(146,19,1,1),(170,0,0,1),(147,19,1,1),(176,0,0,1),(184,0,0,1),(34,19,1,1),(205,0,0,1),(340,0,0,1),(289,0,0,1),(1091,0,0,1),(320,0,0,1),(1025,0,0,1),(29,0,0,1),(142,19,1,1),(63,0,0,1),(225,0,0,1),(141,0,0,1),(42,0,0,1),(46,19,1,1),(182,0,0,1),(976,0,0,1),(151,19,1,1),(346,0,0,1),(244,0,0,1),(116,0,0,1),(152,19,1,1),(109,0,0,1),(249,0,0,1),(18,19,1,1),(27,19,1,1),(135,0,0,1),(168,0,0,1),(5,0,0,1),(1101,0,0,1),(60,0,0,1),(85,19,1,1),(81,0,0,1),(88,19,1,1),(216,0,0,1),(143,0,0,1),(359,0,0,1),(358,0,0,1),(354,0,0,1),(505,0,0,1),(43,0,0,1),(357,0,0,1),(238,0,0,1),(1376,0,0,1),(1379,0,0,1),(1130,0,0,1),(1381,0,0,1),(210,0,0,1),(224,0,0,1),(1385,0,0,1),(1388,0,0,1),(1390,0,0,1),(1392,0,0,1),(2,0,0,1);
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_migrations`
--

DROP TABLE IF EXISTS `wp_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_migrations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_wp_yoast_migrations_version` (`version`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_migrations`
--

LOCK TABLES `wp_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `wp_yoast_migrations` DISABLE KEYS */;
INSERT INTO `wp_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134'),(22,'20210817092415'),(23,'20211020091404'),(24,'20230417083836');
/*!40000 ALTER TABLE `wp_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_primary_term`
--

DROP TABLE IF EXISTS `wp_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_primary_term` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) DEFAULT NULL,
  `term_id` bigint(20) DEFAULT NULL,
  `taxonomy` varchar(32) NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=MyISAM AUTO_INCREMENT=68 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_primary_term`
--

LOCK TABLES `wp_yoast_primary_term` WRITE;
/*!40000 ALTER TABLE `wp_yoast_primary_term` DISABLE KEYS */;
INSERT INTO `wp_yoast_primary_term` VALUES (1,3584,32,'category','2020-05-05 21:55:09','2022-06-30 13:38:41',1),(2,2650,32,'category','2020-05-05 22:43:32','2022-06-30 13:22:08',1),(3,3416,34,'category','2020-05-05 23:48:15','2022-06-30 14:51:37',1),(4,3638,33,'category','2020-05-05 23:51:15','2022-06-30 06:21:24',1),(5,3540,32,'category','2020-05-06 01:03:45','2022-06-30 06:46:30',1),(6,3409,32,'category','2020-05-06 05:58:20','2022-06-30 23:51:00',1),(7,3301,32,'category','2020-05-06 06:16:16','2022-06-30 05:57:48',1),(8,2555,32,'category','2020-05-06 10:25:42','2022-07-03 03:42:49',1),(9,1401,32,'category','2020-05-06 11:47:33','2022-07-02 06:41:44',1),(10,3526,32,'category','2020-05-06 11:49:57','2022-07-01 00:12:13',1),(11,2773,32,'category','2020-05-06 12:23:32','2022-07-02 18:42:03',1),(12,3511,32,'category','2020-05-06 13:00:09','2022-06-30 05:56:49',1),(13,3134,32,'category','2020-05-06 13:44:51','2022-06-30 13:27:29',1),(14,2611,32,'category','2020-05-06 16:29:23','2022-06-30 18:04:49',1),(15,2592,32,'category','2020-05-06 17:02:38','2022-06-30 09:18:25',1),(16,2775,32,'category','2020-05-06 18:10:33','2022-06-30 09:31:16',1),(17,3484,32,'category','2020-05-06 19:53:17','2022-06-30 14:27:29',1),(18,2665,21,'category','2020-05-06 19:53:19','2022-06-30 06:46:11',1),(19,3547,30,'category','2020-05-06 21:05:51','2022-06-30 07:14:40',1),(20,2865,32,'category','2020-05-06 21:27:37','2022-07-02 03:45:33',1),(21,2760,21,'category','2020-05-06 22:27:26','2022-06-30 11:41:02',1),(22,2565,17,'category','2020-05-07 07:55:58','2022-06-30 07:04:29',1),(23,2912,32,'category','2020-05-07 14:46:39','2022-07-01 13:14:08',1),(24,3297,32,'category','2020-05-07 15:56:21','2022-07-01 17:37:38',1),(25,2697,33,'category','2020-05-07 16:26:58','2022-06-30 07:52:22',1),(26,2915,32,'category','2020-05-07 19:50:55','2022-06-30 09:38:39',1),(27,2503,32,'category','2020-05-07 20:40:25','2022-06-30 08:00:41',1),(28,2501,32,'category','2020-05-08 22:00:09','2022-06-30 19:55:57',1),(29,2586,17,'category','2020-05-09 01:33:21','2022-07-01 05:25:48',1),(30,3199,32,'category','2020-05-10 01:10:17','2022-06-30 08:37:43',1),(31,2561,17,'category','2020-05-10 04:45:53','2022-06-30 08:54:15',1),(32,2892,32,'category','2020-05-10 10:51:33','2022-07-03 17:52:37',1),(33,3306,32,'category','2020-05-10 10:51:47','2022-06-30 14:33:53',1),(34,2894,32,'category','2020-05-10 10:54:06','2022-06-30 07:04:28',1),(35,2858,32,'category','2020-05-10 17:45:08','2022-07-01 04:51:56',1),(36,3677,33,'category','2020-05-13 17:38:29','2022-06-30 14:34:06',1),(37,5157,32,'category','2022-07-08 04:41:41','2022-07-11 08:25:10',1),(38,5169,32,'category','2022-07-16 03:42:02','2022-07-21 07:57:41',1),(39,5180,32,'category','2022-07-21 03:54:44','2022-07-30 00:10:51',1),(40,5446,32,'category','2022-08-01 03:41:11','2022-08-04 04:26:02',1),(41,5459,32,'category','2022-08-10 03:57:32','2022-08-23 03:03:17',1),(42,5474,32,'category','2022-08-23 05:23:20','2022-08-27 05:03:17',1),(43,5500,32,'category','2022-09-07 06:09:44','2023-03-11 01:38:55',1),(44,5513,32,'category','2022-09-26 12:15:14','2022-10-06 04:16:18',1),(45,5522,32,'category','2022-10-01 04:12:31','2022-10-06 04:48:28',1),(46,5540,32,'category','2022-10-20 03:52:43','2022-12-20 19:03:47',1),(47,5589,34,'category','2022-11-05 04:39:03','2022-12-02 14:07:05',1),(48,5598,32,'category','2022-11-09 04:52:48','2022-11-10 03:23:03',1),(49,5605,32,'category','2022-11-17 04:07:59','2023-01-22 02:44:49',1),(50,5633,32,'category','2022-12-06 08:26:44','2023-01-24 12:46:36',1),(51,5651,32,'category','2023-01-02 03:21:12','2023-01-14 05:39:02',1),(52,5657,32,'category','2023-01-02 03:33:34','2023-01-14 05:03:37',1),(53,5676,32,'category','2023-01-24 04:46:01','2023-01-29 05:34:42',1),(54,5686,32,'category','2023-02-04 03:57:55','2023-02-25 05:35:46',1),(55,5728,32,'category','2023-03-27 02:20:27','2023-03-31 23:53:24',1),(56,5747,32,'category','2023-04-18 03:01:18','2023-04-20 00:49:45',1),(57,5760,30,'category','2023-04-29 03:23:48','2023-05-04 03:50:28',1),(58,5773,32,'category','2023-05-09 03:50:21','2023-05-13 04:46:29',1),(59,5783,32,'category','2023-05-23 03:49:21','2023-05-27 04:41:25',1),(60,5795,32,'category','2023-06-08 14:49:25','2023-06-10 04:18:34',1),(61,5798,32,'category','2023-06-08 14:52:38','2023-06-10 04:16:10',1),(62,5815,32,'category','2023-07-03 03:14:07','2023-07-06 04:19:35',1),(63,5827,32,'category','2023-07-18 03:33:37','2023-07-21 03:00:09',1),(64,5835,32,'category','2023-07-31 04:43:23','2023-08-03 00:50:52',1),(65,5847,32,'category','2023-08-16 04:09:29','2023-08-17 04:39:22',1),(66,5860,30,'category','2023-08-27 17:11:35','2023-08-31 03:19:17',1),(67,5895,30,'category','2023-09-20 02:29:08','2023-09-21 02:34:23',1);
/*!40000 ALTER TABLE `wp_yoast_primary_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_seo_links`
--

DROP TABLE IF EXISTS `wp_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) NOT NULL,
  `post_id` bigint(20) unsigned NOT NULL,
  `target_post_id` bigint(20) unsigned NOT NULL,
  `type` varchar(8) NOT NULL,
  `indexable_id` int(11) unsigned DEFAULT NULL,
  `target_indexable_id` int(11) unsigned DEFAULT NULL,
  `height` int(11) unsigned DEFAULT NULL,
  `width` int(11) unsigned DEFAULT NULL,
  `size` int(11) unsigned DEFAULT NULL,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=18374 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_links`
--

LOCK TABLES `wp_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_links` VALUES (1410,'https://www.drfields.com/wp-content/uploads/2019/06/Attitude-Adjustment-Regenrative-Techniques.mp3',1584,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1411,'https://www.drfields.com/wp-content/uploads/2019/06/Triathlon-Show-Prolotherapy.mp3',1584,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1412,'https://www.drfields.com/wp-content/uploads/2019/06/The-Natural-Health-Show-Prolotherapy-and-Hormone-Therapy.mp3',1584,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1413,'https://www.drfields.com/wp-content/uploads/2019/09/Fields_RegenB.mp3',1584,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1414,'https://www.drfields.com/wp-content/uploads/2019/09/Fields_PRPC.mp3',1584,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1415,'https://www.drfields.com/wp-content/uploads/2019/09/Fields_StemA1.mp3',1584,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2314,'tel:+310-453-1234',2795,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2476,'tel:+310-453-1234',2339,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2477,'https://www.thegeminigeeks.com/server1/contact',2339,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2478,'https://www.thegeminigeeks.com/server1/regenerative-techniques/stem-cell-treatment',2339,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2479,'https://www.thegeminigeeks.com/server1/contact',2339,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2480,'tel:+310-453-1234',2339,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2481,'tel:+310-453-1234',2339,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4081,'https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/',591,583,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4082,'https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/',591,585,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4083,'https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/',591,587,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4084,'https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/',591,589,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4085,'https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/',591,591,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4086,'https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/',589,583,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4087,'https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/',589,585,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4088,'https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/',589,587,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4089,'https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/',589,589,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4090,'https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/',589,591,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4505,'https://www.facebook.com/PeterAFieldsMDDC/',3490,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4506,'https://www.yelp.com/biz/peter-a-fields-md-dc-santa-monica-3?osq=peter+fields',3490,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4507,'https://www.google.com/search?q=peter+fields&#038;oq=peter+fields+&#038;aqs=chrome..69i57j35i39j0l3j69i60l3.4139j0j4&#038;sourceid=chrome&#038;ie=UTF-8#lrd=0x80c2bb37ac9f2427:0xc7e5f010fb1173b5,1,,,',3490,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4508,'https://www.youtube.com/user/prolotherapy1',3490,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7354,'https://www.drfields.com/about-the-athletic-doc/',1510,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7355,'https://www.drfields.com/Articles/Health-News/The-Importance-of-Supplementation-Upwards-of-Half-the-Population-51-Years-or-Older-do-Not-Get-Adequate-Nutrition-from-Their-Diets/',1510,1508,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7356,'www.latriclub.com',1510,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7818,'mailto:pcc@drfields.com',3,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8213,'http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4089899/',3511,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8214,'http://www.futuremedicine.com/doi/pdf/10.2217/ijr.14.10',3511,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8215,'http://www.reumatologia.org.ar.preview.hybrid-sites.com/docs/2013-Ultrasound-Evaluation-Of-The-Greater-Trochanter-Pain-Syndrome-Bursitis-Or-Tendinopathy.pdf',3511,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8216,'http://link.springer.com/journal/330',3511,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8217,'https://www.ncbi.nlm.nih.gov/pubmed/?term=Long%20SS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479',3511,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8218,'https://www.ncbi.nlm.nih.gov/pubmed/?term=Surrey%20DE%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479',3511,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8219,'https://www.ncbi.nlm.nih.gov/pubmed/?term=Nazarian%20LN%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=24147479',3511,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8220,'https://www.ncbi.nlm.nih.gov/pubmed/24147479',3511,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8221,'http://www.aaosannualmeetingpresskit.org/2014/news_briefs/downloads/PRP-HipBursitis.pdf',3511,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8222,'/articles/regenerative-orthopedics/',3511,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8225,'http://www.getprolo.com/prolotherapy-can-prevent-the-development-of-traumatic-arthritis/',3484,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8226,'/articles/regenerative-orthopedics/',3484,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8269,'https://www.webmd.com/back-pain/discs-of-the-spine',3306,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8270,'/articles/regenerative-orthopedics/',3306,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8287,'/articles/regenerative-orthopedics/',3297,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8292,'/articles/regenerative-orthopedics/',3199,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8298,'/articles/regenerative-orthopedics/',3134,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8309,'http://bjsm.bmj.com/content/31/4/332.short',2912,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8310,'/articles/regenerative-orthopedics/',2912,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8323,'/articles/regenerative-orthopedics/',1397,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8327,'/articles/regenerative-orthopedics/',2865,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8349,'/articles/regenerative-orthopedics/',2773,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8366,'https://www.intechopen.com/books/new-insight-into-cerebrovascular-diseases-an-updated-comprehensive-review/rehabilitation-strategies-and-key-related-mechanisms-involved-in-stroke-recovery#B1',2697,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8367,'https://franklinpierce.edu/about/Showcase2020/Projects/TherapyStrokeRehab-Ostrander.pdf',2697,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8368,'https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(19)31795-7/fulltext',2697,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8369,'https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1933494',2697,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8370,'https://anesthesiology.pubs.asahq.org/article.aspx?articleid=1946026',2697,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8371,'https://pubmed.ncbi.nlm.nih.gov/24978064/',2697,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8401,'/articles/regenerative-orthopedics/',2650,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8427,'/articles/regenerative-orthopedics/',2503,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8502,'https://doi.org/10.1148/radiol.2019190341',2915,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8503,'/articles/regenerative-orthopedics/',2915,0,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8650,'https://www.revdesportiva.pt/files/para_publicar/Exercising_for_People_with_Parkinson_s_Disease_and.pdf',1516,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8685,'https://link.springer.com/journal/12178',2012,0,'external',188,NULL,NULL,NULL,NULL,NULL,NULL),(8686,'https://www.drfields.com/contact/',2012,29,'internal',188,5,NULL,NULL,NULL,NULL,NULL),(8687,'https://www.drfields.com/contact/',2012,29,'internal',188,5,NULL,NULL,NULL,NULL,NULL),(8688,'https://www.drfields.com/wp-content/uploads/2019/06/Prolo-definition-500x376.png',2012,0,'image-in',188,NULL,NULL,NULL,NULL,NULL,NULL),(8700,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',2009,382,'internal',38,13,NULL,NULL,NULL,NULL,NULL),(8701,'https://www.drfields.com/contact/',2009,29,'internal',38,5,NULL,NULL,NULL,NULL,NULL),(8702,'/Articles/Prolotherapy-Research/Ankle-Foot',2009,0,'internal',38,NULL,NULL,NULL,NULL,NULL,NULL),(8703,'/Articles/Prolotherapy-Research/Ankle-Foot',2009,0,'internal',38,NULL,NULL,NULL,NULL,NULL,NULL),(8704,'https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-500x281.jpg',2009,0,'image-in',38,NULL,NULL,NULL,NULL,NULL,NULL),(8705,'https://www.drfields.com/wp-content/uploads/2019/06/foot-pain-medium.png',2009,1354,'image-in',38,NULL,150,150,6955,NULL,NULL),(8712,'https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/',3677,373,'internal',251,134,NULL,NULL,NULL,NULL,NULL),(8713,'/articles/regenerative-orthopedics/',3677,0,'internal',251,NULL,NULL,NULL,NULL,NULL,NULL),(8714,'https://www.drfields.com/wp-content/uploads/2020/05/Look-Forward-2-500x500.png',3677,0,'image-in',251,NULL,NULL,NULL,NULL,NULL,NULL),(8725,'https://www.drfields.com/contact/',1845,29,'internal',184,5,NULL,NULL,NULL,NULL,NULL),(8726,'https://www.drfields.com',1845,0,'internal',184,NULL,NULL,NULL,NULL,NULL,NULL),(8727,'/conditions/intravenous-iv-nutritional-therapy',1845,0,'internal',184,NULL,NULL,NULL,NULL,NULL,NULL),(8728,'/conditions/Bio-Identical-Hormones',1845,0,'internal',184,NULL,NULL,NULL,NULL,NULL,NULL),(8729,'/conditions/Musculo-Skeletal-Laser-Therapy',1845,0,'internal',184,NULL,NULL,NULL,NULL,NULL,NULL),(8730,'/conditions/Holistic-Integrative-Medicine',1845,0,'internal',184,NULL,NULL,NULL,NULL,NULL,NULL),(8731,'/conditions/Nutrition-Weight-Loss',1845,0,'internal',184,NULL,NULL,NULL,NULL,NULL,NULL),(8732,'/conditions/Chelation-Therapy',1845,0,'internal',184,NULL,NULL,NULL,NULL,NULL,NULL),(8733,'https://www.drfields.com/wp-content/uploads/2019/06/Integrative-Medicine.jpg',1845,1846,'image-in',184,NULL,174,200,16974,NULL,NULL),(8734,'https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg',1845,1835,'image-in',184,NULL,50,400,7927,NULL,NULL),(8749,'https://www.drfields.com/contact/',1837,29,'internal',43,5,NULL,NULL,NULL,NULL,NULL),(8750,'/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',1837,0,'internal',43,NULL,NULL,NULL,NULL,NULL,NULL),(8751,'/Regenerative-Techniques/PRP-Treatment',1837,0,'internal',43,NULL,NULL,NULL,NULL,NULL,NULL),(8752,'/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',1837,0,'internal',43,NULL,NULL,NULL,NULL,NULL,NULL),(8753,'/Regenerative-Techniques/PRP-Treatment',1837,0,'internal',43,NULL,NULL,NULL,NULL,NULL,NULL),(8754,'/conditions/chronic-pain/chronic-neck-pain/',1837,0,'internal',43,NULL,NULL,NULL,NULL,NULL,NULL),(8755,'https://www.drfields.com',1837,0,'internal',43,NULL,NULL,NULL,NULL,NULL,NULL),(8756,'/conditions/intravenous-iv-nutritional-therapy',1837,0,'internal',43,NULL,NULL,NULL,NULL,NULL,NULL),(8757,'/conditions/Bio-Identical-Hormones',1837,0,'internal',43,NULL,NULL,NULL,NULL,NULL,NULL),(8758,'/conditions/Musculo-Skeletal-Laser-Therapy',1837,0,'internal',43,NULL,NULL,NULL,NULL,NULL,NULL),(8759,'/conditions/Holistic-Integrative-Medicine',1837,0,'internal',43,NULL,NULL,NULL,NULL,NULL,NULL),(8760,'/conditions/Nutrition-Weight-Loss',1837,0,'internal',43,NULL,NULL,NULL,NULL,NULL,NULL),(8761,'/conditions/Chelation-Therapy',1837,0,'internal',43,NULL,NULL,NULL,NULL,NULL,NULL),(8762,'https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg',1837,1835,'image-in',43,NULL,50,400,7927,NULL,NULL),(8763,'https://www.drfields.com/contact/',1831,29,'internal',176,5,NULL,NULL,NULL,NULL,NULL),(8764,'https://www.drfields.com/wp-content/uploads/2019/06/self_test.pdf',1831,0,'internal',176,NULL,NULL,NULL,NULL,NULL,NULL),(8765,'https://www.drfields.com',1831,0,'internal',176,NULL,NULL,NULL,NULL,NULL,NULL),(8766,'/conditions/intravenous-iv-nutritional-therapy',1831,0,'internal',176,NULL,NULL,NULL,NULL,NULL,NULL),(8767,'/conditions/Bio-Identical-Hormones',1831,0,'internal',176,NULL,NULL,NULL,NULL,NULL,NULL),(8768,'/conditions/Musculo-Skeletal-Laser-Therapy',1831,0,'internal',176,NULL,NULL,NULL,NULL,NULL,NULL),(8769,'/conditions/Holistic-Integrative-Medicine',1831,0,'internal',176,NULL,NULL,NULL,NULL,NULL,NULL),(8770,'/conditions/Nutrition-Weight-Loss',1831,0,'internal',176,NULL,NULL,NULL,NULL,NULL,NULL),(8771,'/conditions/Chelation-Therapy',1831,0,'internal',176,NULL,NULL,NULL,NULL,NULL,NULL),(8772,'https://www.drfields.com/wp-content/uploads/2019/06/Bio-Identical-Hormones.jpg',1831,1832,'image-in',176,NULL,171,200,19253,NULL,NULL),(8773,'https://www.drfields.com/wp-content/uploads/2019/06/Contact_us2.jpg',1831,1835,'image-in',176,NULL,50,400,7927,NULL,NULL),(8774,'https://www.drfields.com/wp-content/uploads/2019/06/fields-hormone-level-quiz.jpg',1831,0,'image-in',176,NULL,NULL,NULL,NULL,NULL,NULL),(8782,'https://www.drfields.com',1820,0,'internal',505,NULL,NULL,NULL,NULL,NULL,NULL),(8783,'/conditions/intravenous-iv-nutritional-therapy',1820,0,'internal',505,NULL,NULL,NULL,NULL,NULL,NULL),(8784,'/conditions/Bio-Identical-Hormones',1820,0,'internal',505,NULL,NULL,NULL,NULL,NULL,NULL),(8785,'/conditions/Musculo-Skeletal-Laser-Therapy',1820,0,'internal',505,NULL,NULL,NULL,NULL,NULL,NULL),(8786,'/conditions/Holistic-Integrative-Medicine',1820,0,'internal',505,NULL,NULL,NULL,NULL,NULL,NULL),(8787,'/conditions/Nutrition-Weight-Loss',1820,0,'internal',505,NULL,NULL,NULL,NULL,NULL,NULL),(8788,'/conditions/Chelation-Therapy',1820,0,'internal',505,NULL,NULL,NULL,NULL,NULL,NULL),(8804,'https://www.youtube.com/watch?v=d-0hlfEKGYo&width=640&height=480',1669,0,'external',175,NULL,NULL,NULL,NULL,NULL,NULL),(8805,'https://www.youtube.com/watch?v=4GsVa7DN2Do&width=640&height=480',1669,0,'external',175,NULL,NULL,NULL,NULL,NULL,NULL),(8806,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',1669,382,'internal',175,13,NULL,NULL,NULL,NULL,NULL),(8807,'https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/',1669,533,'internal',175,104,NULL,NULL,NULL,NULL,NULL),(8808,'https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/',1669,373,'internal',175,134,NULL,NULL,NULL,NULL,NULL),(8809,'tel:+310-453-1234',1669,0,'external',175,NULL,NULL,NULL,NULL,NULL,NULL),(8810,'https://www.drfields.com/contact/',1669,29,'internal',175,5,NULL,NULL,NULL,NULL,NULL),(8811,'https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg',1669,0,'image-in',175,NULL,NULL,NULL,NULL,NULL,NULL),(8812,'https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg',1669,0,'image-in',175,NULL,NULL,NULL,NULL,NULL,NULL),(8853,'https://www.youtube.com/watch?v=d-0hlfEKGYo&width=640&height=480',1667,0,'external',16,NULL,NULL,NULL,NULL,NULL,NULL),(8854,'https://www.youtube.com/watch?v=4GsVa7DN2Do&width=640&height=480',1667,0,'external',16,NULL,NULL,NULL,NULL,NULL,NULL),(8855,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',1667,382,'internal',16,13,NULL,NULL,NULL,NULL,NULL),(8856,'https://www.drfields.com/regenerative-techniques/prp-treatment/',1667,414,'internal',16,12,NULL,NULL,NULL,NULL,NULL),(8857,'https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/',1667,373,'internal',16,134,NULL,NULL,NULL,NULL,NULL),(8858,'https://www.drfields.com/contact/',1667,29,'internal',16,5,NULL,NULL,NULL,NULL,NULL),(8859,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',1667,382,'internal',16,13,NULL,NULL,NULL,NULL,NULL),(8860,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',1667,382,'internal',16,13,NULL,NULL,NULL,NULL,NULL),(8861,'/regenerative-techniques/stem-cell-treatment/',1667,0,'internal',16,NULL,NULL,NULL,NULL,NULL,NULL),(8862,'https://www.drfields.com/contact/',1667,29,'internal',16,5,NULL,NULL,NULL,NULL,NULL),(8863,'https://www.drfields.com/how-prolotherapy-can-eliminate-joint-pain-without-surgery/',1667,1682,'internal',16,182,NULL,NULL,NULL,NULL,NULL),(8864,'https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/',1667,511,'internal',16,136,NULL,NULL,NULL,NULL,NULL),(8865,'https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/',1667,533,'internal',16,104,NULL,NULL,NULL,NULL,NULL),(8866,'https://www.drfields.com/articles/prolo-news/joint-surgery-think-again-learn-about-prolotherapy/',1667,0,'internal',16,NULL,NULL,NULL,NULL,NULL,NULL),(8867,'',1667,0,'internal',16,NULL,NULL,NULL,NULL,NULL,NULL),(8868,'tel:+310-453-1234',1667,0,'external',16,NULL,NULL,NULL,NULL,NULL,NULL),(8869,'https://www.drfields.com/contact/',1667,29,'internal',16,5,NULL,NULL,NULL,NULL,NULL),(8870,'https://www.drfields.com/contact/',1667,29,'internal',16,5,NULL,NULL,NULL,NULL,NULL),(8871,'https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg',1667,0,'image-in',16,NULL,NULL,NULL,NULL,NULL,NULL),(8872,'https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg',1667,0,'image-in',16,NULL,NULL,NULL,NULL,NULL,NULL),(8873,'https://www.drfields.com/contact/',1558,29,'internal',41,5,NULL,NULL,NULL,NULL,NULL),(8874,'tel:310-453-1234',1558,0,'external',41,NULL,NULL,NULL,NULL,NULL,NULL),(8875,'https://photos.app.goo.gl/hJxezx9ECHWjf6Sd2',1558,0,'external',41,NULL,NULL,NULL,NULL,NULL,NULL),(8876,'/Contact-Us',1558,0,'internal',41,NULL,NULL,NULL,NULL,NULL,NULL),(8877,'https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-2.jpg',1558,0,'image-in',41,NULL,NULL,NULL,NULL,NULL,NULL),(8878,'https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-1.jpg',1558,1562,'image-in',41,NULL,499,400,57514,NULL,NULL),(8879,'https://www.drfields.com/wp-content/uploads/2019/06/Lecture-Mexico-City-3.jpg',1558,0,'image-in',41,NULL,NULL,NULL,NULL,NULL,NULL),(9240,'https://www.drfields.com/contact/',1614,29,'internal',69,5,NULL,NULL,NULL,NULL,NULL),(9241,'https://www.youtube.com/watch?v=scdadG1A2Vk&width=640&height=480',1614,0,'external',69,NULL,NULL,NULL,NULL,NULL,NULL),(9242,'https://www.youtube.com/watch?v=azw0gVUKxik&width=640&height=480',1614,0,'external',69,NULL,NULL,NULL,NULL,NULL,NULL),(9243,'https://www.youtube.com/watch?v=mf3ROqVhK8Y&width=640&height=480',1614,0,'external',69,NULL,NULL,NULL,NULL,NULL,NULL),(9244,'https://www.youtube.com/watch?v=omMzZGlk9ns&width=640&height=480',1614,0,'external',69,NULL,NULL,NULL,NULL,NULL,NULL),(9245,'https://www.youtube.com/watch?v=pWkUap8KpEE&width=640&height=480',1614,0,'external',69,NULL,NULL,NULL,NULL,NULL,NULL),(9246,'https://www.drfields.com/contact/',1614,29,'internal',69,5,NULL,NULL,NULL,NULL,NULL),(9247,'https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg',1614,0,'image-in',69,NULL,NULL,NULL,NULL,NULL,NULL),(9248,'https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg1.jpg',1614,0,'image-in',69,NULL,NULL,NULL,NULL,NULL,NULL),(9249,'https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg2.jpg',1614,0,'image-in',69,NULL,NULL,NULL,NULL,NULL,NULL),(9250,'https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg3.jpg',1614,0,'image-in',69,NULL,NULL,NULL,NULL,NULL,NULL),(9251,'https://www.drfields.com/wp-content/uploads/2019/06/prolotherapyimg4.jpg',1614,0,'image-in',69,NULL,NULL,NULL,NULL,NULL,NULL),(9264,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',1526,382,'internal',231,13,NULL,NULL,NULL,NULL,NULL),(9265,'https://www.townsendletter.com',1526,0,'external',231,NULL,NULL,NULL,NULL,NULL,NULL),(9266,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-1.gif',1526,0,'image-in',231,NULL,NULL,NULL,NULL,NULL,NULL),(9267,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-feb-mar-2014-2.gif',1526,0,'image-in',231,NULL,NULL,NULL,NULL,NULL,NULL),(9275,'/articles/regenerative-orthopedics/',2775,0,'internal',114,NULL,NULL,NULL,NULL,NULL,NULL),(9276,'https://www.orthoregen.com/testimonials/',2775,0,'external',114,NULL,NULL,NULL,NULL,NULL,NULL),(9277,'https://www.drfields.com/wp-content/uploads/2019/10/IT-band-400x500.png',2775,0,'image-in',114,NULL,NULL,NULL,NULL,NULL,NULL),(9278,'https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#',1520,0,'external',187,NULL,NULL,NULL,NULL,NULL,NULL),(9279,'https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#',1520,0,'external',187,NULL,NULL,NULL,NULL,NULL,NULL),(9280,'https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#',1520,0,'external',187,NULL,NULL,NULL,NULL,NULL,NULL),(9281,'https://www.tandfonline.com/doi/full/10.1080/15213269.2019.1584569#',1520,0,'external',187,NULL,NULL,NULL,NULL,NULL,NULL),(9282,'https://www.tandfonline.com/doi/abs/10.1080/15213269.2019.1584569',1520,0,'external',187,NULL,NULL,NULL,NULL,NULL,NULL),(9283,'https://www.drfields.com/wp-content/uploads/2019/06/Foods-That-Burn-Fat.jpg',1520,1185,'image-in',187,NULL,313,200,24217,NULL,NULL),(9284,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',1461,382,'internal',130,13,NULL,NULL,NULL,NULL,NULL),(9285,'https://www.drfields.com/wp-content/uploads/2019/06/Pain.-OrthoRegen-Copy-500x500.png',1461,0,'image-in',130,NULL,NULL,NULL,NULL,NULL,NULL),(9290,'https://losangeles.cbslocal.com',1436,0,'external',209,NULL,NULL,NULL,NULL,NULL,NULL),(9291,'https://youtu.be/3JIY8OCt1FY',1436,0,'external',209,NULL,NULL,NULL,NULL,NULL,NULL),(9292,'https://www.drfields.com',1436,0,'internal',209,NULL,NULL,NULL,NULL,NULL,NULL),(9293,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg',1436,0,'image-in',209,NULL,NULL,NULL,NULL,NULL,NULL),(9337,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',1524,431,'internal',226,11,NULL,NULL,NULL,NULL,NULL),(9338,'https://www.drfields.com/contact/',1524,29,'internal',226,5,NULL,NULL,NULL,NULL,NULL),(9339,'tel:+310-453-1234',1524,0,'external',226,NULL,NULL,NULL,NULL,NULL,NULL),(9340,'https://www.townsendletter.com',1524,0,'external',226,NULL,NULL,NULL,NULL,NULL,NULL),(9341,'https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article-2014_Page_1.jpg',1524,0,'image-in',226,NULL,NULL,NULL,NULL,NULL,NULL),(9342,'https://www.drfields.com/wp-content/uploads/2019/06/Fields-July-article2014_Page_2.jpg',1524,0,'image-in',226,NULL,NULL,NULL,NULL,NULL,NULL),(9381,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',1530,382,'internal',230,13,NULL,NULL,NULL,NULL,NULL),(9382,'https://www.townsendletter.com',1530,0,'external',230,NULL,NULL,NULL,NULL,NULL,NULL),(9383,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-1.gif',1530,0,'image-in',230,NULL,NULL,NULL,NULL,NULL,NULL),(9384,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-2.gif',1530,0,'image-in',230,NULL,NULL,NULL,NULL,NULL,NULL),(9385,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-jan-2014-3.gif',1530,0,'image-in',230,NULL,NULL,NULL,NULL,NULL,NULL),(9507,'https://www.orthoregen.com/testimonials/',1532,0,'external',189,NULL,NULL,NULL,NULL,NULL,NULL),(9508,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-1.jpg',1532,1230,'image-in',189,NULL,1249,955,348070,NULL,NULL),(9509,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-2.gif',1532,1231,'image-in',189,NULL,1249,955,232072,NULL,NULL),(9510,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-dec-2013-3.gif',1532,1232,'image-in',189,NULL,1249,955,236541,NULL,NULL),(9554,'/chronic-pain-overview/',1514,0,'internal',72,NULL,NULL,NULL,NULL,NULL,NULL),(9555,'https://www.mdpi.com/2072-6643/12/7/2097/htm?fbclid=IwAR0W1FofI_w0VV11-tH0LwTiljf-h9lLvjI3vx2Wz-9mTlAJDc25on5IJ5w',1514,0,'external',72,NULL,NULL,NULL,NULL,NULL,NULL),(9556,'https://www.drfields.com/wp-content/uploads/2019/06/Vitamin-D.jpg',1514,1178,'image-in',72,NULL,300,200,46160,NULL,NULL),(9557,'https://www.drfields.com/wp-content/uploads/2019/06/Napping.jpg',1512,1174,'image-in',203,NULL,300,200,32418,NULL,NULL),(10069,'https://www.drfields.com/wp-content/uploads/2019/06/Supplementation.jpg',1508,1162,'image-in',223,NULL,300,200,20152,NULL,NULL),(10072,'https://www.drfields.com/articles/health-news/fat-fighting-foods/',1498,1520,'internal',236,187,NULL,NULL,NULL,NULL,NULL),(10073,'https://www.drfields.com/wp-content/uploads/2019/06/Body-Cleansing-Foods.jpg',1498,1144,'image-in',236,NULL,300,200,41362,NULL,NULL),(10445,'https://www.drfields.com/Testimonials/Video-Testimonials',1340,1340,'internal',27,27,NULL,NULL,NULL,NULL,NULL),(10446,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',1340,1700,'internal',27,88,NULL,NULL,NULL,NULL,NULL),(10447,'https://www.drfields.com/Testimonials/Knee-Testimonials',1340,1702,'internal',27,85,NULL,NULL,NULL,NULL,NULL),(10448,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',1340,1704,'internal',27,147,NULL,NULL,NULL,NULL,NULL),(10449,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',1340,1706,'internal',27,94,NULL,NULL,NULL,NULL,NULL),(10450,'https://www.drfields.com/Testimonials/Hip-Testimonials',1340,0,'internal',27,NULL,NULL,NULL,NULL,NULL,NULL),(10451,'https://www.drfields.com/Testimonials/Neck-Testimonials',1340,1711,'internal',27,18,NULL,NULL,NULL,NULL,NULL),(10452,'https://www.drfields.com/Testimonials/Ankle-Testimonials',1340,1713,'internal',27,46,NULL,NULL,NULL,NULL,NULL),(10453,'https://www.drfields.com/Testimonials/Elbow-Testimonials',1340,1715,'internal',27,144,NULL,NULL,NULL,NULL,NULL),(10454,'https://www.drfields.com/Testimonials/Foot-Testimonials',1340,1717,'internal',27,145,NULL,NULL,NULL,NULL,NULL),(10455,'https://www.drfields.com/Testimonials/Wrist-Testimonials',1340,1719,'internal',27,152,NULL,NULL,NULL,NULL,NULL),(10456,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',1340,1721,'internal',27,30,NULL,NULL,NULL,NULL,NULL),(10457,'https://www.drfields.com/Testimonials/Spanish-Testimonials',1340,1723,'internal',27,142,NULL,NULL,NULL,NULL,NULL),(10458,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',1340,1725,'internal',27,151,NULL,NULL,NULL,NULL,NULL),(10459,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',1340,1727,'internal',27,149,NULL,NULL,NULL,NULL,NULL),(10460,'https://www.drfields.com/Testimonials/Headache-Testimonials',1340,1729,'internal',27,146,NULL,NULL,NULL,NULL,NULL),(10461,'https://www.drfields.com/testimonials/german-testimonials/',1340,2833,'internal',27,204,NULL,NULL,NULL,NULL,NULL),(10462,'https://www.drfields.com/testimonials/written-testimonials/',1340,1012,'internal',27,34,NULL,NULL,NULL,NULL,NULL),(10463,'https://www.youtube.com/watch?v=jhN7D30YcYI&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10464,'https://www.youtube.com/watch?v=lUmMXcDmnb0&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10465,'https://www.youtube.com/watch?v=P0R8A3h2iVE&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10466,'https://www.youtube.com/watch?v=lg7LfbQ_2X8&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10467,'https://www.youtube.com/watch?v=yzIzTbV2H-E&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10468,'https://www.youtube.com/watch?v=txf3iJeuS8E&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10469,'https://www.youtube.com/watch?v=jBiDs3CZb60&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10470,'https://www.youtube.com/watch?v=MMQf25t2YVw&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10471,'https://www.drfields.com/contact/',1340,29,'internal',27,5,NULL,NULL,NULL,NULL,NULL),(10472,'https://www.youtube.com/watch?v=r3eZmnX-Krc&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10473,'https://www.youtube.com/watch?v=DzXPaTqr8wo&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10474,'https://www.youtube.com/watch?v=3ch1-0uGaYc&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10475,'https://www.youtube.com/watch?v=quj4K0wbfu4&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10476,'https://www.youtube.com/watch?v=77NOlzjsrbc&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10477,'https://www.youtube.com/watch?v=hhZQOqjwadg&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10478,'https://www.youtube.com/watch?v=NSQ6NTv4E7Q&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10479,'https://www.youtube.com/watch?v=1lcGXGB5nlQ&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10480,'https://www.youtube.com/watch?v=YoXRC87KNuM&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10481,'https://www.youtube.com/watch?v=5DYp-0v0Ptg&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10482,'https://www.youtube.com/watch?v=p37-iQnCvrM&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10483,'https://www.youtube.com/watch?v=KdDTQn5-WMA&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10484,'https://www.drfields.com/contact/',1340,29,'internal',27,5,NULL,NULL,NULL,NULL,NULL),(10485,'https://www.youtube.com/watch?v=VLbs4_l5Ky0&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10486,'https://www.youtube.com/watch?v=AioI5BZz3UE&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10487,'https://www.youtube.com/watch?v=hA1FVmxWixE&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10488,'https://www.youtube.com/watch?v=Di5g-tBclIY&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10489,'https://www.youtube.com/watch?v=rCf1JO5aNNA&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10490,'https://www.youtube.com/watch?v=hmq3WQRNSlk&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10491,'https://www.youtube.com/watch?v=hLgJ4IV96Mk&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10492,'https://www.youtube.com/watch?v=vMWJVoJaVJs&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10493,'https://www.youtube.com/watch?v=nPw5OVgcUlU&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10494,'https://www.youtube.com/watch?v=vQGBBEARjMk&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10495,'https://www.youtube.com/watch?v=9pkum_ODeLk&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10496,'https://www.youtube.com/watch?v=d-0hlfEKGYo&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10497,'https://www.drfields.com/contact/',1340,29,'internal',27,5,NULL,NULL,NULL,NULL,NULL),(10498,'https://www.youtube.com/watch?v=bC6PwyGefiY&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10499,'https://www.youtube.com/watch?v=k4qgeZ5hEsk&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10500,'https://www.youtube.com/watch?v=ErGDFmRC9_0&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10501,'https://www.youtube.com/watch?v=cFCO3DIv3mA&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10502,'https://www.youtube.com/watch?v=VkDlCmTq6dE&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10503,'https://www.youtube.com/watch?v=Mc4Xo9RTwjw&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10504,'https://www.youtube.com/watch?v=mVHo_vvsd9A&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10505,'https://www.youtube.com/watch?v=lbdZS9nI4P0&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10506,'https://www.youtube.com/watch?v=MYI_vSJe378&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10507,'https://www.youtube.com/watch?v=fSQ33gk_qSo&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10508,'https://www.youtube.com/watch?v=pkxNgsAzzq4&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10509,'https://www.youtube.com/watch?v=9B54Xx1z8IE&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10510,'https://www.drfields.com/contact/',1340,29,'internal',27,5,NULL,NULL,NULL,NULL,NULL),(10511,'https://www.youtube.com/watch?v=usKynXnU45A&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10512,'https://www.youtube.com/watch?v=Hp4lUuSalOE&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10513,'https://www.youtube.com/watch?v=37KInzxAg6Y&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10514,'https://www.youtube.com/watch?v=CfhXiKoiO08&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10515,'https://www.youtube.com/watch?v=DQwesSp8YGs&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10516,'https://www.youtube.com/watch?v=5rBHAXq3PLM&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10517,'https://www.youtube.com/watch?v=4GsVa7DN2Do&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10518,'https://www.youtube.com/watch?v=FqX0AEE0z24&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10519,'https://www.youtube.com/watch?v=ThzUVq3rx2Y&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10520,'https://www.youtube.com/watch?v=6wBQp0ZNfy0&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10521,'https://www.youtube.com/watch?v=4oBchrO2tug&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10522,'https://www.youtube.com/watch?v=RJCzx6yt0zY&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10523,'https://www.drfields.com/contact/',1340,29,'internal',27,5,NULL,NULL,NULL,NULL,NULL),(10524,'https://www.youtube.com/watch?v=aO2HpYrEJIg&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10525,'https://www.youtube.com/watch?v=4kip37rZH6Y&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10526,'https://www.youtube.com/watch?v=aXwHPE_WEd0&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10527,'https://www.youtube.com/watch?v=EKGWkEAaqTM&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10528,'https://www.youtube.com/watch?v=0jafVf5mDIk&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10529,'https://www.youtube.com/watch?v=gaioPXwk4pc&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10530,'https://www.youtube.com/watch?v=dRU13CJixJQ&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10531,'https://www.youtube.com/watch?v=-SyCX5PtrL4&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10532,'https://www.youtube.com/watch?v=If3I_k5wvdU&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10533,'https://www.youtube.com/watch?v=nGyhBJFOn24&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10534,'https://www.youtube.com/watch?v=MbclxvLrVec&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10535,'https://www.youtube.com/watch?v=BZ65bEr1Qlo&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10536,'https://www.drfields.com/contact/',1340,29,'internal',27,5,NULL,NULL,NULL,NULL,NULL),(10537,'https://www.youtube.com/watch?v=Y19FJAblO6o&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10538,'https://www.youtube.com/watch?v=IrOa6fvRip4&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10539,'https://www.youtube.com/watch?v=wd73iKcFLDY&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10540,'https://www.youtube.com/watch?v=xE-RZymaOmY&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10541,'https://www.youtube.com/watch?v=7sBZyf4bAyI&width=640&height=480',1340,0,'external',27,NULL,NULL,NULL,NULL,NULL,NULL),(10542,'https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg',1340,2729,'image-in',27,NULL,360,480,63010,NULL,NULL),(10543,'https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg',1340,2725,'image-in',27,NULL,360,480,60991,NULL,NULL),(10544,'https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg',1340,2724,'image-in',27,NULL,360,480,61864,NULL,NULL),(10545,'https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg',1340,2726,'image-in',27,NULL,360,480,68478,NULL,NULL),(10546,'https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg',1340,2728,'image-in',27,NULL,360,480,57112,NULL,NULL),(10547,'https://www.drfields.com/wp-content/uploads/2020/12/bob-2.jpg',1340,4308,'image-in',27,NULL,360,480,25664,NULL,NULL),(10548,'https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg',1340,1347,'image-in',27,NULL,360,480,7752,NULL,NULL),(10549,'https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg',1340,1857,'image-in',27,NULL,360,480,5941,NULL,NULL),(10550,'https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg',1340,1859,'image-in',27,NULL,360,480,6827,NULL,NULL),(10551,'https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg',1340,1861,'image-in',27,NULL,360,480,7363,NULL,NULL),(10552,'https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg',1340,1865,'image-in',27,NULL,360,480,7670,NULL,NULL),(10553,'https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg',1340,1867,'image-in',27,NULL,360,480,7343,NULL,NULL),(10554,'https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg',1340,1869,'image-in',27,NULL,360,480,9280,NULL,NULL),(10555,'https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg',1340,1870,'image-in',27,NULL,360,480,10723,NULL,NULL),(10556,'https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg',1340,1871,'image-in',27,NULL,360,480,9266,NULL,NULL),(10557,'https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg',1340,1634,'image-in',27,NULL,360,480,11345,NULL,NULL),(10558,'https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg',1340,1633,'image-in',27,NULL,360,480,10248,NULL,NULL),(10559,'https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg',1340,1886,'image-in',27,NULL,360,480,8904,NULL,NULL),(10560,'https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg',1340,1887,'image-in',27,NULL,360,480,9527,NULL,NULL),(10561,'https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg',1340,1888,'image-in',27,NULL,360,480,10634,NULL,NULL),(10562,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg',1340,1891,'image-in',27,NULL,360,480,9784,NULL,NULL),(10563,'https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg',1340,1893,'image-in',27,NULL,360,480,11298,NULL,NULL),(10564,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg',1340,1889,'image-in',27,NULL,360,480,12492,NULL,NULL),(10565,'https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg',1340,1868,'image-in',27,NULL,360,480,8772,NULL,NULL),(10566,'https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg',1340,1866,'image-in',27,NULL,360,480,8707,NULL,NULL),(10567,'https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg',1340,1890,'image-in',27,NULL,360,480,8843,NULL,NULL),(10568,'https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg',1340,3627,'image-in',27,NULL,360,480,28401,NULL,NULL),(10569,'https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg',1340,1892,'image-in',27,NULL,360,480,11689,NULL,NULL),(10570,'https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg',1340,1864,'image-in',27,NULL,360,480,6711,NULL,NULL),(10571,'https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg',1340,1894,'image-in',27,NULL,360,480,8344,NULL,NULL),(10572,'https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg',1340,1895,'image-in',27,NULL,360,480,11236,NULL,NULL),(10573,'https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg',1340,1254,'image-in',27,NULL,360,480,10579,NULL,NULL),(10574,'https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg',1340,1260,'image-in',27,NULL,360,480,8810,NULL,NULL),(10575,'https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg',1340,1901,'image-in',27,NULL,360,480,8667,NULL,NULL),(10576,'https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg',1340,1902,'image-in',27,NULL,360,480,14099,NULL,NULL),(10577,'https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg',1340,1893,'image-in',27,NULL,360,480,11298,NULL,NULL),(10578,'https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg',1340,1262,'image-in',27,NULL,360,480,10805,NULL,NULL),(10579,'https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg',1340,1279,'image-in',27,NULL,360,480,13153,NULL,NULL),(10580,'https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg',1340,1904,'image-in',27,NULL,360,480,8506,NULL,NULL),(10581,'https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg',1340,1906,'image-in',27,NULL,360,480,10893,NULL,NULL),(10582,'https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg',1340,1907,'image-in',27,NULL,360,480,8132,NULL,NULL),(10583,'https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg',1340,1908,'image-in',27,NULL,360,480,9920,NULL,NULL),(10584,'https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg',1340,1909,'image-in',27,NULL,360,480,9363,NULL,NULL),(10585,'https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg',1340,1910,'image-in',27,NULL,360,480,11861,NULL,NULL),(10586,'https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg',1340,1278,'image-in',27,NULL,360,480,8963,NULL,NULL),(10587,'https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg',1340,1262,'image-in',27,NULL,360,480,10805,NULL,NULL),(10588,'https://www.drfields.com/wp-content/uploads/2020/12/Michael-Ganglion-Cyst-2.jpg',1340,4310,'image-in',27,NULL,360,480,30690,NULL,NULL),(10589,'https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg',1340,1912,'image-in',27,NULL,360,480,9695,NULL,NULL),(10590,'https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg',1340,1913,'image-in',27,NULL,360,480,16164,NULL,NULL),(10591,'https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg',1340,1914,'image-in',27,NULL,360,480,10103,NULL,NULL),(10592,'https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg',1340,1262,'image-in',27,NULL,360,480,10805,NULL,NULL),(10593,'https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg',1340,1915,'image-in',27,NULL,360,480,9511,NULL,NULL),(10594,'https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg',1340,1299,'image-in',27,NULL,360,480,19956,NULL,NULL),(10595,'https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg',1340,1255,'image-in',27,NULL,360,480,12855,NULL,NULL),(10596,'https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg',1340,1916,'image-in',27,NULL,360,480,12271,NULL,NULL),(10597,'https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg',1340,1264,'image-in',27,NULL,360,480,13384,NULL,NULL),(10598,'https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg',1340,1921,'image-in',27,NULL,360,480,11215,NULL,NULL),(10599,'https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg',1340,1922,'image-in',27,NULL,360,480,18738,NULL,NULL),(10600,'https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg',1340,1274,'image-in',27,NULL,360,480,9736,NULL,NULL),(10601,'https://www.drfields.com/wp-content/uploads/2019/09/dr-doug-1.jpg',1340,2739,'image-in',27,NULL,360,480,80869,NULL,NULL),(10602,'https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg',1340,1293,'image-in',27,NULL,360,480,8779,NULL,NULL),(10603,'https://www.drfields.com/wp-content/uploads/2020/12/Keith-Shoulder-2.jpg',1340,4311,'image-in',27,NULL,360,480,25887,NULL,NULL),(10604,'https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg',1340,1924,'image-in',27,NULL,360,480,11920,NULL,NULL),(10605,'https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg',1340,2735,'image-in',27,NULL,360,480,81365,NULL,NULL),(10606,'https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg',1340,1925,'image-in',27,NULL,360,480,10071,NULL,NULL),(10607,'https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg',1340,1926,'image-in',27,NULL,360,480,11185,NULL,NULL),(10608,'https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg',1340,1927,'image-in',27,NULL,360,480,10291,NULL,NULL),(10609,'https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg',1340,1928,'image-in',27,NULL,360,480,14053,NULL,NULL),(10610,'https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg',1340,1924,'image-in',27,NULL,360,480,11920,NULL,NULL),(10611,'https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg',1340,1929,'image-in',27,NULL,360,480,10961,NULL,NULL),(10612,'https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg',1340,1932,'image-in',27,NULL,360,480,12163,NULL,NULL),(10613,'https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg',1340,1931,'image-in',27,NULL,360,480,11298,NULL,NULL),(10614,'https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg',1340,1930,'image-in',27,NULL,360,480,11287,NULL,NULL),(11118,'https://www.drfields.com/Testimonials/Video-Testimonials',1711,1340,'internal',18,27,NULL,NULL,NULL,NULL,NULL),(11119,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',1711,1700,'internal',18,88,NULL,NULL,NULL,NULL,NULL),(11120,'https://www.drfields.com/Testimonials/Knee-Testimonials',1711,1702,'internal',18,85,NULL,NULL,NULL,NULL,NULL),(11121,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',1711,1704,'internal',18,147,NULL,NULL,NULL,NULL,NULL),(11122,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',1711,1706,'internal',18,94,NULL,NULL,NULL,NULL,NULL),(11123,'https://www.drfields.com/Testimonials/Hip-Testimonials',1711,0,'internal',18,NULL,NULL,NULL,NULL,NULL,NULL),(11124,'https://www.drfields.com/Testimonials/Neck-Testimonials',1711,1711,'internal',18,18,NULL,NULL,NULL,NULL,NULL),(11125,'https://www.drfields.com/Testimonials/Ankle-Testimonials',1711,1713,'internal',18,46,NULL,NULL,NULL,NULL,NULL),(11126,'https://www.drfields.com/Testimonials/Elbow-Testimonials',1711,1715,'internal',18,144,NULL,NULL,NULL,NULL,NULL),(11127,'https://www.drfields.com/Testimonials/Foot-Testimonials',1711,1717,'internal',18,145,NULL,NULL,NULL,NULL,NULL),(11128,'https://www.drfields.com/Testimonials/Wrist-Testimonials',1711,1719,'internal',18,152,NULL,NULL,NULL,NULL,NULL),(11129,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',1711,1721,'internal',18,30,NULL,NULL,NULL,NULL,NULL),(11130,'https://www.drfields.com/Testimonials/Spanish-Testimonials',1711,1723,'internal',18,142,NULL,NULL,NULL,NULL,NULL),(11131,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',1711,1725,'internal',18,151,NULL,NULL,NULL,NULL,NULL),(11132,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',1711,1727,'internal',18,149,NULL,NULL,NULL,NULL,NULL),(11133,'https://www.drfields.com/Testimonials/Headache-Testimonials',1711,1729,'internal',18,146,NULL,NULL,NULL,NULL,NULL),(11134,'https://www.drfields.com/testimonials/german-testimonials/',1711,2833,'internal',18,204,NULL,NULL,NULL,NULL,NULL),(11135,'https://www.drfields.com/testimonials/written-testimonials/',1711,1012,'internal',18,34,NULL,NULL,NULL,NULL,NULL),(11136,'https://www.youtube.com/watch?v=bC6PwyGefiY&width=640&height=480',1711,0,'external',18,NULL,NULL,NULL,NULL,NULL,NULL),(11137,'https://www.youtube.com/watch?v=DQwesSp8YGs&width=640&height=480',1711,0,'external',18,NULL,NULL,NULL,NULL,NULL,NULL),(11138,'https://www.youtube.com/watch?v=-SyCX5PtrL4&width=640&height=480',1711,0,'external',18,NULL,NULL,NULL,NULL,NULL,NULL),(11139,'https://www.drfields.com/contact/',1711,29,'internal',18,5,NULL,NULL,NULL,NULL,NULL),(11140,'https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg',1711,1260,'image-in',18,NULL,360,480,8810,NULL,NULL),(11141,'https://www.drfields.com/wp-content/uploads/2019/06/Jamie-Neck.jpg',1711,1913,'image-in',18,NULL,360,480,16164,NULL,NULL),(11142,'https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg',1711,2735,'image-in',18,NULL,360,480,81365,NULL,NULL),(11143,'https://www.drfields.com/Testimonials/Video-Testimonials',1727,1340,'internal',149,27,NULL,NULL,NULL,NULL,NULL),(11144,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',1727,1700,'internal',149,88,NULL,NULL,NULL,NULL,NULL),(11145,'https://www.drfields.com/Testimonials/Knee-Testimonials',1727,1702,'internal',149,85,NULL,NULL,NULL,NULL,NULL),(11146,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',1727,1704,'internal',149,147,NULL,NULL,NULL,NULL,NULL),(11147,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',1727,1706,'internal',149,94,NULL,NULL,NULL,NULL,NULL),(11148,'https://www.drfields.com/Testimonials/Hip-Testimonials',1727,0,'internal',149,NULL,NULL,NULL,NULL,NULL,NULL),(11149,'https://www.drfields.com/Testimonials/Neck-Testimonials',1727,1711,'internal',149,18,NULL,NULL,NULL,NULL,NULL),(11150,'https://www.drfields.com/Testimonials/Ankle-Testimonials',1727,1713,'internal',149,46,NULL,NULL,NULL,NULL,NULL),(11151,'https://www.drfields.com/Testimonials/Elbow-Testimonials',1727,1715,'internal',149,144,NULL,NULL,NULL,NULL,NULL),(11152,'https://www.drfields.com/Testimonials/Foot-Testimonials',1727,1717,'internal',149,145,NULL,NULL,NULL,NULL,NULL),(11153,'https://www.drfields.com/Testimonials/Wrist-Testimonials',1727,1719,'internal',149,152,NULL,NULL,NULL,NULL,NULL),(11154,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',1727,1721,'internal',149,30,NULL,NULL,NULL,NULL,NULL),(11155,'https://www.drfields.com/Testimonials/Spanish-Testimonials',1727,1723,'internal',149,142,NULL,NULL,NULL,NULL,NULL),(11156,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',1727,1725,'internal',149,151,NULL,NULL,NULL,NULL,NULL),(11157,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',1727,1727,'internal',149,149,NULL,NULL,NULL,NULL,NULL),(11158,'https://www.drfields.com/Testimonials/Headache-Testimonials',1727,1729,'internal',149,146,NULL,NULL,NULL,NULL,NULL),(11159,'https://www.drfields.com/testimonials/german-testimonials/',1727,2833,'internal',149,204,NULL,NULL,NULL,NULL,NULL),(11160,'https://www.drfields.com/testimonials/written-testimonials/',1727,1012,'internal',149,34,NULL,NULL,NULL,NULL,NULL),(11161,'https://www.youtube.com/watch?v=37KInzxAg6Y&width=640&height=480',1727,0,'external',149,NULL,NULL,NULL,NULL,NULL,NULL),(11162,'https://www.drfields.com/contact/',1727,29,'internal',149,5,NULL,NULL,NULL,NULL,NULL),(11163,'https://www.drfields.com/wp-content/uploads/2020/12/Michael-Ganglion-Cyst-2.jpg',1727,4310,'image-in',149,NULL,360,480,30690,NULL,NULL),(11164,'https://www.drfields.com/Testimonials/Video-Testimonials',1729,1340,'internal',146,27,NULL,NULL,NULL,NULL,NULL),(11165,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',1729,1700,'internal',146,88,NULL,NULL,NULL,NULL,NULL),(11166,'https://www.drfields.com/Testimonials/Knee-Testimonials',1729,1702,'internal',146,85,NULL,NULL,NULL,NULL,NULL),(11167,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',1729,1704,'internal',146,147,NULL,NULL,NULL,NULL,NULL),(11168,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',1729,1706,'internal',146,94,NULL,NULL,NULL,NULL,NULL),(11169,'https://www.drfields.com/Testimonials/Hip-Testimonials',1729,0,'internal',146,NULL,NULL,NULL,NULL,NULL,NULL),(11170,'https://www.drfields.com/Testimonials/Neck-Testimonials',1729,1711,'internal',146,18,NULL,NULL,NULL,NULL,NULL),(11171,'https://www.drfields.com/Testimonials/Ankle-Testimonials',1729,1713,'internal',146,46,NULL,NULL,NULL,NULL,NULL),(11172,'https://www.drfields.com/Testimonials/Elbow-Testimonials',1729,1715,'internal',146,144,NULL,NULL,NULL,NULL,NULL),(11173,'https://www.drfields.com/Testimonials/Foot-Testimonials',1729,1717,'internal',146,145,NULL,NULL,NULL,NULL,NULL),(11174,'https://www.drfields.com/Testimonials/Wrist-Testimonials',1729,1719,'internal',146,152,NULL,NULL,NULL,NULL,NULL),(11175,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',1729,1721,'internal',146,30,NULL,NULL,NULL,NULL,NULL),(11176,'https://www.drfields.com/Testimonials/Spanish-Testimonials',1729,1723,'internal',146,142,NULL,NULL,NULL,NULL,NULL),(11177,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',1729,1725,'internal',146,151,NULL,NULL,NULL,NULL,NULL),(11178,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',1729,1727,'internal',146,149,NULL,NULL,NULL,NULL,NULL),(11179,'https://www.drfields.com/Testimonials/Headache-Testimonials',1729,1729,'internal',146,146,NULL,NULL,NULL,NULL,NULL),(11180,'https://www.drfields.com/testimonials/german-testimonials/',1729,2833,'internal',146,204,NULL,NULL,NULL,NULL,NULL),(11181,'https://www.drfields.com/testimonials/written-testimonials/',1729,1012,'internal',146,34,NULL,NULL,NULL,NULL,NULL),(11182,'https://www.youtube.com/watch?v=EKGWkEAaqTM&width=640&height=480',1729,0,'external',146,NULL,NULL,NULL,NULL,NULL,NULL),(11183,'https://www.drfields.com/contact/',1729,29,'internal',146,5,NULL,NULL,NULL,NULL,NULL),(11184,'https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg',1729,2738,'image-in',146,NULL,360,480,80869,NULL,NULL),(11204,'https://www.drfields.com/Testimonials/Video-Testimonials',2833,1340,'internal',204,27,NULL,NULL,NULL,NULL,NULL),(11205,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',2833,1700,'internal',204,88,NULL,NULL,NULL,NULL,NULL),(11206,'https://www.drfields.com/Testimonials/Knee-Testimonials',2833,1702,'internal',204,85,NULL,NULL,NULL,NULL,NULL),(11207,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',2833,1704,'internal',204,147,NULL,NULL,NULL,NULL,NULL),(11208,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',2833,1706,'internal',204,94,NULL,NULL,NULL,NULL,NULL),(11209,'https://www.drfields.com/Testimonials/Hip-Testimonials',2833,0,'internal',204,NULL,NULL,NULL,NULL,NULL,NULL),(11210,'https://www.drfields.com/Testimonials/Neck-Testimonials',2833,1711,'internal',204,18,NULL,NULL,NULL,NULL,NULL),(11211,'https://www.drfields.com/Testimonials/Ankle-Testimonials',2833,1713,'internal',204,46,NULL,NULL,NULL,NULL,NULL),(11212,'https://www.drfields.com/Testimonials/Elbow-Testimonials',2833,1715,'internal',204,144,NULL,NULL,NULL,NULL,NULL),(11213,'https://www.drfields.com/Testimonials/Foot-Testimonials',2833,1717,'internal',204,145,NULL,NULL,NULL,NULL,NULL),(11214,'https://www.drfields.com/Testimonials/Wrist-Testimonials',2833,1719,'internal',204,152,NULL,NULL,NULL,NULL,NULL),(11215,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',2833,1721,'internal',204,30,NULL,NULL,NULL,NULL,NULL),(11216,'https://www.drfields.com/Testimonials/Spanish-Testimonials',2833,1723,'internal',204,142,NULL,NULL,NULL,NULL,NULL),(11217,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',2833,1725,'internal',204,151,NULL,NULL,NULL,NULL,NULL),(11218,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',2833,1727,'internal',204,149,NULL,NULL,NULL,NULL,NULL),(11219,'https://www.drfields.com/Testimonials/Headache-Testimonials',2833,1729,'internal',204,146,NULL,NULL,NULL,NULL,NULL),(11220,'https://www.drfields.com/testimonials/written-testimonials/',2833,1012,'internal',204,34,NULL,NULL,NULL,NULL,NULL),(11221,'https://www.youtube.com/watch?v=lUmMXcDmnb0&width=640&height=480',2833,0,'external',204,NULL,NULL,NULL,NULL,NULL,NULL),(11222,'https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg',2833,2725,'image-in',204,NULL,360,480,60991,NULL,NULL),(11223,'https://www.drfields.com/Testimonials/Video-Testimonials',1717,1340,'internal',145,27,NULL,NULL,NULL,NULL,NULL),(11224,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',1717,1700,'internal',145,88,NULL,NULL,NULL,NULL,NULL),(11225,'https://www.drfields.com/Testimonials/Knee-Testimonials',1717,1702,'internal',145,85,NULL,NULL,NULL,NULL,NULL),(11226,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',1717,1704,'internal',145,147,NULL,NULL,NULL,NULL,NULL),(11227,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',1717,1706,'internal',145,94,NULL,NULL,NULL,NULL,NULL),(11228,'https://www.drfields.com/Testimonials/Hip-Testimonials',1717,0,'internal',145,NULL,NULL,NULL,NULL,NULL,NULL),(11229,'https://www.drfields.com/Testimonials/Neck-Testimonials',1717,1711,'internal',145,18,NULL,NULL,NULL,NULL,NULL),(11230,'https://www.drfields.com/Testimonials/Ankle-Testimonials',1717,1713,'internal',145,46,NULL,NULL,NULL,NULL,NULL),(11231,'https://www.drfields.com/Testimonials/Elbow-Testimonials',1717,1715,'internal',145,144,NULL,NULL,NULL,NULL,NULL),(11232,'https://www.drfields.com/Testimonials/Foot-Testimonials',1717,1717,'internal',145,145,NULL,NULL,NULL,NULL,NULL),(11233,'https://www.drfields.com/Testimonials/Wrist-Testimonials',1717,1719,'internal',145,152,NULL,NULL,NULL,NULL,NULL),(11234,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',1717,1721,'internal',145,30,NULL,NULL,NULL,NULL,NULL),(11235,'https://www.drfields.com/Testimonials/Spanish-Testimonials',1717,1723,'internal',145,142,NULL,NULL,NULL,NULL,NULL),(11236,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',1717,1725,'internal',145,151,NULL,NULL,NULL,NULL,NULL),(11237,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',1717,1727,'internal',145,149,NULL,NULL,NULL,NULL,NULL),(11238,'https://www.drfields.com/Testimonials/Headache-Testimonials',1717,1729,'internal',145,146,NULL,NULL,NULL,NULL,NULL),(11239,'https://www.drfields.com/testimonials/german-testimonials/',1717,2833,'internal',145,204,NULL,NULL,NULL,NULL,NULL),(11240,'https://www.drfields.com/testimonials/written-testimonials/',1717,1012,'internal',145,34,NULL,NULL,NULL,NULL,NULL),(11241,'https://www.youtube.com/watch?v=hLgJ4IV96Mk&width=640&height=480',1717,0,'external',145,NULL,NULL,NULL,NULL,NULL,NULL),(11242,'https://www.youtube.com/watch?v=0jafVf5mDIk&width=640&height=480',1717,0,'external',145,NULL,NULL,NULL,NULL,NULL,NULL),(11243,'https://www.drfields.com/contact/',1717,29,'internal',145,5,NULL,NULL,NULL,NULL,NULL),(11244,'https://www.drfields.com/wp-content/uploads/2020/04/Jim-Mcdermat-PRP-Foot.jpg',1717,3627,'image-in',145,NULL,360,480,28401,NULL,NULL),(11245,'https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg',1717,1293,'image-in',145,NULL,360,480,8779,NULL,NULL),(11246,'https://www.drfields.com/Testimonials/Video-Testimonials',1719,1340,'internal',152,27,NULL,NULL,NULL,NULL,NULL),(11247,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',1719,1700,'internal',152,88,NULL,NULL,NULL,NULL,NULL),(11248,'https://www.drfields.com/Testimonials/Knee-Testimonials',1719,1702,'internal',152,85,NULL,NULL,NULL,NULL,NULL),(11249,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',1719,1704,'internal',152,147,NULL,NULL,NULL,NULL,NULL),(11250,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',1719,1706,'internal',152,94,NULL,NULL,NULL,NULL,NULL),(11251,'https://www.drfields.com/Testimonials/Hip-Testimonials',1719,0,'internal',152,NULL,NULL,NULL,NULL,NULL,NULL),(11252,'https://www.drfields.com/Testimonials/Neck-Testimonials',1719,1711,'internal',152,18,NULL,NULL,NULL,NULL,NULL),(11253,'https://www.drfields.com/Testimonials/Ankle-Testimonials',1719,1713,'internal',152,46,NULL,NULL,NULL,NULL,NULL),(11254,'https://www.drfields.com/Testimonials/Elbow-Testimonials',1719,1715,'internal',152,144,NULL,NULL,NULL,NULL,NULL),(11255,'https://www.drfields.com/Testimonials/Foot-Testimonials',1719,1717,'internal',152,145,NULL,NULL,NULL,NULL,NULL),(11256,'https://www.drfields.com/Testimonials/Wrist-Testimonials',1719,1719,'internal',152,152,NULL,NULL,NULL,NULL,NULL),(11257,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',1719,1721,'internal',152,30,NULL,NULL,NULL,NULL,NULL),(11258,'https://www.drfields.com/Testimonials/Spanish-Testimonials',1719,1723,'internal',152,142,NULL,NULL,NULL,NULL,NULL),(11259,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',1719,1725,'internal',152,151,NULL,NULL,NULL,NULL,NULL),(11260,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',1719,1727,'internal',152,149,NULL,NULL,NULL,NULL,NULL),(11261,'https://www.drfields.com/Testimonials/Headache-Testimonials',1719,1729,'internal',152,146,NULL,NULL,NULL,NULL,NULL),(11262,'https://www.drfields.com/testimonials/german-testimonials/',1719,2833,'internal',152,204,NULL,NULL,NULL,NULL,NULL),(11263,'https://www.drfields.com/testimonials/written-testimonials/',1719,1012,'internal',152,34,NULL,NULL,NULL,NULL,NULL),(11264,'https://www.youtube.com/watch?v=Di5g-tBclIY&width=640&height=480',1719,0,'external',152,NULL,NULL,NULL,NULL,NULL,NULL),(11265,'https://www.youtube.com/watch?v=ThzUVq3rx2Y&width=640&height=480',1719,0,'external',152,NULL,NULL,NULL,NULL,NULL,NULL),(11266,'https://www.drfields.com/contact/',1719,29,'internal',152,5,NULL,NULL,NULL,NULL,NULL),(11267,'https://www.drfields.com/wp-content/uploads/2019/06/Athena-Wrist.jpg',1719,1868,'image-in',152,NULL,360,480,8772,NULL,NULL),(11268,'https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg',1719,1299,'image-in',152,NULL,360,480,19956,NULL,NULL),(11269,'https://www.drfields.com/Testimonials/Video-Testimonials',1713,1340,'internal',46,27,NULL,NULL,NULL,NULL,NULL),(11270,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',1713,1700,'internal',46,88,NULL,NULL,NULL,NULL,NULL),(11271,'https://www.drfields.com/Testimonials/Knee-Testimonials',1713,1702,'internal',46,85,NULL,NULL,NULL,NULL,NULL),(11272,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',1713,1704,'internal',46,147,NULL,NULL,NULL,NULL,NULL),(11273,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',1713,1706,'internal',46,94,NULL,NULL,NULL,NULL,NULL),(11274,'https://www.drfields.com/Testimonials/Hip-Testimonials',1713,0,'internal',46,NULL,NULL,NULL,NULL,NULL,NULL),(11275,'https://www.drfields.com/Testimonials/Neck-Testimonials',1713,1711,'internal',46,18,NULL,NULL,NULL,NULL,NULL),(11276,'https://www.drfields.com/Testimonials/Ankle-Testimonials',1713,1713,'internal',46,46,NULL,NULL,NULL,NULL,NULL),(11277,'https://www.drfields.com/Testimonials/Elbow-Testimonials',1713,1715,'internal',46,144,NULL,NULL,NULL,NULL,NULL),(11278,'https://www.drfields.com/Testimonials/Foot-Testimonials',1713,1717,'internal',46,145,NULL,NULL,NULL,NULL,NULL),(11279,'https://www.drfields.com/Testimonials/Wrist-Testimonials',1713,1719,'internal',46,152,NULL,NULL,NULL,NULL,NULL),(11280,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',1713,1721,'internal',46,30,NULL,NULL,NULL,NULL,NULL),(11281,'https://www.drfields.com/Testimonials/Spanish-Testimonials',1713,1723,'internal',46,142,NULL,NULL,NULL,NULL,NULL),(11282,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',1713,1725,'internal',46,151,NULL,NULL,NULL,NULL,NULL),(11283,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',1713,1727,'internal',46,149,NULL,NULL,NULL,NULL,NULL),(11284,'https://www.drfields.com/Testimonials/Headache-Testimonials',1713,1729,'internal',46,146,NULL,NULL,NULL,NULL,NULL),(11285,'https://www.drfields.com/testimonials/german-testimonials/',1713,2833,'internal',46,204,NULL,NULL,NULL,NULL,NULL),(11286,'https://www.drfields.com/testimonials/written-testimonials/',1713,1012,'internal',46,34,NULL,NULL,NULL,NULL,NULL),(11287,'https://www.youtube.com/watch?v=rCf1JO5aNNA&width=640&height=480',1713,0,'external',46,NULL,NULL,NULL,NULL,NULL,NULL),(11288,'https://www.youtube.com/watch?v=dRU13CJixJQ&width=640&height=480',1713,0,'external',46,NULL,NULL,NULL,NULL,NULL,NULL),(11289,'https://www.youtube.com/watch?v=MYI_vSJe378&width=640&height=480',1713,0,'external',46,NULL,NULL,NULL,NULL,NULL,NULL),(11290,'https://www.drfields.com/contact/',1713,29,'internal',46,5,NULL,NULL,NULL,NULL,NULL),(11291,'https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg',1713,1866,'image-in',46,NULL,360,480,8707,NULL,NULL),(11292,'https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg',1713,1924,'image-in',46,NULL,360,480,11920,NULL,NULL),(11293,'https://www.drfields.com/wp-content/uploads/2019/06/Jeremy-Ankle.jpg',1713,1907,'image-in',46,NULL,360,480,8132,NULL,NULL),(11294,'https://www.drfields.com/Testimonials/Video-Testimonials',1706,1340,'internal',94,27,NULL,NULL,NULL,NULL,NULL),(11295,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',1706,1700,'internal',94,88,NULL,NULL,NULL,NULL,NULL),(11296,'https://www.drfields.com/Testimonials/Knee-Testimonials',1706,1702,'internal',94,85,NULL,NULL,NULL,NULL,NULL),(11297,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',1706,1704,'internal',94,147,NULL,NULL,NULL,NULL,NULL),(11298,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',1706,1706,'internal',94,94,NULL,NULL,NULL,NULL,NULL),(11299,'https://www.drfields.com/Testimonials/Hip-Testimonials',1706,0,'internal',94,NULL,NULL,NULL,NULL,NULL,NULL),(11300,'https://www.drfields.com/Testimonials/Neck-Testimonials',1706,1711,'internal',94,18,NULL,NULL,NULL,NULL,NULL),(11301,'https://www.drfields.com/Testimonials/Ankle-Testimonials',1706,1713,'internal',94,46,NULL,NULL,NULL,NULL,NULL),(11302,'https://www.drfields.com/Testimonials/Elbow-Testimonials',1706,1715,'internal',94,144,NULL,NULL,NULL,NULL,NULL),(11303,'https://www.drfields.com/Testimonials/Foot-Testimonials',1706,1717,'internal',94,145,NULL,NULL,NULL,NULL,NULL),(11304,'https://www.drfields.com/Testimonials/Wrist-Testimonials',1706,1719,'internal',94,152,NULL,NULL,NULL,NULL,NULL),(11305,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',1706,1721,'internal',94,30,NULL,NULL,NULL,NULL,NULL),(11306,'https://www.drfields.com/Testimonials/Spanish-Testimonials',1706,1723,'internal',94,142,NULL,NULL,NULL,NULL,NULL),(11307,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',1706,1725,'internal',94,151,NULL,NULL,NULL,NULL,NULL),(11308,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',1706,1727,'internal',94,149,NULL,NULL,NULL,NULL,NULL),(11309,'https://www.drfields.com/Testimonials/Headache-Testimonials',1706,1729,'internal',94,146,NULL,NULL,NULL,NULL,NULL),(11310,'https://www.drfields.com/testimonials/german-testimonials/',1706,2833,'internal',94,204,NULL,NULL,NULL,NULL,NULL),(11311,'https://www.drfields.com/testimonials/written-testimonials/',1706,1012,'internal',94,34,NULL,NULL,NULL,NULL,NULL),(11312,'https://www.youtube.com/watch?v=rCf1JO5aNNA&width=640&height=480',1706,0,'external',94,NULL,NULL,NULL,NULL,NULL,NULL),(11313,'https://www.youtube.com/watch?v=AioI5BZz3UE&width=640&height=480',1706,0,'external',94,NULL,NULL,NULL,NULL,NULL,NULL),(11314,'https://www.youtube.com/watch?v=lbdZS9nI4P0&width=640&height=480',1706,0,'external',94,NULL,NULL,NULL,NULL,NULL,NULL),(11315,'https://www.youtube.com/watch?v=k4qgeZ5hEsk&width=640&height=480',1706,0,'external',94,NULL,NULL,NULL,NULL,NULL,NULL),(11316,'https://www.youtube.com/watch?v=VkDlCmTq6dE&width=640&height=480',1706,0,'external',94,NULL,NULL,NULL,NULL,NULL,NULL),(11317,'https://www.youtube.com/watch?v=pkxNgsAzzq4&width=640&height=480',1706,0,'external',94,NULL,NULL,NULL,NULL,NULL,NULL),(11318,'https://www.youtube.com/watch?v=5rBHAXq3PLM&width=640&height=480',1706,0,'external',94,NULL,NULL,NULL,NULL,NULL,NULL),(11319,'https://www.youtube.com/watch?v=4oBchrO2tug&width=640&height=480',1706,0,'external',94,NULL,NULL,NULL,NULL,NULL,NULL),(11320,'https://www.youtube.com/watch?v=EKGWkEAaqTM&width=640&height=480',1706,0,'external',94,NULL,NULL,NULL,NULL,NULL,NULL),(11321,'https://www.youtube.com/watch?v=gaioPXwk4pc&width=640&height=480',1706,0,'external',94,NULL,NULL,NULL,NULL,NULL,NULL),(11322,'https://www.youtube.com/watch?v=nGyhBJFOn24&width=640&height=480',1706,0,'external',94,NULL,NULL,NULL,NULL,NULL,NULL),(11323,'https://www.youtube.com/watch?v=IrOa6fvRip4&width=640&height=480',1706,0,'external',94,NULL,NULL,NULL,NULL,NULL,NULL),(11324,'https://www.youtube.com/watch?v=xE-RZymaOmY&width=640&height=480',1706,0,'external',94,NULL,NULL,NULL,NULL,NULL,NULL),(11325,'https://www.drfields.com/contact/',1706,29,'internal',94,5,NULL,NULL,NULL,NULL,NULL),(11326,'https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg',1706,1866,'image-in',94,NULL,360,480,8707,NULL,NULL),(11327,'https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg',1706,1893,'image-in',94,NULL,360,480,11298,NULL,NULL),(11328,'https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Shoulder.jpg',1706,1906,'image-in',94,NULL,360,480,10893,NULL,NULL),(11329,'https://www.drfields.com/wp-content/uploads/2019/06/Dan-Shoulder.jpg',1706,1901,'image-in',94,NULL,360,480,8667,NULL,NULL),(11330,'https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg',1706,1262,'image-in',94,NULL,360,480,10805,NULL,NULL),(11331,'https://www.drfields.com/wp-content/uploads/2019/06/Benjamin-Shoulder.jpg',1706,1909,'image-in',94,NULL,360,480,9363,NULL,NULL),(11332,'https://www.drfields.com/wp-content/uploads/2019/06/Ryan-Shoulder.jpg',1706,1914,'image-in',94,NULL,360,480,10103,NULL,NULL),(11333,'https://www.drfields.com/wp-content/uploads/2019/06/Cheryl-Shoulder.jpg',1706,1916,'image-in',94,NULL,360,480,12271,NULL,NULL),(11334,'https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg',1706,2738,'image-in',94,NULL,360,480,80869,NULL,NULL),(11335,'https://www.drfields.com/wp-content/uploads/2020/12/Keith-Shoulder-2.jpg',1706,4311,'image-in',94,NULL,360,480,25887,NULL,NULL),(11336,'https://www.drfields.com/wp-content/uploads/2019/06/Elan-Shoulder.jpg',1706,1926,'image-in',94,NULL,360,480,11185,NULL,NULL),(11337,'https://www.drfields.com/wp-content/uploads/2019/06/Jun-Shoulder.jpg',1706,1929,'image-in',94,NULL,360,480,10961,NULL,NULL),(11338,'https://www.drfields.com/wp-content/uploads/2019/06/Bob-Shoulder.jpg',1706,1931,'image-in',94,NULL,360,480,11298,NULL,NULL),(11339,'https://www.drfields.com/Testimonials/Video-Testimonials',1704,1340,'internal',147,27,NULL,NULL,NULL,NULL,NULL),(11340,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',1704,1700,'internal',147,88,NULL,NULL,NULL,NULL,NULL),(11341,'https://www.drfields.com/Testimonials/Knee-Testimonials',1704,1702,'internal',147,85,NULL,NULL,NULL,NULL,NULL),(11342,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',1704,1704,'internal',147,147,NULL,NULL,NULL,NULL,NULL),(11343,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',1704,1706,'internal',147,94,NULL,NULL,NULL,NULL,NULL),(11344,'https://www.drfields.com/Testimonials/Hip-Testimonials',1704,0,'internal',147,NULL,NULL,NULL,NULL,NULL,NULL),(11345,'https://www.drfields.com/Testimonials/Neck-Testimonials',1704,1711,'internal',147,18,NULL,NULL,NULL,NULL,NULL),(11346,'https://www.drfields.com/Testimonials/Ankle-Testimonials',1704,1713,'internal',147,46,NULL,NULL,NULL,NULL,NULL),(11347,'https://www.drfields.com/Testimonials/Elbow-Testimonials',1704,1715,'internal',147,144,NULL,NULL,NULL,NULL,NULL),(11348,'https://www.drfields.com/Testimonials/Foot-Testimonials',1704,1717,'internal',147,145,NULL,NULL,NULL,NULL,NULL),(11349,'https://www.drfields.com/Testimonials/Wrist-Testimonials',1704,1719,'internal',147,152,NULL,NULL,NULL,NULL,NULL),(11350,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',1704,1721,'internal',147,30,NULL,NULL,NULL,NULL,NULL),(11351,'https://www.drfields.com/Testimonials/Spanish-Testimonials',1704,1723,'internal',147,142,NULL,NULL,NULL,NULL,NULL),(11352,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',1704,1725,'internal',147,151,NULL,NULL,NULL,NULL,NULL),(11353,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',1704,1727,'internal',147,149,NULL,NULL,NULL,NULL,NULL),(11354,'https://www.drfields.com/Testimonials/Headache-Testimonials',1704,1729,'internal',147,146,NULL,NULL,NULL,NULL,NULL),(11355,'https://www.drfields.com/testimonials/german-testimonials/',1704,2833,'internal',147,204,NULL,NULL,NULL,NULL,NULL),(11356,'https://www.drfields.com/testimonials/written-testimonials/',1704,1012,'internal',147,34,NULL,NULL,NULL,NULL,NULL),(11357,'https://www.youtube.com/watch?v=nPw5OVgcUlU&width=640&height=480',1704,0,'external',147,NULL,NULL,NULL,NULL,NULL,NULL),(11358,'https://www.youtube.com/watch?v=VLbs4_l5Ky0&width=640&height=480',1704,0,'external',147,NULL,NULL,NULL,NULL,NULL,NULL),(11359,'https://www.youtube.com/watch?v=9pkum_ODeLk&width=640&height=480',1704,0,'external',147,NULL,NULL,NULL,NULL,NULL,NULL),(11360,'https://www.youtube.com/watch?v=fSQ33gk_qSo&width=640&height=480',1704,0,'external',147,NULL,NULL,NULL,NULL,NULL,NULL),(11361,'https://www.youtube.com/watch?v=ErGDFmRC9_0&width=640&height=480',1704,0,'external',147,NULL,NULL,NULL,NULL,NULL,NULL),(11362,'https://www.youtube.com/watch?v=Hp4lUuSalOE&width=640&height=480',1704,0,'external',147,NULL,NULL,NULL,NULL,NULL,NULL),(11363,'https://www.youtube.com/watch?v=FqX0AEE0z24&width=640&height=480',1704,0,'external',147,NULL,NULL,NULL,NULL,NULL,NULL),(11364,'https://www.youtube.com/watch?v=MbclxvLrVec&width=640&height=480',1704,0,'external',147,NULL,NULL,NULL,NULL,NULL,NULL),(11365,'https://www.drfields.com/contact/',1704,29,'internal',147,5,NULL,NULL,NULL,NULL,NULL),(11366,'https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg',1704,1864,'image-in',147,NULL,360,480,6711,NULL,NULL),(11367,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Eric-Chiropractor-Low-Back.jpg',1704,1891,'image-in',147,NULL,360,480,9784,NULL,NULL),(11368,'https://www.drfields.com/wp-content/uploads/2019/06/Gayle-Low-Back.jpg',1704,1895,'image-in',147,NULL,360,480,11236,NULL,NULL),(11369,'https://www.drfields.com/wp-content/uploads/2019/06/Rich-Low-Back.jpg',1704,1908,'image-in',147,NULL,360,480,9920,NULL,NULL),(11370,'https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Low-Back.jpg',1704,1902,'image-in',147,NULL,360,480,14099,NULL,NULL),(11371,'https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg',1704,1262,'image-in',147,NULL,360,480,10805,NULL,NULL),(11372,'https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Low-Back.jpg',1704,1915,'image-in',147,NULL,360,480,9511,NULL,NULL),(11373,'https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg',1704,1927,'image-in',147,NULL,360,480,10291,NULL,NULL),(11563,'https://www.drfields.com/Testimonials/Video-Testimonials',1700,1340,'internal',88,27,NULL,NULL,NULL,NULL,NULL),(11564,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',1700,1700,'internal',88,88,NULL,NULL,NULL,NULL,NULL),(11565,'https://www.drfields.com/Testimonials/Knee-Testimonials',1700,1702,'internal',88,85,NULL,NULL,NULL,NULL,NULL),(11566,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',1700,1704,'internal',88,147,NULL,NULL,NULL,NULL,NULL),(11567,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',1700,1706,'internal',88,94,NULL,NULL,NULL,NULL,NULL),(11568,'https://www.drfields.com/Testimonials/Hip-Testimonials',1700,0,'internal',88,NULL,NULL,NULL,NULL,NULL,NULL),(11569,'https://www.drfields.com/Testimonials/Neck-Testimonials',1700,1711,'internal',88,18,NULL,NULL,NULL,NULL,NULL),(11570,'https://www.drfields.com/Testimonials/Ankle-Testimonials',1700,1713,'internal',88,46,NULL,NULL,NULL,NULL,NULL),(11571,'https://www.drfields.com/Testimonials/Elbow-Testimonials',1700,1715,'internal',88,144,NULL,NULL,NULL,NULL,NULL),(11572,'https://www.drfields.com/Testimonials/Foot-Testimonials',1700,1717,'internal',88,145,NULL,NULL,NULL,NULL,NULL),(11573,'https://www.drfields.com/Testimonials/Wrist-Testimonials',1700,1719,'internal',88,152,NULL,NULL,NULL,NULL,NULL),(11574,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',1700,1721,'internal',88,30,NULL,NULL,NULL,NULL,NULL),(11575,'https://www.drfields.com/Testimonials/Spanish-Testimonials',1700,1723,'internal',88,142,NULL,NULL,NULL,NULL,NULL),(11576,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',1700,1725,'internal',88,151,NULL,NULL,NULL,NULL,NULL),(11577,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',1700,1727,'internal',88,149,NULL,NULL,NULL,NULL,NULL),(11578,'https://www.drfields.com/Testimonials/Headache-Testimonials',1700,1729,'internal',88,146,NULL,NULL,NULL,NULL,NULL),(11579,'https://www.drfields.com/testimonials/german-testimonials/',1700,2833,'internal',88,204,NULL,NULL,NULL,NULL,NULL),(11580,'https://www.drfields.com/testimonials/written-testimonials/',1700,1012,'internal',88,34,NULL,NULL,NULL,NULL,NULL),(11581,'https://www.youtube.com/watch?v=jhN7D30YcYI&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11582,'https://www.youtube.com/watch?v=lUmMXcDmnb0&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11583,'https://www.youtube.com/watch?v=P0R8A3h2iVE&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11584,'https://www.youtube.com/watch?v=lg7LfbQ_2X8&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11585,'https://www.youtube.com/watch?v=yzIzTbV2H-E&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11586,'https://www.youtube.com/watch?v=txf3iJeuS8E&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11587,'https://www.youtube.com/watch?v=jBiDs3CZb60&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11588,'https://www.youtube.com/watch?v=MMQf25t2YVw&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11589,'https://www.drfields.com/contact/',1700,29,'internal',88,5,NULL,NULL,NULL,NULL,NULL),(11590,'https://www.youtube.com/watch?v=r3eZmnX-Krc&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11591,'https://www.youtube.com/watch?v=DzXPaTqr8wo&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11592,'https://www.youtube.com/watch?v=3ch1-0uGaYc&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11593,'https://www.youtube.com/watch?v=quj4K0wbfu4&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11594,'https://www.youtube.com/watch?v=77NOlzjsrbc&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11595,'https://www.youtube.com/watch?v=hhZQOqjwadg&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11596,'https://www.youtube.com/watch?v=NSQ6NTv4E7Q&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11597,'https://www.youtube.com/watch?v=IajO8GpFeng&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11598,'https://www.youtube.com/watch?v=YoXRC87KNuM&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11599,'https://www.youtube.com/watch?v=5DYp-0v0Ptg&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11600,'https://www.youtube.com/watch?v=p37-iQnCvrM&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11601,'https://www.youtube.com/watch?v=KdDTQn5-WMA&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11602,'https://www.youtube.com/watch?v=nPw5OVgcUlU&width=640&height=480',1700,0,'external',88,NULL,NULL,NULL,NULL,NULL,NULL),(11603,'https://www.drfields.com/contact/',1700,29,'internal',88,5,NULL,NULL,NULL,NULL,NULL),(11604,'https://www.drfields.com/wp-content/uploads/2019/09/kelsey.jpg',1700,2729,'image-in',88,NULL,360,480,63010,NULL,NULL),(11605,'https://www.drfields.com/wp-content/uploads/2019/09/stefan.jpg',1700,2725,'image-in',88,NULL,360,480,60991,NULL,NULL),(11606,'https://www.drfields.com/wp-content/uploads/2019/09/raymond.jpg',1700,2724,'image-in',88,NULL,360,480,61864,NULL,NULL),(11607,'https://www.drfields.com/wp-content/uploads/2019/09/tom.jpg',1700,2726,'image-in',88,NULL,360,480,68478,NULL,NULL),(11608,'https://www.drfields.com/wp-content/uploads/2019/09/dave.jpg',1700,2728,'image-in',88,NULL,360,480,57112,NULL,NULL),(11609,'https://www.drfields.com/wp-content/uploads/2020/12/bob-2.jpg',1700,4308,'image-in',88,NULL,360,480,25664,NULL,NULL),(11610,'https://www.drfields.com/wp-content/uploads/2019/06/stem-videotestimonial.jpg',1700,1347,'image-in',88,NULL,360,480,7752,NULL,NULL),(11611,'https://www.drfields.com/wp-content/uploads/2019/06/Priscilla.jpg',1700,1857,'image-in',88,NULL,360,480,5941,NULL,NULL),(11612,'https://www.drfields.com/wp-content/uploads/2019/06/Andy-Stem-Cell-Knee.jpg',1700,1859,'image-in',88,NULL,360,480,6827,NULL,NULL),(11613,'https://www.drfields.com/wp-content/uploads/2019/06/Claire-Stem-Cell-Knee-.jpg',1700,1861,'image-in',88,NULL,360,480,7363,NULL,NULL),(11614,'https://www.drfields.com/wp-content/uploads/2019/06/Glenn-Stem-Cell-Knee.jpg',1700,1865,'image-in',88,NULL,360,480,7670,NULL,NULL),(11615,'https://www.drfields.com/wp-content/uploads/2019/06/Jerry-Stem-Cell-Knee.jpg',1700,1867,'image-in',88,NULL,360,480,7343,NULL,NULL),(11616,'https://www.drfields.com/wp-content/uploads/2019/06/Tom-Stem-Cell-Knee.jpg',1700,1869,'image-in',88,NULL,360,480,9280,NULL,NULL),(11617,'https://www.drfields.com/wp-content/uploads/2019/06/Larry-Stem-Cell-Knee.jpg',1700,1870,'image-in',88,NULL,360,480,10723,NULL,NULL),(11618,'https://www.drfields.com/wp-content/uploads/2019/06/Jeff-Stem-Cell-Shoulder.jpg',1700,1871,'image-in',88,NULL,360,480,9266,NULL,NULL),(11619,'https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg',1700,1634,'image-in',88,NULL,360,480,11345,NULL,NULL),(11620,'https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg',1700,1633,'image-in',88,NULL,360,480,10248,NULL,NULL),(11621,'https://www.drfields.com/wp-content/uploads/2019/06/Mike-stem-cell.jpg',1700,1886,'image-in',88,NULL,360,480,8904,NULL,NULL),(11622,'https://www.drfields.com/wp-content/uploads/2019/06/Tisha-Stem-Cell-Hip.jpg',1700,1887,'image-in',88,NULL,360,480,9527,NULL,NULL),(11623,'https://www.drfields.com/wp-content/uploads/2019/06/Robert-B.-Stem-Cell-Knee.jpg',1700,1888,'image-in',88,NULL,360,480,10634,NULL,NULL),(11624,'https://www.drfields.com/wp-content/uploads/2019/06/Mark-Back.jpg',1700,1864,'image-in',88,NULL,360,480,6711,NULL,NULL),(11641,'https://www.drfields.com/articles/health-news/fat-fighting-foods/',1496,1520,'internal',179,187,NULL,NULL,NULL,NULL,NULL),(11642,'https://www.drfields.com/articles/health-news/fat-fighting-foods/',1496,1520,'internal',179,187,NULL,NULL,NULL,NULL,NULL),(11643,'https://www.drfields.com/contact/',1496,29,'internal',179,5,NULL,NULL,NULL,NULL,NULL),(11644,'https://www.drfields.com/wp-content/uploads/2019/06/Healthy-Breakfast.jpg',1496,1142,'image-in',179,NULL,300,200,41253,NULL,NULL),(11658,'https://www.drfields.com/contact/',1494,29,'internal',237,5,NULL,NULL,NULL,NULL,NULL),(11659,'https://www.drfields.com/wp-content/uploads/2019/06/Quality-Supplements-500x500.png',1494,4356,'image-in',237,NULL,1080,1080,1106348,NULL,NULL),(11662,'https://www.townsendletter.com',1535,0,'external',228,NULL,NULL,NULL,NULL,NULL,NULL),(11663,'https://www.drfields.com/alternative-to-joint-replacement-surgery/',1535,2339,'internal',228,249,NULL,NULL,NULL,NULL,NULL),(11664,'https://www.drfields.com/alternative-to-joint-replacement-surgery/',1535,2339,'internal',228,249,NULL,NULL,NULL,NULL,NULL),(11665,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-1.gif',1535,1235,'image-in',228,NULL,1241,955,143204,NULL,NULL),(11666,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-october-2013-2.gif',1535,1236,'image-in',228,NULL,1251,955,148600,NULL,NULL),(11695,'https://www.drfields.com/contact/',1537,29,'internal',232,5,NULL,NULL,NULL,NULL,NULL),(11696,'https://www.townsendletter.com',1537,0,'external',232,NULL,NULL,NULL,NULL,NULL,NULL),(11697,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/',1537,382,'internal',232,13,NULL,NULL,NULL,NULL,NULL),(11698,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/',1537,382,'internal',232,13,NULL,NULL,NULL,NULL,NULL),(11699,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-1.gif',1537,1240,'image-in',232,NULL,1249,955,143068,NULL,NULL),(11700,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-august-2013-2.gif',1537,1241,'image-in',232,NULL,1241,955,144994,NULL,NULL),(11706,'https://www.drfields.com/contact/',1539,29,'internal',183,5,NULL,NULL,NULL,NULL,NULL),(11707,'tel:310-453-1234',1539,0,'external',183,NULL,NULL,NULL,NULL,NULL,NULL),(11708,'https://www.townsendletter.com',1539,0,'external',183,NULL,NULL,NULL,NULL,NULL,NULL),(11709,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-2-2.gif',1539,4373,'image-in',183,NULL,1249,955,136767,NULL,NULL),(11710,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-july-2013-1.gif',1539,1244,'image-in',183,NULL,1252,955,148232,NULL,NULL),(11711,'https://www.townsendletter.com',1541,0,'external',229,NULL,NULL,NULL,NULL,NULL,NULL),(11712,'https://www.drfields.com/?s=arthritis',1541,0,'internal',229,7,NULL,NULL,NULL,NULL,NULL),(11713,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-june-2013-2.gif',1541,1248,'image-in',229,NULL,1248,955,141524,NULL,NULL),(11714,'https://www.drfields.com/wp-content/uploads/2019/06/townsend-article-june-2013-3.gif',1541,1249,'image-in',229,NULL,1241,955,67208,NULL,NULL),(11717,'http://www.who.int/mediacentre/news/releases/2015/sugar-guideline/en/',1506,0,'external',21,NULL,NULL,NULL,NULL,NULL,NULL),(11718,'https://www.drfields.com/wp-content/uploads/2019/06/Soft-Drinks.jpg',1506,1159,'image-in',21,NULL,261,200,33551,NULL,NULL),(11735,'https://www.smdp.com',1473,0,'external',127,NULL,NULL,NULL,NULL,NULL,NULL),(11736,'https://www.drfields.com/stem-cell-treatment/',1473,0,'internal',127,NULL,NULL,NULL,NULL,NULL,NULL),(11737,'https://www.drfields.com/contact/',1473,29,'internal',127,5,NULL,NULL,NULL,NULL,NULL),(11738,'tel:+310-453-1234',1473,0,'external',127,NULL,NULL,NULL,NULL,NULL,NULL),(11739,'https://www.drfields.com/wp-content/uploads/2019/06/Santa-Monica-Daily-Press-Article-2.jpg',1473,1115,'image-in',127,NULL,2079,650,671535,NULL,NULL),(11741,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell1-small.jpg',1473,1116,'image-in',127,NULL,62,62,3462,NULL,NULL),(11751,'https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/',1504,533,'internal',167,104,NULL,NULL,NULL,NULL,NULL),(11752,'#',1504,0,'internal',167,NULL,NULL,NULL,NULL,NULL,NULL),(11753,'https://www.drfields.com',1504,2109,'internal',167,2,NULL,NULL,NULL,NULL,NULL),(11754,'tel:+310-453-1234',1504,0,'external',167,NULL,NULL,NULL,NULL,NULL,NULL),(11755,'https://www.youtube.com/watch?v=3JIY8OCt1FY&width=640&height=480',1504,0,'external',167,NULL,NULL,NULL,NULL,NULL,NULL),(11756,'https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png',1504,4393,'image-in',167,NULL,1080,1080,744831,NULL,NULL),(11757,'https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg',1504,1102,'image-in',167,NULL,360,480,13665,NULL,NULL),(11778,'https://www.youtube.com/watch?v=I0HcX8Kcy2k&width=640&height=480',1502,0,'external',178,NULL,NULL,NULL,NULL,NULL,NULL),(11779,'https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/',1502,533,'internal',178,104,NULL,NULL,NULL,NULL,NULL),(11780,'#',1502,0,'internal',178,NULL,NULL,NULL,NULL,NULL,NULL),(11781,'https://www.drfields.com',1502,2109,'internal',178,2,NULL,NULL,NULL,NULL,NULL),(11782,'https://www.drfields.com/?s=cortisone',1502,0,'internal',178,7,NULL,NULL,NULL,NULL,NULL),(11783,'tel:+310-453-1234',1502,0,'external',178,NULL,NULL,NULL,NULL,NULL,NULL),(11784,'https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg',1502,1027,'image-in',178,NULL,360,480,11856,NULL,NULL),(11793,'https://www.drfields.com/contact/',1475,29,'internal',84,5,NULL,NULL,NULL,NULL,NULL),(11794,'https://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration',1475,0,'external',84,NULL,NULL,NULL,NULL,NULL,NULL),(11795,'http://thethreetomatoes.com/needles-not-knives-to-treat-sports-injuries-and-degeneration',1475,0,'external',84,NULL,NULL,NULL,NULL,NULL,NULL),(11796,'https://www.drfields.com/contact/',1475,29,'internal',84,5,NULL,NULL,NULL,NULL,NULL),(11797,'https://www.drfields.com/wp-content/uploads/2019/06/Nancy-Deville-with-Dr.-Peter-Fields-500x423.png',1475,4403,'image-in',84,NULL,525,620,443837,NULL,NULL),(11814,'https://www.drfields.com/articles/health-news/vitamin-d-its-not-just-for-bones-anymore/',1492,1514,'internal',239,72,NULL,NULL,NULL,NULL,NULL),(11815,'https://tilda.tcd.ie/publications/reports/pdf/Report_Covid19VitaminD.pdf',1492,0,'external',239,NULL,NULL,NULL,NULL,NULL,NULL),(11816,'https://www.drfields.com/contact/',1492,29,'internal',239,5,NULL,NULL,NULL,NULL,NULL),(11817,'https://www.drfields.com/wp-content/uploads/2019/06/Antioxidants-500x500.png',1492,4410,'image-in',239,NULL,1080,1080,1853038,NULL,NULL),(11905,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&#038;promocode=CLT/',202,0,'external',61,NULL,NULL,NULL,NULL,NULL,NULL),(11906,'https://www.drfields.com/contact/',202,29,'internal',61,5,NULL,NULL,NULL,NULL,NULL),(11907,'https://www.drfields.com/contact/',202,29,'internal',61,5,NULL,NULL,NULL,NULL,NULL),(11908,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png',202,0,'image-ex',61,NULL,NULL,NULL,NULL,NULL,NULL),(11910,'https://www.drfields.com/contact/',2536,29,'internal',135,5,NULL,NULL,NULL,NULL,NULL),(11912,'https://www.drfields.com/contact/',2536,29,'internal',135,5,NULL,NULL,NULL,NULL,NULL),(11913,'https://www.drfields.com/contact/',2536,29,'internal',135,5,NULL,NULL,NULL,NULL,NULL),(11914,'https://www.drfields.com/wp-content/uploads/2019/06/mother-child-reading.jpg',2536,288,'image-in',135,NULL,300,200,32031,NULL,NULL),(11915,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png',2536,0,'image-ex',135,NULL,NULL,NULL,NULL,NULL,NULL),(12013,'https://www.drfields.com/contact/',469,29,'internal',4,5,NULL,NULL,NULL,NULL,NULL),(12015,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',469,0,'internal',4,NULL,NULL,NULL,NULL,NULL,NULL),(12016,'https://www.drfields.com/contact/',469,29,'internal',4,5,NULL,NULL,NULL,NULL,NULL),(12017,'https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/',469,0,'internal',4,NULL,NULL,NULL,NULL,NULL,NULL),(12018,'https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/',469,511,'internal',4,136,NULL,NULL,NULL,NULL,NULL),(12019,'https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/',469,509,'internal',4,17,NULL,NULL,NULL,NULL,NULL),(12020,'https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/',469,0,'internal',4,NULL,NULL,NULL,NULL,NULL,NULL),(12021,'https://www.drfields.com/contact/',469,29,'internal',4,5,NULL,NULL,NULL,NULL,NULL),(12022,'tel:+310-453-1234',469,0,'external',4,NULL,NULL,NULL,NULL,NULL,NULL),(12023,'https://www.drfields.com/contact/',469,29,'internal',4,5,NULL,NULL,NULL,NULL,NULL),(12024,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg',469,1889,'image-in',4,NULL,360,480,12492,NULL,NULL),(12025,'https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg',469,1894,'image-in',4,NULL,360,480,8344,NULL,NULL),(12026,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',469,0,'image-ex',4,NULL,NULL,NULL,NULL,NULL,NULL),(12040,'https://www.drfields.com/contact/',509,29,'internal',17,5,NULL,NULL,NULL,NULL,NULL),(12041,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/',509,395,'internal',17,73,NULL,NULL,NULL,NULL,NULL),(12045,'https://www.drfields.com/contact/',509,29,'internal',17,5,NULL,NULL,NULL,NULL,NULL),(12046,'tel:+310-453-1234',509,0,'external',17,NULL,NULL,NULL,NULL,NULL,NULL),(12047,'https://www.drfields.com/contact/',509,29,'internal',17,5,NULL,NULL,NULL,NULL,NULL),(12048,'https://www.drfields.com/wp-content/uploads/2019/06/Mark-neck-pain.jpg',509,1260,'image-in',17,NULL,360,480,8810,NULL,NULL),(12049,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',509,0,'image-ex',17,NULL,NULL,NULL,NULL,NULL,NULL),(12051,'https://www.drfields.com/contact/',511,29,'internal',136,5,NULL,NULL,NULL,NULL,NULL),(12053,'https://www.drfields.com/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries',511,0,'internal',136,NULL,NULL,NULL,NULL,NULL,NULL),(12054,'https://www.drfields.com/contact/',511,29,'internal',136,5,NULL,NULL,NULL,NULL,NULL),(12055,'https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/',511,469,'internal',136,4,NULL,NULL,NULL,NULL,NULL),(12056,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',511,0,'internal',136,NULL,NULL,NULL,NULL,NULL,NULL),(12057,'/contact/',511,29,'internal',136,5,NULL,NULL,NULL,NULL,NULL),(12058,'tel:+310-453-1234',511,0,'external',136,NULL,NULL,NULL,NULL,NULL,NULL),(12059,'https://www.drfields.com/contact/',511,29,'internal',136,5,NULL,NULL,NULL,NULL,NULL),(12060,'https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg',511,1262,'image-in',136,NULL,360,480,10805,NULL,NULL),(12061,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',511,0,'image-ex',136,NULL,NULL,NULL,NULL,NULL,NULL),(12073,'https://www.youtube.com/watch?v=RJCzx6yt0zY&width=640&height=480',524,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(12074,'https://www.drfields.com/contact/',524,29,'internal',66,5,NULL,NULL,NULL,NULL,NULL),(12075,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-faq/',524,395,'internal',66,73,NULL,NULL,NULL,NULL,NULL),(12076,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&#038;promocode=CLT/',524,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(12077,'https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/',524,469,'internal',66,4,NULL,NULL,NULL,NULL,NULL),(12078,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',524,0,'internal',66,NULL,NULL,NULL,NULL,NULL,NULL),(12079,'https://www.drfields.com/contact/',524,29,'internal',66,5,NULL,NULL,NULL,NULL,NULL),(12080,'tel:+310-453-1234',524,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(12081,'https://www.drfields.com/contact/',524,29,'internal',66,5,NULL,NULL,NULL,NULL,NULL),(12082,'https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg',524,1264,'image-in',66,NULL,360,480,13384,NULL,NULL),(12083,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',524,0,'image-ex',66,NULL,NULL,NULL,NULL,NULL,NULL),(12084,'https://www.drfields.com/contact/',2665,29,'internal',123,5,NULL,NULL,NULL,NULL,NULL),(12085,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&#038;promocode=CLT/',2665,0,'external',123,NULL,NULL,NULL,NULL,NULL,NULL),(12086,'https://www.drfields.com/contact/',2665,29,'internal',123,5,NULL,NULL,NULL,NULL,NULL),(12087,'https://www.drfields.com/contact/',2665,29,'internal',123,5,NULL,NULL,NULL,NULL,NULL),(12088,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',2665,0,'image-ex',123,NULL,NULL,NULL,NULL,NULL,NULL),(12103,'https://www.youtube.com/watch?v=aXwHPE_WEd0&width=640&height=480',528,0,'external',49,NULL,NULL,NULL,NULL,NULL,NULL),(12104,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',528,0,'internal',49,NULL,NULL,NULL,NULL,NULL,NULL),(12105,'https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/',528,373,'internal',49,134,NULL,NULL,NULL,NULL,NULL),(12106,'https://www.drfields.com/contact/',528,29,'internal',49,5,NULL,NULL,NULL,NULL,NULL),(12107,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',528,0,'internal',49,NULL,NULL,NULL,NULL,NULL,NULL),(12108,'tel:+310-453-1234',528,0,'external',49,NULL,NULL,NULL,NULL,NULL,NULL),(12109,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&#038;promocode=CLT/',528,0,'external',49,NULL,NULL,NULL,NULL,NULL,NULL),(12110,'https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg',528,1274,'image-in',49,NULL,360,480,9736,NULL,NULL),(12111,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',528,0,'image-ex',49,NULL,NULL,NULL,NULL,NULL,NULL),(12185,'https://www.youtube.com/watch?v=0jafVf5mDIk&width=640&height=480',595,0,'external',126,NULL,NULL,NULL,NULL,NULL,NULL),(12186,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',595,0,'internal',126,NULL,NULL,NULL,NULL,NULL,NULL),(12187,'https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/',595,373,'internal',126,134,NULL,NULL,NULL,NULL,NULL),(12188,'tel:+310-453-1234',595,0,'external',126,NULL,NULL,NULL,NULL,NULL,NULL),(12189,'https://www.drfields.com/contact/',595,29,'internal',126,5,NULL,NULL,NULL,NULL,NULL),(12190,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',595,0,'internal',126,NULL,NULL,NULL,NULL,NULL,NULL),(12191,'https://www.drfields.com/regenerative-techniques/prp-treatment/',595,0,'internal',126,NULL,NULL,NULL,NULL,NULL,NULL),(12192,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',595,431,'internal',126,11,NULL,NULL,NULL,NULL,NULL),(12193,'tel:+310-453-1234',595,0,'external',126,NULL,NULL,NULL,NULL,NULL,NULL),(12194,'https://www.drfields.com/Testimonials/Foot-Testimonials/',595,1717,'internal',126,145,NULL,NULL,NULL,NULL,NULL),(12195,'https://www.drfields.com/Testimonials/Ankle-Testimonials/',595,1713,'internal',126,46,NULL,NULL,NULL,NULL,NULL),(12196,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&#038;promocode=CLT/',595,0,'external',126,NULL,NULL,NULL,NULL,NULL,NULL),(12197,'https://www.drfields.com/wp-content/uploads/2019/06/Foot-Injury-Treatment-Joel.jpg',595,1293,'image-in',126,NULL,360,480,8779,NULL,NULL),(12198,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',595,0,'image-ex',126,NULL,NULL,NULL,NULL,NULL,NULL),(12359,'https://www.youtube.com/watch?v=hA1FVmxWixE&width=640&height=480',414,0,'external',12,NULL,NULL,NULL,NULL,NULL,NULL),(12360,'https://www.youtube.com/watch?v=hmq3WQRNSlk&width=640&height=480',414,0,'external',12,NULL,NULL,NULL,NULL,NULL,NULL),(12361,'https://www.youtube.com/watch?v=rCf1JO5aNNA&width=640&height=480',414,0,'external',12,NULL,NULL,NULL,NULL,NULL,NULL),(12362,'https://www.drfields.com/contact/',414,29,'internal',12,5,NULL,NULL,NULL,NULL,NULL),(12363,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',414,0,'internal',12,NULL,NULL,NULL,NULL,NULL,NULL),(12364,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',414,0,'internal',12,NULL,NULL,NULL,NULL,NULL,NULL),(12365,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&#038;promocode=CLT/',414,0,'external',12,NULL,NULL,NULL,NULL,NULL,NULL),(12366,'https://www.drfields.com/contact/',414,29,'internal',12,5,NULL,NULL,NULL,NULL,NULL),(12367,'http://abcnews.go.com/Health/PainNews/story?id=6895441&amp;page=1',414,0,'external',12,NULL,NULL,NULL,NULL,NULL,NULL),(12368,'http://www.cbsnews.com/stories/2007/06/05/eveningnews/main2889125.shtml',414,0,'external',12,NULL,NULL,NULL,NULL,NULL,NULL),(12369,'http://www.nydailynews.com/sports/plasma-helps-hines-ward-super-article-1.392694',414,0,'external',12,NULL,NULL,NULL,NULL,NULL,NULL),(12370,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg',414,1889,'image-in',12,NULL,360,480,12492,NULL,NULL),(12371,'https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg',414,1890,'image-in',12,NULL,360,480,8843,NULL,NULL),(12372,'https://www.drfields.com/wp-content/uploads/2019/06/Tony-PRP-Shoulder-Ankle.jpg',414,1866,'image-in',12,NULL,360,480,8707,NULL,NULL),(12373,'https://www.drfields.com/wp-content/uploads/2019/06/running.jpg',414,642,'image-in',12,NULL,265,200,22079,NULL,NULL),(12374,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',414,0,'image-ex',12,NULL,NULL,NULL,NULL,NULL,NULL),(12375,'https://www.drfields.com/wp-content/uploads/2019/06/fully_body_joints.jpg',414,712,'image-in',12,NULL,376,200,21818,NULL,NULL),(12376,'https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg',414,644,'image-in',12,NULL,298,200,20188,NULL,NULL),(12413,'https://www.drfields.com/conditions/sports-injuries/knee-injury-treatment/',382,533,'internal',13,104,NULL,NULL,NULL,NULL,NULL),(12414,'#',382,0,'internal',13,NULL,NULL,NULL,NULL,NULL,NULL),(12415,'https://www.drfields.com/contact/',382,29,'internal',13,5,NULL,NULL,NULL,NULL,NULL),(12416,'https://www.drfields.com/Articles/Prolo-News/Cortisone-Is-it-Really-Good-for-You',382,1459,'internal',13,131,NULL,NULL,NULL,NULL,NULL),(12417,'https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/',382,632,'internal',13,115,NULL,NULL,NULL,NULL,NULL),(12418,'https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/',382,509,'internal',13,17,NULL,NULL,NULL,NULL,NULL),(12419,'https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/',382,511,'internal',13,136,NULL,NULL,NULL,NULL,NULL),(12420,'https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/',382,0,'internal',13,NULL,NULL,NULL,NULL,NULL,NULL),(12423,'/regenerative-techniques/prolotherapy-videos/',382,1614,'internal',13,69,NULL,NULL,NULL,NULL,NULL),(12424,'tel:+310-453-1234',382,0,'external',13,NULL,NULL,NULL,NULL,NULL,NULL),(12425,'/contact/',382,29,'internal',13,5,NULL,NULL,NULL,NULL,NULL),(12426,'https://www.drfields.com/contact/',382,29,'internal',13,5,NULL,NULL,NULL,NULL,NULL),(12427,'https://www.drfields.com/wp-content/uploads/2019/06/running.jpg',382,642,'image-in',13,NULL,265,200,22079,NULL,NULL),(12428,'https://www.drfields.com/wp-content/uploads/2019/06/couple1.jpg',382,644,'image-in',13,NULL,298,200,20188,NULL,NULL),(12429,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',382,0,'image-ex',13,NULL,NULL,NULL,NULL,NULL,NULL),(12430,'https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg',382,1027,'image-in',13,NULL,360,480,11856,NULL,NULL),(12443,'https://www.drfields.com/contact/',408,29,'internal',71,5,NULL,NULL,NULL,NULL,NULL),(12444,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&#038;promocode=CLT/',408,0,'external',71,NULL,NULL,NULL,NULL,NULL,NULL),(12445,'https://www.drfields.com/wp-content/uploads/2019/06/prolotherapy-3.jpg',408,698,'image-in',71,NULL,306,200,31024,NULL,NULL),(12446,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',408,0,'image-ex',71,NULL,NULL,NULL,NULL,NULL,NULL),(12455,'/Articles/Health-News/Vitamin-D-Its-Not-Just-For-Bones-Anymore',1459,1514,'internal',131,72,NULL,NULL,NULL,NULL,NULL),(12456,'/Prolotherapy/Dextrose-Prolotherapy',1459,0,'internal',131,NULL,NULL,NULL,NULL,NULL,NULL),(12457,'/Prolotherapy/Dextrose-Prolotherapy',1459,0,'internal',131,NULL,NULL,NULL,NULL,NULL,NULL),(12458,'https://www.drfields.com/contact/',1459,29,'internal',131,5,NULL,NULL,NULL,NULL,NULL),(12459,'https://www.drfields.com/wp-content/uploads/2019/06/older-man-pain.jpg',1459,1084,'image-in',131,NULL,300,200,40241,NULL,NULL),(12473,'https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/',1414,3484,'internal',129,121,NULL,NULL,NULL,NULL,NULL),(12474,'https://www.drfields.com/testimonials/video-testimonials/',1414,1340,'internal',129,27,NULL,NULL,NULL,NULL,NULL),(12475,'https://www.drfields.com/wp-content/uploads/2019/06/Exercising-at-home-1-copy-400x500.png',1414,4473,'image-in',129,NULL,1350,1080,1204614,NULL,NULL),(12867,'https://www.drfields.com/contact/',1682,29,'internal',182,5,NULL,NULL,NULL,NULL,NULL),(12868,'tel:+310-453-1234',1682,0,'external',182,NULL,NULL,NULL,NULL,NULL,NULL),(12869,'tel:+310-453-1234',1682,0,'external',182,NULL,NULL,NULL,NULL,NULL,NULL),(12870,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg',1682,1685,'image-in',182,NULL,752,474,51591,NULL,NULL),(12886,'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/',2014,0,'external',201,NULL,NULL,NULL,NULL,NULL,NULL),(12887,'https://www.ncbi.nlm.nih.gov/pubmed/?term=Hung%20CY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816',2014,0,'external',201,NULL,NULL,NULL,NULL,NULL,NULL),(12888,'https://www.ncbi.nlm.nih.gov/pubmed/?term=Hsiao%20MY%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816',2014,0,'external',201,NULL,NULL,NULL,NULL,NULL,NULL),(12889,'https://www.ncbi.nlm.nih.gov/pubmed/?term=Chang%20KV%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816',2014,0,'external',201,NULL,NULL,NULL,NULL,NULL,NULL),(12890,'https://www.ncbi.nlm.nih.gov/pubmed/?term=Han%20DS%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816',2014,0,'external',201,NULL,NULL,NULL,NULL,NULL,NULL),(12891,'https://www.ncbi.nlm.nih.gov/pubmed/?term=Wang%20TG%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=27799816',2014,0,'external',201,NULL,NULL,NULL,NULL,NULL,NULL),(12892,'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#',2014,0,'external',201,NULL,NULL,NULL,NULL,NULL,NULL),(12893,'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/#',2014,0,'external',201,NULL,NULL,NULL,NULL,NULL,NULL),(12894,'https://www.ncbi.nlm.nih.gov/pmc/about/disclaimer/',2014,0,'external',201,NULL,NULL,NULL,NULL,NULL,NULL),(12895,'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5079700/',2014,0,'external',201,NULL,NULL,NULL,NULL,NULL,NULL),(12896,'https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/',2014,3484,'internal',201,121,NULL,NULL,NULL,NULL,NULL),(12897,'https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/',2014,2347,'internal',201,109,NULL,NULL,NULL,NULL,NULL),(12898,'https://www.drfields.com/articles/magazine-column/townsend-letter-arthritis/',2014,3416,'internal',201,31,NULL,NULL,NULL,NULL,NULL),(12899,'https://www.drfields.com/contact/',2014,29,'internal',201,5,NULL,NULL,NULL,NULL,NULL),(12900,'https://www.drfields.com/wp-content/uploads/2019/06/arthritis-symptoms-500x500.jpg',2014,4139,'image-in',201,NULL,1080,1080,748870,NULL,NULL),(12950,'https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/',1454,3526,'internal',91,87,NULL,NULL,NULL,NULL,NULL),(12951,'https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/',1454,3526,'internal',91,87,NULL,NULL,NULL,NULL,NULL),(12952,'/Prolotherapy/Dextrose-Prolotherapy',1454,0,'internal',91,NULL,NULL,NULL,NULL,NULL,NULL),(12953,'/Contact',1454,29,'internal',91,5,NULL,NULL,NULL,NULL,NULL),(12954,'tel:+310-453-1234',1454,0,'external',91,NULL,NULL,NULL,NULL,NULL,NULL),(12955,'/contact/',1454,29,'internal',91,5,NULL,NULL,NULL,NULL,NULL),(12956,'https://www.annfammed.org/content/18/3/235',1454,0,'external',91,NULL,NULL,NULL,NULL,NULL,NULL),(12957,'https://scholar.google.com/scholar?cluster=11142953714076712894&amp;hl=en&amp;as_sdt=0,31',1454,0,'external',91,NULL,NULL,NULL,NULL,NULL,NULL),(12958,'https://pubmed.ncbi.nlm.nih.gov/32223554/',1454,0,'external',91,NULL,NULL,NULL,NULL,NULL,NULL),(12959,'https://scholar.google.com/scholar?cluster=4570911058763587373&amp;hl=en&amp;as_sdt=0,31',1454,0,'external',91,NULL,NULL,NULL,NULL,NULL,NULL),(12960,'https://pubmed.ncbi.nlm.nih.gov/30688517/',1454,0,'external',91,NULL,NULL,NULL,NULL,NULL,NULL),(12961,'https://scholar.google.com/scholar?cluster=14882716272312898995&amp;hl=en&amp;as_sdt=0,31',1454,0,'external',91,NULL,NULL,NULL,NULL,NULL,NULL),(12962,'https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-1-copy-500x500.png',1454,4513,'image-in',91,NULL,1080,1080,715610,NULL,NULL),(12969,'https://www.drfields.com/articles/prolo-news/',1406,0,'internal',208,NULL,NULL,NULL,NULL,NULL,NULL),(12970,'https://www.drfields.com/wp-content/uploads/2019/06/knee.-avoid-replacement2-1-400x500.png',1406,4520,'image-in',208,NULL,1350,1080,1361225,NULL,NULL),(12973,'https://www.drfields.com/articles/prolo-news/',1412,0,'internal',222,NULL,NULL,NULL,NULL,NULL,NULL),(13024,'/articles/regenerative-orthopedics/',3301,0,'internal',70,124,NULL,NULL,NULL,NULL,NULL),(13025,'https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-1-500x500.png',3301,3311,'image-in',70,NULL,1080,1080,549310,NULL,NULL),(13026,'https://www.drfields.com/wp-content/uploads/2019/11/Cervivcal-Instability-v271119-500x500.png',3301,3310,'image-in',70,NULL,1080,1080,487915,NULL,NULL),(13148,'/Chronic-Pain',1452,0,'internal',154,NULL,NULL,NULL,NULL,NULL,NULL),(13149,'https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/',1452,414,'internal',154,12,NULL,NULL,NULL,NULL,NULL),(13150,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',1452,431,'internal',154,11,NULL,NULL,NULL,NULL,NULL),(13151,'/Contact',1452,29,'internal',154,5,NULL,NULL,NULL,NULL,NULL),(13152,'https://www.drfields.com/wp-content/uploads/2019/06/Avoid-the-hospital-1-500x466.png',1452,4538,'image-in',154,NULL,1004,1077,1421884,NULL,NULL),(13218,'https://www.drfields.com/articles/regenerative-orthopedics/',213,0,'internal',92,124,NULL,NULL,NULL,NULL,NULL),(13219,'https://www.drfields.com/articles/regenerative-orthopedics/',213,0,'internal',92,124,NULL,NULL,NULL,NULL,NULL),(13220,'https://www.drfields.com/regenerative-techniques/los-angeles-prolotherapy/',213,1667,'internal',92,16,NULL,NULL,NULL,NULL,NULL),(13221,'https://www.drfields.com/regenerative-techniques/los-angeles-prp/',213,1669,'internal',92,175,NULL,NULL,NULL,NULL,NULL),(13222,'https://www.drfields.com/contact/',213,29,'internal',92,5,NULL,NULL,NULL,NULL,NULL),(13223,'https://www.drfields.com/wp-content/uploads/2019/06/Why-Choose-OrthoRegen-copy-500x500.png',213,4550,'image-in',92,NULL,1080,1080,987625,NULL,NULL),(13234,'https://www.drfields.com/contact/',1401,29,'internal',86,5,NULL,NULL,NULL,NULL,NULL),(13235,'https://www.drfields.com/wp-content/uploads/2019/06/Runners-Knee-500x500.jpg',1401,4571,'image-in',86,NULL,1080,1080,1064622,NULL,NULL),(13238,'https://ajph.aphapublications.org/doi/abs/10.2105/AJPH.2019.305443',1518,0,'external',199,NULL,NULL,NULL,NULL,NULL,NULL),(13239,'https://www.drfields.com/wp-content/uploads/2019/06/Spinning-class-500x500.png',1518,4578,'image-in',199,NULL,1080,1080,1380168,NULL,NULL),(13251,'https://www.drfields.com/contact/',1399,29,'internal',107,5,NULL,NULL,NULL,NULL,NULL),(13252,'https://www.drfields.com/?s=arthritis',1399,0,'internal',107,7,NULL,NULL,NULL,NULL,NULL),(13253,'https://www.drfields.com/?s=arthritis',1399,0,'internal',107,7,NULL,NULL,NULL,NULL,NULL),(13254,'https://www.drfields.com/wp-content/uploads/2019/06/arthritis-steals-500x500.png',1399,4581,'image-in',107,NULL,1080,1080,1236214,NULL,NULL),(13362,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials/',431,1700,'internal',11,88,NULL,NULL,NULL,NULL,NULL),(13363,'https://www.drfields.com/contact/',431,29,'internal',11,5,NULL,NULL,NULL,NULL,NULL),(13364,'https://www.drfields.com/regenerative-techniques/prp-treatment/',431,0,'internal',11,NULL,NULL,NULL,NULL,NULL,NULL),(13365,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',431,0,'internal',11,NULL,NULL,NULL,NULL,NULL,NULL),(13367,'https://www.drfields.com/contact/',431,29,'internal',11,5,NULL,NULL,NULL,NULL,NULL),(13368,'https://www.drfields.com/regenerative-techniques/prp-treatment/',431,0,'internal',11,NULL,NULL,NULL,NULL,NULL,NULL),(13369,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',431,0,'internal',11,NULL,NULL,NULL,NULL,NULL,NULL),(13370,'https://www.drfields.com/contact/',431,29,'internal',11,5,NULL,NULL,NULL,NULL,NULL),(13371,'tel:+310-453-1234',431,0,'external',11,NULL,NULL,NULL,NULL,NULL,NULL),(13372,'https://www.drfields.com/wp-content/uploads/2019/06/stemcell.jpg',431,1633,'image-in',11,NULL,360,480,10248,NULL,NULL),(13373,'https://www.drfields.com/wp-content/uploads/2019/06/stemcell1.jpg',431,1634,'image-in',11,NULL,360,480,11345,NULL,NULL),(13374,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',431,0,'image-ex',11,NULL,NULL,NULL,NULL,NULL,NULL),(13376,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell2.jpg',431,735,'image-in',11,NULL,267,200,18065,NULL,NULL),(13377,'https://www.drfields.com/contact/',1395,29,'internal',35,5,NULL,NULL,NULL,NULL,NULL),(13378,'https://www.drfields.com/?s=joint+pain',1395,0,'internal',35,7,NULL,NULL,NULL,NULL,NULL),(13379,'https://www.drfields.com/?s=joint+pain',1395,0,'internal',35,7,NULL,NULL,NULL,NULL,NULL),(13380,'https://www.drfields.com/wp-content/uploads/2019/06/joint-pain-400x500.png',1395,4597,'image-in',35,NULL,1351,1080,1494565,NULL,NULL),(13383,'https://www.drfields.com/articles/prolo-news/',1403,0,'internal',211,NULL,NULL,NULL,NULL,NULL,NULL),(13384,'https://www.drfields.com/wp-content/uploads/2019/06/hip-500x500.jpg',1403,4600,'image-in',211,NULL,1080,1080,906798,NULL,NULL),(13386,'https://www.drfields.com/wp-content/uploads/2019/06/failed-back-surgery-500x500.png',1389,4606,'image-in',165,NULL,1080,1080,1064639,NULL,NULL),(13420,'tel:310-453-1234',29,0,'external',5,NULL,NULL,NULL,NULL,NULL,NULL),(13424,'https://www.drfields.com/conditions/sports-injuries/neck-injury-treatment/',1393,536,'internal',194,125,NULL,NULL,NULL,NULL,NULL),(13425,'https://www.drfields.com/articles/regenerative-orthopedics/cervical-instability/',1393,3301,'internal',194,70,NULL,NULL,NULL,NULL,NULL),(13426,'https://www.drfields.com/?s=cervical+instability',1393,0,'internal',194,7,NULL,NULL,NULL,NULL,NULL),(13427,'https://www.drfields.com/wp-content/uploads/2019/06/Cervivcal-Instability-copy-2-500x500.png',1393,4614,'image-in',194,NULL,1080,1080,494360,NULL,NULL),(13438,'https://www.drfields.com/?s=arthritis',1381,0,'internal',192,7,NULL,NULL,NULL,NULL,NULL),(13439,'https://www.drfields.com/wp-content/uploads/2019/06/avoid-replacement-400x500.png',1381,4625,'image-in',192,NULL,1350,1080,881346,NULL,NULL),(13442,'https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/',1379,414,'internal',202,12,NULL,NULL,NULL,NULL,NULL),(13443,'https://www.drfields.com/contact/',1379,29,'internal',202,5,NULL,NULL,NULL,NULL,NULL),(13444,'https://www.drfields.com/wp-content/uploads/2019/06/ACL-400x500.png',1379,4633,'image-in',202,NULL,1351,1080,896289,NULL,NULL),(13631,'https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/',292,3526,'internal',133,87,NULL,NULL,NULL,NULL,NULL),(13632,'',292,0,'internal',133,7,NULL,NULL,NULL,NULL,NULL),(13633,'https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-options-for-arthritis/',292,1416,'internal',133,155,NULL,NULL,NULL,NULL,NULL),(13634,'https://www.drfields.com/contact/',292,29,'internal',133,5,NULL,NULL,NULL,NULL,NULL),(13635,'tel:+310-453-1234',292,0,'external',133,NULL,NULL,NULL,NULL,NULL,NULL),(13636,'https://www.drfields.com/contact/',292,29,'internal',133,5,NULL,NULL,NULL,NULL,NULL),(13637,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg',292,2337,'image-in',133,NULL,752,474,51591,NULL,NULL),(13666,'https://www.drfields.com/conditions/chronic-pain/stop-back-pain/',1376,2760,'internal',196,137,NULL,NULL,NULL,NULL,NULL),(13667,'https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/',1376,3540,'internal',196,37,NULL,NULL,NULL,NULL,NULL),(13668,'https://www.drfields.com/articles/regenerative-orthopedics/treat-sciatica-pain-non-surgically/',1376,3540,'internal',196,37,NULL,NULL,NULL,NULL,NULL),(13669,'https://www.drfields.com/contact/',1376,29,'internal',196,5,NULL,NULL,NULL,NULL,NULL),(13670,'https://www.drfields.com/wp-content/uploads/2019/06/back-stop-the-cycle--500x500.png',1376,4653,'image-in',196,NULL,1080,1080,641401,NULL,NULL),(13691,'https://jamanetwork.com/journals/jamainternalmedicine/article-abstract/2717505',2555,0,'external',80,NULL,NULL,NULL,NULL,NULL,NULL),(13692,'https://scholar.google.com/scholar?cluster=1973126208637694796&amp;hl=en&amp;as_sdt=0,31',2555,0,'external',80,NULL,NULL,NULL,NULL,NULL,NULL),(13693,'/articles/regenerative-orthopedics/',2555,0,'internal',80,124,NULL,NULL,NULL,NULL,NULL),(13694,'https://www.drfields.com/wp-content/uploads/2019/08/sciatical-400x500.png',2555,4089,'image-in',80,NULL,1350,1080,829462,NULL,NULL),(13697,'https://www.drfields.com/wp-content/uploads/2019/06/knee-arthritis-500x500.jpg',1391,4672,'image-in',159,NULL,1080,1080,403507,NULL,NULL),(13714,'https://photos.app.goo.gl/iYK2GiU2Wy4E6XNY2',92,0,'external',90,NULL,NULL,NULL,NULL,NULL,NULL),(13715,'/About/The-Athletic-Doc/Race-Report-9th-Ironman',92,348,'internal',90,8,NULL,NULL,NULL,NULL,NULL),(13716,'/About/The-Athletic-Doc/Race-Report-8th-Ironman',92,306,'internal',90,57,NULL,NULL,NULL,NULL,NULL),(13717,'/About/The-Athletic-Doc/Race-Report-7th-Ironman',92,302,'internal',90,47,NULL,NULL,NULL,NULL,NULL),(13718,'/About/The-Athletic-Doc/Race-Report-6th-Ironman',92,217,'internal',90,54,NULL,NULL,NULL,NULL,NULL),(13719,'/About/The-Athletic-Doc/Race-Report-5th-Ironman',92,184,'internal',90,10,NULL,NULL,NULL,NULL,NULL),(13720,'/About/The-Athletic-Doc/Race-Report-4th-Ironman',92,153,'internal',90,50,NULL,NULL,NULL,NULL,NULL),(13721,'/About/The-Athletic-Doc/Race-Report-3rd-Ironman',92,131,'internal',90,45,NULL,NULL,NULL,NULL,NULL),(13722,'/About/the-athletic-doc/race-report-2nd-ironman/',92,120,'internal',90,62,NULL,NULL,NULL,NULL,NULL),(13723,'/About/the-athletic-doc/race-report-1st-ironman/',92,0,'internal',90,NULL,NULL,NULL,NULL,NULL,NULL),(13724,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg',92,43,'image-in',90,NULL,90,220,13208,NULL,NULL),(13725,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-swim.jpg',92,53,'image-in',90,NULL,213,160,21015,NULL,NULL),(13726,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-bike.jpg',92,56,'image-in',90,NULL,196,160,15391,NULL,NULL),(13727,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-run.jpg',92,60,'image-in',90,NULL,215,160,18537,NULL,NULL),(13728,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg',92,59,'image-in',90,NULL,268,160,21020,NULL,NULL),(13729,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish-2.jpg',92,2047,'image-in',90,NULL,215,160,27270,NULL,NULL),(13778,'https://photos.app.goo.gl/QCF7CgcEG8uOfLBs1',120,0,'external',62,NULL,NULL,NULL,NULL,NULL,NULL),(13779,'/About/The-Athletic-Doc/Race-Report-9th-Ironman',120,348,'internal',62,8,NULL,NULL,NULL,NULL,NULL),(13780,'/About/The-Athletic-Doc/Race-Report-8th-Ironman',120,306,'internal',62,57,NULL,NULL,NULL,NULL,NULL),(13781,'/About/The-Athletic-Doc/Race-Report-7th-Ironman',120,302,'internal',62,47,NULL,NULL,NULL,NULL,NULL),(13782,'/About/The-Athletic-Doc/Race-Report-6th-Ironman',120,217,'internal',62,54,NULL,NULL,NULL,NULL,NULL),(13783,'/About/The-Athletic-Doc/Race-Report-5th-Ironman',120,184,'internal',62,10,NULL,NULL,NULL,NULL,NULL),(13784,'/About/The-Athletic-Doc/Race-Report-4th-Ironman',120,153,'internal',62,50,NULL,NULL,NULL,NULL,NULL),(13785,'/About/The-Athletic-Doc/Race-Report-3rd-Ironman',120,131,'internal',62,45,NULL,NULL,NULL,NULL,NULL),(13786,'/About/the-athletic-doc/race-report-2nd-ironman/',120,0,'internal',62,NULL,NULL,NULL,NULL,NULL,NULL),(13787,'/About/the-athletic-doc/race-report-1st-ironman/',120,0,'internal',62,NULL,NULL,NULL,NULL,NULL,NULL),(13788,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-cozumel-logo.jpg',120,43,'image-in',62,NULL,90,220,13208,NULL,NULL),(13789,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-swim.jpg',120,123,'image-in',62,NULL,213,160,20572,NULL,NULL),(13790,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-bike.jpg',120,125,'image-in',62,NULL,196,160,20571,NULL,NULL),(13791,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-run.jpg',120,127,'image-in',62,NULL,215,160,23082,NULL,NULL),(13792,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg',120,128,'image-in',62,NULL,268,150,28378,NULL,NULL),(13793,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish.jpg',120,2049,'image-in',62,NULL,215,160,22435,NULL,NULL),(14037,'https://www.drfields.com/about/the-athletic-doc/my-second-ironman-competition-took-place-in-cozumel-mexico/',131,120,'internal',45,62,NULL,NULL,NULL,NULL,NULL),(14038,'/About/The-Athletic-Doc/Race-Report-9th-Ironman',131,348,'internal',45,8,NULL,NULL,NULL,NULL,NULL),(14039,'/About/The-Athletic-Doc/Race-Report-9th-Ironman',131,348,'internal',45,8,NULL,NULL,NULL,NULL,NULL),(14040,'/About/The-Athletic-Doc/Race-Report-9th-Ironman',131,348,'internal',45,8,NULL,NULL,NULL,NULL,NULL),(14041,'/About/The-Athletic-Doc/Race-Report-8th-Ironman',131,306,'internal',45,57,NULL,NULL,NULL,NULL,NULL),(14042,'/About/The-Athletic-Doc/Race-Report-7th-Ironman',131,302,'internal',45,47,NULL,NULL,NULL,NULL,NULL),(14043,'/About/The-Athletic-Doc/Race-Report-6th-Ironman',131,217,'internal',45,54,NULL,NULL,NULL,NULL,NULL),(14044,'/About/The-Athletic-Doc/Race-Report-5th-Ironman',131,184,'internal',45,10,NULL,NULL,NULL,NULL,NULL),(14045,'/About/The-Athletic-Doc/Race-Report-4th-Ironman',131,153,'internal',45,50,NULL,NULL,NULL,NULL,NULL),(14046,'/About/The-Athletic-Doc/Race-Report-3rd-Ironman',131,0,'internal',45,NULL,NULL,NULL,NULL,NULL,NULL),(14047,'/about/the-athletic-doc/race-report-2nd-ironman/',131,0,'internal',45,NULL,NULL,NULL,NULL,NULL,NULL),(14048,'/about/the-athletic-doc/race-report-1st-ironman/',131,0,'internal',45,NULL,NULL,NULL,NULL,NULL,NULL),(14049,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-canada-logo.jpg',131,134,'image-in',45,NULL,97,220,11103,NULL,NULL),(14050,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-pre-race.jpg',131,138,'image-in',45,NULL,213,160,19277,NULL,NULL),(14051,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-swim.jpg',131,140,'image-in',45,NULL,213,160,14584,NULL,NULL),(14052,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-bike.jpg',131,142,'image-in',45,NULL,213,160,16140,NULL,NULL),(14053,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-run.jpg',131,143,'image-in',45,NULL,213,160,14537,NULL,NULL),(14054,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish2.jpg',131,144,'image-in',45,NULL,268,160,21749,NULL,NULL),(14055,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2013-finish.jpg',131,2043,'image-in',45,NULL,213,160,20664,NULL,NULL),(14376,'https://goo.gl/photos/BBwqL4H48qpXLAZw6',153,0,'external',50,NULL,NULL,NULL,NULL,NULL,NULL),(14377,'/About/The-Athletic-Doc/Race-Report-9th-Ironman',153,348,'internal',50,8,NULL,NULL,NULL,NULL,NULL),(14378,'/About/The-Athletic-Doc/Race-Report-8th-Ironman',153,306,'internal',50,57,NULL,NULL,NULL,NULL,NULL),(14379,'/About/The-Athletic-Doc/Race-Report-7th-Ironman',153,302,'internal',50,47,NULL,NULL,NULL,NULL,NULL),(14380,'/About/The-Athletic-Doc/Race-Report-6th-Ironman',153,217,'internal',50,54,NULL,NULL,NULL,NULL,NULL),(14381,'/About/The-Athletic-Doc/Race-Report-5th-Ironman',153,184,'internal',50,10,NULL,NULL,NULL,NULL,NULL),(14382,'/About/The-Athletic-Doc/Race-Report-4th-Ironman',153,0,'internal',50,NULL,NULL,NULL,NULL,NULL,NULL),(14383,'/About/The-Athletic-Doc/Race-Report-3rd-Ironman',153,0,'internal',50,NULL,NULL,NULL,NULL,NULL,NULL),(14384,'/about/the-athletic-doc/race-report-2nd-ironman/',153,0,'internal',50,NULL,NULL,NULL,NULL,NULL,NULL),(14385,'/about/the-athletic-doc/race-report-1st-ironman/',153,0,'internal',50,NULL,NULL,NULL,NULL,NULL,NULL),(14386,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-austria-logo.jpg',153,154,'image-in',50,NULL,82,220,10141,NULL,NULL),(14387,'https://www.drfields.com/wp-content/uploads/2019/06/bike-race2014.jpg',153,170,'image-in',50,NULL,512,382,55898,NULL,NULL),(14388,'https://www.drfields.com/wp-content/uploads/2019/06/running-smile.jpg',153,174,'image-in',50,NULL,504,335,18718,NULL,NULL),(14389,'https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large-1.jpg',153,2052,'image-in',50,NULL,547,321,38146,NULL,NULL),(14402,'https://www.youtube.com/watch?v=RJCzx6yt0zY&width=640&height=480',582,0,'external',76,NULL,NULL,NULL,NULL,NULL,NULL),(14403,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',582,0,'internal',76,NULL,NULL,NULL,NULL,NULL,NULL),(14404,'https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/',582,373,'internal',76,134,NULL,NULL,NULL,NULL,NULL),(14405,'http://www.drfields.com/contact/',582,29,'internal',76,5,NULL,NULL,NULL,NULL,NULL),(14406,'https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/',582,0,'internal',76,NULL,NULL,NULL,NULL,NULL,NULL),(14407,'https://www.drfields.com/regenerative-techniques/prp-treatment/',582,0,'internal',76,NULL,NULL,NULL,NULL,NULL,NULL),(14408,'',582,0,'internal',76,7,NULL,NULL,NULL,NULL,NULL),(14409,'tel:+310-453-1234',582,0,'external',76,NULL,NULL,NULL,NULL,NULL,NULL),(14410,'https://www.drfields.com/Testimonials/Elbow-Testimonials/',582,1715,'internal',76,144,NULL,NULL,NULL,NULL,NULL),(14411,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',582,0,'external',76,NULL,NULL,NULL,NULL,NULL,NULL),(14412,'https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg',582,1264,'image-in',76,NULL,360,480,13384,NULL,NULL),(14413,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',582,0,'image-ex',76,NULL,NULL,NULL,NULL,NULL,NULL),(14429,'https://opastonline.com/wp-content/uploads/2019/01/repair-of-articular-cartilage-defects-using-bone-marrow-derived-mesenchymal-stem-cells-in-rabbits-scri-19.pdf',2347,0,'external',109,NULL,NULL,NULL,NULL,NULL,NULL),(14430,'https://www.drfields.com/wp-content/uploads/2021/06/knee-arthritis-500x500.jpg',2347,4729,'image-in',109,NULL,1080,1080,403507,NULL,NULL),(14431,'https://www.drfields.com/wp-content/uploads/2021/06/Stem.Joint_.KW_-500x375.jpeg',2347,4734,'image-in',109,NULL,1312,1749,367117,NULL,NULL),(14462,'https://www.drfields.com/contact/',2760,29,'internal',137,5,NULL,NULL,NULL,NULL,NULL),(14463,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',2760,0,'external',137,NULL,NULL,NULL,NULL,NULL,NULL),(14464,'https://lyfebotanicals.com/health/turmeric-back-pain/',2760,0,'external',137,NULL,NULL,NULL,NULL,NULL,NULL),(14465,'https://www.drfields.com/contact/',2760,29,'internal',137,5,NULL,NULL,NULL,NULL,NULL),(14466,'https://www.drfields.com/wp-content/uploads/2019/09/Back-Pain.-Prolotherapy-500x375.jpeg',2760,4739,'image-in',137,NULL,1312,1749,360006,NULL,NULL),(14467,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',2760,0,'image-ex',137,NULL,NULL,NULL,NULL,NULL,NULL),(14513,'https://www.usatoday.com/story/sports/college/baseball/2021/06/19/george-mason-pitcher-sang-ho-baek-dies-after-tommy-john-surgery/7753020002/',632,0,'external',115,NULL,NULL,NULL,NULL,NULL,NULL),(14514,'https://www.drfields.com/contact/',632,29,'internal',115,5,NULL,NULL,NULL,NULL,NULL),(14515,'https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment',632,533,'internal',115,104,NULL,NULL,NULL,NULL,NULL),(14516,'https://www.drfields.com/Conditions/Sports-Injuries/Knee-Injury-Treatment',632,533,'internal',115,104,NULL,NULL,NULL,NULL,NULL),(14517,'https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/',632,1379,'internal',115,202,NULL,NULL,NULL,NULL,NULL),(14518,'https://www.drfields.com/articles/regenerative-orthopedics/is-surgery-a-good-option-for-meniscus-tears/',632,2503,'internal',115,177,NULL,NULL,NULL,NULL,NULL),(14519,'https://www.drfields.com/Conditions/Chronic-Pain/Chronic-Neck-Pain',632,509,'internal',115,17,NULL,NULL,NULL,NULL,NULL),(14520,'https://www.drfields.com/conditions/chronic-pain/stop-back-pain/',632,2760,'internal',115,137,NULL,NULL,NULL,NULL,NULL),(14521,'https://www.drfields.com/articles/regenerative-orthopedics/iliotibial-band-syndrome/',632,2775,'internal',115,114,NULL,NULL,NULL,NULL,NULL),(14522,'https://www.drfields.com/articles/prolotherapy-research/ankle-foot/',632,2009,'internal',115,38,NULL,NULL,NULL,NULL,NULL),(14523,'https://www.drfields.com/testimonials/hamstring-testimonials/',632,1725,'internal',115,151,NULL,NULL,NULL,NULL,NULL),(14524,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',632,0,'external',115,NULL,NULL,NULL,NULL,NULL,NULL),(14525,'https://www.drfields.com/Testimonials/Knee-Testimonials/',632,1702,'internal',115,85,NULL,NULL,NULL,NULL,NULL),(14526,'https://www.drfields.com/contact/',632,29,'internal',115,5,NULL,NULL,NULL,NULL,NULL),(14527,'https://scholar.google.com/scholar?cluster=6379361293355508471&amp;hl=en&amp;as_sdt=0,31',632,0,'external',115,NULL,NULL,NULL,NULL,NULL,NULL),(14528,'https://www.drfields.com/wp-content/uploads/2019/06/tommy-john-500x500.jpg',632,4748,'image-in',115,NULL,1080,1080,866119,NULL,NULL),(14529,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',632,0,'image-ex',115,NULL,NULL,NULL,NULL,NULL,NULL),(14602,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',207,0,'external',108,NULL,NULL,NULL,NULL,NULL,NULL),(14603,'https://www.drfields.com/contact/',207,29,'internal',108,5,NULL,NULL,NULL,NULL,NULL),(14604,'https://www.drfields.com/wp-content/uploads/2021/01/Prolotherapy-copy-2-500x500.png',207,4393,'image-in',108,NULL,1080,1080,744831,NULL,NULL),(14605,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_tile_v2.png',207,0,'image-ex',108,NULL,NULL,NULL,NULL,NULL,NULL),(14626,'https://www.youtube.com/watch?v=Hp4lUuSalOE&width=640&height=480',567,0,'external',138,NULL,NULL,NULL,NULL,NULL,NULL),(14627,'https://www.drfields.com/contact/',567,29,'internal',138,5,NULL,NULL,NULL,NULL,NULL),(14628,'https://www.drfields.com/relieve-arthritis-pain/',567,1817,'internal',138,190,NULL,NULL,NULL,NULL,NULL),(14629,'https://www.drfields.com/conditions/chronic-pain/stop-back-pain/',567,2760,'internal',138,137,NULL,NULL,NULL,NULL,NULL),(14630,'https://www.drfields.com/articles/regenerative-orthopedics/failed-back-surgery-syndrome/',567,1389,'internal',138,165,NULL,NULL,NULL,NULL,NULL),(14631,'https://www.drfields.com/articles/regenerative-orthopedics/low-back-pain-treatments-and-the-challenges-at-finding-relief/',567,1376,'internal',138,196,NULL,NULL,NULL,NULL,NULL),(14632,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/',567,382,'internal',138,13,NULL,NULL,NULL,NULL,NULL),(14633,'https://www.drfields.com/regenerative-techniques/prp-treatment/',567,0,'internal',138,NULL,NULL,NULL,NULL,NULL,NULL),(14634,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',567,431,'internal',138,11,NULL,NULL,NULL,NULL,NULL),(14635,'tel:+310-453-1234',567,0,'external',138,NULL,NULL,NULL,NULL,NULL,NULL),(14636,'https://www.drfields.com/Testimonials/Low-Back-Testimonials/',567,1704,'internal',138,147,NULL,NULL,NULL,NULL,NULL),(14637,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',567,0,'external',138,NULL,NULL,NULL,NULL,NULL,NULL),(14638,'https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg',567,1262,'image-in',138,NULL,360,480,10805,NULL,NULL),(14639,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',567,0,'image-ex',138,NULL,NULL,NULL,NULL,NULL,NULL),(14700,'http://www.hacketthemwall.org/WELCOME.html',609,0,'external',51,NULL,NULL,NULL,NULL,NULL,NULL),(14701,'https://www.drfields.com/contact/',609,29,'internal',51,5,NULL,NULL,NULL,NULL,NULL),(14702,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032-1.jpg',609,4779,'image-in',51,NULL,191,255,19023,NULL,NULL),(14703,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961-1.jpg',609,4780,'image-in',51,NULL,191,255,13990,NULL,NULL),(14704,'https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-186x500.png',609,4791,'image-in',51,NULL,1234,460,681062,NULL,NULL),(14705,'https://www.drfields.com/wp-content/uploads/2019/06/Guadalajara-Mexico-2006-500x393.png',609,4785,'image-in',51,NULL,614,782,706900,NULL,NULL),(14706,'http://jnnp.bmj.com/content/75/2/319.full',2501,0,'external',197,NULL,NULL,NULL,NULL,NULL,NULL),(14707,'http://jnnp.bmj.com/content/75/2/319.full',2501,0,'external',197,NULL,NULL,NULL,NULL,NULL,NULL),(14708,'/articles/regenerative-orthopedics/',2501,0,'internal',197,124,NULL,NULL,NULL,NULL,NULL),(14709,'https://www.drfields.com/wp-content/uploads/2019/07/headaches-1-500x500.jpg',2501,4099,'image-in',197,NULL,1080,1080,880305,NULL,NULL),(14794,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',1416,431,'internal',155,11,NULL,NULL,NULL,NULL,NULL),(14795,'https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-therapy-at-orthoregen-why-we-are-different/',1416,3526,'internal',155,87,NULL,NULL,NULL,NULL,NULL),(14796,'https://www.drfields.com/articles/prolo-news/',1416,0,'internal',155,NULL,NULL,NULL,NULL,NULL,NULL),(14797,'https://doi.org/10.1002/sctm.18-0183',1416,0,'external',155,NULL,NULL,NULL,NULL,NULL,NULL),(14798,'https://www.drfields.com/wp-content/uploads/2019/06/Knee-Stems-500x375.jpeg',1416,4805,'image-in',155,NULL,1312,1749,393098,NULL,NULL),(14799,'https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png',1416,3742,'image-in',155,NULL,1080,1080,666287,NULL,NULL),(14800,'https://www.youtube.com/watch?v=6wBQp0ZNfy0&width=640&height=480',486,0,'external',83,NULL,NULL,NULL,NULL,NULL,NULL),(14801,'https://www.youtube.com/watch?v=d-0hlfEKGYo&width=640&height=480',486,0,'external',83,NULL,NULL,NULL,NULL,NULL,NULL),(14802,'https://www.drfields.com/contact/',486,29,'internal',83,5,NULL,NULL,NULL,NULL,NULL),(14803,'https://www.drfields.com/conditions/sports-injuries/sports-injuries-treatment-overview/',486,0,'internal',83,NULL,NULL,NULL,NULL,NULL,NULL),(14804,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',486,0,'external',83,NULL,NULL,NULL,NULL,NULL,NULL),(14805,'https://www.drfields.com/conditions/chronic-pain/chronic-pain-overview/',486,469,'internal',83,4,NULL,NULL,NULL,NULL,NULL),(14806,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',486,0,'internal',83,NULL,NULL,NULL,NULL,NULL,NULL),(14807,'https://www.drfields.com/contact/',486,29,'internal',83,5,NULL,NULL,NULL,NULL,NULL),(14808,'https://www.drfields.com/contact/',486,29,'internal',83,5,NULL,NULL,NULL,NULL,NULL),(14809,'https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg',486,1255,'image-in',83,NULL,360,480,12855,NULL,NULL),(14810,'https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg',486,1254,'image-in',83,NULL,360,480,10579,NULL,NULL),(14811,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',486,0,'image-ex',83,NULL,NULL,NULL,NULL,NULL,NULL),(14812,'https://www.drfields.com/wp-content/uploads/2019/06/Knee.-Prolo-500x375.jpeg',486,4809,'image-in',83,NULL,1312,1749,528442,NULL,NULL),(14848,'https://www.youtube.com/watch?v=EKGWkEAaqTM&width=640&height=480',545,0,'external',120,NULL,NULL,NULL,NULL,NULL,NULL),(14849,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',545,0,'internal',120,NULL,NULL,NULL,NULL,NULL,NULL),(14850,'',545,0,'internal',120,7,NULL,NULL,NULL,NULL,NULL),(14851,'https://www.drfields.com/contact/',545,29,'internal',120,5,NULL,NULL,NULL,NULL,NULL),(14852,'https://www.drfields.com/regenerative-techniques/prp-treatment/',545,0,'internal',120,NULL,NULL,NULL,NULL,NULL,NULL),(14853,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',545,431,'internal',120,11,NULL,NULL,NULL,NULL,NULL),(14854,'tel:+310-453-1234',545,0,'external',120,NULL,NULL,NULL,NULL,NULL,NULL),(14855,'https://www.drfields.com/Testimonials/Shoulder-Testimonials/',545,1706,'internal',120,94,NULL,NULL,NULL,NULL,NULL),(14856,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',545,0,'external',120,NULL,NULL,NULL,NULL,NULL,NULL),(14857,'https://www.drfields.com/wp-content/uploads/2019/09/dr-doug.jpg',545,2738,'image-in',120,NULL,360,480,80869,NULL,NULL),(14858,'https://www.drfields.com/wp-content/uploads/2019/06/Slide17-500x375.jpeg',545,4812,'image-in',120,NULL,1312,1749,327056,NULL,NULL),(14859,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',545,0,'image-ex',120,NULL,NULL,NULL,NULL,NULL,NULL),(14882,'/Prolotherapy/Dextrose-Prolotherapy',1450,0,'internal',181,NULL,NULL,NULL,NULL,NULL,NULL),(14883,'/Prolotherapy/Dextrose-Prolotherapy',1450,0,'internal',181,NULL,NULL,NULL,NULL,NULL,NULL),(14884,'/Contact',1450,29,'internal',181,5,NULL,NULL,NULL,NULL,NULL),(14885,'https://www.drfields.com/wp-content/uploads/2019/06/Honduras-2011-2-186x500.png',1450,4818,'image-in',181,NULL,1234,460,681062,NULL,NULL),(14888,'/articles/regenerative-orthopedics/',3540,0,'internal',37,124,NULL,NULL,NULL,NULL,NULL),(14889,'https://www.drfields.com/wp-content/uploads/2020/02/Cortisone-500x375.jpeg',3540,4822,'image-in',37,NULL,1312,1749,397859,NULL,NULL),(14989,'https://www.drfields.com/contact/',395,29,'internal',73,5,NULL,NULL,NULL,NULL,NULL),(14990,'#',395,0,'internal',73,7,NULL,NULL,NULL,NULL,NULL),(14991,'#',395,0,'internal',73,7,NULL,NULL,NULL,NULL,NULL),(14992,'#',395,0,'internal',73,7,NULL,NULL,NULL,NULL,NULL),(14993,'#',395,0,'internal',73,7,NULL,NULL,NULL,NULL,NULL),(14994,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',395,0,'external',73,NULL,NULL,NULL,NULL,NULL,NULL),(14995,'#',395,0,'internal',73,7,NULL,NULL,NULL,NULL,NULL),(14996,'#',395,0,'internal',73,7,NULL,NULL,NULL,NULL,NULL),(14997,'https://www.drfields.com/about/common-questions/',395,0,'internal',73,NULL,NULL,NULL,NULL,NULL,NULL),(14998,'#',395,0,'internal',73,7,NULL,NULL,NULL,NULL,NULL),(14999,'https://www.drfields.com/contact/',395,29,'internal',73,5,NULL,NULL,NULL,NULL,NULL),(15000,'https://www.drfields.com/wp-content/uploads/2019/06/prolojpg-500x498.png',395,4832,'image-in',73,NULL,762,765,425348,NULL,NULL),(15001,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',395,0,'image-ex',73,NULL,NULL,NULL,NULL,NULL,NULL),(15002,'/articles/regenerative-orthopedics/',2611,0,'internal',110,124,NULL,NULL,NULL,NULL,NULL),(15003,'https://www.drfields.com/wp-content/uploads/2019/08/Amniotic-400x500.jpg',2611,4078,'image-in',110,NULL,1351,1080,831969,NULL,NULL),(15034,'/Articles/Prolo-News/Stem-Cell-Therapy-For-Rotator-Cuff-Injuries',1457,0,'internal',40,NULL,NULL,NULL,NULL,NULL,NULL),(15035,'/Contact',1457,29,'internal',40,5,NULL,NULL,NULL,NULL,NULL),(15036,'https://www.drfields.com/articles/regenerative-orthopedics/stop-shoulder-pain-from-rotator-cuff-and-other-shoulder-injuries/',1457,0,'internal',40,NULL,NULL,NULL,NULL,NULL,NULL),(15037,'',1457,0,'internal',40,7,NULL,NULL,NULL,NULL,NULL),(15038,'https://www.drfields.com/wp-content/uploads/2019/06/Rotator-Cuff-500x375.jpeg',1457,4837,'image-in',40,NULL,1312,1749,388512,NULL,NULL),(15039,'https://www.drfields.com/wp-content/uploads/2019/06/rotator-cuff-problem-400x500.png',1457,4483,'image-in',40,NULL,1350,1080,1053108,NULL,NULL),(15706,'https://www.youtube.com/watch?v=-SyCX5PtrL4&width=640&height=480',536,0,'external',125,NULL,NULL,NULL,NULL,NULL,NULL),(15707,'https://www.drfields.com/articles/regenerative-orthopedics/cervical-instability/',536,3301,'internal',125,70,NULL,NULL,NULL,NULL,NULL),(15708,'https://www.drfields.com/contact/',536,29,'internal',125,5,NULL,NULL,NULL,NULL,NULL),(15709,'https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/',536,373,'internal',125,134,NULL,NULL,NULL,NULL,NULL),(15710,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',536,0,'external',125,NULL,NULL,NULL,NULL,NULL,NULL),(15711,'https://www.drfields.com/regenerative-techniques/prp-treatment/',536,0,'internal',125,NULL,NULL,NULL,NULL,NULL,NULL),(15712,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',536,431,'internal',125,11,NULL,NULL,NULL,NULL,NULL),(15713,'tel:+310-453-1234',536,0,'external',125,NULL,NULL,NULL,NULL,NULL,NULL),(15714,'https://www.drfields.com/Testimonials/Neck-Testimonials/',536,1711,'internal',125,18,NULL,NULL,NULL,NULL,NULL),(15715,'https://www.drfields.com/Testimonials/Headache-Testimonials/',536,1729,'internal',125,146,NULL,NULL,NULL,NULL,NULL),(15716,'https://www.drfields.com/contact/',536,29,'internal',125,5,NULL,NULL,NULL,NULL,NULL),(15717,'https://www.drfields.com/wp-content/uploads/2019/09/Peter-Neck.jpg',536,2735,'image-in',125,NULL,360,480,81365,NULL,NULL),(15718,'https://www.drfields.com/wp-content/uploads/2019/06/Non-Surgical-500x500.png',536,4878,'image-in',125,NULL,1080,1080,690624,NULL,NULL),(15719,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',536,0,'image-ex',125,NULL,NULL,NULL,NULL,NULL,NULL),(15800,'/Articles/Prolo-News/Joint-Surgery-Think-Again-Learn-About-Prolotherapy',1480,1463,'internal',36,111,NULL,NULL,NULL,NULL,NULL),(15801,'https://www.drfields.com/contact/',1480,29,'internal',36,5,NULL,NULL,NULL,NULL,NULL),(15802,'http://bit.ly/1NIXl8o',1480,0,'external',36,NULL,NULL,NULL,NULL,NULL,NULL),(15803,'https://www.drfields.com/contact/',1480,29,'internal',36,5,NULL,NULL,NULL,NULL,NULL),(15804,'https://www.drfields.com/wp-content/uploads/2019/06/heart-attack-1-359x500.png',1480,4894,'image-in',36,NULL,4529,3255,6807284,NULL,NULL),(15805,'https://www.drfields.com/wp-content/uploads/2019/06/knee-illustration-200.jpg',1480,1125,'image-in',36,NULL,266,200,19419,NULL,NULL),(15820,'https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/',615,373,'internal',77,134,NULL,NULL,NULL,NULL,NULL),(15821,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',615,0,'internal',77,NULL,NULL,NULL,NULL,NULL,NULL),(15822,'https://www.drfields.com/contact/',615,29,'internal',77,5,NULL,NULL,NULL,NULL,NULL),(15823,'https://www.drfields.com/regenerative-techniques/prp-treatment/',615,0,'internal',77,NULL,NULL,NULL,NULL,NULL,NULL),(15824,'/regenerative-techniques/stem-cell-treatment/',615,431,'internal',77,11,NULL,NULL,NULL,NULL,NULL),(15825,'tel:+310-453-1234',615,0,'external',77,NULL,NULL,NULL,NULL,NULL,NULL),(15826,'https://www.drfields.com/Testimonials/Knee-Testimonials/',615,1702,'internal',77,85,NULL,NULL,NULL,NULL,NULL),(15828,'https://www.drfields.com/wp-content/uploads/2019/06/Suzie-Wrist.jpg',615,1299,'image-in',77,NULL,360,480,19956,NULL,NULL),(15829,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',615,0,'image-ex',77,NULL,NULL,NULL,NULL,NULL,NULL),(15934,'https://www.drfields.com/Day-1-Kiliminaro-and-base-camp-arrival',2208,2219,'internal',224,205,NULL,NULL,NULL,NULL,NULL),(15945,'https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/',2208,373,'internal',224,134,NULL,NULL,NULL,NULL,NULL),(15957,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg',2208,2287,'image-in',224,NULL,396,704,65576,NULL,NULL),(15983,'/articles/regenerative-orthopedics/',2592,0,'internal',112,124,NULL,NULL,NULL,NULL,NULL),(15984,'https://www.drfields.com/wp-content/uploads/2019/08/Sue.-knee.stem_-500x500.png',2592,4086,'image-in',112,NULL,1080,1080,623311,NULL,NULL),(16003,'https://www.drfields.com/contact/',1486,29,'internal',164,5,NULL,NULL,NULL,NULL,NULL),(16004,'https://www.drfields.com/wp-content/uploads/2019/06/health-insurance.jpg',1486,1129,'image-in',164,NULL,300,200,48567,NULL,NULL),(16049,'https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/',216,373,'internal',3,134,NULL,NULL,NULL,NULL,NULL),(16050,'https://orthoregen.com/',216,0,'external',3,NULL,NULL,NULL,NULL,NULL,NULL),(16051,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',216,431,'internal',3,11,NULL,NULL,NULL,NULL,NULL),(16052,'https://www.drfields.com/category/articles/magazine-column/',216,0,'internal',3,NULL,NULL,NULL,NULL,NULL,NULL),(16053,'https://hhpfoundation.org/',216,0,'external',3,NULL,NULL,NULL,NULL,NULL,NULL),(16054,'https://www.drfields.com/contact/',216,29,'internal',3,5,NULL,NULL,NULL,NULL,NULL),(16055,'https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/',216,348,'internal',3,8,NULL,NULL,NULL,NULL,NULL),(16056,'https://www.youtube.com/watch?v=JyzbZT3aZ9o&width=640&height=480',216,0,'external',3,NULL,NULL,NULL,NULL,NULL,NULL),(16057,'https://www.drfields.com/contact/',216,29,'internal',3,5,NULL,NULL,NULL,NULL,NULL),(16058,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg',216,1685,'image-in',3,NULL,752,474,51591,NULL,NULL),(16059,'https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg',216,1371,'image-in',3,NULL,360,480,15907,NULL,NULL),(16063,'https://www.drfields.com/articles/prolo-news/repairing-sports-injuries-with-regenerative-orthopedics/',2565,0,'internal',156,NULL,NULL,NULL,NULL,NULL,NULL),(16064,'https://en.wikipedia.org/wiki/Platelet-rich_plasma',2565,0,'external',156,NULL,NULL,NULL,NULL,NULL,NULL),(16065,'https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedic..jpg',2565,2567,'image-in',156,NULL,648,800,42376,NULL,NULL),(16325,'https://www.youtube.com/watch?v=Mc4Xo9RTwjw&width=640&height=480',533,0,'external',104,NULL,NULL,NULL,NULL,NULL,NULL),(16326,'https://www.youtube.com/watch?v=usKynXnU45A&width=640&height=480',533,0,'external',104,NULL,NULL,NULL,NULL,NULL,NULL),(16327,'https://www.drfields.com/contact/',533,29,'internal',104,5,NULL,NULL,NULL,NULL,NULL),(16328,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',533,0,'internal',104,NULL,NULL,NULL,NULL,NULL,NULL),(16329,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatments-overview/',533,382,'internal',104,13,NULL,NULL,NULL,NULL,NULL),(16330,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',533,431,'internal',104,11,NULL,NULL,NULL,NULL,NULL),(16331,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',533,0,'external',104,NULL,NULL,NULL,NULL,NULL,NULL),(16332,'https://www.drfields.com/regenerative-techniques/prp-treatment/',533,0,'internal',104,NULL,NULL,NULL,NULL,NULL,NULL),(16333,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',533,431,'internal',104,11,NULL,NULL,NULL,NULL,NULL),(16334,'tel:+310-453-1234',533,0,'external',104,NULL,NULL,NULL,NULL,NULL,NULL),(16335,'https://www.drfields.com/Testimonials/Knee-Testimonials',533,1702,'internal',104,85,NULL,NULL,NULL,NULL,NULL),(16336,'/about/the-athletic-doc/about-the-athletic-doc/',533,373,'internal',104,134,NULL,NULL,NULL,NULL,NULL),(16337,'https://www.drfields.com/articles/regenerative-orthopedics/acl-tears-and-knee-ligament-injuries/',533,1379,'internal',104,202,NULL,NULL,NULL,NULL,NULL),(16338,'https://www.drfields.com/get-rid-of-knee-arthritis-symptoms-by-treating-the-source-of-the-pain/',533,0,'internal',104,NULL,NULL,NULL,NULL,NULL,NULL),(16339,'https://www.drfields.com/articles/regenerative-orthopedics/treating-chondromalacia-patella-successfully/',533,2650,'internal',104,25,NULL,NULL,NULL,NULL,NULL),(16340,'https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/',533,1397,'internal',104,162,NULL,NULL,NULL,NULL,NULL),(16341,'https://www.drfields.com/articles/regenerative-orthopedics/avoiding-knee-replacement-with-regenerative-orthopedics/',533,0,'internal',104,NULL,NULL,NULL,NULL,NULL,NULL),(16342,'https://www.drfields.com/articles/regenerative-orthopedics/do-your-knees-hurt/',533,0,'internal',104,NULL,NULL,NULL,NULL,NULL,NULL),(16343,'https://www.drfields.com/articles/regenerative-orthopedics/the-best-treatments-for-medial-collateral-ligament-injuries/',533,2858,'internal',104,227,NULL,NULL,NULL,NULL,NULL),(16344,'https://www.drfields.com/articles/regenerative-orthopedics/meniscus-and-labral-tears/',533,1397,'internal',104,162,NULL,NULL,NULL,NULL,NULL),(16345,'https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/',533,2894,'internal',104,219,NULL,NULL,NULL,NULL,NULL),(16346,'https://www.drfields.com/articles/regenerative-orthopedics/runners-knee-pain-2/',533,2894,'internal',104,219,NULL,NULL,NULL,NULL,NULL),(16347,'https://www.drfields.com/articles/regenerative-orthopedics/knee-tendonitis-treatment/',533,3409,'internal',104,68,NULL,NULL,NULL,NULL,NULL),(16348,'https://www.drfields.com/contact/',533,29,'internal',104,5,NULL,NULL,NULL,NULL,NULL),(16349,'https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg',533,1279,'image-in',104,NULL,360,480,13153,NULL,NULL),(16350,'https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg',533,1278,'image-in',104,NULL,360,480,8963,NULL,NULL),(16351,'https://www.drfields.com/wp-content/uploads/2019/06/knee-stem-cells-500x375.jpeg',533,4925,'image-in',104,NULL,1312,1749,451503,NULL,NULL),(16352,'https://www.carecredit.com/sites/pc/image/carecredit_button_applynow_280x100_a_v1.jpg',533,0,'image-ex',104,NULL,NULL,NULL,NULL,NULL,NULL),(16353,'https://www.drfields.com/wp-content/uploads/2019/06/Knee-Small.jpg',533,1307,'image-in',104,NULL,200,150,9876,NULL,NULL),(16511,'https://www.drfields.com/contact/',373,29,'internal',134,5,NULL,NULL,NULL,NULL,NULL),(16512,'https://www.drfields.com/about/the-athletic-doc/race-report-9th-ironman/',373,348,'internal',134,8,NULL,NULL,NULL,NULL,NULL),(16513,'https://www.drfields.com/about/the-athletic-doc/race-report-8th-ironman/',373,306,'internal',134,57,NULL,NULL,NULL,NULL,NULL),(16514,'https://www.drfields.com/about/the-athletic-doc/race-report-7th-ironman/',373,302,'internal',134,47,NULL,NULL,NULL,NULL,NULL),(16515,'https://www.drfields.com/about/the-athletic-doc/race-report-6th-ironman/',373,217,'internal',134,54,NULL,NULL,NULL,NULL,NULL),(16516,'https://www.drfields.com/about/the-athletic-doc/race-report-5th-ironman/',373,184,'internal',134,10,NULL,NULL,NULL,NULL,NULL),(16517,'https://www.drfields.com/about/the-athletic-doc/race-report-4th-ironman/',373,0,'internal',134,NULL,NULL,NULL,NULL,NULL,NULL),(16518,'https://www.drfields.com/about/the-athletic-doc/race-report-3rd-ironman/',373,0,'internal',134,NULL,NULL,NULL,NULL,NULL,NULL),(16519,'https://www.drfields.com/about/the-athletic-doc/race-report-2nd-ironman/',373,0,'internal',134,NULL,NULL,NULL,NULL,NULL,NULL),(16520,'https://www.drfields.com/wp-content/uploads/2019/06/dr-fields-pete-jacobs-small.jpg',373,374,'image-in',134,NULL,185,250,42643,NULL,NULL),(16521,'https://www.drfields.com/wp-content/uploads/2019/06/3c2609ba-657a-4097-a191-6a009c32f46e-366x500.jpg',373,4938,'image-in',134,NULL,1462,1069,131200,NULL,NULL),(16522,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg',373,351,'image-in',134,NULL,288,160,24643,NULL,NULL),(16523,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg',373,332,'image-in',134,NULL,295,160,19066,NULL,NULL),(16524,'https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg',373,319,'image-in',134,NULL,473,275,33461,NULL,NULL),(16525,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Finish-2015-275.jpg',373,385,'image-in',134,NULL,465,275,59367,NULL,NULL),(16526,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish.jpg',373,199,'image-in',134,NULL,363,275,60783,NULL,NULL),(16527,'https://www.drfields.com/wp-content/uploads/2019/06/ironman2014-large.jpg',373,386,'image-in',134,NULL,547,321,38146,NULL,NULL),(16528,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2011-finish2.jpg',373,59,'image-in',134,NULL,268,160,21020,NULL,NULL),(16529,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2012-finish2.jpg',373,128,'image-in',134,NULL,268,150,28378,NULL,NULL),(16530,'https://www.youtube.com/watch?v=qTJCmEnrqYg',361,0,'external',44,NULL,NULL,NULL,NULL,NULL,NULL),(16531,'https://photos.google.com/share/AF1QipN-HsVLxHi_BQ_2nP6zLXP6J8ZTFSNJ6IOp8OWMOlpDKkKhr2mo1qrbf6IRAb3iPg?key=cnNlNUFmU0VxUEZuR0lhTmVOOXp3dDB2czNkMTNB',361,0,'external',44,NULL,NULL,NULL,NULL,NULL,NULL),(16532,'/About/The-Athletic-Doc/Race-Report-9th-Ironman',361,348,'internal',44,8,NULL,NULL,NULL,NULL,NULL),(16533,'/About/The-Athletic-Doc/Race-Report-8th-Ironman',361,306,'internal',44,57,NULL,NULL,NULL,NULL,NULL),(16534,'/About/The-Athletic-Doc/Race-Report-7th-Ironman',361,302,'internal',44,47,NULL,NULL,NULL,NULL,NULL),(16535,'/About/The-Athletic-Doc/Race-Report-6th-Ironman',361,217,'internal',44,54,NULL,NULL,NULL,NULL,NULL),(16536,'/About/The-Athletic-Doc/Race-Report-5th-Ironman',361,184,'internal',44,10,NULL,NULL,NULL,NULL,NULL),(16537,'/About/The-Athletic-Doc/Race-Report-4th-Ironman',361,0,'internal',44,NULL,NULL,NULL,NULL,NULL,NULL),(16538,'/About/The-Athletic-Doc/Race-Report-3rd-Ironman',361,0,'internal',44,NULL,NULL,NULL,NULL,NULL,NULL),(16539,'/About/the-athletic-doc/race-report-2nd-ironman/',361,0,'internal',44,NULL,NULL,NULL,NULL,NULL,NULL),(16540,'/About/the-athletic-doc/race-report-1st-ironman/',361,0,'internal',44,NULL,NULL,NULL,NULL,NULL,NULL),(16541,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Maryland.jpg',361,362,'image-in',44,NULL,200,240,6417,NULL,NULL),(16542,'https://www.drfields.com/wp-content/uploads/2019/06/swim-400.jpg',361,363,'image-in',44,NULL,676,400,31509,NULL,NULL),(16543,'https://www.drfields.com/wp-content/uploads/2019/06/bike2-600.jpg',361,364,'image-in',44,NULL,498,600,44792,NULL,NULL),(16544,'https://www.drfields.com/wp-content/uploads/2019/06/run1-400.jpg',361,365,'image-in',44,NULL,722,400,32858,NULL,NULL),(16545,'https://www.drfields.com/wp-content/uploads/2019/06/finish-line-C-400.jpg',361,366,'image-in',44,NULL,451,400,22404,NULL,NULL),(16546,'https://www.drfields.com/wp-content/uploads/2019/06/post-finish-400b.jpg',361,2068,'image-in',44,NULL,491,400,22464,NULL,NULL),(16581,'https://www.youtube.com/watch?v=ds0_hCW9WA4',348,0,'external',8,NULL,NULL,NULL,NULL,NULL,NULL),(16582,'https://photos.google.com/share/AF1QipOZKCkaR9a0fl-OfBkXj-Z46M__ixhQOKqFQiAB_sf0rQDWmGsv_NdpwYlUbChPfw?key=MWNqUHJtR0hwSmdyVVFxQ2t1WmY3ZkVTYlNFZ2FB',348,0,'external',8,NULL,NULL,NULL,NULL,NULL,NULL),(16583,'/About/The-Athletic-Doc/Race-Report-9th-Ironman',348,348,'internal',8,8,NULL,NULL,NULL,NULL,NULL),(16584,'/About/The-Athletic-Doc/Race-Report-8th-Ironman',348,306,'internal',8,57,NULL,NULL,NULL,NULL,NULL),(16585,'/About/The-Athletic-Doc/Race-Report-7th-Ironman',348,302,'internal',8,47,NULL,NULL,NULL,NULL,NULL),(16586,'/About/The-Athletic-Doc/Race-Report-6th-Ironman',348,217,'internal',8,54,NULL,NULL,NULL,NULL,NULL),(16587,'/About/The-Athletic-Doc/Race-Report-5th-Ironman',348,184,'internal',8,10,NULL,NULL,NULL,NULL,NULL),(16588,'/About/The-Athletic-Doc/Race-Report-4th-Ironman',348,0,'internal',8,NULL,NULL,NULL,NULL,NULL,NULL),(16589,'/About/The-Athletic-Doc/Race-Report-3rd-Ironman',348,0,'internal',8,NULL,NULL,NULL,NULL,NULL,NULL),(16590,'/about/the-athletic-doc/race-report-2nd-ironman/',348,0,'internal',8,NULL,NULL,NULL,NULL,NULL,NULL),(16591,'/about/the-athletic-doc/race-report-1st-ironman/',348,0,'internal',8,NULL,NULL,NULL,NULL,NULL,NULL),(16592,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Snoopy.jpg',348,355,'image-in',8,NULL,240,275,34071,NULL,NULL),(16593,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Swim.jpg',348,354,'image-in',8,NULL,240,160,20723,NULL,NULL),(16594,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Bike-3.jpg',348,353,'image-in',8,NULL,288,160,26807,NULL,NULL),(16595,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Run-2.jpg',348,352,'image-in',8,NULL,288,160,28087,NULL,NULL),(16596,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finishline-3.jpg',348,351,'image-in',8,NULL,288,160,24643,NULL,NULL),(16597,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Santa-Rosa-Finisher-2.jpg',348,2066,'image-in',8,NULL,378,275,38725,NULL,NULL),(16614,'https://goo.gl/photos/WqU8aVsvXa5SgLLo6',306,0,'external',57,NULL,NULL,NULL,NULL,NULL,NULL),(16615,'/About/The-Athletic-Doc/Race-Report-9th-Ironman',306,348,'internal',57,8,NULL,NULL,NULL,NULL,NULL),(16616,'/About/The-Athletic-Doc/Race-Report-8th-Ironman',306,306,'internal',57,57,NULL,NULL,NULL,NULL,NULL),(16617,'/About/The-Athletic-Doc/Race-Report-7th-Ironman',306,302,'internal',57,47,NULL,NULL,NULL,NULL,NULL),(16618,'/About/The-Athletic-Doc/Race-Report-6th-Ironman',306,217,'internal',57,54,NULL,NULL,NULL,NULL,NULL),(16619,'/About/The-Athletic-Doc/Race-Report-5th-Ironman',306,184,'internal',57,10,NULL,NULL,NULL,NULL,NULL),(16620,'/About/The-Athletic-Doc/Race-Report-4th-Ironman',306,0,'internal',57,NULL,NULL,NULL,NULL,NULL,NULL),(16621,'/About/The-Athletic-Doc/Race-Report-3rd-Ironman',306,0,'internal',57,NULL,NULL,NULL,NULL,NULL,NULL),(16622,'/about/the-athletic-doc/race-report-2nd-ironman/',306,0,'internal',57,NULL,NULL,NULL,NULL,NULL,NULL),(16623,'/about/the-athletic-doc/race-report-1st-ironman/',306,0,'internal',57,NULL,NULL,NULL,NULL,NULL,NULL),(16624,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-Logo-1.jpg',306,4955,'image-in',57,NULL,85,139,12185,NULL,NULL),(16625,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Swim-2-160.jpg',306,327,'image-in',57,NULL,286,160,21020,NULL,NULL),(16626,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Bike-160.jpg',306,328,'image-in',57,NULL,209,160,16758,NULL,NULL),(16627,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Run-160.jpg',306,329,'image-in',57,NULL,288,160,17755,NULL,NULL),(16628,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finish-160.jpg',306,332,'image-in',57,NULL,295,160,19066,NULL,NULL),(16629,'https://www.drfields.com/wp-content/uploads/2019/06/Cozumel-2016-Finisher-275.jpg',306,2064,'image-in',57,NULL,391,275,46478,NULL,NULL),(16633,'/articles/regenerative-orthopedics/',2894,0,'internal',219,124,NULL,NULL,NULL,NULL,NULL),(16634,'https://www.drfields.com/wp-content/uploads/2019/10/Runners-Knee-500x500.jpg',2894,4027,'image-in',219,NULL,1080,1080,1064622,NULL,NULL),(16635,'https://www.drfields.com/wp-content/uploads/2019/10/Runners-Knee.PRP_.Stems-4-500x419.png',2894,4957,'image-in',219,NULL,788,940,1186874,NULL,NULL),(16639,'https://www.drfields.com/articles/prolo-news',1410,0,'internal',28,NULL,NULL,NULL,NULL,NULL,NULL),(16640,'https://www.drfields.com/wp-content/uploads/2019/06/BACK-pain-500x500.jpg',1410,4490,'image-in',28,NULL,1080,1080,682536,NULL,NULL),(16641,'https://www.drfields.com/wp-content/uploads/2019/06/Back-Pain.Hauser-500x419.png',1410,4960,'image-in',28,NULL,788,940,552885,NULL,NULL),(16642,'https://www.drfields.com/articles/prolo-news/',1408,0,'internal',191,NULL,NULL,NULL,NULL,NULL,NULL),(16643,'https://www.drfields.com/wp-content/uploads/2019/06/shoulder-copy-2-500x500.jpg',1408,4530,'image-in',191,NULL,1080,1080,702904,NULL,NULL),(16644,'https://www.drfields.com/wp-content/uploads/2019/06/Shoulder.-Journal-of-Clinical-Imaging-500x419.png',1408,4964,'image-in',191,NULL,788,940,1069212,NULL,NULL),(16740,'https://www.drfields.com/contact/',1434,29,'internal',160,5,NULL,NULL,NULL,NULL,NULL),(16741,'https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/',1434,373,'internal',160,134,NULL,NULL,NULL,NULL,NULL),(16742,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Zoom-Lecture-Facebook-Post.2-500x419.png',1434,4968,'image-in',160,NULL,788,940,233503,NULL,NULL),(16875,'Contact-Us',2109,0,'internal',2,NULL,NULL,NULL,NULL,NULL,NULL),(16876,'/articles/health-news/dealing-with-covid-19/',2109,0,'internal',2,NULL,NULL,NULL,NULL,NULL,NULL),(16877,'Contact-Us',2109,0,'internal',2,NULL,NULL,NULL,NULL,NULL,NULL),(16878,'Contact-Us',2109,0,'internal',2,NULL,NULL,NULL,NULL,NULL,NULL),(16879,'/articles/health-news/dont-fear-the-fear-itself/',2109,3638,'internal',2,33,NULL,NULL,NULL,NULL,NULL),(16882,'/articles/health-news/dealing-with-covid-19/',2109,0,'internal',2,NULL,NULL,NULL,NULL,NULL,NULL),(16883,'/articles/health-news/dont-fear-the-fear-itself/',2109,3638,'internal',2,33,NULL,NULL,NULL,NULL,NULL),(16894,'https://www.drfields.com/contact/',2109,29,'internal',2,5,NULL,NULL,NULL,NULL,NULL),(16895,'https://www.drfields.com/contact/',2109,29,'internal',2,5,NULL,NULL,NULL,NULL,NULL),(16896,'http://orthoregen.com',2109,0,'external',2,NULL,NULL,NULL,NULL,NULL,NULL),(16897,'https://www.drfields.com/about/orthoregen-our-philosophy/',2109,213,'internal',2,92,NULL,NULL,NULL,NULL,NULL),(16898,'/contact/',2109,29,'internal',2,5,NULL,NULL,NULL,NULL,NULL),(16899,'https://www.drfields.com/about/dr-fields-bio/',2109,216,'internal',2,3,NULL,NULL,NULL,NULL,NULL),(16900,'https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/',2109,373,'internal',2,134,NULL,NULL,NULL,NULL,NULL),(16901,'https://www.drfields.com/contact/',2109,29,'internal',2,5,NULL,NULL,NULL,NULL,NULL),(16902,'https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-larry.png',2109,803,'image-in',2,NULL,68,68,4315,NULL,NULL),(16903,'https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-christopher.png',2109,951,'image-in',2,NULL,68,68,11677,NULL,NULL),(16904,'https://www.drfields.com/wp-content/uploads/2019/06/testimonial-thumb-mary.png',2109,1557,'image-in',2,NULL,68,68,4593,NULL,NULL),(16906,'https://www.drfields.com/wp-content/uploads/2019/06/icon-info.png',2109,19,'image-in',2,NULL,70,70,880,NULL,NULL),(16907,'https://www.drfields.com/wp-content/uploads/2019/06/icon-ironman.png',2109,18,'image-in',2,NULL,70,70,867,NULL,NULL),(16924,'https://www.drfields.com/How-PRP-Repairs-Ligaments-and-Tendons-Without-Surgery#contact',2335,0,'internal',210,NULL,NULL,NULL,NULL,NULL,NULL),(16925,'tel:+310-453-1234',2335,0,'external',210,NULL,NULL,NULL,NULL,NULL,NULL),(16926,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1.jpg',2335,2337,'image-in',210,NULL,752,474,51591,NULL,NULL),(16927,'https://www.drfields.com/wp-content/uploads/2022/06/PRP.-500x375.jpeg',2335,4992,'image-in',210,NULL,1312,1749,389797,NULL,NULL),(17189,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',1471,431,'internal',78,11,NULL,NULL,NULL,NULL,NULL),(17190,'https://www.drfields.com/contact/',1471,29,'internal',78,5,NULL,NULL,NULL,NULL,NULL),(17191,'https://www.drfields.com/wp-content/uploads/2019/06/Copy-of-Mexico-City-Lecture-2-500x419.png',1471,5147,'image-in',78,NULL,788,940,300924,NULL,NULL),(17192,'https://www.drfields.com/wp-content/uploads/2019/06/14th-World-Congress-on-Anti-Aging-and-Longevity-Medicine-500x239.png',1471,5146,'image-in',78,NULL,652,1364,1144616,NULL,NULL),(17195,'http://www.medicina-antienvejecimiento.net/',1471,0,'external',78,NULL,NULL,NULL,NULL,NULL,NULL),(17198,'https://www.drfields.com/articles/health-news/dr-fields-to-lecture-in-mexico-city-on-july-9th/',2109,1471,'internal',2,78,NULL,NULL,NULL,NULL,NULL),(17199,'https://www.drfields.com/wp-content/uploads/2022/07/Meniscectomy.-Cureus.FB-Facebook-Post.png',5157,5158,'image-in',969,NULL,788,940,855838,NULL,NULL),(17201,'https://www.drfields.com/wp-content/uploads/2022/07/Back-Pain.Hauser.FB_-500x419.png',5169,5171,'image-in',972,NULL,788,940,499054,NULL,NULL),(17204,'/report-of-my-kilimanjaro-climb/',2109,2208,'internal',2,224,NULL,NULL,NULL,NULL,NULL),(17237,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123559-scaled.jpg',2219,0,'internal',205,NULL,NULL,NULL,NULL,NULL,NULL),(17239,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752-300x300.jpg',2219,5199,'image-in',205,NULL,2524,2056,551982,NULL,NULL),(17240,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_100719-300x300.jpg',2219,0,'image-in',205,NULL,NULL,NULL,NULL,NULL,NULL),(17241,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123305-300x300.jpg',2219,0,'image-in',205,NULL,NULL,NULL,NULL,NULL,NULL),(17242,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123348-300x300.jpg',2219,5202,'image-in',205,NULL,675,1200,402369,NULL,NULL),(17243,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123358-300x300.jpg',2219,0,'image-in',205,NULL,NULL,NULL,NULL,NULL,NULL),(17244,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123533-300x300.jpg',2219,0,'image-in',205,NULL,NULL,NULL,NULL,NULL,NULL),(17245,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123559-300x300.jpg',2219,5205,'image-in',205,NULL,2560,1440,358901,NULL,NULL),(17246,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123613-300x300.jpg',2219,5206,'image-in',205,NULL,2133,1200,1080513,NULL,NULL),(17253,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123559-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17255,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_100719-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17256,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752-300x300.jpg',5190,5199,'image-in',976,NULL,2524,2056,551982,NULL,NULL),(17257,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123305-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17258,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123348-300x300.jpg',5190,5202,'image-in',976,NULL,675,1200,402369,NULL,NULL),(17259,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123358-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17260,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123533-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17261,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123559-300x300.jpg',5190,5205,'image-in',976,NULL,2560,1440,358901,NULL,NULL),(17262,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_123613-300x300.jpg',5190,5206,'image-in',976,NULL,2133,1200,1080513,NULL,NULL),(17264,'https://www.drfields.com/wp-content/uploads/2022/07/regen.tissue-healing-500x375.jpeg',5180,5181,'image-in',974,NULL,1312,1749,468127,NULL,NULL),(17278,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_083321-scaled.jpg',1789,0,'internal',143,NULL,NULL,NULL,NULL,NULL,NULL),(17279,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_083429-scaled.jpg',1789,0,'internal',143,NULL,NULL,NULL,NULL,NULL,NULL),(17280,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908-300x300.jpg',1789,5216,'image-in',143,NULL,2238,1200,1630969,NULL,NULL),(17281,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_064549-300x300.jpg',1789,5217,'image-in',143,NULL,2133,1200,889661,NULL,NULL),(17282,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_064815-300x300.jpg',1789,5218,'image-in',143,NULL,2133,1200,1053310,NULL,NULL),(17283,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_083321-300x300.jpg',1789,5219,'image-in',143,NULL,2560,1920,320123,NULL,NULL),(17284,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_083429-300x300.jpg',1789,5220,'image-in',143,NULL,2560,1920,335266,NULL,NULL),(17290,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_083321-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17291,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_083429-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17292,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908-300x300.jpg',5190,5216,'image-in',976,NULL,2238,1200,1630969,NULL,NULL),(17293,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_064549-300x300.jpg',5190,5217,'image-in',976,NULL,2133,1200,889661,NULL,NULL),(17294,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_064815-300x300.jpg',5190,5218,'image-in',976,NULL,2133,1200,1053310,NULL,NULL),(17295,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_083321-300x300.jpg',5190,5219,'image-in',976,NULL,2560,1920,320123,NULL,NULL),(17296,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_083429-300x300.jpg',5190,5220,'image-in',976,NULL,2560,1920,335266,NULL,NULL),(17297,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_215121-scaled.jpg',2232,0,'internal',225,NULL,NULL,NULL,NULL,NULL,NULL),(17298,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_221519-scaled.jpg',2232,0,'internal',225,NULL,NULL,NULL,NULL,NULL,NULL),(17299,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235514-scaled.jpg',2232,0,'internal',225,NULL,NULL,NULL,NULL,NULL,NULL),(17300,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-scaled.jpg',2232,0,'internal',225,NULL,NULL,NULL,NULL,NULL,NULL),(17301,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-1-scaled.jpg',2232,0,'internal',225,NULL,NULL,NULL,NULL,NULL,NULL),(17302,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_013444-scaled.jpg',2232,0,'internal',225,NULL,NULL,NULL,NULL,NULL,NULL),(17303,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_013459-scaled.jpg',2232,0,'internal',225,NULL,NULL,NULL,NULL,NULL,NULL),(17304,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_014025-scaled.jpg',2232,0,'internal',225,NULL,NULL,NULL,NULL,NULL,NULL),(17305,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_014035-scaled.jpg',2232,0,'internal',225,NULL,NULL,NULL,NULL,NULL,NULL),(17306,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054153-1-scaled.jpg',2232,0,'internal',225,NULL,NULL,NULL,NULL,NULL,NULL),(17307,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054205-scaled.jpg',2232,0,'internal',225,NULL,NULL,NULL,NULL,NULL,NULL),(17308,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054306-scaled.jpg',2232,0,'internal',225,NULL,NULL,NULL,NULL,NULL,NULL),(17309,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054706-scaled.jpg',2232,0,'internal',225,NULL,NULL,NULL,NULL,NULL,NULL),(17310,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054843-scaled.jpg',2232,0,'internal',225,NULL,NULL,NULL,NULL,NULL,NULL),(17311,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_215121-300x300.jpg',2232,5230,'image-in',225,NULL,2560,1440,934491,NULL,NULL),(17312,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_221519-300x300.jpg',2232,5231,'image-in',225,NULL,2560,1440,460049,NULL,NULL),(17313,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235514-300x300.jpg',2232,5233,'image-in',225,NULL,1440,2560,820699,NULL,NULL),(17314,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-300x300.jpg',2232,5234,'image-in',225,NULL,2560,1440,778184,NULL,NULL),(17315,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-1-300x300.jpg',2232,5235,'image-in',225,NULL,2560,1440,763903,NULL,NULL),(17316,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_013444-300x300.jpg',2232,5236,'image-in',225,NULL,2560,1440,1133974,NULL,NULL),(17317,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_013459-300x300.jpg',2232,5237,'image-in',225,NULL,2560,1440,867683,NULL,NULL),(17318,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_014025-300x300.jpg',2232,5238,'image-in',225,NULL,2560,1440,1143427,NULL,NULL),(17319,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_014035-300x300.jpg',2232,5239,'image-in',225,NULL,2560,1920,424240,NULL,NULL),(17320,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054153-1-300x300.jpg',2232,5242,'image-in',225,NULL,2560,1440,879298,NULL,NULL),(17321,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054205-300x300.jpg',2232,5243,'image-in',225,NULL,2560,1440,1150133,NULL,NULL),(17322,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054306-300x300.jpg',2232,5244,'image-in',225,NULL,2560,1440,313038,NULL,NULL),(17323,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054706-300x300.jpg',2232,5245,'image-in',225,NULL,1440,2560,938880,NULL,NULL),(17324,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054843-300x300.jpg',2232,5246,'image-in',225,NULL,1440,2560,359577,NULL,NULL),(17328,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_215121-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17329,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_221519-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17330,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235514-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17331,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17332,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-1-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17333,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_013444-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17334,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_013459-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17335,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_014025-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17336,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_014035-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17337,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054153-1-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17338,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054205-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17339,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054306-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17340,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054706-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17341,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054843-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17342,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_215121-300x300.jpg',5190,5230,'image-in',976,NULL,2560,1440,934491,NULL,NULL),(17343,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_221519-300x300.jpg',5190,5231,'image-in',976,NULL,2560,1440,460049,NULL,NULL),(17344,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235514-300x300.jpg',5190,5233,'image-in',976,NULL,1440,2560,820699,NULL,NULL),(17345,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-300x300.jpg',5190,5234,'image-in',976,NULL,2560,1440,778184,NULL,NULL),(17346,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-1-300x300.jpg',5190,5235,'image-in',976,NULL,2560,1440,763903,NULL,NULL),(17347,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_013444-300x300.jpg',5190,5236,'image-in',976,NULL,2560,1440,1133974,NULL,NULL),(17348,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_013459-300x300.jpg',5190,5237,'image-in',976,NULL,2560,1440,867683,NULL,NULL),(17349,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_014025-300x300.jpg',5190,5238,'image-in',976,NULL,2560,1440,1143427,NULL,NULL),(17350,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_014035-300x300.jpg',5190,5239,'image-in',976,NULL,2560,1920,424240,NULL,NULL),(17351,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054153-1-300x300.jpg',5190,5242,'image-in',976,NULL,2560,1440,879298,NULL,NULL),(17352,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054205-300x300.jpg',5190,5243,'image-in',976,NULL,2560,1440,1150133,NULL,NULL),(17353,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054306-300x300.jpg',5190,5244,'image-in',976,NULL,2560,1440,313038,NULL,NULL),(17354,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054706-300x300.jpg',5190,5245,'image-in',976,NULL,1440,2560,938880,NULL,NULL),(17355,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_054843-300x300.jpg',5190,5246,'image-in',976,NULL,1440,2560,359577,NULL,NULL),(17365,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_205057-300x300.jpg',5252,0,'image-in',1025,NULL,NULL,NULL,NULL,NULL,NULL),(17366,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_205203-300x300.jpg',5252,0,'image-in',1025,NULL,NULL,NULL,NULL,NULL,NULL),(17367,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_225420-300x300.jpg',5252,0,'image-in',1025,NULL,NULL,NULL,NULL,NULL,NULL),(17368,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_003717-300x300.jpg',5252,0,'image-in',1025,NULL,NULL,NULL,NULL,NULL,NULL),(17369,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_012240-300x300.jpg',5252,0,'image-in',1025,NULL,NULL,NULL,NULL,NULL,NULL),(17370,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_024020-300x300.jpg',5252,0,'image-in',1025,NULL,NULL,NULL,NULL,NULL,NULL),(17371,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_050504-300x300.jpg',5252,0,'image-in',1025,NULL,NULL,NULL,NULL,NULL,NULL),(17372,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_051720-300x300.jpg',5252,0,'image-in',1025,NULL,NULL,NULL,NULL,NULL,NULL),(17381,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_205057-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17382,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_205203-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17383,'https://www.drfields.com/wp-content/uploads/2022/07/20190212_225420-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17384,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_003717-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17385,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_012240-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17386,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_024020-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17387,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_050504-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17388,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_051720-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17406,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_194441-scaled.jpg',2239,0,'internal',29,NULL,NULL,NULL,NULL,NULL,NULL),(17408,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_232436-scaled.jpg',2239,0,'internal',29,NULL,NULL,NULL,NULL,NULL,NULL),(17412,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_013949-scaled.jpg',2239,0,'internal',29,NULL,NULL,NULL,NULL,NULL,NULL),(17417,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_053648-300x300.jpg',2239,5267,'image-in',29,NULL,2133,1200,853142,NULL,NULL),(17418,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_194441-300x300.jpg',2239,5268,'image-in',29,NULL,1440,2560,314286,NULL,NULL),(17419,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_195143-300x300.jpg',2239,5269,'image-in',29,NULL,2133,1200,1122732,NULL,NULL),(17420,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_232436-300x300.jpg',2239,5270,'image-in',29,NULL,1920,2560,583462,NULL,NULL),(17421,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_234842-300x300.jpg',2239,5271,'image-in',29,NULL,2133,1200,830399,NULL,NULL),(17422,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_234955-300x300.jpg',2239,5272,'image-in',29,NULL,2133,1200,830060,NULL,NULL),(17423,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_001419-300x300.jpg',2239,5273,'image-in',29,NULL,2133,1200,783636,NULL,NULL),(17424,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_013949-300x300.jpg',2239,5274,'image-in',29,NULL,1440,2560,322216,NULL,NULL),(17425,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_014458-300x300.jpg',2239,5275,'image-in',29,NULL,675,1200,346137,NULL,NULL),(17426,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_015352-300x300.jpg',2239,5276,'image-in',29,NULL,2133,1200,764422,NULL,NULL),(17427,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_015509-300x300.jpg',2239,5277,'image-in',29,NULL,2133,1200,864459,NULL,NULL),(17429,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_194441-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17431,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_232436-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17435,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_013949-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17439,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_053648-300x300.jpg',5190,5267,'image-in',976,NULL,2133,1200,853142,NULL,NULL),(17440,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_194441-300x300.jpg',5190,5268,'image-in',976,NULL,1440,2560,314286,NULL,NULL),(17441,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_195143-300x300.jpg',5190,5269,'image-in',976,NULL,2133,1200,1122732,NULL,NULL),(17442,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_232436-300x300.jpg',5190,5270,'image-in',976,NULL,1920,2560,583462,NULL,NULL),(17443,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_234842-300x300.jpg',5190,5271,'image-in',976,NULL,2133,1200,830399,NULL,NULL),(17444,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_234955-300x300.jpg',5190,5272,'image-in',976,NULL,2133,1200,830060,NULL,NULL),(17445,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_001419-300x300.jpg',5190,5273,'image-in',976,NULL,2133,1200,783636,NULL,NULL),(17446,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_013949-300x300.jpg',5190,5274,'image-in',976,NULL,1440,2560,322216,NULL,NULL),(17447,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_014458-300x300.jpg',5190,5275,'image-in',976,NULL,675,1200,346137,NULL,NULL),(17448,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_015352-300x300.jpg',5190,5276,'image-in',976,NULL,2133,1200,764422,NULL,NULL),(17449,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_015509-300x300.jpg',5190,5277,'image-in',976,NULL,2133,1200,864459,NULL,NULL),(17451,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-2.jpg',2257,0,'internal',320,NULL,NULL,NULL,NULL,NULL,NULL),(17452,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_180726-scaled.jpg',2257,0,'internal',320,NULL,NULL,NULL,NULL,NULL,NULL),(17454,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_193531-scaled.jpg',2257,0,'internal',320,NULL,NULL,NULL,NULL,NULL,NULL),(17455,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_193544-scaled.jpg',2257,0,'internal',320,NULL,NULL,NULL,NULL,NULL,NULL),(17456,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_221739-scaled.jpg',2257,0,'internal',320,NULL,NULL,NULL,NULL,NULL,NULL),(17457,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_222618-scaled.jpg',2257,0,'internal',320,NULL,NULL,NULL,NULL,NULL,NULL),(17458,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_001438-scaled.jpg',2257,0,'internal',320,NULL,NULL,NULL,NULL,NULL,NULL),(17459,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_001448-scaled.jpg',2257,0,'internal',320,NULL,NULL,NULL,NULL,NULL,NULL),(17460,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_001526-scaled.jpg',2257,0,'internal',320,NULL,NULL,NULL,NULL,NULL,NULL),(17461,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_005511-scaled.jpg',2257,0,'internal',320,NULL,NULL,NULL,NULL,NULL,NULL),(17462,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_012500-scaled.jpg',2257,0,'internal',320,NULL,NULL,NULL,NULL,NULL,NULL),(17464,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_013139-scaled.jpg',2257,0,'internal',320,NULL,NULL,NULL,NULL,NULL,NULL),(17465,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_0228310-scaled.jpg',2257,0,'internal',320,NULL,NULL,NULL,NULL,NULL,NULL),(17466,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072131-scaled.jpg',2257,0,'internal',320,NULL,NULL,NULL,NULL,NULL,NULL),(17467,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072223-scaled.jpg',2257,0,'internal',320,NULL,NULL,NULL,NULL,NULL,NULL),(17468,'https://www.drfields.com/wp-content/uploads/2022/07/20190222_194502-scaled.jpg',2257,0,'internal',320,NULL,NULL,NULL,NULL,NULL,NULL),(17469,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-1.jpg',2257,2261,'image-in',320,NULL,480,640,68473,NULL,NULL),(17470,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-2.jpg',2257,2262,'image-in',320,NULL,480,640,53196,NULL,NULL),(17471,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_180726-300x300.jpg',2257,5281,'image-in',320,NULL,2560,1920,309574,NULL,NULL),(17472,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_193521-300x300.jpg',2257,5282,'image-in',320,NULL,675,1200,316217,NULL,NULL),(17473,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_193531-300x300.jpg',2257,5283,'image-in',320,NULL,2560,1920,364318,NULL,NULL),(17474,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_193544-300x300.jpg',2257,5284,'image-in',320,NULL,2560,1920,523608,NULL,NULL),(17475,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_221739-300x300.jpg',2257,5285,'image-in',320,NULL,1440,2560,285291,NULL,NULL),(17476,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_222618-300x300.jpg',2257,5286,'image-in',320,NULL,1440,2560,441336,NULL,NULL),(17477,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_001438-300x300.jpg',2257,5287,'image-in',320,NULL,1920,2560,636864,NULL,NULL),(17478,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_001448-300x300.jpg',2257,5288,'image-in',320,NULL,1920,2560,678591,NULL,NULL),(17479,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_001526-300x300.jpg',2257,5289,'image-in',320,NULL,2560,1440,546545,NULL,NULL),(17480,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_005511-300x300.jpg',2257,5290,'image-in',320,NULL,1920,2560,546237,NULL,NULL),(17481,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_012500-300x300.jpg',2257,5291,'image-in',320,NULL,1920,2560,387122,NULL,NULL),(17482,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_012521-300x300.jpg',2257,5292,'image-in',320,NULL,675,1200,337883,NULL,NULL),(17483,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_013139-300x300.jpg',2257,5293,'image-in',320,NULL,2560,1440,380859,NULL,NULL),(17484,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_0228310-300x300.jpg',2257,5294,'image-in',320,NULL,1440,2560,399382,NULL,NULL),(17485,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072131-300x300.jpg',2257,5295,'image-in',320,NULL,1440,2560,271917,NULL,NULL),(17486,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072223-300x300.jpg',2257,5296,'image-in',320,NULL,691,2560,182240,NULL,NULL),(17487,'https://www.drfields.com/wp-content/uploads/2022/07/20190222_194502-300x300.jpg',2257,5297,'image-in',320,NULL,2560,1873,463917,NULL,NULL),(17498,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_180726-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17500,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_193531-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17501,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_193544-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17502,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_221739-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17503,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_222618-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17504,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_001438-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17505,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_001448-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17506,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_001526-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17507,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_005511-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17508,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_012500-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17510,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_013139-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17511,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_0228310-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17512,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072131-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17513,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072223-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17514,'https://www.drfields.com/wp-content/uploads/2022/07/20190222_194502-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17515,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-1.jpg',5190,2261,'image-in',976,NULL,480,640,68473,NULL,NULL),(17516,'https://www.drfields.com/wp-content/uploads/2019/06/16500-18400-2.jpg',5190,2262,'image-in',976,NULL,480,640,53196,NULL,NULL),(17517,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_180726-300x300.jpg',5190,5281,'image-in',976,NULL,2560,1920,309574,NULL,NULL),(17518,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_193521-300x300.jpg',5190,5282,'image-in',976,NULL,675,1200,316217,NULL,NULL),(17519,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_193531-300x300.jpg',5190,5283,'image-in',976,NULL,2560,1920,364318,NULL,NULL),(17520,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_193544-300x300.jpg',5190,5284,'image-in',976,NULL,2560,1920,523608,NULL,NULL),(17521,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_221739-300x300.jpg',5190,5285,'image-in',976,NULL,1440,2560,285291,NULL,NULL),(17522,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_222618-300x300.jpg',5190,5286,'image-in',976,NULL,1440,2560,441336,NULL,NULL),(17523,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_001438-300x300.jpg',5190,5287,'image-in',976,NULL,1920,2560,636864,NULL,NULL),(17524,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_001448-300x300.jpg',5190,5288,'image-in',976,NULL,1920,2560,678591,NULL,NULL),(17525,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_001526-300x300.jpg',5190,5289,'image-in',976,NULL,2560,1440,546545,NULL,NULL),(17526,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_005511-300x300.jpg',5190,5290,'image-in',976,NULL,1920,2560,546237,NULL,NULL),(17527,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_012500-300x300.jpg',5190,5291,'image-in',976,NULL,1920,2560,387122,NULL,NULL),(17528,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_012521-300x300.jpg',5190,5292,'image-in',976,NULL,675,1200,337883,NULL,NULL),(17529,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_013139-300x300.jpg',5190,5293,'image-in',976,NULL,2560,1440,380859,NULL,NULL),(17530,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_0228310-300x300.jpg',5190,5294,'image-in',976,NULL,1440,2560,399382,NULL,NULL),(17531,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072131-300x300.jpg',5190,5295,'image-in',976,NULL,1440,2560,271917,NULL,NULL),(17532,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072223-300x300.jpg',5190,5296,'image-in',976,NULL,691,2560,182240,NULL,NULL),(17533,'https://www.drfields.com/wp-content/uploads/2022/07/20190222_194502-300x300.jpg',5190,5297,'image-in',976,NULL,2560,1873,463917,NULL,NULL),(17542,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072131-1-300x300.jpg',2274,0,'image-in',289,NULL,NULL,NULL,NULL,NULL,NULL),(17543,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072223-1-300x300.jpg',2274,0,'image-in',289,NULL,NULL,NULL,NULL,NULL,NULL),(17546,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072131-1-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17547,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_072223-1-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17564,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_191648-scaled.jpg',5322,0,'internal',1091,NULL,NULL,NULL,NULL,NULL,NULL),(17566,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_194052-scaled.jpg',5322,0,'internal',1091,NULL,NULL,NULL,NULL,NULL,NULL),(17567,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_201950-scaled.jpg',5322,0,'internal',1091,NULL,NULL,NULL,NULL,NULL,NULL),(17568,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_202018-scaled.jpg',5322,0,'internal',1091,NULL,NULL,NULL,NULL,NULL,NULL),(17569,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_224853-scaled.jpg',5322,0,'internal',1091,NULL,NULL,NULL,NULL,NULL,NULL),(17570,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_230834-scaled.jpg',5322,0,'internal',1091,NULL,NULL,NULL,NULL,NULL,NULL),(17571,'https://www.drfields.com/wp-content/uploads/2022/07/20190218_033826-scaled.jpg',5322,0,'internal',1091,NULL,NULL,NULL,NULL,NULL,NULL),(17572,'https://www.drfields.com/wp-content/uploads/2022/07/20190306_053640-scaled.jpg',5322,0,'internal',1091,NULL,NULL,NULL,NULL,NULL,NULL),(17573,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_191648-300x300.jpg',5322,5324,'image-in',1091,NULL,1440,2560,200762,NULL,NULL),(17575,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_194052-300x300.jpg',5322,5326,'image-in',1091,NULL,1440,2560,343688,NULL,NULL),(17576,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_201950-300x300.jpg',5322,5327,'image-in',1091,NULL,2560,1440,429574,NULL,NULL),(17577,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_202018-300x300.jpg',5322,5328,'image-in',1091,NULL,2560,1920,339218,NULL,NULL),(17578,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_224853-300x300.jpg',5322,5329,'image-in',1091,NULL,2560,1920,622192,NULL,NULL),(17579,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_230834-300x300.jpg',5322,5330,'image-in',1091,NULL,1920,2560,580666,NULL,NULL),(17580,'https://www.drfields.com/wp-content/uploads/2022/07/20190218_033826-300x300.jpg',5322,5331,'image-in',1091,NULL,1999,2560,534578,NULL,NULL),(17581,'https://www.drfields.com/wp-content/uploads/2022/07/20190306_053640-300x300.jpg',5322,5332,'image-in',1091,NULL,2560,1920,293339,NULL,NULL),(17582,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_191648-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17584,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_194052-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17585,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_201950-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17586,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_202018-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17587,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_224853-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17588,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_230834-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17589,'https://www.drfields.com/wp-content/uploads/2022/07/20190218_033826-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17590,'https://www.drfields.com/wp-content/uploads/2022/07/20190306_053640-scaled.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17591,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_191648-300x300.jpg',5190,5324,'image-in',976,NULL,1440,2560,200762,NULL,NULL),(17593,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_194052-300x300.jpg',5190,5326,'image-in',976,NULL,1440,2560,343688,NULL,NULL),(17594,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_201950-300x300.jpg',5190,5327,'image-in',976,NULL,2560,1440,429574,NULL,NULL),(17595,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_202018-300x300.jpg',5190,5328,'image-in',976,NULL,2560,1920,339218,NULL,NULL),(17596,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_224853-300x300.jpg',5190,5329,'image-in',976,NULL,2560,1920,622192,NULL,NULL),(17597,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_230834-300x300.jpg',5190,5330,'image-in',976,NULL,1920,2560,580666,NULL,NULL),(17598,'https://www.drfields.com/wp-content/uploads/2022/07/20190218_033826-300x300.jpg',5190,5331,'image-in',976,NULL,1999,2560,534578,NULL,NULL),(17599,'https://www.drfields.com/wp-content/uploads/2022/07/20190306_053640-300x300.jpg',5190,5332,'image-in',976,NULL,2560,1920,293339,NULL,NULL),(17600,'https://www.drfields.com/wp-content/uploads/2022/07/20190210_061752.jpg',2208,5199,'image-in',224,NULL,2524,2056,551982,NULL,NULL),(17601,'/kilimanjaro-pre-hike/',2208,1789,'internal',224,143,NULL,NULL,NULL,NULL,NULL),(17602,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_054908.jpg',2208,5216,'image-in',224,NULL,2238,1200,1630969,NULL,NULL),(17603,'/Kili-Getting-to-the-trailhead/',2208,2232,'internal',224,225,NULL,NULL,NULL,NULL,NULL),(17608,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_235530-1-300x300.jpg',2208,5235,'image-in',224,NULL,2560,1440,763903,NULL,NULL),(17609,'https://www.drfields.com/wp-content/uploads/2022/07/20190211_221519-300x300.jpg',2208,5231,'image-in',224,NULL,2560,1440,460049,NULL,NULL),(17612,'/kili-hiking-to-11400-ft/',2208,5252,'internal',224,1025,NULL,NULL,NULL,NULL,NULL),(17613,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_003717-300x300.jpg',2208,0,'image-in',224,NULL,NULL,NULL,NULL,NULL,NULL),(17614,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_051720-300x300.jpg',2208,0,'image-in',224,NULL,NULL,NULL,NULL,NULL,NULL),(17631,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_203442-300x300.jpg',5350,5351,'image-in',1101,NULL,2133,1200,863894,NULL,NULL),(17632,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_205238-300x300.jpg',5350,5352,'image-in',1101,NULL,2133,1200,895300,NULL,NULL),(17633,'https://www.drfields.com/wp-content/uploads/2022/07/20190214_010718-300x300.jpg',5350,5353,'image-in',1101,NULL,675,1200,292617,NULL,NULL),(17634,'https://www.drfields.com/wp-content/uploads/2022/07/20190214_073441-300x300.jpg',5350,0,'image-in',1101,NULL,NULL,NULL,NULL,NULL,NULL),(17635,'https://www.drfields.com/wp-content/uploads/2022/07/20190214_193905-300x300.jpg',5350,0,'image-in',1101,NULL,NULL,NULL,NULL,NULL,NULL),(17636,'https://www.drfields.com/wp-content/uploads/2022/07/20190214_215727-300x300.jpg',5350,0,'image-in',1101,NULL,NULL,NULL,NULL,NULL,NULL),(17637,'https://www.drfields.com/wp-content/uploads/2022/07/20190214_231958-300x300.jpg',5350,5357,'image-in',1101,NULL,2133,1200,1165102,NULL,NULL),(17638,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_001209-300x300.jpg',5350,5358,'image-in',1101,NULL,2133,1200,790657,NULL,NULL),(17639,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_064154-300x300.jpg',5350,0,'image-in',1101,NULL,NULL,NULL,NULL,NULL,NULL),(17640,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_081438-300x300.jpg',5350,0,'image-in',1101,NULL,NULL,NULL,NULL,NULL,NULL),(17641,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_082043-300x300.jpg',5350,0,'image-in',1101,NULL,NULL,NULL,NULL,NULL,NULL),(17642,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_082536-300x300.jpg',5350,5362,'image-in',1101,NULL,2133,1200,903149,NULL,NULL),(17645,'/kili-hiking-to-13400-feet/',2208,5350,'internal',224,1101,NULL,NULL,NULL,NULL,NULL),(17646,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_203442-300x300.jpg',2208,5351,'image-in',224,NULL,2133,1200,863894,NULL,NULL),(17647,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_205238-300x300.jpg',2208,5352,'image-in',224,NULL,2133,1200,895300,NULL,NULL),(17660,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_203442-300x300.jpg',5190,5351,'image-in',976,NULL,2133,1200,863894,NULL,NULL),(17661,'https://www.drfields.com/wp-content/uploads/2022/07/20190213_205238-300x300.jpg',5190,5352,'image-in',976,NULL,2133,1200,895300,NULL,NULL),(17662,'https://www.drfields.com/wp-content/uploads/2022/07/20190214_010718-300x300.jpg',5190,5353,'image-in',976,NULL,675,1200,292617,NULL,NULL),(17663,'https://www.drfields.com/wp-content/uploads/2022/07/20190214_073441-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17664,'https://www.drfields.com/wp-content/uploads/2022/07/20190214_193905-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17665,'https://www.drfields.com/wp-content/uploads/2022/07/20190214_215727-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17666,'https://www.drfields.com/wp-content/uploads/2022/07/20190214_231958-300x300.jpg',5190,5357,'image-in',976,NULL,2133,1200,1165102,NULL,NULL),(17667,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_001209-300x300.jpg',5190,5358,'image-in',976,NULL,2133,1200,790657,NULL,NULL),(17668,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_064154-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17669,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_081438-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17670,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_082043-300x300.jpg',5190,0,'image-in',976,NULL,NULL,NULL,NULL,NULL,NULL),(17671,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_082536-300x300.jpg',5190,5362,'image-in',976,NULL,2133,1200,903149,NULL,NULL),(17673,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_232436-scaled.jpg',2208,0,'internal',224,NULL,NULL,NULL,NULL,NULL,NULL),(17674,'/kili-hiking-to-15500-feet/',2208,2239,'internal',224,29,NULL,NULL,NULL,NULL,NULL),(17675,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_234842-300x300.jpg',2208,5271,'image-in',224,NULL,2133,1200,830399,NULL,NULL),(17676,'https://www.drfields.com/wp-content/uploads/2022/07/20190215_232436-300x300.jpg',2208,5270,'image-in',224,NULL,1920,2560,583462,NULL,NULL),(17677,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_012500-scaled.jpg',2208,0,'internal',224,NULL,NULL,NULL,NULL,NULL,NULL),(17678,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_193531-scaled.jpg',2208,0,'internal',224,NULL,NULL,NULL,NULL,NULL,NULL),(17679,'/16-500-feet-to-18-400/',2208,2257,'internal',224,320,NULL,NULL,NULL,NULL,NULL),(17680,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_012500-300x300.jpg',2208,5291,'image-in',224,NULL,1920,2560,387122,NULL,NULL),(17681,'https://www.drfields.com/wp-content/uploads/2022/07/20190216_193531-300x300.jpg',2208,5283,'image-in',224,NULL,2560,1920,364318,NULL,NULL),(17683,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_013139-scaled.jpg',2208,0,'internal',224,NULL,NULL,NULL,NULL,NULL,NULL),(17684,'/kilimanjaro-final-camp-at-18500-feet/',2208,2274,'internal',224,289,NULL,NULL,NULL,NULL,NULL),(17685,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_012521-300x300.jpg',2208,5292,'image-in',224,NULL,675,1200,337883,NULL,NULL),(17686,'https://www.drfields.com/wp-content/uploads/2022/07/20190217_013139-300x300.jpg',2208,5293,'image-in',224,NULL,2560,1440,380859,NULL,NULL),(17689,'/Hiking-to-the-summit-19-341-feet/',2208,5322,'internal',224,1091,NULL,NULL,NULL,NULL,NULL),(17690,'https://www.drfields.com/wp-content/uploads/2022/07/20190218_033826-300x300.jpg',2208,0,'image-in',224,NULL,NULL,NULL,NULL,NULL,NULL),(17691,'https://www.drfields.com/wp-content/uploads/2022/07/img-300x300.png',2208,5372,'image-in',224,NULL,436,642,469939,NULL,NULL),(17692,'/Sunrise-up-top-and-heading-down',2208,2283,'internal',224,340,NULL,NULL,NULL,NULL,NULL),(17693,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg',2208,0,'internal',224,NULL,NULL,NULL,NULL,NULL,NULL),(17694,'/Final-goodbyes-and-certificates',2208,2294,'internal',224,168,NULL,NULL,NULL,NULL,NULL),(17695,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg',2208,2306,'image-in',224,NULL,445,445,107055,NULL,NULL),(17696,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg',2208,2299,'image-in',224,NULL,279,683,98035,NULL,NULL),(17698,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-2.jpg',2283,0,'internal',340,NULL,NULL,NULL,NULL,NULL,NULL),(17701,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-5.jpg',2283,0,'internal',340,NULL,NULL,NULL,NULL,NULL,NULL),(17702,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-6.jpg',2283,0,'internal',340,NULL,NULL,NULL,NULL,NULL,NULL),(17703,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-7.jpg',2283,0,'internal',340,NULL,NULL,NULL,NULL,NULL,NULL),(17704,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-8.jpg',2283,0,'internal',340,NULL,NULL,NULL,NULL,NULL,NULL),(17705,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-9.jpg',2283,0,'internal',340,NULL,NULL,NULL,NULL,NULL,NULL),(17706,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-1.jpg',2283,2285,'image-in',340,NULL,200,355,15031,NULL,NULL),(17707,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-2.jpg',2283,2286,'image-in',340,NULL,200,720,19085,NULL,NULL),(17708,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg',2283,2287,'image-in',340,NULL,396,704,65576,NULL,NULL),(17710,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-5.jpg',2283,2289,'image-in',340,NULL,396,297,20190,NULL,NULL),(17711,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-6.jpg',2283,2290,'image-in',340,NULL,359,202,25809,NULL,NULL),(17712,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-7.jpg',2283,2291,'image-in',340,NULL,359,269,34388,NULL,NULL),(17713,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-8.jpg',2283,2292,'image-in',340,NULL,359,479,60220,NULL,NULL),(17714,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-9.jpg',2283,2293,'image-in',340,NULL,359,269,22372,NULL,NULL),(17715,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-1.jpg',2283,2285,'image-in',340,NULL,200,355,15031,NULL,NULL),(17716,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-2.jpg',2283,2286,'image-in',340,NULL,200,720,19085,NULL,NULL),(17717,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg',2283,2287,'image-in',340,NULL,396,704,65576,NULL,NULL),(17719,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-5.jpg',2283,2289,'image-in',340,NULL,396,297,20190,NULL,NULL),(17720,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-6.jpg',2283,2290,'image-in',340,NULL,359,202,25809,NULL,NULL),(17721,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-7.jpg',2283,2291,'image-in',340,NULL,359,269,34388,NULL,NULL),(17722,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-8.jpg',2283,2292,'image-in',340,NULL,359,479,60220,NULL,NULL),(17723,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-9.jpg',2283,2293,'image-in',340,NULL,359,269,22372,NULL,NULL),(17733,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-1.jpg',5190,2285,'image-in',976,NULL,200,355,15031,NULL,NULL),(17734,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-2.jpg',5190,2286,'image-in',976,NULL,200,720,19085,NULL,NULL),(17735,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-3.jpg',5190,2287,'image-in',976,NULL,396,704,65576,NULL,NULL),(17736,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-9.jpg',5190,2293,'image-in',976,NULL,359,269,22372,NULL,NULL),(17737,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-8.jpg',5190,2292,'image-in',976,NULL,359,479,60220,NULL,NULL),(17738,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-7.jpg',5190,2291,'image-in',976,NULL,359,269,34388,NULL,NULL),(17739,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-5.jpg',5190,2289,'image-in',976,NULL,396,297,20190,NULL,NULL),(17740,'https://www.drfields.com/wp-content/uploads/2019/06/Sunriseuptop-6.jpg',5190,2290,'image-in',976,NULL,359,202,25809,NULL,NULL),(17744,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-8.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17745,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-7.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17746,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-6.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17747,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-5.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17748,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-4.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17749,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-3.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17750,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-2.jpg',5190,0,'internal',976,NULL,NULL,NULL,NULL,NULL,NULL),(17751,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg',5190,2306,'image-in',976,NULL,445,445,107055,NULL,NULL),(17752,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg',5190,2299,'image-in',976,NULL,279,683,98035,NULL,NULL),(17753,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-8.jpg',5190,2297,'image-in',976,NULL,445,334,42003,NULL,NULL),(17754,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-7.jpg',5190,2296,'image-in',976,NULL,348,615,103272,NULL,NULL),(17755,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-6.jpg',5190,2304,'image-in',976,NULL,348,261,40865,NULL,NULL),(17756,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-5.jpg',5190,2303,'image-in',976,NULL,348,348,73516,NULL,NULL),(17757,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-4.jpg',5190,2302,'image-in',976,NULL,279,223,22540,NULL,NULL),(17758,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-3.jpg',5190,2301,'image-in',976,NULL,279,157,21943,NULL,NULL),(17759,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-2.jpg',5190,2300,'image-in',976,NULL,279,157,28770,NULL,NULL),(17760,'/kilimanjaro-climb-gallery/',2208,5190,'internal',224,976,NULL,NULL,NULL,NULL,NULL),(17761,'/kilimanjaro-climb-gallery/',2208,5190,'internal',224,976,NULL,NULL,NULL,NULL,NULL),(17762,'/kilimanjaro-climb-gallery/',2208,5190,'internal',224,976,NULL,NULL,NULL,NULL,NULL),(17763,'/kilimanjaro-climb-gallery/',2208,5190,'internal',224,976,NULL,NULL,NULL,NULL,NULL),(17764,'/kilimanjaro-climb-gallery/',2208,5190,'internal',224,976,NULL,NULL,NULL,NULL,NULL),(17765,'/kilimanjaro-climb-gallery/',2208,5190,'internal',224,976,NULL,NULL,NULL,NULL,NULL),(17766,'/kilimanjaro-climb-gallery/',2208,5190,'internal',224,976,NULL,NULL,NULL,NULL,NULL),(17767,'/kilimanjaro-climb-gallery/',2208,5190,'internal',224,976,NULL,NULL,NULL,NULL,NULL),(17768,'/kilimanjaro-climb-gallery/',2208,5190,'internal',224,976,NULL,NULL,NULL,NULL,NULL),(17778,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-9.jpg',2294,2306,'image-in',168,NULL,445,445,107055,NULL,NULL),(17779,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-6.jpg',2294,2304,'image-in',168,NULL,348,261,40865,NULL,NULL),(17780,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-5.jpg',2294,2303,'image-in',168,NULL,348,348,73516,NULL,NULL),(17781,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-4.jpg',2294,2302,'image-in',168,NULL,279,223,22540,NULL,NULL),(17782,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-3.jpg',2294,2301,'image-in',168,NULL,279,157,21943,NULL,NULL),(17783,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-2.jpg',2294,2300,'image-in',168,NULL,279,157,28770,NULL,NULL),(17784,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-7.jpg',2294,2296,'image-in',168,NULL,348,615,103272,NULL,NULL),(17785,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-8.jpg',2294,2297,'image-in',168,NULL,445,334,42003,NULL,NULL),(17786,'https://www.drfields.com/wp-content/uploads/2019/06/final-goodbyes-1.jpg',2294,2299,'image-in',168,NULL,279,683,98035,NULL,NULL),(17788,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img.jpg',104,106,'image-in',216,NULL,216,160,9671,NULL,NULL),(17789,'https://www.drfields.com/Testimonials/Video-Testimonials',1012,1340,'internal',34,27,NULL,NULL,NULL,NULL,NULL),(17790,'/Contact-Dr-Fields',1012,0,'internal',34,NULL,NULL,NULL,NULL,NULL,NULL),(17791,'https://www.drfields.com',1012,2109,'internal',34,2,NULL,NULL,NULL,NULL,NULL),(17792,'https://www.drfields.com',1012,2109,'internal',34,2,NULL,NULL,NULL,NULL,NULL),(17793,'https://www.drfields.com',1012,2109,'internal',34,2,NULL,NULL,NULL,NULL,NULL),(17794,'https://www.drfields.com',1012,2109,'internal',34,2,NULL,NULL,NULL,NULL,NULL),(17796,'https://www.youtube.com/watch?v=2vAoXYb7f7M&#038;width=640&#038;height=480',1567,0,'external',60,NULL,NULL,NULL,NULL,NULL,NULL),(17797,'https://www.youtube.com/watch?v=3JIY8OCt1FY&#038;width=640&#038;height=480',1567,0,'external',60,NULL,NULL,NULL,NULL,NULL,NULL),(17798,'https://www.youtube.com/watch?v=I0HcX8Kcy2k&#038;width=640&#038;height=480',1567,0,'external',60,NULL,NULL,NULL,NULL,NULL,NULL),(17799,'https://www.youtube.com/watch?v=JyzbZT3aZ9o&#038;width=640&#038;height=480',1567,0,'external',60,NULL,NULL,NULL,NULL,NULL,NULL),(17800,'https://www.youtube.com/watch?v=37Ww-R46U1o&#038;width=640&#038;height=480',1567,0,'external',60,NULL,NULL,NULL,NULL,NULL,NULL),(17801,'/dr-fields-on-the-radio/',1567,1584,'internal',60,141,NULL,NULL,NULL,NULL,NULL),(17802,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-Lectures-in-Las-Vegas-to-400-Physicians.jpg',1567,1090,'image-in',60,NULL,360,480,35866,NULL,NULL),(17803,'https://www.drfields.com/wp-content/uploads/2019/06/Peter-A.-Fields-MD-DC.jpg',1567,1102,'image-in',60,NULL,360,480,13665,NULL,NULL),(17804,'https://www.drfields.com/wp-content/uploads/2019/06/Dextrose-Prolotherapy-Overview.jpg',1567,1027,'image-in',60,NULL,360,480,11856,NULL,NULL),(17805,'https://www.drfields.com/wp-content/uploads/2019/06/Interview-with-Dr.-Fields.jpg',1567,1371,'image-in',60,NULL,360,480,15907,NULL,NULL),(17806,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-extra-interview.jpg',1567,1571,'image-in',60,NULL,360,480,17148,NULL,NULL),(17807,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-bio-img-1.jpg',1567,955,'image-in',60,NULL,216,160,9671,NULL,NULL),(17808,'https://www.drfields.com/Testimonials/Video-Testimonials',1702,1340,'internal',85,27,NULL,NULL,NULL,NULL,NULL),(17809,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',1702,1700,'internal',85,88,NULL,NULL,NULL,NULL,NULL),(17810,'https://www.drfields.com/Testimonials/Knee-Testimonials',1702,1702,'internal',85,85,NULL,NULL,NULL,NULL,NULL),(17811,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',1702,1704,'internal',85,147,NULL,NULL,NULL,NULL,NULL),(17812,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',1702,1706,'internal',85,94,NULL,NULL,NULL,NULL,NULL),(17813,'https://www.drfields.com/Testimonials/Hip-Testimonials',1702,0,'internal',85,NULL,NULL,NULL,NULL,NULL,NULL),(17814,'https://www.drfields.com/Testimonials/Neck-Testimonials',1702,1711,'internal',85,18,NULL,NULL,NULL,NULL,NULL),(17815,'https://www.drfields.com/Testimonials/Ankle-Testimonials',1702,1713,'internal',85,46,NULL,NULL,NULL,NULL,NULL),(17816,'https://www.drfields.com/Testimonials/Elbow-Testimonials',1702,1715,'internal',85,144,NULL,NULL,NULL,NULL,NULL),(17817,'https://www.drfields.com/Testimonials/Foot-Testimonials',1702,1717,'internal',85,145,NULL,NULL,NULL,NULL,NULL),(17818,'https://www.drfields.com/Testimonials/Wrist-Testimonials',1702,1719,'internal',85,152,NULL,NULL,NULL,NULL,NULL),(17819,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',1702,1721,'internal',85,30,NULL,NULL,NULL,NULL,NULL),(17820,'https://www.drfields.com/Testimonials/Spanish-Testimonials',1702,1723,'internal',85,142,NULL,NULL,NULL,NULL,NULL),(17821,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',1702,1725,'internal',85,151,NULL,NULL,NULL,NULL,NULL),(17822,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',1702,1727,'internal',85,149,NULL,NULL,NULL,NULL,NULL),(17823,'https://www.drfields.com/Testimonials/Headache-Testimonials',1702,1729,'internal',85,146,NULL,NULL,NULL,NULL,NULL),(17824,'https://www.drfields.com/testimonials/german-testimonials/',1702,2833,'internal',85,204,NULL,NULL,NULL,NULL,NULL),(17825,'https://www.drfields.com/testimonials/written-testimonials/',1702,1012,'internal',85,34,NULL,NULL,NULL,NULL,NULL),(17826,'https://www.youtube.com/watch?v=hA1FVmxWixE&#038;width=640&#038;height=480',1702,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(17827,'https://www.youtube.com/watch?v=hmq3WQRNSlk&#038;width=640&#038;height=480',1702,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(17828,'https://www.youtube.com/watch?v=vQGBBEARjMk&#038;width=640&#038;height=480',1702,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(17829,'https://www.youtube.com/watch?v=d-0hlfEKGYo&#038;width=640&#038;height=480',1702,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(17830,'https://www.youtube.com/watch?v=cFCO3DIv3mA&#038;width=640&#038;height=480',1702,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(17831,'https://www.youtube.com/watch?v=Mc4Xo9RTwjw&#038;width=640&#038;height=480',1702,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(17832,'https://www.youtube.com/watch?v=usKynXnU45A&#038;width=640&#038;height=480',1702,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(17833,'https://www.youtube.com/watch?v=CfhXiKoiO08&#038;width=640&#038;height=480',1702,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(17834,'https://www.youtube.com/watch?v=4GsVa7DN2Do&#038;width=640&#038;height=480',1702,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(17835,'https://www.youtube.com/watch?v=6wBQp0ZNfy0&#038;width=640&#038;height=480',1702,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(17836,'https://www.youtube.com/watch?v=aO2HpYrEJIg&#038;width=640&#038;height=480',1702,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(17837,'https://www.youtube.com/watch?v=4kip37rZH6Y&#038;width=640&#038;height=480',1702,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(17838,'https://www.youtube.com/watch?v=BZ65bEr1Qlo&#038;width=640&#038;height=480',1702,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(17839,'https://www.youtube.com/watch?v=wd73iKcFLDY&#038;width=640&#038;height=480',1702,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(17840,'https://www.youtube.com/watch?v=7sBZyf4bAyI&#038;width=640&#038;height=480',1702,0,'external',85,NULL,NULL,NULL,NULL,NULL,NULL),(17841,'https://www.drfields.com/contact/',1702,29,'internal',85,5,NULL,NULL,NULL,NULL,NULL),(17842,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Barry-Leonard-PRP-Knee.jpg',1702,1889,'image-in',85,NULL,360,480,12492,NULL,NULL),(17843,'https://www.drfields.com/wp-content/uploads/2019/06/Christopher-PRP-Knee.jpg',1702,1890,'image-in',85,NULL,360,480,8843,NULL,NULL),(17844,'https://www.drfields.com/wp-content/uploads/2019/06/May-Knee.jpg',1702,1894,'image-in',85,NULL,360,480,8344,NULL,NULL),(17845,'https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg',1702,1254,'image-in',85,NULL,360,480,10579,NULL,NULL),(17846,'https://www.drfields.com/wp-content/uploads/2019/06/Tim-Shoulder.jpg',1702,1893,'image-in',85,NULL,360,480,11298,NULL,NULL),(17847,'https://www.drfields.com/wp-content/uploads/2019/06/Christa-Knee.jpg',1702,1279,'image-in',85,NULL,360,480,13153,NULL,NULL),(17848,'https://www.drfields.com/wp-content/uploads/2019/06/Adam-Knee.jpg',1702,1278,'image-in',85,NULL,360,480,8963,NULL,NULL),(17849,'https://www.drfields.com/wp-content/uploads/2019/06/Josh-Knee.jpg',1702,1912,'image-in',85,NULL,360,480,9695,NULL,NULL),(17850,'https://www.drfields.com/wp-content/uploads/2019/06/Wilbur-Shoulder.jpg',1702,1262,'image-in',85,NULL,360,480,10805,NULL,NULL),(17851,'https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video1.jpg',1702,1255,'image-in',85,NULL,360,480,12855,NULL,NULL),(17852,'https://www.drfields.com/wp-content/uploads/2019/06/Alex-Knee.jpg',1702,1921,'image-in',85,NULL,360,480,11215,NULL,NULL),(17853,'https://www.drfields.com/wp-content/uploads/2019/06/Moira-Knee.jpg',1702,1922,'image-in',85,NULL,360,480,18738,NULL,NULL),(17854,'https://www.drfields.com/wp-content/uploads/2019/06/Yelena-Knee.jpg',1702,1928,'image-in',85,NULL,360,480,14053,NULL,NULL),(17855,'https://www.drfields.com/wp-content/uploads/2019/06/Willie-Knee.jpg',1702,1932,'image-in',85,NULL,360,480,12163,NULL,NULL),(17856,'https://www.drfields.com/wp-content/uploads/2019/06/Dale-Knee.jpg',1702,1930,'image-in',85,NULL,360,480,11287,NULL,NULL),(17857,'https://www.drfields.com/Testimonials/Video-Testimonials',1708,1340,'internal',119,27,NULL,NULL,NULL,NULL,NULL),(17858,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',1708,1700,'internal',119,88,NULL,NULL,NULL,NULL,NULL),(17859,'https://www.drfields.com/Testimonials/Knee-Testimonials',1708,1702,'internal',119,85,NULL,NULL,NULL,NULL,NULL),(17860,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',1708,1704,'internal',119,147,NULL,NULL,NULL,NULL,NULL),(17861,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',1708,1706,'internal',119,94,NULL,NULL,NULL,NULL,NULL),(17862,'https://www.drfields.com/Testimonials/Hip-Testimonials',1708,0,'internal',119,NULL,NULL,NULL,NULL,NULL,NULL),(17863,'https://www.drfields.com/Testimonials/Neck-Testimonials',1708,1711,'internal',119,18,NULL,NULL,NULL,NULL,NULL),(17864,'https://www.drfields.com/Testimonials/Ankle-Testimonials',1708,1713,'internal',119,46,NULL,NULL,NULL,NULL,NULL),(17865,'https://www.drfields.com/Testimonials/Elbow-Testimonials',1708,1715,'internal',119,144,NULL,NULL,NULL,NULL,NULL),(17866,'https://www.drfields.com/Testimonials/Foot-Testimonials',1708,1717,'internal',119,145,NULL,NULL,NULL,NULL,NULL),(17867,'https://www.drfields.com/Testimonials/Wrist-Testimonials',1708,1719,'internal',119,152,NULL,NULL,NULL,NULL,NULL),(17868,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',1708,1721,'internal',119,30,NULL,NULL,NULL,NULL,NULL),(17869,'https://www.drfields.com/Testimonials/Spanish-Testimonials',1708,1723,'internal',119,142,NULL,NULL,NULL,NULL,NULL),(17870,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',1708,1725,'internal',119,151,NULL,NULL,NULL,NULL,NULL),(17871,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',1708,1727,'internal',119,149,NULL,NULL,NULL,NULL,NULL),(17872,'https://www.drfields.com/Testimonials/Headache-Testimonials',1708,1729,'internal',119,146,NULL,NULL,NULL,NULL,NULL),(17873,'https://www.drfields.com/testimonials/german-testimonials/',1708,2833,'internal',119,204,NULL,NULL,NULL,NULL,NULL),(17874,'https://www.drfields.com/testimonials/written-testimonials/',1708,1012,'internal',119,34,NULL,NULL,NULL,NULL,NULL),(17875,'https://www.youtube.com/watch?v=vMWJVoJaVJs&#038;width=640&#038;height=480',1708,0,'external',119,NULL,NULL,NULL,NULL,NULL,NULL),(17876,'https://www.youtube.com/watch?v=aXwHPE_WEd0&#038;width=640&#038;height=480',1708,0,'external',119,NULL,NULL,NULL,NULL,NULL,NULL),(17877,'https://www.youtube.com/watch?v=If3I_k5wvdU&#038;width=640&#038;height=480',1708,0,'external',119,NULL,NULL,NULL,NULL,NULL,NULL),(17878,'https://www.drfields.com/contact/',1708,29,'internal',119,5,NULL,NULL,NULL,NULL,NULL),(17879,'https://www.drfields.com/wp-content/uploads/2019/06/Nanette-Hip.jpg',1708,1892,'image-in',119,NULL,360,480,11689,NULL,NULL),(17880,'https://www.drfields.com/wp-content/uploads/2019/06/Chris-Hip-injury.jpg',1708,1274,'image-in',119,NULL,360,480,9736,NULL,NULL),(17881,'https://www.drfields.com/wp-content/uploads/2019/06/Jan-Hip.jpg',1708,1925,'image-in',119,NULL,360,480,10071,NULL,NULL),(17882,'https://www.drfields.com/Testimonials/Video-Testimonials',1715,1340,'internal',144,27,NULL,NULL,NULL,NULL,NULL),(17883,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',1715,1700,'internal',144,88,NULL,NULL,NULL,NULL,NULL),(17884,'https://www.drfields.com/Testimonials/Knee-Testimonials',1715,1702,'internal',144,85,NULL,NULL,NULL,NULL,NULL),(17885,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',1715,1704,'internal',144,147,NULL,NULL,NULL,NULL,NULL),(17886,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',1715,1706,'internal',144,94,NULL,NULL,NULL,NULL,NULL),(17887,'https://www.drfields.com/Testimonials/Hip-Testimonials',1715,0,'internal',144,NULL,NULL,NULL,NULL,NULL,NULL),(17888,'https://www.drfields.com/Testimonials/Neck-Testimonials',1715,1711,'internal',144,18,NULL,NULL,NULL,NULL,NULL),(17889,'https://www.drfields.com/Testimonials/Ankle-Testimonials',1715,1713,'internal',144,46,NULL,NULL,NULL,NULL,NULL),(17890,'https://www.drfields.com/Testimonials/Elbow-Testimonials',1715,1715,'internal',144,144,NULL,NULL,NULL,NULL,NULL),(17891,'https://www.drfields.com/Testimonials/Foot-Testimonials',1715,1717,'internal',144,145,NULL,NULL,NULL,NULL,NULL),(17892,'https://www.drfields.com/Testimonials/Wrist-Testimonials',1715,1719,'internal',144,152,NULL,NULL,NULL,NULL,NULL),(17893,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',1715,1721,'internal',144,30,NULL,NULL,NULL,NULL,NULL),(17894,'https://www.drfields.com/Testimonials/Spanish-Testimonials',1715,1723,'internal',144,142,NULL,NULL,NULL,NULL,NULL),(17895,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',1715,1725,'internal',144,151,NULL,NULL,NULL,NULL,NULL),(17896,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',1715,1727,'internal',144,149,NULL,NULL,NULL,NULL,NULL),(17897,'https://www.drfields.com/Testimonials/Headache-Testimonials',1715,1729,'internal',144,146,NULL,NULL,NULL,NULL,NULL),(17898,'https://www.drfields.com/testimonials/german-testimonials/',1715,2833,'internal',144,204,NULL,NULL,NULL,NULL,NULL),(17899,'https://www.drfields.com/testimonials/written-testimonials/',1715,1012,'internal',144,34,NULL,NULL,NULL,NULL,NULL),(17900,'https://www.youtube.com/watch?v=RJCzx6yt0zY&#038;width=640&#038;height=480',1715,0,'external',144,NULL,NULL,NULL,NULL,NULL,NULL),(17901,'https://www.drfields.com/contact/',1715,29,'internal',144,5,NULL,NULL,NULL,NULL,NULL),(17902,'https://www.drfields.com/wp-content/uploads/2019/06/Jennifer-Elbow.jpg',1715,1264,'image-in',144,NULL,360,480,13384,NULL,NULL),(17903,'https://www.drfields.com/Testimonials/Video-Testimonials',1721,1340,'internal',30,27,NULL,NULL,NULL,NULL,NULL),(17904,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',1721,1700,'internal',30,88,NULL,NULL,NULL,NULL,NULL),(17905,'https://www.drfields.com/Testimonials/Knee-Testimonials',1721,1702,'internal',30,85,NULL,NULL,NULL,NULL,NULL),(17906,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',1721,1704,'internal',30,147,NULL,NULL,NULL,NULL,NULL),(17907,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',1721,1706,'internal',30,94,NULL,NULL,NULL,NULL,NULL),(17908,'https://www.drfields.com/Testimonials/Hip-Testimonials',1721,0,'internal',30,NULL,NULL,NULL,NULL,NULL,NULL),(17909,'https://www.drfields.com/Testimonials/Neck-Testimonials',1721,1711,'internal',30,18,NULL,NULL,NULL,NULL,NULL),(17910,'https://www.drfields.com/Testimonials/Ankle-Testimonials',1721,1713,'internal',30,46,NULL,NULL,NULL,NULL,NULL),(17911,'https://www.drfields.com/Testimonials/Elbow-Testimonials',1721,1715,'internal',30,144,NULL,NULL,NULL,NULL,NULL),(17912,'https://www.drfields.com/Testimonials/Foot-Testimonials',1721,1717,'internal',30,145,NULL,NULL,NULL,NULL,NULL),(17913,'https://www.drfields.com/Testimonials/Wrist-Testimonials',1721,1719,'internal',30,152,NULL,NULL,NULL,NULL,NULL),(17914,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',1721,1721,'internal',30,30,NULL,NULL,NULL,NULL,NULL),(17915,'https://www.drfields.com/Testimonials/Spanish-Testimonials',1721,1723,'internal',30,142,NULL,NULL,NULL,NULL,NULL),(17916,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',1721,1725,'internal',30,151,NULL,NULL,NULL,NULL,NULL),(17917,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',1721,1727,'internal',30,149,NULL,NULL,NULL,NULL,NULL),(17918,'https://www.drfields.com/Testimonials/Headache-Testimonials',1721,1729,'internal',30,146,NULL,NULL,NULL,NULL,NULL),(17919,'https://www.drfields.com/testimonials/german-testimonials/',1721,2833,'internal',30,204,NULL,NULL,NULL,NULL,NULL),(17920,'https://www.drfields.com/testimonials/written-testimonials/',1721,1012,'internal',30,34,NULL,NULL,NULL,NULL,NULL),(17921,'https://www.youtube.com/watch?v=mVHo_vvsd9A&#038;width=640&#038;height=480',1721,0,'external',30,NULL,NULL,NULL,NULL,NULL,NULL),(17922,'https://www.drfields.com/contact/',1721,29,'internal',30,5,NULL,NULL,NULL,NULL,NULL),(17923,'https://www.drfields.com/wp-content/uploads/2019/06/Sam-Sports-Hernia.jpg',1721,1904,'image-in',30,NULL,360,480,8506,NULL,NULL),(17924,'https://www.drfields.com/Testimonials/Video-Testimonials',1723,1340,'internal',142,27,NULL,NULL,NULL,NULL,NULL),(17925,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',1723,1700,'internal',142,88,NULL,NULL,NULL,NULL,NULL),(17926,'https://www.drfields.com/Testimonials/Knee-Testimonials',1723,1702,'internal',142,85,NULL,NULL,NULL,NULL,NULL),(17927,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',1723,1704,'internal',142,147,NULL,NULL,NULL,NULL,NULL),(17928,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',1723,1706,'internal',142,94,NULL,NULL,NULL,NULL,NULL),(17929,'https://www.drfields.com/Testimonials/Hip-Testimonials',1723,0,'internal',142,NULL,NULL,NULL,NULL,NULL,NULL),(17930,'https://www.drfields.com/Testimonials/Neck-Testimonials',1723,1711,'internal',142,18,NULL,NULL,NULL,NULL,NULL),(17931,'https://www.drfields.com/Testimonials/Ankle-Testimonials',1723,1713,'internal',142,46,NULL,NULL,NULL,NULL,NULL),(17932,'https://www.drfields.com/Testimonials/Elbow-Testimonials',1723,1715,'internal',142,144,NULL,NULL,NULL,NULL,NULL),(17933,'https://www.drfields.com/Testimonials/Foot-Testimonials',1723,1717,'internal',142,145,NULL,NULL,NULL,NULL,NULL),(17934,'https://www.drfields.com/Testimonials/Wrist-Testimonials',1723,1719,'internal',142,152,NULL,NULL,NULL,NULL,NULL),(17935,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',1723,1721,'internal',142,30,NULL,NULL,NULL,NULL,NULL),(17936,'https://www.drfields.com/Testimonials/Spanish-Testimonials',1723,1723,'internal',142,142,NULL,NULL,NULL,NULL,NULL),(17937,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',1723,1725,'internal',142,151,NULL,NULL,NULL,NULL,NULL),(17938,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',1723,1727,'internal',142,149,NULL,NULL,NULL,NULL,NULL),(17939,'https://www.drfields.com/Testimonials/Headache-Testimonials',1723,1729,'internal',142,146,NULL,NULL,NULL,NULL,NULL),(17940,'https://www.drfields.com/testimonials/german-testimonials/',1723,2833,'internal',142,204,NULL,NULL,NULL,NULL,NULL),(17941,'https://www.drfields.com/testimonials/written-testimonials/',1723,1012,'internal',142,34,NULL,NULL,NULL,NULL,NULL),(17942,'https://www.youtube.com/watch?v=d-0hlfEKGYo&#038;width=640&#038;height=480',1723,0,'external',142,NULL,NULL,NULL,NULL,NULL,NULL),(17943,'https://www.youtube.com/watch?v=MbclxvLrVec&#038;width=640&#038;height=480',1723,0,'external',142,NULL,NULL,NULL,NULL,NULL,NULL),(17944,'https://www.drfields.com/contact/',1723,29,'internal',142,5,NULL,NULL,NULL,NULL,NULL),(17945,'https://www.drfields.com/wp-content/uploads/2019/06/chronic-pain-video0.jpg',1723,1254,'image-in',142,NULL,360,480,10579,NULL,NULL),(17946,'https://www.drfields.com/wp-content/uploads/2019/06/Sam-Back-Spanish.jpg',1723,1927,'image-in',142,NULL,360,480,10291,NULL,NULL),(17947,'https://www.drfields.com/Testimonials/Video-Testimonials',1725,1340,'internal',151,27,NULL,NULL,NULL,NULL,NULL),(17948,'https://www.drfields.com/Testimonials/Cellular-Regeneration-Testimonials',1725,1700,'internal',151,88,NULL,NULL,NULL,NULL,NULL),(17949,'https://www.drfields.com/Testimonials/Knee-Testimonials',1725,1702,'internal',151,85,NULL,NULL,NULL,NULL,NULL),(17950,'https://www.drfields.com/Testimonials/Low-Back-Testimonials',1725,1704,'internal',151,147,NULL,NULL,NULL,NULL,NULL),(17951,'https://www.drfields.com/Testimonials/Shoulder-Testimonials',1725,1706,'internal',151,94,NULL,NULL,NULL,NULL,NULL),(17952,'https://www.drfields.com/Testimonials/Hip-Testimonials',1725,0,'internal',151,NULL,NULL,NULL,NULL,NULL,NULL),(17953,'https://www.drfields.com/Testimonials/Neck-Testimonials',1725,1711,'internal',151,18,NULL,NULL,NULL,NULL,NULL),(17954,'https://www.drfields.com/Testimonials/Ankle-Testimonials',1725,1713,'internal',151,46,NULL,NULL,NULL,NULL,NULL),(17955,'https://www.drfields.com/Testimonials/Elbow-Testimonials',1725,1715,'internal',151,144,NULL,NULL,NULL,NULL,NULL),(17956,'https://www.drfields.com/Testimonials/Foot-Testimonials',1725,1717,'internal',151,145,NULL,NULL,NULL,NULL,NULL),(17957,'https://www.drfields.com/Testimonials/Wrist-Testimonials',1725,1719,'internal',151,152,NULL,NULL,NULL,NULL,NULL),(17958,'https://www.drfields.com/Testimonials/Sports-Hernia-Testimonials',1725,1721,'internal',151,30,NULL,NULL,NULL,NULL,NULL),(17959,'https://www.drfields.com/Testimonials/Spanish-Testimonials',1725,1723,'internal',151,142,NULL,NULL,NULL,NULL,NULL),(17960,'https://www.drfields.com/Testimonials/Hamstring-Testimonials',1725,1725,'internal',151,151,NULL,NULL,NULL,NULL,NULL),(17961,'https://www.drfields.com/Testimonials/Ganglion-Cyst-Testimonials',1725,1727,'internal',151,149,NULL,NULL,NULL,NULL,NULL),(17962,'https://www.drfields.com/Testimonials/Headache-Testimonials',1725,1729,'internal',151,146,NULL,NULL,NULL,NULL,NULL),(17963,'https://www.drfields.com/testimonials/german-testimonials/',1725,2833,'internal',151,204,NULL,NULL,NULL,NULL,NULL),(17964,'https://www.drfields.com/testimonials/written-testimonials/',1725,1012,'internal',151,34,NULL,NULL,NULL,NULL,NULL),(17965,'https://www.youtube.com/watch?v=9B54Xx1z8IE&#038;width=640&#038;height=480',1725,0,'external',151,NULL,NULL,NULL,NULL,NULL,NULL),(17966,'https://www.youtube.com/watch?v=Y19FJAblO6o&#038;width=640&#038;height=480',1725,0,'external',151,NULL,NULL,NULL,NULL,NULL,NULL),(17967,'https://www.drfields.com/contact/',1725,29,'internal',151,5,NULL,NULL,NULL,NULL,NULL),(17968,'https://www.drfields.com/wp-content/uploads/2019/06/Patrick-Hamstring.jpg',1725,1910,'image-in',151,NULL,360,480,11861,NULL,NULL),(17969,'https://www.drfields.com/wp-content/uploads/2019/06/Nick-Ankle.jpg',1725,1924,'image-in',151,NULL,360,480,11920,NULL,NULL),(17970,'http://www.hacketthemwall.org',1773,0,'external',170,NULL,NULL,NULL,NULL,NULL,NULL),(17971,'http://www.hmsportsperformance.com/intro.html',1773,0,'external',170,NULL,NULL,NULL,NULL,NULL,NULL),(17972,'http://www.homes4athletes.com',1773,0,'external',170,NULL,NULL,NULL,NULL,NULL,NULL),(17973,'http://www.porchiaswish.com',1773,0,'external',170,NULL,NULL,NULL,NULL,NULL,NULL),(17974,'https://www.drfields.com/wp-content/uploads/2019/06/recomment-sites.jpg',1773,1774,'image-in',170,NULL,306,200,31024,NULL,NULL),(17975,'https://www.drfields.com/wp-content/uploads/2019/06/HH_logo.gif',1773,1776,'image-in',170,NULL,36,250,4179,NULL,NULL),(17976,'https://www.drfields.com/wp-content/uploads/2019/06/HM_logo_small.gif',1773,1777,'image-in',170,NULL,84,250,6698,NULL,NULL),(17977,'https://www.drfields.com/wp-content/uploads/2019/06/Homes_small.gif',1773,1778,'image-in',170,NULL,55,250,4231,NULL,NULL),(17978,'https://www.drfields.com/wp-content/uploads/2019/06/Barrys-Butterfly-Sun-logo-1.jpg',1773,1775,'image-in',170,NULL,83,250,10307,NULL,NULL),(17979,'https://ccalametro.com/meetings/meetings-list/join-us-for-ce-april-24th?mc_cid=738898dc63&#038;mc_eid=[UNIQID]',2309,0,'external',215,NULL,NULL,NULL,NULL,NULL,NULL),(17980,'mailto:info@ccalametro.com',2309,0,'external',215,NULL,NULL,NULL,NULL,NULL,NULL),(17981,'https://www.drfields.com/wp-content/uploads/2019/06/\nSantaMonicaSeminar3.png',2309,0,'image-in',215,NULL,NULL,NULL,NULL,NULL,NULL),(17982,'https://www.drfields.com/wp-content/uploads/2019/06/Disclamer-img.jpg',2314,2317,'image-in',346,NULL,313,200,27281,NULL,NULL),(17983,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-1.jpg',2321,2324,'image-in',312,NULL,333,187,25661,NULL,NULL),(17984,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-2.jpg',2321,2325,'image-in',312,NULL,333,444,25505,NULL,NULL),(17985,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-3.jpg',2321,2326,'image-in',312,NULL,333,592,44547,NULL,NULL),(17986,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-4.jpg',2321,2327,'image-in',312,NULL,339,452,47242,NULL,NULL),(17987,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-5.jpg',2321,2328,'image-in',312,NULL,339,191,32874,NULL,NULL),(17988,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-6.jpg',2321,2329,'image-in',312,NULL,339,191,34311,NULL,NULL),(17989,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-7.jpg',2321,2330,'image-in',312,NULL,339,191,30758,NULL,NULL),(17990,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-8.jpg',2321,2331,'image-in',312,NULL,260,463,30315,NULL,NULL),(17991,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-9.jpg',2321,2332,'image-in',312,NULL,260,463,47229,NULL,NULL),(17992,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-10.jpg',2321,2333,'image-in',312,NULL,261,147,25225,NULL,NULL),(17993,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-11.jpg',2321,2334,'image-in',312,NULL,261,147,22528,NULL,NULL),(17994,'https://www.drfields.com/wp-content/uploads/2019/06/walking15000feet-1.jpg',2321,2324,'image-in',312,NULL,333,187,25661,NULL,NULL),(17995,'https://www.youtube.com/watch?v=I-qqF2d40Tw',184,0,'external',10,NULL,NULL,NULL,NULL,NULL,NULL),(17996,'https://photos.app.goo.gl/l3vcnRmnAzjUIFjy1',184,0,'external',10,NULL,NULL,NULL,NULL,NULL,NULL),(17997,'/About/The-Athletic-Doc/Race-Report-9th-Ironman',184,348,'internal',10,8,NULL,NULL,NULL,NULL,NULL),(17998,'/About/The-Athletic-Doc/Race-Report-8th-Ironman',184,306,'internal',10,57,NULL,NULL,NULL,NULL,NULL),(17999,'/About/The-Athletic-Doc/Race-Report-7th-Ironman',184,302,'internal',10,47,NULL,NULL,NULL,NULL,NULL),(18000,'/About/The-Athletic-Doc/Race-Report-6th-Ironman',184,217,'internal',10,54,NULL,NULL,NULL,NULL,NULL),(18001,'/About/The-Athletic-Doc/Race-Report-5th-Ironman',184,184,'internal',10,10,NULL,NULL,NULL,NULL,NULL),(18002,'/About/The-Athletic-Doc/Race-Report-4th-Ironman',184,0,'internal',10,NULL,NULL,NULL,NULL,NULL,NULL),(18003,'/About/The-Athletic-Doc/Race-Report-3rd-Ironman',184,0,'internal',10,NULL,NULL,NULL,NULL,NULL,NULL),(18004,'/about/the-athletic-doc/race-report-2nd-ironman/',184,0,'internal',10,NULL,NULL,NULL,NULL,NULL,NULL),(18005,'/about/the-athletic-doc/race-report-1st-ironman/',184,0,'internal',10,NULL,NULL,NULL,NULL,NULL,NULL),(18006,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-logo.png',184,185,'image-in',10,NULL,130,220,6443,NULL,NULL),(18007,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim-2.jpg',184,187,'image-in',10,NULL,314,160,34978,NULL,NULL),(18008,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-swim.jpg',184,190,'image-in',10,NULL,450,275,60798,NULL,NULL),(18009,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-bike.jpg',184,191,'image-in',10,NULL,516,275,69566,NULL,NULL),(18010,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-running.jpg',184,197,'image-in',10,NULL,579,275,68527,NULL,NULL),(18011,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-200x200.jpg',184,199,'image-in',10,NULL,363,275,60783,NULL,NULL),(18012,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-1.jpg',184,2055,'image-in',10,NULL,363,275,60783,NULL,NULL),(18013,'https://goo.gl/photos/mMnjj9ioLVRkh56Q9',217,0,'external',54,NULL,NULL,NULL,NULL,NULL,NULL),(18014,'/About/The-Athletic-Doc/Race-Report-9th-Ironman',217,348,'internal',54,8,NULL,NULL,NULL,NULL,NULL),(18015,'/About/The-Athletic-Doc/Race-Report-8th-Ironman',217,306,'internal',54,57,NULL,NULL,NULL,NULL,NULL),(18016,'/About/The-Athletic-Doc/Race-Report-7th-Ironman',217,302,'internal',54,47,NULL,NULL,NULL,NULL,NULL),(18017,'/About/The-Athletic-Doc/Race-Report-6th-Ironman',217,217,'internal',54,54,NULL,NULL,NULL,NULL,NULL),(18018,'/About/The-Athletic-Doc/Race-Report-5th-Ironman',217,184,'internal',54,10,NULL,NULL,NULL,NULL,NULL),(18019,'/About/The-Athletic-Doc/Race-Report-4th-Ironman',217,0,'internal',54,NULL,NULL,NULL,NULL,NULL,NULL),(18020,'/About/The-Athletic-Doc/Race-Report-3rd-Ironman',217,0,'internal',54,NULL,NULL,NULL,NULL,NULL,NULL),(18021,'/about/the-athletic-doc/race-report-2nd-ironman/',217,0,'internal',54,NULL,NULL,NULL,NULL,NULL,NULL),(18022,'/about/the-athletic-doc/race-report-1st-ironman/',217,0,'internal',54,NULL,NULL,NULL,NULL,NULL,NULL),(18023,'https://www.drfields.com/wp-content/uploads/2019/06/Ironman-Cozumel-Mexico-2015-Logo.jpg',217,224,'image-in',54,NULL,126,250,19604,NULL,NULL),(18024,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-initials-115.jpg',217,231,'image-in',54,NULL,241,115,15963,NULL,NULL),(18025,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-swim-275.jpg',217,243,'image-in',54,NULL,450,275,55639,NULL,NULL),(18026,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-bike-2-275.jpg',217,248,'image-in',54,NULL,450,275,63388,NULL,NULL),(18027,'https://www.drfields.com/wp-content/uploads/2019/06/cozumel-2015-run-160.jpg',217,263,'image-in',54,NULL,352,160,32162,NULL,NULL),(18028,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-brazil-finish-1.jpg',217,2055,'image-in',54,NULL,363,275,60783,NULL,NULL),(18029,'https://orthoregen.com/',229,0,'external',53,NULL,NULL,NULL,NULL,NULL,NULL),(18030,'https://www.drfields.com/contact/',229,29,'internal',53,5,NULL,NULL,NULL,NULL,NULL),(18031,'tel:+310-453-1234',229,0,'external',53,NULL,NULL,NULL,NULL,NULL,NULL),(18032,'https://www.drfields.com/contact/',229,29,'internal',53,5,NULL,NULL,NULL,NULL,NULL),(18033,'https://www.drfields.com/contact/',229,29,'internal',53,5,NULL,NULL,NULL,NULL,NULL),(18034,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC.jpg',229,1685,'image-in',53,NULL,752,474,51591,NULL,NULL),(18035,'https://www.drfields.com/contact/',266,29,'internal',39,5,NULL,NULL,NULL,NULL,NULL),(18036,'tel:+310-453-1234',266,0,'external',39,NULL,NULL,NULL,NULL,NULL,NULL),(18037,'https://www.drfields.com/contact/',266,29,'internal',39,5,NULL,NULL,NULL,NULL,NULL),(18038,'https://www.drfields.com/contact/',266,29,'internal',39,5,NULL,NULL,NULL,NULL,NULL),(18039,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-315x500.jpg',266,1685,'image-in',39,NULL,752,474,51591,NULL,NULL),(18040,'https://goo.gl/photos/iYRMcML2UYWmW2pQ6',302,0,'external',47,NULL,NULL,NULL,NULL,NULL,NULL),(18041,'/About/The-Athletic-Doc/Race-Report-9th-Ironman',302,348,'internal',47,8,NULL,NULL,NULL,NULL,NULL),(18042,'/About/The-Athletic-Doc/Race-Report-8th-Ironman',302,306,'internal',47,57,NULL,NULL,NULL,NULL,NULL),(18043,'/About/The-Athletic-Doc/Race-Report-7th-Ironman',302,302,'internal',47,47,NULL,NULL,NULL,NULL,NULL),(18044,'/About/The-Athletic-Doc/Race-Report-6th-Ironman',302,217,'internal',47,54,NULL,NULL,NULL,NULL,NULL),(18045,'/About/The-Athletic-Doc/Race-Report-5th-Ironman',302,184,'internal',47,10,NULL,NULL,NULL,NULL,NULL),(18046,'/About/The-Athletic-Doc/Race-Report-4th-Ironman',302,0,'internal',47,NULL,NULL,NULL,NULL,NULL,NULL),(18047,'/About/The-Athletic-Doc/Race-Report-3rd-Ironman',302,0,'internal',47,NULL,NULL,NULL,NULL,NULL,NULL),(18048,'/about/the-athletic-doc/race-report-2nd-ironman/',302,0,'internal',47,NULL,NULL,NULL,NULL,NULL,NULL),(18049,'/about/the-athletic-doc/race-report-1st-ironman/',302,0,'internal',47,NULL,NULL,NULL,NULL,NULL,NULL),(18050,'https://www.drfields.com/wp-content/uploads/2019/06/ironman-switzerland-logo.jpg',302,311,'image-in',47,NULL,120,250,10960,NULL,NULL),(18051,'https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Swim-2016-275.jpg',302,313,'image-in',47,NULL,463,275,29365,NULL,NULL),(18052,'https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Bike-2016-275.jpg',302,316,'image-in',47,NULL,748,275,63126,NULL,NULL),(18053,'https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Run-2016-275.jpg',302,318,'image-in',47,NULL,550,275,50153,NULL,NULL),(18054,'https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-Line-2016-275.jpg',302,319,'image-in',47,NULL,473,275,33461,NULL,NULL),(18055,'https://www.drfields.com/wp-content/uploads/2019/06/Switzerland-Finish-2016-275.jpg',302,2060,'image-in',47,NULL,488,275,39496,NULL,NULL),(18056,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-and-two-Honduran-translators.jpg',432,434,'image-in',9,NULL,128,225,12505,NULL,NULL),(18057,'https://www.drfields.com/wp-content/uploads/2019/06/Taking-a-break-after-a-long-day.jpg',432,435,'image-in',9,NULL,169,225,15496,NULL,NULL),(18058,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.s-Fields-and-Cavalino-at-work.jpg',432,436,'image-in',9,NULL,228,225,19026,NULL,NULL),(18059,'https://www.drfields.com/wp-content/uploads/2019/06/Drs-Fields-and-Cavalino-with-the-owner-of-a-local-market.jpg',432,433,'image-in',9,NULL,176,225,20177,NULL,NULL),(18060,'https://www.drfields.com/wp-content/uploads/2019/06/Attending-a-noon-lecture.jpg',453,444,'image-in',23,NULL,150,225,11342,NULL,NULL),(18061,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Timmerman-instructs-a-new-physician.jpg',453,449,'image-in',23,NULL,150,225,14347,NULL,NULL),(18062,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-a-colleague-and-two-translators1.jpg',453,446,'image-in',23,NULL,150,225,13972,NULL,NULL),(18063,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-two-young-translators-and-the-owner-of-the-local-bi-lingual-school.jpg',453,447,'image-in',23,NULL,150,225,13974,NULL,NULL),(18064,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Patterson-giving-a-noon-time-lecture.jpg',453,448,'image-in',23,NULL,150,225,11021,NULL,NULL),(18065,'https://www.drfields.com/wp-content/uploads/2019/06/Dr..-Fields-and-the-owner-of-a-local-restaurant.jpg',453,445,'image-in',23,NULL,150,225,14008,NULL,NULL),(18066,'https://www.drfields.com/wp-content/uploads/2019/06/Local-transport.jpg',453,450,'image-in',23,NULL,150,225,18017,NULL,NULL),(18067,'https://www.drfields.com/wp-content/uploads/2019/06/One-of-the-treatment-rooms.jpg',453,451,'image-in',23,NULL,150,225,11927,NULL,NULL),(18068,'https://www.drfields.com/wp-content/uploads/2019/06/Our-make-shift-treatment-area.jpg',453,452,'image-in',23,NULL,150,225,10539,NULL,NULL),(18069,'https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-and-Matt.jpg',504,488,'image-in',58,NULL,191,255,14710,NULL,NULL),(18070,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-F.-Lecturing-1.jpg',504,489,'image-in',58,NULL,191,255,9265,NULL,NULL),(18071,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1562.jpg',504,490,'image-in',58,NULL,192,255,20004,NULL,NULL),(18072,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1727.jpg',504,491,'image-in',58,NULL,191,255,17757,NULL,NULL),(18073,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1739.jpg',504,492,'image-in',58,NULL,191,255,20162,NULL,NULL),(18074,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1760.jpg',504,493,'image-in',58,NULL,191,255,19642,NULL,NULL),(18075,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1761.jpg',504,494,'image-in',58,NULL,191,255,20474,NULL,NULL),(18076,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1790.jpg',504,495,'image-in',58,NULL,191,255,26604,NULL,NULL),(18077,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1796.jpg',504,496,'image-in',58,NULL,191,255,24653,NULL,NULL),(18078,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-adjusts-a-patient.jpg',504,497,'image-in',58,NULL,191,255,13130,NULL,NULL),(18079,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-instructs.jpg',504,498,'image-in',58,NULL,191,255,14869,NULL,NULL),(18080,'https://www.drfields.com/wp-content/uploads/2019/06/Drs-Peter-Bill-Joe-and-patient.jpg',504,499,'image-in',58,NULL,191,255,15206,NULL,NULL),(18081,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-giving-a-lecture.jpg',504,500,'image-in',58,NULL,255,217,14910,NULL,NULL),(18082,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-F-and-skeleton.jpg',504,501,'image-in',58,NULL,255,200,14358,NULL,NULL),(18083,'https://www.drfields.com/wp-content/uploads/2019/06/Dinner-at-the-hotel.jpg',504,502,'image-in',58,NULL,191,255,20747,NULL,NULL),(18084,'https://www.drfields.com/wp-content/uploads/2019/06/horse.jpg',504,503,'image-in',58,NULL,202,255,20258,NULL,NULL),(18085,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',1419,431,'internal',148,11,NULL,NULL,NULL,NULL,NULL),(18086,'https://www.drfields.com/contact/',1419,29,'internal',148,5,NULL,NULL,NULL,NULL,NULL),(18087,'https://www.drfields.com/wp-content/uploads/2019/06/drfields-Prolo-Spanish-7.jpg',1419,954,'image-in',148,NULL,200,235,19407,NULL,NULL),(18088,'https://www.drfields.com/wp-content/uploads/2019/06/Stem-Cell-Doctor-Peter-Fields-MD-DC-1-315x500.jpg',1419,2337,'image-in',148,NULL,752,474,51591,NULL,NULL),(18089,'https://www.drfields.com',1423,2109,'internal',113,2,NULL,NULL,NULL,NULL,NULL),(18090,'https://www.drfields.com/prp-treatment/',1423,0,'internal',113,NULL,NULL,NULL,NULL,NULL,NULL),(18091,'https://www.drfields.com/stem-cell-treatment/',1423,0,'internal',113,NULL,NULL,NULL,NULL,NULL,NULL),(18092,'https://www.drfields.com/wp-content/uploads/2019/06/Get-rid-of-the-pain-400x500.png',1423,3900,'image-in',113,NULL,1351,1080,689273,NULL,NULL),(18093,'https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/',1429,1459,'internal',172,131,NULL,NULL,NULL,NULL,NULL),(18094,'http://www.docguide.com/fda-warns-serious-neurologic-problems-after-epidural-corticosteroid-injections',1429,0,'external',172,NULL,NULL,NULL,NULL,NULL,NULL),(18095,'https://www.liebertpub.com/doi/abs/10.1089/acm.2019.0335',1463,0,'external',111,NULL,NULL,NULL,NULL,NULL,NULL),(18096,'https://www.annfammed.org/content/annalsfm/18/3/235.full.pdf',1463,0,'external',111,NULL,NULL,NULL,NULL,NULL,NULL),(18097,'/Contact',1463,29,'internal',111,5,NULL,NULL,NULL,NULL,NULL),(18098,'https://www.drfields.com/wp-content/uploads/2019/06/Claire.-pro-triathlete-2-Copy-2-500x500.png',1463,3775,'image-in',111,NULL,2560,2560,2517380,NULL,NULL),(18099,'http://aje.oxfordjournals.org/content/early/2015/09/15/aje.kwv105.abstract',1469,0,'external',79,NULL,NULL,NULL,NULL,NULL,NULL),(18100,'/Contact',1469,29,'internal',79,5,NULL,NULL,NULL,NULL,NULL),(18101,'http://www.nutraingredients-usa.com/Research/Antioxidants-don-t-boost-mortality-risk-says-meta-analysis-re-analysis',1469,0,'external',79,NULL,NULL,NULL,NULL,NULL,NULL),(18102,'http://link.springer.com/article/10.1007%2Fs00394-011-0224-1',1469,0,'external',79,NULL,NULL,NULL,NULL,NULL,NULL),(18103,'http://aje.oxfordjournals.org/content/early/2015/09/15/aje.kwv105.abstract',1469,0,'external',79,NULL,NULL,NULL,NULL,NULL,NULL),(18104,'http://www.nutraingredients-usa.com/Research/An-adequate-supply-of-antioxidant-nutrients-may-have-a-beneficial-role-for-healthy-aging-says-study',1469,0,'external',79,NULL,NULL,NULL,NULL,NULL,NULL),(18105,'/Contact',1469,29,'internal',79,5,NULL,NULL,NULL,NULL,NULL),(18106,'https://www.drfields.com/wp-content/uploads/2019/06/Antioxidants.jpg',1469,1107,'image-in',79,NULL,301,200,31759,NULL,NULL),(18107,'https://www.drfields.com/contact/',1482,29,'internal',163,5,NULL,NULL,NULL,NULL,NULL),(18108,'https://www.drfields.com/contact/',1482,29,'internal',163,5,NULL,NULL,NULL,NULL,NULL),(18109,'https://www.drfields.com/contact/',1482,29,'internal',163,5,NULL,NULL,NULL,NULL,NULL),(18110,'https://www.drfields.com/contact/',1484,29,'internal',22,5,NULL,NULL,NULL,NULL,NULL),(18111,'https://www.drfields.com/contact/',1488,29,'internal',20,5,NULL,NULL,NULL,NULL,NULL),(18112,'https://www.drfields.com/contact/',1490,29,'internal',212,5,NULL,NULL,NULL,NULL,NULL),(18113,'https://www.drfields.com/wp-content/uploads/2019/06/almonds-heart.jpg',1490,1133,'image-in',212,NULL,300,200,46426,NULL,NULL),(18114,'',2020,0,'internal',235,7,NULL,NULL,NULL,NULL,NULL),(18115,'https://www.drfields.com/contact/',2020,29,'internal',235,5,NULL,NULL,NULL,NULL,NULL),(18116,'https://pediatrics.aappublications.org/content/128/5/e1121',2020,0,'external',235,NULL,NULL,NULL,NULL,NULL,NULL),(18117,'/Articles/Prolotherapy-Research/Knee',2020,2020,'internal',235,235,NULL,NULL,NULL,NULL,NULL),(18118,'https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-medium-1.png',2020,4134,'image-in',235,NULL,150,150,8625,NULL,NULL),(18119,'https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/',2024,1459,'internal',180,131,NULL,NULL,NULL,NULL,NULL),(18120,'https://pubmed.ncbi.nlm.nih.gov/?term=Bayat+M&amp;cauthor_id=31819675',2024,0,'external',180,NULL,NULL,NULL,NULL,NULL,NULL),(18121,'https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-1',2024,0,'external',180,NULL,NULL,NULL,NULL,NULL,NULL),(18122,'https://pubmed.ncbi.nlm.nih.gov/?term=Raeissadat+SA&amp;cauthor_id=31819675',2024,0,'external',180,NULL,NULL,NULL,NULL,NULL,NULL),(18123,'https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-2',2024,0,'external',180,NULL,NULL,NULL,NULL,NULL,NULL),(18124,'https://pubmed.ncbi.nlm.nih.gov/?term=Mortazavian+Babaki+M&amp;cauthor_id=31819675',2024,0,'external',180,NULL,NULL,NULL,NULL,NULL,NULL),(18125,'https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-3',2024,0,'external',180,NULL,NULL,NULL,NULL,NULL,NULL),(18126,'https://pubmed.ncbi.nlm.nih.gov/?term=Rahimi-Dehgolan+S&amp;cauthor_id=31819675',2024,0,'external',180,NULL,NULL,NULL,NULL,NULL,NULL),(18127,'https://pubmed.ncbi.nlm.nih.gov/31819675/#affiliation-4',2024,0,'external',180,NULL,NULL,NULL,NULL,NULL,NULL),(18128,'https://pubmed.ncbi.nlm.nih.gov/31819675/',2024,0,'external',180,NULL,NULL,NULL,NULL,NULL,NULL),(18129,'https://www.drfields.com/articles/regenerative-orthopedics/cortisone-is-it-really-good-for-you/',2024,1459,'internal',180,131,NULL,NULL,NULL,NULL,NULL),(18130,'https://www.drfields.com/articles/regenerative-orthopedics/cortisone-injections-are-as-safe-as-you-think/',2024,2915,'internal',180,174,NULL,NULL,NULL,NULL,NULL),(18131,'https://www.drfields.com/wp-content/uploads/2019/06/elbow-pain-medium-1.png',2024,4124,'image-in',180,NULL,150,150,8610,NULL,NULL),(18132,'https://prolotherapy.com/Topol_Regenerative%20Injection%20of%20Elite%20Athletes%20with%20Career-Altering%20Chronic%20Groin%20Pain%20Who%20Fail%20Conservative%20Treatment_2008.pdf',2028,0,'external',74,NULL,NULL,NULL,NULL,NULL,NULL),(18133,'https://prolotherapy.com/Topol_Regenerative%20Injection%20of%20Elite%20Athletes%20with%20Career-Altering%20Chronic%20Groin%20Pain%20Who%20Fail%20Conservative%20Treatment_2008.pdf',2028,0,'external',74,NULL,NULL,NULL,NULL,NULL,NULL),(18134,'https://www.drfields.com/contact/',2028,29,'internal',74,5,NULL,NULL,NULL,NULL,NULL),(18135,'/Articles/Prolotherapy-Research/Groin-Pelvis',2028,0,'internal',74,NULL,NULL,NULL,NULL,NULL,NULL),(18136,'/Testimonials/Cellular-Regeneration-Testimonials/',2082,1700,'internal',221,88,NULL,NULL,NULL,NULL,NULL),(18137,'https://www.drfields.com/wp-content/uploads/2019/06/knee.-avoid-replacement2-400x500.png',2082,4115,'image-in',221,NULL,1350,1080,1361225,NULL,NULL),(18138,'https://www.drfields.com',2353,2109,'internal',207,2,NULL,NULL,NULL,NULL,NULL),(18139,'https://www.drfields.com/wp-content/uploads/2019/06/meniscectomy-500x500.png',2353,4105,'image-in',207,NULL,1080,1080,1216097,NULL,NULL),(18140,'https://www.drfields.com/wp-content/uploads/2019/06/knee-pain-man.jpg',2353,2357,'image-in',207,NULL,375,250,27574,NULL,NULL),(18141,'https://www.drfields.com/regenerative-techniques/prp-treatment/',2362,0,'internal',140,NULL,NULL,NULL,NULL,NULL,NULL),(18142,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',2362,431,'internal',140,11,NULL,NULL,NULL,NULL,NULL),(18143,'/articles/regenerative-orthopedics/',2362,0,'internal',140,124,NULL,NULL,NULL,NULL,NULL),(18144,'https://www.drfields.com/wp-content/uploads/2019/06/labral-tear-400x500.png',2362,2198,'image-in',140,NULL,1351,1080,1088140,NULL,NULL),(18145,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',2586,431,'internal',200,11,NULL,NULL,NULL,NULL,NULL),(18146,'https://en.wikipedia.org/wiki/Prolotherapy',2586,0,'external',200,NULL,NULL,NULL,NULL,NULL,NULL),(18147,'https://www.drfields.com/wp-content/uploads/2019/08/Stem-Cell-Doctor-in-Santa-Monica.jpg',2586,2588,'image-in',200,NULL,533,800,62002,NULL,NULL),(18148,'https://www.drfields.com/articles/prolo-news/repairing-sports-injuries-with-regenerative-orthopedics/',2561,0,'internal',214,NULL,NULL,NULL,NULL,NULL,NULL),(18149,'https://www.cirm.ca.gov/patients/power-stem-cells',2561,0,'external',214,NULL,NULL,NULL,NULL,NULL,NULL),(18150,'https://www.drfields.com/wp-content/uploads/2019/08/Regenerative-Orthopedics-.jpg',2561,2563,'image-in',214,NULL,544,800,57151,NULL,NULL),(18151,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',2858,431,'internal',227,11,NULL,NULL,NULL,NULL,NULL),(18152,'https://www.drfields.com/regenerative-techniques/prp-treatment/',2858,0,'internal',227,NULL,NULL,NULL,NULL,NULL,NULL),(18153,'/articles/regenerative-orthopedics/',2858,0,'internal',227,124,NULL,NULL,NULL,NULL,NULL),(18154,'https://www.drfields.com/wp-content/uploads/2019/10/MCL-tears-500x500.jpg',2858,4049,'image-in',227,NULL,1080,1080,644779,NULL,NULL),(18155,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',2892,431,'internal',217,11,NULL,NULL,NULL,NULL,NULL),(18156,'/articles/regenerative-orthopedics/',2892,0,'internal',217,124,NULL,NULL,NULL,NULL,NULL),(18157,'https://www.drfields.com/wp-content/uploads/2019/10/Snapping-Hip-Syndrome-500x500.png',2892,4032,'image-in',217,NULL,1080,1080,770251,NULL,NULL),(18158,'https://www.drfields.com/articles/regenerative-orthopedics/',3416,0,'internal',31,124,NULL,NULL,NULL,NULL,NULL),(18159,'https://www.drfields.com/articles/regenerative-orthopedics/',3416,0,'internal',31,124,NULL,NULL,NULL,NULL,NULL),(18160,'https://www.drfields.com/articles/regenerative-orthopedics/how-arthritis-affects-older-athletes/',3416,3484,'internal',31,121,NULL,NULL,NULL,NULL,NULL),(18161,'https://www.drfields.com/contact/',3416,29,'internal',31,5,NULL,NULL,NULL,NULL,NULL),(18162,'/articles/regenerative-orthopedics/',3416,0,'internal',31,124,NULL,NULL,NULL,NULL,NULL),(18163,'https://www.drfields.com/about/the-athletic-doc/about-the-athletic-doc/',3416,373,'internal',31,134,NULL,NULL,NULL,NULL,NULL),(18164,'https://orthoregen.com/',3416,0,'external',31,NULL,NULL,NULL,NULL,NULL,NULL),(18165,'https://www.drfields.com/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',3416,0,'internal',31,NULL,NULL,NULL,NULL,NULL,NULL),(18166,'https://www.drfields.com/wp-content/uploads/2019/12/Page-01.jpg',3416,3462,'image-in',31,NULL,1249,955,604367,NULL,NULL),(18167,'https://www.drfields.com/wp-content/uploads/2019/12/Page-02.jpg',3416,3465,'image-in',31,NULL,1249,955,620489,NULL,NULL),(18168,'https://www.drfields.com/wp-content/uploads/2019/12/page-3.jpg',3416,3466,'image-in',31,NULL,1249,955,618116,NULL,NULL),(18169,'https://www.drfields.com/wp-content/uploads/2019/12/page-04.jpg',3416,3467,'image-in',31,NULL,1249,955,323470,NULL,NULL),(18170,'https://www.drfields.com/regenerative-techniques/prp-treatment/',3409,0,'internal',68,NULL,NULL,NULL,NULL,NULL,NULL),(18171,'https://www.drfields.com/contact/',3409,29,'internal',68,5,NULL,NULL,NULL,NULL,NULL),(18172,'/articles/regenerative-orthopedics/',3409,0,'internal',68,124,NULL,NULL,NULL,NULL,NULL),(18173,'https://www.drfields.com/wp-content/uploads/2019/12/May-Athlete-Knee-v101219-500x500.jpg',3409,3411,'image-in',68,NULL,2560,2560,3614418,NULL,NULL),(18174,'https://www.drfields.com/wp-content/uploads/2019/12/Josh-knee-v101219-500x500.png',3409,3410,'image-in',68,NULL,1080,1080,504100,NULL,NULL),(18175,'https://youtu.be/jhN7D30YcYI',3526,0,'external',87,NULL,NULL,NULL,NULL,NULL,NULL),(18176,'/regenerative-techniques/prp-treatment/',3526,0,'internal',87,NULL,NULL,NULL,NULL,NULL,NULL),(18177,'/regenerative-techniques/dextrose-prolotherapy/prolotherapy-treatment-overview/',3526,0,'internal',87,NULL,NULL,NULL,NULL,NULL,NULL),(18178,'/articles/regenerative-orthopedics/',3526,0,'internal',87,124,NULL,NULL,NULL,NULL,NULL),(18179,'https://www.drfields.com/wp-content/uploads/2020/06/Kelsey.-knee.stems-copy-500x500.png',3526,3742,'image-in',87,NULL,1080,1080,666287,NULL,NULL),(18180,'https://www.drfields.com/articles/regenerative-orthopedics/stem-cell-treatment-an-alternative-to-joint-replacement/',3547,2345,'internal',128,220,NULL,NULL,NULL,NULL,NULL),(18181,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment/',3547,431,'internal',128,11,NULL,NULL,NULL,NULL,NULL),(18182,'/articles/regenerative-orthopedics/',3547,0,'internal',128,124,NULL,NULL,NULL,NULL,NULL),(18183,'https://youtu.be/rCf1JO5aNNA',3584,0,'external',15,NULL,NULL,NULL,NULL,NULL,NULL),(18184,'https://youtu.be/rCf1JO5aNNA',3584,0,'external',15,NULL,NULL,NULL,NULL,NULL,NULL),(18185,'https://www.drfields.com/contact/',3584,29,'internal',15,5,NULL,NULL,NULL,NULL,NULL),(18186,'/articles/regenerative-orthopedics/',3584,0,'internal',15,124,NULL,NULL,NULL,NULL,NULL),(18187,'https://www.drfields.com/wp-content/uploads/2020/03/Tony-Shoulder-500x377.png',3584,3956,'image-in',15,NULL,968,1284,723069,NULL,NULL),(18188,'/about/the-athletic-doc/about-the-athletic-doc/',3638,373,'internal',33,134,NULL,NULL,NULL,NULL,NULL),(18189,'/articles/regenerative-orthopedics/',3638,0,'internal',33,124,NULL,NULL,NULL,NULL,NULL),(18190,'https://www.drfields.com/wp-content/uploads/2020/04/image0-400x500.jpeg',3638,3664,'image-in',33,NULL,1350,1080,202242,NULL,NULL),(18209,'https://www.drfields.com/wp-content/uploads/2022/08/Cortisone.-Jama-1-500x419.png',5446,5455,'image-in',1376,NULL,788,940,609713,NULL,NULL),(18212,'https://www.drfields.com/contact/',5459,29,'internal',1379,5,NULL,NULL,NULL,NULL,NULL),(18213,'https://www.drfields.com/wp-content/uploads/2022/08/Rotator-Cuff.-J-Ortho-Surg-Research-500x425.jpeg',5459,5460,'image-in',1379,NULL,835,983,201707,NULL,NULL),(18217,'https://urldefense.proofpoint.com/v2/url?u=http-3A__www.medicina-2Dantienvejecimiento.net_&amp;d=DwMCaQ&amp;c=WO-RGvefibhHBZq3fL85hQ&amp;r=1mlZdwzxLMndjoil0MO5evkLwBowWYcXVyCp4Vbxfds&amp;m=-Zcix8_Tm618JjCVm5ExeqsI0cYP75-OIrRKIfbDyJL_F3-gD7ZpIucCH6k9b3dQ&a',1471,0,'external',78,NULL,NULL,NULL,NULL,NULL,NULL),(18219,'https://www.drfields.com/wp-content/uploads/2022/08/Sprained-Ankle-500x419.png',5474,5475,'image-in',1381,NULL,788,940,1276398,NULL,NULL),(18220,'https://www.youtube.com/watch?v=bC6PwyGefiY&#038;width=640&#038;height=480',509,0,'external',17,NULL,NULL,NULL,NULL,NULL,NULL),(18221,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',509,0,'external',17,NULL,NULL,NULL,NULL,NULL,NULL),(18224,'https://www.drfields.com/wp-content/uploads/2019/06/PRP.-Neck.-Lower-back-1-500x375.jpeg',509,5491,'image-in',17,NULL,1312,1749,362448,NULL,NULL),(18230,'https://www.drfields.com/wp-content/uploads/2022/09/Patellar-Tendinopathy.-PRP.-Amer-J-of-Sports-Med.2ndpng-300x300.png',5500,5506,'image-in',1385,NULL,788,940,1029123,NULL,NULL),(18231,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',382,0,'external',13,NULL,NULL,NULL,NULL,NULL,NULL),(18232,'https://www.youtube.com/watch?v=scdadG1A2Vk&#038;width=640&#038;height=480',382,0,'external',13,NULL,NULL,NULL,NULL,NULL,NULL),(18234,'https://www.drfields.com/wp-content/uploads/2022/09/Tennis-Elbow.-PRP.-Amer-J-of-Phys-Med-Rehab-500x419.png',5513,5514,'image-in',1388,NULL,788,940,632245,NULL,NULL),(18236,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',2536,0,'external',135,NULL,NULL,NULL,NULL,NULL,NULL),(18238,'https://www.drfields.com/wp-content/uploads/2022/10/Arthritis.-Jnl-Clinical-OrthoTrauma-500x419.png',5522,5533,'image-in',1390,NULL,788,940,593958,NULL,NULL),(18243,'https://www.drfields.com/wp-content/uploads/2019/06/With-two-other-student-docs-and-a-patient.jpg',543,563,'image-in',52,NULL,191,255,14958,NULL,NULL),(18244,'https://www.drfields.com/wp-content/uploads/2019/06/With-a-local-translator-a-student-doc-from-Italy-and-a-patient.jpg',543,562,'image-in',52,NULL,191,255,12781,NULL,NULL),(18245,'https://www.drfields.com/wp-content/uploads/2019/06/Teaching-a-doc.jpg',543,561,'image-in',52,NULL,191,255,12338,NULL,NULL),(18246,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-the-dentist-Dr-Mansilla.jpg',543,560,'image-in',52,NULL,191,191,25347,NULL,NULL),(18247,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-Mary-Doherty-HHF-Operations-Director.jpg',543,559,'image-in',52,NULL,191,255,11755,NULL,NULL),(18248,'https://www.drfields.com/wp-content/uploads/2019/06/The-Olanchito-group.jpg',543,558,'image-in',52,NULL,191,255,18496,NULL,NULL),(18249,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-helps-out-the-dentist.jpg',543,557,'image-in',52,NULL,191,255,15808,NULL,NULL),(18250,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-a-student-doc-and-a-patient.jpg',543,556,'image-in',52,NULL,191,255,13761,NULL,NULL),(18251,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-another-doc-and-a-helper.jpg',543,555,'image-in',52,NULL,191,255,12122,NULL,NULL),(18252,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-another-doc-our-translator-and-a-patient.jpg',543,554,'image-in',52,NULL,191,255,15121,NULL,NULL),(18253,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-with-other-docs-at-the-final-dinner.jpg',543,553,'image-in',52,NULL,166,255,15407,NULL,NULL),(18254,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-a-helper-and-Dr-Bones.jpg',543,552,'image-in',52,NULL,191,255,13731,NULL,NULL),(18255,'https://www.drfields.com/wp-content/uploads/2019/06/Having-dinner-in-Olanchito.jpg',543,551,'image-in',52,NULL,191,255,18402,NULL,NULL),(18256,'https://www.drfields.com/wp-content/uploads/2019/06/Local-street-scene-in-the-main-city.jpg',543,550,'image-in',52,NULL,191,255,18327,NULL,NULL),(18257,'https://www.drfields.com/wp-content/uploads/2019/06/The-bigger-city.jpg',543,549,'image-in',52,NULL,191,255,15554,NULL,NULL),(18258,'https://www.drfields.com/wp-content/uploads/2019/06/Treating-a-patient-with-a-student-doc.jpg',543,548,'image-in',52,NULL,191,255,13148,NULL,NULL),(18259,'https://www.drfields.com/wp-content/uploads/2019/06/With-a-local-translator.jpg',543,547,'image-in',52,NULL,191,255,13052,NULL,NULL),(18260,'https://www.drfields.com/wp-content/uploads/2019/06/With-Disbel-Mansilla-DDS-and-her-staff.jpg',543,546,'image-in',52,NULL,191,200,21120,NULL,NULL),(18261,'https://www.drfields.com/about/philanthropy/honduras-2013/the-final-party/',572,583,'internal',55,102,NULL,NULL,NULL,NULL,NULL),(18262,'https://www.drfields.com/about/philanthropy/honduras-2013/olanchito-the-town/',572,585,'internal',55,98,NULL,NULL,NULL,NULL,NULL),(18263,'https://www.drfields.com/about/philanthropy/honduras-2013/mid-weekend/',572,587,'internal',55,14,NULL,NULL,NULL,NULL,NULL),(18264,'https://www.drfields.com/about/philanthropy/honduras-2013/in-the-clinic/',572,589,'internal',55,93,NULL,NULL,NULL,NULL,NULL),(18265,'https://www.drfields.com/about/philanthropy/honduras-2013/before-and-after/',572,591,'internal',55,100,NULL,NULL,NULL,NULL,NULL),(18266,'https://www.drfields.com/wp-content/uploads/2019/06/Dr-Fields-and-two-aides.jpg',416,418,'image-in',56,NULL,150,225,14295,NULL,NULL),(18267,'https://www.drfields.com/wp-content/uploads/2019/06/Dr.-Fields-his-staff-and-a-patient1.jpg',416,417,'image-in',56,NULL,150,225,15249,NULL,NULL),(18268,'https://www.drfields.com/wp-content/uploads/2019/06/Steven-Liza-and-Peter.jpg',416,419,'image-in',56,NULL,150,225,12011,NULL,NULL),(18269,'https://www.drfields.com/wp-content/uploads/2019/06/The-gang-at-dinner.jpg',416,420,'image-in',56,NULL,150,225,17661,NULL,NULL),(18270,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN0961.jpg',627,626,'image-in',48,NULL,191,255,13990,NULL,NULL),(18271,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1029.jpg',627,625,'image-in',48,NULL,191,255,16657,NULL,NULL),(18272,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1134.jpg',627,624,'image-in',48,NULL,191,255,15908,NULL,NULL),(18273,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1032.jpg',627,623,'image-in',48,NULL,191,255,19023,NULL,NULL),(18274,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN0938.jpg',627,622,'image-in',48,NULL,191,255,17819,NULL,NULL),(18275,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN0947.jpg',627,621,'image-in',48,NULL,191,255,17029,NULL,NULL),(18276,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1154.jpg',627,620,'image-in',48,NULL,255,191,23681,NULL,NULL),(18277,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1150.jpg',627,619,'image-in',48,NULL,255,191,15104,NULL,NULL),(18278,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1053.jpg',627,618,'image-in',48,NULL,191,255,14802,NULL,NULL),(18279,'https://www.drfields.com/wp-content/uploads/2019/06/DSCN1059.jpg',627,616,'image-in',48,NULL,191,255,25161,NULL,NULL),(18280,'https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png',2109,5575,'image-in',2,NULL,737,460,77814,NULL,NULL),(18281,'https://www.youtube.com/watch?v=YoXRC87KNuM&#038;width=640&#038;height=480',431,0,'external',11,NULL,NULL,NULL,NULL,NULL,NULL),(18282,'https://www.youtube.com/watch?v=IajO8GpFeng&#038;width=640&#038;height=480',431,0,'external',11,NULL,NULL,NULL,NULL,NULL,NULL),(18283,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',431,0,'external',11,NULL,NULL,NULL,NULL,NULL,NULL),(18284,'https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.1-400x500.png',431,5586,'image-in',11,NULL,1351,1080,896183,NULL,NULL),(18285,'https://www.drfields.com/wp-content/uploads/2019/06/stem-cells.-1-500x500.png',431,5587,'image-in',11,NULL,1080,1080,919899,NULL,NULL),(18286,'https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-Cover-reprint.jpg',5589,5591,'image-in',1416,NULL,1232,955,312886,NULL,NULL),(18287,'https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-page-1.jpg',5589,5592,'image-in',1416,NULL,1277,955,342898,NULL,NULL),(18288,'https://www.drfields.com/wp-content/uploads/2022/11/Townsend-Letter-page-2.jpg',5589,5590,'image-in',1416,NULL,1252,955,430433,NULL,NULL),(18290,'https://www.drfields.com/wp-content/uploads/2022/11/shoulder-pain.-Hauser.png',5598,5599,'image-in',1422,NULL,788,940,674453,NULL,NULL),(18293,'https://www.drfields.com/wp-content/uploads/2022/11/Non-surgical-arthritis-TX-300x300.png',5605,5606,'image-in',1424,NULL,1054,1059,714726,NULL,NULL),(18294,'https://www.drfields.com/wp-content/uploads/2022/11/Stem-Cell-Injections-in-Los-Angeles-CA-300x300.png',5605,5607,'image-in',1424,NULL,1050,1039,710919,NULL,NULL),(18296,'https://www.drfields.com/wp-content/uploads/2022/11/dr-fields-v1-021120.png',1473,5575,'image-in',127,NULL,737,460,77814,NULL,NULL),(18297,'https://press.rsna.org/timssnet/media/pressreleases/14_pr_target.cfm?id=2386',5633,0,'external',1427,NULL,NULL,NULL,NULL,NULL,NULL),(18300,'https://www.drfields.com/wp-content/uploads/2022/10/Copy-of-Arthritis.-rthroscopic-Surgery-for-Degenerative-Knee-Arthritis-and-Meniscal-Tears-1-300x300.jpg',5540,5642,'image-in',1392,NULL,788,940,123978,NULL,NULL),(18301,'https://www.drfields.com/wp-content/uploads/2023/01/PRP-and-BMC-500x419.png',5651,5652,'image-in',1433,NULL,788,940,926671,NULL,NULL),(18302,'https://www.ncbi.nlm.nih.gov/pubmed/18310313',5657,0,'external',1436,NULL,NULL,NULL,NULL,NULL,NULL),(18303,'http://www.ncbi.nlm.nih.gov/pubmed/18240327',5657,0,'external',1436,NULL,NULL,NULL,NULL,NULL,NULL),(18304,'https://www.drfields.com/wp-content/uploads/2023/01/Prolo.knee-OA-500x375.jpeg',5657,5653,'image-in',1436,NULL,1312,1749,245647,NULL,NULL),(18307,'https://www.drfields.com/regenerative-techniques/stem-cell-treatment-los-angeles/',5651,431,'internal',1433,11,NULL,NULL,NULL,NULL,NULL),(18308,'https://www.drfields.com/regenerative-techniques/platelet-rich-plasma-treatments-and-prolotherapy/',5651,414,'internal',1433,12,NULL,NULL,NULL,NULL,NULL),(18309,'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4463777/',5651,0,'external',1433,NULL,NULL,NULL,NULL,NULL,NULL),(18310,'https://www.drfields.com/wp-content/uploads/2023/01/arthroscopy-500x415.png',5676,5678,'image-in',1437,NULL,825,993,649242,NULL,NULL),(18312,'https://www.drfields.com/wp-content/uploads/2023/02/red-knee-500x419.png',5686,5687,'image-in',1439,NULL,788,940,347999,NULL,NULL),(18316,'https://www.drfields.com/wp-content/uploads/2023/02/shoulder-degeneration.-Prolotherapy-1-500x419.png',5694,5701,'image-in',1441,NULL,788,940,1440181,NULL,NULL),(18317,'https://www.drfields.com/wp-content/uploads/2023/02/Back-Pain-Treatment-500x419.png',5704,5705,'image-in',1444,NULL,788,940,545869,NULL,NULL),(18319,'https://www.drfields.com/wp-content/uploads/2023/03/Prolotherapy-Knee-Arthritis-1-500x419.png',5715,5716,'image-in',1446,NULL,788,940,999211,NULL,NULL),(18321,'https://www.youtube.com/watch?v=ThzUVq3rx2Y&#038;width=640&#038;height=480',615,0,'external',77,NULL,NULL,NULL,NULL,NULL,NULL),(18322,'',615,0,'internal',77,7,NULL,NULL,NULL,NULL,NULL),(18323,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',615,0,'external',77,NULL,NULL,NULL,NULL,NULL,NULL),(18324,'https://www.youtube.com/watch?v=VkDlCmTq6dE&#038;width=640&#038;height=480',511,0,'external',136,NULL,NULL,NULL,NULL,NULL,NULL),(18325,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',511,0,'external',136,NULL,NULL,NULL,NULL,NULL,NULL),(18326,'https://www.drfields.com/wp-content/uploads/2022/11/shoulder-pain.-Hauser-500x419.png',511,5599,'image-in',136,NULL,788,940,674453,NULL,NULL),(18327,'https://www.drfields.com/wp-content/uploads/2023/03/DDD-Treatment-2-500x419.png',5728,5729,'image-in',1448,NULL,788,940,681627,NULL,NULL),(18329,'https://www.drfields.com/wp-content/uploads/2023/04/Knee-Replacement-Failures-500x419.png',5736,5737,'image-in',1450,NULL,788,940,736897,NULL,NULL),(18333,'https://www.drfields.com/wp-content/uploads/2023/04/Cervical-Instability-2-1-500x419.png',5747,5752,'image-in',1452,NULL,788,940,655580,NULL,NULL),(18334,'https://www.youtube.com/watch?v=hA1FVmxWixE&#038;width=640&#038;height=480',469,0,'external',4,NULL,NULL,NULL,NULL,NULL,NULL),(18335,'https://www.youtube.com/watch?v=vQGBBEARjMk&#038;width=640&#038;height=480',469,0,'external',4,NULL,NULL,NULL,NULL,NULL,NULL),(18336,'https://www.carecredit.com/go/762HNB/bb3poscustacqbtnclk08132020/?dtc=Ds5X&amp;promocode=CLT/',469,0,'external',4,NULL,NULL,NULL,NULL,NULL,NULL),(18337,'https://www.drfields.com/wp-content/uploads/2019/06/Back-Pain.-Prolotherapy-500x375.jpeg',469,5755,'image-in',4,NULL,1312,1749,360006,NULL,NULL),(18338,'https://www.drfields.com/wp-content/uploads/2023/04/meniscectomy.-Osteoarthritis-and-Cartilage-500x419.png',5760,5761,'image-in',1456,NULL,788,940,507799,NULL,NULL),(18340,'https://www.drfields.com/conditions/chronic-pain/chronic-knee-pain/',5773,0,'internal',1458,NULL,NULL,NULL,NULL,NULL,NULL),(18341,'https://www.drfields.com/conditions/chronic-pain/chronic-shoulder-pain/',5773,511,'internal',1458,136,NULL,NULL,NULL,NULL,NULL),(18342,'https://www.drfields.com/conditions/chronic-pain/chronic-neck-pain/',5773,509,'internal',1458,17,NULL,NULL,NULL,NULL,NULL),(18343,'https://www.drfields.com/conditions/chronic-pain/chronic-elbow-pain/',5773,0,'internal',1458,NULL,NULL,NULL,NULL,NULL,NULL),(18344,'https://www.drfields.com/contact/',5773,29,'internal',1458,5,NULL,NULL,NULL,NULL,NULL),(18345,'https://www.drfields.com/wp-content/uploads/2023/05/JSES-Reviews-Reports-and-Techniques.-Musculoskeletal-500x419.png',5773,5774,'image-in',1458,NULL,788,940,609851,NULL,NULL),(18347,'https://doi.org/10.20885/JKKI.Vol14.Iss1.art8',5783,0,'external',1460,NULL,NULL,NULL,NULL,NULL,NULL),(18348,'https://www.drfields.com/wp-content/uploads/2023/05/Arthritis.-Orthopedic-Reviews-500x419.png',5783,5784,'image-in',1460,NULL,788,940,165012,NULL,NULL),(18351,'https://www.ncbi.nlm.nih.gov/pubmed/10543604',5795,0,'external',1462,NULL,NULL,NULL,NULL,NULL,NULL),(18352,'https://www.drfields.com/wp-content/uploads/2023/06/Tennis-Elbow-American-Journal-of-Phy-Med-Rehab-1-500x419.png',5795,5796,'image-in',1462,NULL,788,940,761595,NULL,NULL),(18353,'https://www.drfields.com/wp-content/uploads/2023/06/Hip-Arthritis-500x419.png',5798,5799,'image-in',1464,NULL,788,940,722199,NULL,NULL),(18356,'https://www.drfields.com/wp-content/uploads/2023/07/Low-Back-Pain-500x419.png',5815,5816,'image-in',1466,NULL,788,940,916250,NULL,NULL),(18358,'/articles/regenerative-orthopedics/back-pain-specialist/',2109,5815,'internal',2,1466,NULL,NULL,NULL,NULL,NULL),(18359,'https://www.drfields.com/wp-content/uploads/2023/07/Neck-Arthritis-500x419.png',5827,5828,'image-in',1468,NULL,788,940,502230,NULL,NULL),(18360,'/articles/regenerative-orthopedics/arthritis-neck-treatment/',2109,5827,'internal',2,1468,NULL,NULL,NULL,NULL,NULL),(18361,'http://www.ncbi.nlm.nih.gov/pubmed?term=Best%20TM%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983',5835,0,'external',1470,NULL,NULL,NULL,NULL,NULL,NULL),(18362,'http://www.ncbi.nlm.nih.gov/pubmed?term=Beamsley%20M%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983',5835,0,'external',1470,NULL,NULL,NULL,NULL,NULL,NULL),(18363,'http://www.ncbi.nlm.nih.gov/pubmed?term=Patterson%20J%5BAuthor%5D&amp;cauthor=true&amp;cauthor_uid=16162983',5835,0,'external',1470,NULL,NULL,NULL,NULL,NULL,NULL),(18364,'https://www.drfields.com/wp-content/uploads/2023/07/foot-pain-1-500x419.png',5835,5836,'image-in',1470,NULL,788,940,576145,NULL,NULL),(18365,'/articles/regenerative-orthopedics/foot-pain-treatment/',2109,5835,'internal',2,1470,NULL,NULL,NULL,NULL,NULL),(18366,'https://www.drfields.com/wp-content/uploads/2023/08/ACL-Tearblog.1png-500x419.png',5847,5848,'image-in',1472,NULL,788,940,479559,NULL,NULL),(18367,'/articles/regenerative-orthopedics/acl-tear-repair/',2109,5847,'internal',2,1472,NULL,NULL,NULL,NULL,NULL),(18368,'https://www.drfields.com/wp-content/uploads/2023/08/hip-replacement-alternative-1-500x422.png',5860,5862,'image-in',1475,NULL,718,851,132209,NULL,NULL),(18369,'/articles/hip-replacement-alternatives/',2109,5860,'internal',2,1475,NULL,NULL,NULL,NULL,NULL),(18370,'https://www.drfields.com/wp-content/uploads/2023/09/osteoarthritis-knee-treatment--500x419.png',5877,5880,'image-in',1478,NULL,788,940,536991,NULL,NULL),(18371,'/articles/osteoarthritis-knee-treatment/',2109,5877,'internal',2,1478,NULL,NULL,NULL,NULL,NULL),(18372,'https://www.drfields.com/wp-content/uploads/2023/09/Carpal-tunnel-500x419.png',5895,5896,'image-in',1480,NULL,788,940,157743,NULL,NULL),(18373,'/articles/non-surgical-carpal-tunnel-treatment/',2109,5895,'internal',2,1480,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `wp_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_seo_meta`
--

DROP TABLE IF EXISTS `wp_yoast_seo_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_seo_meta` (
  `object_id` bigint(20) unsigned NOT NULL,
  `internal_link_count` int(10) unsigned DEFAULT NULL,
  `incoming_link_count` int(10) unsigned DEFAULT NULL,
  UNIQUE KEY `object_id` (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_meta`
--

LOCK TABLES `wp_yoast_seo_meta` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_meta` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_meta` VALUES (3,0,0),(4,0,0),(29,0,99),(92,NULL,5),(104,NULL,0),(120,NULL,6),(131,NULL,6),(153,9,6),(184,9,6),(202,NULL,2),(207,2,1),(213,NULL,1),(216,6,1),(217,9,6),(229,3,0),(266,3,0),(276,0,0),(281,0,0),(282,0,0),(292,2,0),(302,9,6),(306,9,6),(348,NULL,7),(373,12,14),(382,11,31),(395,10,2),(414,4,15),(431,8,16),(469,9,4),(486,6,2),(509,6,3),(511,7,3),(524,6,2),(528,4,0),(533,19,5),(536,8,0),(543,0,0),(545,6,0),(567,6,0),(570,0,0),(571,0,0),(576,0,0),(579,0,0),(582,7,0),(583,NULL,2),(585,NULL,2),(587,NULL,2),(589,5,2),(591,5,2),(595,8,0),(615,7,0),(627,0,0),(632,9,2),(677,0,0),(678,0,0),(680,NULL,0),(689,NULL,0),(703,NULL,0),(977,0,0),(1012,NULL,17),(1047,0,0),(1268,NULL,0),(1282,0,0),(1340,24,18),(1374,NULL,0),(1379,0,1),(1397,1,2),(1401,0,0),(1406,1,0),(1412,NULL,1),(1414,1,2),(1416,3,0),(1419,2,0),(1421,0,0),(1422,0,0),(1423,3,0),(1425,0,0),(1426,0,0),(1427,0,0),(1428,0,0),(1429,1,0),(1432,0,0),(1433,0,0),(1434,1,0),(1436,1,0),(1438,0,0),(1439,0,0),(1441,0,0),(1442,0,0),(1443,0,0),(1444,0,0),(1445,0,0),(1446,0,0),(1447,0,0),(1448,0,0),(1459,NULL,4),(1461,1,0),(1463,1,1),(1466,0,0),(1467,0,0),(1473,2,0),(1477,0,0),(1478,0,0),(1500,0,0),(1508,NULL,1),(1510,3,0),(1516,0,0),(1518,0,0),(1520,0,0),(1522,0,0),(1523,0,0),(1526,0,0),(1549,0,0),(1551,0,0),(1558,NULL,1),(1567,2,0),(1584,6,1),(1614,NULL,1),(1667,15,0),(1669,4,0),(1682,1,1),(1696,0,0),(1700,19,19),(1702,18,20),(1704,18,18),(1706,18,18),(1708,18,0),(1711,18,18),(1713,18,18),(1715,18,18),(1717,19,18),(1719,18,17),(1721,18,17),(1723,18,17),(1725,18,17),(1727,18,17),(1729,18,18),(1758,NULL,0),(1773,NULL,0),(1789,NULL,1),(1817,NULL,0),(1820,7,1),(1823,0,0),(1824,0,0),(1825,0,0),(1828,0,0),(1829,0,0),(1830,0,0),(1831,NULL,1),(1837,NULL,1),(1845,NULL,1),(1848,NULL,1),(1949,0,0),(1973,0,0),(2011,0,0),(2014,4,0),(2020,3,1),(2024,3,0),(2028,2,0),(2082,1,1),(2102,0,0),(2103,0,0),(2104,0,0),(2105,0,0),(2106,0,0),(2109,22,4),(2111,0,0),(2117,NULL,0),(2189,0,0),(2190,0,0),(2191,0,0),(2192,0,0),(2193,0,0),(2194,0,0),(2195,0,0),(2196,0,0),(2197,0,0),(2199,0,0),(2200,0,0),(2201,0,0),(2202,0,0),(2203,0,0),(2205,0,0),(2207,0,0),(2208,8,0),(2219,NULL,1),(2232,NULL,1),(2239,NULL,1),(2257,NULL,1),(2274,NULL,1),(2283,NULL,1),(2294,NULL,1),(2309,NULL,0),(2312,0,0),(2314,NULL,0),(2319,NULL,0),(2321,NULL,0),(2335,1,1),(2339,0,0),(2341,0,0),(2342,0,0),(2345,0,1),(2347,NULL,2),(2349,0,0),(2350,0,0),(2351,0,0),(2352,0,0),(2353,1,0),(2362,3,0),(2364,0,0),(2366,NULL,0),(2382,0,0),(2402,0,0),(2403,0,0),(2404,0,0),(2405,0,0),(2406,0,0),(2407,0,0),(2408,0,0),(2409,0,0),(2410,0,0),(2411,0,0),(2412,0,0),(2413,0,0),(2414,0,0),(2415,0,0),(2416,0,0),(2417,0,0),(2418,0,0),(2419,NULL,0),(2450,NULL,0),(2455,0,0),(2464,0,0),(2500,0,0),(2501,1,0),(2503,1,0),(2505,0,0),(2529,0,0),(2536,4,0),(2545,0,0),(2546,0,0),(2555,1,0),(2561,1,0),(2565,1,0),(2569,0,0),(2570,0,0),(2575,0,0),(2576,0,0),(2577,0,0),(2586,1,0),(2592,1,0),(2597,0,0),(2610,0,0),(2611,1,0),(2615,0,0),(2620,0,0),(2649,0,0),(2650,1,1),(2665,3,0),(2667,0,0),(2691,0,0),(2694,0,0),(2695,0,0),(2697,0,0),(2700,0,0),(2732,0,0),(2757,0,0),(2759,0,0),(2760,2,0),(2762,0,0),(2772,0,0),(2773,1,0),(2775,1,0),(2781,0,0),(2784,0,0),(2795,0,0),(2804,0,0),(2833,17,3),(2841,0,0),(2851,0,0),(2858,3,1),(2864,0,0),(2865,1,0),(2876,0,0),(2880,0,0),(2884,0,0),(2887,0,0),(2892,2,0),(2894,1,2),(2896,0,0),(2898,0,0),(2900,0,0),(2901,0,0),(2912,1,0),(2915,1,1),(2965,0,0),(2966,0,0),(2967,0,0),(2968,0,0),(2976,0,0),(2977,0,0),(2978,0,0),(2979,0,0),(2980,0,0),(2981,0,0),(2982,0,0),(2983,0,0),(2984,0,0),(2985,0,0),(2986,0,0),(2987,0,0),(2988,0,0),(2989,0,0),(2990,0,0),(2991,0,0),(2992,0,0),(2993,0,0),(2994,0,0),(2995,0,0),(2996,0,0),(2997,0,0),(2998,0,0),(2999,0,0),(3000,0,0),(3001,0,0),(3002,0,0),(3003,0,0),(3004,0,0),(3005,0,0),(3006,0,0),(3007,0,0),(3008,0,0),(3009,0,0),(3010,0,0),(3011,0,0),(3012,0,0),(3013,0,0),(3014,0,0),(3015,0,0),(3016,0,0),(3017,0,0),(3018,0,0),(3019,0,0),(3020,0,0),(3021,0,0),(3022,0,0),(3023,0,0),(3024,0,0),(3025,0,0),(3026,0,0),(3027,0,0),(3028,0,0),(3029,0,0),(3030,0,0),(3031,0,0),(3032,0,0),(3033,0,0),(3034,0,0),(3035,0,0),(3036,0,0),(3037,0,0),(3038,0,0),(3039,0,0),(3040,0,0),(3041,0,0),(3042,0,0),(3043,0,0),(3044,0,0),(3045,0,0),(3046,0,0),(3047,0,0),(3048,0,0),(3049,0,0),(3050,0,0),(3051,0,0),(3052,0,0),(3053,0,0),(3054,0,0),(3055,0,0),(3056,0,0),(3057,0,0),(3058,0,0),(3059,0,0),(3060,0,0),(3063,0,0),(3064,0,0),(3065,0,0),(3066,0,0),(3067,0,0),(3068,0,0),(3069,0,0),(3070,0,0),(3071,0,0),(3072,0,0),(3073,0,0),(3074,0,0),(3075,0,0),(3076,0,0),(3077,0,0),(3078,0,0),(3079,0,0),(3080,0,0),(3081,0,0),(3082,0,0),(3083,0,0),(3084,0,0),(3085,0,0),(3086,0,0),(3087,0,0),(3088,0,0),(3089,0,0),(3090,0,0),(3091,0,0),(3092,0,0),(3093,0,0),(3094,0,0),(3095,0,0),(3096,0,0),(3097,0,0),(3098,0,0),(3099,0,0),(3100,0,0),(3101,0,0),(3102,0,0),(3103,0,0),(3104,0,0),(3105,0,0),(3106,0,0),(3107,0,0),(3108,0,0),(3109,0,0),(3110,0,0),(3111,0,0),(3112,0,0),(3113,0,0),(3114,0,0),(3115,0,0),(3116,0,0),(3117,0,0),(3118,0,0),(3119,0,0),(3120,0,0),(3121,0,0),(3122,0,0),(3123,0,0),(3124,0,0),(3125,0,0),(3126,0,0),(3127,0,0),(3128,0,0),(3129,0,0),(3130,0,0),(3131,0,0),(3132,0,0),(3133,0,0),(3134,1,0),(3138,0,0),(3139,0,0),(3140,0,0),(3141,0,0),(3142,0,0),(3143,0,0),(3144,0,0),(3145,0,0),(3146,0,0),(3147,0,0),(3148,0,0),(3149,0,0),(3150,0,0),(3151,0,0),(3152,0,0),(3153,0,0),(3154,0,0),(3155,0,0),(3156,0,0),(3157,0,0),(3158,0,0),(3159,0,0),(3160,0,0),(3161,0,0),(3162,0,0),(3163,0,0),(3164,0,0),(3165,0,0),(3166,0,0),(3167,0,0),(3168,0,0),(3169,0,0),(3170,0,0),(3171,0,0),(3172,0,0),(3173,0,0),(3174,0,0),(3175,0,0),(3176,0,0),(3177,0,0),(3178,0,0),(3179,0,0),(3180,0,0),(3181,0,0),(3182,0,0),(3183,0,0),(3184,0,0),(3185,0,0),(3186,0,0),(3187,0,0),(3199,1,0),(3203,0,0),(3204,0,0),(3205,0,0),(3206,0,0),(3207,0,0),(3208,0,0),(3209,0,0),(3210,0,0),(3211,0,0),(3212,0,0),(3213,0,0),(3214,0,0),(3215,0,0),(3216,0,0),(3217,0,0),(3218,0,0),(3219,0,0),(3220,0,0),(3221,0,0),(3222,0,0),(3223,0,0),(3224,0,0),(3225,0,0),(3226,0,0),(3227,0,0),(3228,0,0),(3229,0,0),(3230,0,0),(3231,0,0),(3232,0,0),(3233,0,0),(3234,0,0),(3235,0,0),(3236,0,0),(3237,0,0),(3238,0,0),(3239,0,0),(3240,0,0),(3241,0,0),(3242,0,0),(3243,0,0),(3244,0,0),(3245,0,0),(3246,0,0),(3247,0,0),(3248,0,0),(3249,0,0),(3250,0,0),(3251,0,0),(3252,0,0),(3253,0,0),(3254,0,0),(3255,0,0),(3256,0,0),(3257,0,0),(3258,0,0),(3259,0,0),(3260,0,0),(3261,0,0),(3262,0,0),(3263,0,0),(3264,0,0),(3265,0,0),(3266,0,0),(3267,0,0),(3268,0,0),(3269,0,0),(3270,0,0),(3271,0,0),(3272,0,0),(3273,0,0),(3274,0,0),(3275,0,0),(3276,0,0),(3277,0,0),(3278,0,0),(3279,0,0),(3280,0,0),(3281,0,0),(3282,0,0),(3283,0,0),(3284,0,0),(3285,0,0),(3286,0,0),(3287,0,0),(3288,0,0),(3289,0,0),(3290,0,0),(3291,0,0),(3292,0,0),(3293,0,0),(3294,0,0),(3295,0,0),(3296,0,0),(3297,1,0),(3300,0,0),(3301,1,0),(3306,1,0),(3313,0,0),(3314,0,0),(3315,0,0),(3316,0,0),(3317,0,0),(3318,0,0),(3319,0,0),(3320,0,0),(3321,0,0),(3322,0,0),(3323,0,0),(3324,0,0),(3325,0,0),(3326,0,0),(3327,0,0),(3328,0,0),(3329,0,0),(3330,0,0),(3331,0,0),(3332,0,0),(3333,0,0),(3334,0,0),(3335,0,0),(3336,0,0),(3337,0,0),(3338,0,0),(3339,0,0),(3340,0,0),(3341,0,0),(3342,0,0),(3343,0,0),(3344,0,0),(3345,0,0),(3346,0,0),(3347,0,0),(3348,0,0),(3349,0,0),(3350,0,0),(3351,0,0),(3352,0,0),(3353,0,0),(3354,0,0),(3355,0,0),(3356,0,0),(3357,0,0),(3358,0,0),(3359,0,0),(3360,0,0),(3361,0,0),(3362,0,0),(3363,0,0),(3364,0,0),(3365,0,0),(3366,0,0),(3367,0,0),(3368,0,0),(3369,0,0),(3370,0,0),(3371,0,0),(3372,0,0),(3373,0,0),(3374,0,0),(3384,0,0),(3392,0,0),(3401,0,0),(3402,0,0),(3406,0,0),(3409,3,2),(3416,7,2),(3421,0,0),(3422,0,0),(3423,0,0),(3424,0,0),(3425,0,0),(3426,0,0),(3427,0,0),(3428,0,0),(3429,0,0),(3430,0,0),(3431,0,0),(3432,0,0),(3433,0,0),(3434,0,0),(3435,0,0),(3436,0,0),(3437,0,0),(3438,0,0),(3439,0,0),(3440,0,0),(3441,0,0),(3442,0,0),(3443,0,0),(3444,0,0),(3445,0,0),(3446,0,0),(3447,0,0),(3448,0,0),(3449,0,0),(3450,0,0),(3451,0,0),(3452,0,0),(3453,0,0),(3454,0,0),(3455,0,0),(3456,0,0),(3457,0,0),(3458,0,0),(3459,0,0),(3460,0,0),(3461,0,0),(3480,0,0),(3481,0,0),(3484,1,3),(3487,0,0),(3490,0,0),(3503,0,0),(3505,0,0),(3507,0,0),(3511,1,1),(3518,0,0),(3521,0,0),(3523,0,0),(3526,3,1),(3530,0,0),(3534,0,0),(3539,0,0),(3540,1,1),(3542,0,0),(3546,0,0),(3547,3,1),(3551,0,0),(3555,0,0),(3558,0,0),(3561,0,0),(3580,0,0),(3584,2,1),(3587,0,0),(3589,0,0),(3595,0,0),(3596,0,0),(3597,0,0),(3599,0,0),(3622,0,0),(3638,2,2),(3669,0,0),(3676,0,0),(3677,2,2),(3684,0,0),(3733,0,0),(3738,0,0),(3739,0,0),(3740,0,0),(3741,0,0),(3797,0,0),(3865,0,0),(3867,0,0),(3883,0,0),(3884,0,0),(3885,0,0),(3886,0,0),(3887,0,0),(3930,0,0),(3931,0,0),(3954,0,0),(3978,0,0),(4001,0,0),(4064,0,0),(4109,0,0),(4142,0,0),(4150,0,0);
/*!40000 ALTER TABLE `wp_yoast_seo_meta` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2023-09-21 11:03:36
